/*
	JSSpeccy: A ZX Spectrum emulator in Javascript
	Copyright (C) 2009 Matthew Westcott

	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.

	Contact details: <matthew@west.co.tt>
	Matthew Westcott, 14 Daisy Hill Drive, Adlington, Chorley, Lancs PR6 9NE UNITED KINGDOM
*/
div.game {
	width: 640px;
	margin: auto;
	position: relative;
	font-family:sans-serif;
	margin-top:16px;
	border-style:solid;
	border-width:1px;
	border-color:#000000;
	background-color:#cccccc;
}
input.pwon {
	font-family:sans-serif;
	font-size:17px;
	color:#000000;
	font-weight:bold;
	padding:2px;
	padding-left:5px;
	padding-right:5px;
	background-color:#40f060;
	border-color:#40a070;
}
input.pwon:hover {
	font-family:sans-serif;
	font-size:17px;
	color:#000000;
	font-weight:bold;
	padding:2px;
	padding-left:5px;
	padding-right:5px;
	background-color:#50ff70;
	border-color:#40a070;
}
input.pwac {
	font-family:sans-serif;
	font-size:17px;
	color:#000000;
	font-weight:bold;
	padding:2px;
	padding-left:5px;
	padding-right:5px;
	background-color:#ffff90;
	border-color:#40a070;
}
#screen {
	border: 64px solid black;
	width: 512px;
	height: 384px;
	float: left;
	clear: both;
	margin-right: 32px;
}

#menu {
	clear: left;
	margin: 0;
	padding: 0;
	width: 640px;
	height: 56px;
	background-color: #ccc;
	list-style-type: none;
}
#menu li {
	float: left;
	margin: 4px;
	color:#2060a0;
	font-weight:bold;
	font-size:13px;
}
#menu li a {
	display: block;
	text-indent: 0px;
	width: 48px;
	height: 48px;
	outline: none;
	text-decoration:none;
}
#menu.stopped li#menu_run a {
	background-image: url(48x48_player_play.png);
}
#menu.running li#menu_run a {
	background-image: url(48x48_player_play_disabled.png);
}
#menu.running li#menu_stop a {
	background-image: url(48x48_player_pause.png);
}
#menu.stopped li#menu_stop a {
	background-image: url(48x48_player_pause_disabled.png);
}
#menu li#menu_reset a {
	background-image: url(48x48_kaboodleloop.png);
}

#menu li#menu_open a {
	background-image: url(48x48_folder_blue_open.png);
}

#menu li#menu_about {
	float: right;
}
#menu li#menu_about a {
	background-image: url(48x48_messagebox_info.png);
}

#menu li#menu_joystick a {
	background-image: url(48x48_package_games_arcade.png);
}

#snapshot_chooser {
	position: absolute;
	padding: 8px;
	left: 128px;
	top: 48px;
	width: 384px;
	background-color: white;
	height: 400px;
	overflow: auto;
	border-style:solid;
	border-width:1px;
	border-color:#000000;
}
#about {
	position: absolute;
	left: 64px;
	top: 64px;
	width: 492px;
	background-color: white;
	height: 364px;
	padding: 10px;
	text-align: center;
	overflow: auto;
	border-style:solid;
	border-width:1px;
	border-color:#000000;
}
a.close_button {
	display: block;
	border: 1px solid black;
	background-color: #ccc;
	margin: auto;
	padding: 4px;
	width: 200px;
	margin-bottom: 8px;
	margin-top: 8px;
	color: black;
	text-decoration: none;
	text-align: center;
	clear: both;
	font-weight:bold;
}
#snapshot_list {
	list-style-type: none;
	height: 248px;
	overflow: auto;
	margin: 0;
	border: 1px solid #000000;
	padding: 0;
}
#snapshot_list li {
	line-height: 40px;
	border-bottom: 1px solid black;
	padding-left: 16px;
}
#snapshot_list li a {
	display: block;
	text-decoration:none;
	color:#0055ff;
}
#about h1 {
	font-size: 20px;
	margin-bottom: 0;
}
#about h2 {
	font-size: 16px;
}
#about a {
	text-decoration:none;
	color:#0055ff;
}
#about #licence {
	font-size: 13px;
}
#about #licence a {
	text-decoration:none;
	color:#0055ff;
}
