.accordion{
	border-radius: 3px;
	overflow: hidden;
	width: 90%;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 0px;
}

.accordion-panel__heading{
	position: relative;
	padding: 20px;
	display: block;
	text-decoration: none;
	text-transform: none;
	color: #FFFFFF;
	font-family: 'goodtimesrgregular';
	font-size: 1.1em;
	cursor:pointer;
	background-color: #000000;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #FF6600;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}

.accordion-panel__heading:HOVER{
	color: #FFFFFF;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	border: 1px solid #FF6600;
	background-color: #000000;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;

}

.accordion-panel__heading.active {
	background: -webkit-linear-gradient(#FF9900, #FF6600, #FF6600); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#FF9900, #FF6600, #FF6600); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#FF9900, #FF6600, #FF6600); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#FF9900, #FF6600, #FF6600); /* Standard syntax */
	border-top-width: 1.8px;
	border-right-width: 1.8px;
	border-bottom-width: 1.8px;
	border-left-width: 1.8px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FF6600;
	border-right-color: #FF6600;
	border-bottom-color: #000000;
	border-left-color: #FF6600;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-ms-transition: all 0.6s;
	-o-transition: all 0.6s;
	transition: all 0.6s;
}
.accordion-panel__content{
	position: relative;
	padding: 0 20px 0 20px;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}

.accordion-panel__content.active {
	max-height: 2000px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 40px;
	border: 0px none #000000;
}
.accordion-panel__end {
	position: relative;
	display: block;
	text-decoration: none;
	text-transform: none;
	color: #999999;
	font-family: "specialeliteregular";
	font-size: 1.5em;
	background-color: #000000;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #FF6600;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	background-image: url(../infaz/ico_TLW_White.png);
	background-repeat: no-repeat;
	background-position: right center;
	text-align: right;
	height: 20px;
	padding-top: 22px;
	padding-right: 50px;
	padding-bottom: 20px;
	padding-left: 20px;
	opacity: 0.6;
	filter: alpha(opacity=50); /* For IE8 and earlier */
}
