﻿@charset "utf-8";
/*
----------------
LAYOUT STYLES
----------------
*/
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #4dd0cb url(images/seusslike_background.jpg) no-repeat top center;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #1c929d;
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	height:290px;
}

#title {
	height:77px;
	margin:0;padding:0;
	margin-bottom:-1px;
}

#mainContent {
	padding: 20px 80px 0 80px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background:url(images/d12_03.png) repeat-y;
	font-size:14px;
	line-height:24px;
}

#bottom {
	height:173px;
}

/*
----------------
HEADING STYLES
----------------
*/

h2 {
	color:#60a94d;
	font-weight:normal;
	margin-bottom:-10px;
}

h3 {
	font-weight:bold;
	margin-bottom:-15px;
}

/*
----------------
LINK STYLES
----------------
*/

a {
	color:#00a8c6;
}

a:hover {
	text-decoration:none;
	color:#8fbe00;
}

/*
----------------
CONTENT STYLES
----------------
*/

#address strong {
	font-weight:bold;
	font-size:18px;
}

#quicklinks {
	float:right;
	width:25%;
	margin:7px 0px 5px 5px;
	height:250px;
}

#address {
	background:#c4edf1;
	padding:10px 20px;
	width:67%;
	overflow:auto;
}

#address_left {
	float:left;
	margin-right:35px;
}

p.large {
	font-size:16px;
	font-weight:bold;
}

.floatLeft {
	float:left;
	margin-right:15px;
}

.floatRight {
	float:right;
	margin-left:15px;
}

.predev {
	font-size:11pt;
	font-weight:bold;
	margin-bottom:0px;
	}
	
ol li {
	padding-bottom:10px;
	list-style-type:circle;
	}
	
.dhome_title {
	width:250px;
	float:left;
	height:10em;
	}
	
.dental_home h4 {
	padding-right:25px;
	width:250px;
	}

hr {          
	width:90%; /* Width of the line in percent */
	margin:auto;
	background:#9ccc8f;
	height:4px;
	margin-bottom:15px;
	border:0;
	/* Firefox doesn't support colors of a HR so the above CSS hack is used. It sets a height in pixels of the line and makes a background color */
	}
	
#mainContent .book {     /* This is what holds the book descriptions in a "CSS table". */
	width:400px;
	height:145px;
	padding:5px 10px 20px 10px;
	background-color:#c4edf1; /* Change background color of book tables */
	margin:0 auto; /* Centers the book table in the middle of page */
	}
	
#social{
background-position:center;
	border:thin #9EE38A dashed;
	padding:10px 20px;
	width:30%;
	overflow:auto;
	
}

/*
----------------
FOOTER STYLES
----------------
*/

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:center;
	font-size:10px;
	color:#f9f2e7;
}
#footer p {
	margin: 0;
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#footer a {
	color:#005b6b;
}