body{ /* CSS for BODY transition when menu is set to push BODY content. */ 
	-moz-transition: left 100ms ease-in-out, right 100ms ease-in-out;
	-webkit-transition: left 100ms ease-in-out, right 100ms ease-in-out;
	transition: left 100ms ease-in-out, right 100ms ease-in-out;
}

#togglemenu1 {
    width:220px;
    
}
#mobilenav-container {
    width:170px !important;
    margin:45px auto;
        
    }
.sidetogglemenu{ /* shared class for side toggle menus */
	background-color: #596781;
	width: 170px; /* default menu width */
	height: 100%;
	position: fixed;
	top: -100%;
	clear: both;
	visibility: hidden;
	box-shadow: 5px 0 5px rgba(0, 0, 0, .3);
	-moz-transition: all 100ms ease-in-out; /* change 100ms to slide in animation time */
	-webkit-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}
.menu-turnoff li {
    background:none;
    margin-top:5px;
}
.menu-turnoff li:first-child {
    padding:7px;
    font-size:28px;
    margin-left: 17px;
    text-transform: uppercase;
}
    .close-slidetoggle {
        width:40px;
        margin:0 auto;
        border:none;
        background: none!important;
        color:#fff;
        display:block;
        padding: 7px;
        font-size: 28px;
    }

.sidetogglemenu ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidetogglemenu #mobilenav-container .nav-collapse.collapse .nav li a{
    font-weight:normal;
	padding: 10px;
	display: block;
	color: #595959;
	text-decoration: none;
	border-bottom: 1px solid #C0C0C0;
}


.sidetogglemenu a:hover{
	background: red;
	color: white;
}

/* #######  Additional CSS for toggle menu #togglemenu2  ####### */

#togglemenu2{
	width: 250px;
	border-width: 0;
	background: rgb(53,106,160);
	box-shadow: -5px 0 5px rgba(174, 174, 174, .8);
}

#togglemenu2 ul a{
	color: white;
	border-bottom: 1px solid #eee;
	font: bold 14px;
	text-transform: uppercase;
}

#togglemenu2 a:hover{
	background: #162a50;
	color: white;
}

/* #######  Responsive Menu related CSS  ####### */

div#smallscreentoggler{ /* CSS for small screen menus toggler, shown when device width is below specified */
	width: 1.5em;
	z-index: 10000;
	color: white;
	position: relative;
	float: right;
	overflow: hidden;
	background: gray;
	font: normal 1.8em Arial;
	margin-bottom: 0.5em;
	text-align: center;
	box-shadow: -3px 3px 5px gray;
	cursor: pointer;
	display: none;
	-moz-transition: all 200ms ease-in-out;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

div#smallscreentoggler:hover{
	background: #eee;
	color: black;
	-moz-transition: all 200ms ease-in-out;
	-webkit-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

