
/* @group html reset */

/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	
	Eric Meyer					:: http://ericmeyer.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
	
-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}									

article, aside, figure, footer, header, hgroup, nav, section {display: block;}

/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {max-width: 100%;}

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

/* we use a lot of ULs that aren't bulleted. 
	don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before, 
blockquote:after, 
q:before, 
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
	white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom; *vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}
 
/* Accessible focus treatment
	people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {outline: none;}

small {font-size: 85%;}

strong, th {font-weight: bold;}

td, td img {vertical-align: top;} 

/* Make sure sup and sub don't screw with your line-heights
	gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label, 
input[type=button], 
input[type=submit], 
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button {width: auto; overflow: visible;}
 
/* scale images in IE7 more attractively */
.ie7 img {-ms-interpolation-mode: bicubic;}

/* prevent BG image flicker upon hover */
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }  
.clearfix:after { clear: both; }  
.clearfix { zoom: 1; }  



/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* new Linux- and Windows-friendly sans-serif font stack: http://mky.be/fontstack */
body {font: Helmet, Freesans, sans-serif;}

/* using local fonts? make sure to read up on Paul Irish's 
	Bulletproof @font-face syntax: http://mky.be/font-face/bulletproof/ */

/* we like off-black for text */
body, select, input, textarea {color: #333;}

a {color: #03f;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #364559; color: #fff; text-shadow: none;}
::selection {background: #364559; color: #fff; text-shadow: none;}

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #364559;} 

ins {background-color: #e43316; color: #000; text-decoration: none;}
mark {background-color: #e43316; color: #000; font-style: italic; font-weight: bold;}

/* @end */


* {
	margin: 0;
	padding: 0;
}

a:link, a:visited {
	text-decoration: none;
	-webkit-transition-duration: 222ms;
	-webkit-transition-timing-function: linear;
	-webkit-transition-property: color, background-color, box-shadow, margin;
	transition-duration: 222ms;
	transition-timing-function: linear;
	transition-property: color, background-color, box-shadow, margin;
}

html, body {
	background-color: #fff;
	color: #333;
	font-family: "Hoefler Text", Palatino, Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	line-height: 1.5em;
}

#wrapper {
	text-align: left;
	padding-top: 4.1875em;
	background-color: #f1f1ec;
}

header {
	margin: 0 0 4em 0;
	overflow: hidden;
}

header h1 {
	font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-transform: uppercase;
	font-size: 2.25em;
	margin: 0 0 0.111em 22%;
}

header p {
	color: #666;
	margin: 0 0 3em 22%;
}

header ul {
	list-style-type: none;
	overflow: hidden;
	font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-size: 0.875em;
	text-align: right;
	width: 15%;
	margin: 0 7% 0 0;
	float: left;
}

header ul li {
	line-height: 1.714em;
	text-transform: uppercase;
}

ul li a {
	color: #b4230f;
	text-decoration: none;
}

ul li a:hover {
	color: #11171b;
}

header div {
	float: left;
	width: 60%;
}

header p.en, header p.fr {
	margin: 0 9% 0 0;
	font-style: normal;
}

header p.en {
	color: #333;
}

header p.fr {
	font-style: italic;
}

header p.fr a {
	color: #333;
	background-color: #f8f8f8;
}

header p.en a {
	color: #666;
	background-color: #f8f8f8;
}

header p.fr a:hover, header p.en a:hover {
	color: #000;
	background-color: #f8f99b;
}

header p.fr+p.fr, header p.en+p.en {
	text-indent: 2em;
}

article {
	width: 100%;
	margin-top: 3em;
	overflow: hidden;
}

article h1 {
	font-size: 1.5em;
	margin-bottom: 1em;
	margin-left: 22%;
	font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-transform: uppercase;
}

article h1 a {
	text-decoration: none;
	color: #b4230f;
	background-color: transparent;
	text-shadow: 0 1px 0 #fff;
}

article h1 a:hover {
	color: #2e678b;
	background-color: #fff;
}

article p.en {
	width: 55%;
	margin: 0 9% 0 22%;
}

article p.fr {
	width: 55%;
	margin: 0 0 0 22%;
	color: #666;
	font-style: italic;
	text-indent: 2em;
	
}

article p a:link, article p a:visited {
	color: #666;
	background-color: #f8f8f8;
}

article p a:hover {
	color: #000;
	background-color: #f8f99b;
}

footer {
	margin-top: 5em;
	height: 2.5em;
	background: transparent url(../images/arbre.png) no-repeat 33% bottom;
}

.typekit {
	display: none;
}

#play {
	position: fixed;
	bottom: 0;
	right: 0;
}


/* Print styles!
-------------------------------------------------------------------------------*/
@media print {



}


/* Media queries!
-------------------------------------------------------------------------------*/





@media screen and (min-device-width: 1025px) and (min-width: 320px) and (max-width: 799px) {
	
body {
	font-family: "chaparral-pro", "Hoefler Text", Palatino, Georgia, "Times New Roman", Times, serif;
}

#wrapper {
	padding: 3.5625em 0 0 0;
}

header {
	margin: 0 5% 2.75em;
	padding-top: 2.3125em;
	padding-bottom: 1.0625em;
	border-bottom: 1px dotted #aaa;
}

header h1, header ul, article h1 {
	font-family: "franklin-gothic-urw-con-sc", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-weight: 500;
	margin-left: 5%;
}

header h1 {
	font-size: 2.25em;
	letter-spacing: 0.05em;
	margin-bottom: 0.2222em;
}

header p {
	font-size: 1.25em;
	margin: 0 0 2.45em 5%;
	
}

header ul {
	list-style-type: none;
	overflow: hidden;
	text-align: left;
	width: 90%;
	margin: 0 0 3.3571em 5%;
	float: none;
}

header ul li {
	display: inline-block;
	margin: 0 1em 0 0;
	letter-spacing: 0.1em;
	font-weight: 400;
}

header div {
	width: 100%;
}

header p.en, header p.fr {
	width: 87%;
	margin: 0 0 0 5%;
	font-style: normal;
	font-size: 1.25em; /*20px @ 16px*/
	float: none;
}

header p.en.last, header p.fr.last {
	margin-bottom: 1.2em; /*24px @ 20px*/
}

article {
	margin: 0 5% 3.875em;
	width: 90%;
}

article h1 {
	margin-bottom: 0.8333em;
	line-height: 1.5em;
}

article h1 a:link, article h1 a:visited {
	font-size: 1.1666em;
	letter-spacing: 0.05em;
	margin-left: -0.25em;
	padding: 0 0.25em;
	
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 1px 2px #f1f1ec;
}

article h1 a:hover {
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	margin-left: 0;
}

article h1 a:active {
	color: #000;
}

article p.en, article p.fr {
	margin: 0 0 0 5%;
	width: 90%;
	font-size: 1.25em;
}

#play {
	font-family: Verdana, "Lucida Grande", Lucida, sans-serif;
	font-size: 0.625em;
	letter-spacing: 0.1em;
	width: 7em;
	text-align: center;
	height: 1.4em;
	line-height: 1.5em;
	padding: 0;
	background-color: rgba(0,0,0,0.25);
	color: #fff;
	bottom: 3.2em;
	right: -2.4em;
	-webkit-transform: rotate(-90deg);
}

}



@media screen and (min-device-width: 1025px) and (min-width: 800px) and (max-width: 999px) {

body {
	font-family: "chaparral-pro", "Hoefler Text", Palatino, Georgia, "Times New Roman", Times, serif;
}

#wrapper {
	padding-top: 0;
}

header {
	margin: 0 0 4.25em 0;
	padding: 7.375em 0 4.0625em 0;
	background-color: #fff;
	border-bottom: none;
	
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

header p {
	font-size: 1.25em;
	line-height: 1.2em;
}

header h1, header ul, article h1 {
	font-family: "franklin-gothic-urw-con-sc", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-weight: 500;
}

header h1 {
	font-size: 2.25em;
	letter-spacing: 0.05em;
	margin-bottom: 0.2222em;
}

header ul {
	padding-top: 0.0714em;
}

header ul li {
	letter-spacing: 0.1em;
	font-weight: 400;
}

header ul li a {
	color: #7587a4;
}

header div {
	float: left;
	width: 64%;
}

header p.en.last, header p.fr.last {
	margin-bottom: 1.2em;
}

article {
	margin-top: 3.8125em;
}

article h1 {
	margin-bottom: 0.9583em;
}

article h1 a:link, article h1 a:visited {
	font-size: 1.1666em;
	line-height: 1.2857em;
	letter-spacing: 0.05em;
	margin-left: -0.25em;
	padding: 0 0.25em;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 1px 2px #f1f1ec;
}

article h1 a:hover {
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	margin-left: 0;
}

article h1 a:active {
	color: #000;
}

article p {
	font-size: 1.25em;
	line-height: 1.2em;
}

#play {
	font-family: Verdana, "Lucida Grande", Lucida, sans-serif;
	font-size: 0.625em;
	letter-spacing: 0.1em;
	width: 7em;
	text-align: center;
	height: 1.4em;
	line-height: 1.5em;
	padding: 0;
	background-color: rgba(0,0,0,0.25);
	color: #fff;
	bottom: 0.4em;
	right: 0.4em;
}

}



@media screen and (min-device-width: 1025px) and (min-width: 1000px) and (max-width: 1049px) {

::-moz-selection{background: #2587fa; color: #fff; text-shadow: none;}
::selection {background: #2587fa; color: #fff; text-shadow: none;}

body {
	font-family: "chaparral pro";
}

#wrapper {
	
	padding-top: 0;
	background-color: #fff;
}

header {
	background-color: transparent;
	margin: 0 auto 40px;
	padding: 0 0 48px 0;
	position: relative;
	width: 100%;
	border-bottom: 1px dashed #ccc;
	
		
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

header h1, article h1 {
	font-weight: bold;
	text-transform: capitalize;
	letter-spacing: 0;
}

header h1 {
	margin: 0;
	padding: 240px 0 24px 120px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	height: 35px;
	font-size: 72px;
	letter-spacing: -0.05em;
	line-height: 72px;
	color: #fff;
	background-color: #d0e9e8;
	position: relative;
	z-index: 100;
	
}

header p {
	margin: 0;
	padding: 10px 0 88px 126px;
	font-weight: 200;
	width: 100%;
	height: 34px;
	color: rgba(255,0,0,0.6);
	background-color: #d0e9e8;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-size: 34px;
	line-height: 34px;
	letter-spacing: -0.05em;

}

header ul {
	float: none;
	width: 600px;
	margin: -24px 0 0 118px;
	padding-right: 0;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-align: left;
}

header ul li {
	display: inline-block;
	margin: 0 0.5em 0 0;
	font-size: 16px;
	text-transform: lowercase;
	letter-spacing: 0;
	font-weight: 400;
}

header ul li a {
	display: block;
	padding: 0 8px;
	background-color: transparent;
	color: #69a3ad;
	line-height: 34px;
}

header ul li a:hover {
	color: #888;
}

header div {
	float: none;
	width: 100%;
	margin-top: 64px;
}

header p.en, header p.fr {
	margin: 0 0 0 126px;
	padding: 0;
	border: none;
	width: 55%;
	height: auto;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height: 24px;
	color: rgba(0,0,0,0.7);
	background-color: transparent;
	box-shadow: none;
	text-shadow: none;
}

header p.fr {
	color: rgba(0,0,0,0.55);
}

header p.fr+p.fr, header p.en+p.en {
	text-indent: 1.5em;
}

header p.fr a, header p.en a {
	font-size: 14px;
	letter-spacing: 0.2em;
	color: #666;
	background-color: rgba(255,255,255,0.2);
}

header p.en a {
	color: #333;
}

header p.fr a:hover, header p.en a:hover {
	color: #000;
	background-color: #f8f99b;
}

header p.en.last {
	margin-bottom: 32px;
}

header p.fr.last {
	margin-bottom: 0;
}

article {
	margin: 2em 0 37px 126px;
	padding: 0 0 2em;
	width: 66%;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

article.last {
	border-bottom: none;
}

article h1 {
	margin: 0 0 24px 0;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}

article h1 a:link, article h1 a:visited {
	font-size: 48px;
	color: #b2dee0;
	line-height: 48px;
	letter-spacing: -0.05em;
	box-shadow: none;
	text-shadow: 0 -1px 0 rgba(255,255,255,0.4);
	text-shadow:none;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 500ms;
}

article h1 a:hover {
	background-color: transparent;
	box-shadow: none;
}

article p.en, article p.fr {
	margin: 0;
	width: 86%;
	font-size: 16px;
	line-height: 24px;	
}

article p.en a, article p.fr a {
	background-color: rgba(0,0,0,0.05);
}

footer {
	background: none;
}

#play {
	background-color: #d0e9e8;
	color: #74b3bd;
	padding: 2em 0;
	width: 6em;
	height: 2em;
	text-align: center;
	bottom: -0.3em;
	right: -0.3em;
	text-transform: lowercase;
	font: italic bold 14px/2em Georgia, "Times New Roman", Times, serif;
	
	-webkit-border-radius: 3em;
	
	-webkit-animation-name: dada;
	-webkit-animation-duration: 30s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	
}

@-webkit-keyframes dada {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

}



@media screen and (min-device-width: 1025px) and (min-width: 1050px) and (max-width: 1270px) {

::-moz-selection{background: #2587fa; color: #fff; text-shadow: none;}
::selection {background: #2587fa; color: #fff; text-shadow: none;}

body {
	font-family: "Menlo", "Vera Sans Mono", "Panic Sans", Consolas, "Andale Mono", Courier, monospace;
}

#wrapper {
	background-color: #e8f0f7;
	padding-top: 42px;
}

header {
	background-color: transparent;
	margin: 0 2em 40px;
	padding: 2em;
	position: relative;
	width: 66%;
	
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

header h1, article h1 {
	font-family: "Menlo", "Vera Sans Mono", "Panic Sans", Consolas, "Andale Mono", Courier, monospace;
	font-weight: normal;
	font-size: 16px;
}

header h1 {
	margin: 0;
	padding: 0 0 0 8px;
	width: 400px;
	height: 35px;
	border-bottom: 1px solid rgba(0,0,0,0.15);
	font-size: 14px;
	line-height: 32px;
	color: #333;
	letter-spacing: 0.15em;
}

header p {
	font-size: 12px;
	line-height: 34px;
	margin: 0;
	padding: 0 0 0 8px;
	width: 400px;
	height: 34px;
	color:  #666;
}

header ul {
	float: none;
	width: 400px;
	margin: 0 0 42px 0;
	padding-right: 8px;
	border-top: 1px solid rgba(0,0,0,0.15);
	font-family: "Menlo", "Vera Sans Mono", "Panic Sans", Consolas, "Andale Mono", Courier, monospace;
	text-align: left;
}

header ul li {
	display: inline-block;
	margin: 0 0.5em 0 0;
	font-size: 10px;
	text-transform: lowercase;
	letter-spacing: 0;
	font-weight: 400;
}

header ul li a {
	display: block;
	padding: 0 8px;
	background-color: transparent;
	color: #999;
	line-height: 34px;
}

header ul li a:hover {
	color: #ea3117;
}

header div {
	float: none;
	width: 86%;
	margin-top: 32px;
}

header p.en, header p.fr {
	margin: 0;
	padding: 0;
	border: none;
	width: 100%;
	height: auto;
	font-size: 14px;
	line-height: 24px;
}

header p.fr {
	color: #666;
}

header p.fr a {
	color: #888;
	background-color: rgba(255,255,255,0.5);
}

header p.en a {
	color: #333;
	background-color: rgba(255,255,255,0.5);
}

header p.fr a:hover, header p.en a:hover {
	color: #000;
	background-color: #f8f99b;
}

header p.fr.last {
	margin-bottom: 0;
}

article {
	margin: 2em 0 37px 4em;
	padding: 0 0 2em;
	border-bottom: 3px double rgba(0,0,0,0.15);
	width: 66%;
}

article.last {
	border-bottom: none;
}

article h1 {
	margin: 0 0 24px 0;
}

article h1 a:link, article h1 a:visited {
	font-size: 16px;
	color: #2190ee;
	line-height: 24px;
	letter-spacing: 0.1em;
	box-shadow: none;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 500ms;
}

article h1 a:hover {
	background-color: transparent;
	box-shadow: none;
	margin-left: 1em;
}

article p.en, article p.fr {
	margin: 0;
	width: 86%;
	font-size: 14px;
	line-height: 24px;	
}

footer {
	background: none;
}

#play {
	background-color: #2587fa;
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	-webkit-transform: rotate(-45deg);
	width: 20em;
	height: 2em;
	line-height: 2em;
	text-align: center;
	bottom: 1.6em;
	right: -7.4em;
}

}

@media screen and (min-device-width: 1025px) and (min-width: 1270px) and (max-width: 1400px) {

body, html {
	background-color: #920a08;
}

#wrapper {
	padding-top: 0;
}

header {
	display: none;
}

#content {
	text-indent: -9999em;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 507px;
	margin: -100px 0 0 -100px;
	border-top: 1px solid rgba(255,255,255,0.15);
	
	-webkit-animation-name: coco;
	-webkit-animation-duration: 4s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in;
}

#content:before {
	content: "interlude";
	font-size: 1.4em;
	font-family: futura, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1em;
	text-align: center;
	text-indent: 0;
	
	display: block;
	width: 400px;
	height: 40px;
	position: absolute;
	top: -71px;
	left: -90px;
}

@-webkit-keyframes coco {
	0% { color:rgba(255,255,255,0.1);}
	50% { color:rgba(255,255,255,0.6);}
	100% { color:rgba(255,255,255,0.1);}
}


article p.fr {
	display: none;
	
}

footer {
	display: none;
}

#play {
	font-size: 1em;
	text-transform: lowercase;
	font-weight: 200;
	letter-spacing: 0.1em;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #f83819;
	right: 6px;
	background-color: transparent;
}

}


@media screen and (min-device-width: 1025px) and (min-width: 1401px) {

body {
	font-family: "chaparral-pro";
}

#wrapper {
	padding-top: 0;
	margin-top: 0;
	border-top: none;
	overflow: hidden;
}

header {
	margin: 167px 0 73px 8%;
	padding: 70px 0 65px 0;
	background-color: #fff;
	border:none;
	
	width: 33%;
	float: left;
	
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.8);
	-moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.8);
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.8);
	
	-webkit-transform: perspective(300px), rotateY(10deg);
}

header h1 {
	margin-left: 18%;
}

header p {
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 49px 18%;
}

header h1, header ul, article h1 {
	font-family: "franklin-gothic-urw-con-sc", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-weight: 500;
}

header h1 {
	font-size: 36px;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

header ul {
	list-style-type: none;
	overflow: hidden;
	text-align: left;
	width: 100%;
	margin: 0 0 46px 18%;
	float: none;
}

header ul li {
	display: inline-block;
	margin: 0 1em 0 0;
	font-size: 14px;
	letter-spacing: 0.1em;
	font-weight: 400;
}

header ul li a {
	color: #7587a4;
}

header div {
	width: 100%;
}

header p.en, header p.fr {
	width: 60%;
	margin: 0 0 0 18%;
	float: none;
}

header p.en.last, header p.fr.last {
	margin-bottom: 24px;
}

#content {
	width: 58%;
	float: left;
	margin-top: 56px;
}


article {
	margin-top: 55px;
	margin-bottom: 58px;
}

article h1 {
	
	
	margin-bottom: 14px;
	margin-left: 20%;
}

article h1 a:link, article h1 a:visited {
	font-size: 56px;
	line-height: 72px;
	letter-spacing: -0.01em;
	margin-left: -0.25em;
	padding: 0 0.25em;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0 1px 2px #f1f1ec;
}

article h1 a:hover {
	background-color: #fcfcfc;
	box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	margin-left: 0;
}

article h1 a:active {
	color: #000;
}

article p {
	font-size: 20px;
	line-height: 24px;
}

article p.en, article p.fr {
	margin-left: 20%;
}

footer {
	clear: both;
	padding-top: 40px;
}

.typekit {
	display: inline;
	padding-left: 8%;
	color: #aaa;
	font-size: 14px;
}

#play {
	font-family: Verdana, "Lucida Grande", Lucida, sans-serif;
	font-size: 10px;
	letter-spacing: 0.1em;
	width: 7em;
	text-align: center;
	height: 1.4em;
	line-height: 1.5em;
	padding: 0;
	background-color: rgba(0,0,0,0.25);
	color: #fff;
	bottom: 0.4em;
	right: 0.4em;
}

}


@media screen and (max-device-width: 480px) {
	
html, body {
	line-height: 21px;
}
	
#wrapper {
	text-align: left;
	padding-top: 0;
}

header {
	margin: 0 0 63px 0;
	padding: 80px 0 14px 0;
	background-color: #fff;
	
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
}

header h1 {
	text-transform: uppercase;
	font-size: 24px;
	margin: 4px 0 6px 18px;
}

header p {
	color: #666;
	margin: 0 0 19px 18px;
	font-size: 16px;
}

header ul {
	list-style-type: none;
	overflow: hidden;
	font-size: 12px;
	text-align: left;
	width: 90%;
	margin: 0 0 62px 12px;
	float: none;
}

header ul li {
	line-height: 24px;
	text-transform: uppercase;
	display: inline-block;
}

ul li a {
	color: #b4230f;
	text-decoration: none;
	padding: 0 6px;
}

ul li a:hover {
	color: #11171b;
}

header div {
	float: none;
	width: 90%;
	margin: 0 0 0 18px;
}

header p.en, header p.fr {
	margin: 0;
}

header p.en.last, header p.fr.last {
	margin-bottom: 21px;
}

article {
	margin-top: 57px;
}

article h1 {
	font-size: 24px;
	margin-bottom: 27px;
	margin-left: 18px;
	font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	text-transform: uppercase;
	font-weight: 200;
}

article p.en {
	width: 90%;
	margin: 0 0 0 18px;
	
}

article p.fr {
	width: 90%;
	margin: 0 0 0 18px;
}

footer {
	background-size: 30px auto;
}

#play {
	display: none;
}
		
}

@media screen and (max-device-width: 480px) and (orientation:landscape) {

header h1 {
	margin: 4px 0 6px 24px;
}

header p {
	margin: 0 0 19px 24px;
}

header ul {
	margin: 0 0 62px 18px;
}

header div {
	margin: 0 0 0 24px;
}

article h1 {
	margin-left: 24px;
}

article p.en {
	margin: 0 0 0 24px;
}

article p.fr {
	margin: 0 0 0 24px;
}

}




@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {


html, body {
	background-color: #fff;
	color: #333;
	font-family: "chaparral-pro", Palatino, Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	line-height: 24px;
}

#wrapper {
	padding: 96px 0 0 0;
}

header {
	margin: 0;
	padding: 68px 0 24px;
}

header h1 {
	padding-top: 2px;
	margin: 0 0 8px 14%;
}

header p {
	font-size: 18px;
	line-height: 24px;
	margin: 0 0 73px 14%;
}

header h1, header ul, article h1 {
	font-family: "franklin-gothic-urw-con-sc", "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	font-weight: 500;
}

header ul {
	float: none;
	width: 80%;
	margin: 0 0 95px 14%;
	text-align: left;
}

header ul li {
	display: inline-block;
	margin-right: 10px;
}

header ul li a {
	margin: 0 5px 0 0;
}

header div {
	float: none;
	margin: 0 0 0 14%;
	width: 72%;
}

header p.en, header p.fr {
	margin: 0 0 0 0;
}

header p.en.last, header p.fr.last {
	margin-bottom: 24px;
}

article {
	margin-top: 42px;
	font-size: 18px;
}

article h1 {
	font-size: 32px;
	margin-left: 14%;
	margin-bottom: 30px;
}

article p.en {
	width: 72%;
	margin: 0 0 0 14%;
}

article p.fr {
	width: 72%;
	margin: 0 0 24px 14%;
}

footer {
	margin-top: 73px;
	height: 50px;
	background: transparent url(../images/arbre.png) no-repeat 33% bottom;
}

.typekit {
	display: inline;
	padding-left: 50%;
	margin-top: 8px;
	color: #aaa;
	font-size: 14px;
}

}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {


#wrapper {
	padding: 72px 0 0 0;
}

header p {
	float: left;
}

header ul {
	width: 32%;
	float: right;
	margin-right: 12%;
	padding-top: 1px;
}

header div {
	clear: both;
	width: 55%;
}

header p.en, header p.fr {
	float: none;
}

article p.en, article p.fr {
	width: 55%;
}

}



