            body {
                padding: 0;
                margin: 0;
                background: #D3D4C0;
                font-size: 14px;
                font-family: Arial, sans-serif;    
            }
            img{border:none}
            
            
            #wrap {
                width: 970px;
                margin-left: auto;
                margin-right: auto;
            }
            
            
            
            
            /* Menu Start Here */
            
            #menu li {
                display: inline;
                list-style: none;
                padding: 0;
            }
            
            #menu li a {
                
                border: 1px solid white;
                padding: 5px 10px 5px 10px;
                text-decoration: none;
                color:black;
                margin-left: -5px;
                /* This is the background used for the animation */
                background-image: url('upMenu.jpg');
                /* Align the image position to the left of the a */
                background-position: left;
                -webkit-transition: all 0.8s ease-in-out;
                /* Animation with transition in Firefox (No supported Yet) */
                -moz-transition: all 0.8s ease-in-out;
                /* Animation with transition in Opera (No supported Yet)*/
                -o-transition: all 0.8s ease-in-out;
            }
            
            #menu li a:hover {
                color: white;
                /* Align the image position of the background to the right*/
                background-position:right;
            }