/** galeria **/
#galeria {
	display: block;
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 180px;
        height: 240px;
/**	min-height: 22.5em;
	max-height: 22.5em; **/
	list-style: none;
	border: 1em solid #e5e5e5;
	box-shadow: 0 0 10px #000;
	overflow: hidden;
}

#galeria li {
	position: absolute;
	top: 0;
	width: 100%;
        height: 100%;
	border-radius: 10px;
	background-color: #1a1a1a;
	margin-left: -1px;
	padding: 0 0 0 0; 
	list-style: none;
}

#galeria li img {
	width: 100%;
	height: 100%;
}

#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;
}
/**
.nav {
	display: inline-block;
	margin-top: 1.5em;
	text-decoration: none;
	border: 1px solid #555;
	color: #555555;
	padding: .3em 1.5em;
}
**/
/** mediaqueries **/
/**
@media screen and (max-width:480px) {
#galeria{min-height: 100px; border: .3em solid #FFF;}	
}
**/
