@charset "utf-8";
/* CSS Document */

body  {
	background: #1e032f;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.body_text_10pt_verd {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
}
.text_verd_12px {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
}
.new_text_red {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
	color: #F00;
	font-weight: bold;
}
#index_container {
	width: 980px;
	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. */
	background-image: url(images/index_bg.gif);
	background-repeat: repeat-y;
}
#int_container {
	width: 980px;
	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. */
	background-image: url(images/int_bg.gif);
	background-repeat: repeat-y;
} 
#header {  
	padding: 0px;  /* 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. */
} 
#index_nav {
    padding: 0px;
	height: 39px;
	width: 980px;
} 
#int_nav {
    padding: 0px;
	height: 41px;
	width: 980px;
}
.headline {
	font-family: Verdana;
	font-size: 16pt;
	font-weight: 400;
	color: #000;
}
.sub_headline {
	font-family: Verdana;
	font-size: 11pt;
	font-weight: 500;
	color: #000;
}
#index_sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 350px; /* 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 */
	padding: 0px 10px 15px 0px;
}
#int_sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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 */
	padding: 10px 10px 15px 65px;	
}
#int_sidebar_padding {
	padding: 0px 15px 0px 15px;
}
#index_sidebar_padding {
	padding: 0px 25px 0px 65px;	
}
#mainContent { 
	margin: 15px 60px 10px 260px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent_text {
	margin: 0px 25px 0px 20px;
}
#index_mainContent {
	margin: 15px 60px 10px 380px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(images/index_main_box_bg.gif);
	background-repeat: repeat-y;
	background-position: 20px;
} 
#footer {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	font: 8pt Verdana, Arial, Helvetica, sans-serif;
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(images/int_footer_bg.gif);
	background-repeat: repeat-y;
}
.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;
} 
a:link {
    color: #a92840;
	text-decoration: underline;
} 
a:hover {
	color: #6e239b;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
} 
#footer a:link {
    color: #ddac48;
	text-decoration: underline;
} 
#footer a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
#footer a:visited {
	text-decoration: underline;	
} 

