/* ------------------------------------ */
/* Style a afficher sur Mobile          */
/* ------------------------------------ */
/* ---------- Structure des pages (Blocs div) */
#Zone_Conteneur
{
	position: relative;
	width: auto;
	left: 0;
	margin-left: 0px;
	background-color: #F1F2FA;
}

#Zone_Entete
{
	position: relative;
	width: auto;
	height: 64px;
	z-index: 0;
	background-color: #CCC;
}

#Zone_Logo
{
	position: absolute;
	top: 0px;
	right: 0px;
	width: auto;
	/*background-color: #F2B9EB;*/
}

#Zone_Contenu
{
	width: auto;
	background-color: #FC6;
}

#Zone_ColG
{
	display: none;
}

#Zone_ColM
{
	width: auto;
}

#Zone_ColD
{
	display: none;
}

#Zone_Pied
{
	display: none;
}

/* ---------- Balises HTML */
body
{
	margin: 0;
	background-color: #191919;
}

body, td
{
	font-size: 9pt;
	font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
	color: #800000;
}

/*
a
{
	color: #FF6;
	text-decoration: none;
	font-size: 12pt;
	background-color: #FC6;
	padding: 1px 3px 1px 3px;
	border: 1px #000 solid;
}

a:visited
{
	color: #F66;
	text-decoration: none;
}

a:hover
{
	color: #4DD74D;
	border-top: 1px solid #2360ab;
	border-bottom: 1px solid #931C44;
	background-color: #E2FFE2;
}
*/

/*
.MCG_Col { width: 320px; }
.MCG_boxMedium { width: 320px; }

a.formbutton { width: 320px; }
*/
.btFull { width: 280px; }


/* ---------- iPhone */
body 
{
  /* Turn off font resizing */
  -webkit-text-size-adjust: none; 
}

/* The button class defines properties for buttons that are either 30px or 46px high  */
a.formbutton
{
	/* Set a button to be a block so its height and width can be adjusted */
	/*display: block;*/
	/* Use the highest button height to ensure that text will vertically align on all buttons */
	line-height: 46px;
	/* A button will expand to the width of its parent cell if no width is specified */
	/*width: 150px;*/
	font-size: 20px;
	font-weight: bold;
	font-family: Helvetica, sans-serif;
	color: #fff;
	/*text-decoration: none;*/
	/*text-align: center;*/
	background-color: transparent;
	margin: 0;
	padding: auto;
	border: none;
}
a.formbutton:visited
{
	color: #FFF;
}


 /*  Builds a button using a 29x46 image */
.iPblue
{
  margin: 3px auto;
  color: #fff;
   /*  Put a 1 pixel blur black shadow below the button's text */
  text-shadow: #000 0px 1px 1px;
  
  /* The right and left borders are 14 pixels wide  */
  border-width: 0px 14px 0px 14px;     
  
  
  /* The leftButton image is split into three. Both left and right sides are 14 pixels wide.  */
  /* The remaining 1 pixel is used for the middle part of the image.   */
  /* The left and right sides will remain fixed while the middle part is scaling horizontally.  */
  -webkit-border-image: url(picts/iphone/blueButton.png) 0 14 0 14;  
}

/*  Builds a button using a 29x46 image */
.iPwhite 
{
  margin: 3px auto;
  border-width: 0px 14px 0px 14px;
  color: #000;
  
  /*  Put a 1 pixel blur white shadow below the button's text  */
  text-shadow: #fff 0px 1px 1px;  
  
  /* Note that the -webkit-border-image values are given as  0 14 0 14 and not 0px 14px 0px 14px */
  -webkit-border-image: url(picts/iphone/whiteButton.png) 0 14 0 14;
}

/*  Builds a button using a 29x46 image */
.iPblack  
{
  border-width: 0px 14px 0px 14px;
  color: #fff;
  
  /* Put a 1 pixel blur black shadow below the button's text */
  text-shadow: #000 0px 1px 1px;  
  -webkit-border-image: url(picts/iphone/grayButton.png) 0 14 0 14;
  margin: 3px auto;  
}

/*  Creates a button using a 18x30 image */
.iPblackLeft 
{
  margin: 3px auto;
  color: #fff;
  
  /* Put a 1 pixel blur black shadow below the button's text   */
  text-shadow: #000 0px 1px 1px;   
  border-width: 0px 5px 0px 12px;
  
  
  /* -webkit-border-image divides the leftButton image into 2 corners and middle part.  */
  /* The left corner is 12 pixels wide. The right corner is 5 pixels wide and the middle part is 1 pixel. */
  -webkit-border-image: url(picts/iphone/leftButton.png) 0 5 0 12;    
}

/* Creates a button using a 18x30 image */
.iPblackRight   
{
  margin: 3px auto;
  border-width: 0px 12px 0px 5px;
  color: #fff;
  text-shadow: #000 0px 1px 1px;
  
  /* -webkit-border-image divides the rightButton image into three parts. */
  /* The right and left corners of the image are respectively 12 pixels and 5 pixels wide. */
  /* This leaves 1 pixel for the midlle part of the image.    */
  -webkit-border-image: url(picts/iphone/rightButton.png) 0 12 0 5;
}

