/* Main */
body {
	font-size: 14px;
	color: #343d44;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui";
	padding: 0;
	margin: 0;
}
table {
	margin: auto;
	font-family: "Lucida Sans Unicode", "Lucida Grande", "Segoe Ui";
	font-size: 14px;
}
/*column 5 fixed width*/
table tr th:nth-child(5){
       width: 125px;
}
h1 {
	margin: 20px auto 0;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
	border-color=#FFFFFF
}

h3 {
	margin: 20px auto 0;
	text-align: center;
	font-size: 14px;
	border-color=#FFFFFF
}

table td {
	transition: all .3s;
}

/* Header Logo*/
.logo-header {
    display: block;
    margin: auto;
	width:25%;
}

/*Menu Table*/

.menu-table {
	border-collapse: collapse;
	font-size: 16px;
	width: 600px;
}

.menu-table th {
	color: #343d44;
    font-weight: bold;
	padding: 8px;
	text-align: center;
	width: 30px;
}

/* Table */
.data-table {
	border-collapse: collapse;
	font-size: 18px;
}

.data-table caption {
	margin: 3px;
}

/* Table Header */
.data-table thead th {
	background-color: #333333;
	color: #FFFFFF;
	/*border-color: #cccccc !important;*/
	text-transform: uppercase;
	background-image: url(../img/bg_w.gif); 
    cursor: pointer; 
    font-weight: bold;
	background-position: center left;
    background-repeat: no-repeat; 
    /* padding-left: 10px; */
	/* border-right: 1px solid #cccccc; */
    margin-left: 0px;
	
}

.data-table thead th.headerSortDown { 
    background-image: url(../img/desc_w.gif); 
    background-color: #808080; 
}

.data-table thead th.headerSortUp { 
    background-image: url(../img/asc_w.gif); 
    background-color: #808080; 
}

/* Table Body */
.data-table tbody td {
	color: #353535;
	text-align: left;
	padding-left: 12px;
}

.data-table tbody tr:nth-child(odd) td {
	background-color: #f2f2f2;
}

.data-table tbody tr:hover td {
	background-color: #c0c0c0;
	/* border-color: #cccccc;*/
	border-color: #FFFFFF;
}

/*
.data-table tbody td:empty
{
	background-color: #ffcccc;
}
*/

/* Table Footer (unused) */ 
/*
.data-table tfoot th {
	background-color: #e5f5ff;
	text-align: right;
}
.data-table tfoot th:first-child {
	text-align: left;
}
*/

/*Search Field*/
.myInput {
	/* background-image: url('../img/cwv7wp_2017_favicon.png'); /* Add a search icon to input */
    /* background-position: 10px 12px; /* Position the search icon */
    /* background-repeat: no-repeat; /* Do not repeat the icon image */
	background-color: #f2f2f2;
	text-align: center;
    /* width: 100%; /* Full-width */
    font-size: 16px; /* Increase font-size */
    padding: 2px 5px 2px 5px; /* Add some padding */
    /* border: 1px solid #cccccc; /* Add a grey border */
    border: 0px; /* No border */
    margin-bottom: 2px; /* Add some space below the input */
}


/* Table Compact*/
.data-table-compact {
	border-collapse: collapse;
	font-size: 20px;
	width: 100%;
	margin: 5px;
}

.data-table-compact th, 
.data-table-compact td {
	/*border: 1px solid #cccccc;*/
	padding: 2px 5px;
}
.data-table-compact caption {
	margin: 1px;
}

/* Table Header */
.data-table-compact thead th {
	background-color: #333333;
	color: #FFFFFF;
	/*border-color: #cccccc !important;*/
	text-transform: uppercase;
	background-image: url(../img/bg_w.gif); 
    cursor: pointer; 
    font-weight: bold; 
    background-repeat: no-repeat; 
    /* background-position: center left; */
    padding-left: 10px; 
	/* border-right: 1px solid #cccccc; */
    margin-left: -40px;
}
.data-table-compact thead th:nth-child(odd){
	text-align: right;
}
.data-table-compact thead th:nth-child(even){
	text-align: left;
}

.data-table-compact thead th.headerSortDown { 
    background-image: url(../img/desc_w.gif); 
    background-color: #808080; 
}

.data-table-compact thead th.headerSortUp { 
    background-image: url(../img/asc_w.gif); 
    background-color: #808080; 
}

/* Table Compact Body  */
.data-table-compact tbody td {
	color: #353535;
}
.data-table-compact tbody tr:nth-child(odd) td {
	background-color: #f2f2f2;
}
.data-table-compact tbody td:nth-child(odd){
	text-align: right;
}
.data-table-compact tbody td:nth-child(even){
	text-align: left;
}
.data-table-compact tbody tr:hover td {
	background-color: #c0c0c0;
	/* border-color: #cccccc;*/
	border-color: #FFFFFF;
}

.myHiddenCol {
	width: 0px;
	display:none;
}