@charset "UTF-8";
body  {
	background: #fff;
	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: #333;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 100%;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* 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. */
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header #accred {
	position: absolute;
	right: 0px;
	top: 13px;
	font-size: 0.8em;
}
.ninety-percent {
	/*here's the CSS3 standard method. this works in everything* but IE. */
  /*It's in fractions of 1. So 1 is 100% opacity (AKA the default) and .5 is 50% opacity.*/
  opacity:.9;

	
}
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(images/umimri_accredited.jpg);
	margin: 0px;
	height: 380px;
	width: 800px;
	background-repeat: no-repeat;
	background-position: left top;
	position: relative;
} 
#container #header #nav {
	position: absolute;
	left: 0px;
	bottom: 0px;
	background-color: #0082c7;
	border-bottom-width: thick;
	border-bottom-style: solid;
	border-bottom-color: #C77000;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: 'Cantarell', "Courier New", Courier, monospace;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff;
	font-size:.7em;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 15px;
}
#mainContent {
	font-size:.8em;
	line-height:150%;
	letter-spacing:0px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 220px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
#mainContent #caption {
	letter-spacing: 1px;
	color: #0082C7;
	font-size: .75em;
}
#footer {
	color: #FFF;
	background-color: #0082c7;
	margin-top: 20px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border-bottom-width: thick;
	border-bottom-style: solid;
	border-bottom-color: #C77000;
	margin-bottom: 50px;
} 
#mainContent ul {
	padding-top: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-left: 2px;
	margin-bottom: 0px;
}
#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 */
	font-size: 0.7em;
	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;
	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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}#container #header #rotator {
	height: 300px;
	width: 800px;
	margin: 0px;
	position: absolute;
	left: 0px;
	top: 144px;
}
#mainContent h1 {
	color: #0082c7;
	font-size:2em;
	font-style:normal;
	font-weight:300;
	letter-spacing:-2px;
	font-family: 'Cantarell', Arial, Helvetica, sans-serif;
	font-variant: normal;
	text-shadow: 2px 2px 2px #aaa;
	margin: 0px;
	font-weight: normal;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	text-decoration: none;
}
#mainContent h2   {
	font-size: 1.1em;
	color: #0082c7;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: 'Cantarell', Arial, Helvetica, sans-serif;
}
#mainContent ul {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 2em;
}
#mainContent p {
	margin: 0px;
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 130%;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#hosting a {
	text-decoration: none;
	font-weight: bold;
	color: #000;
}
#sidebar1 h3 {
	font-size: 1.1em;
	color: #0082c7;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: Geneva, Tahoma, sans-serif;
}



#mainContent #Accordion1 p {
	padding: 0px;
	margin-top: 5px;
	margin-bottom: 15px;
}



#sidebar1 p {
	line-height: 130%;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
}
#header #slideshow {
	height: 250px;
	width: 800px;
	position: absolute;
	top: 105px;
}
#hosting {
	font-size: 0.5em;
	font-variant: small-caps;
	letter-spacing: 1px;
	text-align: right;
	margin: 0px;
	padding-bottom: 4em;
}
#sidebar1 h2 {
	font-weight: normal;
	color: #0082C7;
	margin: 0px;
	padding: 0px;
}
#mainContent #map {
	width: 425px;
	margin-top: 0px;
	padding-top: 20px;
}
#sidebar1 h3 a:link, #sidebar1 h3 a:visited, p a:link, p a:visited {
	color: #0082C7;
	text-decoration: none;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
#sidebar1 h3 a:hover, p a:hover {
	color: #0082C7;
	text-decoration: none;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #C77000;
}
#mainContent .bio_image {
	min-height: 200px;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #C77000;
	border-right-color: #C77000;
	border-bottom-color: #C77000;
	border-left-color: #C77000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#mainContent .bio_image img {
	float: left;
	width: 100px;
	margin-right: 10px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#mainContent .bio_image  p{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
#mainContent .bio_image h2 a:link, #mainContent .bio_image h2 a:visited {
	margin: 0px;
	padding: 0px;
	color: #0082C7;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
#mainContent .bio_image h2 {
	margin: 0px;
	padding: 0px;
}

#mainContent .bio_image h2 a:hover
{
border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #C77000;	
	
}
#container #mainContent #contact_form label.posit {
	width: 120px;
	display: block;
	float: left;
	margin: 0px;
	padding: 0px;
	line-height: 20px;
	text-align: right;
	padding-right: 5px;
	font-weight: normal;
	color: #0082C7;
}
#container #mainContent #contact_form form {
	margin: 0px;
	padding-top: 0px;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	border: thin solid #D16C2E;
	margin-top: 1em;
}
#container #mainContent #contact_form form p {
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#mainContent #insuranceInfo h2 {
	font-size: 1em;
}
#container #mainContent #insuranceInfo ul li {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#container #mainContent #insuranceInfo {
	padding-top: 10px;
	padding-bottom: 20px;
}
#container #mainContent #insuranceInfo #leftcol {
	width: 280px;
	float: left;
	margin-right: 15px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #C77000;
}
#container #mainContent #insuranceInfo #rightcol {
	float: left;
	width: 284px;
}
.insureNote {
	color: #C77000;
	margin-left: 27px;
}
#insuranceInfo .insureNoteH2 {
	color: #C77040;
}
#testimonials p {
	font-style: italic;
	font-weight: normal;
}
#testimonials p strong {
	color: #C77000;
	font-weight: bold;
	font-variant: normal;
}

