/* general stuff */
html {
	height: 100%;
}
body {
	font-family: 'Open Sans';
	font-size: 14px;
	height: 100%;
	margin: 0px;
	padding: 0px;
}
h1, h2 {
	font-family: 'Advent Pro';
	font-size: 40px;
	font-weight: normal;
	padding: 0px;
}
h1 {
	font-size: 50px;
	margin: 40px 0px;
	text-shadow: 1px 1px 2px #89DD44;
}
h2 {
	font-size: 20px;
	margin: 50px 0px;
}
h3 {
	font-family: 'Advent Pro';
	font-size: 40px;
	margin: 0px;
	padding-left: 50px;
	text-shadow: 1px 1px 2px #89DD44;
}
div {
	position: relative;
}
a {
	color: #000000;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;
}
a:hover {
	transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;
}
.cleaner {
	clear: both;
}
input[type="text"], input[type="password"], textarea {
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box;
}
input[type="checkbox"], input[type="radio"] {
	vertical-align: middle;
}
input[type="button"], input[type="submit"], button, label {
	cursor: pointer;
}
.generic_button {
	background: #FFFFFF;
	border: none;
	box-shadow: 0px 0px 8px #666666;
	color: #000000;
	font-family: 'Advent Pro';
	font-size: 30px;
	font-weight: bold;
	margin: 0px;
	padding: 10px 40px;
	transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;
}
.generic_button:hover {
	background: #89DD44;
	color: #000000;
	transition: all 0.5s ease; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease;
}

/* popups */
#popup_container, #popup_mask, #popup_content {
	height: 100%;
	left: 0px;
	margin: 0px;
	padding: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
}
#popup_container {
	z-index: 99;
}
#popup_mask {
	background-color: #FFFFFF;
	display: none;
	opacity: 0.9;
	z-index: 1;
}
#popup_content {
	overflow: auto;
	z-index: 2;
}
a.close_popup {
	background: url('../images/close.png');
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 3px;
	display: block;
	height: 50px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 50px;
	z-index: 9;
}
a.close_popup:hover {
	background-color: #89DD44;
}

#main_container {
	height: 100%;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
#left_panel {
	background-color: #FFFFFF;
	background-image: url('../images/hexa_background.png');
	background-position: left top;
	background-repeat: repeat;
	box-shadow: 0px 0px 8px #666666;
	color: #444444;
	height: 100%;
	left: 0px;
	margin: 0px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0px;
	position: fixed;
	text-align: center;
	top: 0px;
	width: 300px;
	z-index: 100;
}
#left_panel p {
	margin: 30px 5px;
}
#left_panel a {
	border-radius: 3px;
	color: #89DD44;
	padding: 3px 5px;
}
#left_panel a:hover {
	background-color: #89DD44;
	color: #444444;
}
#logo {
	background: url('../images/logo.png');
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	display: block;
	height: 250px;
	margin: 0px;
	padding: 0px;
	width: 300px;
}
#loading {
	background: #FFFFFF;
	display: block;
	font-family: 'Advent Pro';
	font-size: 40px;
	position: fixed;
	right: 60px;
	top: 60px;
	z-index: 99;
}
#main_menu {
	height: 100%;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 7;
}
.main_menu_line {
	height: 25%;
	margin-left: 300px;
	left: 100%;
	padding: 0px;
}
.main_menu_line_content {
	height: 100%;
	margin: 0px;
	padding: 0px;
}
#ligne_apropos {
	background-color: #DDDDDD;
	background-image: url('../images/hexa_background.png');
	background-position: left top;
	background-repeat: repeat;
}
#ligne_blog {
	background-color: #FFFFFF;
	background-image: url('../images/hexa_background.png');
	background-position: left top;
	background-repeat: repeat;
}
#ligne_cv {
	background-color: #DDDDDD;
	background-image: url('../images/hexa_background.png');
	background-position: left top;
	background-repeat: repeat;
}
#ligne_contact {
	background-color: #FFFFFF;
	background-image: url('../images/hexa_background.png');
	background-position: left top;
	background-repeat: repeat;
}
.main_menu_line_content a {
	display: block;
	font-family: 'Advent Pro';
	font-size: 70px;
	font-style: italic;
	height: 100%;
	letter-spacing: 20px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: right;
}
.main_menu_line_content a:hover {
	padding-right: 80px;
}
#page_content {
	display: none;
	height: 100%;
	width: 100%;
	z-index: 8;
}
#article {
	margin-left: 300px;
	padding: 10px 30px;
}
