body {
	margin: 40px !important;
}

#table {
	background-color: white;
	text-align: center;
	line-height: 0px;
	display: inline-block;
}

#main {
	width: 400px;
}

#formBoom {
	padding: 7px 0 0 0;
	height: 30px;
	width: inherit;
	display: inline-block;
	border: solid black 1px;
	text-align: center;
	background-color: #99CCCC;
}

#faq {
	overflow: hidden;
	height: 0px;
	width: inherit;
	border: 1px solid #E6EBE0;
	background-color: #E6EBE0;
	transition: height 500ms;
}

	#faq.show {
		height: 50px;
	}

p {
	position: absolute;
	margin: 16px 0px;
	width: 50px;
	text-align: center;
}

.cell {
	vertical-align: top;
	line-height: 20px;
	text-align: center;
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0px;
	padding: 1px;
	background-color: #E6EBE0;
	box-shadow: 0 0 4px 0px black;
	transition: all 250ms ease-in-out;
	cursor: pointer;
	font-size: 16px;
}

.bombAroundText {
	/*
		
	text-align: center;
	line-height: 20px;
	font-size: 16px;*/
}

.near {
	background-color: teal;
}

.empty {
	opacity: 0.4;
	box-shadow: 0 0 1px 0px black;
}

.flag {
	background-color: orange;
}

	.flag:after {
		content: '☢';
		top: 1px;
		left: 2px;
		position: absolute;
		font-size: 20px;
		font-weight: bold;
		opacity: 0.5;
		line-height: 100%;
	}

.bomb {
}

	.bomb:after {
		content: "💣";
		top: 5px;
		left: 2px;
		position: absolute;
		font-size: 16px;
		font-weight: bold;
		opacity: 0.5;
		line-height: 100%;
	}
