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

body  {
	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: #E37026;
}
 #container { 
	width: 880px;  /* 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. */
} 
#header {
	padding: 0;
	height: 332px;
	background-image: url(images/vertSpacer.png);
	background-repeat: repeat-x;
} 
#calDiv {
	float: left;
	width: 410px;
	text-align: center;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#topHeader {
	background-color: #5C1E14;
	height: 15px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FBF493;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FBF493;
}
#contentWrapper {
	margin: 0px;
	padding: 0px;
	width: 880px;
}
#editableContent {
	margin: 0px;
	padding: 0px;
}
#mainHeader {
	height: 250px;
	background-image: url(images/banner.png);
}
#navHeader {
	padding: 0px;
	height: 43px;
	background-color: #FAF39A;
	width: 880px;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #E06E27;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #9D3020;
}
#breadcrumb {
	height: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}
 #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 */
}
#rightSideBar {
	float: right; /* since this element is floated, a width must be given */
	width: 350px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	background-color: #C7E1A8;
	border: thin solid #1A9546;
	color: #CB2E35;
}
#mainContent {
	margin-top: 0;
	margin-right: 350px;
	margin-bottom: 0px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 20px;
} 
 #footer {
	padding: 0 10px 0 20px;
	background-color: #FAF29A;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #9C3120;
	border-right-color: #9C3120;
	border-bottom-color: #9C3120;
	border-left-color: #9C3120;
} 
#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;
}
.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: 15px;
}
.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;
}
.bodyText {
	font-family: "Times New Roman", Times, serif;
	font-size: 11pt;
}
h1 {
	font-size: 15pt;
}
h2 {
	font-size: 12pt;
	text-align: left;
}
h3 {
	font-size: 13pt;
}
h4 {
	font-size: 12pt;
}
#mainContainer {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0;
	padding-top: 0;
	padding-right: 30px;
	padding-bottom: 0;
	padding-left: 20px;
}
#mainHeaderPublishing {
	height: 250px;
	background-image: url(images/jlpublishingbanner.jpg);
}
.smallText {
	font-family: "Times New Roman", Times, serif;
	font-size: 9pt;
	color: #333333;
}
.bodyTextCopy {
	font-family: "Times New Roman", Times, serif;
	font-size: 9pt;
	font-variant: small-caps;
	line-height: 28px;
}
.goldText {
	font-family: "Times New Roman", Times, serif;
	font-size: 11pt;
	color: #F5B541;
}
.quotedText {
	font-family: "Times New Roman", Times, serif;
	font-size: 11pt;
	padding-right: 100px;
	padding-left: 100px;
}
#mainHeader2 {
	height: 250px;
	background-image: url(images/girlalopeciabanner.jpg);
}
#topHeader2 {
	background-color: #10A5D6;
	height: 15px;
	padding-top: 5px;
	padding-left: 10px;
	padding-bottom: 5px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #F6E70A;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FBF493;
}
#navHeader2 {
	padding: 0px;
	height: 43px;
	background-color: #FAF39A;
	width: 880px;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #00A4D6;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #00759A;
}
.yellowText {
	font-family: "Times New Roman", Times, serif;
	font-size: 11pt;
	color: #FAF29A;
}
#footer2 {
	padding: 0 10px 0 20px;
	background-color: #FAF29A;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #C6DD9C;
	border-right-color: #BDDE94;
	border-bottom-color: #C7E1A7;
	border-left-color: #C7E1A7;
}
#container #footer2 p {
	text-align: center;
}
#rightSideBar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	background-color: #68C0BB;
	border: thin solid #1A9546;
	color: #0FA2D1;
	text-align: center;
}
#mainHeaderOfficial {
	height: 250px;
	background-image: url(images/officalbanner.jpg);
}
#mainHeaderGrassland {
	height: 250px;
	background-image: url(images/grasslandbanner.jpg);
}
#mainHeaderAwareness {
	height: 250px;
	background-image: url(images/awarenessbanner.jpg);
}

