/* CSS Document */
body  {
	font:100% Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; 
	padding: 0;
	text-align: center;
	color: #000000;
}

.twoColFixLtHdr #container { 
	width: 805px;  /* 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. */
} 
.twoColFixLtHdr #header { 
	background: #FFFFFF; 
	padding: 0 0px 0 0px; 
} 

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 215px; /* 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: #FFFFFF;
	background: url(images/horizontal.red.gif) repeat-y;
	padding: 15px 10px 6px 8px;
}
.twoColFixLtHdr #sidebar1 p { padding-right:8px;}
 
.twoColFixLtHdr #mainContent { 

	margin: 0 0 0 0	px; /* 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 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
/* Show only to IE PC \*/
* html .boxhead h2 {height: 1%;} /* For IE 5 PC */

.box {
	margin: 0 auto; /* center for now */
	width: 805px;
	background:transparent;;
	font-size: 100%;
	padding: 0 25px 0 0px;
}
.boxhead {
	background: url(images/css/box_top.png) no-repeat top left;
	height: 73px;
	margin: 0;
	padding-bottom:60px;
	padding: 0;
	text-align: center;
}
.boxhead h1 {
	text-align:left;
	padding-left:50px;
	padding-top: 15px;
	text-shadow: rgba(0,0,0,.4) 0px 2px 5px; /* Safari-only, but cool */
}
.boxbody {
	margin: 0;
	margin-bottom:0px;
	padding: 5px 30px 31px;
	background-image: url(images/css/box_middle.png);
	background-repeat: repeat-y;
	background-position: left;
}
.boxbottom {
height:73px;
	background-image: url(images/css/box_bottom.png);
	background-repeat: no-repeat;
	background-position: left bottom;	
}

.twoColFixLtHdr #footer { 
	padding: 0 0px 0 0px; /* 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 */
	text-align:center;
	padding: 0px 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: 20px;
	width:310px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 20px;
	width:310px;
}

.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: #FF9900;
	text-decoration: underline;
}
a:visited {
	text-decoration: none;
	color: #CC6600;
}
a:hover { text-decoration:underline; color: #FF6600;
}

a:active { }

	li {
	list-style-image: url(images/bullet.jpg);
	margin-bottom:5px;
}
