* {
	margin: 0; 
	padding: 0; 
	border: 0;
}
	
body {
    background: #232522;
    font-family: Arial, Helvetica, sans-serif;
    color: #b6b6b6;
    font-size: 14px;
}

/*----------------------------------------------Basic styles------------------------------------------------*/

h1,h2,h3 {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light",Arial,Helvetica,sans-serif;
}
h1 em, h2 em, h3 em, h4 em {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light",Arial,Helvetica,sans-serif;
}

h1 {text-align:center; margin-top: 30px; font-size: 40px; letter-spacing: -.3px;}
h1:first-letter {font-family: "HelveticaNeue-Light", "Helvetica Neue Light",Arial,Helvetica,sans-serif; font-size: 2.25em} /* styles the first letter of the main title to make it large */

p#tagline {top: 120px; text-align:center; color: #575757; font-size: 0.90em}  /* sits under main title */

h2 {
	color: #d6d6d6;
    font-size: 18px;
    padding-bottom: 10px;
}

h3 {
	color: #444;
    font-size: 20px;
    font-weight: thick
}

p, ul, ol {
	margin: 10px 10px 0 7px; 
	color: #575757; 
	letter-spacing: 0.05em
}


p span {
	font-size: 1.50em; 
	font-weight: bold
}

a:link {
	color: #ddd; 
	text-decoration: none; 
	border-bottom: 1px solid #CCCC00
}

a:visited {
	color: #999926;
	text-decoration: none; 
	border-bottom: 1px solid #999926
}

a:hover, a:active {
	color: #e6e639; 
	border-color: #e6e639
}

ul {list-style: inside square} /* general lists */

acronym {font-weight: bold; border-bottom: 1px dashed #000; cursor: help}


/*-----------------------------------------------Layout DIVS------------------------------------------------*/

#container {  	/* keeps everything together */
margin: 0 auto; 
width: 960px; 
}

#hdr {
    float: center;
	background: #393939;
    border-bottom: solid 1px #1e1e1e;
    display: block;
    height: 139px;
    overflow: hidden;
    width; 100%;
    text-align:center;
}


#leftcol {   	/* left column */
float: left;
margin-top: 10px;
margin-left: 10px;
width: 128px; 
background-color: #6b6b6b 
overflow: hidden;
height: auto;
}

#rightcol {	/* right column */
    float: right;
    margin-top: 10px;
    width: 500px;
    line-height: 1.3em;
}

.rightsection {
    clear: both;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
}  

#bottomline {
position:absolute;
width: 100%;
float: center;
top: 100%;
text-align: center; 
font-size: 0.70em;   
background: #393939;
}


/*---------------------------------------------Main Navigation-----------------------------------------------*/
ul#nav {   /* navigation list */
	margin: 10px 0 0 0;
	padding: 0;
	list-style: none inside
}
	
ul#nav li {
	float: left;	
	display: block
}

ul#nav li a {
	width: 150px;
	margin: 3px 0 0 0;  /* a little spacing */
	border: 0;
	border-left: 5px solid #393939;
	padding: 10px 5px;
	font-family: Georgia, Georgia, serif;
	font-weight: normal;
	text-decoration: none;
	display: block;
	color: #FFFFFF;
	background: #393939
}

ul#nav li a#current {
border-color: #FFF
}   /* current page, move id in the xhtml when creating a new page */

ul#nav li a:hover {
background: #000; 
color: #fff
}


	