/** galeria **/
#galeria {
	display: block;
	margin: 0 auto;
	padding: 0;
	position: relative;
	width: 300px;
	list-style: none;
	overflow: hidden;
}

#galeria li {
	position: absolute;
	top: 0;
	width: 300px;
	border-radius: 0px;
	paddiing: .0em;
}

#galeria li img {
	width: 300px;
}

#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: 0em;
	text-decoration: none;
	border: 0px solid #555;
	color: #555555;
	padding: 0em 0em;
}

/** mediaqueries **/
@media screen and (max-width:480px) {
#galeria{min-height: 350px; border: 0em solid #FFF;}	
}
