@charset "utf-8";

body  {
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	background-color: #ABBFC0;
}

#container  {
	width: 800px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #2E5E62;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 

#email {
	padding-right: 20px;
	padding-bottom: 10px;
	float: right;
	padding-top: 10px;
}
#email a {
	color: #FFFF99;
}

#header  h1  {
	font-size: 24px;
	font-style: italic;
	display: block;
	padding-left: 50px;
	margin: 0px;
	padding-top: 50px;

}
h2 {
	font-size: 16px;
	font-style: normal;
	color: #FFFFFF;
	padding-top: 30px;
	padding-left: 0px;
	display: block;
	margin: 0px;
	text-transform: uppercase;
	padding-bottom: 20px;
}
#dentalEmergencyImage {
	display: block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	float: right;
	padding-top: 10px;
	padding-right: 20px;
}

#dentalEmergencyImage  a {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


#footer  {
	background-color: #2E5E62;
} 

#footer  p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

hr {
	width: 95%;
	text-align: center;
}

.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;
}

.fltlft { /* this class can be used to float an element left in your page */

}

.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;
}

