/*
Index:
1a - Fonts
2a - General CSS
3a - Header CSS
    3b - Navbar CSS
4a - Content CSS
        4a1 - Front Page Content
 
5a - Footer CSS

666 - 404 Page CSS

********************************************************************************
*******************************************************************************/

/* 1a - Fonts
------------------------------------------------------------------------------*/

/* End 1a - Fonts
------------------------------------------------------------------------------*/

/* 2a - General CSS
------------------------------------------------------------------------------*/

header, footer, aside, nav, article { 
    display: block;
}

html, body {
    height: 100%;
}

html {
    background: url('../pics/gasStation.jpg') no-repeat;
    background-size: 100% 100%;
    background-position: top left;
    
}

body {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
    background: -moz-radial-gradient(center, ellipse cover,  rgba(191,255,202,0.5) 0%, rgba(129,255,127,0.5) 100%); /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(191,255,202,0.5)), color-stop(100%,rgba(129,255,127,0.5))); /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(191,255,202,0.5) 0%,rgba(129,255,127,0.5) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover,  rgba(191,255,202,0.5) 0%,rgba(129,255,127,0.5) 100%); /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover,  rgba(191,255,202,0.5) 0%,rgba(129,255,127,0.5) 100%); /* IE10+ */
    background: radial-gradient(center, ellipse cover,  rgba(191,255,202,0.5) 0%,rgba(129,255,127,0.5) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80bfffca', endColorstr='#8081ff7f',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

    color: white;
}

a:link img, a:visited img { /* IE stupidity */
    border: 0px;
}

body:before
{
   content: "";
   position: fixed;
   top: -10px;
   left: 0;
   width: 100%;
   height: 10px;
   z-index: 100;
   -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
   box-shadow: 0px 0px 10px rgba(0,0,0,.8);
}


h1, h2, h3, h4, h5 {
    margin: 0px;
    padding: 20px;
}

h1 {
    font-size: 2em;
}

h3 {

}

h4 {

}

h5 {

}

#header, #footer, #content, #navbar {
    width: 1000px;
    margin: auto;
}

#pageWrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -80px;
}

#footer, #push {
    height: 40px;
    padding: 20px;
}

/* End 2a - General CSS
------------------------------------------------------------------------------*/

/* 3a - Header CSS
------------------------------------------------------------------------------*/

#headerWrapper {
    background: rgba(100,100,100,0.9);
    
        
}

#header {
    min-height: 140px;
    position: relative;
}

#header h1, #header h2 {
    position: absolute;
    
}

#header h1 {
    top: -20px;
    left: 10px;
    font-size: 70px;
}

#header h1 img {
    height: 160px;
}

#header h2 {
    top: 45px;
    left: 15px;
    font-size: 20px;
}

#headerDetails {
    position: absolute;
    right: 0px;
    text-align: right;
}

#headerDetails h3, #headerDetails h4, #headerDetails p {
    margin: 0px;
    padding: 0px;
}

#headerDetails h3 {
    color: yellow;
    font-size: 30px;
}

#headerDetails h4 {
    color: yellow;
    font-size: 17px;
}

#headerDetails p {
    font-size: 12px;
}

/* End 3a - Header CSS
------------------------------------------------------------------------------*/

/* 3b - Navbar CSS
------------------------------------------------------------------------------*/

#navbarWrapper {
    border-top: 1px solid rgba(256,256,256,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
    
    background: -moz-linear-gradient(top,  rgba(70,153,47,0.9) 0%, rgba(41,154,11,0.9) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(70,153,47,0.9)), color-stop(100%,rgba(41,154,11,0.9))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(70,153,47,0.9) 0%,rgba(41,154,11,0.9) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(70,153,47,0.9) 0%,rgba(41,154,11,0.9) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(70,153,47,0.9) 0%,rgba(41,154,11,0.9) 100%); /* IE10+ */
    background: linear-gradient(top,  rgba(70,153,47,0.9) 0%,rgba(41,154,11,0.9) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e646992f', endColorstr='#e6299a0b',GradientType=0 ); /* IE6-9 */

}

#navbar {
    min-height: 50px;
    
}

#navbar a {
    display: block;
    float: left;
    padding: 15px;
    color: white;
    text-decoration: none;
}



/* End 3b - Navbar CSS
------------------------------------------------------------------------------*/

/* 4a - Content CSS
------------------------------------------------------------------------------*/

#contentWrapper {
    
}

#content {
    min-height: 200px;
    padding: 0px;
}

#contentInner {

    
}

/* End 4a - Content CSS
------------------------------------------------------------------------------*/

/*  4a1 - Front Page Content
------------------------------------------------------------------------------*/

#frontPage #contentInner img {
    width: 100%;
    opacity: 0.0;
}

/* End 4a1 - Front Page Content
------------------------------------------------------------------------------*/
        



/* 5a - Footer CSS
------------------------------------------------------------------------------*/

#footerWrapper {
    background: rgba(100,100,100,0.9);
    border-top: 1px solid rgba(256,256,256,0.5
        );
    color: white;
}



#footer {
    text-align: center;
    
}

/* End 5a - Footer CSS
------------------------------------------------------------------------------*/

/* 666 - 404 page CSS
------------------------------------------------------------------------------*/



/* End 666 - 404 page CSS
------------------------------------------------------------------------------*/
