/* CSS Document */

.accordionItem{
    float:left;
    display:block;
    width:100%;
    box-sizing: border-box;
    font-family:'Open-sans',Arial,sans-serif;
}
.accordionItemHeading{
    cursor:pointer;
    margin:0px 0px 10px 0px;
    padding:5px;
    background: #8E7859;
    color:#fff;
    width:100%;
    -webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
       box-sizing: border-box;
		font-size:15px;
}
.close .accordionItemContent{
    height:0px;
    transition:height 1s ease-out;
    -webkit-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
    float:left;
    display:block;
    
    
}
.open .accordionItemContent{
        padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    margin: 0px 0px 10px 0px;
    display:block;
    -webkit-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
    -webkit-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;

	-webkit-transition: -webkit-transform 0.4s ease-out;
	-o-transition: -o-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	transition: transform 0.4s ease;
        box-sizing: border-box;
}

.open .accordionItemHeading{
    margin:0px;
        -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: #8E7859;
    color: #FFFFFF;
}




h1 {
  text-align: center;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1em;
}

.acordeon {
  width: 100%;
  margin: auto;
  height:auto;
}
.acordeon__titulo {
  color: rgba(255, 255, 255, 1);
  background: #8E7859;
  line-height: 2.8;
  padding: 0 1em;
  font-size: 1.2em;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -1px 0 0 #000 inset;
  text-shadow: 1px 1px #000;
  cursor: pointer;
  -webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
       box-sizing: border-box;
	   margin:0px 0px 10px 0px;
	   
}
.acordeon__contenido {
  display: none;
  margin: 0;
  background: rgba(255, 255, 255);
  padding: 1em 1em 1.5em;
  overflow:hidden;
  font-size: 14px;
  font-family:'Open-sans',Arial,sans-serif;
  text-align:justify;
}

.acor_imagen{
	position: relative; 
	padding: 6px; 
	background: #eee7d9; 
	border: none;
	box-shadow: none; 
	moz-box-shadow: none; 
	-webkit-box-shadow: none;
	float:left;
	margin:10px;
}

@media (max-width: 767px) {	
	.acordeon__contenido {
	  font-size: 12px;
	}
}


@media (max-width: 480px) {
	.acordeon__contenido {
	  font-size: 12px;
	}

	.acor_imagen{
		float: none;
		text-align:center;
	}

}


