@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 {
	font: 1em Verdana, Geneva, sans-serif;
	margin: 2px;
	float: left;
	width: 100%;
	clear: both;
	padding: 2px 2px 20px;
	overflow: visible;
}

/* This is the selector for the Master Container element which houses all the MasterColumn
 * classes. By default the Master column occupy about 35% from the width of the 
 * entire structure. 
*/
.MasterDetail .MasterContainer {
	border: 1px solid gray;
	width: 15%;
	float: left;
	overflow: hidden;
	font-weight: bold;
	padding: 2px 8px;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn {
	font-size: 1em;
	padding:4px;
	cursor:pointer;
	background: #F30;
	color: #FFF;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover { background: #0F9ED6; }

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

/* This is the selector for the Detail Container element which houses all the DetailColumn
 * classes. By default the Detail column occupy about 60% from the width of the 
 * entire structure. 
*/
.MasterDetail .DetailContainer {
	border: 1px solid gray;
	padding:2px 8px;
	width: 80%;
	float: right;
	overflow: auto;
	background: #336699;
	color: #FFF;
	font-weight: bold;
}

/* 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 8px;
	margin: 2px;
}

