/* classes générales */
* {
	margin: 0px;
	padding: 0px;
}

.clear { clear: both; }

.hide { display: none; }

/* balises */
body {
	text-align: center;
	color: #555;
	background-color: #000;
	font: 11px "Tahoma", sans-serif;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 12px;
}

h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

h4 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 8px;
}

h5 {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 6px;
}

h6 {
	font-size: 12px;
	font-weight: normal;
	margin-bottom: 4px;
}

label {
	font-weight: bold;
	line-height: 25px;
}

input, textarea, select, button {
	font: 11px "Tahoma", sans-serif;
	border: 1px solid #555;
	padding: 2px;
	width: 160px;
}

a {
	color: #888;
	/*text-decoration: underline;*/
}

a img {
	border: 0px;
	outline: none;
}

ul { list-style-type: none; }

/* structure du site */
#globalcontainer {
	margin: 70px auto 0px;
	width: 950px;
	text-align: left;
	padding: 20px;
}

	#header {
		height: 50px;
		line-height: 50px;
		padding-bottom: 5px;
		border-bottom: 1px solid #555;
	}
	
		#header h1 {
			float: left;
			width: 450px;
			font-variant: small-caps;
			font-size: 32px;
		}
		
			#header h1 a {
				text-decoration: none;
				color: #fff;
			}
		
				#header h1 a span {
					font-variant: normal;
					font-size: 18px;
					color: #555;
				}
			
			#header h1 a:hover {
				text-decoration: none;
			}
		
		#header ul#menu {
			float: left;
			width: 450px;
			padding-top: 5px;
			text-align: right;
			list-style: none;
		}
		
			ul#menu li {
				display: inline;
			}
			
				ul#menu li a {
					margin-left: 30px;
					font-size: 15px;
					font-weight: bold;
					text-decoration: none;
					color: #555;
				}
				
				ul#menu li a:hover {
					color: #aaa;
					padding-bottom: 2px;
					border-bottom: 2px solid #555;
				}
	
	
	
	#container {
		margin: 20px 0px;
		padding-bottom: 20px;
		border-bottom: 1px solid #555;
	}
	
		#left {
			float: left;
			width: 180px;
		}
		
			ul.categories {
				list-style: none;
				margin-bottom: 10px;
			}
			
				ul.categories li {}
				
					ul.categories li a {
						display: block;
						height: 30px;
						line-height: 30px;
						text-decoration: none;
						background-color: #111;
						color: #666;
						padding-left: 12px;
					}
					
					ul.categories li a:hover {
						background-color: #333;
						color: #666;
					}
		
		#right {
			float: left;
			width: 750px;
			padding-left: 20px;
			line-height: 15px;
			text-align: justify;
		}
		
		#right-full {
			width: 950px;
			line-height: 15px;
			text-align: justify;
		}
			
			p {
				margin-bottom: 10px;
			}
			
			p.pics {
				text-align: center;
			}
			
				p.pics img {
					margin: 10px;
					/*border: 1px solid #333;*/
					vertical-align: middle;
				}
			
			#column-one {
				float: left;
				width: 50%;
			}
			
			#column-two {
				float: left;
				text-align: right;
				width: 50%;
			}
			
			/* pour l'admin */
			ul#catList {
				margin-top: 20px;
				width: 300px;
			}
				
				ul#catList li {
					display: block;
					width: 300px;
					margin: 5px 0px;
					height: 30px;
					line-height: 30px;
					text-align: center;
					border: 1px solid #333;
					color: #666;
				}
				
				ul#catList li:hover {
					border: 1px dashed #333;
					color: #666;
					cursor: move;
				}
			
			/* formulaire de contact */
			.contact {
				margin-top: 20px;
			}
				
				.contact label {
					float: left;
					width: 150px;
					text-align: right;
					padding-right: 15px;
					margin-bottom: 10px;
					color: #fff;
				}
				
				.contact input, .contact textarea {
					float: left;
					width: 200px;
					padding: 3px;
					border: 1px solid #333;
					background: #fff;
					margin-bottom: 10px;
					font: 11px "Arial", sans-serif;
				}
				
				.contact button{
					margin-left: 165px;
					width: 100px;
					background-color: #fff;
					border: 1px solid #dedede;
					border-top: 1px solid #eee;
					border-left: 1px solid #eee;
					line-height: 130%;
					font-weight: bold;
				}
				
				.contact textarea {
					width: 320px;
					height: 110px;
				}


	#footer {
		text-align: right;
		line-height: 15px;
		font-weight: bold;
	}
