/* reset appearance of all elements */
* {
	margin: 0; padding: 0;
	border: 0; outline: 0;
	background: transparent;
	outline: none;
}

/* firefox cosmetics */
html { overflow: -moz-scrollbars-vertical; } /* always show vertical scrollbar */
html { overflow-x: auto; } /* avoid hiding horizontal scrollbar */
:-moz-any-link:focus {outline: none; } /* no outline around focussed links */


/* default font */
body {
	font: 62.5%/1.4 Verdana, Geneva, sans-serif;
	color: #004589;
}

/* default links */
a {
	text-decoration: underline;
	color: #ee7f00;
}
a:hover {
	color: #cc5f0e; /* #74652e; */
}
.button:hover {
	opacity: .50; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=50); /* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
	-khtml-opacity: .50; /* Safari 1.x */
	-moz-opacity: .50; /* FF lt 1.5, Netscape */
}

/* alignment */
.left			{ float: left; display: inline; }
.right			{ float: right; display: inline; }
.imgLeft		{ float: left; display: inline; margin: 0.3em 1.5em 1em 0; }
.imgRight		{ float: right; display: inline; margin: 0.3em 0 1em 1.5em; }
.txtLeft		{ text-align: left; }
.txtRight		{ text-align: right; }
.center			{ text-align: center; }
.valignTop		{ vertical-align: top; }
.valignMiddle	{ vertical-align: middle; }
.valignBottom	{ vertical-align: bottom; }

/* float clearing */
.clear,
.clearBoth,
.clearLeft,
.clearRight {
	clear: both;
	margin: 0; padding: 0;
	height: 0; line-height: 0%; font-size: 0;
	overflow: hidden; visibility: hidden;
}
.clearLeft	{ clear: left; }
.clearRight	{ clear: right; }

/* various */
img			{ display: block; }		
img.border	{ border: 1px solid #015bb4; }
address		{ font-style: normal; }
.noWrap		{ white-space: nowrap; }
.bold		{ font-weight: bold; }
.normal		{ font-weight: normal; }
.caps		{ text-transform: uppercase; }
em, i		{ font-style: italic; }
strong, b	{ font-weight: bold; }
.medium 	{ font-size: 0.9em; }
.small, small	{ font-size: 0.8em; }

.hide, .shy, .br { display: none; }

/* headers */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold; line-height: 1; 
}
h1 { font-size: 2.1em; text-transform: uppercase; margin: 0 0 10px 0; color: #ee7f00; font-weight: normal; }
h2 { font-size: 1.3em; text-transform: uppercase; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.1em; }
h5 { font-size: 1em; }
h6 { font-size: 0.9em; }

h2 a, h3 a, h4 a, h5 a, h6 a { text-decoration: none; }

/* common margins & paddings */
.pa5	{ padding: 5px; }
.pt5	{ padding-top: 5px; }
.pr5	{ padding-right: 5px; }
.pb5	{ padding-bottom: 5px; }
.pl5	{ padding-left: 5px; }

.pa10	{ padding: 10px; }
.pt10	{ padding-top: 10px; }
.pr10	{ padding-right: 10px; }
.pb10	{ padding-bottom: 10px; }
.pl10	{ padding-left: 10px; }

.ma5	{ margin: 5px; }
.mt5	{ margin-top: 5px; }
.mr5	{ margin-right: 5px; }
.mb5	{ margin-bottom: 5px; }
.ml5	{ margin-left: 5px; }

.ma10	{ margin: 10px; }
.mt10	{ margin-top: 10px; }
.mr10	{ margin-right: 10px; }
.mb10	{ margin-bottom: 10px; }
.ml10	{ margin-left: 10px; }

.mam5	{ margin: -5px; }
.mtm5	{ margin-top: -5px; }
.mrm5	{ margin-right: -5px; }
.mbm5	{ margin-bottom: -5px; }
.mlm5	{ margin-left: -5px; }

.mam10	{ margin: -10px; }
.mtm10	{ margin-top: -10px; }
.mrm10	{ margin-right: -10px; }
.mbm10	{ margin-bottom: -10px; }
.mlm10	{ margin-left: -10px; }

/* default bottom-margin for content elements */
p, table, dl, ol, ul {
	margin-bottom: 1em;
}

/* default list positioning  */
ol, ul { margin-left: 30px; }

/* default table styling */
table {
	border-collapse: collapse;
	border: none;
}
th, td {
	padding: 5px 10px 5px 0px;
	vertical-align: top;
	text-align: left;
	font-weight: normal;
}

/* forms */
label { cursor: pointer; }

/* layout */
ul.formfields {
	margin: 0; padding: 0;
	list-style: none;
} 
ul.formfields li {
	clear: left;
}
ul.formfields div.label {
	/* float: left; display: inline; */
	width: 175px;
	margin: 0 0 5px 0;
}
ul.formfields div.input {
	/* float: left; display: inline; */
	margin: 0 0 10px 0;
	width: 203px; height: 21px;
	border: 1px #b0b0b0 solid;
	background: url(/images/input_default.gif) no-repeat 0 0;
}
ul.formfields div.text {
	margin: 0 0 10px 0;
	border: 1px #b0b0b0 solid;
}
ul.formfields div.focus {
	background: url(/images/input_default.gif) no-repeat 0 -21px;
	border: 1px #7495CF solid;
}
ul.formfields div.error {
	float: left; display: inline;
	width: 200px;
	margin: 2px 5px 5px 5px;
}
ul.formfields label {
	padding: 2px 5px 0 0;
	cursor: pointer;
}
/* checkbox / radiobutton */
ul.formfields li.check div.input {
	width: 22px;
}
ul.formfields li.check div.label {
	width: 358px;
}
ul.formfields li.check div.error {
	width: 200px;
}
.check {
	cursor: pointer;
}
/* below (label en input onder elkaar) */
ul.formfields li.below div.input {
	float: none; display: block;
	width: 380px;
}
ul.formfields li.below div.label {
	width: 380px;
}
ul.formfields li.below div.error {
	width: 200px;
}


/* fields */
legend {
	display: none;
}
textarea.textarea, select.select {
	border: 1px solid #015bb4;
}
input.textfield, textarea.textarea, select.select {
	font: 1.2em/1.5 Arial, Helvetica, Sans-serif;
	background: white;
	color: #434343;
	margin: 0 5px 0 0;
}
input.textfield {
	padding: 2px 5px 0;
	width: 193px; height: 19px; 
	line-height: 19px;
	margin: 0;
	background: none;
	border: none !important!;
}
	* html input.textfield {
		padding: 0 5px; /* ie6 */
	}
	* +html input.textfield {
		padding: 0 5px 0; /* ie7 */
	}
	input.textfield {
		padding /*\**/: 0 5px\9 /* ie8 */
	}
textarea {
	padding: 2px 5px 5px;
	resize: none;
}
select.select {
	height: 22px;
}
input:focus,
select:focus,
textarea:focus,
input.focus,
select.focus,
textarea.focus {
	border-color: #388cf1;
}
input.disabled,
select.disabled,
textarea.disabled  {
	background: #ccc;
	border-color: #555;
}
input.error,
select.error,
textarea.error {
	background: #f9e9e9;
	border-color: #ff0000;
}
.button {
	cursor: pointer;
}
.button:hover {
	opacity: .75; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=75); /* IE lt 8 */
	-ms-filter: "alpha(opacity=75)"; /* IE 8 */
	-khtml-opacity: .75; /* Safari 1.x */
	-moz-opacity: .75; /* FF lt 1.5, Netscape */
}
.required {
	font-weight: bold;
	color: #ee7f00;
}
/*
.error {
	color: #ff0000;
}
.error ul {
	margin-left: 10px;
}
.error li {
	list-style: inside square;
}
*/
/*
.hint { 
	display: none;
}
*/
.hint { 
	position: relative;
	top: -10px;
	margin: 0 0 10px 0;
	padding: 5px 5px 8px 27px; 
	width: 171px;
	background: url(/images/alert_s.gif) no-repeat 5px center; 
	color: #BF2717;
	border: 1px #BF2717 dashed;
	border-top: none;
}

.hint2 { 
	position: relative;
	top: -10px;
	margin: 0 0 10px 0;
	padding: 5px 5px 8px 27px; 
	width: 171px;
	background: url(/images/alert_s.gif) no-repeat 5px center; 
	color: #BF2717;
	border: 1px #BF2717 dashed;
}

.good { 
	background: url(/images/accept_s.gif) no-repeat 5px center; 
	color: #357f31;
	border: 1px #357f31 dashed;
	border-top: none;
}
/* widths */
.defaultWidth {
	width: 200px;
}
select.defaultWidth {
	width: 205px;
}
.width1	{ width: 10px; }
.width2 { width: 20px; }
.width3 { width: 28px; }
.width4 { width: 35px; }

