body {
	font-family:Helvetica, Verdana, Arial, sans-serif;
	font-size:0.8em;
	line-height:1.3em;
	margin:0;		/* always set margin and padding to 0 for body tags to remove space on all browsers */
	padding:0;
	text-align:center;
	background:url(../images/body-bg.jpg) top left repeat-x #014c91;
}


h1 {
	color:#666666;
	font-size:1.5em;
	font-weight:normal;
}

h2 {
	color:#b55400;
	font-size:1.4em;
	font-weight:normal;
}

h3 {
	color:#000000;
	font-size:1.3em;
	font-weight:normal;
}

h4 {
	color:#7f7f7f;
	font-size:1.2em;
	font-weight:normal;
}

h5 {
	color:#248ecc;
	font-size:1.1em;
	font-weight:normal;	
}

h6 {
	color:#0053a0;
	font-size:0.9em;	
	font-weight:normal;
}

a {
	color:#03699d;
	text-decoration:none;
	outline:none;
}

a:hover {
	outline:none;
	text-decoration:underline;
}
td {
	font-size:0.7em;
}

ul {
	list-style-image:url(../images/content-bullet.gif);
}

fieldset {
	width:700px;
	border: 1px solid #999999;
	background-color:#FFFDDD;
}

legend {
	font-size:0.9em;	/* the 'title' of each fieldset in the forms */
	color:#999999;
}


label {
	display:block;
	font-size:0.9em;
	margin:3px 0;
}

label span {
	width:175px;			/* distance between start of label element and the input boxes in the form */
	display:block;
	float:left;
}

label span.required {
	text-decoration:underline;
	font-weight:normal;
	font-size:0.8em;
	display:inline;
	width:auto;
	float:right;
}

input, select, textarea {
	background-color:#efefef;
	border:1px solid #dedede;
}

.clear {
	clear:both;
}

#shadow {
	width:100%;
	background:url(../images/shadow.jpg) top center no-repeat;
}

#container {
	width:769px;
	margin:0 auto;
	background:url(../images/no-flash.jpg) top right no-repeat #ffffff;
}

#flash {
	width:551px;
	height:249px;
	background:url(../images/no-flash.jpg) top left no-repeat;
	position:relative;
	display:block;
	left:50%;
	margin-left:-166px;
	top:145px;
	overflow: hidden;
}

#header {
	width:770px;
	background:url(../images/header.jpg) top left no-repeat;		/* this has the dimensions of the header image, you can have it as the background image or put in the image itself */
	height:200px;
	text-align:left;
}

#right-content {
	float:left;
	width:507px;
	padding:24px 0 0 31px;
	margin:103px 0 0 0;
	text-align:left;
}

#contact-details {
	width:219px;
	padding:22px 33px 0 21px;
	height:139px;
	background:url(../images/bottom-nav.jpg) top left no-repeat;
	color:#ffffff;
	text-align:left;
}
#web-contact-details {
	width:219px;
	padding:22px 33px 0 21px;
	height:289px;
	background:url(../images/bottom-nav2.jpg) top left no-repeat;
	color:#ffffff;
}


/* footer style, this is if the footer is outside the container div, if its inside the area set width to 100% and go for it */
#footer {
	width:734px;
	margin:0 auto;
	padding:0 18px;
	font-size:0.8em;
	line-height:24px;
}

/* every site should have a copyright year and link to Bam. make sure you change the anchor colour for the Bam div */
#client-copyright {
	float:left;
	margin:0;
	padding:0;
	color:#ffffff;
}

#client-copyright a {
	color:#ffffff;
}

#ctl {
	float:right;
	margin:0;
	padding:0;
	color:#ffffff;
}

#ctl a {
	color:#ffffff;
}

#breadcrumb {
	text-align:right;
	width:100%;
	font-size:0.8em;
}

#breadcrumb span.arrow {
	color:#03699d;
	margin:0 5px;
}

#breadcrumb a {
	color:#03699d;
}

/***************************************************

			Navigation Style Start
		
***************************************************/


#nav {
	float:left;			/* float nav to left side of container */
	width:219px;		/* for left menus set the width of the nav container */
	margin:0;
	padding:0;
	font-size:0.9em;

}

#nav ul {
	padding:0;
	margin:0;
	list-style:none;		/* set list style as none to remove bullets */
	list-style-image:none;	/* in custom lists list image may carry across so remove it */
}

#nav ul li {
	list-style:none;
	padding:0;
	margin:0;
	width:219px;			/* for horizontal menus, set the height instead of width */
}

#nav ul li a{
	width:219px;			/* make sure the anchor area extends as big as the list item */
	display:block;
	margin:0;
	padding:0;
}

#nav ul li a span {
	padding:0;
	margin:-9999px 0 0 -9999px;		/* this is a trick for if someone has css turned off, inside the anchor tag, write <span>$page-name</span> if css is off the name will appear as text, if not the css kicks it out of view */
}

#nav ul li#home a {					/* this is for a menu that will need to use sfhover.js for rollovers to work in IE. you can get the code here: http://htmldog.com/articles/suckerfish/hover/ and make a js file */
	height:29px;
	background:url(../images/nav.jpg) 0px 0px no-repeat;
}

#nav ul li#home a:hover {				/* add the sfhover class and the js will do the hax for you */
	background:url(../images/nav.jpg) -219px 0px no-repeat;
}

#nav ul li#about-us a {					/* this is for a menu that will need to use sfhover.js for rollovers to work in IE. you can get the code here: http://htmldog.com/articles/suckerfish/hover/ and make a js file */
	height:29px;
	background:url(../images/nav.jpg) 0px -29px no-repeat;
}

#nav ul li#about-us a:hover {				/* add the sfhover class and the js will do the hax for you */
	background:url(../images/nav.jpg) -219px -29px no-repeat;
}

#nav ul li#TSE a {					/* this is for a menu that will need to use sfhover.js for rollovers to work in IE. you can get the code here: http://htmldog.com/articles/suckerfish/hover/ and make a js file */
	height:29px;
	background:url(../images/nav.jpg) 0px -87px no-repeat;
}

#nav ul li#TSE a:hover {				/* add the sfhover class and the js will do the hax for you */
	background:url(../images/nav.jpg) -219px -87px no-repeat;
}

#nav ul li#webproducts a {					/* this is for a menu that will need to use sfhover.js for rollovers to work in IE. you can get the code here: http://htmldog.com/articles/suckerfish/hover/ and make a js file */
	height:29px;
	background:url(../images/nav.jpg) 0px -58px no-repeat;
}

#nav ul li#webproducts a:hover {				/* add the sfhover class and the js will do the hax for you */
	background:url(../images/nav.jpg) -219px -58px no-repeat;
}

#nav ul li#contact a {					/* this is for a menu that will need to use sfhover.js for rollovers to work in IE. you can get the code here: http://htmldog.com/articles/suckerfish/hover/ and make a js file */
	height:32px;
	position:relative;
	width:229px;
	left:-4px;
	background:url(../images/contact.jpg) 0px 0px no-repeat;
}

#nav ul li#contact a:hover {				/* add the sfhover class and the js will do the hax for you */
	background:url(../images/contact.jpg) -229px 0px no-repeat;
}








#nav ul li#products a {					/* this is for a menu that will need to use sfhover.js for rollovers to work in IE. you can get the code here: http://htmldog.com/articles/suckerfish/hover/ and make a js file */
	height:29px;
	text-align:left;
}

#nav li ul {
	background:#125da0;
}

#nav ul li#products ul li {
}

#nav ul li#products ul li a {
	color:#d2e1ee;
	background-image:none;
	background:url(../images/bullet.gif) center left no-repeat;
	margin-left:21px;
	padding:5px 5px 4px 9px;
	width:auto;
	height:auto; 
	text-decoration:none;
}

#nav ul li#products li a:hover {
	color:#ffff01;
	background-image:none;
	background:url(../images/bullet.gif) center left no-repeat;

}
#nav td {
    font-size:0.9em;
}