*
{
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body
{
	font-family: /*"Georgia"*/ "Droid Sans", serif;
	font-size: 12px;
	color: #fff;
	background: #222;
	float: left;
	line-height: 20px;
}

a
{
	outline: none;
}

article,
header,
footer,
section
{
	display: block;
	float: left;
}

h1
{
	float: left;
	font-weight: normal;
}

.select
{
	float: left;
	width: 260px;
	padding: 20px;
	background: #333;
	border: 1px #444 solid;
}
	
	.select p
	{
		clear: both;
	}
	
	.message
	{
		display: none;
	}

	.select ul
	{
		clear: both;
		float: left;
		width: 260px;
		margin-top: 5px;
	}
	
		.select li
		{
			list-style: none;
			display: block;
			float: left;
			margin-right: 20px;	
		}
		
		.select li:last-child
		{
			margin-right: 0;
		}
		
			.select li a
			{
				padding: 5px;				
				width: 108px;
				background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #ccc));
				background: -moz-linear-gradient(center top, #fff 0%, #ccc 100%);
				color: #333;
				text-decoration: none;
				display: block;
				font-weight: bold;
				border: 1px #444 solid;
			}
			
			.select li a:hover
			{
				background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc), color-stop(1, #888));
				background: -moz-linear-gradient(center top, #ccc 0%, #888 100%);
			}
			
			.select li a:active
			{
				background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #111), color-stop(1, #333));
				background: -moz-linear-gradient(center top, #111 0%, #333 100%);
				color: #fff;
			}
	
	.select h1
	{
		clear: both;
		text-shadow: 1px 1px 0 #000;
		font-size: 18px;
		margin-bottom: 5px;
	}

header
{
	margin-bottom: 20px;
}
	
	header h1
	{
		display: block;
		float: left;
		width: 186px;
		height: 51px;
		background: url(../images/logo.png) no-repeat;
		text-indent: -5000px;
		overflow: hidden;
	}

footer
{
	clear: both;
	margin-top: 20px;
	color: #666;
}
	
	footer a
	{
		color: #888;
		text-decoration: none;
		font-size: 11px;
	}
	
	footer a:hover
	{
		text-decoration: underline;
	}


