@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: #CCCCCC;
	border: 1px solid gray;
	width: 22%;
	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;
	background-color: #CCCCCC;
	padding:5px 5px 5px 0px;
	cursor:pointer;
	font-family: Verdana, Geneva, sans-serif;
	line-height: 10px;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #003366;
	border-right: Solid Black 4px;
	color:#FFF;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:#729ACB;
	color: black;
	border-right: Solid #333 4px;
}

/* 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: 70%;
	float: right;
	overflow: auto;
	margin: 0px 20px 0px 0px;
	font-family: Verdana, Geneva, sans-serif;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	color: #000;
	height: 12px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
}
.specHead {
	color: #003366;
	font-weight: bold;
	font-size: 16px;
	font-family: Verdana, Geneva, sans-serif;
	text-align: left;
	margin-bottom: 5px;
}
.chartHead {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	color: #003366;
	padding: 10px;
	font-weight: bold;
}
.value {
	color: #014A7F;
}

