@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%;
	float: left;
	margin-top: 8px;
}
/* This is the selector for the Row Container element which houses all the column
 * classes. 
*/
.StackedContainers .clientContainer
{
	border: 1px solid gray;
	padding-left: 10px;
	width: 90%;
	float: left;
	position: relative;
	margin-bottom: 6px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 6px;
	padding-bottom: 2px;
	font-size: 96%;
}
.StackedContainers .clientContainerHover {
	border: 1px solid gray;
	padding-left: 10px;
	width: 97%;
	float: left;
	position: relative;
	margin-bottom: 6px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 6px;
	background-color: #333;
}

/* This is the selector for a column element which holds the actual data. 
 *
*/
.StackedContainers .RowColumn
{
	margin-bottom: 0px;
	float: left;
	clear: both;
	width: 75%;
}
.StackedContainers .RowColumnST {
	margin-bottom: 0px;
	float: right;
	padding-right: 4px;
}
