/* CSS Document */

    nav ul li a {
	  font-weight:bold;
      text-align: center;
      padding: 8px 0;
      display: block;
      width: 100%;
      background: #1569C7;
	  /*#cdeb8e;*/ /* Old browsers */
      background: -moz-linear-gradient(top,
        #1569C7 0%, #b0ca34 100%); /* FF3.6+ */
      background: -webkit-gradient(linear, 
        left top, left bottom, color-stop(0%,#1569C7),
        color-stop(100%,#b0ca34)); /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top,  
        #1569C7 0%,#b0ca34 100%); /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top,  
        #1569C7 0%,#b0ca34 100%); /* Opera 11.10+ */
      background: linear-gradient(to bottom,  
        #1569C7 0%,#b0ca34 100%); /* W3C standard, IE10+ */
      filter: progid:DXImageTransform.Microsoft.gradient( 
        startColorstr='#1569C7', 
        endColorstr='#b0ca34',GradientType=0 ); /* IE6-9 */
      }
	  
	      nav ul li a:hover {
      background: #b0ca34; /* Old browsers */
      background: -moz-linear-gradient(top,  
        #b0ca34 0%, #96c40d 100%); /* FF3.6+ */
      background: -webkit-gradient(linear, left top, left bottom, 
        color-stop(0%,#b0ca34), 
        color-stop(100%,#96c40d)); /* Chrome,Safari4+ */
      background: -webkit-linear-gradient(top,  
        #b0ca34 0%,#96c40d 100%); /* Chrome10+,Safari5.1+ */
      background: -o-linear-gradient(top,  
        #b0ca34 0%,#96c40d 100%); /* Opera 11.10+ */
      background: linear-gradient(to bottom,  
        #b0ca34 0%,#96c40d 100%); /* W3C standard, IE10+ */
      filter: progid:DXImageTransform.Microsoft.gradient( 
        startColorstr='#b0ca34', 
        endColorstr='#1569C7',GradientType=0 ); /* IE6-9 */
      }


    nav ul li a,
    nav ul li a:focus,
    nav ul li a:visited,
    nav ul li a:hover,
    nav ul li a:active {
      	color: white;/*#000;*/
      	text-decoration: none; 
	  	box-shadow: 0 0 1px #000; /* x offset, y offset, size, color */
    	
	}


    nav ul li:first-child a {
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;

    }
	
	 nav ul li:first-child a {
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;

    }
	
	
    nav ul li:last-child a {
      border-top-right-radius: 8px;
      border-bottom-right-radius: 8px;
    }


