/* This will be my stylesheet */
body {
	background-color: gray;
	font-family: sans-serif;
}

.scorebox,.wordsbox,.tilesbox,.entrybox {
	background-color: #ffd;
	border: 1px solid black;
	padding: 5px;
}

.scorebox {
	float:left;
	width: 150px;
	height: 95%;
}

.wordsbox {
	float:right;
	width: 150px;
	height: 95%;
}

.tilesbox {
	margin-left: 180px;
	margin-right: 180px;
	height: 340px;
}

.entrybox {
	margin-top: 20px;
	margin-left: 180px;
	margin-right: 180px;
	height: 100px;
	text-align: left;
}
.entry {
	margin-left: 0px;
	margin-right: 0px;
	font-size: 200%;
	font-weight: bold;
	background-color: white;
	border: 1px solid black;
	height: 40px;
	font-family: Times, serif;
}

h1,h2 {
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: bold;
}

h1 {
	font-size: 120%;	
}
h2 {
	font-size: 100%;	
}

.tile,.tileused {
	background: url(gfx/tile_bg.png);
	width: 40px;
	height: 40px;
	position: absolute;
	font-size: 200%;
	text-align: center;
	font-family: Times, serif;
	font-weight: bold;
	border: 3px solid #ffd;
}

.tileused {
	border-color: black;
}

.gameover {
	color: red;
	font-weight: bold;
}

button {
	font-size: 80%;
	font-weight: bold;
	line-height: 1;
	height: 1.5em;
}

.usedword {
	/* Nothing */
}

.badword {
	color: red;
}

.lettervalue {
	font-size: 12px;
	vertical-align:sub;
}

#shoparea {
	border: solid black 1px;
	height: 100px;
}

#messagearea {
	height: 2em;
	font-weight: bold;
}