@charset "utf-8";
/* CSS Document */

/** galeria **/
#galeria{
	display: block;
 	margin: 0 0 0 0; 
 	padding: 0; 
	position: relative; 
	width: 100%;
	height: 98%; 
	list-style: none; 
	border: 1px solid #CCC;
	box-shadow: 0 0 5px #000; 
	overflow: hidden;
	}
#galeria li{
	position: absolute; 
	top: 0; left: 0; 
	width: 100%;
	background-color:#CCC;
	}
#galeria li img{
	width: 100%;
	background: #CCC;
	}
#galeria .selected{
	z-index: 1; 
	opacity: 1;
	-moz-transition: all 2s ease 0s;
	-ms-transition: all 2s ease 0s;
	-o-transition: all 2s ease 0s;
	-webkit-transition: all 2s ease 0s;
	transition: all 2s ease 0s;
	}
#galeria .noselected{
	z-index: 0; 
	opacity: 0; 
	-moz-transition: all 2s ease 0s;
	-ms-transition: all 2s ease 0s;
	-o-transition: all 2s ease 0s;
	-webkit-transition: all 2s ease 0s;
	transition: all 2s ease 0s;
	}