@charset "UTF-8";

/* SprySpotlightColumn.css */

/* Copyright (c) 2007. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main container of the Spotlight Column and Stacked Containers structure. 
 *
 * If you want to constrain the width of the Master/Detail structure, set a width on
 * the Master/Detail container. By default, our structure expands horizontally to fill
 * up available space.
 */
 
.SpotlightAndStacked
{
	margin: 1em;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	overflow: hidden;
}
.SpotlightAndStacked + table {
	float: left;
}

/* This is the selector for the row element which houses all the Spotlight and Stacked containers
 * classes. 
*/
.SpotlightAndStacked .SpotlightAndStackedRow
{
	border: 1px solid #CCCCCC;
	background-color: #FFF;
	margin-bottom: 1em;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-background-clip: padding-box;     /* Firefox 3.6 */
	-webkit-background-clip: padding-box;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;
	float: left;
	width: 95%;
	padding: 10px;
	font-size: 0.9em;
}

/* This is the selector for the container of the Spotlight column elements. By default 
 * the Spotlight column occupy about 25% from the width of the 
 * entire structure. 
*/
.SpotlightAndStacked .SpotlightContainer
{
	width: 25%;
	float: left;
}

/* This is the selector for the Spotlight column element which holds the actual data for 
 * a spotlight column.
*/
.SpotlightAndStacked .SpotlightColumn
{
	/* [disabled]text-align: center; */
}

.SpotlightAndStacked .SpotlightColumn img {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-moz-background-clip: padding-box;     /* Firefox 3.6 */
	-webkit-background-clip: padding-box;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;
	height: auto;
	max-width: 150px;
}
.SpotlightAndStacked .SpotlightColumn form       {
	margin-top: 1em;
	text-align: center;
}

/* This is the selector for the container of the Stacked container elements. By default 
 * the Stacked container occupy about 75% from the width of the 
 * entire structure. 
*/
.SpotlightAndStacked .StackedContainer
{
	width: 75%;
	float: right;
}

/* This is the selector for the Stacked container elements which holds the actual data for 
 * a stacked column.
*/
.SpotlightAndStacked .StackedColumn
{
	/* [disabled]border: 1px solid #FFFFFF; */
	padding: 2px;
}
