/*This css holds everything related to tables.*/
/* table elements */
table {
	background: #EEEEEE;
	/*margin: 4px 0 20px 0;*/
	margin: 8px 0 20px 0;
	/*width: 98%;*/
	width: 100%;
	border-collapse: collapse;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

table th {
	padding: 10px 4px;
	text-align: left;
	border-right: 1px solid #393939;
	/*background-color: #000;*/
	background-color: #00425E;
	font-size: 11px;
	/*font-size: 12px;*/ /* for increasing text size */
	text-align: left;
	font-weight: normal;
	color: #FFF;
	/*vertical-align: middle;*/
	vertical-align: top;
}

table th.width16,table td.width16 {
	width: 16px;
}

table th.width20,table td.width20 {
	width: 20px;
}

table th.width100,table td.width100 {
	width: 100px;
}

table th.width150,table td.width150 {
	width: 150px;
}

table th.width210,table td.width210 {
	width: 210px;
}

table td {
	/*padding: 10px 4px*/
	padding: 4px;
	text-align: left;
	border-right: 1px solid #ddd;
	font-size: 11px;
	/*font-size: 12px;*/ /* for increasing text size */
	vertical-align: top;
}

table td div {
	font-size: 11px;
}

table td form {
	text-align: left;
	vertical-align: middle;
	margin: 0px;
}

table thead {
	background-color: #BBBBBB;
}

/*Server side sort and page*/
.sortable {
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	font-style: italic;
	cursor: pointer;
}

.sortable a {
	text-decoration: none;
	color: white;
	font-weight: bolder;
}

.sorted a {
	color: black;
}

.sorted {
	background-color: #efefef;
	color: black;
}

.order1 {
	background-image: url(../images/desc.gif);
}

.order2 {
	background-image: url(../images/asc.gif);
}

.pagelinks {
	display: block;
	padding: 3px;
	float: right;
}

.pagebanner {
	padding: 3px;
}

.pagesizes {
	padding: 3px;
}

.exportlinks {
	display: block;
	padding: 10px;
}

tr {
	background-color: #FFFFFF;
}

tr.even td {
	background-color: #e5ecef;
}

/*Client side sort and page*/
table.tablesorter {
	margin: 10px 0pt 15px;
	font-size: 8pt;
	/*font-size: 9px;*/ /* for increasing text size */
	width: 100%;
	text-align: left;
}

table.tablesorter thead tr th,table.tablesorter tfoot tr th {
	border: 1px solid #FFF;
	font-size: 8pt;
	/*font-size: 9px;*/ /* for increasing text size */
	padding: 4px;
	vertical-align: top;
}

table.tablesorter thead tr .header {
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
	vertical-align: top;
}

table.tablesorter tbody td {
	color: #3D3D3D;
	padding: 4px;
	background-color: #FFF;
	vertical-align: top;
}

table.tablesorter tbody tr.odd td {
	background-color: #F0F0F6;
}

table.tablesorter thead tr .headerSortUp {
	background-image: url(../images/asc.gif);
}

table.tablesorter thead tr .headerSortDown {
	background-image: url(../images/desc.gif);
}

table.tablesorter thead tr .headerSortDown,table.tablesorter thead tr .headerSortUp
	{
	background-color: #efefef;
	color: black;
}

div.pager {
	padding-top: 5px;
	vertical-align: middle;
}

.fixedTable {
	table-layout: fixed;
}