/* Style de la page login 
La structure de la page est :

.LoginPage
	.Header
		h1
		p
	.Inputs
		table
	.ErrorPanel
	.Actions
*/

.MainLogin
{
	width: 950px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: auto;
}

.MainLogin td 
{
	margin: 0px;
	padding: 0px;
}

/* Le conteneur principal */
.LoginPage
{
	background-image: url(./Images/img_PageConnexion.gif);
	background-repeat: no-repeat;
	background-position: 470px 100px;	
	border-bottom: solid 1px #BDBDBD;
	padding: 15px;
	font-family: Verdana;
	font-size: 10px;
	font-weight: bold;
	color: #4C4C4C;	
	margin-bottom: auto;
}

.LoginPage .Header
{
	border-top: solid 1px #BDBDBD;
	background: url(./Images/img_BandeauPageConnexion.gif) no-repeat;
	height: 120px;
}

/* on masque le contenu car l'image affiche déja tout */
.LoginPage h1, .LoginPage p
{
	border: none;
	font-size: 0.001px;
	color: White;
}

.LoginPage .Inputs
{
	background-color: #DFDDCC;
	border: solid 2px #C9C9C9;
	margin: 45px;
	padding: 20px;
	width: 260px;
}

.LoginPage .Inputs table
{
	padding: 0px;
	margin: 0px;
	border-spacing: 0px; /*ignoré par IE mais c pas grave car je met la valeur par défaut d'IE*/
	border-collapse: collapse;
	width: 100%;
}


.LoginPage .Inputs table td
{
	padding: 3px;
	margin: 0px;
}

.LoginPage .Inputs table td.Caption
{
	margin: 0px;
	text-align: right;
}

.LoginPage .Inputs table td.CaptionBig
{
	margin: 0px;
	text-align: right;
	width: 200px;
}

.LoginPage .Inputs table td.Data
{
	margin-top:auto;
	margin-bottom:auto;
	width: 145px;
}

.LoginPage .Inputs table td.DataSmall
{
	text-align: right;
	width: 20px;
}

.LoginPage .Inputs table td.Actions
{
	text-align: right;
}


.LoginPage .Inputs table td.Data input
{
	font-weight: bold;
	font-family: Verdana;
	color: #4C4C4C;
	font-size: 7.5pt;
	margin: 0px;
	width: 130px;
}

.LoginPage .ErrorPanel
{
	background-color: White;
	display: block;
	color: Red;
	margin: 1em;
	padding: 1em;
	border: solid 1px red;
}

.LoginPage .Link
{
    FONT-FAMILY: Verdana;
    FONT-SIZE: 10px;
    COLOR: #5387B9;
    FONT-WEIGHT: normal;
}

.Copyright
{
    FONT-FAMILY: Verdana;
    FONT-SIZE: 9px;
    COLOR: #7B7B7B;
    FONT-WEIGHT: normal;
    text-align: center;
}


