/* Default font for the whole page. */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10pt;
  background-color: #ffffff;
  margin-left: 10%;
  margin-right: 10%;
}

form p {
    margin: 0px;
}

form {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.auto-margin {
    margin: auto;
}

.center {
  text-align: center;
}

.small  {
  font-size: small;
}

.small-red  {
  font-size: small;
  color: #FF0000;
}

.smaller-line-height {
    line-height:1.2em;
    margin: 0px;
}

.big {
  font-size: 11pt;
  font-weight: bold;
}

table.center {
  width:75%;
  margin-left: auto;
  margin-right: auto;
  /*border: 1px solid black;*/
}

table.content {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid black; */
}

table.content td {
  padding: 15px;
}

table.footer {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  border-width: 0;
}

.alignMiddle {
    vertical-align: middle;
}

.showInline {
    display: inline;
}

/* Tables with general explanations in two columns should be aligned at the top. */

table.explanation td {
  vertical-align: top;
}


/* For tables that give an overview of a teacher's tests. */

table.overview_tests {
  /* width: 80%*/
  margin-left: auto;
  margin-right: auto; 
  border: 1px solid black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;  
}

table.overview_tests th {
  background-color: #6699FF;
  text-align: center;
  padding: 0.25em;
  border: 1px solid #637EAA;
}

table.overview_tests td {
  text-align: center;
  padding: 0.25em;
  border: 1px solid navy;
}

/* Tables where the rows have borders, not the cells nor the full table */
table.rowBorder {
   margin: auto;
   border-collapse: collapse;
   font-size: 1em;
   max-width: 95%;
   min-width: 25%;
}

table.rowBorder th {
    padding: 5px;
    background-color: #6699FF;
    font-weight: bold;
    text-align: center;
}

table.rowBorder tr {
    border: 1px solid graytext;
}

table.rowBorder td {
    padding: 5px;
}

/*
  See also:
    http://www.sovavsiti.cz/css/hr.html
    http://webdesign.about.com/od/beginningcss/a/style_hr_tag.htm
 */
hr.contentseparator {
  width: 70%;
  color: #004080;
  background-color: #004080;
  height: 2px;
  border: none;
}

.headerfooter {
  font-family: Arial,sans-serif;
  font-size: 11px;
  color: #666666;
}


a.headerfooterlink:link {
  /*text-decoration: none;*/
  color: #444444;
}

a.headerfooterlink:visited {
  color: #444444;
}

a.headerfooterlink:hover {
  color: #444444;
}

a.headerfooterlink:active {
  color: #444444;
}

.bold {
    font-weight: bold;
}

/* Navigation */
/* See also http://www.tutorialtastic.co.uk/tutorial/horizontal_css_block_navigation */

div.navigation {
    bottom:1px;
    position:absolute;
}

.navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li {
  float: left;
}

.navigation li a {
  display: block;
  background: #1133dd;
  /* width: 200px; */
  text-align: center;
  text-decoration: none;
  color: white;
  padding: 3px 10px;
  margin-right: 1px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  border: #000000 solid 1px;
}

.navigation li a:hover {
  background: white;
  color: blue;
  text-decoration: none;
}

/*classes for outlining images etc.*/
.floatleft {
    float: left;
    margin-left: 5px;
    margin-right: 5px;
}

.floatright {
    float: right;
    margin-left: 5px;
    margin-right: 5px;
}

.floatingCellLeft {
    float:left;
    width: 48%;
    padding-right: 2%;
}

.floatingCellRight {
    float:right;
    width: 48%;
    padding-left: 2%;
}

div.clear {
    clear: both;
    /*height: 0px;*/
}

/* table-like div's */
div.table {
    /*display:inline-table;*/
    width:100%;
    position: relative;
}

div.tableCompact {
    /*display:inline-table;*/
    position: relative;
    width: 50%;
}

div.row {
    display: inline;
}

div.leftCell {
    display: inline;
    position: absolute;
    left: 0%;
    right:52%
}

div.leftCell p {
    display:inline;
}

div.leftCell h2 {
    display:inline-block;
    width:100%;
}

div.rightCell {
    display: inline;
    position: absolute;
    right: 0%;
    left: 52%;
}

div.rightCell p {
    display:inline;
}

div.rightCell h2 {
    display:inline-block;
    width:100%;
}