@charset "utf-8";
/* CSS Document */

html {
	overflow-Y: scroll;
}
body {
	background: #fff url(page-bg.jpg) repeat-x top left;
	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: #333;
	font-size: 80%;
	font-family: Verdana, Geneva, sans-serif;
}
.oneColFixCtrHdr #container {
	width: 1000px;  /* using 24px less than a full 1024px width allows for browser chrome and avoids a horizontal scroll bar */
	background:#fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	border: 1px solid #E0F1AB;
}
.shadow-left {
	-moz-box-shadow: -2px 0px 3px #ccc;
  	-webkit-box-shadow: -2px 0px 3px #ccc;
  	box-shadow: -2px 0px 3px #ccc;
}
.shadow-right {
	-moz-box-shadow: 2px 0px 3px #ccc;
  	-webkit-box-shadow: 2px 0px 3px #ccc;
  	box-shadow: 2px 0px 3px #ccc;
}
.oneColFixCtrHdr #header {
	border-bottom: 1px solid #E0F1AB;
}
.oneColFixCtrHdr #footer {
	background: #E0F1AB; 
	min-height: 90px;
}
.oneColFixCtrHdr #mainContent { 
	padding: 0 5px;
	margin: 30px 260px 30px 30px;  /* the right 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. */
} 
.oneColFixCtrHdr #side-bar{
	width: 210px; /* 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 */
	margin: 30px 20px 30px 0;
	padding: 10px;
	font-size: .9em;
	float: right;
	background-color: #E2EDFB;
	border: 1px solid #ccc;
}
#side-bar h2{
	color: #456974;
	margin: 2px 0 10px 0;
}
.heading {
    -moz-border-radius: 0.3em 0.3em 0.3em 0.3em;
    background: none repeat scroll 0 0 #5C8D19;
    border: 1px solid #CCCCCC;
    color: #FFFFFF;
    padding: 5px 10px;
}
.outline {
	-moz-border-radius: 0.3em 0.3em 0 0;
	background: #E5F3BB;
	border: 1px solid #ccc;
	padding: 0 0 10px 0;
}
.outline img {
	width: 150px;
	float: left;
	padding: 2px;
	border: 1px solid #ccc;
	margin: 3px;
}
.outline .content {
	margin: 5px 5px 5px 160px;
}
.jfy, .hidden {
	padding: 0 10px;
}
.jfy img {
	float: left;
	padding: 2px;
	border: 1px solid #ccc;
	margin: 3px;
}
i{
	font-size: .85em;
}
h1{
	font-size: 1.3em;
	color:#069;
	margin: 5px 0 0 0;
}

h2{
	font-size: 1.2em;
	color:#060;
	margin: 10px 0 0 0;
}

h3{
	font-size: 1.1em;
	color:#069;
	margin: 0;
}

h4{
	font-size: 1em;
	color:#060;
	margin: 0;
}
ul {
	padding: 5px 15px;
	margin: 0;
	color:#03C;
}
#clear {
	clear: both;
}
.more {
	color:#03C;
	text-decoration: none;
	font-style:italic;
	font-size: 1em;
	padding: 0 0 5px 10px;
}
.more:hover {
	color:#09F;
}
a {
	color:#03C;
	text-decoration:none;
}
a:hover{
	color:#09F;
	text-decoration:underline;
}