@charset "UTF-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #23238E;
	background: #334499;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}


/* Global Styles */
a:link {  color: #334499;
	 text-decoration: none;
	 font-weight:bold }
a:visited {  color: #334499;
	 text-decoration: none;
	 font-weight:bold }
a:hover {  text-decoration: underline;
	color: #000000 }
a:active {  color: #EE7722 }
h1 { color: #334499;
	 font-size: 20px;
	 text-decoration: none;
  	 text-align: center;
	 margin-top: 0px; }
h2 { color: #334499;
	 font-size: 17px;
	 text-decoration: none;
	 margin-bottom: 0px;
	 margin-top: 0px; }
h3 { color: #23238E;
	 font-size: 14px;
	 text-decoration: none;
	 margin-bottom: 0px;
	 margin-top: 0px; }
h4 { color: #23238E;
	 font-size: 12px;
	 margin-bottom: 0px;
	 margin-top: 0px; }
body, tr, th, td, ul, ol, dl, p  { margin-top: 0px;
  	 color: #23238E;
	 font-size: 11px;}
form, input, select, textarea   { margin-top: 0px;
	 font-size: small; }
address { color: #23238E;
	 font-size: 9px; }



.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* 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. */
}
.oneColFixCtrHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColFixCtrHdr #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 */
}


/*--------------------------------------------------+
 | Mouse-Over Drop-Down Navigation                  |
 +--------------------------------------------------*/


/* Fonts
======================================================================*/
#nav, #nav *, .notice, .notice * { font-family: Verdana, Arial, sans-serif; }

/* Content
======================================================================*/

/*--- Navigation ---*/
#nav, #nav * { list-style: none; margin: 0; padding: 0; text-align:left}

#nav a {
	background: #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	border-left: 1px solid #99CCCC;
	border-right: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF;
	color: #000000;
	display: block;
	padding: 1px 5px;
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
	white-space: nowrap;
}

#nav a.menu { background: #FFFFFF url(http://www.absa.org/images/menuarrow.gif) no-repeat 94% 60%; padding-right: 20px; }
#nav li { float: left; position: relative; }
#nav li.current a { background-color: #FFFFFF; border-bottom-color: #FFFFFF; }
#nav li:hover a, #nav li.over a { background-color: #EEEEEE; border-left-color: #445555; border-right-color: #445555; border-top-color: #445555; border-bottom-color: #EEEEEE; color: #000000;  text-decoration:none;}
#nav li:hover a.menu, #nav li.over a.menu { background-image: url(http://www.absa.org/images/menuarrowOn.gif);  text-decoration:none;}

	/* Drop-downs */
	#nav li:hover ul, #nav li.over ul { left: 0; }
	#nav li li { float: none; line-height: 1.4; }
	#nav li li a { background: none; border: 0; color: #000; padding: 3px 5px; white-space: normal; }
	#nav li li a:hover { background: #FFFFFF; text-decoration: underline; }
	
	#nav li ul {
		background: #EEEEEE;
		border-top: 1px solid #445555;
		border-bottom: 1px solid #445555;
		border-left: 1px solid #445555;
		border-right: 1px solid #445555;
		left: -9999em;
		position: absolute;
		top: 19px;
		width: 300px;
	}
	
	/* IE fixes */
	* html #nav li li a { height: 1%; } /* Fix white space bug */
	* + html #nav li li a { height: 1%; } /* Fix white space bug */

