@charset "UTF-8";
/* CSS menu */


#nav_sub {
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 1% 0 0 0;
	text-align: center;
}  #nav_sub li ul {
	
	display: none;
	
}
     
    /* make the LI display inline */
    /* it's position relative so that position absolute */
    /* can be used in submenu */
    #nav_sub li {
	font-size:1.2em;
	display:block;
	position:relative;
	z-index:500;
	text-align: center;
	
	
    }
         
    /* this is the parent menu */
    #nav_sub li a {
	display: block;
	padding: 5px 0px 0 0px;
	height: 45px;
	text-decoration: none;
	width:100%;
	margin:0;
	
	color: #64CCEF;
    }
 
    #nav_sub li a:hover {
	color: #ffffff;
	background-color: #64CCF1;
    }
     
    /* you can make a different style for default selected value */
    #nav_sub a.selected {
	color: #65CDEF;
    }
     
        /* submenu, it's hidden by default */
        #nav_sub ul {
			position: absolute;
	width:100%;
	display:none;
	text-decoration:none;
	text-align:center;
	background-color: #FFF;
	
	font-size: 12px;
	
        }
         
        #nav_sub ul li {
	width:100%;
	/* border-top:1px solid #fff;*/

        }
         
        /* display block will make the link fill the whole area of LI */
        #nav_sub ul a {
	padding: 15px 0px 8px 0px;
	width: 100%;
	margin: 0 0 0 -40px;
	height: 15px;
	color: #62CEEB;
        }
         
        #nav_sub ul a:hover {
	text-decoration: none;
	background-color: #64CCF1;
        }
