﻿#accordion-container {
	font-family: Trebuchet MS,Arial,Helvetica,sans-serif;
	font-size: 100%;
	background: #feffef;
	padding: 5px 10px 10px 10px;
	margin-top: 25px;
	margin-left:8px;
	border: 1px solid #cccccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;
}

.accordion-header {
	font-family: Trebuchet MS,Arial,Helvetica,sans-serif;
	font-size: 120%;
	background: #ebebeb;
	margin: 5px 0 0 0;
	padding: 5px 20px;
	border: 1px solid #cccccc;
	cursor: pointer;
	color: #666666;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background: url(images/active-header.gif) #c00000;
	color:#FFFFFF;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url(https://www.inthebeginning.org/e-diagrams/accordion/images/active-header-hover.gif) #B80000; /* changed colors */
	background-repeat: no-repeat;
	background-position: right 50%;
	color:white;
}

.inactive-header {
	background: url(images/inactive-header.gif) #ebebeb;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: url(images/inactive-header-hover.gif) #1A8AD4;  /* changed colors */
	background-repeat: no-repeat;
	background-position: right 50%;
	color:#FFFFFF;
}

.accordion-content {
	display: none;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}