		/*
			Horizontal Accordion
		*/		
		.horizontal_accordion_toggle {
			padding-top: 10px;
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 380px;
			width: 30px;
			background: #003366;
			color: #ffffff;
			text-decoration: none;
			outline: none;
			border-right: 1px solid #888888;
			cursor: pointer;
			margin: 0 0 0 0;
			text-align: center;
			font-size: 12px;
		}	
		.horizontal_accordion_toggle:hover
		{
			background: #006699;
		}
		.horizontal_accordion_toggle_active {
			background: #006699;
			border-right: 1px solid #888888;
		}	
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 100px;	/* We need to define a height for the accordion as it stretches the width */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			
			overflow: hidden;
			background-color: transparent;
			padding: 0px;
			
			height: 390px;
			overflow: hidden;
		}		
		.horizontal_accordion_content p, .horizontal_accordion_content ul, .horizontal_accordion_content li, .horizontal_accordion_content div
		{
			width: 489px;
			line-height: 115%;
			margin-left: 5px;
			margin-right: 5px;
			color: #444444;
			font-size: 14px;
			
		}					
		
		.horizontal_accordion_content p
		{
			padding: 0px;
			margin-right: 0px;
			margin-top: 0px;
			margin-bottom: 0px;
			margin-left: 5px;
		}
		
		.horizontal_accordion_content li
		{
			list-style-image: url(bullet.png);
			width:465px;
			margin: 0px;
			padding: 0px;
		}
		
		.horizontal_accordion_content ul
		{
			margin: 0px;
		}
		
		.horizontal_accordion_content a
		{
			color: #003399;
			text-decoration: underline;
		}
		
		.job_title
		{
			font-size: 14px; 
			font-weight: 900; 
			color: #000000; 
		}
    /* Container styling*/
    #horizontal_container {
      margin-top: 0px;
	  margin-left: 4px;
	  margin-right: auto;
      width: 654px;   
      height: 390px;
	  border-top: 1px solid #888888;
	  border-bottom: 1px solid #888888;
	  background: #DCDCDC;
    }
	
		
