@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;
	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: #666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFF;
	background-image: url(images/bckgndMain.gif);
	background-repeat: repeat-x;
	behavior: url("csshover3.htc");
}
h2 {
	font-size: 18px;
	margin: 0px;
}
h3 {
	font-size: 14px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
 #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1000px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
 #header {
	height: 110px;  /* 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. */
	background-image: url(images/bckgndHeader.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 25px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#mainWrapper {
	background-image: url(images/bckgndWrapper.gif);
	background-repeat: repeat-y;
	padding-bottom: 5px;
}
 #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 */
}
 #sidebar1 {
	position: absolute;
	top: 135px;
	left: 0px;
	width: 195px; /* padding keeps the content of the div away from the edges */
	background-image: url(images/menuTop.gif);
	background-repeat: no-repeat;
	padding-top: 16px;
}
 #sidebar2 {
	position: absolute;
	top: 135px;
	right: 0;
	width: 190px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
}
 #mainContent {
	margin-top: 0px;
	margin-right: 190px;
	margin-bottom: 0;
	margin-left: 195px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	color: #4D4D4D;
}
 #footer {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-image: url(images/bckgndFooter.gif);
	background-repeat: no-repeat;
	clear: both;
	text-align: center;
} 
 #footer p {
	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-size: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#flashContainer {
	position: absolute;
	height: 155;
	width: 315;
	z-index: 100;
	left: 687px;
	top: 0px;
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
	
/* MENU STYLING*/	
.arrowlistmenu{
	width: 195px; /*width of accordion menu*/
	text-decoration: none;
	color: #FFF;
}
.arrowlistmenu a:visited{
	text-decoration: none;
	color: #FFF;
}
.arrowlistmenu .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	color: white;
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	text-transform: none; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
	margin-top: 0px;
	background-image: url(images/menu_off.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	font-weight: normal;
	font-size: 12px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFF;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 20px;
}
.arrowlistmenu .menuheader:hover {
	display: block;
	background-image: url(images/menu_selected.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	font-size: 12px;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-image: url(images/menu_selected.jpg);
	background-repeat: repeat-y;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0px;
padding: 0px;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}
.arrowlistmenu .menuheader a, a:visited {
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
}

.arrowlistmenu ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
	color: #FFF; /*custom bullet list image*/
	display: block;
	padding-left: 25px; /*link text is indented 19px*/
	text-decoration: none;
	font-size: 11px;
	background-image: url(images/menu_sub.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	font-weight: normal;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFF;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 2px;
	height: 20px;
}

.arrowlistmenu ul li a:visited{
	color: #FFF;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	color: #FFF;
	background-image: url(images/menu_selected.jpg);
	background-repeat: repeat-y;
}
/* END MENU STYLING*/
.greyMenu {
	font-size: 11px;
	font-weight: normal;
	color: #000;
	background-image: url(images/menuGrey.gif);
	background-repeat: repeat-y;
	padding-right: 5px;
	padding-left: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 18px;
}
.greyMenu a{
	color: #000;
	text-decoration: none;	
}

.greyMenu a:hover{
	color: #000;
	text-decoration: underline;	
}
.panel2Menu{
	background-image: url(images/panel2_bckgnd.gif);
	background-repeat: repeat-y;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-left: 15px;
	padding-right: 5px;
}
.panel2Menu h2{
	font-size: 22px;
	font-weight: normal;
	margin: 0px;
	line-height: 22px;
}
.panel2Menu ul {
	list-style-type: none;
	padding: 0px;
	margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
	margin-top: 0px;
	margin-right: 15px;
	margin-left: 15px;
}
hr {
	color: #FFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.panel2Menu ul li{
	padding-bottom: 7px; /*bottom spacing between menu items*/
}

#sidebar2 .panel2Menu a:hover
{
	text-decoration: underline;
	color: #000;
}
#sidebar2 .panel2Menu ul li a , a:visited{
	text-decoration: none;
	color: #000;
}
.orangePanel {
	background-image: url(images/orangePanel.gif);
	background-repeat: no-repeat;
	height: 215px;
	width: 177px;
	color: #FFF;
	padding: 10px;
	float: left;
}
.bannerMedium {
	background-image: url(images/panel02new.jpg);
	background-repeat: no-repeat;
	height: 70px;
	width: 412px;
	color: #FFF;
	margin-top: 10px;
	font-size: 13px;
	padding-top: 35px;
	padding-bottom: 15px;
	padding-left: 10px;
	float: right;
}
#featurePanel {
	float: right;
	height: 235px;
	width: 375px;
}
.floatLeftpadded {
	float: left;
	padding-right: 15px;
}
.rulebelowPadded {
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #C5C6C8;
}
.rulebelow {
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #C5C6C8;
}
.tableBase {
	background-image: url(images/tableBase.gif);
	background-repeat: no-repeat;
	height: 15px;
	width: 584px;
}
.tableHeader h2 {
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 15px;
}
a, a:link, a:visited {
	color: #934640;
	text-decoration: none;
}
.redText {
	color: #934640;
}
a:hover {
	text-decoration: underline;
}
.orangePanel a {
	color: #FFF;
}
.orangeText {
	color: #F79026;
}
h4 {
	font-size: 16px;
	font-weight: bold;
	color: #97C93C;
	margin: 0px;
}
#greenMenu {
	background-image: url(images/menu_Green.jpg);
	background-repeat: repeat-y;
	display: block;
	clear: right;
}
#greenMenu a {
	background-image: url(images/menu_Green.jpg);
	background-repeat: repeat-y;
}
#greenMenu a:hover {
	background-image: url(images/menu_Green_selected.jpg);
	background-repeat: repeat-y;
}
.loremIpsum {
	color: #CCC;
}
h5 {
	font-size: 16px;
	font-weight: bold;
	color: #F7901E;
	margin: 0px;
}
.greyText {
	color: #999;
}
.greyPanel {
	background-color: #CCC;
	padding: 5px;
	margin-right: 5px;
	margin-top: 10px;
	width: 425px;
}
.rightPanelframing {
	background-image: url(images/rightPanelframing.gif);
	background-repeat: no-repeat;
	width: 275px;
	background-color: #EBF2D6;
	padding-top: 15px;
}
.rightPanelframingtop {
	background-image: none;
	background-color: #9FC51D;
	color: #000;
	padding-right: 10px;
	padding-left: 10px;
}
.leftPanel {
	padding-right: 5px;
}
.rightPanel {
	padding-left: 5px;
}
.greenRules {
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #94C538;
	border-bottom-color: #94C538;
	padding-top: 8px;
	padding-bottom: 8px;
}
