@charset "utf-8";
/* CSS Document */

 /* Style the buttons that are used to open and close the accordion panel */
button.accordion, button.accordion1  {
    background-color: #d68303;
    color: #FFF;
	font-weight: bolder;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
	border-radius: 5px;
}

/* 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, button.accordion1.active, button.accordion1:hover  {
    background-color: #ffbc62; 
	color: #FFF;
}

/* Style the accordion panel. Note: hidden by default */
div.panel {
    padding: 5px 0px 0px 0px;    
	margin-bottom: 5px 5px; 
	color: #FFF;
	background-color: #none;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

div.content {
padding: 5px 5px 5px 5px;
    margin-bottom: 5px;
background-image:url(images/bg.png);
    }

button.accordion:after, button.accordion1:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #FFF;
	font-weight: bolder;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after, button.accordion1.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
