       #gamearea{
            position: relative;
          /*  top: 100;
            left: 100;*/
            border: 1px solid black;
            width: 640;
            height: 480;
            background-color: rgb(153,204,255);
        }
        #turret{
            position: absolute;
            top: 432;
            left: 320;
            width: 32;
            height: 32;
        }
        
        #bug{
            position: absolute;
            top: 32;
            left: 8;
            width: 32;
            height: 32;
        }
        
        #shot{
            position: absolute;
            top: 0;
            width: 32;
            height: 32;
            display: none;
        }
        
        #score{
            position: absolute;
            top: 0;
            left: 0;
            width: 640;
            height: 24;
            font-family: arial;
            font-size: 14pt;
            color: white;
            background-color: rgb(32,128,64);
        }
        
        #ground{
            position: absolute;
            top: 464;
            left: 0;
            width: 640;
            height: 16;
            font-size: 10pt;
            color: white;
            background-color: rgb(32,128,64);
        }
        
        #welcome{
		position: absolute;
		top: 120;
		left: 160;
		width: 320;
		height: 240;
		padding: 5px;
		color: white;
		background-color: rgb(0,0,64);
		border: 1px solid cyan;	
		display: block;
        }

        #over{
		position: absolute;
		top: 120;
		left: 160;
		width: 320;
		height: 240;
		padding: 5px;
		color: white;
		background-color: rgb(64,0,0);
		border: 1px solid cyan;	
		display: none;
        }
