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

body {
	background: #000;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color:#FFF;
	font-size:12px;
}
p{ color:#FFF}
		
		.accordion_toggle {
	display: block;
	height: 30px;
	width: 820px;
	background-color:#000000;
	padding: 0 10px 0 20px;
	line-height: 30px;
	color: #FFF;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 16px;
	cursor: pointer;
	margin: 0 0 0 0;
	border-top: 1px dotted #333333;
		}
		
		.accordion_toggle_active {
	background-color:#000000;
	color: #ffca47;
	border-top: 1px dotted #ffca47;
		}
		
		.accordion_content {
	background-color: #000;
	color: #FFF;
	overflow: hidden;
	width: 720px;
		}
			
			.accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #0099FF;
			}
			
			.accordion_content p {
	line-height: 150%;
	padding: 5px 10px 15px 20px;
	font-size: 12px;
	color: #FFF;
			}
			
		.vertical_accordion_toggle {
	display: block;
	height: 30px;
	width: 600px;
	padding: 0 10px 0 10px;
	line-height: 30px;
	color: #ffffff;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 10px;
	color: #fff;
	cursor: pointer;
	margin: 0 0 0 0;
	border-top: 1px dotted #333333;
		}

		.vertical_accordion_toggle_active {
	color: #ffca47;
	border-top: 1px dotted #ffca47;
		}

		.vertical_accordion_content {
	background-color: #000;
	color: #FFF;
	overflow: hidden;
		}

			.vertical_accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #fff;
			}

			.vertical_accordion_content p {
	line-height: 150%;
	padding: 5px 10px 15px 10px;
	font-size: 12px;
	color:#FFF;
			}
  			
		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
	/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */

	display: block;
	height: 320px;
	width: 20px;
	color: #fff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	text-align: center;
	line-height: 140%;
	border-left: 1px dotted #333333;
	margin-bottom: 15px;
		}
		
		.horizontal_accordion_toggle_active {
	color: #ffca47;
	border-left: 1px dotted #ffca47;
		}
		
		.horizontal_accordion_content {
	/* REQUIRED */
			height: 320px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
			
	overflow: visible;
	background-color: #000000;
	color: #fff;
	font-size: 12px;
		}
			
			.horizontal_accordion_content p {
	width: 450px;
	padding: 0px 10px 15px 10px;
	font-size: 12px;
			}
					
					
    /* Container styling*/
    #horizontal_container {
	width: 680px;
	height: 100px;
	margin: 20px auto 20px 20px;
    }
    
    #vertical_nested_container {
      margin: 20px auto 20px auto;
      width: 620px;
    }

