@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      accordian.css
 Author:         naomi ito (Jinstep Research. Inc)
 Style Info:     styles for accordian-src.js
 See:			 http://www.dezinerfolio.com/2007/07/19/simple-javascript-accordions/
----------------------------------------------------------- */

#basic-accordian {
	width: 600px;
}
.accordion_headings{
	width: 188px;
	float: left;
	padding:5px;
	background:#99CC00;
	color:#FFFFFF;
	border:1px solid #FFF;
	cursor:pointer;
	font-weight:bold;
}
.accordion_headings:hover{
	background:#00CCFF;
}
.header_highlight{
	background:#00CCFF;
}
.tab_container {
	width: 600px;
}

/*--- clearfix ---*/
.tab_container:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}
