.ui-table table{
  border-collapse:collapse;
  font: 14px "Helvetica", "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
  color: #222;
  table-layout:fixed;
}

.ui-table:not(.resizable) table{
  width: 100%;
}

/* .ui-table .ui-table-head, .ui-table .ui-table-content{
	table-layout: auto;
}
 */
.ui-table table th, .table-head-wrap {
  background: #C6C7C8; /* for non-css3 browsers */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#C7C8CA'); /* for IE */
  background: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#C7C8CA)); /* for webkit browsers */
  background: -moz-linear-gradient(top,  #eeeeee,  #C7C8CA); /* for firefox 3.6+ */
}

.table-head-wrap {
	 border-bottom: 1px solid #848484;
	 overflow: hidden;
}

.ui-table-head th .ui-resizable-handle{
	width: 10px;
}

.ui-table-head th .ui-resizable-e{
	cursor: ew-resize;
}

/* firefox doesn't like absolute positioning inside display:table-cell elements */
.gecko .ui-table-head th .ui-resizable-handle{
	position: relative;
	display:inline-block;
	float:right;
	margin-top:-10px;
	margin-right:-14px;
}

/* The bottom border doesn't show up in IE anyway */
.ie .table-head-wrap {
	border-bottom: none;
}

.ui-table table th {
	padding: 8px 15px;
	border-left:1px solid #FEFFFE;
	border-right:1px solid #B4B4B4;
	font-weight: normal;
	font-size: 12px;
	text-shadow: #fff 0 1px -1px;
	text-align: left;
	color:#595959;
	white-space: nowrap;
	overflow: hidden;
}

.ui-table table th.col_last {
	border-right: none;
}

.ui-table td .inline-expand{
	/*background: #ddd;*/
	/*padding:10px;*/
	-moz-box-shadow: 0 0 5px #9E9E9E;
	-webkit-box-shadow: 0 0 5px #9E9E9E;
	box-shadow: 0 0 5px #9E9E9E;
	overflow: visible;
}

.ui-table table th.sorted, .ui-table table th.sortable:active{
	background: #eeeeee; /* for non-css3 browsers */
	color: #444;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#C7C8CA', endColorstr='#eeeeee'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#C7C8CA), to(#eeeeee)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #C7C8CA,  #eeeeee); /* for firefox 3.6+ */
}

.ui-table .ui-table-content.clickable tr, .ui-table th.sortable {
	cursor: pointer;
}

.ui-table th.sorted img{
	float: right;
	margin: 4px 0 0 5px;
}

.gecko .ui-table th.sorted img{
	margin-top:-10px;
}

.ui-table-content td{
	font: 12px "TeXGyreHerosRegular", "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
	padding:8px 16px;
	color:#4F4F4F;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.ui-table table th.checkbox-col, .ui-table table td.checkbox-col{
  width: 38px;
  text-align: center;
}

.ui-table tr.current-row td {
	background-color: #F2F2F2;
}

.ui-table .nokeys tr.current-row td {
	background-color: #FFF;
}

.ui-table tr.selected td {
	background-color: #E7F7FC;
}

.ui-table tr td.clicked {
	background-color: #FFFE03;
}

.ui-table table tr td a {
	display: block;
}

.ui-table td a:link,
.ui-table td a:visited,
.ui-table td a:hover,
.ui-table td a:active {
	color: #666;
}

.ui-table td.clickable-cell a {
	color: #094A85;
}
.ui-table td.clickable-cell a:hover {
	text-decoration: underline;
}

.ui-table .col_1{
	border-left:none;
}

.ui-table div.table-head-wrap {
	height: 30px;
}

.ui-table .table-head-wrap th span.sort-icon{
	position: absolute;	
	margin-left:4px;
	margin-right:5px;
}

.ui-table .table-head-wrap th span.sort-asc{
	background-image: url(/console/widgets/images/tri-asc.png);
	background-repeat:no-repeat;
	float: right;
	display:inline-block;
	width:7px;
	height:6px;	
	margin-top:5px;
}

.ui-table .table-head-wrap th span.sort-desc{
	background-image: url(/console/widgets/images/tri-desc.png);
	background-repeat:no-repeat;
	float: right;
	display: inline-block;
	width:7px;
	height:6px;	
	margin-top:5px;
}

.ui-table div.table-content-wrap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 32px;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: white;
}

.ui-table-resize-bar{
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	border-left: 1px solid #454545;
	display: none;
}

.ui-table-content {
	position: absolute;
	left:0;
	right:0;
}

.ui-table div.ui-table-outer {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.ie .ui-table div.ui-table-outer{
	top:30px;
}

/*
	table footer for pager
*/

.ui-table .table-footer{
	border-top:1px solid #C0C1C4;

	background: #eeeeee; /* old browsers */
	background: -moz-linear-gradient(top, #eeeeee 0%, #C7C8CA 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#C7C8CA)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#C7C8CA',GradientType=0 ); /* ie */
	background: -o-linear-gradient(top, #eeeeee 0%,#C7C8CA 100%); /* opera */

	padding: 6px 13px 0 13px;
	height: 25px;
	position: absolute;
	bottom: 0;
	width:100%;
	z-index: 3000;
}

.ui-table .table-footer .ui-pager{
	margin-top:0;
	width: 50%;
	float: right;
	text-align: left;
}

.ui-table .table-footer .page-label{
	margin-right:-10px;
}

.ie7 .ui-table .table-footer .page-label{
	margin-top:-20px;
	background:#fff;
}

/* auto clear for modern browsers */
.ui-table .table-footer:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
	background:#C6C7C8;
}

/* table-footer for ie */
.ie .ui-table .table-footer{
  display:block;
	bottom:20;
}

#content #mainpanel.ui-table-resized{
	max-width: none !important;
}
#content #mainpanel.ui-table-resized .fixed1024{
	max-width: none !important;
}

/*
	Override column styles in your own stylesheet using
	the .col_[num] convention class, here's an example of
	what that would look like for a 7 column table:

	.ui-table .col_1{
		width: 5%;
		padding:8px;
	}
	.ui-table .col_2{
		width: 30%;
		padding:8px;
	}
	.ui-table .col_3{
		width: 25%;
		padding:8px;
	}
	.ui-table .col_4{
		width: 5%;
		padding:8px;
	}
	.ui-table .col_5{
		width: 10%;
		padding:8px;
	}
	.ui-table .col_6{
		width: 15%;
		padding:8px;
	}
	.ui-table .col_7{
		width: 15%;
		padding:8px;
	}
*/
