/*!
 * Start Bootstrap - Simple Sidebar (http://startbootstrap.com/)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */

 body {
    overflow-x: hidden;
 }

/* Toggle Styles */

#wrapper {
    padding-right: 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-right: 250px;
}

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    right: 250px;
    width: 0;
    height: 100%;
    margin-right: -250px;
    overflow-y: auto;
    background: #4D5257 !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
	/* display:block; */
	/* width:250px; */
	/* position:fixed; */
	/* top:0px; */
	/* right:0px; */
	/* border-left: 1px solid #575757; */
	/* background: #4D5257 !important; */
	/* -webkit-box-shadow: inset 1px 0px 3px 2px rgba(0, 0, 0, 0.2); */
	/* box-shadow: inset 1px 0px 10px 2px rgba(0, 0, 0, 0.1); */
	/* height:100%; */
	/* overflow:visible; */
	/* z-index: 999; */
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    padding: 15px;
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-left: -250px;
}

/* Sidebar Styles */
.sidebar-hdr{
	height:20px;
    width:100%;
    top:0px;
    left:0px;
    padding:0px 6px;
	 background-color: #f3f3f3;
	/* background-image: -webkit-gradient(linear,0 0,0 100%,from(#f3f3f3),to(#e2e2e2)); */
	/* background-image: -webkit-linear-gradient(top,#f3f3f3,#e2e2e2); */
	/* background-image: -webkit-gradient(linear,top left,bottom left,from(#f3f3f3),to(#e2e2e2)); */
	/* background-image: linear-gradient(to bottom,#f3f3f3,#e2e2e2); */
	/* background-repeat: repeat-x; */
    /* position:absolute; */
}
.sidebar-ftr {
	height: 50px;
	bottom: 0px;
	display: block;
	top: auto;
  background:#f3f3f3; 
	padding:9px 8px;
}
.sidebar-body {
-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height:100%;
    padding: 5px 5px 5px;
    overflow:hidden;
	color:#ffff;
}

/*
.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    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: #999999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.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: #999999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}*/

@media(min-width:768px) {
    #wrapper {
        padding-right: 250px;
    }

    #wrapper.toggled {
        padding-right: 0;
    }

    #sidebar-wrapper {
        width: 250px;
    }

    #wrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        padding: 20px;
        position: relative;
    }

    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-left: 0;
    }
}