#verif-js {
	background: #ffffff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	text-align: center;
}

.js #verif-js {
	display: none;
}

#status {
	position: relative;
	top: 45%;
	font-size: 24px;
	font-weight: bold;
}

#goban {
	background-color: #faba52;
	background-image: url(../img/fond-goban.png);
	background-repeat: repeat;
	border: 15px solid #faba52;
	position: relative;
	top: 0;
	left: 0;
	z-index: 0;
	height: 271px;
	width: 271px;
	margin: 0 auto;
	margin-top: 10px;
}

.hoshi {
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 5px;
	margin-left: -2px;
	margin-top: -2px;
	border-radius: 50%;
	z-index: 1;
}

.pierre {
	position: absolute;
	top: -15px;
	left: -15px;
	height: 27px;
	width: 27px;
	margin-left: -13px;
	margin-top: -13px;
	border-radius: 50%;
	z-index: 10;
}

.pierre-vide {
	background: none;
	cursor: pointer;
}

.pierre-white {
	background-color: #fff;
	background: -webkit-radial-gradient(8px 8px, circle, #ffffff, #afafaf);
	background: -moz-radial-gradient(8px 8px, circle, #ffffff, #afafaf);
	background: radial-gradient(8px 8px, circle, #ffffff, #afafaf);
}

.pierre-black {
	background-color: #000;
	background: -webkit-radial-gradient(8px 8px, circle, #686868, #000);
	background: -moz-radial-gradient(8px 8px, circle, #686868, #000);
	background: radial-gradient(8px 8px, circle, #686868, #000);
}

.territoire-white {
	border: 2px solid white;
	display: block !important;
	height: 11px !important;
	width: 11px !important;
	margin-left: -5px !important;
	margin-top: -5px !important;
}

.territoire-black {
	border: 2px solid black;
	display: block !important;
	height: 11px !important;
	width: 11px !important;
	margin-left: -5px !important;
	margin-top: -5px !important;
}


.pierre-hover-white {
	background-color: rgba(255,255,255,0.5);
}

.pierre-hover-black {
	background-color: rgba(0,0,0,0.5);
}

#text {
	width: 100%;
	text-align: center;
	font-weight: bold;
	padding: 10px;
}

#passe {
	display: block;
	margin: 0 auto;
}