body {
	background-color:#FFFFCC;
	} 
#main {
    padding-top: 0px;
	padding-bottom: 0px;
    padding-left:  65px;
    padding-right: 15px;
    background-color: #FFFFCC;
    border-radius: 0 0 5px 5px;
	}
#navigation {
    padding: 5px;
    padding-left:  15px;
    padding-right: 15px;
    background-color: #99CC99;
    border-radius: 0 0 5px 5px;
}
h1   {color:black;}  
h2   {color:blue;}
h3   {color: blue;font-weight: bold;}
h4   {color: black;font-weight: bold;}
article {color:red;}
p    {color:black;}
table{
	border:0;
	}
fieldset{
	width:80%;
	background-color:#F8F8F8;
	margin-left: 0cm;
}
.collapsible {
  background-color: #99CC99;
  border-radius: 20px 20px 20px 20px;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 95vw;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}
.active, .collapsible:hover {
  background-color: #555;
  color: white;
}
.content {
  padding: 18px;
  display: none;
  overflow: hidden;
  background-color: #FFFFCC;
  width: 80vw;
  border: none;
}
.collapsible:after {
  content: '+'; /* '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  float: left;
  color: black;
  margin-left: 5px;
  margin-right: 5px;
}
.active:after {
  content: '-'; /*"\2796"; /* Unicode character for "minus" sign (-) */
  color: white;
}
