1 html {
  2     margin: 0;
  3 }
  4 
  5 body {
  6     margin: 17px 0 8px 0;
  7     background: #CCCCAA;
  8     font-family: sans-serif, "Courier New", Courier;
  9     color: #000000;
 10 }
 11 
 12 #main {
 13     position: relative;
 14     margin: 0 auto;
 15     padding-bottom: 20px;
 16     width: 800px;
 17     background: #CCCCAA;
 18 }
 19 
 20 .textLink {
 21 	color: blue; 
 22         margin: 0; 
 23         padding: 0; 
 24 	cursor: pointer; 
 25 }
 26 
 27 .textLinkHighlight: {
 28 	color: #AAC2DD; 
 29 }
 30        
 31 .logonLink {
 32 	margin: 2px 5px 3px 5px; 
 33         padding: 0; 
 34 	font-weight: bold; 
 35 }
 36 
 37 .logonLink:hover {
 38 	background-color: #87CEFA; 
 39 }
 40 
 41 .logonLink:hover {
 42 	background-color: #87CEFA; 
 43 }
 44 
 45 .logonForm {
 46 	position: absolute; 
 47 	width: 320px; 
 48 	height: 7em; 
 49 	margin: 5px; 
 50 	padding-bottom: 5px; 
 51 	background-color: #E5ECF5; 
 52         border: 1px solid black; 
 53 	z-index: 999
 54 }
 55 
 56 .pagination{
 57 	padding: 2px;
 58 	margin: 0; 
 59 	clear: both; 
 60 }
 61 
 62 .pagination ul{
 63 	margin: 0;
 64 	padding: 0;
 65 	text-align: right; /*Set to "left" or "right" to left/right align pagination interface*/
 66 	font-size: 100%;
 67 }
 68 
 69 .pagination li{
 70 	list-style-type: none;
 71 	display: inline;
 72 	padding-bottom: 1px;
 73 }
 74 
 75 .pagination a, .pagination a:visited {
 76 	padding: 0 5px;
 77 	border: 1px solid #9aafe5;
 78 	text-decoration: none; 
 79 	color: #2e6ab1;
 80 }
 81 
 82 .pagination a:hover, .pagination a:active {
 83 	border: 1px solid #2b66a5;
 84 	color: #000;
 85 	background-color: #FFFF80;
 86 }
 87 
 88 /*Style for currently selected page link*/
 89 .pagination a.currentpage { 
 90 	background-color: #2e6ab1;
 91 	color: #FFF !important;
 92 	border-color: #2b66a5;
 93 	font-weight: bold;
 94 	cursor: default;
 95 }
 96 
 97 /*Style for "disabled" previous or next link*/
 98 .pagination a.disabled, .pagination a.disabled:hover {
 99 	background-color: white;
100 	cursor: default;
101 	color: #929292;
102 	border-color: transparent;
103 }
104 
105  /*Style for previous and next link*/
106 .pagination a.prevnext {
107 	font-weight: bold;
108 }
109 
110 .pagecontent {
111 	margin: 10px; 
112 	width: 600px; 
113 }
114 
115 .pagerowtitle {
116 	width: 600px; 
117 	margin: 10px; 
118 	height: 24px; 
119 	font-weight:bold; 
120 	
121 }
122 
123 .pagerow {
124 	height: 32px; 
125 	width: 600px; 
126 	padding-top: 10px; 
127 	padding-bottom: 5px; 
128 	border-bottom: 1px solid #CCCCAA;
129 }
130 
131 .pageimgtitle {
132 	position: absolute; 
133 	left: 50px;
134 	width: 200px; 
135 }
136 
137 .pageimg {
138 	position: absolute; 
139 	cursor: pointer; 
140 	left: 50px;
141 	height: 32px; 
142 	width: 200px; 
143 }
144 
145 .pagecheckboxtitle {
146 	position: absolute; 
147 	left: 410px; 
148 	width: 200px; 
149 }
150 
151 .pagecheckbox {
152 	position: absolute; 
153 	left: 410px; 
154 	height: 32px; 
155 	width: 32px; 
156 	padding-top: 10px;
157 }
158 
159 .pagecommand {
160 	margin: 5px 10px 0px; 
161 	text-align: right; 
162 	clear: both; 
163 }
164 
165 .exampleHint {
166         font-style: italic;
167         font-size: 11px;
168         margin: 0;
169         padding: 0;
170 }
171 
172 .errorMsg {
173         font-size: 15px;
174         color: red;
175 }


syntax highlighted by Code2HTML, v. 0.9.1