@font-face {
	font-family: 'Goudy Old Style Italic';
	src: local('Goudy Old Style Italic'), url('res/GOUDOSI.TTF') format('truetype');
}
@font-face {
	font-family: 'Goudy Old Style';
	src: local('Goudy Old Style'), url('res/GOUDOS.TTF') format('truetype');
}

.menuWrapper {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	padding-top: 50px; /*can't set the top margin because it also moves the body margin...*/
	text-align: center;
}
.menu {
	position: relative; /*so that the z-index is taken into account (for the logo)*/
	display: inline-block;
	margin: 0;
	padding: 0;
}
.menuWrapper *::-moz-selection {
	background: transparent;
	color: inherit;
}
.menuWrapper *::selection {
	background: transparent;
	color: inherit;
}
.menu > li {
	float: left;
	text-align: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.menuLink:link,.menuLink:visited {
	text-decoration: none;
	color: #222222;
	padding: 15px;
	padding-left: 30px;
	padding-right: 30px;
	display: block;
	font-family: "Goudy Old Style Italic";
	font-size: 1.5em;
	transition: text-shadow 0.18s;
	-webkit-transition: text-shadow 0.18s; /* Safari */
}
.menuLink:active,.menuLink:hover {
	/*color: #AAAAAA;*/
	/*color: #888888;*/
	text-shadow: 0px 0px 10px #888888;
	/* TODO: compat mode for IE without the text shadow */
}
.menuLink:focus {
	outline: 0;
}
.menuLinkCurrent {
	background-image: url('res/leaf.png');
	background-repeat: no-repeat;
	background-position:center bottom;
	margin-bottom: -5px !important;
	padding-bottom: 20px !important;
	text-shadow: 0px 0px 10px #AAAAAA;
}
.menuLinkCurrent:active,.menuLinkCurrent:hover {
	text-shadow: 0px 0px 10px #333333;
}
.ruler {
	max-width: 700px;
	margin-top: 8px;
	margin-bottom: 20px;
	border: 0px;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0));
	background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.4), rgba(0,0,0,0));
}

.homeLogContainer {
	position: relative;
	display: inline-block;
	width: 0px;
	height: 0px;

}
.homeLogo {
	border: 0px;
	text-decoration: none;
	position: relative;
	right: 90px;
	bottom: 15px;
}
.homeLogo:hover .homeLogoImg{
	opacity: 0.8;
}
.homeLogoImg {
	z-index: -1;
	width: 130px;
	/* height: xpx; */
	border: 0px;
	opacity: 0.5;
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s; /* Safari */
}