@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #CCCCCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #40606F;
}
body,td,th {
	color: #CCCCCC;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.25em;
	font-weight: normal;
	color: #183542;
}
.twoColFixRtHdr #container {
	width: 750px;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
} 

.twoColFixRtHdr #container #mainContentBox #sidebar1 .image {
	border: 2px solid #91AA9D;
}
.twoColFixRtHdr #header {
	text-align: center;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-bottom: 0px;
	margin-top: 0px;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#navContainer {
	text-align: center;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 50px;
	margin-bottom: 0px;
	list-style-type: none;
	list-style-image: none;
	text-decoration: none;
	}
ul#navBar {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	}
	
#navBar li {
	float: left;
	width: 116px;
	list-style-image: none;
	list-style-type: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	}
#navBar a {
	color: #FFF;
	font-size: .8em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 5px 5px 5px 5px;
	display: block;
	background-color: #406170;
	list-style-image: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	list-style-type: none;
	}
#navBar a:hover {
	color: #91AA9D;
	font-weight: normal;
	list-style-image: none;
	list-style-type: none;
	background-color: #406170;
	}
*html #navBar a {
	height: 1em;
	list-style-type: none;
	list-style-image: none;
	}
a {
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	list-style-type: none;
	list-style-image: none;
	text-decoration: none;
}
a:link {
	text-decoration: none;
	color: #FFFFFF;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
a:visited {
	text-decoration: none;
	color: #91AA9D;
}
a:hover {
	color: #193744;
	text-decoration: underline;
}
a:active {
	text-decoration: none;
	list-style-type: none;
}
.twoColFixRtHdr #container #mainContentBox {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	color: #333333;
	background-color: #91AA9D;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	padding: 20px;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #406170;
	color: #FFFFFF;
}

.twoColFixRtHdr #container #mainContentBox #sidebar1 p {
	font-size: 0.9em;
	color: #CCCCCC;
	margin-top: 8px;
	margin-bottom: 0px;
}

.twoColFixRtHdr #container #mainContentBox #sidebar1 h3 {
	margin-top: 10px;
	margin-bottom: 0px;
	text-align: center;
	font-weight: normal;
}
.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-bottom: 0;
} 
.twoColFixRtHdr #footer {
	padding-top: 20;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	margin-top: 20px;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	color: #333333;
	text-align: center;
	line-height: 125%;
}

.twoColFixRtHdr #container #mainContentBox #mainContent p {
	line-height: 125%;
	color: #333333;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.curved {
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	behavior:url (images/border-radius.htc;
	}

.curvedTwo {
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	behavior:url (images/border-radius.htc;
	}

.twoColFixRtHdr #mainContentFlash {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 100px;
	padding-bottom: 0;
	padding-left: 100px;
	text-align: center;
}
