/* Start of CMSMS style sheet 'wireframe3col : fadeinmenu' */
#navMenu {

	margin: 0 0 0 520px; 
	padding:0;
	list-style:none;	
	font-family:arial;
	text-align:center;
	line-height:198px;
        font-weight: bold;
}

	#navMenu li {
		float:left;	
		background:url(uploads/wireframe3col/fadein/menu-buttons-default.png) no-repeat center center;	/* default background image	*/
		width:112px;							/* width and height of the menu item */
		height:131px;
		border-left:1px solid transparent;				/* simulate pixel perfect using border */
		border-right:1px solid transparent;
		border-top:1px solid transparent;
		border-bottom:1px solid transparent;
		position:relative;			/* must set it as relative, because .hover class top and left with absolute position will be positioned according to li.	*/
                margin: -1px 0 0 0;
	}

	#navMenu li a {
		z-index:20;		/* z-index must be higher than .hover class */
		display:block;	/* display as block and set the height according to the height of the menu to make the whole LI clickable	*/
		height:131px;
		position:relative;
		color:#ffffff;
                text-decoration: none;
		left:2px; 
	}

 	#navMenu li .hover {
		background:url(uploads/wireframe3col/fadein/menu-buttons-over.png) no-repeat center center;		/* mouseover image	*/
		position:absolute;	/* must be postion absolute 	*/
		width:112px;	/*	width, height, left and top to fill the whole LI item	*/
		height:131px;
		top:0;	
		z-index:0;		/* display under the Anchor tag	*/
		display:none;	/* hide it by default	*/
	}

*+html #navMenu li .hover { /**** hack pour IE7 ****/
	background: url(uploads/wireframe3col/fadein/menu-buttons-over.png) no-repeat top center;		/* mouseover image	*/
position:relative;
margin: -131px 0 0 0;
	}

	#navMenu li.selected {
		background:url(uploads/wireframe3col/fadein/menu-buttons-over.png) no-repeat center center;	/* selected image	*/
	}
/* End of 'wireframe3col : fadeinmenu' */

