/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #ffffff;
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #0060a9;
  font-size: 18px;
  font-weight: bold;
  line-height: 18px;
}
/* Commonly used to style section titles. */
h2 {
  color: #333333;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for the h3 header. */
h3 {
  color: #000000;
  font-size: 12px;
}
h4 {
  color: maroon;
  font-size: 12px;
    line-height: 16px;
	text-align: right;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #0060a9;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #990000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 773px;
}
#outerWrapper #header {
  background-color: #fff;
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #cheap {
  background-color: #fff;
  border-right: solid 1px #00AEEF; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 6px 6px 6px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 141px;
}
#outerWrapper #contentWrapper #good {
  background-color: #fff;
  border-right: solid 1px #00AEEF; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 6px 6px 6px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 141px;
}
#outerWrapper #contentWrapper #best {
  background-color: #fff;
  border-left: solid 1px #00AEEF; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 6px 6px 6px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 141px;
}
#outerWrapper #contentWrapper #extreme {
  background-color: #fff;
  border-left: solid 1px #00AEEF; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 6px 6px 6px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 141px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 309px 0 309px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 6px 6px 6px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 137px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #fff;
  
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  padding: 0px 0px 0px 0px;
	
}
#outerWrapper #footer a:link {
  color: #0060a9;
    text-decoration: none;
    	font-size: 0.94em;
  line-height:  0.94em;
}
#outerWrapper #footer a:visited {
   color: #b5b5b5;
    text-decoration: underline;
 text-decoration: underline;
    	font-size: 0.94em;
  line-height:  0.94em;
}
#outerWrapper #footer a:hover {
  color: #00AEEF;
    text-decoration: underline;
}
/* Here is the homepage box. */
#homebx {
	background-color: #fff;
	border: 1px solid #41C2F3;
	width: 773px;
}
#buycalloutbox {
border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */	width: 773px;
}
  
/*	Full Width top-bottom Content Buffer	*/
#tb_buffer {
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 5px;
}
/*	Full Width top Content Buffer	*/
#tb_topbuffer {
	margin: 5px;
	width: 375px;
	border-top: 1px solid #d6d6d6;
	padding-top: 5px;
}

/*	Full Width top-bottom Content Buffer	*/
#tb_buffernotop {
	margin: 0px 0 10px;
}

/*	No Buffer	*/
#tb_nobuffer {
	margin: 0px 0px 0px 0px;
}

/*	Product Pages max width	*/
#productbx {
	width: 385px;
	overflow: hidden;
}

/*	Crumb	*/
#crumb {
	position: relative;
    font-family: Arial, Helvetica, sans-serif;
	height: auto;
	width: 400px;
	margin: 0 185px 0 158px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */              
/*	margin-bottom: -5px;             */
/*	border-bottom: 1px solid #D6D6D6;*/
	background: white;
}
#crumb p {
	padding: 5px 0;                  
	margin: 0 0 0 0;
	font-size: 0.94em;
	line-height: normal;
	color: #0060a9;
}
#crumb a:link, #crumb a:visited {
	color: #666666;
	text-decoration: none;
}
#crumb a:hover {
	color: #0060a9;
	border-bottom: 1px dotted black;
}
/*	pdfs	*/
#pdfs {
	position: relative;
    font-family: Arial, Helvetica, sans-serif;
	height: auto;
	background: white;
}
#pdfs p {
	padding: 0 0 0 0;                 
	margin: 0 0 0 0;
	font-size: 0.94em;
  line-height:  0.94em;
	color: #d6d6d6;
}
#pdfs a:link, #pdfs a:visited {
	color: #8590a8;
	text-decoration: none;
	  font-weight: normal;
	font-style: normal;
}
#pdfs a:hover {
	color: #0060a9;
}

/* Here is the specs box. */
#specpage {
	width: 382px;
	padding: 0	px;
	overflow: hidden;
	font-size: 0.94em;
  line-height:  1em;
	color: #000;
	background-color: #00AEEF;
	margin-top: 10px;
}


/* Here is the image box. */
#imagebx {
	padding: 5px;
	color: #000;
	background-color: #fff;
			margin: 1px;

}
/* Here is the image table. */
#imagetbl {
	background-color: #fff;
	float: right;

}
/* Here is the spacer. */
#spacer {
	background-color: #fff;
	padding: 10px;
}

/* Here is the subnav on the left. Kinda hacked together but seems to be working */

#leftnavborder {
	width: 118px;
	height: 100%;
	border-top: 1px solid #D6D6D6;
	border-right: 1px solid #D6D6D6;
	border-left: 1px solid #D6D6D6; 
}
#subnavigation {
	width: 118px;
	height: auto;
	overflow: hidden;
	float: left;
	clear: left; 
	
}
#subnavigation ul {
	padding: 0;
	margin: 0;
	width: 118px;
	overflow: hidden;
	
}
#subnavigation ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-size: 10px;
}
#subnavigation h4 {
	font-size: 0.8em;
	margin: 18px 9px 4px 12px;
	padding: 0;
	line-height: 1.1em;
	color: black;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	word-spacing: -1px;
}
#subnavigation ul#recently_viewed {
	margin: 0;
}
#subnavigation ul#recently_viewed li {
	margin: 0 0 0 0px;
	padding: 0 0 3px 11px;
	line-height: 1.2em;
	list-style-type: none;
	background: url(../images/page_elements/link-arrow.gif) no-repeat top left;
}
#subnavigation ul#recently_viewed li a {
	color: #333333;
}
#subnavigation ul#recently_viewed li a:hover {
	color: black;
	border-bottom: 1px dotted black;
	text-decoration: none;
}
#titletext1 {
	margin: 0 0 0 0;
	border: none;
	font-size: 1em;
	line-height: 1.4em;
	text-align: left;
}
#titletext2 {
	margin: 0 0 0 0;
	font-size: 1.2em;
	line-height: 1.4em;
	color: #333333;
	text-align: left;
}
#titletext3 {
	margin: 0 0 0 0;
	font-size: 0.8em;
    	line-height: 1.6em;
	color: #333333;
	text-align: left;
}
#title1 {
	color: black;
	font-size: 1em;
	line-height: 1.2em;
	font-weight: bold;
}
#title2 {
	color: black;
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: bold;
}
#title3 {
	margin: 5px 5px 3px 0;
	padding-bottom: 2px;
	text-transform: uppercase;
	font-size: 0.8em;
}
#title4 {
	color: black;
	font-size: 1em;
	line-height: 1.2em;
	font-weight: normal;
	
}
#title5 {
	color: black;
	font-size: 0.94em;
	font-weight: bold;
	line-height: 1.2em;
}

#title3:hover, #title1:hover, #title2:hover, #title4:hover {
	color: #CE5E0D;
	
}

ul#contented {
	margin: 5px 0 0px;
	text-indent: 0px;
	font-size: 0.94em;
	line-height: 1.2em;
}
ul#contented li {
	line-height: 118%;
	margin: 12px 0 0 0px;
	border-bottom: 1px dotted #d6d6d6;
	list-style-type: square;
	padding: 0 0 10px;
}
ul#contented li a:link, ul#nav3 li a:visited {
    text-indent: 0px;
	height: auto;
	text-decoration: none;
	color: #0060a9;
	font-size: 1.1em;
}

ul#contented li a:link, ul#nav3 li a:visited {
    text-indent: 0px;
    	line-height: 100%;
	height: auto;
	text-decoration: none;
	color: #0060a9;
	font-size: 1.1em;

} 
ul#nav3 {
	margin: 0px;
}
ul#nav3 li {
	text-transform: uppercase;
	font-weight: bold;

}
ul#nav3 li a:link, ul#nav3 li a:visited {
	display: block;
    font-family: Verdana, arial, sans-serif;
    	font-size: 1em;
    text-indent: 2px;
	height: auto;
	width: 118px;
	text-decoration: none;
	padding: 4px 0;
	margin: 0;
	color: #333333;nav
	border-bottom: 1px solid #D6D6D6;
} 
ul#nav3 li a.active:link, ul#nav3 li a.active:visited {
	color: black;
}
ul#nav3 li a span {
}
ul#nav3 li a:hover {
	background-color: #E5FCCE;
	color:#0060a9;
	display: block;
	width: 100%;
}
ul#nav3 li a:hover span {
	border-bottom: 1px dotted black;
}
ul#nav4{
	border-bottom: 1px solid #D6D6D6;
}
ul#nav4 li, ul#nav5 li {
	text-transform: none;
	margin: 0px;
	padding: 0px;
}
ul#nav4 li {
	font-size: 1em;
	font-weight: normal;
}
ul#nav4 li a:link, ul#nav4 li a:visited {
	display: block;
	font-family: Verdana, arial, sans-serif;
	height: auto;
	width: 118px;
	background: white;
	text-decoration: none;
	padding: 3px 10px 3px 3px;
	margin-left: 1px;
	color: #0060a9;
	border-bottom: 1px solid #0;
	word-spacing: -1px;
}
ul#nav4 li.last a:link, ul#nav4 li.last a:visited {
	border-bottom: 1px solid #d6d6d6;
}
ul#nav4 li a.active:link, ul#nav4 li a.active:visited {
	color: black;
	font-weight: bold;
}
ul#nav4 li a:hover {
	background-color: #E5FCCE;
	color:#0060a9;
	display: block;
	width: 100%;
	}
ul#nav4 li a span {
	border: 1px solid white;
}
ul#nav4 li a:hover span {
	border-bottom: 1px dotted black;
}
ul#nav4 li a.active span {
	border-bottom: 1px dotted black;
}
ul#nav5 {
	border-bottom: 1px solid #F4F4F4;
	padding: 1px 0;
}
ul#nav5 li {
	font-size: 0.94em;
	font-weight: normal;
}
ul#nav5 li a:link, ul#nav5 li a:visited {
	display: block;
	height: auto;
	width: 118px;
	background: white;
	text-decoration: none;
	padding: 1px 10px;
	margin-left: 1px;
	color: #333333;
	border: none;
	letter-spacing: 0px;
}
ul#nav5 li a:hover, ul#nav5 li a.active:link, ul#nav5 li a.active:visited {
	color: black;
}
ul#nav5 li a:hover {
	background-color: #E5FCCE;
	color:#666666;
	display: block;
	width: 100%;
}
ul#nav5 li a:hover span {
	border-bottom: 1px dotted #666666;
}
ul#nav5 li a.active:hover span {
	border: 1px solid white;
	cursor: default;
}
#callout {
	font-size: 0.94em;
	line-height: normal;
	color: #000;
}
#phone {
	font-size: 1em;
	line-height: 150%;
	color: #000;
	text-align: center;
	font-weight: bold;
}
#legal {
	line-height: 100%;
	color: gray;
	text-align: left;
	font-size: .9em;
}