@charset "UTF-8";
body  {
	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-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #FFF;
}
a {
	color: #666;
	text-decoration: none;
}
a:hover {
	color: #069;
	text-decoration: none;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
#container {
	background: #FFFFFF;
	text-align: left;
	padding: 0px;
	width: 960px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#content {
	background-image: url(i/bg_header.gif);
	background-repeat: repeat-y;
	background-position: left top;
}
#top {
	margin: 0px;
	padding: 0px;
}
#header {
	background-image: url(i/bg_header.gif);
	background-repeat: repeat-y;
	background-position: left top;
	overflow: hidden;
}
#header h1 {
	background-image: url(i/dr_logo_4.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100px;
	width: 250px;
	float: left;
	margin: 0px;
	padding: 0px;
}
#ad {
	height: 100px;
	width: 730px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#ads {
	height: 100px;
	width: 730px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar1 p" rule.
*/
#sidebar1 {
	float: left;
	width: 260px;
	font-size: .8em;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #D1D1D1;
	text-align: left;
	margin: 0px;
	padding: 0px;
	height: auto;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#sidebar1 h3 a {
	text-decoration: none;
}
#sidebar1 h3 a:hover {
	text-decoration: none;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	font-size: .8em;
	text-align: left;
	float: right;
	width: 695px;
	margin: 0;
	padding: 0px;
} 
#rightPane {
	float: right;
	width: 450px;
}
#leftPane {
	float: left;
	width: 240px;
}

/* Miscellaneous classes for reuse */
.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;
}
.clear {
	clear: both;
}
#copyright {
	text-align: right;
	padding-right: 20px;
	font-size: x-small;
	color:#98827F;
	padding-top: 50px;
	padding-bottom: 20px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #98827F;
}

#copyright a {
	margin: 0;
	border: 0;
	color:#CC6600;
}

#copyright a:active, #copyright a:hover {
	color:#006633;
	margin: 0;
}
.small {
	color: #900;
	font-style: italic;
}
.fields  fieldset {
	border: 1px solid #CCCCCC;
	padding-left: 12px;
	font-size: 1.2em;
	color: #333333;
	display: block;
	margin: 12px;
}
.fields ol  {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.fields li {
	list-style-type: none;
	padding-top: 12px;
	padding-bottom: 4px;
}
#submit_button {
	width: auto;
	font-weight: bold;
	font-size: 1.4em;
}
.fields input {
	border: 1px solid #CCCCCC;
}
.fields  .required  {
	border: 1px solid #FF6600;
}
.fields .req {
	font-size: .64em;
	font-weight: normal;
}
.fields select {
	width: 90%;
}
.fields textarea {
	width: 90%;
	border: 1px solid #CCCCCC;
}
.fields #imgcode {
	width: 6em;
	border: 1px solid #FF6600;
	font-size: 1.2em;
}
.fields .submit {
	width: 120px;
	height: 30px;
	float: right;
	margin-right: 60px;
}
.linkname  {
	color: #999;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	margin: 0px;
	padding: 0px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #E7E7E7;
}
.linkgrey {
	color: #999;
	text-align: right;
	padding-right: 32px;
}
.linktext { color: #333; }
.boxed {
	border: 1px solid #999;
	margin-left: 30px;
	padding: 4px;
	margin-right: 30px;
	background-color: #E8E8E8;
}
.boxed p {
	padding-left: 20px;
}
.underlined, .title, #mainText p.underlined, .fields fieldset .undelined   {
	font-size: 1.2em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E8E8E8;
	margin-bottom: 4px;
	padding-bottom: 4px;
	margin-top: 4px;
	padding-top: 4px;
	color: #666;
	font-weight: normal;
	width: 100%;
}
.small {
	font-size: 0.8em;
	color: #1D7FB2;
}

.options ul {
	list-style-type: none;
}
.options  li {
	list-style-type: none;
	width: 33%;
	float: left;
	display: block;
	padding-bottom: 10px;
}
.options span {
	display: block;
	font-size: 0.8em;
	font-weight: normal;
}
.searched {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #E8E8E8;
	margin: 8px;
	padding: 4px;
}
.searched .image { display: none; }
.searched h1 {
	font-size: 1.2em;
	margin: 0px;
	padding: 0px;
}
.searched h2  {
	font-size: 1em;
	margin: 0px;
	padding: 0px;
}
.searched h2 span {
	color: #096;
	font-size: 90%;
	padding-left: 22px;
}
.searched span a  {
	color: #393;
	text-decoration: underline;
}
.searched p {
	margin: 0px;
	padding: 0px;
}
#subscribe ol  {
	list-style-image: none;
	list-style-type: none;
}
.image {
	margin: 2px;
	padding: 2px;
	border: 1px solid #FFF;
}
.imagel {
	float: left;
	margin: 2px;
	padding: 2px;
	border: 1px solid #FFF;
}
.imager {
	float: right;
	margin: 2px;
	padding: 2px;
	border: 1px solid #FFF;
}
.lined {
	border: 1px solid #E8E8E8;
}
#quotation {
	width: 740px;
}


/* ================================================================ 
This copyright notice must be kept untouched in the stylesheet at 
all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.stunicholls.com/menu/vertical-concertina-6.html
Copyright (c) 2005-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* #slide height = (number of top level links - 1) * height of links + inner div height */
#slide {
	padding:0;
	margin:0;
	list-style:none;
	width:260px;
	position:relative;
	overflow:hidden;
	font-family: verdana, sans-serif;
	font-size:11px;
}

#slide li.sub, #slide li.main,
#slide li.top
{
	display:block;
	line-height:24px;
	width:260px;
	color:#000;
	text-decoration:none;
	border-bottom:1px solid #fff;
	text-indent:20px;
	cursor:pointer;
}

#slide li.sub {
}
#slide li.main {
	background-image: url(i/menu.gif);
	background-repeat: no-repeat;
	background-position: left 6px;
}
#slide li.main.act    {
	background-image: url(i/menu_sel.gif);
	background-repeat: no-repeat;
	background-position: left 6px;
}
#slide .main.active a , #slide .main a.active{ color: #3297E7; }
#slide .main div ul .sub.active a { color: #3297E7; }

#slide li.top a {
	text-decoration:none;
	color:#000;
	display:block;
}
#slide li.top a:hover {
	color:#069;
}

#slide li.clicked {
}

/* #slide li.sub div height = (maximum sub lines * sub line height) + top level link height(variable fY in jQuery) */
#slide li.sub div {
	background:#fff;
	width:250px;
	padding:0 15px;
	line-height:1.2em;
	font-family: verdana, sans-serif;
	text-indent:0;
}

#slide li div ul {
	padding:0;
	margin:0;
	list-style:none;
	width: 250px;
}
#slide li div ul li {
	height:20px;
	width:250px;
}
#slide li div ul li a {
	padding:0;
	margin:0;
	color:#888;
	text-decoration:none;
	font-size:10px;
	display:block;
	border-bottom:1px solid #ddd;
	height:19px;
	line-height:19px;
	width:100%;
	text-indent:20px;
}
#slide li div ul li a:hover {
	color:#069;
}

#search {
	float: right;
	width: 320px;
	height: 50px;
	display: block;
	background-image: url(i/search.gif);
	background-repeat: no-repeat;
}
#searchform input#q {
	outline: none;
	border: 0;
	background: none;
	display: inline;
	width: 180px;
	float: left;
	margin-top: 14px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 74px;
	height: 22px;
	line-height: 22px;
	}

#searchform button {
	width: 26px;
	height: 26px;
	display: block;
	float: left;
	border: 0;
	cursor: pointer;
	background-color: transparent;
	background-image: url(i/search_button.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	margin-top: 12px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 12px;
	}

#searchform button:hover {
	background-image: url(i/search_button.png);
	background-repeat: no-repeat;
	background-position: 0 -27px;
}

#nav {
	list-style: none;
	height: 40px;
	float: right;
	clear: right;
	margin-right: 3px;
}

#nav ul {
	margin: 0;
	list-style: none;
	height: 40px;
	padding: 0;
}


#nav a {
	display: block;
	height: 40px;
	float: left;
	font-size: .8em;
	line-height: 40px;
	padding-right: 23px;
	padding-left: 23px;
	background-repeat: no-repeat;
}

#nav li {
	float: left;
	height: 22px;
	line-height: 22px;
	}

#nav li a#home { 
	background-image: url(i/menu_sel.png);
	background-position: left top;
}
#nav li a#home:hover {
	color: #226BAB;
	background-position: left center;
}
#nav li a#home.active {
	color: #226BAB;
	background-position: left bottom;
}

#nav li a#contact {
	background-image: url(i/menu_sel.png);
	background-position: center top;
}
#nav li a#contact:hover {
	color: #226BAB;
	background-position: center;
}
#nav li a#contact.active {
	color: #226BAB;
	background-position: center bottom;
}

#nav li a#links {
	background-image: url(i/menu_sel.png);
	background-position: center top;
}
#nav li a#links:hover {
	color: #226BAB;
	background-position: center;
}
#nav li a#links.active {
	color: #226BAB;
	background-position: center bottom;
}

#nav li a#buy {
	background-image: url(i/menu_sel.png);
	background-position: right top;
}
#nav li a#buy:hover {
	color: #226BAB;
	background-position: right center;
}
#nav li a#buy.active {
	color: #226BAB;
	background-position: right bottom;
}
.map_heading {
	color: #1D7FB2;
	font-weight: bold;
}
.map_text {
	color: #1D7FB2;
}
/* Form Details */
.fields  fieldset {
	color: #FFF;
	display: block;
	margin: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: 430px;
}
.fields fieldset legend {
	color: #666;
	font-weight: normal;
	display: block;
}
.fields fieldset .rightMessage {
	font-weight: normal;
	text-align: right;
	font-size: .9em;
	width: 430px;
}
.fields ul  {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.fields ul input {
	width: 10%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.fields ol  {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.fields li {
	list-style-type: none;
	padding-top: 12px;
	padding-bottom: 4px;
}
#submit_button {
	width: auto;
	font-weight: bold;
	font-size: 1.4em;
}
.info {
	font-size: 0.7em;
	color: #999;
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
}
.red {
	font-weight: bold;
	color: #1D7FB2;
}
#map_canvas {
	border: 1px solid #E8E8E8;
}
.directions {
	width: 680px;
	padding: 4px;
}
.directions a {
	color: #1D7FB2;
	font-size: .8em;
}
.fields span {
	color: #999;
	display: block;
	font-size: 0.9em;
	font-weight: normal;
}
.fields fieldset ol li label {
	float: left;
	width: 160px;
}
.fields input {
	width: 160px;
	border: 1px solid #E8E8E8;
}
.fields .nowidth{
	width: 20px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.fields  .required  {
}
.fields .req {
	font-size: .64em;
	font-weight: normal;
}
.fields select {
	width: 90%;
}
.fields textarea {
	border: 1px solid #E8E8E8;
	width: 300px;
	height: 50px;
}
.fields #imgcode {
	width: 6em;
	border: 1px solid #E8E8E8;
	font-size: 1.2em;
}
.fields .submit {
	font-size: 1.2em;
	line-height: 50px;
	margin: 0px;
	padding: 0px;
	display: block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #FFF;
	height: 50px;
	text-align: right;
	width: 320px;
}
.fields .submit a {
	color: #FFF;
	text-decoration: none;
	display: block;
	height: 40px;
	width: 130px;
	margin-left: 170px;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	background-color: #3095E0;
}
.fields .submit a:hover {
	color: #FFF;
	text-decoration: none;
	background-color: #F99331;
}
.payment_options form button {
	font-size: 1.2em;
	line-height: 70px;
	display: block;
	background-image: url(i/payment.png);
	background-repeat: no-repeat;
	background-position: left center;
	height: 78px;
	background-color: transparent;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	list-style-image: none;
	list-style-type: none;
	width: 320px;
	text-indent: 0px;
	margin: 0px;
	padding: 0px;
}
.payment_options form button span {
	font-weight: bold;
	color: #5693B8;
	font-size: 1.3em;
	font-style: italic;
}
.nav_top , .nav_bottom  {
	float: right;
	font-size: 0.8em;
	margin: 2px;
	padding: 2px;
}
.nav_top a , .nav_bottom a, #mainContent2r .nav_top a , #mainContent2r .nav_bottom a {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px; /* for old Konqueror browsers */
	text-decoration: none;
	background-color: #F2D649;
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
	color: #000;
	margin-top: 0px;
	margin-right: 4px;
	margin-bottom: 0px;
	margin-left: 4px;
}
.nav_top a:hover, .nav_bottom a:hover, #mainContent2r .nav_top a:hover , #mainContent2r .nav_bottom a:hover
{
	text-decoration: none;
	background-color: #5693B8;
	color: #FFF;
}
.rounded_button { text-align: left; }
a.rounded_button, .rounded_button a, .fields input.rounded_button, input.rounded_button {
	color: #FFF;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px; /* future proofing */
	-khtml-border-radius: 50px; /* for old Konqueror browsers */
	background-color: #34C2F5;
	margin: 8px;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	padding-top: 8px;
	padding-right: 14px;
	padding-bottom: 8px;
	padding-left: 14px;
	width: auto;
	cursor: pointer;
	border: 1px solid #EDEDED;
}
a.rounded_button:hover, .rounded_button a:hover, .fields input.rounded_button:hover, input.rounded_button:hover {
	text-decoration: none;
	background-color: #FFF;
	border: 1px solid #EDEDED;
	color: #54CDF6;
}
.twos {
	width: 450px;
	display: block;
	float: left;
	padding: 5px;
}
.twosright {
	width: 440px;
	display: block;
	float: right;
	padding: 5px;
}
.thirds {
	width: 280px;
	display: block;
	float: left;
	padding: 10px;
	margin: 10px;
}
.photo {
	padding: 9px;
	margin-top: 0px;
	margin-right: 9px;
	margin-bottom: 0px;
	margin-left: 9px;
}
.photoleft {
	margin: 5px;
	padding: 5px;
	float: left;
}
.photoright {
	margin: 5px;
	padding: 5px;
	float: right;
}
#footer {
	color: #FFFFFF;
	text-decoration: none;
	padding: 0;
	background-color: #191919;
	margin: 0px;
} 
#inner_footer {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	height: 120px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-decoration: none;
}
#footer a {
	color:#EDEDED;
	background: inherit;
	text-decoration: none;
	font-size: x-small;
}
#footer a:hover {
	color:#E3A81F;
	background: inherit;
	text-decoration: underline;
	font-size: x-small;
}
#footer h1 {
	font-weight: normal;
}
#footer ul {
	list-style-image: none;
	list-style-type: circle;
	padding-left: 22px;
	text-align: left;
}
#footer .nobullet {
	list-style-image: none;
	list-style-type: none;
	display: block;
	height: 16px;
}
#banners {
	clear:left;
}
.mobile_off {
	height: 36px;
	font-size: 1em;
	line-height: 36px;
	display: block;
	padding-left: 22px;
	text-align: right;
	padding-right: 22px;
}
.mobile_off p { line-height: 36px; }
.mobile_off a img {
	height: 36px;
	width: 100px;
	display: inline;
}
.mobile_off a:hover img {
	background-position: center top;
}
.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;
}
.clearleft { /* 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:left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.clearright { /* 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:right;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

