/* CSS Document */

/*****************  Basic HTML Styles & CSS hacks *****************/

/* ZERO element margins, padding, and border */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, li, dl, dt, dd, td, tr, th, form, fieldset, iframe, img, a {
     margin: 0;
     padding: 0;
     border: 0;
}

body {
	background-image: url(../Images/BG_gradient.png);
	background-repeat:repeat-x;
	background-attachment: fixed;
	background-color: #999999;
	/* Creates a layout that centers in the browser no matter what size window the visitor is using. */
	min-width: 900px; /* Add your width and a measurement, such as pixels. */
    text-align: center;
}

/*****************  END Basic HTML Styles & CSS hacks ***************** /

/*****************  Page Positioning Starts Here *****************/


#wrapper {
     width: 900px;
	 height: auto;
     margin: 0 auto;
     text-align: center;
	 background-color:#FFFFFF;
	 z-index: 0;
}
 
/*** header ***/

#header {
	position: absolute;
 	width: 900px;
	height: 75px;
	background-image: url(../Images/70per.png);
	background-repeat: repeat;
	padding-bottom: 10px;
	border-bottom: #ffffff solid 2px;
	z-index: 1;
}

#headerLogo {
	position:absolute;
	top: 25px;
	left: 10px;
	z-index: 1;
	background-image: url(../Images/CS_B_Logo.png);
	height: 52px;
	width: 250px;
}

#search {
	position: absolute;
	top: 45px;
	left: 595px;
	width: 295px;
	height: 30px;
	padding: 10px 0px 0px 10px;
	z-index: 1;
	text-align: left;
	background-color: #FFFFFF;
}

.headerSearch {
	border: #000000 solid 1px;
	background-color: #CCCCCC;
	text-align: right;
	color: #333333;
	font:Arial, Helvetica, sans-serif;
	font-size: 18px;
}

#peel {
	position:absolute; 
	right:0; top:0; 
	width:600px; 
	height:600px; 
	z-index:1000;
}

/*** content area ***/


#flashElement {
	width: 900px;
	height: 350px;
	padding-bottom: 10px;
	border-bottom: #666666 solid 2px;
	margin-bottom: 10px;
	z-index: 0;
}

/*** columns ***/

#left2column{
	float: left;
	width: 200px; /* 2px allowance for right borders if desired */
	height: auto;
	text-align: left;
	
}


#right {
	float: right;
	width: 680px;
	padding: 0px 10px 10px 10px;
	text-align: left;
}


/*** column extra styles ***/


/*** footer ***/

#footer {
	width: 900px;
	height: 100px;
	background-color: #000000;
	text-align: center;
	color:#ffffff;
	padding: 6px 0px 0px 0px;
	clear: both;
}

/*** Float and Clear Classes ***/

.floatRight {
	float: right;
}

.floatLeft {
	float: left;
}

.clearBoth {
	clear: both;
}


/*****************  End Page Positioning *****************/


/*****************  Nagavation Styles & Positioning Start Here *****************/

/*** topNav Styles ***/

#topNav {
	position: absolute;
	top: 97px;
	left: 250px;
	width: 500px;
	height: 23px;
	background-color: #FFFFCC;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
	
#topNav ul { /* all lists */
	padding: 0px;
	margin: 0px;
	list-style: none;
	list-style-type: none;
}

#topNav li { /* all list items */
	float: left;
	width: 121px; /* width needed or else Opera goes nuts */
	height: 21px;
}

.topNavliBorder {
	border-left: 2px solid #ffffcc;
}

#topNav a {
	display: block;
	width: 111px;
	height: 19px; /* a.topNav height + a.topNav padding-top must = hight set in #topNav */
	padding-top: 4px; /* vertical position of link names */
	padding-left: 10px;
	font-size: 12px;
	color: #0063a6;
	text-decoration: none;
	font-weight: bold;
}

#topNav a:hover {
	width: 111px;
	padding-left: 10px;
	background-color:#ffcb05;	

}

#topNav a:visited {
	font-size: 12px;
	color: #0063a6;
	text-decoration: none;
	font-weight: bold;
}

#topNav li ul { /* second-level lists */
	position: absolute;
	background-color: #FFFFCC;
	width: 121px;
	border-right: 2px solid #0063a6;
	border-bottom: 2px solid #0063a6;
	border-left: 2px solid #0063a6;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#topNav li:hover ul, #topNav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	width: 121px;
}

/***leftNav Styles ***/

#leftNav {
	width: 180px;
	height: 454px;
	padding: 0px 10px 10px 10px;
	float: left;
}

#leftNav ul {
	width: 180px; /* Stops list wrap, set to total width of element */
	font-size: 12px;
	font-weight: bold;
	position: relative;
}

.leftNavHeader {
	list-style: none; /* no bullets */
	display: block;
	height: 18px;
	width: 180px;
	color: #000000;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin: 0;
	background-color: #fff;
}

#leftNav li {
	list-style: none; /* no bullets */
	width: 180px;
	border-bottom: #333333 solid 1px;
}

#leftNav a {
	display: block; /* set whole tab clickable for ie */
	width: 170px; /* 170px + 10px padding = 180px toatal*/
	color: #000000;
	text-decoration: none;
	font-weight: bold; 
	font-family: Arial, Helvetica, sans-serif;
	height: 19px; /* px height +  padding-top = px total height */
	padding-top: 6px; /* vertical position of links in box */
	padding-left: 10px;
}

#leftNav a:hover {
	color: #ffffff;
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
	background-color: #333333;
}
	
/*** footerNav Styles ***/

#footer a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #ffffff;
	text-decoration: none;
	cursor:pointer;
}

#footer a:link, #footer a:visited {
	color:#ffffff;
	cursor: pointer;
}

#footer a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #00CC00;
	text-decoration: underline;
	cursor:pointer;
}

/*****************  Nagavation Styles & Positioning End Here *****************/

/*****************  Content Styles Start Here *****************/

/*** padding Classes ***/

.contentPadding {
	padding: 15px 20px 10px 10px;
}


/*** heading and text styles ***/

h1 {
	margin: 15px 0px 0px 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight:bold;
	color: #333333;

}

h2 {
	margin: 10px 0px 0px 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #333333;

}

h3 {
	margin: 5px 0px 0px 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;

}


/*** Content Paragraph styles ***/


.content_p {
	padding: 5px 0px 5px 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 17px;
	font-style: normal;
	font-weight: normal;
}

#chemstractor {
	border: #FF0000 solid 5px;
	padding: 10px;
	background-image: url(../Images/ChemCS.jpg);
	background-repeat: no-repeat;
	width: 640px;
}

#chemstractor h1 {
	margin: 0;
    padding: 0px 0px 2px 0px;
    border: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 45px;
	font-weight:bold;
	color: #333333;
}

#chemstractor h2 {
	margin: 10px 0xp 10px 0px;
    padding: 0;
    border: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #FF0000;
}

#chemstractor h3 {
	margin: 0px 0xp 5px 0px;
    padding: 0;
    border: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;
	
}

#chemstractor h4 {
	margin: 0px 0xp 2px 0px;
    padding: 0;
    border: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	
}

.chemstractor {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333333;
}


/*** typography styles ***/


/*** image styles ***/


/*** table styles ***/


.ItemNumber {
	width:115px;
	height: 20px;
	padding: 0px 0px 0px 10px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align: left;
	color: #000000;
}

.Description {
	width: 365px;
	padding: 0px 0px 0px 10px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: left;
}

.QoH {
	width: 60px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
}

.StdCol {
	width: 50px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
}

.Sale {
	width: 50px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
	color:#FF0000;
}

.ProductCat {
	height: 35px;
	padding: 0px 0px 0px 10px;
	font-size:18px;
	font-family:Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #000000;
}

.ColHeaders {
	font-size:10px;
	padding: 0px 0px 0px 10px;
	font-family:Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #000000;
}


.strikeItemNumber {
	width:115px;
	height: 20px;
	padding: 0px 0px 0px 10px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-align: left;
	color: #FF0000;
	text-decoration:line-through;
}

.strikeDescription {
	width: 365px;
	padding: 0px 0px 0px 10px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: left;
	color: #FF0000;
	text-decoration:line-through;
}

.strikeQoH {
	width: 60px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
	color: #FF0000;
	text-decoration:line-through;
}

.strikeStdCol {
	width: 50px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
	color: #FF0000;
	text-decoration:line-through;
}

.strikeSale {
	width: 50px;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-align: center;
	color: #FF0000;
	text-decoration:line-through;
}