/* master . css */
/* This is the master Cascading Style Sheet that controls the appearance of text on web pages . 
In the HEAD element of each document , insert a LINK tag and set the attributes for it as follows : 
< LINK REL="stylesheet" HREF=" [ relative path ] / master . css" > */
/* To set text attributes in an HTML source file , use this syntax : < div class=classname > 
Your Text Here < / div > where "classname" is a class name chosen from those below . 
Class names begin with a period . Type them all lower-case as shown , but omit the period in 
the HTML . */

 
/* This is the syntax for a comment within the Cascading Style Sheet itself. */
/* the HTML comment tag hides class code from style-impaired browsers */
.h24 /* 24 point sans-serif, bold */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 24pt;
}

.h18 /* 18 point sans-serif, bold */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 18pt;
}

.h2 /* 14 point sans-serif, bold */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;

	
}

.h2white /* 14 point sans-serif, bold, WHITE */ {
	color: #ffffff;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 14pt;
}

.h3 /* 12 point sans-serif, bold */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
}

.h3white /* 12 point sans-serif, bold */ {
	color: white;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
	background-color: #535e5d;
}

.h3c /* 12 point sans-serif, bold, CUSTOM COLOR */ {
	color: #b90000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 12pt;
}

.h4c /* 12 point sans-serif, bold, CUSTOM COLOR */ {
	color: #b90000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
}

.h4c_red /* 12 point sans-serif, bold, RED */ {
	color: red;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
}

.body /* 10 point sans-serif */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-size: 10pt;
}

A.body:link {
	font-weight: bold;
	text-decoration: underline;
}

A.body:visited {
	font-weight: bold;
	text-decoration: underline;
	color: grey;
}

A.body:hover {
	color: #d10019;
	text-decoration: none;
}

.bodyred /* 10 point sans-serif RED */ {
	color: #ff0000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
}

.bodygrey /* 10 point sans-serif RED */ {
	color: #999999;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
}

.bodyredbold /* 10 point sans-serif RED */ {
	color: #ff0000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
}

.bodyreditalic /* 10 point sans-serif RED */ {
	color: red;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: italic;
	text-decoration: none;
	font-size: 10pt;
}

.bodyitalic /* 10 point sans-serif */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: italic;
	text-decoration: none;
	font-size: 10pt;
}

.bodybold /* 10 point sans-serif, bold */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 10pt;
}
A.bodybold:link {
	text-decoration: underline;
}
.bodyboldunderline /* 10 point sans-serif, bold */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: underline;
	font-size: 10pt;
}

.bodyboldcolor /* 10 point sans-serif, bold, CUSTOM COLOR */ {
	color: #003399; /* indigo blue */
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 10pt;
}

.bodybolditalic /* 10 point sans-serif BOLD ITALIC*/ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: italic;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
}

.bodysmall /* 8 point sans-serif */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 8pt;
}
A.bodysmall:link {
	font-weight: bold;
	text-decoration: underline;
}

A.bodysmall:visited {
	font-weight: bold;
	text-decoration: underline;
	color: grey;
}
A.bodysmall:hover {
	font-weight: bold;
	text-decoration: underline;
	color: #d10019;
}
.bodysmallitalic /* 8 point sans-serif */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: italic;
	text-decoration: none;
	font-weight: normal;
	font-size: 8pt;
}

.bodysmallbold /* 8 point sans-serif */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 8pt;
}

.bodysmallwhite /* 8 point sans-serif WHITE */ {
	color: white;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 8pt;
}

.body6white /* 6 point sans-serif WHITE */ {
	color: white;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: normal;
	font-size: 6pt;
}

.bodysmallbold /* 8 point sans-serif BOLD */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 8pt;
}

/* new 9 mai 2006, hob start */
.bodysmallfooter /* 10 point sans-serif BOLD new from hob*/ {
	color: #999999;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	line-height: 14px;
	font-size: 10px;
}

A {
	color: #535e5d;
	text-decoration: none;
}

A:hover {
	color: #d10019;
	text-decoration: none;
}

A.bodysmallfooter:link {
	color: #999999;
	text-decoration: none;
}

A.bodysmallfooter:hover {
	color: #333333;
	text-decoration: none;
}

/* new 9 mai 2006, hob end */
/* new 11 mai 2006, hob start */
.bodysmallfooter01 /* 10 point sans-serif BOLD new from hob*/ {
	color: #535e5d;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	line-height: 10px;
	font-size: 10px;
}

A.bodysmallfooter01:link {
	color: #535e5d;
	text-decoration: none;
}

A.bodysmallfooter01:hover {
	color: #d10019;
	text-decoration: none;
}

/* new 11 mai 2006, hob end */
/* new 11 may 2006, hob start */
.linknavbarleft /* 10 point sans-serif new from hob*/ {
	color: #535e5d;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	line-height: 10px;
	font-size: 12px;
}

A.linknavbarleft:link {
	color: #535e5d;
	text-decoration: none;
}

A.linknavbarleft:visited {
	color: #535e5d;
	text-decoration: none;
}

A.linknavbarleft:hover {
	color: #d10019;
	text-decoration: none;
}

/* new 11 may 2006, hob end */
.tablabel /* 6 point sans-serif BOLD */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-weight: bold;
	font-size: 7pt;
}

.table /* 10 point sans-serif: use for text inside table cells other than header row */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
}

.tablered /* 10 point sans-serif: use for text inside table cells other than header row */ {
	color: red;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
}

.tablebold /* 10 point sans-serif: use for text inside table cells other than header row */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
}

.tableheader10white /* 10 point sans-serif: use for text inside table header cells */ {
	color: #ffffff;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
	background-color: #535e5d;
}
.tableheader8white /* 8 point sans-serif: use for text inside table header cells */ {
	color: #ffffff;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 8pt;
	background-color: #535e5d;
}

.labelc /* 10 point sans-serif, bold, CUSTOM COLOR - use for labels above form fields */ {
	color: blue;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 10pt;
}

.f1 /* use for 8 point sans-serif RED footer text */ {
	color: red;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 8pt;
}

.bodysplash {
	background-color: #e2e2e2;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	scrollbar-base-color: #ffffff;
	scrollbar-face-color: #cccccc;
	scrollbar-highlight-color: #cccccc;
	scrollbar-3dlight-color: #ffffff;
	scrollbar-darkshadow-color: #ffffff;
	scrollbar-shadow-color: #ffffff;
	scrollbar-arrow-color: #ffffff;
	scrollbar-track-color: #ffffff;
}

.select {
	font-family: arial, helvetica, sans-serif;
	font-size: 11px;
	line-height: 10px;
	color: #333333;
	padding: 2px;
	height: 18px;
	width: 190px;
	border: 1px solid #333333;
	background-color: #ffffff;
}

.loginfield {
	font-family: arial, helvetica, sans-serif;
	font-size: 11px;
	line-height: 10px;
	color: #333333;
	padding: 2px;
	height: 18px;
	width: 95px;
	border: 1px solid #333333;
	background-color: #ffffff;
}

.grey {
	font-family: arial, helvetica, sans-serif;
	font-size: 10px;
	color: #999999;
}

A.grey:link {
	color: #999999;
	text-decoration: none;
}

A.grey:active {
	color: #999999;
	text-decoration: none;
}

A.grey:visited {
	color: #999999;
	text-decoration: none;
}

A.grey:hover {
	color: #000091;
	text-decoration: none;
}

.copyright {
	font-family: arial, helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
}

.logarea {
	font-family: arial, helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}

A.logarea:link {
	color: #333333;
	text-decoration: none;
}

A.logarea:active {
	color: #333333;
	text-decoration: none;
}

A.logarea:visited {
	color: #333333;
	text-decoration: none;
}

A.logarea:hover {
	color: #d10019;
	text-decoration: none;
}

FORM {
	margin-top: 0;
	margin-bottom: 0;
}

.errorInputReadOnly {
	background-color: #e8e8e8;
	border-style: none;
	color: red
}

.selectNoFont {
	line-height: 10px;
	color: #333333;
	padding: 2px;
	height: 24px;
	width: 250px;
	border: 1px solid #333333;
	background-color: #ffffff;
}

.selectNoFont325 {
	line-height: 10px;
	color: #333333;
	padding: 2px;
	height: 24px;
	width: 325px;
	border: 1px solid #333333;
	background-color: #ffffff;
	vertical-align: 0px;
	letter-spacing: 0px;
	text-indent: 0px;
	word-spacing: 0px;
}

.inputReadOnly {
	background-color: #e8e8e8;
	border-style: none
}

.bgLtBlue /*   */ {
	background-color: #c7daf1;
}

.tableRentNav {
	border-color: #c7daf1;
	border-width: 2px;
	border-style: solid
}

.quantity {
	background: #ffffff;
	border: 1px solid #666666;
	color: #000000;
	font: normal normal normal 12px arial, helvetica, sans-serif;
	height: 18px;
	width: 28px;
	text-align: right;
}

.cellTopBot {
	padding-top: 3px;
	padding-bottom: 3px
}

.cellTopLtBlue {
	border-top-color: #c7daf1;
	border-top-width: 2px;
	border-top-style: solid
}

.subrent {
	font-family: arial, helvetica, sans-serif;
	font-size: 12px;
	color: #535e5d;
	line-height: 18px;
	text-decoration: none;
	font-style: normal;
	font-weight: normal;
	text-transform: none;
	font-variant: normal
}

A.subrent:link {
	color: #535e5d;
	text-decoration: none
}

/*a.subrent:active { color:#000000; text-decoration: none; font-weight: bold     }*/
A.subrent:visited {
	color: #535e5d;
	text-decoration: none
}

A.subrent:hover {
	color: #666699;
	text-decoration: none
}

.unOrderedList1 {
	padding: 0px;
	margin-left: 17px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
	list-style-image: url("../media/listdot.gif")
}

.bodyredsmallboldunderln /* 10 point sans-serif RED */ {
	color: #ff0000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: underline;
	font-size: 8pt;
	font-weight: bold;
}

.bodysmallred /* 8 point sans-serif RED */ {
	color: #ff0000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-size: 8pt;
}

.bodysmallredbold /* 8 point sans-serif RED */ {
	color: #ff0000;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-size: 8pt;
	font-weight: bold;
}

.eWarrantyTD8 /* 8 point sans-serif: */ {
	color: #333333;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
	font-size: 8pt;
	background-color: #ebebeb;
	height: 20
}

.bodygrey /* 10 point sans-serif */ {
	color: #999999;
	font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif;
	font-style: normal;
	text-decoration: none;
	font-size: 10pt;
}

.country {
	background: #ffffff;
	border: 1px solid #535e5d;
	color: #333333;
	font: normal normal normal 11px arial, helvetica, sans-serif;
	height: 18px;
	width: 210px;
}

OPTGROUP {
	font-family: arial, helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	font-weight: bold;
	font-style: normal;
	background-color: #ffdc2d;
	line-height: 18px;
}

OPTGROUP OPTION {
	font-family: arial, helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	font-weight: normal;
	font-style: normal;
	background-color: #ffffff;
	line-height: 18px;
}


.subnav02 {font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif; font-size:12px; font-weight:normal; color:333333; background-color:#e2e2e2; padding-top:4px; padding-bottom:4px;  margin: 0px;}
a.subnav02:link { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; }
a.subnav02:visited { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; }
a.subnav02:active { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; background-color:#ffdc2d;}
a.subnav02:hover { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; color:#d10019;}

.subnav02select {font-family: arial, helvetica, verdana, tahoma, swiss, sans-serif; font-size:12px; font-weight:bold; color:333333; background-color:#ffdc2d; padding-top:4px; padding-bottom:4px; margin: 0px;}
a.subnav02select:link { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; }
a.subnav02select:visited { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; }
a.subnav02select:active { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; background-color:#ffdc2d;}
a.subnav02select:hover { padding-left:10px; padding-right:10px; border-right:#ffffff solid 1px; color:#333333;}

ul { list-style-position: outside; padding-left:0px; padding-top:0px; margin-left:16px; margin-top:0px; }
li { list-style-image: url("/media/listdot.gif"); font-family: arial, helvetica, sans-serif; font-size: 12px; color: #333333; line-height: 140%; }

/*.quickbox-cart-entry { vertical-align:middle; width:400px; height:26px; background-image:url("/media/wcico0001g00gnxx.gif"); background-repeat:no-repeat; Add to shopping basket }
.quickbox-cart-entry { vertical-align:middle; width:400px; height:26px; background-image:url(/media/WNM_quick-button_tocart2-en.gif); background-repeat:no-repeat; }
.quicktext-cart { font-family:Arial, Helvetica, sans-serif;	font-size:12px; text-align:left; }
.quick-entry-amount { width:60px; height:20px; font-family:Arial, Helvetica, sans-serif; font-size:12px; text-align:center; }
*/
.pdflink { font-family: arial, helvetica, sans-serif; font-size: 12px; color: #333333; margin-bottom:6px; margin-top:6px;}
a.pdflink:link { color:#333333; text-decoration: underline;  padding-left: 26px; display:block; background: transparent url("/media/wcico0035g00nnxx.gif") no-repeat; line-height: 140%; }
a.pdflink:active { color:#333333; text-decoration: underline;  padding-left: 26px; display:block; background: transparent url("/media/wcico0035g00nnxx.gif") no-repeat; line-height: 140%; }
a.pdflink:visited { color:#535e5d; text-decoration: underline;  padding-left: 26px; display:block; background: transparent url("/media/wcico0035g00nnxx.gif") no-repeat; line-height: 140%; }
a.pdflink:hover { color:#d10019; text-decoration: underline;  padding-left: 26px; display:block; background: transparent url("/media/wcico0035g00nnxx.gif") no-repeat; line-height: 140%; }

.pdflinkgrey { font-family: Arial, Helvetica, sans-serif; color:#535E5D; font-size: 12px; color: #333333; padding-bottom:2px; padding-top:2px; display:block; background: transparent url(/media/wcico0035g00nnxx.gif) no-repeat; line-height: 140%; padding-left: 26px; }
a.pdflinkgrey:link { text-decoration: underline; background-color: #F0F0F0; }
a.pdflinkgrey:active { text-decoration: underline; background-color: #F0F0F0; }
a.pdflinkgrey:visited { color:#535e5d; text-decoration: underline; background-color: #F0F0F0; }
a.pdflinkgrey:hover { color:#D10019; text-decoration: underline; background-color: #E2E2E2;}

.pdflinkwht { font-family: Arial, Helvetica, sans-serif; color:#535E5D; font-size: 12px; color: #333333; padding-bottom:2px; padding-top:2px; display:block; background: transparent url(/media/wcico0035g00nnxx.gif) no-repeat; line-height: 140%; padding-left: 26px; }
a.pdflinkwht:link { text-decoration: underline; background-color: #FFFFFF; }
a.pdflinkwht:active { text-decoration: underline; background-color: #FFFFFF; }
a.pdflinkwht:visited {  color:#535e5d; text-decoration: underline; background-color: #FFFFFF; }
a.pdflinkwht:hover { color:#D10019; text-decoration: underline; background-color: #E2E2E2;}

 