/*Pages*/
.title-in{
	font-weight: 700;
	color: #444;
}
.title-in-2{
	font-size: x-large;
	font-weight: 700;
	margin-bottom: 20px
}


/*CSS album*/
.hsn-album{
    height: 230px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}
.hsn-album-img{
    position: relative;
    height: 152px;
	overflow: hidden;
}

.hsn-album-caption{
    padding: 10px 5px;
}
.hsn-album-caption a{
    color: #444;
    font-weight: 700;
    font-size: 14px;
}
.nbre-photos{
    color: #777;
	font-size: small;
}

/*Diapo*/
.diapo{
    display: none;
}
.en-cours{
    display: block;
    height: 100%;
    width: 100%;
}

.hsn-photo-viewer{
    background: #f5f5f5;
    height: 550px;
    padding: 0px;
    position: relative;
}
.hsn-photo-viewer .diapo img{
	height: auto;
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: auto;
}
.hsn-diapo-caption{
    font-size: larger;
    color: #fff;
    text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #222222;
	-webkit-transition: background-color .5s;
	-moz-transition: background-color .5s;
	transition: background-color .5s;
	padding: 0 65px;
}
.dl-img, .dl-img:hover, .dl-img:focus{
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	display: block;
	height: 35px;
	width: 35px;
	padding-top: 5px;
	text-align: center;
	background-color: rgba(0,0,0,.7);
}
/*Controls*/
.hprev, .hnext{
    position: absolute;
    top: 45%;
    width: 60px;
    height: 60px;
    color: #000;
    background: #fff;
    display: block;
    text-align: center;
    padding-top: 5px;
    z-index: 1000;
    opacity: 0.1;
    -webkit-transition: all .5s ease-in-out ;
    -moz-transition: all .5s ease-in-out ;
    transition: all .5s ease-in-out ;
}
.hprev:focus, .hnext:focus{
    color: #000;
}
.hsn-photo-viewer:hover .hprev, .hsn-photo-viewer:hover .hnext{
    opacity: 1;
    box-shadow: 0 0 3px #444;
}
.hsn-photo-viewer:hover .hsn-diapo-caption{
	background-color: rgba(0,0,0,.7);
}
.hprev{
    left:-20px;
}
.hnext{
    right: -20px;
}

