/* Icon */

.icon {
  float: left;
  display: block;
  position: relative;
  
  width: 128px;
  height: 128px;
  
  margin: 0 16px 16px 0;
  
  overflow: hidden;
  
  -moz-box-shadow: 0.1em 0.1em 0.1em #bbb;
  -webkit-box-shadow: 0.2em 0.2em 0.2em #bbb;
}

.icon img {
  min-width: 128px;
  min-height: 128px;
}

.icon .title {
  position: absolute;
  
  top: 0px;
  left: 0px;
  right: 0px;
  
  padding: 4px;
  
  color: #fff;
  
  background: transparent url(/images/backgrounds/555_0.6.png) repeat;
}

.icon .title .owner {
  display: none;
  
  color: #aaa;
  font-size: 0.6em;
}

.icon .title.owner .owner {
  display: inline;
}

.icon .presence {
  position: absolute;
  
  bottom: 5px;
  right: 5px;
}

.icon .presence {
  background: transparent url(/images/indicator/icon_status_gray.png);
  width: 16px;
  height: 16px;
}

.icon .presence.online,
.icon .presence.production {
  background: url(/images/indicator/icon_status_green.png);
}

.icon .presence.debug {
  background: url(/images/indicator/icon_status_orange.png);
}

a.icon:focus .shadow,
a.icon:hover .shadow {
  background: #555;
}

a.icon:focus .title,
a.icon:hover .title {
  color: #de8000;
  background: #444;
}
