/* 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: url(/images/structure/back.png) repeat-x top #bc5254;
} 
 
#container {
	width: 760px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000;
} 
 
#header {
 	height: 137px; /* IMPORTANT */
	width: 760px;
	background: #142821;
} 

.top h1 {
	font-size: 28px;
	font-weight: bold;
	font-family : "Times New Roman", Times, serif;
	color: #FFF;
	margin-bottom: 5px;
}

.top h2 {
	font-size: 24px;
	font-weight: bold;
	font-family : "Times New Roman", Times, serif;
	color: #FFF;
	margin-top: 0px;
}

#sep {
 	height: 5px; /* IMPORTANT */
	width: 100%;
	background: #2d5749;
} 

#maincol {
	width: 760px;
}
 
#nav {
	width: 225px;
	vertical-align: top;
	background: #B4C3BE url(/images/structure/left_back.png) no-repeat top;
	padding: 0px;
	font-size: 13px;
}

#nav a {
	font-weight: bold;
	font-family : "Times New Roman", Times, serif;
	padding: 3px;
	text-decoration: none;
	display: block;
}

#nav a:link {
	color: #000;

}

#nav a:visited {
	color: #000;
}

#nav a:hover {
	color: #FFF;
	background : #2F5748;
}

#content {
	width: 515px;
	vertical-align : top;
	background : #FFF url(/images/structure/right_back.png) no-repeat top;
	padding: 0px;
}

#wrap {
	padding: 10px;
}

h1 {
	font-size: 18px;
	font-weight: bold;
}

#footer{
	text-align: center;
	font-size: 10px;
	width: 535px;
}


/*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;
}

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#content {
		width:100%;
	}
}
