/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px 0px 20px;
	padding: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}
/* Sets the margin and padding to zero */
ul, li {
	 margin: 0;
	 padding: 0;
	 text-align: left;  /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, ol, td {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: #4F4F4F;
}
/* Redefines the p tag */
p {
	font-size: 12px;
	line-height: 16px;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}

h1 {
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1DEDE;
	font-size: 18px;
	font-weight: bold;
	color: #64B01E;
}
h2 {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	text-transform: uppercase;
	padding: 5px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
	margin: 0px;
	padding: 0px;
}
a:hover {
	text-decoration: underline;
	color: #478CB9;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: url(images/header.gif) no-repeat;
	position: relative;
	width: 900px;
	height: 456px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	vertical-align: top;
}
div#headerimg {
	position: absolute;
	top: 105px;
}
/* Creates the div container for the site. */
div#container {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	position: relative;
	background-image: url(images/contentbg.gif);
	background-repeat: repeat-y;
}

/* Creates the div for the content */
div#content {
	margin: 0px;
	padding: 0px 25px;
	text-align: left;
}
div#content img {
	margin: 0px 0px 20px;
	padding: 0px;
	border: none;

}
div#content img.right {
	clear: right;
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
	border: 1px solid #ECE8E8;
	padding: 2px;
}
div#utilitynav {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	text-transform: uppercase;
	text-align: center;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ECE8E8;
	padding-top: 5px;
	margin-right: auto;
	margin-left: auto;
}
div#utilitynav a:link, div#utilitynav a:visited {
	font-size: 10px;
	text-decoration: none;
	font-weight: normal;
	color: #999999;
	text-align: center;
}
div#utilitynav a:hover {
	text-decoration: none;
	color: #269BD0;
}
div#contentbottom {
	clear: both;
	padding: 5px 0px 0px;
	width: 900px;
	background-image: url(images/footer.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 10px;
	margin-top: 0px;
	text-align: left;
}
div#footer {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	text-transform: capitalize;
	width: 900px;
	margin: 0px auto;
	padding: 0px;
	position: relative;
	text-align: center;
}
/* Styles the copyright div */
div#copyright {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	text-transform: capitalize;
	position: absolute;
	width: 900px;
	left: 10px;
	text-align: left;
}
div#nav {
	position: absolute;
	top: 70px;
	right: 2px;
	z-index: 10;
}

/* UL TAG */
div#nav ul {
	margin:0;
	padding:0;
	font-size:85%;
	list-style:none;
	text-transform:capitalize;
	background: #ffffff
} 

div#nav li {
	float:left;
	margin:0;
	padding:0;
	line-height:normal;
	text-indent:0;
	display: inline;
}

div#nav li a:link, div#nav li a:visited {
	width: auto;
	display:block;
	padding:7px 17px;
	color: #A19D9E;
	text-decoration:none;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #EDE8E5;
}
div#nav li a:hover {
	color: #FFFFFF;
	background-color: #B159D6;
	width: auto;
}
div#nav li a#current, div#nav li a#current:hover{
	color: #FFFFFF;
	background-color: #68B220;
	width: auto;
}
/* ----------------- DROP-DOWN NAVIGATION -------------------------*/
ul#nav li ul {
	position: absolute;
	top: 35px;
	left: 0;
	display: none;
	background: #FFFFFF left bottom;
	}
ul#nav li>ul {
	top: auto;
	left: auto;
}
/* Fix IE. Hide from IE Mac \*/
* html ul#nav li li { float: none; height: 1%; }
* html ul#nav li li a { height: 1%; }
/* End */
ul#nav li li {
	display: block;
	float: none;
}
ul#nav li:hover ul, ul#nav li.over ul {
	display: block;
	z-index: 2;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
ul#nav li ul li a, ul#nav li ul li a:link, ul#nav li ul li a:visited, ul#nav li ul li a:active {
	display: block;
	width: auto;
	padding: 7px 17px;
	color: #A19D9E;
	z-index: 2;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 1px;
	border-bottom-color: #EDE8E5;
}
ul#nav li ul li a:hover {
	width: auto;
	padding: 7px 17px;
	background: #B159D6;
	color: #ffffff;
	z-index: 2;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-width: 1px;
	border-bottom-color: #EDE8E5;
}

ul#list {
	font-size: 12px;
	padding: 0px;
	margin-left: 60px;
	line-height: 16px;
	margin-right: 60px;
	margin-bottom: 20px;
}
ul#list li {
	list-style-position: outside;
	line-height: 20px;
}

ul#price {
	font-size: 12px;
	line-height: 16px;
	padding: 20px;
}
ul#price li {
	line-height: 20px;
	padding: 0px;
	margin-left: 26px;
}
.name {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #269BD0;
}
.clear {
	clear: both;
}
div#pricebox {
	border: 1px solid #E1DEDE;
	width: 257px;
	float: left;
	padding: 5px;
	font-size: 12px;
	color: #4F4F4F;
	margin-bottom: 20px;
	margin-left: 10px;
}
.orangebg {
	background-color: #F36000;
}
div#pricebox p {
	padding: 5px;
}
h3 {
	font-size: 12px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	margin: 10px 10px 0px;
	text-transform: uppercase;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #E1DEDE;
}
.orange {
	color: #F36000;
}
.price {
	font-size: 24px;
}
.purplebg {
	background-color: #B159D6;
}
.purple {
	color: #B159D6;
}
.greenbg {
	background-color: #68B220;
}
.green {
	color: #68B220;
}
/* ----------------- 2 COLUMN FORM  ------------------- */
div#form {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
}
input {
	margin-bottom: 10px;
	width: 200px;
	color: #4F4F4F;
	font-family: Arial, Helvetica, sans-serif;
}
textarea {
	margin-bottom: 10px;
	width: 200px;
	height: 70px;
	color: #4F4F4F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
label {
	padding: 5px 20px 0 0;
	display: block;
	text-align: left;
	color: #4F4F4F;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
textarea#comments {
	width: 90%;
	color: #4F4F4F;
}
.rightform {
	float: left;
	margin-right: 10px;
}
h4 {
	font-size: 15px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 10px 20px;
	text-transform: capitalize;
	color: #f36000;
}
div#bigbox {
	border: 1px solid #E1DEDE;
	width: 398px;
	float: left;
	padding: 5px;
	font-size: 12px;
	color: #4F4F4F;
	margin-bottom: 20px;
	margin-left: 10px;
}
div#bigbox p {

	padding: 5px;
}
h2 a:link, h2 a:hover, h2 a:visited {
	color: #FFFFFF;
}
div#clear {
	clear: both;
	margin: 0px;
	padding: 0px;
}
.blue {
	color: #3BB1E4;
}
.bluebg {

	background-color: #3BB1E4;
}
.yellowbg {


	background-color: #FEAA43;
}
.yellow {

	color: #FEAA43;
}
blockquote {
	font-size: 12px;
	line-height: 16px;
	margin-right: 35px;
	margin-left: 35px;
	margin-bottom: 20px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
	font-style: italic;
	color: #4F4F4F;
}
