#zoneJeu {
	background: rgba(255,255,255,0.25);
	border-radius: 32px;
	margin: 20px;
	position: relative;
	overflow: hidden;
	} 

#gHeader {
	}
	
#gFooter {
	border-top: 1px solid #333;
	font-size: 0.8rem;
	margin: 10px 20px;
	padding: 10px;
	}

#zoneAide {
	background: rgba(255,255,255,0.1);
	border-radius: 32px;
	margin: 20px;
	}

.blocTrophee {
	position: relative;
	display: inline-block;
	margin: 32px;
	width: 128px;
	}

.blocTrophee * {
	transition: all 1s ease;
	}

.blocTrophee .presentation {
	position: relative;
	background: url(/imgs/games/bck.png) top no-repeat;
	padding: 0px;
	width: 128px;
	height: 128px;
	}

.blocTrophee .presentation img {
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: rgba(0,0,0,0.25);
	}

.blocTrophee .presentation h2 {
	position: absolute;
	font-weight: normal;
	margin: 0px;
	width: 120%;
	left: -10%;
	bottom: 100%;
	padding: 6px 10px 2px 10px;
	font-size: 1.0rem;
	background: rgba(21,153,204,1);
	border-top-left-radius: 64px 12px;
	border-top-right-radius: 64px 12px;
	border-top: 1px solid rgba(0,0,0,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	}

.blocTrophee:hover h2 {
	}
	
.blocTrophee:hover .descriptif {
	opacity: 1;
	z-index: 10;
	}

.blocTrophee .descriptif  {
	position: absolute;
	opacity: 0;
	z-index: -10;
	transition: opacity 1s ease;
	background: rgba(0,0,0,0.25);
	background: rgba(21,153,204,1);
	border-bottom-left-radius: 64px 12px;
	border-bottom-right-radius: 64px 12px;
	border-top: 1px solid rgba(0,0,0,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	
	font-size: 0.8rem;
	padding: 0.25rem;
	overflow: hidden;
	top: 100%;
	width: 150%;
	left: -25%
	}

.blocTrophee .nbTrophees {
	position: absolute;
	bottom: 0px;
	right: 0px;
	margin: 0px;
	padding: 3px 6px;
	width: 100%;
	font-weight: bold;
	color: rgba(255,255,128,1);
	background: rgba(0,0,0,0.1);
	}

@keyframes glisserHaut {
	0%		{bottom: -100%;}
	100%	{bottom: 0px;}
	}

#zoneTrophees {
	background: #666;
	position: absolute;
	bottom: -100%;
	left: 0px;
	border-top-right-radius: 12px;
	padding: 12px;
	animation-name: glisserHaut;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	border-right: 1px solid #999;
	border-top: 1px solid #FFF;
	text-align: left;
	}

#zoneTrophees li img {
	width: 64px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.5);
	background: rgba(21,153,204,0.5);
	vertical-align: middle;
	margin: 8px;
	}


#zoneTrophees ul {
	list-style-type: none;
    padding: 0px;
    margin: 0px;
	}
	
#zoneTrophees img.btnFermer {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.5s ease;
	}
	
#zoneTrophees img.btnFermer:hover {
	opacity: 1;
	}

#zoneTrophees li {
	position: relative;
	cursor: url(/imgs/g1/curAide.png), help;
	}

#zoneTrophees li:hover span {
	opacity: 1;
	transition: opacity 0.5s ease;
	z-index: 5;
	}

#zoneTrophees li span {
	position: absolute;
	border-radius: 6px;
	padding: 6px;
	background: #CCC;
	border: 1px solid #333;
	left: calc(100% + 16px);
	top: 16px;
	min-width: 200px;
	line-height: 32px;
	color: #333;
	font-size: 0.8rem;
	opacity: 0;
	z-index: -5;
	}
