@charset "ISO-8859-2";
/* CSS Document */

/* Style the buttons that are used to open and close the accordion panel */
button.accordion {
    background-color: #fff;
    color: #F00;
	font-weight:bold;
    cursor: pointer;
    padding: 10px;
    width: 90%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

button.accordion .title {
	
	color:#F00;}

/* 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 8px 8px;
    background-color: white;
     display: none;
} 

button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 8px;
    color: #777;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}