@charset "iso-8859-1";
/* CSS Document */

/* Set's border, padding and margin to 0 for all values */
{
	padding: 0;
	margin: 0;
	border: 0;
}

body, html
{
	text-align: center; /* Centers the design in old IE versions */
	height: 100%;
}

body
{
	background: #fff url(/images/interface/bg_10_x_300.png) repeat-x scroll left top;
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-family: 'Lucida sans', Arial, Verdana;
}

.clear
{
	clear: both;
}

p
{
	color: #404040;
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	font-weight: normal;
	font-family: 'Lucida sans', Arial, Verdana;
	line-height: 1.6em;
}

h1
{
	color: #1c476a;
	font-size: 25px;
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-family: 'Myriad Pro', Lucida Sans Unicode, Arial, Verdana;
	padding-bottom: 10px;
}

h2
{
	color: #727272;
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-family: 'Myriad Pro', Lucida Sans Unicode, Arial, Verdana;
	padding-top: 5px;
	padding-bottom: 10px;
}

	h2 b
	{
		font-weight: normal;
		color: #006d7f;
	}

h3
{
	color: #727272;
	font-size: 13px;
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	font-weight: bold;
	font-family: 'Lucida sans', Arial, Verdana;
}

hr
{
	border: 0;
	color: #ddd;
	background-color: #ddd;
	height: 1px;
	width: 100%;
}

a:link,
a:visited
{
	color: #006d7f;
	text-decoration: none;
}

a:hover,
a:active
{
	color: #006d7f;
	text-decoration: underline;
}

.linkWhite a:link,
.linkWhite a:visited
{
	color: #fff;
	text-decoration: none;
}

.linkWhite a:hover,
.linkWhite a:active
{
	color: #fff;
	text-decoration: underline;
}

.linkArrow
{  
	background: url(/images/bullets/arrow_grey_9_x_9.gif) no-repeat left 3px; 
	padding: 0 0 10px 13px;
	width: auto; 
	height: auto; 
}

.text-small
{
	font-size: 11px;
}

.text-copy
{
	color: #86888d;
}

.text-required
{
	color: #990000;
}

.text-label
{
	color: #333;
	font-weight: bold;
	font-size: 11px;
}

ul
{
	color: #404040;
	margin: 0;
	padding: 0;
	list-style: none;
}

li
{
	margin: 0;
	line-height: 1.8em;
	background: url(/images/bullets/arrow_grey_9_x_9.gif) no-repeat left 7px;
	padding: 0px 0px 0px 14px;
}
/******************
 * Main Container *
 ******************/
#mainContainer
{
	width: 980px;
	margin: 0 auto; /* Centers the design */
	min-height: 100%;
	text-align: left; /* Because we centered the text in body we have to move the text back to left aligning */
}

* html #mainContainer
{
	height: 100%;  /* IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height */
}

/**********
 * Header *
 **********/
#header
{
	height: 175px;
}

#header #logo
{
	width: 270px;
	height: 100px;
	float: left;
	margin-top: 15px;
}

#header #navigation
{
	width: 600px;
	height: 37px;
	float: left;
	margin: 0;
	padding: 0;
	margin-top: 57px;
	background: #113853 url(/images/interface/bg_600_x_37.gif) no-repeat;
}

#header #navigation ul
{
	display: inline;
	margin: 0;
	padding: 0;
	margin-left: 30px;
}

#header #navigation li
{
	background: none;
	display: inline;
	line-height: 37px;
	padding: 0;
	padding-right: 15px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#header #navigation li a
{
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

#header #navigation li a:hover
{
	text-decoration: underline;
}

/***********************
 * Content and Columns *
 ***********************/
.outer
{
	padding-left: 230px;  
}

* html .outer
{
/* No need for hacking IE on this layout */
}

.inner
{
	width: 550px; /* This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large */
	/*margin-top: 30px;*/
	padding-bottom: 50px;
}

* html .inner
{
	width: 100%;
}

/*
div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
*/
.float-wrap
{
	float: left;
	width: 980px;
	margin-left: -230px; /* Same length as .outer padding-left but with negative value */
}

* html .float-wrap
{
/* No need for hacking IE on this layout */
}

#content
{
	float: right;
	width: 750px;
}

* html #content
{
	position: relative;  /* IE needs this  */
}

.contentWrap
{
	padding-left: 10px;
	padding-bottom: 30px;
}

/***************
 * Left Column *
 ***************/
/*
div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
*/
#left
{
	float: left;
	width: 230px;
}

* html #left
{
	position: relative;  /* IE needs this  */
}

/**********
 * Footer *
 **********/
#footer
{
	width: 980px;
	height: 50px; /* The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden */
	margin: 0 auto;
	margin-top: -50px; /* By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. */
}

#footer p 
{
	color: #363636;
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}

#footer a
{
	color: gray;
	text-decoration: none;
}

#footer a:hover
{
	color: gray;
	text-decoration: underline;
}

#footerLeft
{
	float: left;
	text-align: left;
}

#footerRight
{
	float: right;
	text-align: left;
}

/*******
 * Box *
 *******/
.boxSmallTop
{
	width: 230px;
	height: 40px;
	background: #f6f6f6 url(/images/box/box_top_230_x_41.gif) no-repeat;
}

	.boxSmallTop h2
	{
		padding: 9px 0 0 10px;
	}

.boxSmallMiddle
{
	width: 218px;
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	padding: 5px;
	padding-bottom: 0;
}

.boxSmallBottom
{
	width: 230px;
	height: 11px;
	background: url(/images/box/box_bottom_230_x_11.gif) no-repeat;
}

.boxMidTop
{
	width: 370px;
	height: 40px;
	background: #f6f6f6 url(/images/box/box_top_370_x_41.gif) no-repeat;
}

	.boxMidTop h2
	{
		padding: 9px 0 0 10px;
	}

.boxMidMiddle
{
	width: 358px;
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	padding: 5px;
	padding-bottom: 0;
}

	.boxMidMiddle p
	{
		line-height: normal;
	}

.boxMidBottom
{
	width: 370px;
	height: 11px;
	background: url(/images/box/box_bottom_370_x_11.gif) no-repeat;
}

.boxMedTop
{
	width: 320px;
	height: 40px;
	background: #f6f6f6 url(/images/box/box_top_320_x_41.gif) no-repeat;
}

	.boxMedTop h2
	{
		padding: 9px 0 0 10px;
	}

.boxMedMiddle
{
	width: 308px;
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	padding: 5px;
	padding-bottom: 0;
}

	.boxMedMiddle p
	{
		line-height: normal;
	}

.boxMedBottom
{
	width: 320px;
	height: 11px;
	background: url(/images/box/box_bottom_320_x_11.gif) no-repeat;
}

.boxBigTop
{
	width: 740px;
	height: 43px;
	background: #f6f6f6 url(/images/box/box_top_740_x_43.gif) no-repeat;
}

	.boxBigTop h2
	{
		padding: 9px 0 0 10px;
		float: left;
	}

.boxBigMiddle
{
	width: 718px;
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	padding: 10px;
	padding-bottom: 5px;
}

.boxBigBottom
{
	width: 740px;
	height: 10px;
	background: url(/images/box/box_bottom_740_x_10.gif) no-repeat;
}

/*************
 * Help Link *
 *************/
.help
{
	height: 30px;
	float: right;
	padding: 12px 10px 0px 0;
	color: #043E72;
	font-size: 13px;
	font-weight: normal;
}

.help a:link,
.help a:visited
{
	text-decoration: none;
	background: url(/images/bullets/arrow_help_norm_20_x_20.gif) no-repeat top right;
	padding-right: 25px;
	padding-top: 2px;
	padding-bottom: 5px;
}

.help a:hover
{
	text-decoration: underline;
	background: url(/images/bullets/arrow_help_over_20_x_20.gif) no-repeat top right;
	padding-right: 25px;
	padding-top: 2px;
	padding-bottom: 5px;
}

/*******************
 * Job Description *
 *******************/
.jobDescription,
.jobDescription p,
.jobDescription li
{
	color: #404040;
}

.jobDescription ul
{
	margin: 0;
	margin-left: 30px;
	margin-bottom: 10px;
	padding: 0;
	list-style: square;
}

.jobDescription li
{
	margin: 0;
	background: none;
	padding: 0;
}

/********
 * Form *
 ********/
form
{
	margin: 0;
	font-size: 12px;
	color: #44555e;
}

fieldset
{
	border: none;
	margin: 0;
	padding: 0;
}

label
{
	font-size: 12px;
	color: #44555e;
}

select,
textarea
{
	font-family: 'Lucida sans', Arial, Verdana;
	font-size: 12px;
	width: 100%;
}

textarea
{
	width: 97%;
}

select option.bold
{
	font-weight: bold;
}

input[type=text],
input[type=password],
input[type=file]
{
	font-family: 'Lucida sans', Arial, Verdana;
	font-size: 12px;
	width: 97%;
}

input[type=password]
{
	font-family: Arial, Helvetica, sans-serif;
}

select option[disabled]
{
	background-color: #18415e;
}

.btnBlue
{
	width: 84px;
	height: 23px;
	background: url(/images/buttons/btn_blue_84_x_23.gif) no-repeat;
	cursor: pointer;
}

.btnText
{
	width: 70px;
	line-height: 23px;
	color: #fff;
	cursor: pointer;
}

button
{ 
	position: relative;
	border: 0; 
	padding: 0;
	cursor: pointer;
	overflow: visible; /* removes extra side padding in IE */
}

button::-moz-focus-inner
{
	border: none;  /* overrides extra padding in Firefox */
}

button span
{ 
	position: relative;
	display: block; 
	white-space: nowrap;	
}

@media screen and (-webkit-min-device-pixel-ratio:0)
{
	/* Safari and Google Chrome only - fix margins */
	button span
	{
		margin-top: -1px;
	}
}

button.menu
{ 
	padding: 0 29px 0 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-align: center; 
	background: transparent url(/images/buttons/bg_500_x_55.png) no-repeat right -32px;
	height: 25px;
	width: 100%;
}
	
button.menu span
{
	padding: 4px 0px 0 10px;
	height: 25px;
	background: transparent url(/images/buttons/bg_500_x_55.png) no-repeat left top;
	color: #fff; 
}

/**************
 Form - Sign in
 **************/
#form-1 fieldset
{
	margin-left: 68px;
}

#form-1 .formFrame
{
	background: transparent url(/images/icons/lock_46_x_58.gif) no-repeat scroll 0 0;
	background-position: 3% 20%;
}

#form-1 input[type=text],
#form-1 input[type=password]
{
	width: 93%;
}

/***************
 Form - Register
 ***************/
#form-2 label
{
	font-weight: bold;
}

#form-2 select
{
	width: 98%;
}

#form-2 label.error
{
  background: url(/images/icons/message_error_16_x_16.png) no-repeat scroll 0 0;
  padding-left: 20px;
  padding-bottom: 2px;
  font-weight: normal;
  color: #a8453d;
}

#form-2 label.checked
{
  background: url(/images/icons/message_accept_16_x_16.png) no-repeat scroll 0 0;
}


/**********************
 Form - Job Application
 **********************/
#form-4 .toolbarBottom
{
	background-image: url(/images/interface/bg_555_x_40.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	height: 40px;
	overflow: hidden;
}

#form-4 .spellCheck
{
	background: transparent url(/images/buttons/btn_spell_check_99_x_25.gif) no-repeat scroll 0 0;
	border: 0px none;
	margin: 0;
	padding: 0px;
	width: 99px;
	height: 25px;
	cursor: pointer;
}

/***************
 Form validation
 ***************/
#error-1
{
	background: #ffe9e5 url(/images/icons/message_error_32_x_32.png) no-repeat scroll 15px 7px;
	border-top: 1px #f89c83 solid;
	border-bottom: 1px #f89c83 solid;
	padding: 10px;
	padding-left: 58px;
	margin-bottom: 20px;
	text-align: left;
}

#info-1
{
	background: #e9fad0 url(/images/icons/message_info_32_x_32.png) no-repeat scroll 15px 7px;
	border-top: 1px #aee756 solid;
	border-bottom: 1px #aee756 solid;
	padding: 10px;
	padding-left: 58px;
	margin-bottom: 20px;
	text-align: left;
}

#error-1 ul,
#info-1 ul
{
	margin: 0;
	padding: 0;
}

#error-1 li,
#info-1 li
{
	background: none;
	padding: 0;
	margin: 0;
}

#myCounter
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}

/************
 Form results
 ************/
.listSummary
{
	background: #c9caca url(/images/interface/bg_5_x_25.gif) repeat-x top left;
	border-left: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	min-height: 25px;
}

.listSummaryWrap
{
	line-height: 30px;
	padding-left: 10px;
	padding-right: 10px;
}

.listResultItem
{
	padding-top: 15px;
	padding-bottom: 15px;
}

.listSeperator
{
	background: #fff url(/images/interface/bg_3_x_1.gif) repeat-x top left;
	height: 1px;
}

/**********
 Pagination
 **********/
.paging ul
{
	margin: 0;
	padding: 0;
	display: inline;
}

.pagingWrap
{
	padding-left: 10px;
	padding-right: 10px;
}

.paging li
{
	display: inline;
	background: none;
	padding: 0;
	margin: 0;
}

.selected
{
	color: #86888d;
}

/********
 Site Map
 ********/
#sitemap, #sitemap ul, #sitemap li
{
	margin: 0;
	padding: 0;
	list-style: none;
}

#sitemap{}
#sitemap ul
{
	display:none;
}

#sitemap li
{
	line-height: 200%;
	margin-top: 1px;
	background: #eee;
	position: relative;
	width: 100%;
}

/* IE leaves a blank space where span is added so this is to avoid that */
* html #sitemap li
{
	float: left;
	display: inline;
}

#sitemap li a
{
	padding-left:28px;
}

#sitemap li span
{
	float: left;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 13px;
	height: 13px;
	cursor: auto;
	font-size: 0;
}

#sitemap li span,
#sitemap li span.collapsed
{
	background: url('/images/sitemap/collapsed_13_x_13.gif') no-repeat 0 0;
	cursor: pointer;
}
 
#sitemap li span.expanded
{
	background: url('/images/sitemap/expanded_13_x_13.gif') no-repeat 0 0;
	cursor: pointer;
}

/* second level */
#sitemap li li
{
	background: #fff;
}

#sitemap li li a
{
	padding-left: 56px;
}

#sitemap li li span
{
	left: 28px;
}

/* third level */
#sitemap li li li a
{
	padding-left: 84px;
}

#sitemap li li li span
{
	left: 56px;
}



