/*
	AnythingSlider v1.7+ Default (base) theme
	By Chris Coyier: http://css-tricks.com
	with major improvements by Doug Neiner: http://pixelgraphics.us/
	based on work by Remy Sharp: http://jqueryfordesigners.com/
	
	------------------------
	Modifié par Thomas Cussonneau / CNDP
	le 14.09.2011

	------------------------
	Modifié par Sébastien Burette / CNDP
	le 01.12.2011
	
	------------------------
	Retravaillé par le Crdp de l'académie de Lyon / CRDP
	juin 2012
*/

/*-------------------------------------------------
	MISE-EN-FORME DE LA LISTE (image + légende)
--------------------------------------------------*/
ul#slider {
	width: 300px; /* 540px */
	height: 120px; /* 200px */
	list-style: none;
	/* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: rgb(255,255,255);
}

ul#slider li {
	width: 300px; /* 540px */
	height: 120px; /* 200px */
	position: relative;
}

ul#slider li a {
	text-decoration: none;
	cursor: pointer;
	padding:0px;
	margin:0px;
}

ul#slider li .titre {}

ul#slider li .texte1ligne {
	font-size: 2.2em;
	color: rgb(0,56,95);
	text-align:center;
	padding:0px;
	margin:0px;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
	margin-top:32px;
}

ul#slider li .texte2lignes {
	font-size: 2.2em;
	color: rgb(0,56,95);
	text-align:center;
	padding:0px;
	margin:0px;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
	margin-top:10px;
	line-height:40px;
}

ul#slider li .texte1ligne a, ul#slider li .texte2lignes a {
	color: rgb(255,255,255);
	text-decoration: underline;
	-webkit-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	outline:none;
}

ul#slider li .texte1ligne a:hover, ul#slider li .texte2lignes a:hover {
	color: rgb(4,103,155);
	text-decoration: underline;
}

ul#slider li .legende {}

ul#slider li a .legende .titre {}

ul#slider li a:hover .legende .titre, ul#slider li a:focus .legende .titre {}

ul#slider img {
	border-style: none;
	padding:0px;
	margin:0px;
	margin-right:-4px;
	margin-top:20px;
}

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

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

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

/*-------------------------------------------------
	BLOCS CREES PAR LE JAVASCRIPT
--------------------------------------------------*/

div.anythingSlider {
	display: block;
	margin: 0 auto;
	padding: 0;
	overflow: visible !important; /* needed for Opera and Safari */
	position: relative;
	/*padding: 0 45px 28px 45px;*/
}

/* anythingSlider viewport window */
div.anythingSlider .anythingWindow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
}

/* S'applique à la liste <ul> contenant les diapos */
.anythingBase {
	background: transparent;
	list-style: none;
	position: absolute;
	overflow: visible !important;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
}

/* S'applique à toutes les diapos (image+légende) du slider */
.anythingBase .panel {
	background: transparent;
	display: block;
	overflow: hidden;
	float: left;
	padding: 0;
	margin: 0;
}

.anythingBase .panel.vertical {
	float: none;
}

/*-------------------------------------------------
	FLECHES DE NAVIGATION (Suivant / Précédent)
--------------------------------------------------*/

div.anythingSlider .arrow {
	top: 50%;
	position: absolute;
	display: block;
}

div.anythingSlider .arrow a {
	display: block;
	height: 38px;
	margin: -25px 0 0 0; /* La moitié de la hauteur de l'image */
	width: 28px;
	text-align: center;
	outline: 0;
	background: url(../images/slider_fleches.png) no-repeat;
}

/* Flèche suivant */
div.anythingSlider .back {left: -30px;}
div.anythingSlider .back a {background-position: left top;}
div.anythingSlider .back a {background-position: left top;}
div.anythingSlider .back a:hover {background-position: left -38px;}
div.anythingSlider .back a:hover {background-position: left -38px;}
div.anythingSlider .back.disabled {display: none;} /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */

/* Flèche précédent */
div.anythingSlider .forward {right: -30px;}
div.anythingSlider .forward a {background-position: right top;}
div.anythingSlider .forward a {background-position: right top;}
div.anythingSlider .forward a:hover {background-position: right -38px;}
div.anythingSlider .forward a:hover {background-position: right -38px;}
div.anythingSlider .forward.disabled {display: none;} /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */

/*------------------------------------------------------
	NAVIGATION (boutons d'accès direct à une diapo)
------------------------------------------------------*/

div.anythingSlider .anythingControls {
	position: absolute;
	bottom: 0;
	right: 20;
	z-index: 100;
}

div.anythingSlider .anythingControls ul {
	margin: 0;
	padding: 0;
	padding-left: 60px;
	float: left;
}

div.anythingSlider .anythingControls ul li {
	display: block;
	float: left;
}

div.anythingSlider .anythingControls ul a {
	display: block;
	background: transparent url(../images/slider_navigation.png) top left no-repeat;
	height: 11px;
	width: 11px;
	margin: 0 auto;
	text-align:center;
	padding: 0;
	outline: 0;
}

div.anythingSlider.activeSlider .anythingControls ul a:hover, div.anythingSlider.activeSlider .anythingControls ul a.cur {
	background-position: bottom left;
}


/*------------------------------------------------------
	BOUTON PLAY/PAUSE
------------------------------------------------------*/

div.anythingSlider .start-stop {
	margin: 3px 5px 3px 8px;
	padding: 0;
	display: inline-block;
	width: 9px;
	height: 10px;
	position: relative;
	bottom: 2px;
	left: 0;
	float: right;
	background: url(../images/slider_play_pause.png) no-repeat top left;
}

div.anythingSlider .start-stop:hover {
	background-position: bottom left;
}

/* Etats du bouton quand lecture en cours */

div.anythingSlider.activeSlider .start-stop.playing {
	background-position: top right;
}

div.anythingSlider.activeSlider .start-stop.playing:hover {
	background-position: bottom right;
}

/*------------------------------------------------------
	DIVERS
------------------------------------------------------*/

/* Masque les textes des liens (flèches, bouton play, navigation) */
div.anythingSlider .arrow a span, div.anythingSlider .anythingControls ul a span, div.anythingSlider .start-stop span {
	display: block;
	line-height: 1px; /* needed for IE7 */
	text-indent: -9999px;
}