/* CSS Document */
@font-face {
    font-family: 'blackoutmidnight';
    src: url('../fonts/blackout-midnight-webfont.eot');
    src: url('../fonts/blackout-midnight-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/blackout-midnight-webfont.woff') format('woff'),
         url('../fonts/blackout-midnight-webfont.ttf') format('truetype'),
         url('../fonts/blackout-midnight-webfont.svg#blackoutmidnight') format('svg');
    font-weight: normal;
    font-style: normal;

}
body {
	background: #666;
	font-family: 'blackoutmidnight', sans-serif;
	
}

li {
	padding:0 !important;
	margin: 0 !important;
	overflow: hidden;
}



li img {
    -webkit-transition: all 1s ease; /* Safari and Chrome */
    -moz-transition: all 1s ease; /* Firefox */
    -ms-transition: all 1s ease; /* IE 9 */
    -o-transition: all 1s ease; /* Opera */
    transition: all 1s ease;
}

li:hover img {
    -webkit-transform:scale(1.15); /* Safari and Chrome */
    -moz-transform:scale(1.15); /* Firefox */
    -ms-transform:scale(1.15); /* IE 9 */
    -o-transform:scale(1.15); /* Opera */
     transform:scale(1.15);
}