* {
	margin: 0;
	padding: 0;
}

html, body {
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000;
	background-color: #FFF;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-image: linear-gradient(bottom, #FFF 30%, #DDD 70%);
	background-image: -o-linear-gradient(bottom, #FFF 30%, #DDD 70%);
	background-image: -moz-linear-gradient(bottom, #FFF 30%, #DDD 70%);
	background-image: -webkit-linear-gradient(bottom, #FFF 30%, #DDD 70%);
	background-image: -ms-linear-gradient(bottom, #FFF 30%, #DDD 70%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0.3, #FFF), color-stop(0.7, #DDD) );
}

img {
	border: none;
}

.clear {
	clear: both;
}

#main {
	background: #FFF url("loader.gif") no-repeat 50% 50%;
	margin: 0 12px;
	padding: 16px;
	min-height: 100%;
	-webkit-box-shadow: 0 0 4px #666;
	box-shadow: 0 0 4px #666;
}

	#main div.category {
		margin: 32px 0 0;
	}

		#main div.category:first-child {
			margin: 0;
		}

	#main h3 {
		margin: 0 0 16px 0;
		padding: 0 8px;
		line-height: 32px;
		background-color: #666;
		color: #FFF;
		-webkit-border-top-right-radius: 6px;
		-webkit-border-bottom-left-radius: 6px;
		-moz-border-radius-topright: 6px;
		-moz-border-radius-bottomleft: 6px;
		border-top-right-radius: 6px;
		border-bottom-left-radius: 6px;
	}

	#main dt {
		background-repeat: no-repeat;
		background-position: 0 50%;
		background-size: 16px 16px;
	}

	#main a {
		display: block;
		margin: 0 0 0 20px;
		padding: 0 8px;
		line-height: 24px;
		font-size: 14px;
		color: #000;
		text-decoration: none;
	}

		#main a:hover {
			background-color: #EEE;
			color: #000;
			-webkit-border-radius: 4px;
			-moz-border-radius: 4px;
			border-radius: 4px;
		}

		#main a:visited {
			color: #AF2020;
		}

		#main a span {
			font-style: italic;
			color: #666;
		}

	#main div.separator {
		margin: 4px auto;
		border-bottom: 1px dashed #999;
	}

#menu {
	display: none;
	position: fixed;
	top: 50%;
	right: 0;
	background-color: #333;
	opacity: 0.85;
	z-index: 999;
	overflow: hidden;
	-webkit-border-top-left-radius: 6px;
	-moz-border-radius-topleft: 6px;
	border-top-left-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-left-radius: 6px;
	-webkit-box-shadow: 2px 2px 4px #666;
	box-shadow: 2px 2px 4px #666;
}

	#menu > div {
		background: url("picto_menu.png") no-repeat 16px 50% rgba(0, 0, 0, 0);
		background-size: 32px 32px;
		padding: 16px 16px 16px 48px;
		color: #FFF;
		font-size: 14px;
		font-weight: bold;
		line-height: 24px;
		text-decoration: none;
		cursor: pointer;
	}

	#menu ul {
		margin: 0;
		padding: 0 16px 16px;
	}

		#menu ul li {
			list-style: none;
			margin: 4px 0 0 0;
		}

			#menu ul li:first-child {
				margin: 0;
			}

			#menu ul li a {
				display: block;
				padding: 0 8px;
				line-height: 24px;
				font-size: 14px;
				font-weight: bold;
				color: #FFF;
				text-decoration: none;
			}

				#menu ul li a:hover {
					background-color: #FFF;
					color: #333;
					-webkit-border-radius: 4px;
					-moz-border-radius: 4px;
					border-radius: 4px;
				}
