/*
	Global CSS

	Colors definitions:

	base hilight (lime green)		:	#aee538
	base counter (dark grey)		:	#808080

	base text (darker grey)			:	#5e5e5e

	normal link (lime-green)		:	#aee538
	visited link (light green-blue)	:	#d1e5c8

*/

/* 1st: reset all elements in all browsers to common, predictable values */
* {
	font: normal 13px/20px Georgia,Times,serif;
	color: #5e5e5e;
	margin: 0;
	padding: 0;
	border: none;
	text-decoration: none;
	text-align: left;
	text-indent: 0;
	cursor: default;
}

input[type="submit"], input.submit,
input[type="reset"], input.reset,
button, a, a * {
	cursor: pointer;
}

body {
	background: #fff;
	text-align: center;															/* IE6:HACK	- IE6 won't center block container by automargin  */
}

/* 2nd: define global rules for basic elements */
a {
	color: #aee538;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: #d1e5c8;
}

p {
	margin: 1em 0 1em 0;
}

h1 {
	font-weight: bold;
	font-size: 1.5em;
	margin: 0.5em 0 1em 0;
}

h2 {
	font-weight: bold;
	font-size: 1.1em;
	margin: 1em 0 1em 0;
	color: #aee538;
}

h2 span.header-explanation {
	font-weight: bold;
	font-size: 1.1em;
	color: #aee538;
	display: block;
	margin-left: 10ex;
}

h3 {
	font-weight: bold;
	color: #000;
	margin: 0.5em 0 0 0;
}

h3 + p {																		/* E + F Matches any F element immediately preceded by an element E.  */
	margin-top: 0;
}

ul {
	margin: 0.5em 0 0.5em 1em;
	padding-left: 1em;
}

abbr,
acronym {
	border-bottom: 1px dotted #888;
}


table {
	width: 550px;
	background: #aee538;
}

table th {
	background: #fff;
	font-weight: bold;
	padding: 0.1em 0.4em 0.1em 0.4em;
}

table th.label {
	text-align: right;
}

table td {
	background: #fff;
	padding: 0.1em 0.4em 0.1em 0.4em;
}

table thead th {
	background: #aee538;
	color: #fff;
}

strong,
strong * {
	font-weight: bold;
}


/* 3rd: define layout specyfic rules */
div#page-header {
	height: 20px;
	width: 100%;
	background: #aee538;
	border-bottom: 5px solid #808080;
	margin-bottom: 2em;
}

div#page-content {
	width: 900px;
	margin: 2em auto 2em auto;
	position: relative;
}

div#page-content
	div.additional-information {

	width: 330px;
	margin: 0 20px 0 0;

	position: absolute;
	bottom: 0;
	left: 0;
}

div#page-content
	div.additional-information
		span.advertisment {

	display: block;
	text-align: center;
}

div#page-content
	div.base-information {

	margin-left: 350px;
}

div#page-footer {
	width: 900px;
	margin: 2em auto 2em auto;
	border-top: 1px dotted #808080;
	padding: 0.4em 0 0 0;
	text-align: right;
	clear: both;
}

div#page-footer a {
	color: #5e5e5e;
}


