* {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
  }

  body, html {
    padding: 3px 3px 3px 3px;
    background-color: #D8DBE2;
    font-family: Verdana, sans-serif;
    font-size: 11pt;
    text-align: center;
  }

  div.main_page {
    position: relative;
    display: table;
    width: 1020px;
    margin-bottom: 3px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0px 0px 0px;
    border-width: 2px;
    border-color: #212738;
    border-style: solid;
    background-color: #FFFFFF;
    text-align: center;
  }

  div.page_header {
    height: 100px;
    width: 100%;
  }

  div.page_header span {
    margin: 15px 20px 15px 20px;
    font-size: 180%;
    font-weight: bold;
  }

  div.page_header img {
    margin: 15px 20px 15px 20px;
    border: 0px 0px 0px;
  }

  div.content_section {
    margin: 3px 3px 3px 3px;
    background-color: #FFFFFF;
    text-align: left;
  }

  div.content_section_text {
    padding: 4px 8px 4px 8px;
    color: #000000;
    font-size: 100%;
  }

  div.content_section_text pre {
    margin: 8px 0px 8px 0px;

    border-width: 1px;
    border-style: dotted;
    border-color: #000000;
    background-color: #F5F6F7;
    font-style: italic;
  }


  div.content_section_text form {
    margin: 12px 20px 6px 20px;
  }


  div.content_section_text p {
    margin-bottom: 6px;
  }

  div.content_section_text p.center {
    text-align: center;
    margin-bottom: 6px;
  }

  div.content_section_text ul, div.content_section_text li {
    padding: 4px 8px 4px 16px;
  }

  div.section_header {
    padding: 3px 6px 3px 6px;
    background-color: #CD214F;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 112%;
    text-align: center;
    width: 1012px;
  }

  .floating_element {
    position: relative;
    float: left;
  }

  .floating_element_right {
    position: relative;
    float: right;
  }

  .toggle_right {
    position: relative;
    float: right;
    background-color:#eb93a3;
  }

  .classificateur {
    position: relative;
    float: right;
    font-size: 8pt;
  }

  .floating_element_center {
    position: relative;
    float: center;
  }

  .static_element {
    background-color: #FFFFFF;
  }

  div.content_section_text a:link,
  div.content_section_text a:visited,
   div.content_section_text a:active {
    background-color: #DCDFE6;
    color: #000000;
  }

  div.content_section_text a:hover {
    background-color: #000000;
    color: #DCDFE6;
  }

  div.content_section_text a.image:link,
  div.content_section_text a.image:visited,
   div.content_section_text a.image:active {
    background-color: #FFFFFF;
  }

  select{
    margin: 4px 0px 12px 0px;
    cursor: pointer;
  }

  input[type=text], select {
    color: #CD214F;
    padding: 3px 10px 3px 6px;
    background-color: #FFFFFF;
    margin: 4px 0px 12px 5px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #929292;
    border-radius: 5px;
    display: inline-block;
  }

  input[type=text]:focus {
    border: 1px solid #CD214F;
  }

  input[type=password] {
    color: #CD214F;
    padding: 3px 10px 3px 6px;
    background-color: #FFFFFF;
    margin: 4px 0px 12px 5px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #929292;
    border-radius: 5px;
    display: inline-block;
  }

  input[type=password]:focus {
    border: 1px solid #CD214F;
  }

  input[type=submit]{
    background-color: #CD214F;
    padding: 3px 3px 3px 6px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 4px 0px 12px 0px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #CD214F;
    border-radius: 5px;
  }

  input[type=submit]:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
  }

  input[type=button]{
    background-color: #CD214F;
    padding: 3px 3px 3px 3px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0px 18px 18px 0px;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #CD214F;
    border-radius: 5px;
  }

  input[type=button]:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
  }

  input[type=file]{
    color: #CD214F;
    background-color: #FFFFFF;
    margin: 4px 0px 12px 0px;
    cursor: pointer;
  }

input[type=checkbox] {
	visibility: hidden;
}

.rounded {
	width: 18px;
	height: 18px;
    	box-sizing: border-box;
    	border: 1px solid #929292;
	border-radius: 5px;
	position: relative;
}

.rounded label {
	cursor: pointer;
}

.rounded label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	background: #CD214F;
	border-radius: 3px;
	top: 2px;
	left: 2px;
}

.rounded label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.rounded input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}


.rounded2 {
	width: 16px;
	height: 16px;
    	box-sizing: border-box;
    	border: 1px solid #929292;
	border-radius: 5px;
	position: relative;
	-ms-transform: rotate(45deg); 
    	-webkit-transform: rotate(45deg); 
	transform: rotate(45deg);
}

.rounded2 label {
	cursor: pointer;
}

.rounded2 label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: #CD214F;
	border-radius: 3px;
	top: 2px;
	left: 2px;
}

.rounded2 label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.rounded2 input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}


.get_latex {
    	background: url(latex_choose.svg) 0 -1px;
    	background-size: 40px 57px;
    	background-repeat: no-repeat;
	width: 40px;
	height: 57px;
	position: relative;
}

.get_latex label {
	cursor: pointer;
}

.get_latex label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	width: 40px;
	height: 57px;
	position: absolute;
    	background: url(latex_chosen.svg) 0 -1px;
    	background-size: 40px 57px;
    	background-repeat: no-repeat;
	left: 0px;
}

.get_latex label:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.get_latex input[type=checkbox]:checked + label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

table,td{table-layout: fixed; white-space: nowrap;}
.short {width: 30px;}
.long {width: 290px;}
.critere {float: left; width: 280px; overflow: hidden;}
.critere:after {content: " _________________________________________________ ";}




	



