@charset "utf-8";
body  {
	font: 0.9em Tahoma, Arial, sans-serif;
	background: #F5F8F8;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}
p {
	font-size:0.85em;
}
td {
	font-size:0.9em;
}
#outerwrapper {
	width: 900px;	
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999999;
	text-align: left;
} 
#container {
/*	float: left; /* since this element is floated, a width must be given */*/
	width: 100%;  /* using 2px less than a full 900px width */
	background: #FFFFFF url(images/sidebarbkgd.jpg) repeat-y;
	text-align: left;

/*	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */ */
; 			margin: 0px;/*	border: 1px solid #000000; */
} 
#header {
	background: #FFFFFF;
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 80px;
	float: left;
	width: 470px;
	margin: 0px;
} 
#headerimage {
	background: #FFFFFF;
	padding: 0x;  
	height: 80px;
	float: right;
	width: 400px;
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0.5em 0em 0em; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 1.9em;
	color: #000066;
	font-family: Tahoma, Arial, sans-serif;
	font-weight: normal;
}
#header p {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0.3em 0 0em; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 0.7em;
	color: #666666;
	text-align: center;
}
#navbar {
	background-color: #607BBF;
	height: 1.9em;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#sidebar1 {
	float: left;
	width: 160px;
	padding: 30px 10px 15px;
	margin: 0px;
/*  redundant as defined by container background image:	background-color: #C6CEE3; */
}
#sidebar1  h3  {
	font-size: 0.9em;
	color: #333333;
	margin: 0px;
	padding-top: 1.8em;
	padding-bottom: 0.2em;
	font-weight: bold;
}
#sidebar1 h4 {
	font-size: 0.85em;
	color: #333333;
	margin: 0px;
	padding-top: 1.8em;
	padding-bottom: 0em;
	font-weight: bold;
}
#sidebar1  p  {
	font-size: .8em;
	margin-top: .5em;
	margin-bottom: .5em;
}

#sidebar2 {
	float: right; 
	width: 160px; 
/*  background colour is defined by container background image	*/
	background: url(images/gate4.gif) no-repeat right bottom; 
	padding: 30px 10px 15px; 
	margin: 0px;
}
#sidebar2  h3  {
	font-size: 0.9em;
	color: #333333;
	margin: 0px;
	padding-top: 1.8em;
	padding-bottom: 0.2em;
	font-weight: bold;
}
#sidebar2 h4 {
	font-size: 0.85em;
	color: #333333;
	margin: 0px;
	padding-top: 1.8em;
	padding-bottom: 0em;
	font-weight: bold;
}
#sidebar2  p  {
	font-size: 0.75em;
	margin-top: .5em;
	margin-bottom: .5em;
}
#mainContent {
	margin: 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 1.5em 20px 0;
	float: left;
	width: 500px; /* 480 = 900 - 180 - 15 - 15 - 180 - 15 - 15  (was 645 for 1 sidebar)*/
} 
#outerwrapper #container #sidebar1 .vacancy {
	border: 1px solid #FFFFFF;
	text-align: center;
	padding: 5px;
	margin: 5px;
}

#mainContent  h1  {
	font-size: 1.3em;
	color: #000066;
	margin: 0px;
	padding-top: 0.7em;
	padding-bottom: 0.7em;
}
#mainContent  h2  {
	font-size: 1em;
	color: #333333;
	padding-top: 0.8em;
	padding-bottom: 0.2em;
	margin: 0px;
}
#mainContent p {
	font-size: 0.85em;
	color: #000000;
	padding-top: 0.2em;
	padding-bottom: 0.4em;
	margin: 0px;
	text-align: left;
}
#mainContent ul li {
	font-size: 0.85em;
	color: #000000;
	padding-top: 0.2em;
	padding-bottom: 0.4em;
	margin: 0px;
}


#footer {
	width: 890px;
	margin: 0 auto;
	padding: 10px 5px 0;
	background:#F5F8F8;
} 

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.75em;
	color: #999999;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#pdfinfo {
	margin-top: 3em;
	margin-right: 0px;
	margin-bottom: 2em;
	margin-left: 0px;
}
