/* PIV CSS V1 — 180109 */
@font-face {
	font-family: chaloult;
	src: url(../fonts/CHALCN__.TTF);
}
@font-face {
	font-family: chaloult-bold;
	src: url(../fonts/CHALCDGN.TTF);
}
* {
	box-sizing: border-box;
}

body {
	padding: 1rem;
	-webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
}

.jumbotron {
	box-shadow:none;
}

.piv {
	padding: 0;
	background-color: transparent;
	height: 6rem;
}
.piv a {
	text-decoration: none;
}
.piv a:hover {
	text-decoration: underline;
}
#LogoMfa {
	display: block;
	float: left;
}
#LogoMfa img {
	width: 200px;
	
}

#PivMenu {
	display: block;
	position: relative;
	margin-left: 14rem;
	padding-top: 2.75rem;
	z-index: 10;
}
#PivMenu:before {
	content: '';
	clear: none;
}
#PivMenu .toggle_menu {
	display: none;
}
#toggle-input {
	display: none;
}
.toggle-label {
	display: none;
}
#PivMenu ul {
	background-color: #0d3693;
	text-align: left;
	padding-right: .5rem;
	padding-left: .5rem;
	
	letter-spacing: .3px;
	/*padding-top: .25rem;*/
	/*padding-bottom: .25rem;*/
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-end;
	height: 20px;
}
#PivMenu ul li {
	font-family: chaloult, Arial, sans-serif;
	font-size: 14px;
	line-height: 18px;
	/*font: 13px/1px chaloult-bold;*/
	/*display: inline-block;*/
	/*background-color: rgba(255, 255, 255, 0.49);*/
}
#PivMenu ul li a {
	color: white;
	padding-right: .5rem;
	padding-left: .5rem;
}
#PivMenu ul li .horsChamp {
	display: none;
}

/*Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) {
	body {
		padding: 0;
	}
	
	#toggle-input {
		display: block;
	}
	input[type=checkbox] {
		visibility: hidden;
	}
	.toggle-label {
		display: block;
		position: absolute;
		background-color: #00198E;
		right: 0;
		top: 2rem;
		width: 2.25rem;
		height: 2.25rem;
		text-indent: -99999px;
		border-radius: 4px;
		background-image: url(../images/burger_closed.png);
		background-size: contain;
	}
	#toggle-input:checked ~ .toggle-label {
		background-image: url(../images/burger_open.png);
	}
	.toggle-content {
		max-height: 0;
		overflow: hidden;
		margin-top: 1rem;
	}
	#toggle-input:checked ~ .toggle-content {
		max-height: 1000px;
		display: inline-block;
	}
	#PivMenu {
		margin-left: 0;
		position: absolute;
		width: 100%;
		left: 0;
	}
	#PivMenu ul {
		width: 100%;
		padding: 0;
		position: absolute;
		display: flex;
		top: 5.5rem;
		min-height: 1.75rem;
	}
	#PivMenu ul li {
		flex-grow: 1;
		padding: 0;
	}
	#PivMenu ul li a {
		font-size: .8rem;
		line-height: 1;
		padding: .5rem  0;
		display: block;
		text-align: center;
	}
	#PivMenu .toggle_menu.open {
		background-image: url(../images/burger_open.png);
	}
}

/*Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) {
	#PivMenu ul {
		padding-left: .75rem;
		padding-right: .5rem;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/**/