/* DIAPO */

#diapo {
	position:relative;
	display:block;
	margin: 0px;
	padding: 0px;
	border: 1px solid #999;
	width:998px;
	height:250px;
	background:black;
	margin-bottom:10px;
}

#diapo img{
	width:998px;
	height:250px;
}


#diapo div.load{
	position:absolute;
	z-index:10;
	padding:10px;
	top:10px;
	right:10px;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
	display:none;
}

#diapo div.load img{
	width:16px;
	height:16px;
	background:none;
	border: 0px solid none;
}


#diapo div.background{
	position:absolute;
	z-index:10;
	width:250px;
	bottom:0px;
	top:0px;
	right:0px;
    background: none repeat scroll 0 0 rgba(66, 44, 33, 0.75);
}


#diapo div.intro{
	color:white;
	position:absolute;
	z-index:20;
	width:250px;
	bottom:0px;
	top:0px;
	right:0px;
}

#diapo h1{
	position:absolute;
	top:5px;
	left:10px;
	right:10px;
	display:block;
	font-size:140%;
	font-weight:bold;
	margin-bottom: 5px;
}

#diapo p{
	position:absolute;
	top:40px;
	left:10px;
	right:10px;
	font-size:80%;
	text-align:justify;
	font-weight:normal;
	line-height:15px;
	margin-bottom: 5px;
}

#diapo p.url{
	position:absolute;
	bottom:5px;
	left:10px;
	right:10px;
	font-size:90%;
	text-align:right;
	cursor:pointer;
}
#diapo p.url:hover{
	text-decoration:underline;
}


#diapo div.cursor{
	position:absolute;
	z-index:30;
	bottom:0px;
	left:0px;
}

#diapo ul{
    list-style: none outside none;
}


#diapo li{
    float: left;
	border: 1px solid white;
	width:15px;
	height:15px;
	margin: 5px;
	cursor:pointer;
	border-radius: 5px;

}

#diapo li:hover {
	background: -webkit-linear-gradient(#EEE,#CCC);
	background: -moz-linear-gradient(#EEE,#CCC);
	background: -ms-linear-gradient(#EEE,#CCC);
	background: -o-linear-gradient(#EEE,#CCC);
	background: linear-gradient(#EEE,#CCC);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#EEEEEE',endColorstr='#CCCCCC', GradientType=0);
}


#diapo li.select{
	background: #ff9305;
	background: -webkit-linear-gradient(#ff9305,#c34b1f);
	background: -moz-linear-gradient(#ff9305,#c34b1f);
	background: -ms-linear-gradient(#ff9305,#c34b1f);
	background: -o-linear-gradient(#ff9305,#c34b1f);
	background: linear-gradient(#ff9305,#c34b1f);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9305',endColorstr='#c34b1f', GradientType=0);

	color:white;
	box-shadow : 0px 0px 2px #999 ;
}

