.accordion {
	width: 560px;
}
.accordion div,
.accordion p,
.accordion a.title {
	font-family: Arial, Helvetica, sans-serif;
}
.accordion div {
	border: 1px solid #801819;
	background: #FFF;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.accordion p {
	margin-bottom : 10px;
	border: none;
	text-decoration: none;
	font-weight: normal;
	font-size: 11px;
	margin: 0px;
	padding: 10px;
}
.accordion a.title {
	cursor:pointer;
	display:block;
	padding:8px 5px 8px 30px;
	margin-top: 0;
	text-decoration: none;
	color: #624200;
	font-size: 13px;
	font-weight: bold;
	border-bottom: 1px solid #FFF;
	background: url(/jquery/images/in_ico.png) no-repeat 2px center;
}
.accordion a.title:hover {
	color: #FFF;
	background-color: #E22F73;
}
.accordion a.selected {
	color: #FFF;
	border-bottom: 0px;
	background: #801819 url(/jquery/images/out_ico.png) no-repeat 2px center;
}
.accordion a.selected:hover {
	background-color: #801819;
	cursor: default;
}
