/*!
 * Start Bootstrap - Simple Sidebar HTML Template (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

/* Toggle Styles */

#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;
	background-color: #293846;
	overflow: hidden;
	position: relative;
}

#wrapper.toggled {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
}

#sidebar {
	height: 100%;
	left: 0;
	max-width: 207px;
	min-height: 100%;
	position: fixed;
	top: 0;
	transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-webkit-transform: translateX(-100%);
	transition: transform 0s ease 0s, all 0.4s ease 0s;
	width: 100%;	
    z-index: 9999;
	background-color: #293846;
}

#sidebar.active {
	transform: translateX(0px);
	-ms-transform: translateX(0px);
	-webkit-transform: translateX(0px);
}

#page-content-wrapper {
    width: 100%;
    padding: 0;
	background-color: #FFF;
}

.overlay {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0s ease 0s, all 0.5s ease 0s, easy 0s ease 0s;
    visibility: hidden;
    width: 100%;
    z-index: 500;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Styles */
.sidebar-nav {
    position: absolute;
    top: 0;
    width:207px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #A7B1C2;
	background-color: #2F4050;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: #293846;
}

.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;
	background-color: #293846;
}

.sidebar-nav > .sidebar-brand a {
    color: #fff;
	background: url(../img/sidebar-brand.png) no-repeat 20px center transparent;
	padding: 0 0 0 30px;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
	background: url(../img/sidebar-brand.png) no-repeat 20px center transparent;
}

/*@media(min-width:768px) {
    #wrapper {
        padding-left:207px;
    }

    #wrapper.toggled {
        padding-left: 0;
    }

    #sidebar-wrapper {
        width:207px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 0;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }
}*/