/* CSS Document */

/* ------------------------------- formatting ----------------------------- */

body {
	margin: 0;
	padding: 0;
	}

h1 {
	color: #666699;
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	}

h2 {
	color: #666699;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	}

h4 {
	color: #000000;
	margin-bottom: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-weight: bold;
	}
	
p {
	font: 0.7em Verdana, sans-serif;
	}

#content p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	}
	
#content ul {
	list-style-type: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	margin: 0px 1%;
	padding: 1% 3%;
}
	
#footer p {
	margin: 4px;
	text-align: center;
	}

a {
	color: #666699;		
	}
a:hover {
	color: #000000;	
	}
	
a img {
	border: 0px none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}

div#top a {
	display: block;			/* makes the background hover effect work in Mozilla */
	width: 153px;
	background-color: #5C6F90;
	}

div#top a:hover {
	background-color: #43616B;
	}
.cat {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666699;
	font-size: small;
	font-weight: bold;
}
.subcat {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666699;
}
/* 

------------------------------- layout ----------------------------- 

Notes:

Do not mix px widths with % widths for margins, borders or padding because 
the total box width = set width + padding + border.  (It helps if you can add them together)

The box model hack is used to fix an bug in IE5-Win ...for an explanation from the guy that
wrote it go to http://www.tantek.com/CSS/Examples/boxmodelhack.html

IE6-Win will behave like IE5-Win  if you include <?xml version="1.0"?>  It is apparently
unneccessary so leave it out!

Left Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |   0    |          25%         |   0    |	
 
Center Margins:
 |  marg  |         width        |  marg  | 
 ------------------------------------------
 |   25%  |        (auto)        |   25%  |

Right Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |  1.5%  |          22%         |  1.5%  |				total width= 25%
 

*/

#top {
	padding: 4px;
	background: #FFFFFF;
	border-bottom: 1px solid #9999CC;
	}
	
#header {
	margin: 0px 2%;
	padding: 1% 3%;
	background: #fff;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	}
	
#content {
	margin: 0px 1%;
	padding: 1% 3%;
	background: #fff;
	color: #000;
	border-bottom: 1px solid #FFF;
	border-top: 1px solid #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	}
		
div#topcontent {
	position: absolute;
	top: 10px;
	right: 0px;
	width: 80%;
	}

#topcontent h2, #topcontent p {
	display: inline;
	margin-right: 0.5em;
	}

#footer {
	border-top: 1px solid #9999CC;
	border-bottom: 1px solid #9999CC;
	background-color: #DDDDDD;
	color: #000;
	}
	
div#topcontent ul {
	position: absolute;
	right: 0px;
	list-style: none;
	margin: 0px 0px 40px 0px;
	}
div#topcontent ul li {
	display: inline;
	padding: 0 0.5em;
	border-left: 1px solid #9999CC;	
	}
div#topcontent ul li.first {
	border-left: 0px none;
	}
div#topcontent ul li a {
	font: 0.7em /1 verdana, sans-serif;
	}

div#topcontent form {
	position: absolute;
	right: 0px;
	top: 55px;
	margin: 0px;
	}
/* ---------------------------------------------------------------------*/
  

