@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.
 */
.eventMasterDetail
{
	margin:0;
}

/* 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. 
*/
.eventMasterDetail .eventMasterContainer
{
	width: 250px;
	float: left;
	color: #FE9900;
	cursor:pointer;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.eventMasterDetail .eventMasterColumn
{
	cursor:pointer;
	border-top:solid 1px #FFF;
}

/* This is the selector for a highlighted Master Column element.
*/
.eventMasterDetail .eventMasterColumnHover
{
	border-top:solid 1px #FE9900;
}

/* This is the selector for a selected Master Column element.
*/
.eventMasterDetail .eventMasterColumnSelected
{
	border-top:solid 1px #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. 
*/
.eventMasterDetail .eventDetailContainer
{
	width: 500px;
	float: right;
	text-align: left;
}
/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.eventMasterDetail .eventDetailColumn
{
	margin:0;
}
.eventMasterDetail .eventMasterTitle
{
	margin: 0;
	font-weight: bold;
}
.eventMasterDetail .eventMasterDate
{
	font-size:0.75em;
	margin: 0 0 10px 0;
	color: #767a78;
}
.eventMasterDetail .eventDetailContainer .Title
{
	font-weight:bold;
	margin: 0;
	font-size:1.2em;
}
.eventMasterDetail .eventDetailContainer .Date
{
	font-size:0.75em;
	margin: 0 0 10px 0;
	color: #767a78;
}
.eventMasterDetail .eventDetailContainer p
{
	margin:0 0 10px 0;
}
