/**********************************************************************
 * Styles.css                                                         *
 *                                                                    *
 * This file is initially empty and you can add any additional styles *
 * or modify any of the styles defined in BaseStyles.css              *
 * This file will never be overwritten.                               *
 *                                                                    *
 * For example, if you want to override just the top padding for a    *
 * menu, you can simply add the following lines:                      *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	}                                                             *
 *                                                                    *
 * This will keep all the other styles of the "menus" style as-is,    *
 * but modify the top padding to be 20px.                             *
 *                                                                    *
 * You can also, add a new style by just specifying it.               *
 *                                                                    *
 * .menus {                                                           *
 * 	padding-top: 20px;                                            *
 * 	text-align: center;                                           *
 * 	}                                                             *
 * 	                                                              *
 * In the above case, we added the text-align style.  This style was  *
 * not specified in the original declaration of the menus style.      *
 *                                                                    *
 **********************************************************************/
.MyHighLight
{
	border-style: solid;
	border-width: 1px;
	border-color: Red;
}
.MyLowLight
{
	border-style: solid;
	border-width: 1px;
	border-color: Silver;
}

.asbMenu
{
	border: 1px solid lightsteelblue;
	background: #ffffff;
	position: absolute;
	padding: 0;
	white-space: nowrap;
	z-index: 1000;
	font-size: 11px;
	font-family: Verdana;
}

.asbMenuBase
{
	position: absolute;
	z-index: 1000;
}

.asbMenuItem
{
	font-size: 11px;
	font-family: Verdana;
	color: black;
	background: #ffffff;
	cursor: hand;
	cursor: pointer;
	white-space: nowrap;
}

.asbSelMenuItem
{
	font-size: 11px;
	font-family: Verdana;
	background: #007FC4;
	color: White;
	cursor: hand;
	cursor: pointer;
	white-space: nowrap;
}
.styledTable
{	
	font-family: Arial,Sans-Serif;
	color: #959A60;
	font-size: 12px;
	border: solid 1px #000000;
	width:205px;	
}
.styledTable td
{
	padding:4px;
}
.styledTableHeader
{
	background-color:#000000;
	color:#ffffff;
	font-weight:bold;
}
.styledTableRow
{
	
}
.styledTableAltRow
{
	background-color:#FFFFCD;
	color:#5D603D;
}

