@charset "utf-8";
/* CSS Document */
body  {
	font: 80% Arial, Helvetica, sans-serif;
	background-image:url(images/bodybgrepeat.jpg); background-repeat:repeat-x;
	background-color:#b2b2b2;
	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;
}
.thrColFixHdr #container { 
	width: 828px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/contentbg.jpg); background-repeat:repeat-y;
	min-height:753px;
	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. */
	
} 
.thrColFixHdr #header { 
	background-image:url(images/headerbg.jpg); background-repeat:no-repeat;
	width:828px;
	height:177px;
	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. */
	margin:0;
	position:relative;
} 
.thrColFixHdr #header h1 {
	 padding:0;
	 margin:0;
	 }
 .thrColFixHdr #header h1 a img {
	margin: 10px 0 0 30px; /* clickable logo graphic is in the h1 tag in HTML*/
}

/*--------------------------------------holds main content---------------------------------------------*/
.thrColFixHdr #mainContent { 
	margin: 0; 
	padding: 0 0 0 40px;
	width:740px;
} 

.thrColFixHdr #mainContent ul li {
	padding:3px 0;
	}


/*------------------------------------------------------- sidebars are used to hold the graphics of the container edges down both sides-------------------------*/
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 18px; /* 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-image:url(images/shadow-left.jpg); background-repeat:no-repeat;
	padding:0;
	margin:0;
	height:575px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 18px; /* 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-image:url(images/shadowright.jpg); background-repeat:no-repeat;
	height:575px;
}



/*-----------------------------------------------------------featured content ----------------------------------------------------*/
#featured {
	width:285px;
	float:right;
	background-image:url(images/featuredbg.jpg); background-repeat:repeat-y;
	margin-top:-48px;
	margin-left:20px;
	}
#featuredcontent {
	background-image:url(images/featuredbottom.jpg); background-repeat:no-repeat; background-position:bottom;
	padding-bottom:30px;	
	}
#featurephysicianlinks {
margin-left:8px;
}	
#featurephysicianlinks a {
  font-size:8pt;
  font-family:arial;
  
}	
#featuredcontent p {
	padding:0 15px;
	font-size:.9em;
	}
	
#featuredcontent img {
	margin-left:11px;
	border:1px solid #ccc;
	}
#featuredtop {
	background-image:url(images/featured-top.jpg); background-repeat:repeat;
	height:38px;
	}

#featuredcontent h3 {
	font-size:18px;
	text-align:center;
	}

/*------------------------------used for graphic dividers on the home page; assign class to the div to position the graphic near the bottom of the div------------*/
.separate {
	background-image:url(images/headingseparate.jpg); 
	background-position:bottom left;
	background-repeat:no-repeat;
	padding-bottom:40px;
	
		}
.separate  h2{
	margin-top:-20px;
	margin-bottom:-10px;
	}

/*---------------------------------------navigation-------------------------------------------*/		
#nav {
		text-align:center;
	}
#nav ul {
		list-style:none; 
		margin-left:-35px;
		}

#nav ul li {
		display:inline;	
		background-image:url(images/nav_sep.jpg); background-repeat:no-repeat; background-position:right;
		padding-right:5px;	
		}

#nav ul li a {
		color:#4c7b99; 
		font-size:16px;	
		font-family:"arno pro", arial;
		font-weight:600;
		text-decoration:none;
		padding:0 8px;																																        }
#nav ul li a:hover {
		color:#000;
		}

/*---------------------------------------footer-----------------------------------*/
#footerbodybg {
	background-color:#4c7b99;
	}
.thrColFixHdr #footer { 
	width:828px;
	margin:auto;
	background-image:url(images/footer.jpg); background-repeat: repeat-y;
	padding-top:10px;	
	padding-bottom:25px;
	} 
.thrColFixHdr #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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#fff;
	line-height:20px;
	font-size:.9em;
	}
.thrColFixHdr #footer p a {
	color:#fff;
	}
.thrColFixHdr #footer p a:hover {
	color:#000;
	}
.thrColFixHdr #footer ul {
	list-style:none; 
	margin-left:-35px;
		}
.thrColFixHdr #footer ul li {
	display:inline;		
		}
.thrColFixHdr #footer ul li a {
	color:#fff; 
	font-size:12px;	
	text-decoration:none;
	padding:0 5px;																																        }
.thrColFixHdr #footer ul li a:hover {
	color:#000;
		}



/*-----------------------------------------------stuff---------------------------------------------------------*/

.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;
}
a img {border:none;}
a {
	color:#4c7699;
	}
a:hover {
	color:#000;
	}

h1,h2,h3,h4,h5,h6 {
	color:#4c7b99;
	font-family:"arno pro", arial;
	}
img.styled{
	background-color: #ffffff;
	padding:3px;
	box-shadow: 0 0 5px #666666;
}

td {
	vertical-align:top; 
	/*border-bottom:1px solid #ccc;
	padding-bottom:20px;*/
	}

a.picpad  {
	padding-left:50px;
	}
/*-------------------------removed the news scroller------------------------------*/
	
#newsscroller {
	width:150px;
	margin-left:75px;
		}

		
td.maillabel {
 font-size:9pt;
 text-align:right;
 height:15px;
 padding-bottom:0px;
}

#onlinebillpay{
	position:absolute;
	top:0;
	left:600px;
	
	}