@CHARSET "UTF-8";


/* grid */
.grid{
	width: 100%;
	font-size: 12px;
}

.grid .empty{
	padding: 15px;
	color: #666;
}

.grid-like table {
	width: 100%;
	background-color: #fff;
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 100%;  
    font-size: 12px;
}

.grid table th, 
.grid table td,
.grid-like table th, 
.grid-like table td {
	color: #333;
}

.grid table caption + thead tr:first-child th, 
.grid table caption + thead tr:first-child td, 
.grid table colgroup + thead tr:first-child th, 
.grid table colgroup + thead tr:first-child td, 
.grid table thead:first-child tr:first-child th, 
.grid table thead:first-child tr:first-child td,

.grid-like table caption + thead tr:first-child th, 
.grid-like table caption + thead tr:first-child td, 
.grid-like table colgroup + thead tr:first-child th, 
.grid-like table colgroup + thead tr:first-child td, 
.grid-like table thead:first-child tr:first-child th, 
.grid-like table thead:first-child tr:first-child td {
    
    border-top: 0px solid #e0e4e8;
    
}

.grid table {
	table-layout: fixed;
	empty-cells: show;
}

.grid table th, .grid-like table th {
  font-weight: 700;
  background: #EBF0F4;
  color: #444;

  border-bottom: 1px solid #7B95B6;
  
}

.grid table td, .grid table th{
	border-right: 1px solid #E0E4E8;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
}

.grid table th a {
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
}


.grid table.grid-body tr:last-child td,
.grid-like table tr:last-child td
{
       border-bottom: 1px solid #e0e4e8;
}

.grid table.grid-body tr:first-child td{
	border-top: 0;
}

.grid .grid-body-container {
	overflow-x: auto;
	overflow-y: scroll;
	width: 100%;
}

.grid-header-container {
	overflow: hidden;		
}

.grid-header-container-wrap{
		
}

.grid-body tr:nth-child(even){
	background-color: #faf9fb;
}

.grid table th, 
.grid-like table th {
	
    border-top: 1px solid #e0e4e8;
    line-height: 20px;
    padding: 7px 8px 5px;
    text-align: left;
    vertical-align: middle;
}

.grid table td,
.grid-like table td {
	
	border-top: 1px solid #e0e4e8;
    line-height: 20px;
    padding: 2px 8px 2px;
    text-align: left;
    
    vertical-align: middle;
    
}



.grid table th a, .grid table th span.col-title {
	display: block;
	color: #444;
	text-decoration: none;
	
}

.grid table th:hover .dragtable-drag-handle{
	display:block;
}

.grid table th.order-by-direction-asc,
.grid table th.order-by-direction-desc {
	background-color: #E1E5EE;
}

.grid table th a.order-by-direction-asc {
	background-image: url('/assets/images/symbols/grid-order-asc.png');
	background-position: center right;
	background-repeat: no-repeat;
}

.grid table th a.order-by-direction-desc {
	background-image: url('/assets/images/symbols/grid-order-desc.png');
	background-position: center right;
	
	background-repeat: no-repeat;
}

.grid table-striped tbody > tr:nth-child(2n) > td, .grid table-striped tbody > tr:nth-child(2n) > th {
    background-color: #FBFBFB;
}

.grid tr.selected {
	background-color: #f7f8d3;
}

.ht-grid-loader {
	background-color: rgba(255,255,255, 0.8);
}

.pagination {
	background-color: #EBF0F4;
	width: 100%;
	padding: 6px 8px 3px;
	box-sizing:border-box;
	-moz-box-sizing:border-box; /* Firefox */
	
	border-top: 1px solid #7B95B6;
}


.pagination ul > li {
    display: inline;

    margin: 0;
}

.pagination ul {
	display: inline-block;
}

.pagination li > a, .pagination li > span {
	text-decoration: none;
	color: #222;	
	display: block;
	
	float: left;	

	padding: 7px 9px 5px;
	margin-left: 4px;	
}

.pagination li > a > span {
	color: #999;
}

.pagination li > a:hover > span {
	color: #666;
}

.pagination li.spacer span {
	background-color: transparent;
	border: 0;	
}


.pagination li.disabled span {
	color: #ddd;
}

.pagination li.active span {
	background-color: #428BCA;
	font-weight: bold;
	color: #fff;
}


.pagination .info {
	float: right;	
	color: #222;	
	padding: 7px 10px;
}

.grid .btn.btn-xs [class^="icon-"], 
.grid .btn.btn-xs [class*=" icon-"],
.grid-like .btn.btn-xs [class^="icon-"],
.grid-like .btn.btn-xs [class*=" icon-"]
{
	margin-right: 0px !important;
	margin-top: -2px !important;
}




table .subheader td {
	padding-top: 7px;
	padding-bottom: 7px;
	font-weight: bold;
	background-color: #F3F3F3;
}

.table-container {
	padding: 15px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */	
}


table.zebra tr.odd td {
	background-color: #F6F6F6;
}

table.zebra td,
table.zebra td.not-last-child {
	border-right: 1px solid #E0E4E8;
}

table.zebra th {
	border-right: 1px solid #7B95B6;
}

table.zebra th:not(.not-last-child):last-child,
table.zebra td:not(.not-last-child):last-child {
	border-right: 0;
}

table tr.summary td {
	font-weight: bold;
	padding-top: 7px;
	padding-bottom: 7px;
	border-top: 1px solid #7B95B6;
}


table tr.double-bottom td {
	border-bottom: 2px solid #7B95B6;
}

table tr:last-child.summary td {
	border-bottom: 1px solid #E0E4E8;
}


table caption {
	text-align: left;
	border-top: 1px solid #7B95B6;
	line-height: 20px;
    padding: 7px 8px 5px;
    background: none repeat scroll 0 0 #F2F6F9;
    color: #444444;
    font-weight: bold;
    
    margin-bottom: -1px;
    border-bottom: 1px solid #7B95B6;   
}


table caption small {
	float: right;
    font-weight: normal;
}

.table-container h4 {
	color: #333;
    font-size: 14px;
    margin-bottom: 10px;
}




