/* Main Style Sheet */
/* This is the basic style sheet, which will be used by all sites.    */
/* Site-specific styles, if required, will be incudled individually.  */

 /* Reset styles */
  @-viewport { width: auto; zoom: 1.0; }
  *, *:before, *:after {
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  }
  HTML,BODY {
    font-size:15px;
    background-color:#444;
    color:#444;
    height:98%;
    margin:0px;
    padding:0px;
  }

  DIV,BLOCKQUOTE,LI,H1,H2,H3,H4,H5,H6,FIELDSET {
    position:relative;
    margin:0px;
    padding:0px;
  }
  H1 { font-size:2.25em; }
  H2 { font-size:1.85em; }
  H3 { font-size:1.60em; }
  H4 { font-size:1.35em; }
  H5 { font-size:1.20em; }
  H6 { font-size:1.00em; }
  H1,H2,H3,H4,H5,H6 {
    margin:2em 2% 0.1em;
  }
  P {
    padding:0em 3% 0.2em;
  }
  IMG {
    border:none;
    max-width:100%;
  }
  A { color:#666; text-decoration:underline; }
  A:hover { text-decoration:none; }


 /* Basic settings */
  #body {
    width:90%;
    height:auto;
    margin:10px auto 0px auto;
    background-color:#FFF;
    min-height:95% !important;
    box-shadow:0 0 5px 5px #968C9B;
  }

  #header {
    width:100%;
    height:100px;
    background-color:#000;
  }
  .header-title { margin: 0px; color:#FFF; }
  .header-subtitle { margin: 0px; color:#FFF; }

  #main {
    width:100%;
    height:100%;
  }

  #content {
    width:80%;
    margin-left:20%;
    padding-right:0.5%;
    height:100%;
  }
  #_user-login #content {
    width:100%;
    margin:0px;
  }

  .header-title { margin-left:10px; padding-top:15px; }
  .header-subtitle { margin-left:10px; }

  .page-title {
    margin-top:0px;
    position:absolute;
    color:#FFFF99;
    top:-100px;
    right:15px;
  }
  .page-subtitle {
    margin-top:0px;
    position:absolute;
    color:#FFFF99;
    top:-75px;
    right:15px;
  }

  .error {
    color:#D00;
    font-weight:bold;
  }

  .clear {
    clear:both;
  }