/* 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: 24px;
    display: block;
    color: #636363;
}

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

/* WRAPPER */
#wrapper {
    width: 1050px;
    margin: 40px auto;
}

/* CONTENT */
#content {
    margin-top: 50px;
}

#content p {
    font: 14px "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
    color: #333333;
    line-height: 18px;
    margin: 15px auto;
    width: 800px;
}

#content p a {
    color: #0088CC;
    text-decoration: none;
}

#content p a:hover {
    text-decoration: underline;
}

/* APPLE STYLE NAVIGATION MENU */
#appleNav {
    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: 1000px;
    height: 48px;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;

    -moz-box-shadow: 0px 3px 3px #cecece;
    -webkit-box-shadow: 0px 3px 3px #cecece;
    box-shadow: 0 3px 4px #8b8b8b;
}

#appleNav li {
    display: block;
    float: left;
    width: 141px;
    min-width: 141px;
    max-width: 141px;
    height: 48px;
    border-right: 1px solid #006C00;
    border-left: 1px solid #006C00;
    border-bottom: 1px solid #006C00;
    border-top: 1px solid #006C00;

    /* Gradient backgrounds for the buttons. Generated using http://gradients.glrzad.com/ */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #006600), color-stop(0.5, #00B700), color-stop(0.51, #00B700), color-stop(1, #00B700));
    background-image: -moz-linear-gradient(center bottom, #006600 0%, #00B700 50%, #00B700 51%, #00B700 100%);
    background-color: #00A651; /* Fallback */
}

.user {
    width: 165px !important;
    min-width: 165px !important;
    max-width: 165px !important;
}

/* 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, #005900), color-stop(0.5, #007D00), color-stop(0.51, #007D00), color-stop(1, #007D00));
    background-image: -moz-linear-gradient(center bottom, #005900 0%, #007D00 50%, #007D00 51%, #007D00 100%);
    background-color: #00A651; /* Fallback */

    /* We use the inset of the box shadow to create a subtle inner glow when hovering */
    -moz-box-shadow: inset 0 0 5px 5px #005900;
    -webkit-box-shadow: inset 0 0 5px 5px #005900;
    box-shadow: inset 0 0 5px 5px #005900;
}

/* When the user clicks the button, we simply change the box inset (compared to the "hover") */
#appleNav li:active {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #006600), color-stop(0.5, #00B700), color-stop(0.51, #00B700), color-stop(1, #00B700));
    background-image: -moz-linear-gradient(center bottom, #006600 0%, #00B700 50%, #00B700 51%, #00B700 100%);
    background-color: #006600; /* Fallback */

    -moz-box-shadow: inset 0 1px 2px 2px #00B700;
    -webkit-box-shadow: inset 0 1px 2px 2px #00B700;
    box-shadow: inset 0 1px 2px 2px #00B700;
}

#appleNav li a {
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    line-height: 48px;
    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;
    min-width: 142px;
    max-width: 142px;
    width: 142px;
    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;
}

#appleNav li:last-child {
    -moz-border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;

    border-right: none;
}

#appleNav li:last-child a img {
    vertical-align: middle;
    margin-top: -2px;
}

