body {
  width: 100%;
  *zoom: 1; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/*!
Pure v0.5.0
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
https://github.com/yui/pure/blob/master/LICENSE.md
*/
.pure-form input[type="text"],
.pure-form input[type="password"],
.pure-form input[type="email"],
.pure-form input[type="url"],
.pure-form input[type="date"],
.pure-form input[type="month"],
.pure-form input[type="time"],
.pure-form input[type="datetime"],
.pure-form input[type="datetime-local"],
.pure-form input[type="week"],
.pure-form input[type="number"],
.pure-form input[type="search"],
.pure-form input[type="tel"],
.pure-form input[type="color"],
.pure-form select,
.pure-form textarea {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]) {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
/* May be able to remove this tweak as color inputs become more standardized across browsers. */
.pure-form input[type="color"] {
  padding: 0.2em 0.5em; }

.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="url"]:focus,
.pure-form input[type="date"]:focus,
.pure-form input[type="month"]:focus,
.pure-form input[type="time"]:focus,
.pure-form input[type="datetime"]:focus,
.pure-form input[type="datetime-local"]:focus,
.pure-form input[type="week"]:focus,
.pure-form input[type="number"]:focus,
.pure-form input[type="search"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form input[type="color"]:focus,
.pure-form select:focus,
.pure-form textarea:focus {
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  border-color: #129FEA; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]):focus {
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  border-color: #129FEA; }

.pure-form input[type="file"]:focus,
.pure-form input[type="radio"]:focus,
.pure-form input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 1px auto #129FEA; }

.pure-form .pure-checkbox,
.pure-form .pure-radio {
  margin: 0.5em 0;
  display: block; }

.pure-form input[type="text"][disabled],
.pure-form input[type="password"][disabled],
.pure-form input[type="email"][disabled],
.pure-form input[type="url"][disabled],
.pure-form input[type="date"][disabled],
.pure-form input[type="month"][disabled],
.pure-form input[type="time"][disabled],
.pure-form input[type="datetime"][disabled],
.pure-form input[type="datetime-local"][disabled],
.pure-form input[type="week"][disabled],
.pure-form input[type="number"][disabled],
.pure-form input[type="search"][disabled],
.pure-form input[type="tel"][disabled],
.pure-form input[type="color"][disabled],
.pure-form select[disabled],
.pure-form textarea[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type])[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3; }

.pure-form input[readonly],
.pure-form select[readonly],
.pure-form textarea[readonly] {
  background: #eee;
  /* menu hover bg color */
  color: #777;
  /* menu text color */
  border-color: #ccc; }

.pure-form input:focus:invalid,
.pure-form textarea:focus:invalid,
.pure-form select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b; }

.pure-form input:focus:invalid:focus,
.pure-form textarea:focus:invalid:focus,
.pure-form select:focus:invalid:focus {
  border-color: #e9322d; }

.pure-form input[type="file"]:focus:invalid:focus,
.pure-form input[type="radio"]:focus:invalid:focus,
.pure-form input[type="checkbox"]:focus:invalid:focus {
  outline-color: #e9322d; }

.pure-form select {
  border: 1px solid #ccc;
  background-color: white; }

.pure-form select[multiple] {
  height: auto; }

.pure-form label {
  margin: 0.5em 0 0.2em; }

.pure-form fieldset {
  margin: 0;
  padding: 0.35em 0 0.75em;
  border: 0; }

.pure-form legend {
  display: block;
  width: 100%;
  padding: 0.3em 0;
  margin-bottom: 0.3em;
  color: #333;
  border-bottom: 1px solid #e5e5e5; }

.pure-form-stacked input[type="text"],
.pure-form-stacked input[type="password"],
.pure-form-stacked input[type="email"],
.pure-form-stacked input[type="url"],
.pure-form-stacked input[type="date"],
.pure-form-stacked input[type="month"],
.pure-form-stacked input[type="time"],
.pure-form-stacked input[type="datetime"],
.pure-form-stacked input[type="datetime-local"],
.pure-form-stacked input[type="week"],
.pure-form-stacked input[type="number"],
.pure-form-stacked input[type="search"],
.pure-form-stacked input[type="tel"],
.pure-form-stacked input[type="color"],
.pure-form-stacked select,
.pure-form-stacked label,
.pure-form-stacked textarea {
  display: block;
  margin: 0.25em 0; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form-stacked input:not([type]) {
  display: block;
  margin: 0.25em 0; }

.pure-form-aligned input,
.pure-form-aligned textarea,
.pure-form-aligned select,
.pure-form-aligned .pure-help-inline,
.pure-form-message-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle; }

.pure-form-aligned textarea {
  vertical-align: top; }

/* Aligned Forms */
.pure-form-aligned .pure-control-group {
  margin-bottom: 0.5em; }

.pure-form-aligned .pure-control-group label {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  width: 10em;
  margin: 0 1em 0 0; }

.pure-form-aligned .pure-controls {
  margin: 1.5em 0 0 10em; }

/* Rounded Inputs */
.pure-form input.pure-input-rounded,
.pure-form .pure-input-rounded {
  border-radius: 2em;
  padding: 0.5em 1em; }

/* Grouped Inputs */
.pure-form .pure-group fieldset {
  margin-bottom: 10px; }

.pure-form .pure-group input {
  display: block;
  padding: 10px;
  margin: 0;
  border-radius: 0;
  position: relative;
  top: -1px; }

.pure-form .pure-group input:focus {
  z-index: 2; }

.pure-form .pure-group input:first-child {
  top: 1px;
  border-radius: 4px 4px 0 0; }

.pure-form .pure-group input:last-child {
  top: -2px;
  border-radius: 0 0 4px 4px; }

.pure-form .pure-group button {
  margin: 0.35em 0; }

.pure-form .pure-input-1 {
  width: 100%; }

.pure-form .pure-input-2-3 {
  width: 66%; }

.pure-form .pure-input-1-2 {
  width: 50%; }

.pure-form .pure-input-1-3 {
  width: 33%; }

.pure-form .pure-input-1-4 {
  width: 25%; }

/* Inline help for forms */
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
.pure-form .pure-help-inline,
.pure-form-message-inline {
  display: inline-block;
  padding-left: 0.3em;
  color: #666;
  vertical-align: middle;
  font-size: 0.875em; }

/* Block help for forms */
.pure-form-message {
  display: block;
  color: #666;
  font-size: 0.875em; }

.standard .pure-controls ul li {
  background-image: none;
  padding-left: 0; }

.pure-form label {
  color: #333; }

.pure-form label.required {
  color: #000; }

.pure-form label.required:before {
  color: #e32;
  content: '* ';
  display: inline; }

.pure-form span.error {
  text-align: left;
  padding-left: 1em;
  width: 20em;
  color: #e32; }

.errorlist li {
  color: #e32; }

.pure-form .pure-controls span.error {
  left: 10em; }

.formholder {
  padding-bottom: 22px; }

.pure-form-aligned input[type="text"],
.pure-form-aligned input[type="password"],
.pure-form-aligned input[type="email"],
.pure-form-aligned input[type="url"],
.pure-form-aligned input[type="search"],
.pure-form-aligned input[type="tel"],
.pure-form-aligned textarea {
  min-width: 25em; }

.name-search {
  vertical-align: top; }
  .name-search button {
    float: left;
    margin-left: 12px; }
  .name-search .tokenize-otc {
    float: left; }

/*
 *
 * btns.css
 * Simple css utilities for building responsive buttons
 * Author: mrmrs
 * License: MIT
 *
 *                */
/* 

  Base .btn class 

  Code:
  <a href="#" class="btn">Default button</a>

*/
.btn,
.btn:link,
.btn:visited {
  border-radius: .3em;
  border-style: solid;
  border-width: 1px;
  color: #111;
  display: inline-block;
  letter-spacing: .15em;
  margin-bottom: .5em;
  padding: .7em .75em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .4s, background-color .4s, border .4s; }

.btn:hover,
.btn:focus {
  color: #7FDBFF;
  border: 1px solid #7FDBFF;
  transition: background-color .3s, color .3s, border .3s; }

.btn:active {
  color: #0074D9;
  border: 1px solid #0074D9;
  transition: background-color .3s, color .3s, border .3s; }

/* 

  Sizes 
  
  Small  = .btn--s
  Medium = .btn--m
  Large  = .btn--l

  Code:
  <a href="#" class="btn btn--s">
  <a href="#" class="btn btn--m">
  <a href="#" class="btn btn--l">

*/
.btn--s {
  font-size: 12px; }

.btn--m {
  font-size: 14px; }

.btn--l {
  font-size: 20px;
  border-radius: 0.25em !important; }

/* 

  Layout utility for responsive buttons 

  Code:
  <a href="#" class="btn btn--full">

*/
.btn--full,
.btn--full:link {
  border-radius: .25em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%; }

/*

  Skins

  * Black & White
  * Grays
  * Colors

  Code:
  <a href="#" class="btn btn--black">
  <a href="#" class="btn btn--white">
  <a href="#" class="btn btn--gray">
  <a href="#" class="btn btn--gray-dark">
  <a href="#" class="btn btn--gray-border">
  <a href="#" class="btn btn--blue">

*/
/* BLACK & WHITE */
.btn--black,
.btn--black:link,
.btn--black:visited {
  color: #fff;
  background-color: #000; }

.btn--black:hover,
.btn--black:focus {
  color: #fff;
  background-color: #777;
  border-color: #777; }

.btn--black:active {
  color: #fff;
  background-color: #999;
  border-color: #999; }

.btn--black:hover,
.btn--black:focus {
  background-color: #444; }

.btn--black {
  background-color: #000; }

.btn--gray:link,
.btn--gray:visited {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #555; }

.btn--gray:hover,
.btn--gray:focus {
  background-color: #ddd;
  border-color: #ddd;
  color: #444; }

.btn--gray:active {
  background-color: #ccc;
  border-color: #ccc;
  color: #444; }

.btn--gray-border:link,
.btn--gray-border:visited {
  background-color: #fff;
  border-color: #555;
  border-width: 2px;
  color: #555; }

.btn--gray-border:hover,
.btn--gray-border:focus {
  background-color: #fff;
  border-color: #ddd;
  color: #777; }

.btn--gray-border:active {
  background-color: #ccc;
  border-color: #ccc;
  color: #444; }

.btn--gray-dark:link,
.btn--gray-dark:visited {
  background-color: #555;
  color: #eee; }

.btn--gray-dark:hover,
.btn--gray-dark:focus {
  background-color: #333;
  border-color: #333;
  color: #eee; }

.btn--gray-dark:active {
  background-color: #777;
  border-color: #777;
  color: #eee; }

/* BLUES */
.btn--blue,
.btn--blue:link,
.btn--blue:visited {
  color: #fff;
  background-color: #3D85B3; }

.btn--blue:hover,
.btn--blue:focus {
  color: #fff !important;
  background-color: #5DA4D3;
  border-color: #5DA4D3; }

.btn--blue:active {
  color: #fff;
  background-color: #001F3F;
  border-color: #001F3F; }

/* Keep it mobile-first and responsive */
@media screen and (min-width: 32em) {
  .btn--full {
    max-width: 16em !important; } }
.debug1 {
  outline: 1px solid #f00; }

.debug2 {
  outline: 1px solid #00f; }

.debug3 {
  outline: 1px solid #0f0; }

h1, h2, h3, h4, h5, h6 {
  color: #0a2f54;
  font-weight: bold; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit; }

h1 {
  font-size: 28px;
  line-height: 44px;
  margin-top: 11px;
  margin-bottom: 22px; }

h2 {
  font-size: 20px;
  line-height: 22px;
  margin-top: 44px;
  margin-bottom: 22px; }

h3 {
  font-size: 17px;
  line-height: 22px;
  margin-top: 22px;
  margin-bottom: 0px; }

h4 {
  font-size: 21px;
  font-size: 2.1rem;
  margin-bottom: 3px; }

h5 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 3px; }

h6 {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: normal; }

.subheader {
  color: #777;
  font-weight: 300;
  margin-bottom: 24px; }

p, ul {
  margin-top: 0px;
  margin-bottom: 22px; }

p img {
  margin: 0; }

p.lead {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5; }

em, i {
  font-style: italic;
  line-height: inherit; }

strong, b {
  font-weight: bold;
  line-height: inherit; }

small, aside {
  font-size: 12px;
  line-height: inherit; }

h1 small, h2 small, h3 small, h4 small, h5 small {
  color: #777; }

a:link, a:visited {
  color: #104881; }
  a:link.more, a:visited.more {
    display: block;
    text-align: right;
    font-size: 12px;
    text-decoration: none; }
    a:link.more span, a:visited.more span {
      padding: 0 8px 0 3px; }

.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr; }
  .ir br {
    display: none; }

html {
  font-size: 62.5%; }

body {
  font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 14px;
  line-height: 22px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #333; }

#description {
  background: #2f5873;
  height: 19px;
  line-height: 19px;
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.29688) 0px -1px 0px;
  -webkit-box-shadow: 0px 1px 2px rgba(50, 50, 50, 0.44);
  -moz-box-shadow: 0px 1px 2px rgba(50, 50, 50, 0.44);
  box-shadow: 0px 1px 2px rgba(50, 50, 50, 0.44); }

header {
  display: inline;
  float: left;
  width: 960px;
  margin: 0 0px; }

.container {
  width: 960px;
  margin: 0 auto; }

.wrapper {
  #background-color: #fff;
  padding: 0;
  display: inline;
  float: left;
  width: 960px;
  margin: 0 0px; }

#sidebox {
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px;
  background: #fff; }

#showcase {
  display: inline;
  float: left;
  width: 640px;
  margin: 0 0px;
  background: #fff; }

#bigshowcase {
  display: inline;
  float: left;
  width: 960px;
  margin: 0 0px;
  background: #fff;
  margin-bottom: 22px; }

#column-one {
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px;
  background: #fff; }

#column-two {
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px;
  background: #fff; }

#column-three {
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px;
  background: #fff; }

.showlink {
  z-index: 1000;
  float: left; }

#subcontent {
  display: block;
  width: 960px;
  margin: 0 0px;
  *zoom: 1; }
  #subcontent:before, #subcontent:after {
    content: "";
    display: table; }
  #subcontent:after {
    clear: both; }

#innercontent {
  display: inline;
  float: left;
  width: 640px;
  margin: 0 0px;
  background: #fff; }

#rightbar {
  display: inline;
  float: left;
  width: 160px;
  margin: 0 0px;
  background: #fff; }
  #rightbar img:first-child {
    margin-top: 22px; }
  #rightbar .text:first-child {
    margin-top: 22px; }

#rightbar .text {
  width: 100%;
  float: left; }
  #rightbar .text h2, #rightbar .text h3, #rightbar .text h4, #rightbar .text h5, #rightbar .text h6 {
    border-bottom: 1px solid #ccc; }

#sidebox .text {
  width: 100%;
  float: left; }
  #sidebox .text h2, #sidebox .text h3, #sidebox .text h4, #sidebox .text h5, #sidebox .text h6 {
    border-bottom: 1px solid #ccc;
    padding-left: 11px; }
  #sidebox .text p {
    padding: 0 11px; }

#subleft {
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px; }

#subright {
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px; }

#column1 {
  display: inline;
  float: left;
  width: 400px;
  margin: 0 0px;
  background: #fff; }

#column2 {
  display: inline;
  float: left;
  width: 400px;
  margin: 0 0px;
  background: #fff; }

#columna {
  display: inline;
  float: left;
  width: 240px;
  margin: 0 0px;
  background: #fff;
  text-align: center;
  padding-bottom: 44px; }

#columnb {
  display: inline;
  float: left;
  width: 240px;
  margin: 0 0px;
  background: #fff;
  text-align: center;
  padding-bottom: 44px; }

#columnc {
  display: inline;
  float: left;
  width: 240px;
  margin: 0 0px;
  background: #fff;
  text-align: center;
  padding-bottom: 44px; }

.plugin_twitter h2 {
  font-size: 16px; }

.tweet_list {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.tweet_join {
  display: none; }

.tweet_time {
  padding-right: 6px; }

.member-holder {
  float: left; }

.member {
  display: inline;
  float: left;
  margin: 0 20px 20px 0;
  padding: 0 0 20px 0;
  width: 175px;
  font-size: 12px; }
  .member h3 {
    margin: 0 0 26px 0;
    font-size: 16px;
    line-height: 24px;
    padding: 0 0 1px 0;
    color: #104881;
    border-bottom: 1px solid #4e9bcf; }
  .member h5 {
    margin: 0; }
  .member img {
    margin: 0 0 18px 0; }
  .member .logoholder {
    height: 90px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 11px; }
  .member:nth-child(4n+4) {
    margin: 0 0 20px 0; }

#display {
  padding: 0;
  list-style-type: none;
  position: relative; }

#sidebar {
  display: inline;
  float: left;
  width: 160px;
  margin: 0 0px;
  background: #fff; }

.sidenav {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.holder {
  padding: 20px; }

.noresults {
  margin-top: 66px; }

.subholder {
  padding: 20px 20px 0 20px; }
  .subholder h1 {
    margin-bottom: 0;
    padding-bottom: 0; }

sidenav > li {
  margin-left: 0;
  margin-bottom: 0;
  min-height: 1px;
  position: relative;
  display: block;
  display: inline;
  float: left;
  width: 160px;
  margin: 0 0px; }

.sidenav > li > a {
  display: block;
  height: 60px;
  color: #fff;
  background-image: linear-gradient(bottom, #9eb3c1 33%, #9bafbd 67%);
  background-image: -o-linear-gradient(bottom, #9eb3c1 33%, #9bafbd 67%);
  background-image: -moz-linear-gradient(bottom, #9eb3c1 33%, #9bafbd 67%);
  background-image: -webkit-linear-gradient(bottom, #9eb3c1 33%, #9bafbd 67%);
  background-image: -ms-linear-gradient(bottom, #9eb3c1 33%, #9bafbd 67%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.33, #9eb3c1), color-stop(0.67, #9bafbd));
  margin: 0 2px 2px 0;
  text-decoration: none;
  /* margin-right: 2px;
  margin-bottom: 2px; */
  position: relative;
  -webkit-transition-property: color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in;
  text-shadow: rgba(0, 0, 0, 0.2) 0px 1px 0px; }
  .sidenav > li > a span {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-size: 16px; }

.sidenav > li > a:hover, .topnav > li > a:hover {
  color: #daeaf5; }

.sidenav > li.selected > a:hover, .topnav > li.selected > a:hover, .sidenav > li.ancestor > a:hover, .topnav > li.ancestor > a:hover {
  color: #fff;
  cursor: default; }

.sidenav > li > a:last-chid {
  margin: 0 2px 0 0; }

.sidenav > li.selected > a {
  background: url("../images/pointers.png") 128px -34px no-repeat, linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px -34px no-repeat, -o-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px -34px no-repeat, -moz-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px -34px no-repeat, -webkit-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px -34px no-repeat, -ms-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px -34px no-repeat, -webkit-gradient(linear, left bottom, left top, color-stop(0.33, #86a0b0), color-stop(0.67, #7d97a8)); }

.sidenav > li.ancestor > a {
  background: url("../images/pointers.png") 128px 28px no-repeat, linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px 28px no-repeat, -o-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px 28px no-repeat, -moz-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px 28px no-repeat, -webkit-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px 28px no-repeat, -ms-linear-gradient(bottom, #86a0b0 33%, #7d97a8 67%);
  background: url("../images/pointers.png") 128px 28px no-repeat, -webkit-gradient(linear, left bottom, left top, color-stop(0.33, #86a0b0), color-stop(0.67, #7d97a8)); }

.sidenav > li > ul, .sidenav > li > ul > li > ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.sidenav > li > ul > li > a {
  display: block;
  font-size: 11px;
  line-height: 14px;
  padding: 8px 6px 8px 6px;
  color: #fff;
  background: #878d91;
  background-image: linear-gradient(bottom, #878d91 13%, #7d8387 57%);
  background-image: -o-linear-gradient(bottom, #878d91 13%, #7d8387 57%);
  background-image: -moz-linear-gradient(bottom, #878d91 13%, #7d8387 57%);
  background-image: -webkit-linear-gradient(bottom, #878d91 13%, #7d8387 57%);
  background-image: -ms-linear-gradient(bottom, #878d91 13%, #7d8387 57%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.13, #878d91), color-stop(0.57, #7d8387));
  margin: 0 2px 2px 0;
  text-decoration: none;
  /* margin-right: 2px;
  margin-bottom: 2px; */
  position: relative;
  -webkit-transition-property: color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in; }

.sidenav > li > ul > li > ul > li > a {
  display: block;
  font-size: 11px;
  line-height: 14px;
  padding: 8px 6px 8px 12px;
  color: #fff;
  background: #878d91;
  background-image: linear-gradient(bottom, #73787b 13%, #646a6d 57%);
  background-image: -o-linear-gradient(bottom, #73787b 13%, #646a6d 57%);
  background-image: -moz-linear-gradient(bottom, #73787b 13%, #646a6d 57%);
  background-image: -webkit-linear-gradient(bottom, #73787b 13%, #646a6d 57%);
  background-image: -ms-linear-gradient(bottom, #73787b 13%, #646a6d 57%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.13, #73787b), color-stop(0.57, #646a6d));
  margin: 0 2px 2px 0;
  text-decoration: none;
  /* margin-right: 2px;
  margin-bottom: 2px; */
  position: relative;
  -webkit-transition-property: color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in; }
  .sidenav > li > ul > li > ul > li > a span {
    font-size: 11px;
    line-height: 11px; }

/*
.sidenav>li.selected>a{
    background: #ccc url('../images/pointers.png') 128px -33px no-repeat;
}

.sidenav>li.ancestor>a{
    background: #ccc url('../images/pointers2.png') 128px 31px no-repeat;
}*/
#content {
  display: inline;
  float: left;
  width: 800px;
  margin: 0 0px;
  background: #fff; }
  #content .text {
    margin: 0; }
    #content .text img.right {
      float: right;
      margin: 0 0 10px 10px; }
    #content .text img.left {
      float: left;
      margin: 0 10px 10px 0; }

div.timer {
  display: none !important; }

.topnav {
  height: 60px;
  padding: 0;
  list-style-type: none;
  background: #c6dff0;
  display: block;
  width: 960px;
  margin: 0 0px;
  *zoom: 1; }
  .topnav:before, .topnav:after {
    content: "";
    display: table; }
  .topnav:after {
    clear: both; }

.topnav > li {
  text-align: center;
  margin-left: 0;
  margin-bottom: 0;
  float: left;
  min-height: 1px;
  position: relative;
  display: block;
  display: inline;
  float: left;
  width: 160px;
  margin: 0 0px; }

.topnav > li > a {
  text-align: center;
  display: block;
  height: 60px;
  color: #fff;
  background-image: linear-gradient(bottom, #58a4d6 44%, #4e9bcf 85%);
  background-image: -o-linear-gradient(bottom, #58a4d6 44%, #4e9bcf 85%);
  background-image: -moz-linear-gradient(bottom, #58a4d6 44%, #4e9bcf 85%);
  background-image: -webkit-linear-gradient(bottom, #58a4d6 44%, #4e9bcf 85%);
  background-image: -ms-linear-gradient(bottom, #58a4d6 44%, #4e9bcf 85%);
  background-image: -webkit-gradient(linear, right bottom, right top, color-stop(0.44, #58a4d6), color-stop(0.85, #4e9bcf));
  margin: 0 2px 2px 0;
  text-decoration: none;
  /* margin-right: 2px;
  margin-bottom: 2px; */
  position: relative;
  text-shadow: rgba(0, 0, 0, 0.4) 0px 1px 1px;
  font-weight: bold;
  -webkit-transition-property: color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-in; }
  .topnav > li > a span {
    position: absolute;
    bottom: 6px;
    left: 6px;
    font-size: 16px; }

.topnav > li.selected > a, .topnav > li.ancestor > a {
  background: #4e9bcf url("../images/pointers.png") 128px 31px no-repeat;
  background: url("../images/pointers.png") 128px 31px no-repeat, linear-gradient(bottom, #408bbd 33%, #3482b3 67%);
  background: url("../images/pointers.png") 128px 31px no-repeat, -o-linear-gradient(bottom, #408bbd 33%, #3482b3 67%);
  background: url("../images/pointers.png") 128px 31px no-repeat, -moz-linear-gradient(bottom, #408bbd 33%, #3482b3 67%);
  background: url("../images/pointers.png") 128px 31px no-repeat, -webkit-linear-gradient(bottom, #408bbd 33%, #3482b3 67%);
  background: url("../images/pointers.png") 128px 31px no-repeat, -ms-linear-gradient(bottom, #408bbd 33%, #3482b3 67%);
  background: url("../images/pointers.png") 128px 31px no-repeat, -webkit-gradient(linear, left bottom, left top, color-stop(0.33, #408bbd), color-stop(0.67, #3482b3)); }

.topnav > li:last-child > a {
  margin-right: 0; }

.topnav > li.selected > a {
  text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 1px; }

#branding {
  display: block;
  width: 960px;
  margin: 0 0px;
  *zoom: 1; }
  #branding:before, #branding:after {
    content: "";
    display: table; }
  #branding:after {
    clear: both; }

#brand {
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1.5;
  background: transparent url("../images/AESGP-logo-320.png") bottom left no-repeat;
  display: inline;
  float: left;
  width: 320px;
  margin: 0 0px;
  height: 100px;
  margin-top: 15px; }

#subbrand {
  color: #104881;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  height: 54px;
  padding: 90px 0 0 0;
  text-shadow: white 0px 1px 0px;
  display: inline;
  float: left;
  width: 640px;
  margin: 0 0px;
  text-align: right; }

#main {
  min-height: 400px;
  background: #fff;
  display: inline;
  float: left;
  width: 960px;
  margin: 0 0px;
  padding-bottom: 66px; }

.featuredconf {
  padding: 11px;
  margin: 0 0 2px 0; }
  .featuredconf h3 {
    font-size: 18px;
    margin: 0;
    color: #00B050; }
  .featuredconf h5 {
    font-size: 14px;
    margin: 0; }

.intro {
  font-size: 18px;
  line-height: 22px;
  margin-top: 0;
  margin-bottom: 33px;
  color: #104881; }

.coin-slider {
  overflow: hidden;
  zoom: 1;
  position: relative; }

.coin-slider a {
  text-decoration: none;
  outline: none;
  border: none; }

.cs-buttons {
  font-size: 0px;
  padding: 10px;
  float: left; }

.cs-buttons a {
  margin-left: 5px;
  height: 10px;
  width: 10px;
  float: left;
  border: 1px solid #B8C4CF;
  color: #B8C4CF;
  text-indent: -1000px; }

.cs-active {
  background-color: #B8C4CF;
  color: #FFFFFF; }

.cs-title {
  width: 545px;
  padding: 10px;
  background-color: #000000;
  color: #FFFFFF; }

.cs-prev,
.cs-next {
  background-color: #000000;
  color: #FFFFFF;
  padding: 0px 10px; }

footer {
  position: fixed;
  height: 300px;
  width: 100%;
  background: #2f5873;
  opacity: 0.7;
  bottom: -272px;
  z-index: 200;
  border-top: 5px solid white; }
  footer a:link, footer a:visited {
    color: #fff;
    text-decoration: none; }
  footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left; }
  footer ul > li {
    margin-left: 0;
    margin-bottom: 0;
    float: left;
    min-height: 1px;
    position: relative;
    display: block;
    display: inline;
    float: left;
    width: 160px;
    margin: 0 0px; }
  footer ul > li li {
    padding-left: 10px; }

.footholder {
  width: 780px;
  float: right; }

.footnotes {
  margin-top: 66px;
  font-size: 12px;
  line-height: 18px;
  color: #4e9bcf; }
  .footnotes .text {
    padding: 11px 0;
    border-top: 1px solid #c6dff0; }
  .footnotes a:link, .footnotes a:visited {
    color: #4e9bcf; }
  .footnotes a:hover {
    text-decoration: none; }
  .footnotes p {
    margin: 0; }

.text ol, .text ul {
  padding-left: 20px; }

#stickout {
  width: 960px;
  margin: 0 auto;
  text-align: center; }
  #stickout a:hover {
    color: #bdd5e4; }

#linkpool {
  border-top: 1px solid #3e7497;
  width: 960px;
  height: auto;
  margin: 11px auto 0 auto;
  padding-top: 22px; }
  #linkpool a:hover {
    color: #bdd5e4; }

#coords {
  font-size: 12px;
  line-height: 14px;
  width: 960px;
  border-top: 1px solid #3e7497;
  margin-top: 22px;
  padding: 11px 0 0 0;
  float: left;
  color: #bdd5e4;
  text-align: center; }
  #coords a:link, #coords a:visited {
    color: #bdd5e4; }
  #coords a:hover {
    color: #75a6c6; }
  #coords p {
    margin: 0;
    padding: 0; }
  #coords #social {
    padding-top: 11px; }
    #coords #social a {
      margin: 0 2px; }

table.ingresults {
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 20px 0; }
  table.ingresults th, table.ingresults td {
    font-size: 12px;
    line-height: 16px;
    padding: 6px 10px;
    text-align: left; }
    table.ingresults th.notes, table.ingresults td.notes {
      font-size: 11px;
      color: #666; }
  table.ingresults td, table.ingresults th {
    border-bottom: 1px solid #ccc;
    vertical-align: top; }
  table.ingresults th.addinfo, table.ingresults td.addinfo {
    width: 180px; }
  table.ingresults th a {
    color: #000;
    text-decoration: none; }

ul.pagination {
  background: white;
  overflow: auto;
  margin: 0;
  padding: 10px;
  border: 1px solid #DDD;
  list-style: none; }

ul.pagination > li {
  float: left;
  line-height: 22px;
  margin-left: 10px; }

ul.pagination > li:first-child {
  margin-left: 0; }

ul.pagination > li.cardinality {
  float: right;
  color: #8d8d8d; }

[data-icon]:before {
  font-family: 'Pictos Custom';
  font-weight: normal;
  content: attr(data-icon);
  -webkit-font-smoothing: antialiased;
  display: none; }

.noticebox {
  background: #eee;
  margin: 22px 0 0 0;
  float: left;
  width: 100%;
  font-size: 28px;
  line-height: 44px;
  color: #333;
  color: rgba(0, 0, 0, 0.6); }
  .noticebox span {
    margin-left: 11px; }
  .noticebox p {
    padding: 11px 11px 0 0;
    float: right;
    width: 100px;
    font-size: 12px;
    line-height: 16px;
    color: #333;
    color: rgba(0, 0, 0, 0.6); }
    #sidebox .noticebox p {
      width: 260px; }

.alert {
  background: #FF8888;
  background-image: linear-gradient(bottom, #ff8888 13%, #fd7878 57%);
  background-image: -o-linear-gradient(bottom, #ff8888 13%, #fd7878 57%);
  background-image: -moz-linear-gradient(bottom, #ff8888 13%, #fd7878 57%);
  background-image: -webkit-linear-gradient(bottom, #ff8888 13%, #fd7878 57%);
  background-image: -ms-linear-gradient(bottom, #ff8888 13%, #fd7878 57%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.13, #ff8888), color-stop(0.57, #fd7878));
  font-weight: bold; }

.info {
  background: #CFDCE4;
  background-image: linear-gradient(bottom, #cfdce4 13%, #c8dcea 57%);
  background-image: -o-linear-gradient(bottom, #cfdce4 13%, #c8dcea 57%);
  background-image: -moz-linear-gradient(bottom, #cfdce4 13%, #c8dcea 57%);
  background-image: -webkit-linear-gradient(bottom, #cfdce4 13%, #c8dcea 57%);
  background-image: -ms-linear-gradient(bottom, #cfdce4 13%, #c8dcea 57%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.13, #cfdce4), color-stop(0.57, #c8dcea));
  font-weight: bold; }

.uniForm .ctrlHolder {
  border-bottom: none !important;
  padding: 11px 0 !important; }

.pre {
  padding: 11px 0 0 0;
  height: 55px;
  color: #4e9bcf; }

.plugin_twitter {
  padding: 11px;
  font-size: 12px;
  color: #104881; }
  .plugin_twitter .tweet_time {
    font-weight: bold; }
  .plugin_twitter a:link, .plugin_twitter a:visited {
    color: #333;
    text-decoration: none;
    color: #104881; }
  .plugin_twitter .tweet_avatar {
    float: left;
    margin: 0 11px 33px 0; }
  .plugin_twitter li {
    float: left;
    width: 100%;
    margin: 0 0 11px 0; }
  .plugin_twitter h2 {
    border-bottom: 1px solid #ccc;
    color: #1DCAFF;
    line-height: 33px; }
    .plugin_twitter h2 span {
      font-size: 28px;
      padding: 0 18px 0 0;
      vertical-align: bottom;
      display: block;
      float: left; }

.newslist {
  margin: 0 0 44px 0; }
  .newslist h3 {
    margin: 0 0 11px 0; }
  .newslist ul {
    padding: 0 0 0 20px;
    margin: 0;
    list-style-type: square; }
  .newslist li {
    padding: 0 0 6px 0; }

table.clist {
  width: 100%;
  border-top: 1px solid #ccc; }
  table.clist td {
    vertical-align: top;
    border-bottom: 1px solid #ccc; }
  table.clist td.cpic {
    padding: 11px 0 11px 0;
    width: 140px; }
    table.clist td.cpic img {
      display: block; }
  table.clist td.clink {
    vertical-align: middle;
    text-align: right;
    width: 120px; }
    table.clist td.clink a:link, table.clist td.clink a:visited {
      text-decoration: none; }
    table.clist td.clink a:hover {
      color: #4e9bcf; }
  table.clist td.cdesc {
    padding: 11px 22px; }
    table.clist td.cdesc h3 {
      margin: 0;
      font-size: 22px;
      color: #3282b8; }
      table.clist td.cdesc h3 a {
        color: #3282b8;
        text-decoration: none; }
    table.clist td.cdesc h4 {
      margin: 0;
      font-size: 14px;
      color: #76b2da; }
    table.clist td.cdesc p {
      margin: 0 0 11px 0; }

.all {
  margin: 33px 0 11px 0; }
  .all a:link, .all a:visited {
    text-decoration: none; }
  .all a:hover {
    color: #4e9bcf; }

.flags {
  list-style-type: none;
  padding: 0;
  margin: 0;
  float: left; }
  .flags li {
    float: left;
    display: inline-block;
    width: 144px;
    margin: 0 10px 10px 0;
    padding: 0;
    overflow: hidden; }
    .flags li:nth-child(5n+5) {
      margin: 0 0 10px 0 !important; }
    .flags li a {
      display: block;
      float: left; }
      .flags li a:hover {
        opacity: 0.8; }
    .flags li img {
      display: block;
      float: left;
      -webkit-box-shadow: 1px 1px 1px rgba(50, 50, 50, 0.64);
      -moz-box-shadow: 1px 1px 1px rgba(50, 50, 50, 0.64);
      box-shadow: 1px 1px 1px rgba(50, 50, 50, 0.64); }

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

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

.sdesc {
  font-size: 20px;
  padding: 22px 0; }
  .sdesc a:link, .sdesc a:visited {
    text-decoration: none; }
  .sdesc a:hover {
    color: #4e9bcf; }

#study img {
  float: left;
  margin: 0 22px 22px 0; }
#study h1 {
  float: left; }
#study #study-intro {
  width: 100%;
  float: left;
  vertical-align: bottom;
  padding: 0 0 22px 0; }
#study .studesc {
  margin: 0 0 44px 0; }

.return {
  margin: 33px 11px; }
  .return a:link, .return a:visited {
    text-decoration: none; }
  .return a:hover {
    color: #4e9bcf; }

.printresult {
  display: none; }

.intnav {
  padding: 0 0 22px 0; }
  .intnav ul {
    float: right;
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .intnav ul li {
      display: inline;
      padding: 0 0 0 22px; }
      .intnav ul li a:link, .intnav ul li a:visited {
        font-size: 12px; }

.errormsg {
  color: #f00; }

div.TokenizeMeasure,
div.Tokenize ul li span,
div.Tokenize ul.TokensContainer li.TokenSearch input {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px; }

div.Tokenize {
  position: relative;
  display: inline-block;
  zoom: 1; }

div.Tokenize ul {
  list-style: none;
  padding: 0;
  margin: 0; }

div.Tokenize ul li {
  white-space: nowrap; }

div.Tokenize ul.TokensContainer {
  cursor: text;
  padding: 0 5px 0 0;
  height: 36px;
  overflow-y: auto;
  background-color: white;
  width: 600px; }

div.Tokenize ul.TokensContainer li.Token {
  border: 1px solid #ccd5e3;
  background-color: #eff2f7;
  padding: 0 5px;
  line-height: 18px; }

div.Tokenize ul.TokensContainer li.Token.PendingDelete {
  opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-filter: "alpha(opacity=50)";
  filter: alpha(opacity=50); }

div.Tokenize ul.TokensContainer li.Token,
div.Tokenize ul.TokensContainer li.TokenSearch {
  margin: 5px 0 0 5px;
  height: 18px;
  float: left; }

div.Tokenize ul.TokensContainer li.TokenSearch input {
  margin: 0;
  padding: 1px 0;
  background-color: transparent;
  line-height: 18px;
  border: none;
  outline: none; }

div.Tokenize ul.TokensContainer li.Placeholder {
  color: #ddd;
  position: absolute;
  line-height: 20px;
  padding: 5px 0 0 5px;
  display: none; }

div.Tokenize ul.TokensContainer,
div.Tokenize ul.Dropdown {
  border: 1px solid #ccc; }

div.Tokenize ul.TokensContainer li.Token a.Close {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 18px;
  float: right;
  margin: 1px 0 0 5px;
  padding: 0;
  cursor: pointer;
  color: #a6b4ce; }

div.Tokenize ul.TokensContainer li.Token a.Close:hover {
  background: transparent;
  text-decoration: none; }

div.Tokenize ul.Dropdown {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  width: 100%;
  padding: 5px 0;
  margin: -1px 0 0 0;
  position: absolute;
  background-color: white;
  overflow-y: auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  z-index: 20; }

div.Tokenize ul.Dropdown li {
  padding: 5px 20px;
  overflow: hidden;
  cursor: pointer; }

div.Tokenize ul.Dropdown li.Hover {
  color: white;
  text-decoration: none;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0); }

.loading {
  display: none;
  padding: 0 12px;
  color: #00f;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-animation: blink normal 2.5s infinite ease-in-out;
  /* Firefox */
  -webkit-animation: blink normal 2.5s infinite ease-in-out;
  /* Webkit */
  -ms-animation: blink normal 2.5s infinite ease-in-out;
  /* IE */
  animation: blink normal 2.5s infinite ease-in-out;
  /* Opera */ }

@keyframes blink {
  0% {
    color: #3f86b4; }
  50% {
    color: rgba(63, 134, 180, 0.5); }
  100% {
    color: #3f86b4; } }
@-webkit-keyframes blink {
  0% {
    color: #3f86b4; }
  50% {
    color: rgba(63, 134, 180, 0.5); }
  100% {
    color: #3f86b4; } }
.message {
  display: inline;
  float: left;
  width: 960px;
  margin: 0 0px;
  color: #fff;
  padding: 15px 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); }

div.info {
  background-color: #4ea5cd; }

div.error {
  background-color: #de4343; }

div.warning {
  background-color: #eaaf51; }

div.success {
  background-color: #61b832; }

.message h3 {
  margin: 0 0 5px 15px;
  color: #fff; }

.message p {
  margin: 0; }

@keyframes animate-bg {
  from {
    background-position: 0 0; }
  to {
    background-position: -80px 0; } }
.tabs ul {
  display: inline-block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ccc;
  width: 100%; }
  .tabs ul li {
    display: inline-block;
    margin: 0 0 0 6px;
    padding: 0;
    position: relative;
    top: 1px; }
    .tabs ul li a {
      display: block;
      font-weight: bold;
      border: 1px solid #ccc;
      border-bottom: none;
      padding: 6px 12px;
      color: #666;
      text-decoration: none;
      background-color: #eee;
      box-shadow: inset 0 -7px 7px -7px rgba(0, 0, 0, 0.1);
      transition: background-color 0.5s ease-in-out;
      transition: color 0.5s ease-in-out; }
      .tabs ul li a:hover {
        background-color: #f8f8f8;
        color: #333; }
    .tabs ul li.active a {
      background-color: #fff;
      color: #2e678b;
      border-bottom: 1px solid #fff;
      box-shadow: none; }

ul.tlist {
  display: inline-block;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-type: none; }
  ul.tlist li {
    display: inline-block;
    margin: 0 9px 0 0;
    padding: 0; }

ul.slist {
  list-style-type: none;
  padding: 0; }
  ul.slist li {
    margin-left: 12px; }
    ul.slist li.discrete {
      margin: 9px 0 0 0 !important;
      color: #104881; }

li.check label {
  display: block;
  margin-left: 12px;
  vertical-align: top; }
li.check input {
  float: left;
  margin-left: -12px;
  margin-top: 5px;
  vertical-align: top; }

.multiselect {
  margin-bottom: 12px; }

/*# sourceMappingURL=style.css.map */
