
html,body {
	height: 100%;
	width: 100%;
	margin:0;
	overflow:hidden;
	font-size: 20px;
  background-color: black;
}

#world-bar {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	padding: 5px;
	background: grey;
	font-size: 2em;
	color: white;
}

#free-ants {
	float: left;
}
#total-ants {
	float: right;
}

#mycanvas{
	background: black;
	clear: both;
	/*margin-top: 30px;*/
}
#tooltip {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 2em;
	background: grey;
	padding: 5px;
}

#action-buttons, #bonus-buttons {
	position: absolute;
	bottom: 1em;
	background: gray;
	padding: 0.4em;
	border: 2px solid white;
	border-right-color: black;
	border-bottom-color: black;

	color: black;
}

#action-buttons {
	left: 1em;
}

#bonus-buttons {
	right: 1em;
}

.action-button {



	background: grey;
  padding: 0.2em 0.5em;
  border: 2px solid darkgrey;
  border-bottom-color: black;
  border-right-color: black;
  font-size: 1.5em;	
  max-width: 8em;
      
  height: 1.2em;
	overflow: hidden;
}

.action-header {
	background: grey;
	padding: 0.2em 0.5em;
  font-size: 1.5em;	
  margin: 0;
}

.extra-description {
	font-size: 0.7em;
}

input [type="radio" i] {
	display: none;
}


input[type="radio"]:checked + .action-button {
    background: #4a4949;
    border-bottom-color: darkgrey;
    border-right-color: darkgrey;
    border-top-color: black;
    border-left-color: black;
    color: lightgrey;

    height: auto;

		overflow: normal;
}


input[type="radio"] {
    display: none;
}

input[type="radio"][disabled] + .action-button {
	background: #aaa;
	color: #ccc;
	border-bottom-color: lightgrey;
  border-right-color: lightgrey;
  border-top-color: white;
  border-left-color: white;
}

