/*
	Some basic Page Styles
*/

#container {
	margin: 0px auto 0 auto;
	width: 225px; }

	#top_container {
		width: 145px;
		height: 630px;
		margin: 10px auto 10px auto;
	}

	#navContainer {
		clear: both;
		width: 150px;
	}

h6 {
	padding: 13px 0 0;
	margin: 0 0 55px;
	list-style: none;
}

/*
	Vertical Accordions
*/

.accordion_toggle {
	display: block;
	height: 25px;
	width: 245px;
	background: black;
	padding: 0 10px 0px 5px;
	line-height: 25px;
	color: white;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 22px;
	cursor: pointer;
	margin: 0 0 0 0;
	border-bottom: 0px solid white;
	text-align: left;
}

.accordion_toggle_active {
	background: black;
	color: white;
	border-bottom: 0px white solid;
}

.accordion_toggle:hover {
	background: black;
	color: white;
}

.accordion_content {
	background-color: black;
	color: black;
	overflow: hidden;
	padding-left: 7px;
	text-align: left;
		width: 245px;
}
	
	.accordion_content h2 {
		margin: 15px 0 5px 10px;
		color: white;		
	}
	
	.accordion_content p {
		line-height: 150%;
		padding: 5px 10px 15px 10px;
	}
	
	.accordion_content a {
		text-decoration: none;
		color: #FFFFFF;
		font-size: 14px;
	}
	
	.accordion_content a:hover {
		text-decoration: underline;
		color: #fff;
	}