HTML {
    font-family: Tahoma, Arial, sans-serif;
    overflow: hidden;
    height: 100%;
}

BODY {
    margin: 0px;
    height: 100%;
}

#top {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 40px;
    width: 100%;

    background: #E5E2CB;
}

#bottom {
    position: absolute;
    top: 40px;
    left: 0px;
    bottom: 0px;
    width: 100%;
}
* HTML #bottom {
    height: expression( document.documentElement.clientHeight - 40 );
}

#menuButton {
    position: absolute;
    top: 15px;
    left: 0px;
    height: 23px;
    width: 146px;

    cursor: pointer;
    cursor: hand;
    -moz-user-select: none;

    background-color: #A2BEFF;
    border-top: 1px solid #B2CEFF;
    border-bottom: 1px solid #6688DD;
    border-right: 1px solid #3355AA;
}

#menuButton .menuButtonText {
    position: absolute;
    left: 24px;
    top: 3px;
    color: #6677CC;    
}

#menuButton.hover {
    background-color: #7799EE;
    border-left-color: #88AAFF;
}

#topBar {
    position: absolute;
    top: 0px;
    left: 147px;
    height: 39px;
    right: 0px;

    border-bottom: 1px solid black;
    padding-left: 20px;
    padding-top: 12px;
    padding-top: 0px;
    font-size: 20px;
    overflow: hidden;
}
* HTML #topBar {
    width: expression( offsetParent.offsetWidth - 167 );
}

#topText
{
    position:absolute;
    left:20px;
    margin-top:12px;
    height:39px;
}

#refreshContainer
{
    position:absolute;
    top:2px;
    right:2px;
    font-size:12px;
    font-weight:normal;
    text-align:right;
}

#menuBody {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 150px;
    box-sizing: border-box;
    z-index: 100;

    -moz-user-select: none;

    background: url(/images/vcf-5qy4b4/admin/printerface_menuLogo.jpg) bottom center no-repeat #A2BEFF;
    text-align: right;
    font-size: 14px;
    color: #112255;
    border-right: 3px solid #627EBF;
}

#menuList {
    position: absolute;
    top: 0;
    bottom: 50px;
    left: 0;
    right: 0;
    user-select: none;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) rgba(255,255,255,0.3);
}
#menuList::-webkit-scrollbar {
    width: 5px;
}
#menuList::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.3);
}
#menuList::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
}

#menuBody .menuItem {
    padding: 4px;
    margin-top: 5px;
    margin-left: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    cursor: hand;
    color: black;
    display: block;
    text-decoration: none;
}
#menuBody .menuItem:first-of-type {
    margin-top: 0;
}

#menuBody .subMenuItem {
    padding: 4px;
    margin-top: 1px;
    margin-left: 9px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    cursor: hand;
    font-size: 90%;
    color: black;
    display: block;
    text-decoration: none;
}

#menuBody .menuItem:hover, #menuBody .subMenuItem:hover {
    background: rgba(255,255,255,0.4);
}

#menuBody .selected {
    background: rgba(0,0,0,0.3);
    color: white;
    /*font-weight: bold;*/
}
#menuBody .selected:hover {
    background: rgba(0,0,0,0.1);
}

.hidden {
    display: none;
}

#main {
    position: absolute;
    top: 0px;
    left: 150px;
    bottom: 0px;
    right: 0px;

    overflow: auto;
}
* HTML #main {
    height: expression( offsetParent.offsetHeight - 10 );
    width: expression( offsetParent.offsetWidth - 165 );
}

#main.expanded, #main.noMenu {
    left: 0px;
}
* HTML #main.expanded, #main.noMenu {
    width: expression( offsetParent.offsetWidth - 15 );
}

#main.embeddedFrame {
    padding: 0;
    overflow: hidden;
}

#adminEmbedFrame {
    width: 100%;
    height: 100%;
    border: none;
}

H1 {
    border-bottom: 2px solid #627EBF;
    padding-left: 40px;
    padding-right: 10px;
    margin-left: -10px;
    font-family: Georgia, Times, serif;
    font-weight: normal;
    font-size: 30px;
    letter-spacing: 1px;
    word-spacing: 3px;
    color: #112255;
}

.button {
    margin-top: 10px;
    margin-right: 2px;
    padding:1px 2px;
    font-size:9pt;
    text-decoration:none;
    background:#ddd;
    border:solid 1px #444;
    background-image:url(/images/vcf-5qy4b4/admin/buttonbg.gif);
    background-position:center;
    background-repeat:repeat-x;
    color: #000;
}

#buttonset .button {
    background: #ddd !important;
    border-radius: 5px;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px;
    padding: 6px 12px;
}

#buttonset .button:hover {
    background: #f8f8f8 !important;
    cursor:pointer;
}

.messageBox {
    border:  1pt solid #9a9b9a;
    background-color: #fbd850;
    margin:  5px;
    padding: 10px;
}

.messageBox .messages li {
    list-style: none
}

.messageBox .messages li.message_ERROR {
    font-weight: bold;
}


table.managedCsitesTable * {
    text-align: left;
    vertical-align: top;

}

table.managedCsitesTable td {
    border-collapse: collapse;
    border-top: solid grey 1pt;
    padding: 0;

}


@media print {
    HTML {
        overflow: auto;
        height: auto;
    }

    #top, #menuBody {
        display: none;
    }

    #main {
        bottom: auto;
        left: 0;
    }

    H1 {
        font-size: 30pt;
    }
}

/*# sourceMappingURL=/Volumes/Scratch/build/neon/releaseCustomTables/production/neon/WEB-INF/classes/com/pirionsystems/ne/sites/root/skin/staticContent/style/admin/ui/admin.css.map */
