/* @override http://localhost/~adam/sarahmccloy.com/site/sm_styles.css */

/* sarahmccloy.com stylesheet by bristlebird media works */
body {
	font: 70% "Lucida Grande", Lucida, Verdana, sans-serif;
	background: #273546 url(images/styles/bg_page.png) repeat-x;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #f0f0f0;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container {
	width: 901px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	padding: 0;
}
#header { 
	padding: 0 10px 0 20px;
	height: 160px;
	background: url(images/styles/bg_top.jpg) no-repeat;
} 
#header h1 {
	margin: 0;
	text-indent: -1000em;
	height: 30px;
	padding: 0;
	font-size: 1em;
}
#header p {
	color: #9f866e;
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 35px 0 0 3px;
	padding: 0;
}
#mainContent {
	padding: 0 20px;
	background-image: url(images/styles/bg_mid.jpg);
}

#mainContent h1, #mainContent p {
	padding: 0;
	margin: 0;
}
#mainContent p {
	padding: 0 0 10px;
	margin-bottom: 10px;
}
#mainContent h1{
	text-transform: uppercase;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #9f866e;
	font: normal normal 1.2em Arial, "Lucida Grande", Lucida, sans-serif;
}
#mainContent h2 {
	font-weight: normal;
	font-style: normal;
	font-size: 1em;
	text-transform: uppercase;
	color: #bd724f;
}
.bullets {
	width: 45%;
	float: left;
	margin-bottom: 20px;
	border-left: 1px solid #312922;
	padding-right: 2%;
	padding-left: 2%;
}
#mainContent p img {
	margin-right: 5px;
}

#footer { 
	padding: 0 10px;
	background: #273546 url(images/styles/bg_bot.jpg) no-repeat;
	margin: 0;
} 
#footer p {
	margin: 0;
	text-align: center;
	font-size: 0.9em;
	padding-top: 25px;
	padding-bottom: 10px;
}
a:link, a:visited {
	color: #60819d;
	text-decoration: none;
}


