
*{
    top: auto;
    bottom: auto;
    left: auto;
    right :auto;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 100%;

    min-height: 0%;
    min-height: 0%;

    margin: 0px;
    padding: 0px;

    /*float: none;
    clear: none;*/
    position: static;
    direction: ltr;

    border: 0px solid transparent;
    outline: 0px solid transparent;
    box-shadow: 0px 0px 0px transparent;
    box-sizing: border-box;

    text-align: inherit;
    text-decoration: inherit;
    text-transform: inherit;
    vertical-align: inherit;

    font-weight: inherit;    
    font-family: inherit;
    font-style: inherit;
    font-variant: inherit;
    font-size: inherit;
    line-height: inherit;

    white-space: inherit;
    word-spacing: inherit;
    letter-spacing: inherit;

    background-color: transparent;
    border-radius: 0;

    /*display: block;*/
    overflow: visible;
    visibility: visible;

    z-index: auto;

    color: inherit;
}

body{
    background-color: #ffffff;

    text-align: left;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;

    font-weight: 400;    
    font-family: "openSans";
    font-style: normal;
    font-variant: normal;
    font-size: 12px;
    line-height: 12px;

    white-space: normal;
    word-spacing: normal;
    letter-spacing: normal;

    color: #222;
}

head,title,meta,link,style,script{
    display: none;
    visibility: hidden;
}

input,textarea,select,button,label,
html,body,p,h1,h2,h3,h4,h5,h6,div,iframe{
    display: block;
}

p,h1,h2,h3,h4,h5,h6{
    margin: 10px 0px;
}

h6{ font-size: 14px; line-height: 14px; margin: 10px 0px; }
h5{ font-size: 16px; line-height: 16px; margin: 12px 0px; }
h4{ font-size: 18px; line-height: 18px; margin: 14px 0px; }
h3{ font-size: 20px; line-height: 20px; margin: 16px 0px; }
h2{ font-size: 22px; line-height: 22px; margin: 18px 0px; }
h1{ font-size: 24px; line-height: 24px; margin: 20px 0px; }

a,b,i,img,span{
    display: inline-block;
}

a:active,
a:focus,
a:hover{
    text-decoration: underline;
}

pre{
    white-space: pre-wrap;
    word-wrap: break-word;
}

label{
    margin: 0px 0px 5px 0px;
}

label .btn-label{
    margin: -2px 0px 0px 5px;
    padding: 2px 5px;
    color: #ffffff;
    background-color: #1976d2;
    border-radius: 3px;
}

label .btn-label:active,
label .btn-label:focus,
label .btn-label:hover{
    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    text-decoration: none
}

hr{
    margin: 10px 0px;
    border-top: 1px dotted #ddd;
}

input:focus,
input:hover,
select:focus,
select:hover,
button:focus,
button:hover{
    z-index: 0;
}

table {
    border-collapse: collapse;
    border: 1px solid transparent;
    margin: 10px 0px;
    width: 100%;
}


table > thead,
table > tbody,
table > tfoot{
    width: 100%;
}

table > thead > tr,
table > tbody > tr,
table > tfoot > tr{
    width: 100%;
}

table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th{
    padding: 10px 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    text-transform: uppercase;
    color: #aaa;
}

table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td{
    padding: 10px 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
}

table.table-bordered {
    border: 1px solid #ddd;
}

table.table-hover > thead > tr.hover > td,
table.table-hover > tbody > tr.hover > td,
table.table-hover > tfoot > tr.hover > td,
table.table-hover > thead > tr:hover > td,
table.table-hover > tbody > tr:hover > td,
table.table-hover > tfoot > tr:hover > td{
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

table.table-condensed > thead > tr > th,
table.table-condensed > tbody > tr > th,
table.table-condensed > tfoot > tr > th,
table.table-condensed > thead > tr > td,
table.table-condensed > tbody > tr > td,
table.table-condensed > tfoot > tr > td{
    padding: 5px 10px;
}

table.table-ultra-condensed {
    border: 0px solid transparent;
    margin: 0px 0px 0px 0px;
}

table.table-ultra-condensed > thead > tr > th,
table.table-ultra-condensed > tbody > tr > th,
table.table-ultra-condensed > tfoot > tr > th,
table.table-ultra-condensed > thead > tr > td,
table.table-ultra-condensed > tbody > tr > td,
table.table-ultra-condensed > tfoot > tr > td{
    padding: 2px 0px 0px 0px;
    border-bottom: 0px solid transparent;
}

.tr-border-top > td{
    border-top: 2px solid #dfdfdf;
}

.tr-condensed > td{
    padding: 5px 10px;
}


ul, ol{
    margin: 0px 0px 0px 20px;
}

li{
    padding: 20px 0px 0px 10px;
    text-align: justify;
}

ul.list-lower-latin > li{ list-style-type: lower-latin; }
ul.list-lower-roman > li{ list-style-type: lower-roman; }

.container-loading{
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    display: none;
    top: 0px;
    left: 0px;
}

.container-loading .loading{
    background-image: url('../../img/loading.gif');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 200px;
    height: 200px;
    top: 50%;
    left:50%;
    margin-top: -100px;
    margin-left: -100px;
    position: fixed;
    z-index: 999;
    display: block;
}

b{
    font-weight: 600;
}

i{
    font-style: italic;
}

.badge{
    background-color: #eeeeee;
    display: inline-block;
    margin: -2px 0px 0px 5px;
    padding: 3px 4px;
    border-radius: 2px;
    color: #757575;
    font-size: 11px;
    line-height: 8px;
    text-align: center;
}

.badge.badge-success{ background-color: #45bf7b; color: #ffffff;}
.badge.badge-info{ background-color: #5cacdf; color: #ffffff;}
.badge.badge-warning{ background-color: #f9b358; color: #ffffff;}
.badge.badge-danger{ background-color: #eb6262; color: #ffffff;}

.code{
    background-color: #eeeeee;
    display: inline-block;
    margin: 0px 0px 0px 0px;
    padding: 8px 8px;
    border-radius: 2px;
    color: #757575;
    font-family: Consolas;
    white-space: pre;
    overflow: auto;
}