@charset "UTF-8";
body {
	font: 100%/1.4 'Maven Pro', sans-serif;
	background-color: #b7c9d3;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 800px;
   background:#e2d8ce;	
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	
}

header .top {
   background:url(images/hdr-bg-dark.gif) repeat;
	height:120px;	
}

.logo {
   margin:0 auto;
	display:block;
	border:0;
	padding:20px 0 0 0;	
}

header .top .top-arc {
	background:url(images/top-arc.png) no-repeat bottom;
	margin:0 auto;
	width:800px;
	height:120px;
}

header .menu {
   background:url(images/hdr-bg-lite.gif) repeat;
	height:51px;
}

header .menu .topbar {
	background:#3b4c55;
	margin:0 auto;
	height:51px;
   width:800px;
}

header .menu nav {
   float:left;	
}

header .menu nav a {
   display:block;
	float:left;
	height:51px;
	text-indent: 100%;
   white-space: nowrap;
   overflow: hidden;
   background-position:0 0;
}

header .menu nav a#about:hover,
header .menu nav a#newpatients:hover,
header .menu nav a#resources:hover,
header .menu nav a#services:hover,
header .menu nav a#contact:hover,
header .menu nav a#faq:hover, 
header .menu nav a.selected#about,
header .menu nav a.selected#newpatients,
header .menu nav a.selected#resources,
header .menu nav a.selected#services,
header .menu nav a.selected#contact,
header .menu nav a.selected#faq {
   background-position:0 -51px;	
}

header .menu nav a#about {
	background:url(images/menu-about.gif);
	width:116px;
	margin:0 0 0 106px;
}


header .menu nav a#newpatients {
	background:url(images/menu-new.gif);
	width:99px;
	margin:0 0 0 24px;
}

header .menu nav a#resources {
	background:url(images/menu-resources.gif);
	width:83px;
	margin:0 0 0 26px;
}

header .menu nav a#services {
	background:url(images/menu-services.gif);
	width:66px;
	margin:0 0 0 28px;
}

/*header .menu nav a#faq {
	background:url(images/menu-faq.gif);
	width:25px;
	margin:0 0 0 28px;
}*/

header .menu nav a#contact {
	background:url(images/menu-contact.gif);
	width:88px;
	margin:0 0 0 29px;
}

.search {
   float:left;	
	height:34px;
	margin:0 0 0 21px;
	padding:15px 0 0 0;
}

#searchbox {
   float:left;
	border:1px solid #b7c9d3;
	outline:none;
	color:#3b4c55;
	font-size:12px;
	width:148px;
	margin:0 5px 0 0;
	background:#FFFFFF;
	padding:0 5px;
	height:20px;
}


.main {
   background:#e2d8ce;	
}

.banner {
   height:192px;
	position:relative;
}

.banner div {
	width:800px;
	height:192px;
	position:absolute;
	top:0;left:0;
}

.rotate {
	z-index:1;
}

.banner-arc {
	background:url(images/banner-arc.png) no-repeat bottom;
	z-index:2;
}

.sidebar1 {
	float: right;
	width: 280px;
	padding-bottom: 10px;
}

.content {
	padding: 75px 25px 50px;
	width: 750px;
}

.content p, .content ul, .content td {
	color: #414141;
	font-size:13px;	
}

.content p, .content ul {
   padding:0;
	margin:0 0 15px 0;
}

table tr td {
   border-top:1px solid #414141;
	padding:10px 0;	
}

.content ul li {
	margin-left:30px;
	margin-top:5px;
}

.left-sidebar {
	float:left;
	width:455px;
	padding-right:30px;
}

.right-sidebar {
	float:left;
	width:217px;
	padding-left:30px;
	padding-right:15px;
	border-left:3px solid #ece1d6;
}

/* ~~ The footer ~~ */
footer {
	padding: 25px 0;
	background:url(images/ftr-shdw.gif) #b7c9d3 no-repeat;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

footer p {
	text-align:center;
	margin:-10px 0 0 0;
	padding:10px;
	color:#869daa;
	font-family: 'Maven Pro', sans-serif;
	font-size:11px;
	text-transform:uppercase;
}

footer p a:link, footer p a:visited {
	color:#869daa;
	text-decoration:none;
}

footer p a:hover, footer p a:active {
	text-decoration:underline;
}

footer .facebook {
   margin:10px 0 0 0;
   text-align:center;	
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}

.clear {
   clear:both;	
}