@charset "utf-8";
/* CSS Document */

/* ***************************************	*/
/*											*/
/*				NAVIGATION					*/
/*											*/
/* ***************************************	*/


nav {
  height: auto;		/* Unnecessary? */
  width: 88%;
  margin-left: 6%;
  padding-top: 0px;
  margin-bottom: 20px;
  overflow: hidden;				/* To chop off extra bit of ul#nav */
}

nav ul {
  padding-left: 0px;
  overflow: hidden;		/* Needed because of the "Formula B" -> "FB" CSS bodge breaks the height */
  width: 100%;		/* Unnecessary? */
}

nav ul, nav ul li {
  list-style-type:none;
  margin:0;
  padding:0
}

nav ul li {
  float: left;
  width: 19%;
  padding: 5px 0px;	
    margin-bottom: 10px;	/* Picked up from old ugly responsive stuff */
  margin-right: 1%;
  text-align: center;
  background: #2c8bfc;		/* 2006 revamp */
}



nav ul li.last {
  margin-right: 0px;
}

nav ul a {
  font-size: 12px;
  font-weight: bold;
  display: block;
  padding: 0px 0 0px 0;
  text-decoration: none;
  background: #2c8bfc;			/* 2006 revamp */
}
nav ul li.last a,
ul#nav li.last a {
  border-right: none;
}



nav li a,
#nav li a { 	color: white; }
nav a:hover,
#nav a:hover {	color: white; }


/* Specific tablet design of navigation: 10 items each getting 10% of space */

nav ul li {
  width: 9.5%;
  margin-right: 0.7%;
}
nav ul li#navF1			{ width:  8.0%; }
nav ul li#navF2			{ width:  8.0%; }
nav ul li#navF3			{ width:  8.0%; }
nav ul li#navF5000		{ width:  8.7%; }
nav ul li#navIndy		{ width:  8.2%; }
nav ul li#navCanAm		{ width:  9.3%; }
nav ul li#navTasman		{ width: 10.3%; }
nav ul li#navAtlantics	{ width: 10.3%; }
nav ul li#navFB 		{ width: 11.4%; }
nav ul li#navWATN		{ width: 10.3%; }

nav ul li a {
  font-size: 12px;		/* 12 px makes it fit - just */
}


/* ***************************************	*/
/*		ADD CSS ROUNDED CORNERS				*/
/* ***************************************	*/

nav li,
ul#nav li {
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  -moz-border-radius-bottomleft: 8px;
  -moz-border-radius-topright: 8px;
}

