org
/*__________________________________*/
/* Navigation: */

/*third level of navbar links*/
/*positions the links centered on page, but still in list format*/
#ajaxmenu {
	margin-right: auto;
	margin-left: auto;
	width: 960px; /*width of the menu def: 781px*/

}

/*list styling - links: font, alignment*/
#ajaxmenu ul {
    margin:0;
    padding: 0;
	list-style-type: none;
	list-style: none;

}

/*list item styling*/
#ajaxmenu ul li {
 /*display nav list in a row,  not as a list*/
    margin:0;
    padding:0;
	color: #FFFFFF; /*text color #062E4B*/
	position: relative;
	float: left;
	width:160px; /* width of tabs. */
	display: block;
	text-decoration: none;
	text-align: center;
	font: bold 14px Arial, Helvetica, sans-serif;
	/* def: font: bold 12px/27px Arial, Helvetica, sans-serif; */
			background-color: #FFFFFF;
			border: solid;
			border-width: 1px;
			border-color: #333333;
			border-width: 0px;
			border-top-width: 2px;
			border-bottom-width: 3px;
		}

/*if they are links (a): space the links; display as block, float*/
#ajaxmenu a {
   float: left;
    /* display: block; */
    width: 160px;
    height: 50px; /*def: 27px, same width as nav buttons*/
    margin-right: 1px;
}

/*upstate: if they are links, show background image*/
#ajaxmenu a:link, #ajaxmenu a:visited {
    float: left;
    background: url(images/btn_grey.gif) no-repeat left top;
    background-position:0% -76px; 
		/*offset background position on y axis (to show proper one) def: -27px*/
 	color: #000000; /*link text color*/
    text-decoration: none;
	line-height: 50px;
}

/*over state. */
#ajaxmenu a:hover {
    float: left;
    background: url(images/btn_grey.gif) no-repeat left top; 
	background-color: #04376c; /*333333*/
		/*same image, but offset down, to reveal different button state*/
    background-position:0% 0px; /*-165*/

    text-decoration: none;
    line-height: 50px;
	color: #ffffff;
}

/*current tab -- the currently selected tab*/
#ajaxmenu ul li a#currentTab {
    float: left;
    background: url(images/btn_grey.gif) no-repeat left top; /*same button*/
    background-position:0% 0px; /*different position*/
    color: #FFFFFF;
    text-decoration: none;
    line-height: 50px;
}





/*______________END NAV_______________*/