/*
// HTML source written by Cory Dorning
// Visit www.corydorning.com/blog/jquery-faqs-scroll-and-highlight-tutorial
// for original source code and tutorial
*/

@charset "utf-8";
/* CSS Document */


:focus {
	-moz-outline-style: none;
}

.accordion {
	border: 1px solid #ccc;
	border-bottom: none;
	margin: 0 auto; 
	width:100%;
}

.accordion .section {
	background: url(../images/accordion-bg.gif) repeat-x 0 0;
	border-bottom: 1px solid #ccc;
	padding: 10px;
}	

.accordion h2 {
	background: url(../images/plus.png) no-repeat top right;
	cursor: pointer;
	outline: none;
	line-height:2em; 
	text-indent:10px;
}

.accordion .ui-state-active {
	background: url(../images/minus.png) no-repeat top right;
}

.accordion .section-content {
	padding: 0 10px;
	margin-top:10px;
}



