@charset "utf-8";

body {
	background-color: white;
	background-image: url(images/bodyShadow.jpg);
	background-repeat: repeat-y;
	background-attachment: fixed;
	background-position: center;
	font-size: 62.5%;
	margin: 0;
	padding: 0;
	/*behavior:url(../cssHoverFix.htc);*/
	behavior:url(http://www.banding.co.za/cssHoverFix.htc);
	/*Without this the navList dropdowns won't work in IE6. Thanks to Devin Olson for this script!*/
}
body * {
	font-size: 100%;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
p {
	margin-bottom: 1.1em;
	margin-top: 0;
}
a:link img, a:visited img {
	border: none;
}
img{
	text-align: center;
	display: block;
	position: relative;
	/*background-color: #e6e6e6;*/
	margin: 0 auto;
	/*border: 1px solid #999999;*/
	padding: 4px;
}
sup{
	font-size:9px;
}

/*++++++++++++++++++++++++++++++*/
/*<table styles>*/
table{
   border: 1px solid Red ;
   font-size: 10pt;
   border-collapse: collapse;
	width: 430px;
	margin: 0 auto 20px;
}
caption{
	background-color: #1f59a2;
   font-size: 120%;
   line-height: 20px;
	font-weight: bold;
	padding: 10px;
	color: black;
	border: 1px solid Red ;
	border-bottom: 0px;
	background-color: #fff;
	background-attachment: scroll;
	background-image: url(images/navBg.jpg);
	background-position: left top;
	background-repeat: repeat-x;
	white-space: nowrap;
}
tbody{
	background: #E8E9EB;
}
td{
   padding: 5px;
   border: 1px solid Red ;
}
th{
   text-align: center;
	background: #1f59a2;
   color: White;
   padding: 5px;
   border: 1px solid Red ;
}
/*</table styles>*/
/*start navigation menu*/
/*++++++++++++++++++++++++++++++*/
#nav{
	width: 490px;
	margin-left: 197px;
	margin-top: 6px;
	display: inline;
	padding-top: 0px;
	height: 48px;
	float: left;
	margin-bottom: 0px;
	background-color: #fff;
	background-attachment: scroll;
	background-image: url(images/navBg.jpg);
	background-position: left top;
	background-repeat: repeat-x;
	border: 1px solid #1e59a2;
	text-align: center;
	-moz-border-radius: 6px; /* Firefox */
	-webkit-border-radius: 6px; /* Safari and Chrome */
	border-radius: 6px; /* Opera 10.5+, future browsers, and now also Internet Explorer 6+ using IE-CSS3 */
	-moz-box-shadow: 1px 1px 5px #000; /* Firefox */
	-webkit-box-shadow: 1px 1px 5px #000; /* Safari and Chrome */
	box-shadow: 1px 1px 5px #000; /* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */
	behavior: url(../ie-css3.htc); /* This lets IE know to call the script on all elements which get the 'box' class *//* This lets IE know to call the script on all elements which get the 'box' class */
	z-index: 200; /*without this the #nav menu bar div remains below the #main div*/
	z-index: 200; /*without this the #nav menu bar div remains below the #main div*/
}


#navList{
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 17px;
	height: 15px;
}
#navList ul, ul a{
	/*top level menu*/
	display: inline;
	float: left;
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
	white-space: nowrap;
	text-decoration: none;
	color: #1f59a2;
}
#navList ul a{
	/*top level menu link appearance*/
	margin-left:20px;
	font-weight: bold;
}
#navList ul a:hover{
	/*top level menu link appearance on hover*/
	color: red;
	background-attachment: scroll;
	background-image: url(images/navBg.jpg);
	background-position: left top;
	background-repeat: repeat-x;
}
#navList ul li{
	/*top level menu individual list item*/
	display: inline;
	float: left;
	list-style: none;
	height: 30px;
	position: relative;
	width: auto;
	z-index: 300; /*without this the #navlist div remains below the #nav div*/
}
#navList ul li a{
	/*top level menu individual list item link*/
	
}
#navList ul li a:hover{
	/*top level menu individual list item link appearance on hover*/
	
}
#navList ul li ul{
	/*submenu*/
	float: right;
	position: absolute;
	left: 0px;
	top: 20px;
	margin-top: -4px; /*This determines how close the navList dropdowns are vertically to the main menu*/
	border: 1px solid white;
	height: auto;
	padding-top: 8px;
	padding-left: 9px;
	display: none;
	visibility: hidden;
	/*The next 2 items are needed to ensure the background spans the width of the text*/
	float:right;
	clear: both;/**/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 110%;
}
#navList li:hover ul{
	/*this makes the submenu visible*/
/*The next 2 items relate to navList ul li ul - enabling it to be visible and are needed to ensure the background spans the width of the text*/
	display: block;
	visibility: visible;
}
#navList li ul{
	/*this determines submenu background, width etc*/
	margin-left: 15px; /*this aligns the submenu to the left edge of the top level menu items*/
	/*background-color: #cccccc; *//*Background colour of submenu*/
	/*border: 1px solid #1e59a2;*/
	background-image: url(images/transparency.png);
	background-repeat: repeat;
	background-attachment: fixed;
	/*background: rgba(204, 204, 204, 0.5);*//*Firefox Transparency*/
}

#navList li li{
	list-style: none;
	display: list-item;
	clear: both; /*Without this the cssHoverFix.htc will enable the navList dropdowns, but they'll all be in a line in IE6*/
	margin-bottom: -5px; /*controls space between list items*/
}
#navList ul li ul li{
	/*submenu individual list item*/
	margin-left: 0px;
	text-align: left;
	padding-right: 9px; /*controls space on right of list item*/
	
}
#navList ul li ul li a{
	/*submenu individual list item link*/
	margin-left: 0px;
	border: 1px solid #cccccc;
	width: 205px;
	padding: 3px;
	background-image: url(images/transparencyListItem.png);
	background-repeat: repeat;
	background-attachment: fixed;
	float: left; /*without this the .mainText list float: none; interferes - do not remove*/
}
#navList ul li ul li.lastnode{
	padding-bottom: 15px;
	margin-bottom: -15px;
}
#navList ul li ul li a:hover{
	/*submenu individual list item link appearance on hover*/
	margin-left: 0px;
	text-align: left;
	background-color: white;
	text-decoration: none;
	color: black;
	background-attachment: scroll;
	background-image: url(images/navBg.jpg);
	background-position: left center;
	background-repeat: repeat-x; /*This determines the background of the text not the surrounding box*/
	border: 1px solid white;
}
/*/end navigation menu*/
/*++++++++++++++++++++++++++++++*/
#main{
	margin: 0 auto;
	width: 879px;
	background-image: none;
	background-color: white;
}
html > body #nav {
	height: auto;
	min-height: 47px;
}
#header {
	margin-left: 0px;
	margin-top: 6px;
	background-image: url(images/header.jpg);
	overflow: hidden;
	display: inline;
	float: left;
	height: 437px;
	margin-bottom: -2px;
	width: 879px;
}
#envelope {
	margin-left: 0px;
	margin-top: 0px;
	display: inline;
	float: left;
	margin-bottom: 0;
	width: 879px;
	background-image: url(images/mainContentMiddle.jpg);
	background-repeat: repeat;
}
#envelope_top {
	margin-left: 0px;
	margin-top: 0px;
	background-image: url(images/ContentTop.jpg);
	overflow: hidden;
	display: inline;
	float: left;
	height: 47px;
	margin-bottom: 0;
	width: 879px;
}
/*+++++++++++++++++++++++++++*/
/*mainText Styles*/
.mainText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 160%;
	text-align: left;
	color: #000;
	line-height: 130%;
	padding-bottom: 2px;
	padding-top: 1px;
	/*margin-left: 56px;*/
	margin-left: 53px;
	margin-top: 11px;
	display: inline;
	float: left;
	margin-bottom: 0;
	width: 437px;
}
.mainText p {
	margin-bottom: 1em;
	margin-left: 2%;
	white-space: normal;
}
.mainText H1,.mainText H2,.mainText H3,.mainText H4{
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #1f59a2;
	color: #d1e1ef;
	margin-top: 1%;
	padding: 10px;
	border: 1px solid #66ccff;
	line-height: 25px;
	white-space: normal;
}
.mainText H1{
	font-size: 150%;
}
.mainText H2{
	font-size: 140%;
}
.mainText H3{
	font-size: 130%;
}
.mainText H4{
	font-size: 120%;
}

.mainText H1 a,.mainText H2 a,.mainText H3 a,.mainText H4 a{
	color: #d1e1ef;
}

.mainText a, a:visited{
	color: #1f59a2;
	border-bottom: 2px dotted #66ccff;
}
.mainText a:hover{
	color: red;
	text-decoration: none;
	border-bottom: 2px dotted red;
}
.mainText a, a:visited{
	color: #1f59a2;
}
.mainText a:hover{
	color: red;
	text-decoration: none;
}
.mainText li{
	line-height: 25px;
	list-style: circle;
}
.mainText li ul li{
	font-weight: normal;
	color: #1f59a2;
}
.mainText li a{
	font-weight: normal;
	white-space: normal;
}
.mainText li a, a:visited, a:link{
	float: none;/*important to clear float so list displays properly*/
}
p.mainBoxOut{
	font-weight: bold;
	background-color: #1f59a2;
	color: #d1e1ef;
	font-weight: bold;
	padding: 3%;
	font-style: italic;
	border: 1px solid #3399ff;
	font-size: 110%;
	line-height: 120%;
	margin-left: 0%;
}
p.mainFloatBoxOut {
	float: right;
	background-color: #1f59a2;
	color: #d1e1ef;
	padding: 3%;
	font-style: italic;
	font-weight: bold;
	line-height: 120%;
	float: right;
	width: 40%;
	border: 1px solid #3399ff;
}
/*/mainText Styles*/
/*+++++++++++++++++++++++++++*/
/*sideText Styles*/
p.breadcrumbs {
	background-color: #cad7e8;
	font-size: 8pt;
   color: #434B4D;
	padding: 5px;
	margin-left: 0%;
	margin-right: 0%;
}
p.breadcrumbs a:hover{
   color: red;
	text-decoration: none;
}
.sideText {
	font-family: Verdana,Arial, Helvetica, sans-serif;
	font-size: 130%;
	text-align: left;
	color: #000;
	line-height: 120%;
	padding-bottom: 2px;
	padding-top: 1px;
	margin-right: 34px;
	margin-top: 7px;
	display: inline;
	float: right;
	margin-bottom: 0;
	width: 269px;
}
.sideText p {
	margin-bottom: 1em;
	margin-left: 5%;
	margin-right: 5%;
}
.sideText H1,.sideText H2,.sideText H3,.sideText H4{
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #666666;
	color: white;
	margin-top: 1%;
	padding: 10px; /* in pixels (not%) or IE6 makes a massive space around it*/
	border: 1px solid  #818181;
	line-height: 20px;
	text-align: center;
	white-space: normal;
}
.sideText H1 {
	font-size: 150%;
}
.sideText H2{
	font-size: 140%;
}
.sideText H3{
	font-size: 130%;
}
.sideText H4{
	font-size: 120%;
}
.sideText a, a:visited{
	color: #1f59a2;
	text-decoration: none;
	border-bottom: 1px dotted #66ccff;
}
.sideText a:hover{
	color: red;
	text-decoration: none;
	border-bottom: 1px dotted red;
}
.sideText a, a:visited{
	color: #1f59a2;
}
.sideText a:hover{
	color: red;
	text-decoration: none;
}
.sideText li{
	line-height: 15px;
	list-style: circle;
}
.sideText li a, a:visited, a:link{
	float: none;/*important to clear float so list displays properly*/
}

.sideText li ul li{
	font-weight: normal;
	color: #1f59a2;
}
.sideText li a{
	font-weight: normal;
	white-space: normal;
}
p.sideBoxOut{
	/*background-image: url(images/sideBoxOut.jpg);
	background-position: top;
	background-repeat: no-repeat;*/
	font-style: italic;
	border: 1px solid #1e59a2;
	line-height: 120%;
	margin-left: 0%;
	margin-right: 0%;
	padding: 10px; /* in pixels (not%) or IE6 makes a massive space around it*/
}
/*/sideText Styles*/
/*+++++++++++++++++++++++++++*/
#envelope_bottom {
	margin-left: 0px;
	margin-top: 0px;
	background-image: url(images/ContentBottom.jpg);
	overflow: hidden;
	display: inline;
	float: left;
	height: 26px;
	margin-bottom: -1px;
	width: 879px;
}
#footer {
	margin-left: 0px;
	margin-top: 0px;
	background-image: url(images/footer.jpg);
	overflow: hidden;
	display: inline;
	float: left;
	height: 61px;
	margin-bottom: -2px;
	width: 879px;
	text-align: center;
}
#footerText{
	margin-top: 20px;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}


/*non div  or element specific styles*/
.headingEmphasis{
	color: white;
}
.headingEmphasisYellow{
	color: orange;
}
div.clearFloat {
	clear: both;
	font-size: 0;
	height: 0;
	line-height: 0px;
}
li.clearFloat {
	clear: both;
}
.floatRight{
	float: right;
}
.floatLeft{
	float: left;
}

.imgCaption{
	font-size: 80%;
	margin-top: -15px;
	color: #e6320d;
	font-weight: bold;
	text-align: center;
}

.noWrap{
	white-space:nowrap;
}

.emphasisHeader{
	background-color: #1f59a2;font-family: 'Droid Sans', Arial, Helvetica, sans-serif;	
	font-weight: bold;
	color: white;
	padding: 10px;
	border:#FFF solid 1px;
}
.emphasisHeader a{
	color: white;
}


