@charset "utf-8";
/* CSS Document */

body {
	font: 14px Arial, Verdana, Helvetica, sans-serif;
	background-color: #bbb;
	margin: 0;
	padding: 0;
	color: #000;
	position:relative;
}

hr {margin:25px 0 15px 0;}


/* ~~ 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. */
	
	margin: 0;
}
.content ul {margin-left:15px;}
ul.squares {margin-left:1.6em; position:relative;}
.squares li {list-style:none; margin:0 0 13px 0; font-size:16px;}
.squares li:before {content:"\25A0"; font-size: 1.3em; color:#EAD503; position:absolute; left:-1em; margin-right:6px; margin-top:-5px;}
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 div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
h1 {font-size:36px; margin-top:0px; text-align:left; color:#000; margin-bottom:10px;}
h2 {font-size:33px; }
h3{font-size:26px; color: #000; font-weight:300;}
h4 {font-size:20px; margin-top:00px; margin-bottom:6px; font-weight:normal;}
h5 {font-size:18px; margin-top:0px;}
.center {text-align:center;}
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: #1A9BCC;
	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: #1A9BCC;
	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;
}

p {font-size:14px; line-height:1.7em;}
/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 1050px;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	box-shadow:2px 2px 4px rgba(0,0,0,.4);
}
#leftcol {width:345px; float:left;}
#homevideo {float:left; width:325px; margin-bottom:15px;}
#homeleft {padding:10px;float:left; width:305px; margin:0 25px 25px 0px; border:1px solid #164612; border-radius:6px; box-shadow:2px 2px 4px rgba(0,0,0,.3); background-color:#f2f2f2;}
#homeleft h2 {font-weight:bold; text-transform:uppercase; color:#174514; font-size:14px;}
#homeleft h4 {font-size:16px;margin-bottom:0px; margin-top:6px;}
#homeleft p {font-size:11px; margin:0 0 5px 0; line-height:1.7em; font-weight:bold;}
#homeleft a {text-decoration:none; font-size:11px; font-weight:normal;}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #ADB96E;
	background:url(images/header.jpg) no-repeat center center;
	height:212px;
	border-top:0px solid #0b2677;
}


.infobox {margin:30px 0 65px 0; border:1px solid #174514; padding:20px 20px 10px 20px; border:1px solid #164612; border-radius:6px; box-shadow:2px 2px 4px rgba(0,0,0,.3); background-color:#f2f2f2;}
.infobox h3 {color:#174514; text-transform:uppercase; font-weight:normal;}/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {

	padding: 35px 20px;
}

/* ~~ The footer ~~ */
.footer {
	padding: 0px 0 12px 0;
	margin:0 auto;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#nav {width:100%; border-top:3px solid #0b2677; border-bottom:3px solid #0b2677; overflow:visible; background-color:#0b2677; height:39px;}
ul.MenuBarHorizontal a.order {border-right:0px; background-color:#009ADE; color:#fff; width:79px; text-align:center;}

.footertext {font-size:11px; line-height:1.1em; margin-bottom:0px; padding:0 25px 15px 25px; }

#footerlinks {background-color:#E6E7E8; width:1050px; border-top:4px solid #000; border-bottom:4px solid #000; text-align:center; overflow:hidden; padding:4px 0; margin-bottom:10px; margin:0 auto 10px 0px;}
#footerlinks a {padding:10px 9px; color:#0A8AB9; text-decoration:none; font-size:11px; font-weight:bold; }

.orderonline-bottle {float:right; margin:0 0 25px 20px;}

.order-green {color:#393; font-size:15px; margin-top:0;}
.price {font-size:20px; margin-bottom:0px;}
.drphoto {border:3px solid #000; }

.rightcolumn {width:241px; float:right; text-align:center; margin:0 0 15px 25px;}
.rightcolumn img {margin-bottom:25px;}

.steps {
    font-size: 11px;
    float: left;
    margin: 0 60px 0 0;
    width: 100px;
    list-style: none;
    color: #577650;
}

#headerleft {width:96%; margin:0 2% 0 2%; float:left; text-align:center;}
#headerright {width:20%; float:right;}
#sitetitle {display:block; margin-top: 16px; margin-bottom:4px; font-size:47px; font-weight:600; color:#000; text-transform:uppercase; text-align:center; border-top:3px solid #000; border-bottom:3px solid #000; padding:6px 0;}
#sitetag {font-size:32px; font-weight:normal; color:#000; margin-bottom:10px; text-align:center;}
.logo {margin-top:89px;}
.headerbody {font-size:15px; text-align:left; line-height:20px; display:block; margin-top:9px; width:845px; margin:0 auto;}
#homecolumns {margin:5px 2% 0 2%; width:96%; clear:both;}
#homecolumns .borderbox, .borderbox.full {padding:13px; border:1px solid #000; overflow:hidden; box-shadow:2px 2px 4px rgba(0,0,0,.3);}
#homecolumns p {font-size:13px; line-height:17px; text-align:left;}

#homecolumns #col1, #homecolumns #col3 {text-align:center;float:left; width:24%; }
#homecolumns #col2 {text-align:center; float:left; width:48%; margin:0 2% 0 2%;}
#homecolumns #col2 ul {margin:0; padding:0; list-style:none;}
#homecolumns #col2 li {margin:0; padding:0; list-style:none; width:49%; height:250px;float:left;}
#homecolumns #col2 li p {text-align:center;}
#homecolumns #col2 h3, #homecolumns #col1 h3, #homecolumns #col3 h3 {font-size:14px; font-weight:bold; margin:0; color:#000;}
.borderbox.full {text-align:center; margin:20px auto 20px auto; width:43%; }
.borderbox.full h2 {font-size:30px; margin:0; font-weight:normal; color:#004990;}
.borderbox.full h3 {font-size:14px; color:#004990; font-weight:bold; margin:0;}
#homecolumns h2 { color:#000; font-weight:700; font-size:20px; margin:15px 0 5px 0;}

#lowerhome {float:none; clear:both; border-top:1px solid #000; margin-top:20px; padding:12px 25px 0 25px;}
#lowerhome h3 {text-transform:uppercase; color:#000; font-size:16px; font-weight:bold; margin:0;}
#lowerhome p {font-size:13px; line-height:17px;}

#topcontent {padding:20px 20px; float:left; width:660px; }
#topcontent h2 {font-family:Arial Narrow; color:#000; font-size:52px; font-weight:bold; margin-bottom:15px; margin-left:10px;}
#topcontent p {font-family:Arial Narrow; font-size:21px; line-height:1.7em; color:#000; margin-left:15px; }
#topcontent-right {float:right; margin:0 25px 0 10px; width:300px; text-align:center;}
#topcontent-right p {color:#000; font-weight:bold;}
.boldtext {clear:both; border-top:10px solid #000; background:#efefef; padding:15px 35px; line-height:1.5em;}
.boldtext p {font-size:20px; font-weight:bold; margin-bottom:0; }

.bluebox {border:10px solid #000; padding-right:15px; padding-top:10px; padding-left:10px; overflow:hidden;}
.bluebox .col1{ float:left; width:50%;}
.bluebox h2 {color:#0c2577; margin-bottom:0px;}
.bluebox h3 {color:#0c2577; font-weight:bold; font-size:23px; }
.bluebox .col2 {float:right; width:50%;}
.bluebox .col2 h2 {color: #174514;}
.bluebox .col2 h3 {color:#174514; font-weight:bold; }
.bluebox p, .bluebox h3 {margin-left:65px; font-family:Arial Narrow;}
.bluebox p {font-size:15px;}
.bluebox h3 {margin-bottom:7px;}

.bullet-1 {background-image:url(images/1-bullet.png); background-repeat:no-repeat; padding:5px 0 12px 65px; line-height:50px;}
.bullet-2gr {background-image:url(images/2-bullet-gr.png); background-repeat:no-repeat; padding:5px 0 12px 65px; line-height:50px;}
.bullet-3 {background-image:url(images/3-bullet.png); background-repeat:no-repeat; padding:5px 0 12px 65px; line-height:50px;}

#order {text-align:center;}
#order .ordertitle {color:#009BDF; font-family:Arial Black; font-size:46px; text-shadow:2px 2px 3px rgba(0,0,0,.9); margin-top:20px; margin-bottom:7px; line-height:36px;}
#order .titlesub {font-weight:bold; margin:0;font-size:18px; text-transform:uppercase;}
#order .selectoption {font-size:36px; font-weight:bold; font-family:Arial Black; margin-bottom:0;}
.phone {color: #009BDF; font-size:20px;}

#lowercontent {padding:0 35px; border-top:4px solid #000;}
#lowercontent h2 {color:#000; font-family:Arial Black; font-size:41px; margin-bottom:6px;}
#lowercontent h3 {font-weight:bold; font-size:20px; margin-bottom:7px;}
.floatright {float:right; margin:0 0 20px 20px;}

#protocol h4 {color:#000; font-size:30px; font-family:Arial Black;}
#protocol p {font-size:17px; line-height: 2em; font-family:Arial Narrow, Arial;}

.buttonlink {padding:4px 10px; background:#6A6A6A; color:#fff; text-transform:uppercase; border:1px solid #333; text-decoration:none; margin:10px 15px 10px; border-radius:2px; }

.shaded {background:#efefef; padding:15px 35px; text-align:left; border-top:4px solid #000;
}
.shaded h3 {margin:0  0 10px 0;}
.shaded h2 {margin:0 0 0px 0;}

a.learnmore, a.learnmore {height:30px; text-transform:none; text-decoration:none; font-size:16px;  border-radius:14px; border:1px solid #1A9BCC; padding:7px 20px; margin:20px 0 0 0; width:155px; text-align:center; display:inherit; font-weight:bold; background: #1A9BCC; color:#fff;}
a.learnmore:hover {text-decoration:underline;}
a.learnmore .addtocart {font-size:11px; text-transform:uppercase; text-decoration:underline;}

#cyop h3 {margin-bottom:5px; color:#000;}
#cyop h4 {margin:0; font-weight:normal; }
#cyop hr {margin:20px 0 15px 0;}
#cyop p {clear:left;}
.thumb {float:left; margin-right:8px;}

#notes_right li {margin-bottom:4px;}

#downloads-list {width:700px; margin-bottom:15px;}
#downloads-list ul {margin:0; padding:0;}
#downloads-list li {border:2px solid #fff; background:#efefef; margin:0; padding:10px 15px; list-style:none; width:650px;}
#downloads-list li img {}
.download {float:left; padding:10px 0;}

.important-message {color:blue; width:900px; margin:0 auto 10px auto; text-align:justify; font-size:19px; line-height:21px;}


#Contact {line-height:30px;}
#Contact label {font-size:15px; }
#Contact input {width:200px; height:30px; }
#Contact textarea {width:200px;}
#Contact {text-align:right; width:360px;}
#Contact label {width:200px; text-align:right;}

.protocol-title {font-size:21px; font-family:"Arial Narrow", Arial, sans-serif; font-weight:bold;}