@charset "utf-8";
body  {
	font: 12px Arial, Helvetica, sans-serif;
	background: #CFCFCF;
	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: #333333;
}
td {
	font: 12px Arial, Helvetica, sans-serif;
}
th {
	font: 12px Arial, Helvetica, sans-serif, bold;
}
a, a:link, a:active, a:visited {
	text-decoration:none;
	color: #003366;
}
a:hover {
	text-decoration:underline;
}


#container {
	width: 970px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	padding: 0px 25px 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. */
	height: 90px;
	background-color: #104068;
	background-image: url(../images/headBlue.jpg);
	background-repeat: repeat-x;
	color: #FFFFFF;
} 
#header h1 {
	margin: 0; /* 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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainNav {
	height: 24px;
	background-image: url(../images/headOrange.gif);
	background-color: #F9A61C;
	background-repeat: repeat-x;
	padding: 0px 25px 0px 20px;
	color: #003366;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 23px;
}
#subNav {
	height: 20px;
	background-color: #B0C2D6;
	padding: 0px 25px 0px 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #003366;
	line-height: 19px;
}
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 0px 15px 15px;
	font-size: 12px;
}
#mainContent {
	/* margin: 0px 0px 0px 210px;  the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends. */
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/* CF NEW */
	margin: 0px;
	float: left;
	width:720px;
} 
#footer {
	height: 20px;
	background-color: #FFFFFF;
	background-image: url(../images/footerBar.gif);
	background-repeat: repeat-x;
	background-position: top;
	padding-top: 20px;
	padding-right: 25px;
	padding-bottom: 0px;
	padding-left: 25px;
	font-size: 12px;
	color: #003366;
}



.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;
}
.clear {
    clear:both;
}

#copyright {
	float: right;
	width: 400px;
	text-align: right;
}
#sidebar ul.main {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 17px;
	list-style-image: url(../images/navPlus.gif);
	list-style-position: outside;
	list-style-type: none;
}
#sidebar li.active {
	list-style-position: outside;
	list-style-image: url(../images/navMinus.gif);
	list-style-type: none;
}
#sidebar .active .sub li {
	background-color:#c2cbd7;
	list-style-image: none;
	list-style-type: none;
	padding-left: 2px;
	margin-top: 2px;
	font-size: 11px;
	padding-top: 1px;
	padding-bottom: 1px;
}
#sidebar .active .sub li.activesubcat{
	background-color:#EFEFEF;
}
#sidebar .main .active .sub {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: -2px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebar .main li {
	margin-bottom: 3px;
}
#sidebar .extraLink {
	margin-left: 17px;
}
#mainNav .active {
	background-color: #ffcc88;
}
#mainNav a {
	color:#003366;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 1px;
	padding-bottom: 1px;
}
#mainNav a:hover {
	text-decoration:none;
	background-color: #ffcc88;
}
#subNav .active {
	background-color: #e4e8f0;
}
#subNav a {
	color:#003366;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 1px;
	padding-bottom: 1px;
}
#subNav a:hover {
	text-decoration:none;
	background-color: #e4e8f0;
}
#byline {
	font-size:11px;
	line-height: 18px;
	color: #DDDDDD;
}

#loginTable td{
	font-size: 10px;
	color:#AAAAAA;
}
#loginTable h3 {
	font-size: 12px;
	font-weight: bold;
	color: #FAA71C;
	margin: 0px;
	padding: 0px;
}
#loginTable a {
	color: #FAA71C;
	font-size: 9px;
}
.inputText {
	font-size: 12px;
	color: #000000;
	/*height: 20px;*/
	width: 200px;
}
.textareaText {
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	color: #000000;
	width: 100px;
}
.advancedInputText {
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	color: #000000;
	/*height: 20px;*/
	width: 300px;
}
.searchBox {
	/*border: 2px dashed #115c85;*/
	padding: 0px 8px;
	font-size: 10px;
	line-height: 15px;
	color: #003366;
	background-color: #e4e8f0;
	width: 145px;
	margin: 0px;
}
.searchBox h3 {
	margin: 0px;
	padding: 0px;
	font-size: 13px;
	font-weight: bold;
}
.searchBox p {
	padding: 0px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.searchBox td {
	font-size: 10px;
	line-height: 15px;
	color: #003366;
}
.dropdownText {
	font-size: 12px;
	color: #000000;
}
#searchCriteria {
	font-size: 9px;
	margin-top: 10px;
}
form {
	margin: 0;
}
#searchCriteria td {
	font-size: 10px;
	color: #003366;
}
h1 {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	color: #003366;
	text-transform: uppercase;
	font-weight: bold;
}
h2 {
	font-size: 14px;
	color: #FAA71C;
	font-weight: bold;
	text-transform: uppercase;
	background-image: url(../images/arrow.gif);
	background-repeat: no-repeat;
	overflow: visible;
	padding-left: 16px;
	margin-left: -16px;
	margin-bottom:5px;
}
h3 {
	font-size: 12px;
}
#breadcrumb {
	clear: both;
	margin-bottom: 15px;
	color: #003366;
}
.news {
	margin-bottom: 0px;
	padding-bottom: 0px;
}
#mainContent h3 {
	text-transform: uppercase;
	color: #003366;
	margin-bottom: 0px;
	margin-top: 3px;
	padding-bottom: 0px;
	font-size: 12px;
}
.productCode {
	color: #003366;
	font-size: 10px;
}
.productImage {
	width:160px;
	height: 120px;
	overflow: hidden;
	margin: 5px;
	text-align: center;
	/*padding: 15px 5px 5px 5px;*/
}

.icons
{
	margin: 0px 10px 10px 0px;
	padding: 0px;
	height: 20px;
	width: 145px;
	/*position: absolute;
	right: 0px;
	top: 200px;*/
}
.icons2
{
	margin: 0;
	padding: 0px;
	height: 20px;
	width: 80px;
	/*position: absolute;
	right: 0px;
	top: 200px;*/
}
.icons ul, .icons2 ul
{
	border: 0px;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}
.icons ul li, .icons2 ul li
{
	display: block;
	float: right;
	text-align: center;
	padding: 0px;
	margin: 0px 0px 0px 2px;
}
.icons ul li a, .icons2 ul li a
{
	width: 21px;
	height: 21px;
	padding: 0px;
	margin: 0px;
	text-decoration: none;
	display: block;
	text-align: center;
}
.icons .info, .icons2 .info
{
	background-image: url(../images/iconInfo.gif);
	background-repeat: no-repeat;
}
.icons .cart, .icons2 .cart
{
	background-image: url(../images/iconCart.gif);
	background-repeat: no-repeat;
}
.icons .wishlist, .icons2 .wishlist
{
	background-image: url(../images/iconWishlist.gif);
	background-repeat: no-repeat;
}
.icons .delete, .icons2 .delete
{
	background-image: url(../images/iconDelete.gif);
	background-repeat: no-repeat;
}
.icons .update, .icons2 .update
{
	width: 42px;
	background-image: url(../images/iconUPDATE.gif);
	background-repeat: no-repeat;
}
.icons ul li a:hover, .icons2 ul li a:hover
{
	background-position: 0px -21px;
}
.iconupdate, .iconupdate li a
{
	width: 42px;
}
/*CF*/
.buttons
{
	margin: 10px auto;
	padding: 0px;
	height: 21px;
	width: 306px;
}
.buttons ul
{
	border: 0px;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
}
.buttons ul li
{
	display: block;
	float: left;
	text-align: center;
	padding: 0px;
	margin: 0px 1px 0px 1px;
}
.buttons ul li a
{
	width: 100px;
	height: 21px;
	padding: 0px;
	margin: 0px;
	text-decoration: none;
	display: block;
	text-align: center;
}
.buttons .image
{
	background-image: url(../images/buttonImage.gif);
	background-repeat: no-repeat;
}
.buttons .cart
{
	background-image: url(../images/buttonCart.gif);
	background-repeat: no-repeat;
}
.buttons .wishlist
{
	background-image: url(../images/buttonWishlist.gif);
	background-repeat: no-repeat;
}
.buttons ul li a:hover
{
	background-position: 0px -21px;
}

.rewardList {
	/*width: 160px;*/
	height: 80px;
	overflow: hidden;
	background-image: url(../images/rewardBoxTop.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 5px 0px 5px;
}
.PBList {
	/*width: 160px;*/
	height: 50px;
	overflow: hidden;
	background-image: url(../images/rewardBoxTop.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 5px 0px 5px;
}
.rewardTop {
	background-image: url(../images/rewardBoxBot.gif);
	background-repeat: repeat-y;
	background-position: left bottom;
	height: 230px;
}
.rewardTD {
	background-image: url(../images/rewardBoxBot.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.superSpecial {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	color: #FAA71C;
}
.oldPrice {
	text-decoration: line-through;
}
.specialList {
	/*width: 160px;*/
	height: 80px;
	overflow: hidden;
	background-image: url(../images/specialBoxTop.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px 5px 0px 5px;
}
.specialTop {
	background-image: url(../images/specialBoxBot.gif);
	background-repeat: repeat-y;
	background-position: left bottom;
	height: 230px;
}
.specialTD {
	background-image: url(../images/specialBoxBot.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.detailImage {
	width: 300px;
	background-image: url(../images/largeBoxTop.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 10px;
	padding-right: 5px;
	padding-left: 5px;
	text-align: center;
	margin-top: 13px;
}
.detailImageBot {
	background-image: url(../images/largeBoxBot.gif);
	background-repeat: no-repeat;
	background-position: center top;
	margin: auto;
	height: 10px;
	width: 310px;
}
.specialImage {
	width: 300px;
	background-image: url(../images/largeSpecialBoxTop.gif);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 10px;
	padding-right: 5px;
	padding-left: 5px;
	text-align: center;
	margin-top: 13px;
}
.specialImageBot {
	background-image: url(../images/largeSpecialBoxBot.gif);
	background-repeat: no-repeat;
	background-position: center top;
	margin: auto;
	height: 10px;
	width: 310px;
}
.reward {
	/*position: relative;*/
}

.pointsBalance {
	font-size: 11px;
}
#cartHeader td{
	font-weight:bold;
	color: #FFFFFF;
	background: #003366;
}
#loginTable a {
	font-size: 10px;
	color: #FFFFFF;
	text-decoration: none;
}
#loginTable a:hover {
	color: #FAA71C;
}
h5 {
	font-size: 14px;
	font-weight: bold;
	color: #FAA71C;
}
.pbTop {
	height: 180px;
	background-image: url(../images/rewardBoxBot.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.pbTop .icons {
	top: 150px;
}
.pagingnumber{
	width: 100%;
	text-align: right;
}
.greyBorder {
	border:1px solid #CCCCCC;
}
#homePage {
	width: 700px;
	margin-right: 10px;
	margin-left: 10px;
}
.Vline {
	background-image: url(../images/1pxGreyV.gif);
	background-repeat: repeat-y;
	background-position: center;
}

.formvalidationerror {

	/*border: 1px #FF0000 solid;*/
}
.error{
color:#CC0000;
}
#footerlinks {
	margin: 10px;
	background-color: #FFFFFF;
}
.rewardPoints {
	font-size: 10px;
}
#fixedtipdiv{
position:absolute;
padding: 2px;
border:1px solid #999999;
font:normal 10px Verdana;
color:#666666;
/*line-height:18px;*/
z-index:100;
}
h3.sidebar {
	font-size: 13px;
	color: #003381;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 8px;
}
#keywords, #accountnumber, #accountcode, #datefrom, #dateto {
	width: 100px;
}

/* Copyright 2006 Joost de Valk */
a img {
	border: 0;
}
table.sortable th {
	border-width: 1px 0px 1px 0px;
	font-weight: bold;
}
 
table.sortable tr.odd td {
	background-color: #fff;
}
table.sortable tr.even td {
	background-color: #ddd;
}


.contact_table td {
    background-color: #DDD; font-weight: 700;
}
.contact_table_void td {
    background-color: #FFF; font-weight: normal;
}
