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 */
	border-right: 5px solid #ff573b;
	background-color: white;
	width: 170px; /* default menu width */
	height: 100% ;
	position: fixed;
	top: -100%;
	clear: both;
	display: block;
	overflow: scroll;
	visibility: 'hidden';
	-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 h3 {margin-bottom: 0 ; margin-top: 0 ; }


.anaokulu .sidetogglemenu{border-right: 5px solid #7cae38}
.anaokulu .sidetogglemenu a:hover{ background: #7cae38 }

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

.sidetogglemenu ul li {
	border-bottom: 1px solid #C0C0C0;
	
}

.sidetogglemenu a{
	font-size:13px;
	padding:6px 10px;
	display: block;
	color: #595959;
	text-decoration: none;
}


.sidetogglemenu a:hover{
	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;
	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;
}

