/*
 * 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;
	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_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 12px Arial, 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: #FFF;
	font : normal 12px Arial, sans-serif;
}
.content_area {
	background: #fff;
        color: #000;
}
.content_area a{
	color: #0000FF;
}
.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: #000099;
	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: #0000FF;
}
.product_price em {
	color: red;
}
.breadCrumb {
	color: #000;
}
.breadCrumb a {
	color: #000;
}
.product_OtherStylesBar {
	background: #000099;
}
.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: #CCCCCC;
}
.sideNavigation H1 {
	color: #000000;
}
.sideNavigation H2 {
	color: #000000;
}
.sideNavigation H3 {
	color: #000000;
}
.sideNavigation strong {
	color: #000;
}
.sideNavigation label {
	color: #000;
}
.sideNavigation a:link {
	color: #000000;
}
.sideNavigation a:visited {
	color: #000000;
	text-decoration: none;
}
.sideNavigationFocusSearch {
	background: #CC0000;
	color: #ffffff;
}
/* .sideNavigation a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #000000;
} */
.searchNavigation {
        color: #000000;
        background: #CCCCCC;
}
.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;
}
.searchPaging {
        color: #000;
        background: #fff;
}
/*.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;
}
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:138px;
	text-decoration:none;
	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;
}

html>body .search_group a {
	width: 133px;
}

.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: navy;
	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;
}
/* ------------------ Header Classes ------------------ */
.mainHeader
{
	height: 106px;
	color: #000000;
	font-size: 12px;
}
.mainHeader .menuCells
{
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	border-right: 1px solid #FFFFFF;
}
.mainHeader .menuCells a:link
{
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .menuCells a:visited
{
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .menuCells a:hover
{
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.mainHeader .menuCells a:active
{
	font-size: 12px;
	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: #FF0000;
	font-size: 12px;
	text-decoration: none;
}
.mainHeader .loginText a:visited
{
	color: #FF0000;
	font-size: 12px;
	text-decoration: none;
}
.mainHeader .loginText a:hover
{
	color: #FF0000;
	font-size: 12px;
	text-decoration: underline;
}
.mainHeader .loginText a:active
{
	color: #FF0000;
	font-size: 12px;
	text-decoration: none;
}
.mainHeader .priceText
{
	color: #FFFFFF;
	font-size: 11px;
}
.mainHeader a:link
{
	color: #0000FF;
	text-decoration: none;
	font-size: 12px;
}
.mainHeader a:visited
{
	color: #0000FF;
	text-decoration: none;
	font-size: 12px;
}
.mainHeader a:hover
{
	color: #0000FF;
	text-decoration: underline;
	font-size: 12px;
}
.mainHeader a:active
{
	color: #0000FF;
	text-decoration: none;
	font-size: 12px;
}
/*------------------ Footer Classes ------------------*/
.mainFooter
{
	color: #FFFFFF;
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
	border-right: 1px solid #FFFFFF;
}
.mainFooter a:link  
{
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
}
.mainFooter a:visited
{
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
}
.mainFooter a:hover
{
	color: #FFFFFF;
	text-decoration: underline;
	font-size: 12px;
}
.mainFooter a:active
{
	color: #FFFFFF;
	text-decoration: none;
}
.footersmall
{
        color: #000000;
        font-size: 10px;
}
.footersmall a:link
{
        color: #0000FF;
        text-decoration: underline;
        font-size: 10px;
}
.footersmall a:hover
{
        color: #0000FF;
        text-decoration: underline;
        font-size: 10px;
}
.footersmall a:active
{
        color: #0000FF;
        text-decoration: underline;
        font-size: 10px;
}
.footersmall a:visited
{
        color: #0000FF;
        text-decoration: underline;
        font-size: 10px;
}
/*--------------------*/
.smalllink
{
        color: #0000FF;
        font-size: 10px;
}
.largebold
{
	font-size: 14px;
	font-weight: bold;
}
.bold
{
	font-size:12px;
	font-weight: bold;
}
.infoBars
{
	font-size: 11px;
	background-color: #CCCCCC;
	background-position: left;
}
.spacerBars 
{
	font-size: 11px;
	color: #FFFFFF;
	background-color: #000099;
}
.specialBars 
{
	font-size: 11px;
	color: #000000;
	background-color: #CCCCCC;
}
.titleBars
{
	font-size: 11px;
	color: #FFFFFF;
	background-color: #000099;
	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
}
.accent
{
	color: #FF0000;
}
.helpBars
{
	background-color: #CCCCCC;
	color: #000000;
}

/* customer service */
#custserv {
	height: 340px;
}

html>body #custserv {
	height: auto;
	min-height: 340px;
}

#helpindex {
	background-color: #ddd;
	width: 220px;
	height: 340px;
	vertical-align: top;
	font-size: 12px;
	margin-right: 10px;
}

html>body #helpindex {
	/*height: auto;*/
	min-height: 340px;
}

#helpindex h3 {
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	margin: 0;
	padding: 10px;
}

#helpindex ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#helpindex li {
	border-bottom: 1px solid white;
	padding: 5px;
}

#helpindex li a {
	text-decoration: none;
	color: black;
}

#helpindex li a:hover {
	color: #666666;
}

/* 
	Styles required for the Flex Footer 
	div { -moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding: 0;}
*/

#bottomnav {
	clear: both;
}

#footerTable {
	width: 966px;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
	font-weight: bold;
}

.footer-flex {
	margin-top: 30px;
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000;
	text-transform: uppercase;
	height: 143px;
	text-align: center;
}

.flex-column {
	float: left;
	width: 171px;
}

#flex-column-sponsor {
	width: 145px;
}

#flex-column-sponsor .flex-titlebar {
	font-size: 11px;
}

#flex-column-shoppingHelp {
	width: 162px;
}

#flex-column-email {
	width: 315px;
}

#flex-column-email form {
	margin: 0;
	padding: 0;
	text-align: center;
}

#flex-column-email .icon {
	float: left;
	margin-left: 20px;
}

#flex-column-email p {
	color: #fff;
	font-size: 12px;
	margin: 10px 0;
	padding: 0;
}

#flex-column-email input {
	color: #666;
}

.flex-titlebar {
	font-size: 13px;
	color: #666769;
	margin-bottom: 5px;
}

.flex-links {
	color: #fff;
	font-size: 11px;
}
.flex-links a {
	text-decoration: none;
	color: #fff;
	display: block;
	margin-bottom: 2px;
}

.flex-links a:hover {
	text-decoration:underline;
}

.emailsignup {
	text-align:left;
	padding-top:4px;
	padding-left:7px;
}

.footer-tagline, .footer-partners
{
	font-size:11px;
	text-align:center;
	color: #9a9899;
	text-transform: uppercase;
}
.footer-tagline a
{
	text-decoration:none;
	color:#9a9899;
	padding-bottom:3px;

}
.footer-tagline a:hover
{
	text-decoration:underline;
}

/* new styles */

img {
	border: none;
}

body {
	background-color: #d5d7d6;
	padding-left: 1px;		
}

html>body {
	padding-left: 0;
}

#body {
	text-align: center;
	padding-top: 37px;
}

.clear {
	clear: both;
}

#primarytable{
	width: 966px;
}
.primarytable{
	width: 966px;
}
#wrapper {
	width: 966px;
	margin: 0px auto;
	text-align: left;
	background-color: white;
}

#main, .fullWidthTable {
	width: 966px;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	font: 12px Arial,sans-serif;
}

#homepage table {
	width: 966px;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	font: 12px Arial,sans-serif;
}

#headerTable {
	width: 966px;
	font: 12px Arial,sans-serif;
	border-collapse: collapse;
	height: 180px;
	font-weight: bold;
	text-transform: uppercase;	
	color: white;
}

#headerTable a {
	text-decoration: none;
	color: white;
}

#headerTable a:hover {
	color: #69C;
}
	
#headerTable td {	
	vertical-align: middle;
}

#topnav {
	position: relative;
}

#homeLink {
	text-align: center;
	left: 349px;
	top: 10px;
	position: absolute;
	width: 268px;
	z-index: 2;	
}

#homeLinkPlaceholder {
	width: 400px;
}

#homeLink p {
	padding: 0;
	margin: 10px 0 0;
}

#headerTableTop td {
	height: 110px;
}

#headerTableBecomeaVIP {
	width: 150px;
	text-align: center;
}

#headerTableGiftCards {
	width: 200px;
}

#headerTableGiftCards img {
	margin-bottom: -4px;
}

#headerTableSearch {
	width: 200px;
	text-align: center;
}

#headerTableSearch form {
	padding: 0;
	margin: 0;
	display: inline;
}

#headerTableSearch form input {
	width: 120px;
}

html>body #headerTableSearch form input {
	width: 130px;
}

#headerTableSearch form img {
	margin-bottom: -2px;
}

#headerTableShoppingCart {
	width: 140px;
	text-align: right;
	padding-right: 10px;
}

#headerTableBottom td {
	padding: 0;
	height: 31px;
}

#headerTableBottom #myaccount {
	float: right;
	padding: 0 5px;
	font-size: 11px;
}

#headerTableBottom #myaccount a {
	padding: 0;
}

#headerTableBottom ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#headerTableBottom li {
	float: left;
}

#headerTableBottom li a {
	display: block;
	text-align: center;
	color: #003b80;
	padding: 0 11px 0 12px;
}

html> body #showcasecellTable {
	margin-top: 0px;
}

/* advanced search page */

#advancedSearch {
	width: 966px;
	border-collapse: collapse;
}

#advancedSearch table {
	border-collapse: collapse;
}

#search_results {
	padding: 0;
	width: 824px;
}

html>body #search_results {
	width: 820px;
}

#search_results table td .product_border {
	width: 137px;
}

html>body #search_results table td .product_border {
	width: 130px;
}

.searchNavigation, .searchNavigation table, .searchNavigation .search_group {
	width: 138px;
}

.sideNavigation {
	width: 138px;
	border-collapse: collapse;
	padding: 0;
	margin: 0;
}

/*** 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;
}

/* product description background */ 
.product_description { 
	margin: 10px 0;
} 

/* other styles divider bar */ 
.product_OtherStylesBar { background-color: #009; } 
.product_OtherStylesBar div { padding: 2px; }
.product_OtherStylesBar a { color: white; } 
.product_OtherStylesBar a:hover { color: white; } 

/* search top and bottom page nav bars */ 
.searchPaging { 
	font-weight: bold; 
	font-size: 12px; 
	color: black; 
	background-color: #e3e3e3; 
} 

#otherStyles {
	width: 966px;
	padding-bottom: 10px;
	font-size: 10px;
}

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

#otherStyles .otherStylesColors td {
	padding-bottom: 20px;
}

/* Shopping Card */
#shoppingCartContainer {
	width: 936px;
	margin: 10px 15px;
	border-collapse: collapse;
}

#shoppingCart {
	width: 735px;
	border-collapse: collapse;
	font : normal 12px Arial, sans-serif;
}

#checkoutOptions table table {
	width: 100%;
}

#paypalOption ul {
	text-align: center;
}

.helpBars td {
	background-color: #ccc;
}

.helpBars b
{
	display: block;
	padding-top: 5px;
	height: 100%;
	background-color: #CCCCCC;
	color: #000000;
}

#checkoutLinks .helpBars td {
	background-color: transparent;
}

#checkoutLinks a {
	text-decoration: underline;
}

#modifyAddressForm {
	padding-top: 20px;
}

#orderFormsWrapper, #displayOrderWrapper {
	text-align: left;
}

#orderForms, #displayOrder {
	width: 966px;
	margin: 0 auto;
}

#mvpicks .product_border {
	width: 130px;
}

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

#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;
}


#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;
}

#accountCreateForm {
	width: 960px;
}

#order_summary {
	font-size: 11px;
	text-align:center;
	text-transform: none;
	padding-left: 13px;
}

.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;
}
.generalVIPForm{
	background-color: #B7CBD7;
}

#XY_inStore {
	padding-right: 6px;
}
.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
{
	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:black 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 .header {
	height:27px;
	padding:5px 5px 0 5px;
	background: url("/images/cs/boris/storepickup_header.png") repeat-x;
}

#storepickup .button {
	#width:90px;
	#height:21px;
	#text-align:center;
	#color:white;
	/*#text-indent:-9999em;*/
	#border:0;
	#background: url("/images/cs/boris/storepickup_btn.png") 0 0 no-repeat;
	#font-weight:bold;
	#padding:2px;
}
/*
#storepickup .button_close {
	#width:90px;
	#height:21px;
	#text-align:center;
	#color:white;
	#text-indent:-9999em;
	#border:0;
	#background: url("/images/cs/boris/storepickup_btn.png") 0 0 no-repeat;
	#font-weight:bold;
	#padding:2px;
}
*/
.modal-overlay {
	background: url("/images/cs/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;
}
#quickview {
	position: absolute;
	z-index: 1001;
	text-align: left;
	/* width: 520px; 	 */
}

#quickview a img {
	border: none;
}

#quickviewContent {
	padding: 0 18px;
}

#quickviewContentBackground {
	position: absolute;
	z-index: 998;
	background: none;
}

.quickviewButtonWrap {
	/* text-align: center; */
}

.quickviewButton {
	position: absolute;
	z-index: 99;
	display: none;
	text-align: center;
}

#quickviewLoading {
	height: 300px;
}

#quickview_top {
	height: 70px;
}

#quickview_topRight {
	height: 70px;
}

#quickview_middle {
	height: 300px; /* have to put some min height so that the background doesn't extend all the way down in ie */
}

html>body #quickview_middle {
	height: auto;
}

#quickview_middleRight {
}

#quickview_bottom {
	clear: both;
	height: 64px;
}

#quickview_bottomRight {
	height: 64px;
}

#quickViewZoomImage {
	text-align: center;
}

#quickview_bottomRight a {
	display: block;
	float: right;
	width: 100px;
	margin: 32px 17px 0 0;
	color: black;
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}

#quickview_bottomRight a .red {
	color: red;
}

#quickview_shipToStore {
	padding-left: 6px;
}

#quickview_inStoreAvailability a img {
	padding: 4px 0;
}

.disabledOption,
.disabledOption * {
	opacity: 0.75;
	filter: alpha(opacity=75);
}
@charset "utf-8";

#quickviewPDP {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;		
}

#quickviewPDP .leftColumn { 
	width: 210px;  
	float: left; 
}

#quickviewPDP .rightColumn {
	width: 260px;
	text-align:left;
	float: right;
}

#quickviewPDP h1 {
	margin: 0;
	padding: 0;
	font-size: 14px;
}

#quickviewPDP h1 a {
	text-decoration: none;
	color: black;
}

#quickviewPDP h1 a:hover {
	text-decoration: underline;
}

#quickviewPDP input {
	padding: 0;
}

#quickviewPDP .otherStylesHeader {
	color: gray;
	font-weight: bold;
	margin-bottom: 10px;
}

#quickviewPDP .otherStyles {
	width: 210px;
	height: 170px;
	overflow: inherit;
	padding: 0 10px;
}

html>body #quickviewPDP .otherStyles {
	width: 190px;
}

#quickviewPDP .viewMoreStyles a {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-decoration: none;	
}	

#quickviewPDP .otherStyles a {
	margin: 5px 2px;
}

#quickviewPDP .otherStyles a img {
	width: 50px;
	height: 50px;
}

#quickviewPDP .otherStyles a.more {
	display: none;
}

#quickviewPDP hr {
	background-color: #bfbfbf;
	color: #bfbfbf;		
	border: 0;
	height: 1px;
}	

#quickviewPDP p {
	margin: 0;
	padding: 0;
}

#quickviewPDP table {
	border-collapse: collapse;
	font-size: 12px;
}

#quickviewPDP .product_image {
	text-align: center;
	margin-bottom: 5px;
}

#quickviewPDP .product_attributes {
	font-weight: normal;
	margin-bottom: 5px;
}

#quickviewPDP #BVQVCustomerRatings {
	margin-bottom: 5px;
}

#quickviewPDP .product_description {
	margin-bottom: 10px;
}

#quickviewPDP .product_description_div {
	height: 200px;
	overflow: auto;
}

#quickviewPDP .product_form {
	padding: 0;
	margin: 7px;
}

#quickviewPDP .product_form table {
	padding: 0;
	margin: 0;
}

#quickviewPDP .product_form td {
	vertical-align: middle;
} 

#quickviewPDP .product_form td img {
	margin-bottom: -1px;
} 

html>body #quickviewPDP .product_form td img {
	margin-bottom: -5px;
} 

.clear {
	clear: both;
}

/*
#quickviewPDP .viewdetailButton {
	display: block;
	border: 2px solid #f26522;
	margin-top: 10px;
	padding: 2px 3px;
	width: 80px;	
	background-color: white;
	color: #f26522;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

#quickviewPDP .viewdetailButton:hover {
	border: 2px solid red;
	color: red;
}
*/

#quickviewPDP .product_size select {
	width: 180px;
	font-size: 10px;
}

#quickviewPDP #backorderMsg {
	font-size: 10px;
	color: red;
}

#quickviewSubmitButton {
	float: left;
	margin: 5px 5px 5px 0;
	padding: 0;
	vertical-align: top;
}

#quickviewMoreInfo {
	float: left;
	margin: 0;
	padding: 0;	
}

html>body #quickviewMoreInfo {
	margin: 0;
}

#quickview_excludedMessage {
	padding-top:10px;
	font-size: 12px;
	color: red;
}

#quickview_excludedMessage a {
	color: red;
	text-decoration: underline;
	cursor: help;
}

#quickviewPDP #product_priceTier {
	color: red;
	padding-left: 41px;
}

#quickview_freeShipping {
	padding-top:2px;
	font-size: 12px;
	color: red;
}

#quickview_freeShipping a {
	color: red;
	text-decoration: underline;
	cursor: help;
}
.quickview_oldPrice {
	text-decoration: line-through;
}

.quickview_salePrice {
	color: red;
	font-weight: bold;
}
#quickviewPDP #QVpdp_price {
	height:30px;
}

#QVpdp_maskPurchasePrice {
	color: #FF0000;	
	white-space: nowrap;	
	font-weight: normal;
}

#QVpdp_maskPurchasePrice a {
	color: #FF0000;	
	white-space: nowrap;
	text-decoration:underline;
	font-weight: normal;
	cursor: help;
	

}

#shippingRestrictionMessage {
	color: red;
	font-size: 12px;
	padding-top: 10px;
}

#quickview #qv_info #qv_launch_disclaimer {
	font-weight: bold;
	color: #F00;
	padding:15px 0;
}

#quickview #qv_info #qv_unavailable_for_purchase {
	border: 1px solid gray;
	color: gray;
	padding: 5px;
	margin: 10px 0 30px 0;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
}

#quickview #qv_info #qv_unavailable_for_purchase div {
	font-weight: bold;
	color: #F00;
	font-size: 12px;
}

#addToWishlist {
	float: left;
	margin-bottom: 10px;
	padding: 5px 10px 0 0;
}

#ws_login_container {
	width: 400px;
	height: 230px;
	position: absolute;
	z-index: 9999;	
	/*border: 1px solid black;*/
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#ws_login_container_shadow {
	width: 400px;
	height: 230px;
	position: absolute;
	z-index: 9998;	
	background-color: #666;
}

#ws_login_container_shadow div {
	width: 398px;
	height: 228px;
	background-color: #333;
	margin: 1px;
}

#ws_login_container_shadow div div {
	width: 396px;
	height: 226px;
	background-color: black;
	margin: 1px;
}

.login-dialog-win {
	background:  #f2f2f2;
	text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 12px;
}



#ws_login {
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

h1.caption {
	font-size: 14px;
	margin: 1px;
	padding: 1px;
}

.caption {
	font-weight: bold;
}
.closewin {
	text-align: right;
	position: absolute;
	right: 5px;
	top: 5px;
}


#ws_login form {
	margin: 10px;
	padding: 0;
}



#ws_login form label {
	display: block;
}

#ws_login form input.text {
	margin-left: 15px;	
	width: 195px;
}
#ws_login .smallforgot {
	margin-left: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}

#ws_login form .submit {
	text-align: right;
	margin: 5px 10px 0 0;
}

#ws_login .signup {
	margin-top: 10px;
}

html>body #ws_login .signup {
	margin-top: 18px;
}

#email_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: red;
}

#password_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: red;
}
#login_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: red;
	font-weight: bold;
	height: 16px;
	width: 90%;
}
#login_error.locked {
	font-size: 9px;
}

/**Select Dialog**/
#wl_select {
	margin: 4px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#wl_select ul li {
	list-style-type:none;
}



#select_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: red;
}

#create_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: red;
}

/** ItTem added  Dialog **/

#wl_added .caption, #wl_password_sent .caption {
	text-align: left;
	font-weight: bold;
}


#wl_password_sent .caption {
	padding: 10px 5px;	
}


#wl_added {
	margin: 10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;

}

#wl_added_container {
	padding: 5px;
}

.center {
	text-align: center;
}

/** forgot password dialog **/
#wl_forgot_password {
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#forgot_error {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: red;
}

/**
#wl_forgot_password .closewin {
text-align: right;
}
**/

#wl_forgot_password form {
	margin: 10px;
	padding: 0;
}


#wl_forgot_password form label {
	display: block;
}

#wl_forgot_password form input.text {
	margin-left: 15px;	
	width: 195px;
}

#wl_forgot_password form .submit {
	text-align: right;
	margin: 5px 10px 0 0;
}

#wl_forgot_password .signup {
	margin-top: 18px;
}

.cart_addToWishlist a {
	border: 1px solid #999;
	padding: 3px 5px;
	line-height: 25px;
	text-decoration: none;
	background-color: #FFF;
	color: black;
}

#cart_addToWishlist a:hover {
	background-color: #ccc;
}

/*
body {
	background-color: #f2f2f2;
	padding: 0px;
	margin: 0px;
}
*/

.login-dialog-win A {
color:#000;
}

.login-dialog-win A:hover {
color:#333;
}
#miniAddToCartWrapper {
	/* position: fixed; */
	position: absolute;
	width: 362px;
	/*height: 700px;
	overflow: hidden;*/
	z-index: 99999;	
	/*padding-left: 10px;*/
	margin-top: 3px;
}

#miniAddToCartWin {
	position: relative;
	border: 1px solid black;
	background-color: white;
	text-align: left;
	font-family: Arial,Helvetica,sans-serif;
	-moz-box-shadow: -5px 5px 5px #999;
	-webkit-box-shadow: -5px 5px 5px #999;
	font-size: 11px;
}

#miniAddToCartWin img {
	border: none;
}

#miniAddToCart_header {
	background-color: black;
	color: #2891ff;
	font-weight: bold;
	padding: 5px 10px;
	position: relative;
	font-size: 12px;
}

a#miniAddToCart_close {
	top: 0;
	right: 10px;
	position: absolute;
	color: white;
	text-decoration: none;
	font-size: 11px;
	padding: 5px 0;;
}

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

#miniAddToCartWin table {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
	clear: both;
	margin: 0 auto;
}

#miniAddToCartWin table td {
	vertical-align: top;
}

.miniAddToCart_productAttributes {
	list-style: none;
	color: gray;
	margin: 0;
	padding: 0;
}

#miniAddToCart_productInfo {
	margin: 10px;
}

.miniAddToCart_productImage,
.miniAddToCart_productPrice {
	width: 55px;
}

.miniAddToCart_productPrice {
	text-align: right;
}

.miniAddToCart_productPrice .listPrice {
	text-decoration: line-through;
}

.miniAddToCart_productPrice .salePrice {
        color: red;
		font-weight: bold;		
}

.miniAddToCart_productDetail {
	width: 170px;
}

#miniAddToCart_cartInfo {
	background-color: #ccc;
	padding: 3px 5px;
	position: relative;
	font-weight: bold;
}

#miniAddToCart_subtotal {
	position: absolute;
	right: 5px;
	top: 3px;
}

#miniAddToCart_numberOfItems {
}

#miniAddToCart_ymal {
	clear: both;
	color: gray;
}

#miniAddToCart_ymal table {
	color: gray;
	margin: 10px 0;
}

#miniAddToCart_ymal p {
	margin: 0;
	padding: 3px 5px;
}

#miniAddToCart_ymal td {
	text-align: center;
	padding: 0 5px;
	width: 92px;
}

#miniAddToCart_ymal img {
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
}

#miniAddToCart_actions {
	border-top: 1px solid gray;
	padding: 15px 25px;
	text-align: right;
}

#miniAddToCart_actions img {
	padding: 0 5px 5px;
}

#miniAddToCartWin .error {
	color: red;
}

#miniAddToCart_error {
	padding: 10px;
	list-style: none;
	margin: 0;
	height: 120px;
	font-weight: bold;
}
#miniAddToCart_error li{
	margin-top: 52;
}

#order_summary_content  strong {
	color: #FFF;
}


/*  *  *  *  * */
#moreYmalWindowWrapper {
	position: absolute;
	width: 640px;
	height: 720px;
	overflow: hidden;
	z-index: 99999;	
	padding-left: 0px;
	padding-top:150px;
	#padding-top:110px;
}

#more_ymal_minicartContainer {
	text-align: center;
}
#more_ymal_minicart {
	width: 190px !important;
	height: 20px !important;
	cursor: pointer;
}

/* from quickview */
#moreYmalWindow {
	position: relative;
	z-index: 1001;
	text-align: left;
	background-color: white;
	text-align: left;
	font-family: Arial,Helvetica,sans-serif;
	-moz-box-shadow: -5px 5px 5px #999;
	-webkit-box-shadow: -5px 5px 5px #999;
	font-size: 11px;
	/* width: 520px; 	 */
}

#moreYmalWindow a img {
	border: none;
}

#moreYmalWindowContent {
	width: 602px;
	padding: 0 0px 0 0px;
	margin-left:18px;
	#margin-left:5px;
	border: 2px solid;
	/*border-color: #AD1400;*/
}

#moreYmalWindowContentBackground {
	position: absolute;
	z-index: 998;
	background: none;
}

/*#moreYmalWindowLoading {
	height: 300px;
}*/

#moreYmalWindow_top {
	height: 70px;
}

#moreYmalWindow_topRight {
	height: 70px;
	font-size:18px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 80px;
	padding-top: 25px;
}

#moreYmalWindow_middle {
	height: 300px; /* have to put some min height so that the background doesn't extend all the way down in ie */
}

html>body #moreYmalWindow_middle {
	height: auto;
}

#moreYmalWindow_middleRight {
}

#moreYmalWindow_bottom {
	clear: both;
	height: 64px;
}

#moreYmalWindow_bottomRight {
	height: 64px;
}

#moreYmalWindow_bottomRight a {
	display: block;
	float: right;
	width: 100px;
	margin: 32px 17px 0 0;
	color: black;
	font: 12px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}

#moreYmalWindow_bottomRight a .red {
	color: red;
}

#miniAddToCart_productInfo .shipping_restriction_message {
	color: red;
}

#launchHalt {
	color:black;
}

#launchHalt A {
	color:red;
}
#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;
}

