@charset "utf-8";
body  {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.6em;	
	background: #eaeaea;
	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: #3A4347;
}
.twoColFixRtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	/*background: #3A4347;  make sure this color matches the background of the header and the menu*/
	background: #889dae;
	padding: 0;
	border-left: 1px solid #ccc;  
	border-right: 1px solid #ccc;
	 
	/* 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. */
} 
.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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 320px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	margin-top:0px;
	margin-bottom:10px;
}

.twoColFixRtHdr #sidebar_sub {
	float: right; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	margin-top:0px;
	margin-bottom:10px;
}
.twoColFixRtHdr #mainContent { 
	margin: 22px 340px 0 0; /* the right margin on this div element creates the column down the right 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right:0px solid #ccc;
}
.twoColFixRtHdr #mainContent_sub { 
	margin: 22px 240px 0 0; /* the right margin on this div element creates the column down the right 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right:0px solid #ccc;
}

.twoColFixRtHdr #mainContent_nolimit { 
	margin: 22px 0px 0 0; /* the right margin on this div element creates the column down the right 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right:0px solid #ccc;
}


.twoColFixRtHdr #mainContent #lowerContent, .twoColFixRtHdr #mainContent_sub #lowerContent { 
	margin: 10px 0px 0 0;
	padding: 0 10px;
	background:#fff;
} 

.twoColFixRtHdr #mainContent #lowerContent #initiativesList {
	width: 170px;
	height: 100px; 
	float: left;
	border-top: 1px solid #ccf;
	padding-top:5px;
	background:#fff;
}

.twoColFixRtHdr #mainContent #lowerContent #newsarticles{ 
	margin: 0 0 0 180px;
	border-top: 1px solid #ccf;
	padding-top:5px;
	background:#fff;
}

.newsblocks{ 
	margin: 0 10px 0 180px;
	border-top: 0px solid #ccf;
	padding-top:0px;
	background:#fff;
	
}

.twoColFixRtHdr #footer { 
	padding: 4px 0px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff; 
} 
.twoColFixRtHdr #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 */
}
.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;
}
/******** html formatting *********/
img {
	border: 0;
}


h1 {
	font-size: 1.8em;
	font-weight: bold;
}

h2 {
	font-size: 1.2em;
	font-weight: bold;
}

h3 {
	font-size: 1.1em;
	font-weight: 400;
}

ul, ol {
	margin-top:0px;
}

ul li {list-style-type:square;}

ol li {list-style-type:decimal;}

table tr td {
	vertical-align:top;
	text-align:left;
}

table tr td.center {
	vertical-align:top;
	text-align:center;
}


table.form tr td.label {
	text-align:right;
}
table.form tr td.submit {
	text-align:center;
}

/************** menu ****************/
#subMenuLarge {
	margin-left:5px;
	font-size:11px;
}
#subMenuLarge a.highlight {
	color: #c60;
}

.subMenu {
	margin-left:2px;
	font-size:10px;
	font-weight:normal;
	font-family: Arial, Verdana, Helvetica, sans-serif;
}
.subMenu a, .subMenu a:link {
	font-size:10px;
	font-weight:normal;
	font-family: Arial, Verdana, Helvetica, sans-serif;
}
.subMenu a.highlight, .subMenu a:hover {
	color: #c60;
	font-size:10px;
	font-weight:normal;
	font-family: Arial, Verdana, Helvetica, sans-serif;
}

/************* contents ***********/
.utillink_sm {font-size: 10px}

.warning, .rules {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	color:#c00;
}
	
h2.sectiontitle {
	font-size:15px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
	margin-left:140px;
	color:#369;
}

h2.sectiontitle150M {
	font-size:15px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align:left;
	margin-left:150px;
	color:#369;
}

.sectionheader {
	font-size:13px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#369;
}

.sectionheaderpac {
font-size:16px;
font-family: Arial, Helvetica, sans-serif;
font-weight:bold;
line-height: 40px;
color:#f58026;

} 

table tr td.tblsubNav {
	border-right:1px dotted #aaa;
	width:140px;
}

table tr td.tblsubContent {
	padding-left:10px;
}

table.contentTable {
	border-collapse:collapse; border-color:#ccc;
}


table.contentTable tr.hd td {
	font-size:12px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#369;
	padding-left: 20px;
	background:#eaeaea;
}

table.contentTable tr td.hd {
	font-size:12px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#369;
	padding-left: 20px;
	background:#eaeaea;
}

table.contentTable tr td {
	padding-left: 20px; 
	background:#fff;
}



/************* menu **************/
#menu {
	width: 898px;
	height: 35px;
	/*background: #3A4347;*/
	background:#889dae;
	text-align: left;
	padding: 0px;
	margin: 0px;
	margin-bottom: 25px;
}

li.menuItem {
list-style-type:none;
	display: block;
	float: left;
	width: 178px;
	height: 30px;
}

/************ events *************/
#eventsPanel {
	z-index: 2;
	width: 510px;
	height: 200px;
	margin-left: 10px;
	border: 1px solid #ccc;
	background-color: #aaccff;
}

/********** initiatives *********/
#initiativesList ul {	
	margin-left: 0;
  	padding-left: 1em;
}
#initiativesList ul li {
	list-style-type:none;
	margin: 0;
  	padding: 0;
}
/*********** sidebar ************/
.button {
	width: 140px;
	height: 50px;
	display: block;
	margin-right: 10px;
	margin-bottom: 10px;
/*	float: left;*/
}
/*.bookstoreItem {
width: 320px;
height: 150px;
}*/

.book {
margin-right: 10px;
/*float: left;*/
}

.blockcontainer {
	margin-top:5px;
	border-top: 0px solid #99c; 
	padding-top:2px;
}

/*** newsblocksmtxt ****/
table.newsblocksmtxt {
	border:1px #ccc solid;
}

table.newsblocksmtxt tr td {
	padding:2px; 
	padding-left:6px;
	text-align:left;
	font-size:11px;
}
table.newsblocksmtxt tr td.hd {
	font-size:11px;
	font-weight:bold;
	/*background:url(/images/topic_bkg.gif) repeat-x;*/
	background:#9baebd;
	color:#fff;
	padding:0px;
	height:20px; 
	border-bottom:1px solid #ccf;
	text-align:center;
}
table.newsblocksmtxt tr td.hd a{
	font-size:11px;
	font-weight:bold;
	color:#fff;
}

table.newsblocksmtxt tr td p {
	font-size:11px;
	line-height:16px;
}

table.newsblocksmtxt tr td ul {
	margin-left: 0px;
	padding-left: 1em;
}
table.newsblocksmtxt tr td ul li{
	list-style-type:disc;
	font-size:11px;
	margin: 0;
  	padding: 0;
	line-height:18px;
}

table.newsblocksmtxt tr td ul li a{
	font-size:11px;
	font-weight: normal;
	text-decoration:underline;
}
table.newsblocksmtxt tr td ul li a:hover{
	font-size:11px;
	font-weight: normal;
	text-decoration:none;
}
/*******/

/*** newsblock ****/
table.newsblock {
	border:1px #ccc solid;
}

table.newsblock tr td {
	padding:4px; 
	padding-left:10px;
	text-align:left;
	font-size:12px;
}

table.newsblock tr td ul {
	margin-left: 0px;
	padding-left: 1em;
}
table.newsblock tr td ul li{
	list-style-type:disc;
	font-size:12px;
	margin: 0;
  	padding: 0;
	line-height:24px;
}

table.newsblock tr td ul li a{
	font-size:12px;
	font-weight: normal;
	text-decoration:underline;
	
}
table.newsblock tr td ul li a:hover{
	font-size:12px;
	font-weight: normal;
	text-decoration:none;
}

table.newsblock tr td.center {
	padding:4px; 
	padding-left:10px;
	text-align:center;
	font-size:11px;
}

table.newsblock tr td.hd {
	font-size:12px;
	font-weight:bold;
	/*background:url(/images/topic_bkg.gif) repeat-x;*/
	background:#9baebd;
	color:#fff;
	padding:0px;
	padding-left:10px;
	height:20px; 
	border-bottom:1px solid #ccf;
	text-align:center;
}
/*******/

table.promoblock {
	border:1px #ccc solid;
}
table.promoblock_pac {
	
}

table.promoblock tr td {
	padding:4px; 
	padding-left:10px;
	text-align:left;
}

table.promoblock tr td.center {
	padding:4px; 
	padding-left:10px;
	text-align:center;
}

table.promoblock tr td.hd {
	font-size:14px;
	/*background:url(/images/topic_bkg.gif) repeat-x;
	border-bottom:1px dotted #99c;*/
	background:#9baebd;
	padding:0px;
	padding-left:10px;
	height:30px; 
	padding-top:5px;
	text-align:center;
	color:#fff;
}
table.promoblock tr td.hd a{
	font-size:14px;
	/*background:url(/images/topic_bkg.gif) repeat-x;
	border-bottom:1px dotted #99c;*/
	text-align:center;
	color:#fff;
}

a.blockhd, a.blockhd:link, .navHeader { 
	font-size:14px;
	font-weight:bold;
}

a.blockhd, a.blockhd:link {
	font-size:13px; 
	font-weight:bold;
	background:url(/images/topic_bkg.gif) repeat-x;
	padding:0px;
	padding-left:5px;
	height:20px; 
	border:1px dotted #99c;
	text-align:left;
}

.navStyleHeader { 
	font-size:12px; 
	font-weight:bold;
	background:#eaeaea;
	padding:0px;
	padding-left:5px;
	height:18px; 
	border:1px dotted #99c;
	text-align:left;
}

a.blockhd:visited { 
	color: #36c;
}
a.blockhd:hover { 
	color: #c60;
}

/************ links *************/
a, a:link {
	font-weight: bold;
	text-decoration: none;
	color: #36c;
}
a:visited {
color: #36c;
}

a:hover {
	font-weight: 800;
	color: #c60;
}


/************ footer format **********/
#sponsors {
	height: 120px;
	width: 900px;
	background: white;
	text-align: left;
	border-top: 1px solid #999889;
	/*margin-left: auto;
	margin-right: auto; 
	position: relative;*/
}
.logo {
	padding: 0px;
	margin: 0px;
	height: 50px;
	float: left;
}

.logo:hover {
border-bottom: 1px solid #CCCCCC;
}

#footertext {
	font-size: 11px;
	height: 40px;
	width: 900px;
	background-color: white;
	text-align: right;
	margin: 0px;
	padding: 0px;
	padding-top:5px;
	border-top: 1px solid #999889;
	margin-top: 5px;
	margin-bottom: 10px;
}