/* Type
----------------------------------------------*/
body, p, div, td, h1, h2, h3, h4, li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #7d6a55;
	line-height: 1.8;
	font-size: 94%;
  }
h1 {
	font-size: 140%;
	font-weight: bold;
}
h2 {
	font-size: 120%;
	font-weight: bold;
}
h3 {
	font-size: 100%;
	font-weight: bold;
}
h4 {
	font-size: 80%;
}
a:link {
	color: #e59330;
	text-decoration: none;
}
a:hover {
	color: #ffc526;
	text-decoration: none;
}
a:visited {
	color: #e59330;
	text-decoration: none;
}

.twoColFixRtHdr #header2 a:link {
	color: #7d6a55;
	text-decoration: none;
}
.twoColFixRtHdr #header2 a:hover {
	color: #ffc526;
	text-decoration: none;
}
.twoColFixRtHdr #header2 a:visited {
	color: #7d6a55;
	text-decoration: none;
}

/* General Rules
----------------------------------------------*/

@charset "UTF-8";
body  {
	background: #c4dc80;
	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 */
}
.twoColFixRtHdr  #container{
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header1 {
	background: #c4dc80;  /* 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. */
} 
.twoColFixRtHdr #header2 {
	background: #FFF;  /* 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. */
	padding: 25px;
	text-align: right;
}
.twoColFixRtHdr #header2 img {
	float: left;
}
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 25px;
}
.twoColFixRtHdr #sidebarphoto {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 25px;
}
.twoColFixRtHdr #sidebarhp {
	float: right; /* since this element is floated, a width must be given */
	width: 245px; /* 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: #FFF;
	padding-top: 12px;
}
.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 25px;
	padding-bottom: 0;
	padding-left: 25px;
} 
.twoColFixRtHdr #mainContenthp {
	margin-right: 245px;
	padding-left: 25px;
}
.twoColFixRtHdr #footer {
	background-color: #c4dc80;
	padding-left: 25px;
	background-image: url(../img/floralbottom.jpg);
	height: 311px;
} 
.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;
}
.dottedline {
	border-left-style: dotted;
}
