@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
{
	width:100%;
}

/* This is the selector for the Row Container element which houses all the column
 * classes. 
*/
.StackedContainers .menuItemGroup
{
	margin-bottom: 1em;
}

/* This is the selector for a column element which holds the actual data. 
 *
*/
.StackedContainers .menuItem
{
	text-transform:uppercase;
	font-weight:bold;
	margin-right:50px;
}

.StackedContainers .menuPrice
{
	float:right;
	width:50px;
	text-align:right;
}

.StackedContainers .menuDescription
{
	margin-right:50px;	
}

.StackedContainers .RowContainer
{
	border:1px #dddddd outset;
	padding:0.5em;
	margin:1em;
	background:#eeeeee;
}