/* CSS Template for [Company/Organization] */

/* all sytles should be structured as follows:
******************************************
call (descriptive element names are required) { / comments for what the call is used for if the call doesnt explain enough (eg. .nav p { \* paragraph style for copy in the nav area *\) /
	position: value;
	flaot: value; / if aplicable /
	width: value; / plese use px if possible only use % if under 100%/
	height: value; / please use px if possible and if height is absolutely neccisary please comment behind with IMPORTANT, otherwise omit /
	background: color image repat position;
	color: value;
	font-family: value;
	font-size: value; / please use pt or em if possible or size types like "small", "larger", "x-small", etc. /
	font-whatever: value; / all other font styles /
	margin: top-value right-value bottom-value left-value;
	padding: top-value right-value bottom-value left-value;
	text-whatever: value;
	display: value;
	border: width style color;
	any other styles...
}	
******************************************
if possible please use #hhh; for colors */

html, body {
	background-color: #000;
 	margin: 0;
  	padding: 0;
 	text-align: center;
} 
 
#container {
	width: 800px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000;
	background: #FFF;
} 
 
#header {
 	position: relative; 
 	height: 234px; /* IMPORTANT */
	width: 800px;
} 

#header .wrap {
	position: absolute;
	top: 0px;
	left: -65px;
	background: url(../images/structure/header.png); 
	height: 234px; 
	width: 865px; 
	z-index: 2;
}

#header .navigation {
	position: absolute;
	top: 116px;
	right: 12px;
	z-index: 3;
}

#header .navigation a {
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
}

#header .navigation a:link {
	color: #000;
}

#header .navigation a:visited {
	color: #000;
}

#header .navigation a:hover {
	color: #D70D00;
}

#header .siteseal {
	position: absolute;
	top: 75px;
	right: 12px;
	z-index: 3;
}
 
#nav {
	width: 210px;
	padding: 0px 0px 0px 0px;
}

/*#nav .button {
	width: 7px;
	height: 7px;
	background: #CCB631;
	margin-right: 5px;
	margin-top: 5px;
	line-height: 7px;
}*/

.button {
	width: 7px;
	height: 7px;
	background: #CCB631;
	margin-right: 5px;
	margin-top: 5px;
	line-height: 7px;
}

.nobutton {
    width: 7px;
    height: 7px;
    /*background: #CCB631;*/
    margin-right: 5px;
    margin-top: 5px;
    line-height: 7px;
}

#nav .wrap {
	/*padding-left: 15px;*/
	margin-top: 10px;
}

#nav a {
	font-weight: bold;
	text-decoration : none;
}

#nav a:link {
	color: #000;
}

#nav a:visited {
	color: #000;
}

#nav a:hover {
	color: #CCB631;
}

#maincol {
	width: 780px;
}

#content {
	position: relative;
	width: 680px;
	padding : 5px 5px 0px 5px;
}

.heading {
	background : url(images/structure/heading_banner_back.png);
	width: 98%;
}

.featured {
	background : url(images/structure/featured_banner_back.png);
	width: 98%;
}

#footer{
	text-align: center;
	font-size: 11px;
	width: 800px;
	height: 100px;
	background : #000 url(images/structure/footer.png);
	color: #FFF;
}

#footer a {
	color: #FFF;
}


/*Simple styles for clients to use sizes and colors etc.*/

h1 {
	margin: 0px;
	padding: 0px;
	background: #FFF;
	display: block;
	white-space: nowrap;
	font-size: 20px;
}

h2 {
	font-size: 16px;
}


.smaller {
	font-size: 8px;
}

.small {
	font-size: 10px;
}

.big {
	font-size: 16px;
}

.bigger {
	font-size: 18px;
}

.blue {
	color: #0000a0;
}

.red {
	color: #ff0000;
}

.green {
	color: #008000;
}

.yellow {
	color: #ffff00;
}

.category_box {
    width: 34%;
    border: 1px solid black;
    background-color: #D8D8D8;
    padding-top: 10px;
}

.category_grid {
    width: 100%;
    text-align: center;
}
/* Other style names that may be used include:

1) horiz-nav - if nav needs to be a horizontile navigation
2) base-nav - if nav needs to be text links near the copyright
3) copyright - if the style needs to be different from other elements in the footer - usually used in a span within the footer div
4) something_something where there would be additional styles for sectioned layouts where the peacies fit togeather but are in seperate divs (eg. nav_top, nav_bottom or header_left, header_right etc.)
5) something_something where there would be user defined changes through either navigation or selection (eg. header_0, header_1, header_2)

*/ 

 
@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}