/*
This CSS tries to use a 20px basline grid

Exceptions:
Multiline <h2> and <h3>
*/

* {
	margin: 0;
	padding: 0;
}

html,
body {
	background-color: #FFFFFF;
	color: #000000;
	text-align: left;
	font-family: Arial, Helvetica, Verdana, Geneva, sans-serif;
	font-size: 13px;
	line-height: 16px;
}

img {
	border: 0;
}

fieldset {
	border: 0;
}

#page {
	margin: 0 auto 0 auto;
	padding: 0 0 0 24px;
	text-align: left;
	max-width: 1008px; /* 944 + 64 margin */
}

#header {
	position: relative;
	width: 944px;
	height: 114px;
	margin: 0 0 0 0;
}

#header .logo {
	position: absolute;
	right: -23px;
	top: 16px;
}

#content {
	max-width: 1008px; /* 944 + 64 margin */
}

/* ### COLUMNS ### */

.col_normal {
	margin: -1px 0 0 0; /* Correct 1px border */
	padding: 28px 0 0 0;
}

.border-top {
	border-top: 1px solid #B3B3B3;
}

.border-bottom {
	border-bottom: 1px solid #B3B3B3;
}

.split {
	width: 212px;
	float: left;
}

.gutter {
	margin-right: 16px;
}

.col_1-4,
.col_1-2 {
	float: left;
}

.col_margin {
	margin: 0 64px 0 0;
}

.col_1-4 {
	width: 188px;
}

.col_1-2 {
	width: 440px;
}

/* ### TYPE ### */

/*
<h1> and <h2> : to be used at the top of a column.
<h3> and <h4> : to be used inside a column.
*/

/*
In FF, margin of <p> seems to conflict with margin of <h1>, <h2> etc.
So I use margin for <p>, padding for <h> for positive values and margin for <h> for negative values.
*/

h1 {
	font-size: 28px;
	line-height: 40px;
	/*margin-top: -10px;
	padding-bottom: 30px;*/
	/* Baseline correction */
	margin-top: -5px;
	padding-bottom: 25px;
}

p {
	margin: 0;
	padding-bottom: 20px;
}

b, strong {
	font-weight: bold;
}

a:link {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color: #000000;
	text-decoration: underline;
	font-weight: bold;
}

a.subtle,
a:visited.subtle {
	text-decoration: none;
	font-weight: normal;
}

a:hover.subtle {
	text-decoration: underline;
	font-weight: normal;
}

/* ### VARIOUS ### */

.arrow {
	margin-bottom: -2px;
}

/* ### FORM ### */

#langmenu {
	padding-bottom: 20px;
	text-align: right;
}

#langmenu select {
	width: 140px;
	float: right;
	margin-left: 10px;
	text-align: left;
}

#Form_Form {
	background-color: #B3B3B3;
	padding: 14px 12px 8px 12px;
	float: right; /* to keep the submit button on the grey background */
	width: 188px; /* 212 - 12 - 12 */
	margin-bottom: 20px;
}

#Form_Form .submit {
	float: right;
	background: none;
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer;
	font-family: Arial, Helvetica, Verdana, Geneva, sans-serif;
	font-size: 13px;
	line-height: 16px;
	color: #FFFFFF;
	overflow: visible;
	width: auto;
}

#Form_Form .field {
	margin: 0 0 14px 0;
}

#Form_Form .left {
	float: left;
	width: 72px; /* 80 - 8 */
	margin-right: 8px;
	color: #FFFFFF;
}

#Form_Form input.text {
	border: 0;
	background: #FFFFFF;
	font-family: Arial, Helvetica, Verdana, Geneva, sans-serif;
	line-height: 20px;
	padding: 2px 4px 4px 4px;
	margin-top: -6px;
}

#Form_Form input.text {
	width: 100px; /* 108 - 4 - 4 */
	height: 20px;
	font-size: 13px;
}

#Form_Form a:link,
#Form_Form a:visited,
#Form_Form a:hover {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
}
