/**
 * CONTENTS
 *
 * SETTINGS
 * Global...............Globally-available variables and config.
 * Colors...............Init the color classes
 * Responsive...........Listing the breakpoints
 * Overrides............Overrides some inuit default variables.
 *
 * TOOLS
 * Functions............Useful functions.
 * Mixins...............Useful mixins.
 * Grids................Grid system
 *
 * GENERIC
 * Normalize.css........A level playing field.
 * Box-sizing...........Better default `box-sizing`.
 * Shared...............Spacing for constant rythm
 * Layout...............Spacing for one-direction rythm.
 *
 * BASE
 * Page.................Page-level styling
 * Headings.............H1–H6 styles.
 * Links................Links styling
 *
 * OBJECTS
 * Wrappers.............Wrapping and constraining elements.
 *
 * COMPONENTS
 * Page-head............The main page header.
 * Page-foot............The main page footer.
 * Buttons..............Button elements.
 *
 * TRUMPS
 * Text.................Text helpers.
 */
/**
 * #SETTINGS
 */
/*!
 * inuitcss, by @csswizardry
 *
 * github.com/inuitcss | inuitcss.com
 */
/*------------------------------------*\
    #COLORS
\*------------------------------------*/
/*------------------------------------*\
    #GLOBAL-SETTINGS
\*------------------------------------*/
/*------------------------------------*\
    #OVERRIDES-SETTINGS
\*------------------------------------*/
/**
 * #TOOLS
 */
/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
    $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -24px;
  /* [3] */ }

/**
     * 1. Cause columns to stack side-by-side.
     * 2. Space columns apart.
     * 3. Align columns to the tops of each other.
     * 4. Full-width unless told to behave otherwise.
     * 5. Required to combine fluid widths and fixed gutters.
     */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left; }

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right; }
  .grid--right > .grid__item {
    text-align: left; }

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center; }
  .grid--center > .grid__item {
    text-align: left; }

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle; }

.grid--bottom > .grid__item {
  vertical-align: bottom; }

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -12px; }
  .grid--narrow > .grid__item {
    padding-left: 12px; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -48px; }
  .grid--wide > .grid__item {
    padding-left: 48px; }

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--flush {
  margin-left: 0; }
  .grid--flush > .grid__item {
    padding-left: 0; }

/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
     * Whole
     */
.one-whole {
  width: 100%; }

/**
     * Halves
     */
.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

/**
     * Thirds
     */
.one-third, .two-sixths, .four-twelfths {
  width: 33.333%; }

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%; }

/**
     * Quarters
     */
.one-quarter, .two-eighths, .three-twelfths {
  width: 25%; 
  float:right;}

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%; }

/**
     * Fifths
     */
.one-fifth, .two-tenths {
  width: 20%; }

.two-fifths, .four-tenths {
  width: 40%; }

.three-fifths, .six-tenths {
  width: 60%; }

.four-fifths, .eight-tenths {
  width: 80%; }

/**
     * Sixths
     */
.one-sixth, .two-twelfths {
  width: 16.666%; }

.five-sixths, .ten-twelfths {
  width: 83.333%; }

/**
     * Eighths
     */
.one-eighth {
  width: 12.5%; }

.three-eighths {
  width: 37.5%; }

.five-eighths {
  width: 62.5%; }

.seven-eighths {
  width: 87.5%; }

/**
     * Tenths
     */
.one-tenth {
  width: 10%; }

.three-tenths {
  width: 30%; }

.seven-tenths {
  width: 70%; }

.nine-tenths {
  width: 90%; }

/**
     * Twelfths
     */
.one-twelfth {
  width: 8.333%; }

.five-twelfths {
  width: 41.666%; }

.seven-twelfths {
  width: 58.333%; }

.eleven-twelfths {
  width: 91.666%; }

/**
 * Our responsive classes, if we have enabled them.
 */





  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .lap-and-up--one-whole {
    width: 100%; }
  .lap-and-up--one-half, .lap-and-up--two-quarters, .lap-and-up--three-sixths, .lap-and-up--four-eighths, .lap-and-up--five-tenths, .lap-and-up--six-twelfths {
    width: 50%; }
  .lap-and-up--one-third, .lap-and-up--two-sixths, .lap-and-up--four-twelfths {
    width: 33.333%; }
  .lap-and-up--two-thirds, .lap-and-up--four-sixths, .lap-and-up--eight-twelfths {
    width: 66.666%; }
  .lap-and-up--one-quarter, .lap-and-up--two-eighths, .lap-and-up--three-twelfths {
    width: 25%; }
  .lap-and-up--three-quarters, .lap-and-up--six-eighths, .lap-and-up--nine-twelfths {
    width: 75%; }
  .lap-and-up--one-fifth, .lap-and-up--two-tenths {
    width: 20%; }
  .lap-and-up--two-fifths, .lap-and-up--four-tenths {
    width: 40%; }
  .lap-and-up--three-fifths, .lap-and-up--six-tenths {
    width: 60%; }
  .lap-and-up--four-fifths, .lap-and-up--eight-tenths {
    width: 80%; }
  .lap-and-up--one-sixth, .lap-and-up--two-twelfths {
    width: 16.666%; }
  .lap-and-up--five-sixths, .lap-and-up--ten-twelfths {
    width: 83.333%; }
  .lap-and-up--one-eighth {
    width: 12.5%; }
  .lap-and-up--three-eighths {
    width: 37.5%; }
  .lap-and-up--five-eighths {
    width: 62.5%; }
  .lap-and-up--seven-eighths {
    width: 87.5%; }
  .lap-and-up--one-tenth {
    width: 10%; }
  .lap-and-up--three-tenths {
    width: 30%; }
  .lap-and-up--seven-tenths {
    width: 70%; }
  .lap-and-up--nine-tenths {
    width: 90%; }
  .lap-and-up--one-twelfth {
    width: 8.333%; }
  .lap-and-up--five-twelfths {
    width: 41.666%; }
  .lap-and-up--seven-twelfths {
    width: 58.333%; }
  .lap-and-up--eleven-twelfths {
    width: 91.666%; } 



  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .desk--one-whole {
    width: 100%; }
  .desk--one-half, .desk--two-quarters, .desk--three-sixths, .desk--four-eighths, .desk--five-tenths, .desk--six-twelfths {
    width: 50%; }
  .desk--one-third, .desk--two-sixths, .desk--four-twelfths {
    width: 33.333%; }
  .desk--two-thirds, .desk--four-sixths, .desk--eight-twelfths {
    width: 66.666%; }
  .desk--one-quarter, .desk--two-eighths, .desk--three-twelfths {
    width: 25%; }
  .desk--three-quarters, .desk--six-eighths, .desk--nine-twelfths {
    width: 75%; }
  .desk--one-fifth, .desk--two-tenths {
    width: 20%; }
  .desk--two-fifths, .desk--four-tenths {
    width: 40%; }
  .desk--three-fifths, .desk--six-tenths {
    width: 60%; }
  .desk--four-fifths, .desk--eight-tenths {
    width: 80%; }
  .desk--one-sixth, .desk--two-twelfths {
    width: 16.666%; }
  .desk--five-sixths, .desk--ten-twelfths {
    width: 83.333%; }
  .desk--one-eighth {
    width: 12.5%; }
  .desk--three-eighths {
    width: 37.5%; }
  .desk--five-eighths {
    width: 62.5%; }
  .desk--seven-eighths {
    width: 87.5%; }
  .desk--one-tenth {
    width: 10%; }
  .desk--three-tenths {
    width: 30%; }
  .desk--seven-tenths {
    width: 70%; }
  .desk--nine-tenths {
    width: 90%; }
  .desk--one-twelfth {
    width: 8.333%; }
  .desk--five-twelfths {
    width: 41.666%; }
  .desk--seven-twelfths {
    width: 58.333%; }
  .desk--eleven-twelfths {
    width: 91.666%; } 



/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/**
     * Not a particularly great selector, but the DRYest way to do things.
     */
[class*="push--"] {
  position: relative; }

/**
     * Whole
     */
.push--one-whole {
  left: 100%; }

/**
     * Halves
     */
.push--one-half, .push--two-quarters, .push--three-sixths, .push--four-eighths, .push--five-tenths, .push--six-twelfths {
  left: 50%; }

/**
     * Thirds
     */
.push--one-third, .push--two-sixths, .push--four-twelfths {
  left: 33.333%; }

.push--two-thirds, .push--four-sixths, .push--eight-twelfths {
  left: 66.666%; }

/**
     * Quarters
     */
.push--one-quarter, .push--two-eighths, .push--three-twelfths {
  left: 25%; }

.push--three-quarters, .push--six-eighths, .push--nine-twelfths {
  left: 75%; }

/**
     * Fifths
     */
.push--one-fifth, .push--two-tenths {
  left: 20%; }

.push--two-fifths, .push--four-tenths {
  left: 40%; }

.push--three-fifths, .push--six-tenths {
  left: 60%; }

.push--four-fifths, .push--eight-tenths {
  left: 80%; }

/**
     * Sixths
     */
.push--one-sixth, .push--two-twelfths {
  left: 16.666%; }

.push--five-sixths, .push--ten-twelfths {
  left: 83.333%; }

/**
     * Eighths
     */
.push--one-eighth {
  left: 12.5%; }

.push--three-eighths {
  left: 37.5%; }

.push--five-eighths {
  left: 62.5%; }

.push--seven-eighths {
  left: 87.5%; }

/**
     * Tenths
     */
.push--one-tenth {
  left: 10%; }

.push--three-tenths {
  left: 30%; }

.push--seven-tenths {
  left: 70%; }

.push--nine-tenths {
  left: 90%; }

/**
     * Twelfths
     */
.push--one-twelfth {
  left: 8.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eleven-twelfths {
  left: 91.666%; }


/*
@media only screen and (min-width: 720px) and (max-width: 1119px) {
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
 /* .push--lap--one-whole {
    left: 100%; }
  .push--lap--one-half, .push--lap--two-quarters, .push--lap--three-sixths, .push--lap--four-eighths, .push--lap--five-tenths, .push--lap--six-twelfths {
    left: 50%; }
  .push--lap--one-third, .push--lap--two-sixths, .push--lap--four-twelfths {
    left: 33.333%; }
  .push--lap--two-thirds, .push--lap--four-sixths, .push--lap--eight-twelfths {
    left: 66.666%; }
  .push--lap--one-quarter, .push--lap--two-eighths, .push--lap--three-twelfths {
    left: 25%; }
  .push--lap--three-quarters, .push--lap--six-eighths, .push--lap--nine-twelfths {
    left: 75%; }
  .push--lap--one-fifth, .push--lap--two-tenths {
    left: 20%; }
  .push--lap--two-fifths, .push--lap--four-tenths {
    left: 40%; }
  .push--lap--three-fifths, .push--lap--six-tenths {
    left: 60%; }
  .push--lap--four-fifths, .push--lap--eight-tenths {
    left: 80%; }
  .push--lap--one-sixth, .push--lap--two-twelfths {
    left: 16.666%; }
  .push--lap--five-sixths, .push--lap--ten-twelfths {
    left: 83.333%; }
  .push--lap--one-eighth {
    left: 12.5%; }
  .push--lap--three-eighths {
    left: 37.5%; }
  .push--lap--five-eighths {
    left: 62.5%; }
  .push--lap--seven-eighths {
    left: 87.5%; }
  .push--lap--one-tenth {
    left: 10%; }
  .push--lap--three-tenths {
    left: 30%; }
  .push--lap--seven-tenths {
    left: 70%; }
  .push--lap--nine-tenths {
    left: 90%; }
  .push--lap--one-twelfth {
    left: 8.333%; }
  .push--lap--five-twelfths {
    left: 41.666%; }
  .push--lap--seven-twelfths {
    left: 58.333%; }
  .push--lap--eleven-twelfths {
    left: 91.666%; } }*/


  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  .push--lap-and-up--one-whole {
    left: 100%; }
  .push--lap-and-up--one-half, .push--lap-and-up--two-quarters, .push--lap-and-up--three-sixths, .push--lap-and-up--four-eighths, .push--lap-and-up--five-tenths, .push--lap-and-up--six-twelfths {
    left: 50%; }
  .push--lap-and-up--one-third, .push--lap-and-up--two-sixths, .push--lap-and-up--four-twelfths {
    left: 33.333%; }
  .push--lap-and-up--two-thirds, .push--lap-and-up--four-sixths, .push--lap-and-up--eight-twelfths {
    left: 66.666%; }
  .push--lap-and-up--one-quarter, .push--lap-and-up--two-eighths, .push--lap-and-up--three-twelfths {
    left: 25%; }
  .push--lap-and-up--three-quarters, .push--lap-and-up--six-eighths, .push--lap-and-up--nine-twelfths {
    left: 75%; }
  .push--lap-and-up--one-fifth, .push--lap-and-up--two-tenths {
    left: 20%; }
  .push--lap-and-up--two-fifths, .push--lap-and-up--four-tenths {
    left: 40%; }
  .push--lap-and-up--three-fifths, .push--lap-and-up--six-tenths {
    left: 60%; }
  .push--lap-and-up--four-fifths, .push--lap-and-up--eight-tenths {
    left: 80%; }
  .push--lap-and-up--one-sixth, .push--lap-and-up--two-twelfths {
    left: 16.666%; }
  .push--lap-and-up--five-sixths, .push--lap-and-up--ten-twelfths {
    left: 83.333%; }
  .push--lap-and-up--one-eighth {
    left: 12.5%; }
  .push--lap-and-up--three-eighths {
    left: 37.5%; }
  .push--lap-and-up--five-eighths {
    left: 62.5%; }
  .push--lap-and-up--seven-eighths {
    left: 87.5%; }
  .push--lap-and-up--one-tenth {
    left: 10%; }
  .push--lap-and-up--three-tenths {
    left: 30%; }
  .push--lap-and-up--seven-tenths {
    left: 70%; }
  .push--lap-and-up--nine-tenths {
    left: 90%; }
  .push--lap-and-up--one-twelfth {
    left: 8.333%; }
  .push--lap-and-up--five-twelfths {
    left: 41.666%; }
  .push--lap-and-up--seven-twelfths {
    left: 58.333%; }
  .push--lap-and-up--eleven-twelfths {
    left: 91.666%; } 

/*@media only screen and (max-width: 1119px) {
  /**
     * Whole
     */
  /**
     * Halves
     */
  /**
     * Thirds
     */
  /**
     * Quarters
     */
  /**
     * Fifths
     */
  /**
     * Sixths
     */
  /**
     * Eighths
     */
  /**
     * Tenths
     */
  /**
     * Twelfths
     */
  /*.push--portable--one-whole {
    left: 100%; }
  .push--portable--one-half, .push--portable--two-quarters, .push--portable--three-sixths, .push--portable--four-eighths, .push--portable--five-tenths, .push--portable--six-twelfths {
    left: 50%; }
  .push--portable--one-third, .push--portable--two-sixths, .push--portable--four-twelfths {
    left: 33.333%; }
  .push--portable--two-thirds, .push--portable--four-sixths, .push--portable--eight-twelfths {
    left: 66.666%; }
  .push--portable--one-quarter, .push--portable--two-eighths, .push--portable--three-twelfths {
    left: 25%; }
  .push--portable--three-quarters, .push--portable--six-eighths, .push--portable--nine-twelfths {
    left: 75%; }
  .push--portable--one-fifth, .push--portable--two-tenths {
    left: 20%; }
  .push--portable--two-fifths, .push--portable--four-tenths {
    left: 40%; }
  .push--portable--three-fifths, .push--portable--six-tenths {
    left: 60%; }
  .push--portable--four-fifths, .push--portable--eight-tenths {
    left: 80%; }
  .push--portable--one-sixth, .push--portable--two-twelfths {
    left: 16.666%; }
  .push--portable--five-sixths, .push--portable--ten-twelfths {
    left: 83.333%; }
  .push--portable--one-eighth {
    left: 12.5%; }
  .push--portable--three-eighths {
    left: 37.5%; }
  .push--portable--five-eighths {
    left: 62.5%; }
  .push--portable--seven-eighths {
    left: 87.5%; }
  .push--portable--one-tenth {
    left: 10%; }
  .push--portable--three-tenths {
    left: 30%; }
  .push--portable--seven-tenths {
    left: 70%; }
  .push--portable--nine-tenths {
    left: 90%; }
  .push--portable--one-twelfth {
    left: 8.333%; }
  .push--portable--five-twelfths {
    left: 41.666%; }
  .push--portable--seven-twelfths {
    left: 58.333%; }
  .push--portable--eleven-twelfths {
    left: 91.666%; } }*/



  .push--desk--one-whole {
    left: 100%; }
  .push--desk--one-half, .push--desk--two-quarters, .push--desk--three-sixths, .push--desk--four-eighths, .push--desk--five-tenths, .push--desk--six-twelfths {
    left: 50%; }
  .push--desk--one-third, .push--desk--two-sixths, .push--desk--four-twelfths {
    left: 33.333%; }
  .push--desk--two-thirds, .push--desk--four-sixths, .push--desk--eight-twelfths {
    left: 66.666%; }
  .push--desk--one-quarter, .push--desk--two-eighths, .push--desk--three-twelfths {
    left: 25%; }
  .push--desk--three-quarters, .push--desk--six-eighths, .push--desk--nine-twelfths {
    left: 75%; }
  .push--desk--one-fifth, .push--desk--two-tenths {
    left: 20%; }
  .push--desk--two-fifths, .push--desk--four-tenths {
    left: 40%; }
  .push--desk--three-fifths, .push--desk--six-tenths {
    left: 60%; }
  .push--desk--four-fifths, .push--desk--eight-tenths {
    left: 80%; }
  .push--desk--one-sixth, .push--desk--two-twelfths {
    left: 16.666%; }
  .push--desk--five-sixths, .push--desk--ten-twelfths {
    left: 83.333%; }
  .push--desk--one-eighth {
    left: 12.5%; }
  .push--desk--three-eighths {
    left: 37.5%; }
  .push--desk--five-eighths {
    left: 62.5%; }
  .push--desk--seven-eighths {
    left: 87.5%; }
  .push--desk--one-tenth {
    left: 10%; }
  .push--desk--three-tenths {
    left: 30%; }
  .push--desk--seven-tenths {
    left: 70%; }
  .push--desk--nine-tenths {
    left: 90%; }
  .push--desk--one-twelfth {
    left: 8.333%; }
  .push--desk--five-twelfths {
    left: 41.666%; }
  .push--desk--seven-twelfths {
    left: 58.333%; }
  .push--desk--eleven-twelfths {
    left: 91.666%; } 

/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/**
 * #GENERIC
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio, canvas, progress, video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b, strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button, input, optgroup, select, textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button, select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"], input[type="radio"] {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

/*------------------------------------*\
    #BOX-SIZING
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

/*------------------------------------*\
    #SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned,this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
h1, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, p, address, table, fieldset, figure, pre {
  margin-bottom: 24px;
  margin-bottom: 1.5rem; }

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once,here.
 */
ul, ol, dd {
  margin-left: 48px;
  margin-left: 3rem; }

/*------------------------------------*\
    #GENERIC-LAYOUT
\*------------------------------------*/
/**
 * All the elements have margin-top: 0, so we can declare all spacings
 * in a single unified direction
 */
h1, h2, h3, h4, h5, h6, ul, ol, dl, blockquote, p, address, table, fieldset, figure, pre, hr {
  margin-top: 0; }

/**
 * Some useful classes for positioning
 */
.ta-c, .main-navigation {
  text-align: center; }

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

.ta-r {
  text-align: right; }

.super-container {
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
          transition: transform 0.5s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
  .menu-open .super-container {
    left: 220px; }
    .csstransforms .menu-open .super-container {
      left: 0;
      -webkit-transform: translate3d(220px, 0, 0);
              transform: translate3d(220px, 0, 0); }

.desktop-only {
  display: block; }


/**
 * #BASE
 */
/*------------------------------------*\
    #PAGE
\*------------------------------------*/
/**
 * High-, page-level styling.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project,
 *    sourced from our default variables. The `font-size` is calculated to exist
 *    in ems, the `line-height` is calculated to exist unitlessly.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 * 4. Prevent certain mobile browsers from automatically zooming fonts.
 * 5. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 */
html {
  font-size: 1em;
  /* [1] */
  line-height: 1.5;
  /* [1] */
  background-color: #fff;
  color: #333;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  -moz-osx-font-smoothing: grayscale;
  /* [5] */
  -webkit-font-smoothing: antialiased;
  /* [5] */ }

/*------------------------------------*\
    #IMAGES
\*------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */ }

/**
 * 1. Google Maps breaks if `max-width: 100%` acts upon it; use their selector
 *    to remove the effects.
 * 2. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
.gm-style img, img[width], img[height] {
  /* [2] */
  max-width: none; }

/*------------------------------------*\
    #BASE-PAGE
\*------------------------------------*/
html {
  font-family: "ff-dax-web-pro",simHei, sans-serif!important;
  font-weight: 400; 
  font-style: normal!important;
  }

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
/**
 * Headings 1–6, with corresponding Greek-alphabet abstract classes for double-
 * stranded heading hierarchy: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 */
h1, .alpha {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.33333; }

h2, .beta {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.71429; }

h3, .gamma {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1; }

h4, .delta, .nav-panel__social li {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2; }

h5, .epsilon, .main-navigation ul li a {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5; }

h6, .zeta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429; }

/*------------------------------------*\
    #COLOR-CLASSES
\*------------------------------------*/
.white, .nav-panel li a, .tagline, .menu-toggle, .breadcrumbs.breadcrumbs--top a, .menu ul > li.active * {
  color: #ffffff; }

.white-bg, .contact-container {
  background-color: #ffffff; }

.black {
  color: #3D3D3D; }

.black-bg, .nav-panel {
  background-color: #3D3D3D; }

.mainblue, .breadcrumbs a {
  color: #0c1c8b; }

.mainblue-bg, .site-branding {
  background-color: #0c1c8b; }

.turquoise, .breadcrumbs {
  color: #3fbcaf; }

.turquoise-bg, .menu ul > li.active {
  background-color: #3fbcaf; }

.lightgrey {
  color: #dee3e5; }

.lightgrey-bg {
  background-color: #dee3e5; }

.mediumgrey {
  color: #9ca7ac; }

.mediumgrey-bg {
  background-color: #9ca7ac; }

.darkgrey {
  color: #5d6f78; }

.darkgrey-bg {
  background-color: #5d6f78; }

.yellow {
  color: #ffc62c; }

.yellow-bg {
  background-color: #ffc62c; }

.broken {
  color: #f3f4f5; }

.broken-bg {
  background-color: #f3f4f5; }

/*------------------------------------*\
    #BASE-HEADINGS
\*------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  position: relative; }

.section-title {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 20px;
  font-size: 1.25rem; }
  .section-title .section-title__underline {
    display: block;
    margin: 5px auto 0;
    width: 55px;
    height: 5px; }

.page-title {
  text-transform: uppercase;
  margin-top: -0.2em;
  line-height: 1.4; }

.title-underline, .title-underline--left, .title-underline--center, .title-underline--right {
  position: absolute;
  bottom: -6px;
  width: 50px;
  height: 5px; }

.title-underline--left {
  left: 0; }

.title-underline--center {
  left: 50%;
  margin-left: -25px; }

.title-underline--right {
  right: 0; }

.small, .breadcrumbs {
  font-size: 12px;
  font-size: 0.85rem; }

.micro {
  font-size: 10px;
  font-size: 0.7rem; }

/*------------------------------------*\
    #LINKS
\*------------------------------------*/
a {
  text-decoration: none;
  color: #3D3D3D; }
  a:hover {
    text-decoration: underline;
    opacity: 0.8; }

.link--icon .link--icon__text {
  display: none; }

/**
 * #OBJECTS
 */
/*------------------------------------*\
    #BUTTONS
\*------------------------------------*/
.btn, .btn--wide, .btn--extra-wide {
  padding: 3px 6px;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: initial;
  display: inline-block;
  text-transform: uppercase;
  background-color: transparent; }

.btn--wide {
  padding: 3px 12px; }

.btn--extra-wide {
  padding: 3px 24px; }

.social-icons-big {
  border-radius: 10px;
  border: 1px solid #dee3e5;
  font-size: 3em;
  text-align: center;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 3px; }


/*------------------------------------*\
    #LAYOUT
\*------------------------------------*/
/**
 * The inuitcss layout system uses `box-sizing: border-box;` and
 * `display: inline-block;` to create an extremely powerful, flexible
 * alternative to the traditional grid system. Combine the layout items with
 * the widths found in `trumps.widths`.
 */
/**
 * Begin a layout group.
 */
.layout {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -24px; }

/**
     * 1. Cause columns to stack side-by-side.
     * 2. Space columns apart.
     * 3. Align columns to the tops of each other.
     * 4. Full-width unless told to behave otherwise.
     * 5. Required to combine fluid widths and fixed gutters.
     */
.layout__item {
  display: inline-block;
  /* [1] */
  padding-left: 24px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */ }

/*------------------------------------*\
    #MEDIA
\*------------------------------------*/
/**
 * Place any image- and text-like content side-by-side, as per:
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.media {
  display: block; }

.media__img {
  float: left;
  margin-right: 24px; }
  .media__img > img {
    display: block; }

.media__body {
  overflow: hidden;
  display: block; }
  .media__body, .media__body > :last-child {
    margin-bottom: 0; }

/**
     * Flush media objects have no space between the image- and text-content.
     */
.media--flush > .media__img {
  margin-right: 0;
  margin-left: 0; }

/*------------------------------------*\
    #LIST-INLINE
\*------------------------------------*/
/**
 * The list-inline object simply displays a list of items in one line.
 */
.list-inline {
  margin: 0;
  padding: 0;
  list-style: none; }
  .list-inline > li {
    display: inline-block; }

/*------------------------------------*\
    #BOX
\*------------------------------------*/
/**
 * The box object simply boxes off content.
 */
/**
 * 1. So we can apply the `.box` class to naturally-inline elements.
 */
.box {
  display: block;
  /* [1] */
  padding: 24px; }
  .box > :last-child {
    margin-bottom: 0; }

/**
     * Flush (i.e. no padding) box.
     */
.box--flush {
  padding: 0; }

/**
     * Tiny box.
     */
.box--tiny {
  padding: 6px; }

/**
     * Small box.
     */
.box--small {
  padding: 12px; }

/**
     * Large box.
     */
.box--large {
  padding: 48px; }

/**
     * Huge box.
     */
.box--huge {
  padding: 96px; }

/*------------------------------------*\
    #WRAPPERS
\*------------------------------------*/
.wrapper {
  max-width: 1170px;
  margin: 0 auto;
  padding-right: 48px;
  padding-left: 48px;
  position: relative; }


.wrapper--wide {
  max-width: 1276px; }


  .wrapper--narrow {
    padding-right: 96px;
    padding-left: 96px; } 

.island {
  padding-right: 24px;
  padding-left: 24px; }

/*------------------------------------*\
    #PLAIN-LIST
\*------------------------------------*/
/**
 * This list disables the margin, the padding and the style
 */
.list--plain, .stacked-list {
  margin: 0;
  padding: 0;
  list-style-type: none; }

/**
 * #TRUMPS
 */
/**
 * ----------------------------------
 * spacing
 * ----------------------------------
 *
 * manage the margins and paddings at a micro-level
 *
 *
 * table of contents
 * -----------------
 *
 * 1. margins
 * 2. paddings
 * 3. typography spacings
 *
 */
/* bottom margins */
.mb-xs {
  margin-bottom: 6px; }

.mb-s, .timeline__entry h5, .timeline__entry img {
  margin-bottom: 12px; }

.mb-m {
  margin-bottom: 24px; }

.mb-l, .page-title, .jumbo {
  margin-bottom: 48px; }

.mb-xl {
  margin-bottom: 96px; }

.mb-0 {
  margin-bottom: 0; }

/* left margins */
.ml-xs {
  margin-left: 6px; }

.ml-s {
  margin-left: 12px; }

.ml-m {
  margin-left: 24px; }

.ml-l {
  margin-left: 48px; }

.ml-xl {
  margin-left: 96px; }

.ml-0 {
  margin-left: 0; }

/* bottom paddings */
.pb-xs {
  padding-bottom: 6px; }

.pb-s {
  padding-bottom: 12px; }

.pb-m {
  padding-bottom: 24px; }

.pb-l {
  padding-bottom: 48px; }

.pb-xl {
  padding-bottom: 96px; }

.pb-0 {
  padding-bottom: 0; }

/* top paddings */
.pt-xs {
  padding-top: 6px; }

.pt-s {
  padding-top: 12px; }

.pt-m {
  padding-top: 24px; }

.pt-l {
  padding-top: 48px; }

.pt-xl {
  padding-top: 96px; }

.pt-0 {
  padding-top: 0; }

/* left paddings */
.pl-xs {
  padding-left: 6px; }

.pl-s {
  padding-left: 12px; }

.pl-m {
  padding-left: 24px; }

.pl-l {
  padding-left: 48px; }

.pl-xl {
  padding-left: 96px; }

.pl-0 {
  padding-left: 0; }

/*------------------------------------*\
    #ALIGNS
\*------------------------------------*/
.left {
  float: left; }

.right {
  float: right; }

.center {
  float: none; }

/*------------------------------------*\
    #ALIGNS
\*------------------------------------*/
.ta-l {
  text-align: left; }

.ta-c, .main-navigation {
  text-align: center; }

.ta-r {
  text-align: right; }

/*------------------------------------*\
    #CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.clearfix` class appearing
 * over and over in your markup.
 */
.media:after, .box:after, .block:after, .dropdown__list:after, .jumbo__image:after, .info-box .info-box__row:after {
  content: "";
  display: table;
  clear: both; }

/**
 * #COMPONENTS
 */
/*------------------------------------*\
    #PAGE-HEADER
\*------------------------------------*/
.site-header {
  position: relative;
  padding-top: 0; }


.site-branding {
  position: absolute;
  width: 100%;
  height: 50px;
  top: 60px;
  left: 0; 
  background-color: transparent;
      z-index: 99;
	  }
  .site-branding h1 {
    text-align: center; 
	        border-bottom: 1px solid;
        padding-bottom: 12px;
        margin-bottom: 12px;}
  .site-branding img {
    width: 250px; }
  .site-branding .main-navigation {
    display: block; }


      .site-branding .main-navigation ul li {
        margin-left: 0.8em;
        margin-right: 0.8em; } 

.site-header--inner .site-branding {
  background-color: #dee3e5; 
        position: relative;
      top: 30px;
      background-color: transparent;}
  .site-header--inner .site-branding .menu-toggle {
    color: #0c1c8b; }

  .site-header--inner {
    height: 155px; }


.tagline {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  bottom: 0;
  text-align: center;
  z-index: 98; }
  .tagline h2 {
    font-size: 2.8em;
    width: auto;
    margin: 0 auto;
    color: #ffc62c; }


.menu-toggle {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 1.4em;
  text-align: center;
  padding-top: 10px;
  cursor: pointer;
display:none;}

  .menu-toggle .fa-close {
    display: none;
    font-size: 1.15em; }
  .menu-open .menu-toggle .fa-close {
    display: block; }
  .menu-open .menu-toggle .fa-bars {
    display: none; }


.video-wrapper img {
  width: 100%; }

/*------------------------------------*\
    #PAGE-NAVIGATION
\*------------------------------------*/
.nav-panel {
  position: absolute;
  height: 100%;
  width: 220px;
  left: -220px;
  z-index: 999;
  padding-top: 12px; }
  .nav-panel ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .nav-panel li a {
    text-transform: uppercase; }

.nav-panel__primary li {
  padding: 6px 12px; }

.nav-panel__secondary {
  margin-top: 12px; }
  .nav-panel__secondary li {
    padding: 3px 12px; }

.nav-panel__social {
  margin-top: 12px;
  padding-left: 12px; }
  .nav-panel__social li {
    display: inline-block;
    margin-right: 12px; }

.main-navigation ul li {
  text-transform: uppercase; 
  margin: 0 0.4em; } 

.upper-navigation {
  height: 50px;
  display: block; }
  .upper-navigation .upper-navigation__left-side {
    float: left!important; 
	display:block!important;}
    .upper-navigation .upper-navigation__left-side .upper-navigation__cols {
      border-right: 1px solid #9ca7ac; }
      .upper-navigation .upper-navigation__left-side .upper-navigation__cols:last-child {
        border: none; }
  .upper-navigation .upper-navigation__right-side {
    float: right!important;}
    .upper-navigation .upper-navigation__right-side .upper-navigation__cols {
      border-left: 1px solid #9ca7ac; }
      .upper-navigation .upper-navigation__right-side .upper-navigation__cols:first-child {
        border: none; }
  .upper-navigation .upper-navigation__cols {
    float: left;
    padding: 0 8px;
    height: 50px;
    overflow: hidden; }
  .upper-navigation .search-box {
    width: 240px;
    position: relative; }
    .upper-navigation .search-box form input[type='submit'] {
      display: none; }
    .upper-navigation .search-box form input[type='text'] {
      font-size: 12px;
      padding: 3px 6px 2px;
      border: none;
      background-color: #ffffff;
      width: 200px;
      margin-top: 4px; }
    .upper-navigation .search-box span {
      position: absolute;
      right: 8px;
      top: 15px; }
  .upper-navigation ul {
    margin: auto;
    padding: 0;
    list-style-type: none; }
    .upper-navigation ul li {
      display: inline-block;
      margin: 0 6px;
      line-height: 2; }
      .upper-navigation ul li a {
        text-transform: uppercase;
        font-size: 14px; }
        .upper-navigation ul li a span {
          font-size: 18px; }


/*------------------------------------*\
    #BREADCRUMBS
\*------------------------------------*/
.breadcrumbs {
  text-transform: uppercase;
  padding: 24px 0; }
  .breadcrumbs.breadcrumbs--top {
    position: absolute;
    z-index: 999; }

/*------------------------------------*\
    #MENU
\*------------------------------------*/
.menu select {
  width: 100%;
  margin-bottom: 24px; }

  .menu ul > li {
    cursor: pointer;
    position: relative; }
    .menu ul > li.active {
      font-weight: bold; }

  .menu {
    padding-right: 2em; }
    .menu ul {
      display: block; }
      .menu ul > li ul.menu__subnav {
        margin: 8px 0 0 0;
        padding: 8px 0 0 0;
        font-size: 0.85em;
        list-style-type: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3); }
        .menu ul > li ul.menu__subnav li {
          margin: 6px 0; }
          .menu ul > li ul.menu__subnav li.active a {
            color: #ffc62c; }
    .menu select {
      display: none; } 

/*------------------------------------*\
    #BLOCKS
\*------------------------------------*/
/**
 * Blocks are the different sections stacked one on top of the other
 * on, for example, the home page.
 */
.block {
  padding-top: 84px;
  padding-bottom: 84px;
  position: relative; }


.block--small {
  padding-top: 48px;
  padding-bottom: 48px; }

.block--flush {
  padding-top: 0;
  padding-bottom: 0; }

/*------------------------------------*\
    #VIDEOS
\*------------------------------------*/
.video-wrapper video {
  display: none; }
@media screen and (min-width: 720px) {
  .video-wrapper video {
    display: block; }
  .video-wrapper img {
    display: none; } }

.video-wrapper {
  position: relative; }
  .video-wrapper:after {
    content: "";
    position: absolute;
    background-color: #0c1c8b;
    opacity: 0.25;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.video__pause-button {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: white;
  display: none;
  font-size: 2em;
  cursor: pointer;
  z-index: 9999;
  width: 30px;
  height: 30px; }
  @media screen and (min-width: 720px) {
    .video__pause-button {
      display: block; } }
  .video__pause-button .fa-play {
    display: none;
    position: relative;
    top: 4px; }
  .video__pause-button.paused .fa-play {
    display: block; }
  .video__pause-button.paused .fa-pause {
    display: none; }

/*------------------------------------*\
    #EXTENDABLES
\*------------------------------------*/
/**
 *
 * Extendables are formed by a header and a body. The body is usually hidden, until
 * we click on the header.
 * extendable--open class opens the body.
 * extendable--lock class keeps it open forever and ever.
 *
 *                     ______
                     <((((((\\\
                     /      . }\
                     ;--..--._|}
  (\                 '--/\--'  )
   \\                | '-'  :'|
    \\               . -==- .-|
     \\               \.__.'   \--._
     [\\          __.--|       //  _/'--.
     \ \\       .'-._ ('-----'/ __/      \
      \ \\     /   __>|      | '--.       |
       \ \\   |   \   |     /    /       /
        \ '\ /     \  |     |  _/       /
         \  \       \ |     | /        /
          \  \      \        /
 */
.extendable .extendable__header {
  cursor: pointer;
  position: relative; }
  .extendable .extendable__header span {
    position: absolute;
    top: 16px;
    right: 10px; }
  .extendable .extendable__header * {
    margin-bottom: 0; }
.extendable .extendable__body {
  display: none; }

  .extendable.extendable--open .extendable__body {
    display: block; } 
.extendable.extendable--lock .extendable__body {
  display: block !important; }

/*------------------------------------*\
    #BACKSLIDE
\*------------------------------------*/
.backslide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .backslide .backslide__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 0.3s ease-out;
            transition: opacity 0.3s ease-out;
    background-size: cover;
    background-repeat: no-repeat; }
    .backslide .backslide__item.active {
      opacity: 1; }

/*------------------------------------*\
    #IMAGE-GALLERY
\*------------------------------------*/
.image-gallery .image-gallery__item {
  position: relative;
  cursor: pointer; }
  .image-gallery .image-gallery__item img:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #ffffff;
    -webkit-transition: opacity 0.3s ease-out;
            transition: opacity 0.3s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  .image-gallery .image-gallery__item img:hover:after {
    opacity: 0.4; }

/*------------------------------------*\
    #CENTERED-CONTENT
\*------------------------------------*/
/**
 * Centers the content both vertically and horizontally, no matter the size
 */
.centered-content {
  display: table;
  width: 100%;
  height: 100%; }

.centered-content__inner {
  display: table-cell;
  vertical-align: middle; }

.stacked-list {
  position: relative; }

.stacked-list__aligned {
  display: block;
  position: relative;
  border-bottom: 1px solid; }

.stacked-list__item {
  display: block;
  padding: 11px 12px 7px;
  position: relative;
  border-bottom: 1px solid; }
  .stacked-list__item:last-child {
    border: none; }
  .stacked-list__item span.fa {
    position: absolute;
    top: 14px;
    right: 12px;
    font-size: 0.9em; }

.dropdown {
  position: relative;
  font-size: 1.2em;
  z-index: 2; }
  .dropdown > span {
    position: absolute;
    right: 12px;
    top: 16px; }

.dropdown__panel {
  padding: 12px 12px;
  border-bottom: 1px solid #5d6f78; }

.dropdown__list {
  position: absolute;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .dropdown__list li {
    padding: 6px 12px;
    display: block;
    cursor: pointer; }
    .dropdown__list li:last-child {
      margin-bottom: 0; }
    .dropdown__list li:hover {
      background-color: #dee3e5; }

/*------------------------------------*\
    #ACCORDION
\*------------------------------------*/
.accordion__item {
  border-bottom: 1px solid #5d6f78; }

.accordion__header {
  padding: 5px 8px;
  cursor: pointer; }

.accordion__body {
  display: none; }

.accordion__item--open .accordion__body {
  display: block; }

/*------------------------------------*\
    #LATEST-NEWS
\*------------------------------------*/
.latest-news .latest-news__item {
  margin-bottom: 12px; }
  .latest-news .latest-news__item .overlay {
    border-bottom: 1px solid #ffc62c;
    padding-bottom: 0;
    position: relative; }


      .latest-news .latest-news__item .overlay__base {
        display: block; } 

    .latest-news .latest-news__item .overlay__top {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #ffc62c;
      background-color: rgba(255, 198, 44, 0.85);
      color: #3D3D3D;
      padding-left: 12px;
      padding-right: 12px;
      -webkit-transition: background-color 0.3s linear;
              transition: background-color 0.3s linear; }
      .latest-news .latest-news__item .overlay__top .btn, .latest-news .latest-news__item .overlay__top .btn--wide, .latest-news .latest-news__item .overlay__top .btn--extra-wide {
        border-color: #3D3D3D;
        color: #3D3D3D; }
      .latest-news .latest-news__item .overlay__top:hover {
        background-color: #ffc62c; } 

/*------------------------------------*\
    #SWITCH-CHANNEL
\*------------------------------------*/
.channel-list__panel {
  display: none; }
  .channel-list__panel.active {
    display: block; }

.channel-list__item {
  margin-bottom: 24px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s linear;
          transition: all 0.3s linear; }
  .channel-list__item.hidden {
    opacity: 0;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8); }

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

.bullet {
  border-radius: 99px;
  width: 12px;
  height: 12px;
  background-color: #000000;
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  display: inline-block;
  margin: 0 6px;
  cursor: pointer; }
  .bullet.active, .bullet:hover {
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; }

/*------------------------------------*\
    #JUMBO
\*------------------------------------*/



.jumbo__title {
  position: relative;
  text-transform: uppercase; }
  .jumbo__title span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px; }

.jumbo__text p:last-child {
  margin-bottom: 0; }


  .jumbo {
    position: relative;
    margin-bottom: 0; }
  .jumbo__image img {
    width: 100%;
    height: auto; }
  .jumbo__band {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 0; 
	z-index:2;
	}
  .jumbo__text {
    max-width: 500px; }
  .jumbo__inner {
    background: transparent;
    padding: 60px 0 0 0; } 

/* Preload images */
body:after {
  content: url('../images/lightbox/close.png') url('../images/lightbox/loading.gif') url('../images/lightbox/prev.png') url('../images/lightbox/next.png');
  display: none; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -o-border-radius: 3px;
  border-radius: 3px; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -o-border-radius: 4px;
  border-radius: 4px; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  padding: 4px; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url('../images/lightbox/loading.gif') no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url('../images/lightbox/prev.png') left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url('../images/lightbox/next.png') right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('../images/lightbox/close.png') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

/*------------------------------------*\
    #CHESS
\*------------------------------------*/


  .chess__item h3 {
    text-transform: uppercase; }
  .chess__item .btn, .chess__item .btn--wide, .chess__item .btn--extra-wide {
    border-color: #ffc62c; }

.chess__item--image, .chess__item--color {
  display: none; }



  .chess__inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px; } 




  .chess {
    background-color: #ffffff;
    position: relative;
    margin-top: -100px;
    z-index: 99; 
	overflow: hidden;
	}
  .chess__item {
    height: 0;
	  position: relative;
  border-bottom: none;
    padding-bottom: 25%;
  margin-bottom: 0px;
	float: left;
	
	
	}
    .chess__item.chess__item--huge {
      padding-bottom: 50%; }
    .chess__item.chess__item--hugefull {
      padding-bottom: 100%; }    	
    .chess__item.chess__item--odd {
      background-color: #eee; }
    .chess__item .btn, .chess__item .btn--wide, .chess__item .btn--extra-wide {
      position: absolute;
      bottom: 0;
      left: 52%; }
  .chess__item--image, .chess__item--color {
    display: block; } 

/*------------------------------------*\
    #TIMELINE
\*------------------------------------*/
.timeline__year {
  margin: 12px 0; }

.timeline__entry {
  padding-left: 50px;
  padding-top: 12px;
  padding-bottom: 48px;
  background: transparent url('../images/timeline/timeline-background.png') no-repeat left top;
    width: 50%;
    clear: both;
    position: relative;
  }
  .timeline__entry h5 {
    line-height: 1; }
  .timeline__entry p:last-child {
    margin-bottom: 0; }



    /*.timeline__entry:nth-child(even) {
      float: right;
      margin-right: 25px; }
    .timeline__entry:nth-child(odd) {
      float: left;
      padding-left: 0;
      padding-right: 50px;
      background-position: right top;
      margin-left: 25px;
      text-align: right; }*/
    .timeline .timeline__entry.even {
      float: right;
      margin-right: 25px; }
    .timeline .timeline__entry.odd {
      float: left;
      padding-left: 0;
      padding-right: 50px;
      background-position: right top;
      margin-left: 25px;
      text-align: right; }    	
  .timeline__year {
    width: 100%;
    float: left;
    text-align: center; } 

/*------------------------------------*\
    #INFO-BOX
\*------------------------------------*/
.info-box {
  margin-bottom: 24px; }
  

    .info-box .info-box__item {
      width: 50%;
      float: left; } 

/*------------------------------------*\
    #FORMS
\*------------------------------------*/
.form label {
  display: block; }
.form input[type="text"], .form input[type="password"], .form input[type="email"], .form input[type="url"], .form input[type="phone"], .form input[type="tel"], .form input[type="number"], .form input[type="datetime"], .form input[type="date"], .form input[type="month"], .form input[type="color"], .form input[type="time"], .form input[type="search"], .form input[type="range"], .form input[type="file"], .form input[type="datetime-local"], .form textarea, .form select {
  display: block;
  width: 100%;
  margin-bottom: 1.2rem; }

input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="phone"], input[type="tel"], input[type="number"], input[type="datetime"], input[type="date"], input[type="month"], input[type="color"], input[type="time"], input[type="search"], input[type="datetime-local"], textarea {
  background-color: #ffffff;
  border: none;
  font-size: 1em;
  padding: 6px 12px; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="phone"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="datetime"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="color"]:focus, input[type="time"]:focus, input[type="search"]:focus, input[type="datetime-local"]:focus, textarea:focus {
    outline: none; }

.homepage-contactus form {
  width: 400px; 
  margin: 0 auto;
  }
  .homepage-contactus form label {
    font-weight: bold; }


/*------------------------------------*\
    #FOOTER
\*------------------------------------*/
.footer-navigation {
  border-top: 18px solid #ffc62c;
  background: transparent url('../images/footer_graphic.png') no-repeat center right; } 

.footer-navigation__column {
      text-align: left;
      border-bottom: none; }
  .footer-navigation__column h4 {
    line-height: 2.1;
    margin-bottom: 0;
    position: relative;
    padding-top: 3px;
    cursor: default; }
    .footer-navigation__column h4:hover {
      background: transparent;}
    .footer-navigation__column h4 span {
		display:none;}
  .footer-navigation__column ul {
    display: block;
    padding-bottom: 12px; }
  .footer-navigation__column.open ul {
    display: block; }


/**
 * TEMPORAL SOLUTIONS
 */
.onion-skin {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5; }
  .onion-skin img {
    width: 100%;
    height: auto; }
  .onion-skin.hidden {
    opacity: 0; }

button.toggle-skin {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 999; }


    #map-canvas {
      height: 600px;
      margin-left: 450px; } 

.homepage-map__container {
  position: relative; }

.homepage-map__sidebar .stacked-list__item {
  border-bottom: 1px solid #929b9e;
  position: relative; }
  .homepage-map__sidebar .stacked-list__item.active {
    background-color: #ffc62c; }

  .homepage-map__sidebar {
    width: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 3; } 

.homepage-map__info-panel {
  padding: 12px; }
  .homepage-map__info-panel.loading {
    background-image: url('../images/satellite-info-loader.gif');
    background-position: center center;
    background-repeat: no-repeat; }

    .homepage-map__info-panel {
      width: 250px;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 200px;
      z-index: 2; } 

.homepage-channelguide {
  background-color: white; }

.homepage-applications {
  background-image: url('http://www.asiasat.com/sites/default/files/applicatiob_bg.jpg');
  background-size: cover;
 }

.homepage-applications .media span {
  font-size: 3em; }

.homepage-contactus {
  background: #ffc62c;
  /* Old browsers */
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(100%, #3fbcaf), color-stop(0%, #00b1af));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #3fbcaf 0%, #00b1af 100%);
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-linear-gradient(315deg, #3fbcaf 0%, #00b1af 100%);
  background: linear-gradient(135deg, #3fbcaf 0%, #00b1af 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b1af', endColorstr='#687498',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }

/*------------------------------------*\
    #SATELLITE DETAIL
\*------------------------------------*/
.satellite-name h2 {
  padding: 12px; }

.satellite-information, .satellite-bands {
  border-bottom: 1px solid #dee3e5; }

/*------------------------------------*\
    #INNER PAGES LAYOUT
\*------------------------------------*/
.leadership__thumb, .csr__thumb {
  position: relative; }

    .leadership__thumb .read-more, .csr__thumb .read-more {
      position: absolute;
      right: 24px;
      bottom: 24px; }
  .leadership__thumb img, .csr__thumb img {
    width: 250px; }


/*------------------------------------*\
    #CONTACT US
\*------------------------------------*/
.contact-container {
  margin-top: -50px;
  padding-top: 36px;
  position: relative; }
  
  
  .satellite_info.btn{border-color: #ffc62c;color:#9ca7ac}
  
  .site-branding .wrapper{
	height:100px;
  }
  
  .youtube_list_video{
	width:25%;
	float:left;
	text-align:center;
	height:280px;
  }
  
  .youtube_title{
	text-align:left;
	padding:10px;
	line-height:1.2;
	color:#3fbcaf;
	font-weight:bold;
  }
  
  
  .youtube_thumb{
	width:100%;
	height:auto;
	padding:5px;
  }
  

 .homepage-map__map-container{
	padding-left:450px;
 }
 
 .view-case-studies-bloc .grid__col{
	width:50%;
 }
 
 .case-thumb{
 min-height: 290px;
    float: left;
    width: 100px;
    margin-right: 20px;
 }
 
 .case-block-tit, .case-block-desc {
    padding: 0;
    padding-right: 20px;
}

.meetitem.grid__item{
	width:19.5%;
}

.meetdetail .grid__item{
	width:50%;
}

.view-content .media__img{
	width:40%;
}

.view-content .csr__thumb img, .view-content .leadership__thumb img{
	width:100%;
}

.csr__thumb img, .leadership__thumb img{
	width:250px;
}

.media__img{
		float:left;

}

.media__img > img{
	display:block !important;
}

.path-aboutus .chess__item.chess__item--hugefull{
	padding-bottom:100%;
}

.path-aboutus .chess__item.chess__item--hugefull .chess__inner{
	position: absolute;
}

.stmapjpg {
    margin-left: 259px;
}

.stmapinfo{
	position:absolute;
}

.backslide > img{
	display:none;
}

footer{
	padding-bottom:0px !important;
}

.chess__item.chess__item--yellow {
      background-color: #ffc62c; }
	.chess__item.chess__item--turquoise {
      background-color: #3fbcaf; } 
	.chess__item.chess__item--mainblue {
      background-color: #0c1c8b; }

.chess__item--image, .chess__item--color {
  display: block; }
  
    .huge-full-bgmainblue{
	 background-color: #0c1c8b;
  }
  
   .huge-full-bgyellow{
	 background-color: #ffc62c;
  }
  
   .huge-full-bgturquoise{
	 background-color: #3fbcaf;
  }
  
    .huge-full-bgodd{
	 background-color: #eee;
  }
  
  


.chess__item.chess__item--yellow {
      background-color: #ffc62c; }
	.chess__item.chess__item--turquoise {
      background-color: #3fbcaf; } 
	.chess__item.chess__item--mainblue {
      background-color: #0c1c8b; }
.chess__item--image, .chess__item--color {
  display: block; }
}



.main-footer-navigation{margin-top:50px;}




.meetdetail.meetdetailtarget{
	width:100%;
}

ul.main_submenu li:last-child{
	border-bottom:0px!important;
}

.stacked-list.broken-bg.mediumgrey{
	width:260px;
}

.sidebarflow{
	position:fixed;
	width:260px;
	z-index:10;
}

.sidebarfix{
	position:absolute;
	width:260px;
	bottom:0;
}

.sidebarabs{
	position:absolute;
	width:260px;
	bottom:0;
}

.sidebartop{
	position:absolute;
	width:260px;
	top:0;
}



.categoryfilter{
	padding-top:200px;
}



.topLinks ul{
	float:left;
}

.topLinks ul:not(.topQA){
	padding-top:10px;
}


.topQA,.topQAmobile{
	float:left;
}

.topQA{
	display:block;
}

.topQA img{
	width:auto;
	height:35px;
	margin-top:9px;
}

.upper-navigation__right-side .upper-navigation__cols{
	padding-top:10px;
}

.topbar_q_a{
	position:absolute;
	background-color:rgb(222,227,229);
	z-index:200;
	top:55px;
	left:150px;
	clear:both; 
	padding:10px;
	display:none;
	width:150px;
}


.topbar_q_a_mobile{
	position:absolute;
	background-color:rgba(222,227,229,0.9);
	z-index:200;
	top:106px;
	left:14px;
	clear:both; 
	border-radius:5px;
	padding:10px;
	display:none;
}

.topbar_q_a_close,.topbar_q_a_mobile_close{
	color:#3fbcaf;
	cursor:pointer;
}

.topQAmobile img{
	width:auto;
	height:30px;
}

	.q_a_image_mobile{
		display:none;
	}

	
	ul.main_submenu{
	position: absolute;
    margin: 0;
    list-style-type: none;
    padding-top:0px;
	padding-left:10px;
	padding-right:10px;
    margin-left: -40px;
	background-color:rgb(222,227,229);
	display:none;
	border-radius:5px;
	border:1px solid rgb(211,211,211);
	z-index:100;
}
	
	
	

 .sidebar .list--plain{
	display:none!important;
 }

	.site-header--inner .main-navigation .list-inline .white{color:#0c1c8b;!important}
	
	
	.super-container .upper-navigation .upper-navigation__right-side{float:right;}
	.site-header{clear:both!important;}
	
	.footer-navigation .stacked-list{
		display:none!important;
	}
	
	.topLinks ul {
    padding-top: 10px;
}

	
	div.js-form-item-subject-0-value{
		display:none!important;
	}
	
	.contact-container{
		margin-top:0px;
	}
	
	#block-expertqasubheader{
		margin-top:40px;
		clear:both;
	}
	
	div.contact-message-ask-expert-form{
		height:500px;
		background:url('/themes/custom/asiasat/assets/build/images/expert_qa.jpg');
		background-size:cover;
	}
	
	
	form#contact-message-ask-expert-form{
		background-color:#f3f4f5;
		float:right;
		margin-top:180px;
		width:50%;
		padding:20px;
		margin-right:30px;
		
	}
	
	
	form#contact-message-ask-expert-form input[type=email],form#contact-message-ask-expert-form textarea{
		padding-top:6px;
		padding-bottom:6px;
		padding-left:0px;
		padding-right:0px;
		width:100%;
	}
	
	input#edit-preview{
		display:none;
	}
	
	div#block-expertqaintroduction{
		position: absolute;
		z-index: 2;
		right: 70px;
		width: 50%;
		background-color: rgb(0,0,0);
		/* margin-right: 30px; */
		color: white;
		padding: 20px;
		margin-top: 30px;
	}
	
.channel-list__panel .channel-list__item{
	height:113px!important;
	line-height:113px!important;
}

.section {
	clear:both!important;
}

.homepage-map__map-container img{
	width:900px;
	height:auto;
}


ul.main_submenu li > a {
    color: #0c1c8b!important;
}

ul.main_submenu li {
    border-bottom: 1px solid #3fbcaf;
    line-height: 34px;
}

						.satellite_page .grid__item{float:left}
					.satellite_page .grid{overflow:hidden;}
					.satellite_page .satellite_archive_row > .satellite_archive_pic{float:left;}
					.satellite_page .satellite_archive_row:nth-child(odd) > .satellite_archive_pic{float:right;}
					
					.channelguide_page #channel_guide_table{
	font-size:12px;
}

.channelguide_page #channel_guide_table table{
	background-color:#f3f4f5;
	width:100%;
	border:1px solid white;
}

.channelguide_page #channel_guide_table table tr th{
	width:10%;
}

.channelguide_page #channel_guide_table table tr td, .channelguide_page  #channel_guide_table table tr th{
	text-align:left;
	border-left:1px white solid;
	vertical-align:middle;
	border-bottom:2px #3fbcaf solid;
	padding:15px 5px 15px;
	
}

.channelguide_page #channel_guide_table table tr th{
	padding-top:5px;
	padding-bottom:5px;
}


.channelguide_page #channel_guide_table table th{
	text-transform:capitalize;
	color:#002395;
}

.channelguide_page .channel_guide_filter_inner,.channelguide_page #channel_guide_button,.channelguide_page .channel_guide_title,.channelguide_page .channel_guide_sort_box{
	background-color:rgb(156,167,172);
	width:100%;
	float:left;
}


.channelguide_page #channel_guide_filter .filter_select{
	width:33%;
	float:left;
	padding-left:15px;
	padding-right: 15px;
    padding-top: 15px;
	text-transform:capitalize;
	position:relative;
}

.channelguide_page #channel_guide_filter .filter_select select{
	background-color:rgb(0,178,169);
	color:white;
	border:1px solid white;
	width:100%;
}

.channelguide_page #channel_guide_filter{
	background-color:rgb(156,167,172);
	color:white;
	border-top:1px solid rgb(0,178,169);
	
}

.channelguide_page .channel_guide_button_click{
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: white;
    display: inline-block;
    text-transform: uppercase;
	cursor:pointer;
}

.channelguide_page .channel_guide_download{
	text-align:right;
	clear:both;
	padding-top:20px;
	padding-bottom:20px;
	border-top:1px solid #00b2a9;
	margin-top:15px;
}

.channelguide_page #channel_guide_button{
	padding-top:20px;
	padding-bottom:20px;
	padding-left:15px;
}

.channelguide_page .channel_guide_download_click{
    color: rgb(82,82,82);
    padding: 3px 6px;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255,202,60);
    display: inline-block;
    text-transform: uppercase;
	cursor:pointer;
}


.channelguide_page .pagelink,.channelguide_page .pagelink_last,.channelguide_page .pagelink_first{
	cursor:pointer;
}


.channelguide_page .channel_guide_title{
	color:rgb(49,63,147);
	width:100%;
	float:left;
	font-weight:bold;
	padding:10px;
}

.channelguide_page .channel_guide_title_inner{
		border-bottom:1px solid rgb(49,63,147);
}


.channelguide_page .channel_guide_logo{
	width:60px;
	height:auto;
}


.channelguide_page #channel_guide_filter{
	display:none;
	margin-top:20px;
}

.channelguide_page .filter_header{
	cursor:pointer;
	width:100%;
}

.channelguide_page .pagination_list{
	text-align:center;
	font-size:14px;
}

.channelguide_page .filter_img_holder img{
	padding-right:10px;
}


.channelguide_page .select_list li,.channelguide_page .sorting_list li{
	list-style-type:none;
	list-style-image:none;
	padding-left:10px;
	height:30px;
	line-height:30px;
	width:100%;
	background-color:rgb(156,167,172);
	display:inline-block;
	cursor:pointer;
}

.channelguide_page .select_list li:hover,.channelguide_page .sorting_list li:hover{
	background-color:#00b2a9;
}

.channelguide_page .select_list,.channelguide_page .sorting_list{
	list-style-image:none;
	padding-left:0px!important;
	display:none;
	position:absolute;
	border-left:1px solid white;
	border-right:1px solid white;
	border-bottom:1px solid white;
	max-height:300px;
	overflow-y:auto;
	background-color:rgb(156,167,172);
	z-index:100;
	width:calc(100% - 30px);
}

.channelguide_page .select_list_current_text,.channelguide_page .sorting_current_div{
	border:1px solid white;
	background-color:#00b2a9;
	cursor:pointer;
	height:30px;
	padding-left:10px;
	line-height:30px;
}

.channelguide_page .current_option,.channelguide_page .current_option_sorting{
	float:left;
}

.channelguide_page .current_option_arrow,.channelguide_page .current_option_arrow_sorting{
	float:right;
	padding-right:10px;
	color:#0c1c8b;
}


.channelguide_page .channel_guide_table_wrapper{
	background-color:rgb(243,244,245);
	padding:10px;
}

.channelguide_page .channel_guide_logo_wrapper > img{
	width:100%;
	height:auto;
}

.our-satellites .grid__item{
	float:left;
}
.our-satellites .grid{
	overflow:hidden;
}

.main-footer-navigation{
	clear:both;
}
