a {
	color:#f5b918;
	font-weight:bold;
	text-decoration:none;
}

a:hover{
	text-decoration:underline;
}

h2.elim{
	font-family: Tahoma;
	font-size: 16px;
}

/*
column + row highlighting
http://blog.thinkingstiff.com/2012/06/26/highlight-table-column-on-hover-using-css/
 */
table.elim{
	border: 0px solid green;
	border-collapse: collapse;
    overflow: hidden;
    z-index: 1;
	font-size: 10px;
	font-family: Verdana;
	width:100%;
}
 
td.elim
 {
	border-top: 1px solid red;
	white-space: nowrap;
	text-align: center;
    position: relative;
	color:#ffffff;
	padding:0px;
}

th.elim
{
	white-space: nowrap;
	text-align: center;
    position: relative;
}

td.aim:hover::after
{
	background-color: #111111;
    content: '\00a0';
    height: 10000px;
    left: 0;
    position: absolute;
    top: -5000px;
    width: 100%;
    z-index: -1;	
}

tr.aim:hover{ background-color: #111111;}

/*pretty ship animations*/
.shipani{
  width: 36px;
  height: 36px;
  margin: 2% auto;
  float: left;
}
.animation {
	-webkit-animation: playship .8s steps(10) infinite alternate;
	animation: playship .8s steps(10) infinite alternate;
	}
.allanimation {
	-webkit-animation: playall 5s steps(39) infinite;
	animation: playall 5s steps(39) infinite;
	}

@-webkit-keyframes playall { 100% { background-position: -1404px; }}
@-webkit-keyframes playship { 100% { background-position: -360px; }}
@keyframes playall { 100% { background-position: -1404px; }}
@keyframes playship { 100% { background-position: -360px; }}

.allships_idle{ background: url('imgs/sprites/all_idle.png') left center;}
.allships{ background: url('imgs/sprites/all.png') left center;}
.warbird { background: url('imgs/sprites/warbird.png') left center;}
.javelin{ background: url('imgs/sprites/javelin.png') left center;}
.spider{ background: url('imgs/sprites/spider.png') left center;}
.leviathan { background: url('imgs/sprites/leviathan.png') left center;}
.terrier{ background: url('imgs/sprites/terrier.png') left center;}
.weasel { background: url('imgs/sprites/weasel.png') left center;}
.lancester { background: url('imgs/sprites/lancester.png') left center;}
.shark { background: url('imgs/sprites/shark.png') left center;}