/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* { 
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(js/boxsizing.htc); 
	/*	If you need support for IE7 and lower make 
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill */
}

/* BODY */

body {
	font: normal 1em/1.8em 'Open Sans', sans-serif;
	background: #333366;
	padding: 1.5em;
}

/* PAGE */

#page {
	background: #ececec;
	width: 100%;
}

/*	MAIN CONTAINER  */

.header { 
	 float: right;
	 width: 33.333%;
}

#adress {
	font: normal 1em/1.8em 'Open Sans', sans-serif;
	padding: 50px 0 0 40px;
	background: #ffff00;	
}

.navigation {
	font: normal 1em/1.8em 'Open Sans', sans-serif;
	padding: 50px 0 0 40px;
	background: #ffffd9;
}

.content, .content-box, .content-map {
	position: relative;
	z-index: 20;
	height: auto;
	width: auto;
	background: #ececec;
	overflow: auto;
}

.article {
	margin: 0 10.5% 0 10.5%;	/*  1260px / 120px */
	padding: 50px 0 50px 0;
}

.box {
	position: relative;
	z-index: 10;
	float: left;
	width: 50%;
}

.box-slider .item img, .hover {
    display: block;
    width: 100%;
    height: auto;
}

.content-box, .box-slider, .item {
	cursor: pointer;
}

h1#logo {
	width: 220px;
	height: 60px;
	margin-bottom: 10px;
	text-indent: -2000px;
	background: url(../images/logo-ar.png) no-repeat;
	background: url(../images/logo-ar.svg) no-repeat;
}

h1#logo a {
	display: block;
	width: 220px;
	height: 60px;
}

p.places {
	width: 18px;
	height: 25px;
	margin-top: 17px;
	text-indent: -2000px;
	background: url(../images/logo-gp.png) no-repeat;
	background: url(../images/logo-gp.svg) no-repeat;
}

p.places a {
	display: block;
	width: 18px;
	height: 25px;
}

.box-slider {
	position: relative;
	z-index: 30;
}

.box-slider .arrow {
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	padding: 25px;
	background: url('../images/bg-slider-picto.png') no-repeat right bottom;
	z-index: 35;
}

/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.header:after,
#adress:after, 
.navigation:after, 
.content:after,
.content-box:after,
.box-wrapper:after { 
	content: ""; 
	display: table; 
	clear: both; 
}


@media ( max-width: 960px ) {
	
body {
	padding: 1em;
}

.header {
	float: none;
	width: auto;
}

#adress {
	float: left;
	width: 50%;
}

.navigation {
	float: left;
	width: 50%;
}

.content, .content-box {
	width: 100%;
}

.article {
	margin: 0 40px 0 40px;	/*  1260px / 120px */
	padding-top: 50px;
}


}


@media ( max-width: 960px ) and ( max-device-width: 768px ) {

body {
	padding: 1em;
}

h1#logo {
	width: 176px;
	height: 48px;
	margin-bottom: 10px;
	text-indent: -2000px;
	background: url(../images/logo-ar.png) no-repeat;
	background: url(../images/logo-ar.svg) no-repeat;
}

h1#logo a {
	display: block;
	width: 176px;
	height: 48px;
}

#adress {
	padding: 40px 0 0 30px;	
}

.navigation {
	padding: 40px 0 0 30px;
}

.article {
	margin: 0 30px 0 30px;	/*  1260px / 120px */
	padding-top: 40px;
}

}

@media ( max-width: 470px ) {

body {
	padding: 0em;
}
	
.header {
	float: none;
	width: auto;
}

#adress {
	float: none;
	width: auto;
}

.navigation {
	float: none;
	width: auto;
}

.item {
	overflow: hidden;
}

}


@media only screen and ( max-width: 470px ) and ( orientation : portrait ) {
	
body {
	font: normal 1em/1.8em 'Open Sans', sans-serif;
}

}

@media only screen and ( max-width: 480px ) and ( orientation : landscape ) {
	
body {
	font: normal 0.8em/1.6em 'Open Sans', sans-serif;
}

#adress {
	padding: 30px 0 0 30px;	
}

.navigation {
	padding: 30px 0 0 30px;
}

}

@media only screen and ( device-width: 768px ) {

.box-slider .arrow {
	display: block;
}

}

@media only screen and (min-device-width: 320px) and (max-device-width: 470px) {

.box-slider .arrow {
	display: block;
}

}