@charset "UTF-8";
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
}

@media only screen and (max-width: 400px) {
}




@media only screen and (max-width: 400px) {
}

a {
    color: #FFF;
    text-decoration: none;
	font-size:18px;
	font-family:"微軟正黑體", "新細明體", "細明體", "Arial Unicode MS"
}

nav {
    display: inline-block;
    vertical-align: top;
    text-align: center;

}
nav ul {
    margin: 0;
    padding: 0;
    background: #333;
	float:right;
}
nav ul li {
    list-style-type: none;
    padding: 15px 20px;
  	float:left;
	margin:0px 5px 0px 0px;
}
nav ul li:hover {
    background: #0CC;
}
nav ul li:hover a {
    color: #FFF;
}


#menu-toggle {
    position: fixed;
    width: 30px;
    height: 30px;
    display: none;
    background: #333;
    text-align: center;
    line-height: 30px;
  
}

@media only screen and (max-width: 480px) {
    nav {
        position: fixed;
    }
    nav > ul {
        display: none;
    }
    #menu-toggle {
        display: block;
    }
    nav:hover > ul {
        display: block;
        margin-top: 30px;
    }
}