@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;




	vertical-align:top
	z-index: 5;
	width: 100%;
	height: 600px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	color: #000;
}

/* 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
{
	width: 280px;
	float: left;
	overflow: hidden;
	color: #000;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 12px;
	padding:5px;
	cursor:pointer;
	margin-left: 10px;
	width: 280px;
	height: 30px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFF;
	border-right-color: #FFF;
	font-weight: bold;
	color: #000;
	text-decoration: none;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #EEE;
	text-decoration: none;
	color: #000;
	font-size: 12px;/*	background-color: #28367f;
	color: #FF6600;
*/
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color: #EEE;
	color: #000;
	
}

/* 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
{
	margin-top: 0px;
	margin-right: 20px;
	padding:0px;
	width: 470px;
	float: right;
	overflow: auto;
	font-weight: normal;
	color: #000;
	z-index: 100;
	background-color: #EEE;
	vertical-align: top;
}
/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 10px;
	z-index: 95;
	margin-top: 0px;
	position: relative;
	background-color: #CCC;
}
.tabledetailunderlay {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	margin-top: -380px;
	margin-left: 0px;
	width: 535px;
	height:380px;
	position: relative;
	z-index: 50;
	float:right;
	background-repeat: no-repeat;
}

