﻿@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #f5f5f5;
	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;
}
.oneColFixCtrHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #f5f5f5;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #ffffff;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #f5f5f5; 
	padding: 0px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #f5f5f5;
}
.oneColFixCtrHdr #footer {
	padding: 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#f5f5f5;
}
.oneColFixCtrHdr #footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.Productlistpink {
	color: #da3393;
	font-size: 13px
}

.style5 {
	color: #999999;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:thin;
	text-align:Left;
}
.greysmall {
	color: #999999;
	font-size: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:thin;
	text-align:Left;
}
.greysmall2 {
	color: #cccccc;
	font-size: 8px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:thin;
	text-align:Left;
}
.style12 {
	color: #999999;
	font-size: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-stretch:ultra-condensed;
}

.style14 {
	color: #FFFFFF;
	font-weight: bold;
}

.style16 {font-size: 14px}


a:link {
	color: #999999;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #999999;
}
a:hover {
	text-decoration: underline;
	color: da3393;
}
a:active {
	text-decoration: none;
}













/* Added by Brad 01/22/10 */

#subHldr {
	position: relative;
	width: 700px;
	height: 300px;
}
#subscribe {
	position: absolute;
	width: 699px;
	height: 299px;
	background-color: #FFF;
}
#subscribe td {
	vertical-align: top;
}
#subscribe #banner {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 700px;
	text-align: center;
	background-color: #000;
}
#subscribe H1 {
	position: absolute;
	top: 60px;
	left: 15px;
	width: 270px;
	font-size: 18px;
	height: auto;
}
#subscribe H2 {
	position: absolute;
	top: 210px;
	left: 10px;
	width: 270px;
	font-size: 9px;
	font-weight: 400;
	height: auto;
}
#subscribe H2 p {
	padding-top: 10px;
}
#subscribe #form {
	position: absolute;
	top: 60px;
	left: 320px;
	width: 300px;
	background-color: #fff;
}
#subscribe label {
	display: block;
	font-size: 10px;
	text-indent: 4px;
	margin-top: 2px;
}
#subscribe #frmBtn {
	margin-top: 20px;
	padding-top: 20px;
	text-align: center;
}
span.req {
	color: #ff0000;
}
#frmBtnOff {
	color: #ffffff; 
	font-size: 10px;
	text-transform: uppercase;
	background-color: #000000;
	padding-left: 4px;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	border: 1px solid #000000;
}
#frmBtnOn {
	cursor: pointer;
	color: #000000; 
	text-transform: uppercase;
	background-color: #FFFFFF;
	font-size: 10px;
	padding-left: 4px;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	border: 1px solid #000000;
}
.validation-advice {
	font-size: 9px;
	color: #ff0000;
}

/********* Thankyou Page *********/

#submitted {
	position: absolute;
	top: 200px;
	left: 324px;
	width: 697px;
	height: 299px;
	background-color: #FFF;
}
#submitted #banner {
	position: absolute;
	top: 0px;
	left: 40px;
	width: 196px;
}
#submitted H1 {
	position: absolute;
	top: 90px;
	left: 300px;
	width: 300px;
	font-size: 14px;
	font-weight: 500;
}
#submitted H2 {
	position: absolute;
	top: 120px;
	left: 320px;
	width: 340px;
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
}
#submitted H2 a {
	color: #0000ff;
}

/********* Universal *********/

* {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}
img {
	border: none; 
}
.clear {
	clear: both;
}














-->
