
html, body, div, span, applet, object, iframe,
    /*h1, h2,*/ h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, /*label,*/ legend,
    /*table, caption, tbody, tfoot, thead, tr, th, td,*/
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
body {
    line-height: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
a {
    background: transparent;
    text-decoration: none;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
}
header a{
    display: block;
}

.header-top {
    position: relative;
    width: 100%;
    height: 50px;
    background: #25628f;
    color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}
.header-top > div {
    position: absolute;
    height: 100%;
}

.header-top .top-left {
    left: 20px;
}
.header-top .top-left > div {
    display: inline-block;
    height: 100%;
    vertical-align: top;
}
.header-top .logo img {
    height: 50px;
    margin-right: 5px;
}
.header-top .titulo {
    font-size: 25px;
    line-height: 50px;
}
.header-top .titulo small {
    font-size: 12px;
}
.header-top .top-right {
    right: 20px;
    line-height: 50px;
}
.header-top .top-right > div {
    display: inline-block;
}
.header-top .menu {
    border-left: 1px solid #21577f;
    border-right: 1px solid #21577f;
}
.header-top .menu:hover {
    background: #21577f;
}
.header-top .menu > a > img,
.header-top .menu > a > p {
    display: inline-block;
}
.header-top .menu:first-child {
    border-right: none;
    margin-right: -4px;
}
.header-top .menu > a {
    padding: 0 15px;
}
.header-top .menu > a,
.header-top .menu > a:visited {
    color: #ffffff;
}
.header-top .fecha-hora {
    font-size: 12px;
    margin-left: 10px;
}
.has-dropdown {
    position: relative;
    cursor: pointer;
}

.header-bottom {
    width: 100%;
    min-height: 35px;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #dee0e1;
    background: #f5f6fa;
}
.header-bottom nav > ul {
    font-size: 0;
    text-align: center;
}
.header-bottom nav > ul > li {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    font-weight: bold;
}
.header-bottom nav > ul > li > a {
    position: relative;
    padding: 0 10px;
    color: #25628f;
}
.header-bottom nav > ul > li.has-dropdown > a:after,
.has-dropdown > a:after {
    content: '';
    display: inline-block;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: inherit;
    padding: 2px;
    margin: 0 0 2px 5px;
    transform: rotate(45deg);
}
.header-bottom nav > ul > li.active > a {
    background: #ffffff;
    border: 1px solid #dee0e1;
}
.header-bottom nav > ul > li.active > a:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #42a5f5;
}
.header-bottom nav > ul > li:hover {
    background: #ffffff;
}
.has-dropdown:hover > .dropdown{
    visibility: visible;
}

.dropdown {
    visibility: hidden;
    position: absolute;
    width: auto;
    min-width: 150px;
    max-width: 250px;
    background: #ffffff;
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    border-radius: 2px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    z-index: 11;
}
.dropdown li {
    border-bottom: 1px solid #e1e5f0;
}
.dropdown li:last-child {
    border-bottom: none;
}
.dropdown li a {
    padding: 10px 20px;
    line-height: normal;
}
.dropdown li a,
.dropdown a:visited {
    color: #25628f;
}
.dropdown li.active a,
.dropdown li a:hover {
    background: #f5f7fa;
}

.contenido {
    border: none;
}

.overlay-container {
    display: none;
    width: 100%;
    height: 100%;
}

.overlay-background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 11;
}

.detalle-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 90%;
    padding: 10px;
    overflow: auto;
    border: 1px solid #0066CC;
    color: #0066CC;
    background: #F2F3F5;
    font-family: "Helvetica Neue", helvetica, "microsoft sans serif", arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    z-index: 12;
}

.detalle {
    cursor: pointer;
}

.imprime-cheque {
    cursor: pointer; 
}

button.btn-aprobar {
    padding: 2px 1px 0px 1px;
}
button.btn-aprobar * {
    display: inline-block;
}
button.btn-aprobar p {
    margin-left: 3px;
}
button.btn-aprobar img {
    width: 14px;
}
button {
    cursor: pointer;
}
button[disabled] {
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
}
tr.por-aprobar td {
    background: #e5f2e5 !important;
}

.btn-inactivo {
    opacity: 0.4;
}

.pago-accion, 
.no-permitido {
    display: inline-block;
    opacity: 0.4;
    cursor: not-allowed;
}
.pago-accion img {
    width: 20px;
}
.pago-accion.con-permiso {
    cursor: pointer;
}
.pago-accion.activo {
    opacity: 1;
    cursor: default;
}


.tablesorter thead .tablesorter-header:not(.sorter-false) {
	background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
    background-repeat: no-repeat;
    background-position: top 3px right -3px;
	white-space: normal;
	cursor: pointer;
}
.tablesorter thead .tablesorter-headerAsc:not(.sorter-false) {
	background-color: #0066CC;
    color: #ffffff;
	background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}
.tablesorter thead .tablesorter-headerDesc:not(.sorter-false) {
	background-color: #0066CC;
    color: #ffffff;
	background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAAP///////yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}

.chosen-container .chosen-single span {
    text-align: left;
}

.chosen-container .chosen-drop .chosen-results li {
    text-align: left;
}

.chosen-multiple-wrapper {
    display: inline-block;
}
.chosen-multiple-wrapper select {
    width: 100%;
}
.chosen-multiple-wrapper .chosen-container-multi .chosen-choices {
    border-radius: 5px;
}
.chosen-multiple-wrapper .chosen-container-multi .chosen-choices .search-field .chosen-search-input {
    height: 23px;
    margin: 0;
}
.chosen-multiple-wrapper .chosen-container-multi .chosen-choices .search-field .chosen-search-input.default {
    width: unset;
}