/*
 Interactive Biology Games
 Designed by Sara Freeman and Matt Gilbert
 Programming by Matt Gilbert
 HHMI Howard Hughes Medical Institute Grant No. 52005873
 Copyright 2012 Emory University
*/

/* 
   HTML RESET
   To reduce browser inconsistencies.

   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	line-height: 1.4em;
}
strong {
  font-weight:bold;
}
em {
  font-style:italic;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
  overflow-y:scroll;
  background-color:#fff;
}
body {
	line-height: 1; 
}
ul {
	list-style: none;
}
ol{
  list-style-type: decimal;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Type */

h1{
  font-size: 150%;
  font-weight:bold;
  text-align:center;
  margin: 10px;
}
h2{
  font-size: 125%;
  font-weight:bold;
  padding: 10px 10px 5px 30px;
}
h3, h4{
  font-size: 100%;
  font-weight:bold;
  padding-bottom: 5px;
  text-align: center;
  height: 15px;
}
ul{
list-style-type: disc;
  margin-left: 2em;
}
li{
  padding-bottom: 5px;
}
p{
margin: 0 0 1em 0;
}
a, #view-instructions{
  color:#1B7EAF;
  text-decoration:underline;
}



/* Layout */

html{
display: block;
font-family: Helvetica, Arial, sans-serif;
font-size:.8em;
}
#page {
margin-left: auto;
margin-right: auto;
  max-width: 650px;
}

#header,
#main,
#footer {
  *position: relative;
  *zoom: 1;
}

#header:before, #header:after,
#main:before, #main:after,
#footer:before, #footer:after {
  content: "";
  display: table;
}
#header:after,
#main:after,
#footer:after {
  clear: both;
}

#header{
padding:0;
margin:0;
 width:100%;
}


#footer{
  float: left;
  margin: 10px 0 40px;
}
  
#game-links{
width:100%;
}
.game-link{
  float:left;
  width:50%;
  text-align:center;
}
