#header
	{
	width:100%;
	height: 90px;
	background-repeat: repeat-x;
	background-image: url(../images/bgr_top_repeat.jpg);
	}

#wrapper
	{
	overflow:hidden;
	border-bottom-style:solid;
	border-bottom-width:1px;
	background-color: #B2C891;
	
	 /* This hides the excess padding in non-IE browsers */
	}

#left {
	width:170px;
	top: 90px;
	left: 0px;
	position: absolute;
	background-color: #B2C891;
}

#content{
	margin: 0 0 0 170px;
	background-image: url(../images/bgr_main.jpg);
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	padding: 20px;
}

#footer {
	font-size:10px;
	width: 100%;
	text-align: center;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	padding-right: 0px;
}


#right_floating {
	padding-left: 15px; 
	padding-right: 15px; 
	margin: 0px; 
	float: right
}

object#content { display:inline; } /* To allow flash objects inline*/


/* ---------- Actual text styles--------------- */
html, body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	margin: 0px;
	padding: 0px;
	border: 0px;
	/*background-color: #B2C891;*/
	height: 100%;
	
}
.red {
	color: #FF0000;
	font-weight: bold;
}


.mainnewsbox {
	position: absolute;
	top: 526px;
	left: 6px;
	padding: 10px;
	margin: 0px;
	font-weight: bold;
	color:#FFFFFF;
	z-index: 2;
	white-space: nowrap;
	width: 136px;
	border: thin solid #000000;
	background-attachment: fixed;
	background-repeat: repeat;
	background-position: center center;
}

.mainnewsbox p{
	margin:0x;
	padding:0px;
	color: #FFFFFF;
	
}

.mainnewsbox a{
	margin:0x;
	padding:0px;
	color: #FFFFFF;
	
}

.quote_pics {
	padding-top: 14px;
	padding-right: 14px;
	float: left;
}

p, a, img, div, ul, li, form {
	text-align: left;
	border: 0px;
	/* [disabled]padding: 0px; */
	margin: 0px;
}
p {
	padding-top: 10px;
}
input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
a {
	color: #4E2614;
	font-weight: bold;
}
a:link {
	color: #4E2614;
	font-weight: bold;
}
a:visited {
	color: #4E2614;
	font-weight: bold;
}
a:hover {
	color: #4E2614;
	font-weight: bold;
	text-decoration: none;
}
a:active {
	color: #4E2614;
	font-weight: bold;
}
hr {
	border: 0px;
	color: #4E2614;
	border-style: dotted;
	background-color: #4E2614;
}
h1 {
	font-size: 16px;
	font-weight: bold;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
}

h2 {
	font-size: 14px;
	font-weight: bold;
	color: #4E2614;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;	
}

h2 a {
	text-decoration: none;
}

h2 a:hover{
	text-decoration: underline;

}

.heading_top {
	font-size: 25px;
	font-weight: bold;
}


.subheading {
	font-weight: bold;
	font-style: italic;
}
.sectionheading {
	font-weight: bold;
	font-style: italic;
	padding-top: 15px;
}
.boldheading {
	font-weight: bold;
	font-size: 13px;
}
.notice {
	border: #999 1px dotted;
	padding: 6px;
}
.back {
	text-align: left;
	padding-top: 3px;
	padding-bottom: 0px;
}

.back a {
	font-size: 11px;
	color: #4E2614;
	font-weight: normal;
	text-decoration: none; 
}

.back a:link {
	font-size: 11px;
	color: #4E2614;
	font-weight: normal;
	text-decoration: none; 
}

.back a:visited {
	font-size: 11px;
	color: #4E2614;
	font-weight: normal;
	text-decoration: none; 
}

.back a:active {
	font-size: 11px;
	color: #4E2614;
	font-weight: normal;
	text-decoration: none; 
}

.back a:hover {
	font-size: 11px;
	color: #4E2614;
	font-weight: normal;
	text-decoration: none; 
}

.boldbrown {
	font-weight: bold;
	color: #4E2614;
}

.phone {
	font-weight: bold;
	color: #4E2614;
	font-size: 16px;
}

.white {color: #FFFFFF}

.main_heading {
	font-size: 24px;
}

.italicbrown {
	color: #4E2614;
	font-style: italic;
}

.photocaption{
	font-size: x-small;
	font-weight: bolder;
}

.photocaption a{
	color:#FFFFFF;
}

.bigquote {
	font-size: 36px;
}

.float_right {
float:right
}

.float_left {
	float: left;

}

/--------------*Hacks and Fixes copied from previous version. -----------
Apparently it's needed, although I did not notice any difference.
Kept here just in case.*/

/* Safari needs this - otherwise the ghost overflow, though painted 
correctly obscures links and form elements that by rights should be above it.
An unintended side-effect is that it cause such elements to vanish in IE 5.01
and 5.5, hence the child selector hack */
* > form, * > #notes, * > .output
	{
	position: relative;
	z-index: 1000;
	}
	
/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */

#wrapper
	{
/* Normally a Holly-style hack height: 1% would suffice but that causes 
IE 5.01 to completely collapse the wrapper - instead we float it */
	float: left;
/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
(I saw it happen many moons ago) makes the width of wrapper too small 
the float: none with the comment is ignored by 5.01,
5.5 and above see it and carry on about their business
It's probably fine to just remove it, but it's left here 
just in case that many moons ago problem rears its head again */
	float/**/: none;
	}
/* easy clearing */
#wrapper:after
	{
	content: '[DO NOT LEAVE IT IS NOT REAL]'; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}
#wrapper
	{
	display: inline-block;
	}
/*\*/
#wrapper
	{
	display: block;
	}
/* end easy clearing */

.textbox {
	color: #FFFFFF;
	font-size: 14px;
	margin: 5px;
	height: 100%;
	width: 45%;
	font-weight: bold;
	padding: 10px;
}

.textbox li {
	margin:0px;
	padding:0px;
}
.brownbg {
	background-color: #BCA583;
}
.greenbg {
	background-color: #C9D8B1;
}
.practicesimg {
	margin: 15px;
	width: 300px;
	font-size: x-small;
	font-weight: bold;
	float: left;
}

.clear_right {
	clear:right;
}
.FAQ {
	padding: 0px;
	margin: 10px;
	width: auto;
}

.FAQ p, .brownbg p, .greenbg p
{padding-bottom:10px;}

.pad10 {
	padding: 10px;
	width: auto;
}
.mediabox {
	float:right;
	width:25%;
	padding:10px;
	margin-bottom:10px;
	word-wrap: break-word;
	font-size:12px;
	clear: right;
	overflow: auto;
}

.mediabox a {
	color:#000000;
}

.mediabox a:hover {
	color:#000000;
	text-decoration:none;
}

.mediabox p {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom:3px;
}

.mediabox img {
	float:right; 
	margin-left:10px;
}

.medicare {
	font-style:italic;
	font-weight:bold;
	color: #FFDE37;
	background-color:#278759;
	padding-right: 3px;
	padding-left: 3px;
	text-transform: lowercase;
	margin-top: 2px;
}
.medicare a {
	text-decoration: none;
	color: #FFDE37;
}

.secondarynewsbox {
	position: absolute;
	top: 86px;
	right: 20px;
	padding: 5px;
	margin: 0px;
	font-weight: bold;
	color:#FFFFFF;
	z-index: 2;
	white-space: nowrap;
	border: thin solid #000000;
	height: 18px;
	background: #B2C891;
	width: 450px;
}

.secondarynewsbox1 {
	position: absolute;
	top: 86px;
	right: 20px;
	padding: 5px;
	margin: 0px;
	font-weight: bold;
	color:#FFFFFF;
	z-index: 2;
	white-space: nowrap;
	border: thin solid #000000;
	height: 38px;
	background: #B2C891;
	width: 262px;
}

.landingnewsbox {
	margin: 0px;
	font-weight: bold;
	color:#FFFFFF;
	z-index: 2;
	background: #C9D8B1;
	font-size: 10px;
	width: 12%;
	float: left;
}

.landingnewsbox a {
	color:#FFFFFF;
	text-decoration: none;
}
.landingnewsbox a:hover {
	color:#FFFFFF;
	text-decoration: underline;
}

.landingnewsbox_body{
	padding: 5px;
}

.secondarynewsbox a {
	color:#FFFFFF;
}

.secondarynewsbox1 a {
	color:#FFFFFF;
}

.landingbox {
	float:left;
	padding:0px;
	margin-top:0px;
	width:42%;
	height:150px;
	margin-right: 15px;
	margin-bottom: 17.5px;
	margin-left: 0px;
}

.landingbox a {
	text-decoration:none;
}


.landingbox a:hover{
	text-decoration:underline;
}

.landingbox_header {
	position:relative;
	left:0px;
	width:auto;
	text-align: center;
	padding-top: -5px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.landingbox_header h1{
	font-size: 16px;
	text-align: center;
	vertical-align: top;
	padding-top: 0px;
	padding-bottom: 10px;
}

.landingbox_body{
	padding:10px;
	text-align:center;
	font-size:14px;

}
ul {
	padding-left: 25px;
	margin-left: 25px; 
	padding-top: 10px;
}
.optionsbox {
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	width: 60%;
}
