html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
button {
	outline:none;
	background-color:rgba(255,255,255,0);
}
div, section, button {
	-moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#container {
	position: absolute;
	top: 0;left: 0;
	width: 300px; height: 250px;
	overflow: hidden;
	border:1px solid #000;
	box-sizing: border-box;
}

#container > a > img {
	position: absolute;
}

#img1, #img2 {
	opacity: 0;
}

#logo {
	position: absolute;
    top: 14px;
    width: 210px;
    right: 43px;
    opacity: 0;

	shape-rendering :crispEdges;    
    -webkit-animation: animationOpacityLogo 2s ease-out forwards;
	animation: animationOpacityLogo 2s ease-out forwards;    
}

#container > a > button {
	position: absolute;
	width: 100%; height: 100%;
	cursor: pointer;
}


@-webkit-keyframes animationOpacityLogo {
    0% {opacity: 0;}
    100% {opacity: 1;}
} 

@keyframes animationOpacityLogo {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

