@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;
	width: 640px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 12px;
}

/* 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: #9FA1a4;
	border: 1px solid gray;
	width: 25%;
	float: left;
	overflow: hidden;
	height: 100%;
	padding: 10px 0px 10px 5px;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 10px;
	color: #FFF;
	background-color: #9FA1A4;
	padding:5px 5px 5px 0px;
	cursor:pointer;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 10px;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #5C2C81;

}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:#007DC3;
	color: FFF;
}

/* 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:10px 0px 10px 10px;
	width: 68%;
	float: right;
	overflow: auto;
	margin: 0px 20px 0px 0px;
	font-family: Arial, Helvetica, sans-serif;
	color: #5F6062
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	color: #000;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin: 0px 0px 0px 0px;
}
.specHead {
	color: #003366;
	font-weight: bold;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	margin-bottom: 5px;
}
.labelHead {
	font-size: 12px;
	font-weight: bold;
	padding-left: 20px;
	color: #5F6062;
}
.chartHead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #003366;
	padding: 10px;
	font-weight: bold;
}
.value {
	color: #007DC3;
	font-weight: bold;
}
.specLeftColumn {
	text-align: right;
	color: #5F6062
}
.specRightColumn {
	text-align: left;
	text-wrap: unrestricted;
}
