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


.sidetogglemenu{ /* shared class for side toggle menus */
	background-color: white;
	width: 170px; /* default menu width */
	height: 100%;
	position: fixed;
	top: -100%;
	clear: both;
	display: block;
	visibility: 'hidden';
	box-shadow: 5px 0 5px rgba(174, 174, 174, .8);
	-moz-transition: all 100ms ease-in-out; 
	-webkit-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}


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

a{
	font-family: 'Raleway',sans-serif;
	text-decoration: none;
	color: #3F3F3F;
}
a:hover{
	color: black;
}
/* #######  Additional CSS for toggle menu #togglemenu2  ####### */

#togglemenu2{
	background: #f8b249;
	padding: 50px 26px 50px 50px;
	z-index: 99999 !important;
}



/* #######  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;
}


@media screen and (max-width: 480px){ /* CSS when device width is 480px or less */

  div#smallscreentoggler{
		display: block; /* show small screen menus toggler */
	}

	.sidetogglemenu{ /* Set position of menus to static */
		position: static;
		border-width: 0;
		border-top-width: 1px;
		width: 98% !important;
		height: auto;
		box-shadow: 5px 0 5px rgba(174, 174, 174, .8) !important;
		margin-left: 5px;
		margin-bottom: 10px;
		display: none;
	}
}

.mainheading{
	font-size: 21px;
	font-family: 'Gudea', sans-serif;
	color: #3e3e3e;
}
.subheading{
	font-size: 14px;
	font-family: 'Gudea', sans-serif;
	color: #3e3e3e;
	margin-top: -14px !important;
}

.logoMenu{
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: -5px;
    width: 116px;
}
.closeMenu{
	color: #3E3E3E;
    font-family: 'Gudea',sans-serif;
    font-size: 31px;
    position: absolute;
    right: 20px;
    top: 7px;
	cursor: pointer;
}
.sub{
	margin-left: 0px;
}
.main{
	font-size: 24px;
	line-height: 43px;
}