@charset "utf-8";
/* CSS Document */
@import url(https://reset5.googlecode.com/hg/reset.min.css);
body {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
a {
  color: black;
  text-decoration: none;
  border-bottom: 1px dotted gray;
  transition: .25s all ease-in-out;
}
a:hover {
  color: gray;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 15px;
}
li {
  margin: 5px auto;
}
p {
  margin: 15px auto;
}
#clear {
  display: block;
  clear: both;
}
#container {
  width: 930px;
  margin: 30px auto;
  padding: 0 15px 30px 15px;
  border: 1px solid #999;
  border-radius: 10px;
  box-shadow: 0px 5px 15px #999;
}
header {
  display: block;
  text-align: center;
}
#content {
  width: 100%;
  overflow: auto;
}
.column {
  width: 280px;
  float: left;
  text-align: center;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
  overflow: hidden;
}
.column a {
  text-decoration: none;
  color: black;
  display: block;
  height: 400px;
  border-radius: 10px;
  border: 1px solid #666;
  background: #fff;
  background: -ms-linear-gradient(top, #fff, #ededed);
  background: -o-linear-gradient(top, #fff, #ededed);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top, #fff, #ededed);
  background: linear-gradient(#fff, #ededed);
  transition: .25s all ease-in-out;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.background a {
  background: #666;
  background: -ms-linear-gradient(top, #ddd, #666);
  background: -o-linear-gradient(top, #ddd, #666);
  background: -webkit-gradient(linear, left top, left bottom, from(#ddd), to(#666));
  background: -moz-linear-gradient(top, #ddd, #666);
  background: linear-gradient(#ddd, #666);
  transition: .25s all ease-in-out;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#666666');
}
.column a:hover {
  background: #ededed;
  background: -ms-linear-gradient(top, #fff, #dcdcdc);
  background: -o-linear-gradient(top, #fff, #dcdcdc);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
  background: -moz-linear-gradient(top, #fff, #dcdcdc);
  background: linear-gradient(#fff, #dcdcdc);
  transition: .25s all ease-in-out;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.column img {
  margin: 40px 0 0 0;
}
nav {
  visibility: hidden;
  display: block;
  overflow: auto;
  margin: 0;
  padding: 0;
}
nav ul {
  list-style: none;
  height: 30px;
}
nav li {
  margin: 0;
  float: left;
  width: 320px;
  text-align: center;
  height: 30px;
}
nav li a {
  display: block;
  height: 30px;
}
h1 {
  display: block;
  font-size: 2.1em;
  text-align: center;
  margin: 20px;
}
h2 {
  display: block;
  font-size: 1.5em;
  text-align: center;
}
h3 {
  margin: 10px;
  display: block;
  font-size: 1.5em;
  text-align: center;
}
h4 {
  display: block;
  font-size: 1.0em;
  text-align: center;
  margin: 10px;
}
h5 {
  margin-top: 10px;
}
.intro {
  visibility: hidden;
  display: none;
}
.content {
  margin: 0 15px -340px 15px;
  padding: 15px;
  border: 1px solid gray;
  border-radius: 0 0 10px 10px;
  position: relative;
  float: left;
  width: 868px;
  display: block;
  top: -340px;
  background: white;
  min-height: 300px;
  z-index: 2;
  background: #fff;
  background: -ms-linear-gradient(top, #fff, #ededed);
  background: -o-linear-gradient(top, #fff, #ededed);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  background: -moz-linear-gradient(top, #fff, #ededed);
  background: linear-gradient(top, #fff, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
footer {
  display: block;
  text-align: center;
  padding: 10px 0;
  width: 960px;
  margin: 0 auto;
}
details, summary {
  display: none;
}