@charset "UTF-8";
/* CSS Document */

/* 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.
 */
#pgContents
.MasterDetail{
	margin: 0px;
	font-size: 1px;
	padding: 0px;
	color: #404040;
}
/* 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. 
*/
#pgContents .MasterDetail
.MasterContainer{
	border: 0px solid gray;
	width: 325px;
	overflow: hidden;
	text-align: center;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	height: 50px;
}
/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
#pgContents .MasterDetail
.MasterColumn{
	cursor:pointer;
	height: 48px;
	margin-top: 0px;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 0px;
	border: 1px solid #003;
	padding: 0px;
	float: left;
	width: 55px;
}
/* This is the selector for a highlighted Master Column element.
*/
#pgContents .MasterDetail
.MasterColumnHover{
	border: 1px solid #FFF;
}
/* This is the selector for a selected Master Column element.
*/
#pgContents .MasterDetail
.MasterColumnSelected{
	border: 1px solid #06F;
}
/* 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. 
*/
#pgContents .MasterDetail
.DetailContainer{
	width: 315px;
	overflow: auto;
	text-align: left;
	padding: 5px;
	margin-bottom: 20px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	border: 1px dotted #CCC;
}
/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
#pgContents .MasterDetail
.DetailColumn{
}
