/* Original */

/* Logo */

/* Banner */

	#logo {
		background-position: center center;
		background-repeat: no-repeat;
        width: 450px;
	}

/* Desktop */

	@media screen and (min-width: 737px) {
        
    /* Logo*/
    
        #logo {
				position: relative;
				width: 450px;
			}
}  

/* Tablet */

@media screen and (min-width: 737px) and (max-width: 1200px) {

    /* Logo*/
    
    #logo {
            width:450px;
			}
        
}
    

/* Mobile */

@media screen and (max-width: 736px) {

    /* Logo */

    #logo {
        width:300px;
			}
}