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

}
/* ============================== LAYOUT CSS ==============================*/
#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 h1 {font-size:0.75em;}
#contentContainer h2, #productColorName {font-size:1.02em; margin:0px; font-weight: bold; }
#contentContainer h3 { font-size:1.2em; font-weight:bold; margin-top: 0; margin-bottom:0;}
#shippingSaverMessage { margin: 10px 0; }
/* ======== image container ======== */
#imageContainer { float:left; width:44%; }
#mainImage { padding: 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;
}
.mainImg { text-align:center;}
.imgInfo{text-align:left;}
.crimson{ color:#7C1105; font-weight:bold;}
.crimson del{ color:#7C1105;}
.salePrice{color:#7C1105;margin-right:2px;}
.prodPrice{color:#666666;margin-right:2px;}
.subText {
	color:#7C7C7C;
	font-size:0.8em;
	font-weight:normal;
}
.subTextBrown {
	font-size:0.8em;
	font-weight:normal;
}
.mainImgZoomIn {
	margin: 6px 6px 0 0;
	float:right;
}
.sprite-zoom-icon-in{
	float:left;
}
.sprite-zoom-icon-out{
	float:left;
}
.zoomLink { font-size: 0.9em; padding: 6px; color:#009999;}
.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{
	background:transparent url(/image/tp/product-page-gradient.png) repeat-x;
	border-bottom: 1px dotted #D7D7D7;
    font-weight: bold;
    padding: 10px 0 3px 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

#flipCardDemo{
	background:transparent url(/image/tp/animated-flip-card.gif) no-repeat;
	width:400px;
	height:400px;
}
.flipCardIcon{
	margin-top:10px;
}
.panelListItem, .layoutsPanelBox, .flipCardPanelBox { 
	float:left;
	padding: 5px;
	text-align:center;
	width:120px;
	height:110px;
}
.boxHolder { 
	height:100px;
	width:100px;
	display:table;
	margin:0 auto;
	*position:relative;	
}
a.imgIcon, .imageBox { 
	display:table-cell; 
	vertical-align:middle;
	*position:absolute;
	*top:50%;
	*left:50%;
}
.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 #666666; }
#container-dynamic a.imgIcon:hover {border:none; }
/*======================= layout pop up ================*/
#layoutsPanelHd{
	font-size:88%;
	padding:5px 0;
	margin-left:5px;
	line-height:1.7;
}
.layoutBox {
	margin-left:5px;
	margin-right:5px;
	text-align:center;
	width:auto;
	float:left;
}
.layoutOptionTitle {
	font-weight:bold;
	padding:10px 5px;
	text-transform: uppercase;
	clear:both;
}
/*========info Container========*/
#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;}
#ratingStar {font-size:0.8em; vertical-align:bottom;}
#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;}
#disabledWarning{
	color:#F78C5A;
	font-weight:bold;
	font-size: 1.2em;
	line-height:2.2;
}
#warningIcon {
	float:left;
	margin-right:5px;
}
#warningBigIcon {
	float:left;
	margin-right:5px;
}
#productWarning { padding:10px 0}
.actionButtons {
	padding:10px 0;
	float: left;
	width:100%;
}
.sprite-order-sample-button, .sprite-personalize-button, .sprite-add-to-cart-button , .sprite-order-button{
	float:right;
	margin-right:20px;
}
#contentContainer #topContainer{
	width:100%;
	float:left;
	background:url('/image/tp/product-page-vertical-line.png') repeat-y scroll 45% 0 transparent;
}

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

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

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

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

.infoSection .sectionContent{
	float:left;
	width:465px;
	margin-top:11px;
}
.infoSection .sectionContent .sectionHeader{
	font-weight:bold;
	font-size:13px;
}
.sectionHd {
	font-size:1.1em;
	font-weight: bold;
	padding-bottom:5px;
}

#ffgPidsContent{
	float:left;
	width:100%;
    margin: 10px 0 15px 58px;
}

.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 td{
	height:70px;
	vertical-align:middle;
}

.ffgPidContent input {
	vertical-align: middle;
	width: 15px;
}
.ffgPidContent img {
	vertical-align: middle;
}

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

.ffgPriceWarning{
	float:left;	
	color: #F6931C;
	margin-top:15px;
	width:100%;
}

#cardSize{
	float: left;
	margin: -3px 0 0 18px;
}

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

.colorsContentList{
	margin-top:15px;
}

.colorBoxHolder{
	display:inline-block;
	height:22px;
	width:22px;
}
.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;
}

.productPaperSection{
}

.paperHolder{
	float:left;
	margin-right : 7px;
}

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

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

.productPaperName {
	float: left;
}

#prodSize{
	float:left;
	margin-top:5px;
	width:100%;
}

.selectorDiv{
	padding: 15px 0 0 50px;
}

#quantityHeader{
	float: left;
	margin-top: 2px;
}

#quantityContent{
	float: left; 
	margin-left: 24px;
}

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

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

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

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

/*collection drop down links... IE fixes*/
.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;
}

#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{
	float:left;
	width:510px;
}

#shippingOptionsSection .shippingNote{
	float:left;
	width:100%;
	margin: 3px 10px;
}
div .shippingNote {
	padding: 15px 5px 0 5px;
}
div .shippingNote b{
	font-weight: bold; 
	color: #7C1105;
}

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

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

.orderSampleDiv {
	float:right;
	margin-right:10px;
	font-weight: bold;
}

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

.orderSampleLink{
	float:right;
	margin-right:10px;
	margin-top:10px;
}

.orderSampleLink span{
	display: inline;
}

.orderSampleLink .photo-icon{
	float: left;
	margin-bottom: 1px;
}

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

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

#collectionsContainer{
	float:left;
}

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

#rushHelp, #superRushHelp {
	margin-left:5px;
	float:left;
}
#paperHelp {
	margin-top: 3px;
	float:left;
}
/*============extraInfo container ===============*/
#containerSeperator {
	background:url('/image/tp/product-page-gradient.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: 5px;
}

#extraInfoSectionContainer {
	padding-bottom: 20px; 
	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-bottom: 1px dotted #D7D7D7;
	padding: 3px 0 3px 0px;
	font-weight:bold;
	width:950px;
	font-size: 15px;
}
.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%;line-height:1.2;}
#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;
}
/*============================== RSVP =====================================*/
#rsvp {
	margin-left:55px;
}
.new{
	color:#6FAD50;
}
#rsvp-yes{
	margin: 0 15px;
}
#rsvp-no {
	margin: 0 15px 0 0;
}
#rsvp-service{
	padding: 20px 40px;
}
#rsvp-service h2{
	font-size:1.5em;
	font-weight:bold;
}
#rsvp-service h3{
	line-height:3em;
	font-weight:normal;
}
#rsvp-steps{
	margin-left:20px;
	list-style:none;
}
#rsvp-steps li {
	float:left;
	width:45%;
	padding-left:20px;
	padding-bottom:10px;
	position:relative;
}
#rsvp-steps .step{
	position:absolute;
	font-size: 1.6em;
	left:-10px;
}
#rsvp-preference{
	clear:both;
	font-weight:bold;
	width:50%;
	margin-left:auto;
	margin-right:auto;
}
#rsvp-preference h4{
	padding: 15px 0;
}
#rsvp-preference ul{
	margin-left:20%;
	list-style-type:square;
}
#rsvp-preference li {
	float:none;
	padding:0;
	width:90%;
}

#rsvpOptionsSection {
	text-align:center;
	margin-left: 102px;
	width:100%
}
.rsvpText {
	float:left;
	margin:4px 10px;

}
.digitalSelector {
	float:left;
	margin-top:4px;
	margin-right:10px;
	cursor: pointer;
}

.digitalSpace{
	margin-left: 50px;
	margin-top: 10px;
}

#productRsvpHeader{
	float: left;
	font-size:13px;
	font-weight:bold;
	margin-right:5px;
}

#productDigitalHeader{
	float: left;
	font-weight:bold;
	margin-right:5px;
	font-size:13px;
}

.digitalContent{
	float:left;
	width:400px;
}

#productDigitalText{
	float: left;
	width:100%;
}

#productRsvpText{
	float: left;
	width:100%;
}

#rsvpHelp, #memoryHelp{
	float:left;
}

#rsvpHelpIcon, #memoryHelpIcon{
	display:inline;	
}

#rsvpHelp ul, #memoryHelp ul{
	padding-left:30px;
}
.openIcon {
	background:#FFFFFF url(/image/tp/css/icons/faq-open-sm.gif) no-repeat scroll right 0;
}

.closeIcon {
	background:#FFFFFF url(/image/tp/css/icons/faq-close-sm.gif) no-repeat scroll right 0;
}

#howToUseRSVPManager, #howToUseMemory{
	font-weight: bold;
	padding-left:23px;
}

#howToUseRSVPManagerInfo, #howToUseMemoryInfo {
	font-weight: 100;
	color: #6B6B6B;
	padding-left:27px;
}

#rsvpHelp #RSVPServiceSecurity {
	font-weight: bold;
	cursor: pointer;
	padding-left:23px;
}

#rsvpHelp #RSVPServiceSecurityInfo {
	font-weight: 100;
	color: #6B6B6B;
	padding-left:27px;
}
#memoryHelp {
	cursor: default;
}

#memoryHelp p, #rsvpHelp p {
	padding-bottom:15px;
}
#rsvpHelp .number {
	float: left;
}

#rsvpHelp .infoText {
	padding-left: 12px;
	clear: right;
}

#memoryHelp .number {
	float: left;
}

#memoryHelp .infoText {
	padding-left: 12px;
	clear: right;
}
#memoryTitle {
	font-size:17pt;
	font-weight:bold;
	padding-bottom: 10px;
}

#memoryBodyImage{
	float: left;
	margin-right: 29px;
	margin-left: 5px;
}
#memoryBodyText{
	
}

#memoryBodyText ul{
	padding-left: 271px;
	margin-top: 2px;
	margin-bottom: 26px;
}

#memoryBodyText strong{
	font-size: 14px;
}

.numberLeft {
	float: left;
	padding-right: 3px;
}

.textRight {
	margin-left: 273px;
}

.highlightInfoText {
	color: #009999;
}

.memoryExamples{
	margin-top: 20px;
}

#shippingNote{
	margin:5px;
}
#deliveryOptionPopupWrapper{
	margin-top: 18px;
	padding: 0 50px;
}
#deliveryOptionPopupWrapper .deliveryOptText{
    font-size: 12px;
    margin-top: 12px;	
}
.sprite-box-icon { margin: 0 6px 0 0; }
.sprite-envelope-icon { margin: 5px 13px 5px 0; }

/* Popup - Start */

.TP_Popup_TitleBar{
	background-color: #7b7b7b;
	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;
	line-height: 12px;
	margin: 7px 6px 6px 5px;
	float: right;
	cursor: pointer;
	text-align:center;
	font-size:0.9em;
	color:#7b7b7b;
}

.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{
	background-color:#ffffff;
	float:left;
	position:relative;
	width:100%;
	z-index:5000;
}
.imagePreviewHeader ul, .imagePreviewHeader li{
	font-size:12px;
	margin:2px 15px;	
}
.imagePreviewBody{
	float:left;
	width:100%;
	height:550px;
}

#previewImage{
	margin:5px 30px;
}

.previewInfo {float:left; width:40%;}

.previewZoomLink { 
	color:#009999;
	margin-top:5px;
	float:left;
	font-size:16px;
}

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

/*Image Preview Popup - End*/

/*Pretty Select for Product Page - Start */

.PrettySelectBox{
	width:372px;
}

.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: 372px;
	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: 372px;
	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 .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:69px;
	text-align:left;
}

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

.productPriceOptions{
	margin-left:5px;
	zoom: 1;
}

.productPriceOptions:after {
	content: '';
	visibility: hidden;
	display: block;
	clear: both;
	height: 0;
}
.actionButtons a:hover{ text-decoration: none; }
.actionButtons a { float: right; }
/*Pretty Select for Product Page - End */

/*============================== CONTROL CSS ==============================*/
.clickable  { cursor: pointer;}

.sprite-help-icon { float: left; margin-right: 3px; margin-top: 1px;}
/* .sprite-product-step-one { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 28px; background-position: -128px -333px;}
.sprite-product-step-two { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 28px; background-position: -128px -371px;}
.sprite-product-step-three { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 28px; background-position: -128px -407px;}
 */
/* .sprite-order-sample-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 95px; height: 20px; background-position: 0px -424px;} 
.sprite-personalize-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 145px; height: 36px; background-position: 0px 0px;}
.sprite-order-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 93px; height: 36px; background-position: 0px -329px;}
.sprite-order-asis-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 115px; height: 36px; background-position: 0px -365px;}
.sprite-calculator { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 16px; height: 21px; background-position: 0px -36px;}
.sprite-request-samples-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 16px; height: 20px; background-position: -16px -36px;}
.sprite-request-mail-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 22px; height: 20px; background-position: -32px -36px;}
.sprite-request-heart-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 18px; height: 20px; background-position: -54px -36px;}
.sprite-star-empty { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 19px; height: 18px; background-position: -72px -36px;}
.sprite-star-filled { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 19px; height: 18px; background-position: -91px -36px;}

.sprite-box-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 41px; height: 27px; background-position: -4px -248px; margin-top: 6px;}
.sprite-envelope-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 41px; height: 28px; background-position: -7px -293px; margin-top: 6px;}
.sprite-box-envelope-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 41px; height: 24px; background-position: -69px -249px; margin-top: 8px;}
.sprite-flying-envelope-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 57px; height: 24px; background-position: -114px -249px; margin-top: 8px;}
.sprite-help-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 14px; height: 14px; background-position: -145px -0px;}
.sprite-help-gradient-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 14px; height: 14px; background-position: -159px -0px;}
.sprite-brown-arrow-down, .sprite-icon-prettyselectarrow{ background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 13px; height: 8px; background-position: -145px -14px;}

.sprite-recycled-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 16px; height: 16px; background-position: -93px -83px;} 
.sprite-studiobasics-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 86px; height: 14px; background-position: -42px -106px; margin-bottom:2px; } 
.sprite-warning-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 37px; height: 33px; background-position: -1px -57px;} 
.sprite-preship-envelope-icon { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 55px; height: 41px; background-position: -38px -58px;} 

.sprite-zoom-icon-in { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 33px; background-position: -75px -296px;}
.sprite-zoom-icon-in:hover { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 33px; background-position: -103px -296px;}
.sprite-zoom-icon-out{ background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 33px; background-position: -131px -296px;}
.sprite-zoom-icon-out:hover { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 28px; height: 33px; background-position: -159px -296px;}

 .sprite-add-to-cart-button { background: transparent url(/image/tp/product-page-sprites.png) no-repeat; overflow: hidden; width: 145px; height: 36px; background-position: 0px -210px;}
 */

/* gc STUFF */
.gcSectionHeader { 
	background:url('/image/tp/product-page-gradient.png') repeat-x scroll 0 0 transparent;
	margin-top:15px;
	font-weight:bold;
	padding:10px 15px 15px 8px;
}
#gcOrderOptionsHelp {float:right; margin-top:6px;}
#gcShipping {clear:left;}
#gcShippingHeading { background:url("/image/tp/gradient-light-blue.gif") repeat-x scroll 0 0 transparent; font-size:1.1em; font-weight:bold; height:28px; padding:0 3px; }
#gcShipping .label { padding: 6px 3px; } 
.gcSectionContent { padding: 5px; } 
.gcSectionContent h4, .gcSectionContent h5{font-family: sans-serif, verdana, arial; padding: 5px 2px; font-weight: bold; margin-top:0;} 
.gcSectionContent  ul {margin:0;} 
.gcSectionContent  ul  li{ margin-left: 30px; margin-top: 4px; margin-bottom: 4px;}
#gcOrderOptionsContent { font-family: Arial,Verdana,Helvetica,sans-serif; padding: 0 2px; margin-bottom:6px;}
#gcOrderOptionsContent h4{ font-size: 13px; padding-left: 10px; font-weight: normal;  }
#gcOrderOptionsContent h4 .priceSpan{font-weight: bold;}
#gcGiftCardContainer h4 {text-transform:none; }
#gcGiftCardContainer .gcGiftCardCheckbox {float: left; margin-top:3px;}
#gcOrderOptionsContent h4 .giftCardTitleSpan{float:left; font-weight: bold;}
#gcOrderOptionsContent .giftCardAmountSpan{float:left; font-weight: bold; margin-top: 10px;}
#giftCardAmount {float:left; margin-top: 8px;}
#giftCardPartnerLogos {float:left; cursor: pointer; background: transparent url(/sprite/tp/greeting/product.png) no-repeat; overflow: hidden; width: 270px; height: 55px; margin-left: 80px;}
#giftCardVendorsBody {float:left; margin-top: 10px; margin-left: 10px;}
.showListGiftCardVendorsTitle {font-size:1.1em; font-weight:bold; margin-top:0; padding:10px 0; }

#gcGiftCardsHelp {float:left; margin-top:3px; margin-left:10px;}
.gcSectionContent h5 {padding-left:40px; clear:left;}
.gcDeliveryOptionList{padding-left:60px;}
#gcDeliveryOptionsHelp{margin-top:8px;}
#gcOrderOptionsChoices { margin-top: 15px; font-size: 13px; }
#gcDeliveryOption{float:left}
#gcOrderAsIsContainer { float: left; width: 256px; text-align: center;  }
#gcPersonalizeContainer { float: left; width: 256px; text-align: center; border-left: dotted 2px #D7D7D7;}
#gcPersonalizeContainer.oneOption { margin-left: 128px;  border-left: 0;}
#gcOrderAsIsDiagram { padding: 5px 5px 5px 15px; height: 95px; }
#gcPersonalizeDiagram { padding: 5px 5px 5px 15px; height: 95px;}

#gcOrderOptionsChoices a:hover { border-bottom: none; }
#gcOrderOptionsContent .gcOrderAsIsCard { float: left; }
#gcOrderOptionsContent #gcOrderAsIsExplain { float: left; width: 160px; text-align: left; padding: 5px; }
#gcOrderOptionsContent .gcOrderAsIsTitle { margin-bottom: 10px; }

#gcOrderOptionsContent .gcPersonalizeCard{ float: left;  }
#gcOrderOptionsContent #gcPersonalizeExplain{ float: left; width: 160px; text-align: left; padding: 5px; }
#gcOrderOptionsContent .gcPersonalizeTitle{ margin-bottom: 10px;  }

/* 
.sprite-gcOrderAsIsCard { background: url('/image/tp/product-page-sprites-gc.png') no-repeat -4px -1px; height: 85px; width: 63px; }
.sprite-gcOrderAsIsTitle { background: url('/image/tp/product-page-sprites-gc.png') no-repeat -82px -5px; height: 21px; width: 105px; }
.sprite-gcOrderAsIsButton { background: url('/image/tp/product-page-sprites-gc.png') no-repeat -54px -100px; height: 31px; width: 122px; }
.sprite-gcOrderAsIsButton:hover { background: url('/image/tp/product-page-sprites-gc.png') no-repeat -84px -66px; height: 31px; width: 122px; }

.sprite-gcPersonalizeCard{ background: url('/image/tp/product-page-sprites-gc.png') no-repeat -236px -6px; height: 85px; width: 63px; }
.sprite-gcPersonalizeTitle{ background: url('/image/tp/product-page-sprites-gc.png') no-repeat -316px -5px; height: 23px; width: 103px; }
.sprite-gcPersonalizeButton{ background: url('/image/tp/product-page-sprites-gc.png') no-repeat -297px -100px; height: 31px; width: 113px; }
.sprite-gcPersonalizeButton:hover { background: url('/image/tp/product-page-sprites-gc.png') no-repeat -319px -66px; height: 31px; width: 113px;}
.sprite-gcPersonalizeButton {float:right;}
 */
#customColorHelp{float:right; width:40%;}


.link {cursor:pointer;}
.video {float: left; margin-left: 9px;}

#container-dynamic div.overlay {
	background: url('/image/tp/css/bgs/overlay.png') no-repeat;
	padding: 40px;
	width: 576px;
	height: 350px;
	display: none;
 	left: 147px !important; 
	z-index: 10000!important;
	overflow: hidden !important;
}
#container-dynamic div.overlay.tpg {
	left: 30% !important;
}

#videos.addr-book .addrbookvid div.overlay { left:0 !important; top: 0 !important; }

div.overlay div.close {
	background:url('/image/tp/css/bgs/close.png') no-repeat;
	position:absolute;
	top:2px;
	right:5px;
	width:35px;
	height:35px;
	cursor:pointer;
}
#videos a.player {
	display:block;
	height:350px !important;
	border-bottom:0;
	background-image:none;
	width:576px !important;
}

div .productTrimOptionsSection label, div .productTrimOptionsSection .dropdown {
    float: left;
}
#trimOptionsHelp {
    float: left;
    margin-top: 3px;
	margin-left: 5px; 
}
label.dropdownLabel, div.dropdownLabel { 
	float: left;
	width: 50px; 
	text-align: right; 
}
div .productTrimOptionsSection .dropdown {
	float: left;
	margin-left: 5px; 
}
div.productTrimOptionsSection .PrettySelectSeperator {
	clear: both; 
}
div.trimOptionNode {
	width: 340px; 
}
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; 
}

#currentProdDimension{
	font-size: 15px;
	width: 144px;
	margin: 0 10px;
	
}

.currentFormatIcon{
	float: left;	
	text-align: center;
    font-size: 10px;
    font-weight: bold;
    color: #F6931C;
}

.dimensionInfo{
	float: left;
	margin-left: 26px;
}

.freeText{
	float: left;
	margin-right: 5px;
    font-size: 11px;
    font-weight: bold;
}

#matchingItems .hd{
	padding-left: 20px;
	width: auto;
}

#matchingItems .bd{
	width: auto;
}

#rsvpLinks{
	position: relative;
	top: -20px;	
}


.clr{
	clear: both;
}

#socialButtonsDiv{
	height: 18px;
	width: 422px;
}

.socialBtn{
	float: left;
	margin-right: 3px;
}

.socialBtnOn{
    float: left;
    height: 20px;
    margin-right: 5px;
    padding-left: 2px;
    padding-right: 2px;
}

.onDiv{
    position: absolute;
    top: 38px;
}

.offDiv{
	margin-left: 12px;
}

#onEmail{
	width: 59px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #EEE;
       margin-right: 5px;
}

#emailFriendLink{
	font-size: 11px;
	position: relative;
	top: 2px;
}

#onEmail .sprite-request-mail-button{
	margin: 2px !important;
}

div.like span.connect_widget_text {color:#F00;}
div.like div.connect_widget_confirmation {color:#F00;}
div.like span.connect_widget_text a {color:#F00;}

.colorsContentList {
    margin-bottom: 30px;
    text-align: center;
}

.shareText{
   	float: left;
    font-weight: bold;
    margin-right: 3px;
}

#saveToFavorites{
	float: right;
	margin-top: 0px;
}

			
.digitalLink{
	float: left;
	margin-top: 15px;
	font-weight: bold;
	margin-left: 15px;
}

#onFB iframe{
	width: 47px !important;
}

#reviewAnchor{
	margin-left: 10px;
}

#productDetailsAnchor{
	padding-right: 10px;
}

#recentlyViewedAnchor{
	padding-left: 0px;
}

