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,font,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{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}


html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	background-color: #fff;
}

body {
	font-family: Helvetica, Arial, Tahoma, sans-serif;
	font-size: 1em;
	background: url('../img/background.png') no-repeat center center;
}


#logo-badge {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	background-repeat: no-repeat;
	background-position: top left;
}


#darkside,
#whiteout {
	z-index: 1;
	position: absolute;
	display: block;
	height: 100%;
	font-size: 0;
	text-indent: -9999px;
	text-decoration: none;
}

#darkside .overlay,
#whiteout .overlay {
	position: absolute;
	display: block;
	opacity: 0;
	height: 100%;
}

#darkside:hover,
#whiteout:hover {
	z-index: 0;
	width: 100%;
}

#darkside:hover .overlay,
#whiteout:hover .overlay {
	-webkit-transition: opacity 300ms ease-out;
	   -moz-transition: opacity 300ms ease-out;
	    -ms-transition: opacity 300ms ease-out;
	     -o-transition: opacity 300ms ease-out;
	        transition: opacity 300ms ease-out;
}

#darkside {
	width: 50%;
	height: 100%;
}
#darkside:hover .overlay {
	opacity: .8;
}
#darkside .overlay {
	left: 50%;
	width: 50%;
	background-color: #fff;
}

#whiteout {
	left: 50%;
	width: 50%;
}
#whiteout:hover {
	left: 0;
}
#whiteout:hover .overlay {
	opacity: .7;
}
#whiteout .overlay {
	width: 50%;
	background-color: #000;
}


#no-script-message {
	position: fixed;
	z-index: 2;
	width: 100%;
	padding: 2em 0;
	color: #fff;
	line-height: 1.2em;
	font-weight: bold;
	text-align: center;
	letter-spacing: -.025em;
	background-color: #db4e4e;
}
#no-script-message a {
	color: #ffa203;
	text-decoration: underline;
}
#no-script-message a:hover {
	text-decoration: none;
}