body {
	background: url('images/background.jpg') #000 repeat-x;
}
img {
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}
#playground {
	width: 1024px;
	height: 650px;
	margin: 50px auto 0;
	position: relative;
	font-family: Verdana, Geneva, sans-serif;
	z-index: 0;
	/*border: 3px #fff solid;*/
}
.frame {
	width: 100%;
	height: 100%;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#frame-start {
	background: url('images/intro.jpg') no-repeat;
	display: block;
}
#frame-play {
	background: url('images/slovenija.jpg') no-repeat;
}
#frame-play img {
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	z-index:2;
}
#frame-play img.background {
	visibility: visible;
	z-index:3;
	position: relative;
}
#frame-win {
	background: url('images/outro.jpg') no-repeat;
}
a#start {
	display: block;
	height: 171px;
	width: 130px;
	background: url('images/start-default.png') no-repeat;
	position: absolute;
	top: 120px;
	right: 220px;
}
a#start:hover {
	background: url('images/start-over.png') no-repeat;
}
#quiz {
	display: none;
	height: auto;
	width: 910px;
	margin: 37px auto;
	background: rgba(0,0,0,.5);
	padding: 20px;
	font-size: 18px;
	color: #FFF;
	position: relative;
	z-index: 4;
}
#quiz .answers ul {
	padding-left: 10px;
}
#quiz .answers li {
	margin: 5px 0;
	list-style-type: none;
}
#quiz .answers .bullet {
	width: 18px;
	height: 18px;
	line-height: 18px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	border-style: solid;
	border-width: 2px;
	margin-right: 10px;
}
#quiz .answers .bullet.odd {
	border-color: #9E9E9E;
	background-color: #ffffff;
	color: #000;
}
#quiz .answers .bullet.even {
	border-color: #9E9E9E;
	background-color: #ffffff;
	color: #000;
	/*border-color: #ffffff;
	background-color: #9E9E9E;
	color: #000;*/
}
#quiz .answers a.right .bullet {
	border-color: #088000;
	color: #088000;
	background-color: #BEFFA8;
}
#quiz .answers a.right {
	color: #BEFFA8;
}
#quiz .answers a.wrong .bullet {
	border-color: #800000;
	color: #800000;
	background-color: #FFA8A8;
}
#quiz .answers a.wrong {
	color: #FFA8A8;
}
#quiz a {
	line-height: 22px;
	vertical-align: middle;
	color: #CBCBCB;
	text-decoration: none;
}
#quiz a span {
	vertical-align: middle;
}
/*#quiz bullet.odd {
	color: #CBCBCB;
}
#quiz bullet.even {
	color: #9E9E9E;
}*/
#quiz a:hover {
	color: #FFFFFF;
}
/*#quiz a:visited {
	color: #CBCBCB;
}*/
#contact {
	width: 400px;
	color: #ffffff;
	border: none;
	font-size: 24px;
	position: absolute;
	left: 90px;
	top: 300px;
}
#contact div {
	display: inline-block;
	margin: 5px 0;
}
/*#contact .title {
	margin-right: 15px;
}*/
#contact .title {
	float: left;
}
#contact .input {
	float: right;
}
#contact input {
	font-size: 24px;
}
#contact .name input {
	width: 320px;
}
#contact .surname input {
	width: 280px;
}
#contact .email input {
	width: 265px;
}
area {
	cursor: pointer;
}