@charset "utf-8";

/* CSS Document */


body
{
	font: 100% Arial, Helvetica, sans-serif;
	background: #313131 url(../Assets/header.jpg) repeat-x;
	background-position: top center;
	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;
}

.twoColFixLtHdr #container
{
	width: 766px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.twoColFixLtHdr #sidebar1
{
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
}

.twoColFixLtHdr #mainContent
{
	margin: 0 5px 0 190px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.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;
}

#mainContent #middle .desc ul
{
	padding-left: 15px;
	margin-left: 15px;
}

#mainContent #middle .desc ul
{
	padding-left: 200px;
}

#sidebar1 #greenBox
{
	background: url(../Assets/block_green.png) no-repeat;
}

#sidebar1 #greenBox,
#sidebar1 #orangeBox
{
	height: 195px;
	width: 200px;
	color: #FFF;
	font-size: .8em;
	padding-left: 10px;
}

#sidebar1 #greenBox p,
#sidebar1 #orangeBox p
{
	padding-right: 30px;
}

#sidebar1 #greenBox h4,
#sidebar1 #orangeBox h4
{
	margin: 0;
	padding-top:20px;
	padding-bottom: 10px;
	font-size: .9em;
}

#sidebar1 #greenBox a,
#sidebar1 #orangeBox a
{
	color: #006;
	font-size: .9em;
	text-decoration: none;
}

#sidebar1 #greenBox a:hover,
#sidebar1 #orangeBox a:hover
{
	text-decoration: underline;
}

#sidebar1 #orangeBox
{
	background: url(../Assets/block_orange.png) no-repeat;
	height: 195px;
	width: 200px;
}

#sidebar1 #bottomBox
{
	width: 200px;
}

#sidebar1 #bottomBox #top
{
	width: 200px;
	height: 5px;
	background: url(../Assets/bottom_top.gif) no-repeat;
	font-size: 1px;
}

#sidebar1 #bottomBox #middle
{
	color: #FFF;
	width: 200px;
	background: url(../Assets/bottom_middle.gif) repeat-y;
	font-size: .8em;
	font-weight: bold;
	padding: 3px 10px;
}

#sidebar1 #bottomBox #middle p
{
	padding: 0;
	margin: 0;
}

#sidebar1 #bottomBox #middle ul
{
	margin: 0;
	padding: 5px 0 5px 25px;
}

#sidebar1 #bottomBox #middle ul li
{
	padding-bottom: 5px;
	padding-right: 15px;
}

#sidebar1 #bottomBox #middle a
{
	color: #FFF;
	text-decoration: underline;
}

#sidebar1 #bottomBox #middle a:hover
{
	text-decoration: none;
}

#sidebar1 #bottomBox #middle #linkList
{
	line-height: 25px;
}

#sidebar1 #bottomBox #middle #linkList a
{
	text-decoration: none;
}

#sidebar1 #bottomBox #middle #linkList a:hover
{
	text-decoration: underline;
}

#sidebar1 #bottomBox #bottom
{
	width: 200px;
	height: 5px;
	background: url(../Assets/bottom_bottom.gif) no-repeat;
	font-size: 1px;
}

#sidebar1 #copyright
{
	padding: 5px;
	text-align: center;
	color: #FFF;
	font-size: .8em;
}

.twoColFixLtHdr #footer
{
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #FFFFFF;
	text-decoration: none;
	text-align: right;
	margin-bottom: 15px;
}

.twoColFixLtHdr #footer a
{
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: underline;
}

.twoColFixLtHdr #footer a:hover
{
	text-decoration: none;
}

.twoColFixLtHdr #mainContent #top
{
	width: 556px;
	height: 5px;
	background: url(../Assets/content_top.gif) no-repeat;
	font-size: 1px;
}

.twoColFixLtHdr #mainContent #middle
{
	color: #000;
	width: 556px;
	height: 100%;
	background: url(../Assets/content_middle.gif) repeat-y;
	padding: 10px 0px 10px 10px;
	min-height: 450px;
}

.twoColFixLtHdr #mainContent #bottom
{
	width: 556px;
	height: 5px;
	background: url(../Assets/content_bottom.gif) no-repeat;
	font-size: 1px;
}

.twoColFixLtHdr #mainContent a:hover h1
{
	text-decoration: underline;
}

.twoColFixLtHdr #mainContent h2
{
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: #009933;
	text-decoration: none;
}

.twoColFixLtHdr #mainContent h1
{
	font-family: Arial, Helvetica, sans-serif;
	color: #009933;
	text-decoration: none;
	font-size: 20px;
	font-weight: normal;
	line-height: normal;
	font-style: normal;
}

#mainContent #middle .desc
{
	min-height: 165px;
	padding-right: 10px;
	font-size: .8em;
	padding: 0px;
	margin: 0px;
	border-bottom: #282828 dotted 1px;
	display: block;
}

#mainContent #middle .desc img
{
	float: left;
	padding-right: 10px;
}

#mainContent #middle .desc .link
{
	text-align: center;
}

#mainContent #middle .desc .link a
{
	color: #009933;
	text-decoration: none;
}

#mainContent #middle .desc .link a:hover
{
	text-decoration: underline;
}

#mainContent #middle .productDesc
{
	padding-left: 15px;
}

#mainContent #middle #content
{
	font-size: .9em;
	padding-right: 15px;
	text-align: left;
}

.blue
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #003366;
	text-decoration: none;
}

a
{
	font-family: Arial, Helvetica, sans-serif;
	color: #003366;
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

.green
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: #009933;
}

.whiteHeadline
{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

.black
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-decoration: none;
}

.sideList
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	line-height: 25px;
	padding-left: 5px;
}

.headlineOrange
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #FF9900;
	text-decoration: none;
}

.biggerBlue
{
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	color: #003366;
	font-weight: 900;
	font-size: 14px;
}
