@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.
 */
 a.pic{
	 background:url(../images/picture_go.png) no-repeat left center;
	 padding:3px 0px 3px 20px;
 }
.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: #F4F4F4;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border: 1px solid #CCC;
	padding:8px;
	width: 35%;
	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: 75%;
	background-color: #F4F4F4;
	/*padding:5px;*/
	padding:9px;
	cursor:pointer;
}

/* This is the selector for a highlighted Master Column element.
*/
.MasterDetail .MasterColumnHover
{
	background-color: #F9F9F9;
	border:solid 1px #ccc;
	padding:8px;
}

/* This is the selector for a selected Master Column element.
*/
.MasterDetail .MasterColumnSelected
{
	background-color:#FF9;
	border:solid 1px #ccc;
	padding:8px;
	color: #009;
}

/* 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
{
	border: 1px solid gray;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	padding:10px;
	width: 55%;
	float: right;
	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;
}
/*********styles for data table**************/
ul{
	margin-bottom:8px;
}
li.data{
	background:url(../images/bullet_white.png) no-repeat left center;
	padding-left:20px;
	line-height:150%;
	margin-bottom:12px;
}
img.right{
	float:right;
	width:auto;
	margin-left:12px;
}

