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;
}

.sideviewtoggle {
	cursor:pointer;
}
.navbar-header {
	height:40px;
}
.sidetogglemenu{ /* shared class for side toggle menus */
	border-right: 5px solid #333;
	background-color: #333;
	width: 300px; /* default menu width */
	height: 100%;
	position: fixed;
	top: -100%;
	clear: both;
	display: block;
	visibility: hidden;
	overflow-y: auto;
	box-shadow: 5px 0 5px rgba(174, 174, 174, .8);
	-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;
}


.sidetogglemenu ul{ /* Top UL inside toggle menu */
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidetogglemenu ul ul{ /* Toggle menu sub ULs style */
  margin-left: 5px;
  padding-left: 2px;
  font-size: .9em;
}

.sidetogglemenu a{
	font: bold 13px Verdana;
	padding: 10px 30px;
	display: block;
	color: #fff;
	position: relative;
	text-decoration: none;
	border-bottom: 1px solid #C0C0C0;
	text-align: left;
	color:white;
}

.submenu-drop > li > a {
	border-bottom: 0px;
	padding: 5px 20px 5px 40px;
	color:white;
}

.submenu-drop > li > ul.submenu-drop > li > a {
	padding-left: 60px;
}

.sidetogglemenu a img.downarrow{
	position: absolute;
	right: 40px;
	top: 15px;
}

#expand-all, #contract-all {
	color:white;
	cursor:pointer;
}
button#close-button {
    float: right;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 0px;
		text-align: center;
}

#togglemenu1 {
	z-index: 1000000001 !important;
}
.sidetogglemenu a:hover{
	background: white;
	color: #333;
}


/* #######  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;
	border-radius: 2px;
	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;
}
