@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: 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. 
*/
 .MasterContainer
{
	background-color: #fff;
	width: 733px;
	float: left;
	overflow: hidden;
	border-bottom:1px solid #A3A3A3;
}

/* This is the selector for a Master Column element which holds the actual data for 
 * a master column.
*/
 .MasterColumn
{
	/*border-bottom:1px solid #fff;
	background-color: #e2e2e2;*/
	padding:0px;
	cursor:pointer;
	color:#1279c6;
/* 	background-image:url(../images/whiteBox.jpg);
	background-repeat:no-repeat;
	background-position:right;	*/
}

/* This is the selector for a highlighted Master Column element.
*/
 .MasterColumnHover
{
	color:#e16f00;
	text-decoration:underline;
	/*background-color: #5b5b5b;
	color:white;
	background-image:url(../images/arrow_grey.jpg);
	background-repeat:no-repeat;
	background-position:right;*/
}

.MasterColumn2 {
background-color:#F0F0F0;
border-left:1px solid #A3A3A3;
border-right:1px solid #A3A3A3;
color:#1279C6;
font-weight:bold;
}

.MasterColumn2Hover {
text-decoration: underline;
color:#e16f00;
font-weight:bold;
}

.MasterColumn3Hover {
text-decoration: none;
color:#666;
font-weight:bold;
}

.MasterColumn3 {
background-color:#F0F0F0;
border-bottom:1px solid #E2E2E2;
border-left:1px solid #A3A3A3;
border-right:1px solid #A3A3A3;
color:#666666;
font-weight:bold;
text-decoration:none;
}

/* This is the selector for a selected Master Column element.
*/

 #mainContent div.twoCol div.rCol div.MasterColumnSelected
{
	width:190px; 
	border-right:0px;
	background-color:#1279c6;
	color: white;
	background-image:url(../images/arrow_blue2.jpg);
	background-repeat:no-repeat;
	height:24px;
	padding:0px;
	text-decoration:none;
	font-weight:bold;
}
 .MasterColumnSelected
{
	width:190px; 
	border-right:0px;
	/*background-color:#1279c6;*/
	color: #1279c6;
	/*background-image:url(../images/arrow_blue2.jpg);
	background-repeat:no-repeat;*/
	height:24px;
	padding:0px;
	text-decoration:none;
	font-weight:bold;
}

/* 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. 
*/
 .DetailContainer
{
	padding:10px;
	
	float: right;
	overflow: auto;
}

/* This is the selector for a Detail Column element which holds the actual data for 
 * a detail column.
*/
 .DetailColumn
{
	margin-bottom: 1px;
}

