/* Clearfix */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

/* Basic Styles */
img {
    clear: both;
    float:left;
}
body {
    background-color: #ededed;
    background-image: url("../images/body_bg.jpg"); 
    background-repeat: no-repeat;
    background-position: center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body:before {
    content:"";
    display:block;
    position:fixed;
    width:100%;
    height:100%;
    left:0;
    top:0;
    z-index:-10;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-animation: fade 8s;
    animation: fade 8s;
}
#logo_big:before {
    content:"";
    display:block;
    position:fixed;
    width:150px;
    height:72px;
    left:0;
    top:0;
    z-index:-1;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-animation: fade 8s;
    animation: fade 8s;
}
nav {
    height: 40px;
    width: 100%;
    border-bottom: 4px solid #ededed;
    font-size: 11pt;
    font-family: 'PT Sans', Arial, sans-serif;
    font-weight: bold;
    position: relative;
}
nav ul {
    padding: 0;
    margin: 0 auto;
    width: 600px;
    height: 40px;
}
nav li {
    display: inline;
    float: left;
}
nav a {
    color: #353535;
    display: inline-block;
    width: 100px;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    /* text-shadow: 1px 1px 0px #283744; */
}
nav li a {
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}
nav li:last-child a {
    border-right: 0;
}
nav a:hover, nav a:active {
    border-bottom: 4px solid #8c99a4;
}
nav a#pull {
    display: none;
}
footer {
    width: 100%;
    height: 40px;
    bottom: 0;
    position: absolute;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 0.75em;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    border-top: 2px solid #ededed;
    margin-top: 10px;
}
h1,h2,h3,h4,h5,h6 {
    color: #898989;
    font-family: 'Eurostile', Arial, sans-serif;
}
div.feature {
    display: inline-block;
    border: 1px solid #6d85ce;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2%;
}
.feature img {
    margin-right: 5%;
}
.feature p {
    /* margin-bottom: 5%; */
}
.feature p,.feature h3 {
    margin-top: 0;
}

.stretch {
    display:inline-block;
    transform-origin: left center;
    transform:scale(1.5,1); /* W3C */
    -webkit-transform:scale(1.5,1); /* Safari and Chrome */
    -moz-transform:scale(1.5,1); /* Firefox */
    -ms-transform:scale(1.5,1); /* IE 9 */
    -o-transform:scale(1.5,1); /* Opera */
}{
    font-stretch: expanded;
}
.body_content {
    text-align: left;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 25px;
    font-size: 12pt;
    font-family: 'PT Sans', Arial, sans-serif;
    z-index: -101;

}
.sidebar_right_image {
    clear: both;
    float:right;
    z-index:-100;
}
.body_space  {
    height: 20px;
}
.verticalLine  {
    clear: left;
    float:left;
    height: 90%;
    border-left: 3px  solid #ededed;
    position: fixed;
    /* position: relative; */
    left: 10%;
    z-index: -1;
}

@media screen and (max-height: 400px) {
    footer {
        display: none;
    }
}
/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
    .verticalLine  {
        display: none;
    }
    #header img {
        display: none;
    }
    nav { 
        height: auto;
        background: url('../images/logo_02_blur_small.png') no-repeat;
    }
    nav ul {
        width: 100%;
        display: block;
        height: auto;
    }
    nav li {
        width: 50%;
        float: left;
        position: relative;
    }
    nav li a {
    }
    nav a {
        text-align: left;
        width: 100%;
        text-indent: 25px;
    }
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
    .verticalLine  {
        display: none;
    }
    .sidebar_right_image {
        display: none;
    }
    nav {
        border-bottom: 2;
    }
    nav ul {
        display: none;
        height: auto;
    }
    nav a#pull {
        display: block;
        background-color: #283744;
        width: 100%;
        position: relative;
    }
    nav a#pull:after {
        content:"";
        background: url('../images/nav-icon.png') no-repeat;
        width: 30px;
        height: 30px;
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 10px;
    }
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
    .verticalLine  {
        display: none;
    }
    .sidebar_right_image {
        display: none;
    }
    nav li {
        display: block;
        float: none;
        width: 100%;
    }
    nav li a {
        border-bottom: 1px solid #576979;
    }
}
/* Chrome, Safari, Opera */
@-webkit-keyframes fade {
    from {background-color: rgba(255, 255, 255, 0.6);}
    to {background-color: rgba(255, 255, 255, 0.8);}
}

/* Standard syntax */
@keyframes fade {
    from {background-color: rgba(255, 255, 255, 0.6);}
    to {background-color: rgba(255, 255, 255, 0.8);}
}
