@charset "utf-8";
/* TOP BAR : Utility bar that sits over the main site. */
/* Copyright is held by the original owner. All rights reserved. */
/* Version: 1.00 */


/*============
QUICK SETTINGS
------------*/
/* bg color */
	#top_bar {	background: #d6ebff url(/images/bg_topbar.gif);	}
/* inner width */
	#top_bar .tb_container {	width:780px;	}
/* name dimensions */
	#top_bar .tb_name a {	width:113px;	height:50px;	}
	
	
	

/* DEFAULT FONT AND SIZE */
#top_bar {
	height:50px;
	line-height:50px;
	color:#000;
	font-size:11px;
	font-family:Arial, Helvetica, sans-serif;
}


/* LINK COLOURS */
#top_bar a {
	text-decoration:none !important;
	text-transform:lowercase;
	font-size:11px;
}
#top_bar a:link {
	color:#003c6e;
	font-size:11px;
}
#top_bar a:visited {
	color:#003c6e;
	font-size:11px;
}
#top_bar a:hover {
	color:#000;
}
#top_bar a:active {
	color:#000;
}



/* CHOOSE THE POSITIONING METHOD */
		/*===================
		ABSOLUTELY POSITIONED
		-------------------*/
		/*
		#top_bar {
			position:absolute;
			top:0em;
			left:0em;
			width:100%;
			z-index:99;
		}
		*/
		
		
		
		/*=====================
		PAGE ELEMENT POSITIONED
		---------------------*/
		/*
		#top_bar {
			margin:0em;
			position:relative;
			z-index:99;
		}
		*/
		
		
		/*===============
		STATIC POSITIONED
		NOTE: make sure of clearance for the header items. Does not work in IE6
		-----------------*/
		#top_bar {
			margin:0em;
			position:fixed;
			_position:absolute;
			top:0px;
			left:0px;
			width:100%;
			z-index:99;
		}


/* COMPANY NAME */
#top_bar .tb_name {
	position:absolute;
	left:0px;
	top:0px;
	margin-top:0px;
	z-index:99;
}


#top_bar .tb_name a {
	background:url(/styles/tb_logo.png);
	display:block;
}

#top_bar .tb_name a span {
	position:absolute;
	left:-9999em;
}


/* CLEAR ALL ITEMS, CAN USE A DIVIDING IMAGE */
#top_bar .tb_clear {
	background:url(/styles/bg_top_bar_shadow.png) left bottom repeat-x;
	_background-image:url(/styles/bg_top_bar_shadow.gif);
	
	clear:both;
	height:10px;
	position:relative;
	top:0px;
}


/* CONTAINER CAN ALSO BE USED FOR FIXED WIDTH SITES */
#top_bar .tb_container {
	margin:0em auto;
	position:relative;
}


/* LINKS POSITION */
#top_bar .tb_links {
	position:relative;
	right:0px;
	text-align:right;
	margin-right: 15px;
}

#top_bar .tb_links ul {
	margin:0em;
	padding:0em;
}

#top_bar .tb_links li {
	list-style-type:none;
	display:inline;
	margin:0em;
	margin-left:1.5em;
}

