/************************************************
    CSS3 Navigation Using Images
    By: Omari Celestine
    Email: OmariCelestine@gmail.com
    DeviantART: OmariCelestine.DeviantART.com
************************************************/

/* Body Styles */
body {
  font-family: Calibri, Tahoma, Arial, Verdana, sans-serif;
  color: #000000;
  text-decoration: none;
  background-image: url(../wood2.png);
}

/* General properties */
#nav {
  width: 660px;           /* Width of Navigation Bar */
}

/* List Styling */

ul {
  padding: 0;
  margin: 0;
}

li {
  display: inline;
  padding: 0;
}

li a {
  font-family: Arial;
  font-size: 9pt;
  text-decoration: none;
  float: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  margin-right: 10px;
  color: #000;
}

/* Main Container */                                                   /* Start green Styling */
.green_nav_container {
  height: 36px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow:0px 2px 1px #000000;
  -webkit-box-shadow:0px 2px 1px #000000;
  -mox-box-shadow:0px 2px 1px #000000;
}
 /* Hover Effect */
.green_nav_container li a:hover {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-top: -2px;
  padding-bottom: 12px;
  box-shadow:0px 2px 1px #000000;
  -webkit-box-shadow:0px 2px 1px #000000;
  -mox-box-shadow:0px 2px 1px #000000;
}
 /* Active State */
.green_nav_container .active a {
  font-weight: bold;
-webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-top: -2px;
  padding-bottom: 12px;
  box-shadow:0px 2px 1px #000000;
  -webkit-box-shadow:0px 2px 1px #000000;
  -mox-box-shadow:0px 2px 1px #000000;
}                                                                       /* End green Styling */



