/*
// 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 */
* {
  margin: 0;
  padding: 0;
}

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



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

	#accordion1 .section {
	border-bottom: 1px solid #ccc;
	padding: 12px;
	background-image: url(accordion-bg.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
	}	
	
	#accordion1 h2 {
		background: url(plus.png) no-repeat 0 4px;
		cursor: pointer;
		font-size: 14px;
		outline: none;
		padding-left: 18px;
	}
	
	#accordion1 .ui-state-active {
		background: url(minus.png) no-repeat 0 4px;

	}

	#accordion1 .section-content {
		padding: 0 18px;
	}

	#accordion1 h3 {
		border-bottom: 2px dotted #CCC;
		color: #666;
		font-size: 12px;
		font-weight: bold;
		padding: 22px 0 5px 0;
	}
	
	#accordion1 p {
		padding-top: 12px;
	}
	
	#accordion1 ol,
	#accordion1 ul {
		margin: 12px 0 0 40px;
	}
	
	#accordion1 li {
		padding-bottom: 5px;
	}