/*CSS Code*/
/*Jan 2009*/
/*Written for NetConnect by Holly Laiveling Web Development LLC*/

html {
	height: 100%;
}

h1 {
	font-style:italic;
	text-align:center;
	font-size:22px;
}

#header		{
			text-align: center;
			margin:0 auto;
			background-image:url(images/headerslice.gif);
			background-repeat:repeat-x;
			z-index:1;
			}
			
#stripe		{
			margin:0 auto;
			height:47px;
			background-image:url(images/headerslice2.gif);
			background-repeat:repeat-x;
			z-index:3;
			position: relative;
			}
			
#blackstripe		{
			margin:0 auto;
			height:47px;
			width:749px;
			background-color:black;
			position: relative;
			z-index:5;
			}
			
/*main container*/
#wrap {		clear:both;
			margin:0 auto;
			width:749px;
			position:relative;
			background-image:url(images/middle.gif);
			background-repeat:repeat-y;
			z-index:0;
			top: -50px;
			
}

/*where the content goes*/
#main   {
		position: relative;
		clear: left;
		min-height: 25em;
		margin:0 auto;
		background-color:white;
		width:700px;
		padding-top:10px;
		padding-right:10px;
		padding-left:20px;
			}
			
#mainimage   {
		float:left;
		padding-right:10px;
			}
			
body {
		font-family: Arial, Verdana, sans-serif;
		font-size: 10pt;
		font-style: normal;
	}
	
	
/*page footer*/
#footer {
   	clear:both;
	background-image:url(images/footer.gif); 
	background-repeat:no-repeat;  
	font-size:9px;
	color:white;
	text-align:left;
	height:35px;
	padding-left:20px;}

/*navigation menus*/
#navwrap		{
	top: -47px;
	z-index:10;
	margin:0 auto;
	width:749px;
	position: relative;
	left:120px;
			}

	
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	z-index:100;
}

#nav a {
	display: block;
	width: 100px;
}

#nav li { /* all list items */
	float: left;
	width: 100px;
	font-size:14px;
	line-height:3;
}

#nav li ul { /* second-level lists */
	position: absolute;
	width: 100px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#nav li a {
		width: 150px;
		display: block;
		color: white;
		font-weight : bold;
		text-decoration : none;
		background-color:black;
		padding : 0 0.5em;
		font-family:"Arial";
/*		font-size:14px;*/
		text-align:left;
		height:47px;
/*		line-height:3;*/
	}
	
#nav li a:hover {
		color : blue;	
	}

/*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 -- */ 


.centerme /* Internet Explorer */ 
{ 
text-align: center; 
} 

.centerme /* Mozilla Firefox alignment */ 
{ 
text-align: -moz-center; 
} 

