@charset "utf-8";
/* CSS Document */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background: #bbb url(images/bg.png);     /* repeating BG image */
	margin: 0;
	padding: 0;
}

p, h1, h3, h3, h4, h5, h6, li {
	margin: 1ex 1em;
}

#outerDiv {              /* forms the main <div> for the entire page */
	width: 960px;
	margin: 0 auto;   /* 'auto' centers it?? */
	background: #fff url(images/header.png) no-repeat;   /* the no-repeat is important */
	margin-bottom: 30px;
}

#header {
	height: 298px;
	position: relative;    /* position relative as a reference for the 'absolutes' inside the header */
}


/* ====== main menu ======= */

#mainMenu {
	position: absolute;
	width: 960px;
	left: 0; 
	top: 244px;
	background: url(images/navbar.png) no-repeat;
}


/* ======= links styled ======= */

#home {
float: left;
width: 142px;
height: 46px; 
text-align: center;
line-height: 48px; 
font: Arial, Helvetica, sans-serif;
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
}

#summary {
float: left;
width: 158px;
height: 46px;
text-align: center;
line-height: 48px; 
/* border-right: #40250f 3px; */
/* padding-top: 12px; */ 
font: Arial, Helvetica, sans-serif;
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
} 

#services {
float: left;
width: 156px;
height: 46px;
text-align: center;
line-height: 48px; 
font: Arial, Helvetica, sans-serif;
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
}

#bio {
float: left;
width: 110px;
height: 46px;
text-align: center;
line-height: 48px; 
/* padding-top: 12px; */
font: Arial, Helvetica, sans-serif;
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
}

#coaches {
float: left;
width: 156px;
height: 46px;
text-align: center;
line-height: 48px; 
/* padding-top: 12px; */
font: Arial, Helvetica, sans-serif;
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
}

#clients {
float: left;
width: 150px;
height: 46px;
text-align: center;
line-height: 48px; 
/* padding-top: 12px; */
font: Arial, Helvetica, sans-serif;
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
}

#contact {
float: left;
width: 159px;
height: 46px;
text-align: center;
line-height: 48px;  
font: Arial, Helvetica, sans-serif; 
/* font-size: 1.2em; */
background: url(images/button_sprite.png) left top no-repeat; 
}



/* ===========  'ul style' ======= */

#mainMenu ul {     /* a descendant selector to select the unordered list within mainMenu div */
	list-style: none; /* removes bullets */
	margin: 0;
	padding: 0; /* good 'reset' spot */
}

#mainMenu li {  /* also a descendant selector */
	float: left;
	margin: 0; 
	vertical-align: middle;
	
	/* margin-top: 10px;   /* now they are all stacked horizontally next to each other */
}

/*  ==== links ===== */

#mainMenu a {  /* general link styling */
	font-family: Arial, Helvetica, sans-serif; /* Trebuchet MS, sans-serif;   /* another descendant selector */
	display: block;
	color: white;
	text-decoration: none;
	overflow: hidden;
	border: none;  /* not necessary but something done by habit when working w images */
}

#mainMenu a:hover {
	/* color: #1A0D00; */
	background: url(images/button_sprite.png) left bottom; 
}


#mainMenu a.current {       /* for formatting the Home button to make it look like a 'landed' tab */
	background: url(images/button_sprite.png) left bottom;  
	
}  */

#mainMenu a.current:hover {   /* 'hover' pseudo-selector */
		cursor: default;           /* this is a little trick - makes the cursor not change when or hovers over a link so that people don't think it's a link and don't click on it */
}

/* ====== main content ======= */

#mainContent {
	float: left;   /* main content is floating to the left, so sidebar is wrapping around it */
	width: 750px;  /* previously determined things like the size of the content box */
	margin-bottom: 50px;
	padding: 25px 15px 0 100px;  /* padding is 0 for top and bottom, 15 on right and left */
}

#mainContent p {        /* descendant selector */
	font-size: .9em;  /* a bit smaller than the default size */
	line-height: 1.4em;
	color: black;
	margin: 1ex 0;  /* an "ex" is one half of an em  - thats top/bottom margin, left/right margin is 0*/
	margin-left: 10px;
}

#mainContent h1, #mainContent h2, #mainContent h3, #mainContent h4 {
	font-family: Trebuchet MS, sans serif;
}

#mainContent h1 {
	font-size: 1.6em;
	font-weight: bold;
	color: #236b19;
	margin: 0 0 1.5ex 0;
}

/* ====== sidebar ======= */

#sideBar {
	float: right;
	height: 300px;
	width: 277px;
	/* padding: 0 10px;  /* 0 - top to bottom, 10 - left to right */ 
	margin-top: 25px;
	margin-right: 50px;
	margin-bottom: 100px; 
	border: 2px solid #d0b48f; 
	background: #f1e7cd url(images/sidebar_top.png) no-repeat;
	}

#sideBar p {
	padding: 15px 10px 10px 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.2em;
	color: #000;
	margin: 0 0 3ex 0;
}

#sideBar h3 {
	padding: 12px;
	font-family: Trebuchet MS, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	color: #fff;
	/* margin: 1ex 0 .5ex 0; */
	margin: 0;
}

/* ====== misc styles ======= */

.clear {
	clear: both;
	height: 0;
	margin: 0;
	padding: 0;
}

#midBanner {
	/*float: right; */
}

/* ====== footer ===== */

#footer {
	background-image: url(images/footer.png);
	width: 960px;
	height: 89px;
	text-align: center;
	line-height: 140px;
	color: #fff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .7em;
}










