@charset "utf-8";

/*******************************************************************************
*  default.css : 21.06.2005
* -----------------------------------------------------------------------------
*  Middle column appeares first in source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */

.clear
{
	clear: both;
}
.hide
{
	display: none;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0 0;
}
html[xmlns] .mozclear
{
	/* this selector should be valid CSS, but Opera 7.5 (and above) will pick
	 * this up as well. Shouldn't be a problem, Opera should handle this fine,
	 * but it's a Mozilla-targeted hack, and it should probably only affect
	 * mozilla. You can do that by replacing the INVALID CSS selector
	 * :root .mozclear for what's given here.
	 */
	border-bottom: 1px solid;
	border-color: transparent;
	margin-bottom: -1px;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	margin-top: 14px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
p
{
	margin-top: 4px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}
h1
{
	font-size: 220%;
	font-family: Georgia, Times, serif;
	margin-bottom: 0;
	padding-bottom: 0; 
}
h2
{
	font-size: 190%;
}
h3
{
	font-size: 160%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 100%;
}
h6
{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */

body 
{
	color: #3D534B;
}
a, a:link, a:visited, a:active
{
	text-decoration: none;
	color: #5D945D;
	font-weight:bold;
}
a:hover, a:focus
{
	text-decoration: underline;
	color: #A7CEA7;
}
code
{
	font-family: "Courier New", Courier, monospace;
}
label
{
	cursor: pointer;
}
table
{
	font-size: 100%;
}
tr
{
	vertical-align: middle;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */

body
{
	padding: 0;
	margin: 0;
}
#pageWrapper
{
	border: 0;
	margin: 0 0;		/* set side margins here 'cause IE doesn't like it set
				   on the body element */
	min-width: 820px;	/* IE doens't understand this property. I use ems rather
				   than pixels so that the layout shouldn't break even
				   when the browser's default size is set very large */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#header
{
	border: 0;
	padding: 0.5em 1em 0.5em 0.5em;
	height:60px;
}
#header h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14em #fff;
	border-right: solid 14em #fff;
	margin: 0 5px;
}
#innerColumnContainer
{
	border: 0;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #rightColumn, #middleColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}
#rightColumn
{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 0;
	padding: 0.5em;
}
#userControls
{
	padding-right: 1%;
	padding-left: 1%;
	width: 98%;
}
#logo
{
	float:left;
	background:url(../Images/Logo.gif) no-repeat;
	height:55px;
	width:420px;
}
#headerlinks
{
	float:right;
	font-size:125%;
	height:55px;
	padding-top:18px;
}
p.fontsize-set
{
	text-align: center;
}
p.fontsize-set img
{
	border-width: 0;
}

/* horizontal navigation stuff. mostly exactly as seen in the hnav.css styleheet
 * in the original skidoo layout.
 */

.hnav
{
	BACKGROUND:#ECF7FD url(../Images/bg.gif) repeat-x left bottom; 
	text-align:center;
	padding-top:10px;
}
* html .hnav
{
	margin-bottom:-3px;	
}
.hnav2
{
	margin: 0;
	padding: 0;
	background:url(../Images/hnav2_bg.gif) repeat-x left top;
	text-align:center;
}
.hnav2inside
{
	padding: 3px 0 5px 11px;
}

/* below is a series of selectors to get a consistent font size across
 * platforms. this is outside the 'theme' section on purpose. use #pageWrapper
 * to set the base font-size for the layout.
 */

body
{
	font-size: 100.1%;
}
html>body
{
	/* Opera's default font size is typically 10% smaller than IE or Mozilla
	 * so we correct for this here, since we're using percentages 
	 * everywhere. And we do this because pixel-based fonts don't resize
	 * under IE/Win and percentages/ems are essentially the same, and I like
	 * percentages for fonts.
	 */
	font-size: 110%;
}
body:last-child, * html body
{
	/* of course the previous selector for Opera's fix is caught by more 
	 * than a few other browsers, so we reset that value here.
	 */
	font-size: 100.1%;
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */

.mainTable
{
	margin-top:10px;
	width:14em;
}
.tableBorder
{
	border-left:solid 1px #8BB88B;
	border-right:solid 1px #8BB88B;
	border-bottom:solid 1px #8BB88B;
	background:#DBE7FA;
	width:14em;
}
.center
{
	text-align:center;
}
#rightColumn th
{
	background:url(../Images/leftCol_mtc.gif) no-repeat left top;
	padding:4px;
	color:#fff;
}
#leftColumn th
{
	background:url(../Images/rightCol_mtc.gif) no-repeat right top;
	padding:4px;
	color:#fff;
}

#pageWrapper, #header, #innerColumnContainer, #footer, .vnav ul, .vnav ul li
{
	border-color: #565;
}
body
{
	background-color: #fff;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#header
{
	color: #000;
}
#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

#rightColumn .inside, #leftColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 100%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	background-color: #fff;
	color: #000;
	text-align: center;
}
.errorText, .errorText a:link, .errorText a:visited
{
	font-weight: bold;
	color: #FF3300;
}
.errorText a:link, .errorText a:visited
{
	text-decoration:underline;
}
.errorText a:hover
{
	font-weight: bold;
	color: #0099CC;
}
.department
{
	font-size: 130%;
}
.category
{
	font-size: 80%;
}
.selectedcategory
{
	font-size: 90%;
	font-weight: bold;
}
.featuretext
{
	font-size: 85%;
	line-height: 13px;
}
.xsmall
{
	font-size: 90%;
	line-height: 13px;
}
.xxsmall {
	font-size: 80%;
}
.tooltip 
{
	cursor:help;
}
/** hiding of elements for assistive devices (screen readers etc) **/
.off {
	position:absolute;
	left:-1000em;
	top:-1000em;
}
tr.ItemStyle td, tr.AlternatingItemStyle td
{
	border-top:solid 1px #000;
}
#middleColumn h3
{
	font-size:200%;
	color:#16634A;
	padding:0;
	margin:0;
}
#middleColumn h4
{
	font-size:175%;
	color:#16634A;
	padding:0;
	margin:0;
}
#middleColumn h5
{
	font-size:115%;
	color:#16634A;
	padding:0;
	margin:0;
}
#middleColumn h6
{
	font-size:105%;
	padding:0;
	margin:0;
}

.bestsellers
{
	text-align:center;
}
.RadioButtonList td
{
	vertical-align: top;
}
.120
{
	width:120px;
}
.larger
{
	font-size:135%;
	font-weight:bold;
}
.white 
{
	color:#fff;
}
.nopaddingbottom td
{
	margin-bottom:0px;
	padding-bottom:0px;
}
.nopaddingtop td
{
	margin-top:0px;
	padding-top:0px;
}
.editorial
{
	color:#16634A;
	font-size:115%;
}
.editorial p
{
	margin-bottom:0;
}
#SiteMap h3
{
	font-size:180%;
	color:#16634A;
}
#SiteMap h4
{
	font-size:140%;
	color:#16634A;
}
#banners
{
	width:14em;
	overflow:hidden;
	text-align:center;
}
.banner
{
	margin-top:15px;
}
/******************************************************************************/