@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=latin,latin-ext);

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    *behavior: url(../../../css/boxsizing.htc);
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #575658;
    overflow: scroll;
    padding: 6px;
}

.alphabet {
    float: left;
    width: 100%;
    margin: 10px 0;
}

.alphabet ul {
    float: left;
    width: 100%;
    padding: 5px 2px 5px 5px;
    background: #f1f1f1;
    margin: 0;
}

.alphabet ul li {
    float: left;
    width: 24px;
    height: 24px;
    margin-right: 2px;
    border: 1px solid #0055ff;
    background: #F2F2F2;
    list-style: none;
}

.alphabet ul li:hover,
.alphabet ul li.selected {
    background: #0055ff;
}

.alphabet ul li a {
    display: block;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    color: #0055ff;
    font-size: 14px;
}

.alphabet ul li a:hover,
.alphabet ul li.selected a {
    color: #FFFFFF;
}

.date_pickers {
    float: left;
    width: 100%;
    padding: 10px;
    background-color: #F6F6F6;
    margin: 10px 0 15px 0;
}

.date_pickers .formElem {
    float: left;
    width: 290px;
}

.date_pickers .formElem label {
}

.date_pickers .formElem .datepicker {
    border: 1px solid #dadada;
    background-color: #ffffff;
    width: 65%;
    height: 30px;
    color: #414042;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    padding-left: 10px;
}

.table {
    float: left;
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    -webkit-box-shadow: 0 2px 10px 0 rgba(221, 221, 221, 1);
    -moz-box-shadow: 0 2px 10px 0 rgba(221, 221, 221, 1);
    box-shadow: 0 2px 10px 0 rgba(221, 221, 221, 1);
}

.table table {
    float: left;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 13px;
}

.table tr {

}

.table tr td {
    text-align: right;
    border-bottom: 1px solid #f1f1f1;
    font-weight: bold;
    color: #575658;
    padding: 10px 5px;
}

.table tr th {
    text-align: right;
    color: #999999;
    font-weight: normal;
    background: #f1f1f1;
    font-size: 11px;
    padding: 8px;
}

.table tr td:first-child,
.table tr th:first-child {
    text-align: left;
    font-weight: bold;
}

.table tr td:first-child {
    color: #0055ff;
}

.table tr:last-child td {
    border: 0 none;
}

.table tr td.noDataCell {
    text-align: center;
    font-size: 16px;
    color: #000000;
}

@media only screen and (max-width: 540px) {
	.table table tr th:nth-child(n+2):nth-child(-n+7), .table table tr td:nth-child(n+2):nth-child(-n+7) {
     display: none;
	}
}