
/* BASIC RESET */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{margin:0; padding:0;}

/* HTML ELEMENTS */
h1 { font-family:"Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif; text-align: center; color: #000; font-size:60px; letter-spacing:-1px; }
h1 small{ font-size: 20px; display: block; color: #636363; }

/* COMMON CLASSES */
.break { clear:both; }

/* WRAPPER */
#wrapper { 
    width:1005px; 
    margin: 0px auto; 
}

/* CONTENT */
#content { margin-top:0px; }
#content p { font: 14px "Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif; color:#333333; line-height:18px; margin:15px auto; width:1005px; }
#content p a { color:#0088CC; text-decoration:none; }
#content p a:hover { text-decoration:underline; }

/* APPLE STYLE NAVIGATION MENU */
#appleNav { margin:0px 0; list-style:none;
    /* Lucinda Grande is the font used on the website from Apple. */
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; letter-spacing:-0.5px; font-size:13px;
    
    /* Apply a subtle text-shadow to the text */
    text-shadow: 0 -1px 3px #202020;

    /* We want to add the shadow to the complete navigation menu. In order to do that, we'll need to set
    the correct width and height, and also the correct borders, in order to create the perfect drop shadow */
    width:1005px; height:34px;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    -moz-box-shadow: 0px 3px 3px #CEE288;
    -webkit-box-shadow: 0px 3px 3px #CEE288;
    box-shadow: 0 3px 4px #9EC23F;
}

#appleNav li { display:block; float:left; border-right:1px solid #71a311; border-left:1px solid #71a311; width:94px; height:34px; border-bottom:1px solid #71a311; border-top:1px solid #71a311;
    /* Gradient backgrounds for the buttons. Generated using http://gradients.glrzad.com/ */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eff5ec), color-stop(0.5, #508338), color-stop(0.51, #508338), color-stop(1, #f5f3a9));
    background-image: -moz-linear-gradient(center bottom, #eff5ec 0%, #3c622a 50%, #508338 51%, #f5f3a9 100%);
    background-color:#e59400; /* Fallback */
    width:141.7px;
}

/* Set the states when hovering, except for the last item in the list (the search bar), since it doesn't need to change */
#appleNav li:hover {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ffa723), color-stop(0.5, #cc8400), color-stop(0.51, #ffa500), color-stop(1, #ffc04c));
    background-image: -moz-linear-gradient(center bottom, #ffa723 0%, #cc8400 50%, #ffa500 51%, #ffc04c 100% );
    background-color:##ffa500; /* Fallback */
    
    /* We use the inset of the box shadow to create a subtle inner glow when hovering */
    -moz-box-shadow: inset 0 0 2px 2px #ffc966;
    -webkit-box-shadow: inset 0 0 2px 2px #ffc966;
    box-shadow: inset 0 0 2px 2px #ffc966;
}

#appleNav li a { color:white; text-decoration:none; text-align:center; display:block; line-height:34px; outline:none; }

/* Rounded corner for the first in last item. Shorthand: Top left, Top right, Bottom right, Bottom left.
We also remove the borders, since they don't need them. */
#appleNav li:first-child {
    -moz-border-radius:4px 0 0 4px;
    -webkit-border-radius:4px 0 0 4px;
    border-radius:4px 0 0 4px;
    
    border-left:none;
}

/* The first child image - the logo - has to be centered. Because of the image dimensions, we manually need to shift it a bit. */
#appleNav li:first-child a img {
   vertical-align:middle; margin-top:-2px;
}

/* Fade in animation (Webkit only) */
@-webkit-keyframes showMenu {
    from { opacity: 0; top:0px; }
    to   { opacity: 1; }
}

#appleNav {
     -webkit-animation: showMenu 0.5s; position:relative;
}



  
 