/* 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: #FFF;
	margin: 0px 0px 0px 20px;
	padding: 0px;
	background : url(/images/structure/back.jpg);
} 
 
#container {
	position: relative;
	width: 719px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000;	
	border-right : 1px solid #BA8200;
	border-left : 1px solid #BA8200;
} 

#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: 719px;
	background : #F7F1DC;
} 
 
#header {
	position: relative;
	height: 153px;
	/* IMPORTANT */
	width: 719px;
} 
 
#nav {
	position: relative;
	float: left;
	width: 715px;
	padding: 8px 2px 2px 2px;
	height: 20px;
	background-color: #832906;
	text-align: center;
	font-size: 13px;
	font-weight: bold;
	color: #FFF;

}

#nav a:link {
	color: #FFF;
}

#nav a:visited {
	color: #FFF;
}

#nav a:hover {
	color: #F1BA67;
}

#maincol {
	width: 719px;
}

#content {
	width: 709px;
	position: relative;
	float: right;
	padding : 5px 5px 5px 5px;
}

#footer{
	text-align: center;
	font-size: 11px;
	width: 100%;
	background : #656B45;
	padding-top: 20px;
	font-weight: bold;
	color: #FFF;
}

#footer a {
	color: #FFF;
}

#footer_after{
	background : url(/images/structure/bottom_back.gif);
	height: 25px;
	width: 100%;
}
.homeimage_surround {
	/* Use this to adjust the height on the homepage since we have an absolute positioned element */
	height: 700px;
}
.homeimage {
	position: relative;
	left: 2px;
	top: 2px;
	width: 348px;
	height: 452px;
	border : 1px solid #BA8200;
	padding: 3px 3px 3px 3px;
	text-align: center;
	background: #F7F1DC;
	z-index: 2;
}

.homecallout {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 315px;
	height: 135px;
	background : #656B45;
	z-index: 1;
	padding: 20px 20px 20px 65px;
}

.caption {
	font-size: 11px;
	font-weight: bold;
}

.hometext {
	position: absolute;
	right: 0px;
	top: 180px;
	width: 345px;
	height: auto;
	font-size: 11px;
	padding-right: 5px;
}

H1 {
	font-size : 15px;
	padding: 0px;
	color: #36370f;
	border-bottom: 1px solid #c7b18a;
}

H2 {
	font-size : 14px;
	padding: 0px;
}

.composite_text {
	font-size : 17px;
	font-weight: bold;
}

a:link {
	color: #656b45;
}

a:visited {
	color: #656b45;
}

a:hover {
	color: #832906;
}


/*Simple styles for clients to use sizes and colors etc.*/

.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;
}


/* 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;
	}
}