@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(images/bkgd.gif);
	background-repeat:repeat-x;
	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;
	line-height: 1;
}
.twoColFixLtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/bkgdContainer.gif);
	background-repeat:repeat-y;
	
	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. */
} 
.twoColFixLtHdr #header { 
	background-repeat:no-repeat;
	height:150px;
	width:800px;
	background-color:#ece0b1;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* 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: #ece0b1; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	text-align:right;
}
.twoColFixLtHdr #sidebar1 a {
	font-size: 12px;
	color: #01573c;
	font-weight: bold;
	text-decoration:none;
}
.twoColFixLtHdr #sidebar1 a:visited {
	color: #01573c;
}
.twoColFixLtHdr #sidebar1 a:hover {
	color: #01573c;
}
.twoColFixLtHdr #sidebar1 a:active {
	color: #01573c;
}
.bulletimagestyle{ /*Absolute position bullet image. No need to modify*/
position: absolute;
left: 200px;
}

.twoColFixLtHdr #mainContent { 
	 /*margin: 0 0 0 177px; 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. */
	margin-left:177px;
	margin-top:0px;
	padding: 30px 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLtHdr #mainContent h1 { 
	font-family:"Times New Roman", Times, serif;
	font-stretch:expanded;	
	font-size:22px;
	color:#01573c; 
	background-color:#ece0b1;
	padding:5px;
}
.twoColFixLtHdr #mainContent h2 { 
	font-size:14px; 
	font-weight:bold; 
	color:#01573c; 
}
.twoColFixLtHdr #mainContent td { 
	font-size:11px; 
	font-weight:bold; 
	color:#01573c; 
}
.twoColFixLtHdr #mainContent p{
	font-size:11px; 
	line-height:15px;
}

.twoColFixLtHdr #mainContent ul{
	font-size:11px; 
	line-height:15px;
	list-style:square;
	list-style-position:inside;
	margin-left:0;
	padding-left:5px;
}
.twoColFixLtHdr #mainContent a {
	font-size: 11px;
	font-weight: bold;
	text-decoration:none;
	color:#01573c;
}
.twoColFixLtHdr #mainContent a:visited {
	color: #01573c;
}
.twoColFixLtHdr #mainContent a:hover {
	color: #000000;
}
.twoColFixLtHdr #mainContent a:active {
	color: #01573c;
}


.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
 	background:#FFFFFF;
} 
.twoColFixLtHdr #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 */
	text-align:center;
	font-size:9px;
	color:#01573c;
}

.twoColFixLtHdr #footer a {
	font-size: 9px;
	color: #01573c;
	text-decoration:none;
}
.twoColFixLtHdr #footer a:visited {
	color: #01573c;
}
.twoColFixLtHdr #footer a:hover {
	color: #000000;
}
.twoColFixLtHdr #footer a:active {
	color: #01573c;
}





.fltrtpad { /* 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;
	padding-right:40px;
}
	
.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;
}




/*Styles for Message Box on home page*/
.messagebox{
	position:static;
	width:580px;
}
.messageboxtop{
background-image:url(images/messagebox_top.gif);
color:#ffffff;
font-size:12px;
font-weight:bold;
padding:5px;
}
.messageboxmid{
background-image:url(images/messagebox_mid.gif);
background-repeat:repeat-y;
font-size:11px;
padding-top:10px;
padding-left:8px;
padding-bottom:10px;
padding-right:20px;

}

.messageboxbottom{
background-image:url(images/messagebox_bottom.gif);
height:22px;
}

/*Styles for Sign Up Box on home page*/
.signupebox{
	position:static;
	float:right;
	width:125px;
	height:221px;
	background-image:url(images/signupbox.jpg);
	background-repeat:no-repeat;
	font-size:10px;
	line-height:12px;
	color:#FFFFFF;
	padding-left:15px;
	padding-right:20px;
	padding-top:15px;
	margin-left:20px;
}

.investmentbox{
	line-height:11px; 
	width:420px; 
	height:110px;
	background-image:url(images/box_investment.jpg);
	background-repeat:no-repeat;
	padding-left:150px;
	padding-right:20px;
	padding-top:20px;
	padding-bottom:20px;
	margin-top:10px;
}
.allocationbox{
	line-height:11px; 
	width:420px; 
	height:110px;
	background-image:url(images/box_allocation.jpg);
	background-repeat:no-repeat;
	padding-left:150px;
	padding-right:20px;
	padding-top:20px;
	padding-bottom:20px;
	margin-top:10px;
}
.financialbox{
	width:420px; 
	height:110px;
	background-image:url(images/box_financial.jpg);
	background-repeat:no-repeat;
	padding-left:150px;
	padding-right:20px;
	padding-top:20px;
	padding-bottom:20px;
	margin-top:10px;
}
.indent{
padding-left:10px;}

.invest {background-image:url(images/bkgdInvest.gif);
background-repeat:no-repeat;
width:591px;
height:291px;
padding-top:125px;
}
.allocation{
background-image:url(images/bkgdAllocation.gif);
background-repeat:no-repeat;
width:575px;
height:351px;}

#column1{width:25%;float:left;padding-left:25px;}
#column2{width:23%;float:left;padding-left:40px;margin-right:18px;}
#column3{width:25%;float:left;padding-left:35px;padding-right:20px;;}

li.list1{list-style: square outside;}
.clearfloats{clear:both;}
.smtext {font-size:9px;}


li.list2{list-style: square outside;margin-left:25px;}


#rollover ul, #rollover li {
	list-style-type: none;
	line-height: 30px;
}

#rollover li a {
background-image: url(tanup.gif);
	background-repeat: no-repeat;  background-position:right;
	padding-right:10px;	
}

#rollover li a:hover {
	background-image: url(greenup.gif);
	background-repeat: no-repeat;  background-position:right;
	padding-right:10px;
}

