@charset "utf-8";
/* CSS Document */
<style>
.acc2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}
.acc {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.acc3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.glo {
	width: 805px;
	overflow: hidden;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 1px;
	margin-left: auto;
	vertical-align: central;
}
/*Now the styles*/
* {
	margin: 0; 
	padding: 0;
}
body {
	font-family: arial, verdana, tahoma;
	background-color: #FFF;
	margin-top: 0px;
	margin-bottom: 2px;
}

/*Time to apply widths for accordian to work
Width of image = 640px
total images = 5
so width of hovered image = 640px
width of un-hovered image = 40px - you can set this to anything
so total container width = 640 + 40*4 = 800px;
default width = 800/5 = 160px;
*/

.accordian {
	width: 805px;
	height: 320px;
	overflow: hidden;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.35);
	margin-top: 2px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	vertical-align: central;
}

/*A small hack to prevent flickering on some browsers*/
.accordian ul {
	width: 2000px;
	/*This will give ample space to the last item to move
	instead of falling down/flickering during hovers.*/
}

.accordian li {
	position: relative;
	display: block;
	width: 200px;
	float: left;
	
	border-left: 1px solid #888;
	
	box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	
	/*Transitions to give animation effect*/
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	/*If you hover on the images now you should be able to 
	see the basic accordian*/
}

/*Reduce with of un-hovered elements*/
.accordian ul:hover li {width: 60px;}
/*aplicarmos efectos*/
/*The LI hover style should override the UL hover style*/
.accordian ul li:hover {width: 640px;}


.accordian li img {
	display: block;
}

/*estilo imgs*/
.image_title {
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	left: 0; bottom: 0;	
width: 640px;	

}
.image_title a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 15px;
	font-size: 15px;
}
.capa1 {
	width: 40px;
	height: 10px;
}
/*estilo txts de imgs*/
.image_txtimg {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	top: 50;
	right: 0;
	bottom: 0;
	width: 630px;
	left: 180px;
}
.image_txtimg a {
	display: block;
	color: #fff;
	text-decoration: none;
	padding-top: 30px;
	padding-right: 205px;
	padding-left: 30px;
	font-family: Helvetica, Arial, "sans-serif";
	font-size: 12px;
	text-align: justify;
}
.capa1 {
	width: 40px;
	height: 12px;
}
</style>
