/*------------------------------------*\
    $TABLE OF CONTENTS 
    based generally on Harry Roberts excellent CSS Guidelines https://github.com/csswizardry/CSS-Guidelines
\*------------------------------------*/
/**
 * VARIABLES..............................Declarations of Sass variables 
 * .....Colors
 * .....Typography
 * .....Layout
 * .....Defaults
 * .....Breakpoints
 * MIXINS.................................Sass mixins 
 * RESET..................................Set reset defaults
 * GLOBAL CLASSES.........................Set reset defaults
 * GLOBAL ELEMENTS........................Establish global styles
 * .....Main
 * .....Headings
 * .....Text-related elements (p, blockquote, lists)
 * .....Defaults
 * .....Breakpoints
 * TYPOGRAPHY------------------------------
 * MEDIA------------------------------
 * LAYOUT------------------------------
 * NAVIGATION------------------------------
 * TOC To Be Continued
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/*------------------------------------*\
    $RESET
\*------------------------------------*/
/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0; }

header, footer, nav, section, article, hgroup, figure {
  display: block; }

/*------------------------------------*\
    $GLOBAL ELEMENTS
\*------------------------------------*/
/*------------------------------------*\
    $GLOBAL CLASSES
\*------------------------------------*/
/* Clearfix */
.cf, .l-two-col, [role=main] {
  *zoom: 1; }

.cf:before, .l-two-col:before, [role=main]:before, .cf:after, .l-two-col:after, [role=main]:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.cf:after, .l-two-col:after, [role=main]:after {
  clear: both; }

/* Completely remove from the flow and screen readers. */
.is-hidden {
  display: none !important;
  visibility: hidden !important; }

/* Completely remove from the flow but leave available to screen readers. */
.is-vishidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px); }

/* Floats */
.right {
  float: right;
  padding: 0 0 1em 1em; }

.right-search {
  float: right;
  padding: 0 0 1em 0; }

.left {
  float: left;
  padding: 0 1em 1em 0; }

/* Text-Align */
.align-right {
  text-align: right; }

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

.align-left {
  text-align: left; }

/* Display Classes */
@media all and (max-width: 48.2em) {
  .hide-small {
    display: none; } }

@media all and (min-width: 48.2em) and (max-width: 60em) {
  .hide-med {
    display: none; } }

@media all and (min-width: 60em) {
  .hide-large {
    display: none; } }

.valid {
  color: #089e00; }

.error {
  color: #f00; }

.warning {
  color: #fff664; }

.information {
  color: #000db5; }

.font-secondary {
  font-family: Georgia, Times, "Times New Roman", serif; }

@font-face {
  font-family: 'Cooper Hewitt Heavy';
  font-weight: bold;
  src: url("fonts/CooperHewitt-Heavy.eot");
  /* IE9 Compat Modes */
  src: url("fonts/CooperHewitt-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/CooperHewitt-Heavy.woff") format("woff"), url("fonts/CooperHewitt-Heavy.svg#svgFontName") format("svg");
  /* Legacy iOS */ }
@font-face {
  font-family: 'Cooper Hewitt Book';
  font-style: normal;
  font-weight: 500;
  src: url("fonts/CooperHewitt-Book.eot");
  /* IE9 Compat Modes */
  src: url("fonts/CooperHewitt-Book.eot?#iefix") format("embedded-opentype"), url("fonts/CooperHewitt-Book.woff") format("woff"), url("fonts/CooperHewitt-Book.svg#svgFontName") format("svg");
  /* Legacy iOS */ }
body {
  background: #fff;
  font: 100%/1.5 "Cooper Hewitt Book", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333; }

/* Links */
a {
  color: red;
  text-decoration: underline;
  outline: 0; }
  a:hover, a:focus {
    color: #808080; }

/* Headings */
/*Further Reading: http:/csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css/ */
h1, .alpha {
  line-height: 1.2; }

h2, .beta {
  line-height: 1.2; }

h3, .gamma {
  line-height: 1.2; }

/* Subheadings */
.subheading {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: normal; }

/* Text-Related Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: "Cooper Hewitt Heavy", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #000; }

.block-thumb h4 {
  font-family: "Cooper Hewitt Book", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  font-weight: normal; }

p {
  margin-bottom: 1em; }

/* Blockquote */
blockquote {
  font-style: italic;
  border-left: 1px solid #808080;
  color: #808080;
  padding-left: 1em;
  margin-bottom: 1em; }

/* Horizontal Rule */
hr {
  border: 0;
  height: 2px;
  background: #eee;
  margin: 2em 0; }

abbr {
  border-bottom: 1px dotted #808080;
  cursor: help; }

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/* Definition Lists */
dl {
  overflow: hidden;
  margin: 0 0 1em; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

/*------------------------------------*\
    $MEDIA ELEMENTS
\*------------------------------------*/
/* Flexible Media */
img, video, object {
  max-width: 100%;
  height: auto; }

iframe {
  margin-bottom: 1em; }

figure {
  margin-bottom: 1em; }
  figure img {
    margin-bottom: 0.5em; }

figcaption {
  font-style: italic; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
form ol, form ul {
  list-style: none;
  margin-left: 0; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

label {
  display: block;
  padding-bottom: 0.5em; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0 1px 0; }

input, textarea {
  width: 100%;
  border: 1px solid #808080;
  padding: 0.5em 0.65rem; }

input[type=text], input[type=search], input[type=url], input[type=number], textarea {
  -webkit-appearance: none; }

button, input[type="submit"] {
  padding: 0.5em;
  background: #333;
  border: 1px solid #808080;
  cursor: pointer; }

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  margin-right: 0.3em; }

input[type="search"] {
  -webkit-appearance: none;
  border-radius: 0; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

.field-container {
  margin-bottom: 1em; }

.inline-form fieldset, .inline-form .inline-container {
  position: relative; }
.inline-form input[type=submit], .inline-form button, .inline-form .btn {
  font-size: 0.875em;
  padding: 0.65rem 1.3rem;
  background: #333;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: auto; }
  .inline-form input[type=submit]:hover, .inline-form input[type=submit]:focus, .inline-form button:hover, .inline-form button:focus, .inline-form .btn:hover, .inline-form .btn:focus {
    background: #808080;
    color: #fff; }

/* Validation */
.has-error {
  border-color: #f00; }

.is-valid {
  border-color: #089e00; }

/*------------------------------------*\
    $SPECIFIC FORMS
\*------------------------------------*/
/* Search Form */
.search-field {
  padding-right: 3em; }

.inline-form .search-submit {
  background: none;
  padding: 0.78em 1em;
  border: 0;
  border-left: 1px solid #808080;
  color: #808080; }

/*------------------------------------*\
    $Table
\*------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #808080;
  width: 100%; }

th {
  text-align: left;
  border: 1px solid #808080;
  padding: 0.2em; }

td {
  border: 1px solid #808080;
  padding: 0.2em; }

.animate-fade {
  -webkit-transition: opacity, 0.3s, ease-out;
          transition: opacity, 0.3s, ease-out; }
  .animate-fade:hover {
    opacity: 0; }

.animate-move > .demo-shape {
  -webkit-transition: all, 0.8s, ease-in-out;
          transition: all, 0.8s, ease-in-out; }

/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/*------------------------------------*\
    $LAYOUT
\*------------------------------------*/
/* Layout Container */
.lc, [role=main] {
  max-width: 72em;
  margin: 0 auto;
  padding: 0.5em;
  clear: both; }

/*------------------------------------*\
    $TEMPLATES
\*------------------------------------*/
/* Two Column Layout */
@media all and (min-width: 60em) {
  .l-two-col .l-main {
    float: left;
    width: 70%;
    padding-right: 1em; } }
@media all and (max-width: 60em) {
  .l-two-col .l-sidebar {
    clear: both; } }
@media all and (min-width: 60em) {
  .l-two-col .l-sidebar {
    float: left;
    width: 30%;
    padding: 0 0 0 1em; } }

/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/* Grid Container */
.g {
  overflow: hidden;
  margin: 0 -0.5em; }

/* Grid Item */
.gi {
  padding: 0 0 2em; }
  .gi img {
    display: block; }
  @media all and (min-width: 48.2em) {
    .gi {
      float: left; } }

/* Grid 1up */
.g-1up .gi {
  width: 100%; }

/* Grid 2up */
@media all and (min-width: 48.2em) {
  .g-2up > .gi {
    float: left;
    width: 50%;
    padding: 0 2em 2em 0; }
    .g-2up > .gi:nth-of-type(odd) {
      clear: left; } }

/* Grid Half (Always displayed side by side) */
.g-half > .gi {
  float: left;
  width: 50%; }
  .g-half > .gi:nth-of-type(odd) {
    clear: left; }

/* Grid 3up */
@media all and (min-width: 48.2em) {
  .g-3up > .gi {
    float: left;
    width: 50%; }
    .g-3up > .gi:nth-of-type(2n+1) {
      clear: left; } }
@media all and (min-width: 60em) {
  .g-3up > .gi {
    width: 33.3333333%; }
    .g-3up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-3up > .gi:nth-of-type(3n+1) {
      clear: left; } }

/* Grid 4up */
@media all and (min-width: 48.2em) {
  .g-4up > .gi {
    float: left;
    width: 50%; }
    .g-4up > .gi:nth-of-type(2n+1) {
      clear: both; } }
@media all and (min-width: 60em) {
  .g-4up > .gi {
    width: 25%; }
    .g-4up > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-4up > .gi:nth-of-type(4n+1) {
      clear: left; } }

/* Grid Quarter (Always displayed side by side) */
.g-quarter > .gi {
  float: left;
  width: 24%; }
  .g-quarter > .gi:nth-of-type(4n+1) {
    clear: left; }

@media all and (min-width: 29.75em) {
  .g-max4 > .gi {
    float: left;
    width: 50%; }
    .g-max4 > .gi:nth-of-type(2n+1) {
      clear: both; } }
@media all and (min-width: 39.8em) {
  .g-max4 > .gi {
    width: 33.3333333%; }
    .g-max4 > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-max4 > .gi:nth-of-type(3n+1) {
      clear: left; } }
@media all and (min-width: 60em) {
  .g-max4 > .gi {
    width: 25%; }
    .g-max4 > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-max4 > .gi:nth-of-type(4n+1) {
      clear: left; } }

/* Grid 5up */
.g-max5 > .gi {
  float: left;
  width: 50%; }
  .g-max5 > .gi:nth-of-type(2n+1) {
    clear: both; }
@media all and (min-width: 39.8em) {
  .g-max5 > .gi {
    width: 33.3333333%; }
    .g-max5 > .gi:nth-of-type(2n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(3n+1) {
      clear: left; } }
@media all and (min-width: 48.2em) {
  .g-max5 > .gi {
    width: 25%; }
    .g-max5 > .gi:nth-of-type(3n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(4n+1) {
      clear: left; } }
@media all and (min-width: 52.5em) {
  .g-max5 > .gi {
    width: 20%; }
    .g-max5 > .gi:nth-of-type(4n+1) {
      clear: none; }
    .g-max5 > .gi:nth-of-type(5n+1) {
      clear: left; } }

/* Grid 2/3 */
@media all and (min-width: 48.2em) {
  .gi-2-3 {
    float: left;
    width: 66.666666%; } }

@media all and (min-width: 48.2em) {
  .gi-1-3 {
    float: left;
    width: 33.333333%; } }

/* Grid 4up block */
.g-opposites .gi {
  float: left; }
  .g-opposites .gi:last-child {
    float: right;
    text-align: right; }

/*------------------------------------*\
    $PAGE STRUCTURE
\*------------------------------------*/
.header {
  background: #f9f9f9;
  padding: 0;
  height: 44px;
  height: 2.75rem; }
  @media all and (min-width: 48.2em) {
    .header {
      height: 56px;
      height: 3.5rem; } }
  .header .lc, .header [role=main] {
    padding: 0 0.5em; }
  @media all and (min-width: 48.2em) {
    .header .lc, .header [role=main] {
      padding: 0.5em; } }

.bmw_sitelogo {
  float: left;
  max-width: 13rem; }
  @media all and (min-width: 48.2em) {
    .bmw_sitelogo {
      max-width: 13rem;
      font-size: 32px;
      font-size: 2rem;
      line-height: 1.2em; } }

.powertools {
  float: right;
  margin-left: 2em;
  /* show full search field, hide toggle icon */ }
  .powertools .icon {
    vertical-align: top; }
  .powertools .bmw_search {
    display: none; }
    .powertools .bmw_search input[type=search] {
      width: 70%; }
    .powertools .bmw_search button {
      display: inline-block;
      margin-left: -.5em;
      border: none;
      padding: 0;
      background-color: transparent; }
  .powertools form.toggled {
    display: block;
    position: absolute;
    top: 44px;
    left: 0px;
    width: 100%;
    margin: 0 auto;
    text-align: center; }
    .powertools form.toggled div {
      width: 100%;
      padding: 1em;
      background: #ccc; }
  @media all and (min-width: 66em) {
    .powertools .icon-search {
      display: none; }
    .powertools form.bmw_search {
      position: static;
      top: auto;
      left: auto;
      width: 15em;
      display: inline-block;
      margin-left: 1em; }
      .powertools form.bmw_search div {
        display: inline;
        width: auto;
        padding: 0;
        background: transparent; } }

.nav-toggle {
  float: right;
  display: block;
  padding: 0.9rem 1rem 0.7rem;
  font-size: 1.3rem;
  line-height: 1;
  border-left: 1px solid #dbdbdb; }
  @media all and (min-width: 48.2em) {
    .nav-toggle {
      display: none; } }
  @media all and (max-width: 17em) {
    .nav-toggle {
      padding-left: 0.2rem;
      padding-right: 0.2rem; } }

.search-form {
  overflow: hidden;
  max-height: 0; }
  @media all and (min-width: 48.2em) {
    .search-form {
      float: right;
      max-height: none;
      margin: 0.65em 0.5em 0 0; } }

/*------------------------------------*\
    $NAVIGATION
\*------------------------------------*/
.bmn_hnav {
  overflow: hidden; }
  .bmn_hnav a {
    display: block;
    padding: .8em;
    border-top: 1px solid #eee;
    font-weight: bold; }

.header .bmn_hnav {
  display: none; }
.header .icon-menu {
  background-size: 80%;
  background-position: center; }

@media all and (min-width: 48.2em) {
  .header .bmn_hnav {
    display: block;
    margin-left: 2em;
    float: left; }
    .header .bmn_hnav li {
      display: inline-block; }
    .header .bmn_hnav a {
      border: none; }
  .header .icon-menu {
    display: none; }
  .header .bmn_sec-about {
    margin-left: 1.5em; }
  .header .bmn_sec-about a,
  .header .bmn_sec-hire a {
    font-weight: normal; } }
@media all and (max-width: 52.5em) {
  .header .bmn_hnav .bmn_sec-hire {
    display: none; } }
.pagination {
  overflow: hidden; }
  .pagination li {
    float: left;
    border-right: 1px solid #eee; }
    .pagination li:last-child {
      border: 0; }
  .pagination a {
    padding: 1em; }

/*------------------------------------*\
    $MAIN CONTENT AREA
\*------------------------------------*/
[role=main] {
  padding: 0.5em 0.5em 2em;
  overflow: hidden; }

/*------------------------------------*\
    $FOOTER
\*------------------------------------*/
.footer {
  clear: both;
  overflow: hidden;
  background: #131313;
  color: #fff;
  line-height: 1.4;
  overflow: hidden;
  /* two columns */
  /* three columns */
  /* four columns */ }
  .footer .lc > div, .footer [role=main] > div,
  .footer .lc > .copyright,
  .footer [role=main] > .copyright {
    font-size: 0.875em; }
  .footer h3 {
    font-size: 1.4375em; }
  .footer a {
    color: #f9f9f9; }
  .footer .g-half > .gi,
  .footer .gi .gi {
    padding: 0.5em; }
  .footer .social {
    overflow: hidden;
    width: 100%; }
  .footer .social li {
    padding-right: 0.5em;
    float: left; }
  .footer .social .icon {
    width: 60px;
    height: 60px; }
    @media all and (max-width: 60em) {
      .footer .social .icon {
        width: 44px;
        height: 44px; } }
  .footer .hire-us li {
    margin-bottom: 1em; }
  .footer h3 {
    padding: 1em 0 0;
    color: #fff; }
  .footer img {
    display: block; }
  .footer .c-postal {
    margin-bottom: 1.5em; }
  @media all and (max-width: 29.75em) {
    .footer li {
      margin-bottom: 0; } }
  @media all and (min-width: 29.75em) {
    .footer h3 {
      margin-bottom: 1em; } }
  @media all and (min-width: 29.75em) and (max-width: 39.8em) {
    .footer .hire-us {
      width: 50%;
      float: left; }
      .footer .hire-us h3 {
        padding-top: 1em; }
    .footer .follow-us,
    .footer .contact-us {
      width: 50%;
      margin-left: 50%;
      padding: 1.5em 0 1em 2em; }
      .footer .follow-us h3,
      .footer .contact-us h3 {
        display: none; } }
  @media all and (min-width: 39.8em) {
    .footer .read-us {
      width: 60%;
      float: left;
      padding-top: 1em; }
    .footer .hire-us {
      padding-top: 1em; }
    .footer .hire-us,
    .footer .follow-us {
      width: 38%;
      padding-left: 2em;
      margin-left: 62%; }
    .footer .follow-us h3 {
      padding-top: 1em; } }
@media all and (min-width: 39.8em) and (max-width: 52.5em) {
  .footer .contact-us {
    clear: left;
    padding: 4em 0 0;
    text-align: center; }
    .footer .contact-us h3 {
      display: none; }
    .footer .contact-us .c-postal {
      margin-bottom: 0; }
      .footer .contact-us .c-postal strong {
        display: block; }
      .footer .contact-us .c-postal .street-address, .footer .contact-us .c-postal .extended-address {
        display: inline; }
        .footer .contact-us .c-postal .street-address:after, .footer .contact-us .c-postal .extended-address:after {
          content: ","; } }

  @media all and (min-width: 52.5em) {
    .footer .read-us {
      width: 45%;
      padding-top: 1em; }
    .footer .hire-us {
      width: 25%;
      float: left;
      margin-left: 0;
      padding-top: 1em; }
    .footer .follow-us {
      padding-top: 1em; }
    .footer .follow-us,
    .footer .contact-us {
      padding-left: 2em;
      float: none;
      width: 30%;
      margin-left: 72%; }
    .footer .contact-us h3 {
      padding-top: 1.5em;
      display: block; } }
  @media all and (min-width: 60em) {
    .footer .read-us,
    .footer .hire-us,
    .footer .follow-us,
    .footer .contact-us {
      width: 25%;
      float: left;
      padding: 1em 2em;
      margin-left: 0; }
    .footer .contact-us h3 {
      padding-top: 1em; }
    .footer .social li {
      padding: 0 1.5em 1.5em 0; } }

.copyright {
  clear: left;
  text-align: center;
  padding: 2em 0em; }

/*------------------------------------*\
    $TEXT Styles
\*------------------------------------*/
.intro {
  font-size: 1.0625em;
  font-weight: bold; }

.pullquote {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 1.4375em; }

.text a {
  text-decoration: underline; }
.text ul {
  list-style: disc;
  margin: 0 0 1em 1.2em; }
  .text ul ul {
    margin-bottom: 0; }
.text ol {
  list-style: decimal;
  margin: 0 0 1em 1.5em; }
  .text ol ol {
    margin-bottom: 0; }

/*------------------------------------*\
    $COMPONENTS
\*------------------------------------*/
.icon {
  overflow: hidden;
  text-indent: -9999px;
  background-size: 100%;
  display: inline-block;
  width: 44px;
  height: 44px; }

.icon-inset {
  width: auto;
  height: auto;
  background-position: 0 10%;
  background-size: auto 59%;
  padding-left: 1.5em; }

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
.btn {
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  padding: 1em;
  border: 0;
  text-align: center; }
  .btn:hover, .btn:focus {
    background: #808080;
    color: #fff; }
  .btn.disabled {
    background: #eee;
    color: #808080; }

.btn-small {
  padding: 0.5em; }

.btn-large {
  padding: 0.5em;
  text-transform: uppercase;
  background: #808080;
  font-size: 1.4rem;
  font-weight: normal; }

.text-btn {
  font-style: italic; }

/* Generic Placeholder Brick: REMOVE FOR PRODUCTION */
.brick {
  background: #dcdddc;
  padding: 2em;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #eee; }

/* Block */
.block {
  overflow: hidden; }
  .block p:last-child {
    margin-bottom: 0; }

.headline {
  line-height: 1.2; }

/* Hero Block */
.block-hero {
  margin-bottom: 0.5em; }
  .block-hero .b-thumb img {
    display: block; }
  @media all and (min-width: 60em) {
    .block-hero {
      position: relative; }
      .block-hero .b-text {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 1.5em; } }

/* Block Thumbnail with Headline */
.block-thumb {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse; }
  .block-thumb .b-inner {
    display: table-row;
    vertical-align: top;
    overflow: hidden; }
  @media all and (min-width: 29.75em) {
    .block-thumb .b-thumb {
      display: table-cell;
      vertical-align: top;
      width: 30%;
      max-width: 10em; }
      .block-thumb .b-thumb img {
        display: block;
        width: 100%;
        height: auto; } }
  @media all and (min-width: 29.75em) {
    .block-thumb .b-text {
      display: table-cell;
      width: 70%;
      padding: 0 1em; } }

/* Block Headline Summary */
.block-headline-summary a {
  display: block;
  padding: 0.5em; }

/* Block Inset */
.block-inset {
  position: relative; }
  .block-inset .b-thumb {
    position: relative;
    z-index: 0; }
    .block-inset .b-thumb img {
      display: block; }

/* Hero Block */
.block-inset {
  margin-bottom: 0.5em;
  position: relative; }
  .block-inset .headline {
    font-size: 1.1em; }
  .block-inset .b-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5em; }

/* Block Thumb with Summary */
.block-thumb-summary .b-thumb {
  float: left;
  width: 50%; }
.block-thumb-summary .b-text {
  margin-left: 50%;
  padding: 0.5em; }

.inline-list li {
  display: inline-block; }

/* Social List */
.social-list li {
  margin: 0 0.4rem 1em 0; }
.social-list a {
  font-size: 1.6em; }

/* Headline List */
.headline-list {
  margin-bottom: 1em; }
  .headline-list.flush {
    margin: 0; }
  .headline-list h4 {
    font-weight: normal; }
  .headline-list li {
    padding: 0.25em 0;
    border-top: 1px solid #ddd; }

/* Post List */
.post-list li {
  margin-bottom: 1em; }

/* Bullet List */
.bullet-list {
  list-style: square;
  margin: 0 0 1em 1.2em;
  line-height: 1.3; }
  .bullet-list li {
    margin-bottom: 1em; }

/* Text List */
.text-list {
  margin: 0 0 1em;
  line-height: 1.3; }
  .text-list li {
    margin-bottom: 1em; }

.tooltip-container {
  display: inline-block;
  position: relative; }
  .tooltip-container:hover .tooltip {
    display: block; }

.tooltip-link {
  background: #f9f9f9; }

.tooltip {
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 18em;
  padding: 1em;
  background: #fff;
  border: 1px solid #808080;
  box-shadow: 0.3em 0.3em 1em 0 rgba(0, 0, 0, 0.2); }
  .tooltip h2 {
    margin-top: 0; }
  @media all and (min-width: 24em) {
    .tooltip {
      width: 22em; } }
  @media all and (min-width: 29.75em) {
    .tooltip {
      width: 27em; } }
  @media all and (min-width: 39.8em) {
    .tooltip {
      width: 30em; } }

.accordion {
  margin-bottom: 1em; }

.acc-handle {
  background: #131313;
  color: #fff;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 0.5em;
  border-bottom: 1px solid #ddd; }
  .acc-handle:after {
    content: "+";
    float: right; }
  .acc-handle:hover {
    color: #fff;
    background: #333; }
  .acc-handle.active {
    background: #333; }
    .acc-handle.active:after {
      content: "-"; }

.tabs {
  overflow: hidden; }
  .tabs ul {
    display: table;
    width: 100%; }
  .tabs li {
    display: table-cell;
    text-align: center;
    border-right: 1px solid #ddd; }
    .tabs li:last-child {
      border-right: 0; }
  .tabs a {
    display: block;
    padding: 0.5em;
    background: #808080; }
    .tabs a:hover, .tabs a:focus {
      background: #ddd; }
    .tabs a.active {
      background: #333;
      color: #fff; }

.section {
  margin: 0 0 1em; }

.section-title {
  margin-bottom: 0.5em; }

.article-header h1 {
  font-size: 2.5em; }

.byline {
  font-size: 0.875em;
  font-style: italic;
  margin-bottom: 0.5em; }

.social-share {
  overflow: hidden;
  margin-bottom: 1em; }
  .social-share li {
    float: left;
    margin-right: 0.5em; }
  .social-share a {
    background: #333;
    color: #fff;
    display: block;
    padding: 0.5em; }
    .social-share a:hover {
      background: #808080; }

/*------------------------------------*\
    TEMPORARY HOME
\*------------------------------------*/
/* temp home page */
body {
  color: #666; }

.temp-lc {
  margin: 0 auto;
  padding: 0 1em; }
  @media all and (min-width: 29.75em) {
    .temp-lc {
      padding: 0 80px;
      padding: 0 4rem 0 5rem;
      max-width: 736px;
      max-width: 46rem; } }

.homeheader {
  padding: 5em 0 1em; }
  @media all and (min-height: 400px) {
    .homeheader {
      padding-top: 10em; } }
  .homeheader .icon-bigmedium-logo {
    width: 90%;
    height: 0;
    padding-bottom: 17.2964169%; }
    @media all and (min-width: 29.75em) {
      .homeheader .icon-bigmedium-logo {
        width: 380px;
        padding: 0;
        height: 73.03px;
        position: relative;
        left: -71px; } }

.tagline h2 {
  margin-bottom: 0;
  padding-bottom: 0; }
@media all and (min-width: 24em) {
  .tagline {
    font-size: 1.0625em; } }
@media all and (min-width: 39.8em) {
  .tagline {
    font-size: 1.4375em; } }

h2, h3 {
  padding: 0.5em 0;
  margin-bottom: 0.5em; }

h3 {
  color: #666; }

li {
  margin-bottom: 1.5em; }

.section.news,
.section.ideas {
  margin: 4em 0 3em;
  padding-top: 2em;
  background-color: #f9f9f9; }

.section.ideas {
  padding-bottom: 2em; }

.touchbook {
  padding-bottom: 2em; }
  @media all and (max-width: 39.8em) {
    .touchbook .bookcover {
      float: left;
      width: 40%;
      padding-bottom: 0.5em; }
    .touchbook .bookdesc {
      float: none;
      width: 100%; } }

.clients ul {
  width: 100%;
  overflow: hidden; }
.clients li {
  line-height: 1.2;
  display: inline-block;
  float: left;
  padding: 0 2em 1em 0; }
  .clients li:nth-of-type(odd) {
    clear: left; }
.clients .icon {
  display: block;
  margin-bottom: .5em; }
.clients .icon-techcrunch {
  width: 90px;
  height: 45px; }
.clients .icon-ew {
  width: 211px;
  height: 45px; }
.clients .icon-timeinc {
  width: 222px;
  height: 45px; }
.clients .icon-oreilly {
  width: 182px;
  height: 45px;
  background-position: 0px 12px; }

.caption {
  font-size: 0.875em; }

.block-thumb a {
  color: #666;
  text-decoration: none; }

/* temp interior page */
.header {
  background: #f9f9f9;
  padding: 0;
  height: 88px;
  height: 5.5rem;
  text-align: center; }
  .header .lc, .header [role=main] {
    padding: 0 0.5em; }
  .header .icon-bigmedium-logo {
    margin: 0 auto;
    display: block;
    width: 157px;
    background-size: 156px;
    background-position: 0 7px;
    height: 44px;
    line-height: 44px;
    padding: 0; }
  .header ul {
    text-align: center;
    clear: left;
    margin: 0 auto;
    height: 44px;
    overflow: hidden; }
  .header li,
  .header li a {
    height: 44px;
    line-height: 44px;
    display: inline-block;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    margin: 0;
    padding: 0;
    overflow: hidden; }
  .header li a {
    padding: 0 1em 0; }
    .header li a:hover, .header li a:active, .header li a.active {
      color: red;
      text-decoration: underline; }
  @media all and (min-width: 29.75em) {
    .header {
      height: 44px;
      height: 2.75rem;
      text-align: left; }
      .header .icon-bigmedium-logo {
        float: left;
        margin: 0; }
      .header ul {
        clear: none;
        float: right;
        text-align: right; }
      .header li a {
        padding: 0.55em 1em; } }
  @media all and (min-width: 48.2em) {
    .header {
      height: 56px;
      height: 3.5rem; }
      .header .lc, .header [role=main] {
        padding: 0 0.5em; }
      .header .icon-bigmedium-logo {
        width: 210px;
        background-size: 208px;
        background-position: 0 8px;
        height: 56px; }
      .header ul,
      .header li,
      .header li a {
        height: 56px;
        line-height: 56px;
        font-size: 1.0625em; }
      .header li a {
        padding: 0.8em 1em; } }

.article {
  padding-top: 3em; }

.description {
  font-size: 1.4375em; }
