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

.tpd-tooltip {
  position: absolute;
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

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

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

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


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

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


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

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


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



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



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


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

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


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

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

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


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


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


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

.content_area_red_small {
	color: #ff0000;
	font: 11px Arial, sans-serif;
}
/*
	add/change fonts in typography.css
*/
body  {
	background-color: #f7f5f6 !important;
}
.content_area {
	background: #fff;
        color: #000;
}
.content_area a{
	color: #000;
}
.content_area_red {
	background: #fff;
	color: #FF0000;
}
.content_area_header {
	background: #fff;
	color: #000000;
}
.content_area_small {
	background: #fff;
	color: #000000;
}
.cart_detail {
	background: #FFFFFF;
}
.cart_detail td {
	border-top: 3px solid #ccc;
	padding: 5px 0;
}

.cart_detail td table td {
	border-top: none;
	padding: 0;
}

.outfitbuilderItem td {
	border-top: 3px solid white;
}

.cart_header_detail {
	background: #CCCCCC;
	color: #000000;
}
.cart_detail_red {
	background: #FFFFFF;
	color: #FF0000;
	font-weight: bold;
}
.cart_calc {
	background: #FFCC33;
}
.product_name {
	background: #fff;
	color: #000;
}
.product_description {
	background: #fff;
        color: #000;
}
div.product_border {
	border: 1px solid #fff; 
}
div.product_cell {
	background: #fff;
}
.product_cell a {
	color: #000;
}
.product_price em {
	color: red;
}
.breadCrumb {
	color: #000;
}
.breadCrumb a {
	color: #000;
}
.product_OtherStylesBar {
	background: #292929;
}
.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: #fff;
}
.navigationLight a {
	color: #fff;
}
.navigationLight a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #FFD551;
}
.linkButton a {
	color: #000;
	background: #ccc;
}
.linkButton a:hover, .linkButton a:focus, .linkButton a:active {
	color: #000;
	background: #ffd551;
}
.sideNavigation {
	color: #fff;
	background: #292929;
}
.sideNavigation H1 {
	color: #ffd551;
}
.sideNavigation H2 {
	color: #ffd551;
}
.sideNavigation H3 {
	color: #fff;
}
.sideNavigation strong {
	color: #fff;
}
.sideNavigation label {
	color: #fff;
}
.sideNavigation a {
	color: #fff;
}
.sideNavigationFocusSearch {
	background: #FFD551;
}
.sideNavigation a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #FFD551;
}
.sideNavHeading {
	color: #ffd551;
	font: bold 12px/14px Arial, sans-serif;
	padding: 0px 0 1px 0px;
	margin: 0;
	
}
.searchNavigation {
        color: #fff;
        background: #292929;
}
.searchPaging {
        color: #000;
        background: #CCC;
}

/*.searchNavigation H1 {
        color: #F33;
}*/
.searchH1 {
		padding: 0px 0px 0px 2px;
		color: #F33;
		font: bold 16px Arial, sans-serif;
}
.searchUnselect {
        color: #F33;
}
/*.searchNavigation H2 {
        color: #ffd551;
}*/
.searchH2 {
		color: #ffd551;
		font: bold 12px/14px Arial, sans-serif;
        padding: 10px 0 1px 0px;
        margin: 0;
}
/*.searchNavigation H3 {
        color: #fff;
}*/
.searchH3 {
		font: bold 11px Arial, sans-serif;
        padding: 2px 0 0 1px;
        margin: 0;
		color: #fff;
}

.searchNavigation em {
	color: #fff;
}
.searchNavigation strong {
        color: #fff;
}
.searchNavigation label {
        color: #fff;
}
.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: 138px;
	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;
}

html>body .search_group a {
	width: 133px;
}
	
.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;
}

.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: #FFD551;
}
	
.filter_unavailable {
	font: 11px Arial, sans-serif;
	color: #898989;
}

.navigationFooter {
	color: inherit;
	background: #000;
}
#brands {
        color: #000;
}
#brands a {
        color: #000;
}
.navigationContent a {
	color: #000;
}
.navigationContent a:hover, .navigationLight a:focus, .navigationLight a:active {
	color: #FFD551;
}
/*---- 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;
}

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


/* custom product kit */

#pdp_kit {
	font-family: Arial, Helvetica, sans-serif;
}

#pdp_kit .product_info {
	font-size: 12px;
}

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

#pdp_kit .kit {
	text-align: center;
    padding-top: 5px;
    border-collapse: collapse;
}

.bold {
	font-weight: bold;
}

#pdp_kit .kitTable {
	width: 755px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#pdp_kit .kitTable td {
	border: 2px solid black;
    text-align: center;
    vertical-align: top;
	padding: 10px;
}

#pdp_kit .noOptionsKitTable .options {
	display: none;
}

#pdp_kit .kitTable .options {
	width: 225px;
}

#pdp_kit .kitTable .image {
	width: 100px;
}

#pdp_kit .kitTable .noborder {
	border: none;
	padding: 0;
}

#pdp_kit .kitTable .noborder p {
	padding-bottom: 5px;
}

#pdp_kit .kitTable .spacing td {
	border: none;
    font-size: 1px;
	padding: 0;
}

#pdp_kit .kitTable h6 {
	font-size: 12px;
    margin: 5px 0 10px;
    padding: 0;
}

#pdp_kit .kitTable .info {
	vertical-align: top;
    text-align: left;
}

#pdp_kit .kitTable .info p {
	margin: 0;
    padding: 0;
}

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

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

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

/*** PRODUCT DETAIL ***/ 

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

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

#sort_filters {
	font-weight: normal;
	font-style: italic;
	line-height: 20px;
}

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

#sort_filters a.selected {
	color: #F33;
}

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

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

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

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

.feature_style {
	font-family:Verdana;
	font-size:10px;
	font-weight:bold;
	padding-bottom:2px;
	vertical-align:text-top;
}
#paypalOption {
	width: 100%;
}

#RegisteredUsers {
	width: 100%;
}

.rightside {
	width: 828px;
	padding-top: 2px;
	padding-left: 1px;
}

#wrapper {
	width: 770px;
}

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

/* my account */

#accountCreateForm {
	width: 966px;
}

#survey_questions td {
	text-align: left;
}

#displayOrder #container {
	margin: 0;
}

html>body #displayOrder #container {
	margin: 0 20px 0 0;
}
#primarytable{
	width: 966px;
}
.primarytable{
	width: 966px;
}
.custserv_index {
	width: 200px;
}
.custserv_content {
	width: 766px;
	font-family:Arial,sans-serif;
	font-size:12px;
	font-size-adjust:none;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
}
.largebold
{
	font-size: 14px;
	font-weight: bold;
}
.bold
{
	font-weight: bold;
}
.infoBars
{
	font-size: 11px;
	background-color: #CCCCCC;
	background-position: left;
}

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

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

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

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

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

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

.cart_premiersource {
	text-align: right;
}

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

#order_summary {
	font-family: Arial, Helvetica, sans-serif; 
	font-size: 12px;
	float: right;
	margin: 0;
	width: 130px;
	position:absolute;
	top: 68px;
	right: 0px;
}

#order_summary .label {
	float: left;
	width: 58px;
	font-weight: bold;
	text-align: right;
}

#order_summary .value {
	float: right;
	width: 70px;
	text-align: left;
	color: red;
	font-weight: bold;
}

#cartClubEnrollment {
	/* margin-bottom:-50px; */
	margin-left:38px;
}

#BVCustomerRatings a:link
{
	color: #000000;
}
#BVCustomerRatings a:visited
{
	color: #000000;
}
#BVCustomerRatings a:hover
{
	color: #000000;
}
#BVCustomerRatings a:active
{
	color: #000000;
}

.product_maskPurchasePrice {
	color: red;
}
.product_maskPurchasePrice a{
	color: red;
	font-weight: normal;
	text-decoration: underline;
	cursor: help;
	
}
.size_main {
width:564px;
height:auto;
position:relative;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
}

.size_header {
width:564px;
float:left;
border:#808080 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;
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;
}
#tellafriend_link {
	/* float: right; */
	text-decoration: none;
	/* border: 1px solid gray; */
	color: black;
	padding: 1px;
}

#tellafriend_link img {
	border: none;
	margin-bottom: -4px;
}

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

#tellafriend_content {
	height: 440px;
}

.loading {
	background: white url(images/loader.gif) center no-repeat;
}

#tellafriend_loading {
	background: white url(images/loader.gif) center no-repeat;
	height: 420px;
	padding: 10px;
}

html>body #tellafriend_loading {
	height: 410px;
}

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

#leftColumn {
	width: 330px;
	float: left;
	text-align: center;
}

#leftColumn h1 {
	margin: 0;
	padding: 0;
	font-size: 18px;
}

#leftColumn h2 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-size: 14px;
}

#leftColumn img {
	padding: 5px;
}

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

#leftColumn .product_description {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: justify;
}

#leftColumn .product_description div {
	height: 140px;
	overflow: auto;
	padding-right: 5px;
}

#rightColumn {
	border-left: 1px solid gray;
	width: 290px;
	float: right;
	text-align: right;
}

#stamp {
	padding: 5px;
}
*/

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

#rightColumn label {
	display: block;
}

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

#tellafriend_fromName, #tellafriend_fromEmail, #tellafriend_toEmail, #tellafriend_toName, #tellafriend_subject
{
	width: 270px; font-family:Arial, Helvetica, sans-serif; 
}

#tellafriend_selfCopy
{
	width: auto; 
}

#rightColumn label#tellafriend_selfCopy_label
{
	display:inline;
}
#tellafriend_msg, message {
	width: 270px;
	height: 120px; 
}

#tellafriend_sent {
	text-align: center;
}

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

#tellafriend_sent div {
	font-size: 16px;
}#gLightBox_bg {
	background-color: black;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: 998;
}

#gLightBox {
	position: absolute;
	z-index: 999;
	left: 0;
	top: 0;	
}

#gLightBox iframe {
	border: none;
	width: 100%;
	height: 100%;
}

#gLightBox_content {
	overflow: hidden;
	text-align: left;
	background-color: white;
}

#gLightBox_top {
	height: 70px;
}

#gLightBox_topLeft {
	width: 200px;
	height: 70px;
	float: left;
}

#gLightBox_topMiddle {
	height: 70px;
	float: left;
}

#gLightBox_topRight {
	width: 160px;
	height: 70px;
	float: left;
}

#gLightBox_middle {
	clear: both;
	padding-left: 18px;
	height: 100px;
}

html>body #gLightBox_middle {
	height: auto;
}

#gLightBox_middleRight {
	padding-right: 18px;
}

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

#gLightBox_bottomLeft {
	width: 112px;
	height: 64px;
	float: left;
}

#gLightBox_bottomMiddle {
	height: 64px;
	float: left;
}

#gLightBox_bottomRight {
	width: 153px;
	height: 64px;
	float: left;
}

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

#gLightBox_bottomRight a .red {
	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;
}

