/* 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: 0;
	padding: 0;
	text-align: center;
	background : #B4AC97 url(/images/structure/top_back.gif) repeat-x;
} 
 
#container {
	position: relative;
	width: 720px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	color: #000;
	border-left: 1px solid #788C93;
	border-right: 1px solid #788C93;
	background : #F7F4E6;
} 

#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: 100%;
} 
 
#header {
	position: relative;
	height: 186px;
	/* IMPORTANT */
	width: 100%;
	background : #F7F4E6 url(/images/structure/header_back.gif) repeat-x top;
} 

#photo_front {
	position: absolute;
	top: 0px;
	left: 25px;
}

#logo {
	position: absolute;
	top: 0px;
	right: 25px;
}

#header_tab {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 263px;
	height: 21px;
	background : url(/images/structure/top_tab.gif) no-repeat;
	text-align: right;
}

#header_tab H1 {
	font-size : 15px;
	color: #FFF;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
	margin-right: 10px;
	margin-top: 2px;
}

#black_line {
	position: relative;
	height: 12px;
	/* IMPORTANT */
	width: 100%;
	background : #000;
	border-top : 1px solid #383D3E;
}

#sep_line {
	position: relative;
	height: 4px;
	/* IMPORTANT */
	width: 100%;
	background : url(/images/structure/center_back.gif) repeat-x;
}

#nav {
	position: relative;
	float: left;
	width: 185px;
	padding: 2px 0px 0px 2px;
	text-align: center;
	margin-top: 20px;
	
}

#nav a {
	font-weight: bold;
	display: block;
	text-decoration: none;
	font-size: 14px;
	padding-left: 10px;
}

.nav {
	height: 18px;
	width: 165px;
	text-align: left;
	background : url(/images/structure/button_back.gif) repeat-x;
	margin-bottom: 2px;
	margin-left: 10px;
}

#nav a:link {
	color: #655E4E;
}

#nav a:visited {
	color: #655E4E;
}

#nav a:hover {
	color:#FFF;
	background: #B9B29D;
}

#weather {
	position: relative;
	float: left;
	width: 185px;
	padding: 2px 0px 0px 2px;
	text-align: center;
	margin-top: 20px;
	
}

#maincol {
	width: 100%;
}

#content_home {
	width: 520px;
	position: relative;
	float: right;
	padding : 5px 5px 0px 5px;
}

#content {
	width: 520px;
	position: relative;
	float: right;
	padding : 22px 5px 0px 5px;
}

#content H1, #content_home H1 {
	font-size : 20px;
	color : #FE7E15;
	font-family : "Times New Roman", Times, serif;
}

#breadcrumbs {
	background: #edeada;
	font-weight: bold;
	padding: 5px;
}

#breadcrumbs a:link {
	color: #655E4E;
}

#breadcrumbs a:visited {
	color: #655E4E;
}

#breadcrumbs a:hover {
	color:#FFF;
	background: #B9B29D;
}

a:link {
	color: #395e71;
	text-decoration: underline;
}

a:visited {
	color: #395e71;
}

a:hover {
	color: #395e71;
	text-decoration: none;
}

#footer{
	text-align: right;
	font-size: 11px;
	width: 90%;
	border-top: 3px solid #D3CCBA;
	padding-top: 15px;
	padding-bottom: 15px;
}


/*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;
	}
}