@charset "UTF-8";
body {
	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: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.4;
	background-color: #EFEFEF;
	background-image: url(images/headtop.gif);
	background-repeat: repeat-x;
	background-position: center top;
}
tr {
	font-size: 12px;
}

html, body { /* this rule keeps the page from appearing to shift when going from a long page, with scroll bar to a short page without on some browsers */
	height: 100%;
	margin-bottom: 1px;
}

#ProductDetailsImage {
	margin-right: 12px;
	margin-top: 20px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* ~~~~~~~~~~~~~~~ ELEMENT SELECTORS ~~~~~~~~~~~~~~~ */
p, ul, ol, dl { /* when using percentage font sizing, be aware that any of these elements nested in each other will decrease the font-size of the nested element accordingly. The rule that follows shows how to offset that */
	font-size: 100%;
	color: #333;
}
ul p, ul ul, ul ol, ol p, ol ul, ol ol { /* the descendent selectors in this rule keep nested elements from getting exponentially smaller. If you nest more deeply you may need to add a selector to it */
	font-size: 100%;	
}
a img { /* this rule removes the default border on any image that is linked */
	text-decoration: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


/* ~~~~~~~~~~~~~~~ CONTAINER STYLES ~~~~~~~~~~~~~~~ */
#container {
	width: 960px; /* repeat-y causes the image to repeat vertically */
	padding-left: 0px; /* due to the box model, this must be added to the width to create the width of the slice */
	padding-right: 0px; /* due to the box model, this must be added to the width to create the width of the slice */
	padding-bottom: 15px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-position: center top;
	background-repeat: no-repeat;
	background-color: #fff;
} 


/* ~~~~~~~~~~~~~~~ HEADER STYLES ~~~~~~~~~~~~~~~ */
#header {
	padding: 0;
	margin: 0;
	background-repeat: no-repeat;
	background-image: url(images/header-logo.jpg);
	background-position: center top;
}
#action {
	color: #012D6A;
	font-size: 11px; /* this adjusts the positioning of the call to action in the header */
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	padding-right: 15px;
}	
.carttotals {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #012D6A;
}
/*#navlist {
	background: #787B6E url(../images/nav_bar.jpg) repeat-x left top;  this image begins the gradient for the nav bar, and thus, is positioned at the top of the div -- the color used is sampled from the very bottom of the gradient image -- to make a seamless transition if the text is larger than anticipated 
}*/
#header ul {
	margin: 0;
	padding-left: 5px; /* creates alignment that matches the logo and navigation in the sidebar1 */
	line-height: 2.5; /* this creates the height of the nav bar */
	font-size: 95%;
	text-align: right;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
}
#header li {
	list-style: none;
	display: inline;
	margin: 0;
}
#header li a {
	text-decoration: none; /* this padding fills out the button -- change the left and right padding to space the list items more, or less, apart */
	color: #333; /* the circle image here divides the buttons visually */
	font-weight: bold;
	padding-top: 6px;
	padding-right: 5px;
	padding-bottom: 6px;
	padding-left: 10px;
}
#header li a.last { /* this should be placed on the last item in the list so there's no cirlce image to its right */
	background: none;	
}
#header li a:hover, #header li a:active, #header li a:focus { /* must be in this order and allows the hover style to be seen for keyboard navigators as well as mouse users */
	color: #000;
	font-weight: bold;
}

.home #home a, .about #about a, .contact #contact a, .cart #cart a, .checkout #checkout a { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	font-weight: bold;
	color: #000;
}	
.home #action a:link, .home #action a:visited, .home #action a:active, .home #action a:focus { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	font-weight: bold;
	color: #012D6A;
	text-decoration: none;
	font-size: 12px;
}
.home #action a:hover { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	font-weight: bold;
	color: #666;
	text-decoration: none;
}
#mainContent a:link, #mainContent a:visited, #mainContent a:active, #mainContent a:focus { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	color: #333;
	text-decoration: underline;

}
#mainContent a:hover { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	color: #666;
	text-decoration: underline;
}


/* ~~~~~~~~~~~~~~~ SIDEBAR1 STYLES ~~~~~~~~~~~~~~~ */
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* remember to add the padding on each side to the width to arrive at the space this div will take up in your layout */
	margin: 0;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-image: url(images/nav-bg.jpg);
	background-repeat: no-repeat;
	background-color: #0154B4;
	background-position: right bottom;
}
#sidebar1 h1 {
	color: #000;
	font-size: 90%;
	margin-top: 20px;
}
#sidebar1 h2 {
	color: #797B6F;
	font-size: 100%;
	margin-top: 50px; /* this creates the space between the navigation and the H2 element below */
}

/* NOTE: sidebar1 navigation is contained in the SpryMenuBarVertical.css file */




/* ~~~~~~~~~~~~~~~ MAINCONTENT STYLES ~~~~~~~~~~~~~~~ */
#mainContent {
	width: 730px;
	float: right;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
} 
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding-bottom: 5px;
}
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding-bottom: 5px;
}
#mainContent h3 {
	color: #000;
	font-size: 110%;
}
#mainContent h4 {
	font-size: 100%;	
}

/* ~~~~~~~~~~~~~~~ FOOTER STYLES ~~~~~~~~~~~~~~~ */
#footer {
	text-align: center;
	width: 960px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	background-image: url(images/footerbg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	background-color: #EFEFEF;
	height: 25px;
	color: #CCC;
} 
#footer a:link, #footer a:visited, #footer a:active, #footer a:focus { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	color: #FFF;
	text-decoration: underline;

}
#footer a:hover { /* this selector will allow you to add a class to the body that matches the ID on the top menu and causes it to show a persistent page indicator (you are here) - if you change the menu, feel free to add more using the pattern here */
	color: #CCC;
	text-decoration: underline;
}
	
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #797B6F;
	font-size: 70%;
}
#sidebarContent {
	padding-top: 1px;
	padding-right: 10px;
	padding-bottom: 1px;
	padding-left: 10px;
	width: 200px;
}
#sidebarContent h2 {
	font-size: 14px;
	font-weight: bold;
	margin-top: -5px;
}

/* ~~~~~~~~~~~~~~~ MISCELLANEOUS CLASSES ~~~~~~~~~~~~~~~ */
.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;
}

#newsContent {
	padding-top: 0px;
	padding-bottom: 90px;
	float: right;
	width: 200px;
	background-color: #e2dbb1;
	color: #000;
	font-size: 90%;
	background-image: url(images/news-bottom-crop.jpg);
	background-position: left bottom;
	background-repeat: no-repeat;
	margin: 0px;
}
.newsletter {
	background-image: url(images/newsletter.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 130px;
	padding-left: 10px;
}
.news a:link, .news a:visited, .news a:focus, .news a:active {
	color: #666;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
}
.news a:hover {
	color: #000;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
}



#mainContentindex {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 220px;
	margin-bottom: 0;
	margin-left: 0px;
	width: 490px;
}
.note {
	background-image: url(images/notepad.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 180px;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 20px;
}


.news {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 95%;
	background-color: #e2dbb1;
	padding-right: 10px;
	padding-left: 10px;
	width: 180px;
	overflow: auto;
	height: 250px;
	color: #666;
}

#navmain {
	margin: 0; /* do not add any margin on this selector or the slice on the #container below it will show */
	background-image: url(images/nav-line.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 10;
	padding-left: 0;
	height: 15px;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}

#navmain2 {
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	height: 20px;
	font-size: 11px;
}

.copyright {
	font-size: 10px;
	color: #666;
}
.copyright a:link, .copyright a:focus, .copyright a:visited, .copyright a:active {
	color: #999;
	text-decoration: none;
}
.copyright a:hover {
	color: #666;
	text-decoration: none;
}
.nav  {
	color : #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}
.nav a:link, .nav a:active, .nav a:focus, .nav a:visited  {
	color : #FFF;
	text-decoration : none;
	font-weight: bold;
}
.nav a:hover  {
	color : #999;
	text-decoration : none;
}
.menu2  {
	color : #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	font-weight: bold;
}
.menu2 a:link, .menu2 a:active, .menu2 a:focus, .menu2 a:visited  {
	color : #FFF;
	text-decoration : none;
	font-weight: bold;
}
.menu2 a:hover  {
	color : #999;
	text-decoration : none;
}
.menu3  {
	color : #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
}
.menu3 a:link, .menu3 a:visited, .menu3 a:active, .menu3 a:focus  {
	color : #FFF;
	text-decoration : none;
	font-weight: bold;
}
.menu3 a:hover  {
	color : #999;
	text-decoration : none;
	font-weight: bold;
}
input, select, textarea {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #333;
	border: 1px solid #ccc;
}
.productname {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #C00;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ccc;
}
.mainpic {
	border: 1px solid #E5E5E5;
	margin-right: 20px;
}

.menu4 {
	color : #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration : none;
}
.stock {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
}
.price {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
	font-weight: bold;
}
.headnav {
	background-color: #666;
	height: 30px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #999;
	text-align: right;
	padding-right: 0px;
	padding-left: 0px;
}
.headnav a:link, .headnav a:visited, .headnav a:active {
	color: #FFF;
	text-decoration: none;
}
.headnav a:hover {
	color: #FFF;
	text-decoration: underline;
}
.logo {
	background-color: #FFF;
	width: 200px;
	background-repeat: repeat-x;
	background-position: center top;
	background-image: url(images/shadow.png);
}
.line {
	background-color: #012D6a;
	height: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	font-weight: bold;
}
.line a:link, .line a:visited, .line a:active {
	color: #FFF;
	text-decoration: none;
}
.line a:hover {
	color: #FFF;
	text-decoration: underline;
}
.header {
	background-image: url(images/header.jpg);
	height: 140px;
	width: 750px;
	background-color: #E7ECEF;
	background-repeat: no-repeat;
}

