@charset "utf-8";
/* CSS Document */
ul 
{
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;			/* width: 200px; ความกว้างของพื้น menu*/
    background-color: #ffffff;  /*สีขาว*/
}

li a 
{
    display: block;
    color: #000;					/*สีดำ*/
    padding: 8px 16px;
    text-decoration: none;
}

/* Change the link color on hover */
li a:hover 
{
    background-color: #434a54;	/*#434a54; #474747; สีพื้นสีเทาเข้ม*/
    color: #ffffff;
}