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

		/*
			Vertical Accordions
		*/
		
				.accordion_toggle {
			display: block;
			height: 20px;
			width: auto;
			padding: 0;
			line-height: auto;
			font-weight: normal;
			text-decoration: none;
			outline: none;
			font-size: 12px;
			color: red;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.accordion_toggle_active {
			color: #f0f0e6;
		}
		
		.accordion_content {
			color: #444444;
			overflow: hidden;
		}
			
			.accordion_content h2 {
				margin: 0;
				color: #0099FF;
			}
			
			.accordion_content p {
				padding: 0;
			}
			
		.vertical_accordion_toggle {
			display: block;
			height: auto;
			width: auto;
			padding: 0;
			color: #f0f0e6;
			font-weight: normal;
			text-decoration: none;
			outline: none;
			font-size: 12px;
			color: red;
			cursor: pointer;
			margin: 0 0 0 0;
		}

		.vertical_accordion_toggle_active {
			color: #f0f0e6;
		}

		.vertical_accordion_content {
			color: #444444;
			overflow: hidden;
		}

			.vertical_accordion_content h2 {
				margin: 0;
				color: #0099FF;
			}

			.vertical_accordion_content p {
				padding: 0;
			}
  			
		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 24px;
			width: 24px;
			color: #f0f0e6;
			text-decoration: none;
			outline: none;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.horizontal_accordion_toggle_active {
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: auto;	/* 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;
			color: #444444;
		}
			
			.horizontal_accordion_content p {
				width: 215px;
				padding: 5px;
			}
					
					
    /* Container styling*/
    #horizontal_container {
      margin: 0;
      width: auto;   
      height: 60px;    
    }
	
    #vertical_container {
      margin: 0;
      width: 254px;   
      height: auto;
    }
    
    #vertical_nested_container {
      margin: 0;
      width: auto;
    }