<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="https://www.contractstore.com/xmlrpc.php">
    <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 = "Alert: Content selection is disabled!!";


"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("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("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("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("touchstart");
	
	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 (elemtype == "A") return;

	if (apply_class_exclusion(elemtype) == 'Yes') return;
	/*also there is no e.target property in IE.*/
	/*instead IE uses window.event.srcElement*/
	
	if(!wccp_pro_is_passive()) e.preventDefault();
	if (!timer) {
		timer = setTimeout(onlongtouch, touchduration);
	}
}

function touchend()
{
	wccp_pro_log_to_console_if_allowed("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("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("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;
	
	wccp_pro_log_to_console_if_allowed("current_clicked_element = " + current_clicked_element, arguments.callee.name);
}
</script>
	<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_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;
		}
	}
	
	wccp_pro_log_to_console_if_allowed("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_iscontenteditable_flag = true;
		
		wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: true");
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: false");
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
	if(window.wccp_pro_iscontenteditable_flag == true) return;
	
	wccp_pro_log_to_console_if_allowed("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('('));

	wccp_pro_log_to_console_if_allowed("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")
	{
		wccp_pro_log_to_console_if_allowed("is_content_editable_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("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("is_selection_enabled_element: true >>" + element_name);
		
		return true;
	}
	wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: false >>" + element_name);
	
	return false;
}
*/
/*Hot keys function  */
function disable_hot_keys(e)
{
	wccp_pro_log_to_console_if_allowed("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('You are not allowed to do this action on the current page!!');
			
			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('You are not allowed to do this action on the current page!!');
			return false;
		}	
	if (e.ctrlKey || e.metaKey)
	{
		if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
		{
			 show_wccp_pro_message('Alert: You are not allowed to copy content or view source');
			 return false;
		}
		if (elemtype!= 'TEXT')
		{
						
			if (key == 65)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 67)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 88)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}			
						
			if (key == 86)
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}		}
				
		if (key == 85)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				if (key == 80)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
				if (key == 44)
		{
			copyTextToClipboard("no");
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			return false;
		}		
		
					if (key == 73)//F12 chrome developer key disable
			{
				show_wccp_pro_message('You are not allowed to do this action on the current page!!');
				return false;
			}
				
				
		if (key == 83)
		{
			show_wccp_pro_message('You are not allowed to do this action on the current page!!');
			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;
	position:absolute;
	top:0;
	right:0;
	border-radius: 4px;
	opacity: 100%;
}
.wccp_pro_copy_code_button:hover
{
	opacity: 100%;
}

.wccp_pro_copy_code_button[disabled]
{
	opacity: 40%;
}
code,pre
{
	overflow: visible;
	white-space: pre-line;
}
</style>
<script id="wccp_pro_disable_Right_Click">

	function wccp_pro_nocontext(e)
	{
		wccp_pro_log_to_console_if_allowed("wccp_pro_nocontext function");
		
		const caller = wccp_pro_nocontext.caller;
		
		if (caller) wccp_pro_log_to_console_if_allowed("Caller function is: " + caller.name);
		
		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;
		
		wccp_pro_log_to_console_if_allowed("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 = 'checked';
		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)
	{return;
		wccp_pro_log_to_console_if_allowed("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 = "Alert: Protected image";
	var alertMsg_A = "Alert: This link is protected";
	var alertMsg_PB = "Alert: Right click on text is disabled";
	var alertMsg_INPUT = "Alert: Right click is disabled";
	var alertMsg_H = "Alert: Right click on headlines is disabled";
	var alertMsg_TEXTAREA = "Alert: Right click is disabled";
	var alertMsg_EmptySpaces = "Alert: Right click on empty spaces is disabled";
	var alertMsg_VIDEO = "Alert: Right click on videos is disabled";
	//document.oncontextmenu=null;
	window.addEventListener('load', function (){
	if(window.Zepto || !window.jQuery) jQuery =  $;
	jQuery(document).ready(function(){
		jQuery(document).on('contextmenu', wccp_pro_nocontext);
	});
	});
	window.addEventListener('load', function (){
	if (typeof jQuery === 'undefined')
	{
		alert("no jquery");
		document.oncontextmenu = wccp_pro_nocontext;
		document.addEventListener("contextmenu",wccp_pro_nocontext);
		window.addEventListener("contextmenu",wccp_pro_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>
<script>
// JavaScript to delete the cookie after 5 seconds
window.addEventListener("load", function() {
    setTimeout(function() {
        // To delete a cookie, set its expiry date in the past
        document.cookie = "my_insidewebsite_cookie=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
        console.log("Cookie deleted");
    }, 5000);
});
</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(data = "")
{//return;
	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('('));
	
	}
/**************************************************/
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";
    wccp_pro_log_to_console_if_allowed("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(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 || e || 'nothing';
	
	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>	<script id="wccp_pro_alert_message">
	window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign
	
	window.addEventListener('load', function (){
		// Create the first div element with the "oncontextmenu" attribute
		const wccp_pro_mask = document.createElement('div');
		wccp_pro_mask.setAttribute('oncontextmenu', 'return false;');
		wccp_pro_mask.setAttribute('id', 'wccp_pro_mask');

		// Create the second div element with the "msgmsg-box-wpcp hideme" classes
		const wpcp_error_message = document.createElement('div');
		wpcp_error_message.setAttribute('id', 'wpcp-error-message');
		wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme');

		// Add a span element with the "error: " text inside the second div
		const error_span = document.createElement('span');
		error_span.innerText = 'error: ';
		wpcp_error_message.appendChild(error_span);

		// Add the error message text inside the second div
		const error_text = document.createTextNode('Alert: Content selection is disabled!!');
		wpcp_error_message.appendChild(error_text);

		// Add the div elements to the document body
		document.body.appendChild(wccp_pro_mask);
		document.body.appendChild(wpcp_error_message);
	});

	var timeout_result;
	function show_wccp_pro_message(smessage="", style="")
	{
		wccp_pro_log_to_console_if_allowed(smessage);
				
		timeout = 3000;
		
		if(style == "") style = "warning-wpcp";
		
		if (smessage !== "" && timeout!=0)
		{
			var smessage_text = smessage;
			jquery_fadeTo();
			document.getElementById("wpcp-error-message").innerHTML = smessage_text;
			document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
		else
		{
			clearTimeout(timeout_result);
			timeout_result = setTimeout(hide_message, timeout);
		}
	}
	function hide_message()
	{
		jquery_fadeOut();
		document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
	}
	function jquery_fadeTo()
	{
		try {
			jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
		}
		catch(err) {
			//alert(err.message);
			}
	}
	function jquery_fadeOut()
	{
		try {
			jQuery("#wccp_pro_mask").fadeOut( "slow" );
		}
		catch(err) {}
	}
	</script>
	<style>
	#wccp_pro_mask
	{
		position: absolute;
		bottom: 0;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		background-color: #000;
		pointer-events: none;
		display: none;
		z-index: 10000;
		animation: 0.5s ease 0s normal none 1 running ngdialog-fadein;
		background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
	}
	#wpcp-error-message {
	    direction: ltr;
	    text-align: center;
	    transition: opacity 900ms ease 0s;
		pointer-events: none;
	    z-index: 99999999;
	}
	.hideme {
    	opacity:0;
    	visibility: hidden;
	}
	.showme {
    	opacity:1;
    	visibility: visible;
	}
	.msgmsg-box-wpcp {
		border-radius: 10px;
		color: #555555;
		font-family: Tahoma;
		font-size: 12px;
		margin: 10px !important;
		padding: 10px 36px !important;
		position: fixed;
		width: 255px;
		top: 50%;
		left: 50%;
		margin-top: -10px !important;
		margin-left: -130px !important;
	}
	.msgmsg-box-wpcp b {
		font-weight:bold;
	}
		.warning-wpcp {
		background:#ffecec url('https://www.contractstore.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%;
		border:1px solid #f2bfbf;
		-webkit-box-shadow: 0px 0px 34px 2px #f2bfbf;
		-moz-box-shadow: 0px 0px 34px 2px #f2bfbf;
		box-shadow: 0px 0px 34px 2px #f2bfbf;
	}
	.success-wpcp {
		background: #fafafa url('https://www.contractstore.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%;
		border: 1px solid #00b38f;
		box-shadow: 0px 0px 34px 2px #adc;
	}
    </style>
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

<!-- Google Tag Manager by PYS -->
    <script data-cfasync="false" data-pagespeed-no-defer>
	    window.dataLayerPYS = window.dataLayerPYS || [];
	</script>
<!-- End Google Tag Manager by PYS -->
	<!-- This site is optimized with the Yoast SEO plugin v25.8 - https://yoast.com/wordpress/plugins/seo/ -->
	<title>ContractStore Blog - Legal Updates for Business and Contract News</title>
	<meta name="description" content="Blog posts from the experts at ContractStore that cover legal updates for business, building, contruction and other legal news." />
	<link rel="canonical" href="https://www.contractstore.com/blog/" />
	<link rel="next" href="https://www.contractstore.com/blog/page/2/" />
	<meta property="og:locale" content="en_GB" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="ContractStore Blog - Legal Updates for Business and Contract News" />
	<meta property="og:description" content="Blog posts from the experts at ContractStore that cover legal updates for business, building, contruction and other legal news." />
	<meta property="og:url" content="https://www.contractstore.com/blog/" />
	<meta property="og:site_name" content="ContractStore" />
	<meta name="twitter:card" content="summary_large_image" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":["WebPage","CollectionPage"],"@id":"https://www.contractstore.com/blog/","url":"https://www.contractstore.com/blog/","name":"ContractStore Blog - Legal Updates for Business and Contract News","isPartOf":{"@id":"https://www.contractstore.com/#website"},"datePublished":"2017-01-30T12:04:06+00:00","dateModified":"2017-12-18T16:39:13+00:00","description":"Blog posts from the experts at ContractStore that cover legal updates for business, building, contruction and other legal news.","breadcrumb":{"@id":"https://www.contractstore.com/blog/#breadcrumb"},"inLanguage":"en-GB"},{"@type":"BreadcrumbList","@id":"https://www.contractstore.com/blog/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"/"},{"@type":"ListItem","position":2,"name":"CS Home","item":"https://www.contractstore.com/"},{"@type":"ListItem","position":3,"name":"Blog"}]},{"@type":"WebSite","@id":"https://www.contractstore.com/#website","url":"https://www.contractstore.com/","name":"ContractStore","description":"Affordable contract templates you can trust™","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.contractstore.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//static.addtoany.com' />
<link rel="alternate" type="application/rss+xml" title="ContractStore &raquo; Feed" href="https://www.contractstore.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="ContractStore &raquo; Comments Feed" href="https://www.contractstore.com/comments/feed/" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-emoji-styles-inline-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;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}

/*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */
</style>
<style id="classic-theme-styles-inline-css">
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
/*# sourceURL=/wp-includes/css/classic-themes.min.css */
</style>

<link rel='stylesheet' id='edd-blocks-css' href='https://www.contractstore.com/wp-content/plugins/easy-digital-downloads-pro/includes/blocks/assets/css/edd-blocks.css?ver=3.3.5.2' media='all' />
<style id="global-styles-inline-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--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 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,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 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 rgb(255, 255, 255), 6px 6px rgb(0, 0, 0);--wp--preset--shadow--crisp: 6px 6px 0px rgb(0, 0, 0);}:where(body) { margin: 0; }: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;}body{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}:root :where(.wp-element-button, .wp-block-button__link){background-color: #32373c;border-width: 0;color: #fff;font-family: inherit;font-size: inherit;font-style: inherit;font-weight: inherit;letter-spacing: inherit;line-height: inherit;padding-top: calc(0.667em + 2px);padding-right: calc(1.333em + 2px);padding-bottom: calc(0.667em + 2px);padding-left: calc(1.333em + 2px);text-decoration: none;text-transform: inherit;}.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;}
/*# sourceURL=global-styles-inline-css */
</style>

<link rel='stylesheet' id='contact-form-7-css' href='https://www.contractstore.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.0.1' media='all' />
<link rel='stylesheet' id='dc-cookie-notice-bar-css' href='https://www.contractstore.com/wp-content/plugins/cookie-notice-bar/public/css/dc-cookie-notice-bar-public.css?ver=1.3.0' media='all' />
<style id="dc-cookie-notice-bar-inline-css">
#dc-cnb-container {
					    	bottom: 0;
						    background-color: #000000;
						    color: #ffffff;
						}

						#dc-cnb-button {
						    background-color: #e23d28;
						    color: #ffffff;
						    padding: 5px 10px;
						    border-radius: 8px;
						}

						#dc-cnb-read-more {
							color: #e23d28;
						}

						#dc-cnb-read-more:hover {
							color: #d60b08;
						}
/*# sourceURL=dc-cookie-notice-bar-inline-css */
</style>
<link rel='stylesheet' id='imtst_style_vc-css' href='https://www.contractstore.com/wp-content/plugins/indeed-my-testimonials-vc/files/css/style.css?ver=7.0' media='all' />
<link rel='stylesheet' id='imtst_owl_carousel_vc-css' href='https://www.contractstore.com/wp-content/plugins/indeed-my-testimonials-vc/files/css/owl.carousel.css?ver=7.0' media='all' />
<link rel='stylesheet' id='imtst_font-awesome-css' href='https://www.contractstore.com/wp-content/plugins/indeed-my-testimonials-vc/files/css/font-awesome.min.css?ver=7.0' media='all' />
<link rel='stylesheet' id='edd-styles-css' href='https://www.contractstore.com/wp-content/plugins/easy-digital-downloads-pro/assets/css/edd.min.css?ver=3.3.5.2' media='all' />
<link rel='stylesheet' id='megamenu-css' href='https://www.contractstore.com/wp-content/uploads/maxmegamenu/style.css?ver=4606a2' media='all' />
<link rel='stylesheet' id='dashicons-css' href='https://www.contractstore.com/wp-includes/css/dashicons.min.css?ver=7.0' media='all' />
<link rel='stylesheet' id='megamenu-genericons-css' href='https://www.contractstore.com/wp-content/plugins/megamenu-pro/icons/genericons/genericons/genericons.css?ver=2.4.1' media='all' />
<link rel='stylesheet' id='megamenu-fontawesome-css' href='https://www.contractstore.com/wp-content/plugins/megamenu-pro/icons/fontawesome/css/font-awesome.min.css?ver=2.4.1' media='all' />
<link rel='stylesheet' id='megamenu-fontawesome5-css' href='https://www.contractstore.com/wp-content/plugins/megamenu-pro/icons/fontawesome5/css/all.min.css?ver=2.4.1' media='all' />
<link rel='stylesheet' id='megamenu-fontawesome6-css' href='https://www.contractstore.com/wp-content/plugins/megamenu-pro/icons/fontawesome6/css/all.min.css?ver=2.4.1' media='all' />
<link rel='stylesheet' id='quotescollection-css' href='https://www.contractstore.com/wp-content/plugins/quotes-collection/css/quotes-collection.css?ver=2.5.2' media='all' />
<link rel='stylesheet' id='edd-multi-currency-css' href='https://www.contractstore.com/wp-content/plugins/edd-multi-currency/assets/build/style-frontend.css?ver=1.1.2' media='all' />
<link rel='stylesheet' id='chld_thm_cfg_parent-css' href='https://www.contractstore.com/wp-content/themes/vendd/style.css?ver=7.0' media='all' />
<link rel='stylesheet' id='vendd-style-css' href='https://www.contractstore.com/wp-content/themes/vendd-child/style.css?ver=7.0' media='all' />
<link rel='stylesheet' id='vendd-fontawesome-css' href='https://www.contractstore.com/wp-content/themes/vendd/inc/fonts/font-awesome/css/font-awesome.min.css?ver=1.2.7' media='all' />
<link rel='stylesheet' id='css-protect.css-css' href='https://www.contractstore.com/wp-content/plugins/wccp-pro/css/css-protect.css?ver=2' media='all' />
<link rel='stylesheet' id='print-protection.css-css' href='https://www.contractstore.com/wp-content/plugins/wccp-pro/css/print-protection.css?wccp_ver_num=2&#038;ver=7.0' media='all' />
<link rel='stylesheet' id='addtoany-css' href='https://www.contractstore.com/wp-content/plugins/add-to-any/addtoany.min.css?ver=1.16' media='all' />
<script id="addtoany-core-js-before">
window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_localize = {
	Share: "Share",
	Save: "Save",
	Subscribe: "Subscribe",
	Email: "Email",
	Bookmark: "Bookmark",
	ShowAll: "Show All",
	ShowLess: "Show less",
	FindServices: "Find service(s)",
	FindAnyServiceToAddTo: "Instantly find any service to add to",
	PoweredBy: "Powered by",
	ShareViaEmail: "Share via email",
	SubscribeViaEmail: "Subscribe via email",
	BookmarkInYourBrowser: "Bookmark in your browser",
	BookmarkInstructions: "Press Ctrl+D or \u2318+D to bookmark this page",
	AddToYourFavorites: "Add to your favourites",
	SendFromWebOrProgram: "Send from any email address or email program",
	EmailProgram: "Email program",
	More: "More&#8230;",
	ThanksForSharing: "Thanks for sharing!",
	ThanksForFollowing: "Thanks for following!"
};


//# sourceURL=addtoany-core-js-before
</script>
<script id="addtoany-core-js" defer src="https://static.addtoany.com/menu/page.js"></script>
<script id="jquery-core-js" src="https://www.contractstore.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script>
<script id="jquery-migrate-js" src="https://www.contractstore.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script>
<script id="addtoany-jquery-js" defer src="https://www.contractstore.com/wp-content/plugins/add-to-any/addtoany.min.js?ver=1.1"></script>
<script id="dc-cookie-notice-bar-js-extra">
var php_var = {"ajax_url":"https://www.contractstore.com/wp-admin/admin-ajax.php"};
//# sourceURL=dc-cookie-notice-bar-js-extra
</script>
<script id="dc-cookie-notice-bar-js" src="https://www.contractstore.com/wp-content/plugins/cookie-notice-bar/public/js/dc-cookie-notice-bar-public.js?ver=1.3.0"></script>
<script id="imtst_owl_carousel_js-js" src="https://www.contractstore.com/wp-content/plugins/indeed-my-testimonials-vc/files/js/owl.carousel.js"></script>
<script id="imtst_front_end_testimonials_js-js" src="https://www.contractstore.com/wp-content/plugins/indeed-my-testimonials-vc/files/js/front_end.js"></script>
<script id="imtst_isotope_pkgd_min_vc-js" src="https://www.contractstore.com/wp-content/plugins/indeed-my-testimonials-vc/files/js/isotope.pkgd.min.js"></script>
<script id="quotescollection-js-extra">
var quotescollectionAjax = {"ajaxUrl":"https://www.contractstore.com/wp-admin/admin-ajax.php","nonce":"70f7f4f3a9","nextQuote":"Next quote \u00bb","loading":"Loading...","error":"Error getting quote","autoRefreshMax":"20","autoRefreshCount":"0"};
//# sourceURL=quotescollection-js-extra
</script>
<script id="quotescollection-js" src="https://www.contractstore.com/wp-content/plugins/quotes-collection/js/quotes-collection.js?ver=2.5.2"></script>
<script></script><link rel="https://api.w.org/" href="https://www.contractstore.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.contractstore.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.0" />
<meta name="generator" content="Easy Digital Downloads v3.3.5.2" />

		<script>
		(function(h,o,t,j,a,r){
			h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
			h._hjSettings={hjid:2788981,hjsv:5};
			a=o.getElementsByTagName('head')[0];
			r=o.createElement('script');r.async=1;
			r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
			a.appendChild(r);
		})(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
		</script>
		<meta name="generator" content="EDD DP v1.5.3" />

	<style type="text/css">
											#masthead,
			input[type="submit"],
			input[type="button"],
			.vendd-fes-dashboard-template .fes-form .fes-submit input[type="submit"],
			.vendd-fes-dashboard-template .fes-form .edd-submit.button,
			.vendd-edd-fes-shortcode .fes-form .fes-submit input[type="submit"],
			.vendd-edd-fes-shortcode .fes-form .edd-submit.button,
			.vendd-vendor-contact .fes-form .fes-submit input[type="submit"],
			.vendd-fes-template .fes-fields .fes-feat-image-upload a.fes-feat-image-btn,
			.vendd-edd-fes-shortcode .fes-fields .fes-feat-image-upload a.fes-feat-image-btn,
			.vendd-fes-template .fes-fields .fes-avatar-image-upload a.fes-avatar-image-btn,
			.vendd-edd-fes-shortcode .fes-fields .fes-avatar-image-upload a.fes-avatar-image-btn,
			button,
			.more-link,
			.by-post-author,
			.main-navigation:not(.toggled) ul li:hover > ul,
			#edd_download_pagination .page-numbers.current,
			.edd_pagination .page-numbers.current,
			div[class*="fes-"] > .page-numbers.current,
			div[id*="edd_commissions_"] .page-numbers.current,
			#edd_download_pagination .page-numbers:hover,
			.edd_pagination .page-numbers:hover,
			div[class*="fes-"] > .page-numbers:hover,
			div[id*="edd_commissions_"] .page-numbers:hover {
				background: #6284c3;
			}
			a,
			.comment-full:hover > .reply > .comment-reply-link {
				color: #6284c3;
			}
			h1, h2 {
				border-color: #6284c3;
			}
			@media all and ( min-width: 860px ) {
				.main-navigation ul li:hover > ul {
					background: #6284c3;
				}
			}
			</style>
	<meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
			<link rel="preload" href="https://www.contractstore.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.woff2" as="font" crossorigin="anonymous" />
            			<style>
                @font-face{font-family:'asppsicons2';src:url('https://www.contractstore.com/wp-content/plugins/ajax-search-pro/css/fonts/icons/icons2.woff2') format('woff2');font-weight:normal;font-style:normal;font-display:swap}@keyframes aspAnFadeIn{0%{opacity:0}50%{opacity:0.6}100%{opacity:1}}@-webkit-keyframes aspAnFadeIn{0%{opacity:0}50%{opacity:0.6}100%{opacity:1}}@keyframes aspAnFadeOut{0%{opacity:1}50%{opacity:0.6}100%{opacity:0}}@-webkit-keyframes aspAnFadeOut{0%{opacity:1}50%{opacity:0.6}100%{opacity:0}}@keyframes aspAnFadeInDrop{0%{opacity:0;transform:translate(0,-50px)}100%{opacity:1;transform:translate(0,0)}}@-webkit-keyframes aspAnFadeInDrop{0%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px)}100%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0)}}@keyframes aspAnFadeOutDrop{0%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0)}100%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px)}}@-webkit-keyframes aspAnFadeOutDrop{0%{opacity:1;transform:translate(0,0);-webkit-transform:translate(0,0)}100%{opacity:0;transform:translate(0,-50px);-webkit-transform:translate(0,-50px)}}div.ajaxsearchpro.asp_an_fadeIn,div.ajaxsearchpro.asp_an_fadeOut,div.ajaxsearchpro.asp_an_fadeInDrop,div.ajaxsearchpro.asp_an_fadeOutDrop{-webkit-animation-duration:100ms;animation-duration:100ms;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.asp_an_fadeIn,div.ajaxsearchpro.asp_an_fadeIn{animation-name:aspAnFadeIn;-webkit-animation-name:aspAnFadeIn}.asp_an_fadeOut,div.ajaxsearchpro.asp_an_fadeOut{animation-name:aspAnFadeOut;-webkit-animation-name:aspAnFadeOut}div.ajaxsearchpro.asp_an_fadeInDrop{animation-name:aspAnFadeInDrop;-webkit-animation-name:aspAnFadeInDrop}div.ajaxsearchpro.asp_an_fadeOutDrop{animation-name:aspAnFadeOutDrop;-webkit-animation-name:aspAnFadeOutDrop}div.ajaxsearchpro.asp_main_container{transition:width 130ms linear;-webkit-transition:width 130ms linear}asp_w_container,div.asp_w.ajaxsearchpro,div.asp_w.asp_r,div.asp_w.asp_s,div.asp_w.asp_sb,div.asp_w.asp_sb *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box;padding:0;margin:0;border:0;border-radius:0;text-transform:none;text-shadow:none;box-shadow:none;text-decoration:none;text-align:left;text-indent:initial;letter-spacing:normal;font-display:swap}div.asp_w_container div[id*=__original__]{display:none !important}div.asp_w.ajaxsearchpro{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box}div.asp_w.asp_r,div.asp_w.asp_r *{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.asp_w.ajaxsearchpro input[type=text]::-ms-clear{display:none;width :0;height:0}div.asp_w.ajaxsearchpro input[type=text]::-ms-reveal{display:none;width :0;height:0}div.asp_w.ajaxsearchpro input[type="search"]::-webkit-search-decoration,div.asp_w.ajaxsearchpro input[type="search"]::-webkit-search-cancel-button,div.asp_w.ajaxsearchpro input[type="search"]::-webkit-search-results-button,div.asp_w.ajaxsearchpro input[type="search"]::-webkit-search-results-decoration{display:none}div.asp_w.ajaxsearchpro input[type="search"]{appearance:auto !important;-webkit-appearance:none !important}.clear{clear:both}.asp_clear{clear:both !important;margin:0 !important;padding:0 !important;width:auto !important;height:0 !important}.hiddend{display:none !important}div.asp_w.ajaxsearchpro{width:100%;height:auto;border-radius:0;background:rgba(255,255,255,0);overflow:hidden}div.asp_w.ajaxsearchpro.asp_non_compact{min-width:200px}#asp_absolute_overlay{width:0;height:0;position:fixed;text-align:center;background:rgba(255,255,255,0.5);top:0;left:0;display:block;z-index:0;opacity:0;transition:opacity 200ms linear;-webkit-transition:opacity 200ms linear}div.asp_m.ajaxsearchpro .proinput input:before,div.asp_m.ajaxsearchpro .proinput input:after,div.asp_m.ajaxsearchpro .proinput form:before,div.asp_m.ajaxsearchpro .proinput form:after{display:none}div.asp_w.ajaxsearchpro textarea:focus,div.asp_w.ajaxsearchpro input:focus{outline:none}div.asp_m.ajaxsearchpro .probox .proinput input::-ms-clear{display:none}div.asp_m.ajaxsearchpro .probox{width:auto;border-radius:5px;background:#FFF;overflow:hidden;border:1px solid #FFF;box-shadow:1px 0 3px #CCC inset;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;direction:ltr;align-items:stretch;isolation:isolate}div.asp_m.ajaxsearchpro .probox .proinput{width:1px;height:100%;margin:0 0 0 10px;padding:0 5px;float:left;box-shadow:none;position:relative;flex:1 1 auto;-webkit-flex:1 1 auto;z-index:0}div.asp_m.ajaxsearchpro .probox .proinput form{height:100%;margin:0 !important;padding:0 !important}div.asp_m.ajaxsearchpro .probox .proinput input{height:100%;width:100%;border:0;background:transparent;width:auto;box-shadow:none;margin:-1px;padding:0;left:0;padding-top:2px;min-width:120px}div.asp_m.ajaxsearchpro .probox .proinput input.autocomplete{border:0;background:transparent;width:100%;box-shadow:none;margin:0;padding:0;left:0}div.asp_m.ajaxsearchpro .probox .proinput.iepaddingfix{padding-top:0}div.asp_m.ajaxsearchpro .probox .proloading,div.asp_m.ajaxsearchpro .probox .proclose,div.asp_m.ajaxsearchpro .probox .promagnifier,div.asp_m.ajaxsearchpro .probox .prosettings{width:20px;height:20px;background:none;background-size:20px 20px;float:right;box-shadow:none;margin:0;padding:0;text-align:center;z-index:1}div.asp_m.ajaxsearchpro button.promagnifier:focus-visible{box-shadow:inset 0 0 0 2px rgba(0,0,0,0.4)}div.asp_m.ajaxsearchpro .probox .proloading,div.asp_m.ajaxsearchpro .probox .proclose{background-position:center center;display:none;background-size:auto;background-repeat:no-repeat;background-color:transparent}div.asp_m.ajaxsearchpro .probox .proloading{padding:2px;box-sizing:border-box}div.asp_m.ajaxsearchpro .probox .proclose{position:relative;cursor:pointer;z-index:2}div.asp_m.ajaxsearchpro .probox .promagnifier .innericon,div.asp_m.ajaxsearchpro .probox .prosettings .innericon,div.asp_m.ajaxsearchpro .probox .proclose .innericon{background-size:20px 20px;background-position:center center;background-repeat:no-repeat;background-color:transparent;width:100%;height:100%;line-height:initial;text-align:center;overflow:hidden}div.asp_m.ajaxsearchpro .probox .promagnifier .innericon svg,div.asp_m.ajaxsearchpro .probox .prosettings .innericon svg,div.asp_m.ajaxsearchpro .probox .proloading svg{height:100%;width:22px;vertical-align:baseline;display:inline-block}div.asp_m.ajaxsearchpro .probox .proclose svg{background:#333;border-radius:50%;position:absolute;top:50%;width:20px;height:20px;margin-top:-10px;left:50%;margin-left:-10px;fill:#fefefe;padding:4px;box-sizing:border-box;box-shadow:0 0 0 2px rgba(255,255,255,0.9)}.opacityOne{opacity:1}.opacityZero{opacity:0}div.asp_w.asp_s [disabled].noUi-connect,div.asp_w.asp_s [disabled] .noUi-connect{background:#B8B8B8}div.asp_w.asp_s [disabled] .noUi-handle{cursor:not-allowed}div.asp_w.asp_r p.showmore{display:none;margin:5px 0}div.asp_w.asp_r.asp_more_res_loading p.showmore a,div.asp_w.asp_r.asp_more_res_loading p.showmore a span{color:transparent !important}@-webkit-keyframes shm-rot-simple{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:0.85}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);opacity:1}}@keyframes shm-rot-simple{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg);opacity:1}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:0.85}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg);opacity:1}}div.asp_w.asp_r div.asp_showmore_container{position:relative}div.asp_w.asp_r. div.asp_moreres_loader{display:none;position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(255,255,255,0.2)}div.asp_w.asp_r.asp_more_res_loading div.asp_moreres_loader{display:block !important}div.asp_w.asp_r div.asp_moreres_loader-inner{height:24px;width:24px;animation:shm-rot-simple 0.8s infinite linear;-webkit-animation:shm-rot-simple 0.8s infinite linear;border:4px solid #353535;border-right-color:transparent;border-radius:50%;box-sizing:border-box;position:absolute;top:50%;margin:-12px auto auto -12px;left:50%}div.asp_hidden_data,div.asp_hidden_data *{display:none}div.asp_w.asp_r{display:none}div.asp_w.asp_r *{text-decoration:none;text-shadow:none}div.asp_w.asp_r .results{overflow:hidden;width:auto;height:0;margin:0;padding:0}div.asp_w.asp_r .results .asp_nores{overflow:hidden;width:100%;height:auto;line-height:initial;text-align:center;margin:0;background:#FFF;padding:10px 3px;color:#222}div.asp_w.asp_r .results .item{overflow:hidden;width:auto;margin:0;padding:3px;position:relative;background:#f4f4f4;border-left:1px solid rgba(255,255,255,0.6);border-right:1px solid rgba(255,255,255,0.4)}div.asp_w.asp_r .results .item,div.asp_w.asp_r .results .asp_group_header{animation-delay:0s;animation-duration:0.5s;animation-fill-mode:both;animation-timing-function:ease;backface-visibility:hidden;-webkit-animation-delay:0s;-webkit-animation-duration:0.5s;-webkit-animation-fill-mode:both;-webkit-animation-timing-function:ease;-webkit-backface-visibility:hidden}div.asp_w.asp_r .results .item .asp_image{overflow:hidden;background:transparent;padding:0;float:left;background-position:center;background-size:cover;position:relative}div.asp_w.asp_r .results .asp_image canvas{display:none}div.asp_w.asp_r .results .asp_image .asp_item_canvas{position:absolute;top:0;left:0;right:0;bottom:0;margin:0;width:100%;height:100%;z-index:1;display:block;opacity:1;background-position:inherit;background-size:inherit;transition:opacity 0.5s}div.asp_w.asp_r .results .item:hover .asp_image .asp_item_canvas,div.asp_w.asp_r .results figure:hover .asp_image .asp_item_canvas{opacity:0}div.asp_w.asp_r a.asp_res_image_url,div.asp_w.asp_r a.asp_res_image_url:hover,div.asp_w.asp_r a.asp_res_image_url:focus,div.asp_w.asp_r a.asp_res_image_url:active{box-shadow:none !important;border:none !important;margin:0 !important;padding:0 !important;display:inline !important}div.asp_w.asp_r .results .item .asp_image_auto{width:auto !important;height:auto !important}div.asp_w.asp_r .results .item .asp_image img{width:100%;height:100%}div.asp_w.asp_r .results a span.overlap{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}div.asp_w.asp_r .resdrg{height:auto}div.asp_w.ajaxsearchpro .asp_group_header:first-of-type{margin:0 0 -3px !important}div.asp_w.asp_r.vertical .results .item:first-child{border-radius:0}div.asp_w.asp_r.vertical .results .item:last-child{border-radius:0;margin-bottom:0}div.asp_w.asp_r.vertical .results .item:last-child:after{height:0;margin:0;width:0}div.asp_w.asp_s.searchsettings{width:auto;height:auto;position:absolute;display:none;z-index:11001;border-radius:0 0 3px 3px;visibility:hidden;opacity:0;overflow:visible}div.asp_w.asp_sb.searchsettings{display:none;visibility:hidden;direction:ltr;overflow:visible;position:relative;z-index:1}div.asp_w.asp_s.searchsettings form,div.asp_w.asp_sb.searchsettings form{display:flex;flex-wrap:wrap;margin:0 0 12px 0 !important;padding:0 !important}div.asp_w.asp_s.searchsettings .asp_option_inner,div.asp_w.asp_sb.searchsettings .asp_option_inner,div.asp_w.asp_sb.searchsettings input[type='text']{margin:2px 10px 0 10px;*padding-bottom:10px}div.asp_w.asp_s.searchsettings input[type='text']:not(.asp_select2-search__field),div.asp_w.asp_sb.searchsettings input[type='text']:not(.asp_select2-search__field){width:86% !important;padding:8px 6px !important;margin:0 0 0 10px !important;background-color:#FAFAFA !important;font-size:13px;border:none !important;line-height:17px;height:20px}div.asp_w.asp_s.searchsettings.ie78 .asp_option_inner,div.asp_w.asp_sb.searchsettings.ie78 .asp_option_inner{margin-bottom:0 !important;padding-bottom:0 !important}div.asp_w.asp_s.searchsettings div.asp_option_label,div.asp_w.asp_sb.searchsettings div.asp_option_label{font-size:14px;line-height:20px !important;margin:0;width:150px;text-shadow:none;padding:0;min-height:20px;border:none;background:transparent;float:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.asp_w.asp_s.searchsettings .asp_label,div.asp_w.asp_sb.searchsettings .asp_label{line-height:24px !important;vertical-align:middle;display:inline-block;cursor:pointer}div.asp_w.asp_s.searchsettings input[type=radio],div.asp_w.asp_sb.searchsettings input[type=radio]{vertical-align:middle;margin:0 6px 0 17px;display:inline-block;appearance:normal;-moz-appearance:normal;-webkit-appearance:radio}div.asp_w.asp_s.searchsettings .asp_option_inner input[type=checkbox],div.asp_w.asp_sb.searchsettings .asp_option_inner input[type=checkbox]{display:none !important}div.asp_w.asp_s.searchsettings.ie78 .asp_option_inner input[type=checkbox],div.asp_w.asp_sb.searchsettings.ie78 .asp_option_inner input[type=checkbox]{display:block}div.asp_w.asp_s.searchsettings.ie78 div.asp_option_label,div.asp_w.asp_sb.searchsettings.ie78 div.asp_option_label{float:right !important}div.asp_w.asp_s.searchsettings .asp_option_inner,div.asp_w.asp_sb.searchsettings .asp_option_inner{width:17px;height:17px;position:relative;flex-grow:0;-webkit-flex-grow:0;flex-shrink:0;-webkit-flex-shrink:0}div.asp_w.asp_sb.searchsettings .asp_option_inner{border-radius:3px;background:rgb(66,66,66);box-shadow:none}div.asp_w.asp_s.searchsettings .asp_option_inner label,div.asp_w.asp_sb.searchsettings .asp_option_inner label{cursor:pointer;position:absolute;width:17px;height:17px;top:0;padding:0;border-radius:2px;box-shadow:none;font-size:0 !important;color:rgba(0,0,0,0)}div.asp_w.asp_s.searchsettings.ie78 .asp_option_inner label,div.asp_w.asp_sb.searchsettings.ie78 .asp_option_inner label{display:none}div.asp_w.asp_s.searchsettings .asp_option_inner label:before,div.asp_w.asp_sb.searchsettings .asp_option_inner label:before{display:none !important}div.asp_w.asp_s.searchsettings .asp_option_inner label:after,div.asp_w.asp_sb.searchsettings .asp_option_inner label:after{opacity:0;font-family:'asppsicons2';content:"\e800";background:transparent;border-top:none;border-right:none;box-sizing:content-box;height:100%;width:100%;padding:0 !important;position:absolute;top:0;left:0}div.asp_w.asp_s.searchsettings.ie78 .asp_option_inner label:after,div.asp_w.asp_sb.searchsettings.ie78 .asp_option_inner label:after{display:none}div.asp_w.asp_s.searchsettings .asp_option_inner label:hover::after,div.asp_w.asp_sb.searchsettings .asp_option_inner label:hover::after{opacity:0.3}div.asp_w.asp_s.searchsettings .asp_option_inner input[type=checkbox]:checked ~ label:after,div.asp_w.asp_sb.searchsettings .asp_option_inner input[type=checkbox]:checked ~ label:after{opacity:1}div.asp_w.asp_sb.searchsettings span.checked ~ label:after,div.asp_w.asp_s.searchsettings span.checked ~ label:after{opacity:1 !important}div.asp_w.asp_s.searchsettings fieldset,div.asp_w.asp_sb.searchsettings fieldset{position:relative;float:left}div.asp_w.asp_s.searchsettings fieldset,div.asp_w.asp_sb.searchsettings fieldset{background:transparent;font-size:.9em;margin:12px 0 0 !important;padding:0 !important;width:200px;min-width:200px}div.asp_w.asp_sb.searchsettings fieldset:last-child{margin:5px 0 0 !important}div.asp_w.asp_sb.searchsettings fieldset{margin:10px 0 0}div.asp_w.asp_sb.searchsettings fieldset legend{padding:0 0 0 10px;margin:0;font-weight:normal;font-size:13px}div.asp_w.asp_sb.searchsettings .asp_option,div.asp_w.asp_s.searchsettings .asp_option{display:flex;flex-direction:row;-webkit-flex-direction:row;align-items:flex-start;margin:0 0 10px 0;cursor:pointer}div.asp_w.asp_s.searchsettings .asp_option.asp-o-last,div.asp_w.asp_s.searchsettings .asp_option:last-child{margin-bottom:0}div.asp_w.asp_s.searchsettings fieldset .asp_option,div.asp_w.asp_s.searchsettings fieldset .asp_option_cat,div.asp_w.asp_sb.searchsettings fieldset .asp_option,div.asp_w.asp_sb.searchsettings fieldset .asp_option_cat{width:auto;max-width:none}div.asp_w.asp_s.searchsettings fieldset .asp_option_cat_level-1,div.asp_w.asp_sb.searchsettings fieldset .asp_option_cat_level-1{margin-left:12px}div.asp_w.asp_s.searchsettings fieldset .asp_option_cat_level-2,div.asp_w.asp_sb.searchsettings fieldset .asp_option_cat_level-2{margin-left:24px}div.asp_w.asp_s.searchsettings fieldset .asp_option_cat_level-3,div.asp_w.asp_sb.searchsettings fieldset .asp_option_cat_level-3{margin-left:36px}div.asp_w.asp_s.searchsettings fieldset div.asp_option_label,div.asp_w.asp_sb.searchsettings fieldset div.asp_option_label{width:70%;display:block}div.asp_w.asp_s.searchsettings fieldset div.asp_option_label{width:auto;display:block;box-sizing:border-box}div.asp_w.asp_s.searchsettings fieldset .asp_option_cat_level-2 div.asp_option_label{padding-right:12px}div.asp_w.asp_s.searchsettings fieldset .asp_option_cat_level-3 div.asp_option_label{padding-right:24px}div.asp_w.asp_s select,div.asp_w.asp_sb select{width:100%;max-width:100%;border-radius:0;padding:5px !important;background:#f9f9f9;background-clip:padding-box;-webkit-box-shadow:none;box-shadow:none;margin:0;border:none;color:#111;margin-bottom:0 !important;box-sizing:border-box;line-height:initial;outline:none !important;font-family:Roboto,Helvetica;font-size:14px;height:34px;min-height:unset !important}div.asp_w.asp_s select[multiple],div.asp_w.asp_sb select[multiple]{background:#fff}div.asp_w.asp_s select:not([multiple]),div.asp_w.asp_sb select:not([multiple]){overflow:hidden !important}.asp_two_column{margin:8px 0 12px 0}.asp_two_column .asp_two_column_first,.asp_two_column .asp_two_column_last{width:48%;padding:1% 2% 1% 0;float:left;box-sizing:content-box}.asp_two_column .asp_two_column_last{padding:1% 0 1% 2%}.asp_shortcodes_container{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin:-10px 0 12px -10px;box-sizing:border-box}.asp_shortcodes_container .asp_shortcode_column{-webkit-flex-grow:0;flex-grow:0;-webkit-flex-shrink:1;flex-shrink:1;min-width:120px;padding:10px 0 0 10px;flex-basis:33%;-webkit-flex-basis:33%;box-sizing:border-box}div.ajaxsearchpro.searchsettings fieldset.asp_custom_f{margin-top:9px}div.ajaxsearchpro.searchsettings fieldset legend{margin-bottom:8px !important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}div.ajaxsearchpro.searchsettings fieldset legend + div.asp_option_inner{margin-top:0 !important}div.ajaxsearchpro.searchsettings .asp_sett_scroll>.asp_option_cat:first-child>.asp_option_inner{margin-top:0 !important}div.ajaxsearchpro.searchsettings fieldset .asp_select_single,div.ajaxsearchpro.searchsettings fieldset .asp_select_multiple{padding:0 10px}p.asp-try{color:#555;font-size:14px;margin-top:5px;line-height:28px;font-weight:300;visibility:hidden}p.asp-try a{color:#FFB556;margin-left:10px;cursor:pointer;display:inline-block}[data-asp_simplebar]{position:relative;flex-direction:column;flex-wrap:wrap;justify-content:flex-start;align-content:flex-start;align-items:flex-start}.asp_simplebar-wrapper{overflow:hidden;width:inherit;height:inherit;max-width:inherit;max-height:inherit}.asp_simplebar-mask{direction:inherit;position:absolute;overflow:hidden;padding:0;margin:0;left:0;top:0;bottom:0;right:0;width:auto !important;height:auto !important;z-index:0}.asp_simplebar-offset{direction:inherit !important;box-sizing:inherit !important;resize:none !important;position:absolute;top:0;left:0;bottom:0;right:0;padding:0;margin:0;-webkit-overflow-scrolling:touch}.asp_simplebar-content-wrapper{direction:inherit;box-sizing:border-box !important;position:relative;display:block;height:100%;width:auto;visibility:visible;max-width:100%;max-height:100%;scrollbar-width:none}.asp_simplebar-content-wrapper::-webkit-scrollbar,.asp_simplebar-hide-scrollbar::-webkit-scrollbar{display:none}.asp_simplebar-content:before,.asp_simplebar-content:after{content:' ';display:table}.asp_simplebar-placeholder{max-height:100%;max-width:100%;width:100%;pointer-events:none}.asp_simplebar-height-auto-observer-wrapper{box-sizing:inherit !important;height:100%;width:100%;max-width:1px;position:relative;float:left;max-height:1px;overflow:hidden;z-index:-1;padding:0;margin:0;pointer-events:none;flex-grow:inherit;flex-shrink:0;flex-basis:0}.asp_simplebar-height-auto-observer{box-sizing:inherit;display:block;opacity:0;position:absolute;top:0;left:0;height:1000%;width:1000%;min-height:1px;min-width:1px;overflow:hidden;pointer-events:none;z-index:-1}.asp_simplebar-track{z-index:1;position:absolute;right:0;bottom:0;pointer-events:none;overflow:hidden}[data-asp_simplebar].asp_simplebar-dragging .asp_simplebar-content{pointer-events:none;user-select:none;-webkit-user-select:none}[data-asp_simplebar].asp_simplebar-dragging .asp_simplebar-track{pointer-events:all}.asp_simplebar-scrollbar{position:absolute;right:2px;width:7px;min-height:10px}.asp_simplebar-scrollbar:before{position:absolute;content:'';background:rgba(0,0,0,0.5);border-radius:7px;left:0;right:0;opacity:0;transition:opacity 0.2s linear}.asp_simplebar-scrollbar.asp_simplebar-visible:before{opacity:1;transition:opacity 0s linear}.asp_simplebar-track.asp_simplebar-vertical{top:0;width:11px;margin-top:4px !important;margin-bottom:4px !important}.asp_simplebar-track.asp_simplebar-vertical .asp_simplebar-scrollbar:before{top:2px;bottom:2px}.asp_simplebar-track.asp_simplebar-horizontal{left:0;height:11px;margin-left:12px !important;margin-right:12px !important}.asp_simplebar-track.asp_simplebar-horizontal .asp_simplebar-scrollbar:before{height:100%;left:2px;right:2px}.asp_simplebar-track.asp_simplebar-horizontal .asp_simplebar-scrollbar{right:auto;left:0;top:2px;height:7px;min-height:0;min-width:10px;width:auto}[data-asp_simplebar-direction='rtl'] .asp_simplebar-track.asp_simplebar-vertical{right:auto;left:0}.hs-dummy-scrollbar-size{direction:rtl;position:fixed;opacity:0;visibility:hidden;height:500px;width:500px;overflow-y:hidden;overflow-x:scroll}.asp_simplebar-hide-scrollbar{position:fixed;left:0;visibility:hidden;overflow-y:scroll;scrollbar-width:none}.asp_ac_autocomplete,.asp_ac_autocomplete div,.asp_ac_autocomplete span{}.asp_ac_autocomplete{display:inline;position:relative;word-spacing:normal;text-transform:none;text-indent:0;text-shadow:none;text-align:start}.asp_ac_autocomplete .asp_ac_autocomplete_dropdown{position:absolute;border:1px solid #ccc;border-top-color:#d9d9d9;box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);cursor:default;display:none;z-index:1001;margin-top:-1px;background-color:#fff;min-width:100%;overflow:auto}.asp_ac_autocomplete .asp_ac_autocomplete_hint{position:absolute;z-index:1;color:#ccc !important;-webkit-text-fill-color:#ccc !important;text-fill-color:#ccc !important;overflow:hidden !important;white-space:pre !important}.asp_ac_autocomplete .asp_ac_autocomplete_hint span{color:transparent;opacity:0.0}.asp_ac_autocomplete .asp_ac_autocomplete_dropdown>div{background:#fff;white-space:nowrap;cursor:pointer;line-height:1.5em;padding:2px 0 2px 0}.asp_ac_autocomplete .asp_ac_autocomplete_dropdown>div.active{background:#0097CF;color:#FFF}.rtl .asp_content,.rtl .asp_nores,.rtl .asp_content *,.rtl .asp_nores *,.rtl .searchsettings form{text-align:right !important;direction:rtl !important}.rtl .asp_nores>*{display:inline-block}.rtl .searchsettings .asp_option{flex-direction:row-reverse !important;-webkit-flex-direction:row-reverse !important}.rtl .asp_option{direction:ltr}.rtl .asp_label,.rtl .asp_option div.asp_option_label{text-align:right !important}.rtl .asp_label{max-width:1000px !important;width:100%;direction:rtl !important}.rtl .asp_label input[type=radio]{margin:0 0 0 6px !important}.rtl .asp_option_cat_level-0 div.asp_option_label{font-weight:bold !important}.rtl fieldset .asp_option_cat_level-1{margin-right:12px !important;margin-left:0}.rtl fieldset .asp_option_cat_level-2{margin-right:24px !important;margin-left:0}.rtl fieldset .asp_option_cat_level-3{margin-right:36px !important;margin-left:0}.rtl .searchsettings legend{text-align:right !important;display:block;width:100%}.rtl .searchsettings input[type=text],.rtl .searchsettings select{direction:rtl !important;text-align:right !important}.rtl div.asp_w.asp_s.searchsettings form,.rtl div.asp_w.asp_sb.searchsettings form{flex-direction:row-reverse !important}.rtl div.horizontal.asp_r div.item{float:right !important}.rtl p.asp-try{direction:rtl;text-align:right;margin-right:10px;width:auto !important}.asp_arrow_box{position:absolute;background:#444;padding:12px;color:white;border-radius:4px;font-size:14px;max-width:240px;display:none;z-index:99999999999999999}.asp_arrow_box:after{top:100%;left:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:transparent;border-top-color:#444;border-width:6px;margin-left:-6px}.asp_arrow_box.asp_arrow_box_bottom:after{bottom:100%;top:unset;border-bottom-color:#444;border-top-color:transparent}.asp_elementor_nores{text-align:center}.elementor-sticky__spacer .asp_w,.elementor-sticky__spacer .asp-try{visibility:hidden !important;opacity:0 !important;z-index:-1 !important}div[id*='ajaxsearchpro1_'] div.asp_loader,div[id*='ajaxsearchpro1_'] div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}div[id*='ajaxsearchpro1_'] div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}div[id*='ajaxsearchpro1_'] div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}div[id*='ajaxsearchpro1_'] div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}div[id*='ajaxsearchprores1_'] .asp_res_loader div.asp_loader,div[id*='ajaxsearchprores1_'] .asp_res_loader div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}div[id*='ajaxsearchprores1_'] .asp_res_loader div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}div[id*='ajaxsearchprores1_'] .asp_res_loader div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}div[id*='ajaxsearchprores1_'] .asp_res_loader div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}#ajaxsearchpro1_1 div.asp_loader,#ajaxsearchpro1_2 div.asp_loader,#ajaxsearchpro1_1 div.asp_loader *,#ajaxsearchpro1_2 div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}#ajaxsearchpro1_1 div.asp_loader,#ajaxsearchpro1_2 div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}#ajaxsearchpro1_1 div.asp_loader-inner,#ajaxsearchpro1_2 div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}#ajaxsearchpro1_1 div.asp_ball-scale>div,#ajaxsearchpro1_2 div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}@-webkit-keyframes asp_an_fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes asp_an_fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.asp_an_fadeInDown{-webkit-animation-name:asp_an_fadeInDown;animation-name:asp_an_fadeInDown}div.asp_r.asp_r_1,div.asp_r.asp_r_1 *,div.asp_m.asp_m_1,div.asp_m.asp_m_1 *,div.asp_s.asp_s_1,div.asp_s.asp_s_1 *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box;border:0;border-radius:0;text-transform:none;text-shadow:none;box-shadow:none;text-decoration:none;text-align:left;letter-spacing:normal}div.asp_r.asp_r_1,div.asp_m.asp_m_1,div.asp_s.asp_s_1{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box}div.asp_r.asp_r_1,div.asp_r.asp_r_1 *,div.asp_m.asp_m_1,div.asp_m.asp_m_1 *,div.asp_s.asp_s_1,div.asp_s.asp_s_1 *{padding:0;margin:0}.wpdreams_clear{clear:both}.asp_w_container{width:100%}div.asp_m.asp_m_1{width:100%;height:auto;max-height:none;border-radius:5px;background:#d1eaff;margin-top:0;margin-bottom:0;background-image:-moz-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-o-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-ms-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:radial-gradient(ellipse at center,rgb(255,255,255),rgb(255,255,255));overflow:hidden;border:2px solid rgb(112,112,112);border-radius:50px 50px 50px 50px;box-shadow:none}div.asp_m.asp_m_1 .probox{margin:6px;height:28px;background-image:-moz-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-o-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-ms-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:radial-gradient(ellipse at center,rgb(255,255,255),rgb(255,255,255));border:0 none rgb(255,255,255);border-radius:0;box-shadow:none}p[id*=asp-try-1]{color:rgb(85,85,85) !important;display:block}div.asp_main_container+[id*=asp-try-1]{width:100%}p[id*=asp-try-1] a{color:rgb(255,181,86) !important}p[id*=asp-try-1] a:after{color:rgb(85,85,85) !important;display:inline;content:','}p[id*=asp-try-1] a:last-child:after{display:none}div.asp_m.asp_m_1 .probox .proinput{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;flex-grow:1;order:5;-webkit-flex-grow:1;-webkit-order:5}div.asp_m.asp_m_1 .probox .proinput input.orig{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;border:0;box-shadow:none;height:28px;position:relative;z-index:2;padding:0 !important;padding-top:2px !important;margin:-1px 0 0 -4px !important;width:100%;background:transparent !important}div.asp_m.asp_m_1 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;opacity:0.25;height:28px;display:block;position:relative;z-index:1;padding:0 !important;margin:-1px 0 0 -4px !important;margin-top:-28px !important;width:100%;background:transparent !important}.rtl div.asp_m.asp_m_1 .probox .proinput input.orig,.rtl div.asp_m.asp_m_1 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;direction:rtl;text-align:right}.rtl div.asp_m.asp_m_1 .probox .proinput{margin-right:2px}.rtl div.asp_m.asp_m_1 .probox .proloading,.rtl div.asp_m.asp_m_1 .probox .proclose{order:3}div.asp_m.asp_m_1 .probox .proinput input.orig::-webkit-input-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_1 .probox .proinput input.orig::-moz-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_1 .probox .proinput input.orig:-ms-input-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_1 .probox .proinput input.orig:-moz-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85;line-height:normal !important}div.asp_m.asp_m_1 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;border:0;box-shadow:none}div.asp_m.asp_m_1 .probox .proloading,div.asp_m.asp_m_1 .probox .proclose,div.asp_m.asp_m_1 .probox .promagnifier,div.asp_m.asp_m_1 .probox .prosettings{width:28px;height:28px;flex:0 0 28px;flex-grow:0;order:7;-webkit-flex:0 0 28px;-webkit-flex-grow:0;-webkit-order:7}div.asp_m.asp_m_1 .probox .proclose svg{fill:rgb(254,254,254);background:rgb(51,51,51);box-shadow:0 0 0 2px rgba(255,255,255,0.9)}div.asp_m.asp_m_1 .probox .proloading{width:28px;height:28px;min-width:28px;min-height:28px;max-width:28px;max-height:28px}div.asp_m.asp_m_1 .probox .proloading .asp_loader{width:24px;height:24px;min-width:24px;min-height:24px;max-width:24px;max-height:24px}div.asp_m.asp_m_1 .probox .promagnifier{width:auto;height:28px;flex:0 0 auto;order:7;-webkit-flex:0 0 auto;-webkit-order:7}div.asp_m.asp_m_1 .probox .promagnifier div.innericon{width:28px;height:28px;float:right}div.asp_m.asp_m_1 .probox .promagnifier div.asp_text_button{width:auto;height:28px;float:right;margin:0;padding:0 10px 0 2px;font-weight:normal;font-family:"Open Sans";color:rgb(51,51,51);font-size:15px;line-height:auto;text-shadow:none;line-height:28px}div.asp_m.asp_m_1 .probox .promagnifier .innericon svg{fill:rgb(112,112,112)}div.asp_m.asp_m_1 .probox .prosettings .innericon svg{fill:rgb(112,112,112)}div.asp_m.asp_m_1 .probox .promagnifier{width:28px;height:28px;background:transparent;background-position:center center;background-repeat:no-repeat;order:11;-webkit-order:11;float:right;border:0 solid rgb(255,255,255);border-radius:0;box-shadow:-1px 1px 0 0 rgba(255,255,255,0.64) inset;cursor:pointer;background-size:100% 100%;background-position:center center;background-repeat:no-repeat;cursor:pointer}div.asp_m.asp_m_1 .probox .prosettings{width:28px;height:28px;background:transparent;background-position:center center;background-repeat:no-repeat;order:10;-webkit-order:10;float:right;border:0 solid rgb(255,255,255);border-radius:0;box-shadow:0 1px 0 0 rgba(255,255,255,0.64) inset;cursor:pointer;background-size:100% 100%;align-self:flex-end}div.asp_r.asp_r_1{position:absolute;z-index:11000;width:auto;margin:12px 0 0 0}div.asp_r.asp_r_1 .results .asp_nores .asp_keyword{padding:0 6px;cursor:pointer;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:1.35em;text-shadow:none;font-weight:bold}div.asp_r.asp_r_1 .asp_results_top{background:rgb(255,255,255);border:1px none rgb(81,81,81);border-radius:0;padding:6px 12px 6px 12px;margin:0 0 4px 0;text-align:center;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:16px;text-shadow:none}div.asp_r.asp_r_1 .results .item{height:auto;background:rgb(255,255,255)}div.asp_r.asp_r_1 .results .item.hovered{background-image:-moz-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(244,244,244),rgb(246,246,246));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-o-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-ms-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:radial-gradient(ellipse at center,rgb(244,244,244),rgb(246,246,246))}div.asp_r.asp_r_1 .results .item .asp_image{background-size:cover;background-repeat:no-repeat}div.asp_r.asp_r_1 .results .item .asp_item_overlay_img{background-size:cover;background-repeat:no-repeat}div.asp_r.asp_r_1 .results .item .asp_content{overflow:hidden;background:transparent;margin:0;padding:0 10px}div.asp_r.asp_r_1 .results .item .asp_content h3{margin:0;padding:0;display:inline-block;line-height:inherit;font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_1 .results .item .asp_content h3 a{margin:0;padding:0;line-height:inherit;display:block;font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_1 .results .item .asp_content h3 a:hover{font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_1 .results .item div.etc{padding:0;font-size:13px;line-height:1.3em;margin-bottom:6px}div.asp_r.asp_r_1 .results .item .etc .asp_author{padding:0;font-weight:bold;font-family:"Open Sans";color:rgb(161,161,161);font-size:11px;line-height:13px;text-shadow:none}div.asp_r.asp_r_1 .results .item .etc .asp_date{margin:0 0 0 10px;padding:0;font-weight:normal;font-family:"Open Sans";color:rgb(173,173,173);font-size:11px;line-height:15px;text-shadow:none}div.asp_r.asp_r_1 .results .item div.asp_content{margin:0;padding:0;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:1.35em;text-shadow:none}div.asp_r.asp_r_1 span.highlighted{font-weight:bold;color:rgba(217,49,43,1);background-color:rgba(238,238,238,1)}div.asp_r.asp_r_1 p.showmore{text-align:center;margin:5px 0 0;font-weight:normal;font-family:"Open Sans";color:rgb(5,94,148);font-size:12px;line-height:15px;text-shadow:none}div.asp_r.asp_r_1 p.showmore a{font-weight:normal;font-family:"Open Sans";color:rgb(5,94,148);font-size:12px;line-height:15px;text-shadow:none;padding:10px 5px;margin:0 auto;background:rgb(255,255,255);display:block;text-align:center}div.asp_r.asp_r_1 .asp_res_loader{background:rgb(255,255,255);height:200px;padding:10px}div.asp_r.asp_r_1.isotopic .asp_res_loader{background:rgba(255,255,255,0)}div.asp_r.asp_r_1 .asp_res_loader .asp_loader{height:200px;width:200px;margin:0 auto}div.asp_s.asp_s_1.searchsettings{direction:ltr;padding:0;background-image:-webkit-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-moz-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-o-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-ms-linear-gradient(185deg,rgb(255,255,255) 0,rgb(255,255,255) 100%);background-image:linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));box-shadow:1px 1px 0 1px rgb(112,112,112);;max-width:208px;z-index:2}div.asp_s.asp_s_1.searchsettings.asp_s{z-index:11001}div.asp_sb.asp_sb_1.searchsettings{max-width:none}div.asp_s.asp_s_1.searchsettings form{display:block;-moz-column-width:200px;-moz-column-fill:balance;-moz-column-gap:0;-webkit-column-width:200px;-webkit-column-gap:0;column-width:200px;column-gap:0;column-fill:balance}div.asp_sb.asp_sb_1.searchsettings form{display:block;-moz-column-width:200px;-moz-column-fill:balance;-moz-column-gap:0;-webkit-column-width:200px;-webkit-column-gap:0;column-width:200px;column-gap:0;column-fill:balance}div.asp_sb.asp_sb_1.searchsettings form>fieldset{display:inline-block;vertical-align:top;float:none}div.asp_s.asp_s_1.searchsettings form>fieldset{display:inline-block;vertical-align:top;float:none}div.asp_s.asp_s_1.searchsettings div.asp_option_label,div.asp_s.asp_s_1.searchsettings .asp_label{font-weight:bold;font-family:"Open Sans";color:rgb(43,43,43);font-size:12px;line-height:15px;text-shadow:none}div.asp_sb.asp_sb_1.searchsettings .asp_option_inner label,div.asp_s.asp_s_1.searchsettings .asp_option_inner label{background-image:-webkit-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-moz-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-o-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-ms-linear-gradient(180deg,rgb(34,34,34) 0,rgb(69,72,77) 100%);background-image:linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77))}div.asp_sb.asp_sb_1.searchsettings .asp_option_inner label:after,div.asp_s.asp_s_1.searchsettings .asp_option_inner label:after{font-family:'asppsicons2';border:none;content:"\e800";display:block;position:absolute;top:0;left:0;font-size:11px;color:rgb(255,255,255);margin:1px 0 0 0 !important;line-height:17px;text-align:center;text-decoration:none;text-shadow:none}div.asp_s.asp_s_1.searchsettings .asp_sett_scroll{max-height:220px;overflow:auto}div.asp_sb.asp_sb_1.searchsettings .asp_sett_scroll{max-height:220px;overflow:auto}div.asp_s.asp_s_1.searchsettings fieldset{width:200px;min-width:200px;max-width:10000px}div.asp_sb.asp_sb_1.searchsettings fieldset{width:200px;min-width:200px;max-width:10000px}div.asp_s.asp_s_1.searchsettings fieldset legend{padding:0 0 0 10px;margin:0;background:transparent;font-weight:normal;font-family:"Open Sans";color:rgb(71,71,71);font-size:13px;line-height:15px;text-shadow:none}div.asp_s.asp_s_1.searchsettings .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_sb.asp_sb_1.searchsettings .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_r.asp_r_1.vertical{padding:4px;background:rgb(255,255,255);border-radius:3px;border:2px solid rgb(112,112,112);border-radius:3px 3px 3px 3px;box-shadow:none;visibility:hidden;display:none}div.asp_r.asp_r_1.vertical .results{max-height:none}div.asp_r.asp_r_1.vertical .item{position:relative;box-sizing:border-box}div.asp_r.asp_r_1.vertical .item .asp_content h3{display:inline}div.asp_r.asp_r_1.vertical .results .item .asp_content{overflow:hidden;width:auto;height:auto;background:transparent;margin:0;padding:8px}div.asp_r.asp_r_1.vertical .results .item .asp_image{width:70px;height:70px;margin:2px 8px 0 0}div.asp_r.asp_r_1.vertical .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_r.asp_r_1.vertical .results .item::after{display:block;position:absolute;bottom:0;content:"";height:1px;width:100%;background:rgba(255,255,255,0.55)}div.asp_r.asp_r_1.vertical .results .item.asp_last_item::after{display:none}.asp_spacer{display:none !important;}.asp_v_spacer{width:100%;height:0}div.asp_r.asp_r_1 .asp_group_header{background:#DDD;background:rgb(246,246,246);border-radius:3px 3px 0 0;border-top:1px solid rgb(248,248,248);border-left:1px solid rgb(248,248,248);border-right:1px solid rgb(248,248,248);margin:10px 0 -3px;padding:7px 0 7px 10px;position:relative;z-index:1000;min-width:90%;flex-grow:1;font-weight:bold;font-family:"Open Sans";color:rgb(5,94,148);font-size:11px;line-height:13px;text-shadow:none}div[id*='ajaxsearchpro2_'] div.asp_loader,div[id*='ajaxsearchpro2_'] div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}div[id*='ajaxsearchpro2_'] div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}div[id*='ajaxsearchpro2_'] div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}div[id*='ajaxsearchpro2_'] div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}div[id*='ajaxsearchprores2_'] .asp_res_loader div.asp_loader,div[id*='ajaxsearchprores2_'] .asp_res_loader div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}div[id*='ajaxsearchprores2_'] .asp_res_loader div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}div[id*='ajaxsearchprores2_'] .asp_res_loader div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}div[id*='ajaxsearchprores2_'] .asp_res_loader div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}#ajaxsearchpro2_1 div.asp_loader,#ajaxsearchpro2_2 div.asp_loader,#ajaxsearchpro2_1 div.asp_loader *,#ajaxsearchpro2_2 div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}#ajaxsearchpro2_1 div.asp_loader,#ajaxsearchpro2_2 div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}#ajaxsearchpro2_1 div.asp_loader-inner,#ajaxsearchpro2_2 div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}#ajaxsearchpro2_1 div.asp_ball-scale>div,#ajaxsearchpro2_2 div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}@-webkit-keyframes asp_an_fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes asp_an_fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.asp_an_fadeInDown{-webkit-animation-name:asp_an_fadeInDown;animation-name:asp_an_fadeInDown}div.asp_r.asp_r_2,div.asp_r.asp_r_2 *,div.asp_m.asp_m_2,div.asp_m.asp_m_2 *,div.asp_s.asp_s_2,div.asp_s.asp_s_2 *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box;border:0;border-radius:0;text-transform:none;text-shadow:none;box-shadow:none;text-decoration:none;text-align:left;letter-spacing:normal}div.asp_r.asp_r_2,div.asp_m.asp_m_2,div.asp_s.asp_s_2{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box}div.asp_r.asp_r_2,div.asp_r.asp_r_2 *,div.asp_m.asp_m_2,div.asp_m.asp_m_2 *,div.asp_s.asp_s_2,div.asp_s.asp_s_2 *{padding:0;margin:0}.wpdreams_clear{clear:both}.asp_w_container{width:100%}div.asp_m.asp_m_2{width:100%;height:auto;max-height:none;border-radius:5px;background:#d1eaff;margin-top:0;margin-bottom:0;background-image:-moz-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-o-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-ms-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:radial-gradient(ellipse at center,rgb(255,255,255),rgb(255,255,255));overflow:hidden;border:2px solid rgb(112,112,112);border-radius:50px 50px 50px 50px;box-shadow:none}div.asp_m.asp_m_2 .probox{margin:6px;height:28px;background-image:-moz-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-o-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-ms-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:radial-gradient(ellipse at center,rgb(255,255,255),rgb(255,255,255));border:0 none rgb(255,255,255);border-radius:0;box-shadow:none}p[id*=asp-try-2]{color:rgb(85,85,85) !important;display:block}div.asp_main_container+[id*=asp-try-2]{width:100%}p[id*=asp-try-2] a{color:rgb(255,181,86) !important}p[id*=asp-try-2] a:after{color:rgb(85,85,85) !important;display:inline;content:','}p[id*=asp-try-2] a:last-child:after{display:none}div.asp_m.asp_m_2 .probox .proinput{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;flex-grow:1;order:5;-webkit-flex-grow:1;-webkit-order:5}div.asp_m.asp_m_2 .probox .proinput input.orig{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;border:0;box-shadow:none;height:28px;position:relative;z-index:2;padding:0 !important;padding-top:2px !important;margin:-1px 0 0 -4px !important;width:100%;background:transparent !important}div.asp_m.asp_m_2 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;opacity:0.25;height:28px;display:block;position:relative;z-index:1;padding:0 !important;margin:-1px 0 0 -4px !important;margin-top:-28px !important;width:100%;background:transparent !important}.rtl div.asp_m.asp_m_2 .probox .proinput input.orig,.rtl div.asp_m.asp_m_2 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;direction:rtl;text-align:right}.rtl div.asp_m.asp_m_2 .probox .proinput{margin-right:2px}.rtl div.asp_m.asp_m_2 .probox .proloading,.rtl div.asp_m.asp_m_2 .probox .proclose{order:3}div.asp_m.asp_m_2 .probox .proinput input.orig::-webkit-input-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_2 .probox .proinput input.orig::-moz-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_2 .probox .proinput input.orig:-ms-input-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_2 .probox .proinput input.orig:-moz-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;text-shadow:none;opacity:0.85;line-height:normal !important}div.asp_m.asp_m_2 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:12px;line-height:15px;text-shadow:none;line-height:normal;border:0;box-shadow:none}div.asp_m.asp_m_2 .probox .proloading,div.asp_m.asp_m_2 .probox .proclose,div.asp_m.asp_m_2 .probox .promagnifier,div.asp_m.asp_m_2 .probox .prosettings{width:28px;height:28px;flex:0 0 28px;flex-grow:0;order:7;-webkit-flex:0 0 28px;-webkit-flex-grow:0;-webkit-order:7}div.asp_m.asp_m_2 .probox .proclose svg{fill:rgb(254,254,254);background:rgb(51,51,51);box-shadow:0 0 0 2px rgba(255,255,255,0.9)}div.asp_m.asp_m_2 .probox .proloading{width:28px;height:28px;min-width:28px;min-height:28px;max-width:28px;max-height:28px}div.asp_m.asp_m_2 .probox .proloading .asp_loader{width:24px;height:24px;min-width:24px;min-height:24px;max-width:24px;max-height:24px}div.asp_m.asp_m_2 .probox .promagnifier{width:auto;height:28px;flex:0 0 auto;order:7;-webkit-flex:0 0 auto;-webkit-order:7}div.asp_m.asp_m_2 .probox .promagnifier div.innericon{width:28px;height:28px;float:right}div.asp_m.asp_m_2 .probox .promagnifier div.asp_text_button{width:auto;height:28px;float:right;margin:0;padding:0 10px 0 2px;font-weight:normal;font-family:"Open Sans";color:rgb(51,51,51);font-size:15px;line-height:auto;text-shadow:none;line-height:28px}div.asp_m.asp_m_2 .probox .promagnifier .innericon svg{fill:rgb(112,112,112)}div.asp_m.asp_m_2 .probox .prosettings .innericon svg{fill:rgb(112,112,112)}div.asp_m.asp_m_2 .probox .promagnifier{width:auto;height:28px;background:transparent;background-position:center center;background-repeat:no-repeat;order:11;-webkit-order:11;float:right;border:0 solid rgb(255,255,255);border-radius:0;box-shadow:-1px 1px 0 0 rgba(255,255,255,0.64) inset;cursor:pointer;background-size:100% 100%;background-position:center center;background-repeat:no-repeat;cursor:pointer}div.asp_m.asp_m_2 .probox .prosettings{width:28px;height:28px;background:transparent;background-position:center center;background-repeat:no-repeat;order:10;-webkit-order:10;float:right;border:0 solid rgb(255,255,255);border-radius:0;box-shadow:0 1px 0 0 rgba(255,255,255,0.64) inset;cursor:pointer;background-size:100% 100%;align-self:flex-end}div.asp_r.asp_r_2{position:static;z-index:1;width:auto;margin:12px 0 0 0}div.asp_r.asp_r_2 .results .asp_nores .asp_keyword{padding:0 6px;cursor:pointer;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:1.35em;text-shadow:none;font-weight:bold}div.asp_r.asp_r_2 .asp_results_top{background:rgb(255,255,255);border:1px none rgb(81,81,81);border-radius:0;padding:6px 12px 6px 12px;margin:0 0 4px 0;text-align:center;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:16px;text-shadow:none}div.asp_r.asp_r_2 .results .item{height:auto;background:rgb(255,255,255)}div.asp_r.asp_r_2 .results .item.hovered{background-image:-moz-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(244,244,244),rgb(246,246,246));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-o-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-ms-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:radial-gradient(ellipse at center,rgb(244,244,244),rgb(246,246,246))}div.asp_r.asp_r_2 .results .item .asp_image{background-size:cover;background-repeat:no-repeat}div.asp_r.asp_r_2 .results .item .asp_item_overlay_img{background-size:cover;background-repeat:no-repeat}div.asp_r.asp_r_2 .results .item .asp_content{overflow:hidden;background:transparent;margin:0;padding:0 10px}div.asp_r.asp_r_2 .results .item .asp_content h3{margin:0;padding:0;display:inline-block;line-height:inherit;font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_2 .results .item .asp_content h3 a{margin:0;padding:0;line-height:inherit;display:block;font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_2 .results .item .asp_content h3 a:hover{font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_2 .results .item div.etc{padding:0;font-size:13px;line-height:1.3em;margin-bottom:6px}div.asp_r.asp_r_2 .results .item .etc .asp_author{padding:0;font-weight:bold;font-family:"Open Sans";color:rgb(161,161,161);font-size:11px;line-height:13px;text-shadow:none}div.asp_r.asp_r_2 .results .item .etc .asp_date{margin:0 0 0 10px;padding:0;font-weight:normal;font-family:"Open Sans";color:rgb(173,173,173);font-size:11px;line-height:15px;text-shadow:none}div.asp_r.asp_r_2 .results .item div.asp_content{margin:0;padding:0;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:1.35em;text-shadow:none}div.asp_r.asp_r_2 span.highlighted{font-weight:bold;color:rgba(217,49,43,1);background-color:rgba(238,238,238,1)}div.asp_r.asp_r_2 p.showmore{text-align:center;margin:5px 0 0;font-weight:normal;font-family:"Open Sans";color:rgb(5,94,148);font-size:12px;line-height:15px;text-shadow:none}div.asp_r.asp_r_2 p.showmore a{font-weight:normal;font-family:"Open Sans";color:rgb(5,94,148);font-size:12px;line-height:15px;text-shadow:none;padding:10px 5px;margin:0 auto;background:rgb(255,255,255);display:block;text-align:center}div.asp_r.asp_r_2 .asp_res_loader{background:rgb(255,255,255);height:200px;padding:10px}div.asp_r.asp_r_2.isotopic .asp_res_loader{background:rgba(255,255,255,0)}div.asp_r.asp_r_2 .asp_res_loader .asp_loader{height:200px;width:200px;margin:0 auto}div.asp_s.asp_s_2.searchsettings{direction:ltr;padding:0;background-image:-webkit-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-moz-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-o-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-ms-linear-gradient(185deg,rgb(255,255,255) 0,rgb(255,255,255) 100%);background-image:linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));box-shadow:1px 1px 0 1px rgb(112,112,112);;max-width:308px;z-index:2}div.asp_s.asp_s_2.searchsettings.asp_s{z-index:11001}div.asp_sb.asp_sb_2.searchsettings{max-width:none}div.asp_s.asp_s_2.searchsettings form{display:flex}div.asp_sb.asp_sb_2.searchsettings form{display:flex}div.asp_s.asp_s_2.searchsettings div.asp_option_label,div.asp_s.asp_s_2.searchsettings .asp_label{font-weight:bold;font-family:"Open Sans";color:rgb(43,43,43);font-size:12px;line-height:15px;text-shadow:none}div.asp_sb.asp_sb_2.searchsettings .asp_option_inner label,div.asp_s.asp_s_2.searchsettings .asp_option_inner label{background-image:-webkit-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-moz-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-o-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-ms-linear-gradient(180deg,rgb(34,34,34) 0,rgb(69,72,77) 100%);background-image:linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77))}div.asp_sb.asp_sb_2.searchsettings .asp_option_inner label:after,div.asp_s.asp_s_2.searchsettings .asp_option_inner label:after{font-family:'asppsicons2';border:none;content:"\e800";display:block;position:absolute;top:0;left:0;font-size:11px;color:rgb(255,255,255);margin:1px 0 0 0 !important;line-height:17px;text-align:center;text-decoration:none;text-shadow:none}div.asp_s.asp_s_2.searchsettings .asp_sett_scroll{max-height:180;overflow:auto}div.asp_sb.asp_sb_2.searchsettings .asp_sett_scroll{max-height:180;overflow:auto}div.asp_s.asp_s_2.searchsettings fieldset{width:300px;min-width:300px;max-width:10000px}div.asp_sb.asp_sb_2.searchsettings fieldset{width:300px;min-width:300px;max-width:10000px}div.asp_s.asp_s_2.searchsettings fieldset legend{padding:0 0 0 10px;margin:0;background:transparent;font-weight:normal;font-family:"Open Sans";color:rgb(71,71,71);font-size:13px;line-height:15px;text-shadow:none}div.asp_s.asp_s_2.searchsettings .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_sb.asp_sb_2.searchsettings .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_r.asp_r_2.vertical{padding:4px;background:rgb(255,255,255);border-radius:3px;border:2px solid rgb(112,112,112);border-radius:3px 3px 3px 3px;box-shadow:none;visibility:hidden;display:none}div.asp_r.asp_r_2.vertical .results{max-height:none}div.asp_r.asp_r_2.vertical .item{position:relative;box-sizing:border-box}div.asp_r.asp_r_2.vertical .item .asp_content h3{display:inline}div.asp_r.asp_r_2.vertical .results .item .asp_content{overflow:hidden;width:auto;height:auto;background:transparent;margin:0;padding:8px}div.asp_r.asp_r_2.vertical .results .item .asp_image{width:70px;height:70px;margin:2px 8px 0 0}div.asp_r.asp_r_2.vertical .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_r.asp_r_2.vertical .results .item::after{display:block;position:absolute;bottom:0;content:"";height:1px;width:100%;background:rgba(255,255,255,0.55)}div.asp_r.asp_r_2.vertical .results .item.asp_last_item::after{display:none}.asp_spacer{display:none !important;}.asp_v_spacer{width:100%;height:0}div.asp_r.asp_r_2 .asp_group_header{background:#DDD;background:rgb(246,246,246);border-radius:3px 3px 0 0;border-top:1px solid rgb(248,248,248);border-left:1px solid rgb(248,248,248);border-right:1px solid rgb(248,248,248);margin:10px 0 -3px;padding:7px 0 7px 10px;position:relative;z-index:1000;min-width:90%;flex-grow:1;font-weight:bold;font-family:"Open Sans";color:rgb(5,94,148);font-size:11px;line-height:13px;text-shadow:none}div[id*='ajaxsearchpro3_'] div.asp_loader,div[id*='ajaxsearchpro3_'] div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}div[id*='ajaxsearchpro3_'] div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}div[id*='ajaxsearchpro3_'] div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}div[id*='ajaxsearchpro3_'] div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}div[id*='ajaxsearchprores3_'] .asp_res_loader div.asp_loader,div[id*='ajaxsearchprores3_'] .asp_res_loader div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}div[id*='ajaxsearchprores3_'] .asp_res_loader div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}div[id*='ajaxsearchprores3_'] .asp_res_loader div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}div[id*='ajaxsearchprores3_'] .asp_res_loader div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}#ajaxsearchpro3_1 div.asp_loader,#ajaxsearchpro3_2 div.asp_loader,#ajaxsearchpro3_1 div.asp_loader *,#ajaxsearchpro3_2 div.asp_loader *{box-sizing:border-box !important;margin:0;padding:0;box-shadow:none}#ajaxsearchpro3_1 div.asp_loader,#ajaxsearchpro3_2 div.asp_loader{box-sizing:border-box;display:flex;flex:0 1 auto;flex-direction:column;flex-grow:0;flex-shrink:0;flex-basis:28px;max-width:100%;max-height:100%;align-items:center;justify-content:center}#ajaxsearchpro3_1 div.asp_loader-inner,#ajaxsearchpro3_2 div.asp_loader-inner{width:100%;margin:0 auto;text-align:center;height:100%}@-webkit-keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}@keyframes ball-scale{0%{-webkit-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);transform:scale(1);opacity:0}}#ajaxsearchpro3_1 div.asp_ball-scale>div,#ajaxsearchpro3_2 div.asp_ball-scale>div{background-color:rgb(112,112,112);border-radius:100%;-webkit-animation-fill-mode:both;animation-fill-mode:both;display:inline-block;height:100%;width:100%;-webkit-animation:ball-scale 1s 0s ease-in-out infinite;animation:ball-scale 1s 0s ease-in-out infinite}@-webkit-keyframes asp_an_fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes asp_an_fadeInDown{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.asp_an_fadeInDown{-webkit-animation-name:asp_an_fadeInDown;animation-name:asp_an_fadeInDown}div.asp_r.asp_r_3,div.asp_r.asp_r_3 *,div.asp_m.asp_m_3,div.asp_m.asp_m_3 *,div.asp_s.asp_s_3,div.asp_s.asp_s_3 *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box;border:0;border-radius:0;text-transform:none;text-shadow:none;box-shadow:none;text-decoration:none;text-align:left;letter-spacing:normal}div.asp_r.asp_r_3,div.asp_m.asp_m_3,div.asp_s.asp_s_3{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box}div.asp_r.asp_r_3,div.asp_r.asp_r_3 *,div.asp_m.asp_m_3,div.asp_m.asp_m_3 *,div.asp_s.asp_s_3,div.asp_s.asp_s_3 *{padding:0;margin:0}.wpdreams_clear{clear:both}.asp_w_container{width:100%}div.asp_m.asp_m_3{width:100%;height:auto;max-height:none;border-radius:5px;background:#d1eaff;margin-top:0;margin-bottom:0;background:transparent;overflow:hidden;border:2px none rgb(112,112,112);border-radius:50px 50px 50px 50px;box-shadow:none}div.asp_m.asp_m_3 .probox{margin:6px;height:35px;background-image:-moz-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(255,255,255),rgb(255,255,255));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-o-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:-ms-radial-gradient(center,ellipse cover,rgb(255,255,255),rgb(255,255,255));background-image:radial-gradient(ellipse at center,rgb(255,255,255),rgb(255,255,255));border:2px solid rgba(85,85,85,1);border-radius:20px 20px 20px 20px;box-shadow:none}p[id*=asp-try-3]{color:rgb(85,85,85) !important;display:block}div.asp_main_container+[id*=asp-try-3]{width:100%}p[id*=asp-try-3] a{color:rgb(255,181,86) !important}p[id*=asp-try-3] a:after{color:rgb(85,85,85) !important;display:inline;content:','}p[id*=asp-try-3] a:last-child:after{display:none}div.asp_m.asp_m_3 .probox .proinput{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;line-height:17px;text-shadow:none;line-height:normal;flex-grow:1;order:5;-webkit-flex-grow:1;-webkit-order:5}div.asp_m.asp_m_3 .probox .proinput input.orig{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;line-height:17px;text-shadow:none;line-height:normal;border:0;box-shadow:none;height:35px;position:relative;z-index:2;padding:0 !important;padding-top:2px !important;margin:-1px 0 0 -4px !important;width:100%;background:transparent !important}div.asp_m.asp_m_3 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;line-height:17px;text-shadow:none;line-height:normal;opacity:0.25;height:35px;display:block;position:relative;z-index:1;padding:0 !important;margin:-1px 0 0 -4px !important;margin-top:-35px !important;width:100%;background:transparent !important}.rtl div.asp_m.asp_m_3 .probox .proinput input.orig,.rtl div.asp_m.asp_m_3 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;line-height:17px;text-shadow:none;line-height:normal;direction:rtl;text-align:right}.rtl div.asp_m.asp_m_3 .probox .proinput{margin-right:2px}.rtl div.asp_m.asp_m_3 .probox .proloading,.rtl div.asp_m.asp_m_3 .probox .proclose{order:3}div.asp_m.asp_m_3 .probox .proinput input.orig::-webkit-input-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_3 .probox .proinput input.orig::-moz-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_3 .probox .proinput input.orig:-ms-input-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;text-shadow:none;opacity:0.85}div.asp_m.asp_m_3 .probox .proinput input.orig:-moz-placeholder{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;text-shadow:none;opacity:0.85;line-height:normal !important}div.asp_m.asp_m_3 .probox .proinput input.autocomplete{font-weight:normal;font-family:"Open Sans";color:rgb(0,0,0);font-size:16px;line-height:17px;text-shadow:none;line-height:normal;border:0;box-shadow:none}div.asp_m.asp_m_3 .probox .proloading,div.asp_m.asp_m_3 .probox .proclose,div.asp_m.asp_m_3 .probox .promagnifier,div.asp_m.asp_m_3 .probox .prosettings{width:35px;height:35px;flex:0 0 35px;flex-grow:0;order:7;-webkit-flex:0 0 35px;-webkit-flex-grow:0;-webkit-order:7}div.asp_m.asp_m_3 .probox .proclose svg{fill:rgb(254,254,254);background:rgb(51,51,51);box-shadow:0 0 0 2px rgba(255,255,255,0.9)}div.asp_m.asp_m_3 .probox .proloading{width:35px;height:35px;min-width:35px;min-height:35px;max-width:35px;max-height:35px}div.asp_m.asp_m_3 .probox .proloading .asp_loader{width:31px;height:31px;min-width:31px;min-height:31px;max-width:31px;max-height:31px}div.asp_m.asp_m_3 .probox .promagnifier{width:auto;height:35px;flex:0 0 auto;order:7;-webkit-flex:0 0 auto;-webkit-order:7}div.asp_m.asp_m_3 .probox .promagnifier div.innericon{width:35px;height:35px;float:right}div.asp_m.asp_m_3 .probox .promagnifier div.asp_text_button{width:auto;height:35px;float:right;margin:0;padding:0 10px 0 2px;font-weight:normal;font-family:"Open Sans";color:rgb(51,51,51);font-size:15px;line-height:auto;text-shadow:none;line-height:35px}div.asp_m.asp_m_3 .probox .promagnifier .innericon svg{fill:rgb(255,255,255)}div.asp_m.asp_m_3 .probox .prosettings .innericon svg{fill:rgb(112,112,112)}div.asp_m.asp_m_3 .probox .promagnifier{width:33px;height:33px;background-image:-webkit-linear-gradient(180deg,rgba(226,61,40,1),rgba(226,61,40,1));background-image:-moz-linear-gradient(180deg,rgba(226,61,40,1),rgba(226,61,40,1));background-image:-o-linear-gradient(180deg,rgba(226,61,40,1),rgba(226,61,40,1));background-image:-ms-linear-gradient(180deg,rgba(226,61,40,1) 0,rgba(226,61,40,1) 100%);background-image:linear-gradient(180deg,rgba(226,61,40,1),rgba(226,61,40,1));background-position:center center;background-repeat:no-repeat;order:11;-webkit-order:11;float:right;border:1px solid rgba(226,61,40,1);border-radius:1px 1px 1px 1px;box-shadow:-1px 1px 0 0 rgba(255,255,255,0.64);cursor:pointer;background-size:100% 100%;background-position:center center;background-repeat:no-repeat;cursor:pointer}div.asp_m.asp_m_3 .probox .prosettings{width:35px;height:35px;background:transparent;background-position:center center;background-repeat:no-repeat;order:10;-webkit-order:10;float:right;border:0 solid rgb(255,255,255);border-radius:0;box-shadow:0 1px 0 0 rgba(255,255,255,0.64) inset;cursor:pointer;background-size:100% 100%;align-self:flex-end}div.asp_r.asp_r_3{position:static;z-index:1;width:auto;margin:12px 0 0 0}div.asp_r.asp_r_3 .results .asp_nores .asp_keyword{padding:0 6px;cursor:pointer;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:1.35em;text-shadow:none;font-weight:bold}div.asp_r.asp_r_3 .asp_results_top{background:rgb(255,255,255);border:1px none rgb(81,81,81);border-radius:0;padding:6px 12px 6px 12px;margin:0 0 4px 0;text-align:center;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:16px;text-shadow:none}div.asp_r.asp_r_3 .results .item{height:auto;background:rgb(255,255,255)}div.asp_r.asp_r_3 .results .item.hovered{background-image:-moz-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgb(244,244,244),rgb(246,246,246));background-image:-webkit-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-o-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:-ms-radial-gradient(center,ellipse cover,rgb(244,244,244),rgb(246,246,246));background-image:radial-gradient(ellipse at center,rgb(244,244,244),rgb(246,246,246))}div.asp_r.asp_r_3 .results .item .asp_image{background-size:cover;background-repeat:no-repeat}div.asp_r.asp_r_3 .results .item .asp_item_overlay_img{background-size:cover;background-repeat:no-repeat}div.asp_r.asp_r_3 .results .item .asp_content{overflow:hidden;background:transparent;margin:0;padding:0 10px}div.asp_r.asp_r_3 .results .item .asp_content h3{margin:0;padding:0;display:inline-block;line-height:inherit;font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_3 .results .item .asp_content h3 a{margin:0;padding:0;line-height:inherit;display:block;font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_3 .results .item .asp_content h3 a:hover{font-weight:bold;font-family:"Lato";color:rgb(20,104,169);font-size:14px;line-height:1.55em;text-shadow:none}div.asp_r.asp_r_3 .results .item div.etc{padding:0;font-size:13px;line-height:1.3em;margin-bottom:6px}div.asp_r.asp_r_3 .results .item .etc .asp_author{padding:0;font-weight:bold;font-family:"Open Sans";color:rgb(161,161,161);font-size:11px;line-height:13px;text-shadow:none}div.asp_r.asp_r_3 .results .item .etc .asp_date{margin:0 0 0 10px;padding:0;font-weight:normal;font-family:"Open Sans";color:rgb(173,173,173);font-size:11px;line-height:15px;text-shadow:none}div.asp_r.asp_r_3 .results .item div.asp_content{margin:0;padding:0;font-weight:normal;font-family:"Open Sans";color:rgb(74,74,74);font-size:13px;line-height:1.35em;text-shadow:none}div.asp_r.asp_r_3 span.highlighted{font-weight:bold;color:rgba(217,49,43,1);background-color:rgba(238,238,238,1)}div.asp_r.asp_r_3 p.showmore{text-align:center;margin:5px 0 0;font-weight:normal;font-family:"Open Sans";color:rgb(5,94,148);font-size:12px;line-height:15px;text-shadow:none}div.asp_r.asp_r_3 p.showmore a{font-weight:normal;font-family:"Open Sans";color:rgb(5,94,148);font-size:12px;line-height:15px;text-shadow:none;padding:10px 5px;margin:0 auto;background:rgb(255,255,255);display:block;text-align:center}div.asp_r.asp_r_3 .asp_res_loader{background:rgb(255,255,255);height:200px;padding:10px}div.asp_r.asp_r_3.isotopic .asp_res_loader{background:rgba(255,255,255,0)}div.asp_r.asp_r_3 .asp_res_loader .asp_loader{height:200px;width:200px;margin:0 auto}div.asp_s.asp_s_3.searchsettings{direction:ltr;padding:0;background-image:-webkit-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-moz-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-o-linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));background-image:-ms-linear-gradient(185deg,rgb(255,255,255) 0,rgb(255,255,255) 100%);background-image:linear-gradient(185deg,rgb(255,255,255),rgb(255,255,255));box-shadow:1px 1px 0 1px rgb(112,112,112);;max-width:308px;z-index:2}div.asp_s.asp_s_3.searchsettings.asp_s{z-index:11001}div.asp_sb.asp_sb_3.searchsettings{max-width:none}div.asp_s.asp_s_3.searchsettings form{display:flex}div.asp_sb.asp_sb_3.searchsettings form{display:flex}div.asp_s.asp_s_3.searchsettings div.asp_option_label,div.asp_s.asp_s_3.searchsettings .asp_label{font-weight:bold;font-family:"Open Sans";color:rgb(43,43,43);font-size:12px;line-height:15px;text-shadow:none}div.asp_sb.asp_sb_3.searchsettings .asp_option_inner label,div.asp_s.asp_s_3.searchsettings .asp_option_inner label{background-image:-webkit-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-moz-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-o-linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77));background-image:-ms-linear-gradient(180deg,rgb(34,34,34) 0,rgb(69,72,77) 100%);background-image:linear-gradient(180deg,rgb(34,34,34),rgb(69,72,77))}div.asp_sb.asp_sb_3.searchsettings .asp_option_inner label:after,div.asp_s.asp_s_3.searchsettings .asp_option_inner label:after{font-family:'asppsicons2';border:none;content:"\e800";display:block;position:absolute;top:0;left:0;font-size:11px;color:rgb(255,255,255);margin:1px 0 0 0 !important;line-height:17px;text-align:center;text-decoration:none;text-shadow:none}div.asp_s.asp_s_3.searchsettings .asp_sett_scroll{max-height:180;overflow:auto}div.asp_sb.asp_sb_3.searchsettings .asp_sett_scroll{max-height:180;overflow:auto}div.asp_s.asp_s_3.searchsettings fieldset{width:300px;min-width:300px;max-width:10000px}div.asp_sb.asp_sb_3.searchsettings fieldset{width:300px;min-width:300px;max-width:10000px}div.asp_s.asp_s_3.searchsettings fieldset legend{padding:0 0 0 10px;margin:0;background:transparent;font-weight:normal;font-family:"Open Sans";color:rgb(71,71,71);font-size:13px;line-height:15px;text-shadow:none}div.asp_s.asp_s_3.searchsettings .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_sb.asp_sb_3.searchsettings .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_r.asp_r_3.vertical{padding:4px;background:rgb(255,255,255);border-radius:3px;border:2px solid rgb(112,112,112);border-radius:3px 3px 3px 3px;box-shadow:none;visibility:hidden;display:none}div.asp_r.asp_r_3.vertical .results{max-height:none}div.asp_r.asp_r_3.vertical .item{position:relative;box-sizing:border-box}div.asp_r.asp_r_3.vertical .item .asp_content h3{display:inline}div.asp_r.asp_r_3.vertical .results .item .asp_content{overflow:hidden;width:auto;height:auto;background:transparent;margin:0;padding:8px}div.asp_r.asp_r_3.vertical .results .item .asp_image{width:70px;height:70px;margin:2px 8px 0 0}div.asp_r.asp_r_3.vertical .asp_simplebar-scrollbar::before{background:transparent;background-image:-moz-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-gradient(radial,center center,0px,center center,100%,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-webkit-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-o-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:-ms-radial-gradient(center,ellipse cover,rgba(0,0,0,0.5),rgba(0,0,0,0.5));background-image:radial-gradient(ellipse at center,rgba(0,0,0,0.5),rgba(0,0,0,0.5))}div.asp_r.asp_r_3.vertical .results .item::after{display:block;position:absolute;bottom:0;content:"";height:1px;width:100%;background:rgba(255,255,255,0.55)}div.asp_r.asp_r_3.vertical .results .item.asp_last_item::after{display:none}.asp_spacer{display:none !important;}.asp_v_spacer{width:100%;height:0}div.asp_r.asp_r_3 .asp_group_header{background:#DDD;background:rgb(246,246,246);border-radius:3px 3px 0 0;border-top:1px solid rgb(248,248,248);border-left:1px solid rgb(248,248,248);border-right:1px solid rgb(248,248,248);margin:10px 0 -3px;padding:7px 0 7px 10px;position:relative;z-index:1000;min-width:90%;flex-grow:1;font-weight:bold;font-family:"Open Sans";color:rgb(5,94,148);font-size:11px;line-height:13px;text-shadow:none}            </style>
			            				<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
				<link rel="preload" as="style" href="//fonts.googleapis.com/css?family=Lato:300|Lato:400|Lato:700|Open+Sans:300|Open+Sans:400|Open+Sans:700&display=swap" />
				<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:300|Lato:400|Lato:700|Open+Sans:300|Open+Sans:400|Open+Sans:700&display=swap" media="all" />
				<link rel="icon" href="https://www.contractstore.com/wp-content/uploads/2017/04/cropped-site-icon-1-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.contractstore.com/wp-content/uploads/2017/04/cropped-site-icon-1-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://www.contractstore.com/wp-content/uploads/2017/04/cropped-site-icon-1-180x180.png" />
<meta name="msapplication-TileImage" content="https://www.contractstore.com/wp-content/uploads/2017/04/cropped-site-icon-1-270x270.png" />
<noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript><style type="text/css">/** Mega Menu CSS: fs **/</style>
	<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-NMSHZFS');</script>
<!-- End Google Tag Manager -->

<link rel='stylesheet' id='js_composer_front-css' href='https://www.contractstore.com/wp-content/plugins/js_composer/assets/css/js_composer.min.css?ver=8.0.1' media='all' />
<link rel='stylesheet' id='vc_font_awesome_5_shims-css' href='https://www.contractstore.com/wp-content/plugins/js_composer/assets/lib/vendor/node_modules/@fortawesome/fontawesome-free/css/v4-shims.min.css?ver=8.0.1' media='all' />
<link rel='stylesheet' id='vc_font_awesome_5-css' href='https://www.contractstore.com/wp-content/plugins/js_composer/assets/lib/vendor/node_modules/@fortawesome/fontawesome-free/css/all.min.css?ver=8.0.1' media='all' />

</head>

<body class="blog wp-theme-vendd wp-child-theme-vendd-child edd-js-none mega-menu-main-menu mega-menu-info-bar mega-menu-max-mega-menu-1 group-blog wpb-js-composer js-comp-ver-8.0.1 vc_responsive">
	<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NMSHZFS"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="page" class="hfeed site">
	<a class="skip-link screen-reader-text" href="#content">Skip to content</a>

			<div id="info-bar" class="info-bar">
			
			
							<div id="info-bar-navigation" class="secondary-navigation" role="navigation">
					<div id="mega-menu-wrap-info_bar" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"><div class='mega-toggle-block mega-logo-block mega-toggle-block-1' id='mega-toggle-block-1'><a class="mega-menu-logo" href="https://www.contractstore.com" target="_self"><img class="mega-menu-logo" src="https://www.contractstore.com/wp-content/uploads/2017/04/contractstore-mobile-logo.png" alt="ContractStore" /></a></div></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class='mega-toggle-block mega-menu-toggle-block mega-toggle-block-2' id='mega-toggle-block-2' tabindex='0'><span class='mega-toggle-label' role='button' aria-expanded='false'><span class='mega-toggle-label-closed'></span><span class='mega-toggle-label-open'></span></span></div></div></div><ul id="mega-menu-info_bar" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="disabled" data-effect-speed-mobile="0" data-mobile-force-width="false" data-second-click="go" data-document-click="collapse" data-vertical-behaviour="accordion" data-breakpoint="600" data-unbind="true" data-mobile-state="collapse_all" data-mobile-direction="vertical" data-hover-intent-timeout="300" data-hover-intent-interval="100" data-overlay-desktop="false" data-overlay-mobile="false"><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-has-icon mega-icon-left mega-hide-text mega-hide-on-mobile mega-menu-item-7721' id='mega-menu-item-7721'><a class="fa-home mega-menu-link" href="/" tabindex="0" aria-label="Home"></a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-hide-on-desktop mega-menu-item-4585' id='mega-menu-item-4585'><div class="asp_w_container">
	<div class='asp_w asp_m asp_m_3 asp_m_3_1 wpdreams_asp_sc wpdreams_asp_sc-3 ajaxsearchpro asp_main_container  asp_non_compact'
		 data-id="3"
		 data-name="Home Form"
		 		 data-instance="1"
		 id='ajaxsearchpro3_1'>

		<div class="probox">
	
	<div class='promagnifier' tabindex="101">
				<div class='asp_text_button hiddend'>
			Search		</div>
		<div class='innericon'>
			<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg>		</div>
		<div class="asp_clear"></div>
	</div>

	
    
    <div class='prosettings' style='display:none;' data-opened=0>
                <div class='innericon'>
            <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><polygon transform="rotate(90 256 256)" points="142.332,104.886 197.48,50 402.5,256 197.48,462 142.332,407.113 292.727,256"/></svg>        </div>
    </div>

    
    
    <div class='proinput'>
        <form action='#' autocomplete="off" aria-label="Search form 3">
            <input type='search' class='orig'
				   tabindex="100"
                   placeholder='Search Contracts for....'
                   name='phrase' value=''
                   aria-label="Search input 3"
                   autocomplete="off"/>
            <input type='text' class='autocomplete' name='phrase' value=''
                   aria-label="Search autocomplete, ignore please"
                   aria-hidden="true"
                   autocomplete="off" disabled/>
            <input type='submit'
                   aria-hidden="true"
                   aria-label="Hidden button"
                   style='width:0; height: 0; visibility: hidden;'>
        </form>
    </div>

    
    
    <div class='proloading'>
                        <div class="asp_loader">
            <div class="asp_loader-inner asp_ball-scale">
            
                <div></div>
                            </div>
        </div>
                    </div>

            <div class='proclose'>
            <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
                 y="0px"
                 width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512"
                 xml:space="preserve">
            <polygon points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "/>
            </svg>
        </div>
    
    
</div>	</div>
	<div class='asp_data_container' style="display:none !important;">
		<div class="asp_init_data"
	 style="display:none !important;"
	 id="asp_init_id_3_1"
	 data-asp-id="3"
	 data-asp-instance="1"
	 data-aspdata="ew0KICAgICAgICAiaG9tZXVybCI6ICJodHRwczovL3d3dy5jb250cmFjdHN0b3JlLmNvbS8iLA0KICAgIAkiaXNfcmVzdWx0c19wYWdlIjogMCwNCiAgICAicmVzdWx0c3R5cGUiOiAidmVydGljYWwiLA0KICAgICJyZXN1bHRzcG9zaXRpb24iOiAiYmxvY2siLA0KICAgICJyZXN1bHRzU25hcFRvIjogImxlZnQiLA0KICAgICJyZXN1bHRzIjogew0KICAgICAgICAid2lkdGgiOiAiYXV0byIsDQogICAgICAgICJ3aWR0aF90YWJsZXQiOiAiYXV0byIsDQogICAgICAgICJ3aWR0aF9waG9uZSI6ICJhdXRvIg0KICAgIH0sDQogICAgIml0ZW1zY291bnQiOiA0LA0KICAgICJjaGFyY291bnQiOiAgMCwNCiAgICAiaGlnaGxpZ2h0IjogMCwNCiAgICAiaGlnaGxpZ2h0V2hvbGV3b3JkcyI6IDEsDQogICAgInNpbmdsZUhpZ2hsaWdodCI6IDAsDQogICAgInNjcm9sbFRvUmVzdWx0cyI6IHsNCiAgICAgICAgImVuYWJsZWQiOiAwLA0KICAgICAgICAib2Zmc2V0IjogMCAgICB9LA0KICAgICJhdXRvY29tcGxldGUiOiB7DQogICAgICAgICJlbmFibGVkIjogMSwNCgkJInRyaWdnZXJfY2hhcmNvdW50IjogMCwNCiAgICAgICAgImdvb2dsZU9ubHkiOiAxLA0KICAgICAgICAibGFuZyI6ICJlbiIsDQogICAgICAgICJtb2JpbGUiOiAwICAgIH0sDQogICAgInRyaWdnZXIiOiB7DQogICAgICAgICJkZWxheSI6IDMwMCwNCiAgICAgICAgImF1dG9jb21wbGV0ZV9kZWxheSI6IDMxMCwNCiAgICAgICAgImZhY2V0IjogMCwNCiAgICAgICAgInR5cGUiOiAwLA0KICAgICAgICAiY2xpY2siOiAicmVzdWx0c19wYWdlIiwNCiAgICAgICAgImNsaWNrX2xvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAicmV0dXJuIjogInJlc3VsdHNfcGFnZSIsDQogICAgICAgICJyZXR1cm5fbG9jYXRpb24iOiAic2FtZSIsDQogICAgICAgICJyZWRpcmVjdF91cmwiOiAiP3M9e3BocmFzZX0iLA0KICAgICAgICAiZWxlbWVudG9yX3VybCI6ICJodHRwczovL3d3dy5jb250cmFjdHN0b3JlLmNvbS8/YXNwX2xzPXtwaHJhc2V9Ig0KICAgIH0sDQogICAgIm92ZXJyaWRld3BkZWZhdWx0IjogMCwNCiAgICAib3ZlcnJpZGVfbWV0aG9kIjogInBvc3QiLA0KICAgICJzZXR0aW5ncyI6IHsNCiAgICAgICAgImhpZGVDaGlsZHJlbiI6IDAgICAgfSwNCiAgICAic2V0dGluZ3NpbWFnZXBvcyI6ICJyaWdodCIsDQogICAgInNldHRpbmdzVmlzaWJsZSI6IDEsDQogICAgInNldHRpbmdzSGlkZU9uUmVzIjogMCwNCiAgICAicHJlc2NvbnRhaW5lcmhlaWdodCI6ICI0MDBweCIsDQogICAgImNsb3NlT25Eb2NDbGljayI6IDEsDQogICAgImZvY3VzT25QYWdlbG9hZCI6IDAsDQogICAgImlzb3RvcGljIjogew0KICAgICAgICAiaXRlbVdpZHRoIjogIjIwMHB4IiwNCiAgICAgICAgIml0ZW1XaWR0aFRhYmxldCI6ICIyMDBweCIsDQogICAgICAgICJpdGVtV2lkdGhQaG9uZSI6ICIyMDBweCIsDQogICAgICAgICJpdGVtSGVpZ2h0IjogIjIwMHB4IiwNCiAgICAgICAgIml0ZW1IZWlnaHRUYWJsZXQiOiAiMjAwcHgiLA0KICAgICAgICAiaXRlbUhlaWdodFBob25lIjogIjIwMHB4IiwNCiAgICAgICAgInBhZ2luYXRpb24iOiAxLA0KICAgICAgICAicm93cyI6IDIsDQogICAgICAgICJndXR0ZXIiOiA1LA0KICAgICAgICAic2hvd092ZXJsYXkiOiAxLA0KICAgICAgICAiYmx1ck92ZXJsYXkiOiAxLA0KICAgICAgICAiaGlkZUNvbnRlbnQiOiAxICAgIH0sDQogICAgImxvYWRlckxvY2F0aW9uIjogImF1dG8iLA0KICAgICJzaG93X21vcmUiOiB7DQogICAgICAgICJlbmFibGVkIjogMSwNCiAgICAgICAgInVybCI6ICI/cz17cGhyYXNlfSIsDQogICAgICAgICJlbGVtZW50b3JfdXJsIjogImh0dHBzOi8vd3d3LmNvbnRyYWN0c3RvcmUuY29tLz9hc3BfbHM9e3BocmFzZX0iLA0KICAgICAgICAiYWN0aW9uIjogInJlZGlyZWN0IiwNCiAgICAgICAgImxvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAiaW5maW5pdGUiOiAwICAgIH0sDQogICAgIm1vYmlsZSI6IHsNCiAgICAgICAgInRyaWdnZXJfb25fdHlwZSI6IDAsDQogICAgICAgICJjbGlja19hY3Rpb24iOiAicmVzdWx0c19wYWdlIiwNCiAgICAgICAgInJldHVybl9hY3Rpb24iOiAicmVzdWx0c19wYWdlIiwNCiAgICAgICAgImNsaWNrX2FjdGlvbl9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJldHVybl9hY3Rpb25fbG9jYXRpb24iOiAic2FtZSIsDQogICAgICAgICJyZWRpcmVjdF91cmwiOiAiP3M9e3BocmFzZX0iLA0KICAgICAgICAiZWxlbWVudG9yX3VybCI6ICJodHRwczovL3d3dy5jb250cmFjdHN0b3JlLmNvbS8/YXNwX2xzPXtwaHJhc2V9IiwNCiAgICAgICAgIm1lbnVfc2VsZWN0b3IiOiAiI21lbnUtdG9nZ2xlIiwNCiAgICAgICAgImhpZGVfa2V5Ym9hcmQiOiAwLA0KICAgICAgICAiZm9yY2VfcmVzX2hvdmVyIjogMCwNCiAgICAgICAgImZvcmNlX3NldHRfaG92ZXIiOiAwLA0KICAgICAgICAiZm9yY2Vfc2V0dF9zdGF0ZSI6ICJub25lIg0KICAgIH0sDQogICAgImNvbXBhY3QiOiB7DQogICAgICAgICJlbmFibGVkIjogMCwNCiAgICAgICAgImZvY3VzIjogMSwNCiAgICAgICAgIndpZHRoIjogIjEwMCUiLA0KICAgICAgICAid2lkdGhfdGFibGV0IjogIjQ4MHB4IiwNCiAgICAgICAgIndpZHRoX3Bob25lIjogIjMyMHB4IiwNCiAgICAgICAgImNsb3NlT25NYWduaWZpZXIiOiAxLA0KICAgICAgICAiY2xvc2VPbkRvY3VtZW50IjogMCwNCiAgICAgICAgInBvc2l0aW9uIjogInN0YXRpYyIsDQogICAgICAgICJvdmVybGF5IjogMCAgICB9LA0KICAgICJzYiI6IHsNCiAgICAgICAgInJlZGlyZWN0X2FjdGlvbiI6ICJhamF4X3NlYXJjaCIsDQogICAgICAgICJyZWRpcmVjdF9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSIsDQogICAgICAgICJlbGVtZW50b3JfdXJsIjogImh0dHBzOi8vd3d3LmNvbnRyYWN0c3RvcmUuY29tLz9hc3BfbHM9e3BocmFzZX0iDQogICAgfSwNCiAgICAicmIiOiB7DQogICAgICAgICJhY3Rpb24iOiAibm90aGluZyINCiAgICB9LA0KICAgICJhbmltYXRpb25zIjogew0KICAgICAgICAicGMiOiB7DQogICAgICAgICAgICAic2V0dGluZ3MiOiB7DQogICAgICAgICAgICAgICAgImFuaW0iIDogImZhZGVkcm9wIiwNCiAgICAgICAgICAgICAgICAiZHVyIiAgOiAzMDAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgInJlc3VsdHMiIDogew0KICAgICAgICAgICAgICAgICJhbmltIiA6ICJmYWRlZHJvcCIsDQogICAgICAgICAgICAgICAgImR1ciIgIDogMzAwICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJpdGVtcyIgOiAiZmFkZUluRG93biINCiAgICAgICAgfSwNCiAgICAgICAgIm1vYiI6IHsNCiAgICAgICAgICAgICJzZXR0aW5ncyI6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAibm9uZSIsDQogICAgICAgICAgICAgICAgImR1ciIgIDogMzAwICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJyZXN1bHRzIiA6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAibm9uZSIsDQogICAgICAgICAgICAgICAgImR1ciIgIDogMzAwICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJpdGVtcyIgOiAidm9pZGFuaW0iDQogICAgICAgIH0NCiAgICB9LA0KICAgICJzZWxlY3QyIjogew0KICAgICAgICAibm9yZXMiOiAiTm8gcmVzdWx0cyBtYXRjaCINCiAgICB9LA0KICAgICJkZXRlY3RWaXNpYmlsaXR5IiA6IDAsDQogICAgImF1dG9wIjogew0KICAgICAgICAic3RhdGUiOiAiZGlzYWJsZWQiLA0KICAgICAgICAicGhyYXNlIjogIiIsDQogICAgICAgICJjb3VudCI6IDEwICAgIH0sDQogICAgInJlc1BhZ2UiOiB7DQogICAgICAgICJ1c2VBamF4IjogMCwNCiAgICAgICAgInNlbGVjdG9yIjogIiNtYWluIiwNCiAgICAgICAgInRyaWdnZXJfdHlwZSI6IDEsDQogICAgICAgICJ0cmlnZ2VyX2ZhY2V0IjogMSwNCiAgICAgICAgInRyaWdnZXJfbWFnbmlmaWVyIjogMCwNCiAgICAgICAgInRyaWdnZXJfcmV0dXJuIjogMCAgICB9LA0KICAgICJmc3NfbGF5b3V0IjogImZsZXgiLA0KICAgICJzY3JvbGxCYXIiOiB7DQogICAgICAgICJ2ZXJ0aWNhbCI6IHsNCiAgICAgICAgICAgICJhdXRvSGlkZSI6IDEgICAgICAgIH0sDQogICAgICAgICJob3Jpem9udGFsIjogew0KICAgICAgICAgICAgImVuYWJsZWQiOiAxLA0KICAgICAgICAgICAgImF1dG9IaWRlIjogMSAgICAgICAgfSwNCiAgICAgICAgInNldHRpbmdzIjogew0KICAgICAgICAgICAgImF1dG9IaWRlIjogMCAgICAgICAgfQ0KICAgIH0sDQoJImRpdmkiOiB7DQoJCSJib2R5Y29tbWVyY2UiOiAwCX0sDQogICAgInByZXZlbnRCb2R5U2Nyb2xsIjogMCwNCiAgICAic3RhdGlzdGljcyI6IDB9DQo="></div>
<div class='asp_hidden_data' style="display:none !important;">
    <div class='asp_item_overlay'>
        <div class='asp_item_inner'>
            <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg>                    </div>
    </div>
</div>	</div>
	<div id='__original__ajaxsearchprores3_1' class='asp_w asp_r asp_r_3 asp_r_3_1 vertical ajaxsearchpro wpdreams_asp_sc wpdreams_asp_sc-3'
     data-id="3"
     data-instance="1">

    
    
    
    <div class="results">

        
        <div class="resdrg">
        </div>

        
    </div>

    
                    <div class="asp_showmore_container">
            <p class='showmore'>
                <a class='asp_showmore'>More results... <span></span></a>
            </p>
            <div class="asp_moreres_loader" style="display: none;">
                <div class="asp_moreres_loader-inner"></div>
            </div>
        </div>
            
    

    <div class="asp_res_loader hiddend">
                    <div class="asp_loader">
                <div class="asp_loader-inner asp_ball-scale">
                
                    <div></div>
                                    </div>
            </div>
            </div>
</div>		<div id='__original__ajaxsearchprobsettings3_1'
		 class="asp_w asp_ss asp_ss_3 asp_sb asp_sb_3 asp_sb_3_1 asp_sb wpdreams_asp_sc wpdreams_asp_sc-3 ajaxsearchpro searchsettings"
		 data-id="3"
		 data-instance="1">
	<form name='options' class="asp-fss-flex" autocomplete = 'off'>
        <input type="hidden" style="display:none;" name="current_page_id" value="50884">
            <input type='hidden' name='qtranslate_lang' style="display:none;"
               value='0'/>
    	    <input type="hidden" name="filters_changed" style="display:none;" value="0">
    <input type="hidden" name="filters_initial" style="display:none;" value="1">
    <fieldset class="asp_filter_generic asp_filter_id_2 asp_filter_n_1 hiddend">
            <legend>Generic filters</legend>
    
		<input type="checkbox" value="exact"
			   id="set_exact3_1"
			   style="display:none;"
			   			   name="asp_gen[]" />
    
		<input type="checkbox" value="title"
			   id="set_title3_1"
			   style="display:none;"
			   data-origvalue="1"			   name="asp_gen[]"  checked="checked"/>
    
		<input type="checkbox" value="content"
			   id="set_content3_1"
			   style="display:none;"
			   data-origvalue="1"			   name="asp_gen[]"  checked="checked"/>
    
		<input type="checkbox" value="excerpt"
			   id="set_excerpt3_1"
			   style="display:none;"
			   			   name="asp_gen[]" />
    </fieldset>        <input type="checkbox"
               style="display: none !important;"
               value="download"
               aria-label="Hidden label"
               aria-hidden="true"
               id="3_1customset_3_1100"
               name="customset[]" checked="checked"/>
        <fieldset data-asp_invalid_msg="This field is required!"
          class="asp_filter_tax asp_filter_tax_download_category asp_checkboxes_filter_box asp_filter_id_1 asp_filter_n_0">
    <legend>Filter by Download Categories</legend>
    <div class='download_category_filter_box categoryfilter asp_sett_scroll'>            <div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
             data-lvl="0"
             asp_cat_parent="0">
            <div class="asp_option_inner">
                <input type="checkbox" value="7" class="asp_downloadcategory_checkbox"
                       aria-label="Business &amp; Services"
                                            name="termset[download_category][]"
                                           id="3_1termset_7"
                    data-origvalue="1"                    checked="checked"/>
                <label aria-hidden="true"
                       for="3_1termset_7">
                    Hidden label                </label>
            </div>
            <div class="asp_option_label">
                Business &amp; Services            </div>
        </div>
                <div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
             data-lvl="0"
             asp_cat_parent="0">
            <div class="asp_option_inner">
                <input type="checkbox" value="93" class="asp_downloadcategory_checkbox"
                       aria-label="Construction"
                                            name="termset[download_category][]"
                                           id="3_1termset_93"
                    data-origvalue="1"                    checked="checked"/>
                <label aria-hidden="true"
                       for="3_1termset_93">
                    Hidden label                </label>
            </div>
            <div class="asp_option_label">
                Construction            </div>
        </div>
                <div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
             data-lvl="0"
             asp_cat_parent="0">
            <div class="asp_option_inner">
                <input type="checkbox" value="10" class="asp_downloadcategory_checkbox"
                       aria-label="Employment"
                                            name="termset[download_category][]"
                                           id="3_1termset_10"
                    data-origvalue="1"                    checked="checked"/>
                <label aria-hidden="true"
                       for="3_1termset_10">
                    Hidden label                </label>
            </div>
            <div class="asp_option_label">
                Employment            </div>
        </div>
                <div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
             data-lvl="0"
             asp_cat_parent="0">
            <div class="asp_option_inner">
                <input type="checkbox" value="8" class="asp_downloadcategory_checkbox"
                       aria-label="International"
                                            name="termset[download_category][]"
                                           id="3_1termset_8"
                    data-origvalue="1"                    checked="checked"/>
                <label aria-hidden="true"
                       for="3_1termset_8">
                    Hidden label                </label>
            </div>
            <div class="asp_option_label">
                International            </div>
        </div>
                <div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
             data-lvl="0"
             asp_cat_parent="0">
            <div class="asp_option_inner">
                <input type="checkbox" value="9" class="asp_downloadcategory_checkbox"
                       aria-label="Creative, IP &amp; Web"
                                            name="termset[download_category][]"
                                           id="3_1termset_9"
                    data-origvalue="1"                    checked="checked"/>
                <label aria-hidden="true"
                       for="3_1termset_9">
                    Hidden label                </label>
            </div>
            <div class="asp_option_label">
                Creative, IP &amp; Web            </div>
        </div>
                <div class="asp_option_cat asp_option asp_option asp_option_cat_level-0"
             data-lvl="0"
             asp_cat_parent="0">
            <div class="asp_option_inner">
                <input type="checkbox" value="3" class="asp_downloadcategory_checkbox"
                       aria-label="Property &amp; Leases"
                                            name="termset[download_category][]"
                                           id="3_1termset_3"
                    data-origvalue="1"                    checked="checked"/>
                <label aria-hidden="true"
                       for="3_1termset_3">
                    Hidden label                </label>
            </div>
            <div class="asp_option_label">
                Property &amp; Leases            </div>
        </div>
        </div>
</fieldset>    <div style="clear:both;"></div>
</form>	</div>

					<style type="text/css">
			/* User defined Ajax Search Pro Custom CSS */
			.label {

    color: #000;
  
}

#ajaxsearchprobsettings3_1, #ajaxsearchprobsettings3_2 {
    display: none!important;

}		</style>
		</div>
</li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-25' id='mega-menu-item-25'><a class="mega-menu-link" href="https://www.contractstore.com/legal-services/" tabindex="0">Legal Services</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-24' id='mega-menu-item-24'><a class="mega-menu-link" href="https://www.contractstore.com/library/" aria-expanded="false" tabindex="0">Library<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3861' id='mega-menu-item-3861'><a class="mega-menu-link" href="https://www.contractstore.com/all-documents/">All Documents</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-3854' id='mega-menu-item-3854'><a class="mega-menu-link" href="https://www.contractstore.com/library/free/">Free Guidance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-4942' id='mega-menu-item-4942'><a class="mega-menu-link" href="https://www.contractstore.com/library/guidance-ebooks/">Guidance eBooks</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-5072' id='mega-menu-item-5072'><a class="mega-menu-link" href="https://www.contractstore.com/library/links/">Links</a></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-23' id='mega-menu-item-23'><a class="mega-menu-link" href="https://www.contractstore.com/help/" aria-expanded="false" tabindex="0">Help<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3855' id='mega-menu-item-3855'><a class="mega-menu-link" href="https://www.contractstore.com/help/frequently-asked-questions/">Frequently Asked Questions</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-5073' id='mega-menu-item-5073'><a class="mega-menu-link" href="https://www.contractstore.com/help/videos/">Videos</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3002' id='mega-menu-item-3002'><a class="mega-menu-link" href="https://www.contractstore.com/help/our-explanatory-notes/">Our Explanatory Notes</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3003' id='mega-menu-item-3003'><a class="mega-menu-link" href="https://www.contractstore.com/help/purchasing-downloading/">Purchasing and Downloading</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3856' id='mega-menu-item-3856'><a class="mega-menu-link" href="https://www.contractstore.com/help/safe-buy-ready-made-contracts/">Buy Ready-Made Contracts?</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-menu-item-4098' id='mega-menu-item-4098'><a class="mega-menu-link" href="https://www.contractstore.com/help/signing-contracts-deeds/" aria-expanded="false">Signing Contracts<span class="mega-indicator"></span></a>
	<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3857' id='mega-menu-item-3857'><a class="mega-menu-link" href="https://www.contractstore.com/help/signing-contracts-deeds/">Contract Signing &#038; Signing Deeds</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3858' id='mega-menu-item-3858'><a class="mega-menu-link" href="https://www.contractstore.com/help/signing-contracts-usa/">Signing Contracts - USA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3859' id='mega-menu-item-3859'><a class="mega-menu-link" href="https://www.contractstore.com/help/signing-contracts-indian-law/">Signing Contracts - India</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3860' id='mega-menu-item-3860'><a class="mega-menu-link" href="https://www.contractstore.com/help/signing-contracts-russian-law/">Signing Contracts - Russia</a></li>	</ul>
</li></ul>
</li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-26' id='mega-menu-item-26'><a class="mega-menu-link" href="https://www.contractstore.com/about/" aria-expanded="false" tabindex="0">About Us<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-18924' id='mega-menu-item-18924'><a class="mega-menu-link" href="https://www.contractstore.com/about/legal-team/">The Authors and Legal Team</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2998' id='mega-menu-item-2998'><a class="mega-menu-link" href="https://www.contractstore.com/about/partners/">Partners</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-189' id='mega-menu-item-189'><a class="mega-menu-link" href="https://www.contractstore.com/about/our-testimonials/">Testimonials</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3862' id='mega-menu-item-3862'><a class="mega-menu-link" href="https://www.contractstore.com/contact-us/">Contact Us</a></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-current-menu-item mega-page_item mega-page-item-471 mega-current_page_item mega-current_page_parent mega-align-bottom-left mega-menu-flyout mega-menu-item-473' id='mega-menu-item-473'><a class="mega-menu-link" href="https://www.contractstore.com/blog/" aria-current="page" tabindex="0">Blog</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-has-icon mega-icon-left mega-hide-text mega-item-align-right mega-hide-on-mobile mega-menu-item-475' id='mega-menu-item-475'><a target="_blank" class="fa-linkedin mega-menu-link" href="https://www.linkedin.com/company/contractstore.com" tabindex="0" aria-label="linkedin"></a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-has-icon mega-icon-left mega-hide-text mega-item-align-right mega-hide-on-mobile mega-menu-item-267' id='mega-menu-item-267'><a target="_blank" class="genericon-youtube mega-menu-link" href="https://www.youtube.com/user/ContractStore" tabindex="0" aria-label="youtube"></a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-has-icon mega-icon-left mega-hide-text mega-item-align-right mega-hide-on-mobile mega-menu-item-266' id='mega-menu-item-266'><a target="_blank" class="dashicons-twitter mega-menu-link" href="https://twitter.com/contractstore" tabindex="0" aria-label="twitter"></a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-has-icon mega-icon-left mega-hide-text mega-item-align-right mega-hide-on-mobile mega-menu-item-265' id='mega-menu-item-265'><a target="_blank" class="dashicons-facebook-alt mega-menu-link" href="https://www.facebook.com/contractstore" tabindex="0" aria-label="facebook"></a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-item-align-right mega-hide-on-mobile mega-menu-item-253' id='mega-menu-item-253'><!-- [aelia_currency_selector_widget title="Currency" widget_type="dropdown"] -->
<style>
	#currency_menu .widget {
		padding: 0!important;
	}
</style>

<div id="currency_menu"></div>
<script>
	jQuery(document).ready(function($) {
		if($('#edd_multi_currency_selector-2').length) {
			$('#currency_menu').append($('#edd_multi_currency_selector-2'));
		}
		
	});
</script></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-item-align-right mega-hide-on-mobile mega-menu-item-337' id='mega-menu-item-337'><a class="mega-menu-link" href="https://www.contractstore.com/login/" tabindex="0">Login</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-align-bottom-left mega-menu-flyout mega-hide-text mega-item-align-right mega-hide-on-desktop mega-menu-item-3011' id='mega-menu-item-3011'><style>
	#currency_menu .widget {
		padding: 0!important;
	}
</style>

<script>
	jQuery(document).ready(function($) {
		if($('#edd_multi_currency_selector-3').length) {
			$('#mobile_currency_menu').append($('#edd_multi_currency_selector-3'));
		}
		
	});
</script>
<div id="mobile_currency_menu"></div>
<div class="mobile-login-panel"><a href="/login/" class="mobile-login">Login</a><div class="mobile-logout"></div></div>
<div class="mobile-cart"><p class="edd-cart-number-of-items" style="display:none;">Number of items in basket: <span class="edd-cart-quantity">0</span></p>
<ul class="edd-cart">

	<li class="cart_item empty"><span>Your cart is empty.</span></li>
<li class="cart_item edd-cart-meta edd_subtotal" style="display:none;">Subtotal: <span class='subtotal'>&pound;0.00</span></li>
<li class="cart_item edd-cart-meta edd_cart_tax" style="display:none;">Estimated Tax: <span class="cart-tax">&pound;0.00</span></li>
<li class="cart_item edd-cart-meta edd_total" style="display:none;">Total: <span class="cart-total">&pound;0.00</span></li>
<li class="cart_item edd_checkout" style="display:none;"><a href="https://www.contractstore.com/checkout/">Checkout</a></li>

</ul>
</div></li></ul></div>				</div><!-- #info-bar-navigation -->
					</div>
	
	<header id="masthead" class="site-header" role="banner">
		<div class="site-branding">
			<span class="site-title">
										<a href="/" title="ContractStore" rel="home">
												<img src="https://www.contractstore.com/wp-content/uploads/2017/01/contractstore-header-logo.png" alt="ContractStore">
												</a>
									</span>
							<h2 class="site-description">Affordable contract templates you can trust™</h2>
					</div>

									<a href="https://www.contractstore.com/checkout/" class="header-cart">
					<i class="fa fa-shopping-cart"></i>
					Cart total: <span class="header-cart-total">&pound;0.00</span>				</a>
							
		<!-- Header Widget GB 30/12/16-->
		<div id="wpgyan-widget"><div class="asp_w_container">
	<div class='asp_w asp_m asp_m_1 asp_m_1_1 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro asp_main_container  asp_non_compact'
		 data-id="1"
		 data-name="Header Form"
		 		 data-instance="1"
		 id='ajaxsearchpro1_1'>

		<div class="probox">
	
	<div class='promagnifier' tabindex="101">
				<div class='asp_text_button hiddend'>
			Search		</div>
		<div class='innericon'>
			<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg>		</div>
		<div class="asp_clear"></div>
	</div>

	
    
    <div class='prosettings' style='display:none;' data-opened=0>
                <div class='innericon'>
            <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><polygon transform="rotate(90 256 256)" points="142.332,104.886 197.48,50 402.5,256 197.48,462 142.332,407.113 292.727,256"/></svg>        </div>
    </div>

    
    
    <div class='proinput'>
        <form action='#' autocomplete="off" aria-label="Search form 1">
            <input type='search' class='orig'
				   tabindex="100"
                   placeholder='Search Contracts for....'
                   name='phrase' value=''
                   aria-label="Search input 1"
                   autocomplete="off"/>
            <input type='text' class='autocomplete' name='phrase' value=''
                   aria-label="Search autocomplete, ignore please"
                   aria-hidden="true"
                   autocomplete="off" disabled/>
            <input type='submit'
                   aria-hidden="true"
                   aria-label="Hidden button"
                   style='width:0; height: 0; visibility: hidden;'>
        </form>
    </div>

    
    
    <div class='proloading'>
                        <div class="asp_loader">
            <div class="asp_loader-inner asp_ball-scale">
            
                <div></div>
                            </div>
        </div>
                    </div>

            <div class='proclose'>
            <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
                 y="0px"
                 width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512"
                 xml:space="preserve">
            <polygon points="438.393,374.595 319.757,255.977 438.378,137.348 374.595,73.607 255.995,192.225 137.375,73.622 73.607,137.352 192.246,255.983 73.622,374.625 137.352,438.393 256.002,319.734 374.652,438.378 "/>
            </svg>
        </div>
    
    
</div>	</div>
	<div class='asp_data_container' style="display:none !important;">
		<div class="asp_init_data"
	 style="display:none !important;"
	 id="asp_init_id_1_1"
	 data-asp-id="1"
	 data-asp-instance="1"
	 data-aspdata="ew0KICAgICAgICAiaG9tZXVybCI6ICJodHRwczovL3d3dy5jb250cmFjdHN0b3JlLmNvbS8iLA0KICAgIAkiaXNfcmVzdWx0c19wYWdlIjogMCwNCiAgICAicmVzdWx0c3R5cGUiOiAidmVydGljYWwiLA0KICAgICJyZXN1bHRzcG9zaXRpb24iOiAiaG92ZXIiLA0KICAgICJyZXN1bHRzU25hcFRvIjogImxlZnQiLA0KICAgICJyZXN1bHRzIjogew0KICAgICAgICAid2lkdGgiOiAiYXV0byIsDQogICAgICAgICJ3aWR0aF90YWJsZXQiOiAiYXV0byIsDQogICAgICAgICJ3aWR0aF9waG9uZSI6ICJhdXRvIg0KICAgIH0sDQogICAgIml0ZW1zY291bnQiOiA0LA0KICAgICJjaGFyY291bnQiOiAgMCwNCiAgICAiaGlnaGxpZ2h0IjogMCwNCiAgICAiaGlnaGxpZ2h0V2hvbGV3b3JkcyI6IDEsDQogICAgInNpbmdsZUhpZ2hsaWdodCI6IDAsDQogICAgInNjcm9sbFRvUmVzdWx0cyI6IHsNCiAgICAgICAgImVuYWJsZWQiOiAwLA0KICAgICAgICAib2Zmc2V0IjogMCAgICB9LA0KICAgICJhdXRvY29tcGxldGUiOiB7DQogICAgICAgICJlbmFibGVkIjogMCwNCgkJInRyaWdnZXJfY2hhcmNvdW50IjogMCwNCiAgICAgICAgImdvb2dsZU9ubHkiOiAxLA0KICAgICAgICAibGFuZyI6ICJlbiIsDQogICAgICAgICJtb2JpbGUiOiAwICAgIH0sDQogICAgInRyaWdnZXIiOiB7DQogICAgICAgICJkZWxheSI6IDMwMCwNCiAgICAgICAgImF1dG9jb21wbGV0ZV9kZWxheSI6IDMxMCwNCiAgICAgICAgImZhY2V0IjogMSwNCiAgICAgICAgInR5cGUiOiAxLA0KICAgICAgICAiY2xpY2siOiAicmVzdWx0c19wYWdlIiwNCiAgICAgICAgImNsaWNrX2xvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAicmV0dXJuIjogInJlc3VsdHNfcGFnZSIsDQogICAgICAgICJyZXR1cm5fbG9jYXRpb24iOiAic2FtZSIsDQogICAgICAgICJyZWRpcmVjdF91cmwiOiAiP3M9e3BocmFzZX0iLA0KICAgICAgICAiZWxlbWVudG9yX3VybCI6ICJodHRwczovL3d3dy5jb250cmFjdHN0b3JlLmNvbS8/YXNwX2xzPXtwaHJhc2V9Ig0KICAgIH0sDQogICAgIm92ZXJyaWRld3BkZWZhdWx0IjogMCwNCiAgICAib3ZlcnJpZGVfbWV0aG9kIjogInBvc3QiLA0KICAgICJzZXR0aW5ncyI6IHsNCiAgICAgICAgImhpZGVDaGlsZHJlbiI6IDAgICAgfSwNCiAgICAic2V0dGluZ3NpbWFnZXBvcyI6ICJyaWdodCIsDQogICAgInNldHRpbmdzVmlzaWJsZSI6IDAsDQogICAgInNldHRpbmdzSGlkZU9uUmVzIjogMCwNCiAgICAicHJlc2NvbnRhaW5lcmhlaWdodCI6ICI0MDBweCIsDQogICAgImNsb3NlT25Eb2NDbGljayI6IDEsDQogICAgImZvY3VzT25QYWdlbG9hZCI6IDAsDQogICAgImlzb3RvcGljIjogew0KICAgICAgICAiaXRlbVdpZHRoIjogIjIwMHB4IiwNCiAgICAgICAgIml0ZW1XaWR0aFRhYmxldCI6ICIyMDBweCIsDQogICAgICAgICJpdGVtV2lkdGhQaG9uZSI6ICIyMDBweCIsDQogICAgICAgICJpdGVtSGVpZ2h0IjogIjIwMHB4IiwNCiAgICAgICAgIml0ZW1IZWlnaHRUYWJsZXQiOiAiMjAwcHgiLA0KICAgICAgICAiaXRlbUhlaWdodFBob25lIjogIjIwMHB4IiwNCiAgICAgICAgInBhZ2luYXRpb24iOiAxLA0KICAgICAgICAicm93cyI6IDIsDQogICAgICAgICJndXR0ZXIiOiA1LA0KICAgICAgICAic2hvd092ZXJsYXkiOiAxLA0KICAgICAgICAiYmx1ck92ZXJsYXkiOiAxLA0KICAgICAgICAiaGlkZUNvbnRlbnQiOiAxICAgIH0sDQogICAgImxvYWRlckxvY2F0aW9uIjogImF1dG8iLA0KICAgICJzaG93X21vcmUiOiB7DQogICAgICAgICJlbmFibGVkIjogMCwNCiAgICAgICAgInVybCI6ICI/cz17cGhyYXNlfSIsDQogICAgICAgICJlbGVtZW50b3JfdXJsIjogImh0dHBzOi8vd3d3LmNvbnRyYWN0c3RvcmUuY29tLz9hc3BfbHM9e3BocmFzZX0iLA0KICAgICAgICAiYWN0aW9uIjogImFqYXgiLA0KICAgICAgICAibG9jYXRpb24iOiAic2FtZSIsDQogICAgICAgICJpbmZpbml0ZSI6IDEgICAgfSwNCiAgICAibW9iaWxlIjogew0KICAgICAgICAidHJpZ2dlcl9vbl90eXBlIjogMSwNCiAgICAgICAgImNsaWNrX2FjdGlvbiI6ICJyZXN1bHRzX3BhZ2UiLA0KICAgICAgICAicmV0dXJuX2FjdGlvbiI6ICJyZXN1bHRzX3BhZ2UiLA0KICAgICAgICAiY2xpY2tfYWN0aW9uX2xvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAicmV0dXJuX2FjdGlvbl9sb2NhdGlvbiI6ICJzYW1lIiwNCiAgICAgICAgInJlZGlyZWN0X3VybCI6ICI/cz17cGhyYXNlfSIsDQogICAgICAgICJlbGVtZW50b3JfdXJsIjogImh0dHBzOi8vd3d3LmNvbnRyYWN0c3RvcmUuY29tLz9hc3BfbHM9e3BocmFzZX0iLA0KICAgICAgICAibWVudV9zZWxlY3RvciI6ICIjbWVudS10b2dnbGUiLA0KICAgICAgICAiaGlkZV9rZXlib2FyZCI6IDAsDQogICAgICAgICJmb3JjZV9yZXNfaG92ZXIiOiAwLA0KICAgICAgICAiZm9yY2Vfc2V0dF9ob3ZlciI6IDAsDQogICAgICAgICJmb3JjZV9zZXR0X3N0YXRlIjogIm5vbmUiDQogICAgfSwNCiAgICAiY29tcGFjdCI6IHsNCiAgICAgICAgImVuYWJsZWQiOiAwLA0KICAgICAgICAiZm9jdXMiOiAxLA0KICAgICAgICAid2lkdGgiOiAiMTAwJSIsDQogICAgICAgICJ3aWR0aF90YWJsZXQiOiAiNDgwcHgiLA0KICAgICAgICAid2lkdGhfcGhvbmUiOiAiMzIwcHgiLA0KICAgICAgICAiY2xvc2VPbk1hZ25pZmllciI6IDEsDQogICAgICAgICJjbG9zZU9uRG9jdW1lbnQiOiAwLA0KICAgICAgICAicG9zaXRpb24iOiAic3RhdGljIiwNCiAgICAgICAgIm92ZXJsYXkiOiAwICAgIH0sDQogICAgInNiIjogew0KICAgICAgICAicmVkaXJlY3RfYWN0aW9uIjogImFqYXhfc2VhcmNoIiwNCiAgICAgICAgInJlZGlyZWN0X2xvY2F0aW9uIjogInNhbWUiLA0KICAgICAgICAicmVkaXJlY3RfdXJsIjogIj9zPXtwaHJhc2V9IiwNCiAgICAgICAgImVsZW1lbnRvcl91cmwiOiAiaHR0cHM6Ly93d3cuY29udHJhY3RzdG9yZS5jb20vP2FzcF9scz17cGhyYXNlfSINCiAgICB9LA0KICAgICJyYiI6IHsNCiAgICAgICAgImFjdGlvbiI6ICJub3RoaW5nIg0KICAgIH0sDQogICAgImFuaW1hdGlvbnMiOiB7DQogICAgICAgICJwYyI6IHsNCiAgICAgICAgICAgICJzZXR0aW5ncyI6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAiZmFkZWRyb3AiLA0KICAgICAgICAgICAgICAgICJkdXIiICA6IDMwMCAgICAgICAgICAgIH0sDQogICAgICAgICAgICAicmVzdWx0cyIgOiB7DQogICAgICAgICAgICAgICAgImFuaW0iIDogImZhZGVkcm9wIiwNCiAgICAgICAgICAgICAgICAiZHVyIiAgOiAzMDAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgIml0ZW1zIiA6ICJmYWRlSW5Eb3duIg0KICAgICAgICB9LA0KICAgICAgICAibW9iIjogew0KICAgICAgICAgICAgInNldHRpbmdzIjogew0KICAgICAgICAgICAgICAgICJhbmltIiA6ICJmYWRlZHJvcCIsDQogICAgICAgICAgICAgICAgImR1ciIgIDogMzAwICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJyZXN1bHRzIiA6IHsNCiAgICAgICAgICAgICAgICAiYW5pbSIgOiAiZmFkZWRyb3AiLA0KICAgICAgICAgICAgICAgICJkdXIiICA6IDMwMCAgICAgICAgICAgIH0sDQogICAgICAgICAgICAiaXRlbXMiIDogInZvaWRhbmltIg0KICAgICAgICB9DQogICAgfSwNCiAgICAic2VsZWN0MiI6IHsNCiAgICAgICAgIm5vcmVzIjogIk5vIHJlc3VsdHMgbWF0Y2giDQogICAgfSwNCiAgICAiZGV0ZWN0VmlzaWJpbGl0eSIgOiAwLA0KICAgICJhdXRvcCI6IHsNCiAgICAgICAgInN0YXRlIjogImRpc2FibGVkIiwNCiAgICAgICAgInBocmFzZSI6ICIiLA0KICAgICAgICAiY291bnQiOiAxNSAgICB9LA0KICAgICJyZXNQYWdlIjogew0KICAgICAgICAidXNlQWpheCI6IDAsDQogICAgICAgICJzZWxlY3RvciI6ICIjbWFpbiIsDQogICAgICAgICJ0cmlnZ2VyX3R5cGUiOiAxLA0KICAgICAgICAidHJpZ2dlcl9mYWNldCI6IDEsDQogICAgICAgICJ0cmlnZ2VyX21hZ25pZmllciI6IDAsDQogICAgICAgICJ0cmlnZ2VyX3JldHVybiI6IDAgICAgfSwNCiAgICAiZnNzX2xheW91dCI6ICJjb2x1bW4iLA0KICAgICJzY3JvbGxCYXIiOiB7DQogICAgICAgICJ2ZXJ0aWNhbCI6IHsNCiAgICAgICAgICAgICJhdXRvSGlkZSI6IDEgICAgICAgIH0sDQogICAgICAgICJob3Jpem9udGFsIjogew0KICAgICAgICAgICAgImVuYWJsZWQiOiAxLA0KICAgICAgICAgICAgImF1dG9IaWRlIjogMSAgICAgICAgfSwNCiAgICAgICAgInNldHRpbmdzIjogew0KICAgICAgICAgICAgImF1dG9IaWRlIjogMCAgICAgICAgfQ0KICAgIH0sDQoJImRpdmkiOiB7DQoJCSJib2R5Y29tbWVyY2UiOiAwCX0sDQogICAgInByZXZlbnRCb2R5U2Nyb2xsIjogMCwNCiAgICAic3RhdGlzdGljcyI6IDB9DQo="></div>
<div class='asp_hidden_data' style="display:none !important;">
    <div class='asp_item_overlay'>
        <div class='asp_item_inner'>
            <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 512 512"><path d="M448.225 394.243l-85.387-85.385c16.55-26.08 26.146-56.986 26.146-90.094 0-92.99-75.652-168.64-168.643-168.64-92.988 0-168.64 75.65-168.64 168.64s75.65 168.64 168.64 168.64c31.466 0 60.94-8.67 86.176-23.734l86.14 86.142c36.755 36.754 92.355-18.783 55.57-55.57zm-344.233-175.48c0-64.155 52.192-116.35 116.35-116.35s116.353 52.194 116.353 116.35S284.5 335.117 220.342 335.117s-116.35-52.196-116.35-116.352zm34.463-30.26c34.057-78.9 148.668-69.75 170.248 12.863-43.482-51.037-119.984-56.532-170.248-12.862z"/></svg>                    </div>
    </div>
</div>	</div>
	<div id='__original__ajaxsearchprores1_1' class='asp_w asp_r asp_r_1 asp_r_1_1 vertical ajaxsearchpro wpdreams_asp_sc wpdreams_asp_sc-1'
     data-id="1"
     data-instance="1">

    
    
    
    <div class="results">

        
        <div class="resdrg">
        </div>

        
    </div>

    
    
    

    <div class="asp_res_loader hiddend">
                    <div class="asp_loader">
                <div class="asp_loader-inner asp_ball-scale">
                
                    <div></div>
                                    </div>
            </div>
            </div>
</div>	<div id='__original__ajaxsearchprosettings1_1'
		 class="asp_w asp_ss asp_ss_1 asp_s asp_s_1 asp_s_1_1 wpdreams_asp_sc wpdreams_asp_sc-1 ajaxsearchpro searchsettings"
		 data-id="1"
		 data-instance="1">
	<form name='options' class="asp-fss-column" autocomplete = 'off'>
        <input type="hidden" style="display:none;" name="current_page_id" value="50884">
            <input type='hidden' name='qtranslate_lang' style="display:none;"
               value='0'/>
    	    <input type="hidden" name="filters_changed" style="display:none;" value="0">
    <input type="hidden" name="filters_initial" style="display:none;" value="1">
    <fieldset class="asp_filter_generic asp_filter_id_1 asp_filter_n_0">
            <legend>Generic filters</legend>
    <div class="asp_option">
    <div class="asp_option_inner">
        <input type="checkbox" value="exact" id="set_exact1_1"
                              aria-label="Exact matches only"
               name="asp_gen[]" />
        <label aria-hidden="true"
               for="set_exact1_1">
            Hidden label        </label>
    </div>
    <div class="asp_option_label">
        Exact matches only    </div>
</div>
<div class="asp_option">
    <div class="asp_option_inner">
        <input type="checkbox" value="title" id="set_title1_1"
               data-origvalue="1"               aria-label="Search in title"
               name="asp_gen[]"  checked="checked"/>
        <label aria-hidden="true"
               for="set_title1_1">
            Hidden label        </label>
    </div>
    <div class="asp_option_label">
        Search in title    </div>
</div>
<div class="asp_option">
    <div class="asp_option_inner">
        <input type="checkbox" value="content" id="set_content1_1"
               data-origvalue="1"               aria-label="Search in content"
               name="asp_gen[]"  checked="checked"/>
        <label aria-hidden="true"
               for="set_content1_1">
            Hidden label        </label>
    </div>
    <div class="asp_option_label">
        Search in content    </div>
</div>
<div class="asp_option">
    <div class="asp_option_inner">
        <input type="checkbox" value="excerpt" id="set_excerpt1_1"
                              aria-label="Search in excerpt"
               name="asp_gen[]" />
        <label aria-hidden="true"
               for="set_excerpt1_1">
            Hidden label        </label>
    </div>
    <div class="asp_option_label">
        Search in excerpt    </div>
</div>
</fieldset>        <input type="checkbox"
               style="display: none !important;"
               value="download"
               aria-label="Hidden label"
               aria-hidden="true"
               id="1_1customset_1_1100"
               name="customset[]" checked="checked"/>
            <div style="clear:both;"></div>
</form>	</div>

			</div>
			<div class="textwidget"><a href="https://www.contractstore.com/advanced-search/">Advanced Search</a></div>
		</div>
		

					<nav id="site-navigation" class="main-navigation" role="navigation">
				<span class="menu-toggle"><span class="vendd-menu-toggle-text">Menu</span><i class="fa fa-bars vendd-menu-icon"></i></span>
				<div id="mega-menu-wrap-main_menu" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class='mega-toggle-block mega-menu-toggle-block mega-toggle-block-1' id='mega-toggle-block-1' tabindex='0'><span class='mega-toggle-label' role='button' aria-expanded='false'><span class='mega-toggle-label-closed'>MENU</span><span class='mega-toggle-label-open'>MENU</span></span></div></div></div><ul id="mega-menu-main_menu" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="disabled" data-effect-speed-mobile="0" data-mobile-force-width="false" data-second-click="go" data-document-click="collapse" data-vertical-behaviour="accordion" data-breakpoint="600" data-unbind="true" data-mobile-state="collapse_all" data-mobile-direction="vertical" data-hover-intent-timeout="300" data-hover-intent-interval="100" data-overlay-desktop="false" data-overlay-mobile="false"><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-247' id='mega-menu-item-247'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/" aria-expanded="false" tabindex="0">Business &amp; Services<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7668' id='mega-menu-item-7668'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/agents-distributors/">Agents and Distributors</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7669' id='mega-menu-item-7669'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/business-structures/">Business Structures</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7670' id='mega-menu-item-7670'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/consultants/">Consultants</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7671' id='mega-menu-item-7671'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/dispute-resolution/">Dispute Resolution</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7672' id='mega-menu-item-7672'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/hire/">Hire Agreements</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7673' id='mega-menu-item-7673'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/loans-guarantees/">Loans and Guarantees</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7674' id='mega-menu-item-7674'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/manufacture-supply/">Manufacture and Supply</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7675' id='mega-menu-item-7675'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/sale-purchase/">Sale &amp; Purchase Conditions</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7676' id='mega-menu-item-7676'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/sale-business/">Sale of a Business</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7677' id='mega-menu-item-7677'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/specialist-services/">Specialist Services</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-7698' id='mega-menu-item-7698'><div class="menu-panel" style="margin: 10px;"><img src="https://www.contractstore.com/wp-content/uploads/2017/01/papers.jpg"alt="Contracts" style="float: right; margin-left: 15px;">
<h4 style="clear: none;"><a href="https://www.contractstore.com/library/packs/consultants-business-pack/">Consultant`s Business Pack</a></h4>
<p>5 contract templates plus useful guidance notes for a business providing consultancy services. <br>
<a href="https://www.contractstore.com/library/packs/consultants-business-pack/">More</a></p></div></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-3240' id='mega-menu-item-3240'><a class="mega-menu-link" href="https://www.contractstore.com/construction/" aria-expanded="false" tabindex="0">Construction<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7678' id='mega-menu-item-7678'><a class="mega-menu-link" href="https://www.contractstore.com/construction/contract-management/">Contract Management</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7679' id='mega-menu-item-7679'><a class="mega-menu-link" href="https://www.contractstore.com/construction/contractors/">Contractors &amp; Trades</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7680' id='mega-menu-item-7680'><a class="mega-menu-link" href="https://www.contractstore.com/construction/clients/">Contracts for Clients</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7681' id='mega-menu-item-7681'><a class="mega-menu-link" href="https://www.contractstore.com/construction/self-builders/">Contracts for Self-builders</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-7699' id='mega-menu-item-7699'><div class="menu-panel" style="margin: 10px;"><img src="https://www.contractstore.com/wp-content/uploads/2017/01/papers.jpg" alt="Contracts" style="float: right; margin-left: 15px;">
<h4 style="clear: none;"><a href="https://www.contractstore.com/construction/self-builders/self-build-pack/">Self-Builder Pack</a></h4>
<p>A low cost pack of documents for a home-owner/self-builder. <br>
<a href="https://www.contractstore.com/construction/self-builders/self-build-pack/">More</a></p></div></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-249' id='mega-menu-item-249'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/" aria-expanded="false" tabindex="0">Creative, IP &amp; Web<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7682' id='mega-menu-item-7682'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/confidentiality-ndas/">Confidentiality &amp; NDAs</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7683' id='mega-menu-item-7683'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/creative/">Creative</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-11108' id='mega-menu-item-11108'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/gdpr/">GDPR</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7684' id='mega-menu-item-7684'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/intellectual-property/">Intellectual Property</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7685' id='mega-menu-item-7685'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/internet/">Internet &amp; E-commerce</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7686' id='mega-menu-item-7686'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/licences/">Licences</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-7700' id='mega-menu-item-7700'><div class="menu-panel" style="margin: 10px;"><img src="https://www.contractstore.com/wp-content/uploads/2017/01/papers.jpg" alt="Contracts" style="float: right; margin-left: 15px;">
<h4 style="clear: none;"><a href="https://www.contractstore.com/ip-internet/internet/online-retailers-business-pack/">Online Retailer`s Business Pack</a></h4>
<p>The basic documents you need for an online business, from privacy policy to terms of sale.<br>
<a href="https://www.contractstore.com/ip-internet/internet/online-retailers-business-pack/">More</a></p></div></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-250' id='mega-menu-item-250'><a class="mega-menu-link" href="https://www.contractstore.com/employment/" aria-expanded="false" tabindex="0">Employment<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7687' id='mega-menu-item-7687'><a class="mega-menu-link" href="https://www.contractstore.com/employment/employment-contracts/">Employment Contracts</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7688' id='mega-menu-item-7688'><a class="mega-menu-link" href="https://www.contractstore.com/employment/policies-procedures/">Policies &amp; Procedures</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7689' id='mega-menu-item-7689'><a class="mega-menu-link" href="https://www.contractstore.com/employment/termination-redundancy/">Termination and Redundancy</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-7701' id='mega-menu-item-7701'><div class="menu-panel" style="margin: 10px;"><img src="https://www.contractstore.com/wp-content/uploads/2017/01/papers.jpg" alt="Contracts" style="float: right; margin-left: 15px;">
<h4 style="clear: none;"><a href="https://www.contractstore.com/employment/employment-contracts/letter-pack/">Employment Letters Pack</a></h4>
<p>A pack of 13 template letters for dealing with staff matters - from probation to maternity leave and promotion.<br>
<a href="https://www.contractstore.com/employment/employment-contracts/letter-pack/">More</a></p></div></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-248' id='mega-menu-item-248'><a class="mega-menu-link" href="https://www.contractstore.com/international/" aria-expanded="false" tabindex="0">International<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7690' id='mega-menu-item-7690'><a class="mega-menu-link" href="https://www.contractstore.com/international/chinese/">Contracts in Chinese</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7692' id='mega-menu-item-7692'><a class="mega-menu-link" href="https://www.contractstore.com/international/india/">For use in India</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7691' id='mega-menu-item-7691'><a class="mega-menu-link" href="https://www.contractstore.com/international/russian/">Contracts in Russian</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7693' id='mega-menu-item-7693'><a class="mega-menu-link" href="https://www.contractstore.com/international/usa/">For use in USA</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-9186' id='mega-menu-item-9186'><a class="mega-menu-link" href="https://www.contractstore.com/international/irish-law-contracts/">Irish Law Contracts</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-7702' id='mega-menu-item-7702'><a class="mega-menu-link" href="#"><div class="menu-panel" style="margin: 10px;"><img src="https://www.contractstore.com/wp-content/uploads/2017/01/papers.jpg" alt="Contracts" style="float: right; margin-left: 15px;">
<h4 style="clear: none;"><a href="https://www.contractstore.com/business-services/agents-distributors/exporting-made-easy-ebook/">Exporting Made Easy e-book</a></h4>
<p>Read about Exporting in this e-book: Exporting made Easy.<br>
<a href="https://www.contractstore.com/business-services/agents-distributors/exporting-made-easy-ebook/">More</a></p></div></a></li></ul>
</li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-has-children mega-align-bottom-right mega-menu-flyout mega-has-icon mega-icon-left mega-menu-item-246' id='mega-menu-item-246'><a class="mega-custom-icon mega-menu-link" href="https://www.contractstore.com/property/" aria-expanded="false" tabindex="0">Property &amp; Leases<span class="mega-indicator"></span></a>
<ul class="mega-sub-menu">
<li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7694' id='mega-menu-item-7694'><a class="mega-menu-link" href="https://www.contractstore.com/property/business-leases/">Business Leases</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7695' id='mega-menu-item-7695'><a class="mega-menu-link" href="https://www.contractstore.com/property/property-licences/">Property Licences</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-menu-item-7696' id='mega-menu-item-7696'><a class="mega-menu-link" href="https://www.contractstore.com/property/property-ownership/">Property Ownership</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-hide-arrow mega-hide-on-desktop mega-hide-on-mobile mega-disable-link mega-menu-item-7697' id='mega-menu-item-7697'><a class="mega-menu-link" tabindex="0" aria-label="Residential Leases"></a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-7703' id='mega-menu-item-7703'><div class="menu-panel" style="margin: 10px;"><img src="https://www.contractstore.com/wp-content/uploads/2017/01/papers.jpg" alt="Contracts" style="float: right; margin-left: 15px;">
<h4 style="clear: none;"><a href="https://www.contractstore.com/construction/contractors/builders-business-pack/">Builder's Business Pack</a></h4>
<p>A high value, low cost collection of forms plus advice for a builder. <br>
<a href="https://www.contractstore.com/construction/contractors/builders-business-pack/">More</a></p></div></li></ul>
</li></ul></div>			</nav><!-- #site-navigation -->
		
	</header><!-- #masthead -->
	
	<!-- GB 20/1/17 breadcrumbs -->
	<p id="breadcrumbs"><span><span><a href="/">Home</a></span> / <span class="breadcrumb_last" aria-current="page">Blog</span></span></p>	
	<div id="content" class="site-content">

	<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

					<!-- GB Change - Custome Title for blog page -->      
<header class="entry-header">
					<h1 class="entry-title">Legal Updates for Business and Contract News Blog</h1>
				</header>
                <!-- GB Change - remove standard loop and add posts titles -->

						
				
<article id="post-50884" class="post-50884 post type-post status-publish format-standard has-post-thumbnail hentry category-contractstore-news tag-book tag-famous-quotes tag-gift">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/contractstore-news/bons-mots-a-new-collection-of-quotes/" rel="bookmark">Bons Mots &#8211; A New Collection of Quotes</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
								<a href="https://www.contractstore.com/blog/contractstore-news/bons-mots-a-new-collection-of-quotes/" rel="bookmark">
						<img width="200" height="200" src="https://www.contractstore.com/wp-content/uploads/2025/04/bonsmots2-200x200.jpeg" class="featured-img alignleft wp-post-image" alt="Bons Mots &#8211; A New Collection of Quotes" decoding="async" srcset="https://www.contractstore.com/wp-content/uploads/2025/04/bonsmots2-200x200.jpeg 200w, https://www.contractstore.com/wp-content/uploads/2025/04/bonsmots2-150x150.jpeg 150w" sizes="(max-width: 200px) 100vw, 200px" />					</a>
					<p>If you&#8217;ve enjoyed the quotes posted on our Last Word page by ContractStore&#8217;s Giles Dixon, you might like to know he&#8217;s selected the best for publication in a new book – Bons Mots. Collected primarily</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/contractstore-news/bons-mots-a-new-collection-of-quotes/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-50868" class="post-50868 post type-post status-publish format-standard has-post-thumbnail hentry category-business-contracts category-employment category-uk-law">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/employment/new-employment-rights-bill-will-affect-most-employers/" rel="bookmark">New Employment Rights Bill Will Affect Most  Employers</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
								<a href="https://www.contractstore.com/blog/employment/new-employment-rights-bill-will-affect-most-employers/" rel="bookmark">
						<img width="200" height="200" src="https://www.contractstore.com/wp-content/uploads/2024/11/pexels-gustavo-fring-3874035-200x200.jpg" class="featured-img alignleft wp-post-image" alt="New Employment Rights Bill Will Affect Most  Employers" decoding="async" srcset="https://www.contractstore.com/wp-content/uploads/2024/11/pexels-gustavo-fring-3874035-200x200.jpg 200w, https://www.contractstore.com/wp-content/uploads/2024/11/pexels-gustavo-fring-3874035-150x150.jpg 150w" sizes="(max-width: 200px) 100vw, 200px" />					</a>
					<p>The Labour Government has published a wide-ranging Employment Rights Bill.</p>
<p>This will affect almost all employers, especially those taking on new staff.</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/employment/new-employment-rights-bill-will-affect-most-employers/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-48009" class="post-48009 post type-post status-publish format-standard has-post-thumbnail hentry category-business-contracts category-running-an-sme tag-business-agreement tag-setting-up-a-business tag-terms-of-business">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/business-contracts/the-essentials-of-crafting-unassailable-business-contracts/" rel="bookmark">The Essentials of Crafting Unassailable Business Contracts</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
								<a href="https://www.contractstore.com/blog/business-contracts/the-essentials-of-crafting-unassailable-business-contracts/" rel="bookmark">
						<img width="200" height="200" src="https://www.contractstore.com/wp-content/uploads/2023/11/Picture1-200x200.jpg" class="featured-img alignleft wp-post-image" alt="The Essentials of Crafting Unassailable Business Contracts" decoding="async" srcset="https://www.contractstore.com/wp-content/uploads/2023/11/Picture1-200x200.jpg 200w, https://www.contractstore.com/wp-content/uploads/2023/11/Picture1-150x150.jpg 150w" sizes="(max-width: 200px) 100vw, 200px" />					</a>
					<p>Understanding the nuances and intricacies of business contracts is crucial for establishing transparent dealings and averting potential disputes. </p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/business-contracts/the-essentials-of-crafting-unassailable-business-contracts/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-46683" class="post-46683 post type-post status-publish format-standard has-post-thumbnail hentry category-internet-law category-running-an-sme tag-ai tag-chatgpt tag-copyright">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/internet-law/chatgpt-copyright/" rel="bookmark">What ChatGPT Says About Copyright</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
								<a href="https://www.contractstore.com/blog/internet-law/chatgpt-copyright/" rel="bookmark">
						<img width="200" height="200" src="https://www.contractstore.com/wp-content/uploads/2023/07/pexels-shantanu-kumar-16474960-200x200.jpg" class="featured-img alignleft wp-post-image" alt="What ChatGPT Says About Copyright" decoding="async" loading="lazy" srcset="https://www.contractstore.com/wp-content/uploads/2023/07/pexels-shantanu-kumar-16474960-200x200.jpg 200w, https://www.contractstore.com/wp-content/uploads/2023/07/pexels-shantanu-kumar-16474960-150x150.jpg 150w" sizes="auto, (max-width: 200px) 100vw, 200px" />					</a>
					<p>There is a lot of discussion on who owns the copyright in documents produced by ChatGPT.  So, we decided to ask ChatGPT what it has to say on the subject.</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/internet-law/chatgpt-copyright/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-46279" class="post-46279 post type-post status-publish format-standard hentry category-setting-up-business">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/setting-up-business/from-farming-to-fortune-how-to-create-a-successful-farm-and-monetize-it/" rel="bookmark">From Farming to Fortune: How to Create a Successful Farm and Monetize It</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
			<p>Agriculture is one of the oldest and most important industries in the world. However, creating a successful farm and monetizing it can be a daunting task. In this article from ContractStore, we&#8217;ll explore some steps</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/setting-up-business/from-farming-to-fortune-how-to-create-a-successful-farm-and-monetize-it/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-45738" class="post-45738 post type-post status-publish format-standard hentry category-business-contracts category-uk-law">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/business-contracts/pre-action-protocol-explained-how-to-set-out-your-claim-against-an-individual/" rel="bookmark">Pre-action protocol explained. How to set out your claim against an individual before starting proceedings</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
			<p>If you are planning to bring proceedings against an individual in the UK, you need to follow the pre-action protocol in your letter (or  email). That is a a set of guidelines that must be</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/business-contracts/pre-action-protocol-explained-how-to-set-out-your-claim-against-an-individual/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-45234" class="post-45234 post type-post status-publish format-standard hentry category-business-contracts">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/business-contracts/wh/" rel="bookmark">What to include in a letter demanding payment of  debt</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
			<p>If someone owes you money in the UK and you wish to take legal action to recover the debt, you may need to send a letter before action.  Here are the main things you should</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/business-contracts/wh/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-45181" class="post-45181 post type-post status-publish format-standard hentry category-business-contracts category-uk-law">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/business-contracts/what-legal-information-is-required-on-a-website-in-the-uk/" rel="bookmark">What legal information is required on a website in the UK?</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
			<p>In the UK, certain legal information is required to be displayed on a website.  Not everyone is aware of this, so here is a useful summary: Company name: If the website is operated by a</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/business-contracts/what-legal-information-is-required-on-a-website-in-the-uk/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-42728" class="post-42728 post type-post status-publish format-standard hentry category-business-contracts category-contractstore-news tag-adr tag-disputes-claims tag-mediation">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/business-contracts/compulsory-mediation-proposed-by-government-for-claims-up-to-10000/" rel="bookmark">Compulsory Mediation proposed by Government for claims up to £10,000</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
			<p>The Ministry of Justice is consulting on its  proposal to automatically refer people involved in a civil dispute valued up to £10,000 for a free mediation session.  This would be provided by Her Majesty’s Courts</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/business-contracts/compulsory-mediation-proposed-by-government-for-claims-up-to-10000/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				
<article id="post-42378" class="post-42378 post type-post status-publish format-standard hentry category-construction category-self-build-2 tag-adjudication tag-collateral-warranty tag-construction">
	<header class="entry-header">
		<h2 class="entry-title"><a href="https://www.contractstore.com/blog/construction/collateral-warranties-adjudication/" rel="bookmark">Collateral Warranties  &#038; Adjudication</a></h2>
				<!-- <div class="entry-meta">
					</div> .entry-meta -->
			</header><!-- .entry-header -->

			<div class="entry-summary">
			<p>The Court of Appeal  decided in June that a collateral warranty agreement can be a &#8216;construction contract&#8217; under the Housing Grants (Construction &amp; Redevelopment) Act. This means  that the beneficiary of a collateral warranty  who</p>
<p class="continue-reading"><a class="more-link" href="https://www.contractstore.com/blog/construction/collateral-warranties-adjudication/">Read More &rarr;</a></p>		</div><!-- .entry-summary -->
	</article><!-- #post-## -->

			
				<nav class="navigation paging-navigation" role="navigation">
		<h1 class="screen-reader-text">Posts navigation</h1>
		<div class="nav-links">

						<div class="nav-previous"><a href="https://www.contractstore.com/blog/page/2/" ><i class="fa fa-caret-left"></i> Older posts</a></div>
			
			
		</div><!-- .nav-links -->
	</nav><!-- .navigation -->
	
		
		</main><!-- #main -->
	</div><!-- #primary -->


<div id="secondary" class="widget-area" role="complementary">

	<aside id="categories-2" class="widget widget_categories"><span class="widget-title">Categories</span>
			<ul>
					<li class="cat-item cat-item-326"><a href="https://www.contractstore.com/blog/brexit/">Brexit</a> (7)
</li>
	<li class="cat-item cat-item-191"><a href="https://www.contractstore.com/blog/business-contracts/">Business Contracts</a> (17)
</li>
	<li class="cat-item cat-item-281"><a href="https://www.contractstore.com/blog/business-in-india/">Business in India</a> (1)
</li>
	<li class="cat-item cat-item-123"><a href="https://www.contractstore.com/blog/contractstore-news/">ContractStore News</a> (15)
</li>
	<li class="cat-item cat-item-318"><a href="https://www.contractstore.com/blog/contractstore-updates/">ContractStore Updates</a> (1)
</li>
	<li class="cat-item cat-item-344"><a href="https://www.contractstore.com/blog/covid/">Covid</a> (9)
</li>
	<li class="cat-item cat-item-285"><a href="https://www.contractstore.com/blog/employment/">Employment Law</a> (15)
</li>
	<li class="cat-item cat-item-203"><a href="https://www.contractstore.com/blog/guidance-articles/">Guidance Articles</a> (3)
</li>
	<li class="cat-item cat-item-181"><a href="https://www.contractstore.com/blog/international-business/">International Business</a> (3)
</li>
	<li class="cat-item cat-item-157"><a href="https://www.contractstore.com/blog/internet-law/">Internet Law</a> (6)
</li>
	<li class="cat-item cat-item-247"><a href="https://www.contractstore.com/blog/europe/">Law &amp; Business in Europe</a> (4)
</li>
	<li class="cat-item cat-item-133"><a href="https://www.contractstore.com/blog/case-studies/">Legal Template Case Studies</a> (2)
</li>
	<li class="cat-item cat-item-292"><a href="https://www.contractstore.com/blog/moore-blatch-updates/">Moore Blatch Updates</a> (2)
</li>
	<li class="cat-item cat-item-137"><a href="https://www.contractstore.com/blog/online-legal-templates/">Online Legal Templates</a> (4)
</li>
	<li class="cat-item cat-item-167"><a href="https://www.contractstore.com/blog/construction/">Property &amp; Construction</a> (6)
</li>
	<li class="cat-item cat-item-127"><a href="https://www.contractstore.com/blog/running-an-sme/">Running an SME</a> (28)
</li>
	<li class="cat-item cat-item-241"><a href="https://www.contractstore.com/blog/self-build-2/">Self-Build</a> (5)
</li>
	<li class="cat-item cat-item-128"><a href="https://www.contractstore.com/blog/setting-up-business/">Setting Up Business</a> (3)
</li>
	<li class="cat-item cat-item-140"><a href="https://www.contractstore.com/blog/uk-law/">UK Law</a> (19)
</li>
			</ul>

			</aside><aside id="quotescollection-2" class="widget widget_quotescollection"><span class="widget-title">The Last Word</span>
<div class="quotescollection-quote-wrapper" id="w_quotescollection_2"><p>80 percent of success is showing up.</p>
<div class="attribution">&mdash;&nbsp;<cite class="author">Woody Allen</cite></div><script type="text/javascript">
var args_w_quotescollection_2 = {"instanceID":"w_quotescollection_2", "currQuoteID":126, "showAuthor":1, "showSource":1, "tags":"", "charLimit":500, "orderBy":"random", "ajaxRefresh":1, "autoRefresh":10, "dynamicFetch":0, "before":"", "after":"", "beforeAttribution":"&lt;div class=\&quot;attribution\&quot;&gt;&amp;mdash;&amp;nbsp;", "afterAttribution":"&lt;/div&gt;", };quotescollectionTimer(args_w_quotescollection_2);</script>
</div></aside>
</div><!-- #secondary -->

	</div><!-- #content -->

<!-- #top footer GB 2/1/17 -->	
<div id="footer-sidebar" class="secondary">
<div id="footer-sidebar1">
<aside id="nav_menu-2" class="widget widget_nav_menu"><h3 class="widget-title">Business Advice/Guidance</h3><div class="menu-footer-menu-1-container"><ul id="menu-footer-menu-1" class="menu"><li id="menu-item-3026" class="menu-item menu-item-type-post_type menu-item-object-download menu-item-3026"><a href="https://www.contractstore.com/business-services/business-structures/starting-business/">Starting a Business</a></li>
<li id="menu-item-3027" class="menu-item menu-item-type-post_type menu-item-object-download menu-item-3027"><a href="https://www.contractstore.com/construction/self-builders/home-builder-guidance-notes/">Guidance for Self-Builders</a></li>
<li id="menu-item-3028" class="menu-item menu-item-type-post_type menu-item-object-download menu-item-3028"><a href="https://www.contractstore.com/business-services/business-structures/shareholder-checklist/">Shareholders Checklist</a></li>
<li id="menu-item-3029" class="menu-item menu-item-type-post_type menu-item-object-download menu-item-3029"><a href="https://www.contractstore.com/international/usa/business-usa/">Doing Business in the USA</a></li>
<li id="menu-item-3030" class="menu-item menu-item-type-post_type menu-item-object-download menu-item-3030"><a href="https://www.contractstore.com/library/free/governing-law-jurisdiction/">Governing Law &#038; Jurisdiction</a></li>
<li id="menu-item-3031" class="menu-item menu-item-type-taxonomy menu-item-object-download_category menu-item-3031"><a href="https://www.contractstore.com/library/free/">Free Downloads</a></li>
</ul></div></aside></div>
<div id="footer-sidebar2">
<aside id="nav_menu-3" class="widget widget_nav_menu"><h3 class="widget-title">Customer Support</h3><div class="menu-footer-menu-2-container"><ul id="menu-footer-menu-2" class="menu"><li id="menu-item-3032" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3032"><a href="https://www.contractstore.com/contact-us/">Contact Support</a></li>
<li id="menu-item-3033" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3033"><a href="https://www.contractstore.com/help/frequently-asked-questions/">Frequently Asked Questions</a></li>
<li id="menu-item-3034" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3034"><a href="https://www.contractstore.com/help/purchasing-downloading/">Purchasing and Downloading</a></li>
<li id="menu-item-3035" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3035"><a href="https://www.contractstore.com/help/our-explanatory-notes/">Our Explanatory Notes</a></li>
<li id="menu-item-3800" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3800"><a href="https://www.contractstore.com/help/signing-contracts-deeds/">Contract Signing &#038; Signing Deeds</a></li>
<li id="menu-item-3801" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3801"><a href="https://www.contractstore.com/help/signing-contracts-usa/">Signing Contracts Under Laws of the USA</a></li>
<li id="menu-item-5142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5142"><a href="https://www.contractstore.com/library/guidance-ebooks/">Guidance eBooks</a></li>
</ul></div></aside></div>
<div id="footer-sidebar3">
<aside id="nav_menu-4" class="widget widget_nav_menu"><h3 class="widget-title">Other Stuff</h3><div class="menu-footer-menu-3-container"><ul id="menu-footer-menu-3" class="menu"><li id="menu-item-3036" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3036"><a href="https://www.contractstore.com/terms-conditions/">Terms &#038; Conditions</a></li>
<li id="menu-item-9256" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-9256"><a rel="privacy-policy" href="https://www.contractstore.com/privacy-policy/">Privacy Policy</a></li>
<li id="menu-item-3187" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3187"><a href="https://www.contractstore.com/last-word/">The Last Word</a></li>
<li id="menu-item-3037" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3037"><a href="https://www.contractstore.com/our-cookies-policy/">Our Cookies Policy</a></li>
<li id="menu-item-3794" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3794"><a href="https://www.contractstore.com/all-documents/">All Documents</a></li>
<li id="menu-item-3795" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3795"><a href="https://www.contractstore.com/library/links/">Links</a></li>
<li id="menu-item-3845" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-3845"><a href="https://www.contractstore.com/help/videos/">Videos</a></li>
</ul></div></aside></div>
<div id="footer-sidebar4">
<aside id="text-12" class="widget widget_text"><h3 class="widget-title">Follow Us:</h3>			<div class="textwidget"><p><div class="vc_icon_element vc_icon_element-outer vc_do_icon vc_icon_element-align-left vc_icon_element-have-style"><div class="vc_icon_element-inner vc_icon_element-color-white vc_icon_element-have-style-inner vc_icon_element-size-xs vc_icon_element-style-boxed vc_icon_element-background vc_icon_element-background-color-custom"  style="background-color:#666666"><span class="vc_icon_element-icon fa fa-facebook" ></span><a class="vc_icon_element-link" href="https://www.facebook.com/contractstore"  title="" target="_blank"></a></div></div> <div class="vc_icon_element vc_icon_element-outer vc_do_icon vc_icon_element-align-left vc_icon_element-have-style"><div class="vc_icon_element-inner vc_icon_element-color-white vc_icon_element-have-style-inner vc_icon_element-size-xs vc_icon_element-style-boxed vc_icon_element-background vc_icon_element-background-color-custom"  style="background-color:#666666"><span class="vc_icon_element-icon fa fa-twitter" ></span><a class="vc_icon_element-link" href="https://twitter.com/contractstore"  title="" target="_blank"></a></div></div> <div class="vc_icon_element vc_icon_element-outer vc_do_icon vc_icon_element-align-left vc_icon_element-have-style"><div class="vc_icon_element-inner vc_icon_element-color-white vc_icon_element-have-style-inner vc_icon_element-size-xs vc_icon_element-style-boxed vc_icon_element-background vc_icon_element-background-color-custom"  style="background-color:#666666"><span class="vc_icon_element-icon fa fa-youtube" ></span><a class="vc_icon_element-link" href="https://www.youtube.com/user/ContractStore"  title="" target="_blank"></a></div></div> <div class="vc_icon_element vc_icon_element-outer vc_do_icon vc_icon_element-align-left vc_icon_element-have-style"><div class="vc_icon_element-inner vc_icon_element-color-white vc_icon_element-have-style-inner vc_icon_element-size-xs vc_icon_element-style-boxed vc_icon_element-background vc_icon_element-background-color-custom"  style="background-color:#666666"><span class="vc_icon_element-icon fa fa-linkedin" ></span><a class="vc_icon_element-link" href="https://www.linkedin.com/company/contractstore.com"  title="" target="_blank"></a></div></div> <div class="vc_icon_element vc_icon_element-outer vc_do_icon vc_icon_element-align-left vc_icon_element-have-style"><div class="vc_icon_element-inner vc_icon_element-color-white vc_icon_element-have-style-inner vc_icon_element-size-xs vc_icon_element-style-boxed vc_icon_element-background vc_icon_element-background-color-custom"  style="background-color:#666666"><span class="vc_icon_element-icon fa fa-google-plus" ></span><a class="vc_icon_element-link" href="https://plus.google.com/u/0/105436111858196759494"  title="" target="_blank"></a></div></div></p>
</div>
		</aside><aside id="text-11" class="widget widget_text"><h3 class="widget-title">We accept payments using:</h3>			<div class="textwidget"><img class="alignnone size-full wp-image-293" src="https://www.contractstore.com/wp-content/uploads/2017/01/footer-credit-cards.png" alt="Credit Cards" /></div>
		</aside><aside id="maxmegamenu-2" class="widget widget_maxmegamenu"><div id="mega-menu-wrap-max_mega_menu_1" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class='mega-toggle-block mega-menu-toggle-block mega-toggle-block-1' id='mega-toggle-block-1' tabindex='0'><span class='mega-toggle-label' role='button' aria-expanded='false'><span class='mega-toggle-label-closed'>MENU</span><span class='mega-toggle-label-open'>MENU</span></span></div></div></div><ul id="mega-menu-max_mega_menu_1" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="disabled" data-effect-speed-mobile="0" data-mobile-force-width="false" data-second-click="go" data-document-click="collapse" data-vertical-behaviour="accordion" data-breakpoint="0" data-unbind="true" data-mobile-state="collapse_all" data-mobile-direction="vertical" data-hover-intent-timeout="300" data-hover-intent-interval="100" data-overlay-desktop="false" data-overlay-mobile="false"><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-align-bottom-left mega-menu-flyout mega-menu-item-2729' id='mega-menu-item-2729'><a class="mega-menu-link" href="https://www.contractstore.com/business-services/" tabindex="0">Business & Services</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-align-bottom-left mega-menu-flyout mega-menu-item-3655' id='mega-menu-item-3655'><a class="mega-menu-link" href="https://www.contractstore.com/construction/" tabindex="0">Construction</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-align-bottom-left mega-menu-flyout mega-menu-item-2732' id='mega-menu-item-2732'><a class="mega-menu-link" href="https://www.contractstore.com/ip-internet/" tabindex="0">Creative, IP & Web</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-align-bottom-left mega-menu-flyout mega-menu-item-2730' id='mega-menu-item-2730'><a class="mega-menu-link" href="https://www.contractstore.com/employment/" tabindex="0">Employment</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-align-bottom-left mega-menu-flyout mega-menu-item-2731' id='mega-menu-item-2731'><a class="mega-menu-link" href="https://www.contractstore.com/international/" tabindex="0">International</a></li><li class='mega-menu-item mega-menu-item-type-taxonomy mega-menu-item-object-download_category mega-align-bottom-left mega-menu-flyout mega-menu-item-2728' id='mega-menu-item-2728'><a class="mega-menu-link" href="https://www.contractstore.com/property/" tabindex="0">Property & Leases</a></li></ul></div></aside><aside id="edd_multi_currency_selector-2" class="widget widget_edd_multi_currency_selector">		<div class="edd-multi-currency-selector edd-multi-currency-selector-dropdown">
			<form class="edd-multi-currency-switcher" method="GET">
	<label for="edd-multi-currency-dropdown" class="screen-reader-text">
		Select a currency	</label>
	<select id="edd-multi-currency-dropdown" name="currency">
					<option value="GBP"  selected='selected'>
				GBP			</option>
					<option value="AUD" >
				AUD			</option>
					<option value="EUR" >
				EUR			</option>
					<option value="USD" >
				USD			</option>
			</select>

	<button
		type="submit"
		class="button edd-submit edd-multi-currency-button blue"
	>
		Set Currency	</button>
</form>
		</div>
		</aside><aside id="edd_multi_currency_selector-3" class="widget widget_edd_multi_currency_selector">		<div class="edd-multi-currency-selector edd-multi-currency-selector-buttons">
				<form method="GET">
								<button
				type="submit"
				class="button edd-submit edd-multi-currency-button blue edd-multi-currency-button--selected"
				name="currency"
				value="GBP"
				 disabled='disabled'			>
				GBP (active)			</button>
								<button
				type="submit"
				class="button edd-submit edd-multi-currency-button blue"
				name="currency"
				value="AUD"
							>
				AUD			</button>
								<button
				type="submit"
				class="button edd-submit edd-multi-currency-button blue"
				name="currency"
				value="EUR"
							>
				EUR			</button>
								<button
				type="submit"
				class="button edd-submit edd-multi-currency-button blue"
				name="currency"
				value="USD"
							>
				USD			</button>
			</form>
		</div>
		</aside></div>
<div style="clear:both;"></div>
</div>	
<!-- #top footer-->	

	<footer id="colophon" class="site-footer" role="contentinfo">
	<div class="newsletter">
	<script>(function() {
	window.mc4wp = window.mc4wp || {
		listeners: [],
		forms: {
			on: function(evt, cb) {
				window.mc4wp.listeners.push(
					{
						event   : evt,
						callback: cb
					}
				);
			}
		}
	}
})();
</script><!-- Mailchimp for WordPress v4.9.19 - https://wordpress.org/plugins/mailchimp-for-wp/ --><form id="mc4wp-form-1" class="mc4wp-form mc4wp-form-269" method="post" data-id="269" data-name="Newsletter Sign ups" ><div class="mc4wp-form-fields"><p>Receive emails with news and guidance for business, plus ContractStore product updates.<br>
  <span style="font-size:10px">By signing the submit button you confirm you have read and accept our <a href="https://www.contractstore.com/privacy-policy/" _blank>privacy policy</a></span></p>
<p>
  <input type="email" name="EMAIL" placeholder="Email Address" required /><input type="submit" value="Sign up" />
</p></div><label style="display: none !important;">Leave this field empty if you're human: <input type="text" name="_mc4wp_honeypot" value="" tabindex="-1" autocomplete="off" /></label><input type="hidden" name="_mc4wp_timestamp" value="1780981868" /><input type="hidden" name="_mc4wp_form_id" value="269" /><input type="hidden" name="_mc4wp_form_element_id" value="mc4wp-form-1" /><div class="mc4wp-response"></div></form><!-- / Mailchimp for WordPress Plugin -->	</div>
		<div class="site-info">
		<p>Registered office: Second Floor, 1 Church Terrace, Richmond, Surrey, TW10 6SE<br>
		  &copy; The ContractStore Ltd, 2026. All rights reserved.		  </p>
		<p>The ContractStore Limited is a private company incorporated in England under <br>
company Number 4028985. VAT registration 761 0318 59. </p>

		<!--  Affordable contract templates you can trust™ - ContractStore &copy; 2026-->
		</div><!-- .site-info -->
	</footer><!-- #colophon -->
</div><!-- #page -->

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/vendd-child/*","/wp-content/themes/vendd/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>

<!-- This file should primarily consist of HTML with a little bit of PHP. -->
<div id="dc-cnb-container">
	<p id="dc-cnb-text">
						We use cookies to ensure that we give you the best experience on our website. For more information <a id="dc-cnb-read-more" href="https://www.contractstore.com/our-cookies-policy/" target="_blank">Click here</a>. <a id="dc-cnb-button">Ok</a>
			</p>
</div>	<style>.edd-js-none .edd-has-js, .edd-js .edd-no-js, body.edd-js input.edd-no-js { display: none; }</style>
	<script>/* <![CDATA[ */(function(){var c = document.body.classList;c.remove('edd-js-none');c.add('edd-js');})();/* ]]> */</script>
	<script>(function() {function maybePrefixUrlField () {
  const value = this.value.trim()
  if (value !== '' && value.indexOf('http') !== 0) {
    this.value = 'http://' + value
  }
}

const urlFields = document.querySelectorAll('.mc4wp-form input[type="url"]')
for (let j = 0; j < urlFields.length; j++) {
  urlFields[j].addEventListener('blur', maybePrefixUrlField)
}
})();</script><div class="edd-free-downloads-modal-wrapper edd-free-downloads"><span class="edd-loading"></span><div id="edd-free-downloads-modal" style="display:none"></div></div>            <div class='asp_hidden_data' id="asp_hidden_data" style="display: none !important;">
                <svg style="position:absolute" height="0" width="0">
                    <filter id="aspblur">
                        <feGaussianBlur in="SourceGraphic" stdDeviation="4"/>
                    </filter>
                </svg>
                <svg style="position:absolute" height="0" width="0">
                    <filter id="no_aspblur"></filter>
                </svg>
            </div>
        <script id="wp-hooks-js" src="https://www.contractstore.com/wp-includes/js/dist/hooks.min.js?ver=7496969728ca0f95732d"></script>
<script id="wp-i18n-js" src="https://www.contractstore.com/wp-includes/js/dist/i18n.min.js?ver=781d11515ad3d91786ec"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
//# sourceURL=wp-i18n-js-after
</script>
<script id="swv-js" src="https://www.contractstore.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.0.1"></script>
<script id="contact-form-7-js-translations">
( function( domain, translations ) {
	var localeData = translations.locale_data[ domain ] || translations.locale_data.messages;
	localeData[""].domain = domain;
	wp.i18n.setLocaleData( localeData, domain );
} )( "contact-form-7", {"translation-revision-date":"2024-05-21 11:58:24+0000","generator":"GlotPress\/4.0.1","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"en_GB"},"Error:":["Error:"]}},"comment":{"reference":"includes\/js\/index.js"}} );
//# sourceURL=contact-form-7-js-translations
</script>
<script id="contact-form-7-js-before">
var wpcf7 = {
    "api": {
        "root": "https:\/\/www.contractstore.com\/wp-json\/",
        "namespace": "contact-form-7\/v1"
    }
};
//# sourceURL=contact-form-7-js-before
</script>
<script id="contact-form-7-js" src="https://www.contractstore.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.0.1"></script>
<script id="edd-ajax-js-extra">
var edd_scripts = {"ajaxurl":"https://www.contractstore.com/wp-admin/admin-ajax.php","position_in_cart":"","has_purchase_links":"0","already_in_cart_message":"You have already added this item to your basket","empty_cart_message":"Your basket is empty","loading":"Loading","select_option":"Please select an option","is_checkout":"0","default_gateway":"paypal_commerce","redirect_to_checkout":"0","checkout_page":"https://www.contractstore.com/checkout/","permalinks":"1","quantities_enabled":"","taxes_enabled":"1","current_page":"50884"};
//# sourceURL=edd-ajax-js-extra
</script>
<script id="edd-ajax-js" src="https://www.contractstore.com/wp-content/plugins/easy-digital-downloads-pro/assets/js/edd-ajax.js?ver=3.3.5.2"></script>
<script id="vendd-scripts-js" src="https://www.contractstore.com/wp-content/themes/vendd/inc/js/vendd-scripts.js?ver=1.2.7"></script>
<script id="wd-asp-async-loader-js" src="https://www.contractstore.com/wp-content/plugins/ajax-search-pro/js/legacy/nomin/async.css.js?ver=urgNNx"></script>
<script id="wd-asp-ajaxsearchpro-js-before">
window.ASP = typeof window.ASP !== 'undefined' ? window.ASP : {}; window.ASP.wp_rocket_exception = "DOMContentLoaded"; window.ASP.ajaxurl = "https:\/\/www.contractstore.com\/wp-admin\/admin-ajax.php"; window.ASP.backend_ajaxurl = "https:\/\/www.contractstore.com\/wp-admin\/admin-ajax.php"; window.ASP.js_scope = "jQuery"; window.ASP.asp_url = "https:\/\/www.contractstore.com\/wp-content\/plugins\/ajax-search-pro\/"; window.ASP.upload_url = "https:\/\/www.contractstore.com\/wp-content\/uploads\/asp_upload\/"; window.ASP.css_basic_url = "https:\/\/www.contractstore.com\/wp-content\/uploads\/asp_upload\/style.basic-ho-is-po-no-da-co-au-se-is.css"; window.ASP.detect_ajax = 0; window.ASP.media_query = "urgNNx"; window.ASP.version = 5026; window.ASP.pageHTML = ""; window.ASP.additional_scripts = []; window.ASP.script_async_load = false; window.ASP.scrollbar = true; window.ASP.css_async = true; window.ASP.js_retain_popstate = 0; window.ASP.highlight = {"enabled":false,"data":[]}; window.ASP.debug = false; window.ASP.instances = {}; window.ASP.analytics = {"method":"pageview","tracking_id":"","string":"?ajax_search={asp_term}","event":{"focus":{"active":1,"action":"focus","category":"ASP {search_id} | {search_name}","label":"Input focus","value":"1"},"search_start":{"active":0,"action":"search_start","category":"ASP {search_id} | {search_name}","label":"Phrase: {phrase}","value":"1"},"search_end":{"active":1,"action":"search_end","category":"ASP {search_id} | {search_name}","label":"{phrase} | {results_count}","value":"1"},"magnifier":{"active":1,"action":"magnifier","category":"ASP {search_id} | {search_name}","label":"Magnifier clicked","value":"1"},"return":{"active":1,"action":"return","category":"ASP {search_id} | {search_name}","label":"Return button pressed","value":"1"},"try_this":{"active":1,"action":"try_this","category":"ASP {search_id} | {search_name}","label":"Try this click | {phrase}","value":"1"},"facet_change":{"active":0,"action":"facet_change","category":"ASP {search_id} | {search_name}","label":"{option_label} | {option_value}","value":"1"},"result_click":{"active":1,"action":"result_click","category":"ASP {search_id} | {search_name}","label":"{result_title} | {result_url}","value":"1"}}};
//# sourceURL=wd-asp-ajaxsearchpro-js-before
</script>
<script id="wd-asp-ajaxsearchpro-js" src="https://www.contractstore.com/wp-content/plugins/ajax-search-pro/js/legacy/min/jquery.ajaxsearchpro-sb.min.js?ver=urgNNx"></script>
<script id="wccp_pro_admin_bar_ajax-js-extra">
var ajax_object = {"ajaxurl":"https://www.contractstore.com/wp-admin/admin-ajax.php","link":"https://www.contractstore.com/blog/"};
//# sourceURL=wccp_pro_admin_bar_ajax-js-extra
</script>
<script id="wccp_pro_admin_bar_ajax-js" src="https://www.contractstore.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=7.0"></script>
<script id="google-recaptcha-js" src="https://www.google.com/recaptcha/api.js?render=6LftAQYaAAAAAImmpWlNp0TrJCpfi5AfyfXhX0YB&#038;ver=3.0"></script>
<script id="wp-polyfill-js" src="https://www.contractstore.com/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0"></script>
<script id="wpcf7-recaptcha-js-before">
var wpcf7_recaptcha = {
    "sitekey": "6LftAQYaAAAAAImmpWlNp0TrJCpfi5AfyfXhX0YB",
    "actions": {
        "homepage": "homepage",
        "contactform": "contactform"
    }
};
//# sourceURL=wpcf7-recaptcha-js-before
</script>
<script id="wpcf7-recaptcha-js" src="https://www.contractstore.com/wp-content/plugins/contact-form-7/modules/recaptcha/index.js?ver=6.0.1"></script>
<script id="hoverIntent-js" src="https://www.contractstore.com/wp-includes/js/hoverIntent.min.js?ver=1.10.2"></script>
<script id="megamenu-js" src="https://www.contractstore.com/wp-content/plugins/megamenu/js/maxmegamenu.js?ver=3.4.1"></script>
<script id="megamenu-pro-js" src="https://www.contractstore.com/wp-content/plugins/megamenu-pro/assets/public.js?ver=2.4.1"></script>
<script id="wpb_composer_front_js-js" src="https://www.contractstore.com/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min.js?ver=8.0.1"></script>
<script id="edd-multi-currency-js" src="https://www.contractstore.com/wp-content/plugins/edd-multi-currency/assets/build/frontend.js?ver=1.1.2"></script>
<script id="mc4wp-forms-api-js" defer src="https://www.contractstore.com/wp-content/plugins/mailchimp-for-wp/assets/js/forms.js?ver=4.9.19"></script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://www.contractstore.com/wp-includes/js/wp-emoji-release.min.js?ver=7.0"}}
</script>
<script type="module">
/*! This file is auto-generated */
const a=JSON.parse(document.getElementById("wp-emoji-settings").textContent),o=(window._wpemojiSettings=a,"wpEmojiSettingsSupports"),s=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const a=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===a[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!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!a(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,a){let r;const o=(r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),s=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(e=>{s[e]=t(o,e,n,a)}),s}function r(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}a.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let 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(),c.toString(),p.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"});const r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=e=>{i(n=e.data),r.terminate(),t(n)})}catch(e){}i(n=f(s,u,c,p))}t(n)}).then(e=>{for(const n in e)a.supports[n]=e[n],a.supports.everything=a.supports.everything&&a.supports[n],"flag"!==n&&(a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&a.supports[n]);var t;a.supports.everythingExceptFlag=a.supports.everythingExceptFlag&&!a.supports.flag,a.supports.everything||((t=a.source||{}).concatemoji?r(t.concatemoji):t.wpemoji&&t.twemoji&&(r(t.twemoji),r(t.wpemoji)))});
//# sourceURL=https://www.contractstore.com/wp-includes/js/wp-emoji-loader.min.js
</script>
<script></script>
</body>
</html>
