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

#accordeons{
	position: relative;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5;
	margin-left: auto;
	width: 98%;
}
#accordeons h5{
	position: relative;
	z-index: 2;
	font-weight: normal;
	text-shadow: 0 1px 0 #bbb;
	font-size: 1em;
	border-bottom: 1px solid #555;
	border-top: 1px solid #aaa;
	/*linear-gradient*/
	background: #8fbc13;
	background: -webkit-gradient(linear,left top,left bottom,from(#8fbc13),to(#c3e86c));
	background: -webkit-linear-gradient(top,#8fbc13,#c3e86c);
	background: -moz-linear-gradient(top,#8fbc13,#c3e86c);
	background: -ms-linear-gradient(top,#8fbc13,#c3e86c);
	background: -o-linear-gradient(top,#8fbc13,#c3e86c);
	/*border-radius*/
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/*box-shadow*/
	-webkit-box-shadow: 0 0 5px black;
	-moz-box-shadow: 0 0 5px black;
	box-shadow: 0 0 5px black;
	color: #888;
	background-position: top;
	text-align: center;
	width: 98%;
	margin-right: auto;
	margin-left: auto;
}
#accordeons h5 a{
	display: block;
	color: #fff;
	text-decoration: none;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0px;
}
.accordeon{
	width: 200px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.accordeon:hover{
}
.accordeon div{
position:relative;
border-radius:5px;
z-index:1;
background:rgba(143,188,19,0.1);
padding:5px;
margin-top:-8px;
font-size:.9em;
color:#8fbc13;
*opacity:0;
/*transform*/
-webkit-transform:scaleY(0);
   -moz-transform:scaleY(0);
    -ms-transform:scaleY(0);
     -o-transform:scaleY(0);
        transform:scaleY(0);
/*transform-origin*/
-webkit-transform-origin:50% 0;
   -moz-transform-origin:50% 0;
    -ms-transform-origin:50% 0;
     -o-transform-origin:50% 0;
        transform-origin:50% 0;
/*transition*/
-webkit-transition:all .5s ease;
   -moz-transition:all .5s ease;
    -ms-transition:all .5s ease;
     -o-transition:all .5s ease;
        transition:all .5s ease;
}
.accordeon:hover div{
opacity:1;
/*transform*/
-webkit-transform:scaleY(1);
   -moz-transform:scaleY(1);
    -ms-transform:scaleY(1);
     -o-transform:scaleY(1);
        transform:scaleY(1);
}
.accordeon div p{
padding:0px;
}
.accordeon div p a{
color:#8fbc13;
text-decoration:none;
}
.accordeon div p a:hover{
color:#000;
border-width:2px;
}
