@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: 100% Verdana, Geneva, sans-serif;
	margin: 2px;
	float: none;
}
.ConfInfoContainer {
	background: url('../img/code.gif');
	border-left: 6px solid #1664D9;
	border: 1px solid #F0F0F0;
	color: #555;
	margin-bottom: 12px;
	padding: 8px 10px;
/*	display: block; */
	font: normal 1em "Lucida Sans Unicode",serif;
}
.ConfInfoContainer .ConfInfoText {
	padding: 0px;
}


.MasterDetail .DetailTitle{
	font-weight: bold;
	font-size: 14px;
}
.DetailContainer .DetailDescription {
	padding-top: 10px;
	line-height: 1.6em;
	margin-top: 0.4em;
	margin-bottom: 1em;
}
.MasterDetail .DetailDate {
	color: #999;
}



/* 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: #EAEAEA;
	float: none;
	overflow: hidden;
	border-top-color: gray;
	border-right-color: gray;
	border-bottom-color: gray;
	border-left-color: gray;
	color: #C8C8C8;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	background-color: #000;
	padding:5px;
	cursor:pointer;
	font-size: 10px;
	border-bottom-width: thin;
	border-bottom-style: solid;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #333;
	color: #EEE;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:#FFF;
	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
{
	overflow: auto;
	border-top-color: gray;
	border-right-color: gray;
	border-bottom-color: gray;
	border-left-color: gray;
	padding-left: 8px;
	padding-top: 15px;
	padding-bottom: 20px;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 1px;
}
