/* CSS Document */

/* set up the overall width of the menu div and the margins */
.menu {
	font-family: verdana, arial, sans-serif; 
	width:667px;
	height:29px;
	margin:0 auto; 
	position:relative;
	z-index:1;
}

.menu ul {
	padding:0; margin:0; list-style-type: none; border:0;
}
.menu ul li {
	border-top:#999 1px solid;
	height:26px;
	width:131px;
	background-image:url(/taketora2/images/gradnav.png);
	background-repeat:repeat-x;
	background-position:left 2px;
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	margin-right:2px;
	border-bottom:2px solid #FFF;
}
.menu ul li:hover {
	border-bottom:2px solid #00adef ;
}
.menu ul li a, .menu ul li a:visited {
	text-align:center; 
	text-decoration:none; 
	width:131px; 
	height:26px; 
	color:#3366CC;
	  
	font-size:11px;
}

/* make the dropdown ul invisible */
.menu ul li ul {
	display: none;	
}


/* make the sub menu ul visible and position it beneath the first list item */
.menu ul li:hover ul {
	text-align:center;
	display:block; 
	position:absolute; 
	top:-1px; 
	left:-1px;
}

/* make the sub menu ul li the full width with padding and border. */
.menu ul li:hover ul li {
	text-align:center;
	cursor:hand;
	width:131px;
	height:26px;
	background-image:url(/taketora2/images/gradnav.png); 
	padding:none;
	cursor:default;
}
.menu ul li:hover ul li:hover {
	height:26px;
	color:#3366CC;
	border-bottom:2px solid #00adef;
}

.menu p {
	text-align:center;
	color:#333;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bolder;
	padding-top:6px;
}
div#footer {
	background:#00a650;
	height:20px;
	width:660px;
	padding-top:5px;
	padding-left:8px;
	margin:5px 5px 8px 5px;
}
div#footer p{
	color:#FFFFFF;
	display:inline;
	float:left;
	margin:0;
}

div#horizon {
	float: right;
}
div#horizon p, div#horizon img{
	padding-right:3px;
}
div#horizon a p, div#footer a {
	color:#fff;
	text-decoration:underline;
}

