@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.
 */
#container-wrap {
	position: relative;
	clear: both;
	float: left;	
	width: 824px;
	top: 70px;
	padding: 0; 	
	background: #FFF;	
	border-top: 5px solid #FFF;
	margin-left: 30px;	
	display: inline;
	color: #000177;
}
 
.StackedContainers
{
	font: 13px/1.5em Verdana, Geneva, Arial, Helvetica, sans-serif;
	margin: 2px;
}

/* This is the selector for the Row Container element which houses all the column
 * classes. 
*/
.StackedContainers .RowContainer
{
	border: 1px solid gray;
	margin-bottom: 5px;
}

/* This is the selector for a column element which holds the actual data. 
 *
*/
.StackedContainers .RowColumn
{	
	background-color: #F0F0F0;
	margin-bottom: 1px;
}

