/*
 * 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); }
/*
	add/change fonts in typography.css
*/
.content_area a {
	color: #000;
	text-decoration: none;
}
.content_area_red {
	background: #fff;
	color: #FF0000;
}
.content_area_header {
	background: #fff;
	color: #000000;
	font-size: 18px;
	font-weight: bold;
}
.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;
}

div.product_border {
	border: 1px solid #fff; 
}

.navigationExtraDark {
	color: #000;
}
.navigationExtraDark a {
	color: #000;
}
.navigationExtraDark a:hover, .navigationExtraDark a:focus, .navigationExtraDark a:active {
	color: #7e175e;
}
.navigationDark {
	color: #000;
}
.navigationDark a {
	color: #000;
}
.navigationDark a:hover, .navigationDark a:focus, .navigationDark a:active {
	color: #c103ab;
}
.linkButton a {
	color: #000;
	background: #ccc;
}
.linkButton a:hover, .linkButton a:focus, .linkButton a:active {
	color: #000;
	background: #ffd551;
}

.searchUnselect {
	color: #F33;
}

.searchNavigationFocusSearch, .searchnavigationFocusSearch {
	background: #FFD551;
}

#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: 126px;
	text-decoration:none;
	padding: 1px 1px 1px 2px;
	background-color: #292929;
	border-top: 1px solid #494949;
	border-left: 1px solid #494949;
	border-bottom: 1px solid #090909;
	border-right: 1px solid #090909;
}

.search_group a:hover {
	background-color: #090909;
	border-top: 1px solid #090909;
	border-left: 1px solid #090909;
	border-bottom: 1px solid #494949;
	border-right: 1px solid #494949;
	color: white;
}

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

.filter_button_up {
	margin: 0;
	padding: 0;
	float:left;
	display: block;
	padding: 1px 1px 1px 2px;
	background-color: #292929;
	border-top: 1px solid #494949;
	border-left: 1px solid #494949;
	border-bottom: 1px solid #090909;
	border-right: 1px solid #090909;
}
	
.filter_button_down {
	margin: 0;
	padding: 0;
	float:left;
	display: block;
	padding: 1px 1px 1px 2px;
	background-color: #090909;
	border-top: 1px solid #090909;
	border-left: 1px solid #090909;
	border-bottom: 1px solid #494949;
	border-right: 1px solid #494949;
}
	
.filter_available {
	font: 11px Arial, sans-serif;
	color: #FFF;
}
.filter_active {
	font: 11px Arial, sans-serif;
	color: #99cccc;
}
a.filter_active:hover {
	color: #99cccc;
}	
.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, .navigationContent a:focus, .navigationContent a:active {
	color: #FFD551;
}
/*---- personalizationshop ----*/
.ppSectionNumber {
	background-color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	border-top: 2px solid #CCCCCC;
	border-left: 4px solid #CCCCCC;
	border-bottom: 2px solid #CCCCCC;
	border-right: 4px solid #CCCCCC;
}
.ppSectionHeader {
	background-color: #CCCCCC;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}

.footernav-back {
	width:100%;
	height:67px;
	z-index:0;
}
.footernav {
	z-index:1;
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	text-align:left;
	padding-top:2px;
	padding-left:2px;
	padding-right:2px;
}
.footernav a {	
	text-decoration:none;
	color:#000000;
	padding-bottom:3px;

}
.footernav a:hover {	
	text-decoration:underline;
}


/***************************** new styles **********************************/

body {
	margin: 0; padding: 20px 0 0;
	font: 12px Helvetica, Arial, sans-serif;
	background-color: #97989c;
}

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

table a {
	color: black;
}

table a:hover {
	color: #666;
}

table td {
	vertical-align: top;
}

img { border: 0; }

.clear {
	clear: both;
}			

.center {
	text-align: center;
}

#body {
	text-align: center;	
}

#wrapper {
	margin: 0 auto;	
	width: 966px;
	text-align: left;
}

table#main {
	border-collapse: collapse;
	width: 966px;
}

#main td {
	margin: 0;
	padding: 0;
}

#content_area { background-color: #1C1C1C; }

/* background color: product detail and shopping cart */ 
.content_area { background-color: white; }

.oldPrice {
	font-weight: bold;
	text-decoration: line-through;
}

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

.small {
	font-size: 10px;
}

/**************************
	advanced search page
**************************/

#advancedSearch {
	width: 966px;
	border-collapse: collapse;
	background-color: #1C1C1C;
}

#advancedSearch #searchResult {
	background-color: white;
}

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

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

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

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

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

#search_results a:hover span {
	text-decoration: underline;
}

#search_results .other_product_attributes {
	font-size: 10px;
}

#search_results a:hover {
	color: #666;
}

.product_cell {
	padding: 10px;
	text-align: center;
}

.product_cell a {
	text-decoration: none;
}

.otherStylesColors .product_cell {
	padding: 0;
}

.otherStylesColors .product_cell_6 {
	padding: 0;
}


#endecaSearch li .product_price em, 
#search_results .product_cell .product_price em {
	color: red;
}

#advancedSearch td {
	width: auto;
}

#advancedSearch .sideNavigation {
	width: 128px;
	
}

#advancedSearch .sideNavigation table img {
	display: none;
}

#advancedSearch .sideNavigation h1 {
	font-size: 14px;
}

#advancedSearch .sideNavigation h2 {
	margin: 10px 2px 0;
	padding: 0;
}

#advancedSearch .sideNavigation h3 {
	margin: 0 2px;
}

#advancedSearch .sideNavigation select {
	margin: 0 2px;
}

/* ymal */

#ymalDetail {
	text-align: center;
	padding-top: 10px;
}

#ymalDetail #ymalAddedToCart {
	margin-bottom: 20px;
}

#ymalDetail #ymalAddedToCart img {
	margin-bottom: 5px;
}

#ymalDetail {
	text-decoration: none;
}

#ymalAddedToCart a {
	color: black;
}

#ymalAddedToCart a:hover {
	color: red;
}

#contentTable {
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	background-color: white;
	width: 966px;
}

#contentTableBody {
	padding: 0;
}

/* Customer Service */

table#custserv {
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
}

#helpindex {
	background-color: #ddd;
	width: 220px;
}

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

#helpcontent {
	padding: 20px;
    font-size: 12px;
}

#helpcontent h1 {
	font-size: 24px;
	margin: 0 0 10px 0;
	padding: 5px;
	background-color: black;
	color: white;
}

#helpcontent h2 {
	font-size: 18px;
	margin: 0 0 10px 0;
	padding: 5px 0;
}

#helpcontent .header {
	font-size: 14px;
	font-weight: bold;
}

.locator form {
	width: 300px;
	text-align: right;
}

.locator ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.locator li {
	width: 222px;
	float: left;
	margin: 20px;
	padding: 15px 10px 0px;
}

/**************************
	Side Navigation
**************************/

.goSubmitButton {
	border: 1px solid white;
	background-color: #D10500;
	padding: 0;
	margin: 0 0 0 5px;
	color: white;
}

.sideNavigation {
	width: 138px;
	background-color: #e3e3e3;
}

.searchNavigation, .searchnavigation {
	width: 128px;
	color: white;
	background-color: #1C1C1C;
}

.sideNavigation form, .searchNavigation form,  .searchnavigation form  {
	padding: 0;
	margin: 0;
}

.sideNavigation h1 {
	background-color: black;
	color: white;
	margin: 0;
	padding: 3px;
	text-align: center;
	text-transform: uppercase;
	font-size: 16px;
	width: 138px;
}

html>body .sideNavigation h1 {
	width: 132px;
}

.sidenav {
	padding: 5px 10px 0;
}

.sidenavTitle {
	font-weight: bold;
	cursor: pointer;
}

.sidenav ul.expand {
	display: block;
}

.sidenav ul {
	display: none;
	list-style-type: square;
	margin: 0 0 0 20px;
	padding: 0 0 0 5px;
	font-size: 8px;
}

.sidenav .moreSideNav ul {
	padding-left: 20px;
}

.sidenav .moreSideNavLink {
	font-weight: bold;
	font-size: 11px;	
	margin: 0 0 0 25px;
	cursor: pointer;
}

.sidenav ul li a {
	font-size: 11px;
}

.sidenav ul li.selected {
	font-weight: bold;
}

.sideNavigation h2 {
	border-top: 2px solid black;
	font-size: 12px;
	margin: 0 0 5px;
}

.sideNavigation h3 {
	margin: 0;
	padding: 0;
	font-size: 12px;
}

.sideNavigation h2.sizeSearchTitle {
	margin: 10px 5px 0;
	padding: 0;
}

.sideNavigation .searchDropDown {
	padding: 0 4px 10px;
	margin: 0;
}

.sideNavigation .searchDropDown select {
	font-size: 12px;
}

.sideNavigation a {
	text-decoration: none;
}

.sideNavigation #selectnav_mvps {
	padding: 0 4px 10px;
}

.sideNavigation #selectnav_mvps ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 11px;
}

.sideNavigationFocusSearch {
	background-color: #92c2d0;
	color: white;
	font-weight: bold;
	text-align: center;
}

#focusSearchForm {
	padding-bottom: 10px;
}

.searchNavigation h1, .searchnavigation h1 {
	color: red;
	font-size: 14px;
	margin: 0;
	padding: 0;
}
.searchH1 { 
	color: red;
	font-size: 14px;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
.searchNavigation h2, .searchnavigation h2 {
	color: #99cccc;
	font-size: 12px;
	margin: 10px 0 0 0;
	padding: 0;	
}
.searchH2 {
	color: #99cccc;
	font-size: 12px;
	margin: 10px 0 0 0;
	padding: 0;	
	font-weight: bold;
}

.searchNavigation h3, .searchnavigation h3 {
	color: white;
	font-size: 12px;
	margin: 0;
	padding: 0;	
}
.searchH3 {
	color: white;
	font-size: 12px;
	margin: 0;
	padding: 0;	
	font-weight: bold;

}

/* filter options help text */ 
.searchNavigation em, .searchnavigation em { 
	font-size: 11px;
	color: white;
	font-style: normal;
} 

#Clothing_size_search h2, #Shoes_size_search h2 {
	margin-top: 0;
}

#Clothing_size_search, #Shoes_size_search {
	margin-top: 10px;
}

/*** PRODUCT DETAIL ***/ 
#pdp {
	padding: 10px;
}

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

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

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

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

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

#pdp .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: #333; } 
.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;
}

/* x for y */
.xfory th {
	background-color: #bbb;	
	padding: 2px 5px;
	text-align: left;
}

.xfory th.rightAlign {
	text-align: right;
}

.minicart, .minicart table {
	border-collapse: collapse;
	width: 100%;
}

.minicart table {
	border: 4px solid #bbb;
	margin-bottom: 15px;
}

.bordered table {
	border: 4px solid red;
}

.minicart td {
	padding: 2px 5px;
}

#otherStyles .selected {
	border: 2px solid red;
}

.xfory #pdpImage {
	padding-right: 30px !important;
}

.xfory .product_description div {
	border: 1px solid black;
	padding: 5px;
	margin-bottom: 10px;
}

.xfory_note {
	color: red;
	text-align: center;
}

.xfory_top {
	width: 700px;
}

.xfory_top td {
	padding-bottom: 10px;
	vertical-align: middle;
}

.xfory_promoInfo {
	padding-left: 10px;
}

.xfory .buttons {
	padding: 10px 0;
}

.xfory .pdpInfo {
	padding: 10px 0px;
}

.xfory {
	padding: 10px;
}

/*** CHECKOUT ***/ 
/* shopping cart totals background */ 
.cart_calc { background-color: #ccc; } 


/*** FOOTER ***/ 
/* footer text */ 
.footer_bot_link_content { color: black; font: normal 11px/12px Arial, sans-serif; width: 770px; } 

/* footer link - inactive */ 
.footer_bot_link_content a { color: black;} 

/* footer link - rollover */ 
.footer_bot_link_content a:hover, .navigationLight a:focus, .navigationLight a:active {color: #ee0000;} 


/* CUSTOMER SERVICES */ 
/* topic header text and section background */ 
.customer_service { 
	color: black; 
	background-color: white; 
	font-size: 12px;
} 

/* side nav text */ 
.customer_service a { color: black; } 
.customer_service a:hover { color: #EE0000;} 

/* side nav header */
#help_index { width: 120px; }
.help_index {
	text-align: center;
	background-color: #FFC125; 
	padding: 3px;
	color: white; 
	font-size: 14px;
	margin-bottom: 5px;
	display: block;
}

#help_index ul {
	list-style-type: square;
	padding: 0;
	margin: 0 0 0 15px;
}

#help_index li {
	margin-bottom: 5px;
}

/* item, model summary */

.summarybody ul {
	list-style: none;
	padding: 5px;
	margin: 0;
}

.summarybody li {
	width: 160px;
	height: 200px;
	float: left;
}

.resultInfo {
	padding: 10px;
}

.paging {
	clear: both;
}

.paging ul {
	float: right;
}

.summarybody .paging li {
	width: auto;
	height: auto;
	margin: 5px;
}

.paging li a {
	text-decoration: none;
	border: 1px solid black;
	display: block;	
	width: 30px;
	text-align: center;
}

.paging li a:hover {
	border: 1px solid #666;
}

.paging li a.current {
	font-weight: bold;
	color: white;
	background-color: black;
}

.clear {
	clear: both;
}

.red {
	color: red;
}

/* shopping cart */

#shoppingCartContainer {
	width: 936px;
	margin: 10px 15px;
	border-collapse: collapse;
}

#shoppingCart {
	width: 735px;
	border-collapse: collapse;
}

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

/* giftcard */

#giftcard td {
	padding: 5px;
}

#giftcard th {
	background-color: #ccc;
	font-weight: normal;
	padding: 5px;
	text-align: left;
}

/* survey questions */

#survey_questions_form {
	width: 700px;
	padding: 0 20px;
	margin: 0;
}

#survey_questions_form #survey_questions {
	width: auto;
}

#survey_questions {
	width: 700px;
}

#survey_questions td {
	text-align: left;
}

/* my account */

#myaccount_custserv {
	margin: 20px;
	width: 900px;
}

#myaccount_custserv a {
	text-decoration: underline;
}

#accountCreateForm {
	width: 966px;
}

.bold {
	font-weight: bold;
}
.floatLeft { float: left; }
.floatRight { float: right; }
.width200 { width: 200px; }
/* ship info table */
.shipInfoTable { border-collapse: collapse; }
.shipInfoTable th { 
	border: 1px solid black; 
	background-color: black; 
    color: white; 
    text-align: center;
}
.shipInfoTable td { 
	border: 1px solid black; 
    text-align: center;
    padding: 5px;
}
.shipInfoTable tr.grayBar {
	background-color: #ccc;
}

.outOfStock a {
	text-decoration: underline;
}

.payment_type {
	width: 100px;
}

.payment_type input {
	float: left;
}

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

#shoppingCart_right_wrapper {
	padding : 36px 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;
}
.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:#ffcf01;
}

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

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

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

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

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

#storepickup .button {
	#width:90px;
	#height:21px;
	#text-align:center;
	#color:white;
	#border:0;
	#background: url("/images/fa/boris/storepickup_btn.png") 0 0 no-repeat;
	#font-weight:bold;
	#padding:2px;
}
.modal-overlay {
	background: url("/images/fa/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;
}

