/*	Beirut stylesheet -- a CSS layout demo
 *	original at http://stijlstek.nl/demo/beirut/
 *	copyleft 2004 Ben de Groot -- http://stijlstek.nl/contact
 *	licensed under the GNU Free Documentation License which in layman's terms
 *	means you are free to use and modify this stylesheet as long as you
 *	keep the license notice and credit to the original author intact  */

/*	Let's start with zeroing out any browser default margins and paddings */

* {
	margin: 0;
	padding: 0;
	}

/*	Next we set the page height, to position the footer at bottom of the window
 *	when page is short, and at the bottom of the page when page is longer  */

html, body {
	height: 100%;
	background: rgb(250,253,255);
	color: #000;
	}

body {
    font-family: verdana, helvetica, arial, sans-serif;
    font-size: 73%;  /* Enables font size scaling in MSIE */
	}

html>body { font-size: 9pt; } /* for modern browsers that can resize px */

/* ##### Layout structural elements ##### */

#wrap {
	position: relative;
	height: 100%;
	width: 100%;
	}

#middle {
	position: relative;
	height: auto;
	min-height: 100%; /* for modern browsers, to push the footer down */
	margin-right: 200px; /* right column width */
	margin-left: 200px; /* left column width */
	margin-bottom: -3em; /* footer height */
	width: auto;
	}

#middle:after { /* this will keep the floats contained, for modern browsers */
    content: "."; 
    display: block; 
    height: 0; 
    overflow: hidden; 
    clear: both;
    visibility: hidden;
    } 

* html #middle {
	height: 100%; /* for IE because it doesn't do min-height */
	}

/*	Now we set the header, footer and columns...   */

#header {
	position: absolute;
	top: 0;
	left: 0;
	height: 10.25em;
	width: 100%;
	overflow: hidden;
	z-index: 3; /* to show it on top */
	}

#main, #rightcol { /* so that the content will not overlap with the header or footer */
	padding-top: 10.25em;
	padding-bottom: 0em; /* original was 3em ?? */
	}

#main {
	position: relative; /* IE float bug workaround */
	float: left;
	width: 100%;
	margin-right: -1px;
	}

#content {
	background-color: rgb(255,255,255);
	position: relative;
	float: right;
	width: 100%;
	margin: 0 -1px;
	}

#leftcol {
	position: relative;
	float: left;
	width: 200px;
	margin-left: -199px; /* width -1 */
	}

#rightcol {
	position: relative;
	float: right;
	width: 200px;
	margin-right: -199px; /* width -1 */
	}

* html #rightcol { /* addressing some IE bugs */
	width: 199px; 
	margin-top: 1.7em;
	}

* html #rightcol, * html #leftcol, * html #content {
	overflow:hidden;
	}

#footer {
	clear: both; /* just to make sure it comes below the columns */
	position: relative;
	width: 100%;
	height: 3em;
	}

/* ##### Style functional elements ##### */

/*	And finally giving block elements inside the columns a default margin.
 *	This prevents the need for a box model hack on all the columns.
 *	If it wasn't for IE, we could do #nav>*,#content>*,#xtra>* { rules } */

h2, h3, h4, h5, h6, p, ul, ol, dl, pre, blockquote, form, fieldset, address {
	margin: 1em 15px;
	}

/* Now some basic universals */
ol {
    margin: 1em 0 1.5em 0;
    padding: 0;
    }
ol.box {
    margin: 1em 1em 1em 1.5em;
    padding: 0;
    }
ol li {
    line-height: 1.5em;
    margin: 1.25ex 0 0 2em;
    padding: 0;
    }
ul {
    list-style-type: square;
    margin: 1em 0 1.5em 0;
    padding: 0;
    }
ul.box {
    list-style-type: square;
    margin: 1em 1em 1em 1.5em;
    padding: 0;
    border: 0px solid rgb(0,51,102);
    }
ul li {
    line-height: 1.5em;
    margin: 1.25ex 15px 0 1.5em;
    padding: 0;
    }
dl {
    margin: 1em 0 0.5em 0;
    padding: 0;
    }
dt {
    font-weight: bold;
    margin: 0 15px;
    padding: 0 0 1ex 0;
    }
dd {
    line-height: 1.75em;
    margin: 0 15px 1.5em 2.5em;
    padding: 0;
    }
.doNotDisplay { display: none !important; }
.smallCaps {
    font-size: 117%;
    font-variant: small-caps;
    }
a {
    text-decoration: none;
    color: rgb(0,0,255);
    }
a:hover {
    text-decoration: underline;
    }
img {
	border: 0px none;
	display: block;    /* removes extra space underneath caused by default text-alignment */
	}
img.blog {
    border: 1px solid black;
}

hr {
    color:           #999999;
    background:      transparent;
    height:          1px;	/* Required for IE/Win */
    margin:          0.5em 2em;
    padding:         0;
    border-color:    #999999;
    border-width:    1px;
    border-style:    none none solid none;
    }
.clearboxes {			/* Clear navboxes and floatboxes */
   clear: right;
    }
.headshot {
	display: inline;
	float: left;
	margin: 0px 0.5em 0.5em 0px;
	}
.wrap   {
	display: inline;
	float: left;
	margin: 0 15px 10px 15px;
	}
.nowrap   {
	display: block;
	margin: 0 15px 10px 15px;
	}
/* ##### Header ##### */

.superHeader {
    color: rgb(130,128,154);
    background-color: rgb(33,50,66);
    text-align: right;
    margin: 0;
    padding: 0.5ex 10px;
    }
.superHeader span {
    color: rgb(195,196,210);
    background-color: transparent;
    font-weight: normal;
    text-align: left;
    position: absolute;
	top: 3px;
	left: 10px;
    }
.superHeader a {
    color: rgb(195,196,210);
    background-color: transparent;
    text-decoration: none;
    margin: 0;
    padding: 0 0.25ex 0 0;
    }
.superHeader a:hover {
    color: rgb(193,102,90);
    background-color: transparent;
    text-decoration: none;
    }
.midHeader {
    color: rgb(255,255,255);
    background: rgb(61,92,122) url(http://www.healthproductssite.com/images/header-back.png);
    margin: 0;
    padding: 0.26ex 10px;
    line-height: 1.23; /* IE6 peek-a-boo bug workaround */
    }
.headerTitle {
    font-size: 280%;
    margin: 0;
    padding: 0;
    }
.headerSubTitle {
    font-size: 140%;
    font-weight: normal;
    font-style: italic;
    color: navy;
    margin: 0 0 1ex 0;
    padding: 0;
    }
.subHeader {
    color: rgb(255,255,255);
    background-color: rgb(117,144,174);
    margin: 0;
    padding: 0.5ex 10px;
    }
.subHeader a, .subHeader .highlight {
    color: rgb(255,255,255);
    background-color: transparent;
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0 0.25ex 0 0;
    }
.subHeader a:hover, .subHeader .highlight {
    color: rgb(255,204,0);
    background-color: transparent;
    text-decoration: none;
    }
.current {
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0 0.25ex 0 0;
    color: rgb(0,0,0);
    background-color: transparent;
    text-decoration: none;
    }
div#search form {
	position: absolute;
	right: 0px;
	top: 45px;
	margin: 0px;
    padding: 0px;
	white-space: nowrap; /* added as recent builds of Firefox wrap the form content */
    padding-right: 0.5em; /* need this or Firefox produces horizontal scroll bar */
	}

/* ##### Main Copy ##### */

/********** Styles for Blog **********/

.date {
    padding: 5px 0;
    border-top:
    1px solid #003366;
    }
.infoline {
    border: 1px solid #ccc;
    padding: 4px 5px;
    margin: 5px 0;
    }
/*.comment {
    background-color: #FEF2A7;
    border: 1px solid #FF5500;
    padding: 4px 5px;
    margin: 10px 15px;
    } */
fieldset {
    border: 1px solid #ccc;
    padding: 10px 8px;
    margin: 10px 15px;
    background: #E6FFE4;
    color: #000;
    }
input {
    padding: 3px;
    margin: 0;
    }
textarea {
    width: 97%;
    height: 20em;
    padding: 3px;
    }
.comment {
    background: #eee;
    color: #808080;
    padding: 10px;
    margin: 10px 15px;
    border-top: 1px solid #ccc;
    }
.commentsbox {
    background: #E8FFD9;
    color: #808080;
    padding: 10px;
    margin: 10px 15px;
    border-top: 1px solid #ccc;
    }
/********** Styles for Content **********/
#content {
    text-align: justify;
    padding: 0;
    }
#content h1 {
    color: rgb(117,144,174);
    background-color: transparent;
    font-family: "trebuchet ms", verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-size: 186%;
    letter-spacing: 1px;
    padding: 1.5ex 0 0 0;
    margin: 0 0 0 15px;
    }
#content h2 {
    color: rgb(61,92,122);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 151%;
    letter-spacing: 1px;
    padding: 1ex 0 0 0;
    }
#content h3 {
    color: rgb(61,92,122);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: normal;
    font-size: 151%;
    letter-spacing: 2px;
    padding: 0.75ex 0 0 0;
    }
#content h4 {
    color: rgb(61,92,122);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 120%;
    letter-spacing: 2px;
    padding: 0.75ex 0 0 0;
    }
#content p {
    line-height: 1.75em;
    padding: 0;
    }
#content p.box {
    padding: 1.5em;
    border: 1px solid rgb(0,102,51);
    line-height: 1.75em;
    }
#content p.notice {
    line-height: 1.75em;
    font-weight: bold;
    padding: 0;
    color: rgb(255,000,000);
    }
#content p.references {
    line-height: 1.1em;
    padding: 0;
    }
.price {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 150%;
	font-style: normal;
	font-weight: bold;
	color: rgb(255,0,0);
}
.red {
    color: rgb(255,0,0);
    }
.stretch {
    letter-spacing: 2px;
    }

/********** Styles for Floating Boxes **********/

.floatbox {
   overflow:        visible;
   font-size:       95%;
   line-height:     1.25;
   margin:          0 0.75em 0.25em 0.75em;
   padding:         0;
   border:          0;
   float:           right;
   clear:           right;
}
.floatbox.title {
    color: rgb(0,153,77);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 151%;
    letter-spacing: 1px;
    padding: 1ex 0 0 0;
    }
.linnerbox {
   overflow:        visible;
   font-size:       95%;
   line-height:     1.25;
   margin:          0;
   padding:         2.5em 1em 0.25em 0;
   border:          0;
   height:          100%;
   float:           left;
   clear:           left;
}
.rinnerbox {
   overflow:        visible;
   font-size:       95%;
   line-height:     1.25;
   text-align:      left;
   margin:          0 0.5em;
   padding:         0 1em 0em 1em;
   border:          0;
   height:          100%;
   float:           left;
   clear:           right;
}
.floatbox {
   color:           black;
   background:      #ffffff;
   width:           auto;
}
.linnerbox {
   color:           black;
   background:      #ffffff;
   width:           124px;
}
.floatbox hr {
   display:         none !important; /* Used for non-stylesheet-aware browsers */
}
.floatbox p {
   margin:          0.75em 0;
   padding:         0;
}
.floatbox ol {
   margin:          0.75em 0;
   padding:         0 0 0 1.5em;
}
.floatbox blockquote {
   margin:          0.75em 1.5em;
   padding:         0;
}
.floatbox pre {
   font-size:       95%;
   margin:          0.75em 1.5em;
   padding:         0;
}
.floatbox dt {
   margin:          0.75em 0;
   padding:         0;
}
.floatbox dt {
   margin:          0.75em 0 0.25em 0;
   padding:         0;
}
.floatbox dd {
   margin:          0 0 0.75em 1.5em;
   padding:         0;
}
#main .floatbox .highlight {
   color:           inherit;
   background:      white;
   margin:          0.75em 0;
   padding:         0.75em 1.5em;
}
#main .floatbox table.simple {
   margin:          0.75em 0;
}
#main .floatbox table.simple th,
#main .floatbox table.simple td.highlight,
#main .floatbox table.simple th.highlight {
   color:           inherit;
   background:      white;
   margin:          0;
   padding:         0.25em 0.5em;
}

/* ---------------- */

#content p.highlight {
    font-size: 95%;
    font-family: verdana, helvetica, arial, sans-serif;
    line-height: 1.25em;
    padding: 1.5em;
    border: 1px solid rgb(0,102,51);
    background: rgb(250,253,255);
    }
#content p.boldtype {
    font-weight: bold;
    }
#content p.smallprint {
    font-size: 85%;
    font-family: verdana, helvetica, arial, sans-serif;
    line-height: 1.25em;
    padding: 1em;
    border: 1px solid rgb(0,102,51);
    background: rgb(255,255,255);
    }
.boldtype {
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
    }
.more {
    text-align: right;
    margin: 0;
    padding: 0.5em 0;
    }
.more a {
    color: rgb(0,0,255);
    background-color: transparent;
    font-size: 92%;
    text-decoration: none;
    margin: 0;
    padding: 0.25ex 0.75ex;
    }
.more a:hover {
    color: rgb(0,0,255);
    text-decoration: underline;
    }
.topOfPage {
    font-size: 90%;
    font-weight: bold;
    font-variant: small-caps;
    text-decoration: none;
    padding-left: 1ex;
    padding-right: 1ex;
    float: right;
    margin-right: 15px;
    }

/* -------- Table ---------- */
table.pricelist {
    margin-left: auto;
    margin-right: auto;
    background-color:#FFFFFF;
    border: solid #000 1px;
    font: 100% Arial, sans-serif;
    }
table.pricelist td {
    padding: 2px;
    border: solid #000 1px;
    }
table.generic {
    margin-left: auto;
    margin-right: auto;
    background-color:#FFFFFF;
    border: solid #000 0px;
    font: 100% Arial, sans-serif;
    }
table.generic td {
    padding: 2px;
    border: solid #000 0px;
    }
table.generic caption {
    text-align: center;
    font-size: 120%;
    }
.data {
    color: #000;
    text-align: right;
    }
.datamid {
    color: #000;
    text-align: center;
    }
.dataleft {
    color: #000;
    text-align: left;
    }
.toprow {
    font-weight: bold;
    text-align: center;
    background-color: #f7f2ea;
    }
.evenrow {
    font-style: normal;
    text-align: center;
    background-color: #eee;
    }
.oddrow {
    font-style: normal;
    text-align: center;
    background-color: #e6e4e4;
    }
.labelcol {
    font-weight: bold;
    text-align: left;
    width: 15%;
    background-color: #f7f2ea;
    }
.feature hr {	/* Used for non-stylesheet-aware browsers */
    display:            none !important;
    }
/* ##### Left sidebar content ##### */

#lside-bar {
    color: rgb(0,102,51);
    background-color: white;
    width: 180px;
    margin: 1em 0 1em 1.5ex;
    padding: 1ex 0;
    border: 1px solid rgb(0,102,51);
    }
#lside-bar ul {
    list-style-type: square;
    padding: 0;
    margin: 0;
    }
#lside-bar li {
    list-style-type: square;
    line-height: 1.2em;
    margin-left: 1.5em;
    padding: 0;
    }
#lside-bar li a:hover {
    text-decoration: underline;
    }
#lside-bar li.header {
    line-height: 1.25em;
    list-style-type: none;
    font-weight: bold;
    margin: 0;
    padding: 2ex 0 0 2.5ex;
    }
.feature {
    background-color: #FFC;
    padding: 10px 0 10px 5px;
    }
span.notice {
    color: #DC7D47;
    font-weight: bold;
    }
/* ##### Right sidebar content ##### */

h4 {
    color: rgb(153,0,0);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 120%;
    letter-spacing: 1px;
    padding: 0;
    }
/* box with listed links - border currently off */
#rside-listbox {
    color: rgb(0,102,51);
    background-color: transparent;
    width: 180px;
    margin: 1em 1.5ex 2em 1em;
    padding: 1ex 0;
    /*border: 1px solid rgb(0,51,102);*/
    }
#rightcol ul {
    padding: 0;
    margin-left: 1em;
    }
#rightcol li {
    line-height: 1.2em;
    margin-left: 1.5em;
    font-size: 0.9em;
    font-family: verdana, helvetica, sans-serif;
    padding: 0;
    }
/* paragraph ~ border currently on */
#rightcol p.border, #leftcol p.border {
    width: 179px;
    padding: 0 0.5em;
    margin: 1em 1.5ex 1em 1.5ex;
    border: 1px solid rgb(0,102,51);
    background-color: rgb(255,255,255);
    color: #000;
    font-size: 0.9em;
    font-family: verdana, helvetica, sans-serif;
    line-height: 1.7em;
    text-align: left;
    }
#rightcol p {
    width: 179px;
    padding: 0 0.5em;
    margin: 0.5em 1.5ex 0.5em 1.5ex;
    background-color: transparent;
    color: #000;
    font-size: 0.9em;
    font-family: verdana, helvetica, sans-serif;
    line-height: 1.5em;
    text-align: left;
    }

/*  -------------------- Subscription Form --------------- */

div.subscontainer {
	width: 194px;
    padding: 0;
    margin: 1em 0;
    background-color:#f7f2ea;
    text-align: center;
    border: solid 1px #000;
    font-family: verdana, arial, sans-serif;
    font-size: 100%;
    color: #000;
    }
.subshead {
    color: #fff;
    font-weight: bold;
    background-color: rgb(61,92,122);
    font-variant: small-caps;
    letter-spacing: 2px
    }
.subsform {
    padding: 0;
    margin: 0;
    text-align: center;
    background-color:#f7f2ea;
    color: #000;
    font-family: verdana, arial, sans-serif;
    font-size: 75%;}
.subsfoot {
    color: #000;
    background-color:#efefef;
    font-family: arial, sans-serif;
    font-size: 90%;
    }
span.h {
    color: #900;
    font-weight: bold;
    }

/* ##### Footer ##### */

#footer {
    color: rgb(51,51,102);
    background-color: rgb(239,239,239);
    font-size: 87%;
    text-align: center;
    line-height: 1.25em;
    margin: 0;
    padding: 1ex 0 20px 0;
    border-top: 1px solid rgb(0,102,51);
    }
#footer a:hover { text-decoration: underline; }
