/**
 * Hamburg Convention Bureau - Eventlotse 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2016 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage pageHeader
 * @author     gueldner
 * @since      29.02.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
========================================================== */
/*  =========================================================
basic config
========================================================= */
/* dimensions */
/* path variables */
/*corporate design*/
/*text*/
/*backgrounds*/
/*table colors*/
/*other colors*/
/*percentage dimensions*/
/*percentage margins*/
/*percentage paddings*/
/*vertical aligns*/
.verticalAlignHelper {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
  margin: 0px;
}
/*  =========================================================
general structure
========================================================= */
@media screen {
  #pageHeader__nav {
    text-align: right;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1;
    -ms-flex: 1 1;
    flex: 1 1;
    -webkit-transition: height 0.5s ease;
    transition: height 0.5s ease;
  }
  #pageHeader__nav.verticalAlign:after {
    vertical-align: bottom;
  }
}
@media screen and (max-width: 1400px) and (min-width: 801px) {
  #pageHeader__nav {
    display: inline-block;
  }
}
@media screen and (max-width: 800px) {
  #pageHeader__nav {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  body.-flag-pageHeaderShrinked #pageHeader__nav {
    height: 54px;
  }
  body:not(.-flag-pageHeaderShrinked) #pageHeader__nav {
    height: 92px;
  }
}
@media screen {
  #pageHeader__nav > a {
    display: inline-block;
    font-family: 'HamburgSans-Bold', 'Open Sans', Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1em;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
  }
  #pageHeader__nav > a:hover,
  #pageHeader__nav > a.active {
    color: #fff;
    background-color: #003063;
  }
}
@media screen and (min-width: 1401px) {
  #pageHeader__nav > a {
    padding: 15px 15px 30px 15px;
  }
}
@media screen and (max-width: 1400px) {
  #pageHeader__nav > a {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1;
    -ms-flex: 1 1;
    flex: 1 1;
    text-align: center;
    padding: 15px;
  }
}
