@charset "UTF-8";

a:visited, a:link, a:hover{
	color: #637236;
}
a:hover, a:active {
	text-decoration: none;
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #637236;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000;
	background-repeat: repeat-x;
	background-image: url(images/background_repeat.gif);	
}
#container {
	width: 90%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	min-width: 660px;
	max-width: 1100px;
} 

/* -------Header --------*/

#header { 
	background: url(images/branding_background.gif) repeat-x;
	overflow: auto;
	margin-bottom: 25px;
}
#branding {
	height:45px;
}
#branding h1 {
	width: 300px;
	padding: 0;
	margin: 0;
	background: url(images/gary_r_johnson_logo.png) no-repeat;
}
#branding h1 a {
	display: block;
	width: 300px;
	height: 45px;
	text-indent: -9999px;
	margin: 0;
	padding: 0;
}


/* ------- Navigation -------*/

#main_nav {
    list-style: none; 
    margin: 0; 
	padding:0; 
    width: 100%;
	height: 35px;
	line-height:35px;
}
#main_nav li {
     float: left; /* we want these to display inline, but we want them block level for later so no display: inline; */
     width: 25%;
     text-align: center; /* center all text */
}
#main_nav a:link, #main_nav a:visited{ /* displays tab with right curved*/
	background: url(images/tabs.png) right top;
	color: #000;
	display: block;
	height: 35px;
	line-height: 35px;
	font-weight: bold;
	text-decoration: none;
}
#main_nav a:hover {
	background: url(images/tabs.png) right 35px;
	color: #000;
	display: block;
	height: 35px;
	line-height: 35px;
	font-weight: bold;
	text-decoration: none;
}
#current_nav{  /* current tab */
	background: url(images/tabs.png) right 35px;
}


/* --------sidebars-----------*/

#sidebar_wrapper {
	float: right; 
	width: 230px; /* since this element is floated, a width must be given */
	margin: -20px 10px 0 0;
	padding: 0;
}
#sidebar_wrapper_people {
	float: right; 
	width: 230px; /* since this element is floated, a width must be given */
	margin: 40px 10px 0 0;
	padding: 0;
}
.sidebar_header {
	width:230px;
	height: 85px;
	background: url(images/sidebar_header.png) no-repeat;
}
#sidebar_locations {
	width:230px;
	height: 85px;
	background: url(images/sidebar_locations.png) no-repeat;
}
#healthy_smile {
	width:230px;
	height: 85px;
	background: url(images/healthy_smile.png) no-repeat;
}
#sidebar_johnson {
	width: 230px;
	height: 190px;
	position: absolute;
	top: -152px;
	left: 0;
	background: url(images/sidebar_johnson.png) no-repeat;
	z-index: 1;
}
#sidebar_woman {
	width: 230px;
	height: 190px;
	position: absolute;
	top: -152px;
	left: 0;
	background: url(images/sidebar_woman.png) no-repeat;
	z-index: 1;
}
#sidebar_dad {
	width: 230px;
	height: 190px;
	position: absolute;
	top: -152px;
	left: 0;
	background: url(images/sidebar_dad.png) no-repeat;
	z-index: 1;
}
#sidebar_family {
	width: 230px;
	height: 190px;
	position: absolute;
	top: -152px;
	left: 0;
	background: url(images/sidebar_family.png) no-repeat;
	z-index: 1;
}
#sidebar_older{
	width: 230px;
	height: 190px;
	position: absolute;
	top: -152px;
	left: 0;
	background: url(images/sidebar_older.png) no-repeat;
	z-index: 1;
}
#toothbrush{
	width: 75px;
	height: 138px;
	position: absolute;
	top: -95px;
	right: -23px;
	background: url(images/toothbrush.png) no-repeat;
	z-index: 1;
}
.sidebar_content {
	background: #E3E6A0;
	margin-bottom: 15px;
	position: relative;
	padding: 7px;
	font-size: smaller;	
}
.sidebar_content h3  {
	margin-top: 0;
	
}
.sidebar_content h4  {
	margin-bottom: 0;
	
}
.sidebar_content p {
	margin: .5em;
}



/*-------Main Content---------*/


#main_content {
 	background: #F2F5CA;
	padding: 10px 260px 10px 10px; 
}
#main_content ul{
	padding: 0;
	margin-left: 1em;
	list-style-image: url(images/bullet.png);
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear: both;
} 
#footer a {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	color: #000;
	font-size: smaller;
	text-decoration: none
}


/*------Additional Styles-------*/

h1, h2, h3, h4, h5, h6{
	font-family: "Times New Roman", Times, serif;
}

.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;
}
.clearleft {
	clear: left;
}
.smaller {
	font-size: smaller;
}
table {
	 border: 0;
	 cellspacing: 7px;
	 cellpadding: 0
}
.pic {
	width: 120px;
}
.txt { 
	vertical-align: top;
}
.ital {
	font-style: italic;
}