/* ---------------------------------------------------------- */
/* HTML Tags */
/* ---------------------------------------------------------- */

*
{
	font-family: verdana;
	font-size: 8pt;
}

body
{
}

img
{
	border: 0;
}

table
{
	width: 100%;
}

td
{
	padding: 0;
}

th
{
	text-align: left;
}

a:link, a:visited
{
	color: blue;
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

ul
{
}

form
{
	margin: 0;
	padding: 0;
}

p
{
	margin: 5px;
	padding: 0;
}

h1
{
	text-align: center;
	font-size: 18pt;
	margin: 5px;
}

label
{
    font-weight: bold;
}

/* ---------------------------------------------------------- */
/* Flash Messages */
/* ---------------------------------------------------------- */

div#flash_notice, div#flash_error
{
	width: 80%;
	margin: 10px auto;
	padding: 15px;
	text-align: center;
	font-weight: bold;
}

div#flash_notice
{
	background-color: #D9FFD9;
	border: 2px solid green;
}

div#flash_error
{
	background-color: #FFECEC;
	border: 3px solid red;
}

/* =========================================================== */
/* Rails Error Handling */
/* =========================================================== */

.fieldWithErrors
{
	display: inline;
}

.fieldWithErrors input
{
	border: 2px solid red;
}

.errorExplanation
{
	width: 500px;
	text-align: left;
	margin: 25px auto;
	border: 1px solid red;	
}

.errorExplanation h2
{
	display: none;
}

.errorExplanation p
{
	background-color: red;
	color: white;
	font-weight: bold;
	padding: 5px;
	margin: 0;
}

.errorExplanation ul
{
	list-style-type: square;
	padding: 10px;
	margin-left: 10px;
}

.errorExplanation ul li
{
	color: red;
	font-weight: bold;
}

/* ---------------------------------------------------------- */
/* Rounded Corners */
/* ---------------------------------------------------------- */

.rounded
{
	position: relative;
}

.rounded .top_left, .rounded .top_right, .rounded .bottom_left, .rounded .bottom_right
{
	position: absolute;
	width: 3px;
	height: 3px;
}

.rounded .top_left
{
	top: 0;
	left: 0;
	background-image: url("../images/top_left_corner.png");
}

.rounded .top_right
{
	top: 0;
	right: 0;
	background-image: url("../images/top_right_corner.png");
}

.rounded .bottom_left
{
	bottom: 0;
	left: 0;
	background-image: url("../images/bottom_left_corner.png");
}

.rounded .bottom_right
{
	bottom: 0;
	right: 0;
	background-image: url("../images/bottom_right_corner.png");
}

/* ---------------------------------------------------------- */
/* Template */
/* ---------------------------------------------------------- */

tr.even
{
    background-color: #ddd;
}

tr.odd
{
    background-color: #fff;
}

div#header
{
}

ul#navigation
{
	margin-bottom: 5px;
	margin-top: 0;
	padding: 10px;
	height: 16px;
	background-color: black;
	background-image: url("../images/black_fade.jpg");
}

ul#navigation li
{
	display: inline;
	padding: 15px;
}

ul#navigation a
{
	font-size: 11pt;
	color: white;
}

.headline
{
	font-size: 14pt;
}

/* ---------------------------------------------------------- */
/* Form formatting */
/* ---------------------------------------------------------- */

table.form
{
	padding: 2px;
	margin: 1px;
}

table.form td
{
	padding-bottom: 2px;
}

td.label
{
	font-weight: bold;
	padding-right: 10px;
}
