/* Table of Content
==================================================
  #Reset & Basics
  #Basic Styles
  #Site Styles
  #Typography
  #Links
  #Lists
  #Images
  #Buttons
  #Forms
  #Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline; }
  article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block; }
  body {
    line-height: 1; }
  ol, ul {
    list-style: none; }
  blockquote, q {
    quotes: none; }
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none; }
  table {
    border-collapse: collapse;
    border-spacing: 0; }


/* #Basic Styles
================================================== */
  body {
    background: #fff;
    color: #555;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
 }


/* #Typography
================================================== */
  h1, h2, h3, h4, h5, h6 {
    color: #191919;
    font-weight: normal;
    margin-top: 0; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
  h1 { font-size: 40px; line-height: 50px; margin-bottom: 14px;}
  h2,
  h3,
  .wysiwyg-font-size-large { font-size: 23px; line-height: 29px; margin-bottom: 8px; font-weight: bold; }
  h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
  h5 { font-size: 17px; line-height: 24px; }
  h6 { font-size: 14px; line-height: 21px; }
  .subheader { color: #777; }

  p { margin: 0 0 20px 0; }
  p.lead { font-size: 21px; line-height: 27px; color: #777;  }

  em { font-style: italic; }
  strong { font-weight: bold; color: #333; }
  small { font-size: 80%; }

/*  Blockquotes  */
  blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
  blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
  blockquote cite { display: block; font-size: 12px; color: #555; }
  blockquote cite:before { content: "\2014 \0020"; }
  blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

  hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
  a, a:visited { color: #e4362c; text-decoration: none; outline: 0; }
  a:hover, a:focus { color: #c92e26; }
  p a, p a:visited { line-height: inherit; }

  h3 a, h3 a:visited { color: #191919; text-decoration: none; }
  h3 a:hover, h3 a:focus { color: #c92e26; }

/* #Lists
================================================== */
  ul, ol { margin: 0 0 20px 20px; padding: 0; }
  ul { list-style: none outside; }
  ol { list-style: decimal; }
  ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
  ul.square { list-style: square outside; }
  ul.circle { list-style: circle outside; }
  ul.disc { list-style: disc outside; }
  ul ul, ul ol,
  ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
  ul ul li, ul ol li,
  ol ol li, ol ul li { margin-bottom: 6px; }
  li { margin: 0px; }
  ul.large li { line-height: 21px; }
  li p { line-height: 21px; }

/* #Images
================================================== */

  img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }


/* #Buttons
================================================== */

  .button,
  button,
  input[type="submit"],
  input[type="reset"],
  input[type="button"] {
    border: 2px solid #a2a2a2;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    color: rgba(25,25,25,.4);
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 20px;
    line-height: normal;
    padding: 8px 20px;
    font-family: "PT Sans", sans-serif; }

  .button:hover,
  button:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  .button:active,
  button:active,
  input[type="submit"]:active,
  input[type="reset"]:active,
  input[type="button"]:active {
    color: #e4362c;
    border: 2px solid #e4362c; }

  .button.full-width,
  button.full-width,
  input[type="submit"].full-width,
  input[type="reset"].full-width,
  input[type="button"].full-width {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center; }

  /* Fix for odd Mozilla border & padding issues */
  button::-moz-focus-inner,
  input::-moz-focus-inner {
    border: 0;
    padding: 0;
  }


/* #Forms
================================================== */

  form {
    margin-bottom: 20px; }
  fieldset {
    margin-bottom: 20px; }
  input[type="text"],
  input[type="password"],
  input[type="email"],
  textarea,
  select {
    background: #eee;
    border-radius: 3px;
    border: none;
    outline: none;
    width: 320px;
    padding: 12px;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 4px 0 0;
    color: #555;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}
  select {
    padding: 0; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    background: #eee;
    border-radius: 3px;
    border: none;
    outline: none;
    width: 320px;
    padding: 12px;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 4px 0 0;
    color: #555;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
}
  textarea {
    height: 350px;
    width: 750px!important;
  }
  
input[type="submit"],
input[type="submit"]:focus {
  background: #e4362c;
  border-radius: 3px;
  border: none;
  width: 140px;
  max-width: 100%;
  height: 66px;
  outline: none;
  cursor: pointer;
  margin: 0;
  color: #fff;
}
input[type="submit"]:hover {
  background: #c92e26;
  border-radius: 3px;
  border: none;
  width: 140px;
  max-width: 100%;
  height: 66px;
  outline: none;
  cursor: pointer;
  margin: 0;
  color: #fff;
}

  label,
  legend {
    display: block;
    font-weight: bold;
    font-size: 13px;  }
  select {
    width: 220px; }
  input[type="checkbox"] {
    display: inline; }
  label span,
  legend span {
    font-weight: normal;
    font-size: 13px;
    color: #444; }

/* #Misc
================================================== */
  .remove-bottom { margin-bottom: 0 !important; }
  .half-bottom { margin-bottom: 10px !important; }
  .add-bottom { margin-bottom: 20px !important; }

/* #Base 960 Grid
================================================== */

    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }
    .row-double                                 { margin-bottom: 40px; }
    .row-double-stroke                          { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #eee; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }



/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .container { width: 300px; }
        .container .columns,
        .container .column { margin: 0 0 20px 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column  { width: 300px; }

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
        .container .columns,
        .container .column { margin: 0 0 40px 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column { width: 420px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }









/* =========================================================================
   Header & Main Navigation
   ========================================================================= */

.header {
  background: #202020;
  padding: 40px 0;
}

.logo {
  width: 134px;
  height: 40px;
  display: inline-block;
}

.logo svg {
  float: left;
}

.logo a {
  line-height: 100px;
}

.nav-list {
  float: right;
  margin: 8px 0 0 0;
}

.nav-list ul {
  margin: 0;
}

.nav-list a,
.nav-list a:hover,
.nav-list a:visited {
  color: #fff;
  text-decoration: none;
}

.nav-list .nav-item {
  text-align: left;
  float: left;
  padding: 0;
  margin: 0 0 0 40px;
  position: relative;
}

.nav-list .nav-item.has-children>a:after {
  background-image: url('http://css.realmacsoftware.com/assets/images/sprites/nav-sbe9350b90f.png');
  background-position: 0 -32px;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 4px;
  width: 7px;
  content: " ";
  float: right;
  display: inline-block;
  margin: 14px 0 0 8px;
}

.nav-list-child { display: none; }

.nav-list-child {
  padding: 15px;
  position: absolute;
  left: 50%;
  top: 120%;
  -webkit-columns: auto;
  -moz-columns: auto;
  columns: auto;
  margin: 0;
  background: #fff;
  width: 196px;
  text-align: left!important;
  margin-left: -118px!important;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  z-index: 9999;
}

.nav-list-child:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: -4px;
  margin-left: -4px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-list-child>.nav-child-item>a {
  color: #191919;
}

.nav-child-item {
  margin: 0 0 14px 0;
  display: block;
  line-height: 34px;
}

.nav-child-item:last-child { margin: 0; }

[class*=nav-icon] {
  float: left;
  margin: 0 10px 0 0;
  padding: 0;
}

.nav-icon-clear {
  background-image: url('http://css.realmacsoftware.com/assets/images/sprites/nav-sbe9350b90f.png');
  background-position: -14px -32px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 32px;
}

.nav-icon-ember {
  background-image: url('http://css.realmacsoftware.com/assets/images/sprites/nav-sbe9350b90f.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 32px;
}

.nav-icon-rapidweaver {
  background-image: url('http://css.realmacsoftware.com/assets/images/sprites/nav-sbe9350b90f.png');
  background-position: -46px -32px;
  background-repeat: no-repeat;
  overflow: hidden;
  display: block;
  height: 32px;
  width: 32px;
}

/* =========================================================================
   User Navigation
   ========================================================================= */

.user-nav > * {
  display: inline-block;
  font-size: inherit;
  vertical-align: middle;
}

#user-dropdown a {
  color: #191919;
}

.user-info [role="button"],
.user-info [role="button"]:active {
  border: 2px solid #fff;
  color: #fff;
  height: auto;
  line-height: 1;
  padding: 10px 20px 10px 10px;
  border-radius: 30px;
  position: relative;
  top: -5px;
}

.user-info [role="button"]:hover {
  border-color: rgba(255, 255, 255, .6);
}

.user-avatar {
  margin-right: 4px;
  max-height: 20px;
  border-radius: 100%;
}

.user-avatar, .user-avatar + span {
  display: inline-block;
  vertical-align: middle;
}

.login, .user-info {
  margin-left: 20px;
}

.dropdown-panel {
    width: 250px;
    background: #fff!important;
    border-radius: 3px!important;
    border: none;
    display: none;
    left: 0!important;
    padding: 10px 0 6px 0!important;
    position: absolute!important;
    text-align: left!important;
    top: 100%!important;
    z-index: 1000!important;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2)!important;
    box-shadow: 0 1px 3px rgba(0,0,0,.2)!important;
    margin-left: -70px;
}

.dropdown-menu>li>a, .dropdown-menu>li>.dropdown-menu-link,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>.dropdown-menu-link:hover {
    background: none;
    display: block;
    font-family: 'PT Sans', sans-serif!important;
    font-size: 18px!important;
    padding: 0 20px;
    white-space: nowrap;
}

/* =========================================================================
   Search
   ========================================================================= */

.search {
  position: relative;
  margin: 0;
}

.search input[type=search],
.search input[type=search]:focus {
  background: url('//p3.zdassets.com/hc/theme_assets/475351/200007291/search.png') 20px center no-repeat, #eee;
  border-radius: 3px;
  border: none;
  outline: none;
  width: 870px;
  padding: 20px 20px 20px 56px;
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 4px 0 0;
}

.sub-nav .search input[type=search],
.sub-nav input[type=search]:focus {
  padding: 10px;
  width: 225px;
}

.search input[type=submit] {
  /*background: url('//p3.zdassets.com/hc/theme_assets/475351/200007291/search_icon.png') center center no-repeat, #e4362c;
  border-radius: 3px;
  border: none;
  text-indent: -9999px;
  width: 140px;
  max-width: 100%;
  height: 66px;
  outline: none;
  cursor: pointer;
  margin: 0;*/
  display: none;
}

.search input[type=submit]:hover,
.search input[type=submit]:active {
  background: url('//p3.zdassets.com/hc/theme_assets/475351/200007291/search_icon.png') center center no-repeat, #c92e26;
}

::-webkit-input-placeholder {  
   color: rgba(85, 85, 85, .4);
   font-weight: 400;
}

:-moz-placeholder {
  color: rgba(85, 85, 85, .4);
   font-weight: 400;
}

::-moz-placeholder {
  color: rgba(85, 85, 85, .4);
   font-weight: 400;
}

:-ms-input-placeholder {
  color: rgba(85, 85, 85, .4);
   font-weight: 400;
}

.hero-unit .search {
  font-size: 22px;
  position: relative;
}

/* =========================================================================
   Home Page Columns
   ========================================================================= */

.quick-browse ul {
  margin: 0;
}

.quick-browse li {
  line-height: 1.5;
}

.quick-browse span {
  color: #e4362c;
}

.category-tree ul ,
.section-tree ul {
  margin-top: 0!important;
  margin-bottom: 0!important;
  list-style: none;
  margin-left: 0;
}

.category-tree h2 {
  line-height: 40px;
}

.category-tree h2 a,
.category-tree h2 a:visited {
  text-decoration: none;
  color: #191919;
}

.section.eight.columns h3 span {
  color: #e4362c;
}

.category-clear a:before {
  content: "";
  background: url("//p3.zdassets.com/hc/theme_assets/475351/200007291/clear.png") no-repeat left center;
  background-size: 40px 40px;
  display: block;
  height: 40px;
  width: 40px;
  float: left;
  margin: 0 20px 0 0;
}

.category-ember a:before {
  content: "";
  background: url("//p3.zdassets.com/hc/theme_assets/475351/200007291/ember.png") no-repeat left center;
  background-size: 40px 40px;;
  display: block;
  height: 40px;
  width: 40px;
  float: left;
  margin: 0 20px 0 0;
}

.category-rw a:before {
  content: "";
  background: url("//p3.zdassets.com/hc/theme_assets/475351/200007291/rw.png") no-repeat left center;
  background-size: 40px 40px;
  display: block;
  height: 40px;
  width: 40px;
  float: left;
  margin: 0 20px 0 0;
}

.see-all-articles, .see-all-articles:visited {
  color: #c1c1c1;
}

.see-all-articles:hover {
  color: #a7a7a7; 
}

/* =========================================================================
   Footer
   ========================================================================= */

.footer {
  font-size: 80%;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 10px;
  border-top: 1px solid #eee;
}

.footer .footer-logo {
  width: 30%;
}
.footer .footer-links>ul>li>a {
  text-transform: uppercase;
  color: silver;
  display: block;
}

/* =========================================================================
   Article Page
   ========================================================================= */

.article-metadata {
  font-size: 80%;
}

.article-metadata span {
  padding: 0 5px;
}

.article-avatar,
.article-author,
.article-updated,
.article-breadcrumbs {
  float: left;
}

.article-avatar img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: 0 10px 0 0;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  float: left;
}

/*.breadcrumbs:before {
  content: "Posted in:";
  float: left;
  margin: 0 5px 0 0;
}*/

.breadcrumbs li {
  list-style: none;
  float: left;
  margin: 0 5px 0 0;
}

.breadcrumbs li:after {
  content: ">";
  padding: 0 2px;
}

.breadcrumbs li:last-child:after {
  content: "";
  display: none;
}

.breadcrumbs li:first-child {
  display: none;
}

.breadcrumbs li:last-child {
  margin: 0;
}

.breadcrumbs a,
.breadcrumbs a:visited {
  color: #555;
}

.breadcrumbs a:hover {
  color: #E4362C;
}

.section-breadcrumbs ol {
  float: right;
}

.section-breadcrumbs .breadcrumbs {
  margin-top: 3px;
  padding: 5px 8px;
  background: #EEEEEE;
  border-radius: 3px;
}

.article-updated {
  background: #3fab3d;
  color: #fff;
  padding: 20px 10px 10px 10px;
  display: block;
  position: relative;
  text-align: center;
  width: 200px;
  max-width: 100%;
  font-size: 80%;
  border-radius: 3px;
  overflow: hidden;
}

.article-updated span {
  background: #369134;
  display: block;
  font-size: 12px;
  line-height: 12px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  padding: 3px 5px;
}

.article-vote {
  text-align: center;
}

.article-vote-question {
  margin: 0 0 10px 0;
  display: block;
}

.article-vote-controls {
  margin: 0 0 10px 0;
}

.article-vote-up:before { content: "Yes"; }
.article-vote-down:before { content: "No"; }

.article-vote-up,
.article-vote-up:active,
.article-vote-down,
.article-vote-down:active {
  background: #eee;
  color: #555;
  padding: 10px 41px;
  border-radius: 3px;
  font-size: 80%;
}

.article-vote-up:hover,
.article-vote-down:hover {
  background: #e0e0e0;
  color: #555;
}

.article-voted {
  background: #3fab3d;
  color: #fff;
}

.article-vote-up { margin: 0 5px 0 0; }

.article-vote-count {
  font-style: italic;
  font-weight: bold;
  color: #191919;
}

.article-more-questions {
  background: #eee;
  text-align: center;
  border-radius: 3px;
  padding: 20px;
}

/* =========================================================================
   Following Pages
   ========================================================================= */

.my-activities-nav ul {
  margin: 0;
  text-align: center;
}

.my-activities-table th {
  text-align: left;
  padding-left: 10px!important;
}

.my-activities-nav .active {
  background: #eee;
  padding: 10px 0;
  border-radius: 3px;
  color: #555;
}

.my-activities-nav .inactive a,
.my-activities-nav .inactive a:active {
  background: #e4362c;
  padding: 10px 0;
  border-radius: 3px;
  color: #fff;
}

td { padding: 0; }

.request-table thead { display: none; }

/* =========================================================================
   Request Page
   ========================================================================= */

.comment-list {
    margin-left: 0;
}

.comment-avatar img {
    height: 30px;
    width: 30px;
    float: left;
    margin: 0 10px 0 0;
    border-radius: 100%;
}

.comment-body {
    padding: 20px 0 0 0;
}

.comment {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.request-details dt:first-child {
    margin-bottom: 40px;
}

dt {
    font-weight: 600;
}

dd {
    margin: 0 0 40px 0;
}

.request-details dt:last-of-type,
.request-details dd:last-child { display: none; }

/* =========================================================================
   Request Page
   ========================================================================= */

.nesty-input {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    z-index: 1;
    white-space: nowrap;
    background: #eee;
    border-radius: 3px;
    border: none;
    outline: none;
    width: 320px;
    padding: 12px;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0 4px 20px 0;
    color: #555;
    max-width: 100%;
    display: block;
    box-shadow: none;
}

.nesty-input:after {
    color: #555;
    content: "\25BE";
    line-height: 24px;
    position: absolute;
    right: 20px;
}

.nesty-panel {
    background: #fff!important;
    position: absolute !important;
    margin-top: 54px;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px!important;
    font-weight: 400;
    color: #555;
    border: 2px solid #555;
    border-radius: 3px;
    box-shadow: none;
    width: 340px!important;
    max-width: 340px!important;
    height: 200px!important;
    max-height: 200px!important;
}

.nesty-panel ul {
    width: 340px!important;
    max-width: 340px!important;
    height: 200px!important;
    max-height: 200px!important;
    padding: 0 1px 0 0;
}

.nesty-panel ul li {
  font-size: 20px!important;
  padding: 12px!important;
}

.nesty-panel ul li:hover,
.nesty-panel ul li:active,
.nesty-panel ul li:focus {
  background: #555!important;
  color: #fff;
  position: relative;
  left: -1px;
  right: 0;
}

.form label {
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 20px;
    font-weight: bold;
}

.form .form-field {
    margin: 0 0 40px 0;
}

.new-request input {
  padding: 12px;
}

.new-request input[type=file] {
  padding: 8px 20px;
}

.new-request input[type=submit] {
  width: 300px;
}

.new-request input[type=submit]:hover {
  width: 300px;
}

.upload-dropzone {
  max-width: 750px;
  padding: 20px;
}

.upload-dropzone, .upload-dropzone a {
  font-size: 20px;
}

/* =========================================================================
   Search Results
   ========================================================================= */

.search-results-subheading,
.search-result-votes {
    display: none;
}

.search-results-list {
    margin: 0;
}

.search-results-list li {
    margin: 0 0 40px 0;
}

.search-result-link {
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 8px;
    font-weight: bold;
}

.search-result-meta,
.search-result-meta a {
    font-size: 16px!important;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #191919;
}

.pagination ul {
    margin: 0;
}

.pagination li {
    float: left;
    margin: 0 20px 0 0;
}

.pagination li.pagination-current {
    height: 23px;
    line-height: 23px;
    padding: 5px 20px;
    background: #eee;
    border-radius: 3px;
}

.pagination li a {
    padding: 5px 20px;
    line-height: 23px;
    border-radius: 3px;
    background: #e4362c;
    color: #fff;
}

/* #Media Queries
================================================== */

  /* Smaller than standard 960 (devices and browsers) */
  @media only screen and (max-width: 959px) {
    .search input[type=search],
    .search input[type=search]:focus {
      width: 558px;
    }
  }

  /* Tablet Portrait size to standard 960 (devices and browsers) */
  /*@media only screen and (min-width: 768px) and (max-width: 959px) {}*/

  /* All Mobile Sizes (devices and browser) */
  @media only screen and (max-width: 767px) {
    
    .row-double-stroke {
      padding-bottom: 0;
    }

    .row-double {
      margin: 0;
    }

    .header {
      text-align: center;
      margin-bottom: 40px!important;
    }

    .header .columns {
      margin: 0;
    }

    .logo svg {
      float: none;
      margin: 0 0 20px 0;
    }
    
    .nav-list {
      margin: auto;
      float: none;
    }

    .nav-list .nav-item {
      width: 100%;
      margin: 0 0 20px 0;
      float: none;
      text-align: center;
    }
    
    .nav-list .nav-item.has-children>a:after {
      float: none;
      position: relative;
      top: -3px;
    }

    .user-info {
      margin: 0;
    }

    .search input[type=search],
    .search input[type=search]:focus {
      width: 380px;
      margin-bottom: 10px;
    }
  
    .search input[type=submit] {
      width: 380px;
    }

    .intro-text {
      margin-bottom: 40px;
    }

    .category-tree h2,
    .section-tree h2 {
      padding-bottom: 40px;
    }

    .category-tree section,
    .section-tree section {
      margin-bottom: 40px;
    }

    .article-header h1 {
      text-align: left;
    }

    .article-updated {
      width: 420px;
      margin-bottom: 40px!important;
    }

    .section-breadcrumbs ol {
      float: left;
    }

    .footer {
      text-align: center;
    }

  }

  /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  /*@media only screen and (min-width: 480px) and (max-width: 767px) {}*/

  /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  @media only screen and (max-width: 479px) {

    .search input[type=search],
    .search input[type=search]:focus {
      width: 260px;
      margin-bottom: 10px;
    }

    .search input[type=submit] {
      width: 300px;
      margin-bottom: 20px;
    }
    
    .upload-dropzone, .upload-dropzone a {
      font-size: 13px;
    }

  }
  
@media 
(-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
  
  .search input[type=search],
  .search input[type=search]:focus {
    background: url('//p3.zdassets.com/hc/theme_assets/475351/200007291/search_2x.png') 20px center no-repeat, #eee;
    background-size: 16px 16px;
  }
  
}