.companyName {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 48px;
	font-weight: 400;
}
.address {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: normal;
}
.addressBold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
}
.addressItalic {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: italic;
	line-height: normal;
}
a:link {
	color: #000066;
	text-decoration: underline;
}
a:visited {
	color: #000066;
	text-decoration: underline;
}
a:hover {
	color: #000099;
}
a:active {
	color: #000066;
	text-decoration: underline;
}
.slogan {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #000000;
	text-decoration: none;
}
.sloganBorder {
	background-color: #F4F4F4;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}
.paraHeading {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #000000;
}
.bolditalics {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
}
.border {
	border: 1px solid #000000;
}
a.nav:link {
	color: #000000;
	text-decoration: none;
	background-color: #FFFFFF;
	padding: 2px 0px;
	width: 150px;
	border: 1px none;
	font-weight: bold;



}
a.nav:visited {
	color: #000000;
	text-decoration: none;
	background-color: #FFFFFF;
	width: 150px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	border: 1px none #000000;
	font-weight: bold;


}
a.nav:hover {
	color: #FFFFFF;
	background-color: #000000;
	width: 150px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	border: none;
	font-weight: bold;




}
a.nav:active {
	color: #FFFFFF;
	text-decoration: none;
	width: 150px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	border: 1px none #FFFFFF;
	font-weight: bold;


}.couponBorder {
	border: medium dashed #000000;
}
.LeftBorder {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	border-top: 1px none #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;

} 

a.nounderline:link {
	color: #000066;
	text-decoration: none;
}
a.nounderline:visited {
	color: #000066;
	text-decoration: none;
}
a.nounderline:hover {
	color: #000099;
	text-decoration: underline;
}
a.nounderline:active {
	color: #000066;
	text-decoration: none;
}

/*--NAVIGATION BEGIN--*/

ul#topnav {

	margin: 0; padding: 0;
	float: left;
	width:750px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 2 em;
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
	background-color: #000000;

}

ul#topnav li {

	float: left;
	margin: 0; padding: 0;
	

}

ul#topnav li a {

	padding: 5px 26px;
	display: block;
	color: #f0f0f0;
	text-decoration: none;

}

ul#topnav li:hover { background: #67871d url(topnav_active.gif) repeat-x; }   /*--Change hover color in the javascript code--*/

/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/





ul#topnav li span {

	float: left;
	padding: 5px 0;
	position: absolute;
	left: 0; top:26px;
	display: none; /*--Hide by default--*/
	width: 650px;
	background: #67871d; /*--Change here the Submenu background color--*/
	color: #fff;
 	
	/*--Bottom right rounded corner--*/

	-moz-border-radius-bottomright: 5px;

	-khtml-border-radius-bottomright: 5px;

	-webkit-border-bottom-right-radius: 5px;

	/*--Bottom left rounded corner--*/

	-moz-border-radius-bottomleft: 5px;

	-khtml-border-radius-bottomleft: 5px;

	-webkit-border-bottom-left-radius: 5px;

}

ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/

ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/

ul#topnav li span a:hover {text-decoration: underline;
}

