@charset "utf-8";
.greenFont {
	font-family: Verdana, Geneva, sans-serif;
	color: #393;
	font-size: large;
	text-align: left;
}

#Top {
	font-family: Verdana, Geneva, sans-serif;
	font-size: x-large;
	font-weight: bold;
	color: #9C0;
	background-color: #000;
	text-align: center;
	border: medium inset #FF6;
	position: relative;
	vertical-align: middle;
	padding: 15px;
}
#head {
	font-family: Verdana, Geneva, sans-serif;
	font-size: large;
	font-weight: bold;
	color: #9C0;
	text-decoration: none;
	position: relative;
}
a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: italic;
	font-weight: normal;
	color: #393;
	text-decoration: underline;
}

 /* Style the button that is used to open and close the collapsible content */
.collapsible {
	background-color: #333333;
	color: #9C0;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: large;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
	background-color: #666666;
}

/* Style the collapsible content. Note: hidden by default */
.content {
	padding: 0 18px;
	display: none;
	overflow: hidden;
	background-color: #000000;
} 

.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}