@charset "utf-8";
/* CSS Document */

 

body {
	margin: 0;  /* clear for browsers */
	padding: 0;
	background-color: gray;
	font-family:  "Geneva", Arial, Helvetica, sans-serif;
	color: #000000;
}

#container {
	  overflow:auto;
	  /*background-image: url(gradient_tall.gif);
	 background-repeat:repeat-x;*/
	margin:0 auto;
	width: 100%;
	/*height: 850px;*/
	 
}	
#centered {
	 
	 position: relative;
	 margin: 0 auto;  /* centers page*/
	 width: 795px; 
    /* height: 850px; */         
	 background-color: #ffffff;	
}
#header {
      
	 background-image: url(geek_raw/geek_help_header2.jpg);
	 background-repeat:no-repeat;
	 width: 795px;
	 height: 278px;
	 
}	 

 
#navigation {
     width: auto;
	 height: 27px;
	 padding-left: 2px;
 	 
}	
 

#navgroup {
	width: 795px;
	height: 146px;
}		 

#homecontent {
    margin-top: 50px;
	color: #000000;
	width: auto;        /* used auto so text doesnt pop out of div */
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 1em;
	padding-right: 1em;

	 	 
}	

 


p {
    font-family: Geneva, Arial, Helvetica, sans-serif;
}	 

#footer {
	margin:2em auto 0 auto;
	width: 400px;
	height: 50px;
	text-align: center;
	 color: #999999;
}	

/*span.page p a {
color: red;
} */

/*************************************************************************/
/*****************************************DROPDOWN MENU CODE********/

/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

body {
	behavior: url(csshover.htc);
}	
 
p a {
 	color: #990000;     /* made the link text red again */
	text-decoration:none;!important;
    font-size:20px;							/*change size of nav and dropdown text*/
	font-family:Arial, Helvetica, sans-serif;
}

a{
	color:#fff;
	text-decoration:none;       /* text color */
	}
p a:hover{	text-decoration: none!important;
}

ul#nav {
	list-style: none;
	padding: 0;
	margin: 0;
}


ul#nav li a {
	display: block;
	font-weight: bold;        /*background color */
	padding: 2px 10px;
	background-color: #666666;
	 
}

ul#nav li a:hover{
color:#fff; /* text hover */
background-color: #990000;
} 
	
ul#nav li {
	float: left;
	 position: relative;
	width: 196px;			/* change width of boxes */
	text-align: center;
	margin-right:0px;
	border:1px solid #ccc;
	background-color: #990000;
     

}

ul#nav li.current a{
	background-color:  #666666;    /* fixed the home red button to gray */
	}

ul#nav li.current a:hover{
	background:#990000;         /* background hover */
	}

li ul {
	display: none;
	position: absolute;
	width:150px;         /* width of dropdown menu */
	top: 0;
	left: 0;
	font-weight: normal;
	padding: 1px 0 10px 0;
	margin-left:-1px;
}

ul#nav li ul.sub li{
	border-width:0 1px 1px 1px!important;
}

ul#nav li ul.sub li a{
	font-weight: normal!important;	
}
li>ul {
	top: auto;
	left: auto;
}

li:hover ul, li.over ul {
	display: block;
}

 ul.sub {      /* got rid of bullets in firefox */
 
 	list-style: none ;
}	
