html
{
	background: #ffffff;
	cursor: default;

	/* force vertical scrollbar in Firefox */
	/*overflow: -moz-scrollbars-vertical; -- prevents horizontal scrollbars if necessary */
	/* following see http://www.hicksdesign.co.uk/journal/forcing-scrollbars-now-even-better */
	height: 100%;
	}
html,
input,
select,
textarea
{
	font: 15px/130% Calibri, Univers, Arial, helvetica, sans-serif;
}
body
{
	width: 900px;
	margin: 0 auto;
	padding: 0;
	background: #ffffff;
}

html.popup
{
	background: #ffffff;

	}
html.popup body
{
	width: 100%;
	margin: 0;
	padding: 0;
}

p
{
	margin-top: 0.9em;
	margin-bottom: 0.9em;
}

a
{
	text-decoration: none;
	color: #1050e0;
}
a:visited
{
	color: #0c3baa;
}
a:hover
{
	color: #e05010;
}
a img,
img[usemap]
{
	border: 0;
}
a[rel~="help"]
{
	color: inherit;
	border-bottom: dotted 1px #89aaf7;
	cursor: help;
}
a[rel="help"]:hover,
a[rel~="help"][rel~="external"]:hover
{
	border-bottom: solid 1px #f48964;
}
a[rel~="external"]
{
	background: url(../img/out.png) 100% 30% no-repeat;
	padding-right: 8px;
}
a[rel~="help"][rel~="external"]
{
	background: none;
	padding-right: 0;
}
a.popup
{
	background: url(../img/popup.png) 100% 30% no-repeat;
	padding-right: 11px;
}

#head
{
	margin-top: 10px;
}
#printhead
{
	display: none;
}

#navigation
{
	margin: 15px 0;
}
#navigation table
{
	width: 100%;
}
#navigation td
{
	font-size: 1.15em;
	padding: 0 1.5em 0 0;
}
#navigation td.right-align
{
	font-size: 1em;
	padding: 0 0 0 1.5em;
}
#navigation td.selected
{
}
#navigation a
{
	white-space: nowrap;
	border-bottom: solid 2px #ffffff;
}
#navigation td:hover a
{
}
#navigation td.selected a
{
	color: black;
	border-bottom: solid 2px #808080;
}
#printnavigation
{
	display: none;
}
#noprintnavigation
{
	display: none;
}

.content
{
}

.content_left
{
	float: left;
	width: 650px;
}

.content_right
{
	float: right;
	width: 230px;
}

.two-columns
{
	column-count: 2;
	-moz-column-count: 2;
	-webkit-column-count: 2;

	column-gap: 2em;
	-moz-column-gap: 2em;
	-webkit-column-gap: 2em;
}

.footer
{
	margin-top: 1em;
	background: #ffffff url(../img/bluebar.jpg) no-repeat;
	padding: 10px 0 8px;
	font-size: 0.8em;
	line-height: 1.3em;
}

h1
{
	font-weight: bold;
	font-size: 1.4em;
	line-height: 120%;
}
h2
{
	font-weight: bold;
	font-size: 1.2em;
	line-height: 120%;
}

input[type="text"],
input[type="password"],
textarea
{
	cursor: text;
}
input[type="button"],
input[type="submit"],
input[type="checkbox"],
input[type="radio"],
select,
label
{
	cursor: pointer;
}
input[disabled],
textarea[disabled],
select[disabled],
option[disabled]
{
	cursor: default;
}

table
{
	border-spacing: 0;
}
table th
{
	text-align: left;
	font-weight: normal;
	font-style: italic;
}
table th,
table td
{
	vertical-align: top;
	padding: 0;
}
table.valign td
{
	vertical-align: middle;
}
table.grid
{
	border-collapse: collapse;
}
table.grid th,
table.grid td
{
	border: solid 1px #b3b9e9;
	padding: 0.1em 0.4em;
}
table.grid.tight th,
table.grid.tight td
{
	border: solid 1px #b3b9e9;
	padding: 0 0.2em;
}

table th.center,
table td.center
{
	text-align: center;
}
table th.right,
table td.right
{
	text-align: right;
}

sup
{
	font-size: 0.85em;
	line-height: 0.85em;
	}
sub
{
	font-size: 0.85em;
	line-height: 0.85em;
	}

big
{
	font-size: 1.15em;
}


/* ----- FORMS ----- */

form
{
	display: inline;
}

form div.checkbox
{
	margin-top: 0.6em;
	margin-bottom: 0;
}

input[type="text"],
input[type="password"],
textarea
{
	border: solid 1px #b3b9e9;
	padding: 1px 2px;
}
select
{
	border: solid 1px #b3b9e9;
	padding: 0;
}
input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover,
select:hover
{
	border: solid 1px #6371e5;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus
{
	border: solid 1px #1329e1;
}

input[type="radio"],
input[type="checkbox"]
{
	margin: 0 6px 2px 0;
	vertical-align: middle;
}

input.checkError
{
	background: #FFDDD0;
}

input[type="button"],
input[type="submit"]
{
	border: solid 1px #1329e1;
	background: #c9cdef;
	padding: 0px 2px;
	color: #000000;

	/* IE Button Width fix - http://jehiah.cz/archive/an-even-better-ie-button-width-fix */
	overflow: visible;
	width: auto;
}
input[type="button"]:hover,
input[type="submit"]:hover
{
	background: #b3b9e9;
}
input[type="button"].default,
input[type="submit"].default
{
	font-weight: bold;
}

input[type="text"].inputerror,
input[type="password"].inputerror,
select.inputerror,
textarea.inputerror,
label.inputerror
{
	background: #ffd1cb;
}


