/* 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: #000 url(images/background_fade.jpg) repeat-x;
} 
 
 #surround {
	background: url(images/background_flourish.jpg) no-repeat top left;
}

#container {
	position: relative;
	width: 855px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000;
	background : White;
} 

#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: 137px; /* IMPORTANT */
	width: 100%;
} 
 
#nav {
	position: relative;
	float: left;
	width: 150px;
	padding: 2px 0px 0px 2px;
	background: url(images/nav_box2.jpg);
	margin-left : 10px;
	margin-top: 10px;
	text-align: center;
}

#nav a {
	font-weight: bold;
	font-size: 12px;
}

#nav a:link {
	color: #FFF;
}

#nav a:visited {
	color: #FFF;
}

#nav a:hover {
	color: #e69628;
}

#maincol {
	width: 100%;
}

#content {
	width: 635px;
	position: relative;
	float: right;
	padding : 5px 5px 0px 5px;
}

#footer{
	text-align: center;
	font-size: 10px;
	width: 100%;
}

.messagebox {
	background : url(images/message_box2.jpg);
	width: 152px;
	height: 72px;
	vertical-align : text-bottom;
	margin-top: 10px;
	margin-bottom: 10px;
}


/*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;
	}
}

/* GridView common style */
.GridView { border:none; width:100%}
.GridViewHeader { font-weight: bold; font-size: 75%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: gainsboro;}
.GridViewPager { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'}
.GridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.GridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:white;}
		
/* GridView Style - Orange */
.oGridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.oGridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:Orange;}
	
/* GridView Style - Blue */
.bGridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.bGridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:blue;}

/* GridView Style - red */
.rGridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.rGridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:red;}
	
/* GridView Style - green */
.gGridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.gGridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:green;}

/* GridView Style - purple */
.pGridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.pGridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:purple;}
	
/* GridView Style - yellow */
.yGridViewItem { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color: white;}
.yGridViewAlter { font-weight: normal; font-size: 72%; color: #000000; font-family: Arial, Verdana, 'Times New Roman'; background-color:yellow;}

.Error {font-family:Verdana, Arial, Times New Roman; color:Red; font-size:small;}

.accordionHeader
{
    border: 1px solid #2F4F4F;   
    background: url(images/nav_box2.jpg);
	font-family: Arial, Sans-Serif;
	font-size: 12px;
	font-weight: bold;
    padding: 5px;
    margin-top: 5px;
    cursor: pointer;
}

#master_content .accordionHeader a
{	
	background: url(images/nav_box2.jpg);
	text-decoration: none;
}

#master_content .accordionHeader a:hover
{
	background: url(images/nav_box2.jpg);
	text-decoration: underline;
}

.accordionContent
{
    background-color: #FFFFFF;
    border: 1px dashed #2F4F4F;    
    padding: 5px;
    padding-top: 10px;
}

.accordionLink
{
	color: #FFFFFF
}