﻿
/***********************************
*  GENERAL                         *
************************************/

html, body {
	height: 100%;
}

body {
	height: 100%;
	margin: 0px;
	padding: 0px;
	background-color: #4D78AF;
}

p {
	margin: 0px;
}

td, span, p, div, a, form, h1, h2, h3, h4, h5, h6 {
	font-family: Tahoma, Arial;
	font-size: 10pt;
	color: #314965;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}



/***********************************
*  MAIN CONTENT                    *
************************************/

#main-content {
	width: 400px;
	position: absolute;
	left: 50%;
	margin-left: -200px;
	top: 50%;
	margin-top: -200px;
	background-color: #88A6C8;
}

h1 {
	margin: 0px;
	font-weight: bold;
	height: 28px;
	background: transparent url('../images/index_header_bg.png') no-repeat;
}

h1 span {
	padding: 5px 0px 0px 10px;
	display: block;
	color: #4D78AF;
}

#main-content-container {
	margin: 10px;
}


/****************************************
*   Notice                              *
*****************************************/

/* All Notices */

div.notice {
	margin-top: 10px;
	padding: 0px 5px 5px 5px;
	background-color: #FDFCED;
	border: 1px solid #E2DCB2;
}

div.notice p {
	font-family: Verdana;
	font-size: 10pt;
	font-weight: bold;
}

div.notice p span {
	display: block;
	margin-top: 5px;
}

/* Error Notice */

div.notice-error {
	background-color: #EAC8C8;
	border: 1px solid #B88786;
}

div.notice-error p {
	padding-left: 20px;
	background: transparent url('../icons/error_16.png') no-repeat top left;
}

/* Information Notice */

div.notice-info {
	background-color: #E9EEF3;
	border: 1px solid #B8CAE0;
}

div.notice-info p {
	padding-left: 20px;
	background: transparent url('../icons/info_16.png') no-repeat top left;
}



/***********************************
*  FORMS                           *
************************************/

/* This span tag is used as a utility for forms, it should never be displayed */
span.form-element-validation {
	display: none;
}

form {
	margin: 10px 0px 0px 0px;
}

form input, form select {
	font-size: 8pt;
}

form.input-form {
	width: 100%;
    overflow: auto;
}

div.form-element {
	width: 100%;
	float: left;
	clear: both;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px dashed #D2D9E0;
}

p.form-element-label {
	width: 100px;
	text-align: right;
	float: left;
	margin-right: 5px;
	padding-top: 2px;
}

p.form-element-label label {
	color: #FFFFFF;
}

p.form-element-input {
	float: left;
}

p.form-element-input input {
	font-size: 8pt;
	width: 230px;
	margin-right: 10px;
}

div.form-buttons {
	padding-top: 10px;
}











