
* {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}

body {
  background-color: snow; /*moccasin; linen;*/
}

div#content {
  width: 30em;
  margin: 0 auto;
}

div#content-accordion {
  width: 28em;
}

h1 a {
  font-weight: bold;
  font-variant: small-caps;
  text-decoration: none;
  color: navy;
}

h1 a:hover {
  color:red;
}

div.quote {
  font-style: italic;
  padding: 0 1em;
}

span.ref {
  font-style: normal;
  font-weight: bold;
  position: relative;
  left: 10px;
}

div.instruction {
  position: relative;
  font-family:courier, courier new, serif;
  background-color: #ffffff;
  margin: 0;
  padding: 10px 10px 10px 10px;
  width: 26em;
  top: 0px;
  height: auto;
  border: 0px;
  z-index: 1;
  left: 5px;
}

div#login {
  height: 12em; 
  float:left; 
  width: 11em;
}

footer {
  text-align: center;
  margin: 2em 0 2em 0;
  font-size: 0.9em;
}

/* ACCORDION */

article.accordion
{
	display: block;
	width: 30em;
	padding: 0.5em 0.5em 1px 0.5em;
	margin: 0 auto;
	background-color: #666;
	border-radius: 5px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.3);
}

article.accordion section
{
	display: block;
	width: 28em;
	height: 2em;
	padding: 0 1em;
	margin: 0 0 0.5em 0;
	color: #333;
	background-color: #333;
	overflow: hidden;
	border-radius: 3px;
}

article.accordion section h3
{
	font-size: 1em;
	font-weight: bold;
	width: 100%;
	line-height: 2em;
	padding: 0;
	margin: 0;
	color: #ddd;
}

article.accordion section h3 a
{
	display: block;
	width: 100%;
	line-height: 2em;
	text-decoration: none;
	color: inherit;
	outline: 0 none;
}

article.accordion section:target
{
	height: auto; /*15em;*/
	background-color: linen; /*wheat; ivory;*/
}

article.accordion section:target h3
{
	font-size: 1.6em;
	color: #333;
}


article.accordion section,
article.accordion section h3
{
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

 