/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #FFFFFF;
}
#container {
	width: 90%; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFF99;
} 
#header {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	background-position: right 30px;
	height: 170px;
} 
#header h1 {
	margin: 0;
	height: 150px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	background-image: url(images/toplogo.png);
	background-repeat: no-repeat;
	background-position: 30% top;
}
h1 {
	font-family: Arial;
	font-size: 24px;
	text-transform: capitalize;
	color: #0000FF;
	text-align: center;
}
h2 {
	font-family: Arial;
	font-size: 18px;
	text-align: center;
	text-transform: capitalize;
}
h3 {
	font-family: Arial;
	font-size: 14px;
	text-transform: capitalize;
	text-align: center;
	letter-spacing: normal;
}
h4 {
	font-family: Arial;
}
h5 {
	font-family: Arial;
	font-size: 12px;
}
h6 {
	font-family: Arial;
	text-align: left;
	font-size: 14px;
	color: #0000FF;
	text-transform: capitalize;
}
p {
	font-family: Arial;
	font-size: 14px;
	text-transform: capitalize;
	color: #000000;
	text-align: center;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* padding keeps the content of the div away from the edges */
	margin-top: 43px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
	background-color: #FFFF99;
	text-align: left;
}
#mainContent {
	margin-top: 0px;
	margin-right: 185px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-color: #FFFF99;
} 

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: right;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

 


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.glossymenu{
list-style-type: none;
margin: 5px 0;
padding: 0;
width: 170px;
border: 1px solid #9A9A9A;
border-bottom-width: 0;
}

.glossymenu li a{
	font: bold 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
	color: white;
	display: block;
	width: auto;
	padding: 3px 0;
	padding-left: 10px;
	text-decoration: none;
	background-color: white;
	background-image: url(images/glossyback.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}


* html .glossymenu li a{ /*IE only. Actual menu width minus left padding of A element (10px) */
width: 160px;
}

.glossymenu li a:visited, .glossymenu li a:active{
color: white;
}

.glossymenu li a:hover{
background-image: url(images/glossyback2.gif);
}
