if (document.URL.indexOf("services.etatcivil.gouv.qc.ca") != -1){
	var styleBureauQualite = document.createElement('style');
	styleBureauQualite.setAttribute("type", "text/css");
	
	var styleContent = "div#entete div.navigation p.fr, div#entete div.navigation p.en{";
	styleContent += "background: url(\"https://www.gouv.qc.ca/portail/themes/html/PGS/images/entete-commun-sq.gif\") no-repeat scroll 10px top transparent;";
	styleContent += "font-size: 0;";
	styleContent += "height: 31px;";
	styleContent += "margin:0px;";
	styleContent += "}";
	styleContent += "div#entete div.navigation ul.outils{";
	styleContent += "margin: 0;";
	styleContent += "padding: 0;";
	styleContent += "position: absolute;";
	styleContent += "right: 10px;";
	styleContent += "top: 0;";
	styleContent += "}";
	styleContent += "div#entete div.navigation ul.outils li{";
	styleContent += "float:left;";
	styleContent += "padding-left:8px;";
	styleContent += "}";
	styleContent += "div#entete div.navigation div.zone-recherche {";
	styleContent += "padding-left: 7px;";
	styleContent += "width: 184px;";
	styleContent += "height:94px;";
	styleContent += "position: absolute;";
	styleContent += "background: url(\"https://www.gouv.qc.ca/portail/themes/html/PGS/images/recherche-fond.gif\") no-repeat scroll 7px top transparent;";
	styleContent += "font-size: x-small;";
	styleContent += "}";
	styleContent += "div#entete div.navigation div.zone-recherche form#recherche input#qt {";
	styleContent += "border: 1px solid #7AAAC9;";
	styleContent += "float: left;";
	styleContent += "font: 1.1em Arial,Helvetica,sans-serif;";
	styleContent += "margin-left: 12px;";
	styleContent += "margin-top: 10px;";
	styleContent += "padding-left: 3px;";
	styleContent += "width: 124px;";
	styleContent += "}	";
	styleContent += "div#entete div.navigation div.zone-recherche form#recherche select#selectRecherche {";
	styleContent += "border: 1px solid #7AAAC9;";
	styleContent += "float: left;";
	styleContent += "font: 1.1em Arial,Helvetica,sans-serif;";
	styleContent += "margin: 9px 0 0 12px;";
	styleContent += "max-height: 29px;";
	styleContent += "width: 130px;";
	styleContent += "word-wrap: normal;";
	styleContent += "}";
	styleContent += "div#entete div.navigation div.zone-recherche form#recherche button#chercher {";
	styleContent += "border: medium none;";
	styleContent += "cursor: pointer;";
	styleContent += "float: right;";
	styleContent += "height: 27px;";
	styleContent += "margin: 5px 11px 0 0;";
	styleContent += "vertical-align: middle;";
	styleContent += "width: 27px;";
	styleContent += "background:none;";
	styleContent += "}";
	styleContent += "div#entete div.navigation div.zone-recherche form#recherche button#chercher img{";
	styleContent += "width:25px;";
	styleContent += "}";
	styleContent += "div.contenu table tbody tr td div div#menu{";
	styleContent += "margin-top:105px;";
	styleContent += "}";
	
	var head = document.getElementsByTagName('head')[0];
	head.appendChild(styleBureauQualite);
	if (styleBureauQualite.styleSheet) { // IE
		styleBureauQualite.styleSheet.cssText = styleContent;
	} 
	else { // Other browsers
		var styleContentNode = document.createTextNode(styleContent);
		styleBureauQualite.appendChild(styleContentNode);
	}
}






