/*
 * Accordionza jQuery Plugin
 * Copyright 2010, Geert De Deckere <geert@idoe.be>
 */

#accordion1 {
	color: #666666;
	height: 300px;
	list-style: none;
	overflow: scroll;
	padding: 0;
	text-shadow: 0 1px 0 #333;
	width: 930px;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	margin: 0;
}
#accordion1 li {
	height:300px;
	position:relative;
}
#accordion1 .slide_handle {
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	top: 0;
	width: 65px;
	background-image: 
}
#accordion1 .slide2 .slide_handle { background-position:-45px 0; }
#accordion1 .slide3 .slide_handle { background-position:-85px 0; }
#accordion1 .slide4 .slide_handle { background-position:-125px 0; }
#accordion1 .slide_handle div {
	bottom: 16px;
	height: 7px;
	left: 30px;
	position: absolute;
	width: 7px;
	background-image: url(../imgs/arrows1.gif);
}
#accordion1 .slide_opened .slide_handle { cursor:default; }
#accordion1 .slide_opened .slide_handle div { background-position:0 -7px; }
#accordion1 .slide_content {
	bottom:0;
	left:65px; /* Matches the width of .slide_handle */
	position:absolute;
	right:0;
	top:0;
}
#accordion1 .slide_content a img { border:0; }
#accordion1 .slide_caption {
	bottom: 0;
	left: 0;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	background-image: url(../imgs/black-33pct.png);	/* To change the height of the caption, set the captionHeight option in script.js */
}
#accordion1 .slide_caption_toggle {
	cursor:pointer;
	height:10px;
	left:0;
	position:absolute;
	right:0;
	top:0;
}
#accordion1 .slide_caption_toggle div {
	height: 100%;
	background-image: url(../imgs/toggle-caption1.png);
	background-repeat: no-repeat;
	background-position: 50% -10px;
}
#accordion1 .slide_caption_toggle:hover {
	background-image: url(../imgs/black-33pct.png);
}
#accordion1 .slide_caption_collapsed .slide_caption_toggle div { background-position:50% 0; }
#accordion1 a {
	background: none;
	color: #008BCF;
	text-shadow: 0 1px 0 #333;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
}
#accordion1 a:hover {
	text-decoration: underline;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #008BCF;
}

.slide1 {
	background-image: url(../imgs/handles.png);
	background-repeat: no-repeat;
}
.slide2 {
	background-image: url(../imgs/handles1.png);
	background-repeat: no-repeat;
}
.slide3 {
	background-image: url(../imgs/handles2.png);
	background-repeat: no-repeat;
}
.slide4 {
	background-image: url(../imgs/handles3.png);
	background-repeat: no-repeat;
}
.slide5 {
	background-image: url(../imgs/handles4.png);
	background-repeat: no-repeat;
}
h6 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #666666;
}
