@media only screen and (min-width: 1141px) {
/*-----BODY -----*/
	body {
        background-image:url(../images/background.jpg); 
        background-repeat: no-repeat;
        background-position: center top;
    }

/*-----WRAPPER -----*/
	#wrapper {}

/*-----CONTAINER -----*/
	#container {
		margin: 2em auto;
		border: 1px solid #888;
	}

/*-----HEADER -----*/
    header { 
        display: block;
        height:100px;
        background-color: transparent;

    }
    
    header h2 {
    /*    position: absolute;
        left: 8.8%;
        top: 89px;
        font-size: 1em;  */
    }
    
    header img {

    float:left;
    width:58px;
    padding-right: 1%;   

}

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

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



/*-----Navigation -----*/
    nav {
        width: 100%;
        float: none;
        background: #3f3f3f;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3f3f3f), color-stop(100%,#272727));
        background: -webkit-linear-gradient(top, #efefef 0%,#272727 100%);
        background: -o-linear-gradient(top, #3f3f3f 0%,#272727 100%);
        background: linear-gradient(to bottom, #3f3f3f 0%,#272727 100%);
  
    }
  
    nav ul li {
        float: left;
        border-right: 1px solid rgba(0,0,0,0.7);
        border-left: 1px solid rgba(255,255,255,0.1);
    }
    
    nav ul li a {
      background: transparent; 
        border: none;
    }
    
    /*---- sub menu items -----*/
    nav ul li ul {
        z-index: 99;
        position: absolute;
        left: -999em;
        width: 10em;
    }
    
    nav ul li ul li {
        float: none;
        border-right: none;
        border-bottom: 1px solid #333;
    }
    
    nav ul li:hover ul {
        left:auto;
    }


/*-----CONTENT -----*/
    #content {
        width: 100%;
        float: none;
    }
    
article.col50 {
        width:46%;
        float:left;
    clear: none;
    }


/*----- FOOTER -----*/


} 