#checkersBoard #moveNotAllowed img
{
    width:60px;
    height:60px;
}

#buttonContainer {
	margin-bottom:10px;
}


#newGameButton {
	-moz-border-radius:12px;
	-webkit-border-radius:12px;
	background: -moz-linear-gradient(center top , #57aeea, #3d94d1) repeat scroll 0 0 transparent;
    background: -webkit-gradient(linear,center bottom,center top,from(#3d94d1),to(#57aeea));
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr='#57aeea',EndColorStr='#3d94d1');
	
	background-color:lightBlue;
	display:inline-block;
	font-size:21px;
	margin-top:20px;
	padding:5px 20px;
	vertical-align:middle;
	font-family:Arial;
	color:#fff;
	border:1px solid #84C5F3;
	text-shadow:0 0 3px #333333;
	cursor:pointer;
	-moz-box-shadow:0 0 8px 1px #888888;
	-webkit-box-shadow:0 0 8px 1px #888888;
}

#notificationDiv {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
    display:none;
}

#notificationContainer {
	background-color:#999999;
	border:2px solid #BBBBBB;
	font-family:arial;
	font-size:25px;
	left:-0;
	margin-top:30%;
	position:relative;
	width:100%;
	padding:20px 50px 20px 14px;
	-moz-border-radius:10px 10px 10px 10px;
	-moz-box-shadow:3px 3px 10px 3px;
	-webkit-border-radius:10px 10px 10px 10px;
	-webkit-box-shadow:3px 3px 10px 3px;
}

.notificationMessage{
		margin:25px 39px;
		display:inline-block;
}

#closeNotification{
	height:37px;
	position:absolute;
	right:2px;
	top:0;
	cursor:pointer;
	height:40px;
	width:40px;
}

/* General button style */
.btn {
    border: none;
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 50px;
    display: inline-block;
    margin: 5px 30px;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}


/* Button 1 */
.btn-1 {
    background: #3498db;
    color: #fff;
}

.btn-1:hover {
    background: #2980b9;
    color: #fff;
}

.btn-1:active {
    background: #2980b9;
    color: #fff;
    top: 2px;
}

.btn-1:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 3;
    font-size: 140%;
    width: 60px;
}