﻿/* -------- */
/*  HEADER  */
/* -------- */
@import url('Responsive/Responsive.css');
@import url('../Ω-elements/css/Responsive/Responsive.css');
@import url('../Ω-elements/headerBackground.css');
@import url('../Ω-elements/headerStickyTop.css');
@import url('../Ω-elements/headerBottom.css');
@import url('../Ω-elements/headerButtons.css');
@import url('../Ω-elements/logo.css');
@import url('../Ω-elements/navigation.css');

.Header
{
    color: #888;
    display: inline-block;
    box-sizing: border-box;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    
    color: #fff;
    
       transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;

    float: left;
}

.Header-Main-Area
{
    height: auto;
    padding: 0em;
    display: block;
    background-color: transparent;
    position: relative;
    top: 0;
    left: 0;
    z-index: 103;

    width: 100%;

    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;

    float: left;
}

.Header-Main-Area-Left
{
    width: 16.5%;
    min-height: 1px;
    height: auto;

    display: inline-block;
    float: left;
}

.Header-Main-Area-Center
{
    width: 66%;
    min-height: 6em;
    height: auto;

    display: inline-block;
    float: left;
}

.Header-Main-Area-Right
{
    width: 16.5%;
    min-height: 1px;
    height: auto;

    display: inline-block;
    float: left;
}

.Header-Left-Area
{
    border: 0px solid #555;
    display: inline-block;
    width: 20%;
    max-width: 300px;
    height: auto;
    min-height: 3em;
    float: left;
    box-sizing: border-box;
    position: relative;

    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}

.Header-Center-Area
{
    border: 0px solid #555;
    display: inline-block;
    width: auto;
    height: auto;
    float: left;
    box-sizing: border-box;
    position: relative;
  
    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;
}

.Header-Right-Area
{
    border: 0px solid #555;
    display: inline-block;
    width: auto;
    /*max-width: 300px;*/
    height: 100%;
    float: right;
    box-sizing: border-box;
    position: relative;

    text-align: right;  

    transition: all ease-in 200ms;
    -moz-transition: all ease-in 200ms;
    -webkit-transition: all ease-in 200ms;
    -o-transition: all ease-in 200ms;
    -ms-transition: all ease-in 200ms;

    min-width: 270px;
}


