/*
 * Tipped - A Complete Javascript Tooltip Solution - v4.2.2
 * (c) 2012-2014 Nick Stakenburg
 *
 * http://www.tippedjs.com
 *
 * License: http://www.tippedjs.com/license
 */

.tpd-tooltip {
  position: absolute;
}

/* Fix for CSS frameworks that don't keep the use of box-sizing: border-box
   within their own namespace */
.tpd-tooltip,
.tpd-tooltip [class^="tpd-"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Content */
.tpd-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tpd-content-spacer,
.tpd-content-relative,
.tpd-content-relative-padder {
  float: left;
  position: relative;
}
.tpd-content-relative {
  width: 100%;
}

.tpd-content {
  float: left;
  clear: both;
  position: relative;
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
  color: #fff;
}
.tpd-has-inner-close .tpd-content-relative .tpd-content { padding-right: 0 !important; }
.tpd-tooltip .tpd-content-no-padding { padding: 0 !important; }

.tpd-title-wrapper {
  float: left;
  position: relative;
  overflow: hidden;
}
.tpd-title-spacer {
  float: left;
}
.tpd-title-relative,
.tpd-title-relative-padder {
  float: left;
  position: relative;
}
.tpd-title-relative { width: 100%; }
.tpd-title {
  float: left;
  position: relative;
  font-size: 11px;
  line-height: 16px;
  padding: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
.tpd-has-title-close .tpd-title { padding-right: 0 !important; }
.tpd-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
}
.tpd-close-icon {
  float: left;
  font-family: Arial, Baskerville, monospace;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  width: 28px;
  height: 28px;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
}


/* Skin */
.tpd-skin {
  position: absolute;
  top: 0;
  left: 0;
}

.tpd-frames {
  position: absolute;
  top: 0;
  left: 0;
}
.tpd-frames .tpd-frame {
  float: left;
  width: 100%;
  height: 100%;
  clear: both;
}

.tpd-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
.tpd-background-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  pointer-events: none;
}
.tpd-no-shadow .tpd-skin .tpd-background-shadow { box-shadow: none !important; }

.tpd-background-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.tpd-background-box-shift,
.tpd-background-box-shift-further {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}
.tpd-background {
  border-radius: 10px;
  float: left;
  clear: both;
  background: none;
  -webkit-background-clip: padding-box; /* Safari */
  background-clip: padding-box; /* IE9+, Firefox 4+, Opera, Chrome */
  border-style: solid;
  border-width: 1px;
  border-color: #282828;
  border-color: rgba(255,255,255,.1); /* opacity here bugs out in firefox, .tpd-background-content should have no opacity if this opacity is less than 1 */
}
/* no radius */
.tpd-no-radius .tpd-skin .tpd-frames .tpd-frame .tpd-backgrounds .tpd-background { border-radius: 0; }
.tpd-background-title {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}
.tpd-background-content {
  float: left;
  clear: both;
  width: 100%;
  background-color: #282828;
}
.tpd-background-border-hack {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-style: solid;
}

.tpd-background-box-top { top: 0; }
.tpd-background-box-bottom { bottom: 0; }
.tpd-background-box-left { left: 0; }
.tpd-background-box-right { right: 0; }

/* iframeshim IE6 */
.tpd-iframeshim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  zoom: 1;
  filter: alpha(opacity=0);
  opacity: 0;
}

/* Skin / Stems */
.tpd-shift-stem {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.tpd-shift-stem-side {
  position: absolute;
}
.tpd-frame-top .tpd-shift-stem-side,
.tpd-frame-bottom .tpd-shift-stem-side { width: 100%; }
.tpd-frame-left .tpd-shift-stem-side,
.tpd-frame-right .tpd-shift-stem-side { height: 100%; }

.tpd-stem {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; /* shows possible invalid subpx rendering */
  width: 16px; /* best cross browser stem: width = 2 x height (90deg angle) */
  height: 8px;
  margin-left: 3px; /* space from the side */
  margin-top: 3px; /* space between target and stem */
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}
/* remove margins once we're done measuring */
.tpd-tooltip .tpd-skin .tpd-frames .tpd-frame .tpd-shift-stem .tpd-stem-reset { margin: 0 !important; }

.tpd-stem-spacer {
  float: left;
  position: relative;
  width: 100%;
  height: 100%;
}
.tpd-stem-reset .tpd-stem-spacer { margin-top: 0; }

.tpd-stem-point {
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
}
.tpd-stem-downscale,
.tpd-stem-transform {
  float: left;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  position: relative;
}

.tpd-stem-side {
  width: 50%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
}
.tpd-stem-side-inversed {
  -webkit-transform: scale(-1,1);
  transform: scale(-1,1);
}
.tpd-stem-triangle {
  width: 0;
  height: 0;
  border-bottom-style: solid;
  border-left-color: transparent;
  border-left-style: solid;
  position: absolute;
  top: 0;
  left: 0;
}
.tpd-stem-border {
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #fff; /* will become transparent */
  border-right-color: #fff;
  border-right-style: solid;
  border-right-width: 0;
}

.tpd-stem-border-corner {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-right-style: solid;
  border-right-width: 0;
}

/* fixes rendering issue in IE */
.tpd-stem * { z-index: 0; zoom: 1; }

/* used by IE < 9 */
.tpd-stem-border-center-offset,
.tpd-stem-border-center-offset-inverse {
  float: left;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tpd-stem-notransform {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
.tpd-stem-notransform .tpd-stem-border {
  height: 100%;
  position: relative;
  float: left;
  top: 0;
  left: 0;
  margin: 0;
}
.tpd-stem-notransform .tpd-stem-border-center {
  position: absolute;
}
.tpd-stem-notransform .tpd-stem-border-corner {
  background: #fff;
  border: 0;
  top: auto;
  left: auto;
}
.tpd-stem-notransform .tpd-stem-border-center,
.tpd-stem-notransform .tpd-stem-triangle {
  height: 0;
  border: 0;
  left: 50%;
}

/* transformations for left/right/bottom */
.tpd-stem-transform-left {
  -webkit-transform: rotate(-90deg) scale(-1,1);
  transform: rotate(-90deg) scale(-1,1);
}
.tpd-stem-transform-right {
  -webkit-transform: rotate(90deg) translate(0, -100%);
  transform: rotate(90deg) translate(0, -100%);
}
.tpd-stem-transform-bottom {
  -webkit-transform: scale(1,-1) translate(0, -100%);
  transform: scale(1,-1) translate(0, -100%);
}


/* Spinner measurements */
.tpd-loading-icon {
  position: absolute;
  width: 42px; 
  height: 42px;
  display: none;
}
.tpd-loading-line {
  z-index: 12;
  height: 3px;
  width: 2px;
  margin-bottom: 5px;
}
.tpd-spinner {
  margin-left: 50%;
  margin-top: 50%;
}
/* show the loader while loading and hide all the content */
.tpd-is-loading .tpd-loading-icon { display: block; }
.tpd-is-loading .tpd-content-wrapper,
.tpd-is-loading .tpd-title-wrapper { display: none; }


/* The actual spinner */
@-moz-keyframes tpd-spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes tpd-spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes tpd-spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.tpd-spin {
  position: absolute;
  top: 50%;
  left: 50%;
}

.tpd-spin-rotate,
.tpd-spin-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tpd-spin-line {
  position: absolute;
  top: 0;
  left: 50%;
}


/* Resets while measuring content */
.tpd-tooltip-measuring {
  top: 0;
  left: 0;
  position: absolute;
  max-width: 100%;
  width: 100%;
}
.tpd-tooltip-measuring .tpd-skin,
.tpd-tooltip-measuring .tpd-loading-icon {
  display: none;
}

/* Links */
.tpd-tooltip a,
.tpd-tooltip a:hover { color: #8e8e8e; text-decoration: none; }
.tpd-tooltip a:hover { text-decoration: underline; }


/*
 * Sizes
 */
/* x-small */
.tpd-size-x-small .tpd-content,
.tpd-size-x-small .tpd-title {
  padding: 7px 8px;
  font-size: 10px;
  line-height: 15px;
}
.tpd-size-x-small .tpd-background { border-radius: 5px; }
.tpd-size-x-small .tpd-stem {
  width: 12px;  
  height: 6px;
  margin-left: 4px; 
  margin-top: 2px; 
}
.tpd-size-x-small.tpd-no-radius .tpd-stem { margin-left: 7px; }
.tpd-size-x-small .tpd-loading-icon { width: 32px; height: 32px; }  
.tpd-size-x-small .tpd-loading-line {
  z-index: 12;        /* amount of lines */
  margin-bottom: 4px; /* radius of the inner circle */
  height: 3px;        /* length of a line */
  width: 2px;         /* width of a line */
}
.tpd-size-x-small .tpd-close { margin-bottom: 1px; }

/* small */
.tpd-size-small .tpd-content,
.tpd-size-small .tpd-title {
  padding: 8px;
  font-size: 10px;
  line-height: 16px;
}
.tpd-size-small .tpd-background { border-radius: 6px; }
.tpd-size-small .tpd-stem {
  width: 14px;
  height: 7px;
  margin-left: 5px;
  margin-top: 2px;
}
.tpd-size-small.tpd-no-radius .tpd-stem { margin-left: 8px; }
.tpd-size-small .tpd-loading-icon { width: 34px; height: 34px; }
.tpd-size-small .tpd-loading-line {
  z-index: 12;        /* amount of lines */
  margin-bottom: 4px; /* radius of the inner circle */
  height: 3px;        /* length of a line */
  width: 2px;         /* width of a line */
}
.tpd-size-small .tpd-close { margin: 2px 1px; }


/* medium (default) */
.tpd-size-medium .tpd-content,
.tpd-size-medium .tpd-title {
  padding: 10px;
  font-size: 11px;
  line-height: 16px;
}
.tpd-size-medium .tpd-background { border-radius: 8px; } 
.tpd-size-medium .tpd-stem {
  width: 16px;      /* best cross browser stem width is 2xheight, for a 90deg angle */
  height: 8px;
  margin-left: 6px; /* space from the side */
  margin-top: 2px;  /* space to offset the tooltip */
}
.tpd-size-medium.tpd-no-radius .tpd-stem { margin-left: 10px; }
/* wraps the loader, ideal dimensions don't cause stem movement when opening large tooltips */
.tpd-size-medium .tpd-loading-icon { width: 42px; height: 42px; }
.tpd-size-medium .tpd-loading-line {
  z-index: 12;        /* amount of lines */
  margin-bottom: 5px; /* radius of the inner circle */
  height: 4px;        /* length of a line */
  width: 2px;         /* width of a line */
}
.tpd-size-medium .tpd-close { margin: 4px 2px; }



/* large */
.tpd-size-large .tpd-content,
.tpd-size-large .tpd-title {
  padding: 10px;
  font-size: 13px;
  line-height: 18px;
}
.tpd-size-large .tpd-background { border-radius: 8px; }
.tpd-size-large .tpd-stem {
  width: 18px;
  height: 9px;
  margin-left: 7px;
  margin-top: 2px;
}
.tpd-size-large.tpd-no-radius .tpd-stem { margin-left: 10px; }
.tpd-size-large .tpd-loading-icon { width: 50px; height: 50px; }
.tpd-size-large .tpd-loading-line {
  z-index: 12;        /* amount of lines */
  margin-bottom: 5px; /* radius of the inner circle */
  height: 5px;        /* length of a line */
  width: 2px;         /* width of a line */
}
.tpd-size-large .tpd-close { margin: 5px 2px 5px 2px; }



/* Skins */
/* default (dark) */
.tpd-skin-dark .tpd-content,
.tpd-skin-dark .tpd-title,
.tpd-skin-dark .tpd-close { color: #fff; }
.tpd-skin-dark .tpd-background-content,
.tpd-skin-dark .tpd-background-title {
  background-color: #282828;
}
.tpd-skin-dark .tpd-background {
  border-width: 1px;
  border-color: #282828;
  border-color: rgba(255,255,255,.1);
}
/* line below the title */
.tpd-skin-dark .tpd-title-wrapper { border-bottom: 1px solid #404040; }
/* links */
.tpd-skin-dark a,
.tpd-skin-dark a:hover { color: #ccc; }


/* light */
.tpd-skin-light .tpd-content,
.tpd-skin-light .tpd-title,
.tpd-skin-light .tpd-close { color: #333; }
.tpd-skin-light .tpd-background-content {
  background-color: #fff;
}
.tpd-skin-light .tpd-background {
  border-width: 1px;
  border-color: #838383;
  border-color: rgba(0,0,0,.3);
}
.tpd-skin-light .tpd-background-title {
  background-color: #f7f7f7;
}
.tpd-skin-light .tpd-title-wrapper { border-bottom: 1px solid #c0c0c0; }
.tpd-skin-light .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
/* fallback for no/disabled shadow */
.tpd-skin-light.tpd-no-shadow .tpd-background {
  border-color: #acacac;
  border-color: rgba(100,100,100,.3); 
}

/* gray */
.tpd-skin-gray .tpd-content,
.tpd-skin-gray .tpd-title,
.tpd-skin-gray .tpd-close { color: #fff; }
.tpd-skin-gray .tpd-background-content,
.tpd-skin-gray .tpd-background-title {
  background-color: #727272;
}
.tpd-skin-gray .tpd-background {
  border-width: 1px;
  border-color: #727272;
  border-color: rgba(255,255,255,.1);
}
.tpd-skin-gray .tpd-title-wrapper { border-bottom: 1px solid #505050; }
.tpd-skin-gray a,
.tpd-skin-gray a:hover { color: #ccc; }


/* red */
.tpd-skin-red .tpd-content,
.tpd-skin-red .tpd-title,
.tpd-skin-red .tpd-close { color: #fff; }
.tpd-skin-red .tpd-background-content { background-color: #e13c37; }
.tpd-skin-red .tpd-background {
  border-width: 1px;
  border-color: #a30500;
  border-color: rgba(12,0,0,.6);
}
.tpd-skin-red .tpd-background-title { background-color: #e13c37; }
.tpd-skin-red .tpd-title-wrapper { border-bottom: 1px solid #a30500; }
.tpd-skin-red .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-red a,
.tpd-skin-red a:hover { color: #ccc; }

/* green */
.tpd-skin-green .tpd-content,
.tpd-skin-green .tpd-title,
.tpd-skin-green .tpd-close { color: #fff; }
.tpd-skin-green .tpd-background-content { background-color: #4aab3a; }
.tpd-skin-green .tpd-background {
  border-width: 1px;
  border-color: #127c00;
  border-color: rgba(0,12,0,.6);
}
.tpd-skin-green .tpd-background-title { background-color: #4aab3a; }
.tpd-skin-green .tpd-title-wrapper { border-bottom: 1px solid #127c00; }
.tpd-skin-green .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-green a,
.tpd-skin-green a:hover { color: #ccc; }

/* blue */
.tpd-skin-blue .tpd-content,
.tpd-skin-blue .tpd-title,
.tpd-skin-blue .tpd-close { color: #fff; }
.tpd-skin-blue .tpd-background-content { background-color: #45a3e3; }
.tpd-skin-blue .tpd-background {
  border-width: 1px;
  border-color: #1674b4;
  border-color: rgba(0,0,12,.6);
}
.tpd-skin-blue .tpd-background-title { background-color: #45a3e3; }
.tpd-skin-blue .tpd-title-wrapper { border-bottom: 1px solid #1674b4; }
.tpd-skin-blue .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
.tpd-skin-blue a,
.tpd-skin-blue a:hover { color: #ccc; }


/* lightyellow */
.tpd-skin-lightyellow .tpd-content,
.tpd-skin-lightyellow .tpd-title,
.tpd-skin-lightyellow .tpd-close { color: #333; }
.tpd-skin-lightyellow .tpd-background-content { background-color: #ffffa9; }
.tpd-skin-lightyellow .tpd-background {
  border-width: 1px;
  border-color: #9d9c8c;
  border-color: rgba(8,8,0,.35);
}
.tpd-skin-lightyellow .tpd-background-title { background-color: #ffffa9; }
.tpd-skin-lightyellow .tpd-title-wrapper { border-bottom: 1px solid #a7a697; }
.tpd-skin-lightyellow .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }


/* lightblue */
.tpd-skin-lightblue .tpd-content,
.tpd-skin-lightblue .tpd-title,
.tpd-skin-lightblue .tpd-close { color: #333; }
.tpd-skin-lightblue .tpd-background-content { background-color: #bce5ff; }
.tpd-skin-lightblue .tpd-background {
  border-width: 1px;
  border-color: #7c868a;
  border-color: rgba(0,0,8,.35);
}
.tpd-skin-lightblue .tpd-background-title { background-color: #bce5ff; }
.tpd-skin-lightblue .tpd-title-wrapper { border-bottom: 1px solid #909b9f; }
.tpd-skin-lightblue .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }


/* lightpink */
.tpd-skin-lightpink .tpd-content,
.tpd-skin-lightpink .tpd-title,
.tpd-skin-lightpink .tpd-close { color: #333; }
.tpd-skin-lightpink .tpd-background-content { background-color: #ffc4bf; }
.tpd-skin-lightpink .tpd-background {
  border-width: 1px;
  border-color: #8d817c;
  border-color: rgba(8,0,0,.35);
}
.tpd-skin-lightpink .tpd-background-title { background-color: #ffc4bf; }
.tpd-skin-lightpink .tpd-title-wrapper { border-bottom: 1px solid #a08f8f; }
.tpd-skin-lightpink .tpd-background-shadow { box-shadow: 0 0 8px rgba(0,0,0,.15); }
/*
colors should be in style.css
*/
body  {
	margin: 0 0 0 0;
}
.content_area {
        font : normal 12px Arial, sans-serif;
}
.content_area a{
	color: #000;
}
.content_area_red {
	background: #fff;
	color: #FF0000;
	font : normal 12px/14px Arial, sans-serif;
}
.content_area_bml_red {
	background: #fff;
	color: #CC0000;
	font : normal 15px Arial, sans-serif;
}
.content_area_bml_blue {
	background: #fff;
	color: #3300CC;
	font : normal 15px Arial, sans-serif;
}
.content_area_header {
	font : bold 18px/20px Arial, sans-serif;
}
.content_area_small {
	font : 11px/12px Arial, sans-serif;
}
.product_name {
	font : bold 13px/16px Arial, sans-serif;
}
.product_attributes {
	font : bold 13px/16px Arial, sans-serif;
}
.product_description {
        font : normal 12px/14px Arial, sans-serif;
}
div.product_border {
	border: 1px solid #fff; 
	padding: 2px;
}
div.product_cell {
	text-align: center;
	font: normal 12px/14px Arial;
	height: 194px;
}
.product_cell a {
	text-decoration: none;
	font: normal 12px/15px Arial, sans-serif;
}
.product_cell a:hover, .product_cell a:focus, .product_cell a:active {
	text-decoration: underline;
}
.other_product_attributes {
	font: normal 10px/14px Arial;
}
.other_product_attributes a {
	font: normal 10px/14px Arial;
}
.product_price {
	font: inherit;
	font-weight: bold;
}
.product_price em {
	font-style: normal;
}
.breadCrumb {
	font: bold 12px/14px Arial, sans-serif;
}
.breadCrumb a {
	font: bold 12px/14px Arial, sans-serif;
}
.product_OtherStylesBar {
	font: normal 12px/15px Arial, sans-serif;
}
.navigationExtraDark {
	font: bold 12px/15px Arial, sans-serif;
}
.navigationExtraDark a {
	text-decoration: none;
	font: bold 12px/15px Arial, sans-serif;
}
.navigationDark {
	font: normal 12px/15px Arial, sans-serif;
}
.navigationDark a {
	text-decoration: none;
	font: normal 12px/15px Arial, sans-serif;
}
.navigationLight {
	font: normal 11px/16px Arial, sans-serif;
}
.navigationLight a {
	text-decoration: none;
}
.navigationLight input {
	border: 0;
	margin: 0;
	padding: 0;
	font: normal 12px/14px Arial, sans-serif;
	height: 17px;
}
.linkButton a {
	text-decoration: none;
	padding: 2px 2px 2px 2px;
	font: bold 12px/18px Arial, sans-serif;
}
.sideNavigation {
	font: bold 11px Arial, Helvetica, sans-serif;
}
.sideNavigation H1 {
	padding: 0;
	margin: 0;
	text-align: center;
	font: bold 16px/22px Arial, sans-serif;
}
.sideNavigation H2 {
	font: bold 11px Arial, Helvetica, sans-serif;
	padding: 0px 0 1px 0px;
	margin: 0;
}
.sideNavigation H3 {
	font: bold 11px Arial, sans-serif;
	padding: 2px 0 0 1px;
	margin: 0;
}
.sideNavigation strong {
	font: bold 11px Arial, sans-serif;
	padding: 5px 0 0 0;
	margin: 0;
}
.sideNavigation label {
	font: normal 10px/12px Arial, sans-serif;
}
.sideNavigation select {
	font: normal 11px/14px Arial, sans-serif;
}
.sideNavigation a {
	text-decoration: none;
        font: normal 11px/14px Arial, sans-serif;
}
.sideNavigationFocusSearch {
	font: bold 14px Arial, sans-serif;
}

.searchNavigation {
        font: bold 12px Arial, sans-serif;
}
.searchNavigation H1 {
        padding: 0px 0px 0px 2px;
        margin: 0;
        font: bold 16px Arial, sans-serif;
}
.searchNavigation H2 {
        font: bold 12px/14px Arial, sans-serif;
        padding: 10px 0 1px 0px;
        margin: 0;
}
.searchNavigation H3 {
        font: bold 11px Arial, sans-serif;
        padding: 2px 0 0 1px;
        margin: 0;
}
.searchNavigation em {
        font: normal 11px Arial, sans-serif;
        padding: 5px 0 0 3px;
        margin: 0;
}
.searchNavigation strong {
        font: bold 11px Arial, sans-serif;
        padding: 5px 0 0 0;
        margin: 0;
}
.searchNavigation label {
        font: normal 10px/12px Arial, sans-serif;
}
.searchNavigation select {
        font: normal 11px/14px Arial, sans-serif;
}
.searchNavigation a {
        text-decoration: none;
        font: normal 11px/14px Arial, sans-serif;
}
.searchNavigationFocusSearch {
        font: bold 14px Arial, sans-serif;
}
.searchPaging {
        font: bold 12px Arial, sans-serif;
}

.navigationFooter {
	font: inherit;
}
#brands {
        font: normal 12px/15px Arial, sans-serif;
}
#brands a {
        font: normal 12px/15px Arial, sans-serif;
}
/*
	add/change fonts in typography.css
*/
/*body  {
	background-color: #000;
}*/
.content_area {
	background: #fff;
        color: #000;
}
.content_area a{
	color: #000;
}
.content_area_red {
	background: #fff;
	color: #FF0000;
}
.content_area_header {
	background: #fff;
	color: #000000;
}
.content_area_small {
	background: #fff;
	color: #000000;
}
.cart_detail {
	background: #FFFFFF;
}
.cart_header_detail {
	background: #CCCCCC;
	color: #000000;
}
.cart_detail_red {
	background: #FFFFFF;
	color: #FF0000;
	font-weight: bold;
}
.cart_calc {
	background: #000000;
	color: #ffffff;
}
.product_name {
	background: #fff;
	color: #000;
}
.product_description {
	background: #fff;
        color: #000;
}
div.product_border {
	border: 1px solid #fff; 
}
div.product_cell {
	background: #fff;
}
.product_cell a {
	color: #000;
}
.product_price em {
	color: red;
}
.breadCrumb {
	color: #000;
}
.breadCrumb a {
	color: #000;
}
.product_OtherStylesBar {
	background: #CC0000;
}
.product_OtherStylesBar a {
	color: #fff;
}
.navigationExtraDark {
	color: #000;
}
.navigationExtraDark a {
	color: #000;
}
.navigationExtraDark a:hover, .navigationDark a:focus, .navigationDark a:active {
	color: #7e175e;
}
.navigationDark {
	color: #000;
}
.navigationDark a {
	color: #000;
}
.navigationDark a:hover, .navigationDark a:focus, .navigationDark a:active {
	color: #c103ab;
}
.navigationLight {
	color: #000;
}
.navigationLight a {
	color: #000;
}
.navigationLight a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #000;
}
.linkButton a {
	color: #000;
	background: #ccc;
}
.linkButton a:hover, .linkButton a:focus, .linkButton a:active {
	color: #000;
	background: #ffd551;
}
.sideNavigation {
	color: #000;
	background-color: transparent;
	width: 138px;
}
.sideNavigation H1 {
	color: #000000;
}
.sideNavigation H2 {
	color: #000000;
}
.sideNavigation H3 {
	color: #000000;
}
.sideNavigation strong {
	color: #000;
}
.sideNavigation label {
	color: #000;
}
.sideNavigation a {
	color: #000;
}
.sideNavigationFocusSearch {
	background: #CC0000;
	color: #ffffff;
}
.sideNavigation a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #000000;
}

.searchNavigation {
        color: #000000;
        background: #CCCCCC;
}
.searchPaging {
        color: #000;
        background: #fff;
}
#sort_filters {
	font-size: 11px; 
	font-style: italic;
	line-height: 20px;
}

#sort_filters a {
	color: #00adef;
	text-decoration: none;
}

#sort_filters a.selected {
	color: #F33;
}
/*.searchNavigation H1 {
        color: #000;
}*/
.searchH1 {
		padding: 0px 0px 0px 2px;
        margin: 0;
        font: bold 16px Arial, sans-serif;
		color: #000;
}
.searchUnselect {
        color: #f00;
}
/*.searchNavigation H2 {
        color: #000;
}*/
.searchH2 {
		font: bold 12px/14px Arial, sans-serif;
        padding: 10px 0 1px 0px;
        margin: 0;
		color: #000;
}
/*.searchNavigation H3 {
        color: #000;
}*/
.searchH3 {
		font: bold 11px Arial, sans-serif;
        padding: 2px 0 0 1px;
        margin: 0;
		color: #000;
}
.searchNavigation em {
	color: #000;
}
.searchNavigation strong {
        color: #000;
}
.searchNavigation label {
        color: #000;
}
.searchNavigationFocusSearch {
        background: #000;
}

#search_control {
	cursor: pointer;
	display: block;
	width: 100%;
}
.search_field {
	margin: 3px;
	float: left;
}
.checked {
	font: 14px Arial, sans-seriff;
	color:  #f00;
}
div.search_group ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align:left;
	float: none;
	}
div.search_group li {
	margin: 0;
	padding: 0;
	float:left;
	}
		
.search_group a {
	margin: 0;
	padding: 0;
	float:left;
	width:96%;
	text-decoration:none;
	display: block;
	padding: 1px 1px 1px 2px;
	background-color: #CCCCCC;
	border-top: 1px solid #EEEEEE;
	border-left: 1px solid #EEEEEE;
	border-bottom: 1px solid #AAAAAA;
	border-right: 1px solid #AAAAAA;
}
	
.search_group a:hover {
	background-color: #AAAAAA;
	border-top: 1px solid #AAAAAA;
	border-left: 1px solid #AAAAAA;
	border-bottom: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
}

.search_group i {
	color: maroon;
	font: 10px normal Verdana;
}


.filter_button_up {
	margin: 0;
	padding: 0;
	float:left;
	display: block;
	padding: 1px 1px 1px 2px;
	background-color: #CCCCCC;
	border-top: 1px solid #EEEEEE;
	border-left: 1px solid #EEEEEE;
	border-bottom: 1px solid #AAAAAA;
	border-right: 1px solid #AAAAAA;
}
	
.filter_button_down {
	margin: 0;
	padding: 0;
	float:left;
	display: block;
	padding: 1px 1px 1px 2px;
	background-color: #AAAAAA;
	border-top: 1px solid #AAAAAA;
	border-left: 1px solid #AAAAAA;
	border-bottom: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
}
	
.filter_available {
	font: 11px Arial, sans-serif;
	color: #000000;
}
.filter_active {
	font: 11px Arial, sans-serif;
	color: #FF0000;
}
	
.filter_unavailable {
	font: 11px Arial, sans-serif;
	color: #898989;
}

.navigationFooter {
	color: inherit;
	background: #000;
}
#brands {
        color: #000;
}
#brands a {
        color: #000;
}
.navigationContent a {
	color: #000;
}
.navigationContent a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #FFD551;
}
/* ------------------ Header Classes ------------------ */

.mainHeader
{
	color: #000000;
}

.mainHeader .menuCells
{
	font-family:Arial, Helvetica, sans-serif;
	color: #000000;
}

.mainHeader .menuBorder
{
	border-right: 1px solid #000000;
}

.mainHeader .menuCells a:link
{
	color: #000000;
	text-decoration: none;
}
.mainHeader .menuCells a:visited
{
	color: #000000;
	text-decoration: none;
}
.mainHeader .menuCells a:hover
{
	color: #000000;
	text-decoration: none;
}
.mainHeader .menuCells a:active
{
	color: #000000;
	text-decoration: none;
}
.mainHeader .catCells
{
	font-family:Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #000000;
	border-right: 1px solid #FFFFFF;
}
.mainHeader .catCells a:link
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .catCells a:visited
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .catCells a:hover
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .catCells a:active
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .loginText
{
	font-family:Arial, Helvetica, sans-serif;
	border-color: #FFFFFF;
	color: #000000;
	font-size: 12px;
}
.mainHeader .loginText a:link
{
	color: #000000;
	font-size: 12px;
	text-decoration: underline;
}
.mainHeader .loginText a:visited
{
	color: #000000;
	font-size: 12px;
	text-decoration: underline;
}
.mainHeader .loginText a:hover
{
	color: #000000;
	font-size: 12px;
	text-decoration: underline;
}
.mainHeader .loginText a:active
{
	color: #000000;
	font-size: 12px;
	text-decoration: underline;
}

.mainHeader .priceText
{
	color: #000000;
	font-size: 11px;
}

.mainHeader a:link
{
	color: #000000;
	text-decoration: none;
	font-size: 12px;
}

.mainHeader a:visited
{
	color: #000000;
	text-decoration: none;
	font-size: 12px;
}
.mainHeader a:hover
{
	color: #000000;
	text-decoration: none;
	font-size: 12px;
}
.mainHeader a:active
{
	color: #000000;
	text-decoration: none;
	font-size: 12px;
}

/*------------------ Footer Classes ------------------*/

.mainFooter
{
	text-align:center;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	border-color: #FFFFFF;
	color: #FFFFFF;
}

.mainFooter a:link
{
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
}
.mainFooter a:visited
{
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 12px;
}
.mainFooter a:hover
{
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 12px;
}
.mainFooter a:active
{
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 12px;
}
.mainFooter .catCells
{
	font-family:Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #000000;
	border-right: 1px solid #FFFFFF;
}
.mainFooter .catCells a:link
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainFooter .catCells a:visited
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainFooter .catCells a:hover
{
	color: #FFFFFF;
	text-decoration: none;
}
.mainFooter .catCells a:active
{
	color: #FFFFFF;
	text-decoration: none;
}
.footerspecialBars 
{
	font-size: 11px;
	color: #000000;
	background-color: #CCCCCC;
}
.footerbetweenSmallAndMedium
{
	font-size: 11px;
}

.footersmall
{
	color: #000000;
	font-size: 10px;
}
.footersmall a:link
{
	color: #000000;
	text-decoration: underline;
	font-size: 10px;
}
.largebold
{
	font-size: 14px;
	font-weight: bold;
}
.bold
{
	font-weight: bold;
}

.infoBars
{
	font-size: 11px;
	background-color: #CCCCCC;
	background-position: left;
}

.spacerBars 
{
	font-size: 11px;
	color: #FFFFFF;
	background-color: #CC0000;
}

.specialBars 
{
	font-size: 11px;
	color: #000000;
	background-color: #CCCCCC;
}

.titleBars
{
	font-size: 11px;
	color: #FFFFFF;
	background-color: #000000;
	background-position: left;
	text-align:center
}

.sizingBars
{
	font-size: 11px;
	background-color: #CCCCCC;
	background-position: left;
	text-align:center
}

.otherBars
{
	font-size: 11px;
	background-position: left;
	text-align:center
}

.helpBars
{
background-color: #CCCCCC;
color: #000000;
}

.footerSeals {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

.footerSeals td {
	padding-right: 15px;
	vertical-align: top;
}
.sideNavigationContent {
	width: 136px;
}
.rightside {
	width: 828px;
}
#primarytable{
	width: 966px;
}
.primarytable{
	width: 966px;
}
.custserv_index {
	width: 100px;
}
.custserv_content {
	width: 866px;
}
#paypalOption {
	width: 100%;
}
#RegisteredUsers {
	width: 100%;
}
#wrapper {
	background-color:#FFFFFF;
	padding:2px 0pt 0pt;
	text-align:left;
	width:966px;
}

/*** PRODUCT DETAIL ***/ 
#pdp {
	padding: 10px;
	font: 12px Arial, Helvetica, sans-serif;
}

#pdp table {
	font: 12px Arial, Helvetica, sans-serif;
}

#pdp td {
	vertical-align: top;
}

#pdpLeftColumn {
	width: 360px;
	text-align: center;
}

#pdpRightColumn h1 {
	font-size: 19px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	vertical-align: top;
}

#pdpQTYSize {
	border-collapse: collapse;
	margin-bottom: 10px;
}

#pdpQTYSize td {
	vertical-align: middle;
	width: auto;
}

#pdpQTYSize td.labelColumn {
	width: 60px;
}

#pdpQTYSize select {
	font-size: 10px;
}

#pdpYMAL {
	border-left: 1px solid black;
	text-align: center;
	width: 122px;
	font-size: 10px;
}

#pdpYMAL ul {
	list-style: none;
	padding: 0 0 0 10px;
	margin: 0;
}

#pdpYMAL ul li {
	margin-bottom: 10px;
}

#pdpYMAL .product_price {
	font-size: 12px;
}

.breadCrumb {
	padding: 5px 10px 0px;
	font-weight: bold;
	background-color: white;	
}

.product_name { 
	background-color: white;
	font-weight: bold;
} 

#pdpImage .zoomText {
	padding-bottom: 10px;
}

#pdpImage .zoomText a {
	font-size: 12px;
	line-height: 20px;
	color: blue;
	text-decoration: none;
}

#pdpImage .zoomText a img {
	margin-bottom: -3px;
}

#pdp .viewOtherStylesLink {
	color: blue;
	text-decoration: none;
}

#productsizingbody {
	background: White !important;
	color: Black; 
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 12px; 
	margin: 0; 
	padding: 0;
}

.menulist {
	list-style: none;
	margin-left: -31px;
	margin-top: -0px;
	color:black;
}

.menutitle {
	list-style: none;
	color: black;
	margin-left: -36px;;
}

.menumore {
	margin-left:-31px;
}

.menumorelist {
	margin-left: -31px;
}
#shoppingCart_right_wrapper {
	padding : 55px 22px 30px 0px;
	float: right; 
	font-family: Arial,sans-serif; 
	font-size: 12px;
}

#shoppingCart_rv_inside {
	width: 131px; 
	border: 2px solid Silver;
}

html>body #shoppingCart_rv_inside {
	width: 127px;
}

#shoppingCart_rv_title {
	background-color: Silver; 
	text-align: center; 
	padding: 1px;
}
#shoppingCart_rv_content {
	padding: 10px;
}
#shoppingCart_rv_content img {
	border:1px solid #bbb;
}
#shoppingCart_link_inside {
	width: 131px; 
	border: 2px solid Silver;
}

html>body #shoppingCart_link_inside {
	width: 127px;
}

#shoppingCart_link_title {
	background-color: Silver; 
	text-align: center; 
	padding: 1px;
}
#shoppingCart_link_content {
	padding: 10px;
	text-align: center;
}
/** store locator class **/
.locator_title H1 {
	font-size: 14px;
	font-weight: bold;
}	


#shoppingCart_payment_inside {
	width: 131px; 
	border: 2px solid Silver;
	margin-top:15px;
}

html>body #shoppingCart_payment_inside {
	width: 127px;
}

#shoppingCart_payment_title {
	background-color: Silver; 
	text-align: center; 
	padding: 1px;
	font-weight:bold;
}
#shoppingCart_payment_content {
	text-align: center;
	padding-bottom:10px;
}

#shoppingCart_payment_content DIV {
	padding-top: 10px;
}

#shoppingCart_payment_content IMG {
	padding-left: 2px;
	padding-right: 2px;
}

#BVCustomerRatings a:link
{
	color: #000000;
}
#BVCustomerRatings a:visited
{
	color: #000000;
}
#BVCustomerRatings a:hover
{
	color: #000000;
}
#BVCustomerRatings a:active
{
	color: #000000;
}
.generalVIPForm{
	background-color: #CCCCCC;
}
.invisible {
	display: none;
}

#promo_container
{
	width: 966px;
	border-collapse: collapse;
	border-spacing: 0px;
	border: 0px;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
}
#promo_container td
{
	margin: 0px;
	padding: 0px;
}.size_main {
width:564px;
height:auto;
position:relative;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}

.size_header {
width:564px;
float:left;
border:#FFA900 4px solid;
height:60px;
font-weight:normal;
}

.hdr_left {
width:350px;
float:left;
margin:4px;
}

.hdr_right {
float:right;
width:163px;
height:50px;
padding:4px 4px 0 0;
text-align:right;
margin:4px;
}

.hdr_right a{
color:#000000;
}

.size_chart_container{
float:left;
width:564px;
height:auto;
text-align:center;
}

.size_table {
position:relative;
float:left;
width:305px;
height:auto;
margin:2px;
}

#pdp_tabContents .size_table table {
border-collapse: separate;
text-align: center;
}

.size_img {
position:relative;
float:left;
/*width:130px;
height:283px;*/
margin-top:4px;
padding:0px;
background-repeat:no-repeat;
background-position:center;
}

.tblheader_style {
font-weight:bold;
font-size:12px;
color:#FFFFFF;
background-color:#666666;
}

.tbldata_style {
font-weight:bold;
font-size:12px;
text-align:center;
color:#000000;
background-color:#CCCCCC;
}

.measurement_info {
position:relative;
float:left;
width:564px;
height:auto;
background-color:#CCCCCC;
margin-top:4px;
padding:4px;
}

.measurement_info p{
padding:5px;
margin:0 0 0 0;
}

.general_sizing_info{
width:564px;
height:auto;
margin-top:4px;
padding:4px;
clear:left;
}

.general_sizing_info{
padding:5px;
margin:0 0 0 0;
}#storepickup p, #storepickup form, #storepickup ul, #storepickup li {
	margin:0;
	padding:0;
}

#storepickup a {
	color:black;
	text-decoration:underline;
}

#storepickup a:hover {
	color:black;
	text-decoration:underline;
}

#storepickup {
	background-color:#CCC;
	border: 3px solid #09347a;
	font-family:arial;
	font-size:12px;
	font-weight:normal;
	width:905px;
	#width:910px;
	text-align: left;
}

#storepickup .header {
	color:white;
	font-weight:bold;
	font-size:14px;
	padding:5px;
}

#storepickup .header .close {
	float:right;
}

#storepickup .header .close a {
	text-decoration:none;
	color:white;
}

#storepickup>.content {
}

#storepickup #map {
	float:left;
	height:450px;
	margin:6px;
	width:530px;
	#position:static !important;
}

#storepickup #nav {
	float:right;
	margin:6px;
	width:350px;
}

#storepickup #nav .step {
	border:2px solid black;
	margin:0 0 18px 0;
}

#storepickup .step .header {
	background-color:black;
	color:white;
	font-weight:bold;
	padding: 0 0 1px 0;
	background-image:none;
}

#storepickup .step .header .label {
	background-color:white;
	color:black;
	display:inline-block;
	font-size:14px;
	font-weight:bold;
	padding:5px 5px;
}

#storepickup .step .header .icon {
	display:inline-block;
	height:20px;
	vertical-align:top;
	padding-top:3px;
}

#storepickup .step .headercontent {
	background-color:black;
	display:inline-block;
	font-size:12px;
	padding: 5px;
}

#storepickup .step .header>.content {
	background-color:black;
	display:inline-block;
	padding:5px 10px;
}

#storepickup .step .header a {
	color:white;
	font-weight:normal;
}

#storepickup .step .content {
	background-color:white;
	padding: 5px 5px;
}

#storepickup #nav .step>.content {
	border-top:0;
}

#storepickup .step .grey {
	background-color:#CCC;
}

#storepickup .step .messaging {
	font-weight:bold;
	margin: 16px 0 0 0;
}

#storepickup #one.step form {
	display:block;
	margin-left:auto;
	margin-right:auto;
	width:80%;
}

#storepickup #one.step form input {
	clear:both;
	display:block;
	margin: 2px 0 5px 0;
}

#storepickup #one.step form input[type=text] {
	width:265px;
}

#storepickup #two.step #image {
	display:inline-block;
	float:left;
}

#storepickup #two.step #details {
	display:inline-block;
	width:220px;
	float:right;
}

#storepickup #two.step #details .attributes {
	font-weight:normal;
}

#storepickup #two.step form {
	margin-top:10px;
}

#storepickup #two.step form select {
	width:75px;
}

#storepickup #three.step .header>.label, #storepickup #serviceunavailable.step .header>.label {
	margin-left: 1px;
	margin-top: 1px;
}

#storepickup #three.step #storegrid {
	padding:0;
	margin:0;
	height:442px !important;
	#height:465px !important;
	overflow-y:auto;
	width: 905px;
}

#storepickup #three.step #storegrid li {
	border-right:1px solid grey;
	border-top: 1px solid grey;
	border-bottom:1px solid grey;
	display:inline-block;
	float:left;
	height:180px;
	margin-bottom:-1px;
	padding:30px 25px;
	width:241px;
}

#storepickup #three.step #storegrid li.right {
	border-right:none;
}

#storepickup #three.step #storegrid li.top {
	border-top:none;
}

#storepickup #three.step #storegrid .address1 {
	text-decoration:underline;
}

#storepickup #three.step #shiptohome {
	margin:0;
	padding:15px 25px;
}

#storepickup #footer.content {
	text-align:right;
	border-top:1px solid grey;		
}

#storepickup .delivery, #storepickup .delivery form {
	padding-top:10px;
}

#storepickup #product #details .name {
	font-size:12px;
	font-weight: bold;
}

#storepickup #map .directions a {
	color:blue;
	text-decoration:underline;
}

#storepickup li.location .title {
	font-size:14px;
	font-weight:bold;
}

#storepickup #map .title {
	font-size:12px;
	font-weight:bold;
}

#storepickup #storelisting {
	max-height:222px;
	height:222px;
	overflow-y:scroll;
}

#storepickup #storelisting ul {
	background-color: white;
	list-style: none outside none;
	padding:0;
}

#storepickup #storelisting li {
	border-top: 1px solid grey;
	padding: 12px;
}

#storepickup #storelisting li.first {
	border-top: none;
}

#storepickup #storelisting li.last {
	border-bottom: none;
}

#storepickup #storelisting .location .citystate, #storepickup #storelisting .location .distance {
	font-weight:normal;
}
#storepickup #storelisting .location .favorite {
	font-weight:normal;
}

#storepickup .clear {
	clear:both;
}

#storepickup .hide {
	display:none;
}

#storepickup .informational {
	font-style:italic;
	color:#CCC;
}

#storepickup .free, #storepickup .message, #storepickup .error {
	color:red;
	font-weight:bold;
}

#storepickup .method {
	color:black;
	font-weight:bold;
}

#storepickup .processing {
	background-color:white;
	color:black;
	border: 1px solid black;
	display:block;
	font-weight:bold;
	padding:50px;
	text-align:center;
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=90);
	-moz-opacity:.9;
	opacity:.9;
	position:absolute;
	z-index:999;
	margin-left:430px;
	margin-top:70px;
}

#storepickup .button {
	-moz-box-shadow:inset 0px 1px 0px 0px #f29c93;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f29c93;
	box-shadow:inset 0px 1px 0px 0px #f29c93;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100) );
	background:-moz-linear-gradient( center top, #fe1a00 5%, #ce0100 100% );
	background-color:#fe1a00;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #d83526;
	display:inline-block;
	color:#ffffff;
	font-weight:bold;
	padding:3px 12px;
	text-decoration:none;
	text-shadow:1px 1px 0px #b23e35;
}

a#overlay_close .x {
	border: 1px solid white;
	padding: 0 4px;
}

#storepickup .favoritered {
	color: #B5121B;
    font-weight: bold;
	font-size:12px;
}

#selFav {
	background-color: #CCC;
	padding: 8px;
	font-size: 11px;
	font-style: italic;
	border-top: 2px solid #666666;
}
#gridAddFav {
	padding: 5px 15px 5px 0px;
	font-size:12px;
	font-weight: normal;
	font-style: italic;
	float: right;
}


#favoriteStoreOptInClose {
	cursor: pointer;
	text-align: right;
}
#favoriteStoreOptInClose .text {
	background-color: #000000;
	color: #ffffff;
	padding: 0 4px;
}
.favoriteStoreOptInOptions {
	margin: 12px 0 8px 0;
}
#favoriteStoreOptInPhone {
	margin: 0 0 0 20px;
}
#favoriteStoreOptInSubmitButton {
	margin: 20px 5px 15px 5px;
}
#myFavoriteStores {
	margin: 6px;
}
#myFavoriteStores #favoritestores li {
	border-left: 1px solid #CCCCCC;
	display: inline-block;
	padding: 16px;
	width: 262px;
}
#myFavoriteStores #favoritestores li.last {
	border-right: none;
}
#myFavoriteStores .step {
	border: 2px solid black;
	margin: 0 0 15px 0;
}
.normal {
    font-weight: normal;
}
.padding5 {
	padding: 5px;
}
#storepickup .step .listContainer {
	padding: 0;
}
.strong {
	font-weight: bold;
}
#textMessageSubscribeButton .button {
	cursor: pointer;
	margin: 5px 0 2px 0;
}
#storepickup {
        border-color:#333333;
}

#storepickup .x, #storepickup .step .header {
        color:#ffffff;
}

#storepickup a#overlay_close .x {
        border-color:#ffffff;
}

#storepickup #nav .step {
        border-color: #333333;
}

#storepickup .step .headercontent, #storepickup .step .header {
        background-color: #333333;
}

#storepickup .header {
        color:#ffffff;
	height:27px;
	padding:5px 5px 0 5px;
        background-color:#333333;
	background: url("/images/fl/boris/storepickup_header.png") repeat-x;
}

#storepickup .button {
	#width:90px;
	#height:21px;
	#text-align:center;
	#color:white;
	#border:0;
	#background: url("/images/fl/boris/storepickup_btn.png") 0 0 no-repeat;
	#font-weight:bold;
	#padding:2px;
}
.modal-overlay {
	background: url("/images/fl/boris/modal-overlay_bg.png");
	background-color: #a7a9ac;
	position:absolute;
	height: 100%;
	width: 100%;
	top:0px;
	left:0px;
	opacity: .7;
	filter:progid:DXImageTransform.Microsoft.alpha(opacity=70);
	z-index:1001;
}
#sharedWishList_link {
	/* float: right; */
	text-decoration: none;
	/* border: 1px solid gray; */
	color: black;
	padding: 1px;
}

#sharedWishList_link img {
	border: none;
	margin-top: -3px;
}

#sharedWishList_box {
	border: 1px solid black;
	position: absolute;
	z-index: 1101;
	background-color: white;
}

#sharedWishList_content {
	height: 500px;
}

.loading {
	background-color : White;
	background-position : center;
	background-repeat : no-repeat;
}

#sharedWishList_loading {
	background-color : White;
	background-position : center;
	background-repeat : no-repeat;
	height: 550px;
	padding: 10px;
}

html>body #sharedWishList_loading {
	height: 540px;
}

#sharedWishList_close {
	clear: both;
	background-color: white;
	text-align: right; 
	height: 20px;
}
#sharedWishList_close a {
	margin-right: 20px;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
}

#sharedWishList_rightColumn form {
	text-align: left;
	margin: 0;
	padding: 0 10px; 
	font-family:Arial, Helvetica, sans-serif; 
	font-size:12px;
}

#sharedWishList_rightColumn label {
	display: block;
}

#sharedWishList_rightColumn label .smallText {
	font-size: 11px;
}

#sharedWishList_fromName, #sharedWishList_fromEmail
{
	font-family:Arial, Helvetica, sans-serif;
	border: 1px solid #BCBCBC;
	width: 245px;
	padding: 4px 0 4px 3px;
	margin: 0 0 3px 0;
}

.sharedWishList_toEmail, .sharedWishList_toName
{
	width: 250px;
	font-family:Arial, Helvetica, sans-serif; 
}

#sharedWishList_selfCopy
{
	width: auto; 
}

#sharedWishList_rightColumn label#sharedWishList_selfCopy_label
{
	display:inline;
}
#sharedWishList_msg, message {
	width: 250px;
	height: 80px; 
}

#sharedWishList_sent {
	text-align: center;
}

#sharedWishList_sent h1 {
	font-size: 36px;
	margin: 0;
	padding: 180px 0 0;
}

#sharedWishList_sent div {
	font-size: 16px;
}

#sharedWishList_moreRecipient {
	text-align:right;
	width: 250px;
}

#sharedWishList_moreRecipient a {
	font-size: 11px;
	color: black;
}

#sharedWishList_Recipients {
	margin-top: 10px;
	height: 156px;
	width: 270px;
	overflow: auto;
}

html>body #sharedWishList_Recipients {
	margin-top: 10px;
	height: 148px;
	width: 272px;
	overflow: auto;
}

#sharedWishList_items {
	border: 1px solid Gray;
	height: 400px;
	overflow: auto;
	padding: 5px;
}

html>body #sharedWishList_items {
	border: 1px solid Gray;
	height: 413px;
	overflow: auto;
	padding: 5px;
}

html>body #sharedWishList_items {
	border: 1px solid Gray;
	height: 415px;
	overflow: auto;
	padding: 5px;
}
/* CSS Document */

#login_container {
	width: 250px;
	height: 185px;
	position: absolute;
	z-index: 9999;	
	border: 1px solid black;
	text-align: left;
	background-color: #f2f2f2;
}

#login_container_shadow {
	width: 250px;
	height: 185px;
	position: absolute;
	z-index: 9998;	
	background-color: #666;
}

#login_container_shadow div {
	width: 248px;
	height: 183px;
	background-color: #333;
	margin: 1px;
}

#login_container_shadow div div {
	width: 246px;
	height: 181px;
	background-color: black;
	margin: 1px;
}
span#Address1_hint,
span#billStreet1_hint,
span#shipStreet1_hint {
	display:block;
}

