/*
 * shell.css
 * Establishes main containers for layout
 * Classes to adjust layout can be applied to the body
 */

/* Body */
html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    /* overflow: hidden; */
    color: #5e5f5f;
    font-family: "Lucida Grande", Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
}

/* Color */

/* Shell */

#wrapper {
    position: relative;
}

#header-container {
    height: 67px; /*64px*/
}

#header {
    position: fixed;
    z-index: 65;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1000px;
    height: 65px; /*60px*/
    border-bottom: 4px solid #B4B3B1;
    /* gradient */
    background-color: #FEFDFB;
    background-image: url(images/fallback-gradient.png);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFDFB), to(#EAE9E7));
    background-image: -webkit-linear-gradient(top, #FEFDFB, #EAE9E7);
    background-image: -moz-linear-gradient(top, #FEFDFB, #EAE9E7);
    background-image: -ms-linear-gradient(top, #FEFDFB, #EAE9E7);
    background-image: -o-linear-gradient(top, #FEFDFB, #EAE9E7);
}

#np-header-container {
    height: 79px; /*64px*/
}

#np-header {
    position: fixed;
    z-index: 65;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1000px;
    height: 77px; /*60px*/
    border-bottom: 4px solid #B4B3B1;
    /* gradient */
    background-color: #FEFDFB;
    background-image: url(images/fallback-gradient.png);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FEFDFB), to(#EAE9E7));
    background-image: -webkit-linear-gradient(top, #FEFDFB, #EAE9E7);
    background-image: -moz-linear-gradient(top, #FEFDFB, #EAE9E7);
    background-image: -ms-linear-gradient(top, #FEFDFB, #EAE9E7);
    background-image: -o-linear-gradient(top, #FEFDFB, #EAE9E7);
}



#main {
    min-width: 1000px;
}

#sidebar-container {
    position: fixed;
    z-index: 88;
    width: 258px;
    border-right: 2px solid #CCC;
    left: 0;
    top: 67px; /*top: 64px;*/
    bottom: 0;
    background: #EDEDED;
    overflow-x: hidden;
    overflow-y: auto;
}

#sidebar {
}

#content-container {
    margin-left: 260px;
    position: relative;
    z-index: 55;
}

#content-header {
    position: fixed;
    z-index: 88;
    width: auto;
    min-width: 740px;
    left: 260px;
    right: 0;
    top: 67px; /*top: 64px;*/
    min-height: 140px;
    /* background: #F5F9F9; */
}

#workspace-container {
    position: relative;
    z-index: 55;
    margin-right: 0;
}

#workspace {
    padding: 20px 30px 60px 30px;
}

#checklist-container {
    display: none;
    position: fixed;
    z-index: 77;
    width: 258px;
    border-left: 2px solid #CCC;
    right: 0;
    top: 204px;
    bottom: 0;
    background: #FFFEFC;
    overflow-x: hidden;
    overflow-y: auto;
}

#checklist {
}

/* footer */
#footer-container {
    position: fixed;
    z-index: 66;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 36px;
}

/* footer basic */
#footer-basic {
    padding: 20px 0;
    background-color: #EBEAE8;
    color: #999999;
    text-align: center;
}

    #footer-basic ul {
        margin: 0;
        padding: 1em 0;
        list-style: none;
    }

    #footer-basic li {
        display: inline-block;
        margin: 0 0.75em;
    }

#menu-bar {
    margin: 0 0 0 260px; /* offset from container edge */
    padding: 0; /* offset from sidebar edge */
    width: auto;
    height: 34px;
    border-top: 1px solid #447C7D;
    border-right: 1px solid #50989A;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #50989A;
    position: relative;
    z-index: 10;
    /* gradient */
    background-color: #61B0B2;
    background-image: url(images/fallback-gradient.png);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#61B0B2), to(#53A3A5));
    background-image: -webkit-linear-gradient(top, #61B0B2, #53A3A5);
    background-image: -moz-linear-gradient(top, #61B0B2, #53A3A5);
    background-image: -ms-linear-gradient(top, #61B0B2, #53A3A5);
    background-image: -o-linear-gradient(top, #61B0B2, #53A3A5);
    -webkit-box-shadow: inset 0 1px 0 rgba(87,158,161,1);
    -moz-box-shadow: inset 0 1px 0 rgba(87,158,161,1);
    box-shadow: inset 0 1px 0 rgba(87,158,161,1);
}

    #menu-bar ul {
        margin: 0 auto;
        padding: 1px 13px 0 15px;
        list-style: none;
        min-width: 448px;
        max-width: 722px;
        width: auto;
        height: 34px;
        display: block;
    }

        #menu-bar ul li {
            float: right;
            margin: 0;
            padding: 0;
            border-left: 1px solid #407879;
            height: 34px;
            font-size: 20px;
            line-height: 34px;
            position: relative;
        }

            #menu-bar ul li.menu-bar-log {
                margin-right: 0;
                border-right: 1px solid #7CBABC;
            }

        #menu-bar ul a {
            display: block;
            width: 50px;
            border-left: 1px solid #7CBABC;
            padding: 0 4px;
            color: #364445;
            text-align: center;
            text-decoration: none;
            text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
        }

        #menu-bar ul li.menu-bar-log a {
            border-right: 1px solid #407879;
        }

        #menu-bar ul li.menu-bar-notes i.icon-attention {
            position: absolute;
            top: -7px;
            right: 9px;
            font-size: 14px;
            color: #FF5148;
        }

        #menu-bar ul a:hover {
            background: #579EA0;
            color: #000;
        }

        /* active state */
        #menu-bar ul a.open {
            margin-top: -2px;
            padding-top: 2px;
            background-color: #FBF9F7;
        }

#menu-container {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    z-index: 9;
    margin-right: 275px;
    margin-left: 275px;
    display: none;
}

#menu {
    margin: 0 auto;
    width: auto;
    height: auto;
    min-width: 448px;
    max-width: 720px;
    background-color: white;
    border: 1px solid #A8A8A8;
    border-bottom: 0;
    /* radius */
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    -webkit-box-shadow: 0 -1px 3px rgba(187,187,187,1);
    -moz-box-shadow: 0 -1px 3px rgba(187,187,187,1);
    box-shadow: 0 -1px 3px rgba(187,187,187,1);
}

#menu-notes {
    display: none;
}

#menu-documents {
    display: none;
}

    #menu-documents .menu-content {
        max-height: 400px;
        border-bottom: 3px solid #FBF9F7;
    }

.menu-header {
    margin: -1px -1px 0 -1px;
    padding: 0 15px;
    border-top: 1px solid #4E9598;
    border-bottom: 1px solid #4E9598;
    position: relative;
    /* gradient */
    background-color: #5DADB0;
    background-image: url(images/fallback-gradient.png);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#5DADB0), to(#50A1A3));
    background-image: -webkit-linear-gradient(top, #5DADB0, #50A1A3);
    background-image: -moz-linear-gradient(top, #5DADB0, #50A1A3);
    background-image: -ms-linear-gradient(top, #5DADB0, #50A1A3);
    background-image: -o-linear-gradient(top, #5DADB0, #50A1A3);
    /* radius */
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-topright: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

    .menu-header h2 {
        color: #444444;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
    }

        .menu-header h2 span {
            display: inline-block;
            width: 24px;
            background-color: #4D8F91;
            line-height: 24px;
            text-align: center;
            -webkit-border-radius: 20px;
            -moz-border-radius: 20px;
            border-radius: 20px;
        }

.menu-close-link {
    position: absolute;
    top: 7px;
    right: 14px;
    color: #444444;
    font-size: 24px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

.menu-content {
    border-top: 1px solid #427576;
    border-bottom: 3px solid #DDDDDD;
    max-height: 300px;
    overflow: scroll;
}

.menu-controls {
    background-color: #FAF9F7;
    position: relative;
}

    .menu-controls ul {
        margin: 0;
        padding: 0;
        list-style: none;
        background-color: #F5F9F7;
    }

    .menu-controls li {
        margin: 0;
        padding: 0;
        float: left;
        border-right: 1px solid #B3C9C9;
    }

        .menu-controls li a {
            display: block;
            padding: 5px 10px;
            border-right: 1px solid white;
        }

.menu-search-toggle {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
    display: block;
    width: 38px;
    height: 30px;
    border-left: 1px solid #bbb;
}

    .menu-search-toggle i {
        padding: 5px 12px;
    }

    .menu-search-toggle.open {
        background-color: #E8E6E5;
        height: 31px;
    }

.menu-search {
    display: none;
    padding: 5px 10px;
    border-top: 1px solid #B3B2B1;
    background-color: #E8E6E5;
}

    .menu-search .span6 {
        min-height: auto;
    }

    .menu-search form {
        margin: 0;
        float: right;
    }

    .menu-search input[type="text"] {
        margin-bottom: 0;
        min-height: auto;
        padding-top: 2px;
        padding-bottom: 2px;
    }

.menu-controls-disabled {
}

.menu-controls-disabled {
    opacity: 0.5;
    cursor: default;
}

    .menu-controls-disabled li a {
        color: #666;
        cursor: default;
        text-decoration: none;
    }

    .menu-controls-disabled .menu-search-toggle {
        display: none;
    }

.item {
    padding: 15px 20px 10px 20px;
    border-top: 1px solid #B3B2B1;
    position: relative;
}

    .item .btn-group {
        position: absolute;
        top: 12px;
        right: 30px;
        visibility: hidden;
    }

        .item .btn-group li {
            font-size: 12px;
        }

    .item:hover {
        background: #FFF9E5;
    }

        .item:hover .btn-group {
            visibility: visible;
        }

    .item p:first-child {
        margin-bottom: 5px;
    }

    .item .timestamp {
        margin-left: 20px;
    }

    .item .label {
        margin-left: 20px;
    }

    .item .search-term {
        background-color: #FFEA99;
        padding: 0 1px;
    }

.item-alert {
    background-color: #FFF3F0;
}

    .item-alert:hover {
        background-color: #FFEBE6;
    }

    .item-alert .item-status {
        position: absolute;
        bottom: 18px;
        right: 20px;
    }

        .item-alert .item-status i {
            color: #FF6E67;
            font-size: 16px;
        }

.item-deleted {
    background-color: #F5F4F2;
}

    .item-deleted:hover {
        background-color: #ECEBE9;
    }

    .item-deleted p {
        display: none;
    }

        .item-deleted p:first-child {
            display: block;
        }

.item-expanded {
}

    .item-expanded p {
        display: block;
    }

.menu-form {
    border-top: 1px solid #E5E4E2;
    padding: 5px 30px 10px 30px;
    background-color: #FBF9F7;
}

    .menu-form form {
        margin: 0;
    }

    .menu-form textarea {
        padding-bottom: 0;
    }

    .menu-form .alert {
        margin-top: -10px;
        margin-bottom: 5px;
        padding-top: 5px;
        padding-bottom: 2px;
        border-top: 0;
        border-color: #ccc;
        -webkit-border-top-left-radius: 0;
        -webkit-border-top-right-radius: 0;
        -moz-border-radius-topleft: 0;
        -moz-border-radius-topright: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    /* default view (minimized) */
    .menu-form .alert,
    .menu-form fieldset.buttons {
        display: none;
    }

/* expanded (expanded) */
.form-expanded .alert,
.form-expanded fieldset.buttons {
    display: block;
}

.form-expanded textarea {
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* is an alert */
.is-alert textarea,
.is-alert .alert {
    border-color: #FE8A87;
}

/* add document */
.add-document-help-text {
    padding-left: 10px;
}

.add-document {
    display: none;
    border: 1px solid #ccc;
    margin: 0 0 3px 0;
    padding: 5px 14px;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .add-document .row-fluid {
    }

    .add-document .row-fluid {
    }

/* menu artifacts */
.menu-artifacts {
    padding: 15px 20px 10px 20px;
    border-top: 1px solid #B3B2B1;
    position: relative;
    display: none;
}

.artifact-file-name {
    overflow: hidden;
    white-space: nowrap;
    width: inherit;
    display: block;
}

.artifact-file label.checkbox {
    font-size: 12px;
}

    .artifact-file label.checkbox input {
        margin-top: 3px;
    }

.menu-form-documents {
    padding-top: 10px;
    padding-bottom: 15px;
}


/* Shell adjustments */

.sidebar-collapsed {
}

    .sidebar-collapsed #sidebar-container {
        width: 98px;
    }

    .sidebar-collapsed #content-container {
        margin-left: 100px;
    }

    .sidebar-collapsed #content-header {
        left: 100px;
    }

    .sidebar-collapsed #checklist {
    }

    .sidebar-collapsed #menu-bar {
        margin-left: 100px;
    }

    .sidebar-collapsed #menu-container {
        margin-left: 115px;
    }

.no-checklist {
}

    .no-checklist #workspace-container {
        margin-right: 0;
    }

.checklist-right {
}

    .checklist-right #workspace-container {
        margin-right: 260px;
    }

    .checklist-right #checklist-container {
        display: block;
    }

    .checklist-right #workspace {
        padding-top: 150px;
    }

    .checklist-right #menu-bar {
        margin-right: 260px;
    }

.checklist-collapsed {
}

    .checklist-collapsed #workspace-container {
        margin-right: 60px;
    }

    .checklist-collapsed #checklist-container {
        display: block;
        width: 58px;
    }

    .checklist-collapsed #checklist {
    }

    .checklist-collapsed #menu-bar {
        margin-right: 60px;
    }

    .checklist-collapsed #menu-container {
        margin-right: 75px;
    }

.content-header-fixed #workspace {
    padding-top: 60px;
}

.dashboard #workspace {
    padding-top: 10px;
}

.dashboard #checklist-container {
    top: 64px;
}

.sidebar-left {
}

.checklist-right {
}

.content-header-fixed {
}

.content-breadcrumbs {
}

/* Bootstrap tweaks */

.container-fluid {
    margin: 0;
    padding: 0;
}

#footer-basic.transparent-bg {
    background-color: transparent;
}

/* footer board */
#footer-board {
    background-color: #ebeae8;
    border-bottom: 1px solid #d7d5d1;
    border-top: 2px solid #d7d5d1;
    color: #999999;
    font-size: 11px;
    padding: 20px 0;
}
#footer-board-container {
    margin: 0 auto;
    padding: 0 0;
    min-width: 940px;
    max-width: 1130px;
}
    #footer-board a {
        font-weight: bold;
    }
    #footer-board .copyright {
        text-align: center;
    }

