@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;
	margin-top: 0px;
	padding-top: 0px;
	height: auto;
	
}

/* 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
{
	border: none;
	width: 210px;
	margin-left: -2px;
	float: left;
	overflow: hidden;
	padding-top: 0px;
	font-weight: bold;
	text-align: center;
	color: #FFFBF0;
	text-transform:uppercase;
	margin-top: 1px;
	display: block;
	padding-left: 0px;
	padding-right: 15px;
	border-left: none;
	border-top: none;

}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 85%;
	padding:0px;
	width: 210px;
	padding-top: 7px;
	padding-left: 10px;
	padding-right: 10px;
	background-image: url(../buttonsback.png);
	background-position:center;
	background-repeat:no-repeat;
	color: #FFF;
	list-style-type:none;
	height: 23px;
	display: block;
	margin-top: 0px;	
}

/* This is the selector for a highlighted Master Column element.
*/

.MasterDetail .MasterColumn  a:link {
	color: white;
	text-decoration:none;
	font-size:14px;
}

.MasterDetail .MasterColumn a:visited {

color:  white;
text-decoration:none;
	font-size:14px;

}




.MasterDetail .MasterColumn a:hover {
	color: #A0A0A4;
	text-decoration:none;
}





/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	color: red;
}

/* 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
{
	padding:10px;
	padding-top: 10px;
	width: 450px;
	float:right;
	overflow-y: hidden;
	overflow-x: auto;
	margin: 0;
	margin-right: 50px;
	margin-top: 0px;
	color: #06041C;
	font-size: 12px;
	
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 1px;
}




