body
{
    background-color: #eff0f1;
}

#container
{
	overflow: hidden;
	margin: 0 auto;
	max-width: 980px;
    width:100%;
	background:#ffffff;
}

figcaption
{
	text-align: center;
	font-family: 'Oxygen', sans-serif;
	font-weight: 400;
	font-size: 50%;
	
}

#header
{
	background:#231f20;
	color:#ffffff;
	padding: 15px;
	font-family: 'Oxygen', sans-serif;
	font-weight: 400; 
}

#header h1
{
	background: #231f20;
	text-align: left;
    margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 1%;
	color:#ffffff;
	font-size: 200%;
	font-weight: bold;
}

#header h3
{
	background: #231f20;
	text-align: left;
    margin-left: 0px;
	margin-right: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
	height: 1%;
	color:#ffffff;
	font-size: 120%;
	font-weight: bold;
}

#navigation
{
	float: left;
	width: 600px;
	background:#333;
}

#navigation ul
{
	margin: 0;
	padding: 0;
}

#navigation ul li
{
	list-style-type: none;
	display: inline;
}

#content
{
	display: block;
	overflow: hidden;
	clear: left;
	margin-top: 30px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
	font-family: 'Oxygen', sans-serif;
	font-weight: normal;
    text-align:justify
}

#content h2
{
	background:#231f20;
	text-align: left;
	padding-left: 20px;
    margin:-15px;
    margin-top: 30px;
	margin-bottom: 20px;
	height: 1%;
	color:#ffffff;
	font-size: 160%;
	font-weight: bold;
	font-variant: small-caps;
}

#content a:link {
  color: black; 
  font-weight: bolder;
  text-decoration: underline;
}

#content a:visited {
  color: black;
  font-weight: bolder;
  text-decoration: underline;
}

#content a:hover {
  color: red;
  font-weight: bolder;
  text-decoration: underline;
}

p.note
{
     margin-top: 25px;
     margin-bottom: 35px;
     margin-left: 20%;
     margin-right: 20%;
     color: black;
     font-weight: bold;
     border: solid 1px black;
     background-color: #dddddd;
     -moz-border-radius: 6px;
     -webkit-border-radius: 6px;
     border-radius: 6px;
     padding: 14px 20px;
}

#footer
{
	background:#231f20;
	color:#ffffff;
	text-align: right;
	padding-top:25px;
	padding-bottom:5px;
	padding-right:5px;
	padding-left:25px;
	font-family: 'Oxygen', sans-serif;
	font-weight: 200; 
	height: 1%;
}

blockquote
{
  font-style:italic;
  margin-left:32px;
  font-family:"Segoe Print", "Times New Roman", Verdana;
  padding-left: 48px;
  background:url('./blockquote.png');
  background-repeat:no-repeat;
  min-height: 30px;  
}

/* NEW PART: Acordeon styles */

.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  color: #000;
  overflow: hidden;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #777777;
  color: #fff;
  font-weight: bold;
  line-height: 3;
  cursor: pointer;
}
.tab-content {
  max-height: 0;
  overflow: hidden;
  background: #dddddd;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  -moz-transition: max-height .35s;
  transition: max-height .35s;
}
.tab-content p {
  margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 20em;
}
/* Icon */
label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  content: "\25BC";
}
input[type=checkbox]:checked + label::after {
  transform: rotateX(180deg);
}
