@charset "utf-8";
/* CSS Document */

/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #666666;
}
/* Commonly used to style page titles. */
h1 {
	color: #0F0CF0;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
font-family: Arial, Helvetica, sans-serif; font-size: x-large;
}

/* link styles */
/* Sets the style for unvisited links. */
a, a:link {
	color: #0F0CF0;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #663399;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #0099FF;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000066;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000066;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	width: 900px;  /* this will create a container 900 pixels wide */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

#outerWrapper #header {
	background: #DDDDDD; 
	padding: 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header 	instead of text, you may want to remove the padding. */
}

#contentWrapper {
	background-image: url(../Images/website-template/sidebar-solid-grey.png);
	background-repeat: repeat-y;
	background-position: left;
}

#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	width: 190px;
	/*min-height: 375px;*/
	padding: 5px 5px 5px 5px;
}

#outerWrapper #contentWrapper #subhead {
	background-color: #0F0CF0;
	padding: 10px 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin: 0 0px 0 200px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0 0 210px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: left;
	display: block;
}

#outerWrapper #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}


/*
<!--[if IE 5]>
<style type="text/css"> 
/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. 
#outerWrapper #contentWrapper #leftColumn1 {
  width: 220px;
}
</style>
<![endif]-->
<!--[if IE]>


<![endif]-->
<!--[if IE]>
<style type="text/css"> 
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. 
#outerWrapper #contentWrapper #content {
  zoom: 1;
}
</style>
<![endif]-->
*/

/* main text styles */
.style2 {
	font-size: x-large;
	color: #FFFFFF;
}

.style3 {	
	font-size:16px;
	font-weight:bold;
	color: #0F0CF0;
}

.style6 {
	font-size: small;
	font-weight: bold;
}

.style_page_header {
	color: #0F0CF0;
	font-size:30px;
}

.style_footer {
color:#0000FF
}