﻿
html, body, form, #wrapper {height:100%;}

#wrapper {
    padding: 0;
}


#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled {
    padding-left: 200px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 200px;
    width: 0;
    height: 100%;
    margin-left: -200px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #014099;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
    width: 200px;
}
#page-content-wrapper {
    width: 100%;
    padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
    margin-right: -200px;
}

        
/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 200px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 10px;
    line-height: 35px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.sidebar-nav li.sub1 {
    text-indent: 30px;
    line-height: 30px;
}
.sidebar-nav li.sub1 a {
    background: rgba(255,255,255,0.1);
    font-size:12px;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
    font-weight:bold;
}
.sidebar-nav li a.active {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.3);
    font-weight:bold;
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

    .sidebar-nav > .sidebar-brand a {
        color: #fff;
        font-weight: bold;
        /*border-bottom: 1px solid #003876;*/
        font-size: 18px;
    }

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}


.sidebar-nav-depth1 {
    background-color: #014099;
    font-weight: bold;
}
/* depth2 style */
.sidebar-nav-depth2 {
    background-color: #014099;
    padding: 0;
    font-weight: normal;
}
    .sidebar-nav-depth2 li {
        font-size: 14px;
        line-height: 34px;
        text-indent: 25px;
        height: 34px;
        background: rgba(255,255,255,0.1);
    }
.sidebar-nav-depth2 li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size:0.9em;
}

    .sidebar-nav-depth2 li a:hover {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        background: rgba(255,255,255,0.2);
    }

    .sidebar-nav-depth2 li a.active {
        text-decoration: none;
        color: #fff;
        background: rgba(255,255,255,0.2);
        font-weight: bold;
    }
.sidebar-nav-depth2 li i {
    font-size:10px;
}

.extend-menu {
    position:absolute;
    right:10px;padding-top:14px;
}


/* layouts */
@media(min-width:768px) {
    #wrapper {
        padding-left: 200px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width: 200px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}

#menu-toggle {margin:5px;font-size:0.85em;color:#fff;margin-top:65px;}