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

 /* Style the buttons that are used to open and close the accordion panel */
button.accordion {
	background-image: ;
	background-repeat: no-repeat;
	text-transform: uppercase;
	height: 50px;
	background-color: #111;
	color: #F00;
	font-size: 16px;
	cursor: pointer;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
	font-weight: bold;
	margin-bottom: 10px;
	background-position: left center;
}

/* 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{
    background-color: #000;

}

button.accordion:hover {
	background-color: #333;
}


/* Style the accordion panel. Note: hidden by default */
div.panel {
	padding-left: 5px;
    padding-right: 5px;
    display: none;
		margin-bottom: 10px;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
div.panel.show {
    display: block !important;
}

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

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