
html{
	height:100%;
	overflow:hidden;
}
body{
	margin:0px;
	padding:0px;
	height:100%;
}
#reload{
	display:none;
	background-image:url(../img/reload.png);
	background-repeat:no-repeat;
	background-size:cover;
	position:fixed;
	width:100px;
	height:100px;
	cursor:pointer;
	-webkit-box-shadow: #fff 0 2px 20px;
	-moz-box-shadow: #fff 0 2px 20px;
	box-shadow: #fff 0 2px 20px;
	font-size:6px;
	border-radius:5px;
	opacity:0.7;
	transition:opacity 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in;
		        -webkit-transition: opacity 0.5s ease-in;
		        -o-transition:opacity 0.5s ease-in;
}
#reload:hover{
	opacity: 1.0;
}
progress{
	position:fixed;
	left:10%;
	top:10%;
}
#slider{
	width:50px;
	height:50px;
	position:absolute;
	background-color:#4c66a4;
	cursor:pointer;
	opacity:0.5;
	/*transition: right 1.0s,bottom 1.0s;*/
}
.life{
	width:30px;
	height:30px;
	position:fixed;
	background-image:url(../img/smalls/l.png);
}
.coin{
	width:40px;
	height:45px;
	position:fixed;
	background-image:url(../img/smalls/c.png);
}
.bomb{
	width:40px;
	height:35px;
	position:fixed;
	background-image:url(../img/smalls/b.png);
	background-size:contain;
	background-repeat:no-repeat;
}
#sound{
	width:50px;
	height:50px;
	position:fixed;
	right:0px;
	bottom:0px;
	background:url(../img/smalls/sound_on.png) 50% 50% / 100% no-repeat;
	cursor:pointer;
	opacity:0.5;
	transition:opacity 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in;
	-webkit-transition: opacity 0.5s ease-in;
	-o-transition:opacity 0.5s ease-in;
}
#sound:hover,#sound:focus{
	opacity:1.0;
}
#sound.highlight{
	background:url(../img/smalls/sound_off.png) 50% 50% /100% no-repeat;
}
.range_bomb{
	width:50px;
	height:50px;
	position:fixed;
	background:url(../img/smalls/range.png) 50% 50% / 100% no-repeat; 
}

#slider{
	cursor:default;
	background-color:white;
	position:fixed;
	width:100%;
	height:100%;
	left:100%;
	top:0px;
	opacity:1.0;
        border-left-color:#ffcc33;
}
#arrow{
	width:50px;
	height:50px;
	position:fixed; 
	right:0px;
	bottom:50%;
	background:url(../img/display/monotone_arrow_next_right.png) 50% 50% / 100% no-repeat;
	cursor:pointer;
	opacity:0.5;
	transition:opacity 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in;
	-webkit-transition: opacity 0.5s ease-in;
	-o-transition:opacity 0.5s ease-in;
}
#arrow:hover{
	opacity:1.0;
}
#back_arrow{
	width:50px;
	height:50px;
	position:absolute;
	right:0px;
	background:url(../img/display/cross.png) 50% 50% / 100% no-repeat;
	cursor:pointer;
}
#new_site{
	width:100%;
	height:100%;
}
#play{
	display:none;
	background-image:url(../img/play.png);
	background-repeat:no-repeat;
	background-size:cover;
	position:fixed;
	width:100px;
	height:100px;
	cursor:pointer;
	-webkit-box-shadow: #fff 0 2px 20px;
	-moz-box-shadow: #fff 0 2px 20px;
	box-shadow: #fff 0 2px 20px;
	border-radius:5px;
	opacity:0.7;
	transition:opacity 0.5s ease-in;
	-moz-transition: opacity 0.5s ease-in;
	-webkit-transition: opacity 0.5s ease-in;
	-o-transition:opacity 0.5s ease-in;
	left:50%;
	top:50%;
}
#play:hover{
	opacity: 1.0;
}

progress {
	width: 400px;
	height: 14px;
	margin: 50px auto;
	display: block;
	/* Important Thing */
	-webkit-appearance: none;
	border: none;
}

/* All good till now. Now we'll style the background */
progress::-webkit-progress-bar {
	background: black;
	border-radius: 50px;
	padding: 2px;
	box-shadow: 0 1px 0px 0 rgba(255, 255, 255, 0.2);
}

/* Now the value part */
progress::-webkit-progress-value {
	border-radius: 50px;
	box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.4);
	background:
		-webkit-linear-gradient(45deg, transparent, transparent 33%, rgba(0, 0, 0, 0.1) 33%, rgba(0, 0, 0, 0.1) 66%, transparent 66%),
		-webkit-linear-gradient(top, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.2)),
		-webkit-linear-gradient(left, #ba7448, #c4672d);
	
	/* Looks great, now animating it */
	background-size: 25px 14px, 100% 100%, 100% 100%;
	-webkit-animation: move 5s linear 0 infinite;
}

/* That's it! Now let's try creating a new stripe pattern and animate it using animation and keyframes properties  */

@-webkit-keyframes move {
	0% {background-position: 0px 0px, 0 0, 0 0}
	100% {background-position: -100px 0px, 0 0, 0 0}
}

/* Prefix-free was creating issues with the animation */
html{
	height:100%;
	overflow:hidden;
}
body{
   font: 2.2em 'Segoe UI Light',Segoe UI,Helvetica Light,Tahoma Light,Arial Light,sans-serif;
   font-weight: lighter;
   margin:0px;
   padding:0px;
   height:100%;
}
header{
    width: 150px;
    cursor:pointer;
    color:#2E8BCC;
    transition: color 0.3s ease-in;
}
header:hover{
    color:red;
}
footer{
    position:absolute;
    bottom:10px;
    width:100%;
    text-align: center;
    color:#6a747e;
    font: 0.5em 'Segoe UI Light',Segoe UI,Helvetica Light,Tahoma Light,Arial Light,Helvetica Light,sans-serif;
    font-weight: lighter;
}
#nav{
 margin-top: 3px;  
}
ul{
    list-style-type: none;
}
li{
    height: 50px;
    text-align: center;
    padding-top: 0px;
    padding-left: 0px;
    float:left;
    width:100px;
    cursor:pointer;
   /* border-width: 5px;
    border-color:pink;
    border-style: solid;
    */
    margin-right: 6px;
    margin-top: 5px;
    background-color: #3b5998;
    transition: background-color 0.5s;
   -moz-transition:background-color 0.5s;
   -webkit-transition: background-color 0.5s;
   -o-transition: background-color 0.5s; 
}
li:hover{
    background-color:#FF9009;
}
span{
    cursor: pointer;
    vertical-align: middle;
    color:white;
    font-size:15px;
    transition: font-size 0.1s,color 0.5s;
   -moz-transition:font-size 0.1s,color 0.5s;
   -webkit-transition: font-size 0.1s,color 0.5s;
   -o-transition: font-size 0.1s,color 0.5s;
}/*
.label{
   
}
.label:hover{
   
}*/
#body{
    font-size:18px;
    position:absolute;
    left:30px;
    width:60%;
    height:60%;
    background-color: red;
    border-color: pink;
    border-style: solid;
    border-radius: 2px;
    border-width: thick;
    color:white;
    overflow: auto;
}
#nav_element1_body{
    padding-left: 4px;
}
#nav_element2_body{
    padding-left: 4px;
}
#close_body{
  /*  background-image: ;*/
    width:22px;
    height:22px;
    cursor: pointer;
    position:absolute;
    left:61.5%;
    margin-top: -22px;
    background: url(../img/display/filter-menu-sprite.png) 0% 65% no-repeat;
}
#close_body:hover{
   background: url(../img/display/filter-menu-sprite.png) 0% 100% no-repeat;
}
#box_arrow{
position:absolute;
top:93px;
/*left:70px;*/
border-color: transparent transparent pink transparent;
border-style:solid;
border-width:20px;
width:0px;
height:0;
z-index:3;
}
#universe{
    width:100%;
    height:100%;
   /* background: url(../img/display/b.png);*/
}
#pic{
    display:none;
    width:100px;
    height:100px;
    position:absolute;
    left:50%;
    top:0px;
    -webkit-box-shadow: #000 0 2px 20px;
    -moz-box-shadow: #000 0 2px 20px;
    box-shadow: #000 0 2px 20px;	
    border-radius:5px;
    transition:display 0.5s;
    -moz-transition: display 0.5s;
    -webkit-transition: display 0.5s;
    -o-transition:display 0.5s;
}
#pic.about{
    display:block;
    background-image:url(../img/display/about.png);
    background-size:cover;
    background-repeat: no-repeat;
}
#pic.control{
    display:block;
    background-image:url(../img/display/game.png);
    background-repeat: no-repeat;
    background-size:cover;
}
#pic.contact{
    display:block;
    background-image: url(../img/display/collaboration.png);
    background-color: red;
    background-size: contain;
    background-repeat: no-repeat;
}
#pic.demo{
    display:block;
    background-image: url(../img/display/brackets_center.png);
    background-color: #6666ff;
    background-size: contain;
    background-repeat: no-repeat;
}
