/* Start of CMSMS style sheet '  Navigation: Simple - Horizontal - GameCorner' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
   float: left;
   width: 100%;
   background: #000;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 10px 10px 0;
   list-style: none;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   background: #000 url("uploads/images/tab_inactive1.png") no-repeat left top;
   margin: 0;
   padding: 0;
}


/* the links, that is each list item */
div#menu_horiz a {
   background: url("uploads/images/tab_inactive2.png") no-repeat right top;
   padding: 5px 15px 5px 15px; /* padding inside the list item box */
   text-decoration: none; /* no underline for links */
   font-weight: bold;
   color: #765;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_horiz li a:hover {
   color: #fdfaa6;
}
div#menu_horiz a.currentpage:hover {
   color: #fdfaa6;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.currentpage {
   background: url("uploads/images/tab_active1.png") no-repeat left top;
   color: #000;
}

div#menu_horiz .currentpage h3 {
   padding: 5px 15px 5px 15px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #000;
   background: url("uploads/images/tab_active2.png") no-repeat right top;
   display: block; /* IE has problems with this, fixed above */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
}
/* End of '  Navigation: Simple - Horizontal - GameCorner' */

