@charset "utf-8";

/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	width: 505px;
}

/* accordion header */
#accordion h2 {
	margin:0;
	padding:5px 15px;
	font-size:15px;
	font-weight:normal;
	border:1px solid #7C5124;
	cursor:pointer;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-image: url(../images/store/over.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	color: #4E2E0E;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-image: url(../images/store/current.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	color: #CDBD89;
}

/* accordion pane */
#accordion div.pane {
	display:none;
	height:220px;
	padding:15px;
	color:#000000;
	font-size:15px;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height: 1.5em;
	text-align: justify;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}

