/* Fichier CSS pour les liens */

.link-a li,
.link-b li,
.link-c li,
.link-d li {
	list-style-position:inside;
}

/* style A */

.link-a a {
	color : #007bc8;
}

.link-a a:hover {
	color : #129af0;
}

.link-a h2 a {
	color : #1d448a;
}

/* style B */

.link-b a {
	color : #007bc8;
}

.link-b a:hover {
	color : #007bc8 !important;
	text-decoration: underline;
}

.link-b h2 a {
	color : #1d448a;
}

.link-b h2 a:hover {
	color : #1d448a !important;
}


/* style C */

.link-c a {
	color : #007bc8;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
}

.link-c a:hover {
	color : #007bc8 !important;
	border-bottom-style: none;
}

.link-c h2 a {
	color : #1d448a;
	border-bottom-style: none;
}


/* Ressources */

.ressource-link a.video,
.ressource-link a.audio,
.ressource-link a.link,
.ressource-link a.gallery {
	font-size: .8em;
	display: inline-block;
	padding-left: 30px;
	background-position: 5px;
	background-repeat: no-repeat;
	border: 1px solid #ebebeb;
	padding-right: 10px;
	border-radius: 2px;
	margin-top: .5em;
	margin-bottom: .5em;
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}

.ressource-link a.video:hover,
.ressource-link a.audio:hover,
.ressource-link a.link:hover,
.ressource-link a.gallery:hover {
	border-color: #161616;
	color: #161616 !important;
}


.ressource-link a.video:before,
.ressource-link a.audio:before,
.ressource-link a.link:before,
.ressource-link a.gallery:before {
	position: relative;
	font: 14px FontAwesome;
	display: inline-block;
	color: #ccc;
	width: 20px;
	margin-right: 1px;
	margin-left: -23px;
	bottom: -1px;
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
}

	.ressource-link a.video:before {
		content: '\f03d'; 
	}
	
	.ressource-link a.audio:before {
		content: '\f028'; 
	}
	
	.ressource-link a.link:before {
		content: '\f0c1'; 
	}
	
	.ressource-link a.gallery:before {
		content: '\f00a';
	}
	
	
	.ressource-link a.video:hover:before,
	.ressource-link a.audio:hover:before,
	.ressource-link a.link:hover:before,
	.ressource-link a.gallery:hover:before {
		color: #161616 !important;
	}


.ressource-link a.video {
	/*background-image: url('img/icon-video.svg');*/
}

.ressource-link a.audio {
	/*background-image: url('img/icon-sound.svg');*/
}

.ressource-link a.link {
	/*background-image: url('img/icon-link.svg');*/
}

.ressource-link a.gallery {
	/*background-image: url('img/icon-gallery.svg');*/
}