/* ******************************************************************
  CSS organization
    Imports
    Variables
      Colors
      Sizes
      Strings
    Font families
    Utility classes
    Interactive classes   // use case : JavaScript mostly
    OOCSS classes
    BEM classes           // maps html constructs while providing
    abstraction and decoupling)
    HTML general tags
    Media queries
    ****************************************************************** */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
img {
  border: 0;
}
.font-main {
  font-family: Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial, sans-serif;
}
.font-alternate {
  font-family: 'Calisto MT', 'Bookman Old Style', Bookman, 'Goudy Old Style', Garamond, 'Hoefler Text', 'Bitstream Charter', Georgia, serif;
}
.js-show {
  display: block;
}
.js-hide {
  display: none;
}
.buttons {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  background-clip: padding-box;
  border-radius: 2px;
  border: 1px solid #03a9f4;
  background: #03a9f4;
}
.buttons:hover,
.buttons:focus {
  color: #03a9f4;
  background: transparent;
}
.browser-upgrade {
  *zoom: 1;
   padding: 0 1em;
  text-align: center;
  font-size: 1em;
  font-family: Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial, sans-serif;
  color: #555;
  border-bottom: 1px solid #ccc;
  background: #dedede;
  position:fixed;
  top: 150px;
  left: 250px;
  width:900px;
  height:400px;
  margin: auto;
  z-index: 101;
}
.browser-upgrade:before,
.browser-upgrade:after {
  content: " ";
  display: table;
}
.browser-upgrade:after {
  clear: both;
}
.browser-upgrade__title {
  margin-top: .5em;
  font-family: 'Calisto MT', 'Bookman Old Style', Bookman, 'Goudy Old Style', Garamond, 'Hoefler Text', 'Bitstream Charter', Georgia, serif;
  font-size: 2.25em;
  margin-bottom: .5em;
}
.browser-upgrade__intro {
  width: 100%;
  max-width: 90%;
  margin: 0 auto 1em;
  line-height: 1.618;
}
.browser-upgrade__cta-list {
  *zoom: 1;
  width: 80%;
   margin: 0 auto 1em;
  padding: 0;
  list-style-type: none;
  text-align: center;
}
.browser-upgrade__cta-list:before,
.browser-upgrade__cta-list:after {
  content: " ";
}
.browser-upgrade__cta-list:after {
  clear: both;
}
.browser-upgrade__list-item {
  display: inline-block;
  list-style-type: none;
  zoom: 1;
  width: 80%;
  padding: 0;
  margin: 0;
}
.browser-upgrade__call-to-action {
  display: inline-block;
  zoom: 1;
  width: auto;
  min-width: 50%;
  padding: 1em 1.618em;
  list-style-type: none;
}
.browser-upgrade__call-to-action--upgrade {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
  background-clip: padding-box;
  border-radius: 2px;
  border: 1px solid #03a9f4;
  background: #03a9f4;
  margin-top: 1em;
  text-transform: uppercase;
}
.browser-upgrade__call-to-action--upgrade:hover,
.browser-upgrade__call-to-action--upgrade:focus {
  color: #03a9f4;
  background: transparent;
}
.browser-upgrade__call-to-action--upgrade-later {
  text-transform: none;
  margin-top: .5em;
  font-size: 0.8em;
}
.browser-upgrade__browsers-list {
  display: inline-block;
  max-width: 20%;
  height: auto;
  margin: 0 auto;
  padding: 1em;
  text-align: center;
  border-top: 3px solid #f0f0f0;
}
.browser-upgrade__go-to-upgrade-site {
  display: inline-block;
  zoom: 1;
  height: auto;
  max-width: 100%;
}

/*# sourceMappingURL=upgrade-browser.css.map */