/* =================== HTML Tags =======================*/
html {
	height:101%;   /* Trick to stop the site jiggeling*/
	background-position: top center;
}  /* Track changes to this one*/
/*
div.MotherDiv{
position: absolute;
height:100%;
width:100%;
text-align:center;
}*/
/* =================== Header Tags =======================*/

div.Parent_banner{
	width:100%;
	height:90px;
	background-color:transperant;
	margin-top:10px;
	/*padding-bottom:5px;*/
}

div.banner{
	position:relative;
	/*float:left; This makes the image disapear from teh background */ 
	height:90px;
	width:963px;  /*=* Width of site *=*/
	margin:0 auto;
}

img.logo{
	/* padding: 5px 5px 5px 5px; is not supported by IE 8 */
	position:absolute;
	top:0;
	left:0;
	margin: 5px 5px 5px 5px;
	border:0;
}

.contactUs{
	position:fixed; /* not supported by IE 6 and 7 */
	top:105px;
	right:0px;
	height:177px;
	width: 41px;
	background: url('../images/callusnow4.png');
	z-index:999;
	display:block;
}
a.contactUs a:hover{
	position:fixed; /* not supported by IE 6 and 7 */
	top:105px;
	right:0px;
	height:150px;
	width: 52px;
	background: url('../images/callusnow2.png');
	z-index:999;
	display:block;
}
/*
#bottomPremiumBanner {
	display:block;	
	position:fixed;
	bottom:0px;
	left:0px;
	width:100%;
	text-align:center;
	height:40px;
	z-index:999;
	background: transparent url('images/wdl_premium_btm_ad_bkg.gif') repeat-x;
	background-color: #fff;
	padding: 0 0 0 1px;
}
*/


/* ===================  Body Tags =======================*/
body {
	position:relative;
	margin:0 auto; 
	padding:0;
	text-align:center;
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	color: black;
	font-size: 12px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	width:100%;	
	background:#78d2c6 url(../images/home.jpg) top center repeat-x;
	    /*This tag might cause lots of problems, so make sure that you test it*/
	/*background-image: url('../images/misc/bg.gif'); */
	/*background: url('../images/header_bg1.jpg') no-repeat center top ;
	background-color:#99cccc;*/
	
}

/* This is the main container of all the div tags*/

div.wrapper {
	/*border: thick solid #1C4475;*/
	position: relative;
	width: 963px;		/*=* Width of site *=*/
	margin:0 auto;   /* This part is responsible for the beginning gap between the header and the body*/
	/*background-image: url('../images/pattern.jpg');
	background-position: center center;*/
	/*background: url('../images/misc/content-bg-alt.png') repeat-y;*/
	background-color: #FFF;
	overflow:hidden;   /* This item here causes scroll bars to pop up on the sides at times and in IE, however if removed no white bg is displayd in Firefox */
	border:1px solid #00CCFF;
	
}
/*==== this is the Div tag for the center of the body===*/
div.main{
	position:relative;
	float: left;
	width:700px;
	left: 5px;
	right: 5px;
	padding: 0px 0px 5px 5px;
	overflow:hidden;
	margin-top: 5px;

}
/* Theme settings*/  /*
div.top-alt{
	width: 963px;	
	margin:auto;
	background: url('../images/misc/content-top-bg-alt.png') no-repeat;
	height:16px;
}

div.bot-alt{
	width: 963px;	
	overflow:auto;
	background: url('../images/misc/content-bottom-bg-alt.png') no-repeat;
	height: 70px;
	margin: 0 auto;
}
*/

/* =================== Horizontal Menu =======================*/
.horizontalcssmenu ul{
	/* Positioning the menu in ther ight location*/
	position:absolute;
	bottom:0;
	right:0;
	font-size: 8px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display:inline;

}

/*Top level list items*/
.horizontalcssmenu ul li{
	position: relative;
	float: left;

}

/*Top level menu link items style*/
.horizontalcssmenu ul li a{
	display: block;
	width: 108px; /*Width of top level menu link items*/
	/*padding: 2px 8px;*/
	/*border: 1px solid #202020; */
	background: url('../images/topNav.png') no-repeat;
	text-decoration: none;
	/* background-color:#0099FF; */
	color: white;
	font: bold 14px Tahoma;
}
	
.horizontalcssmenu ul li a:hover{
/* border-bottom: 3px SOLID BLACK; */
	color:#FFFF99;

}

/* =================== Left Navigation bar =======================*/
div.leftSideBar{
	position: relative;
	float: left;
	margin-left:5px;
	margin-top:5px;
	width: 240px;  /*Total is 240 + 5 = 245px*/
	z-index:1;
}

/******************************************************/
.LeftNav ul{
	margin: 0;
	padding: 0;
	width: 100%; /* See leftSideBar size! */
	
	border-bottom: 1px solid #ccc;
	
	list-style-type: none;
	font: bold 10px;
	text-align:left;
}
 
.LeftNav ul li{
	position: relative;
}

/* Top level menu links style */
.LeftNav ul li a{
	padding: 6px;
	border-bottom: 1px solid #778;
	border-right: 1px solid #778;
	overflow: auto; /*force hasLayout in IE7 */
	
	display: block;
	color: black;
	text-decoration: none;
}

.LeftNav ul li a:link, .LeftNav ul li a:visited, .LeftNav ul li a:active{
	/*background-color: #86B2B2; /*background of tabs (default state)*/
	background-color:#C8E6BB;
}

.LeftNav ul li a:visited{
	color: black;
}

.LeftNav ul li a:hover{
	background-color: #3A4C4C;
	color:white;
}

/*Sub level menu items */
.LeftNav ul li ul{
	position: absolute;
	
	width: 170px; /*Sub Menu Items width */
	top: 0;
	
	visibility: hidden;
}

.LeftNav ul li.SelectedSubCatItem{
	width:100%;
	position: relative;
	visibility:visible;
	
}

.LeftNav ul li.SelectedSubCatItem a, .LeftNav ul li.SelectedSubCatItem a:active{
	margin-left:5px;	
	margin-right:5px;
	background-color:#9DAE8F;
}
.LeftNav ul li.SelectedSubCatItem a:hover{
	background-color:#3A4C4C;
}

.LeftNav ul li.CurrentSubCatItem a, .LeftNav ul li.CurrentSubCatItem a:active{
	margin-left:5px;	
	margin-right:5px;
	background-color:#3A4C4C;
	color:white;
}

.LeftNav a.subfolderstyle{
	background: url('../images/menuitem_submenuindicator.png') no-repeat 100% 50%;
}

 
/* Holly Hack for IE \*/
* html .LeftNav ul li { float: left; height: 1%; }
* html .LeftNav ul li a { height: 1%; }
/* End */


/* Special settings for the Drawings and Accessories menu*/
.LeftNav ul li.accDraw{
	padding: 6px;
	border-bottom: 1px solid #778;
	border-right: 1px solid #778;
	overflow: auto; /*force hasLayout in IE7 */
	
	display: block;
	color: white;
	text-decoration: none;
}

.LeftNav ul li.accDraw{
	background-color: #86B2B2; /*background of tabs (default state)*/
}

/*Sub level menu items */
.LeftNav ul li.accDraw ul{
	position: absolute;
	
	width: 170px; /*Sub Menu Items width */
	top: 0;
	
	visibility: hidden;
}




/* =================== Search Box =======================*/
#searchwrapper {
	width:200px;
	height:30px;
	background-image:url('../images/searchbox.png');
	background-repeat:no-repeat; /*important*/
	padding:0px;
	margin:0px;
	position:absolute; /*important*/
 	top: 0px;
	right: 0px;
}
 
/* This is for the actual text box */
.searchBox{
	border:0px; /*important*/
	background-color:transparent; /*important*/
	position:relative; /*important*/
	top:5px;
	left: -5px;
	width:170px;
	height:17px;
}

/* This is for the submit image/button */
.searchBoxSubmit {
	border:0px; /*important*/
	background-color:transparent; /*important*/
	position:absolute; /*important*/
	top:7px;
	right:8px;
}

/* =================== Main Page containers =======================*/
/* Main Product, at the centre of the page*/
div.MainProduct{
	position:relative;
	width: 950px;
	height: 200px;
	/*height: 150px; /* This is very important and needs to de set and determined*/
	/*float: ;*/
	
	text-align:center;
	background: url('../images/mainprodbg.jpg') top left;
	margin:5px 5px 0px 5px;
	border:1px solid #000;
}
 div.MPInner{
 	position: relative;
	margin:5px auto;
 	width:800px;
	height:180;
 }

.MainProduct img.mainProd{
	position:absolute;
	top: 0;
	right: 10px;
	height: 160px;
	width: auto;
	margin-top:5px;
	border:0px;
}


.MainProduct p{
	width: 500px;
	margin: 5px 5px 5px 5px;
	float: left;
}

.MainProduct h1{
	padding: 5px;
	font-size: 18px;
	float:left;
	font-family:Copperplate / Copperplate Gothic Light, sans-serif;
	width: 500px;
	text-transform:uppercase;
	text-align:center;
}

/* Featured Products Heading */
h1.FeaturedProducts{
	text-align:left;
	color:#666666;
	font-size:24px;
	border-bottom:2px solid #666666;
	margin-top:-5px;
}

/* Secondary Product*/
div.SecondaryProduct{
	margin-top: -15px;
	position:relative;
	float:left;
	text-align:center;
	width:33%;
	height:180px;
	overflow:hidden;
}

div.SPHeading{
	height:3em;
}

.SPBoxContents{

/*	background-color: #CDD4DE;
	background-image: url('../images/gradient.jpg');
	border: 1px solid #1C4475;
	
	background-color: #E7EAEF;  */
	
	border-top: none;
	padding: 5px;
	width: 100%;
}

/* Scrolling images*/
#marqueecontainer{
	position: relative;
	width: 100%; /*marquee width */
	height: 100px; /*marquee height */
	color:black;
	overflow: hidden;
	/*border: 1px solid green;*/
	text-align:left;
	margin-top:-15px;
	padding-top:0px;
}

#marqueecontainer img {
	border-width:1px;
	border-style:solid;
	border-bottom-color:#000000;
}


/* =================== PRODUCT PAGE: Display Containers =======================*/
/* This div ingulfs the entire product */
div.Product{
	position:relative;  /* Establishing the inner capsule*/
	float:left;

}

div.ProductDivide{
	width:50%;
	float:left;
}

div.PTopField{
	width:100%;
}

div.PImage{
	width:100%;
	text-align:center;
}

div.PImage {
}

div.PDescription{
	width:100%;
	text-align:left;
}

div.P2Description{
	width:100%;
	text-align:left;
}

div.PFeatures{
	width:100%;
	text-align:left;
}

div.PBenefits{
	width:100%;
	text-align:left;
}

div.PExtras{
	width:100%;
	text-align:left;
}

div.PSpecifications{
	width:100%;
	text-align:center;
	float:left;
	margin-top: 5px;
}

div.PWarranty{
	width:100%;
	text-align:center;
	float:left;
}


div.PEndField{
	width:100%;
	text-align:left;
	float:left;
}

div.PRelatedPhotos{
	width:100%;
	text-align:center;
	float:left;
}

p.Pheading{
	border-left: 10px solid #999999;
	padding-left:3px;
	margin-top: 5px;
	/*font-weight:bold;*/
}

/* =================== END of - Product display containers =======================*/


/* ===================  =======================*/
.blueHeading{
	font-size:16px;
	font-weight:bold;
	color:#0066CC;
}

.message{
	font-size:16px;
	font-weight:bold;
	color:#0066CC;
}

h3.caseStudy {
	margin: 0;
}


/* ===================  Table Header =======================*/
table.headerTable {
		background-image: url('../images/banner_gradient.jpg');
	/*background-repeat: no-repeat;
	background-position: top right;*/
}

.oddRow{
	background-color:#f0f0f0;  /*#BADCDD*/
	text-align:left;
}
.evenRow{
	background-color:#D4D4D4;   /*#DCF4FC*/
	text-align:left;
}

/* Text and back colour of accessories table header */
th.accessories_th {
	background-color:#4B4B4B;
	color:#FFFFFF;
}

/* Will allow for bordered printer version */
table.specsTablePrint{
	border: 1px solid black;
}


/* Search table */

tr.tableHeader {
	background-color: #c0c0c0;
}

tr.searchResultRow {
	background-color: #f0f0f0;
}

/* ----- */

/********************* HEADER STYLES **************************/
#success_msg{
	width: 400px;
	height: 70px;
	text-align:center;
	background-color:#E0E0E0;
}

p.product_site_tree{
	text-align:left;
	color:#999999;
	font-size:11px;
	margin-top:0px; /* Necessary, otherwise it automatically gives the p tag a 10px margin.*/
	float:left;
	margin-bottom:0px;
}
p.product_site_tree a{
	color:#999999;
}

p{
width:100%;
}

/* This is the style for the product title at the product dispaly page*/
.accessories_subcat_heading{
	text-align:Left;
	margin-top:0px;
	font-size:25px;
	font-weight:bold;
	color:#0066CC;
}

.productTitle{
	text-align:Left;
	margin-top:0px;
	font-size:25px;
	font-weight:bold;
	color:#0066CC;
}

.subheading{
	font-size:14px;
	font-weight:bold;
}

/* tdSpecial is for special table rows; eg "New Products" table head */
.tdSpecial{
	border-bottom: 2px solid #0066CC;
	border-top: 0px solid green;
	border-left: 0px solid green;
	border-right: 0px solid green;
}

.specialLink {
	color: #0066cc;
	font-size: 12px;
	text-decoration: none;
}

/* Printer icon and settings */
div.printerIcon{
	position:absolute;
	top:0px;
	right:0px;
	margin-top: 5px;
}

/* =================== Footer =======================*/
div.footer{
	position:relative;
	float:left;
	margin:0px 0px; 
	padding:0px;
	text-align:center;
	color: black;
	font-size: 10px;
	text-decoration: none;
	margin: 3px;
	width:100%;
}



/* ===================== PRODUCTS PAGE: Display =============================*/
/* This is the product display area */
div.Products_Display{
	position:relative;
	float:left;
	width:100%;	
	overflow:hidden;
}

div.Products_Display_Cell{
	float:left;
	position:relative;
	width: 33%;
	height: 180px;
	overflow:hidden;
	border-bottom: 1px solid #CCCCCC;
	/*background-image: url('../images/cell_bg.png'); */
	background-repeat: no-repeat;
}

div.Product_Cell_Image{
	height:128px;
	margin-top:7px;

}

/** The Product's image will never go beyond 125px width and height**/
div.Product_Display_Cell_Name{
	margin-top:5px;
	height:30px;
	overflow:hidden;
	width:100%;

}

.Product_Display_Cell_Name a{
	top:0px;
	text-decoration:none;
	color:#666666;

}

div#Drawings{
	margin-top:25px;
}

div.LeftAlign{
	text-align:left;
}

/* These are the minimum fonts that were cut from the YUI Menu CSS*/ 
body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
select,input,button,textarea,button{font:99% arial,helvetica,clean,sans-serif;}
table{font-size:inherit;font:100%;}
pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}

