#switch {
	background-color:#E4E4E4;
	background-image:linear-gradient(top, #FFFFFF 0%, #E4E4E4 51%);
	background-image:-webkit-linear-gradient(top, #FFFFFF 0%, #E4E4E4 51%);
	background-image:-ms-linear-gradient(top, #FFFFFF 0%, #E4E4E4 51%);
	background-image: linear-gradient(top, #FFFFFF 0%, #E4E4E4 51%);
	background-image: -o-linear-gradient(top, #FFFFFF 0%, #E4E4E4 51%);
	background-image: -moz-linear-gradient(top, #FFFFFF 0%, #E4E4E4 51%);
	
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #FFFFFF),
        color-stop(0.51, #E4E4E4)
    );
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:12px;
    height:100%;
    margin:0px;
    padding:0px 20px;
    text-transform:uppercase;
    width:100%;
}

h3 {
    background:url(../img/logotrend-micro.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
	text-indent:-15000px; 
	overflow:hidden;
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    h3 {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}
/* Retina resolution */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-min-moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
	h3 {
		background:url(../img/logo-trend-micro@2x.png) no-repeat center top;
		background-size:225px 50px;
	}
	
}