/*options for button accordion */
button.accordion {
    border-radius: 15px 50px;
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 8px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}
button.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 10px;
}

button.accordion.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
div.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
}
div.panel.show {
    opacity: 1;
    max-height: 3000px;
}

/**********************************************************************************/
/* Options for top navigation */
 
#wrap	{
    width		: 950px; /* Spans the width of the page */
	height		: 30px; 
    text-align	: center;
    position	: fixed;
	z-index		: 99; /* Makes sure that your menu remains on top of other page elements */
	background-color: #003865;
    overflow	: hidden;
	margin-left	: 20px;
	top			: 120px;
	}
.navbar	{
    width		: 950px;
	height		: 30px;
	background-color: #003865;
    padding		: 0;
	margin		: 0px;
	position	: relative; /* Ensures that the menu doesn’t affect other elements */
	}
.navbar li 	{
    width		: 95px;
	height		: 30px;
	float		: left;  /* This lines up the menu items horizontally */
	text-align	: center;  /* All text is placed in the center of the box */
	list-style	: none;  /* Removes the default styling (bullets) for the list */
	padding		: 5px 0 0 0;
	margin		: 0;
	background-color: #003865;
	}
.navbar a {	
    width		: 95px;
	height		: 40px;						
	padding		: 0;  /* Adds a padding on the top and bottom so the text appears centered vertically */
	text-decoration: none;  /* Removes the default hyperlink styling. */
	color		: white; /* Text color is white */
	}
.navbar li:hover, a:hover {
	color: #b3e6ff;
    transition: all 0.1s ease;
} 
.navbar li:hover ul {
	display		: block; 
	position	: fixed;
	padding		: 12px 0 0 0;
    width		: 150px;
	top			: 143px;
}
.navbar li ul {
	display		: block; 
	position	: relative;
	padding		: 12px 0 0 0;
    width		: 150px;
}

.navbar li ul li {
	background-color: #003865;
}
.navbar li ul li a:hover	{
	color: #b3e6ff;
}
 
.active {
    background-color: #9C9A9A !important;
}

/**********************************************************************************/

