input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
input[type="url"],
#card-element,
.CodeMirror {
  border: 1px #AAA solid;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: inherit;
  margin: 0;
  padding: 6px;
  width: 100%;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  input[type="email"],
  input[type="text"],
  input[type="number"],
  input[type="password"],
  input[type="url"],
  #card-element,
  .CodeMirror {
    padding: 10px;
  }
}
input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
input[type="url"] {
  /* Turn off the inner shadow and other styles on input fields. */
  -webkit-appearance: none;
}
#content .errorlist,
#content .has-errors {
  color: #DD0000;
}
#content .errorlist {
  margin: 0;
  padding: 0;
}
#content .errorlist li {
  display: block;
  font-weight: normal;
  margin: 0 0 1em 0;
}
#content .form-wrapper {
  /*
     * Because of the complexity of decent layouts on CSS, we do a bunch of
     * things below to get the form and labels to align nicely. However, the
     * browser ends up rendering the input fields past the allocated area on
     * the page, and into the #content padding.
     *
     * To make this at least appear correct, we need to add back the
     * @labels-margin-right and enable border-box sizing to the fields.
     */
  margin: 0 1em 0 0;
  /*
     * IE7 doesn't like what we're trying to pull, and it doesn't work so
     * well on mobile, so change the layout so that we're more vertical.
     */
  margin-left: 17em;
  margin-right: 1em;
  /*
   * IE7 doesn't like what we're trying to pull, and it doesn't work so
   * well on mobile, so change the layout so that we're more vertical.
   */
}
#content .form-wrapper.vertical-form,
.ie7 #content .form-wrapper {
  margin: 0;
}
#content .form-wrapper.vertical-form form fieldset > p,
.ie7 #content .form-wrapper form fieldset > p {
  margin-left: 0;
}
#content .form-wrapper.vertical-form form > .field-row:first-child,
.ie7 #content .form-wrapper form > .field-row:first-child {
  margin-top: 0;
}
#content .form-wrapper.vertical-form form > .field-row:first-child label,
.ie7 #content .form-wrapper form > .field-row:first-child label {
  margin-top: 0;
}
#content .form-wrapper.vertical-form form .field-row,
.ie7 #content .form-wrapper form .field-row {
  overflow: visible;
  text-align: left;
}
#content .form-wrapper.vertical-form form .field-row > label,
.ie7 #content .form-wrapper form .field-row > label {
  color: black;
  display: block;
  font-weight: normal;
  margin: 1.5em 0 0.5em 0.5em;
  text-align: left;
}
#content .form-wrapper.vertical-form form .field-row > label,
.ie7 #content .form-wrapper form .field-row > label,
#content .form-wrapper.vertical-form form .field-row > .help,
.ie7 #content .form-wrapper form .field-row > .help {
  /*
             * We use pixels in order to align these, since both use
             * different font sizes.
             */
  margin-left: 5px;
}
#content .form-wrapper.vertical-form form .field-row textarea,
.ie7 #content .form-wrapper form .field-row textarea,
#content .form-wrapper.vertical-form form .field-row ul,
.ie7 #content .form-wrapper form .field-row ul,
#content .form-wrapper.vertical-form form .field-row .CodeMirror,
.ie7 #content .form-wrapper form .field-row .CodeMirror {
  display: block;
}
#content .form-wrapper.vertical-form form fieldset > p,
.ie7 #content .form-wrapper form fieldset > p {
  margin-left: 0;
}
#content .form-wrapper.vertical-form form .field-inputs,
.ie7 #content .form-wrapper form .field-inputs {
  margin-right: 0;
}
#content .form-wrapper.vertical-form form .field-row,
.ie7 #content .form-wrapper form .field-row {
  margin: 0.5em 0;
}
#content .form-wrapper.vertical-form form .field-row > label,
.ie7 #content .form-wrapper form .field-row > label {
  width: auto;
}
body.has-sidebar #content .form-wrapper.vertical-form form .field-row,
body.has-sidebar .ie7 #content .form-wrapper form .field-row {
  margin-right: 0;
}
#content .form-wrapper.vertical-form form .field-row .errorlist,
.ie7 #content .form-wrapper form .field-row .errorlist {
  margin-left: 0;
}
#content .form-wrapper form fieldset {
  border: 0;
  margin: 2em 0 0 0;
  padding: 0;
}
#content .form-wrapper form fieldset:first-child {
  margin-top: 0;
}
#content .form-wrapper form fieldset > p {
  color: #777777;
}
#content .form-wrapper form h3 {
  margin-top: 0;
  font-size: 120%;
  font-weight: normal;
}
#content .form-wrapper form .buttons-row {
  margin-top: 0.5em;
}
#content .form-wrapper form .buttons-row .btn {
  font-size: 11pt;
  margin-left: 0;
  -webkit-appearance: none;
}
#content .form-wrapper form .field-row {
  margin: 0 0 1em 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  /* Restore styles overridden above. */
}
#content .form-wrapper form .field-row > label {
  display: inline-block;
  font-weight: bold;
  margin: 0.4em 1em 0 0;
  vertical-align: top;
  text-align: right;
}
.ie7 #content .form-wrapper form .field-row > label {
  display: inline;
  zoom: 1;
}
#content .form-wrapper form .field-row > *,
#content .form-wrapper form .field-row .field-inputs * {
  white-space: normal;
}
#content .form-wrapper form .field-row select {
  margin-top: 0.5em;
}
#content .form-wrapper form .field-row textarea,
#content .form-wrapper form .field-row .CodeMirror {
  display: inline-block;
}
.ie7 #content .form-wrapper form .field-row textarea,
.ie7 #content .form-wrapper form .field-row .CodeMirror {
  display: inline;
  zoom: 1;
}
#content .form-wrapper form .field-row ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ie7 #content .form-wrapper form .field-row ul {
  display: inline;
  zoom: 1;
}
#content .form-wrapper form .field-row ul li {
  list-style: none;
  margin: 2em 0 0 0;
  padding: 0;
}
#content .form-wrapper form .field-row ul li:first-child {
  margin-top: 0.4em;
}
#content .form-wrapper form .field-row ul li p {
  margin-bottom: 0;
}
#content .form-wrapper form .field-row ul li .radio-item-description {
  color: #777777;
  font-size: 90%;
  margin-left: 2em;
  margin-bottom: 0.5em;
}
#content .form-wrapper form .field-row ul li .radio-item-description a {
  font-weight: normal;
}
#content .form-wrapper form .field-row ul li .radio-item-description a:hover {
  text-decoration: underline;
}
#content .form-wrapper form .field-row .CodeMirror {
  margin: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#content .form-wrapper form .field-row .selectboxit-container .selectboxit-options {
  display: none;
}
#content .form-wrapper form .field-row .selectboxit-container .selectboxit-options .selectboxit-option {
  margin: 0;
}
#content .form-wrapper form .field-row .help {
  color: #333;
  margin: 0 0 0.5em 0;
  font-size: 80%;
}
#content .form-wrapper form .field-row .errorlist {
  display: block;
  margin: 2em 0 0 0;
}
#content .form-wrapper form .field-row .errorlist li {
  margin: 0.5em 0;
}
#content .form-wrapper form .field-row-radio-select {
  color: #333;
}
#content .form-wrapper form .field-row-radio-select ul {
  margin: 1em 0 2em 0;
}
#content .form-wrapper form .field-row-radio-select ul li {
  margin: 0;
  padding: 0;
}
#content .form-wrapper form .field-row-radio-select ul li label {
  border: 1px #CCC solid;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  display: block;
  margin: 0.5em 0;
  padding: 6px;
}
#content .form-wrapper form .field-row-radio-select ul li label .radio-value {
  display: inline-block;
  vertical-align: text-top;
}
#content .form-wrapper form .field-row-radio-select ul li label .radio-value p {
  color: green;
  font-size: 90%;
}
#content .form-wrapper form .field-row-hidden {
  display: none;
}
#content .form-wrapper form .field-inputs {
  display: inline-block;
}
.ie7 #content .form-wrapper form .field-inputs {
  display: inline;
  zoom: 1;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .form-wrapper form fieldset > p {
    margin-left: 0;
  }
  #content .form-wrapper form > .field-row:first-child {
    margin-top: 0;
  }
  #content .form-wrapper form > .field-row:first-child label {
    margin-top: 0;
  }
  #content .form-wrapper form .field-row {
    overflow: visible;
    text-align: left;
  }
  #content .form-wrapper form .field-row > label {
    color: black;
    display: block;
    font-weight: normal;
    margin: 1.5em 0 0.5em 0.5em;
    text-align: left;
  }
  #content .form-wrapper form .field-row > label,
  #content .form-wrapper form .field-row > .help {
    /*
             * We use pixels in order to align these, since both use
             * different font sizes.
             */
    margin-left: 5px;
  }
  #content .form-wrapper form .field-row textarea,
  #content .form-wrapper form .field-row ul,
  #content .form-wrapper form .field-row .CodeMirror {
    display: block;
  }
  #content .form-wrapper form .field-row {
    margin-top: 1em;
  }
}
#content .form-wrapper form .field-inputs {
  margin-right: 18em;
  position: relative;
}
#content .form-wrapper form .field-inputs .fa {
  color: #4C451D;
  width: 16px;
  text-align: center;
  font-size: 16px;
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}
#content .form-wrapper form .field-inputs .fa + input:first-of-type,
#content .form-wrapper form .field-inputs .fa + .multifield-input input:first-of-type {
  padding-left: 32px;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .form-wrapper form .field-inputs .fa {
    font-size: 19px;
    top: 10px;
    left: 10px;
  }
  #content .form-wrapper form .field-inputs .fa + input:first-of-type,
  #content .form-wrapper form .field-inputs .fa + .multifield-input input:first-of-type {
    padding-left: 39px;
  }
}
#content .form-wrapper form .field-inputs .multifield-input {
  border: 1px #AAA solid;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  width: 100%;
}
#content .form-wrapper form .field-inputs .multifield-input input,
#content .form-wrapper form .field-inputs .multifield-input select {
  background: transparent;
  border: 0;
  margin: 0;
}
#content .form-wrapper form .field-inputs .multifield-input .selectboxit-btn {
  background: transparent;
  border: 0;
  -moz-border-radius: 0 6px 6px 0;
  -webkit-border-radius: 0 6px 6px 0;
  border-radius: 0 6px 6px 0;
}
#content .form-wrapper form .field-row {
  margin-left: -17em;
}
#content .form-wrapper form .field-row > label {
  width: 16em;
}
body.has-sidebar #content .form-wrapper form .field-row {
  margin-right: 16em;
  overflow: visible;
}
#content .form-wrapper form .field-row .errorlist {
  margin-left: 17.5em;
}
#content .form-wrapper.vertical-form,
.ie7 #content .form-wrapper {
  margin: 0;
}
#content .form-wrapper.vertical-form form fieldset > p,
.ie7 #content .form-wrapper form fieldset > p {
  margin-left: 0;
}
#content .form-wrapper.vertical-form form .field-inputs,
.ie7 #content .form-wrapper form .field-inputs {
  margin-right: 0;
}
#content .form-wrapper.vertical-form form .field-row,
.ie7 #content .form-wrapper form .field-row {
  margin: 0.5em 0;
}
#content .form-wrapper.vertical-form form .field-row > label,
.ie7 #content .form-wrapper form .field-row > label {
  width: auto;
}
body.has-sidebar #content .form-wrapper.vertical-form form .field-row,
body.has-sidebar .ie7 #content .form-wrapper form .field-row {
  margin-right: 0;
}
#content .form-wrapper.vertical-form form .field-row .errorlist,
.ie7 #content .form-wrapper form .field-row .errorlist {
  margin-left: 0;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .form-wrapper {
    margin: 0;
  }
  #content .form-wrapper form fieldset > p {
    margin-left: 0;
  }
  #content .form-wrapper form .field-inputs {
    margin-right: 0;
  }
  #content .form-wrapper form .field-row {
    margin: 0.5em 0;
  }
  #content .form-wrapper form .field-row > label {
    width: auto;
  }
  body.has-sidebar #content .form-wrapper form .field-row {
    margin-right: 0;
  }
  #content .form-wrapper form .field-row .errorlist {
    margin-left: 0;
  }
}
#content .selectboxit-container * {
  font-family: inherit;
  font-size: inherit;
}
#content .selectboxit-container .selectboxit-options {
  border-color: #AAA;
  -moz-border-radius: 0 0 6px 6px;
  -webkit-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
#content .selectboxit-container .selectboxit-options a {
  font-weight: normal;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .selectboxit-container span,
  #content .selectboxit-container .selectboxit-options a {
    height: 35px;
    line-height: 35px;
  }
}
.CodeMirror {
  padding: 0;
  white-space: inherit !important;
}
.CodeMirror .CodeMirror-lines {
  padding: 6px 0;
}
.CodeMirror .CodeMirror-lines pre {
  padding: 0 6px;
}
/* Sales-related forms */
#card-errors {
  color: #DD0000;
  margin: 1em 0;
}
#purchase-summary {
  line-height: 2em;
  margin-top: 2em;
}
#purchase-summary label {
  display: inline-block;
  font-size: 110%;
  vertical-align: top;
}
#purchase-summary #purchase-total {
  color: green;
  display: inline-block;
  font-size: 120%;
  line-height: 1.5;
  margin-left: 0.5em;
}
#purchase-summary #purchase-total .purchase-total-extra {
  font-size: 80%;
}

body {
  background: #494949;
  color: black;
  font-family: Verdana, Arial, Helvetica, Sans-Serif;
  font-size: 9pt;
  margin: 0;
}
a {
  color: #0000EE;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* For browsers that don't support HTML5, we need to default the display. */
footer,
header,
nav {
  display: block;
  margin: 0;
  padding: 0;
}
#page-wrapper > header {
  background: #DAEBFF;
  border-bottom: 1px #999999 solid;
  display: block;
  height: 60px;
  line-height: 60px;
  position: relative;
  vertical-align: middle;
}
#page-wrapper > header nav {
  display: block;
  float: right;
  font-size: 16px;
  height: 60px;
}
#page-wrapper > header nav a {
  display: inline-block;
  color: #444444;
  padding: 0 1.3em;
  font-weight: normal;
}
.ie7 #page-wrapper > header nav a {
  display: inline;
  zoom: 1;
}
#page-wrapper > header #branding {
  color: black;
  display: block;
  margin-right: 2em;
  font-size: 24px;
  white-space: nowrap;
}
#page-wrapper > header #branding a {
  color: #333333;
}
#page-wrapper > header #branding a:hover {
  text-decoration: none;
}
#page-wrapper > header #branding h1 {
  background: transparent;
  border: 0;
  display: inline;
  font-size: inherit;
  font-weight: normal;
  margin: 0 0 0 80px;
  padding: 0;
  overflow: visible;
}
#page-wrapper > header #branding img {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #page-wrapper > header {
    height: auto;
  }
  #page-wrapper > header nav {
    font-size: 12px;
    float: none;
    height: auto;
    line-height: 3em;
    padding-top: 80px;
    text-align: center;
  }
  #page-wrapper > header nav a {
    padding: 0 0.5em;
  }
  #page-wrapper > header #branding {
    position: absolute;
    top: 0;
    height: 70px;
    width: 100%;
    margin: 0.5em 0;
    text-align: center;
  }
  #page-wrapper > header #branding h1 {
    margin-left: 0;
  }
  #page-wrapper > header #branding img {
    margin-left: 0;
    position: relative;
    vertical-align: middle;
    top: 0;
    left: 0;
    width: 50px;
    height: auto;
  }
}
h1 {
  margin: 2em 0 1em 0;
  font-size: 16pt;
  font-weight: normal;
}
h1:first-child {
  margin-top: 0;
}
h2 {
  margin-top: 3em;
  font-size: 13pt;
  font-weight: normal;
}
#content > h2:first-child {
  margin-top: 0;
}
h3 {
  margin-top: 2.5em;
  margin-bottom: 0;
  font-size: 10pt;
  font-weight: bold;
}
h4 {
  margin-top: 3em;
  margin-bottom: 0;
  font-size: 9pt;
  font-weight: bold;
  color: #98753e;
}
img {
  border: 0;
}
pre {
  background: #F6FCFF;
  border: 1px #A1A5AD solid;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  margin: 1.5em 0;
  overflow: auto;
  padding: 0.8em;
}
blockquote {
  border-left: 2px #cacdc6 solid;
  line-height: 2em;
  margin-left: 0;
  padding-left: 1em;
}
.gravatar,
.gravatar-retina {
  float: left;
  margin-right: 1em;
}
.paginator {
  margin-top: 2em;
  text-align: center;
}
.paginator a {
  border: 1px #aaada6 solid;
  color: black;
  font-weight: normal;
  padding: 0.2em 0.5em;
}
.paginator a:hover {
  background: #e6e6e6;
  text-decoration: none;
}
.paginator .current-page {
  font-weight: bold;
  padding: 0.2em 0.5em;
}
.paginator .page-count {
  margin-left: 1em;
}
#account_banner {
  background: #DAEBFF;
  color: #555;
  margin: 0;
  padding: 0.6em 1.5em;
  -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
#account_banner #account_actions {
  float: right;
}
#account_banner a {
  color: inherit;
  font-weight: normal;
  margin-left: 1em;
}
#account_banner ul {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}
#account_banner ul:first-child li:first-child {
  margin-left: 0;
}
#account_banner ul li {
  display: inline;
  margin: 0 0 0 1em;
  padding: 0;
}
#container #auth_container {
  margin: 2em 0 0;
  text-align: center;
}
#container #auth_container input[type="email"],
#container #auth_container input[type="password"],
#container #auth_container input[type="text"] {
  width: 16em;
}
#container #auth_container #messages {
  margin: 0 auto;
  text-align: left;
  width: 40em;
}
#container #auth_container .auth-button-container {
  width: 16em;
}
#container #auth_container .auth-button-container input {
  font-size: 120%;
  margin: 0;
  padding: 0.6em;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#container #auth_container .auth-form-row {
  clear: both;
  margin: 1.5em 0;
  padding-left: 16em;
}
#container #auth_container .auth-form-row.auth-field-row {
  padding-left: 0;
}
#container #auth_container .auth-form-row.auth-field-row label {
  float: left;
  font-weight: normal;
  padding: 0.5em 1em 0.5em 0.5em;
  text-align: right;
  width: 16em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#container #auth_container .auth-form-row.auth-field-row .errorlist {
  display: block;
  list-style: none;
  margin: 0.5em 0 0 16em;
  width: 16em;
}
#container #auth_container .auth-form-row.auth-field-row .errorlist li {
  font-weight: normal;
  font-size: 9pt;
}
#container #auth_container .auth-header {
  margin: 0 0 1em 0;
}
#container #auth_container .auth-header h1 {
  font-size: 120%;
  margin: 1em 0;
  padding: 0;
}
#container #auth_container .auth-header p {
  color: #444;
  margin: 1em 0;
}
#container #auth_container .auth-header .errorbox {
  display: inline-block;
  text-align: center;
}
#container #auth_container .auth-header .errorbox .errorlist {
  text-align: left;
}
#container #auth_container .auth-links {
  list-style: none;
  margin-top: 3em;
  text-align: center;
}
#container #auth_container .auth-links a {
  font-weight: normal;
}
#container #auth_container .auth-section {
  display: inline-block;
  margin: 0 2em;
  text-align: left;
  vertical-align: top;
}
#container #auth_container .auth-section.main-auth-section {
  margin-left: -14em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #container #auth_container .auth-form-row {
    padding-left: 0;
  }
  #container #auth_container .auth-form-row.auth-field-row label {
    display: block;
    float: none;
    text-align: left;
  }
  #container #auth_container .auth-section {
    margin: 0;
  }
  #container #auth_container .auth-section.main-auth-section {
    margin-left: 0;
  }
}
#container {
  position: relative;
  /*
   * We set the background here to the sidebar background in case we're showing
   * a sidebar. This is needed because the sidebar will float and may not reach
   * the full height of the container.
   */
  background: #FAFAFA;
}
#content {
  background: #FEFEFE;
  display: block;
  min-height: 20em;
  padding: 60px;
  position: relative;
  font-size: 13px;
  zoom: 1;
}
#content:before,
#content:after {
  display: table;
  content: "";
}
#content:after {
  clear: both;
}
body.has-sidebar #content {
  border-right: 1px #f0f0f0 solid;
}
#content a {
  font-weight: bold;
}
#content a:hover {
  text-decoration: none;
}
#content dl dd {
  margin-left: 10px;
}
#content dl dt {
  margin-bottom: 6px;
}
#content ol {
  margin: 1em 0 2em 0;
}
#content ol li {
  margin: 1em 0;
}
#content p {
  line-height: 1.5em;
  text-align: justify;
}
#content td ul:first-child,
#content th ul:first-child {
  margin-top: 0;
}
#content ul {
  list-style: square;
  margin: 1em 0 2em 0;
}
#content ul li {
  margin: 1em 0;
}
#content ul li .testimonial {
  margin-top: 1em;
}
#content .banner {
  background: #FFFFE9;
  border: 1px #acac00 solid;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: block;
  font-weight: normal;
  margin: 0 0 2em 0;
  padding: 1em 1.5em;
  overflow: hidden;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
#content .banner:hover {
  text-decoration: none;
}
#content .banner:hover h2 {
  text-decoration: underline;
}
#content .banner h2 {
  font-size: 130%;
  color: #0000CC;
  line-height: 29px;
  font-weight: bold;
  margin: 0 0 0.8em 0;
}
#content .banner p {
  color: #111;
  line-height: 20px;
  margin: 1em 0 0 0;
}
#content .buttons {
  margin: 2em 0;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content {
    padding: 20px;
  }
  #content ul {
    padding-left: 1.5em;
  }
  #content ul li .testimonial {
    font-size: 80%;
    margin-top: 2em;
    margin-left: 0;
  }
}
#footer_mailing_list {
  background: #FFF6D0;
  border-top: 1px #EAD8A0 solid;
  padding: 1em;
  text-align: center;
}
#footer_mailing_list p {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  font-size: 110%;
  margin: 0.5em;
}
#footer_mailing_list .email-field {
  display: inline-block;
  margin: 0.5em;
}
#footer_mailing_list .email-field button {
  margin-left: 0.5em;
  padding: 0.5em 1em;
}
#footer_mailing_list .email-field input {
  margin: 0;
  width: 20em;
}
footer {
  background: #494949;
  border-top: 2px #E2E2E2 solid;
  text-align: center;
}
footer:before {
  /*
     * Keeping it simple with hex codes and without gradient start/stop
     * locations prevents a Syntax Error in IE7 that breaks the page's CSS.
     */
  background-color: #494949;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#222222), to(#494949));
  background-image: -moz-linear-gradient(top, #222222, #494949);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #222222), color-stop(100%, #494949));
  background-image: -webkit-linear-gradient(top, #222222, #494949);
  background-image: -o-linear-gradient(top, #222222, #494949);
  background-image: linear-gradient(top, #222222, #494949);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#494949', GradientType=0);
  height: 20px;
  display: block;
  content: '';
}
footer a {
  color: black;
  font-weight: normal;
}
footer nav {
  margin: 0;
  padding: 3em 0 0 0;
}
footer nav dl {
  display: inline-block;
  margin: 0 3em;
  text-align: left;
  vertical-align: top;
}
.ie7 footer nav dl {
  display: inline;
  zoom: 1;
}
footer nav dl dt {
  color: white;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
footer nav dl dd {
  margin: 1.5em 0;
  padding: 0;
}
footer nav dl dd a {
  color: #DDDDDD;
  font-size: 12px;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  footer nav {
    padding: 0;
  }
  footer nav dl {
    display: block;
    margin: 0 0 0.5em 0;
  }
  footer nav dl.opened dt {
    border-bottom: 1px black solid;
  }
  footer nav dl.opened dt:before {
    content: "▾ ";
  }
  footer nav dl.opened dd {
    max-height: 40px;
  }
  footer nav dl.opened dd:last-child {
    border-bottom: 1px black solid;
  }
  footer nav dl dt {
    border-top: 0;
    margin: 0;
    padding: 0.5em;
    color: #DDD;
    cursor: pointer;
    display: block;
  }
  footer nav dl dt:before {
    display: inline-block;
    content: "▸ ";
    padding-left: 0.5em;
    padding-right: 0.2em;
    width: 16px;
  }
  footer nav dl dd {
    background: #333;
    display: block;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.25s linear;
    -moz-transition: max-height 0.25s linear;
    transition: max-height 0.25s linear;
  }
  footer nav dl dd a {
    color: #BBB;
    display: inline-block;
    font-size: 120%;
    padding: 1em 0 1em 2.5em;
  }
}
footer .copyright {
  color: #999999;
  font-size: 11px;
  margin: 0;
  padding: 3em 0 2em 0;
}
footer .copyright a {
  color: #DDDDDD;
}
#messages {
  margin: 0 0 2em 0;
  padding: 0;
}
#messages li {
  background: #FFC 5px 0.3em no-repeat;
  border: 1px solid #cccc00;
  color: #333;
  display: block;
  font-size: 12px;
  margin: 0 0 3px 0;
  padding: 4px 5px 4px 25px;
}
#messages li.success {
  background-image: url("../images/success.b090772dc71a.png");
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #messages li.success {
    background-image: url("../images/success@2x.93095bc32844.png");
    background-size: 16px 16px;
  }
}
#navbar-deco {
  width: 100%;
  height: 6em;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#navbar-groups {
  position: relative;
  z-index: 1;
}
#page-header {
  clear: both;
  /*
   * Ensure that this is always above #content and #sidebar, so that the
   * shadow will appear above it. Otherwise, it will be behind #content.
   */
  position: relative;
  z-index: 1;
}
#page-header > h1,
#page-header > header {
  background: #FFFFEE;
  border: 0;
  border-bottom: 1px #CCCCCC solid;
  margin: 0;
}
#page-header header h1 {
  display: inline-block;
  margin: 0;
}
#page-header h1 {
  font-size: 14pt;
  font-weight: normal;
  padding: 11px 20px 11px 80px;
}
#page-header h1 a {
  color: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #page-header h1 {
    padding: 10px 20px 10px 20px;
  }
}
#page-header nav {
  display: inline-block;
  float: right;
  height: 45px;
  margin-bottom: 1em;
  vertical-align: middle;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #page-header nav {
    display: block;
    float: none;
    height: auto;
    text-align: center;
  }
}
#page-header nav a {
  font-weight: normal;
  font-size: 14px;
  color: black;
  display: inline-block;
  padding: 1em 20px;
}
#page-header nav a.active {
  background: #FFFFFF;
  border-left: 1px #DDDDD0 solid;
  border-right: 1px #DDDDD0 solid;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #page-header nav a {
    font-size: 12px;
    padding: 0.8em 1em;
  }
  #page-header nav a.active {
    border-bottom: 1px #DDDDD0 solid;
  }
}
#page-social-badges {
  float: right;
  padding-right: 1.5em;
  padding-top: 2px;
  overflow: hidden;
  width: 16em;
}
#page-social-badges #___plusone_0 {
  float: right;
  width: 90px !important;
}
#page-social-badges .fb-like {
  float: right;
  width: 81px;
  height: 23px;
  margin-right: 2px;
}
#promotion-banner {
  background: #FFFFBB;
  border-bottom: 1px #DDDD66 solid;
  font-size: 110%;
  line-height: 2;
  padding: 0.8em;
  text-align: center;
}
#promotion-banner p {
  padding: 0;
  margin: 0;
}
#search-results iframe {
  width: 100%;
}
#sidebar {
  display: block;
  float: right;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #sidebar {
    float: none;
    position: relative;
    z-index: 2;
  }
}
#sidebar-button {
  display: none;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #sidebar-button {
    background: #DDDDDD;
    border-bottom: 1px #CCCCCC solid;
    color: #333;
    display: inline-block;
    padding: 0.5em 1em;
    text-align: right;
    position: relative;
    right: 0;
    float: right;
    z-index: 3;
    -moz-border-radius: 0 0 0 10px;
    -webkit-border-radius: 0 0 0 10px;
    border-radius: 0 0 0 10px;
  }
  #sidebar-button:hover {
    text-decoration: none;
  }
  #sidebar-button.active {
    background: #FCFCFC;
    border-color: #E0E0E0;
  }
}
#sidebar-content {
  font-size: 11px;
  padding: 1.5em;
  /*
   * If the <li> is the first displayed item in this section of the
   * sidebar, don't add a margin above it.
   */
}
#sidebar-content a {
  font-weight: normal;
  color: #4444BB;
}
#sidebar-content a:hover {
  text-decoration: underline;
}
#sidebar-content p {
  line-height: 1.5em;
}
 > ul #sidebar-content:first-child li:first-child {
  margin-top: 0;
}
#sidebar-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#sidebar-content ul li {
  margin: 1em 0;
}
#sidebar-content ul ul {
  padding-left: 1.5em;
  padding-right: 0;
  list-style: square;
}
#sidebar-content .section {
  margin-bottom: 20px;
}
#sidebar-content .section:first-child .title {
  border-top: 0;
  margin-top: 0;
}
#sidebar-content .section .title {
  background: transparent;
  border: 0;
  color: black;
  font-size: 14px;
  font-weight: normal;
  margin: 2em 0 0 0;
  padding: 0;
}
#content .screenshot-slides {
  zoom: 1;
  display: none;
  margin-bottom: 4em;
  overflow: visible !important;
}
#content .screenshot-slides:before,
#content .screenshot-slides:after {
  display: table;
  content: "";
}
#content .screenshot-slides:after {
  clear: both;
}
#content .screenshot-slides img {
  /*
     * slides.js sets this, but it blurs the image on Chrome, and
     * doesn't seem necessary.
     */
  -webkit-backface-visibility: visible !important;
}
#content .screenshot-slides .slidesjs-container {
  border: 1px #CCCCCC solid;
}
#content .screenshot-slides .slidesjs-navigation {
  color: #333333;
  font-family: Helvetica;
  font-size: 14pt;
  margin-left: 0.3em;
}
#content .screenshot-slides .slidesjs-navigation:hover {
  text-decoration: none;
}
#content .screenshot-slides .slidesjs-pagination {
  float: right;
  list-style: none;
  margin: 6px 0 0;
}
#content .screenshot-slides .slidesjs-pagination li {
  float: left;
  margin: 0 1px;
}
#content .screenshot-slides .slidesjs-pagination li a {
  display: block;
  width: 13px;
  height: 0;
  padding-top: 13px;
  background: url("../images/slides-pagination.6fcbf012296b.png") 0 0;
  float: left;
  overflow: hidden;
}
#content .screenshot-slides .slidesjs-pagination li a.active,
#content .screenshot-slides .slidesjs-pagination li a:hover.active {
  background-position: 0 -13px;
}
#content .screenshot-slides .slidesjs-pagination li a.hover {
  background-position: 0 -26px;
}
/*
 * Magnific Popup zoom animation styles.
 */
.mfp-with-zoom.mfp-bg,
.mfp-with-zoom .mfp-container {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-backface-visibility: hidden;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-removing.mfp-bg,
.mfp-with-zoom.mfp-removing .mfp-container {
  opacity: 0;
}
/*
 * Set the default width of the sidebar for the page.
 */
#sidebar {
  width: 300px;
}
body.has-sidebar #content {
  margin-right: 300px;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #sidebar {
    display: none;
    width: auto;
  }
  body.has-sidebar #content {
    margin-right: 0;
    padding-top: 4em;
  }
}

#downloads-os-selector {
  background: #FAFAFA;
  border: 1px #BBBBBB solid;
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
#downloads-os-selector #downloads-os-list {
  background: #FFFFE9;
  border-bottom: 1px #BBBBBB solid;
  -moz-border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
#downloads-os-selector #downloads-os-list li {
  display: inline-block;
  border-bottom: 1px #BBBBBB solid;
  border-left: 1px transparent solid;
  border-right: 1px transparent solid;
  margin: 0;
  padding: 0;
  margin-bottom: -1px;
}
.ie7 #downloads-os-selector #downloads-os-list li {
  display: inline;
  zoom: 1;
}
#downloads-os-selector #downloads-os-list li:first-child {
  -moz-border-radius: 8px 0 0 0;
  -webkit-border-radius: 8px 0 0 0;
  border-radius: 8px 0 0 0;
}
#downloads-os-selector #downloads-os-list li:first-child.active {
  border-left-color: transparent;
}
#downloads-os-selector #downloads-os-list li.active {
  background: #FAFAFA;
  border-color: #BBBBBB;
  border-bottom: 1px #FAFAFA solid;
}
#downloads-os-selector #downloads-os-list li a {
  display: inline-block;
  color: black;
  font-size: 120%;
  font-weight: normal;
  padding: 0.6em;
}
.ie7 #downloads-os-selector #downloads-os-list li a {
  display: inline;
  zoom: 1;
}
#downloads-os-selector #downloads-os-list li label {
  cursor: pointer;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #downloads-os-selector #downloads-os-list li.active label {
    display: inline-block;
  }
  #downloads-os-selector #downloads-os-list li label {
    display: none;
  }
}
#downloads-os-selector .download-os {
  padding: 1.5em;
}
#downloads-os-selector .download-os h2 {
  margin-bottom: 1em;
}
#downloads-os-selector .download-os h2:first-child {
  margin-top: 0;
}
#downloads-os-selector .download-os p:last-child,
#downloads-os-selector .download-os pre:last-child,
#downloads-os-selector .download-os .buttons:last-child {
  margin-bottom: 0;
}
#downloads-pane {
  margin-top: 3em;
  position: relative;
}
#downloads-pane .downloads-section {
  margin: 1em 0;
}
#downloads-pane .downloads-section h2:first-child {
  margin-top: 0;
}
#downloads-pane .downloads-section h3 {
  margin-top: 2em;
}
#downloads-pane .downloads-section ul {
  list-style: none;
  margin: 2em 0 0 1em;
  padding: 0;
}
#downloads-pane .downloads-section ul li {
  margin-bottom: 2em;
}
#downloads-pane .downloads-section ul li .product-name {
  font-size: 120%;
}
#downloads-pane .downloads-section ul li .product-version {
  color: #333333;
}
#downloads-pane .downloads-section ul li .release-notes {
  display: block;
  font-weight: normal;
  margin-top: 1em;
}
#downloads-pane #main-downloads {
  margin-right: 24em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #downloads-pane #main-downloads {
    margin-right: 0;
  }
}
#downloads-pane #other-downloads {
  width: 20em;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #downloads-pane #other-downloads {
    position: relative;
    width: auto;
  }
  #downloads-pane #other-downloads h2 {
    margin-top: 3em;
  }
  #downloads-pane #other-downloads .product-name {
    font-size: 100%;
  }
}

#content .integration-header {
  display: table;
  margin-bottom: 3em;
}
#content .integration-header a {
  color: inherit;
}
#content .integration-header a:hover .integration-name {
  text-decoration: underline;
}
#content .integration-header a .integration-summary {
  font-weight: normal;
}
#content .integration-header .fa-heart,
#content .integration-header .integration-icon,
#content .integration-header .integration-info {
  display: table-cell;
}
#content .integration-header .fa-heart {
  color: #D05555;
  font-size: 150%;
  line-height: 48px;
  padding: 0 0.8em;
  vertical-align: top;
  width: 20px;
}
#content .integration-header .integration-icon {
  vertical-align: top;
}
#content .integration-header .integration-info {
  padding-left: 0.8em;
}
#content .integration-header .integration-name {
  color: blue;
  margin: 0.1em 0 0.4em 0;
}
#content .integration-header .integration-summary {
  color: #444;
  font-size: 90%;
  margin: 0;
  text-align: left;
}
#content .integration-list > p {
  margin-top: 0;
}
#content .integration-list ul {
  margin: 3em 0 0 0;
  padding: 0;
}
#content .integration-list ul li {
  list-style: none;
  margin: 0 0 2em 0;
  padding: 0;
}
#content .integration-not-public {
  color: #990000;
  font-weight: bold;
  margin: 0 0 2em 0;
  text-align: center;
}
#content .integration-screenshots {
  float: right;
  list-style: none;
  margin: 0;
  padding: 0;
}
#content .integration-screenshots li {
  margin: 0 0 2em 4em;
  padding: 0;
  text-align: right;
}
#content .integration-screenshots li a {
  border: 1px #AAA solid;
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  outline: 0;
  overflow: hidden;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .integration-screenshots {
    float: none;
    margin: 1em 0;
    text-align: center;
  }
  #content .integration-screenshots li {
    display: inline-block;
    margin: 1em;
  }
}

#content .features-section {
  text-align: center;
}
#content .features-section > img,
#content .features-section > p {
  margin-left: auto;
  margin-right: auto;
}
#content .features-section > p {
  max-width: 47em;
  text-align: justify;
}
#content .features-section > p.intro {
  margin-bottom: 3em;
}
#content .features-section h2 {
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 1em 0;
  padding: 0;
}
#content .features-section h3 {
  color: #777;
  font-size: 15px;
  font-weight: normal;
  margin: 3em 0 1em 0;
  padding: 0;
}
#content .features-section h3 + p {
  margin-top: 3em;
}
#content .features-section h2 + h3 {
  margin-top: 1em;
}
#content .features-section img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features-section img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
#content .features {
  zoom: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  max-width: 72em;
}
#content .features:before,
#content .features:after {
  display: table;
  content: "";
}
#content .features:after {
  clear: both;
}
.ie7 #content .features {
  display: inline;
  zoom: 1;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features {
    padding-left: 0;
  }
}
#content .features li {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 3em 0 0 0;
  display: block;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li {
    padding: 0;
    width: auto;
  }
  #content .features li.text-only .right,
  #content .features li .left,
  #content .features li .center {
    margin-top: 4em;
  }
  #content .features li:first-child.text-only .right,
  #content .features li:first-child .left,
  #content .features li:first-child .center {
    margin-top: 0;
  }
}
#content .features li:first-child {
  border-top: 0;
}
#content .features li h3,
#content .features li p {
  max-width: 100%;
  text-align: left;
}
#content .features li .center,
#content .features li .left,
#content .features li .right {
  vertical-align: top;
  width: 49%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
}
.ie7 #content .features li .center,
.ie7 #content .features li .left,
.ie7 #content .features li .right {
  display: inline;
  zoom: 1;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .center,
  #content .features li .left,
  #content .features li .right {
    display: block;
    width: auto;
  }
}
#content .features li .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 40em;
  width: auto;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .center {
    margin-left: 0;
    width: auto;
  }
}
#content .features li .left {
  padding-right: 2em;
  text-align: right;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .left {
    padding-right: 0;
    width: auto;
  }
}
.ie7 #content .features li .left {
  /*
           * IE7 doesn't support border-box, causing the padding to be factored
           * into the width incorrectly. We need to force a width there. IE8+ is
           * fine.
           */
  width: 430px;
}
#content .features li .list-columns {
  margin: 1em 0;
  text-align: left;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .list-columns {
    width: auto;
    margin-bottom: 2em;
  }
}
#content .features li .list-columns ul {
  float: left;
  padding: 0 50px 0 0;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .list-columns ul {
    float: none;
    padding: 0;
  }
}
#content .features li .list-columns ul:last-child {
  padding-right: 0;
}
#content .features li .list-columns li {
  clear: none;
  border: none;
  list-style: none;
  margin: 0;
  padding: 0.5em 0;
}
#content .features li .right {
  padding-left: 1em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .right {
    padding-left: 0;
  }
}
#content .features li .screenshot {
  text-align: right;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #content .features li .screenshot {
    text-align: center;
  }
}
#content .features li h3 {
  color: #000044;
  font-size: 12pt;
  font-weight: normal;
  margin: 3em 0 0 0;
  padding: 0;
}
#content .features li h3:first-child {
  margin-top: 0;
}
#content .features li h3,
#content .features li p {
  clear: both;
}
#content .features li p {
  color: #444444;
  margin: 1em 0;
  padding: 0;
  text-align: justify;
}

/*
 * Sets the width of the sidebar for the page.
 *
 * On pages with a sidebar, we want to leave enough room on the right of the
 * content area for the sidebar content (which will be floating).
 */
/*
 * Attempts to use a @2x version of the given image when on a Retina display.
 *
 * This is based on retina.less by Zach Dischner: http://retinajs.com/
 */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
.btn,
input[type="button"],
input[type="submit"] {
  background: #4A90E2;
  border: 0;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 10pt;
  font-weight: normal;
  padding: 0.8em 1em;
  line-height: normal;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  transition: 0.1s linear all;
}
.ie7 .btn,
.ie7 input[type="button"],
.ie7 input[type="submit"] {
  display: inline;
  zoom: 1;
}
#content .btn,
#content input[type="button"],
#content input[type="submit"] {
  font-weight: normal;
}
.btn:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  text-decoration: none;
}
.btn:active,
input[type="button"]:active,
input[type="submit"]:active {
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25) 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25) 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25) 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn.disabled,
input[type="button"].disabled,
input[type="submit"].disabled {
  cursor: default;
  background: #666666;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  opacity: 0.65;
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn[disabled],
input[type="button"][disabled],
input[type="submit"][disabled] {
  cursor: default;
  background: #666666;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  opacity: 0.65;
  filter: alpha(opacity=65);
  -moz-opacity: 0.65;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn.large,
input[type="button"].large,
input[type="submit"].large {
  font-size: 130%;
  line-height: normal;
  padding: 9px 14px 9px;
}
.btn.small,
input[type="button"].small,
input[type="submit"].small {
  padding: 7px 9px 7px;
  font-size: 11px;
}
.btn.danger,
input[type="button"].danger,
input[type="submit"].danger {
  color: white !important;
  background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
button.btn::-moz-focus-inner,
input[type=submit].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.landing-page #content {
  background: #FDFDFD;
  padding: 0;
}
.landing-page #content .features-container {
  padding: 60px 0;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  .landing-page #content .features-container {
    padding: 20px 0;
  }
}
.landing-page #content .features-section {
  padding: 60px;
}
.landing-page #content .features-section:nth-child(2n+1) {
  background: #F0F8FF;
  border-top: 1px #D0E4F7 solid;
  border-bottom: 1px #D0E4F7 solid;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  .landing-page #content .features-section {
    padding: 20px;
  }
}
.landing-page #content .features-section .tour-integrations {
  margin: 3em auto 0 auto;
  max-width: 50em;
  text-align: center;
}
.landing-page #content .features-section .tour-integrations ul {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  .landing-page #content .features-section .tour-integrations ul {
    text-align: center;
  }
}
.landing-page #content .features-section .tour-integrations ul li {
  display: inline-block;
  margin: 2em 0;
  padding: 0;
  text-align: center;
  vertical-align: top;
  width: 9em;
}
.landing-page #content .features-section .tour-integrations ul li .integration-name {
  display: block;
  font-weight: normal;
  margin-top: 0.5em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  .landing-page #content .features-section .tour-integrations ul li {
    margin-left: 1em;
    margin-right: 1em;
  }
}
#pitch-container {
  background: #FEFEFE;
  border-bottom: 1px #DDDDDD solid;
  padding-top: 2em;
  position: relative;
  height: 394px;
  overflow: hidden;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch-container {
    height: 195px;
  }
}
#pitch-backdrop {
  background-image: url("../images/tour/whiteboard.db2ab223a551.jpg");
  background-position: left bottom;
  background-repeat: no-repeat;
  width: 538px;
  height: 394px;
  position: absolute;
  left: 50%;
  margin-left: -538px;
  top: 2em;
  z-index: 0;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #pitch-backdrop {
    background-image: url("../images/tour/whiteboard@2x.179cb41f4c73.jpg");
    background-size: 538px 394px;
  }
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch-backdrop {
    background: transparent;
  }
}
#pitch {
  width: 100%;
  max-width: 78em;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch {
    width: auto;
  }
}
#pitch #pitch-text {
  float: right;
  margin-right: 1em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch #pitch-text {
    float: none;
    margin: 0 auto;
    padding: 0;
    width: 300px;
  }
}
#pitch #pitch-text h1 {
  background: 0;
  border: 0;
  font-size: 24px;
  margin-top: 2em;
  padding: 0;
  text-align: left;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch #pitch-text h1 {
    font-size: 14px;
    margin: 0;
  }
}
#pitch #pitch-text p {
  font-size: 18px;
  line-height: 2.5;
  margin: 1em 0 0 2em;
  text-align: left;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch #pitch-text p {
    font-size: 12px;
    line-height: 1.8;
    margin: 1em 0;
  }
}
#pitch #pitch-text .get-button {
  margin: 2.5em 0 0 -1.5em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #pitch #pitch-text .get-button {
    margin: 1.5em 0;
  }
}
#support-image {
  margin-top: 2em;
}
#trusted-by {
  margin: 0 0 2em 0;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #trusted-by {
    display: none;
  }
}
#trusted-by h2 {
  color: inherit;
  margin-bottom: 3em;
  margin-top: 0;
}
#trusted-by-logos {
  background: #F6F6F6;
  border-top: 1px #dddddd solid;
  border-bottom: 1px #dddddd solid;
  margin-top: 3em;
}
#trusted-by-logos .apache-logo {
  display: inline-block;
  background-image: url("../images/tour/users/apache.0d4cbd8bb158.png");
  width: 132px;
  height: 28px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .apache-logo {
    background-image: url("../images/tour/users/apache@2x.1c3275853c80.png");
    background-size: 132px 28px;
  }
}
#trusted-by-logos .cloudera-logo {
  display: inline-block;
  background-image: url("../images/tour/users/cloudera.a586de6de217.png");
  width: 98px;
  height: 18px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .cloudera-logo {
    background-image: url("../images/tour/users/cloudera@2x.1666ab764f17.png");
    background-size: 98px 18px;
  }
}
#trusted-by-logos .linkedin-logo {
  display: inline-block;
  background-image: url("../images/tour/users/linkedin.538d4fda416a.png");
  width: 103px;
  height: 25px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .linkedin-logo {
    background-image: url("../images/tour/users/linkedin@2x.a06369b82339.png");
    background-size: 103px 25px;
  }
}
#trusted-by-logos .mozilla-logo {
  display: inline-block;
  background-image: url("../images/tour/users/mozilla.c80517b2dc8d.png");
  width: 88px;
  height: 23px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .mozilla-logo {
    background-image: url("../images/tour/users/mozilla@2x.164d278e7d86.png");
    background-size: 88px 23px;
  }
}
#trusted-by-logos .platform9-logo {
  display: inline-block;
  background-image: url("../images/tour/users/platform9.5ace6d9ca2a0.png");
  width: 92px;
  height: 39px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .platform9-logo {
    background-image: url("../images/tour/users/platform9@2x.84437a6ae8e2.png");
    background-size: 92px 39px;
  }
}
#trusted-by-logos .tripwire-logo {
  display: inline-block;
  background-image: url("../images/tour/users/tripwire.6dc44cda2ea6.png");
  width: 72px;
  height: 30px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .tripwire-logo {
    background-image: url("../images/tour/users/tripwire@2x.1fb1d3205489.png");
    background-size: 72px 30px;
  }
}
#trusted-by-logos .yelp-logo {
  display: inline-block;
  background-image: url("../images/tour/users/yelp.af5ef069c510.png");
  width: 77px;
  height: 39px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .yelp-logo {
    background-image: url("../images/tour/users/yelp@2x.d80bb55590a9.png");
    background-size: 77px 39px;
  }
}
#trusted-by-logos .more-users {
  display: inline-block;
  background-image: url("../images/tour/users/more-users.acaf2a772895.png");
  width: 12px;
  height: 17px;
  text-indent: -9999px;
  vertical-align: middle;
  margin: 1em 0.8em 1em 0.8em;
  position: relative;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
  #trusted-by-logos .more-users {
    background-image: url("../images/tour/users/more-users@2x.084bbecec456.png");
    background-size: 12px 17px;
  }
}
.testimonial {
  background: transparent url("../images/quote_left.fedb7b6eef02.png") top left no-repeat;
  border: 0;
  margin: 4em 2em;
  padding: 0 0 0 2.5em;
  text-align: justify;
}
.testimonial .quote {
  background: transparent url("../images/quote_right.9e675875b907.png") bottom right no-repeat;
  padding-right: 2em;
}
.testimonial .source {
  margin-top: 0.5em;
  margin-right: 5em;
  text-align: right;
}
#get_started {
  margin: 4em 0 1em 0;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #get_started {
    margin-bottom: 4em;
  }
}
#get_started h1 {
  border: 0;
  background: transparent;
  margin-top: 0;
  text-align: center;
}
#tour h1 {
  margin: 1em 0;
  padding: 0;
  text-align: center;
}
#tour sup {
  font-size: x-small;
}
#tour sup a {
  font-weight: normal;
}
#tour sup,
#tour #footnotes {
  color: #333;
  text-align: left;
}
#tour sup a,
#tour #footnotes a {
  color: #3333FF;
}
#tour #footnotes {
  margin: 0 auto;
  padding-top: 2em;
  max-width: 72em;
}
#tour #footnotes p {
  font-size: x-small;
  margin: 0.5em 0 0 0;
}
.get-button {
  color: white;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  padding: 0.5em 1em;
  background: #4A90E2;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  /* Links are bold by default in #content, which we don't want here. */
}
#content .get-button {
  font-weight: normal;
}
.get-button:hover {
  text-decoration: none;
}

.mailing-list-pane {
  float: left;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  .mailing-list-pane {
    float: none;
    margin-bottom: 3em;
  }
}
.mailing-list-section {
  margin: 0 0 3em 0;
}
.mailing-list-section dd {
  margin: 0 0 2em 0;
}
.mailing-list-section dl {
  list-style: none;
  margin: 2em 0;
  padding: 0;
}
.mailing-list-section dt {
  margin: 1em 0;
  font-size: 110%;
}
.mailing-list-section h2 {
  margin: 0;
}
#announcements {
  width: 26em;
  margin-right: 5em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #announcements {
    width: auto;
    margin: 0;
  }
}
#announcements h2 {
  margin-left: 0.5em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #announcements h2 {
    margin-left: 0;
  }
}
#content ul.mailing-lislts li {
  margin-top: 2em;
}
#mc_embed_signup form {
  background: #F0F0F0;
  border: 1px #CCCCCC solid;
  margin-top: 1em;
  padding: 1.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #mc_embed_signup form {
    background: transparent;
    border: 0;
    padding: 0;
  }
}
#mc_embed_signup input[type="submit"] {
  border: 0;
  clear: none;
  margin: 0;
  font-size: 11pt;
}
#mc_embed_signup .input-group strong {
  color: #333333;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #mc_embed_signup .mc-fields {
    float: none;
    width: 100%;
  }
}
#mc_embed_signup .mc-field-group {
  padding-bottom: 1.5em;
  width: 100%;
}
#mc_embed_signup .mc-field-group input {
  border-color: #CCCCCC;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #mc_embed_signup .mc-field-group {
    width: auto;
  }
}

#content #news_banner {
  color: #E0E0E0;
  float: left;
  margin: 0.5em 0.5em 0.5em 2em;
  vertical-align: middle;
}
#content #news_banner a {
  color: #d7e9fc;
  font-weight: normal;
}
#content #posts {
  display: block;
}
#content #posts > h2 {
  margin-bottom: 2em;
}
#content #posts > h2:first-child {
  margin-top: 0;
}
#content .blog-post {
  position: relative;
  margin-top: 4em;
  min-height: 8em;
}
#content .blog-post:first-child {
  margin-top: 0;
}
#content .blog-post-links {
  margin-left: 2em;
}
#content .blog-post-author {
  color: #555;
  margin-top: 0.5em;
  font-size: 8pt;
}
#content .blog-post-author a {
  font-weight: normal;
}
#content .blog-post-author a:hover {
  text-decoration: underline;
}
#content .blog-post-title {
  font-size: 21px;
  margin-bottom: 0.5em;
}
#content .blog-post-title a {
  border-bottom: 0;
  font-weight: normal;
}
#content .blog-post-contents {
  margin: 2em 0 3em 0;
}
#content .video {
  margin: 2em 0;
  text-align: center;
}

#get_powerpack,
#try_powerpack {
  margin: 3em auto 0 auto;
  width: 52em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #get_powerpack,
  #try_powerpack {
    width: auto;
  }
}
#get_powerpack form .btn,
#try_powerpack form .btn,
#get_powerpack form .field-row,
#try_powerpack form .field-row {
  width: 100%;
}
#get_powerpack form .btn,
#try_powerpack form .btn {
  margin-top: 1em;
}
#get_powerpack .errorlist,
#try_powerpack .errorlist {
  margin: 2em 0;
  padding: 0;
}
#get_powerpack .form-col-1,
#try_powerpack .form-col-1 {
  clear: left;
  float: left;
  width: 24em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #get_powerpack .form-col-1,
  #try_powerpack .form-col-1 {
    float: none;
    width: auto;
  }
}
#get_powerpack .form-col-1 p,
#try_powerpack .form-col-1 p {
  margin-bottom: 1.5em;
}
#get_powerpack .form-col-1 p:first-child,
#try_powerpack .form-col-1 p:first-child {
  margin-top: 2.5em;
}
#get_powerpack .form-col-2,
#try_powerpack .form-col-2 {
  float: right;
  width: 24em;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #get_powerpack .form-col-2,
  #try_powerpack .form-col-2 {
    float: none;
    width: auto;
  }
}
#get_powerpack .form-col-span,
#try_powerpack .form-col-span {
  clear: left;
  zoom: 1;
}
#get_powerpack .form-col-span:before,
#try_powerpack .form-col-span:before,
#get_powerpack .form-col-span:after,
#try_powerpack .form-col-span:after {
  display: table;
  content: "";
}
#get_powerpack .form-col-span:after,
#try_powerpack .form-col-span:after {
  clear: both;
}
#get_powerpack .form-info,
#try_powerpack .form-info {
  margin-bottom: 2.5em;
}
#get_powerpack .legalese,
#try_powerpack .legalese {
  clear: both;
  font-size: 90%;
  padding-top: 4em;
  text-align: center;
}
#get_powerpack .legalese a,
#try_powerpack .legalese a {
  font-weight: normal;
}
#powerpack_install,
#powerpack_2_free_forever {
  width: 60em;
  margin: 3em auto 0 auto;
  text-align: left;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #powerpack_install,
  #powerpack_2_free_forever {
    width: auto;
  }
}
#powerpack_install p,
#powerpack_2_free_forever p {
  margin-top: 1.5em;
}
#powerpack_install ol,
#powerpack_2_free_forever ol {
  margin: 2em 0 0 0;
  padding: 0 0 0 2em;
}
#powerpack_install ol li,
#powerpack_2_free_forever ol li {
  font-weight: bold;
  margin-top: 3em;
}
#powerpack_install ol p,
#powerpack_2_free_forever ol p {
  font-weight: normal;
  margin: 1em 0;
}
#powerpack_install ol pre,
#powerpack_2_free_forever ol pre {
  font-weight: normal;
  margin-left: 0;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #powerpack_install ol pre,
  #powerpack_2_free_forever ol pre {
    font-size: 80%;
  }
}

#support-comparison {
  border-collapse: collapse;
  margin: 4em auto;
}
#support-comparison td,
#support-comparison th {
  padding: 1em;
}
#support-comparison tbody td {
  background: #F9F9F9;
  border-bottom: 1px #E6E6E6 solid;
  text-align: center;
}
#support-comparison tbody th {
  background: #EEE;
  border-bottom: 1px #DDD solid;
  font-weight: normal;
  text-align: left;
}
#support-comparison tbody tr:first-child th {
  border-radius: 6px 0 0 0;
}
#support-comparison tbody tr:last-child th {
  border-radius: 0 0 0 6px;
  border-bottom: 0;
}
#support-comparison tfoot th {
  background: #EEE;
  font-size: 110%;
  text-align: center;
}
#support-comparison tfoot th:first-of-type {
  border-radius: 0 0 0 6px;
}
#support-comparison tfoot th:last-child {
  border-radius: 0 0 6px 0;
}
#support-comparison tfoot th a {
  color: white;
}
#support-comparison thead th {
  background: black;
  color: white;
  font-size: 110%;
  text-align: center;
}
#support-comparison thead th:first-of-type {
  border-radius: 6px 0 0 0;
}
#support-comparison thead th:last-child {
  border-radius: 0 6px 0 0;
}
#support-comparison .fa {
  font-size: 120%;
}
#support-comparison .fa-check {
  color: #009900;
}
#support-comparison .fa-times {
  color: #990000;
}
@media screen and (max-width: 480px), screen and (max-device-width: 480px) and (orientation: landscape) {
  #support-comparison {
    margin: 1em 0;
  }
  #support-comparison,
  #support-comparison tr,
  #support-comparison td,
  #support-comparison tbody,
  #support-comparison tfoot,
  #support-comparison th,
  #support-comparison thead {
    display: block;
  }
  #support-comparison tbody td {
    text-align: left;
    vertical-align: middle;
  }
  #support-comparison tbody td:before {
    color: #8C4F02;
    display: inline-block;
    font-size: 90%;
    text-align: right;
    width: 6em;
    margin-right: 1em;
  }
  #support-comparison tbody td:nth-child(2):before {
    content: "Community";
  }
  #support-comparison tbody td:nth-child(3):before {
    content: "Basic";
  }
  #support-comparison tbody td:nth-child(4):before {
    content: "Premium";
  }
  #support-comparison tbody th {
    border-radius: 6px 6px 0 0;
    color: #333;
    font-weight: bold;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-align: center;
  }
  #support-comparison tbody tr {
    border: 1px #DDD solid;
    border-radius: 6px;
    margin-top: 1em;
  }
  #support-comparison tbody tr td:last-child {
    border-bottom: 0;
    border-radius: 0 0 6px 6px;
  }
  #support-comparison tfoot th {
    display: none;
  }
  #support-comparison tfoot th:last-child {
    background: none;
    display: block;
  }
  #support-comparison thead {
    display: none;
  }
}

.c, /* Comment */
.cm, /* Comment.Multiline */
.c1 /* Comment.Single */
{ color: #0000C0; font-style: italic }
.err { border: 1px solid #FF0000 } /* Error */
.k { font-weight: bold } /* Keyword */
.o { color: black; } /* Operator */
.cp { color: #612B00 } /* Comment.Preproc */
.gd { color: #A00000 } /* Generic.Deleted */
.ge { font-style: italic } /* Generic.Emph */
.gr { color: #FF0000 } /* Generic.Error */
.gh { color: #000080; font-weight: bold } /* Generic.Heading */
.gi { color: #005000 } /* Generic.Inserted */
.go { color: #808080 } /* Generic.Output */
.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
.gs { font-weight: bold } /* Generic.Strong */
.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
.gt { color: #0040D0 } /* Generic.Traceback */
.kc { font-weight: bold } /* Keyword.Constant */
.kd { font-weight: bold } /* Keyword.Declaration */
.kp { color: #AA22FF } /* Keyword.Pseudo */
.kr { font-weight: bold } /* Keyword.Reserved */
.kt { font-weight: bold } /* Keyword.Type */
.m { color: darkred; font-weight: bold; } /* Literal.Number */
.s { color: darkred; } /* Literal.String */
.na { color: #000080 } /* Name.Attribute */
.nb { font-weight: bold; } /* Name.Builtin */
.nc { color: black } /* Name.Class */
.no { color: #880000 } /* Name.Constant */
.nd { color: darkBlue; font-weight: bold} /* Name.Decorator */
.ni { color: #999999; font-weight: bold } /* Name.Entity */
.ne { color: #D2413A; font-weight: bold } /* Name.Exception */
.nf { color: black } /* Name.Function */
.nl { color: black } /* Name.Label */
.nn { color: black } /* Name.Namespace */
.nt { color: #000080; font-weight: bold } /* Name.Tag */
.nv { color: black } /* Name.Variable */
.ow { font-weight: bold } /* Operator.Word */
.mf { color: darkred; font-weight: bold } /* Literal.Number.Float */
.mh { color: darkred; font-weight: bold } /* Literal.Number.Hex */
.mi { color: darkred; font-weight: bold } /* Literal.Number.Integer */
.mo { color: darkred; font-weight: bold } /* Literal.Number.Oct */
.sb { color: #BB4444 } /* Literal.String.Backtick */
.sc { color: #BB4444 } /* Literal.String.Char */
.sd { color: #0000C0; } /* Literal.String.Doc */
.s2 { color: #BB4444 } /* Literal.String.Double */
.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
.sh { color: #BB4444 } /* Literal.String.Heredoc */
.si { color: red; font-weight: bold } /* Literal.String.Interpol */
.sx { color: #008000 } /* Literal.String.Other */
.sr { color: #BB6688 } /* Literal.String.Regex */
.s1 { color: #BB4444 } /* Literal.String.Single */
.ss { color: #B8860B } /* Literal.String.Symbol */
.bp { color: darkred; font-weight: bold; } /* Name.Builtin.Pseudo */
.vc { color: #B8860B } /* Name.Variable.Class */
.vg { color: #B8860B } /* Name.Variable.Global */
.vi { color: #B8860B } /* Name.Variable.Instance */
.il { color: #666666 } /* Literal.Number.Integer.Long */
.cs { color: red; font-weight: bold; font-style: italic; }
