@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-family: Georgia, "Times New Roman", Times, serif;
	font-size: 101%;
	margin-top: 20px;
	margin-right: 2px;
	margin-bottom: 2px;
	margin-left: 2px;
	line-height: 10px;
	text-decoration: none;
	text-align: left;
}

/* 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
{
	background-color: #E0EEF1;
	width: 30%;
	float: left;
	overflow: hidden;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 100%;
	cursor:pointer;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #366CA6;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left:20px;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #E0EEF1;
	color: #06F;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:E0EEF1;
	color: #6CC;
}

/* 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
{
	width: 60%;
	float: left;
	overflow: auto;
	padding: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left:27px;
	margin-top: 23px;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 10px;
	margin-left: 4px;
}
.DetailColumn{
	line-height:20px;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-style: normal;
	color: #666;
	font-size: .8em;
	}
