@charset "utf-8";
body {
	background: url(bg.jpg) repeat-x #004A2F;
	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: #000000;
	font-size:1em;
}
#pageContainer {
	width: 100%;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin:0;
}
#contentContainer {
	width: 779px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(content_bg.gif) repeat-x #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font: 62.5% Verdana, Arial, Helvetica, sans-serif;
}
#header {
	margin: 0 auto;
	padding:0;
	width: 775px;
	height:125px;
}
#header h1 {
	margin:0;
	padding:5px 0 0 0;
	float: left;
}
#header h1 a {
	text-indent:-9999px;
	display:block;
	background: url(uma_logo.png) no-repeat;
	width: 220px;
	height: 110px;
	margin:0;
	padding:5px;
}
#header h1 a:focus {
	outline: none;
}
#header #topBanner {
	margin-left:5px;
	float: left;
	height:125px;
	overflow:hidden;
}
#mainNav {
	margin: 0 auto;
	width:779px;
	height:25px;
	padding:0;
}
#sidePanel {
	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 */
	margin-top:25px;
	padding: 0;/*	padding: 0px 10px 15px 20px; */
}
#subNav {
	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 */
	margin-top:15px;
	padding: 0;/*	padding: 0px 10px 15px 20px; */
}
#subNav h3 {
	background: url(../gfx/sub_top.jpg) no-repeat;
	display:block;
	width: 190px;
	height: 27px;
	padding:10px 0 0 10px;
	margin:0;
	text-align:left;
	font-size:16px;
	color:#004a2f;
	font-family: Optimer;
	visibility:visible;
}
#subNav h5 {
	background: url(../gfx/sub_bottom.gif) no-repeat;
	display:block;
	width: 200px;
	height: 16px;
	padding:0;
	margin:0;
}
#mainContent {
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the subNav div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #subNav space when the content in #subNav ends. */
	padding: 0 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent h1 {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the subNav div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #subNav space when the content in #subNav ends. */
	padding: 20px 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 28px;
	color:#004a2f;
	font-family: Optimer;
	visibility:visible;
}
#mainContent p {
	font-size:13px;
}
#mainContent p a:link, #mainContent p a:visited, #fullContent p a:link, #fullContent p a:visited {
	color:#004a2f;
	text-decoration: underline;
}
#mainContent p a:hover, #mainContent p a:active, #fullContent p a:hover, #fullContent p a:active {
	color:#00915A;
	text-decoration: underline;
}
.stripeME a {
	display:block;
}
#mainContent table a:link, #mainContent table a:visited, #fullContent table a:link, #fullContent table a:visited {
	color:#004a2f;
	text-decoration: none;
}
#mainContent table a:hover, #mainContent table a:active, #fullContent table a:hover, #fullContent table a:active {
	color:#000;
	text-decoration: underline;
}
#mainContent blockquote {
	font-size:13px;
	padding:0;
}
#mainContent table {
	font-size:13px;
	padding:0;
}
#fullContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the subNav div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #subNav space when the content in #subNav ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#fullContent h1 {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the subNav div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #subNav space when the content in #subNav ends. */
	padding: 20px 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 28px;
	color:#004a2f;
	font-family: Optimer;
	visibility:visible;
}
#fullContent p {
	font-size:13px;
}
.profile {
	margin-top:10px;
}
#footer {
	background: url(../gfx/footer.png) top center no-repeat;
	text-align:center;
	color:#FFFFFF;
	width: 779px;
	margin: 0 auto;
	padding: 10px 0;
}
#footer p {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
}
.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;
	line-height: 0px;
	padding:0;
	margin:0;
}
.breadcrumbs {
	display:block;
	height:5px;
	padding-top: 10px;
}
.breadcrumbs a:link, .breadcrumbs a:visited {
	color:#000;
	text-decoration:none;
}
.breadcrumbs a:hover, .breadcrumbs a:active {
	color:#004a2f;
	text-decoration:none;
}
.about .menu_about {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.home .menu_home {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.locations .menu_locations {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.physicians .menu_physicians {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.specialties .menu_specialties {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.contact .menu_contact {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.privacy .menu_privacy {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
.menu_about, .menu_home, .menu_locations, .menu_physicians, .menu_specialties, .menu_contact {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	visibility: visible;
}
.menu_privacy {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	visibility: visible;
}
.grad {
	background:url(../gfx/topGrad.jpg) no-repeat top right;
	height:35px;
	border-bottom:#c1c1c3 1px solid;
	padding:0;
	padding-left:10px;
	padding-top:5px;
	margin:0;
}
.grad strong {
	padding-top:8px;
}
.specialty {
	font-style:italic;
	font-size:10px;
}
.image {
	border:#c1c1c3 1px solid;
	margin:0!important;
	padding:0!important;
}
.bottom {
	background-image:url(../gfx/Bottom.jpg);
	background-position: top right;
	background-repeat:no-repeat;
	height: 17px;
	font-size:0%;
	padding:0!important;
}
.right {
	border-right:#c1c1c3 1px solid;
	padding-left:10px;
	padding-top:10px;
	height:134px;
}
.left {
	padding-left:10px;
	padding-top:10px;
	height:134px;
}
.underline {
	text-decoration: underline;
}
#mainContent ul li {
	list-style-image: url(../images/bullet.gif);
	font-size: 12px;
}
#mainContent h2 {
	font-size:16px;
	padding:0;
	margin:0;
	font-family: Optimer;
	visibility:visible;
}
table {
	width: 95%;
	margin: 0 auto;
}
table .stripeME {
	border-collapse: collapse;
	width: 95%;
	font-size: 1.1em;
}
.stripeME th {
	background: #004A2F;
	color: #fff;
	font-weight: bold;
	padding: 2px 11px;
	text-align: left;
	line-height: 1.2;
}
.stripeME th a:link, .stripeME th a:visited {
	color: #FFF!important;
	text-decoration:none;
}
.stripeME th a:hover, .stripeME th a:active {
	color: #FFF!important;
	text-decoration:underline;
}
.stripeME td {
	padding: 6px 11px;
	border-bottom: 1px solid #95bce2;
	vertical-align: top;
}
.stripeME tr.alt td {
	background: #efefef;
}
.stripeME tr.over td {
	background: #dedede;
}
/* Caroline's Body Styles */

#mainContent .stripeME table {
	border-collapse: collapse;
	width: 75%;
	margin: 10px 24px 15px 24px;
	font-size: 1.1em;
}
#mainContent .stripeME th {
	background: #004A2F;
	color: #fff;
	font-weight: bold;
	padding: 5px 10px;
	text-align: left;
	line-height: 1.2;
}
#mainContent .stripeME td {
	padding:11px;
	border-bottom: 1px solid #d6d6d6;
	vertical-align: top;
	padding: 5px 10px;
}
#mainContent .stripeME tr.over td, #mainContent .stripeME tr:hover td {
	background: #c3c3c3;
}
#mainContent .stripeME tr.over td a, #mainContent .stripeME tr:hover td a {
	text-decoration:none;
}
#mainContent .stripeME tr.over td a:hover, #mainContent .stripeME tr:hover td a:hover {
	text-decoration:none;
}
#mainContent .stripeME .grey {
	background: #474747;
}
.style1 {
	font-size: 10px!important;
	color: #ccc;
}
#mainContent h2 {
	font-size:16px;
	padding:0;
	margin:10px 0;
	font-family: Optimer;
	visibility:visible;
}
/*  Nav Menu */

#nav {
	margin:0;
	padding:0;
}
#nav ul {
	margin: 0;
	padding:0;
}
#nav li {
	display: inline;
	float: left;
	padding: 4px 0 0 0;
	position: relative;
	text-align: center;
	width: 110px;
	font-size:12px;
	height:21px;
}
#nav li a {
	color:#FFF;
	text-decoration:none;
}
#nav li:hover {
	background: url(../gfx/hover_trans.gif) top center no-repeat;
}
#nav li ul li:hover {
	background: none;
}
/* Second tier */

#nav li ul {
	background-color: #FFF;
	display: none;
	height: auto;
	left: 0;
	margin: 0;
	position: absolute;
	top: 100%;
	width: 160px;
	border-left: #000000 1px solid;
	border-right: #000000 1px solid;
	border-bottom: #000000 1px solid;
	padding:0;
}
#nav li ul a {
	color:#000;
	font-family:Arial, Helvetica, sans-serif!important;
	font-weight:normal!important
}
/* When the user hovers over a list item, we'll then make the nested unordered list visibile*/

#nav li:hover ul {
	display: block;
	width: 160px;
	height:auto;
}
#nav li ul li {
	margin: 0;
	text-align: left;
	width: 100%;
	height: auto;
	font-size:12px;
}
#nav li ul li a:link {
	padding: 0;
}
/*#nav li ul li:hover a{
color:#FFF;
background-color: #015138;
display: block;
width:100%;
height: 100%;
}*/

#nav li ul li a { /* Just submenu links*/
	display:block;
	display: block;
	height: 100%;
	background-color:#FFFFFF;
	color:#000000;
	padding:5px!important;
	margin:0;
}
#nav li ul li a:hover { /* Just submenu links*/
	background-color:#015138;
	background-image:none;
	color:#FFFFFF;
}
.noBorder {
	border: none;
}
/* BUTTONS */
.buttons a {
	display:block;
	float:right;
	margin:0 7px 0 0;
	background-color:#f5f5f5;
	border:1px solid #dedede;
	border-top:1px solid #eee;
	border-left:1px solid #eee;
	font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
	font-size:100%;
	line-height:130%;
	text-decoration:none;
	font-weight:bold;
	color:#565656;
	cursor:pointer;
	padding:5px 10px 6px 7px; /* Links */
}
.buttons a img {
	margin:0 3px -3px 0 !important;
	padding:0;
	border:none;
	width:16px;
	height:16px;
}
/* POSITIVE */

.buttons a.positive {
	color:#529214!important;
}
.buttons a.positive:hover {
	background-color:#E6EFC2!important;
	border:1px solid #C6D880;
	color:#529214!important;
}
.buttons a.positive:active {
	background-color:#529214!important;
	border:1px solid #529214;
	color:#fff!important;
}
