• DELETE FROM KEYWORDS WHERE ID_DOMAINE=36775894
  • DoneDoneDone

    URL:vractu.com

    Connection: Keep-Alive
    Date: Sat, 01 Feb 2025 23:02:47 GMT
    Keep-Alive: timeout=5, max=100
    Content-Length: 795
    Content-Type: text/html
    Location: https://vractu.com/
    Server: LiteSpeed
    platform: hostinger
    panel: hpanel
    content-security-policy: upgrade-insecure-requests
    
    
    Location => https://vractu.com/
    Status => 301
    <!DOCTYPE html>
    <html style="height:100%">
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <title> 301 Moved Permanently
    </title><style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}</style></head>
    

    (vide) Tentative en https

    https://vractu.com/

    <!DOCTYPE html>
    <html dir="ltr" lang="fr-FR" prefix="og: https://ogp.me/ns#" class="dark-skin" data-skin="dark" prefix="og: http://ogp.me/ns#">
    <head>
    	<meta charset="UTF-8" />
    	<link rel="profile" href="https://gmpg.org/xfn/11" />
    	<title>VR ACTU : Réalité Virtuelle • SimRacing • Jeux Vidéo</title>
    
    <meta http-equiv='x-dns-prefetch-control' content='on'>
    <link rel='dns-prefetch' href='//cdnjs.cloudflare.com' />
    <link rel='dns-prefetch' href='//ajax.googleapis.com' />
    <link rel='dns-prefetch' href='//fonts.googleapis.com' />
    <link rel='dns-prefetch' href='//fonts.gstatic.com' />
    <link rel='dns-prefetch' href='//s.gravatar.com' />
    <link rel='dns-prefetch' href='//www.google-analytics.com' />
    <link rel='preload' as='script' href='https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js'>
        <style>
            .pro-wccp:before {
                content: "\f160";
                top: 3px;
            }
            .pro-wccp:before{
                color:#02CA03 !important
            }
            .pro-wccp {
                transform: rotate(45deg);
            }
        </style>
        <script id="wccp_pro_disable_selection">
    
    var image_save_msg = 'You are not allowed to save images!';
    
    var no_menu_msg = 'Context menu disabled!';
    
    var smessage = "";
    
    
    "use strict";
    /* This because search property "includes" does not supported by IE*/
    if (!String.prototype.includes) {
    String.prototype.includes = function(search, start) {
      if (typeof start !== 'number') {
    	start = 0;
      }
    
      if (start + search.length > this.length) {
    	return false;
      } else {
    	return this.indexOf(search, start) !== -1;
      }
    };
    }
    /*////////////////////////////////////*/
    let canCall = true;
    
    function call_disable_copy_WithDelay(e) {
      if (canCall) {
        canCall = false;
        disable_copy(e);
        setTimeout(() => {
          canCall = true;
        }, 1000);
      }
    }
    
    function disable_copy(e)
    {
    	window.wccp_pro_iscontenteditable_flag = false;
    	
    	wccp_pro_log_to_console_if_allowed("function", "disable_copy");
    	
    	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
      	
    	var target = e.target || e.srcElement;
    
    	var elemtype = e.target.nodeName;
    	
    	elemtype = elemtype.toUpperCase();
    	
    	if (apply_class_exclusion(e) == "Yes") return true;
    
    	if(wccp_pro_iscontenteditable(e) == true) {return true;}
    	
    	if(is_content_editable_element(current_clicked_element) == true)
    	{
    		return true;
    	}
    	else
    	{
    		if (smessage !== "" && e.detail == 2)
    			show_wccp_pro_message(smessage);
    		
    		if (isSafari)
    		{
    			return true;
    		}
    		else
    		{
    			//wccp_pro_clear_any_selection();
    			
    			return false;
    		}
    	}
    	
    	/*disable context menu when shift + right click is pressed*/
    	var shiftPressed = 0;
    	
    	var evt = e?e:window.event;
    	
    	if (parseInt(navigator.appVersion)>3) {
    		
    		if (document.layers && navigator.appName=="Netscape")
    			
    			shiftPressed = (e.modifiers-0>3);
    			
    		else
    			
    			shiftPressed = e.shiftKey;
    			
    		if (shiftPressed) {
    			
    			if (smessage !== "") show_wccp_pro_message(smessage);
    			
    			var isFirefox = typeof InstallTrigger !== 'undefined';   /* Firefox 1.0+ */
    			
    			if (isFirefox) {
    			evt.cancelBubble = true;
    			if (evt.stopPropagation) evt.stopPropagation();
    			if (evt.preventDefault()) evt.preventDefault();
    			show_wccp_pro_message (smessage);
    			wccp_pro_clear_any_selection();
    			return false;
    			}
    			
    			wccp_pro_clear_any_selection();
    			return false;
    		}
    	}
    	
    	if(e.which === 2 ){
    	var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName;
    	   show_wccp_pro_message(smessage);
           wccp_pro_clear_any_selection(); return false;
        }
    	var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
    	var checker_IMG = 'checked';
    	if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;}
    
        //elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
    	if (is_content_editable_element(elemtype) == false)
    	{
    		if (smessage !== "" && e.detail == 2)
    			show_wccp_pro_message(smessage);
    		
    		if (isSafari)
    		{
    			return true;
    		}
    		else
    		{
    			wccp_pro_clear_any_selection(); return false;
    		}
    	}
    	else
    	{
    		return true;
    	}
    }
    ////////////////////////////
    function disable_copy_ie()
    {
    	wccp_pro_log_to_console_if_allowed("function", "disable_copy_ie_function_started");
    	
    	var e = e || window.event;
    	/*also there is no e.target property in IE.*/
    	/*instead IE uses window.event.srcElement*/
      	var target = e.target || e.srcElement;
    	
    	var elemtype = window.event.srcElement.nodeName;
    	
    	elemtype = elemtype.toUpperCase();
    
    	if(wccp_pro_iscontenteditable(e) == true) return true;
    	
    	if (apply_class_exclusion(e) == "Yes") return true;
    	
    	if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;}
    	
    	//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
    	if (is_content_editable_element(elemtype) == false)
    	{
    		return false;
    	}
    }
    function disable_drag_text(e)
    {
    	wccp_pro_log_to_console_if_allowed("function", "disable_drag_text");
    	
    	/*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/
    	/*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/
    	
    	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/
      	
    	var target = e.target || e.srcElement;
    	
    	/*For contenteditable tags*/
    	
    	if (apply_class_exclusion(e) == "Yes") return true;
    
    	var elemtype = e.target.nodeName;
    	
    	elemtype = elemtype.toUpperCase();
    	
    	var disable_drag_text_drop = 'checked';
    	
    	if (disable_drag_text_drop != "checked")  return true;
    	
    	if (window.location.href.indexOf("/user/") > -1) {
          return true; /*To allow users to drag & drop images when editing thier profiles*/
        }
    	
    	return false;
    }
    
    /*/////////////////special for safari Start////////////////*/
    var onlongtouch;
    
    var timer;
    
    var touchduration = 1000; /*length of time we want the user to touch before we do something*/
    
    var elemtype = "";
    
    function touchstart(e)
    {
    	wccp_pro_log_to_console_if_allowed("function", "touchstart");
    	
    	var e = e || window.event;
    	/*also there is no e.target property in IE.*/
    	/*instead IE uses window.event.srcElement*/
      	var target = e.target || e.srcElement;
    	
    	elemtype = window.event.srcElement.nodeName;
    	
    	elemtype = elemtype.toUpperCase();
    	
    	if(!wccp_pro_is_passive()) e.preventDefault();
    	if (!timer) {
    		timer = setTimeout(onlongtouch, touchduration);
    	}
    }
    
    function touchend()
    {
    	wccp_pro_log_to_console_if_allowed("function", "touchend");
    	
        /*stops short touches from firing the event*/
        if (timer) {
            clearTimeout(timer);
            timer = null;
        }
    	onlongtouch();
    }
    
    onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/
    {
    	wccp_pro_log_to_console_if_allowed("function", "onlongtouch");
    	
    	if (is_content_editable_element(elemtype) == false)
    	{
    		if (window.getSelection) {
    			if (window.getSelection().empty) { /*Chrome*/
    			window.getSelection().empty();
    			} else if (window.getSelection().removeAllRanges) {  /*Firefox*/
    			window.getSelection().removeAllRanges();
    			}
    		} else if (document.selection) {  /*IE?*/
    			var textRange = document.body.createTextRange();
    			textRange.moveToElementText(element);
    			textRange.select();
    
    			document.selection.empty();
    		}
    		return false;
    	}
    };
    
    document.addEventListener("DOMContentLoaded", function(event)
    	{ 
    		window.addEventListener("touchstart", touchstart, false);
    		window.addEventListener("touchend", touchend, false);
    	});
    
    
    function wccp_pro_is_passive()
    {
    	wccp_pro_log_to_console_if_allowed("function", "wccp_pro_is_passive");
    	
    	var cold = false,
    	hike = function() {};
    
    	try {
    	var aid = Object.defineProperty({}, 'passive', {
    	get() {cold = true}
    	});
    	window.addEventListener('test', hike, aid);
    	window.removeEventListener('test', hike, aid);
    	} catch (e) {}
    
    	return cold;
    }
    /*/////////////////////////////////////////////////////////////////*/
    function reEnable()
    {
    	return true;
    }
    
    if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE
    {
    	document.ondragstart = disable_drag_text;
    	document.onselectstart = call_disable_copy_WithDelay;
    	document.onselectionchange = call_disable_copy_WithDelay;
    	//document.onmousedown = disable_copy;
    	//document.addEventListener('click', disable_copy, false);
    	//document.addEventListener('click', set_current_clicked_element, false);
    	document.addEventListener('mousedown', set_current_clicked_element, false);
    	//document.onclick = reEnable;
    }else
    {
    	document.onselectstart = disable_copy_ie;
    }
    
    var current_clicked_element = "";
    
    var current_clicked_object = null;
    
    function set_current_clicked_element(e)
    {
    	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
      	
    	var target = e.target || e.srcElement;
    
    	var elemtype = e.target.nodeName;
    	
    	elemtype = elemtype.toUpperCase();
    	
    	current_clicked_element = elemtype;
    	
    	console.log("current_clicked_element = " + current_clicked_element);
    }
    </script>
    <script id="wccp_pro_disable_hot_keys">
    /*****************For contenteditable tags***************/
    var wccp_pro_iscontenteditable_flag = false;
    
    function wccp_pro_iscontenteditable(e)
    {
    	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
      	
    	var target = e.target || e.srcElement;
    	
    	var iscontenteditable = "false";
    		
    	if(typeof target.getAttribute!="undefined" )
    	{
    		iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string
    		
    		if(typeof target.hasAttribute!="undefined")
    		{
    			if(target.hasAttribute("contenteditable"))
    				iscontenteditable = true;
    		}
    	}
    	
    	console.log("iscontenteditable:" + iscontenteditable);
    	
    	var iscontenteditable2 = false;
    	
    	if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean
    
    	if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;
    	
    	if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
    	{
    		if(typeof target.style!="undefined" ) target.style.cursor = "text";
    		
    		//wccp_pro_log_to_console_if_allowed("", iscontenteditable + " " + iscontenteditable2);
    		
    		wccp_pro_iscontenteditable_flag = true;
    		
    		wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: true");
    		
    		return true;
    	}
    	wccp_pro_log_to_console_if_allowed("function", "wccp_pro_iscontenteditable: false");
    	
    	//wccp_pro_iscontenteditable_flag = false;
    }
    /******************************************************/
    function wccp_pro_clear_any_selection()
    {
    	if(window.wccp_pro_iscontenteditable_flag == true) return;
    	
    	wccp_pro_log_to_console_if_allowed("function", "wccp_pro_clear_any_selection");
    	
    	var myName = wccp_pro_clear_any_selection.caller.toString();
    	
    	myName = myName.substr('function '.length);
    	
    	myName = myName.substr(0, myName.indexOf('('));
    
    	console.log("called_by: " + myName);
    	
    	if (window.getSelection)
    	{
    		if (window.getSelection().empty)
    		{  // Chrome
    			window.getSelection().empty();
    		} else if (window.getSelection().removeAllRanges) 
    		{  // Firefox
    			window.getSelection().removeAllRanges();
    		}
    	} else if (document.selection)
    	{  // IE?
    		document.selection.empty();
    	}
    	
    	//show_wccp_pro_message("You are not allowed to make this operation");
    }
    
    
    /*Is content_editable element*/
    function is_content_editable_element(element_name = "")
    {
    	if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK")
    	{
    		wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: true >>" + element_name);
    		
    		return true;
    	}
    	wccp_pro_log_to_console_if_allowed("function", "is_content_editable_element: false >>" + element_name);
    	
    	return false;
    }
    /*Is selection enabled element*/
    /*
    function is_selection_enabled_element(element_name = "")
    {
    	if (is_content_editable_element == true)
    	{
    		wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: true >>" + element_name);
    		
    		return true;
    	}
    	wccp_pro_log_to_console_if_allowed("function", "is_selection_enabled_element: false >>" + element_name);
    	
    	return false;
    }
    */
    /*Hot keys function  */
    function disable_hot_keys(e)
    {
    	wccp_pro_log_to_console_if_allowed("function", "disable_hot_keys");
    	
    	e = e || window.event;
    	
    	//console.log(e);
    	
    	if (!e) return;
    	
    	var key;
    
    		if(window.event)
    			  key = window.event.keyCode;     /*IE*/
    		else if (e.hasOwnProperty("which")) key = e.which;     /*firefox (97)*/
    
    	wccp_pro_log_to_console_if_allowed("Data:", key);
    	
    			
    		if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
    		{
    			show_wccp_pro_message('');
    			
    			return false;
    		}
    		
    	var elemtype = e.target.tagName;
    	
    	elemtype = elemtype.toUpperCase();
    	
    	var sel = getSelectionTextAndContainerElement();
    	
    	if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */
    
    	/*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
    	if (is_content_editable_element(elemtype) == true)
    	{
    		elemtype = 'TEXT';
    	}
    	
    	if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';
    	
    		if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
    		{
    			copyTextToClipboard("");
    			show_wccp_pro_message('');
    			return false;
    		}	
    	if (e.ctrlKey || e.metaKey)
    	{
    		if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
    		{
    			 show_wccp_pro_message('');
    			 return false;
    		}
    		if (elemtype!= 'TEXT')
    		{
    						
    			if (key == 65)
    			{
    				show_wccp_pro_message('');
    				return false;
    			}			
    						
    			if (key == 67)
    			{
    				show_wccp_pro_message('');
    				return false;
    			}			
    						
    			if (key == 88)
    			{
    				show_wccp_pro_message('');
    				return false;
    			}			
    						
    			if (key == 86)
    			{
    				show_wccp_pro_message('');
    				return false;
    			}		}
    				
    		if (key == 85)
    		{
    			show_wccp_pro_message('');
    			return false;
    		}		
    				if (key == 80)
    		{
    			show_wccp_pro_message('');
    			return false;
    		}		
    				if (key == 44)
    		{
    			copyTextToClipboard("no");
    			show_wccp_pro_message('');
    			return false;
    		}		
    		
    					if (key == 73)//F12 chrome developer key disable
    			{
    				show_wccp_pro_message('');
    				return false;
    			}
    				
    				
    		if (key == 83)
    		{
    			show_wccp_pro_message('');
    			return false;
    		}    }
    return true;
    }
    
    
    window.addEventListener('load', function (){
    	if(window.Zepto || !window.jQuery) jQuery =  $;
    	jQuery(document).ready(function() {
    	  jQuery(document).bind("keyup keydown", disable_hot_keys);
    	});
    });
    
    </script>
    <style>
    .wccp_pro_copy_code_button
    {
    	line-height: 6px;
    	width: auto;
    	font-size: 8pt;
    	font-family: tahoma;
    	margin-top: 1px;
    	margin-right: 2px;
    	position:absolute;
    	top:0;
    	right:0;
    	border-radius: 4px;
    	opacity: 100%;
    	margin-top: -30px;
    }
    .wccp_pro_copy_code_button:hover
    {
    	opacity: 100%;
    }
    
    .wccp_pro_copy_code_button[disabled]
    {
    	opacity: 40%;
    	border-color: red;
    }
    code,pre
    {
    	overflow: visible;
    	white-space: pre-line;
    }
    </style>
    <script id="wccp_pro_disable_Right_Click">
    		function nocontext(e) {
    
    			wccp_pro_log_to_console_if_allowed("function", "nocontext");
    			
    			e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
    			
    			if (apply_class_exclusion(e) == 'Yes') return true;
    			
    	    	var exception_tags = 'NOTAG,';
    			
    	        var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
    			
    			console.log("clickedTag: " + clickedTag);
    			
    			var target = e.target || e.srcElement;
    			
    			var parent_tag = ""; var parent_of_parent_tag = "";
    			
    			if(target.parentElement != null)
    			{
    				parent_tag = target.parentElement.tagName;
    				
    				if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName;
    			}
    			
    	        var checker = 'checked';
    	        if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') {
    	            if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG);
    	            return false;
    	        }else {exception_tags = exception_tags + 'IMG,';}
    			
    			checker = '';
    			if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') {
    	            if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO);
    	            return false;
    	        }else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';}
    	        
    	        checker = '';
    	        if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') {
    	            if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A);
    	            return false;
    	        }else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";}
    
    	        checker = 'checked';
    	        if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" ||  clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') {
    	            if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB);
    	            return false;
    	        }else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';}
    	        
    	        checker = 'checked';
    	        if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') {
    	            if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT);
    	            return false;
    	        }else {exception_tags = exception_tags + 'INPUT,PASSWORD,';}
    	        
    	        checker = 'checked';
    	        if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') {
    	            if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H);
    	            return false;
    	        }else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';}
    	        
    	        checker = 'checked';
    	        if (clickedTag == "TEXTAREA" && checker == 'checked') {
    	            if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA);
    	            return false;
    	        }else {exception_tags = exception_tags + 'TEXTAREA,';}
    	        
    	        checker = 'checked';
    	        if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') {
    	            if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces);
    	            return false;
    	        }
    	        else
    	        {
    	        	if (exception_tags.indexOf(clickedTag)!=-1)
    	        	{
    		        	return true;
    		        }
    	        	else
    	        	return false;
    	        }
    	    }
    		
    		function disable_drag_images(e)
    		{
    			wccp_pro_log_to_console_if_allowed("function", "disable_drag_images");
    			
    			var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
    			
    			var target = e.target || e.srcElement;
    			
    			//For contenteditable tags
    			if (apply_class_exclusion(e) == "Yes") return true;
    
    			var elemtype = e.target.nodeName;
    			
    			if (elemtype != "IMG") {return;}
    			
    			elemtype = elemtype.toUpperCase();
    			
    			var disable_drag_drop_images = 'checked';
    			
    			if (disable_drag_drop_images != "checked")  return true;
    			
    			if (window.location.href.indexOf("/user/") > -1) {
    			  return true; //To allow users to drag & drop images when editing thier profiles
    			}
    			
    			show_wccp_pro_message(alertMsg_IMG);
    			
    			return false;
    		}
    		
    	    var alertMsg_IMG = "";
    	    var alertMsg_A = "";
    	    var alertMsg_PB = "";
    	    var alertMsg_INPUT = "";
    	    var alertMsg_H = "";
    	    var alertMsg_TEXTAREA = "";
    	    var alertMsg_EmptySpaces = "";
    		var alertMsg_VIDEO = "";
    	    document.oncontextmenu=null;
    		document.oncontextmenu = nocontext;
    		document.addEventListener("contextmenu",nocontext);
    		window.addEventListener("contextmenu",nocontext);
    </script>
    	
    	<script id="wccp_pro_disable_drag_images">
    	document.ondragstart = disable_drag_images;
    		window.addEventListener('load', function (){
    			if(window.Zepto || !window.jQuery) jQuery =  $;
    			jQuery(document).ready(function(){
    				jQuery('img').each(function() {
    					jQuery(this).attr('draggable', false);
    				});
    			});
    		});
    	</script>
    	<style id="wccp_pro_style1">
    		img{
    			-moz-user-select: none;
    			-webkit-user-select: none;
    			-ms-user-select: none;
    			-khtml-user-select: none;
    			user-select: none;
    			-webkit-user-drag: none;
    		}
    	</style>
    <style>/* Start your code after this line */
     
    /* End your code before this line */</style>	<script id="wccp_pro_css_disable_selection">
    	function wccp_pro_msieversion() 
    		{
    			var ua = window.navigator.userAgent;
    			var msie = ua.indexOf("MSIE");
    			var msie2 = ua.indexOf("Edge");
    			var msie3 = ua.indexOf("Trident");
    
    		if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number
    		{
    			return "IE";
    		}
    		else  // If another browser, return 0
    		{
    			return "otherbrowser";
    		}
    	}
        
    	var e = document.getElementsByTagName('H1')[0];
    	if(e && wccp_pro_msieversion() == "IE")
    	{
    		e.setAttribute('unselectable',"on");
    	}
    	</script>
    <script id="wccp_pro_class_exclusion">
    function copyToClipboard(elem) {
    	  // create hidden text element, if it doesn't already exist
        var targetId = "_wccp_pro_hiddenCopyText_";
        {
            // must use a temporary form element for the selection and copy
            target = document.getElementById(targetId);
            if (!target) {
                var target = document.createElement("textarea");
                target.style.position = "absolute";
                target.style.left = "-9999px";
                target.style.top = "0";
                target.id = targetId;
                document.body.appendChild(target);
            }
            target.textContent = elem.textContent;
        }
        // select the content
        var currentFocus = document.activeElement;
        target.focus();
        target.setSelectionRange(0, target.value.length);
        
        // copy the selection
        var succeed;
        try {
        	  succeed = document.execCommand("copy");
        } catch(e) {
            succeed = false;
        }
    
        // restore original focus
        if (currentFocus && typeof currentFocus.focus === "function") {
            currentFocus.focus();
        }
        
        
    	// clear temporary content
    	target.textContent = "";
    	document.getElementsByTagName('span')[0].innerHTML = " ";
        return succeed;
    }
    /**************************************************/
    function wccp_pro_log_to_console_if_allowed(title = "title", data = "")
    {
    	var myName = "";
    	
    	if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();
    	
    	myName = myName.substr('function '.length);
    	
    	myName = myName.substr(0, myName.indexOf('('));
    
    	//console.log("function_name: " + myName);
    	
    	}
    /**************************************************/
    function fallbackCopyTextToClipboard(text) {
      var textArea = document.createElement("textarea");
      textArea.value = text;
      document.body.appendChild(textArea);
      textArea.focus();
      textArea.select();
    
      try {
        var successful = document.execCommand("copy");
        var msg = successful ? "successful" : "unsuccessful";
        console.log("Fallback: Copying text command was " + msg);
      } catch (err) {
        console.error("Fallback: Oops, unable to copy", err);
      }
    
      document.body.removeChild(textArea);
    }
    /*****************************************/
    function copyTextToClipboard(text) {
      if (!navigator.clipboard) {
        fallbackCopyTextToClipboard(text);
        return;
      }
      navigator.clipboard.writeText(text).then(
        function() {
          console.log("Async: Copying to clipboard was successful!");
        },
        function(err) {
          console.error("Async: Could not copy text: ", err);
        }
      );
    }
    /*****************************************/
    /*getSelectionTextAndContainerElement*/
    function getSelectionTextAndContainerElement()
    {
        var text = "", containerElement = null;
        if (typeof window.getSelection != "undefined") {
            var sel = window.getSelection();
            if (sel.rangeCount) {
                var node = sel.getRangeAt(0).commonAncestorContainer;
                containerElement = node.nodeType == 1 ? node : node.parentNode;
    			if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
                text = sel.toString();
            }
        } else if (typeof document.selection != "undefined" && document.selection.type != "Control")
    	{
            var textRange = document.selection.createRange();
            containerElement = textRange.parentElement();
            text = textRange.text;
        }
        
    	return {
            text: text,
            containerElement: containerElement
        };
    }
    
    function getSelectionParentElement() {
        var parentEl = null, sel;
    	
        if (window.getSelection) {
            sel = window.getSelection();
            if (sel.rangeCount) {
                parentEl = sel.getRangeAt(0).commonAncestorContainer;
    			//sel.getRangeAt(0).startContainer.parentNode;
                if (parentEl.nodeType != 1) {
                    parentEl = parentEl.parentNode;
                }
            }
        } else if ( (sel = document.selection) && sel.type != "Control") {
            parentEl = sel.createRange().parentElement();
        }
    	
    	let arr = new Array();
    	
    	arr["nodeName"] = "cant_find_parent_element";
    	
    	if(parentEl != null)
    		return parentEl;
    	else
    		return arr;
    }
    /*****************************************/
    function sleep(ms) {
        return new Promise(resolve => setTimeout(resolve, ms));
    }
    /*****************************************/
    </script>
    
    <script id="apply_class_exclusion">
    function apply_class_exclusion(e)
    {
    	wccp_pro_log_to_console_if_allowed("function", "apply_class_exclusion" + e);
    	
    	var my_return = 'No';
    	
    	var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement
      	
    	var target = e.target || e.srcElement || 'nothing';
    	
    	//if(target.parentElement != null) console.log (target.parentElement.className);
    	
    	var excluded_classes = '' + '';
    	
    	var class_to_exclude = "";
    	
    	if(target.parentElement != null)
    	{
    		class_to_exclude = target.className + ' ' + target.parentElement.className || '';
    	}else{
    		class_to_exclude = target.className;
    	}
    	
    	var class_to_exclude_array = Array();
    	
    	//console.log(class_to_exclude);
    	
    	if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");
    	
    	//console.log (class_to_exclude_array);
    	
    	class_to_exclude_array.forEach(function(item)
    	{
    		if(item != '' && excluded_classes.indexOf(item)>=0)
    		{
    			//target.style.cursor = "text";
    			
    			//console.log ('Yes');
    			
    			my_return = 'Yes';
    		}
    	});
    
    	try {
    		class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
    		}
    	catch(err) 
    		{
    		class_to_exclude = '';
    		}
    	
    	if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
    	{
    		//target.style.cursor = "text";
    		my_return = 'Yes';
    	}
    
    	return my_return;
    }
    </script>
    <style id="wccp_pro_style2" data-asas-style="">
    
    	
    	*[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/
    	  -webkit-user-select: auto !important;
    	  cursor: text !important;
    	  user-select: text !important;
    	  pointer-events: auto !important;
    	}
    	
    	/*
    	*[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;}
    	*[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
    	input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;}
    	input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
    	*/
    	a{ cursor: pointer ; pointer-events: auto !important;}
    
    	</style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style><style id='tie-critical-css' type='text/css'>:root{--brand-color:#0669ff;--dark-brand-color:#0051cc;--bright-color:#FFF;--base-color:#2c2f34}html{-ms-touch-action:manipulation;touch-action:manipulation;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:600}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}figure{margin:1em 0}hr{box-sizing:content-box;height:0;overflow:visible}button,input,select,textarea{font:inherit}optgroup{font-weight:bold}button,input,select{overflow:visible}button,input,select,textarea{margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{cursor:pointer}[disabled]{cursor:default}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button:-moz-focusring,input:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}*{padding:0;margin:0;list-style:none;border:0;outline:none;box-sizing:border-box}:after,:before{box-sizing:border-box}body{background:#F7F7F7;color:var(--base-color);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue","Open Sans",Arial,sans-serif;font-size:13px;line-height:21px}.the-subtitle,h1,h2,h3,h4,h5,h6{line-height:1.4;font-weight:600}h1{font-size:41px;font-weight:700}h2{font-size:27px}h3{font-size:23px}.the-subtitle,h4{font-size:17px}h5{font-size:13px}h6{font-size:12px}a{color:var(--base-color);text-decoration:none;transition:0.15s}.brand-title,a:hover{color:var(--brand-color)}embed,img,object{max-width:100%;height:auto}iframe{max-width:100%}p{line-height:1.7}.comment-form-comment label,.says,.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.stream-title{margin-bottom:3px;font-size:11px;color:#a5a5a5;display:block}.stream-item{text-align:center;position:relative;z-index:2;margin:20px 0;padding:0}.stream-item iframe{margin:0 auto}.stream-item img{max-width:100%;width:auto;height:auto;margin:0 auto;display:inline-block;vertical-align:middle}.stream-item.stream-item-above-header{margin:0}.stream-item.stream-item-between .post-item-inner{width:100%;display:block}.post-layout-8.is-header-layout-1.has-header-ad .entry-header-outer,body.post-layout-8.has-header-below-ad .entry-header-outer{padding-top:0}.has-header-below-ad.post-layout-6 .featured-area,.is-header-layout-1.has-header-ad.post-layout-6 .featured-area,.stream-item-top-wrapper~.stream-item-below-header{margin-top:0}.has-header-below-ad .fullwidth-entry-title.container-wrapper,.has-header-below-ad .is-first-section,.is-header-layout-1.has-header-ad .fullwidth-entry-title,.is-header-layout-1.has-header-ad .is-first-section{padding-top:0;margin-top:0}@media (max-width:991px){body:not(.is-header-layout-1).has-header-below-ad.has-header-ad .top-nav-below .has-breaking-news{margin-bottom:20px}.has-header-ad .fullwidth-entry-title.container-wrapper,.has-header-ad.has-header-below-ad .stream-item-below-header,.page.has-header-ad:not(.has-header-below-ad) #content,.single.has-header-ad:not(.has-header-below-ad) #content{margin-top:0}.has-header-ad .is-first-section{padding-top:0}.has-header-ad:not(.has-header-below-ad) .buddypress-header-outer{margin-bottom:15px}}.has-full-width-logo .stream-item-top-wrapper,.header-layout-2 .stream-item-top-wrapper{width:100%;max-width:100%;float:none;clear:both}@media (min-width:992px){.header-layout-2.has-normal-width-logo .stream-item-top-wrapper{margin-top:0}}.header-layout-3.no-stream-item .logo-container{width:100%;float:none}@media (min-width:992px){.header-layout-3.has-normal-width-logo .stream-item-top img{float:right}}@media (max-width:991px){.header-layout-3.has-normal-width-logo .stream-item-top{clear:both}}#background-stream-cover{top:0;left:0;z-index:0;overflow:hidden;width:100%;height:100%;position:fixed}@media (max-width:768px){.hide_back_top_button #go-to-top,.hide_banner_above .stream-item-above-post,.hide_banner_above_content .stream-item-above-post-content,.hide_banner_below .stream-item-below-post,.hide_banner_below_content .stream-item-below-post-content,.hide_banner_below_header .stream-item-below-header,.hide_banner_bottom .stream-item-above-footer,.hide_banner_comments .stream-item-below-post-comments,.hide_banner_header .stream-item-above-header,.hide_banner_top .stream-item-top-wrapper,.hide_breadcrumbs #breadcrumb,.hide_breaking_news #top-nav,.hide_copyright #site-info,.hide_footer #footer-widgets-container,.hide_footer_instagram #footer-instagram,.hide_footer_tiktok #footer-tiktok,.hide_inline_related_posts #inline-related-post,.hide_post_authorbio .post-components .about-author,.hide_post_nav .prev-next-post-nav,.hide_post_newsletter #post-newsletter,.hide_read_more_buttons .more-link,.hide_read_next #read-next-block,.hide_related #related-posts,.hide_share_post_bottom .share-buttons-bottom,.hide_share_post_top .share-buttons-top,.hide_sidebars .sidebar{display:none!important}}.tie-icon:before,[class*=" tie-icon-"],[class^=tie-icon-]{font-family:"tiefonticon"!important;speak:never;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block}body.tie-no-js .bbp-template-notice,body.tie-no-js .comp-sub-menu,body.tie-no-js .indicator-hint,body.tie-no-js .menu-counter-bubble-outer,body.tie-no-js .menu-sub-content,body.tie-no-js .notifications-total-outer,body.tie-no-js .tooltip,body.tie-no-js .woocommerce-error,body.tie-no-js .woocommerce-info,body.tie-no-js .woocommerce-message,body.tie-no-js a.remove{display:none!important}body.tie-no-js .fa,body.tie-no-js .fab,body.tie-no-js .far,body.tie-no-js .fas,body.tie-no-js .tie-icon:before,body.tie-no-js .weather-icon,body.tie-no-js [class*=" tie-icon-"],body.tie-no-js [class^=tie-icon-]{visibility:hidden!important}body.tie-no-js [class*=" tie-icon-"]:before,body.tie-no-js [class^=tie-icon-]:before{content:"\f105"}#autocomplete-suggestions,.tie-popup{display:none}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:after{content:"";display:table;clear:both}@media (min-width:768px){.container{width:100%}}@media (min-width:1200px){.container{max-width:1200px}}.tie-row{margin-left:-15px;margin-right:-15px}.tie-row:after{content:"";display:table;clear:both}.tie-col-md-1,.tie-col-md-10,.tie-col-md-11,.tie-col-md-12,.tie-col-md-2,.tie-col-md-3,.tie-col-md-4,.tie-col-md-5,.tie-col-md-6,.tie-col-md-7,.tie-col-md-8,.tie-col-md-9,.tie-col-sm-1,.tie-col-sm-10,.tie-col-sm-11,.tie-col-sm-12,.tie-col-sm-2,.tie-col-sm-3,.tie-col-sm-4,.tie-col-sm-5,.tie-col-sm-6,.tie-col-sm-7,.tie-col-sm-8,.tie-col-sm-9,.tie-col-xs-1,.tie-col-xs-10,.tie-col-xs-11,.tie-col-xs-12,.tie-col-xs-2,.tie-col-xs-3,.tie-col-xs-4,.tie-col-xs-5,.tie-col-xs-6,.tie-col-xs-7,.tie-col-xs-8,.tie-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.tie-col-xs-1,.tie-col-xs-10,.tie-col-xs-11,.tie-col-xs-12,.tie-col-xs-2,.tie-col-xs-3,.tie-col-xs-4,.tie-col-xs-5,.tie-col-xs-6,.tie-col-xs-7,.tie-col-xs-8,.tie-col-xs-9{float:left}.tie-col-xs-1{width:8.3333333333%}.tie-col-xs-2{width:16.6666666667%}.tie-col-xs-3{width:25%}.tie-col-xs-4{width:33.3333333333%}.tie-col-xs-5{width:41.6666666667%}.tie-col-xs-6{width:50%}.tie-col-xs-7{width:58.3333333333%}.tie-col-xs-8{width:66.6666666667%}.tie-col-xs-9{width:75%}.tie-col-xs-10{width:83.3333333333%}.tie-col-xs-11{width:91.6666666667%}.tie-col-xs-12{width:100%}@media (min-width:768px){.tie-col-sm-1,.tie-col-sm-10,.tie-col-sm-11,.tie-col-sm-12,.tie-col-sm-2,.tie-col-sm-3,.tie-col-sm-4,.tie-col-sm-5,.tie-col-sm-6,.tie-col-sm-7,.tie-col-sm-8,.tie-col-sm-9{float:left}.tie-col-sm-1{width:8.3333333333%}.tie-col-sm-2{width:16.6666666667%}.tie-col-sm-3{width:25%}.tie-col-sm-4{width:33.3333333333%}.tie-col-sm-5{width:41.6666666667%}.tie-col-sm-6{width:50%}.tie-col-sm-7{width:58.3333333333%}.tie-col-sm-8{width:66.6666666667%}.tie-col-sm-9{width:75%}.tie-col-sm-10{width:83.3333333333%}.tie-col-sm-11{width:91.6666666667%}.tie-col-sm-12{width:100%}}@media (min-width:992px){.tie-col-md-1,.tie-col-md-10,.tie-col-md-11,.tie-col-md-12,.tie-col-md-2,.tie-col-md-3,.tie-col-md-4,.tie-col-md-5,.tie-col-md-6,.tie-col-md-7,.tie-col-md-8,.tie-col-md-9{float:left}.tie-col-md-1{width:8.3333333333%}.tie-col-md-2{width:16.6666666667%}.tie-col-md-3{width:25%}.tie-col-md-4{width:33.3333333333%}.tie-col-md-5{width:41.6666666667%}.tie-col-md-6{width:50%}.tie-col-md-7{width:58.3333333333%}.tie-col-md-8{width:66.6666666667%}.tie-col-md-9{width:75%}.tie-col-md-10{width:83.3333333333%}.tie-col-md-11{width:91.6666666667%}.tie-col-md-12{width:100%}}.tie-alignleft{float:left}.tie-alignright{float:right}.tie-aligncenter{clear:both;margin-left:auto;margin-right:auto}.fullwidth{width:100%!important}.alignleft{float:left;margin:0.375em 1.75em 1em 0}.alignright{float:right;margin:0.375em 0 1em 1.75em}.aligncenter{clear:both;display:block;margin:0 auto 1.75em;text-align:center;margin-left:auto;margin-right:auto;margin-top:6px;margin-bottom:6px}@media (max-width:767px){.entry .alignleft,.entry .alignleft img,.entry .alignright,.entry .alignright img{float:none;clear:both;display:block;margin:0 auto 1.75em}}.clearfix:after,.clearfix:before{content:" ";display:block;height:0;overflow:hidden}.clearfix:after{clear:both}#tie-wrapper,.tie-container{height:100%;min-height:650px}.tie-container{position:relative;overflow:hidden}#tie-wrapper{background:#fff;position:relative;z-index:108;height:100%;margin:0 auto}.container-wrapper{background:#ffffff;border:1px solid rgba(0,0,0,0.1);border-radius:2px;padding:30px}#content{margin-top:30px}@media (max-width:991px){#content{margin-top:15px}}.site-content{-ms-word-wrap:break-word;word-wrap:break-word}.boxed-layout #tie-wrapper,.boxed-layout .fixed-nav{max-width:1230px}.boxed-layout.wrapper-has-shadow #tie-wrapper{box-shadow:0 1px 7px rgba(171,171,171,0.5)}@media (min-width:992px){.boxed-layout #main-nav.fixed-nav,.boxed-layout #tie-wrapper{width:95%}}@media (min-width:992px){.framed-layout #tie-wrapper{margin-top:25px;margin-bottom:25px}}@media (min-width:992px){.border-layout #tie-container{margin:25px}.border-layout:after,.border-layout:before{background:inherit;content:"";display:block;height:25px;left:0;bottom:0;position:fixed;width:100%;z-index:110}.border-layout:before{top:0;bottom:auto}.border-layout.admin-bar:before{top:32px}.border-layout #main-nav.fixed-nav{left:25px;right:25px;width:calc(100% - 50px)}}#header-notification-bar{background:var(--brand-color);color:#fff;position:relative;z-index:1}#header-notification-bar p a{color:#fff;text-decoration:underline}#header-notification-bar .container{display:flex;justify-content:space-between;font-size:16px;flex-wrap:wrap;align-items:center;gap:40px;min-height:65px}#header-notification-bar .container .button{font-size:14px}#header-notification-bar .container:after{display:none}@media (max-width:991px){#header-notification-bar .container{justify-content:center;padding-top:15px;padding-bottom:15px;gap:15px;flex-direction:column}}.theme-header{background:#fff;position:relative;z-index:999}.theme-header:after{content:"";display:table;clear:both}.theme-header.has-shadow{box-shadow:rgba(0,0,0,0.1) 0px 25px 20px -20px}.theme-header.top-nav-below .top-nav{z-index:8}.is-stretch-header .container{max-width:100%}#menu-components-wrap{display:flex;justify-content:space-between;width:100%;flex-wrap:wrap}.header-layout-2 #menu-components-wrap{justify-content:center}.header-layout-4 #menu-components-wrap{justify-content:flex-start}.header-layout-4 #menu-components-wrap .main-menu-wrap{flex-grow:2}.header-layout-4 #menu-components-wrap .flex-placeholder{flex-grow:1}.logo-row{position:relative}#logo{margin-top:40px;margin-bottom:40px;display:block;float:left}#logo img{vertical-align:middle}#logo img[src*=".svg"]{width:100%!important}@-moz-document url-prefix(){#logo img[src*=".svg"]{height:100px}}#logo a{display:inline-block}#logo .h1-off{position:absolute;top:-9000px;left:-9000px}#logo.text-logo a{color:var(--brand-color)}#logo.text-logo a:hover{color:var(--dark-brand-color);opacity:0.8}#tie-logo-inverted,#tie-sticky-logo-inverted{display:none}.tie-skin-inverted #tie-logo-inverted,.tie-skin-inverted #tie-sticky-logo-inverted{display:block}.tie-skin-inverted #tie-logo-default,.tie-skin-inverted #tie-sticky-logo-default{display:none}.logo-text{font-size:50px;line-height:50px;font-weight:bold}@media (max-width:670px){.logo-text{font-size:30px}}.has-full-width-logo.is-stretch-header .logo-container{padding:0}.has-full-width-logo #logo{margin:0}.has-full-width-logo #logo a,.has-full-width-logo #logo img{width:100%;height:auto;display:block}.has-full-width-logo #logo,.header-layout-2 #logo{float:none;text-align:center}.has-full-width-logo #logo img,.header-layout-2 #logo img{margin-right:auto;margin-left:auto}.has-full-width-logo .logo-container,.header-layout-2 .logo-container{width:100%;float:none}@media (max-width:991px){#theme-header.has-normal-width-logo #logo{margin:14px 0!important;text-align:left;line-height:1}#theme-header.has-normal-width-logo #logo img{width:auto;height:auto;max-width:190px}}@media (max-width:479px){#theme-header.has-normal-width-logo #logo img{max-width:160px;max-height:60px!important}}@media (max-width:991px){#theme-header.mobile-header-default.header-layout-1 .header-layout-1-logo,#theme-header.mobile-header-default:not(.header-layout-1) #logo{flex-grow:10}#theme-header.mobile-header-centered.header-layout-1 .header-layout-1-logo{width:auto!important}#theme-header.mobile-header-centered #logo{float:none;text-align:center}}.components{display:flex;align-items:center;justify-content:end}.components>li{position:relative}.components>li.social-icons-item{margin:0}.components>li>a{display:block;position:relative;width:30px;text-align:center;font-size:16px;white-space:nowrap}.components>li:hover>a,.components>li>a:hover{z-index:2}.components .avatar{border-radius:100%;position:relative;top:3px;max-width:20px}.components a.follow-btn{width:auto;padding-left:15px;padding-right:15px;overflow:hidden;font-size:12px}.components .search-bar form{width:auto;background:rgba(255,255,255,0.1);line-height:36px;border-radius:50px;position:relative}.main-nav-light .main-nav .components .search-bar form,.top-nav-light .top-nav .components .search-bar form{background:rgba(0,0,0,0.05)}.components #search-input{border:0;width:100%;background:transparent;padding:0 35px 0 20px;border-radius:0;font-size:inherit}.components #search-submit{position:absolute;right:0;top:0;width:40px;line-height:inherit;color:#777777;background:transparent;font-size:15px;padding:0;transition:color 0.15s;border:none}.components #search-submit:hover{color:var(--brand-color)}#search-submit .tie-icon-spinner{color:#fff;cursor:default;animation:tie-spin 3s infinite linear}.popup-login-icon.has-title a{width:auto;padding:0 8px}.popup-login-icon.has-title span{line-height:unset;float:left}.popup-login-icon.has-title .login-title{position:relative;font-size:13px;padding-left:4px}.weather-menu-item{display:flex;align-items:center;padding-right:5px;overflow:hidden}.weather-menu-item .weather-wrap{padding:0;overflow:inherit;line-height:23px}.weather-menu-item .weather-forecast-day{display:block;float:left;width:auto;padding:0 5px;line-height:initial}.weather-menu-item .weather-forecast-day .weather-icon{font-size:26px;margin-bottom:0}.weather-menu-item .city-data{float:left;display:block;font-size:12px}.weather-menu-item .weather-current-temp{font-size:16px;font-weight:400}.weather-menu-item .weather-current-temp sup{font-size:9px;top:-2px}.weather-menu-item .theme-notice{padding:0 10px}.components .tie-weather-widget{color:var(--base-color)}.main-nav-dark .main-nav .tie-weather-widget{color:#ffffff}.top-nav-dark .top-nav .tie-weather-widget{color:#cccccc}.components .icon-basecloud-bg:after{color:#ffffff}.main-nav-dark .main-nav .icon-basecloud-bg:after{color:#1f2024}.top-nav-dark .top-nav .icon-basecloud-bg:after{color:#1f2024}.custom-menu-button{padding-right:5px}.custom-menu-button .button{font-size:13px;display:inline-block;line-height:21px;width:auto}.header-layout-1 #menu-components-wrap{display:flex;justify-content:flex-end}.header-layout-1 .main-menu-wrapper{display:table;width:100%}.header-layout-1 #logo{line-height:1;float:left;margin-top:20px;margin-bottom:20px}.header-layout-1 .header-layout-1-logo{display:table-cell;vertical-align:middle;float:none}.is-header-bg-extended #theme-header,.is-header-bg-extended #theme-header.header-layout-1 #main-nav:not(.fixed-nav){background:transparent!important;display:inline-block!important;width:100%!important;box-shadow:none!important;transition:background 0.3s}.is-header-bg-extended #theme-header.header-layout-1 #main-nav:not(.fixed-nav):before,.is-header-bg-extended #theme-header:before{content:"";position:absolute;width:100%;left:0;right:0;top:0;height:150px;background-image:linear-gradient(to top,transparent,rgba(0,0,0,0.5))}@media (max-width:991px){.is-header-bg-extended #tie-wrapper #theme-header .logo-container:not(.fixed-nav){background:transparent;box-shadow:none;transition:background 0.3s}}.is-header-bg-extended .has-background .is-first-section{margin-top:-350px!important}.is-header-bg-extended .has-background .is-first-section>*{padding-top:350px!important}.rainbow-line{height:3px;width:100%;position:relative;z-index:2;background-image:-webkit-linear-gradient(left,#f76570 0%,#f76570 8%,#f3a46b 8%,#f3a46b 16%,#f3a46b 16%,#ffd205 16%,#ffd205 24%,#ffd205 24%,#1bbc9b 24%,#1bbc9b 25%,#1bbc9b 32%,#14b9d5 32%,#14b9d5 40%,#c377e4 40%,#c377e4 48%,#f76570 48%,#f76570 56%,#f3a46b 56%,#f3a46b 64%,#ffd205 64%,#ffd205 72%,#1bbc9b 72%,#1bbc9b 80%,#14b9d5 80%,#14b9d5 80%,#14b9d5 89%,#c377e4 89%,#c377e4 100%);background-image:linear-gradient(to right,#f76570 0%,#f76570 8%,#f3a46b 8%,#f3a46b 16%,#f3a46b 16%,#ffd205 16%,#ffd205 24%,#ffd205 24%,#1bbc9b 24%,#1bbc9b 25%,#1bbc9b 32%,#14b9d5 32%,#14b9d5 40%,#c377e4 40%,#c377e4 48%,#f76570 48%,#f76570 56%,#f3a46b 56%,#f3a46b 64%,#ffd205 64%,#ffd205 72%,#1bbc9b 72%,#1bbc9b 80%,#14b9d5 80%,#14b9d5 80%,#14b9d5 89%,#c377e4 89%,#c377e4 100%)}@media (max-width:991px){.header-layout-1 .main-menu-wrapper,.logo-container{border-width:0;display:flex;flex-flow:row nowrap;align-items:center;justify-content:space-between}}.mobile-header-components{display:none;z-index:10;height:30px;line-height:30px;flex-wrap:nowrap;flex:1 1 0%}.mobile-header-components .components{float:none;display:flex!important;justify-content:stretch}.mobile-header-components .components li.custom-menu-link{display:inline-block;float:none}.mobile-header-components .components li.custom-menu-link>a{width:20px;padding-bottom:15px}.mobile-header-components .components li.custom-menu-link>a .menu-counter-bubble{right:calc(50% - 10px);bottom:-10px}.header-layout-1.main-nav-dark .mobile-header-components .components li.custom-menu-link>a{color:#fff}.mobile-header-components .components .comp-sub-menu{padding:10px}.dark-skin .mobile-header-components .components .comp-sub-menu{background:#1f2024}.mobile-header-components [class*=" tie-icon-"],.mobile-header-components [class^=tie-icon-]{font-size:18px;width:20px;height:20px;vertical-align:middle}.mobile-header-components .tie-mobile-menu-icon{font-size:20px}.mobile-header-components .tie-icon-grid-4,.mobile-header-components .tie-icon-grid-9{transform:scale(1.75)}.mobile-header-components .nav-icon{display:inline-block;width:20px;height:2px;background-color:var(--base-color);position:relative;top:-4px;transition:background 0.4s ease}.mobile-header-components .nav-icon:after,.mobile-header-components .nav-icon:before{position:absolute;right:0;background-color:var(--base-color);content:"";display:block;width:100%;height:100%;transition:transform 0.4s,background 0.4s,right 0.2s ease;transform:translateZ(0);backface-visibility:hidden}.mobile-header-components .nav-icon:before{transform:translateY(-7px)}.mobile-header-components .nav-icon:after{transform:translateY(7px)}.mobile-header-components .nav-icon.is-layout-2:after,.mobile-header-components .nav-icon.is-layout-2:before{width:70%;right:15%}.mobile-header-components .nav-icon.is-layout-3:after{width:60%}.mobile-header-components .nav-icon.is-layout-4:after{width:60%;right:auto;left:0}.dark-skin .mobile-header-components .nav-icon,.dark-skin .mobile-header-components .nav-icon:after,.dark-skin .mobile-header-components .nav-icon:before,.main-nav-dark.header-layout-1 .mobile-header-components .nav-icon,.main-nav-dark.header-layout-1 .mobile-header-components .nav-icon:after,.main-nav-dark.header-layout-1 .mobile-header-components .nav-icon:before{background-color:#ffffff}.dark-skin .mobile-header-components .nav-icon .menu-text,.main-nav-dark.header-layout-1 .mobile-header-components .nav-icon .menu-text{color:#ffffff}.mobile-header-components .menu-text-wrapper{white-space:nowrap;width:auto!important}.mobile-header-components .menu-text{color:var(--base-color);line-height:30px;font-size:12px;padding:0 0 0 5px;display:inline-block;transition:color 0.4s}.dark-skin .mobile-header-components .menu-text,.main-nav-dark.header-layout-1 .mobile-header-components .menu-text{color:#ffffff}#mobile-header-components-area_1 .components li.custom-menu-link>a{margin-right:15px}#mobile-header-components-area_1 .comp-sub-menu{left:0;right:auto}#mobile-header-components-area_2 .components{flex-direction:row-reverse}#mobile-header-components-area_2 .components li.custom-menu-link>a{margin-left:15px}#mobile-menu-icon:hover .nav-icon,#mobile-menu-icon:hover .nav-icon:after,#mobile-menu-icon:hover .nav-icon:before{background-color:var(--brand-color)}@media (max-width:991px){.logo-container:after,.logo-container:before{height:1px}.mobile-components-row .logo-wrapper{height:auto!important}.mobile-components-row .logo-container,.mobile-components-row.header-layout-1 .main-menu-wrapper{flex-wrap:wrap}.mobile-components-row.header-layout-1 .header-layout-1-logo,.mobile-components-row:not(.header-layout-1) #logo{flex:1 0 100%;order:-1}.mobile-components-row .mobile-header-components{padding:5px 0;height:45px}.mobile-components-row .mobile-header-components .components li.custom-menu-link>a{padding-bottom:0}#tie-body #mobile-container,.mobile-header-components{display:block}#slide-sidebar-widgets{display:none}}.top-nav{background-color:#ffffff;position:relative;z-index:10;line-height:40px;border:1px solid rgba(0,0,0,0.1);border-width:1px 0;color:var(--base-color);clear:both}.main-nav-below.top-nav-above .top-nav{border-top-width:0}.top-nav a:not(.button):not(:hover){color:var(--base-color)}.top-nav .components>li:hover>a{color:var(--brand-color)}.top-nav .search-bar{margin-top:3px;margin-bottom:3px;line-height:34px}.topbar-wrapper{display:flex;min-height:40px}.top-nav.has-components .topbar-wrapper,.top-nav.has-menu .topbar-wrapper{display:block}.top-nav .tie-alignleft,.top-nav .tie-alignright{flex-grow:1;position:relative}.top-nav.has-breaking-news .tie-alignleft{flex:1 0 100px}.top-nav.has-breaking-news .tie-alignright{flex-grow:0;z-index:1}.top-nav-boxed .top-nav.has-components .components>li:first-child:not(.search-bar),.top-nav.has-date-components .tie-alignleft .components>li:first-child:not(.search-bar),.top-nav.has-date-components-menu .components>li:first-child:not(.search-bar){border-width:0}@media (min-width:992px){.header-layout-1.top-nav-below:not(.has-shadow) .top-nav{border-width:0 0 1px}}.topbar-today-date{float:left;padding-right:15px;flex-shrink:0}.top-menu .menu a{padding:0 10px}.top-menu .menu li:hover>a{color:var(--brand-color)}.top-menu .menu ul{display:none;position:absolute;background:#ffffff}.top-menu .menu li:hover>ul{display:block}.top-menu .menu li{position:relative}.top-menu .menu ul.sub-menu a{width:200px;line-height:20px;padding:10px 15px}.tie-alignright .top-menu{float:right;border-width:0 1px}.top-menu .menu .tie-current-menu>a{color:var(--brand-color)}@media (min-width:992px){.top-nav-boxed .topbar-wrapper{padding-right:15px;padding-left:15px}.top-nav-boxed .top-nav{background:transparent!important;border-width:0}.top-nav-boxed .topbar-wrapper{background:#ffffff;border:1px solid rgba(0,0,0,0.1);border-width:1px 0;width:100%}.top-nav-boxed.has-shadow.top-nav-below .topbar-wrapper,.top-nav-boxed.has-shadow.top-nav-below-main-nav .topbar-wrapper{border-bottom-width:0!important}}.top-nav .tie-alignleft .components,.top-nav .tie-alignleft .components>li{float:left;justify-content:start}.top-nav .tie-alignleft .comp-sub-menu{right:auto;left:-1px}.top-nav-dark .top-nav{background-color:#2c2e32;color:#cccccc}.top-nav-dark .top-nav *{border-color:rgba(255,255,255,0.1)}.top-nav-dark .top-nav .breaking a{color:#cccccc}.top-nav-dark .top-nav .breaking a:hover{color:#ffffff}.top-nav-dark .top-nav .components>li.social-icons-item .social-link:not(:hover) span,.top-nav-dark .top-nav .components>li>a{color:#cccccc}.top-nav-dark .top-nav .components>li:hover>a{color:#ffffff}.top-nav-dark .top-nav .top-menu li a{color:#cccccc;border-color:rgba(255,255,255,0.04)}.top-nav-dark .top-menu ul{background:#2c2e32}.top-nav-dark .top-menu li:hover>a{background:rgba(0,0,0,0.1);color:var(--brand-color)}.top-nav-dark.top-nav-boxed .top-nav{background-color:transparent}.top-nav-dark.top-nav-boxed .topbar-wrapper{background-color:#2c2e32}.top-nav-dark.top-nav-boxed.top-nav-above.main-nav-below .topbar-wrapper{border-width:0}.main-nav-light #main-nav .weather-icon .icon-basecloud-bg,.main-nav-light #main-nav .weather-icon .icon-cloud,.main-nav-light #main-nav .weather-icon .icon-cloud-behind,.top-nav-light #top-nav .weather-icon .icon-basecloud-bg,.top-nav-light #top-nav .weather-icon .icon-cloud,.top-nav-light #top-nav .weather-icon .icon-cloud-behind{color:#d3d3d3}@media (max-width:991px){.theme-header .components,.top-menu,.top-nav:not(.has-breaking-news),.topbar-today-date{display:none}}.breaking{display:none}.main-nav-wrapper{position:relative;z-index:4}.main-nav-below.top-nav-below-main-nav .main-nav-wrapper{z-index:9}.main-nav-above.top-nav-below .main-nav-wrapper{z-index:10}.main-nav{background-color:var(--main-nav-background);color:var(--main-nav-primary-color);position:relative;border:1px solid var(--main-nav-main-border-color);border-width:1px 0}.main-menu-wrapper{position:relative}@media (min-width:992px){.header-menu .menu{display:flex}.header-menu .menu a{display:block;position:relative}.header-menu .menu>li>a{white-space:nowrap}.header-menu .menu .sub-menu a{padding:8px 10px}.header-menu .menu a:hover,.header-menu .menu li:hover>a{z-index:2}.header-menu .menu ul:not(.sub-menu-columns):not(.sub-menu-columns-item):not(.sub-list):not(.mega-cat-sub-categories):not(.slider-arrow-nav){box-shadow:0 2px 5px rgba(0,0,0,0.1)}.header-menu .menu ul li{position:relative}.header-menu .menu ul a{border-width:0 0 1px;transition:0.15s}.header-menu .menu ul ul{top:0;left:100%}#main-nav{z-index:9;line-height:60px}.main-menu .menu a{transition:0.15s}.main-menu .menu>li>a{padding:0 14px;font-size:14px;font-weight:700}.main-menu .menu>li>.menu-sub-content{border-top:2px solid var(--main-nav-primary-color)}.main-menu .menu>li.is-icon-only>a{padding:0 20px;line-height:inherit}.main-menu .menu>li.is-icon-only>a:before{display:none}.main-menu .menu>li.is-icon-only>a .tie-menu-icon{font-size:160%;transform:translateY(15%)}.main-menu .menu ul{line-height:20px;z-index:1}.main-menu .menu .mega-cat-more-links .tie-menu-icon,.main-menu .menu .mega-link-column .tie-menu-icon,.main-menu .menu .mega-recent-featured-list .tie-menu-icon,.main-menu .menu .sub-menu .tie-menu-icon{width:20px}.main-menu .menu-sub-content{background:var(--main-nav-background);display:none;padding:15px;width:230px;position:absolute;box-shadow:0 3px 4px rgba(0,0,0,0.2)}.main-menu .menu-sub-content a{width:200px}.main-menu ul li:hover>.menu-sub-content,.main-menu ul li[aria-expanded=true]>.mega-menu-block,.main-menu ul li[aria-expanded=true]>ul{display:block;z-index:1}nav.main-nav.menu-style-default .menu>li.tie-current-menu{border-bottom:5px solid var(--main-nav-primary-color);margin-bottom:-5px}nav.main-nav.menu-style-default .menu>li.tie-current-menu>a:after{content:"";width:20px;height:2px;position:absolute;margin-top:17px;left:50%;top:50%;bottom:auto;right:auto;transform:translateX(-50%) translateY(-50%);background:#2c2f34;transition:0.3s}nav.main-nav.menu-style-solid-bg .menu>li.tie-current-menu>a,nav.main-nav.menu-style-solid-bg .menu>li:hover>a{background-color:var(--main-nav-primary-color);color:var(--main-nav-contrast-primary-color)}nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu{border-bottom-color:var(--main-nav-primary-color);border-bottom-width:10px!important;border-bottom-style:solid;margin-bottom:-10px}nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu+.tie-current-menu{border-bottom:none!important}nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu+.tie-current-menu>a:after{display:none!important}nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu>a:after{position:absolute;content:"";width:0;height:0;background-color:transparent;border-top:10px solid var(--main-nav-primary-color);border-right:10px solid transparent;bottom:-10px;left:100%;filter:brightness(80%)}nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu.mega-menu:hover:after,nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu.mega-menu:hover>a:after,nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu.menu-item-has-children:hover:after,nav.main-nav.menu-style-side-arrow .menu>li.tie-current-menu.menu-item-has-children:hover>a:after{display:none}nav.main-nav.menu-style-minimal .menu>li.tie-current-menu>a,nav.main-nav.menu-style-minimal .menu>li:hover>a{color:var(--main-nav-primary-color)!important}nav.main-nav.menu-style-minimal .menu>li.tie-current-menu>a:before,nav.main-nav.menu-style-minimal .menu>li:hover>a:before{border-top-color:var(--main-nav-primary-color)!important}nav.main-nav.menu-style-border-bottom .menu>li.tie-current-menu{border-bottom:3px solid var(--main-nav-primary-color);margin-bottom:-3px}nav.main-nav.menu-style-border-top .menu>li.tie-current-menu{border-top:3px solid var(--main-nav-primary-color);margin-bottom:-3px}nav.main-nav.menu-style-line .menu>li>a:after{content:"";left:50%;top:50%;bottom:auto;right:auto;transform:translateX(-50%) translateY(-50%);height:3px;position:absolute;margin-top:14px;background:var(--main-nav-primary-color);transition:0.4s;width:0}nav.main-nav.menu-style-line .menu>li.tie-current-menu>a:after,nav.main-nav.menu-style-line .menu>li:hover>a:after{width:50%}nav.main-nav.menu-style-arrow .menu>li.tie-current-menu>a:after{border-color:#fff transparent transparent;border-top-color:var(--main-nav-primary-color);border-style:solid;border-width:7px 7px 0;display:block;height:0;left:50%;margin-left:-7px;top:0!important;width:0;content:"";position:absolute}nav.main-nav.menu-style-vertical-line .menu>li.tie-current-menu>a:after{content:"";width:2px;height:20px;position:absolute;margin-top:17px;left:50%;right:auto;transform:translateX(-50%);bottom:0;background:var(--main-nav-primary-color)}.header-layout-1 .main-menu-wrap .menu>li:only-child:not(.mega-menu){position:relative}.header-layout-1 .main-menu-wrap .menu>li:only-child>.menu-sub-content{right:0;left:auto}.header-layout-1 .main-menu-wrap .menu>li:only-child>.menu-sub-content ul{left:auto;right:100%}nav.main-nav .components>li:hover>a{color:var(--brand-color)}.main-nav .components li a:hover,.main-nav .menu ul li.current-menu-item:not(.mega-link-column)>a,.main-nav .menu ul li:hover>a:not(.megamenu-pagination){color:var(--main-nav-primary-color)}.main-nav .components li a,.main-nav .menu a{color:var(--main-nav-text-color)}.main-nav .components li a.button:hover,.main-nav .components li a.checkout-button,.main-nav .components li.custom-menu-button:hover a.button{color:var(--main-nav-contrast-primary-color)}.main-nav-light{--main-nav-background:#FFFFFF;--main-nav-secondry-background:rgba(0,0,0,0.03);--main-nav-primary-color:var(--brand-color);--main-nav-contrast-primary-color:var(--bright-color);--main-nav-text-color:var(--base-color);--main-nav-secondry-text-color:rgba(0,0,0,0.5);--main-nav-main-border-color:rgba(0,0,0,0.1);--main-nav-secondry-border-color:rgba(0,0,0,0.08)}.main-nav-light.fixed-nav{background-color:rgba(255,255,255,0.95)}.main-nav-dark{--main-nav-background:#1f2024;--main-nav-secondry-background:rgba(0,0,0,0.2);--main-nav-primary-color:var(--brand-color);--main-nav-contrast-primary-color:var(--bright-color);--main-nav-text-color:#FFFFFF;--main-nav-secondry-text-color:rgba(225,255,255,0.5);--main-nav-main-border-color:rgba(255,255,255,0.07);--main-nav-secondry-border-color:rgba(255,255,255,0.04)}.main-nav-dark .main-nav,.main-nav-dark .main-nav ul.cats-horizontal li a{border-width:0}.main-nav-dark .main-nav.fixed-nav{background-color:rgba(31,32,36,0.95)}}@media (min-width:992px){.mega-menu>a:before,header .menu-item-has-children>a:before{content:"";position:absolute;right:10px;top:50%;bottom:auto;transform:translateY(-50%);font-family:"tiefonticon"!important;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;content:"\f079";font-size:11px;line-height:1}.mega-menu .menu-item-has-children>a:before,header .menu-item-has-children .menu-item-has-children>a:before{content:"\f106";font-size:15px}.menu .mega-menu:not(.is-icon-only)>a,.menu>.menu-item-has-children:not(.is-icon-only)>a{padding-right:25px}}@media (min-width:992px){.main-nav-boxed .main-nav{border-width:0}.main-nav-boxed .main-menu-wrapper{float:left;width:100%;background-color:var(--main-nav-background);padding-right:15px}.main-nav-boxed.main-nav-light .main-menu-wrapper{border:1px solid var(--main-nav-main-border-color)}.dark-skin .main-nav-boxed.main-nav-light .main-menu-wrapper{border-width:0}.main-nav-boxed.main-nav-light .fixed-nav .main-menu-wrapper{border-color:transparent}.main-nav-above.top-nav-above #main-nav:not(.fixed-nav){top:-1px}.main-nav-below.top-nav-below #main-nav:not(.fixed-nav){bottom:-1px}.dark-skin .main-nav-below.top-nav-above #main-nav{border-width:0}.dark-skin .main-nav-below.top-nav-below-main-nav #main-nav{border-top-width:0}}.main-nav-boxed .fixed-nav .main-menu-wrapper,.main-nav-boxed .main-nav:not(.fixed-nav),.theme-header:not(.main-nav-boxed) .fixed-nav .main-menu-wrapper{background:transparent!important}@media (min-width:992px){.header-layout-1.main-nav-below.top-nav-above .main-nav{margin-top:-1px;border-top-width:0}.header-layout-1.main-nav-below.top-nav-above .breaking-title{top:0;margin-bottom:-1px}}.header-layout-1.main-nav-below.top-nav-below-main-nav .main-nav-wrapper{z-index:9}.header-layout-1.main-nav-below.top-nav-below-main-nav .main-nav{margin-bottom:-1px;bottom:0;border-top-width:0}@media (min-width:992px){.header-layout-1.main-nav-below.top-nav-below-main-nav .top-nav{margin-top:-1px}}.header-layout-1.has-shadow:not(.top-nav-below) .main-nav{border-bottom:0}#theme-header.header-layout-1>div:only-child nav{border-width:0!important}@media only screen and (min-width:992px) and (max-width:1100px){.main-nav .menu>li:not(.is-icon-only)>a{padding-left:7px;padding-right:7px}.main-nav .menu>li:not(.is-icon-only)>a:before{display:none}.main-nav .menu>li.is-icon-only>a{padding-left:15px;padding-right:15px}}.menu-tiny-label{font-size:10px;border-radius:10px;padding:2px 7px 3px;margin-left:3px;line-height:1;position:relative;top:-1px}.menu-tiny-label.menu-tiny-circle{border-radius:100%}@media (max-width:991px){#sticky-logo{display:none}}#main-nav:not(.fixed-nav) #sticky-logo,#main-nav:not(.fixed-nav) .flex-placeholder{display:none}@media (min-width:992px){#sticky-logo{overflow:hidden;float:left;vertical-align:middle}#sticky-logo a{line-height:1;display:inline-block}#sticky-logo img{position:relative;vertical-align:middle;padding:8px 10px;top:-1px;max-height:50px}.header-layout-1 #sticky-logo img,.just-before-sticky #sticky-logo img{padding:0}.header-layout-1:not(.has-custom-sticky-logo) #sticky-logo{display:none}.theme-header #sticky-logo img{opacity:0;visibility:hidden;width:0!important;transform:translateY(75%);transition:transform 0.3s cubic-bezier(0.55,0,0.1,1),opacity 0.6s cubic-bezier(0.55,0,0.1,1)}.theme-header.header-layout-1:not(.has-custom-sticky-logo) #sticky-logo img{transition:none}.theme-header:not(.header-layout-1) #main-nav:not(.fixed-nav) #sticky-logo img{margin-left:-20px}.header-layout-1 .flex-placeholder{flex-grow:1}}.theme-header .fixed-nav{position:fixed;width:100%;top:0;bottom:auto!important;z-index:100;will-change:transform;transform:translateY(-100%);transition:transform 0.3s;box-shadow:rgba(99,99,99,0.2) 0px 2px 8px 0px;border-width:0;background-color:rgba(255,255,255,0.95)}.theme-header .fixed-nav:not(.just-before-sticky){line-height:60px!important}@media (min-width:992px){.theme-header .fixed-nav:not(.just-before-sticky) .header-layout-1-logo{display:none}}.theme-header .fixed-nav:not(.just-before-sticky) #sticky-logo{display:block}.theme-header .fixed-nav:not(.just-before-sticky) #sticky-logo img{opacity:1;visibility:visible;width:auto!important;transform:translateY(0)}@media (min-width:992px){.header-layout-1:not(.just-before-sticky):not(.has-custom-sticky-logo) .fixed-nav #sticky-logo{display:block}}.admin-bar .theme-header .fixed-nav{top:32px}@media (max-width:782px){.admin-bar .theme-header .fixed-nav{top:46px}}@media (max-width:600px){.admin-bar .theme-header .fixed-nav{top:0}}@media (min-width:992px){.border-layout .theme-header .fixed-nav{top:25px}.border-layout.admin-bar .theme-header .fixed-nav{top:57px}}.theme-header .fixed-nav .container{opacity:0.95}.theme-header .fixed-nav .main-menu,.theme-header .fixed-nav .main-menu-wrapper{border-top:0}.theme-header .fixed-nav.fixed-unpinned:not(.default-behavior-mode) .main-menu .menu>li.tie-current-menu{border-bottom-width:0;margin-bottom:0}.theme-header .fixed-nav.unpinned-no-transition{transition:none}.theme-header .fixed-nav:not(.fixed-unpinned):not(.fixed-pinned) .tie-current-menu{border:none!important}.theme-header .default-behavior-mode.fixed-unpinned,.theme-header .fixed-pinned{transform:translate3d(0,0,0)}@media (max-width:991px){.theme-header .fixed-nav{transition:none}.fixed-nav#main-nav.sticky-nav-slide.sticky-down,.fixed-nav#main-nav.sticky-up,.fixed-nav.logo-container.sticky-nav-slide.sticky-down,.fixed-nav.logo-container.sticky-up{transition:transform 0.4s ease}.sticky-type-slide .fixed-nav#main-nav.sticky-nav-slide-visible,.sticky-type-slide .fixed-nav.logo-container.sticky-nav-slide-visible{transform:translateY(0)}.fixed-nav.default-behavior-mode{transform:none!important}}@media (max-width:991px){#tie-wrapper header#theme-header{box-shadow:none;background:transparent!important}.header-layout-1 .main-nav,.logo-container{border-width:0;box-shadow:0 3px 7px 0 rgba(0,0,0,0.1)}.header-layout-1.top-nav-below .main-nav:not(.fixed-nav){box-shadow:none}.is-header-layout-1.has-header-ad .top-nav-below .main-nav{border-bottom-width:1px}.header-layout-1 .main-nav,.logo-container{background-color:#ffffff}.dark-skin .logo-container,.main-nav-dark.header-layout-1 .main-nav{background-color:#1f2024}.dark-skin #theme-header .logo-container.fixed-nav{background-color:rgba(31,32,36,0.95)}.header-layout-1.main-nav-below.top-nav-below-main-nav .main-nav{margin-bottom:0}#sticky-nav-mask,.header-layout-1 #menu-components-wrap,.header-layout-2 .main-nav-wrapper,.header-layout-3 .main-nav-wrapper{display:none}.main-menu-wrapper .main-menu-wrap{width:100%}}</style>
    	<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
    	
    		<!-- All in One SEO 4.7.8 - aioseo.com -->
    	<meta name="description" content="Réalité Virtuelle • SimRacing • Jeux Vidéo. News, Tests &amp; guides sur les casques VR : PSVR2, Quest et PCVR. Jeux de course : GT7, AMS2, ACC, Forza, WRC, F1, etc" />
    	<meta name="robots" content="max-image-preview:large" />
    	<link rel="canonical" href="https://vractu.com/" />
    	<meta name="generator" content="All in One SEO (AIOSEO) 4.7.8" />
    		<meta property="og:locale" content="fr_FR" />
    		<meta property="og:site_name" content="VR ACTU - Réalité Virtuelle | Mixte • SimRacing • Jeux Vidéo" />
    		<meta property="og:type" content="article" />
    		<meta property="og:title" content="VR ACTU : Réalité Virtuelle • SimRacing • Jeux Vidéo" />
    		<meta property="og:description" content="Réalité Virtuelle • SimRacing • Jeux Vidéo. News, Tests &amp; guides sur les casques VR : PSVR2, Quest et PCVR. Jeux de course : GT7, AMS2, ACC, Forza, WRC, F1, etc" />
    		<meta property="og:url" content="https://vractu.com/" />
    		<meta property="article:published_time" content="2023-02-05T16:31:38+00:00" />
    		<meta property="article:modified_time" content="2024-11-19T13:28:50+00:00" />
    		<meta property="article:publisher" content="https://www.facebook.com/VRactu" />
    		<meta name="twitter:card" content="summary_large_image" />
    		<meta name="twitter:site" content="@VR_ACTU" />
    		<meta name="twitter:title" content="VR ACTU : Réalité Virtuelle • SimRacing • Jeux Vidéo" />
    		<meta name="twitter:description" content="Réalité Virtuelle • SimRacing • Jeux Vidéo. News, Tests &amp; guides sur les casques VR : PSVR2, Quest et PCVR. Jeux de course : GT7, AMS2, ACC, Forza, WRC, F1, etc" />
    		<meta name="twitter:creator" content="@VR_ACTU" />
    		<script type="application/ld+json" class="aioseo-schema">
    			{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/vractu.com\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/vractu.com\/#listItem","position":1,"name":"Domicile"}]},{"@type":"Organization","@id":"https:\/\/vractu.com\/#organization","name":"VR ACTU","description":"R\u00e9alit\u00e9 Virtuelle | Mixte \u2022 SimRacing \u2022 Jeux Vid\u00e9o","url":"https:\/\/vractu.com\/","logo":{"@type":"ImageObject","url":"https:\/\/vractu.com\/wp-content\/uploads\/2023\/03\/Logo-sombre.jpg","@id":"https:\/\/vractu.com\/#organizationLogo","width":2078,"height":2078,"caption":"VRACTU"},"image":{"@id":"https:\/\/vractu.com\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/VRactu","https:\/\/twitter.com\/VR_ACTU"]},{"@type":"WebPage","@id":"https:\/\/vractu.com\/#webpage","url":"https:\/\/vractu.com\/","name":"VR ACTU : R\u00e9alit\u00e9 Virtuelle \u2022 SimRacing \u2022 Jeux Vid\u00e9o","description":"R\u00e9alit\u00e9 Virtuelle \u2022 SimRacing \u2022 Jeux Vid\u00e9o. News, Tests & guides sur les casques VR : PSVR2, Quest et PCVR. Jeux de course : GT7, AMS2, ACC, Forza, WRC, F1, etc","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/vractu.com\/#website"},"breadcrumb":{"@id":"https:\/\/vractu.com\/#breadcrumblist"},"image":{"@type":"ImageObject","url":"https:\/\/vractu.com\/wp-content\/uploads\/2023\/03\/Logo-sombre.jpg","@id":"https:\/\/vractu.com\/#mainImage","width":2078,"height":2078,"caption":"VRACTU"},"primaryImageOfPage":{"@id":"https:\/\/vractu.com\/#mainImage"},"datePublished":"2023-02-05T17:31:38+01:00","dateModified":"2024-11-19T14:28:50+01:00"},{"@type":"WebSite","@id":"https:\/\/vractu.com\/#website","url":"https:\/\/vractu.com\/","name":"VR ACTU","alternateName":"VRACTU","description":"R\u00e9alit\u00e9 Virtuelle | Mixte \u2022 SimRacing \u2022 Jeux Vid\u00e9o","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/vractu.com\/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vractu.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}}]}
    		</script>
    		<!-- All in One SEO -->
    
    <link rel='dns-prefetch' href='//www.googletagmanager.com' />
    <link rel="alternate" type="application/rss+xml" title="VR ACTU &raquo; Flux" href="https://vractu.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="VR ACTU &raquo; Flux des commentaires" href="https://vractu.com/comments/feed/" />
    
    		<style type="text/css">
    			:root{				
    			--tie-preset-gradient-1: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    			--tie-preset-gradient-2: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    			--tie-preset-gradient-3: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    			--tie-preset-gradient-4: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    			--tie-preset-gradient-5: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    			--tie-preset-gradient-6: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    			--tie-preset-gradient-7: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    			--tie-preset-gradient-8: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    			--tie-preset-gradient-9: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    			--tie-preset-gradient-10: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    			--tie-preset-gradient-11: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    			--tie-preset-gradient-12: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    			--tie-preset-gradient-13: linear-gradient(135deg, #4D34FA, #ad34fa);
    			--tie-preset-gradient-14: linear-gradient(135deg, #0057FF, #31B5FF);
    			--tie-preset-gradient-15: linear-gradient(135deg, #FF007A, #FF81BD);
    			--tie-preset-gradient-16: linear-gradient(135deg, #14111E, #4B4462);
    			--tie-preset-gradient-17: linear-gradient(135deg, #F32758, #FFC581);
    
    			
    					--main-nav-background: #1f2024;
    					--main-nav-secondry-background: rgba(0,0,0,0.2);
    					--main-nav-primary-color: #0088ff;
    					--main-nav-contrast-primary-color: #FFFFFF;
    					--main-nav-text-color: #FFFFFF;
    					--main-nav-secondry-text-color: rgba(225,255,255,0.5);
    					--main-nav-main-border-color: rgba(255,255,255,0.07);
    					--main-nav-secondry-border-color: rgba(255,255,255,0.04);
    				
    			}
    		</style>
    	
    <meta property="og:title" content="VR ACTU" />
    <meta property="og:type" content="website" />
    <meta property="og:description" content="Réalité Virtuelle | Mixte • SimRacing • Jeux Vidéo" />
    <meta property="og:url" content="https://vractu.com/" />
    <meta property="og:site_name" content="VR ACTU" />
    <meta property="og:image" content="https://vractu.com/wp-content/uploads/2023/03/Logo-sombre.jpg" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" /><script type="text/javascript">
    /* <![CDATA[ */
    window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/vractu.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.7.1"}};
    /*! This file is auto-generated */
    !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
    /* ]]> */
    </script>
    <style id='wp-emoji-styles-inline-css' type='text/css'>
    
    	img.wp-smiley, img.emoji {
    		display: inline !important;
    		border: none !important;
    		box-shadow: none !important;
    		height: 1em !important;
    		width: 1em !important;
    		margin: 0 0.07em !important;
    		vertical-align: -0.1em !important;
    		background: none !important;
    		padding: 0 !important;
    	}
    </style>
    <style id='global-styles-inline-css' type='text/css'>
    :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--global-color: #f88c00;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
    :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
    :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
    :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
    </style>
    <link rel='stylesheet' id='cmplz-general-css' href='https://vractu.com/wp-content/plugins/complianz-gdpr/assets/css/cookieblocker.min.css?ver=1736705189' type='text/css' media='all' />
    <link rel='stylesheet' id='css-protect.css-css' href='https://vractu.com/wp-content/plugins/wccp-pro/css-protect.css?wccp_ver_num=11&#038;ver=10.9.2' type='text/css' media='all' />
    <style id='css-protect.css-inline-css' type='text/css'>
    .wf-active .logo-text,.wf-active h1,.wf-active h2,.wf-active h3,.wf-active h4,.wf-active h5,.wf-active h6,.wf-active .the-subtitle{font-family: 'Poppins';}html .entry h4{font-size: 19px;}html .entry h5{font-size: 16px;}:root:root{--brand-color: #f88c00;--dark-brand-color: #c65a00;--bright-color: #FFFFFF;--base-color: #2c2f34;}#reading-position-indicator{box-shadow: 0 0 10px rgba( 248,140,0,0.7);}html :root:root{--brand-color: #f88c00;--dark-brand-color: #c65a00;--bright-color: #FFFFFF;--base-color: #2c2f34;}html #reading-position-indicator{box-shadow: 0 0 10px rgba( 248,140,0,0.7);}html .tie-weather-widget.widget,html .container-wrapper{box-shadow: 0 5px 15px 0 rgba(0,0,0,0.05);}html .dark-skin .tie-weather-widget.widget,html .dark-skin .container-wrapper{box-shadow: 0 5px 15px 0 rgba(0,0,0,0.2);}html #header-notification-bar{--tie-buttons-color: #FFFFFF;--tie-buttons-border-color: #FFFFFF;--tie-buttons-hover-color: #e1e1e1;--tie-buttons-hover-text: #000000;}html #header-notification-bar{--tie-buttons-text: #000000;}html #top-nav a:not(:hover),html #top-nav input,html #top-nav #search-submit,html #top-nav .fa-spinner,html #top-nav .dropdown-social-icons li a span,html #top-nav .components > li .social-link:not(:hover) span,html #autocomplete-suggestions.search-in-top-nav a{color: #838383;}html #top-nav input::-moz-placeholder{color: #838383;}html #top-nav input:-moz-placeholder{color: #838383;}html #top-nav input:-ms-input-placeholder{color: #838383;}html #top-nav input::-webkit-input-placeholder{color: #838383;}html #top-nav,html .search-in-top-nav{--tie-buttons-color: #000000;--tie-buttons-border-color: #000000;--tie-buttons-text: #FFFFFF;--tie-buttons-hover-color: #000000;}html #top-nav a:hover,html #top-nav .menu li:hover > a,html #top-nav .menu > .tie-current-menu > a,html #top-nav .components > li:hover > a,html #top-nav .components #search-submit:hover,html #autocomplete-suggestions.search-in-top-nav .post-title a:hover{color: #000000;}html #top-nav,html #top-nav .comp-sub-menu,html #top-nav .tie-weather-widget{color: #838383;}html #autocomplete-suggestions.search-in-top-nav .post-meta,html #autocomplete-suggestions.search-in-top-nav .post-meta a:not(:hover){color: rgba( 131,131,131,0.7 );}html #top-nav .weather-icon .icon-cloud,html #top-nav .weather-icon .icon-basecloud-bg,html #top-nav .weather-icon .icon-cloud-behind{color: #838383 !important;}html #main-nav a:not(:hover),html #main-nav a.social-link:not(:hover) span,html #main-nav .dropdown-social-icons li a span,html #autocomplete-suggestions.search-in-main-nav a{color: #ffffff;}html .main-nav,html .search-in-main-nav{--main-nav-primary-color: #f88c00;--tie-buttons-color: #f88c00;--tie-buttons-border-color: #f88c00;--tie-buttons-text: #FFFFFF;--tie-buttons-hover-color: #da6e00;}html #main-nav .mega-links-head:after,html #main-nav .cats-horizontal a.is-active,html #main-nav .cats-horizontal a:hover,html #main-nav .spinner > div{background-color: #f88c00;}html #main-nav .menu ul li:hover > a,html #main-nav .menu ul li.current-menu-item:not(.mega-link-column) > a,html #main-nav .components a:hover,html #main-nav .components > li:hover > a,html #main-nav #search-submit:hover,html #main-nav .cats-vertical a.is-active,html #main-nav .cats-vertical a:hover,html #main-nav .mega-menu .post-meta a:hover,html #main-nav .mega-menu .post-box-title a:hover,html #autocomplete-suggestions.search-in-main-nav a:hover,html #main-nav .spinner-circle:after{color: #f88c00;}html #main-nav .menu > li.tie-current-menu > a,html #main-nav .menu > li:hover > a,html .theme-header #main-nav .mega-menu .cats-horizontal a.is-active,html .theme-header #main-nav .mega-menu .cats-horizontal a:hover{color: #FFFFFF;}html #main-nav .menu > li.tie-current-menu > a:before,html #main-nav .menu > li:hover > a:before{border-top-color: #FFFFFF;}html #main-nav,html #main-nav input,html #main-nav #search-submit,html #main-nav .fa-spinner,html #main-nav .comp-sub-menu,html #main-nav .tie-weather-widget{color: #aaaaaa;}html #main-nav input::-moz-placeholder{color: #aaaaaa;}html #main-nav input:-moz-placeholder{color: #aaaaaa;}html #main-nav input:-ms-input-placeholder{color: #aaaaaa;}html #main-nav input::-webkit-input-placeholder{color: #aaaaaa;}html #main-nav .mega-menu .post-meta,html #main-nav .mega-menu .post-meta a,html #autocomplete-suggestions.search-in-main-nav .post-meta{color: rgba(170,170,170,0.6);}html #main-nav .weather-icon .icon-cloud,html #main-nav .weather-icon .icon-basecloud-bg,html #main-nav .weather-icon .icon-cloud-behind{color: #aaaaaa !important;}html #footer{background-color: #333333;}html #site-info{background-color: #2e2e2e;}html #footer .posts-list-counter .posts-list-items li.widget-post-list:before{border-color: #333333;}html #footer .timeline-widget a .date:before{border-color: rgba(51,51,51,0.8);}html #footer .footer-boxed-widget-area,html #footer textarea,html #footer input:not([type=submit]),html #footer select,html #footer code,html #footer kbd,html #footer pre,html #footer samp,html #footer .show-more-button,html #footer .slider-links .tie-slider-nav span,html #footer #wp-calendar,html #footer #wp-calendar tbody td,html #footer #wp-calendar thead th,html #footer .widget.buddypress .item-options a{border-color: rgba(255,255,255,0.1);}html #footer .social-statistics-widget .white-bg li.social-icons-item a,html #footer .widget_tag_cloud .tagcloud a,html #footer .latest-tweets-widget .slider-links .tie-slider-nav span,html #footer .widget_layered_nav_filters a{border-color: rgba(255,255,255,0.1);}html #footer .social-statistics-widget .white-bg li:before{background: rgba(255,255,255,0.1);}html .site-footer #wp-calendar tbody td{background: rgba(255,255,255,0.02);}html #footer .white-bg .social-icons-item a span.followers span,html #footer .circle-three-cols .social-icons-item a .followers-num,html #footer .circle-three-cols .social-icons-item a .followers-name{color: rgba(255,255,255,0.8);}html #footer .timeline-widget ul:before,html #footer .timeline-widget a:not(:hover) .date:before{background-color: #151515;}html .meta-views.meta-item .tie-icon-fire:before{content: "\f06e" !important;}html .tie-insta-header{margin-bottom: 15px;}html .tie-insta-avatar a{width: 70px;height: 70px;display: block;position: relative;float: left;margin-right: 15px;margin-bottom: 15px;}html .tie-insta-avatar a:before{content: "";position: absolute;width: calc(100% + 6px);height: calc(100% + 6px);left: -3px;top: -3px;border-radius: 50%;background: #d6249f;background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%);}html .tie-insta-avatar a:after{position: absolute;content: "";width: calc(100% + 3px);height: calc(100% + 3px);left: -2px;top: -2px;border-radius: 50%;background: #fff;}html .dark-skin .tie-insta-avatar a:after{background: #27292d;}html .tie-insta-avatar img{border-radius: 50%;position: relative;z-index: 2;transition: all 0.25s;}html .tie-insta-avatar img:hover{box-shadow: 0px 0px 15px 0 #6b54c6;}html .tie-insta-info{font-size: 1.3em;font-weight: bold;margin-bottom: 5px;}html body .mag-box .breaking,html body .social-icons-widget .social-icons-item .social-link,html body .widget_product_tag_cloud a,html body .widget_tag_cloud a,html body .post-tags a,html body .widget_layered_nav_filters a,html body .post-bottom-meta-title,html body .post-bottom-meta a,html body .post-cat,html body .show-more-button,html body #instagram-link.is-expanded .follow-button,html body .cat-counter a + span,html body .mag-box-options .slider-arrow-nav a,html body .main-menu .cats-horizontal li a,html body #instagram-link.is-compact,html body .pages-numbers a,html body .pages-nav-item,html body .bp-pagination-links .page-numbers,html body .fullwidth-area .widget_tag_cloud .tagcloud a,html body ul.breaking-news-nav li.jnt-prev,html body ul.breaking-news-nav li.jnt-next,html body #tie-popup-search-mobile table.gsc-search-box{border-radius: 35px;}html body .mag-box ul.breaking-news-nav li{border: 0 !important;}html body #instagram-link.is-compact{padding-right: 40px;padding-left: 40px;}html body .post-bottom-meta-title,html body .post-bottom-meta a,html body .more-link{padding-right: 15px;padding-left: 15px;}html body #masonry-grid .container-wrapper .post-thumb img{border-radius: 0px;}html body .video-thumbnail,html body .review-item,html body .review-summary,html body .user-rate-wrap,html body textarea,html body input,html body select{border-radius: 5px;}html body .post-content-slideshow,html body #tie-read-next,html body .prev-next-post-nav .post-thumb,html body .post-thumb img,html body .container-wrapper,html body .tie-popup-container .container-wrapper,html body .widget,html body .grid-slider-wrapper .grid-item,html body .slider-vertical-navigation .slide,html body .boxed-slider:not(.grid-slider-wrapper) .slide,html body .buddypress-wrap .activity-list .load-more a,html body .buddypress-wrap .activity-list .load-newest a,html body .woocommerce .products .product .product-img img,html body .woocommerce .products .product .product-img,html body .woocommerce .woocommerce-tabs,html body .woocommerce div.product .related.products,html body .woocommerce div.product .up-sells.products,html body .woocommerce .cart_totals,html .woocommerce .cross-sells,html body .big-thumb-left-box-inner,html body .miscellaneous-box .posts-items li:first-child,html body .single-big-img,html body .masonry-with-spaces .container-wrapper .slide,html body .news-gallery-items li .post-thumb,html body .scroll-2-box .slide,html .magazine1.archive:not(.bbpress) .entry-header-outer,html .magazine1.search .entry-header-outer,html .magazine1.archive:not(.bbpress) .mag-box .container-wrapper,html .magazine1.search .mag-box .container-wrapper,html body.magazine1 .entry-header-outer + .mag-box,html body .digital-rating-static,html body .entry q,html body .entry blockquote,html body #instagram-link.is-expanded,html body.single-post .featured-area,html body.post-layout-8 #content,html body .footer-boxed-widget-area,html body .tie-video-main-slider,html body .post-thumb-overlay,html body .widget_media_image img,html body .stream-item-mag img,html body .media-page-layout .post-element{border-radius: 15px;}html #subcategories-section .container-wrapper{border-radius: 15px !important;margin-top: 15px !important;border-top-width: 1px !important;}@media (max-width: 767px) {html .tie-video-main-slider iframe{border-top-right-radius: 15px;border-top-left-radius: 15px;}}html .magazine1.archive:not(.bbpress) .mag-box .container-wrapper,html .magazine1.search .mag-box .container-wrapper{margin-top: 15px;border-top-width: 1px;}html body .section-wrapper:not(.container-full) .wide-slider-wrapper .slider-main-container,html body .section-wrapper:not(.container-full) .wide-slider-three-slids-wrapper{border-radius: 15px;overflow: hidden;}html body .wide-slider-nav-wrapper,html body .share-buttons-bottom,html body .first-post-gradient li:first-child .post-thumb:after,html body .scroll-2-box .post-thumb:after{border-bottom-left-radius: 15px;border-bottom-right-radius: 15px;}html body .main-menu .menu-sub-content,html body .comp-sub-menu{border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;}html body.single-post .featured-area{overflow: hidden;}html body #check-also-box.check-also-left{border-top-right-radius: 15px;border-bottom-right-radius: 15px;}html body #check-also-box.check-also-right{border-top-left-radius: 15px;border-bottom-left-radius: 15px;}html body .mag-box .breaking-news-nav li:last-child{border-top-right-radius: 35px;border-bottom-right-radius: 35px;}html body .mag-box .breaking-title:before{border-top-left-radius: 35px;border-bottom-left-radius: 35px;}html body .tabs li:last-child a,html body .full-overlay-title li:not(.no-post-thumb) .block-title-overlay{border-top-right-radius: 15px;}html body .center-overlay-title li:not(.no-post-thumb) .block-title-overlay,html body .tabs li:first-child a{border-top-left-radius: 15px;}#disqus_thread { margin: 6px !important;}#disqus_thread a { color: #f88c00 !important;}
    </style>
    <script type="text/javascript" src="https://vractu.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
    <script type="text/javascript" src="https://vractu.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script>
    
    <!-- Extrait de code de la balise Google (gtag.js) ajouté par Site Kit -->
    
    <!-- Extrait Google Analytics ajouté par Site Kit -->
    <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-M69D89X" id="google_gtagjs-js" async></script>
    <script type="text/javascript" id="google_gtagjs-js-after">
    /* <![CDATA[ */
    window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
    gtag("set","linker",{"domains":["vractu.com"]});
    gtag("js", new Date());
    gtag("set", "developer_id.dZTNiMT", true);
    gtag("config", "GT-M69D89X");
    /* ]]> */
    </script>
    
    <!-- Extrait de code de la balise Google de fin (gtag.js) ajouté par Site Kit -->
    <link rel="https://api.w.org/" href="https://vractu.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://vractu.com/wp-json/wp/v2/pages/59" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://vractu.com/xmlrpc.php?rsd" />
    <meta name="generator" content="WordPress 6.7.1" />
    <link rel='shortlink' href='https://vractu.com/' />
    <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://vractu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fvractu.com%2F" />
    <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://vractu.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fvractu.com%2F&#038;format=xml" />
    <meta name="generator" content="Site Kit by Google 1.145.0" /><script type='text/javascript'>
    /* <![CDATA[ */
    var taqyeem = {"ajaxurl":"https://vractu.com/wp-admin/admin-ajax.php" , "your_rating":"Your Rating:"};
    /* ]]> */
    </script>
    
    			<style>.cmplz-hidden {
    					display: none !important;
    				}</style> <meta name="description" content="Réalité Virtuelle | Mixte • SimRacing • Jeux Vidéo" /><meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="google-site-verification" content="FfZ3IW56bKR95tSmZdJciTl52wzMXPrutqa2_mTt9_Q"><link rel="icon" href="https://vractu.com/wp-content/uploads/2023/02/cropped-Icon-onglet-sombre-32x32.jpg" sizes="32x32" />
    <link rel="icon" href="https://vractu.com/wp-content/uploads/2023/02/cropped-Icon-onglet-sombre-192x192.jpg" sizes="192x192" />
    <link rel="apple-touch-icon" href="https://vractu.com/wp-content/uploads/2023/02/cropped-Icon-onglet-sombre-180x180.jpg" />
    <meta name="msapplication-TileImage" content="https://vractu.com/wp-content/uploads/2023/02/cropped-Icon-onglet-sombre-270x270.jpg" />
    </head>
    
    

    VR ACTU : Réalité Virtuelle • SimRacing • Jeux Vidéo

    Recherche META Description de la page

    Réalité Virtuelle | Mixte • SimRacing • Jeux Vidéo

    Recherche META Keywords de la page

    UPDATE DOMAINES SET server='LiteSpeed',redirection='https://vractu.com/',Status='200',err='',[TITRE]=N'VR ACTU : Réalité Virtuelle • SimRacing • Jeux Vidéo',[DESCRIPTION]=N'Réalité Virtuelle | Mixte • SimRacing • Jeux Vidéo',[KEYWORDS]=N'' WHERE id=36775894
  • 0

    VR ACTU : Réalité Virtuelle • SimRacing • Jeux Vidéo Réalité Virtuelle | Mixte • SimRacing • Jeux Vidéo

  • 0. VR (2)
  • --------->0
  • 1. ACTU (4)
  • --------->0
  • 2. : (1)
  • --------->0
  • 3. Réalité (7)
  • --------->0
  • 4. Virtuelle (9)
  • --------->0
  • 5. (1)
  • --------->0
  • 6. SimRacing (9)
  • --------->0
  • 8. Jeux (4)
  • --------->0
  • 9. Vidéo (5)
  • --------->0
  • 12. | (1)
  • --------->0
  • 13. Mixte (5)
  • --------->0
    INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'VR',36775894),(N'ACTU',36775894),(N':',36775894),(N'Réalité',36775894),(N'Virtuelle',36775894),(N'•',36775894),(N'SimRacing',36775894),(N'Jeux',36775894),(N'Vidéo',36775894),(N'|',36775894),(N'Mixte',36775894)