@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
{
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-top: 20px;
	margin-right: 2px;
	margin-bottom: 0px;
	position: absolute;
	left: 155px;
	top: 203px;
}

/* 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: #000;
	border: 1px solid gray;
	width: 190px;
	overflow: hidden;
	margin-left: 20px;
	position: absolute;
	left: 0px;
	top: 0px;
}


/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 75%;
	background-color: #000;
	cursor:pointer;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-left: 5px;
	margin-top: 0px;
	margin-bottom: 0px;
	color: #999;
}

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

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

/* 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;
	width: 420px;
	float: left;
	overflow: auto;
	margin-left: 20px;
	height: 500px;
	position: absolute;
	left: 210px;
}
.MasterDetail .DetailContainer.Scrollgrid
{ 
    
OVERFLOW: auto; BORDER-LEFT: #000000 1px; WIDTH: 100%; BORDER-BOTTOM: #000000 1px; HEIGHT: 258px;
scrollbar-3d-light-color:#999999;
scrollbar-arrow-color:#9C3842;
      scrollbar-base-color:#003366;
      scrollbar-dark-shadow-color:#9C3842;
      scrollbar-face-color:#e7e7e7;
      scrollbar-highlight-color:#ffffff;
      scrollbar-shadow-color:9C3842;    
    
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 1px;
}
.MasterDetail .DetailContainer #dName {
	font-size: 120%;
	font-weight: bold;
	padding-bottom: 5px;
	padding-top: 5px;
}
#masterDetailContainer {
	height: 600px;
	padding-left: 20px;
}

