/*  
 Build the game of life using HTML, CSS & JavaScript
 ToolboxAid.com
 life.css
*/

body{
	padding:20px;
	background-color:#dddddd;
}

#gridContainer{
	padding-bottom:10px;
}
table{
	background: #444444;
	border-spacing: 0px;
	width: 100%;
}
td{
	border: 1px solid rgb(90,90,90);
	width:10px;
	height:10px;
}
td.isDead{
	background-color: transparent;
}
td.isAlive{
	background-color:#ffff00;
}
