/*Simple reset*/
* {
	font-family: sans-serif;
	font-size: 12pt;
	color: #368706;
	margin: 0;
	padding: 0;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
b {
	font-weight: bold;
}
table {
	background-color:white;
	border-radius: 20px;
	-webkit-box-shadow:  0px 0px 3px 40px green;        
    box-shadow:  0px 0px 3px 40px green;
	position: absolute;
	margin: -50px 0 0 -50px;
	left: 50%;
	top: 50%;
}
td {
	text-align: center;
	padding: 25px;
}
img {
	margin-top:-25px;
}
h1  {
	color: #368706;
	font-size: 69px; 
	margin-bottom:0;
}
h2 {
	color: #5e5e5e;
	font-size: 35px;
	margin-bottom:0;
}
.container {
  position: absolute;
  margin: -260px 0 0 -127px;
  left: 50%;
  top: 50%;
}
.containerBody {
	background: url(grass.png) repeat-x 0 100%, linear-gradient(to bottom, #b7eaff 0%, #94dfff 100%);
	padding-bottom:25px;
}

body {
	/*You can use any kind of background here.*/
	background: black;
}
canvas {
	display: block;
}

#wordDay {
	display:none;
	position:fixed;
	bottom:0;
	right:0;
	height:200px;
	width:400px;
	background:white;
}
#closeButton {
	background:#edcb09;
	position:absolute;
	top:0;
	left:49%;
	z-index:5;
	cursor:pointer;
	border-radius:20px;
	padding:10px;
	width: 10px;
    height: 10px;
    line-height: 10px;
	color:#3B6EA5;
	
}
#overlay {
	position:absolute;
	height:369px;
	top:0;
	-webkit-transition: height .3s linear;   
	-moz-transition: height .3s linear;   
	-ms-transition: height .3s linear;   
	-o-transition: height .3s linear;   
	transition: height .3s linear;
	background: #BEC0C2; /* Old browsers */
	background: -moz-linear-gradient(top, #70706F 0%, #A1A2A3 50%, #BEC0C2 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #70706F 0%, #A1A2A3 50%, #BEC0C2 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #70706F 0%, #A1A2A3 50%, #BEC0C2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BEC0C2', endColorstr='#70706F',GradientType=0 ); /* IE6-9 */
	width:100%;
	left:0;
}
#overlay.hidden {
	height:0;
}

#niceZoomIn.fade {
   -moz-transform: scale(.3) ;
   -webkit-transform: scale(.3) ;
   -o-transform: scale(.3) ;
   -ms-transform: scale(.3) ;
   transform: scale(.3) ;
   -webkit-transition: all 0.3s;
   -moz-transition: all 0.3s;
   transition: all 0.3s;
}

#niceZoomIn.fade.in {
   -moz-transform: scale(1) ;
   -webkit-transform: scale(1) ;
   -o-transform: scale(1) ;
   -ms-transform: scale(1) ;
   transform: scale(1) ;
   opacity: 1;
   
}
.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}