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:150px; /* 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; */
}

/*if they are links (a): space the links; display as block, float*/
#ajaxmenu a {
   float: left;
    /* display: block; */
    width: 150px;
    height: 75px; /*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: #ffff99; /*link text color*/
    text-decoration: none;
	line-height: 75px;
}

/*over state. */
#ajaxmenu a:hover {
    float: left;
    background: url(images/btn_grey.gif) no-repeat left top; 
		/*same image, but offset down, to reveal different button state*/
    background-position:0% 0px; /*-165*/
    text-decoration: none;
    line-height: 75px;
	color: #77ccff;
}

/*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: 75px;
}






#secondarymenu {
	margin-right: auto;
	margin-left: auto;
	width: 300px; /*width of the menu def: 781px*/
}

/*list styling - links: font, alignment*/
#secondarymenu ul {
    margin:0;
    padding: 0;
	padding-left:10px;
	list-style-type: none;
	list-style: none;
}

/*list item styling*/
#secondarymenu ul li {
 /*display nav list in a row,  not as a list*/
    margin:0;
    padding:0;
	padding-left: 10px;
	color: #000000; /*text color #062E4B*/
	position: relative;
	float: left;
	width:80px; /* width of tabs. */
	display: block;
	text-decoration: none;
	text-align: left;
	font: 12px Arial, Helvetica, sans-serif;
	/* def: font: bold 12px/27px Arial, Helvetica, sans-serif; */
}

/*if they are links (a): space the links; display as block, float*/
#secondarymenu a {
   float: left;
	padding-left:10px;
	padding-top:2px;
	padding-bottom:3px;
	padding-right:5px;
    /* display: block; */
    width: 80px;
    height: 12px; /*def: 27px, same width as nav buttons*/
    margin-right: 1px;
}

/*upstate: if they are links, show background image*/
#secondarymenu a:link, #secondarymenu a:visited {
    float: left;
		/*offset background position on y axis (to show proper one) def: -27px*/
 	color: #000000; /*link text color*/
    text-decoration: none;
	line-height: 12px;
}

/*over state. */
#secondarymenu a:hover {
    float: left;
		/*same image, but offset down, to reveal different button state*/
    text-decoration: none;
    line-height: 12px;
	background-color: #77ccff;
}







/*subbar:*/
/*currnently not used for much.*/
#navsubbar {
    width: 100%;
    background: url(images/tpl_subnavbar_bg.gif) repeat-x;
    height: 25px;
	line-height: 20px;
}

#navsubbar p {
    margin: 0px auto;
    padding: 2px 0;
	text-indent: 20px;
    width: 730px;
    color: #ffffff;
    text-align: left;
}

#navsubbar p a {
    margin: 0px 7px;
    color: #ffffff;
}
/*______________END NAV_______________*/