/**
 * Feuille de style pour le module galeries coté public
 *
 * 	- Liste des galeries
 * 	- Galerie
 * 	- Colonnes
 *
 */


/* Liste de galeries
----------------------------------------------------------*/

#galleries_list {
	position: static;
	zoom: 1;
}
#galleries_list:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
	.gallery {
		width: 250px;
		float: left;
		padding: 0.2em;
		margin: 0.5em;
		border: 1px solid #e9421c;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		text-align: center;
		min-height: 280px;
	}
		.gallery .gallery-title {
			background-color: #e9421c;
			color: #fff;
			margin: 0;
			padding: .5em;
			-moz-border-radius: 6px;
			-webkit-border-radius: 6px;
			border-radius: 6px;
		}
		.gallery .gallery-title a {
			text-decoration: none;
			color: #fff;
		}

		.gallery img {
			border: 2px solid #e9421c;
			margin: 0.8em;
		}


/* Liste d'éléments
----------------------------------------------------------*/

#items_list {
	position: static;
	zoom: 1;
}
#items_list:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
	.item {
		width: 250px;
		float: left;
		padding: 0.2em;
		margin: 0.5em;
		border: 1px solid #e9421c;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		text-align: center;
		min-height: 280px;
	}
		.item .item-title {
			background-color: #e9421c;
			color: #fff;
			margin: 0;
			padding: .5em;
			-moz-border-radius: 6px;
			-webkit-border-radius: 6px;
			border-radius: 6px;
		}
		.item .item-title a {
			text-decoration: none;
			color: #fff;
		}

		.item img {
			border: 2px solid #e9421c;
			margin: 0.8em;
		}


/* Élément
----------------------------------------------------------*/

#item {
	padding: 0.2em;
	margin: 0.5em;
	border: 1px solid #e9421c;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	text-align: center;
}
	#item .item-title {
		background-color: #e9421c;
		color: #fff;
		margin: 0;
		padding: .5em;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
	}
	#item .item-title a {
		text-decoration: none;
		color: #fff;
	}

	#item img {
		border: 2px solid #e9421c;
		margin: 0.8em;
	}

