/*
Lemonslide is a free web application for a publication of sliders and interactive comics.
LemonSlide 1.0.4 (C) 2013  Guillaume "Goliver" Golay

 This file is part of LemonSlide.

    LemonSlide is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    LemonSlide is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Foobar.  If not, see <http://www.gnu.org/licenses/>.

*/

body{
	margin:0;
	background-color:#fff;
}

#loading{
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-50px;
	margin-left:-80px;
	width:160px;
	height:100px;
	background-image:url('imgsapp/load.gif');
}

#esp-swleft{
	position:absolute;
	left:0px;
	width:40px;
	height:80px;
	top:50%;
	margin-top:-40px;
	-moz-user-select: none; 
    -khtml-user-select: none; 
    -webkit-user-select: none; 
    -o-user-select: none;
	overflow:hidden;
	z-index:1;
}

#esp-swright{
	position:absolute;
	right:0px;
	width:40px;
	height:80px;
	top:50%;
	margin-top:-40px;
	-moz-user-select: none; 
    -khtml-user-select: none; 
    -webkit-user-select: none; 
     -o-user-select: none;
	overflow:hidden;
	z-index:1;
}

#swleft{
	position:relative;
	left:0px;
	width:40px;
	height:80px;
	background-color:#ccc;
	background-image:url('imgsapp/swl1.png');
	background-position: center;
	border-radius:0px 50px 50px 0px;
	transition: background-image 0.3s;
	cursor:  pointer;
}

#swleft:hover{
	background-image:url('imgsapp/swl2.png');
	transition: background-image 0.3s;
}

#swright{
	position:relative;
	right:0px;
	width:40px;
	height:80px;
	background-color:#ccc;
	background-image:url('imgsapp/swr1.png');
	background-position: center;
	border-radius:50px 0px 0px 50px;
	transition: background-image 0.3s;
	cursor:  pointer;
}

#swright:hover{
	background-image:url('imgsapp/swr2.png');
	transition: background-image 0.3s;
}

#esp-menu{
	position:absolute;
	bottom:0;
	width:100%;
	height:50px; /*28px*/
	overflow:hidden;
	z-index:2;
}

#menu{
	position:relative;
	bottom:0px;
	width:100%;
	height:50px; /*28px*/
	background-color:#96968d;
	border-radius:8px 8px 0px 0px;
}

.ls-logo{
	float:right;
	margin-top:2px;
	margin-right:12px;
	width:106px;
	height:22px;
	background-image:url('imgsapp/ls-logo.png');
}

#help{
	float:right;
	margin-top:3px;
	margin-right:4px;
	width:20px;
	height:20px;
	background-image:url('imgsapp/help.png');
	cursor:pointer;
}

#numstat{
	font-family:arial;
	float:left;
	margin-top:6px;
	margin-left:15px;
	width:80px;
	color:#ead881;
	font-size:14px;
	-moz-user-select: none; 
    -khtml-user-select: none; 
    -webkit-user-select: none; 
     -o-user-select: none;
}

#timeline{
	float:left;
	margin-top:6px;
	margin-left:2%;
	width:96%;
	height:10px;
	border: 1px #80806b solid;
	background-color:#80806b;
}

#btime{
	float:left;
	height:10px;
	background-color:#acac9f;
	cursor:pointer;
}

#contentimg{
	/*width:auto;
	height:auto;*/
	background-repeat: no-repeat;
	background-position:center;
}

#contentimg div{
	position:absolute;
	z-index:0;
	background-repeat: no-repeat;
	background-position:center;
	background-size:100% 100%;
}

.infos{
	position:absolute;
	width:100%;
	height:100%;
	background-color:rgba(20, 20, 20, 0.9);
	background-image:url('imgsapp/infos.png');
	background-repeat:no-repeat;
	background-position: center;
	display:none;
	z-index:1;
}

#quitinfos{
	float:right;
	width:40px;
	height:40px;
	background-image:url('imgsapp/quitinfos.png');
	cursor:pointer;
}