/*
Site: jerrysmassagetherapy.com
Author: Shaun Sutherland

CONTENTS...

	1. Global
	   - body
	
	2. Layout
	   - #wrap
	   - #top
	   - #mid
	   - #bot
	   - #footer
	   
	3. Content
	   - #content
	   - #content h1
	   - #content h2
	   - #content p
	   - .section
	   
	4. Sidebar
	   - #sidebar
	   - #sidebar span
	   4-1. Logo
	   		- #logo
			- #logo img
	   4-2. Test(testimonials)
	   		- #test
			
...

1. Global ------------------------------------------------
*/

body {
	background-color: #ffffff;
	background-image: url('images/bg.jpg');
	background-repeat: repeat-x;
	background-position: top left;
	margin: 0;
	padding: 0; padding-top: 20px; padding-bottom: 20px;
	text-align: center;
	font-size: 12px;
	font-family: Verdana, Arial, Sans-Serif;
}

/*
2. Layout
*/

#wrap {
	width: 900px;
	position: relative;
	margin-left: auto; margin-right: auto; 
	text-align: left;
}

#top {
	background-image: url(images/top.png);
	height: 30px;
	width: 900px;
}
#mid {
	height: 100%;
	position: relative;
	width: 900px;
	overflow: hidden;
	background-repeat: repeat;
	background-image: url(images/mid.png);
}
#bot {
	background-image: url(images/bot.png);
	height: 30px;
	width: 900px;
	position: relative;
	clear: left;
}

#footer {
	font-size: 10px;
	text-align: center;
	font-weight: normal;
	color: #333333;
	margin-top: 20px;
}

/* 
3. Content ------------------------------------------------
*/

#content {
	float: left;
	position: relative;
	height: auto;
	width: 500px;
	padding: 30px; padding-top: 0px;
}
#content h1{
	margin: 0px;
	padding: 0px; padding-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #003366;
	border-bottom: 1px solid #CCCCCC;
	font-size: 18px;
}
#content h2{
	color: #0099CC;
	font-size: 16px;
	font-family: Arial, Helvetica, Sans-Serif;
	margin: 0px;
	padding: 0px;
}
#content p{
	line-height: 18px;
	font-size: 11px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.section{
	display: block;
	margin: 20px; margin-bottom: 60px;
}


/*
4. Sidebar ------------------------------------------------
*/

#sidebar {
	position: relative;
	float: left;
	height: auto;
	border-right: 1px solid #CCCCCC;
	width: 270px;
	padding: 0px; padding-left: 30px; padding-right: 30px;
}
#sidebar span {
	display: block;
	margin-top: 20px;
}

/* 4-1. Logo */

#logo {
	height: 300px;
	width: 270px;
	position: relative;
}
#logo img{
	border: none;
}

/* 4-2. Test(testimonials) */

#test {
	text-align: center;
	margin-right: auto;
	line-height: 18px;
	font-style: italic;
	color: #0099CC;
	border-bottom: 1px solid #CCCCCC; border-top: 1px solid #CCCCCC;
	padding-top: 5px; padding-bottom: 5px;
}

/* 4-3. Nav(navigation) */

#nav{
	margin-top: 30px;
}
#nav ul {
	margin-left: 0px;
	padding-left: 0px;
}
#nav li {
	margin-top: 1px;
	list-style: none;
}
#nav a {
	padding-left: 20px;
	background-image: url(images/nav_bg.jpg);
	width: 255px;
	display: block;
	height: 30px;
	color: #006699;
	text-decoration: none;
	line-height: 30px;
}
#nav a:hover {
	background-image: url(images/nav_bg_hover.jpg);
}

/* 4-4. info(information) */

#info {
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 13px;
	line-height: 20px;
	color: #000000;
	margin-top: 50px;
	font-weight: normal;
}
#info span {
	color: #006699;
	display: block;
	margin-bottom: 15px;
	font-size: 14px;
}

/*
-- Style Sheet End ------------------------------------------------
*/
