@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-size: 15px;
	text-align: center;
	width: 800px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #F06;
	background-color: #FFF;
}
.MasterDetail .MasterContainer {
	margin-top: 15px;
	margin-bottom: 10px;
	height: 120px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #F06;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	cursor: pointer;
	margin-right: auto;
	margin-left: auto;
	display: inline;
}
.MasterDetail .MasterColumn img {
	margin-right: 5px;
	border: 1px dotted #F06;
	margin-left: 5px;
	height: 80px;
	width: 80px;
}
/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
 {
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
}

/* 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
{
	margin-right: auto;
	margin-left: auto;
	height: 550px;
}
.MasterDetail .DetailContainer img {
	border: 1px dotted #F06;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	font-size: 16px;
}

