@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: 2px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 120%;
	float: 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
{
	float: right;
	overflow: hidden;
	width: 90px;
	margin-left: 40px;
	font-size: 14px;
	color: #FFF;
	background-color: #FFF;
	margin-right: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #C00;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	padding-top: 8px;
	padding-bottom: 8px;
}


/* 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;
	width: 100%;
	padding: 0px;
	float: left;
	color: #666;
	line-height: normal;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	font-weight: 200;
}

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

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

/* 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
{
	background-color:#FFF;
	border: 1px solid #CCC;
	float: left;
	overflow: auto;
	white-space: normal;
	padding-bottom: 10px;	
}

.DetailContainer2
{
	background-color:#FFF;
	border: 1px solid #CCC;
	float: left;
	overflow: auto;
	white-space: normal;
	padding-bottom: 10px;
	width: 340px;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 25px;
	font-size: 12px;
	font-weight: 200;
	color: #333;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
	padding-left: 10px;
	width: 430px;
}

.MasterDetail .DetailColumn2
{
	font-weight: 600;
	color: #FFF;
	background-color: #333;
	font-size: 12px;
	font-weight: 600;
	color: #FFF;
	padding-left: 10px;
	padding-top: 5px;
	width: 430px;
	height: 30px;
}

