/**
* 1.0 - Reset
*
* Resetting and rebuilding styles have been helped along thanks to the fine
* work of Eric Meyer, Nicolas Gallagher, Jonathan Neal, and Blueprint.
*/

/* ==========================================================================
1. CSS Reset Code
========================================================================== */

/* 1.1. Eric Meyers Reset
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; */
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Force scrollbar */
html { overflow-y: scroll; }

/* Align radios and text inputs with their label */

input[type='radio'] { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label,
input[type='button'],
input[type='submit'],
button {
  cursor: pointer;
}

strong {
  font-weight: bold;
  font-family: inherit;
  font-size: inherit;
}

em { font-style: italic; }

/*img {
  border: 0;
  vertical-align: middle;
  width: 123px;
  height: 100%;
  }*/

  sub,
  sup {
    vertical-align: baseline;
    position: relative;
    font-size: 55%;
    line-height: 0;
  }

  sup {
    top: -.7em;
    font-size: 11px;
  }

  sub { bottom: -.25em; }

  /* 1.2. Clear Fix
  ========================================================================== */

  .cf:before,
  .cf:after {
    display: table;
    content: " ";
  }

  .cf:after { clear: both; }

  .cf { *zoom: 1; }

  /* Body
  ============================================================ */

  .overlay,
  .iframe-popup { display: none; }

  .overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: #000;
    opacity: 0.8;
  }

  .iframe-popup {
    width: 60%;
    height: 90%;
    margin: 0 auto;
    position: fixed;
    z-index: 111;
    top: 5%;
    left: 20%;
    background: url(/css/spinner.gif) center center no-repeat;
  }

  .iframe-popup iframe {
    width: 100%;
    height: 100%;
  }

  .close-popup {
    width: 30px;
    position: absolute;
    top: -15px;
    left: 99%;
    background: url(/css/close.png) no-repeat;
    color: #fff;
    font-size: 20px;
    text-indent: -9999px;
  }

  /*closed button styling for ipad*/
  .close-popup-ipad {
    top: -0px;
    left: 96.5%;
  }

  .forms-api .event-button {
    margin: 10px;
    font-size: 20px;
  }

  .forms-api .event-button,
  .close-popup { cursor: pointer; }

.forms-api #addPostStruct li {
  margin-left: 20px;
  display: inline-block;
  list-style: none;
  color: #0096DB;
  cursor: pointer;
  font-size: 16px;
}

.forms-api .login#formsapi {
  float: none;
  position: static;
}

.forms-api div#header { height: 100px; }

.forms-api #addPostStruct li.lists { position: relative; }

.forms-api .nested-list { display: none; }

.forms-api #addPostStruct .lists:hover .nested-list {
  padding-left: 0;
  display: block;
  position: absolute;
  top: 5px;
  right: -30px;
  background-color: #2d728c;
}

.forms-api #addPostStruct .lists:hover .org-list { right: -20px; }

.forms-api #addPostStruct .lists:hover .nested-list li {
  width: 80px;
  padding: 0 5px;
  margin-left: 0;
  display: block;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.forms-api #addPostStruct .lists:hover .org-list li { width: 125px; }

/* What's new popup styling */
#whats-new {
  border: 3px solid #bb4716;
  margin: 5% auto 0;
  position: relative;
  background-color: #fff;
  text-align: center;
  word-break: break-all;
}

#whats-new .news-close {
  width: 30px;
  position: absolute;
  top: -15px;
  left: 98%;
  background: url(/css/close.png) no-repeat;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  text-indent: -9999px;
}

#whats-new h2,
#whats-new h3:first-of-type {
  margin: 40px auto 25px;
  color: #226781;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}

#whats-new p {
  margin: 0 20px 35px;
  color: #716d64;
  font-size: 16px;
  line-height: 24px;
}

.remove-bg-spinner { background: none; }

/* For iPad potrait view */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
  #whats-new { margin-top: 35%; }
}

@media only screen and (max-width: 1024px) {
  .iframe-popup {
    width: 80%;
    left: 10%;
  }
}