@charset "utf-8";
/* CSS Document */
/*
charte du site
couleur: #009BDD
*/
/*  Elements balise */
.col {
	width: 33%;
    float: left;
}
.video_list {
    width: 300px;
    position: relative;
    z-index: 1;
    height: 170px;
    overflow: hidden;
    border: 1px solid #444;
    margin: 1em auto;
	box-shadow: -3px -3px 25px -8px #999;
        transition: all 1.8s;
    border-radius: 8px;
}
.video_list .titre {
    position: absolute;
    left: 0px;
    bottom: -2em;
    background: rgba(0,0,0,0.5);
    width: 100%;
	visibility:hidden;
	transition: all 2s;
}

.video_list .titre h3:before {
	content: '';
	width:0.6em;
	height:100%;
	position:absolute;
	left:0px;
	top:0px;
	background:#009bdd;
}

.video_list .titre h3 {
    font-size: 12px;
    margin: 0.6em 0 0.4em 1em;
    color: #fff;
    font-weight: normal;
    letter-spacing: 1px;
}

.video_list:hover {
border: 1px solid #009bdd;
    box-shadow: 0px 0px 25px -4px #00bdff;
    transition: all 0.9s;
	
}
.video_list:hover .titre {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background: rgba(0,0,0,0.5);
    width: 100%;
	visibility: visible;
	transition: all 1s;
}