@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: "MS Serif", "New York", serif;
	font-size: 110%;
	background-color: #FFF;
	width: 660px;
	margin-right: auto;
	margin-left: 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
{
	width: 140px;
	float: left;
	border: medium solid #383B18;
	height: 450px;
	overflow: scroll;
}

/* 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: #DADACF;
	cursor:pointer;
	text-align: center;
	padding-top: 5px;
	line-height: 125%;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #666;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #7F8161;
	font-weight: bold;
	line-height: 125%;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:#4D5129;
	color: #DADACF;
	font-weight: bold;
	line-height: 125%;
}

/* 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
{
	width: 490px;
	float: left;
	background-color: #DADACF;
	padding-top: 5px;
	padding-bottom: 5px;
	border: medium solid #363C13;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
}
.MasterDetail .DetailColumnDesc {
	font-size: 80%;
	line-height: 115%;
	color: #330;
	margin-bottom: 1px;
	padding-right: 10px;
	padding-left: 10px;
}
.MasterDetail .DetailColumnName {
	font-size: 90%;
	font-weight: bold;
	background-color: #4D5129;
	margin-top: 5px;
	text-decoration: underline;
	padding-top: 5px;
}
.MasterDetail .DetailColumnAgency {
	font-size: 90%;
	background-color: #4D5129;
	color: #0E100A;
}
.MasterDetail .DetailColumnDates {
	background-color: #4D5129;
	font-size: 90%;
	font-weight: bolder;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #363C13;
}

