@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
{
	margin: 2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #212427;
}

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

/* This is the selector for a column element which holds the actual data. 
 *
*/
.StackedContainers .RowColumn
{
	background-color: #212427;
	margin-bottom: 5px;
	padding: 5px;
}
.StackedContainers .RowContainer .RowColumnHeader {
	color: #FFDE16;
	font-size: 12px;
	background-color: #212427;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFDE16;
	font-weight: bold;
	letter-spacing: 0.1em;
}

.StackedContainers .RowColumnText {
	background-color: #212427;
	margin-bottom: 1px;
	font-size: 11px;
	font-weight: normal;
	color: #FFF;
	margin-top: 5px;
	padding: 5px;
}

