@charset "utf-8";
		/* Vertical Accordions */
		
		
		.accordion_toggle {
			display: block;
			height: 30px;
			width: 150px;
			background: url(../Source/toggle_inactive.png) no-repeat top left transparent;
			padding: 0px 0px 0px 25px;
			line-height: 30px;
			text-decoration: none;
			outline: none;
			font-size: 13px;
			font-family: Tahoma, Geneva, sans-serif;
			font-weight: bold;
			color: #666666;
			border-bottom: 2px solid transparent;
			cursor: pointer;
			margin: 0 10px 0 10px;
			border-right: 1px solid #ff9600;
		}
		
		.accordion_toggle_active {
			background: url(../Source/toggle_active.png) no-repeat top left transparent;
			color: #ff9600;
			border-top: 0px solid transparent;
			font-weight: bold;
			border-right: 0px solid #ff9600;
			width: 151px;
		}
		
		.accordion_content {
			/*background-color: #ffffff;*/
			color: #990000;
			overflow: hidden;
		}
			
			.accordion_content h2 {
				margin: 0px;
				color: #990000;
				text-decoration: none;
				font-size: 13px;
				font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
				font-weight:lighter;
			}
			
			.accordion_content p {
				line-height: 150%;
				padding: 0px 10px 0px 0px;
			}
			
		.vertical_accordion_toggle {
			display: block;
			height: 30px;
			width: 130px;
			background: url(../Source/toggle_inactive.png) no-repeat top left transparent;
			padding: 0px 0px 0px 25px;
			line-height: 30px;
			font-weight: bold;
			text-decoration: none;
			outline: none;
			font-size: 13px;
			font-family: Tahoma, Geneva, sans-serif;
			color: #999999;
			border-bottom: 2px solid transparent;
			cursor: pointer;
			margin: 0 10px 0 30px;
			border-right: 1px solid #ff9600;
		}

		.vertical_accordion_toggle_active {
			background: url(../Source/toggle_active.png) no-repeat top left transparent;
			color: #a36000;
			border-top: 0px solid transparent;
			font-weight: bold;
			border-right: 0px solid #ff9600;
			width: 131px;
		}

		.vertical_accordion_content {
			/* background-color: #ffffff; */
			color: #444444;
			overflow: hidden;
		}

			.vertical_accordion_content h2 {
				margin: 0px 0 0px 0px;
				color: #0099FF;
			}

			.vertical_accordion_content p {
				line-height: 150%;
				padding: 0px 0px 0px 0px;
			}
  			
		/* Horizontal Accordion */
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 100px;
			width: 30px;
			background: url(images/h_accordion_toggle.jpg) no-repeat top left #a9d06a;
			color: #ffffff;
			text-decoration: none;
			outline: none;
			border-right: 1px solid #ffffff;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.horizontal_accordion_toggle_active {
			background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
			border-right: 1px solid #ffffff;
		}
		
		.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: #ffffff;
			color: #444444;
		}
			
			.horizontal_accordion_content p {
				width: 380px;
				height: 100px;
				line-height: 100%;
				padding: 0px 10px 0px 10px;
			}
					
					
    /* Container styling */
    #horizontal_container {
      margin: 0px auto 0px auto;
      width: 580px;   
      height: 1px;    
    }
    
    #vertical_nested_container {
      margin: 0px 0px 0px 0px;
      width: 200px;
    }
