.accordion {
	background-color: transparent;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border-left: none;
	border-right: none;
	border-bottom: none;
	border-top: thin solid rgba(120,120,120,1.00);
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
}

.accordion:hover {
	background-color: rgba(0,0,0,0.66);
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}



.panel {
  padding: 10 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.acortitle{
	text-align: left;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	border-collapse: collapse;
	padding: 0px;
	margin: 0px;
	text-transform: uppercase;
}

.panel_padding{
	padding:10px;
	
}