@charset "UTF-8";

/* SpryMasterDetail.css */

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

/* This is the selector for the main Master/Detail structure container. 
 *
 * 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.
 */
.MasterDetail {
	float: left;
	clear: both;
	overflow: visible;
	width: 600px;
	background-color: #FFF;
}

/* This is the selector for the Master Container element which houses all the MasterColumn
 * classes.
*/
.MasterDetail .MasterContainer {
	width: 130px;
	margin: 1px;
	padding: 2px;
	float: left;
	overflow: hidden;
	font-weight: bold;
	text-align: center;
	font-variant: small-caps;
	font-size: .85em;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn {
	padding: 2px;
	margin: 1px 8px;
	width: 80%;
	cursor: pointer;
	background: #D84D3F;
	color: #F0ECE7;
	border: 1px inset #0C4283;
	text-align: center;
	font-variant: normal;
	font-size: .93em;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover {
	color: #2B3748;
	background: #F0ECE7;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected {
	color: #D84D3F;
	background: #CCC;
}

/* This is the selector for the Detail Container element which houses all the DetailColumn
 * classes. 
*/
.MasterDetail .DetailContainer {
	padding: 2px;
	margin: 1px;
	width: 458px;
	float: left;
	overflow: auto;
	background: #D84D3F;
	color: #F0ECE7;
	font-weight: bold;
	border: 1px solid #D84D3F;
	text-align: center;
	font-variant: small-caps;
	font-size: .85em;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn {
	background: #FFF;
	color: #333;
	font-weight: normal;
	padding: 2px 20px 2px 4px;
	margin: 1px;
	font-variant: normal;
	text-align: left;
}

