function changeloginreg(){} function changeloginm(){} Function.prototype.method = function (name, func) { this.prototype[name] = func; return this; }; if (!String.prototype.trim) { String.method('trim', function () { return this.replace(/^\s+|\s+$/g, ''); }); String.method('ltrim', function () { return this.replace(/^\s+/g, ''); }); String.method('rtrim', function () { return this.replace(/\s+$/g, ''); }); } function checksearch(frm) { if (typeof(frm.keywords)!="undefined"){ if (frm.keywords.value.trim() == '' || frm.keywords.value.trim() == '请输入关键词') { alert("搜索关键词不能为空,请输入。"); frm.keywords.focus(); return false; } frm.submit(); return false; } } function AddFavorite(sURL, sTitle) { sURL = encodeURI(sURL); try { window.external.addFavorite(sURL, sTitle); } catch (e) { try { window.sidebar.addPanel(sTitle, sURL, ""); } catch (e) { alert("加入收藏失败,请按键Ctrl+D进行添加,或手动在浏览器中设置。"); } } } function SetHome(url) { if (document.all) { document.body.style.behavior = "url(#default#homepage)"; document.body.setHomePage(url); } else { alert("浏览器不支持此功能,请手动在浏览器设置页面进行设置。"); } } var initial_fontsize = 16; var initial_lineheight = 28; function setFontsize(type, objname) { var whichEl = document.getElementById(objname); if (whichEl != null) { var oP = document.getElementById(objname).getElementsByTagName("p"); if (type == 1) { if (initial_fontsize < 42) { whichEl.style.fontSize = ++initial_fontsize + "px"; whichEl.style.lineHeight = ++initial_lineheight + "px"; if (oP != null) { for (var i = 0; i < oP.length; i++) { oP[i].style.fontSize = whichEl.style.fontSize; oP[i].style.lineHeight = whichEl.style.lineHeight; } } } } else { if (initial_fontsize > 8) { whichEl.style.fontSize = --initial_fontsize + "px"; whichEl.style.lineHeight = --initial_lineheight + "px"; if (oP != null) { for (var i = 0; i < oP.length; i++) { oP[i].style.fontSize = whichEl.style.fontSize; oP[i].style.lineHeight = whichEl.style.lineHeight; } } } } } } function trresizeimg(maxw, maxh, objimg) { var img = new Image(); img.src = objimg.src; if (parseInt(objimg.getAttribute("width"))>0&&parseInt(objimg.getAttribute("width"))!=parseInt(img.width)){return false} if (parseInt(objimg.getAttribute("height"))>0&&parseInt(objimg.getAttribute("height"))!=parseInt(img.height)){return false} var hratio; var wratio; var ratio = 1; var w = img.width; var h = img.height; wratio = maxw / w; hratio = maxh / h; if (maxw == 0 && maxh == 0) { ratio = 1; } else if (maxw == 0) { // if (hratio < 1) ratio = hratio; } else if (maxh == 0) { if (wratio < 1) ratio = wratio; } else if (wratio < 1 || hratio < 1) { ratio = wratio <= hratio ? wratio : hratio; } if (ratio < 1) { w = w * ratio; h = h * ratio; } objimg.height = h; objimg.width = w; } function checkuseradd(frm) { frm.submit1.disabled = "true"; var patrn = /^[\w+$]{5,20}$/; if (typeof(frm.username)!="undefined"){ if (!patrn.test(frm.username.value.trim())) { alert("登录名为5-20个字符,不可输入汉字,只可包含数字,字母,下划线"); frm.username.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.passwd1)!="undefined"){ if (!patrn.test(frm.passwd1.value.trim())) { alert("密码为5-20个字符,不可输入汉字,只可包含数字,字母,下划线"); frm.passwd1.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.passwd1)!="undefined"){ if (frm.passwd1.value != frm.passwd2.value) { alert("两次输入密码不同,请重新输入"); frm.passwd1.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.mail)!="undefined"){ mail = frm.mail.value.trim(); if (mail.indexOf("55tr.com") > -1) { alert("请输入真实的邮箱,不能使用55tr.com"); frm.mail.focus(); frm.submit1.disabled = 0; return false; } } re = new RegExp("^[\\w-]+(\\.[\\w-]+)*@[\\w-]+(\\.[\\w-]+)+$"); if (typeof(frm.mail)!="undefined"){ if (!re.test(mail)) { alert("请输入正确的邮箱,例如 admin@55tr.com"); frm.mail.focus(); frm.submit1.disabled = 0; return false; } } var patrn = /^[0-9]{4}$/; if (typeof(frm.vcode)!="undefined"){ if (!patrn.test(frm.vcode.value.trim())) { alert("验证码为4位数字,请输入"); frm.vcode.focus(); frm.submit1.disabled = 0; return false; } } frm.submit(); frm.submit1.disabled = 0; return false; } function checkuseredit(frm) { frm.submit1.disabled = "true"; var patrn = /^[\w+$]{5,20}$/; if (typeof(frm.passwd0)!="undefined"){ if (!patrn.test(frm.passwd0.value.trim())) { alert("原始密码为5-20个字符,不可输入汉字,只可包含数字,字母,下划线"); frm.passwd0.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.passwd1)!="undefined"){ if (frm.passwd1.value.trim() != "") { if (!patrn.test(frm.passwd1.value.trim())) { alert("新密码密码为5-20个字符,不可输入汉字,只可包含数字,字母,下划线"); frm.passwd1.focus(); frm.submit1.disabled = 0; return false; } if (frm.passwd1.value != frm.passwd2.value) { alert("两次输入的新密码不同,请重新输入,不修改请留空"); frm.passwd1.focus(); frm.submit1.disabled = 0; return false; } } } frm.submit(); frm.submit1.disabled = 0; return false; } function checkuserlog(frm) { frm.submit1.disabled = "true"; var patrn = /^[\w+$]{5,20}$/; if (typeof(frm.username)!="undefined"){ if (!patrn.test(frm.username.value.trim())) { alert("登录名为5-20个字符,不可输入汉字,只可包含数字,字母,下划线"); frm.username.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.passwd)!="undefined"){ if (!patrn.test(frm.passwd.value.trim())) { alert("密码为5-20个字符,不可输入汉字,只可包含数字,字母,下划线"); frm.passwd.focus(); frm.submit1.disabled = 0; return false; } } var patrn = /^[0-9]{4}$/; if (typeof(frm.vcode)!="undefined"){ if (!patrn.test(frm.vcode.value.trim())) { alert("验证码为4位数字,请输入"); frm.vcode.focus(); frm.submit1.disabled = 0; return false; } } frm.submit(); frm.submit1.disabled = 0; return false; } function randomString(len) { len = len || 32; var $chars = "ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678"; /****默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1****/ var maxPos = $chars.length; var pwd = ""; for (i = 0; i < len; i++) { pwd += $chars.charAt(Math.floor(Math.random() * maxPos)); } return pwd; } function udelnew(frm) { if (confirm("删除后无法恢复。确定删除文章么?")) { frm.submit(); } else { return false; } } function checkguest(frm) { frm.submit1.disabled = "true"; if (typeof(frm.content)!="undefined"){ if (frm.content.value.trim().length < 6) { alert("留言内容应大于6个字符"); frm.content.focus(); frm.submit1.disabled = 0; return false; } } var patrn = /^(\w+){2,20}|([\u0391-\uFFE5]+){2,20}$/; if (typeof(frm.username)!="undefined"){ if (!patrn.test(frm.username.value.trim())) { alert("昵称为2至20位字符,不可输入汉字,只可包含汉字,数字,字母,下划线"); frm.username.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.mail)!="undefined"){ mail = frm.mail.value.trim(); if (mail != "") { if (mail.indexOf("55tr.com") > -1) { alert("请输入真实的邮箱,不能使用55tr.com或留空"); frm.mail.focus(); frm.submit1.disabled = 0; return false; } re = new RegExp("^[\\w-]+(\\.[\\w-]+)*@[\\w-]+(\\.[\\w-]+)+$"); if (!re.test(mail)) { alert("请输入正确的邮箱,例如 admin@55tr.com或留空"); frm.mail.focus(); frm.submit1.disabled = 0; return false; } } } if (typeof(frm.homepage)!="undefined"){ homepage = frm.homepage.value.trim(); if (homepage != "") { re = new RegExp("^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_%&?/.=]+$"); if (!re.test(homepage)) { alert("请输入正确的网址,例如 www.55tr.com或留空"); frm.homepage.focus(); frm.submit1.disabled = 0; return false; } } } var patrn = /^[0-9]{4}$/; if (typeof(frm.vcode)!="undefined"){ if (!patrn.test(frm.vcode.value.trim())) { alert("验证码为4位数字,请输入"); frm.vcode.focus(); frm.submit1.disabled = 0; return false; } } top.trdisnone.innerHTML = (""); frm.submit(); frm.submit1.disabled = 0; return false; } function confirms() { if (confirm("确定继续操作么?")) {} else { return false; } } function reloadAbleJSFn(id, newJS) { var oldjs = null; var t = null; var oldjs = document.getElementById(id); if (oldjs) oldjs.parentNode.removeChild(oldjs); var scriptObj = document.createElement("script"); scriptObj.src = newJS; scriptObj.type = "text/javascript"; scriptObj.id = id; document.getElementsByTagName("head")[0].appendChild(scriptObj); } function check_uaddnews(frm) { frm.submit1.disabled = "true"; if (typeof(frm.title)!="undefined"){ if (frm.title.value.trim() == "") { alert("标题不能为空,请输入。"); frm.title.focus(); frm.submit1.disabled = 0; return false; } } if (typeof(frm.columnid)!="undefined"){ if (frm.columnid.value.trim() == "") { alert("所属栏目不能为空,请选择。"); frm.columnid.focus(); frm.submit1.disabled = 0; return false; } } frm.submit(); frm.submit1.disabled = 0; return false; } var initial_rem = 3; var initial_linerem = 3; function setFontrem(type, objname) { var whichEl = document.getElementById(objname); if (whichEl != null) { var oP = document.getElementById(objname).getElementsByTagName("p"); if (type == 1) { if (initial_rem < 8) { whichEl.style.fontSize = ++initial_rem*0.1 + "rem"; whichEl.style.lineHeight = ++initial_linerem*0.1 + "rem"; if (oP != null) { for (var i = 0; i < oP.length; i++) { oP[i].style.fontSize = whichEl.style.fontSize; oP[i].style.lineHeight = whichEl.style.lineHeight; } } } } else { if (initial_rem > 2) { whichEl.style.fontSize = --initial_rem*0.1 + "rem"; whichEl.style.lineHeight = --initial_linerem*0.1 + "rem"; if (oP != null) { for (var i = 0; i < oP.length; i++) { oP[i].style.fontSize = whichEl.style.fontSize; oP[i].style.lineHeight = whichEl.style.lineHeight; } } } } } } function hm170525() {   var lena = 8; var $chars = '12345678';   var maxPos = $chars.length;   var pwdd = '';   for (i = 0; i < lena; i++) {     pwdd =pwdd+ $chars.charAt(Math.floor(Math.random() * maxPos));   }   return pwdd; } function setAttributezdy(o,a,v){ if(typeof o!='object'||typeof a!='string') return; a=='class'?o.className=v:o.setAttribute(a,v); } function clkclose170522(ctdid){ document.getElementById("adtop"+ctdid).style.display="none"; } function adClose170522(s,str170522,isfrist,dftdid){ var strlen=parseInt(str170522.length); if (s==''){s=9999} if (strlen>8 && strlen<=20 && parseInt(s)>parseInt(strlen)){s=parseInt(strlen/2)} else if (strlen>20 && strlen<=40 && parseInt(s)>parseInt(strlen)){s=parseInt(strlen/3)} else if (strlen>40 && parseInt(s)>parseInt(strlen)){s=parseInt(strlen/4)} else if (strlen<=8 && s>5 ){s=5} //s=999 var tdid='' if (dftdid==''){var tdid = hm170525() } else if (dftdid!='') {tdid=dftdid} if (isfrist==1){ var vtrntblock=document.getElementById('trntblock'); var newdiv=document.createElement('div'); newdiv.setAttribute('id','adtop' +tdid); setAttributezdy(newdiv,'class','adtop170528') //newdiv.setAttribute('class', 'adtop'); newdiv.innerHTML = "x
"; vtrntblock.appendChild(newdiv); } var adtop = document.getElementById("adtop"+ tdid); var adtopi = document.getElementById("num"+ tdid); var nt170522 = document.getElementById("nt"+ tdid); nt170522.innerHTML=str170522 if (isfrist==1){adtop.style.display="block";} if (isfrist!=1 && adtop.style.display=="none"){ return false;} s--; adtopi.innerHTML=s; if(s<=0){ adtop.style.display="none"; return; } return setTimeout(function(){adClose170522(s,str170522,0,tdid)},1000); }; function _55tr_com(callid){ switch(callid){ //焦点图右侧1(745*任意尺寸) case "tr15": document.writeln(""); document.writeln("
<\/a><\/CENTER>"); document.writeln(""); document.writeln(""); document.writeln("
<\/a><\/CENTER>"); break; //首页热门文章下3-398*任意高度 case "tr12": document.writeln("
<\/a><\/CENTER>"); break; //首页热门文章下1-398*任意高度 case "tr10": document.writeln("
待添加2024<\/CENTER>"); break; //导航下方推荐公告2-1200*任意高度 case "tr9": document.writeln("
<\/a><\/CENTER>"); document.writeln(""); document.writeln("
<\/a><\/CENTER>"); document.writeln(""); document.writeln(""); document.writeln("<\/title><!--[if gte mso 9]><xml><o:documentProperties><o:Author>心悦&Lijian<\/o:Author><o:LastAuthor>心悦&Lijian<\/o:LastAuthor><o:Revision>1<\/o:Revision><o:Pages>1<\/o:Pages><\/o:documentProperties><o:CustomdocumentProperties><o:KSOProductBuildVer dt:dt=\"string\" >2052-12.1.0.17827<\/o:KSOProductBuildVer><o:ICV dt:dt=\"string\" >2FFEF0D790F5426BA7E3D6B62DDEB529_11<\/o:ICV><\/o:CustomdocumentProperties><\/xml><![endif]--><!--[if gte mso 9]><xml><o:OfficedocumentSettings><\/o:OfficedocumentSettings><\/xml><![endif]--><!--[if gte mso 9]><xml><w:Worddocument><w:BrowserLevel>MicrosoftInternetExplorer4<\/w:BrowserLevel><w:DisplayHorizontalDrawingGridEvery>0<\/w:DisplayHorizontalDrawingGridEvery><w:DisplayVerticalDrawingGridEvery>2<\/w:DisplayVerticalDrawingGridEvery><w:documentKind>documentNotSpecified<\/w:documentKind><w:DrawingGridVerticalSpacing>7.8 磅<\/w:DrawingGridVerticalSpacing><w:PunctuationKerning><\/w:PunctuationKerning><w:View>Web<\/w:View><w:Compatibility><w:AdjustLineHeightInTable\/><w:DontGrowAutofit\/><w:BalanceSingleByteDoubleByteWidth\/><w:DoNotExpandShiftReturn\/><w:UseFELayout\/><\/w:Compatibility><w:Zoom>0<\/w:Zoom><\/w:Worddocument><\/xml><![endif]--><!--[if gte mso 9]><xml><w:LatentStyles DefLockedState=\"false\" DefUnhideWhenUsed=\"true\" DefSemiHidden=\"true\" DefQFormat=\"false\" DefPriority=\"99\" LatentStyleCount=\"260\" >"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Normal\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"heading 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 7\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 8\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"heading 9\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 7\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 8\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index 9\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 7\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 8\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toc 9\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Normal Indent\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"footnote text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"annotation text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"header\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"footer\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"index heading\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" QFormat=\"true\" Name=\"caption\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"table of figures\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"envelope address\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"envelope return\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"footnote reference\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"annotation reference\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"line number\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"page number\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"endnote reference\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"endnote text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"table of authorities\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"macro\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"toa heading\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Bullet\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Number\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Bullet 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Bullet 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Bullet 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Bullet 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Number 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Number 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Number 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Number 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Title\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Closing\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Signature\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" UnhideWhenUsed=\"false\" Name=\"Default Paragraph Font\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text Indent\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Continue\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Continue 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Continue 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Continue 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"List Continue 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Message Header\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Subtitle\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Salutation\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Date\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text First Indent\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text First Indent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Note Heading\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text Indent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Body Text Indent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Block Text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Hyperlink\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"FollowedHyperlink\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Strong\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" QFormat=\"true\" Name=\"Emphasis\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"document Map\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Plain Text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"E-mail Signature\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Normal (Web)\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Acronym\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Address\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Cite\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Code\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Definition\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Keyboard\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Preformatted\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Sample\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML Typewriter\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"HTML variable\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" UnhideWhenUsed=\"false\" Name=\"Normal Table\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"annotation subject\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"No List\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"1 \/ a \/ i\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"1 \/ 1.1 \/ 1.1.1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"Article \/ Section\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Simple 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Simple 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Simple 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Classic 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Classic 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Classic 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Classic 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Colorful 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Colorful 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Colorful 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Columns 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Columns 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Columns 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Columns 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Columns 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 7\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid 8\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 7\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table List 8\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table 3D effects 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table 3D effects 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table 3D effects 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Contemporary\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Elegant\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Professional\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Subtle 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Subtle 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Web 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Web 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Web 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Balloon Text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Grid\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"0\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Table Theme\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"Placeholder Text\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"No Spacing\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"List Paragraph\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"Quote\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"99\" SemiHidden=\"false\" Name=\"Intense Quote\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 1\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 2\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 3\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 4\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 5\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"60\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Shading Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"61\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light List Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"62\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Light Grid Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"63\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 1 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"64\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Shading 2 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"65\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 1 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"66\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium List 2 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"67\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 1 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"68\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 2 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"69\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Medium Grid 3 Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"70\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Dark List Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"71\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Shading Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"72\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful List Accent 6\" ><\/w:LsdException>"); document.writeln("<w:LsdException Locked=\"false\" Priority=\"73\" SemiHidden=\"false\" UnhideWhenUsed=\"false\" Name=\"Colorful Grid Accent 6\" ><\/w:LsdException>"); document.writeln("<\/w:LatentStyles><\/xml><![endif]--><style>"); document.writeln("@font-face{"); document.writeln("font-family:\"Times New Roman\";"); document.writeln("}"); document.writeln(""); document.writeln("@font-face{"); document.writeln("font-family:\"宋体\";"); document.writeln("}"); document.writeln(""); document.writeln("@font-face{"); document.writeln("font-family:\"Calibri\";"); document.writeln("}"); document.writeln(""); document.writeln("@font-face{"); document.writeln("font-family:\"Wingdings\";"); document.writeln("}"); document.writeln(""); document.writeln("@font-face{"); document.writeln("font-family:\"微软雅黑\";"); document.writeln("}"); document.writeln(""); document.writeln("p.MsoNormal{"); document.writeln("mso-style-name:正文;"); document.writeln("mso-style-parent:\"\";"); document.writeln("margin:0pt;"); document.writeln("margin-bottom:.0001pt;"); document.writeln("mso-pagination:none;"); document.writeln("text-align:justify;"); document.writeln("text-justify:inter-ideograph;"); document.writeln("font-family:Calibri;"); document.writeln("mso-fareast-font-family:宋体;"); document.writeln("mso-bidi-font-family:\'Times New Roman\';"); document.writeln("font-size:10.5000pt;"); document.writeln("mso-font-kerning:1.0000pt;"); document.writeln("}"); document.writeln(""); document.writeln("span.10{"); document.writeln("font-family:Calibri;"); document.writeln("}"); document.writeln(""); document.writeln("span.msoIns{"); document.writeln("mso-style-type:export-only;"); document.writeln("mso-style-name:\"\";"); document.writeln("text-decoration:underline;"); document.writeln("text-underline:single;"); document.writeln("color:blue;"); document.writeln("}"); document.writeln(""); document.writeln("span.msoDel{"); document.writeln("mso-style-type:export-only;"); document.writeln("mso-style-name:\"\";"); document.writeln("text-decoration:line-through;"); document.writeln("color:red;"); document.writeln("}"); document.writeln(""); document.writeln("table.MsoNormalTable{"); document.writeln("mso-style-name:普通表格;"); document.writeln("mso-style-parent:\"\";"); document.writeln("mso-style-noshow:yes;"); document.writeln("mso-tstyle-rowband-size:0;"); document.writeln("mso-tstyle-colband-size:0;"); document.writeln("mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;"); document.writeln("mso-para-margin:0pt;"); document.writeln("mso-para-margin-bottom:.0001pt;"); document.writeln("mso-pagination:widow-orphan;"); document.writeln("font-family:\'Times New Roman\';"); document.writeln("font-size:10.0000pt;"); document.writeln("mso-ansi-language:#0400;"); document.writeln("mso-fareast-language:#0400;"); document.writeln("mso-bidi-language:#0400;"); document.writeln("}"); document.writeln(""); document.writeln("table.MsoTableGrid{"); document.writeln("mso-style-name:网格型;"); document.writeln("mso-tstyle-rowband-size:0;"); document.writeln("mso-tstyle-colband-size:0;"); document.writeln("mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt;"); document.writeln("mso-border-top-alt:0.5000pt solid windowtext;"); document.writeln("mso-border-left-alt:0.5000pt solid windowtext;"); document.writeln("mso-border-bottom-alt:0.5000pt solid windowtext;"); document.writeln("mso-border-right-alt:0.5000pt solid windowtext;"); document.writeln("mso-border-insideh:0.5000pt solid windowtext;"); document.writeln("mso-border-insidev:0.5000pt solid windowtext;"); document.writeln("mso-para-margin:0pt;"); document.writeln("mso-para-margin-bottom:.0001pt;"); document.writeln("mso-pagination:none;"); document.writeln("text-align:justify;"); document.writeln("text-justify:inter-ideograph;"); document.writeln("font-family:\'Times New Roman\';"); document.writeln("font-size:10.0000pt;"); document.writeln("mso-ansi-language:#0400;"); document.writeln("mso-fareast-language:#0400;"); document.writeln("mso-bidi-language:#0400;"); document.writeln("}"); document.writeln("@page{mso-page-border-surround-header:no;"); document.writeln(" mso-page-border-surround-footer:no;}@page Section0{"); document.writeln("margin-top:2.8500pt;"); document.writeln("margin-bottom:2.8500pt;"); document.writeln("margin-left:2.8500pt;"); document.writeln("margin-right:2.8500pt;"); document.writeln("size:737.0000pt 1043.1500pt;"); document.writeln("layout-grid:15.6000pt;"); document.writeln("mso-header-margin:42.5500pt;"); document.writeln("mso-footer-margin:49.6000pt;"); document.writeln("}"); document.writeln("div.Section0{page:Section0;}<\/style><\/head><body style=\"tab-interval:21pt;text-justify-trim:punctuation;\" ><!--Startfragment--><div class=\"Section0\" style=\"layout-grid:15.6000pt;\" ><div align=center ><table class=MsoTableGrid border=1 cellspacing=0 style=\"border-collapse:collapse;border:none;mso-border-left-alt:0.5000pt solid rgb(255,0,0);"); document.writeln("mso-border-top-alt:0.5000pt solid rgb(255,0,0);mso-border-right-alt:0.5000pt solid rgb(255,0,0);mso-border-bottom-alt:0.5000pt solid rgb(255,0,0);"); document.writeln("mso-border-insideh:0.5000pt solid rgb(255,0,0);mso-border-insidev:0.5000pt solid rgb(255,0,0);mso-padding-alt:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;\" ><tr style=\"height:67.6000pt;\" ><td width=127 valign=center style=\"width:95.7000pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:1.0000pt solid rgb(255,0,0);"); document.writeln("mso-border-left-alt:0.5000pt solid rgb(255,0,0);border-right:1.0000pt solid rgb(255,0,0);mso-border-right-alt:0.5000pt solid rgb(255,0,0);"); document.writeln("border-top:1.0000pt solid rgb(255,0,0);mso-border-top-alt:0.5000pt solid rgb(255,0,0);border-bottom:1.0000pt solid rgb(255,0,0);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(255,0,0);background:rgb(255,0,0);\" ><p class=MsoNormal align=center style=\"text-align:center;\" ><b><span style=\"font-family:微软雅黑;color:rgb(255,255,255);font-weight:bold;"); document.writeln("font-size:36.0000pt;mso-font-kerning:1.0000pt;\" ><font face=\"微软雅黑\" >"); document.writeln("<!------推荐图片添加编辑开始------>"); document.writeln("<CENTER>"); document.writeln("<!------此段代码隐藏开始<a href=\"\";><img src = \"https:\/\/thumbnail0.baidupcs.com\/thumbnail\/0e8485f8aje3c877d431a8fe6856573d?fid=1008748444-250528-969805671072256&time=1725602400&rt=sh&sign=FDTAER-DCb740ccc5511e5e8fedcff06b081203-RTl4JQ9PNfySltj1VTm6XEGDTao%3D&expires=8h&chkv=0&chkbd=0&chkpc=&dp-logid=24396364569271840&dp-callid=0&file_type=0&size=c710_u400&quality=100&vuk=-&ft=video\"; width=\"98\" height=\"90\"><\/a>代码隐藏结束------>"); document.writeln("<\/CENTER>"); document.writeln(""); document.writeln(" <p align=\"center\"><font color=\"#FFFFFF2\"><b><blink><font size=\"7\"><font face=\"Broadway BT\"><!------推荐------><\/font>"); document.writeln(""); document.writeln("<!------推荐图片添加编辑结束------>"); document.writeln("<\/font><\/span><\/b><span style=\"font-family:Calibri;mso-fareast-font-family:宋体;mso-bidi-font-family:\'Times New Roman\';"); document.writeln("font-size:10.5000pt;mso-font-kerning:1.0000pt;\" ><o:p><\/o:p><\/span><\/p><\/td><td width=910 valign=center style=\"width:682.5500pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:1.0000pt solid rgb(255,0,0);"); document.writeln("mso-border-left-alt:0.5000pt solid rgb(255,0,0);border-right:1.0000pt solid rgb(255,0,0);mso-border-right-alt:0.5000pt solid rgb(255,0,0);"); document.writeln("border-top:1.0000pt solid rgb(255,0,0);mso-border-top-alt:0.5000pt solid rgb(255,0,0);border-bottom:1.0000pt solid rgb(255,0,0);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(255,0,0);background:rgb(215,215,215);\" ><p class=MsoNormal align=center style=\"text-align:center;\" ><span style=\"font-family:微软雅黑;color:rgb(0,32,96);font-weight:normal;"); document.writeln("font-size:36.0000pt;mso-font-kerning:1.0000pt;\" ><font face=\"微软雅黑\" >"); document.writeln("<!------推荐内容文字添加编辑开始------>"); document.writeln("<CENTER>"); document.writeln("<!----此段代码隐藏开始<a href=\"http:\/\/yjt.shaanxi.gov.cn\/pckhdgyzt\/xxgcddesjszqhjs\/\";><img src = \"https:\/\/thumbnail0.baidupcs.com\/thumbnail\/a837503efq94ec5b279709dd400a92f9?fid=1008748444-250528-1048805019089118&time=1725606000&rt=sh&sign=FDTAER-DCb740ccc5511e5e8fedcff06b081203-QsyFcwbCiEfy5CN7bMy%2FFU20HKg%3D&expires=8h&chkv=0&chkbd=0&chkpc=&dp-logid=24946497116153108&dp-callid=0&file_type=0&size=c710_u400&quality=100&vuk=-&ft=video"); document.writeln("\"; width=\"896\" height=\"90\"><\/a>代码隐藏结束------>"); document.writeln("<\/CENTER>"); document.writeln(" <p align=\"center\"><a href=\"http:\/\/yjt.shaanxi.gov.cn\/pckhdgyzt\/xxgcddesjszqhjs\/\";><font color=\"#0000FF5\"><b><blink><font size=\"5\"><font face=\"Broadway BT\">学习贯彻党的二十届三中全会精神<\/font><font face=\"宋体\"><!------细体文字添加------><\/font>"); document.writeln("<!------推荐内容文字添加编辑结束------>"); document.writeln("<\/font><\/span><span style=\"font-family:Calibri;mso-fareast-font-family:宋体;mso-bidi-font-family:\'Times New Roman\';"); document.writeln("font-size:10.5000pt;mso-font-kerning:1.0000pt;\" ><o:p><\/o:p><\/span><\/p><\/td><td width=128 valign=center style=\"width:96.5000pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:1.0000pt solid rgb(255,0,0);"); document.writeln("mso-border-left-alt:0.5000pt solid rgb(255,0,0);border-right:1.0000pt solid rgb(255,0,0);mso-border-right-alt:0.5000pt solid rgb(255,0,0);"); document.writeln("border-top:1.0000pt solid rgb(255,0,0);mso-border-top-alt:0.5000pt solid rgb(255,0,0);border-bottom:1.0000pt solid rgb(255,0,0);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(255,0,0);background:rgb(255,0,0);\" ><p class=MsoNormal align=center style=\"text-align:center;\" ><span style=\"font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;"); document.writeln("mso-bidi-font-family:\'Times New Roman\';color:rgb(12,12,12);font-weight:normal;"); document.writeln("font-size:12.0000pt;mso-font-kerning:1.0000pt;\" ><font face=\"宋体\" >"); document.writeln("<!------内容待添加------>"); document.writeln("<\/font><\/span><span style=\"font-family:Calibri;mso-fareast-font-family:宋体;mso-bidi-font-family:\'Times New Roman\';"); document.writeln("font-size:10.5000pt;mso-font-kerning:1.0000pt;\" ><o:p><\/o:p><\/span><\/p><\/td><\/tr><tr style=\"height:6.1000pt;\" ><td width=1166 valign=center colspan=3 style=\"width:874.7500pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:none;"); document.writeln("mso-border-left-alt:none;border-right:none;mso-border-right-alt:none;"); document.writeln("border-top:none;mso-border-top-alt:0.5000pt solid rgb(255,0,0);border-bottom:1.0000pt solid rgb(0,112,192);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(0,112,192);background:rgb(255,255,255);\" ><p class=MsoNormal ><span style=\"font-family:Calibri;mso-fareast-font-family:宋体;mso-bidi-font-family:\'Times New Roman\';"); document.writeln("font-size:5.5000pt;mso-font-kerning:1.0000pt;\" ><o:p> <\/o:p><\/span><\/p><\/td><\/tr><tr style=\"height:25.2000pt;\" ><td width=127 valign=center style=\"width:95.7000pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:1.0000pt solid rgb(0,112,192);"); document.writeln("mso-border-left-alt:0.5000pt solid rgb(0,112,192);border-right:1.0000pt solid rgb(0,112,192);mso-border-right-alt:0.5000pt solid rgb(0,112,192);"); document.writeln("border-top:none;mso-border-top-alt:0.5000pt solid rgb(0,112,192);border-bottom:1.0000pt solid rgb(0,112,192);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(0,112,192);background:rgb(0,112,192);\" ><p class=MsoNormal align=center style=\"text-align:center;\" ><b><span style=\"font-family:微软雅黑;color:rgb(255,255,255);font-weight:bold;"); document.writeln("font-size:18.0000pt;mso-font-kerning:1.0000pt;\" ><font face=\"微软雅黑\" >"); document.writeln("<!------通告图片添加编辑开始------>"); document.writeln(" <p align=\"center\"><font color=\"#FFFFFF2\"><b><blink><font size=\"7\"><font face=\"Broadway BT\"><!----通告----><\/font>"); document.writeln("<!------通告图片添加编辑结束------>"); document.writeln("<\/font><\/span><\/b><b><span style=\"font-family:微软雅黑;color:rgb(255,255,255);font-weight:bold;"); document.writeln("font-size:30.0000pt;mso-font-kerning:1.0000pt;\" ><o:p><\/o:p><\/span><\/b><\/p><\/td><td width=910 valign=center style=\"width:682.5500pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:none;"); document.writeln("mso-border-left-alt:none;border-right:1.0000pt solid rgb(0,112,192);mso-border-right-alt:0.5000pt solid rgb(0,112,192);"); document.writeln("border-top:1.0000pt solid rgb(0,112,192);mso-border-top-alt:0.5000pt solid rgb(0,112,192);border-bottom:1.0000pt solid rgb(0,112,192);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(0,112,192);background:rgb(215,215,215);\" ><p class=MsoNormal align=center style=\"text-align:center;\" ><span style=\"font-family:微软雅黑;color:rgb(0,32,96);font-weight:normal;"); document.writeln("font-size:18.0000pt;mso-font-kerning:1.0000pt;\" ><font face=\"微软雅黑\" >"); document.writeln("<!------滚动文字内容编辑开始------>"); document.writeln("<marquee>站内通告:欢迎访问本网站,所有内容仅供参考,不对法律法规负责,请谨慎!<\/marquee>"); document.writeln("<!------滚动文字内容编辑结束------>"); document.writeln("<\/font><\/span><span style=\"font-family:微软雅黑;color:rgb(0,32,96);font-weight:normal;"); document.writeln("font-size:30.0000pt;mso-font-kerning:1.0000pt;\" ><o:p><\/o:p><\/span><\/p><\/td><td width=128 valign=center style=\"width:96.5000pt;padding:0.0000pt 5.4000pt 0.0000pt 5.4000pt ;border-left:none;"); document.writeln("mso-border-left-alt:none;border-right:1.0000pt solid rgb(0,112,192);mso-border-right-alt:0.5000pt solid rgb(0,112,192);"); document.writeln("border-top:1.0000pt solid rgb(0,112,192);mso-border-top-alt:0.5000pt solid rgb(0,112,192);border-bottom:1.0000pt solid rgb(0,112,192);"); document.writeln("mso-border-bottom-alt:0.5000pt solid rgb(0,112,192);background:rgb(0,112,192);\" ><p class=MsoNormal align=center style=\"text-align:center;\" ><span style=\"font-family:宋体;mso-ascii-font-family:Calibri;mso-hansi-font-family:Calibri;"); document.writeln("mso-bidi-font-family:\'Times New Roman\';font-size:12.0000pt;mso-font-kerning:1.0000pt;\" ><font face=\"宋体\" >"); document.writeln(""); document.writeln("<!------内容待添加------>"); document.writeln("<\/font><\/span><span style=\"font-family:Calibri;mso-fareast-font-family:宋体;mso-bidi-font-family:\'Times New Roman\';"); document.writeln("font-size:10.5000pt;mso-font-kerning:1.0000pt;\" ><o:p><\/o:p><\/span><\/p><\/td><\/tr><\/table><\/div><p class=MsoNormal align=justify style=\"text-align:justify;text-justify:inter-ideograph;\" ><span style=\"mso-spacerun:\'yes\';font-family:Calibri;mso-fareast-font-family:宋体;"); document.writeln("mso-bidi-font-family:\'Times New Roman\';font-size:1.0000pt;mso-font-kerning:1.0000pt;\" ><o:p> <\/o:p><\/span><\/p><\/div><!--Endfragment--><\/body><\/html>"); document.writeln("<!------通知公告结束------>"); break; //前台非首页右侧下380*任意高度 case "tr8": document.writeln("<!------随机阅读下面小广告链接003------!>"); document.writeln("<CENTER><a href=\"https:\/\/www.mem.gov.cn\/xw\/ztzl\/2024\/rzxxxcgcddesjszqhjs\/\";><img src = \"https:\/\/www.mem.gov.cn\/xw\/ztzl\/202407\/W020240729516125415837.jpg\"; width=\"380\" height=\"70\"><\/a><\/CENTER>"); break; //前台非首页右侧中380*任意高度 case "tr7": document.writeln("<!------随机阅读上面小广告链接002------!>"); document.writeln("<CENTER><a href=\"https:\/\/www.mem.gov.cn\/xw\/ztzl\/2024\/aqsczbgjsnxd\/\";><img src = \"https:\/\/www.mem.gov.cn\/xw\/ztzl\/202404\/W020240407578485935072.png\"; width=\"380\" height=\"70\"><\/a><\/CENTER>"); document.writeln(""); break; //前台非首页右侧上380*任意高度 case "tr6": document.writeln("<!------最新文章上面小广告链接001------!>"); document.writeln("<!------图1------>"); document.writeln("<CENTER><a href=\"https:\/\/flk.npc.gov.cn\/index.html\";><img src = \"http:\/\/gov.slxykjw.com\/anquan\/upfiles\/image\/202409\/20240926090955265526.png\"; width=\"380\" height=\"70\"><\/a><\/CENTER>"); document.writeln(""); document.writeln("<!------图2------>"); document.writeln("<CENTER><a href=\"http:\/\/1.85.55.225\/sso\/login?service=http:\/\/61.185.238.252:33712\/auth\/thirdAuth\/getAuthorizationCode\";><img src = \"http:\/\/yjt.shaanxi.gov.cn\/yjtpc\/images\/yingjiguanlipingtai.png\"; width=\"380\" height=\"70\"><\/a><\/CENTER>"); document.writeln(""); document.writeln("<!------图3------>"); document.writeln("<CENTER><a href=\"https:\/\/flk.npc.gov.cn\/detail2.html?ZmY4MDgxODE3YTY2YjgxNjAxN2E3OTU2YjdkYjBhZDQ%3D\";><img src = \"http:\/\/gov.slxykjw.com\/anquan\/upfiles\/image\/202409\/2024092515350366366.png\"; width=\"380\" height=\"70\"><\/a><\/CENTER>"); break; //整站底部1140*任意高度 case "tr5": document.writeln("<CENTER><li><a href=\"http:\/\/yjt.shaanxi.gov.cn\/pckhdgyzt\/sxsaqsczbgjsnxd\/\" target=\"_blank\"><img src=\"http:\/\/yjt.shaanxi.gov.cn\/\/upload\/resources\/image\/2024\/04\/08\/75646_1110x85c.jpg\"; width=\"1200\" height=\"120\"><\/a><\/li><\/CENTER>"); document.writeln(""); document.writeln("<!------以下为空白条分割条图片------>"); document.writeln("<CENTER><img src = \"images\/0001.jpg\"; width=\"1140\" height=\"6\"><\/a><\/CENTER>"); document.writeln(""); document.writeln("<CENTER><li><a href=\"\" target=\"_blank\"><img src=\"\/shuoming\/01.files\/01176.png\"; width=\"1140\" height=\"220\"><\/a><\/li><\/CENTER>"); document.writeln(""); document.writeln(""); document.writeln(""); document.writeln(""); document.writeln(" "); break; //首页滚动图片下方1200*任意高度 case "tr4": document.writeln("<CENTER><a href=\"http:\/\/yjt.shaanxi.gov.cn\/pckhdgyzt\/xxgcddesjszqhjs\/\" target=\"_blank\"><img src = \"http:\/\/yjt.shaanxi.gov.cn\/upload\/resources\/image\/2024\/08\/15\/79381_1110x85c.jpg\"; width=\"1200\" height=\"120\"><\/a><\/CENTER>"); break; //整站导航下方1-1200*任意高度 case "tr3": document.writeln("<CENTER><a href=\"http:\/\/yjt.shaanxi.gov.cn\/pckhdgyzt\/xxgcxjpxsdzgtsshzysxztjy\/\";><img src = \"http:\/\/yjt.shaanxi.gov.cn\/upload\/resources\/image\/2023\/04\/24\/69994.jpg\"; width=\"1200\" height=\"120\"><\/a><\/CENTER>"); document.writeln("<!------以下为空白条分割条图片------>"); document.writeln(""); document.writeln("<CENTER><img src = \"images\/0001.jpg\"; width=\"1140\" height=\"3\"><\/a><\/CENTER>"); document.writeln("<CENTER><img src = \"images\/2002-1.jpg\"; width=\"1140\" height=\"120\"><\/a><\/CENTER>"); document.writeln("<!------以下为空白条分割条图片------>"); document.writeln(""); document.writeln("<CENTER><img src = \"images\/0001.jpg\"; width=\"1140\" height=\"3\"><\/a><\/CENTER>"); document.writeln(""); break; //LOGO后面300*142 case "tr1": document.writeln("<CENTER><img src = \"http:\/\/gov.slxykjw.com\/anquan\/upfiles\/image\/202409\/20240927114619791979.jpg\"; width=\"830\" height=\"142\"><\/a><\/CENTER>"); document.writeln("<!-----有效显示尺寸,用指定图片改53*142----->"); break; } }