/* CSS */


/* GENERAL
------------------------------------------------------------------- */
* {
        margin: 0;
        padding: 0;
        border: 0;
}

html {
		height: 100%;
}

 body {
        font: 0.75em "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #000;
		background-image: url("../img/fondweb.png");
		background-repeat: no-repeat;
		background-position: right top;
}

#global {
	position: relative;

	width: 750px;
	overflow: hidden; /* -> 2 */
	margin-left: auto;
	margin-right: auto; /* -> 3 */
}
 


/* STRUCTURE
------------------------------------------------------------------- */
#top {
        width: 750px;
        padding-top: 25px;
        padding-left: 8px;
		float: left;
		background:  transparent;
		margin-top: 15px;
}

#bigbox {
        width: 730px;
		min-height:200px;
		float: left;
		margin-top: 15px;
		margin-left: 8px;
		margin-right: 8px;
		margin-bottom: 15px;
		padding:0;
		background : url("../img/bgbox/bigbox.png");	
		text-align: justify;
		border: 3px solid white;
		box-shadow: 1px 1px 12px #555;
}

#bottom {
		position: relative;
		width: 742px;
		overflow: hidden; /* -> 2 */
		margin-left: auto;
		margin-right: auto; /* -> 3 */
		background: transparent;
		margin-top: 20px;
		padding: 10px;
		color: black;
		text-align: right;
}

#page {
        width: 740px;
        padding-top: 50px;
		background: transparent;
		padding-left : 10px;
}

/* TEXT
------------------------------------------------------------------- */
h1 {
        font-size: 3em;
		font-variant: small-caps;
		font-style: bold;
}


h2 {
        font-size: 1.5em;
		font-variant: small-caps;		
        margin: 7px 0 5px 0;
}

h3 {
        font-size: 1.3em;
        margin-bottom: 2px;
		font-variant: small-caps;
}

p {
        margin: 0 0 10px 0;
        line-height: 1.3em;
}

ul {
margin : 0 0 0 20px;
}

li {
padding-top : 3px;
}


/* LINKS
------------------------------------------------------------------- */
a:link, a:active, a:visited {
		
		text-decoration: none;
 		
 		color: black;
}

a:hover {

}


/* IMAGES
------------------------------------------------------------------- */

img {
		margin : 0;
		padding : 0;
}

.imgborder {
		border: 3px solid white;
		box-shadow: 1px 1px 3px #555;
}

.imgdelete {
		border: 3px solid #ff7979;
}


/* FORMS
------------------------------------------------------------------- */
input, textarea, select {
        font: 1em "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #4D4D4D;
        border-top: 1px solid #666;
        border-right: 1px solid #999;
        border-bottom: 1px solid #999;
        border-left: 1px solid #666;
        padding: 4px;
		margin: 0 0 0.5px 0;
        width: 240px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		-khtml-border-radius: 5px;
		
}

.button {
        width: auto;
        border: 1px solid #dcdcdc;
}

table {
	width: 100%;
	border-spacing: 0; /* px? ns 6? */
	border-collapse: collapse; /* ie6 ? */
}
table tr{background-color:#eee; height: 20px;} /*couleur par défaut, pour IE)*/
table tr:nth-child(odd)	{ background-color:#eee; } /*couleur des lignes pair*/
table tr:nth-child(even)	{ background-color:#fff; } /*couleur des lignes impair*/
table td{padding:2px;}
