
#layout {
        margin:0px;
        margin-left:0px;
        margin-top:0px;
        border:0px;
}

#navi {
        margin:0px;
        margin-left:10px;
        margin-top:40px;
        border:0px;
}

     .button,.button1 {
      width: 185px;
      height: 27px;
      margin-top:12px;
      line-height: 25px;
      color: white;
      text-decoration: none;
      font-size: 20px;
      font-family: helvetica, arial;
      font-weight: bold;
      display: block;
      text-align: center;
      position: relative;

      /* BACKGROUND GRADIENTS */
      background: #014464;
      background: -moz-linear-gradient(top, #0D658E, #0C577A 50%, #014D71 51%, #003E5C);
      background: -webkit-gradient(linear, left top, left bottombottom, color-stop(0, #0E658E), color-stop(.5, #0C577A), color-stop(.5, #014D71), to(#003E5C));

      /* BORDER RADIUS */
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      border-radius: 10px;

      border: 4px solid #368DBE;
      border-top: 2px solid #c3d6df;

      /* TEXT SHADOW */

      text-shadow: 1px 1px 1px black;

      /* BOX SHADOW */
      -moz-box-shadow: 0 1px 3px black;
      -webkit-box-shadow: 0 1px 3px black;
      box-shadow: 0 1px 3px black;
     }

     .button1 {

     /* BACKGROUND GRADIENTS */
      background: #014464;
      background: -moz-linear-gradient(top, #FF0000, #E50000 50%, #CC0000 51%, #E50000);
      background: -webkit-gradient(linear, left top, left bottombottom, color-stop(0, #0E658E), color-stop(.5, #0C577A), color-stop(.5, #014D71), to(#003E5C));

       border: 4px solid #FF4D33;
       border-top: 2px solid #FF6666;



     /* WHILE HOVERED */
     .button:hover {
         background: #014464;
         background: -moz-linear-gradient(top, #0c5f85, #0b5273 50%, #024869 51%, #003853);
         background: -webkit-gradient(linear, left top, left bottombottom, color-stop(0, #0c5f85), color-stop(.5, #0b5273), color-stop(.51, #024869), to(#003853));
     }

     /* WHILE BEING CLICKED */
     .button:focus {
         -moz-box-shadow: 0 2px 10px black;
         -webkit-box-shadow: 0 2px 6px black;
                 border: 4px solid #FF0000;
                 border-top: 2px solid #FF4D00;

      }