/*
// 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;
}

.accord_box{
width:500px;
height:100%;
margin:00x auto;
padding:0px;
}
#accordion {
  border: 1px solid #ccc;
  border-bottom: none;
  margin: 0 auto;
	width: 530px;
	height:auto;
	
}

	#accordion .section {
		background: url(../images/accordion-bg.gif) repeat-x 0 0;
		border-bottom: 1px solid #ccc;
		padding: 5px;
	}	
	
	#accordion h2 {
		background: url(../images/plus.png) no-repeat 0 4px;
		cursor: pointer;
		font-family:Tahoma;
		font-size: 14px;
		color:#0099CC;
		outline: none;
		padding-left: 18px;
	}
	
	#accordion .ui-state-active {
		background: url(../images/minus.png) no-repeat 0 4px;
	}
	
	#accordion .section-content {
		padding: 0 18px;
		
	}
	
	#accordion h3 {
		border-bottom: 2px dotted #CCC;
		color: #666;
		font-size: 12px;
		font-family:Tahoma;
		color:#0099CC;
		padding: 22px 0 5px 0;
	}
	
	#accordion p {
		padding-top: 12px;
		width: 500px;
		font-size: 12px;
		font-family:Tahoma;
		color:#333333;
	}
	
	 
