@charset "utf-8";

/* Site wide navigation */
div.menu
{
   text-align: center;
   width: 100%;
}

/* Menu container */
div.menu ul
{
   list-style-type: none;
   padding: 0em;
   margin: 0em;
}

/* Menu item container */
div.menu ul li
{
   float: left;
   margin-top: 0em;
   margin-left: 0.15em;
   margin-right: 0.15em;
}

/* Menu item apperance */
div.menu ul li a
{
   background-color: #FFA1D2;
   color: #C7377D;
   height: 2em;
   line-height: 2em;
   width: 9em;
   display: block;
   border-width: 0.1em;
   border-style: solid;
   border-color: #dcdce9;
   text-decoration: none;
   text-align: center;
}

/* Menu item hovered over by user */
div.menu ul li a:hover
{
   background-color: #C7377D;
   color: #FFA1D2;
}

/* Current Page on the Menu */
div.menu ul li a.current
{
   font-weight: bold;
}

