@charset "utf-8";
/* CSS Document */

body  {
	font: 85% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(images/bg_pattern.jpg); background-repeat:repeat;
	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: #5c5c5c;
	}
.twoColFixLtHdr #container { 
	width: 918px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(images/content_bg.jpg); background-repeat:repeat-y;
	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. */
	padding-left:25px;

	} 
#wrapper {
	width:918px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	}
	
.twoColFixLtHdr #header {
	background-image:url(images/banner.jpg); background-repeat:no-repeat;
	width:784px;
	height:296px;
	margin-left:54px;	
	} 

.twoColFixLtHdr #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 */
	}


/*--------------------------------------------------------------CONTENT--------------------------------------------------------------------*/

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 300px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width:500px;
	} 	

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* 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: #fcf9e6; the background color will be displayed for the length of the content in the column, but no further */
	
	padding: 10px;
	font-size:10px;
	margin-left:50px;	
	}
#mainContent li {
  margin-bottom:15px;

}	
	

/*----------------------------------------------------------NAVIGATION--------------------------------------------------------------------*/
#nav {
	background-image:url(images/nav_bg.jpg); background-repeat:repeat-y;
	width:200px;
	margin-left:10px;
	}
	
#nav ul {
	list-style-type:none;
	margin-left:-35px;
	}	
	
#nav ul li {
	background-image:url(images/nav_sep.jpg); background-position:bottom;background-repeat:no-repeat;
	padding:10px 0px;
	}


#nav ul li.notactive a {
	color:#216b95;
	font-size:11px;
	font-weight:600;
	text-decoration:none;
	padding-left:10px;
	}	
	
#nav ul li.flower a {
  background-image:url(client_files/Image/menuflower.png);
	background-repeat:no-repeat;
	background-position:left center;
	padding:10px 0px 10px 21px;
	margin:0 0 25px 0;
	color:#216b95;
	font-size:11px;
	font-weight:600;
	text-decoration:none;
	}

#nav ul li.active a {
	color:#675849;
	font-size:11px;
	font-weight:600;
	text-decoration:none;
	padding-left:10px;
	}		

#nav ul li.activeflower a {
	color:#675849;
	font-size:11px;
	font-weight:600;
	text-decoration:none;
	padding-left:21px;
	}		


#nav ul li a:hover {
	color:#675849;
	}	
	
	
.pgindicator {
	color:#FF0000;
	}	
	
	
	

/*---------------------------------------------Home page calouts---------------------------------------------------------------------*/
	
table.callout {
	background-image:url(images/callout_bg.jpg); background-repeat:no-repeat;
	width:511px;
	height:332px;
	}
table.callout p {
	font-size:10px;
	}
table.callout h3 {
	font-size:12px;
	}

/*-----------------------------------------------------------------FOOTER----------------------------------------------------------------------*/
.twoColFixLtHdr #footer { 
	background-image:url(images/footer_bg.jpg); background-repeat:no-repeat; background-position:top;
	height:64px;
	} 

#footercontent{
	padding:0px 0px 25px 0px;
	background-color:#1f6994;
	margin:auto;
	}
#footercontent p {
	color:#fff;
	font-size:11px;
	line-height:4px;
	}

#footercontent p a {
	color:#fff;
	}

#footercontent a {
	color:#1c4b69;
	font-size:10px;
	}
#footercontent a:hover {
	background-color:#1c4b69;
	color:#fff;
	}

#footercontent ul {
	list-style:none;
	}
#footercontent ul li {
	display:inline;
	padding-left:6px;
	}
#footercontent ul li a {
	color:#fff;
	}
	
.padleft {
	padding-left:25px;
	}
.padleft2 {
	padding-left:15px;
	}	


/*------------------------------------------------OTHER 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:#216b95;
	}

a:hover {
	color:#675849;
	}
h1 {
	color:#216b95;
	font-size:1.5em;
	}
h2{
	color:#216b95;
	font-size:1.3em;
	}
		
h3 {
	color:#216b95;
	font-size:1.1em;
	}
		
	
	
	
td {
	vertical-align:top;
	}

.screenonly {
	display:inherit;
	}
.printonly {
	display:none;
	}

#jc-callout a img {
	margin-top:25px;
	margin-left:15px;
	width:193px;
	height:132px;
	background-image:url(images/co_family-practitioner.jpg); background-repeat:no-repeat;
	background-position:0 0;
	}
	
#jc-callout a:hover img {
	background-position:0 -140px;
	}

#jc-callout-to-dermatology a img {
	margin-top:25px;
	margin-left:15px;
	width:193px;
	height:132px;
	background-image:url(http://www.johnscreekfamilypractice.com/images/co_dermatology.jpg); background-repeat:no-repeat;
	background-position:0 0;
	}
	
#jc-callout-to-dermatology a:hover img {
	background-position:0 -136px;
	}

.orange {
	border:5px solid #FF6600;
	}
.padleft {
	padding:20px 0 0 15px;
	}
