@CHARSET "UTF-8";
		body{background:#F5F7FA; }
        #menu {
            position: fixed;
            top:0;
            background-color:#66ccff;
            width: 100%;
            height: 60px;
            padding:0;
           
            margin:0;
            margin-bottom:10px;
        }
 
        #menu .logo {
            color: #0c0c01;
            display: inline-block;
            line-height: 57px;
            position: absolute;
            font-family:"仿宋";
            font-weight: bold;           
            border:0px solid red;
            height:58px;
        }       
 
        #menu ul {
            list-style: none;
            display: inline-block;
            margin:0;
            padding-left: 240px;
            padding-right:100px;
            float:right;
        }
 
        #menu ul li {
            line-height: 60px;
            text-align: center;
            position: relative;
            float: left;
        }
 
       #menu  a {
            text-decoration: none;
            color: rgb(13, 6, 6);
            display: block;
            padding: 0 20px;
            white-space: nowrap;
            font-family:"仿宋";
            font-weight: bold;
        }
 
       #menu a:hover {
            color: #FFF;
            background-color: #ccc;
        }
 
       #menu ul li ul li {
            float: none;
            margin-top: 2px;
            background-color: #ccccff;
        }
 
       #menu ul li ul li a:hover {
            color: #FFF;
            background-color: #ccc;
        }
 
       #menu ul li ul {
            position: absolute;
            left: 0;
            top: 60px;
            display: none;
            padding-left: 0;
        }
       
       #menu ul li:hover ul {
            display: block;
        }
 

