﻿* {
	margin: 0;
	padding: 0;
}

body {
	background : #000;
}


#page_index{
	margin : auto;
	width : 80%;
	height : 100%;
	background : url('../images/fond.jpg');

}
	#page_index #clone {
		width : 50%;
		height : 100%;
	}

#grad_gauche, #grad_droite {
	width: 100px;
	height : 100%;
	position: absolute;
	top: 0;
}
	#grad_gauche {
		left: 10%;
		background: url('../images/grad_gauche.png') repeat-y;
	}
	#grad_droite {
		right: 10%;
		background: url('../images/grad_droite.png') repeat-y;
	}

img{
	border-style : none; /*Pour IE sinon ça s'affiche une bordure horrible*/
    width:50px;
    height:55px;
    left:100px;
    top:100px;
	margin-left: 35%;
	margin-top : 25%;

}

/*Transition du lien */
a {
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
a:hover {
	opacity : 0.7;
}

