html, body
{
   margin: 0;
   padding: 0;
   height: 100%;
   font-family: 'Open Sans', sans-serif;
}
body
{
    display: table;
    width: 100%;
}
/*--------------------------------------
/* ALIGN 3 div LEFT - MID - RIGHT 
/*------------------------------------*/ 
#header 
{
    position: relative;
    height: 42px;
    width: 100%;
    margin: 0;
    background: #000;
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: #999;
}
#left, #right, #center
{
    position: absolute;
    top: 0;
}
#left 
{
    left: 0;
    background: #000;
    min-width: 340px;
}
#center
{
    left:40%;
    background: #000;
    min-width: 480px;
}
#right 
{
    right: 0;
    background: black;
}
#footer
{
    display: table-row;
    height: 40px;
    width: 100%;
}
/*--------------------------------------
/* FORMATTING MENU
/*------------------------------------*/ 
#left img
{
    display: block;
    display: inline-block;
    padding-left: 10px;
    padding-bottom: 4px;
    vertical-align: bottom;
}
#left p
{
	color: #F0E800;
	display: inline-block;
	font-size: 30px;
	font-weight: bold;
    vertical-align: top;
    margin: 0;
    padding-left: 20px;
    text-shadow: 2px 2px 1px #A39E00;
}
#center 
{
    text-align: center;
}
#center ul 
{
    margin: 0;
    padding: 0;
    list-style:none;
}
#center li 
{
	display: inline-block;
	color: #BBB;	
    padding: 6px;
    font-weight: bold;
    font-size: 20px;
}
#center a:link, a:visited
{
	color: #888;
    padding: 6px;	
    font-weight: bold;	
    text-decoration:none;	
}
#center a:hover
{
	color: #F0E800;
	text-decoration:none;
	transition: 0.5s all;
	text-shadow: 1px 1px 1px #AAA;	
}
#right ul 
{
    margin: 0;
    padding: 0;
    list-style:none;
}
#right li 
{
    display: inline-block;
    color: #BBB;    
    padding: 6px;
    font-weight: bold;
    font-size: 20px;
}
#right a:link, a:visited
{
    color: #888;
    padding: 6px;   
    font-weight: bold;  
    text-decoration:none;   
}
#right a:hover
{
    color: #F0E800;
    text-decoration:none;
    transition: 0.5s all;
    text-shadow: 1px 1px 1px #AAA;  
}

/*--------------------------------------
/* FORMATTING FOOTER
/*------------------------------------*/ 
#footer
{
   background: #dddddd;
   color: #555555;
   font-weight: bold;
   font-size: 0.7em;
   text-align: center;
   border-top: 2px solid #888888;
}
#footer a:visited
{
    color: #0042F1;
    padding: 6px;   
    font-weight: bold;  
    text-decoration:none;   
}

#footer a:link
{
    color: #0042F1;
    padding: 6px;   
    font-weight: bold;  
    text-decoration:none;   
}
#footer a:hover
{
    color: #DA47FA;
    text-decoration:underline;
}

/*--------------------------------------
/* FORMATTING MAIN
/*------------------------------------*/ 

#main
{
    text-align: center;
}
#main h1
{
    text-align: center;
    font-weight: bold;
    color: #1263B0;
    font-size: 30px;
    text-decoration: underline;
    text-underline-position: 5px;
    padding-left: 35px;
}
#main h2
{
	text-align: center;
	font-weight: bold;
	color: #167CDB;
	font-size: 25px;
    text-shadow: 2px 2px 1px #96D5FF;
}
#main img
{
	vertical-align: top;
}
#main p
{
	display: inline-block;
	background-color: #CCC;
    text-align: justify;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 25px;
    min-width: 200px;
    max-width: 600px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 14px;
    margin-bottom: 0px;
}
#main form
{
    display: inline-block;
}
#main form fieldset
{
    font-size: 20px;
    font-weight: bold;
    background-color: #EEE;
    color: #167CDB;
    text-align: left;
    border-color: #AAA;
    border-radius: 10px;
}
#main form input[type=text],input[type=email],input[type=password]
{
    width: 400px;
    height: 30px;
    border-color: #CCC;
    border-style: solid;
    font-size: 15px;
    border-radius: 6px;
    padding-left:10px;
    text-transform: lowercase;
}
#main form input[type=text]:focus,input[type=email]:focus,input[type=password]:focus
{
    border-color: #DB3B56;
    background-color: #F9EDF4;
    outline: none;
    text-transform: lowercase;
}
#main form label
{
    display: block;
    font-size: 15px;
    text-align: left;
    margin-bottom: 5px;
    color: #000;
}
#main a:visited
{
    color: #167CDB;
    font-size: 15px;
    font-weight: bold;  
    text-decoration:none;
    text-align: center;   
}
#main a:link
{
    color: #167CDB;
    font-size: 15px;
    font-weight: bold;  
    text-decoration:none;
    text-align: center;   
}
#main a:hover
{
    color: #E330C5;
    text-decoration:none;
    transition: 0.5s all;
}
.formbutton
{
    font-size: 20px;
    font-weight: bold;
    background-color: #167CDB;
    color: #EEE;
    border: 0;
    border-radius: 25px;
    border-style: solid;
    margin: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    width: 200px;
}

.formbutton:hover
{
    background-color: #E330C5;
}
.formbutton:disabled
{
    background-color: #888;
}
/*--------------------------------------
/* FORMATTING GAME
/*------------------------------------*/ 
#game
{
    text-align: center;
}
.screenshot
{
    filter: grayscale(100%);
}
.screenshot:hover
{
    filter: grayscale(0%);
    border: 3px dashed #ff0000;
}
/*--------------------------------------
/* FORMATTING MAIN TABLE
/*------------------------------------*/ 
#main table
{
    display: inline-table;
    border-collapse: collapse;
}
#main td, th
{
    border-width: 1px;
    border-style: none;
    border-color: #bbbbbb ; 
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
}
#main thead tr
{
    background-color: #FFF;
    color: #167CDB ;
    text-decoration: underline;  
    font-weight: bold; 
}
#main tbody tr
{
    color: #000 ;
    padding-top: 5px;   
}
#main tbody tr:hover 
{ 
    color: #E62D20;
    text-decoration: underline;  
    font-weight: bold;  
}
/* Lignes impaires du tableau */
#main tbody tr:nth-child(2n+1) 
{ 
    background-color:#DDD;
}
/* Lignes paires du tableau */
#main tbody tr:nth-child(2n) 
{ 
 background-color:#EEE;
}
/*--------------------------------------
/* FORMATTING MEMBER
/*------------------------------------*/ 
#member
{
    text-align: center;
}
#member img
{
    vertical-align: middle;
    padding: 5px;
}
#member p
{
    font-size: 20px;
    display: inline-block;
    background-color: #FFF;
    text-align: justify;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 14px;
    margin-bottom: 0px;
}
.memberbutton
{
    font-size: 20px;
    font-weight: bold;
    background-color: #167CDB;
    color: #EEE;
    border: 0;
    border-radius: 25px;
    border-style: solid;
    margin: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
}

.memberbutton:hover
{
    background-color: #E330C5;
}
#member table
{
    margin: auto;
}
#member tr
{
    text-align: left;
}
#member form
{
    display: inline-block;
}
.membertitle
{
    font-size: 16px;
    font-weight: bold;
    text-decoration: underline;  
    color: #222;
}
/*--------------------------------------
/* FORMATTING GCU
/*------------------------------------*/ 
#charter p
{
    display: inline-block;
    background-color: #93D5DB;
    color: #000;
    text-align: justify;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
    min-width: 400px;
    max-width: 1000px;
    border-width:2px;
    border-style:dashed;
    border-color:#FFF;
    font-size: 14px;
    margin-bottom: 20px;
}
.charterTitle
{
    text-align: left;
    font-weight: bold;
    text-decoration: underline;
    text-underline-position: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.charterDate
{
    text-align: center;
    font-style: italic;
    font-size: 12px;
    color: #666;
}
/*--------------------------------------
/* FORMATTING COOKIE_EU JAVASCRIPT
/*------------------------------------*/ 
div.cookie_policy_msg
{
    width:100%;
    background:#4169E1;
    color: #EEE;
    font-weight: bold;
}
div.cookie_policy_msg>div
{
    max-width: 100%;
    margin:0 auto;
    padding:10px;
}
div.cookie_policy_msg>div>a:first-child
{
    color:#00008B;
    display:inline-block;
    margin-left:20px;
    text-decoration: none;
}
div.cookie_policy_msg>div>a:first-child:hover
{
    color:#FFF;
    background:#00008B;
}
div.cookie_policy_msg>div>a:last-child
{
    color:#00008B;
    display:inline-block;
    margin-left:20px;
    text-decoration: none;
}
div.cookie_policy_msg>div>a:last-child:hover
{
    color:#FFF;
    background:#00008B;
}
