/* CSS Document */

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;
		font-family: 'Lato', sans-serif;  
}


.sidetogglemenu{ /* shared class for side toggle menus */
	border-right: 5px solid #CC0000;
	background-color: #FFFFCC;
	width: 200px; /* default menu width */
	height: 100%;
	position: fixed;
	clear: both;
	display: block;
	visibility: 'hidden';
	overflow-y: auto;
	-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 a{
	padding: 10px;
	display: block;
	color: #CC0000;
	position: relative;
	text-decoration: none;
	border-bottom: 1px dotted #FF9933;
}

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

.sidetogglemenu a:hover{
	background: #FF9933;
	color: #FFFFFF;
}

/* #######  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: #CC0000;
	font: normal 1.8em Arial;
	margin-bottom:10px;
	margin-top: -10px;
	margin-right: 32px;
	text-align: center;
	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;
	top: 0px;
}

div#smallscreentoggler:hover{
	background: #FFFFFF;
	color: #990000;
	-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: 850px){ 

#jungle {
	top: 33%;

}
#castle{
	top: 52%;
}
#thron {
	top: 73%;
}
footer {
	width: 40%;

}

}


@media screen and (max-width: 768px){ /* 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;
}
	
header {
	right: 7%;
}
nav {
	display: none ;
	height:auto;
}
#jungle {
	top: 30%;
}
#castle{
	top: 47%;
}
#thron {
	top: 72%;
}
footer {
	width: 40%;
}
}

@media screen and (max-width: 648px){ 

#content{
	width: 36.916666%;
	top: 10%;
	padding-left: 15%;
	padding-right: 15%;
	padding-top: 10%;
}
header {
	right: 0;
}
#jungle {
	top: 26%;
}
#castle{
	top: 41%;
}
#thron {
	top: 70%;
	right: -40px;
}
footer {
	width: 40%;

}
}
@media screen and (max-width: 480px){ 

header {
	right: -30px;
}
#jungle {
	top: 15%;
	left: -10px;
}
#adventure {
	top: 2%;
	left: -20px;
}
#castle{
	top: 26%;
	left: -30px;
}
#castle_yellow{
	right: -10px;	
}
#thron {
	top: 65%;
	right: -50px;	
}
footer {
	width: 100%;

}
#content{
	width: 45%;
	left: 13%;
}
h1 {
	font-size: 100%;}
}
@media screen and (max-width: 320px){ 

header {
	top: 40px;
	right: -70px;
}
img {
	max-width: 100%;
	height: auto;
}
#adventure{
	top: 6%;
	right: 50px;
	width: 50%;
}
#jungle {
	display:none;
}
#castle{
	display:none;
}
#castle_yellow{
	display:none;
}
#thron {
	display:none;
}
footer {
	width: 80%;
	left: 30px;
	text-align: center;

}
#content{
	width: 60%;
	left: 10%;
	right: 10%;
	padding-top: 80px;
}
}



