@charset "UTF-8";

/* SpryStackedContainers.css */

/* Copyright (c) 2007. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main container of the Stacked Containers structure. 
 *
 * If you want to constrain the width of the Stacked Containers structure, set a width on
 * the StackedContainers container. By default, our structure expands horizontally to fill
 * up available space.
 */
.StackedContainers
{
	font: 100% Verdana, Geneva, sans-serif;
	margin: 2px 2px 2px 20px;
}

/* This is the selector for the Row Container element which houses all the column
 * classes. 
*/
.StackedContainers .RowContainer
{
	margin-bottom: 10px;
}

/* This is the selector for a column element which holds the actual data. 
 *
*/
.StackedContainers .wrapper {
	width:600;
}

.StackedContainers .RowColumnTitle
{
	font-weight:bold;
	font-size:110%;
	margin-bottom:1px;
	width: 85%;
	float:left;
	border-top: 1px solid #630B11;
}

.StackedContainers .RowColumnPrice {
	margin-bottom: 1px;
	width: 15%;
	border-top: 1px solid #630B11;
	float:right;
	text-align:right;
}

.StackedContainers .RowColumnDesc
{
	margin-bottom: 1px;
	clear:both;
	width:490px;
}



