/* CSS Template for Precision Design */

/* 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 760px/
	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 */

a:link, a:visited {
	color: #4763A3;
}

a:hover {
	color: #1A1A1A;
}

html, body {
	background: #484848 url(/images/precision_bg.gif) repeat-x;
 	margin: 0;
  	padding: 0;
 	text-align: center;
} 
 
#container {
	position: relative;
	background: #EEE;
	width: 760px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal;
	color: #1A1A1A;
} 

#wrapper { /* Background image for left side should go here if needed - will resize to content - OR can put it in the body style */
 	text-align: left;
	width: 760px;
} 
 
#header {
 	position: relative;
	color: #EEE;
 	height: 127px; /* IMPORTANT */
	width: 760px;
	font-size: 10pt;
	text-align: right;
	display: block;
} 

.www {
 	position: absolute;
	right: 5px;
	top: 0px;
	color: #EEE;
	font-size: 10pt;
} 
 
#nav {
	position: relative;
	float: right;
	width: 263px;
	text-transform: uppercase;
	text-align: center;
}

#nav #condenced {
	width: 156px;
	display:block;
}

#nav a:link, #nav a:visited {
	color: #1A1A1A;
	font-weight: bold;
	text-decoration: none;
	margin: 3px;
	display: block;
	border: 1px solid #4763A3;
}

#nav a:hover {
	color: #4763A3;
	font-weight: bold;
	text-decoration: none;
	display: block;
	border: 1px solid #4763A3;
}

h1, h2, h3, h4, h5, h6 {
	margin: 3px 10px 3px 15px;
}

p, TD {
	padding-left: 10px;
}

h1, h2, h3, h4, h5, h6 {
	color: #4763A3;
}

#maincol {
	width: 760px;
}

#content {
	float: left;
	width: 497px;
}

.blue {
	background-color: #595968;
}

.darkblue {
	background-color: #323232;
}

.white {
	color: #ffffff;
}
hr {
	color: #323232;
}

.bulletedlist {
	padding-left: 10px;
}

#footer{
	background: #1A1A1A;
	color: #EEE;
	text-align: right;
	padding: 10px 10px 10px 0px;
	font-size: 8pt;
	width: 760;
}

#footer a:link, #footer a:visited {
	color: #F00;
}

#footer a:hover {
	color: #EEE;
}

/* 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)

*/ 

 
/* Float containers fix:
   http://www.csscreator.com/attributes/containedfloat.php */ 
.clearfix:after {
 	content: "."; 
 	display: block; 
	height: 0; 
 	clear: both; 
 	visibility: hidden;
 }
 
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */  

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}