/* ---------------------------------------------------------------- */
/* *** Page *** */

/*
	head width ... 1000px
	body width ... 1000px
*/

#page
{
	position:			absolute;
	width:				100%;
	min-height:			100%;
}

/* ---------------------------------------------------------------- */
/* *** Head *** */

#head
{
	position:			relative;	
	width:				1000px;
}

#logo
{
}

#logo IMG
{
	width:				300px;
}

.flag
{
	margin:				5px;
}

.flag IMG
{
	width:				36px;
}

/* ---------------------------------------------------------------- */
/* *** Body *** */

#body
{
	width:				1000px;
}

#body_client
{
	width:				100%;
}

/* ---------------------------------------------------------------- */
/* *** Foot *** */

#foot
{
	margin-bottom:		50px;
}

#foot_client
{}

/* If the screen size is 1000px wide or less, ... */

@media only screen and (max-width: 1000px)
{
	#head
	{
	 width:				100%;
	}

	#body
	{
	 width:				100%;
	}
}

/* ---------------------------------------------------------------- */
/* */

.sepa
{
	height:				20px;
	margin-bottom:		20px;
	border-bottom:		1px solid #c0c0c0;
	width:				500px;
}

/* If the screen size is 500px wide or less, ... */

@media only screen and (max-width: 500px)
{
	#logo IMG
	{
	 width:				80%;
	}

	.flag IMG
	{
	 width:				24px;
	}

	.sepa
	{
	 width:				100%;
	}
}
