/*-----Prevents iPhone from resizing in landscape mode -----*/
html {-webkit-text-size-adjust: none; }

/*----------- apply a natural box layout model to all elements --------------*/
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*-----BODY -----*/
body {
	font-size: 16px;
    font-family: 'Hind', sans-serif;
    background-color: #000;
    color:#484848;
}


/*-----CONTAINER -----*/
#container {
	min-width: 320px;
	max-width: 1140px;
}

/*-----HEADER -----*/
header div#phone {
    margin: .6em 2% 0 0;
    float: right;
    font-size: .9em;
    color: #fff;
}

header div#phone a {
    color: #fff;
}


header img {
    float:left;
    width:38px;
    padding-right: 1%;   
}

/*--- Company name ----*/
header h1 {
    font-size: 1.8em;
    font-weight: 700;
    color: #ff9900;
    padding: .8em 0 0 1%;
}

header h2 {
    font-size: .88em;
    font-weight: 700;
    color: #ebd5a4;
    padding: .1em 0 .7em 1%;

}



/*-----NAVigation -----*/
nav {
    padding: .5em 0;
    background: #3f3f3f;
}

nav ul {
    display: none;
}
/* ---- Generated dynamically with js the new list items ------*/
nav select {
    width: 96%;
    margin-left: 2%;
}

/*-----CONTENT -----*/
#content {
	min-height: 15em;
    background-color: #e6e6e6;
}

#content a {
    color: #0046eb;
}

#content h2 {
    font-size: 1.5em;
    font-weight: 700;
    color: #0099ff;
    padding-top: 1.4em;
    border-bottom: 2px solid #0099ff;
}

#content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color:#333;
    padding-top: 1.1em;
}

#content p {
    font-size: .9em;
    color:#333;
    padding-top: .5em;
    line-height: 130%;
}

#content a {
    color:#0046eb;
}

#content strong {font-weight: 700;}

#content ul li {
    margin-left: 3%;
    padding: .3em;
    font-size: .8em;
    list-style-type: square;
    color: #444;
    line-height: 120%;
}

/* --- Columns ----*/
article {
    padding: .5em 2%;
    clear: both;
}

/*----- Images ------*/
figure.w50 img {width:100%;}
figure.w50 {
    background-color: #fff;
    width: 41.666%;
    border: 1px solid #999;
    box-shadow: 2px 2px 5px rgba(63,63,63,0.5);
    margin-top:.5em;
}

figcaption{
    text-align: center;
    font-size: .7em;
    padding: .3em;
}

figure.right {float:right;}

/*----- Social Links ------*/
div.links a {
    width: 29.3333%;
    margin: 1em 2%;
    float:left;
    border-radius: 10px;
    height: 2em;
    text-align: center;
    color: #222;
    padding-top: .7em;
    text-decoration: none;
    
    background: #eba600;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eba600),color-stop(100%,#b27e00));
    background: -webkit-linear-gradient(top, #eba600 0%,#b27e00 100%);
    background: -o-linear-gradient(top, #eba600 0%,#b27e00 100%);
    background: linear-gradient(to bottom, #eba600 0%,#b27e00 100%);
}
div.links a:hover {
    background: #0099ff;
}


/*----- FOOTER -----*/
footer {
	clear: both;
    background-color: #eba600;
}

footer p {
    padding: 0.8em;
    text-align: center;
    font-size: 0.8em;
    color: #333;
}

footer a {
    color: #333;
}

/*----- OTHER STUFF -----*/
.clearfix:after {
    content:"";
    display: table;
    clear:both;
}
