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

/*------------------------------- Layout styles start here ---------------------------*/
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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666;
	font-family: Arial, Avenir, sans-serif;
	font-size: 0.8em;
	line-height: 1.8em;
	font-weight: normal;
}

body {
	background: #D5D5D2 url(../images/background-pngs/images/images/BackGround.png) repeat-x;
}
.SherryMcCourt #container {
	width: 950px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.SherryMcCourt #header {
	background: url(../images/background-pngs/images/images/HeaderBGPage.png) no-repeat;

} 
.SherryMcCourt #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 */
}
.SherryMcCourt #sidebar {
	float: right;
}

.SherryMcCourt #mainContent {
	margin: 5px 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 0px 0 20px;
	line-height: 1.5em;
	font-family: Arial, Avenir, sans-serif;
	font-weight: normal;
} 
.SherryMcCourt #footer {
	background: url(../images/background-pngs/images/images/long-footer-2.png) no-repeat;
	width: 950px;
	height: 30px;


} 
.SherryMcCourt #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: 0px 0px 0px 10px;
	font-family: Arial, Avenir, sans-serif;
	font-size: 0.8em;
	font-weight: normal;
	color: #CCC;
	text-align: left;
	letter-spacing: 0.1em;
}
.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;
}

/*------------------------------ Presentation Lay out styles -------------------------*/#navigation {
	height: 45px;
	width: 950px;
	margin-top: 10px;

}

#header {
	background: url(../images/background-pngs/HeaderBGPage.png) no-repeat;
	height: 124px;
	width: 950px;

}
#footer {
	float: left;
}
#mainContent {
	width: 705px;
	float: left;
	height: 650px;
	border-left: 1px solid #908F89;
}

#sidebar p   {
	font-family: Arial, Avenir, sans-serif;
	color: #FFF;
	font-style: italic;
	font-size: 85%;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 10px;
	margin-right: 5px;
	margin-left: 5px;
	margin-top: -25px;
}
#sidebar {
	background: url(../images/background-pngs/images/images/sideBar.png) repeat-y;
	float: right;
	width: 220px;
	margin-top: 5px;
	height: 650px;
	padding-left: 3px;
}
a {
	color: #737373;
	text-decoration: none;
	font-size: 0.8em;
}
.footer {
	color: #CCC;
}

a:hover {
	color: #666;
	text-decoration: underline;
}

