/* 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;
} 
 
#container {
	width: 100%;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Verdana, Helvetica, Arial;
	font-size: 12px;
	font-style: normal;
	color: #000;
} 

#header {
	/* IMPORTANT */
	width: 100%;
	background-color: #1C46E1;
	text-align: center;
} 


#headerwrap {
	height: 152px;
	width: 900px;
	text-align: left;
	position: relative;
}

#searchtoptext{
text-align: left;
color: White;
position: absolute;
right: 20px;
top: 68px;
z-index: 2;
}


#topleftsearch {
	width: 300px;
	height: 55px;
	position: absolute;
	right: 3px;
	bottom: 0px;
	background : url(images/structure/search.png);
}

#indentsearchtext{
	text-align:right;
	width: 150px;
	/* border: 1px solid red; */
	color: Blue;
	position: absolute;
	right: 5px;
	bottom: 5px;
}
 
#nav {
	width: 100%;
	height: 26px;
	color: white;
	padding-top: 8px;
	text-align: center;
	background: #0A258C;
}

#nav a {
	font-family: Tahoma;
	font-weight: bold;
	font-size: 12px;
	text-decoration : none;
}

#nav a IMG{
	margin-bottom: 1px;
}

#nav a:link {
	color: #FFF;
}

#nav a:visited {
	color: #FFF;
}

#nav a:hover {
	color: #87CEEB;
}

#content {
	margin-top: 20px;
	background : white;
	overflow: visible;
	position: relative;
	text-align : left;
}

#bottomad{
	text-align: center;
	width: 100%;
	background: #1e43ca;
}

#footer{
	text-align: center;
	font-size: 12px;
	width: 100%;
}

#footer_text {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	color: #1C46E1;
	font-size: 12px;
	font-family: Verdana, Helvetica, Arial;
}


#loginbox {
	width: 301px;
	height: 153px;
	text-align : left;
	margin-top: 10px;
	background : url(images/structure/login.png);
	position: relative;
	background-repeat : no-repeat;
}

#loginboxtext{
	width: 301px;
	color: White;
	right: -50px;
	top: 5px;
	position: absolute;
}

#indentlogin{
	text-align:right;
	width: 20px;
	/*border: 1px solid red; */
	color: Blue;
	position: absolute;
	left: 120px;
	top: 102px;
}
 

#loginforms{
	width: 301px;
	text-align: left;
	color: White;
	margin-top: 0px;
	}
	
a:link {
	color: #1e43ca;
	text-decoration: none;
}

a:visited {
	color: #1e43ca;
	text-decoration: none;
}

a:hover {
	color: #1e43ca;
	text-decoration: underline;
}
	
/* Begin Images */
p img {
	padding: 0;
	max-width: 100%;
	}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left;
	}
/* End Images */
	


/*Simple styles for clients to use sizes and colors etc.*/

H1 {
	font-size: 18px;
	color : #1E43CA;
	margin: 0px;
	padding: 0px;
}

H2 {
	margin-top: 10px;
	font-size: 16px;
	padding: 0px;
	white-space : nowrap;
}

TABLE {
	text-align: left;
}

.smaller {
	font-size: 8px;
}

.blue {
	color : #1E43CA;
}

.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)

*/  

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}
