/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
	cursor: pointer;
    padding: 13px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: 10px 0;
    border-radius: 7px;
    font-weight: bold;
    font-size: 17px;
    color: #403b3a;
	background: #f7f7f7;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
	box-shadow: none;
}

div.panel-news {
    padding: 0 18px;
    background-color: white;
    display: none;
    box-shadow: none;
    margin-bottom: 0px;
}
button.accordion:after {
    content: ''; 
	display: block;
	background-image: url(../img/arrow-bottom.png);
	background-repeat: no-repeat;
	width: 22px;
	height: 12px;
    float: right;
    margin-left: 5px;
	margin-top: 7px;
}

button.accordion.active:after {
    background-image: url(../img/arrow-top.png);
	background-repeat: no-repeat;
}