@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: rgb(86,120,158);
	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;
}
.twoColFixRtHdr #headercontainer { 
	width: 1010px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #container { 
	width: 1010px;  /* 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: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #containeralt { 
	width: 90%;  /* 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: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header { 
	background: #FFF; 
	padding: 0 10px 0 20px;  /* 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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	position:relative;
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 15px 0 0 0;
	margin:0 10px 0 0;
}
.twoColFixRtHdr #sidebar1 a { 
	color:rgb(0,84,128);
	text-decoration:none;
}
.twoColFixRtHdr #mainContent { 
	margin: 0px 220px 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 0 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #mainContent h1 { 
    font-size:18px;
	padding:0;
	margin:0 0 0 0;
	color:rgb(0,84,128);
}
.twoColFixRtHdr #mainContent h3 { 
    font-size:18px;
	padding:0;
	margin:0 0 10px 0;
	color:rgb(0,84,128);
}
.twoColFixRtHdr #mainContent h4 { 
    font-size:14px;
	padding:0;
	margin:0 0 5px 0;
	color:rgb(0,84,128);
}
.twoColFixRtHdr #mainContent p,ul,ol { 
    font-size:11px;
	line-height:14px;
	margin:5px 0 0 0;
}
.twoColFixRtHdr #mainContent a { 
	color:#FFFFFF;
	text-decoration:none;
}
.twoColFixRtHdr #footer { 
	margin-top:10px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF; 
} 
.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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:11px;
}
.twoColFixRtHdr #footer a {
	color:#000;
	text-decoration:none;
}
.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;
}
#islands {
	position:relative; 
	margin-top:15px;
	/* height:350px; */
}
.islandbox {
	position:absolute; 
	width:174px;
	top:0px;
	padding:0;
}
.islandheader {
	background-image:url(images/islandheader174-bg.png); 
	background-repeat:no-repeat; 
	height:35px; 
	font-weight:bold; 
	font-size:12px; 
	text-align:center;
	line-height:15px; 
	color:#fff; 
	padding:10px 10px 0;
	
}
.islandbody {
	background-color:#CCC; 
	font-size:11px; 
	line-height:14px; 
	padding:10px;
	/* height:220px; */
}
.islandfooter {
	background-color:#FFF; 
	height:27px;
	padding:0 10px;
	/* width:144px; */
}
.twoColFixRtHdr #clickhere a {
	color:#FFF;
	text-decoration:none;
}
.clickhere {
	background-image:url(../images/click-here-bg.png); 
	background-repeat:no-repeat;
	background-position: 50% 50%;
	width:100px; 
	height:15px;
	margin:0 auto; 
	font-size:12px; 
	font-weight:bold; 
	color:#FFF; 
	padding:2px 0; 
	text-align:center;
}
.quicklink {
	/*background-color:rgb(127,169,191); */
	background-color:#CCC;
	border: 1px solid #FFFFFF; 
	padding:10px 5px 0 5px; 
	color:#000;
	font-weight:bold; 
	font-size:11px; 
	width:180px; 
	margin:0; 
	height:22px;
}
.quicklinktitle {
	background-color:rgb(0,84,128); 
	border: 1px solid #ffffff; 
	padding:10px 5px 0 5px; 
	color:#fff;
	font-weight:bold; 
	font-size:12px; 
	text-align:center;
	width:180px; 
	margin:0; 
	height:24px;
}
div.leftnavheader {
	background-color:rgb(0,84,128); 
	font-weight:bold; 
	font-size:12px; 
	text-align:center;
	line-height:15px; 
	color:#FFF; 
	padding:10px;
}
div.leftnav {
	background-color:rgb(192,192,192); 
	background-image:url(../images/icon.png);
	background-repeat:no-repeat;
	background-position: 4% 50%;
	border-top: 1px solid #FFFFFF; 
	border-bottom: 1px solid #FFFFFF; 
	padding:10px 5px; 
	font-weight:bold; 
	font-size:11px; 
	width:144px; 
	margin:0; 
	/* height:27px; */
}
div.leftnavaward {
	background-color:rgb(192,192,192); 
	background-image:url(../images/icon.png);
	background-repeat:no-repeat;
	background-position: 4% 50%;
	border-top: 1px solid #FFFFFF; 
	border-bottom: 1px solid #FFFFFF; 
	padding:10px 5px; 
	font-weight:bold; 
	font-size:11px; 
	width:164px; 
	margin:0; 
	/* height:27px; */
}
div.leftnavred {
	background-color:#196622; 
	background-image:url(../images/icon-white.png);
	background-repeat:no-repeat;
	background-position: 4% 50%;
	border-top: 1px solid #FFFFFF; 
	border-bottom: 1px solid #FFFFFF; 
	padding:10px 5px; 
	font-weight:bold; 
	font-size:11px; 
	width:144px; 
	margin:0; 
	/* height:27px; */
}
div.leftnavthispage {
	/*background-color:rgb(243,210,137); */
	background-color:rgb(231,166,60);
	border-top: 1px solid #FFFFFF; 
	border-bottom: 1px solid #FFFFFF; 
	padding:10px 5px; 
	font-weight:bold; 
	font-size:11px; 
	width:144px; 
	margin:0; 
	/* height:27px; */	
}
#leftnav a {
	color:rgb(0,84,128);
	text-decoration:none;
}
#leftpanel {
	margin:20px 0 0 0;
	padding:10px 0;
	text-align:center;
	background-color:rgb(127,169,191); 
	color:rgb(0,84,128);
}
#leftpanel p {
	margin:0 0 5px 0;
	padding:0;
	font-weight:bold;
	font-size:12px;
}
#indices h2 {
	font-size:18px;
	font-weight:normal;
	margin:0px;
	padding:5px;
	text-align:left;
	color:#8f8f8f;
}
#indices a.index {
	color:rgb(0,84,128);
	font-size:12px;
	margin:0 0 0 0;
	padding:5px;
	text-align:center;
}
#popmain p {
	font-size:12px;
	line-height:16px;
	color:rgb(0,84,128);
	margin-top:24px;
}	

#popmain h1 {
	font-size:24px;
	color:rgb(0,84,128);
	margin-top:0px;
}
.twoColFixRtHdr #glossary a {
	color:rgb(0,84,128);
	text-decoration:none;
}
.twoColFixRtHdr #links a {
	color:rgb(0,84,128);
	text-decoration:none;
}
.twoColFixRtHdr #termsbox p {
	margin:5px 0;
}
.twoColFixRtHdr #previousissues a {
	color:rgb(0,84,128);
	text-decoration:none;
}
.twoColFixRtHdr #indices h2 {
	font-size:14px;
	color:#000;
}
