/* CSS Document 									*/
/* Author: DonEMitchell, mitch@groupKOS.com         */
/* Horizontal menu-bar, with gradient background	*/
/* & inverse-gradient hover background				*/

.menuwrap { /* Outer container */
    background: dodgerblue url('img/backgrounds/menufill.jpg') repeat-x;
	border-bottom: 1px solid skyblue;          /* A hack for MOZ v2.0.0.11 preventing a top default margin */
	display: block;
	margin-right: auto;   				/* for Firefox */
    margin-left:  auto;   				/* for Firefox */
    text-align: center;   				/* for IE     */
	width: 100%;
	}
.menubar{
    background: dodgerblue url('img/backgrounds/menufill.jpg') repeat-x;
	xborder-left: 1px solid skyblue;
    xborder-right: 1px solid skyblue;
    clear:both;
	height:29px;            			/* MOZ required */
	margin-top:0;
    margin-right: auto;   				/* for Firefox */
    margin-left:  auto;   				/* for Firefox */
    text-align:   center; 				/* for IE     */
	width:750px;
	/* width:<?php menubar_width ?>; */
	}
.menubar a:link,
.menubar a:active,
.menubar a:focus,
.menubar a:visited {
	background: transparent;
    border-right: 0px solid skyblue;    /* seperates items   					*/
    color: darkblue;
    display: inline; 					/* protected default 					*/
    float: left;     					/* or right          					*/
    font:  bold 12px/26px arial;		/* 12/26 centers vertically in 29px  	*/
    height:29px;                        /* same as menu background image height */
	padding-left: 1em;
	padding-right: 1em;
	text-decoration: none;
    text-transform: capitalize;
    }
.menubar a:hover {
    background: skyblue url('img/backgrounds/menuhover.jpg') repeat-x;
    color: rgb(255,100,100); 			/* reddish */
    }
