@charset "UTF-8";

img, div,td { behavior: url(/inc/js/iepngfix.htc) }	/* code to enable pngs in ie6 */

a:link, a:visited {
	color:#bb591c;
	text-decoration: underline;
}
a:hover {  color: #284f92; text-decoration: none;}
a:active { 	color: #6f8bbb; text-decoration: none;}

.homePage {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #f3a42d;
	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-image:url(../../images/background_home.gif);
	background-repeat:repeat-y;
}

.homePage #shadowContainer {
	position:absolute;
	width:962px;
	margin:0;
	top:17px;
	left:68px;
}
.homePage #container { 
	width: 932px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0; /*32px 0 0 83px; /* add auto margins (in conjunction with a width) center the page */
	padding:0;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.homePage #nav { 
	background: #ffd701; 
	padding: 0 0 0 107px;  /* 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: 22px;
} 
.homePage #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 */
}

.homePage #anniePhoto {
	background-image:url(../../images/annie_fox_home.png);
	background-repeat:no-repeat;
	position:absolute;
	top:0;
	left:0;
	width:200px;
	height:240px;
	z-index:4;
}
.homePage #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 171px; /* 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; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0;
	padding: 13px 26px 10px 26px;
	display:inline;
}
.homePage #sidebarContent {
	padding:10px;
}
.homePage #mainContent { 
	width: 674px;
	margin: 0;
/*	margin: 0 243px 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 17px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left; /* since this element is floated, a width must be given */
	display:inline;
}
.homePage #mastHead {
	margin: 25px 0 9px 99px;
	padding: 0;
}
.introBoxContent {
	font-size: 85%;
	padding: 0 15px;
	margin-bottom:10px;
	text-align: left;
}
.introBoxContent a:link, 
.introBoxContent a:visited {
	color:#284f92;
	text-decoration: underline;
}
.introBoxContent a:hover {  color: #e3722b; text-decoration: none;}
.introBoxContent a:active { color: #c14c02; text-decoration: none;}

.homePage #bottomLeft {
	padding: 14px 15px 0 10px;
	width: 212px;
	margin: 0;
	float:left;
	display:inline;
}
.homePage #bottomRight {
	padding: 14px 0;
	width: 437px;
	font-family:"Times New Roman", Times, serif;
	font-size:90%;
	float:left;
	display:inline;
}
.homePage #footer {
	width: 674px;
	padding: 0 10px 0 50px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size:80%;
	color:#ef7b32;
	text-align:center;
} 
.homePage #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 */
}
.homePage #footer a:link,
.homePage #footer a:visited {
	color:#ef7b32;
	text-decoration: none;
}
.homePage #footer a:hover {  color: #6f8bbb; text-decoration: underline;}
.homePage #footer a:active { color: #284f92; text-decoration: underline;}

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