div.image { /* IMPORTANT: Used for overlaying car numbers ONTOP of cars -- Previously was 60%, changed because of horizontal lines between images on Galaxy C9 Pro -still not fixed-*/
    line-height: 10%;
	margin-left: auto;
    margin-right: auto;
}

img.reverse { /* IMPORTANT: Flip car images for stations with center platform so door numbers are not reversed.  Door 1 -> Door 1. Without this fix: Door 1 -> Door 4, Door 2 -> Door 3*/
        -moz-transform: scale(1,-1);
        -o-transform: scale(1,-1);
        -webkit-transform: scale(1,-1);
        transform:scale(1,-1);
        filter: FlipV;
        -ms-filter: "FlipV";
}