

/* default styles */
html, body, p, a, th, td, li, div, h1, h2, h3, input, button, select, textarea {
	-webkit-box-sizing: border-box;‌​
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 15px;
	font-family: sans-serif;
	color: #000;
	margin: 0;
	padding: 0;
}

html {
	background-color: #ddd;
}

body {
	width: 800px;
	margin: 0 auto;
	margin-bottom:10px;
}

h1 {
	font-size: 22px;
	font-weight: bold;
	margin: 20px 0 10px 0;
	border-bottom: dashed 1px #000;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	margin: 20px 0 10px 0;
}

input[type=submit], input[type=file] {
	padding: 10px;
}

a {
	text-decoration: none;
}

li {
	margin-bottom: 5px;
}

.hint {
	font-style:italic;
}

div.notes {
	float: right;
}

div.notes h2 {
	font-size: 12px;
	margin: 0;
	text-decoration: underline;
}

div.notes li, div.notes p {
	font-size: 11px;
	margin-left: 10px;
}

div.notes p {
	margin-top: 5px;
}

div.wrapper {
	clear: both;
}

div.navigation {
	text-align:center;
}

div.navigation a {
	font-size: 11px;
	text-decoration:underline;
}

/* Messages */
div.message {
	border: 1px solid #000;
	padding: 10px;
}

div.message.success {
	background-color: #0f0;
}

div.message.error {
	background-color: orange;
}

div.message.warning {
	background-color: #ff0;
}

div.message.info {
	background-color: lightblue;
}

/* Tables */
table {
	width: 100%;
	border-collapse:collapse;
}

/* Dialogs */
.dialog {
	width: 395px;
	height: auto;
}

