/*
ProductCart Shopping Cart Software, Copyright Early Impact LLC 2006, All Rights Reserved
Use this stylesheet to change the look of the default header and footer that ship with ProductCart.

If styles modified using this page do not appear in your storefront, please check the following
two items before anything else:

Make sure that header.asp links to this stylesheet. The code goes before the closing </head> tag:

<link type="text/css" rel="stylesheet" href="pcBTO.css" />

/* START - BTO Prices */

#pcBTOfloatPrices {
	margin-left: 500px; /* change this value depending on the width of the area where ProductCart code is loaded */
	width: 220px; /* sets the width of the floating element: it might need to be changed depending on font size */
	position: fixed;
	top: 280px;
	background-color: #e1e1e1;
	padding: 5px;
	border: 1px solid #FFF;

	/* Transparency: remove for no transparency */
	filter:alpha(opacity=75);
    -moz-opacity:0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75; 
	/* Transparency: end */
	
	/* Round corners */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	/* End Round corners */
}

/* Style price values: 
   To style the prices in the floating panel, enter any styles here */
#pcBTOfloatPrices .transparentField {

}

/* Hide the prices that were shown at the top */
#pcBTOhideTopPrices {
	display: none;
}

/* Hide table row at the bottom that says "Total"  */
#pcBTOtotalTitle {
	display: none;
}

	/* IF using a dark background, change font color */
		#pcBTOfloatPrices {
			color: #333;
		}
		
		#pcBTOfloatPrices input {
			color: #333;
		}
	/* END IF */
	
/* Hide the line breaks
   Do a search for <hr> on configurePrd.asp and replace the two instances
   with <hr class="pcBTObr"> if the class is not there. */
.pcBTObr {
	display: none;
}

/* END */