@CHARSET "UTF-8";

html, body {
	font-family: Verdana;
	font-size: 11px;
}

#canvas {
	width: 750px;
	height: 300px;
	border: 1px solid black;
	background-color: #FFFFFF;
	position: relative;
	overflow: hidden;
	background-image: URL("../images/bg.jpg");
} 

#nave {
	width: 40px;
	height: 28px;
	position: absolute;
	background-image: URL("../images/aircraft-F15-1.gif");
}

.normal-fire{
	width: 3px;
	height: 3px;
	background-color: #000000;
	position: absolute;
}

.enemy-shot {
	background-color: #FF0000;
}

.enemy {
	width: 100px;
	height: 100px;
	position: absolute;
	left: 300px;
	top: 100px;
	background-position: center center;
	background-repeat: no-repeat;
}

.weak-enemy {
	width: 40px;
	height: 28px;
	background-image: URL("../images/aircraft-MIG-25.gif");
}

.strong-enemy {
	width: 44px;
	height: 30px;
	background-image: URL("../images/aircraft-MIG-29-Fulcrum.gif");
}

.divPowerContainer {
	position: absolute;
	bottom: 5px;
	left: 5px;
	height: 7px;
	width: 150px;
	border: 1px solid black;
	z-index: 100;
}

.divPower {
	height: 7px;
	width: 100%;
	position: absolute;
	background-color: #00FF00;
}

.txt-pontos, .txt-vidas, .txt-level {
	width: 150px;
	text-align: right;
	font-style: italic;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	position: absolute;
	bottom: 15px;
	left: 5px;
}

.txt-vidas {
	text-align: left;
}

.txt-level {
	text-align: left;
	bottom: 25px;
}

.weapons {
	bottom: 5px;
	right: 5px;
	position: absolute;
	width: 150px;
	z-index: 101;
}

.weapon {
	width: 30px;
	height: 30px;
	float: right;
	background-repeat: no-repeat;
	line-height: 30px;
	vertical-align: bottom;
	text-align: center;
}

.x-normal-fire {
	background-image: URL(../images/single-fire.png)
}

.x-double-fire {
	background-image: URL(../images/double-fire.png)
}

.x-triple-fire {
	background-image: URL(../images/triple-fire.png)
}

.gameOver, .startGame {
	width: 200px;
	position: absolute;
	left: 275px;
	top: 100px;
	text-align: center;
}

.gameOver p, .startGame p {
	font-size: 16px;
	font-weight: bold;
}