/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/
/* default space between tabs */
.yui-navset .yui-nav li,
.yui-navset .yui-navset-top .yui-nav li,
.yui-navset .yui-navset-bottom .yui-nav li {
    margin:0 0.5em 0 0; /* horizontal tabs */
}
.yui-navset-left .yui-nav li,
.yui-navset-right .yui-nav li {
    margin:0 0 0.5em; /* vertical tabs */
}

/* default width for side tabs */
.yui-navset .yui-navset-left .yui-nav,
.yui-navset .yui-navset-right .yui-nav,
.yui-navset-left .yui-nav,
.yui-navset-right .yui-nav { width:6em; }

.yui-navset-top .yui-nav,
.yui-navset-bottom .yui-nav {
    width:auto;
}
.yui-navset .yui-navset-left,
.yui-navset-left { padding:0 0 0 6em; } /* map to nav width */
.yui-navset-right { padding:0 6em 0 0; } /* ditto */

.yui-navset-top,
.yui-navset-bottom {
    padding:auto;
}
/* core */

.yui-nav,
.yui-nav li {
    margin:0;
    padding:0;
    list-style:none;
}
.yui-navset li em { font-style:normal; }

.yui-navset {
    position:relative; /* contain absolute positioned tabs (left/right) */
    zoom:1;
}

.yui-navset .yui-content { zoom:1; }

.yui-navset .yui-nav li,
.yui-navset .yui-navset-top .yui-nav li, /* in case nested */
.yui-navset .yui-navset-bottom .yui-nav li {
    display:inline-block;
    display:-moz-inline-stack;
    *display:inline; /* IE */
    vertical-align:bottom; /* safari: for overlap */
    cursor:pointer; /* gecko: due to -moz-inline-stack on anchor */
    zoom:1; /* IE: kill space between horizontal tabs */
}

.yui-navset-left .yui-nav li,
.yui-navset-right .yui-nav li {
    display:block;
}

.yui-navset .yui-nav a { position:relative; } /* IE: to allow overlap */

.yui-navset .yui-nav li a,
.yui-navset-top .yui-nav li a,
.yui-navset-bottom .yui-nav li a {
    display:block;
    display:inline-block;
    vertical-align:bottom; /* safari: for overlap */
    zoom:1;
}

.yui-navset-left .yui-nav li a,
.yui-navset-right .yui-nav li a {
    display:block;
}

.yui-navset-bottom .yui-nav li a {
    vertical-align:text-top; /* for inline overlap (reverse for Opera border bug) */
}

.yui-navset .yui-nav li a em,
.yui-navset-top .yui-nav li a em,
.yui-navset-bottom .yui-nav li a em { display:block; }

/* position left and right oriented tabs */
.yui-navset .yui-navset-left .yui-nav,
.yui-navset .yui-navset-right .yui-nav,
.yui-navset-left .yui-nav,
.yui-navset-right .yui-nav {
   position:absolute;
   z-index:1; 
}

.yui-navset-top .yui-nav,
.yui-navset-bottom .yui-nav {
    position:static;
}
.yui-navset .yui-navset-left .yui-nav,
.yui-navset-left .yui-nav { left:0; right:auto; }

.yui-navset .yui-navset-right .yui-nav,
.yui-navset-right .yui-nav { right:0; left:auto; }

/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/
.yui-overlay,
.yui-panel-container {
    visibility: hidden;
    position: absolute;
    z-index: 2;
}

.yui-panel-container form {
    margin: 0;
}

.mask {
    z-index: 1;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.mask.block-scrollbars {
    /*
        Application of "overflow:auto" prevents Mac scrollbars from bleeding
        through the modality mask in Gecko. The block-scollbars class is only 
        added for Gecko on MacOS
    */
    overflow: auto;
}

/* 
    PLEASE NOTE:

    1) ".masked select" is used to prevent <SELECT> elements bleeding through 
       the modality mask in IE 6. 

    2) ".drag select" is used to hide <SELECT> elements when dragging a 
       Panel in IE 6.  This is necessary to prevent some redraw problems with 
       the <SELECT> elements when a Panel instance is dragged.
    
    3) ".hide-select select" is appended to an Overlay instance's root HTML 
       element when it is being annimated by YAHOO.widget.ContainerEffect.  
       This is necessary because <SELECT> elements don't inherit their parent
       element's opacity in IE 6.

*/

.masked select,
.drag select,
.hide-select select {
    _visibility: hidden;
}

.yui-panel-container select {
    _visibility: inherit;
}

/*

There are two known issues with YAHOO.widget.Overlay (and its subclasses) that 
manifest in Gecko-based browsers on Mac OS X:

    1) Elements with scrollbars will poke through Overlay instances floating 
       above them.
    
    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
       visible when the Overlay is hidden.

To fix these bugs:

    1) The "overflow" property of an Overlay instance's root element and child 
       nodes is toggled between "hidden" and "auto" (through the application  
       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
       as its "visibility" configuration property is toggled between 
       "false" and "true."
    
    2) The "display" property of <SELECT> elements that are child nodes of the 
       Overlay instance's root element is set to "none" when it is hidden.

PLEASE NOTE:  
  
    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
       applied only for Gecko on Mac OS X and are added/removed to/from the 
       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
    
    2) There may be instances where the CSS for a web page or application 
       contains style rules whose specificity override the rules implemented by 
       the Container CSS files to fix this bug.  In such cases, is necessary to 
       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
       write custom style rules to guard against this bug.

** For more information on this issue, see:

   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
   + SourceForge bug #1723530

*/

.hide-scrollbars,
.hide-scrollbars * {

    overflow: hidden;

}

.hide-scrollbars select {
    display: none;
}

.show-scrollbars {
    overflow: auto;
}

.yui-panel-container.show-scrollbars,
.yui-tt.show-scrollbars {
    overflow: visible;
}

.yui-panel-container.show-scrollbars .underlay,
.yui-tt.show-scrollbars .yui-tt-shadow {

    overflow: auto;

}

/* 
   Workaround for Safari 2.x - the yui-force-redraw class is applied, and then removed when
   the Panel's content changes, to force Safari 2.x to redraw the underlay.
   We attempt to choose a CSS property which has no visual impact when added,
   removed.
*/
.yui-panel-container.shadow .underlay.yui-force-redraw {
    padding-bottom: 1px;
}

.yui-effect-fade .underlay {
    display:none;
}

/*
    PLEASE NOTE: The <DIV> element used for a Tooltip's shadow is appended 
    to its root element via JavaScript once it has been rendered.  The 
    code that creates the shadow lives in the Tooltip's public "onRender" 
    event handler that is a prototype method of YAHOO.widget.Tooltip.  
    Implementers wishing to remove a Tooltip's shadow or add any other markup
    required for a given skin for Tooltip should override the "onRender" method.
*/

.yui-tt-shadow {

    position: absolute;

}
/*========================= Custom color ========================*/
#customColorBody { padding: 10px; font-size:1.09em;}
#customColorBody h3, #customColorBody p {	margin:10px 0;}
.clearfix { zoom: 1; }
.clearfix:after { content:''; display: block; clear: both; height: 0; overflow: hidden; }
#customColorSwatch { float:left; font-size:0.9em; padding:4px;}
#customColorSwatch:hover { text-decoration:underline;}
.dropdownSwatch { height:10px; width:10px; margin-top:3px;}
#customColorPanel { width: 455px;}
.colorSwatchContainer { width: 56px; float:left; padding:3px; text-align:center;}
.colorSwatchInnerContainer { cursor:pointer; padding: 3px 2px; border: 1px solid #FFFFFF;}
.colorSwatchInnerContainer:hover { border: 1px solid #CCCCCC;}
.colorSwatchContainer .selected { border: 1px solid #533519;}
.colorSwatchLabel { font-size:0.9em; margin-left:auto; margin-right:auto; text-align:center;}
.colorSwatch { height:50px; width:48px; margin-left:auto; margin-right:auto;}
label.bigLabel, span.bigLabel {margin-top:2px; margin-left:20px; float:none; font-size:1.5em; font-weight:bold;}
span.bigLabel {margin-left: 0;}
input.shortField { width: 40px; }
#customColorFieldsBox { border: 1px solid #FFFFFF; padding:2px; padding-bottom:6px; cursor:pointer;}
#customColorFields .selected { border: 1px solid #533519; }
#customColorWarning { text-align: center; clear: both;  background-color:#EFF9FE; border: 1px solid #1688AA; padding:5px; font-size:0.8em; margin-top: 15px; margin-bottom:5px; color:#6B6D6A;}
br {clear:both;}
.salePrice{color:#7C1105;}
.prodPrice{color:#666666;}
#shippingSaverMessage { margin: 10px 0; }

/*========================== help box ====================*/
.TP_Helpbox { position: absolute; top: 320px; left: 170px; border: 1px solid #CCCCCC; background-color: #FFFFFF; font-size:0.9em;}
.TP_Helpbox_Titlebar { background-color: #3992B4; color: #fff; cursor: pointer; padding: 5px; height:16px; font-weight: bold; font-size:0.92em;}
.TP_Helpbox_Close {float:right; width:50px;}
.TP_Helpbox_CloseIcon { float: right; background-color: #fff; color: #3992B4; padding: 1px 3px; font-size: 0.8em; margin-left: 5px; }
.TP_Helpbox_Content { background-color: #fff; cursor: pointer; padding: 5px 10px 10px 10px;  }
.TP_Helpbox_Content  ul{ margin: 12px 0 12px 15px;}
.TP_Helpbox h3 { font-size:1.2em; font-weight:bold; padding:10px 0}
.TP_Helpbox .subTitle{font-weight:bold;}
.TP_Helpbox  p{padding-bottom:10px;}
.TP_Helpbox .imgBox{float:left;text-align:center;width:50%; padding-bottom:10px;}
.TP_Helpbox .singleImgBox{float:left;text-align:center;width:100%; padding-bottom:10px;}

/* ============================== LAYOUT CSS ==============================*/
.clickable  { cursor: pointer;}
#container-dynamic  a#orderSampleLink:hover { border: none; }
#container-dynamic:after, #gcOrderOptionsChoices:after {content: '.'; display:block; clear:both; height:0;	visibility:hidden;}
img  { border: 0;}
a:active { outline: none; }
a:focus { -moz-outline-style: none; }
small { font-size:0.8em; font-weight:normal; }
hr { font-size:0; line-height: 1px; height:1px; margin-top:7px; margin-bottom:7px; border:1px transparent;border-bottom:1px solid #CCCCCC; margin-left:auto; margin-right:auto; width:95%; }
label { float:left; margin-left:10px; margin-right:10px; }
#breadcrumbs { padding:5px 5px 20px; font-size: 0.9em; float:left; width:100%; }
#contentContainer { background-color: #fff; color: #533519;}
#contentContainer h1 { font-size:15px; font-weight: bold;}
#contentContainer h2, #productColorName {font-size:1.02em; margin:0px; font-weight: bold; color: #533519;}
#contentContainer h3 { font-size:1.2em; font-weight:bold; margin-top: 0; margin-bottom:0;}
#productClassName { font-size: 11.5px; font-weight: normal; }
/* ======== image container ======== */
#imageContainer { float:left; width:44%; }
#mainImage { margin: 15px 0; }
#mainImage span.subText { text-align: left; width: 320px; }
#mainImage .mainImageBox { 
	cursor:pointer;
	height: 425px; 
	width: 420px;
}
#mainImage .mainImageBox  td{ 
	vertical-align: middle; 
	text-align: center;
}
#productHeader {font-size: 1.2em;}
#productHeader h2 {float:left; margin-right:10px;}
#productHeader .sub{ font-size:0.7em; font-style:italic;}
#productHeader .specials{font-weight:bold;font-size:0.8em;cursor: pointer;}
#ratingStar {font-size:11px; vertical-align:bottom;font-weight:normal; margin-top: 1px; }
#ratingStar img{vertical-align:middle;}
#ratingIcons a:hover {text-decoration:none;border:none;}
#productHeader .vendorName { font-size:0.7em; font-style:italic; clear:left;}
#productName {float:left; margin-right:5px;}
.mainImg { text-align:center;}
.imgInfo{text-align:left;}
.crimson{ color:#7C1105; font-weight:bold;}
.crimson del{ color:#7C1105;}
.subText {
	color:#7C7C7C;
	font-size:0.8em;
	font-weight:normal;
}
.subTextBrown {
	color:#533519;
	font-size:0.8em;
	font-weight:normal;
}
.mainImgZoomIn {
	float:right;
}
.sprite-zoom-icon-in-main{
	float:left;
	margin-right:2px;
}
.sprite-help-icon{overflow:hidden;}
.zoomLink { font-size: 0.9em; padding: 6px; color:#3992B4;}
.zoomLink:hover { border-bottom: 1px dotted #333333;  }
.subHeader {
	border-bottom:2px dotted #999999;
	float:left;
	font-weight:bold;
	margin-left:20px;
}
#panelsList{
	float:left;
	width:420px;
}
.panelsListContent{
	clear: left;	
}
#panelsListHeader, #matchingItemHeader{
	background:transparent url(/image/wpd/product-page-gradient-wpd.png) repeat-x;
	font-weight:bold;
	font-size:14px;
	padding-left:10px;
	padding-bottom:10px;
	padding-top:3px;
	margin-top: 30px;
}
.panelListItem, .layoutsPanelBox { 
	float:left;
	padding: 5px;
	text-align:center;
	width:120px;
	height:110px;
}

#panelsList .boxHolder { 
	height:100px;
	width:117px;
	display:table;
	margin:0 auto;
	*position:relative;
}
a.imgIcon { 
	display:table-cell; 
	vertical-align:middle;
	*position:absolute;
	*top:50%;
	*left:50%;
}
#panelsList .boxHolder img , .highlightBox img{ 
	border: 1px solid #FFFFFF; 
	padding: 2px; 
	*position:relative;
	*top:-50%;
	*left:-50%;
}
#panelsList .boxHolder img:hover { border: 1px solid #999999;}
#panelsList .selectedBoxHolder img { border: 1px solid #533519; }
#container-dynamic a.imgIcon:hover {border:none; }
/*======================= layout pop up ================*/

#layoutsPanelHd{
	font-size:77%;
	padding:5px 0;
	margin-left:5px;
}
.layoutBox {
	margin-left:5px;
	margin-right:5px;
	text-align:center;
	width:auto;
	float:left;
}

.layoutOptionTitle {
	font-weight:bold;
	padding:10px 5px;
	text-transform: uppercase;
}
.imageBox {
	display:table-cell; 
	vertical-align:middle;
}

/*========info Container========*/
#ratingStar {font-size:0.8em; vertical-align:bottom;}
#disabledWarning{
	color:#D20500;
	font-weight:bold;
	font-size: 1.1em;
	margin-left:38px;
}
#warningIcon {
	float:left;
	margin-right:5px;
}
#productWarning { padding:10px 0}
.actionButtons {
	padding:10px 0;
	float: left;
	width:100%;
}
.order-sample-button, .personalize-button, .sprite-add-to-cart-button {
	float:right;
}

.personalize-button{
	margin-left: 20px;
}

#topContainer{
	width:100%;
	float:left;
	/*background:url('/image/wpd/product-page-vertical-line.png') repeat-y scroll 45% 0 transparent;*/
}

#infoContainer {
	float:right;
	width:54%;
}


.orderSampleDivOrange {
	cursor: default;
	color: #F6931C;
	font-weight: bold;
	text-align: right;
}


.orderSampleUnitPrice {
	float: right;
	width: 55px;
	text-align: left;
}

.infoSections {
	background:url('/image/wpd/product-page-gradient-wpd.png') repeat-x scroll 0 0 transparent;
	float:left;
	width:510px;
	margin-top:15px;
}

.infoSection .sectionIcon{
	float:left;
	width:30px;
	margin:7px;
}

.sectionContent{
	margin-top: 15px;
	zoom: 1;
}
.infoSection .sectionContent .sectionHeader{
	font-weight:bold;
	font-size:13px;
}

.sectionHd {
	font-size:1.1em;
	font-weight: bold;
	color: #533519;
	padding-bottom:5px;
}

#ffgPidsContent{
	float:left;
	width:100%;
	margin-top:10px;
}

.ffgPidBorder{
	float:left;
	padding: 2px;
	border:2px solid #fff;
}

.ffgPidBorderSelected{
	border:2px solid #6B6B6B;
}

.ffgPidContent{
	padding: 2px;
	background-color: #fff;
	border: 1px solid #fff;
	float: left;
	cursor: pointer;
}

.ffgPidSelected{
	border: 1px solid #D8E6E6;
	background-color:#EDF9F9;
}

.ffgPidContent input {
	vertical-align: middle;
	width: 15px;
	display: inline-block;
	overflow: hidden;
}
.ffgPidContent img {
	vertical-align: middle;
}

.ffgPidContent .bottom{
	margin-left:17px;
	font-size:11px;
	margin-top:3px;
	line-height:120%;
}

.ffgPriceWarning{
	float:left;
	font-style:italic;
	margin-top:15px;
	width:100%;
}

#cardSize{
	font-size:11px;
}

#quantitySelector{
	margin-top:20px;
}

.selectLabel{
    float: left;
    margin-right: 10px;
    text-align: left;
    width: 77px;
}

.collectionQuantityBox{
	float:left;
	margin-bottom:10px;
}

.collectionQuantityHeader{
	float:left;
	width:100px;
	text-align:right;
}

.collectionQuantityContent{
	float:left;
	margin-left:10px;
}

.stepIcon{
	float:left;
	position:absolute;
	left:-38px;
}

.colorsContentList{
	margin-top:15px;
    text-align: center;
}

.colorBoxHolder{
	display:inline-block;
	height:22px;
	width:22px;
	margin-right: 5px;
}
.colorBox {	
	cursor:pointer;
	display:inline-block;
	height:18px;
	width:18px;
	margin:1px;
	border:1px solid;
}
.colorBoxSelected {
	border:2px solid;
}

.detailsColorBox {	
	height:18px;
	width:18px;
	margin-right:5px;
	border:1px solid #000;
	float:left;
}

#customColorBox{
	margin-top: 17px; 
}

#customColorHelp{
	width: 160px;
	margin: 0 auto;
}

.customColorLabel{
	float: left;
	font-size:11px;
	margin-top:4px;
}

.helperIcon {
	float:right;
	margin: 2px 0 0 5px;
}

.productPaperOptions {
	margin-left:5px;
	width:290px;
	zoom: 1;
}

.sectionContent:after {
	content: '';
	visibility: hidden;
	display: block;
	clear: both;
	height: 0;
}

.productPaperName {
	float: left;
}

#prodSize{
	margin-top:15px;
	width:100%;
}

.infoItemHeading {
	float:left;
	margin-left:5px;
	padding:5px 0;
	text-align:right;
	width:115px;
}
.infoItemContent {
	float:left;
	margin:3px 0 3px 10px;
	width:350px;
}
.infoItemHeadingLabel, .lineDataHeadingLabel{
	float:left;
	margin-right:5px;
}
.infoItemLineDesc{
	float:left;
	padding:2px;
}

#collectionLinks { 
	float:left;
	margin-top:10px;
	width:450px;
}

#subTotalSection{
	background-color:#EDF9F9;
	border:1px solid #CCDCDC;
	float:left;
	font-size:14px;
	font-weight:bold;
	margin:15px 0;
	padding:5px;
	text-align:right;
	width:500px;
}

#shippingOptionsSection{
	text-align: right;;
	width:510px;
}

#shippingOptionsSection .shippingNote{
	float:left;
	width:100%;
}

#shippingOptionsSection .bold{
	font-weight:bold;
}

#deliveryOptionPopupWrapper{
	margin:18px 0;
}

#deliveryOptionPopupWrapper img {
	display:block; 
	margin:auto; 
	text-align:center; 
}

#deliveryOptionPopupWrapper .deliveryOptText{
	font-size:12px;
	margin-top:12px;
	padding:0 50px;
}

.shippingEstimate{
	color:#7C1105;
	font-weight:bold;
}

.sectionBox{
	background-color:#F3F3F3;
	border:1px solid #D7D7D7;
	color:#6B6B6B;
	float:left;
	width:100%;
}

#collectionsContainer{
	float:left;
}

.addtProdsBox{
	float:left;
	width:130px;
	height: 140px;
	margin:5px 10px;
	text-align:center;
}


#rushHelp, #superRushHelp {
	margin-left:5px;
	float:left;
}
/*============extraInfo container ===============*/
#containerSeperator {
	background:url('/image/wpd/product-page-gradient-wpd.png') repeat-x scroll 0 0 transparent;
	margin-top:15px;
	height:30px;
	width:100%;
	float:left;
}
#extraInfoContainer {
	clear:both;
	zoom:1;
}
#jumpDownBox {
	padding:3px;
	width:954px;
}
#miscContainer {
	float:right;
}
.returnToTop {
	text-align:right;
}
#saveToFavorites, #emailToFriend {
	float:left;
	margin-left:20px;
	margin-top:5px;
	width:130px;
}
.sprite-request-heart-button, .sprite-request-mail-button , .sprite-request-heart-checked-button{
	float:left;
	margin-right:10px;
}
#extraInfoSectionContainer {
	width:960px;
	float:left;
	/*margin:10px;*/
}
.boxTitle {
	float:left;
	font-weight:bold;
	margin-right:5px;
}
.extraInfoSectionLink {
	float:left;
	padding: 0 5px;
	border-right:1px solid #D7D7D7;
}
.last{
	border-right:none;
}
.extraInfoSection{
	padding:10px 0;
	clear:left;
}
.extraInfoSection .hd {
	border-top: 1px dotted #D7D7D7;
	background-color:#F3F3F3;
	padding: 3px 0 3px 10px;
	font-weight:bold;
	width:950px;
}
.extraInfoSection .bd {
	padding: 10px 0 3px 10px;
	float:left;
	width:950px;
}
.highlightBox {
	height:100px;
	padding:2px;
	width:117px;
	display:table;
	text-align:center;
	*position:relative;
}
#productDetailsMain  { float:left; width:49%;clear:both;}
#productDetailsExtra { float:left;	width:50%;}
#productDetailsMain ul { margin-left: 15px;}
#productDetailsMain li { padding-top:2px; padding-bottom:2px;}

.lineDataBox{
	float:left;
	width:100%;
	margin-bottom:10px;
}
.lineDataHeading {
	float:left;
	font-weight:bold;
	width:130px;
}
.lineDataLabel {
	float:left;
	margin-right:3px;
}
.lineData {
	float:left;
	width:325px;
}
.lineData  .PhotoSize {
	float:left;
	width:100%;
}
.lineData  .PhotoSizeAddt{
	width:95%;
	margin-left:10px;
}

#productDescriptionBox, #productPhotoInformationBox{
	width:80%;
}

#productMailingServiceBox{
	margin-bottom:10px;
	clear:both;
	float:left;
}

.miniThumbHolder{
	float:left;
	width:100%;
	margin-bottom:2px;
}

.miniThumb{
	float:left;
	margin-right:5px;
}

.miniThumbContent{
	float:left;
}

#praFlag{
	clear:both;
	font-style:italic;
}

#postageWarningBox {
	padding:10px;
	float:left;
	width:80%;
	border:2px solid #C0C0C0;
	font-size:0.9em;
	margin:10px 0;
}

#postageWarningBox .postageWarningIcon{
	margin-top:5px;
	float:left;
}

#postageWarningBox .postageWarningText{
	width: 85%;
	float:right;
}
#preshipContainerBox {
	background-color:#F0F9FF;
	border:2px solid #D7D7D7;
	float:left;
	padding:5px;
	width:80%;
}
#preshipContent { float:left; width:70%;}
#preshipHeading { float:left; padding-left:5px;font-weight:bold;}
#preshipText { float:left; padding-left:5px;clear:both;width:100%;}
#preshipLink { float:left; padding:5px;clear:both;width:100%;}
#photoInstructions {
	float:left;
	width:100%;
	padding-top:10px;
}
.photoSectionHd {
	font-weight:bold;
	padding-top:5px;
}
.productDetailsBlock {
	float:left;
	width:276Px;
}
.paletteImage {
	border:1px solid #000000;
	float:left;
	height:18px;
	width:18px;
}
.colorListItemPText {
	vertical-align:top;
}
/*============= Bizard Voice ==================*/
#BVReviewPaginationTable .BVPageBasedPaginationContainer{
	width:900px;
	height:25px;
	margin:0;
}
#BVallReviewsLink{
	float:right;
}
#BVFrame{
	width: 1px;
	height: 1px;
	position: absolute;
	left: -9999px; 
	top: -9999px;
}

.highlightInfoText {
	color: #668800;
}

#shippingNote{
	margin:5px;
}

/* Popup - Start */

.TP_Popup_TitleBar{
	background-color:#3992B4;
	border-bottom:1px solid #CCCCCC;
	color:#FFFFFF;
	font-size:93%;
	font-weight:bold;
	padding:0 10px;
	height:26px;
	overflow:hidden;
	cursor: move;
	position:relative;
	z-index:5000;
	/*margin: 1px;*/
}

.TP_Popup_TitleText{
	color:#FFFFFF;
	font-family: Helvetica;
	font-size: 12px;
	margin: 4px;
	font-weight: bold;
	float: left;
}

.TP_Popup_CloseText{	
	float: right;
	margin-top: 5px;
	cursor: pointer;
	font-size: 11px;	
}

.TP_Popup_CloseIcon{ 
	background-color:#FFFFFF;
	width: 12px;
	height: 12px;
	margin: 6px;
	margin-left:5px;
	float: right;
	cursor: pointer;
	text-align:center;
	font-size:0.8em;
	color:#6E8E09;
}

.TP_Popup{
	background-color: white;
	padding:0;
	margin:0;
	z-index: 99999;
}

.TP_Popup_Shadow{
	background-color:#666;
	filter:progid:DXImageTransform.Microsoft.blur(pixelradius=4.0, makeShadow=true, ShadowOpacity=0.5);
}

.TP_Popup_Window{
	-moz-box-shadow: 0 0 6px #666666;
	-webkit-box-shadow: 0 0 6px #666666;
	box-shadow: 0 0 6px #666666;
	background-color: white;
	overflow-x: hidden;
}

.TP_Popup_Content{
	/*margin: 1px;
	padding: 4px;*/
	font-family: Helvetica;
	font-size:11px;
	overflow: hidden;
	border-top: 1px solid #d7d7d7;
}

.TP_Popup_BottomButtons{
	padding: 5px;
	float: right;
}

/* Popup - End */

/*Image Preview Popup - Start*/

.imagePreviewContainer{
	float:left;
	width:100%;
}
.imagePreviewHeader{
	float:left;
	width:100%;
	z-index:5000;
	background-color:#ffffff;
	position:relative;
}

.imagePreviewHeader ul, .imagePreviewHeader li{
	font-size:12px;
	margin:2px 15px;	
}
.imagePreviewBody{
	float:left;
	width:100%;
	height:550px;
}

#previewImage{
	margin:5px 30px;
}
.sprite-zoom-icon-in, .sprite-zoom-icon-out  { float:left; margin-right:2px; margin-top:5px;}
.previewInfo {float:left; width:40%;}

.previewZoomLink { 
	color:#3992B4;
	margin-top:5px;
	float:left;
	font-size:16px;
}
.previewZoomLink:hover { border-bottom: 1px dotted #333333;  }

.previewZoomBox{
	cursor: pointer;
	float:left;
	margin-right: 100px;
	margin-top:10px;
}

/*Image Preview Popup - End*/

/*Pretty Select for Product Page - Start */

.PrettySelectBox{
	width:320px;
}

.PrettySelectHandle {
	float: right;
	margin-top:5px;
}

.PrettySelectSeperator {}

.PrettySelectHandleImage {
	background: transparent url(/image/tp/personalize-sprites.png) no-repeat scroll -101px -25px;
	height: 25px;
	width: 25px;
	float: right;
}

.PrettySelectList, .PrettySelectItem, .SelectedPrettySelectItem {
	background-color: #FFFFFF;
}

.PrettySelectList {
	border: 1px solid #C0AD90;
	width: 320px;
	overflow-y: scroll;
	height:300px;
	cursor: pointer;
	z-index: 1000;
}

.PrettySelectItem {
	line-height: 20px;
}

.prettySelectOptionOdd{
	background-color: #FFF;
}

.prettySelectOptionEven{
	background-color: #EDF5FF;
}

.SelectedPrettySelectItem {
	border-top: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
	border-right: 2px solid #9F9F9F;
	border-bottom: 1px solid #9F9F9F;
	width: 320px;
	height: 20px;
	line-height: 20px;
	cursor: pointer;
	padding: 1px;
	background-color: #FFF;
}

.SelectedPrettySelectItem  .prettySelectOptionEven{
	background-color: #FFF;
}

.PrettySelectItemHover {
	background-color: #A9D1FF;
}

.PrettySelectGroup{
	font-size: 15px;
	font-weight: bold;
	font-style: italic;
	padding:4px;
}

.paperHolder{
	margin-right: 11px;
}

.paperHolder .PrettySelectList {
	width: 375px;
}

.paperHolder .SelectedPrettySelectItem {
	width: 372px;
}

.paperHolder .productPaperOptions {
	width: 340px;
}

.productQuantityNumber{
	float:left;
}

.productQuantityType{
	float:left;
	margin-left:2px;
}

.productQuantityUnitPrice{
	margin-left:2px;
	float:left;
}

.productQuantityTotalPrice{
	float:right;
	width:50px;
	text-align:left;
}

.productQuantityNumCards{
	/*margin-left:5px;*/
}

.productPriceOptions, .trimOptionNode{
	margin-left:5px;
	width:290px;
	zoom: 1;
}

.productPriceOptions:after {
	content: '';
	visibility: hidden;
	display: block;
	clear: both;
	height: 0;
}

/*-Collections drop down - fixes for IE - Gates.. U suck big time-*/

.pCollectionDrop .totalPrice{
	float:right;
	width:50px;
	margin-right:5px;
}

.pCollectionDrop .prodPrice,.itemCount,.colMisc{
	float:left;
	margin-right:2px;
}

.pCollectionDrop{
	margin-left:5px;
	width:290px;
	zoom: 1;
}

.pCollectionDrop:after {
	content: '';
	visibility: hidden;
	display: block;
	clear: both;
	height: 0;
}

/*Pretty Select for Product Page - End */

.clickable  { cursor: pointer;}

#customColorMore {padding:15px 0;}
#btnAcceptCColor{float:right; margin-right:5px}
#btnCancelCColor {float:right;margin-right:10px}


.clr{
	clear: both;
}

#socialButtonsDiv{
    height: 18px;
    margin-left: 53px;
}

#socialButtonsDiv .onDiv{
	float: left;
}

#ShippingStdDate{
	font-weight: bold;
}

#personalizeLink{
}

#infoSectionContainer{
	margin-top: 10px;
}

#marketingBanner{
	margin-top: 15px;
}

.extraItemDiv {
    background:  #CCC;
    margin: 0 !important;
    padding-left: 5px;
    cursor: auto;
    width: 298px;
}


div.paperSwatch{
	float: left;
	height: 70px;
	width: 70px;
	border: 2px solid #ccc;
	margin: 10px 10px 0 0;
	position: relative;
}

div.paperSwatch:hover {
	border: 2px solid #4DB3DB;
	cursor: pointer;
}

div.selectedPaperBox{
	border: 2px solid #4DB3DB;
}

.paperZoomed {
	display: none;
	width: 200px;
	height: 90px;
	background: #000;
	border: 1px solid #ccc;
}

.paperZoomed:hover{
	display:none !important;
}

div.paperSwatch:hover .paperZoomed{
	display: block;
	position: absolute;
	top: -110px; 
	left: -70px;
	z-index: 999;
	color: #4DB3DB;
	padding: 5px;
}

.paperSwatchImage{
    height: 70px;
    overflow: hidden;
    width: 70px;
}

.paperPrice{
	color: #4DB3DB;
	left: 18px;
	position: absolute;
	top: 27px;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	
}

div.paperSwatch:hover .paperPrice{
	display: block !important;
}

div .productTrimOptionsSection label, div .productTrimOptionsSection .dropdown, #quantityContent{
    float: left;
}

label.dropdownLabel, div.dropdownLabel { 
	float: left;
	width: 50px; 
}

div.productTrimOptionsSection .PrettySelectSeperator {
	clear: both; 
}

div.trimOptionNode .displayName {
	float: left; 
	margin-left: 5px; 
	width: 120px; 
}
div.trimOptionNode .icon {
	float: left;
	margin-left: 5px; 
}
div.trimOptionNode .displayName {
	float: left; 
	margin-left: 5px; 
	width: 120px; 
}
div.trimOptionNode .icon {
	float: left;
	margin-left: 5px; 
}
div.trimOptionNode .price {
	float: right; 
	text-align: left; 
	margin-right: 10px; 
}
div.trimIcon {
	float: left; 
	height: 16px; 
}
div.trimIcon.sprite-trim-square {
	margin-top: 3px; 
}

.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}


.selectLabelText{
	float: left;
}

/* Carousel CSS for ProductView*/
.productview_carousel {float:left; height: 155px; margin-bottom: 10px; position: relative; display:inline; width: 100%;}

.productview_carousel .container {
position: absolute;
top: 5px;
left: 30px;  
width: 365px;
height: 100%;
overflow:hidden;   
background: #FFFFFF;
}

.productview_carousel .previous_button {
position: absolute;
margin-top:50px;
left: 4px;
width: 25px;
height: 25px;
background: transparent url(../../../../../../image/wpd/product-page-sprite-wpd.png) no-repeat scroll 0px -253px;
cursor:pointer;
}

.productview_carousel .previous_button_disabled {
background: transparent url(../../../../../../image/wpd/product-page-sprite-wpd.png) no-repeat scroll -50px -253px;
width: 25px; height: 25px;
left: 4px;
position: absolute;
cursor:default;
margin-top:50px;
}

.productview_carousel .next_button {
position: absolute;
margin-top:50px;
right: 1px;
width: 25px;
height: 25px;
background: transparent url(../../../../../../image/wpd/product-page-sprite-wpd.png) no-repeat scroll -25px -253px;
cursor:pointer;
}

.productview_carousel .next_button_disabled {
background: transparent url(../../../../../../image/wpd/product-page-sprite-wpd.png) no-repeat scroll -75px -253px;
overflow: hidden;
width: 25px; height: 25px;
margin-top:50px;
cursor:default;
right: 1px;
position: absolute;
}

.productview_carousel ul {
margin: 0;
padding:0;
width: 100000px;
position: absolute;
top: 0;
left: 0;
height: 100%;
}

.productview_carousel ul li {
font-family: Arial,Verdana,Helvetica,sans-serif;
}

.productview_carousel ul li {
color:#FFFFFF;
margin:0px 7px 0px 7px;
width:97px;
list-style:none;
float:left;
display:inline;
}

.productview_carousel ul li img {

background:#FFFFFF;
border: 1px solid #533519;
}


