/*  
Version: 1.0
Author: TargetScope Inc.
Author URI: http://www.targetscope.com
*/

/*____________________________________________________________
Table styles
I prefer to setup a special table style class that you must
apply to each table to use this formating. this way, basic
positioning tables for forms don't look all crazy. 
____________________________________________________________*/
table.TableWithStyle{
	background-color: #EDEDED;
	border: 1px solid #333333;
	margin:10px 0 20px 0;
}

table.TableWithStyle td{
	border-width:0 1px 1px 0;
	border-style:dotted;
	border-color: #333333;
	border-collapse: collapse;
	padding: 3px 6px;
	color:#000000;
}
table.TableWithStyle th{
	border-width:0 1px 1px 0;
	border-style:dotted;
	border-color: #938876;
	border-collapse: collapse;
	padding: 3px 6px;
	background-color: #CCCCCC;
	color: #333333;
}
table.TableWithStyle thead th{
	background-image: url(/v1/images/thead_bg.jpg);
}
table.TableWithStyle tr:hover{
	background-color: #F6F6F6;
}
table.TableWithStyle tr:hover th{
	background-color: #D7D7D7;
}

table.TableWithStyle thead tr:hover th{
	background-color: #28231D;
}


fieldset{
	margin:1em 0 2em 0;
	padding: 15px 20px 20px 20px;
	border: 1px solid #999999;
	/*background: #FFFFFF url(/v1/images/fieldSet_bg.jpg) repeat-x;*/
	background-color:#EEEEEE;
	position:relative;
	display:block;
}

legend{
	font-weight: bold;
	font-size: 18px;
	color: #000000;
	position:relative;
	top: -12px;
	padding:0 4px 0 4px;
}
fieldset fieldset legend{
	color:#9F1F11;
	font-size:12px;
}

fieldset table{
	
}
fieldset table td{
	border-width:0 0 0 0;
	border-collapse: collapse;
	padding: 5px 6px;
	color:#333333;
	vertical-align: top;
    margin-left: 40px;
}
fieldset table th{
	border-width:0 0 0 0;
	border-collapse: collapse;
	padding: 10px 10px 10px 0;
	color: #333333;
	text-align: right;
	vertical-align: top;
	width: 200px;
	font-size:14px;
	font-weight:bold;
}

fieldset table .GridView_HeaderStyle th{
	color: #FFFFFF;
}




