/* === conteneur des liens === */
.liens
{
	position: absolute;
	left: -30px; top: 0;
	width: 180px;
	height: 100%;
	
	background: rgba(255,255,255,0);
	transition: left .2s;

}
/* === liens === */
.lien
{
	width: 180px;
	height: 30px;
	
}

.lien > .text
{
	position: relative;
	left: 0; top: 0;
	display: block;
	width: 150px;
	height: 30px;
	background: #3498db; /*Bleu clair*/
	color: #fff;
	
	float: left;

	line-height: 30px;
	text-align: center;
	text-decoration: none;
	font-size: 1.05em;
	
	-webkit-transition: left .2s;
	-moz-transition: left .2s;
	-o-transition: left .2s;
	transition: left .2s;
}
.lien > .text:hover{left: 5px;}

.lien > .delete
{
	display: block;
	width: 29px;
	height: 30px;
	border-right: 1px solid #808080;
	float: left;
	cursor: pointer;
	
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	font-size: 1.4em;

	background: #e74c3c;
	color: #fff;
}
.lien > .delete:hover {
	background: #d8352c;
}