@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;
}

/* 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: #FFF;
	width: 55%;
	float: right;
	padding-top: 4px;
	padding-bottom: 4px;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 100%;
	background-color: #DAE7E7;
	padding: 4px 8px 4px 8px;
	margin: 0;
	width: auto;
	cursor:pointer;
	text-align: left;
}
.MasterDetail .MasterColumn .MasterColumnPicture 
{
	float: left; 
	margin: 5px 0 0 0;
	padding: 0;
	padding-right: 5px;
	
}
.MasterDetail .MasterColumn .MasterColumnTitle 
{
	margin: 10px 20px 5px 0;
}
.MasterDetail .MasterColumn .MasterColumnText
{
	margin: 5px 10px;
	font-size: 80%;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #B5CECE;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	color: #E38345;
	background-color: #FFF;
}

/* 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
{
	padding: 0;
	width: 35%;
	float: left;
/*	overflow: auto;*/
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 1px;
	text-align: left;
	padding: 20px 10px 0 10px;
	width: auto;
	overflow: hidden;
}
.MasterDetail .DetailTitle
{
	font-size: 120%;
	font-weight: bold;
	padding-top: 12px;
	margin: 12px 0 12px 0;
}
.MasterDetail .DetailLabel 
{
	font-size: 100%;
	display: inline;
}
.MasterDetail .DetailPicture
{
	margin-bottom: 10px;
	text-align: left;
	padding-bottom: 10px;
}
