@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-left: 150px;
	width: 	760px;
}

/* 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
{
	float: left;
	overflow: hidden;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
.MasterDetail .MasterColumn
{
	font-size: 1em;
	font-family: Verdana, Geneva, sans-serif;
	padding:7px;
	cursor:pointer;
}
.MasterDetail .MasterColumn
{
	color:#AF3A21;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #E9FF9C;
}

/*This is the selector for a selected Master Column element.
.MasterDetail .MasterColumnSelected
{
	background-color:#FFFFFF;
	color: #099;
}*/

.MasterDetail .MasterColumnSelected
{
	background-color:#FC6;
	color: #404040;
}

/* 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
{
	float: left;
	padding:10px;
	margin-left:5px;
	width: 70%;
	overflow: inherit;
	position: relative;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
.MasterDetail .DetailColumn
{
	margin-bottom: 1px;
}
.MasterDetail .descriptionDetail {
	font-size: .8em;
	float: left;
	width: 55%;
	position: relative;
	overflow: auto;

}
.MasterDetail .imageDetail {
	margin-left:.3em;
	float: left;
	width:20%;
	position: absolute;
	right: 2em;
	/*overflow:hidden;/*
}
/*#class {
	font-size: 14px;
	font-weight: bold;
	color: #BCC64A;
}/*

