/* dock.css */
#layer-1, #calque-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width:100%;
}
#calque-2 {
  background: transparent;
  width: 100%;
  z-index: 2;
  text-align: center;
}
.dock-box{
	margin: 0 auto;
	width: 700px;
	background: transparent; /* me */
	text-align: center; /* me */
	padding-top: 5px;
}
.dock ul{
	background: transparent;	/* me */
	list-style: none;
	padding: 0;
	margin: 0;
	width: auto;
	display: inline-block;
	float: none; /* me */
}
.dock ul li {
	bottom: 0;
	vertical-align: top; /* me */
	margin-top: 0; /* me */
	width: auto;
	height: auto;
	display: inline-block;
	background: transparent; /* me */
}
.dock ul li a {
	display: block;
	position: relative;
	-webkit-transition-property: width, height,margin-top;
	-webkit-transition-duration: 0.5s;
	-o-transition-property: width, height,margin-top;
	-o-transition-duration: 0.5s;
	-moz-transition-property: width, height,margin-top;
	-moz-transition-duration: 0.5s;
	height: 56px; /* me */
	width: 56px; /* me */
}
.dock ul li a:hover {
	margin-top: 0; /* me */
	width: 96px;
	height: 96px;
	height: 120px; /* 96 + 20 + x */
}
.dock ul li a img {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	border: none;
	padding: 0 0 0 30px;
	padding: 0; /* me */
}
.dock ul li a:hover img {
  bottom: 20px;
}

/*----------------------------------------*/

span.image-title {
  background: #FFFF74;
  display: none;
}
li:hover span.image-title {
  display: block;
  vertical-align: bottom;
  clear: both;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #AA0000;
  font-weight: bold;
}