/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/

/*
  Forces backgrounds to span full width,
  even if there is horizontal scrolling.
  Increase this if your layout is wider.

  Note: IE6 works fine without this fix.
*/
body {
    min-width: 990px;
}

.burgericon {
    display: none;
}

.header .upper-navigation {
    float: right;
    font-size: 13px;
    font-family: exodemibold;
    display: block;
}

    .header .upper-navigation li {
        float: left;
        min-width: 188px;
        text-align: center;
        margin: 0 5px;
    }

        .header .upper-navigation li a {
            display: inline-block;
            width: 100%;
            text-decoration: none;
            color: #444;
            line-height: 68px;
        }

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_5 {
    margin-left: auto;
    margin-right: auto;
    width: 990px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5 {
    display: inline;
    float: left;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}

.push_1, .pull_1,
.push_2, .pull_2,
.push_3, .pull_3,
.push_4, .pull_4,
.push_5, .pull_5 {
    position: relative;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.first {
    margin-left: 0;
}

.last {
    margin-right: 0;
}

/* Grid >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .grid_1 {
    width: 188px;
}

.container_5 .grid_2 {
    width: 386px;
}

.container_5 .grid_3 {
    width: 584px;
}

.container_5 .grid_4 {
    width: 782px;
}

.container_5 .grid_5 {
    width: 980px;
}

/* Prefix Extra Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .prefix_1 {
    padding-left: 198px;
}

.container_5 .prefix_2 {
    padding-left: 396px;
}

.container_5 .prefix_3 {
    padding-left: 594px;
}

.container_5 .prefix_4 {
    padding-left: 792px;
}

/* Suffix Extra Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .suffix_1 {
    padding-right: 198px;
}

.container_5 .suffix_2 {
    padding-right: 396px;
}

.container_5 .suffix_3 {
    padding-right: 594px;
}

.container_5 .suffix_4 {
    padding-right: 792px;
}

/* Push Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .push_1 {
    left: 198px;
}

.container_5 .push_2 {
    left: 396px;
}

.container_5 .push_3 {
    left: 594px;
}

.container_5 .push_4 {
    left: 792px;
}

/* Pull Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .pull_1 {
    left: -198px;
}

.container_5 .pull_2 {
    left: -396px;
}

.container_5 .pull_3 {
    left: -594px;
}

.container_5 .pull_4 {
    left: -792px;
}

/* `Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

.clearfix:before,
.clearfix:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix:after {
    clear: both;
}

/*
  The following zoom:1 rule is specifically for IE6 + IE7.
  Move to separate stylesheet if invalid CSS is a problem.
*/

.clearfix {
    zoom: 1;
}

/*----------------------------------------*/
/*---- CUSTOM GRID STYLES FOR VERTIKA ----*/
/*----------------------------------------*/

.left {
    float: left;
}

.right {
    float: right;
}

.upper_padding {
    padding-top: 40px;
}