#nav,#nav ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
#nav {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    /*height: 36px;*/
    list-style: none outside none;
    margin: 10px auto;
    /*text-shadow: 0 -1px 3px #202020;*/
    width: 100%;
    text-align:center;
    /* border radius */
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-weight:600;

    /* box shadow */
    /*-moz-box-shadow: 0px 3px 3px #cecece;
    -webkit-box-shadow: 0px 3px 3px #cecece;
    box-shadow: 0 3px 4px #8b8b8b;*/

    /* gradient */
    /*background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d23100), color-stop(0.5, #fa3d03), color-stop(0.51, #fa3d03), color-stop(1, #fa3d03));
    background-image: -moz-linear-gradient(center bottom, #d23100 0%, #fa3d03 50%, #fa3d03 51%, #d23100 100%);
    background-color: #fa3d03;*/
}
#nav li {
    /*border-bottom: 1px solid #d23100;
    border-left: 1px solid #fa3d03;
    border-right: 1px solid #fa3d03;
    border-top: 1px solid #d23100;*/
    display: block;
    float: left;
    /*height: 30px;*/
    position: relative;
    width: 125px;
     text-align:center;
}
#nav > li:first-child {
    border-left: 0 none;
    margin-left: 5px;
}
#nav ul {
    left: -9999px;
    position: absolute;
    top: -9999px;
    z-index: 2;
}
#nav ul li {
    /*background: none repeat scroll 0 0 #fa3d03;*/
    /*box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);*/
    width: 100%;
}
#nav li a {
    color: #000;
    display: block;
    line-height: 34px;
    outline: medium none;
    /*text-align: left;*/
    padding-left:5px;
    text-decoration: none;
   width: 100%;
    /* gradient */
   /*background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #E1DFF8), color-stop(0.5, #E1DFF8), color-stop(0.51, #E1DFF8), color-stop(1, #E1DFF8));
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #fff 50%, #fff 51%, #fff 100%);*/
    /*background-color: #5175C0;*/
      font-size: 15px;
       font-weight:600;
       background-color: #fff;
  transition: background-color .5s;
}

/* keyframes #animation */
@-webkit-keyframes animation {
    0% {
        -webkit-transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1.1);
    }
}
@-moz-keyframes animation {
    0% {
        -moz-transform: scale(1);
    }
    30% {
        -moz-transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1.1);
    }
}
#nav li > a:hover {
    /* CSS3 animation */
    -webkit-animation-name: animation;
    -webkit-animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;

    -moz-animation-name: animation;
    -moz-animation-duration: 0.3s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
    color:red; background-color:#eee;
}
#nav li:hover ul {
    left: 0;
    top: 34px;
    width: 220px;
     text-align:center;
     
}