@charset "UTF-8";

h1, h2, h3, ul, img, li {
	margin: 0;
	padding: 0;
	border: 0;
}
	
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #287831;
	background-image: url(../images/2012/bg.jpg);
	background-repeat: repeat-x;
}

 #container {
	width: 1080px;  
	background: #ffffff url(../images/2012/container_bg12.jpg) repeat-y right top;
	margin: 0 auto;
	text-align: left;
	border-top-width: 2px;
	border-right-width: 5px;
	border-bottom-width: 2px;
	border-left-width: 5px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-color: #191234;
}
 
 #header {
	background: #fff url(../images/2012/headerBG.jpg) no-repeat right top;
	padding: 0;  /* 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. */
	height:200px;
} 
 #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 */
}
 #mainContent {
	margin: 0 250px 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 90%;
} 
#mainContent a:link {
	color: #7F0000;
	text-decoration: none;
}
#mainContent h1 {
	font-size: 250%;
	padding: 15px;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #274222;
}
#mainContent h2 {
	font-size: 125%;
	color: #274222;
}
#mainContent a:hover {
	color: #330000;
	text-decoration: underline;
}

#mainContent h3 {
	font-size: 100%;
	color: #000000;
	text-decoration: underline;
}

#mainContent p {
	line-height: 1.5;
	margin-top: 5px;
}

#sidebar1 p {
	line-height: 1.5;
	margin-top: 5px;
	color: #422227;
	font-weight: bold;
}

 #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 15px;
	color: #422227;
}
/*#sidebar1 h3, #mainContent h1, #mainContent h2 {
	font-family: "Papyrus", Georgia, "Times New Roman", Times, serif;
	color: #B38B21;
}*/

#sidebar1 p {
	font-size: 30px;
	font-weight: normal;
}

#sidebar1 h3 {
	font-size: 130%;
	padding: 15px;
}

#sidebar1 h4, #mainContent h4, #mainContent h4 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #274222;
}

#sidebar1 h5, #mainContent h5, #mainContent h5 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #274222;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#sidebar1 li {
	margin-bottom: 5px;
	list-style-type: none;
}
#sidebar1 a:link, #sidebar1 a:visited {
	color: #ffffff;
	text-decoration: none;
	background-color: #8070C0;
	background-image: url(../images/2012/link_bg12.jpg);
	background-repeat: repeat-y;
	display: block;
	font-size: 95%;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 10px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #EFBC31;
	border-right-color: #EFBC31;
	border-bottom-color: #EFBC31;
	border-left-color: #EFBC31;
	font-weight: bold;
}
#sidebar1 a:focus, #sidebar1 a:hover {
	background-color: #E7B11D;
	background-image: url(../images/2012/hover_bg12.jpg);
	background-repeat: repeat-y;
	color: #191234;
	border-top-color: #4E8740;
	border-right-color: #4E8740;
	border-bottom-color: #4E8740;
	border-left-color: #4E8740;

}
#sidebar1 p, #footer p {
	font-size: 80%;
}
 #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#EFCB65 url(../images/2012/footer_bg12.jpg) no-repeat left top;
	color: #274222;
	min-height: 99px;
} 

 #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: 20px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#footer a:link, #footer a:visited {
	color: #625422;
	text-decoration: underline;
}

#footer a:focus, #footer a:hover {
	color: #ff0000;
}

.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;
}

.contentfltrt { /* 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;
}
.contentfltlft { /* 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;
}

.important {
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
	color: #FF0000;
}
