.drawer {
    width: 99%;
    border-radius: 3px;
    margin: 0 auto;
}
.accordion-item {
 
}
.accordion-item-active .accordion-header {
    background: #888;
    transition: .25s;
}
.accordion-item-active .accordion-header-icon {
    color: #fff;
}
.accordion-item-active .accordion-header h1 {
    color: #fff;
}
.accordion-header {
    background: #f2f2f2;
    cursor: pointer;
    height: 35px;
	line-height:35px;
    transition: .25s;
	position:relative;
	margin-bottom:3%;
}
.accordion-header h1 {
    float: left;
    font-size: 0.9em;
    font-weight: bold;
    margin: 0;
	height:35px;
    line-height: 23px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    padding: 2%;
	text-align:center;
}
.accordion-content:before{
	content:'';
	background:url(images/arrow.png) left top no-repeat;
	display:block;
	width:28px;
	height:14px;
	position: absolute;
    top: -14px;	
}
.accordion-content {
    margin: 8% 0;	
	border: 2px solid #f8639d;
	padding:12px 0;	
    display: none;
    color: #212121;
    background: #FFF;
    font-size: 15px;
    line-height: 1.45em;
	position:relative;
}
.accordion-content p {
    margin: 0;
    margin-bottom: 3px;
}
.accordion-header-icon {
    background: url(images/dwn_arrow.png) no-repeat;
    width: 20px;
    height: 20px;
    color: #404040;
    font-size: 15px;
    vertical-align: middle;
    position: absolute;
	right:5%;
	top:50%;
	margin-top:-10px;
    text-indent: 99999px;
}
.accordion-header-icon.accordion-header-icon-active {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #fff;
}