/*
CSS for layout purposes (that is, most of the containers, background images, etc.)
Contains some colors etc for global parameters

*/

body
{
  margin: 0;
  padding: 1em;
}

.body
{
  margin: auto;
  min-width: 50em;
  max-width: 80em;

  border: none;
  border-radius: 15px;
}

.container
{
}

.header
{
  position: relative; /* no position, just to keep sub-div's happy */
  /*background-color: yellow; /* for debugging/loading */
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  min-height: 120px;
}

.header img
{
  width: 100%;
  height: auto;

  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.header-inner
{
  position: absolute;
  left: 10%;
  top: 25%;
  /* width: 30%; */
  padding: 0.2em 4em;
  text-align: center;

  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.2em;
}

.banner-image-credits
{
  position: absolute;
  right: 0;
  bottom: 10px;

  font-size: 75%;
  background: rgba(0, 0, 0, 0.25);
  color: #ccc;

  padding: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
/*top-right menu*/
.header-menu
{
  position: absolute;
  right: 0;
  top: 0;
}

.breadcrumbs
{
  padding: 0 1em;
  margin-bottom: 1em;
  background-color: #777;
  height: 1.2em;
}

ul.breadcrumb
{
  clear: both;
  padding-left: 0;
}

ul.breadcrumb li
{
  list-style: none;
  float: left;
  display: inline-block;
}

.row
{
  margin-bottom: 1em;
}

.span3
{
  padding: 10px 1.5%;
  margin-right: 1.5%;
  width: 20.5%;
}

.span6
{
  padding: 10px 1.5%;
  width: 47%;
}

.span9
{
  padding: 10px 1.5%;
  width: 77%;
}

.items-row div
{
  float: left;
}

#sidebar
{
  float: left;
  background-color: #777;

  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

#content
{
  float: left;
  background-color: #777;

  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;

  /*background-color: orange;*/
  background-color: #777;
}

#aside
{
  float: right;
  margin-right: 0;
  background-color: #777;

  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.footer
{
  min-height: 2em;
  background: linear-gradient(to right, white, #333380);
  color: #000033;
  padding: 0 1em;
  margin-top: 1em;

  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.footer p
{
  padding-top: 0.25em;
}

.pull-left
{
  float: left;
}

.pull-right
{
  float: right;
}

img.pull-left
{
  margin-right: 10px;
}

.back-to-top
{
  position: fixed;
  bottom: 0;
  right: 0;
  width: 10em;
  height: 1em;

  text-align: center;
  background-color: #333380;
  padding: .5em;
}

.back-to-top a
{
  color: white;
  text-decoration: none;
}

table.category
{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}

table.category a
{
  text-decoration: none;
}

table.category td
{
  color: black;
  padding: 0.3em;
}

table.category tr:nth-child(odd)
{
  background-color: #efe;
}

table.category thead, table.category tr:nth-child(even)
{
  background-color: #ddd;
}

div.content-category fieldset
{
  border: none;
}

table.schedule
{
  border: 2px solid orange;
  border-collapse: collapse;
  border-radius: 10px;
}

table.schedule th
{
  font-weight: bold;
  text-align: center;
}

table.schedule td
{
  border: 1px solid orange;
  padding: .15em;
}
