/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			display: block;
			height: 400px; /* overall height of accordion  */
			width: 30px; /*  width of colored toggle bar  */
			background: #666666;  /*  color of toggle bar  */
			text-decoration: none;
			outline: none;
			border-right: 0px solid #ffffff;	/*  color of border between colored toggles  */
			cursor: pointer;
			margin: 0 5px 0 0;
		}
		
		.horizontal_accordion_toggle_active {
			background: #CCCCCC;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 390px!important;	/* MUST BE overall accordion height minus padding height time 2  */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			
			overflow: hidden!important;
			background-color: #FFFFFF;
			color: #000000;
			padding:5px;
		}
			
						
    /* Container styling*/
    #horizontal_container {
      margin: 20px auto 20px auto;
      width: 100%;   
    }
    .show_4{
	  display:none;
	}
