@charset "utf-8";
body  {
	font: 100% Arial, sans-serif;
	background: #FFFFFF;
	margin: 0; 
	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;
}

/* 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 based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 56em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left;
} 
.twoColElsLtHdr #banner {
	padding: 0 10px;
	background-image: url(img/banner.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height: 150px;
	border-width: thin;
	border-style: solid;
	border-color: #96C56F;
} 

/* Tips for navcontainer and sidebars:
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. 
*/

.twoColElsLtHdr #sidebar_left {
	float: left;
	width: 175px;
}

.twoColElsLtHdr #navcontainer {
	float: left;
	height: 230px;
	width: 150px;
	padding: 5px 5px;
	background-color: #DAEFC9;
	border: 1px solid #7C7F57;
	margin: 2em 1em 1em 0;
	border-top-width: 20px;
	border-top-color: #96C56F;
	font-size: 9pt;
}

.twoColElsLtHdr #navcontainer ul, #navcontainer li
{
	margin-left: 0px;
	padding-left: 0;
	list-style-type: none;
}


.twoColElsLtHdr #navcontainer a
{
	display: block;
	height: 20px;
	line-height: 20px;
	padding: 0px;
	border-bottom: 1px solid #7C7F57;
}

.twoColElsLtHdr #navcontainer a:link, #navlist a:visited
{
	text-decoration: none;
	color: #000000;

}

.twoColElsLtHdr #navcontainer a:hover
{
	background-color: #96C56F;
	color: #FFFFFF;
}

.twoColElsLtHdr #featurebox 
{
	float: left;
	width: 160px;
	margin: 2em 1em 0 0;
	padding: 5px 5px;
	background-color: #CEC1D9;
	border: 1px solid #000000;
	color: #000000;
	font-size: 9pt;
}

.twoColElsLtHdr #freeship 
{
	float: left;
	width: 160px;
	margin: 2em 1em 0 0;
	padding: 5px 5px;
}

.twoColElsLtHdr #featurebox ul, #featurebox li
{
	list-style: disc outside;
	margin-left: 11px;
	padding-left: 1px;
}

.twoColElsLtHdr #featurebox a:link, #featurebox a:visited
{
	text-decoration: none;
	color: #000000;

}

.twoColElsLtHdr #featurebox a:hover
{
	color: #FFFFFF;
}


/* 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.
*/
.twoColElsLtHdr #mainContent {
	margin: 1.5em 1.5em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 
.twoColElsLtHdr #newsContent {
	margin: 2em 1.5em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	font: 100% Georgia, Courier;
} 
.twoColElsLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #DAEFC9;
	border: 1px solid #7C7F57;

} 
.twoColElsLtHdr #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: 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
	text-align: center;
}

/* 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;
}
.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 {
	text-decoration: none;
}

.text {
	font: 100% Arial, Helvetica, sans-serif;
} 
.espanol {
	float: left;
	margin-right: 8px;
	font-size: 95%;
	color: #FF0000;
	font-weight: bold;
	width: 150px;
	text-align: center;
	font-style: italic;
}
 
.news_box {
	font: Georgia, Courier;
	border: 2px solid #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 5px 5px;
	width: 450px;
	height: 210px;
} 

.news_box2 {
	font: 75% Georgia, Courier;
	border: 1px solid #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 10px 10px;
	width: 500px;
} 

.news_title {
	font: 100% Georgia, Courier;
	font-weight: bold;
	margin-left: 20%;
} 

.news_title_red {
	font: 100% Georgia, Courier;
	font-weight: bold;
	color: #FF0000;
	align: center;

}

.news_headline {
	font: 110% Georgia, Courier;
	font-weight: bold;
	text-align: center;
} 


.news {
	font: 85% Georgia, Courier;
} 

.news_oprah {
	font: 75% Georgia, Courier;
} 

.news_bold {
	font: 85% Georgia, Courier;
	font-weight:bolder;
} 

.quote_text {
	font-size: 95%;
	color: #333333;
} 

.quote_quotee {
	font-size: 65%;
	color: #666666;
} 

table {
	border:1px solid #000;
	border-collapse:collapse;
	font-family:arial,sans-serif;
	font-size:100%;	
}

/* We repeat the border information for all of the inner elements and set their padding to 5 pixels.*/

td,th{
	border:0px solid #000;
	border-collapse:collapse;
	padding:5px;
}	

/* Next on our list is the caption, it needs a background, a slightly larger font and a border. As our caption sits on top of the table, we have to get rid of the bottom border. Texts in captions are centered by default, therefore we need to set the text-align to left.*/

.caption{
	background:#DAEFC9;
	font-size:100%;
	border:1px solid #000;
	border-bottom:1px;
	padding:2px;
	text-align:center;
}

/* The same applies to headers, and to distinguish between headers in the head and those in the body of the table, we use descendant selectors:*/

thead th{
	background:#96C56F;
	text-align:center;
	border:1px solid #000;
	text-align:center;
	font-size:150%;



}

tbody th{
	text-align:center;
	background:#DAEFC9;
	border:1px solid #000;
	font-size:120%;
}

.table2 {
	border:1px solid #000000;
	border-collapse:collapse;
	font-family:arial,sans-serif;
	font-size:100%;
	text-align: left;	
}

.table3 {
	border:1px solid #000000;
	table-layout: fixed;
	font-family:arial,sans-serif;
	font-size:100%;
	text-align: left;	
}

.img_test_kit
{
	position:static;
	padding: 5px 0 3px 30px;
	border: none;


}

.img_books
{
	position:static;
	padding: 3px 0 0 5px;
	border: none;
}

.img_progesta
{
	position:static;
	padding: 5px 6px 3px 0;
}

.img_women
{
	position:static;
	padding: 3px 0 3px 5px;
	float:right; 
	clear:right;
}

.img_oprah1
{
	position:static;
	padding: 3px 8px 3px 0;
	float:left; 
	clear:right;
}

.img_oprah2
{
	position:static;
	padding: 3px 8px 3px 0;
	float:right; 
	clear:right;
}

.img_trans
{
	position:static;
	padding: 3px 0 3px 6px;
	float:right; 
	clear:right;
}

#buy_box 
{
	width: 180px;
	margin: 0 0 0 50px;
	padding: 10px 10px;
	background-color: #9275A9;
	border: 1px solid #000000;
	color: #FFFFFF;
	text-align: center;
}

#buy_box a
{
	color: #FFFFFF;
	text-decoration: none;
}

#buy_box a:hover
{
	color: #FF0000;
}


#shipping_box 
{
	float: left;
	width: 160px;
	margin: 2em 1em 0 0;
	padding: 5px 5px;
	background-color: #9275A9;
	border: 1px solid #000000;
	color: #FFFFFF;
	
}

#shipping_box h3
{
	color: #FFFFFF;
	text-align: center;	
}


.Progesta_plus_cap
{
	color: #9275A9;	
}

.headline  {
	font: 150% Arial, sans-serif;
	text-align: center;
	font-weight:bolder;
	color: #000000;
}

.headline_red  {
	font: 150% Arial, sans-serif;
	text-align: center;
	font-weight: bolder;
	color: #FF0000;
}

.small_red  {
	font: 70% Arial, sans-serif;
	font-weight: bolder;
	color: #FF0000;
}

.style1 {color: #FF0000}
.style6 {color: #FF9900}
.style7 {font-size: 80%}.news_box_dr_oz {
	font: Georgia, Courier;
	border: 2px solid #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 5px 5px;
	width: 450px;
	height: 155px;
}
.news_headlineleft {
	font: 110% Georgia, Courier;
	font-weight: bold;
	text-align: left;
}
