﻿@charset "utf-8";
/*
----------------
LAYOUT STYLES
----------------
*/
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #40c0cb url(images/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: #00a8c6;
}
#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;
}

iframe#ada {
	margin-top:0px;
	width:810px;
	height:950px;
}

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

#smedia {
	position:absolute;
	width:250px;
	left:65px;
	top:30px;
}

#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 {
	font-size:22px;
	color:#8fbe00;
	font-weight:normal;
	margin-bottom:-10px;
}

/*
----------------
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-left:20px;
	height:250px;
}

#address {
	background:#c1e3df;
	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 */
	background:#8fbe00;
	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:#bdd5e1; /* Change background color of book tables */
	margin:0 auto; /* Centers the book table in the middle of page */
	}


/*
----------------
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;
}

/*
----------------
FORM
----------------
*/
#form .clear {clear:both;}
#form .center {text-align:center;}
#form h3 {margin:0 1%;}
#form small {font-style:italic;}
#form hr {width:98%;margin:10px 1% 15px 1%;}

/*GRID */
#form .column {
	float:left;
	margin:0 1%;
}

#form .full {width:98%;margin:0 1%;}
#form .half {width:48%;}
#form .twothird {width:65%;}
#form .onethird {width:31%;}

/*FORM STYLES*/

#form input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
	width:96%;
	padding:10px 2%;
}

#form input[type=radio] {
	margin-bottom:5px;
}

#form textarea {
	width:96%;
	resize:none;
	padding:10px 2%;
	font:95%/1.4 'Tahoma',sans-serif;
}

#form select {
	width:101%;
	padding:10px 2%;
}

/*MEDIA QUERIES */

@media (max-width:767px) {
	#form .column {
		float:none;
		margin:0;
	}
	#form .full, #form .half, #form .twothird, #form .onethird {
		width:100%;margin:0;
	}
}