@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
{
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
}

/* This is the selector for the Row Container element which houses all the column
 * classes. 
*/
.StackedContainers .RowContainer
{
	padding: 5px;
}

/* This is the selector for a column element which holds the actual data. 
 *
*/
.StackedContainers .RowColumn
{
	background-color: #A3AFC5;
}
.StackedContainers .RowColumn h1 {
	background-color: #708097;
	color: #FFF;
	font-size: 16px;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 5px;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 2px #666;
}
.StackedContainers .RowColumn p {
	background-color: #708097;
	color: #FFF;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 15px;
}

