/*
 * *******************************************************************************************
 * "THE BEER-WARE LICENSE" (Revision 42.'321'):     (http://people.freebsd.org/~phk/)
 * Arjan321 wrote this page. You can do whatever you want with this stuff.
 * If we meet some day, and you think this page is worth it, you can buy me a beer in return
 * *******************************************************************************************
*/



/****************************************************
	Some styling of HTML Elements
*****************************************************/

body {
	background-image: url('gradient.jpg');
	background-repeat: repeat-x;
	background-color: #FFFFFF;
	color: black;
}

label {
	font-weight: bold;
}

h1 {
	font-size: 2em;
	text-align: center;
}

h2 {
	display: none;
}

h3 {
	font-size: 10px;
	font-weight: bold;
	display: inline;
}

p {
	margin: 1em 0;
}

div, textarea, input, button {
	font-family: verdana, arial, sans-serif;
	font-size: 12px;
}

a, a:link, a:visited, a:active, a:hover {
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

/****************************************************
	Styling the basic layout
*****************************************************/

#container {
	margin: 40px auto 0px auto;
	width: 650px;
}

#header {
	height: 125px;
}

#dice, #content {
	background-color: #EBF0FA;
	border: 1px solid #CFDFFF;
	color: #000000;
}

#dice {
	float: left;
	width: 300px;
	height: 300px;
	margin-top: 4px;
	text-align: center;
}

#content {
	float: right;
	width: 330px;
	height: 300px;
	padding: 4px;
}

#menu {
	float: right;
	width: 330px;
	text-align: center;
	margin-top: 4px;
}

#history {
	overflow: auto;
	height: 300px;
}

#disclaimer, #privacy, #copyright {
	clear: both;
	font-size: 10px;
	color: #AAAAAA;
	background-color: inherit;
}

/****************************************************
	Styling the dice
*****************************************************/

#table_dice {
	border: 3px solid black;
	font-family: courier, sans-serif;
	font-size: 60px;
	font-weight: bold;
	color: #000000;
	background-color: white;
	margin: 30px auto 20px auto;
}

#table_dice td {
	padding: 0 14px;
}

#canvas_dice {
	display: block;
	border: 3px solid black;
	margin: 20px auto 10px auto;
	background-color: white;
}

/****************************************************
	Styling the menu
*****************************************************/

#menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

#menu ul li {
	margin: 0 5px;
	display: inline;
}

.link {
	padding: 2px 20px 0 20px;
	width: 60px;
	border: 1px solid #CFDFFF;
}

/****************************************************
	Styling the links
*****************************************************/

.link:active, .linkActive {
	background-color: #CFDFFF;
	color: black;
}

.linkInActive {
	background-color: #EBF0FA;
	color: black;
}

#copyright a {
	color: #888888;
	background-color: inherit;
}

/****************************************************
	Styling the solutionbox
*****************************************************/

#dilemma_solution {
	position: absolute;
	margin-left: 100px;
	margin-top: 100px;
	background-color: #FEE7C4;
	color: black;
	border: 1px solid #DDA24D;
	width: 400px;
	padding: 5px;
	z-index: 10;
}

#text_solved_dilemma li {
	font-style: italic;
}

/****************************************************
	Making it pretty in Gecko
*****************************************************/

#dice, #content, #dice table, #dilemma_solution, canvas {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.link {
	-moz-border-radius-topleft: 10px;
	-webkit-border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;
}
