/* CSS Document */

		/*
			Vertical Accordions
		*/
		#container {
			margin: 20px auto auto auto;
			width: 680px;
		}
		
		.accordion_toggle {
			display: block;
			height: 30px;
			width: 630px;
			background:  no-repeat top right #6699cc;
			padding: 0 10px 0 10px;
			line-height: 30px;
			color: #ffffff;
			font-weight: bold;
			font:"Univers LT Std 55";
			text-decoration: none;
			outline: none;
			font-size: 16px;
			color: #ffffff;
			border-bottom: 1px solid #f5f5f5;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.accordion_toggle_active {
			background:  no-repeat top right #ff9933;
			color: #ffffff;
			border-bottom: 1px solid #ff9933;
		}
		
		.accordion_content {
			background-color: #ffffff;
			overflow: hidden;	
			width: 680px;
			
		}
			
			.accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #0099FF;
			}
			
			.accordion_content p {
				margin: 0px 0px 7px;
				line-height: 100%;
				padding: 1px 10px 1px 5px;
			}
  			
			#vertical_nested_container {
      margin: 20px auto auto auto;
      width: 400px;
    }
	
	.vertical_accordion_toggle {
			display: block;
			height: 30px;
			width: 400px;
			background: no-repeat top right #6699cc;
			padding: 0 10px 0 10px;
			line-height: 30px;
			color: #ffffff;
			font-weight: normal;
			text-decoration: none;
			outline: none;
			font-size: 12px;
			color: #000000;
			border-bottom: 1px solid #f5f5f5;
			cursor: pointer;
			margin: 0 0 0 0;
		}

		.vertical_accordion_toggle_active {
			background:  no-repeat top right #ff9933;
			color: #ffffff;
			border-bottom: 1px solid #f5f5f5;
		}

		.vertical_accordion_content {
			background-color: #ffffff;
			color: #444444;
			overflow: hidden;
			width: 420px;
		}

			.vertical_accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #ffffff;
			}

			.vertical_accordion_content p {
				line-height: 150%;
				padding: 5px 10px 0px 10px;
			}

