/*  Markup Layout Structure
---------------------------------------------------
  page
    header
      logo
      headerImages
      headerLinks
    rail
      mainNavigation
      toggleBlocks
    content
      secondaryNavigation
      breadcrumb
      primaryContent
      contentRail
      secondaryContent
    footer
---------------------------------------------------
  Notes:
    *  IE-Specific Isolation Hacks:

      IE6 only: (underscore before property)
      selector { _property: value; }

      IE6 and IE7: (# before property)
      selector { #property: value; }

      ** These isolation hacks will cause the
      css to fail validation, but prevent
      having to serve separate stylesheets for
      each browser.
---------------------------------------------------  */
/*  PAGE CONTAINER
---------------------------------------------------  */
#page {
  overflow: hidden;
  height: auto !important;
  height: 1%;
  width: 947px;
  margin: 0 auto;
  background: #fff url(../images/bg_page.png) repeat-y left;
  border: 2px solid #fff;
}

#page.nobg {
  background-image: url(../images/bg_page_nobg.png);
}

/*  HEADER (logo, brand images & header links)
---------------------------------------------------  */
#header {
  position: relative;
  overflow: hidden;
  height: 182px;
  background: #fff;
}
#header.ticker {
  padding: 56px 0 2px;
}
#header.noTicker {
  padding: 28px 0 2px;
}
  
  #logo {
    position: absolute;
    width: 203px;
    height: 182px;
  }
  
  body.front #logo {
    position: absolute;
    left: 205px;
    width: 557px;
    z-index: 10;
  }
  
  /*  HEADER IMAGES
  ---------------------------------------------------  */
  #headerImages {
    overflow: hidden;
    height: 182px;
    background: #fff;
  }
  
  #slot1 {
    position: absolute;
    left: 203px;
    background: transparent url(../images/bg_header_image_slot1.png) no-repeat 0 0;
  }
  
  #slot2 {
    position: absolute;
    left: 575px;
    background: transparent url(../images/bg_header_image_slot2.png) no-repeat 0 0;
  }
  
  .headerImage {
    width: 370px;
    height: 182px;
    border-left: 2px solid #fff;
    _display: inline;
  }
  
  body.front #slot1.headerImage {
    position: absolute;
    float: none;
    width: 203px;
    height: 182px;
    left: 0;
    background: #e3ecf2;
    border: none;
  }
  
  body.front #slot2.headerImage {
    position: absolute;
    float: none;
    width: 183px;
    height: 182px;
    left: 762px;
    background: #f0f0f0;
    z-index: 100;
  }
  
  /*  HEADER LINKS
  ---------------------------------------------------  */
  #header ul.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 747px;
    height: 26px;
    margin: 0;
    padding: 0 200px 0 0;
    background: #808080;
    color: #fff;
    line-height: 26px;
    text-align: right;
  }
    
    #header ul.menu li {
      display: inline;
      margin: 0;
      padding: 0 0 0 10px;
    }
    
    #header ul a:link,
    #header ul a:visited {
      color: #fff;
      text-decoration: none;
    }
    
    #header ul a:hover,
    #header ul a:active {
      text-decoration: underline;
    }
  
  /*  SEARCH FORM
  ---------------------------------------------------  */
  #header form#search-block-form {
    position: absolute;
    top: 2px;
    left: 763px;
    width: 180px;
  }
    #header form#search-block-form input.form-text {
      width: 115px;
      border: none;
      font-size: 11px;
    }
    #header form#search-block-form label {
      visibility: hidden;
      position: absolute;
      top: 2px;
      left: 2px;
      width: 100px;
      color: #999;
      font-weight: normal;
    }
    #header form#search-block-form input.form-submit {
      padding: 0;
      font-size: 11px;
    }
  /*  NEWS TICKER
  ---------------------------------------------------  */
  #header div.ticker {
    position: absolute;
    top: 28px;
    left: 0;
    width: 947px;
    height: 26px;
    margin: 0;
    padding: 0 200px 0 20px;
    background: #e2ecf3;
    color: #808080;
    line-height: 26px;
  }
    #header div.ticker a {
      color: #6b6b6b;
    }
    #header div.ticker a:hover {
      color: #69a0cc;
      text-decoration: underline;
    }


/*  RAIL (navigation & toggle features)
---------------------------------------------------  */
#rail {
  float: left;
  width: 203px;
  padding: 0 0 20px;
}

  /*  MAIN NAVIGATION
  ---------------------------------------------------  */
    #mainNavigation {}

      #mainNavigation ul {
        margin: 0;
        padding: 0;
        background: #fff;
        border-bottom: 2px solid #fff;
        font-size: 15px;
        list-style: none;
      }
        #mainNavigation ul li,
        #mainNavigation ul li.leaf,
        #mainNavigation ul li.expanded,
        #mainNavigation ul li.collapsed {
          margin: 0;
          padding: 0;
          background: #efefef;
          border: 1px solid #d8d8d8;
          border-top: none;
          list-style: none;
          list-style-image: none !important;
        }

        #mainNavigation ul li.first {
          border-top: 1px solid #d8d8d8;
        }

        #mainNavigation ul a:link,
        #mainNavigation ul a:visited {
          display: block;
          height: 38px;
          padding: 0 18px;
          background: transparent url(../images/bg_main_nav_link.png) repeat-x 0 0;
          color: #6b6b6b;
          line-height: 38px;
          text-decoration: none;
        }

        #mainNavigation ul a:hover,
        #mainNavigation ul a:active {
          background-position: 0 -38px;
        }

        #mainNavigation ul li.active-trail a,
        #mainNavigation ul li.active-trail a:link,
        #mainNavigation ul li.active-trail a:visited,
        #mainNavigation ul li.active-trail a:hover,
        #mainNavigation ul li.active-trail a:active {
          background: #69a0cc;
          color: #fff;
        }

        #mainNavigation ul ul {
          background: #efefef;
          border: none;
          font-size: 13px;
        }
          #mainNavigation ul ul li,
          #mainNavigation ul ul li.first,
          #mainNavigation ul ul li.leaf {
            margin: 5px 0;
            border: none;
          }

          #mainNavigation ul ul a:link,
          #mainNavigation ul ul a:visited,
          #mainNavigation ul li.active-trail ul a:link,
          #mainNavigation ul li.active-trail ul a:visited {
            height: 21px;
            padding: 0 10px 0 32px;
            background: transparent;
            color: #6b6b6b;
            border-top: 1px solid #efefef;
            border-bottom: 1px solid #efefef;
            line-height: 21px;
          }

          #mainNavigation ul ul a:hover,
          #mainNavigation ul ul a:active,
          #mainNavigation ul li.active-trail ul a:hover,
          #mainNavigation ul li.active-trail ul a:active {
            background: transparent;
            color: #69a0cc;
          }

          #mainNavigation ul ul li.active-trail a,
          #mainNavigation ul ul li.active-trail a:link,
          #mainNavigation ul ul li.active-trail a:visited,
          #mainNavigation ul ul li.active-trail a:hover,
          #mainNavigation ul ul li.active-trail a:active {
            border-top: 1px solid #d8d8d8;
            border-bottom: 1px solid #d8d8d8;
            background: #e2ecf3;
            color: #6b6b6b;
          }
    
    #adminNavigation {
      padding: 10px 10px 10px 20px;
      background: #fff;
    }
      #adminNavigation h2 {
        color: #6c6c6c;
        font-size: 15px;
      }
      #adminNavigation ul {
        margin: 5px 0;
        padding: 0 0 0 10px;
      }

    /*  TOGGLE FEATURES
    ---------------------------------------------------  */
    .toggleBlock {
      position: relative;
      border-bottom: 2px solid #fff;
    }
      
      .toggleBlock p.heading {
        height: 25px;
        margin: 0;
        padding: 0 5px 0 18px;
        background: #c6dae8 url(../images/bg_toggle_block.png) repeat-x 0 0;
        border: 1px solid #bcccd9;
        color: #6c6d6c;
        font-size: 15px;
        line-height: 25px;
        cursor: pointer;
      }
      
      .toggleBlock p.heading:hover {
        background-position: 0 -25px;
      }
      
      p.heading img {
        display: inline;
        width: 8px;
        height: 8px;
        margin: 0 5px 0 0;
        vertical-align: baseline;
      }

      .toggleContent {
        height: 185px;
        padding: 5px 10px;
        background: #e2ecf3;
        border: 1px solid #d8d8d8;
        border-top: none;
      }
    
    /*  Stock Quote  */
    dl.stockQuote {
      overflow: hidden;
      height: auto !important;
      height: 120px;
      margin: 5px 0 20px;
      
    }
    
    dl.stockQuote dt {
      clear: both;
      float: left;
      width: 40%;
      margin: 0 0 5px;
      padding: 0;
      font-weight: bold;
      text-align: right;
    }
    
    dl.stockQuote dd {
      float: right;
      width: 55%;
      margin: 0 0 5px;
      padding: 0;
      text-align: left;
    }
    
    p.stockRefresh {
      display: none;
      text-align: center;
    }
    
    ul.notes {
      margin: 0;
      padding: 0;
      font-size: 10px;
      list-style: none;
    }
    
    ul.notes li {
      margin: 0;
      padding: 0;
    }
        

/*  CONTENT
---------------------------------------------------  */
#content {
  position: relative;
  float: right;
  width: 744px;
}


/*    SECONDARY NAVIGATION
  ---------------------------------------------------  */
  #secondaryNavigation {
    margin: 0;
    padding: 0 30px;
    background: #e2ecf3;
    border-top: 1px solid #d8d8d8;
    color: #a5a5a5;
  }
    #secondaryNavigation ul {
      margin: 0;
      padding: 0;
      list-style: none;
      line-height: 37px;
    }
    
    #secondaryNavigation ul li {
      display: inline;
      margin: 0;
      padding: 0 5px 0 7px;
      white-space: nowrap;
      border-left: 1px solid #6b6b6b;
    }

    #secondaryNavigation ul li.first {
      border-left: none;
      padding-left: 0;
    }
    
    #secondaryNavigation a:link,
    #secondaryNavigation a:visited {
      color: #6b6b6b;
    }
    
    #secondaryNavigaton a:hover,
    #secondaryNavigation a:active,
    #secondaryNavigation ul.menu li.leaf a:hover,
    #secondaryNavigation a.active {
      color: #7dabcd;
    }

/*    BREADCRUMB
  ---------------------------------------------------  */
  body.front #breadcrumb {
    display: none;
  }
  
  #breadcrumb {
    height: 38px;
    margin: 0 0 0 2px;
    padding: 0 30px;
    background: #fff;
    border-top: 1px solid #d8d8d8;
    color: #a5a5a5;
    line-height: 30px;
  }
    
    #breadcrumb .breadcrumb {
      padding: 4px 0 0 0;
    }
  
    #breadcrumb p span {
      color: #7dabcd;
    }
    
    #breadcrumb a {
      color: #a5a5a5;
    }
    
    #breadcrumb a:hover {
      text-decoration: underline;
    }
    
    #breadcrumb a.active {
      color: #7dabcd;
    }

  /*  PRIMARY CONTENT
  ---------------------------------------------------  */
  #primaryContent {
    padding: 10px 60px 20px 30px;
    background: #fff;
  }
  
  body.front #primaryContent {
    height: 550px;
    padding: 0 0 0 2px;
  }
  
  body.page-admin #primaryContent {
    padding: 10px 30px 20px;
  }
  
  #flashContent {
    width: 742px;
    height: 550px;
  }
    
    body.page-admin #flashContent {
      height: auto;
    }
  
  #edit-field-flash-logo-0-wrapper .widget-preview {
    background: #888;
  }
  
  #primaryContent.column {
    float: left;
    padding: 20px 30px;
    width: 458px;
    background: #fff;
    border-right: 1px solid #d8d8d8;
  }
  
  body.node-type-iframe #primaryContent,
  #primaryContent.iframe,
  .iframe {
    _width: 744px;
    padding: 0;
  }
    .iframe iframe,
    #primaryContent.iframe iframe {
      width: 744px;
    }
    .iframe h1,
    #primaryContent.iframe h1 {
      display: none;
    }
  
  #primaryContent h2 {
    margin: 20px 0 0;
  }
  #primaryContent p {
    font-size: 15px;
  }
  
  #primaryContent p.views-field-edit-node {
    font-size: 12px;
  }
  
  #primaryContent p.disclaimer {
    padding: 40px 0 0;
    font-size: 9px;
  }
  
  #primaryContent ul {
    font-size: 14px;
  }
  
  #primaryContent ul ul {
    font-size: 12px;
  }
  
  #primaryContent ul.pager {
    font-size: 12px;
    color: #69a0cc;
  }
    #primaryContent ul.pager li {
      margin: 0;
    }
    
    #primaryContent ul.pager a:link,
    #primaryContent ul.pager a:visited {
      color: #6b6b6b;
    }
    
    #primaryContent ul.pager a:hover,
    #primaryContent ul.pager a:active {
      color: #000;
    }
    
  
  .teaserBlock,
  .listBlock {
    margin: 20px 0;
    padding: 0 0 15px;
    border-bottom: 1px solid #ccc;
  }
  
  #primaryContent .teaserBlock p {
    font-size: 14px;
  }
  
  #primaryContent .teaserBlock p.moreLink {
    font-size: 12px;
  }
  
  #primaryContent.column .teaserBlock h2 {
    font-size: 18px;
  }
  
  #primaryContent img.imagefield-field_image {
    margin: 30px auto;
  }
  
  /*  BRANDS OVERVIEW
  ---------------------------------------------------  */
  #brandPortfolio {
    margin: 0 -60px 25px -30px;
  }
    #brandPortfolio ul {
      overflow: hidden;
      height: auto !important;
      height: 1%;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    #brandPortfolio ul li {
      float: left;
      width: 246px;
      margin: 0 0 2px 2px;
      padding: 0;
      text-align: center;
      _display: inline;
    }
    
    #brandPortfolio img {
      margin: 0 auto 10px;
    }
    
    #brandPortfolio .views-admin-links ul li {
      float: none;
      width: auto;
    }
  
  .teaserBlock.brand {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    _width: 714px;
    margin: 40px -60px 0 0;
    border: none;
  }
    .teaserBlock.brand .description {
      float: left;
      width: 315px;
    }
    
    .teaserBlock.brand  h2 {
      margin: 0;
      line-height: 1;
    }
    
    #primaryContent .teaserBlock .description p {
      font-size: 13px;
    }
    
    .teaserBlock.brand img {
      float: right;
      width: 367px;
    }
  
  /*  BRAND DETAIL
  ---------------------------------------------------  */
  body.node-type-brand h1 {
    display: none;
  }
  
  #brandDetail {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    _width: 742px;
    margin: 0 -60px 0 -28px;
    background: #fff;
  }
    #brandDetail img {
      _float: left;
    }
  
    #brandDetail .description {
      float: right;
      width: 310px;
      padding: 0 30px 10px;
      _display: inline;
    }
  
    #brandDetail .description h1 {
      display: block;
      margin: 0 0 30px;
    }
  
    img.collage {
      float: left;
      width: 370px;
    }
  
  /* video */
  .media_large {
    padding: 25px 0;
  }
  
  /*  BRANDS SHOPPING
  ---------------------------------------------------  */
  .brandsShopping {
    margin: 20px -60px 25px 0;
  }
    .brandsShopping ul.shoppingLinks {
      overflow: hidden;
      height: auto !important;
      height: 1%;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    .brandsShopping ul.shoppingLinks li {
      float: left;
      width: 195px;
      margin: 0;
      padding: 0 40px 30px 0;
      _display: inline;
    }
    
    #primaryContent .brandsShopping p {
      margin: 5px 0;
      font-size: 12px;
    }
  
  
  
  /*  BUSINESS UNITS
  ---------------------------------------------------  */
  body.node-type-business-unit h1 {
    display: none;
  }
  
  body.node-type-business-unit h1.logoHeading {
    display: block;
    margin: 0 0 30px;
  }
  
  #allBrands {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    _width: 684px;
    margin-right: -30px;
    background: #fff url(../images/bg_all_brands.png) repeat-y top;
  }
  
  #allBrands.buOnly {
    padding: 30px 0 60px;
    background: #fff;
  }
  
  #allBrands h2 {
    margin: 0 auto 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid #ddd;
  }
  
  #allBrands h2 img {
    margin: 0 auto;
  }
  
  .businessUnit  {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    padding: 20px 0 20px 230px;
  }
    .businessUnit img {
      float: left;
      margin: 0 0 0 -230px;
      _display: inline;
    }
    
    #primaryContent .businessUnit p {
      font-size: 13px;
    }
  
  .businessUnitFamily {
    float: left;
    width: 228px;
    _width: 220px;
    margin: 0;
  }
    
    .businessUnitFamily img {
      margin: 0 auto;
    }
    
    .businessUnitFamily ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    .businessUnitFamily ul li {
      margin: 0;
      padding: 12px 0;
      text-align: center;
    }
    
    .businessUnitFamily ul img {
      display: inline;
      vertical-align: middle;
    }
  
  #brandLogos img {
    margin: 15px auto;
  }
  
  
  /*  NEWS
  ---------------------------------------------------  */
  .view-news-releases {
    margin: 15px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #ddd;
  }
  
  #primaryContent .news-teaser h2 {
    font-size: 18px;
    font-weight: normal;
  }
  
  #primaryContent .newsContent p {
    font-size: 14px;
  }
  
  #primaryContent p.dateline {
    margin: 10px 0 0;
    color: #3c3c3c;
    font-size: 13px;
    text-transform: uppercase;
  }
  
  .news-teaser { padding: 0 0 20px; margin: 0 0 20px; border-bottom: 1px solid #ddd }
  .news-node .submitted { text-transform:uppercase;letter-spacing:2px;font-weight:bold;color:#444;display:block;margin:20px 0 0; }
  #primaryContent ul.links { font-size: 12px; }
  #primaryContent ul.links li.first { padding-left:0 }
  
  #primaryContent .brandsPR ul {
    margin: 0 0 20px;
    padding: 0;
    font-size: 12px;
    list-style: none;
  }
  
  /* Recent News  */
  .toggleBlock .view-news-releases {
    margin: 0;
    padding: 0;
    border: none;
  }
    .toggleBlock .views-field-created {
      margin: 0 0 3px;
      font-size: 11px;
      font-weight: bold;
    }
    .toggleBlock .views-field-view-node {
      margin: 3px 0 0;
    }
    .toggleBlock .view-news-releases ul {
      margin: 0;
      padding: 0 0 0 10px;
      list-style: none;
    }
      .toggleBlock .view-news-releases ul li {
        margin: 5px 0 10px;
        padding: 0;
        line-height: 1.3;
        list-style: none;
      }
  
  /*  DOWNLOADS
  ---------------------------------------------------  */
  ul.downloadsList {
    margin: 15px 0;
    padding: 0;
    list-style: none;
  }
    ul.downloadsList li {
      min-height: 65px;
      height: auto !important;
      height: 65px;
      margin: 0 0 30px;
      padding: 0 0 0 60px;
      background: transparent url(../images/icon_download.png) no-repeat 0 3px;
    }
    
    #secondaryContent ul.downloadsList p {
      margin: 0 0 3px;
      font-size: 14px;
      line-height: 1.2;
    }
  
  
  /*  LEADERSHIP
  ---------------------------------------------------  */
  dl.leadership dt {
    margin: 0;
    padding: 0;
  }
  
  dl.leadership h3 {
    font-size: 13px;
  }
  
  dl.leadership dd {
    margin: 0 0 10px;
    padding: 0;
  }
  
  #secondaryContent dl.leadership p {
    margin: 0;
    font-size: 12px;
  }
  
  #bio img,
  #bio img.imagefield-field_image {
    margin: 0 0 15px;
  }
  
  #bio h1 {
    font-size: 14px;
    font-weight: bold;
  }
  
  #bio p {
    font-size: 13px;
  }
  
  /*  LOCATIONS
  ---------------------------------------------------  */
  .locations ul {
    margin: 0;
    padding: 0 100px 0 0;
    list-style: none;
  }
  .locations ul li {
    margin: 0 0 20px;
    padding: 0;
  }
  .locations h2 {
    font-size: 14px;
    font-weight: bold;
  }
  
  .locations h3 {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: normal;
  }
  
  #primaryContent .locations p {
    margin: 0;
    font-size: 13px;
  }

  /*  CONTACTS
  ---------------------------------------------------  */
  #primaryContent ul.contactList {
    margin: 0 0 25px;
    padding: 0;
    font-size: 13px;
    list-style: none;
  }
    
    #primaryContent ul.contactList li {
      margin: 0 0 15px;
    }
  
  
  /*  ASSOCIATE STORIES
  ---------------------------------------------------  */
  .associateStory {
    margin: 30px 0 0;
    padding: 0;
  }
    .associateStory img {
      float: left;
      width: 75px;
      margin: 0 25px 0 0;
    }
  
  .associateStory.image {
    padding: 0 0 0 100px;
  }
    .associateStory.image img {
      margin: 0 25px 0 -100px;
    }
    
  
  #primaryContent p.jobTitle {
    margin: 0 0 10px;
    font-size: 13px;
  }
  
  .toggleBlock .view-associate-stories {
    padding: 0 0 0 10px;
  }
    .toggleBlock .view-associate-stories p {
      text-indent: -5px;
    }
    
    .toggleBlock .view-associate-stories .views-field-title {
      font-style: italic;
      text-align: right;
    }
    
    .toggleBlock .views-field-view-node {
      font-size: 11px;
    }

  /*  SEARCH RESULTS
  ---------------------------------------------------  */
  dl.search-results {}
  
  dl.search-results dt.title {
    font-size: 17px;
    font-weight: normal;
    line-height: 1.2;
  }
  
  dl.search-results dd {
    margin: 0 0 25px;
    padding: 0;
  }
  
  #primaryContent p.search-snippet {
    font-size: 13px;
  }
  
  #primaryContent p.search-info {
    display: none;
  }
  
  /*  CONTENT RAIL (sidebar content)
  ---------------------------------------------------  */
  #contentRail {
    float: right;
    width: 203px;
    padding: 10px;
    border-left: 2px solid #fff;
  }

  #contentRail h2 {
    margin: 0;
    color: #69a0cc;
    font-size: 18px;
  }

  #contentRail p {
    margin: 0;
    font-size: 12px;
  }

  #contentRail .feature {
    margin: 0 -10px 0 -8px;
    padding: 5px 10px;
  }

  #contentRail .feature h3 {
    color: #69a0cc;
    font-size: 14px;
    font-weight: normal;
  }

  #contentRail .feature h4 {
    margin: 0;
    color: #6b6b6b;
    font-size: 12px;
    font-weight: normal;
  }
  
  #contentRail .feature ul {
    margin: 5px 0;
    padding: 0;
    list-style: none;
  }
    
    #contentRail .feature ul li {
      margin: 0 0 10px;
      padding: 0;
      list-style: none;
    }
    
    #contentRail .feature ul p {
      line-height: 1.4;
    }
    
    
  /*  SECONDARY CONTENT (bottom content teasers)
  ---------------------------------------------------  */
  #secondaryContent {
    clear: both;
    padding: 20px 0;
  }
  
  #secondaryContent p {
    font-size: 14px;
  }
  
  #secondaryContent .teaserBlock,
  #secondaryContent .listBlock {
    float: left;
    width: 315px;
    margin: 0 25px 15px 30px;
    padding: 0 0 10px;
    border: none;
    _display: inline;
  }
    
    #secondaryContent .teaserBlock h2,
    #secondaryContent .listBlock h2 {
      color: #69a0cc;
      font-size: 27px;
      font-weight: normal;
      line-height: 1.2;
    }
  

/*  FOOTER
---------------------------------------------------  */
#footer {
  clear: both;
  overflow: hidden;
  height: 26px;
  padding: 0 18px;
  background: #808080;
  border-top: 2px solid #fff;
  color: #fff;
}
  
  #footer ul {
    float: right;
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
  }
  
  #footer ul li {
    display: inline;
    margin: 0;
    padding: 0 0 0 15px;
    line-height: 26px;
  }
  
  #footer a:link,
  #footer a:visited {
    color: #fff;
    text-decoration: none;
  }
  
  #footer a:hover,
  #footer a:active {
    text-decoration: underline;
  }
  
  #footer p {
    margin: 0;
    line-height: 26px;
  }

    #footer p.release {
      float: right;
    }