﻿/*TOP HEADER BEGIN*/
.imgMaxHeight {
    max-height: 50px;
}

li > a:hover {
    background-color: #00578D;
}

/*span:hover {
    background-color: #00578D;
}*/

.navbarHoverBGColor {
    background-color: #00578D;
}
/*TOP HEADER END*/

/* EXAM BEGIN */
#tblExamClassifications {
    overflow-y: auto;
    border: 1px dotted grey;
    width: 100%;
    max-height: 200px;
}

#tblExam {
    overflow-y: auto;
    border: 1px dotted grey;
    width: 100%;
    max-height: 200px;
}

.tdExamClassification {
    padding-left: 10px;
    background-color: white;
}

.tdExamClassification:hover {
    background-color: #00578D;
    color: white;
    cursor: pointer;
}

.tdExam {
    padding-left: 10px;
    background-color: white;
}

.tdExam:hover {
    background-color: #00578D;
    color: white;
    cursor: pointer;
}

.trExam {
    cursor: pointer;
}

.trExam:hover {
    background-color: #00578D;
    color: white;
    cursor: pointer;
}
/* EXAM END */

/* PERSONNEL BEGIN*/
#tblPersonnel {
    overflow-y: auto;
    border: 1px dotted grey;
    width: 100%;
    max-height: 200px;
}

.tdPersonnel {
    padding-left: 10px;
    background-color: white;
}

.tdPersonnel:hover {
    background-color: #00578D;
    color: white;
    cursor: pointer;
}

/* PERSONNEL END*/

/* USER BEGIN */
#tblUser {
    overflow-y: auto;
    border: 1px dotted grey;
    width: 100%;
    max-height: 200px;
}

.tdUser {
    padding-left: 10px;
    background-color: white;
}

.tdUser:hover {
    background-color: #00578D;
    color: white;
    cursor: pointer;
}
/* USER END */

/* CERTIFICATIONTEMPLATE BEGIN*/
#certTempList {
    list-style:none;
    overflow-y: auto;
    width: 100%;    
    padding-left:0px;
}

.tdCertTemp {
    max-height: 240px;
    border: 1px dotted grey;
    background-color: white;
}

.tdCertTemp:hover {
    background-color: #00578D;
    color: white;
    cursor: pointer;
}

/* CERTIFICATIONTEMPLATE END*/

/* TRAININGCOURSE BEGIN*/
#trainingCourseList {
    list-style: none;
    overflow-y: auto;
    width: 100%;
    padding-left: 0px;
}

.liTrainingCourse {
    max-height: 240px;
    border: 1px dotted grey;
    background-color: white;
}

    .liTrainingCourse:hover {
        background-color: #00578D;
        color: white;
        cursor: pointer;
    }

/* TRAININGCOURSE END*/

/* QUESTION LIST BEGIN*/
#questionList {
    list-style: none;
    overflow-y: auto;
    width: 100%;
    padding-left: 0px;
}

.allQuestions{
    margin: 0px;
    padding: 0px;
}

.liQuestion {
    max-height: 240px;
    border-bottom: 1px dotted grey;
    border-left: 1px dotted grey;
    border-right: 1px dotted grey;
    background-color: white;
}

    .liQuestion:hover {
        background-color: #00578D;
        color: white;
        cursor: pointer;
    }

.spanList {
    font-weight: normal;
}
/* QUESTION LIST END*/


.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    /*left: -100%;*/
    margin-top: -6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
}

/* SHARED LAYOUT */
.backgroundThemeColor {
    background-color: #00578D;
    color: white;
}

/* FOR CHEVRONS */
.glyphicon-plus {
    color: #00578D;
}

    .glyphicon-plus:hover {
        /*color: #00578D;*/
        color: #007BC8;
        background-color: none;
    }

.glyphicon-pencil {
    color: #00578D;
}

    .glyphicon-pencil:hover {
        color: #007BC8;
    }

.glyphicon-trash {
    color: #CC0033;
}

    .glyphicon-trash:hover {
        color: #FF194F;
    }

.EyeExamModalRow {
    margin-top: 15px;
}

.tabEyeExam {
    background-color: #007BC8;
    color: white;
}

.divDivider {
    border-top: 1px dotted #00578D;
}

/* Trying to get dropdowns to left BEGIN*/
/*.navbar-nav li:hover > ul.dropdown-menuL {
    display: block;
}*/

/*.dropdown-submenuL > .dropdown-menuL {
    top: 0;
    left: 0%;
    right: 100%;
    margin-top: -6px;
}

.dropdown-submenuL {
    position: relative;
}*/

/* Trying to get dropdowns to left END*/

/*.dropbtn {
    background-color: #818285;
    color: white;
    padding: 0px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-submenu {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content-submenu {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-submenu:hover .dropdown-content-submenu {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}*/