/*common ----------------------------------------------------------*/
.disable-select {
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}

.clear_fix:after {
    content: "";
    visibility: hidden;
    display: block;
    clear: both;
}

#container {
    max-width: 960px;
    margin: auto;
}

.btn-primary {
    color: #fff;
    background-color: #f7941d;
    border-color: #f28809;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.paging_con {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* paging -------------------------------------------------------------- */
.PageNav {
    font-family: Tahoma;
    font-size: 11px;
    padding: 2px 0;
    overflow: hidden;
    zoom: 1;
    line-height: 16px;
    word-wrap: normal;
    min-width: 150px;
    white-space: nowrap;
}

.PageNav .pageNavHeader {
    padding: 1px 0;
}

.PageNav .scrollable {
    position: relative;
    overflow: hidden;
    width: 117px;
    height: 18px;
}

.PageNav .scrollable .items {
    display: block;
    width: 20000em;
    position: absolute;
    display: block;
}

.PageNav a.text {
    width: auto !important;
    padding: 0 4px;
}

.PageNav a.currentPage {
    color: #2b485c;
    background-color: #f0f7fc;
    border-color: #6cb2e4;
    position: relative;
}

a.PageNavPrev, a.PageNavNext {
    color: rgb(20,20,20);
    background-color: transparent;
    padding: 1px;
    border: 1px none black;
    cursor: pointer;
    width: 19px !important;
}

.PageNav a {
    color: #8f6c3f;
    cursor: pointer;
    text-decoration: none;
    background-color: #fff4e5;
    border: 1px solid #f9d9b0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    width: 19px;
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}

.PageNav .pageNavHeader, .PageNav a, .PageNav .scrollable {
    display: block;
    float: left;
    margin-right: 3px;
}

@media (max-width: 600px) {
    .PageNav .pageNavHeader {
        display: none;
    }
}

/* end paging -------------------------------------------------------------- */

/*header ----------------------------------------------------------*/
#header {
    width: 100%;
    height: 50px;
    margin-bottom: 5px;
}

#logo {
    float: left;
    height: 100%;
}

/*main_menu ----------------------------------------------------------*/
#main_menu {
    width: 100%;
    margin-bottom: 5px;
}

#main_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f1f1f1;
}

#main_menu li {
    float: left;
}

#main_menu li a {
    display: block;
    color: black;
    text-align: center;
    padding: 10px 16px;
    text-decoration: none;
    font-family: "Roboto-Medium";
    font-size: 12px;
}

#main_menu li a.active {
    background-color: #008CBA;
    color: white;
}

#main_menu a:hover:not(.active) {
    background-color: #888;
    color: white;
}

/*main ----------------------------------------------------------*/
#main {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

#content {
    float: left;
    width: 70%;
}

#side_bar {
    width: 30%;
}

@media only screen and (max-width: 600px) {
    #content {
        width: 100%;
    }
    #side_bar {
        width: 100%;
        clear: both;
    }
}

/*footer ---------------------------------------------------------*/
#footer {
    background: #eee;
    padding: 10px;
}

#footer img {
    margin-right: 10px;
    height: 50px;
    float: left;
}

#footer .text {
    float: left;
    font: 400 12px arial;
    color: #666;
}

#footer .text p {
    margin: 5px 0 5px 0;
}