@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;
}
/* 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-family: Verdana, Geneva, sans-serif;
font-size:  100%;
height: 100%;
color: #000;
margin: 0 0 0 0;
padding: 0 0 0 0;
text-align: center;
background-color: #2c4e4c;
}
a, a:link {color: #2D4262;}
a:visited {color: #2D4262;}
a:hover {color: #5275AA;}

a:focus {color: #000;}

a:active {color: #000;}
.clear {clear:both;}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
}
.floatybox {
	float: left;
	width: 195px;
}

/* ---------- Page Structure CSS ---------- */

/* 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. */
#container {
margin: 10px auto 10px auto; 
text-align: left; /* Redefines the text alignment defined by the body element. */
width: 809px;
}
#top {
background-image: url(images/banner.jpg);
margin: 0px 0px 10px 0px;
padding: 8px 25px 10px 22px;
height: 150px;
}
#content {
clear:both;
margin: 0px 0px 0px 0px;
padding: 0px 25px 0px 22px;
background-image: url(images/content_bg.jpg);
height:100%;
overflow:hidden;
}
#pageTitle {
margin: 0px 0px 0px 0px;
padding: 5px 0px 3px 0px;
text-align:center;
background-color: #8c8e7c;
font-weight: bold;
color: #c4cebc;
font-size: 24px;
}
#menuBox {
margin: 15px 0px 3px 0px;
padding: 0px 0px 10px 10px;
width: 162px;
}
#underMenuBox {
margin: 20px 0px 0px 10px;
width: 152px;
}
#contentBoxWrap {
float:right;
width: 587px;
margin: 15px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
#contentBoxSmall {
width: 400px;
padding-bottom: 10px;
background-color:#fcfefc;
}
#contentBoxLarge {
width: 587px;
background-color:#fcfefc;
}
#contentBoxLarge p {
padding: 0px 15px 10px 15px;
}
#contentBoxLarge p.list-head {
padding: 10px 15px 0px 15px;
}
#content h1 {
font-size: 14px;
font-weight: bold;
color: #fcfefc;
background-color: #8c8e7c;
text-align: center;
margin: 0px;
padding: 5px;
}
#content h2 {
font-size: 12px;
font-weight: bold;
color: #fcfefc;
background-color: #8c8e7c;
margin: 3px 0;
padding: 5px;
}
#content h3 {
font-size: 12px;
font-weight: bold;
color: #8c8e7c;
margin: 3px;
padding: 5px;
}
#contentRight {
float:right;
background-color:#c4cebc;
width: 175px;
margin: 0px 0px 0px 0px;
padding: 0px 10px 0px 0px;
}
#contentRight p {
margin: 5px;
padding: 0px;
}
#footMatter {
clear: both;
}
#footMatter p {
padding: 10px 0px 10px 0px;
text-align: center;
font-size:8pt;
}
#bottom{
clear: both;
background-image: url(images/bottom.jpg);
height: 8px;
}

/* ---------- Typography CSS ---------- */

h1 {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
}
img {border: 0;}
p {
margin: 0px;
padding: 0px;
line-height: 1.5em;
font-size: 12px;
}
.breadCrumbs {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
list-style-type: none;
}
ul {
margin-top:0px;
font-size: 9pt;
}
.small{
	font-size:11px;
}