/* Conteneurs du corps de la page */

/* Partie sous l'en-tête */

#screen
{
	position: absolute; 
	left: 0px; 
	right: 0px; 
	top: 50px; 
	bottom: 140px; 
}

/* Blocs translucides */

.back-content, .border-content
{
	position: absolute; 
	left: 0px; 
	right: 0px; 
	top: 10px; 
	bottom: 32px; 
}

.content
{
	position: absolute; 
	left: 0px; 
	right: 0px; 
	top: 10px; 
	bottom: 0px; 
	overflow: auto;  
}

.table-border
{
	background-image: linear-gradient(to bottom, rgb(40, 40, 40) 0%, 
												rgb(20, 20, 20) 100%);
	padding: 4px; 
	border-radius: 4px; 
	border-left: 3px solid rgb(60, 60, 60); 
	border-top: 3px solid rgb(60, 60, 60); 
	border-right: 3px solid rgb(0, 0, 0); 
	border-bottom: 3px solid rgb(0, 0, 0); 
}

.table-border table 
{
	width: 100%; 
	border-collapse: collapse; 
}

.table-border th, .table-border td 
{ 
	padding: 10px; 
	border: rgb(100, 100, 100) 1px solid;
}

.table-border th 
{
	background-image: -webkit-linear-gradient(top, rgb(40, 40, 40) 10%, 
												rgb(65, 65, 65) 45%, 
												rgb(20, 20, 20) 50%, 
												rgb(35, 35, 35) 100%);
	background-image: linear-gradient(to bottom, rgb(40, 40, 40) 10%, 
												rgb(65, 65, 65) 45%, 
												rgb(20, 20, 20) 50%, 
												rgb(35, 35, 35) 100%);
												
	text-aligne: center; 
	text-shadow: 0px 2px 5px rgb(0, 0, 0); 
}

.table-border td 
{
	background-image: linear-gradient(to bottom, rgb(50, 50, 50) 0%, 
												rgb(20, 20, 20) 100%);
}

.table-border tr:hover td
{ 
	background-image: linear-gradient(to bottom, rgb(80, 80, 80) 0%, 
												rgb(50, 50, 50) 100%);
}
