/*
   generic.css

	Use:
	- Does some basic styling to the most common tag
	- Defines some usefull class that can be used on pages

   
   Created by Robert van Kints on 2009-10-05.
   Copyright 2009 Solzoo. All rights reserved.
*/

body {
	padding: 0 10px;
	font: normal 82.5% 'Lucida Grande', Helvetica, Verdana, Arial, 'sans serif';
	background-image: url('../background_gradient.gif');
	background-repeat: repeat-x;
	background-color: rgb(90,32,73);
}
	
p { margin: 10px 0; }

/**	Lists 
*/

li { margin-left: 10px; }

dl dd { margin-left: 10px; }

dl dt {	font-weight: bold; }

dl {
	border: 1px solid black;
	margin: 5px;
}

/**	Custom classes 
*/

.highlight { border: 5px dotted #eee; }
.selected { background-color: #8F8;}
.error { background-color: #fee; }
.red { background-color: red; }
.blue { color: blue; }
.green { color: green; }

.splash {
	margin: 0 auto;
	width: 257px;
	height: 242px;
	margin-top: 170px;
}

/**	Tables 
*/

table {
	border: 1px solid #666;
	margin: 20px 0 20px 0 !important;
}

th, td {
	padding: 2px 4px 2px 4px !important;
	text-align: left;
	vertical-align: top;
}

th { background-color: #fc0; }

th:hover { background-color: #fc7; }

tbody tr.even {	background-color: #fea; }

tr a {
	color: rgb(102, 102, 102);
	text-decoration: none;
}
tr a:hover {
	text-decoration: underline;
}