/* #FFFBCC light yellow,#e7e7e7 light grey */
/* #0000cy before */
* {
  margin: 0;
  padding: 0; }

b {
  font: bold 16px sans-serif; }

h1 {
  font: bold 20px sans-serif; }

h2 {
  font: bold 14px sans-serif; }

header, section, footer, aside, nav, article {
  display: block; }

body {
  width: 100%;
  position: relative;
  max-width: 900px;
  margin: 2px auto 5px auto;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column; }
  body .lozenge, body #top_header, body #top_menu {
    flex: none;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-align: center;
    text-shadow: 0 1px 0 darkblue;
    border-radius: 25px;
    background: -webkit-linear-gradient(top, #3e59a0, #0033a0, #2148a0);
    background: -moz-linear-gradient(top, #6679e9, #0033a0, #3463e9);
    background: -ms-linear-gradient(top, #6679e9, #0033a0, #3463e9);
    box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px; }
  body #top_header {
    margin-bottom: 5px;
    padding: 5px; }
  body #top_menu {
    padding: 3px 3px 3px 50px;
    text-align: left; }
    body #top_menu li {
      display: inline-block;
      list-style: none;
      padding: 5px;
      font: bold 14px sans-serif;
      border-radius: 10px;
      cursor: pointer;
      text-shadow: 0 1px 0 darkblue; }
    body #top_menu li:hover {
      color: white;
      background: -webkit-linear-gradient(top, #74b9ff, #1191ff, #38a2ff);
      background: -moz-linear-gradient(top, #74b9ff, #1191ff, #38a2ff);
      background: -ms-linear-gradient(top, #74b9ff, #1191ff, #38a2ff);
      box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px; }
  body #center {
    margin-top: 2px;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
    body #center #main_section {
      margin-left: auto;
      margin-right: auto;
      display: block; }
      body #center #main_section article {
        flex: none;
        width: 602px;
        background: #e7e7e7;
        /* light gray */
        border: 1px solid #0033a0;
        padding: 5px;
        font: 14px sans-serif;
        border-radius: 15px;
        box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px; }
        body #center #main_section article header {
          margin-bottom: 2px;
          text-align: center;
          color: #0033a0;
          text-shadow: 0 1px 0 #f5f5f5; }
        body #center #main_section article #frameholder.safari {
          margin: 0 5px 5px 5px;
          width: 590px;
          height: 550px;
          box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px;
          /*ios fix*/
          -webkit-overflow-scrolling: touch;
          overflow: scroll; }
          body #center #main_section article #frameholder.safari #frame.safari {
            margin: 0;
            width: 569px;
            height: 547px;
            /*border: 1px solid red;*/ }
        body #center #main_section article #frame {
          margin: 0 5px 0 5px;
          width: 590px;
          height: 550px;
          border: 1px solid #0033a0;
          border-radius: 7px;
          box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px; }

#side_menu {
  flex: none;
  border: 1px solid #0033a0;
  width: 255px;
  height: 566px;
  margin-left: 7px;
  padding: 10px;
  text-align: center;
  font: bold 14px sans-serif;
  color: #0033a0;
  background: #e7e7e7;
  pointer-events: auto;
  box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px;
  border-radius: 15px; }
  #side_menu h1 {
    text-shadow: 0 1px 0 #f5f5f5;
    margin-bottom: 10px; }
  #side_menu div {
    margin: 10px 0 20px 10px; }
  #side_menu .dropdown:after {
    content: '\2192';
    /* right arrow */ }
  #side_menu .dropdown:hover:after {
    content: '\2193';
    /* down arrow */ }

#side_menu ul, #side_menu ul li {
  padding: 8px;
  margin-left: 50px;
  text-align: center;
  text-shadow: 0 1px 0 darkblue;
  list-style: none; }

#side_menu ul li {
  margin: 10px 0 30px;
  color: white;
  width: 120px;
  cursor: pointer;
  background: -webkit-linear-gradient(top, #3e59a0, #0033a0, #2148a0);
  background: -moz-linear-gradient(top, #6679e9, #0033a0, #3463e9);
  background: -ms-linear-gradient(top, #6679e9, #0033a0, #3463e9);
  box-shadow: rgba(110, 110, 110, 0.7) 10px 10px 10px;
  border-radius: 25px; }

#side_menu ul li:hover {
  color: white;
  background: -webkit-linear-gradient(top, #6679e9, #5856ff, #3463e9);
  background: -moz-linear-gradient(top, #6679e9, #5856ff, #3463e9);
  background: -ms-linear-gradient(top, #6679e9, #5856ff, #3463e9);
  position: relative; }

#side_menu ul li ul {
  position: absolute;
  visibility: hidden;
  opacity: 0; }

#side_menu ul li:hover > ul {
  left: 10px;
  top: 20px;
  visibility: visible;
  opacity: 1;
  height: auto;
  margin-top: 2px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease; }

#side_menu ul li ul li {
  margin: 5px;
  color: white;
  /*For use with a yellow background*/
  background: -webkit-linear-gradient(top, #74b9ff, #1191ff, #38a2ff);
  background: -moz-linear-gradient(top, #74b9ff, #1191ff, #38a2ff);
  background: -ms-linear-gradient(top, #74b9ff, #1191ff, #38a2ff); }

@media all and (orientation: landscape) {
  #top_header {
    display: none; } }
@media all and (orientation: portrait), (max-width: 920px) {
  body {
    margin-top: 10px; }
    body #top_header {
      width: 606px;
      margin-bottom: 10px; }
    body #top_menu {
      width: 563px; }
    body #center {
      margin-top: 10px; }

  #side_menu {
    width: 612px;
    height: 240px;
    margin: 10px auto 10px auto;
    padding: 0;
    overflow: visible; }

  #side_menu h1 {
    display: none; }

  #side_menu ul {
    margin-top: 4px;
    margin-left: 0;
    margin-bottom: 0; }

  #side_menu ul li {
    display: inline-block;
    width: 120px;
    margin: 0 5px 15px 5px; }

  #side_menu ul li:hover > ul {
    top: 26px; }

  #side_menu ul li ul li {
    margin: 2px; }

  #side_menu div {
    margin: 15px; }

  #side_menu footer ul {
    text-align: left;
    margin: 30px 0; } }
.disabled {
  pointer-events: none;
  opacity: 0.4; }

/*# sourceMappingURL=main.css.map */
