/*Main*/

html {
	height: 100%;
}

#header		{
			text-align: center;
			background-color: white;
			border-bottom : thin solid black;
			width:750px;
			}

/*main container*/
#wrap {
    background:black;
    margin:0 auto;
    width:800px;
	border: thin solid black;
    }

/*menu container*/
#navlist {
			background-color: black;
			width: 9em;
			float: left;
			padding-top: 3em;
			padding-left: 1em;
			height: 100%;
}

	
#navlogo {
	padding-left: 1em;
}


#fieldstatus {
	background-color:#CCCCCC;
	padding-left: 1px;
	padding-right: 1px;
	padding-top: 1px;
	text-align:center
}

/*menus*/

#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		width: 10em;
		padding-bottom: 1em;
		z-index: 100;
	}
	
#nav li { /* all list items */
		position: relative;
		float: left;
		line-height: 1.25em;
		margin-bottom: -1px;
		width: 9em;
	}
	
#nav li ul { /* second-level lists */
		position: absolute;
		left: -999em;
		margin-left: 10.05em;
		margin-top: -1.4em;
		z-index: 120;
	}
	
#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}

	
#nav li a {
		width: 10em;
		w\idth : 9em;
		display : block;
		color : white;
		font-weight : bold;
		text-decoration : none;
		background-color : blue;
		padding : 0 0.5em;
		border : 1px solid black;
	}
	
#nav li a:hover {
		color : black;
		background-color : white;
	}
	
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
		left: -999em;
	}
	
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}

/*Need this for IE7 or menus stick	*/
/* -- Begin IE 7 Only Hack -- */ 
*:first-child+html #nav li:hover, #menu li.hover  { 
	position: static;
} 
/* -- End IE 7 Only Hack -- */ 

/*#nav li:hover, #menu li.hover {
    *position: static;
}*/


/*where the content goes*/
#main   {
			background-color: white;
			float: right;
			padding: 10px;
			width:590px;
			min-height: 46em;
			margin-right:0;
			}
			
#main h1,h2 {
			text-align:center
		}

body {
		font-family: Arial, Verdana, sans-serif;
		font-size: 10pt;
		font-style: normal;
		background-image:url(../../images/grass.gif);
		background-repeat: repeat;
	}

/*page footer*/
#footer {
   	background:#CCCCCC;
   	clear:both;
	border-top : thin solid black;
	text-align:center;
	font-size: 9px;
    }
	
#link_footer {
	background:white;
  	clear:both;
	border-top : thin solid black;
	text-align:center;
    }
		
.centerme /* Internet Explorer */ 
{ 
text-align: center; 
} 

.centerme /* Mozilla Firefox alignment */ 
{ 
text-align: -moz-center; 
} 
	
			
.myparagraph:first-letter {
	font-size:150%;
	float:left;
	color:blue;
}


a img {border: none; } 
a:link {color: blue; text-decoration: none; }
a:visited {color: purple; text-decoration: none; }
a:hover {text-decoration: underline; }

