/* 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, p, ul, li {
	margin: 0;
	padding: 0;
	border: none;
}
/* 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 {
	background-color: #C0D6DE;
	color: #333333;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	line-height: 1.2em;
	text-align: center;
	font-size: 72.5%;
}
p, td, div {
	font-size: 1em;
}
p {
	padding: 0px 0px 1em;
}
td {
	vertical-align: top;	
}
/* Commonly used to style page titles. */
h1 {
	color: #45040F;
	font-size: 2em;
	font-weight: bold;
	line-height:2.1em;
}
h2 {
	color: #005887;
	font-size: 1.4em;
	font-weight: bold;
	line-height:1.5em;
}
h2 a:link, h2 a:visited {
	color: #005887!important;
	font-weight: bold;
}
h2 a:hover {
	color: #B9BB69!important;
	text-decoration: underline;
}
h3 {
	color: #85A4B0;
	font-size: 1.4em;
	font-weight: normal;
	line-height:1.5em;
}
h4 {
	color: #666666;
	font-size: 1.1em;
	font-weight: bold;
	line-height:1.2em;
}
h1, h2, h3, h4, h5, h6 {
	
	margin-bottom: 0px;
}
/* Sets the style for links. */
a,	a:link, a:visited {
	color: #85213D;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #B9BB69;
	text-decoration: underline;
}
ul {
	padding: 0px;
	margin: 0px 0px 10px 0px;	
}
li {
	background: url(bullet.gif) no-repeat left .5em;
	padding: 0px 0px 0px 10px;
	margin: 0px;
	list-style: none;	
}
a img {
	border:none;
}
hr {
	background: #CCCCCC;
	color: #CCCCCC;
	height: 1px;
	border: 0px;
	margin-top: 15px;
	margin-bottom: 15px;
}
th {
	color: #FFFFFF;
	background: #016889;
	border-color: #FFFFFF;
	text-align: center;
}
th p {
	margin: 0px;
	padding: 0px;	
}


/*----------------COMMON CLASSES----------------*/

.pad {
	padding: 10px;
}
.pad20 {
	padding: 20px;
}
.pagepad {
	padding: 10px;
	margin: 20px 0px;
	background-color: #fff;
}
.padbtm {
	padding: 0px 0px 10px 0px!important;
}
.padtop {
	padding: 10px 0px 0px 0px!important;
}
.imgleft {
	display: inline;
	margin: 0px 10px 0px 0px;
}
.borderbtm {
	border-bottom: 1px solid #CCCCCC;	
}
.bordertop {
	border-top: 1px solid #CCCCCC;	
}
.borderleft {
	border-left: 1px solid #CCCCCC;	
}
a.button {
	background: #85213D;
	padding: 5px;
	border: 1px solid #45040F;
	color: #FFFFFF!important;
	text-decoration: none;
}
a.button:hover {
	background: #C9CB72;
	border: 1px solid #B1B365;
	color: #666666!important;
	text-decoration: none;
}
.quotebox {
	font-size: 1.1em;
	line-height: 1.3em;
	color: #45040F;
	background: #D9E7EB url(bkg_quotebox.gif) no-repeat left top;
	padding: 10px 10px 10px 20px;
	margin-bottom: 10px;
	margin-right: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	letter-spacing: .07em;
}
.relatedbox {
	font-size: 1.1em;
	line-height: 1.3em;
	color: #45040F;
	padding: 10px;
	margin-bottom: 10px;
	margin-right: 10px;
	background: #D9E7EB;
}
.tanbox, .bluebox, .graybox, .redbox {
	margin: 0 0 0 1px;
}
.tanbox {
	background: #ECEDDB;
}
.bluebox {
	background: #D9E7EB;	
}
table.bluebox td{
	padding: 10px;	
}
.graybox {
	background: #E6E6E6;	
}
.redbox {
	background: #85213D;
	color:#fff;
}

p.tanbox, p.bluebox, p.graybox, p.redbox {
	padding:10px;
	margin-bottom: 10px;
	font-size:1.2em;
	font-weight:bold;	
}
.employeephoto {
	margin: 0px 10px 7px 0px;
	float:left;
}

#frmPoll {
	background: #EBF3F5;
	padding: 10px;	
}
#frmPoll td {
	padding: 3px 0 3px 0;
	vertical-align:middle;	
}
#formstable td, #formstable th {
	padding: 5px;
	border: 1px solid #C0D6DE;
}

/*----------------MAIN LAYOUT----------------*/

/* 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 {
	margin: 0 auto; 
	padding: 0px; 
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 801px;
}
#outerWrapper #header {
	border-bottom: solid 1px #fff; 
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px 0px 0px 0px;
	float:left;
}
#outerWrapper #contentWrapper #leftColumn1 {
	border-style: none; 
	float: left;
	margin: -1px 0 0 0; 
	padding: 0px 0px 0px 0px; 
	width: 205px;
}
/* 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 {
	border-top: 50px solid #016889; 
	margin: 0px 0px 0px 205px; 
	padding: 0px; 
}

#outerWrapper #contentWrapper #content p {
	line-height:1.4em; 
}
/* 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;
}
#contentWrapper {
	background: url(bkg_content.gif) repeat-y left top;
	clear:both;	
}
#outerWrapper #footer {
	background-color: #D9E7EB;
	border-top-style: none;
	padding: 10px 10px 10px 10px;
	margin: 10px 0px 0px;
	text-align: center;
	font-size: .8em;
}
table.submitjob td {
	text-align: left;
	vertical-align: top!important;
	padding: 10px 0px!important;
	border-bottom: 1px solid #CCCCCC;
}
table.submitjob td td {
	text-align: left;
	vertical-align: top!important;
	padding: 0px!important;
	border-bottom: none;
}
/*.submitjob input, .submitjob textarea {
	margin: 0 0 10px 0;
}*/

/*----------------HEADER----------------*/

#header img {
	display: inline;
}

/*----------------CONTENT AREA----------------*/

#contenttop, .contentblock {
	border-bottom: 1px solid #CCCCCC;
}
#contentbtm {
	background: url(bkg_contentbtm.gif) repeat-y 1px top;
}
.leftcol {
	float: left;
	position:absolute;
}
#outerWrapper #contentWrapper #content .leftcol {
	width: 230px;
}
#outerWrapper #contentWrapper #content .rightcol {
	padding: 0px 0px 0px 230px;
	
}
#contentbtm .rightcol td {
	padding: 0px 0px 15px 0px;
}
#contentbtm .rightcol ul {
	padding: 0px;
	margin: 0px;
}



/*----------------FONTS AND STYLES----------------*/

#outerWrapper #footer p {
	padding: 0px 0px .1em 0px;
	margin: 0px;
}
#footer a:hover {
	color: #85213D;
	text-decoration: underline;
}

/*----------------IMAGES----------------*/

