/* created  2006 by WoW! Graphic Designs. Duplication or redistribution is strictly prohibited. */

/* since mostly the same font is used throughout a site, to be able to change it faster you can have a font-family only tag for all */

* { margin: 0; padding: 0; }

body, h1, h2, h3, p, td, span, li{
	font-family : "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
}

p, td, span {
	padding-left: 5px;

}

/* html tags */

a:link	{
	color : #000000;
	font-weight : bold;
	text-decoration : none;

	}

a:visited {
	color : #917D7A;
	font-weight : bold;
	text-decoration : none;

	}

a:hover	{
	color : #917D7A;
	font-weight : bold;
	text-decoration : underline;
	
}

a:active {
	color : #917D7A;
	font-weight : bold;
	text-decoration : none;

}

body {
	background-color : #FFFFFF;
	text-align: left;
}

h1 {
	color : #689B69;
	font-size : 17px;
	font-weight : bold;
	margin-top : 5px;
	margin-bottom : 0px;
	padding-left: 5px;
}

h2 {
	color : #689B69;
	font-size : 13px;
	font-weight : bold;
	margin-top : 5px;
	margin-bottom : 0px;
	padding-left: 5px;

}

h3 {
	font-family : "Times", Times, serif;
	color : #98CD9A;
	font-size : 17px;
	font-weight : bold;
	padding-top : 15px;
	margin-bottom : 0px;
	padding-left: 5px;

}


h4 {
	font-family : "Times", Times, serif;
	color : #FFFFFF;
	font-size : 15px;
	font-weight : bold;
	margin-top : 5px;
	margin-bottom : 0px;
	padding-left: 5px;


}

h5 {
	font-family : "Times", Times, serif;
	color : #FFFFFF;
	font-size : 13px;
	font-weight : bold;
	margin-top : 5px;
	margin-bottom : 0px;
	padding-left: 20px;


}


p {
	color : #000000;
	font-size : 10pt;
	text-decoration : none;
	margin-top : 6px;
	margin-bottom : 0px;
	margin-left : 2px;
	margin-right : 2px;
	
	}

ul {
	color : #000000;
	font-family : "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	text-decoration : none;
	margin-top : 6px;
	margin-bottom : 0px;
	padding-left: 20px;
}

/* classes */



.top{
	
	text-align: left;
	background-color : #98CD9A;
	height: 80px;
	padding-left: 20px;
	padding-top: 20px;
	}
	
.colorbar{
	
	text-align: left;
	background-color : #98CD9A;
	height: 20px;
		}
		
.menubar{
	text-align: middle;
	height:20px;
	background-color : #FFFFFF; /* background color of menu bar */
}

/* layers */


#container{
	position:absolute;
 	width:790px;
 	z-index:1;
 	margin-left:-395px;
 	left: 50%;
 	height: 100%;
	
}


#colorbar{
	position:absolute;
	text-align: center;
	top:170px; 
	left: 0px;
	width:790px
	height:20px;
	background-color : #98CD9A; 
	}

#dropmenudiv{ /*background color is set in the .js*/
	position:absolute;
	font-family : "Times", Times, serif;
	font-size : 8pt;
	border:1px solid #000000;
	z-index:100;
	margin-left: 0px;
	margin-top: 3px;
	padding: 3px;
	line-height: 165%;
	width:100px;
}

#dropmenudiv a:link{ /* have to make special link properties for dropdown or it takes its cue from your normal a:link etc. which you may want underlined in the text */
	width:100%;
	color : #917D7A;
	font-weight : bold;
	text-decoration : none;
}

#dropmenudiv a:hover{ 
	width:100%;
	background-color: #FFFFFF;
	color: #CC6600;
	text-decoration: none;
}

#content{
	position:absolute;
	top:202px; /* position from top of browser + logo + menu height */
	width:	100%;
	height:75%;
	background-color : #FFFFFF;
	text-align:left;
}

#left{
	position:absolute;
	top:0px;
	left:0px;
	width:204px;
	height:100%;
	overflow: visible;
}

#middle{ /* this is for announcements + text + image*/
	position:relative; /* if the middle div is not relative, it will not wrap text */
	top:10px;
	margin-left: 215px;
	margin-right: 210px;
	margin-bottom:0px;
	height:80%;
	overflow:auto;
	
}

#right{
	position:absolute;
	right:20px;
	top:20px;
	width:200px;
	height:100%;
	overflow: hidden; /* images are limited to a certain size to make page flow and not "bump into" footer. You can use smaller or bigger images, they just won't show above specified width */
}

#footer{
	position:absolute;
	bottom:0px;
	width:100%;
	padding:1px;
	background-color : #005F8B;
	color : #FFFFFF;
	font-size : 8px;
	text-align : center;
	overflow: visible;
}