@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
{
	height: 500px;
	width: 800px;
	color: #000;
}

/* 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: 355px;
	float: left;
	overflow: hidden;
	height: 500px;
	border-right-width: thin;
	border-right-style: dotted;
	border-right-color: #666;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	cursor:pointer;
	border: thin solid #666;
	float: left;
	margin-top: 0.5em;
	margin-left: 0.5em;
	margin-bottom: 0.1em;
}
.MasterDetail .MasterContainer .MasterColumn .thumb {
}

/* 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
{
	width: 440px;
	float: right;
	overflow: auto;
	height: 495px;
	text-align: center;
	margin-top: 0.5em;
}
.MasterDetail .DetailColumn {
}
.full {
	margin-bottom: 0.5em;
}
.client {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	color: #900;
	margin-bottom: 0.2em;
}
.publication {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-style: italic;
	color: #333;
	margin-bottom: 0.2em;
}
.details {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	color: #333;
	margin-bottom: 0.2em;
}
.date {
	font-family: "Times New Roman", Times, serif;
	font-size: 0.9em;
	color: #333;
}
