@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
{
	margin: 0px;
}
/* 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. 
*/
.MasterContainer 
{
	overflow: hidden;
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	padding: 0px;
	margin: 0px;
}
/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterColumn 
{
	font-size: 11px;
	cursor:pointer;
	width: 100%;
	border-bottom-width: 1px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
	font-weight: normal;
	text-align: center;
}
/* This is the selector for a highlighted Master Column element.
*/
.MasterColumnHover 
{
	cursor: pointer;
	color: #6CF;
}
/* This is the selector for a selected Master Column element.
*/
.MasterColumnSelected 
{
	color: #6CF;
}
/* 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. 
*/
.DetailContainer 
{
	width: 100%;
	overflow: auto;
	padding: 0px;
}
/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.DetailColumn 
{
	margin-bottom: 1px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 5px;
}
