
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c1b03c818c915b4b21ce22f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ab1df8006c550f9466463fd4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_04c6687cb30c001255bf52de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249923,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-87.839965px;}
.v1{vertical-align:-81.359967px;}
.v4{vertical-align:-79.919968px;}
.v2{vertical-align:-76.319969px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.145647px;}
.ls2{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.295999px;}
.ls3{letter-spacing:4.751998px;}
.ls6{letter-spacing:15.119994px;}
.ls5{letter-spacing:19.619992px;}
.ls4{letter-spacing:799.919680px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.431993px;}
.ws3{word-spacing:-18.145639px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-3.239999px;}
._2{margin-left:-2.231999px;}
._0{margin-left:-1.209484px;}
._1{width:1.295999px;}
._3{width:2.591999px;}
._4{width:3.599999px;}
._9{width:4.751998px;}
._5{width:5.759998px;}
._6{width:7.199997px;}
._7{width:8.351997px;}
._8{width:9.359996px;}
._b{width:10.583996px;}
._c{width:12.167995px;}
._f{width:14.831994px;}
._e{width:15.983994px;}
._d{width:16.991993px;}
._14{width:23.039991px;}
._17{width:25.919990px;}
._16{width:27.071989px;}
._10{width:28.799988px;}
._13{width:31.391987px;}
._15{width:43.401467px;}
._11{width:102.671959px;}
._12{width:295.919882px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.759983px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.459977px;}
.y34{bottom:127.020249px;}
.y32{bottom:147.359941px;}
.y33{bottom:147.360241px;}
.y31{bottom:168.059933px;}
.y30{bottom:208.919916px;}
.y2f{bottom:230.159908px;}
.y2e{bottom:250.859900px;}
.y2d{bottom:271.199892px;}
.y2c{bottom:291.899883px;}
.y2b{bottom:312.599875px;}
.y2a{bottom:333.119867px;}
.y29{bottom:353.819858px;}
.y28{bottom:394.679842px;}
.y27{bottom:415.919834px;}
.y26{bottom:436.619825px;}
.y25{bottom:456.959817px;}
.y24{bottom:478.019809px;}
.y23{bottom:498.719801px;}
.y22{bottom:519.419792px;}
.y21{bottom:540.119784px;}
.y20{bottom:560.819776px;}
.y1f{bottom:581.519767px;}
.y1e{bottom:602.219759px;}
.y1d{bottom:622.379751px;}
.y1c{bottom:643.619743px;}
.y1b{bottom:664.319734px;}
.y1a{bottom:685.019726px;}
.y19{bottom:705.719718px;}
.y18{bottom:726.419709px;}
.y17{bottom:747.119701px;}
.y16{bottom:767.819693px;}
.y15{bottom:788.519685px;}
.y41{bottom:809.219676px;}
.y40{bottom:829.379668px;}
.y14{bottom:850.799660px;}
.y13{bottom:871.499651px;}
.y12{bottom:892.199643px;}
.y11{bottom:912.899635px;}
.y10{bottom:933.599627px;}
.yf{bottom:952.679619px;}
.y3f{bottom:953.579619px;}
.ye{bottom:967.799613px;}
.y3e{bottom:974.999610px;}
.yd{bottom:982.199607px;}
.yc{bottom:994.979602px;}
.y3d{bottom:995.699602px;}
.yb{bottom:1016.039594px;}
.y3c{bottom:1016.399593px;}
.ya{bottom:1036.379585px;}
.y3b{bottom:1037.099585px;}
.y9{bottom:1057.439577px;}
.y3a{bottom:1057.799577px;}
.y8{bottom:1077.959569px;}
.y39{bottom:1078.499569px;}
.y7{bottom:1098.839560px;}
.y38{bottom:1099.199560px;}
.y6{bottom:1119.539552px;}
.y37{bottom:1119.899552px;}
.y5{bottom:1139.879544px;}
.y36{bottom:1140.239544px;}
.y4{bottom:1162.199535px;}
.y3{bottom:1177.499529px;}
.y35{bottom:1194.239522px;}
.y1{bottom:1194.599522px;}
.h6{height:40.985140px;}
.h1{height:58.651148px;}
.h2{height:70.628878px;}
.h4{height:70.664034px;}
.h3{height:72.562471px;}
.h5{height:76.317157px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:118.619953px;}
.x99{left:127.259949px;}
.xc2{left:132.299947px;}
.x9a{left:135.359946px;}
.x129{left:137.339945px;}
.x198{left:138.419945px;}
.x16b{left:140.219944px;}
.xb0{left:141.299943px;}
.x15e{left:144.359942px;}
.x192{left:145.619942px;}
.x9b{left:147.239941px;}
.x137{left:148.859940px;}
.xb1{left:150.299940px;}
.x1e{left:152.099939px;}
.x54{left:153.899938px;}
.xef{left:157.319937px;}
.x130{left:159.299936px;}
.xb2{left:160.379936px;}
.xf0{left:162.179935px;}
.x185{left:163.439935px;}
.x141{left:164.519934px;}
.x55{left:165.599934px;}
.x14a{left:167.219933px;}
.x131{left:168.299933px;}
.x142{left:169.379932px;}
.x2{left:170.999932px;}
.xe0{left:172.619931px;}
.x1f{left:174.059930px;}
.xfc{left:175.499930px;}
.xe1{left:177.479929px;}
.x19f{left:178.559929px;}
.x39{left:179.999928px;}
.x14b{left:181.259927px;}
.xd6{left:183.599927px;}
.xb3{left:185.399926px;}
.x3{left:186.839925px;}
.xc3{left:188.099925px;}
.x121{left:189.899924px;}
.x3a{left:191.159924px;}
.x56{left:192.959923px;}
.x195{left:194.219922px;}
.x84{left:195.299922px;}
.x18b{left:198.539921px;}
.x57{left:199.799920px;}
.xc4{left:200.879920px;}
.x170{left:202.859919px;}
.x175{left:203.939918px;}
.x85{left:205.019918px;}
.x138{left:206.279917px;}
.x146{left:207.539917px;}
.x190{left:209.159916px;}
.x4{left:210.959916px;}
.x113{left:212.039915px;}
.x167{left:213.479915px;}
.xc5{left:214.919914px;}
.x155{left:216.179914px;}
.x5{left:218.159913px;}
.xd7{left:219.779912px;}
.xfd{left:221.579911px;}
.x143{left:222.659911px;}
.xd8{left:224.639910px;}
.x18c{left:225.719910px;}
.xb4{left:226.979909px;}
.x10b{left:228.599909px;}
.xe2{left:230.759908px;}
.x168{left:232.379907px;}
.xb5{left:233.819906px;}
.x20{left:235.259906px;}
.xf1{left:236.879905px;}
.x19c{left:238.139905px;}
.x3b{left:239.219904px;}
.x102{left:240.479904px;}
.x9c{left:241.559903px;}
.xe3{left:242.819903px;}
.x58{left:244.439902px;}
.x103{left:245.519902px;}
.x139{left:246.779901px;}
.x14c{left:248.579901px;}
.x132{left:250.019900px;}
.x10c{left:251.819899px;}
.x9d{left:253.439899px;}
.x13a{left:254.879898px;}
.x153{left:256.319897px;}
.x86{left:257.939897px;}
.x59{left:259.379896px;}
.x6{left:260.639896px;}
.x196{left:261.719895px;}
.x21{left:263.339895px;}
.x3c{left:265.679894px;}
.x133{left:268.919892px;}
.x9e{left:270.179892px;}
.x17e{left:271.259891px;}
.x114{left:273.059891px;}
.x22{left:274.499890px;}
.x197{left:276.119890px;}
.x3d{left:277.559889px;}
.x118{left:279.179888px;}
.x16c{left:280.259888px;}
.xfe{left:282.059887px;}
.xc6{left:283.319887px;}
.x16d{left:285.299886px;}
.xb6{left:286.559885px;}
.xc7{left:288.359885px;}
.x186{left:290.159884px;}
.xb7{left:291.599883px;}
.x156{left:292.679883px;}
.x104{left:293.759882px;}
.x12a{left:295.379882px;}
.x171{left:297.359881px;}
.xf2{left:298.619881px;}
.x119{left:300.239880px;}
.xc8{left:301.319879px;}
.x176{left:303.299879px;}
.x115{left:304.919878px;}
.x7{left:306.719877px;}
.x3e{left:307.979877px;}
.x5a{left:310.859876px;}
.x23{left:312.299875px;}
.x13b{left:314.279874px;}
.x105{left:315.719874px;}
.x15f{left:317.339873px;}
.x8{left:318.779872px;}
.x3f{left:319.859872px;}
.x13c{left:321.119872px;}
.xb8{left:322.739871px;}
.x79{left:325.079870px;}
.x134{left:327.059869px;}
.x1a0{left:328.859868px;}
.x24{left:329.939868px;}
.x5b{left:332.279867px;}
.x147{left:333.359867px;}
.xf3{left:334.439866px;}
.x73{left:336.419865px;}
.x148{left:338.579865px;}
.x25{left:339.839864px;}
.x187{left:341.279863px;}
.xc9{left:342.539863px;}
.x87{left:344.879862px;}
.x157{left:346.499861px;}
.x9f{left:347.579861px;}
.xd9{left:349.019860px;}
.x74{left:350.459860px;}
.x26{left:352.799859px;}
.xca{left:354.599858px;}
.x40{left:356.759857px;}
.x9{left:357.839857px;}
.xf4{left:360.359856px;}
.xa0{left:361.799855px;}
.x122{left:363.059855px;}
.xa{left:364.679854px;}
.x41{left:366.659853px;}
.x88{left:367.739853px;}
.x5c{left:369.539852px;}
.x7a{left:370.619852px;}
.x19b{left:371.699851px;}
.x89{left:372.779851px;}
.x165{left:374.939850px;}
.x75{left:376.199850px;}
.x14d{left:378.719849px;}
.xda{left:379.979848px;}
.xa1{left:381.779847px;}
.x7b{left:382.859847px;}
.x5d{left:384.119846px;}
.x42{left:386.639845px;}
.x10d{left:387.719845px;}
.x27{left:388.799844px;}
.x183{left:390.599844px;}
.xf5{left:392.039843px;}
.x28{left:393.299843px;}
.x177{left:394.379842px;}
.x7c{left:395.819842px;}
.xcb{left:397.619841px;}
.x43{left:398.699841px;}
.xb{left:400.679840px;}
.x8a{left:401.759839px;}
.x106{left:403.199839px;}
.x29{left:405.359838px;}
.x14e{left:406.799837px;}
.xf6{left:407.879837px;}
.x188{left:409.319836px;}
.x5e{left:411.479835px;}
.x7d{left:412.919835px;}
.xff{left:414.179834px;}
.x123{left:415.799834px;}
.x17f{left:417.059833px;}
.xa2{left:418.859832px;}
.x2a{left:420.839832px;}
.xdb{left:422.099831px;}
.x135{left:423.539831px;}
.x44{left:425.339830px;}
.x14f{left:426.419829px;}
.xa3{left:427.679829px;}
.x144{left:430.199828px;}
.xc{left:431.279827px;}
.x76{left:433.259827px;}
.xa4{left:434.519826px;}
.x72{left:435.959826px;}
.x2b{left:437.039825px;}
.x8b{left:438.479825px;}
.xa5{left:439.919824px;}
.x5f{left:441.359823px;}
.xd{left:443.339823px;}
.x11a{left:444.419822px;}
.x124{left:446.399821px;}
.x45{left:448.379821px;}
.x60{left:449.459820px;}
.x158{left:450.899820px;}
.x199{left:453.059819px;}
.x61{left:454.319818px;}
.x159{left:455.939818px;}
.xf7{left:457.739817px;}
.x107{left:459.179816px;}
.x46{left:460.439816px;}
.xe4{left:462.059815px;}
.x12b{left:463.319815px;}
.xf8{left:464.579814px;}
.x108{left:466.019814px;}
.x62{left:467.819813px;}
.x7e{left:469.259812px;}
.xe{left:471.959811px;}
.x11b{left:473.399811px;}
.x77{left:474.659810px;}
.x47{left:475.919810px;}
.x63{left:477.359809px;}
.x180{left:478.979808px;}
.xa6{left:480.059808px;}
.x7f{left:481.319807px;}
.x125{left:482.399807px;}
.xf{left:484.019806px;}
.x2c{left:487.259805px;}
.x10{left:488.519805px;}
.x18d{left:490.859804px;}
.xa7{left:492.299803px;}
.x2d{left:494.099802px;}
.xe5{left:496.259801px;}
.xa8{left:497.339801px;}
.xb9{left:498.959800px;}
.x11{left:500.579800px;}
.xcc{left:502.559799px;}
.xba{left:503.999798px;}
.x1a1{left:506.159798px;}
.x11c{left:507.419797px;}
.x116{left:508.859796px;}
.x10e{left:509.939796px;}
.x181{left:511.019796px;}
.x12{left:513.539795px;}
.x48{left:514.619794px;}
.x80{left:515.699794px;}
.xdc{left:516.779793px;}
.xbb{left:518.039793px;}
.x8c{left:519.299792px;}
.x18e{left:520.559792px;}
.xdd{left:521.819791px;}
.xa9{left:523.259791px;}
.x8d{left:524.339790px;}
.x18f{left:525.599790px;}
.x49{left:526.679789px;}
.x81{left:527.759789px;}
.x64{left:530.999788px;}
.xcd{left:532.079787px;}
.x2e{left:533.159787px;}
.x15a{left:534.239786px;}
.x13{left:535.319786px;}
.x178{left:536.939785px;}
.x150{left:538.559785px;}
.x4a{left:539.639784px;}
.x82{left:541.079784px;}
.x11d{left:542.159783px;}
.x78{left:543.239783px;}
.xde{left:544.679782px;}
.xbc{left:546.119782px;}
.xf9{left:547.199781px;}
.x14{left:548.279781px;}
.x11e{left:550.259780px;}
.x17a{left:552.959779px;}
.x83{left:554.759778px;}
.x65{left:556.199778px;}
.x17b{left:557.999777px;}
.x15{left:560.339776px;}
.x15b{left:561.419775px;}
.x10f{left:563.219775px;}
.xce{left:564.659774px;}
.x2f{left:565.919774px;}
.x8e{left:568.439773px;}
.x66{left:570.059772px;}
.xcf{left:571.499771px;}
.x19d{left:572.579771px;}
.x4b{left:573.839770px;}
.x8f{left:575.279770px;}
.x13d{left:577.259769px;}
.x145{left:578.519769px;}
.x67{left:579.779768px;}
.xaa{left:581.759767px;}
.x160{left:583.199767px;}
.x16{left:584.279766px;}
.x13e{left:585.359766px;}
.x4c{left:586.619765px;}
.x68{left:588.059765px;}
.x11f{left:589.499764px;}
.x109{left:590.759764px;}
.xe6{left:591.839763px;}
.x90{left:593.279763px;}
.x69{left:594.719762px;}
.x17{left:596.159762px;}
.x91{left:597.959761px;}
.x30{left:599.039760px;}
.x100{left:601.559759px;}
.x4d{left:603.179759px;}
.xbd{left:604.619758px;}
.x16e{left:605.879758px;}
.xd0{left:607.139757px;}
.x6a{left:609.119756px;}
.x31{left:610.919756px;}
.x19a{left:611.999755px;}
.x18{left:613.619755px;}
.x4e{left:615.239754px;}
.x154{left:616.319753px;}
.xab{left:617.399753px;}
.xd1{left:619.019752px;}
.x19e{left:620.459752px;}
.x126{left:621.719751px;}
.x15c{left:622.979751px;}
.x172{left:624.419750px;}
.x19{left:625.679750px;}
.xd2{left:627.119749px;}
.x32{left:628.379749px;}
.xac{left:629.459748px;}
.x92{left:630.899748px;}
.x4f{left:632.519747px;}
.x6b{left:634.859746px;}
.x13f{left:636.479745px;}
.x161{left:637.919745px;}
.x93{left:638.999744px;}
.xe7{left:640.079744px;}
.x1a{left:641.159744px;}
.x50{left:644.579742px;}
.x193{left:646.019742px;}
.xdf{left:647.099741px;}
.x110{left:648.539741px;}
.x6c{left:649.979740px;}
.x127{left:651.599739px;}
.x1b{left:653.219739px;}
.xbe{left:654.659738px;}
.x173{left:656.819737px;}
.xd3{left:658.079737px;}
.x51{left:660.239736px;}
.x10a{left:661.319735px;}
.x33{left:663.299735px;}
.x1c{left:664.379734px;}
.xe8{left:665.819734px;}
.x189{left:666.899733px;}
.x166{left:667.979733px;}
.x162{left:669.059732px;}
.x34{left:670.319732px;}
.x52{left:672.119731px;}
.xad{left:673.379731px;}
.x6d{left:674.999730px;}
.x136{left:676.079730px;}
.x174{left:677.519729px;}
.x182{left:678.959728px;}
.xd4{left:680.759728px;}
.x163{left:681.839727px;}
.x35{left:683.279727px;}
.x12c{left:685.079726px;}
.x184{left:686.699725px;}
.x194{left:688.319725px;}
.x12d{left:689.939724px;}
.x15d{left:691.559723px;}
.xd5{left:693.359723px;}
.x36{left:695.519722px;}
.x6e{left:696.599721px;}
.x12e{left:697.859721px;}
.xbf{left:699.839720px;}
.x164{left:701.099720px;}
.x1d{left:704.159718px;}
.x6f{left:705.959718px;}
.x53{left:708.119717px;}
.xe9{left:709.559716px;}
.x18a{left:710.819716px;}
.xc0{left:711.899715px;}
.x12f{left:713.519715px;}
.x70{left:715.499714px;}
.x37{left:717.479713px;}
.x17c{left:718.559713px;}
.x71{left:720.179712px;}
.x94{left:721.619711px;}
.x151{left:722.699711px;}
.xea{left:723.779710px;}
.xfa{left:725.759710px;}
.x17d{left:727.199709px;}
.x117{left:728.279709px;}
.x38{left:729.359708px;}
.x111{left:730.799708px;}
.xae{left:731.879707px;}
.xc1{left:734.579706px;}
.x140{left:735.659706px;}
.x152{left:736.739705px;}
.xfb{left:737.819705px;}
.x149{left:739.979704px;}
.xeb{left:741.779703px;}
.x169{left:743.219703px;}
.x95{left:744.479702px;}
.x179{left:745.919702px;}
.x120{left:747.719701px;}
.x101{left:749.879700px;}
.x96{left:751.319699px;}
.xec{left:753.479699px;}
.xaf{left:755.279698px;}
.x16f{left:756.359697px;}
.x16a{left:757.439697px;}
.x191{left:759.599696px;}
.x97{left:760.679696px;}
.xed{left:761.759695px;}
.x112{left:763.019695px;}
.x128{left:764.099694px;}
.x98{left:767.879693px;}
.xee{left:768.959692px;}
@media print{
.v3{vertical-align:-78.079969pt;}
.v1{vertical-align:-72.319971pt;}
.v4{vertical-align:-71.039972pt;}
.v2{vertical-align:-67.839973pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.129464pt;}
.ls2{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls3{letter-spacing:4.223998pt;}
.ls6{letter-spacing:13.439995pt;}
.ls5{letter-spacing:17.439993pt;}
.ls4{letter-spacing:711.039716pt;}
.ws1{word-spacing:-16.383993pt;}
.ws3{word-spacing:-16.129457pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-2.879999pt;}
._2{margin-left:-1.983999pt;}
._0{margin-left:-1.075097pt;}
._1{width:1.152000pt;}
._3{width:2.303999pt;}
._4{width:3.199999pt;}
._9{width:4.223998pt;}
._5{width:5.119998pt;}
._6{width:6.399997pt;}
._7{width:7.423997pt;}
._8{width:8.319997pt;}
._b{width:9.407996pt;}
._c{width:10.815996pt;}
._f{width:13.183995pt;}
._e{width:14.207994pt;}
._d{width:15.103994pt;}
._14{width:20.479992pt;}
._17{width:23.039991pt;}
._16{width:24.063990pt;}
._10{width:25.599990pt;}
._13{width:27.903989pt;}
._15{width:38.579082pt;}
._11{width:91.263963pt;}
._12{width:263.039895pt;}
.fs3{font-size:37.119985pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.186647pt;}
.y34{bottom:112.906888pt;}
.y32{bottom:130.986614pt;}
.y33{bottom:130.986881pt;}
.y31{bottom:149.386607pt;}
.y30{bottom:185.706592pt;}
.y2f{bottom:204.586585pt;}
.y2e{bottom:222.986577pt;}
.y2d{bottom:241.066570pt;}
.y2c{bottom:259.466563pt;}
.y2b{bottom:277.866556pt;}
.y2a{bottom:296.106548pt;}
.y29{bottom:314.506541pt;}
.y28{bottom:350.826526pt;}
.y27{bottom:369.706519pt;}
.y26{bottom:388.106511pt;}
.y25{bottom:406.186504pt;}
.y24{bottom:424.906497pt;}
.y23{bottom:443.306489pt;}
.y22{bottom:461.706482pt;}
.y21{bottom:480.106475pt;}
.y20{bottom:498.506467pt;}
.y1f{bottom:516.906460pt;}
.y1e{bottom:535.306453pt;}
.y1d{bottom:553.226445pt;}
.y1c{bottom:572.106438pt;}
.y1b{bottom:590.506430pt;}
.y1a{bottom:608.906423pt;}
.y19{bottom:627.306416pt;}
.y18{bottom:645.706408pt;}
.y17{bottom:664.106401pt;}
.y16{bottom:682.506394pt;}
.y15{bottom:700.906386pt;}
.y41{bottom:719.306379pt;}
.y40{bottom:737.226372pt;}
.y14{bottom:756.266364pt;}
.y13{bottom:774.666357pt;}
.y12{bottom:793.066349pt;}
.y11{bottom:811.466342pt;}
.y10{bottom:829.866335pt;}
.yf{bottom:846.826328pt;}
.y3f{bottom:847.626328pt;}
.ye{bottom:860.266323pt;}
.y3e{bottom:866.666320pt;}
.yd{bottom:873.066317pt;}
.yc{bottom:884.426313pt;}
.y3d{bottom:885.066313pt;}
.yb{bottom:903.146305pt;}
.y3c{bottom:903.466305pt;}
.ya{bottom:921.226298pt;}
.y3b{bottom:921.866298pt;}
.y9{bottom:939.946291pt;}
.y3a{bottom:940.266291pt;}
.y8{bottom:958.186283pt;}
.y39{bottom:958.666283pt;}
.y7{bottom:976.746276pt;}
.y38{bottom:977.066276pt;}
.y6{bottom:995.146269pt;}
.y37{bottom:995.466268pt;}
.y5{bottom:1013.226261pt;}
.y36{bottom:1013.546261pt;}
.y4{bottom:1033.066253pt;}
.y3{bottom:1046.666248pt;}
.y35{bottom:1061.546242pt;}
.y1{bottom:1061.866242pt;}
.h6{height:36.431235pt;}
.h1{height:52.134354pt;}
.h2{height:62.781225pt;}
.h4{height:62.812475pt;}
.h3{height:64.499974pt;}
.h5{height:67.837473pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:105.439958pt;}
.x99{left:113.119955pt;}
.xc2{left:117.599953pt;}
.x9a{left:120.319952pt;}
.x129{left:122.079951pt;}
.x198{left:123.039951pt;}
.x16b{left:124.639950pt;}
.xb0{left:125.599950pt;}
.x15e{left:128.319949pt;}
.x192{left:129.439948pt;}
.x9b{left:130.879948pt;}
.x137{left:132.319947pt;}
.xb1{left:133.599947pt;}
.x1e{left:135.199946pt;}
.x54{left:136.799945pt;}
.xef{left:139.839944pt;}
.x130{left:141.599943pt;}
.xb2{left:142.559943pt;}
.xf0{left:144.159942pt;}
.x185{left:145.279942pt;}
.x141{left:146.239942pt;}
.x55{left:147.199941pt;}
.x14a{left:148.639941pt;}
.x131{left:149.599940pt;}
.x142{left:150.559940pt;}
.x2{left:151.999939pt;}
.xe0{left:153.439939pt;}
.x1f{left:154.719938pt;}
.xfc{left:155.999938pt;}
.xe1{left:157.759937pt;}
.x19f{left:158.719937pt;}
.x39{left:159.999936pt;}
.x14b{left:161.119936pt;}
.xd6{left:163.199935pt;}
.xb3{left:164.799934pt;}
.x3{left:166.079934pt;}
.xc3{left:167.199933pt;}
.x121{left:168.799932pt;}
.x3a{left:169.919932pt;}
.x56{left:171.519931pt;}
.x195{left:172.639931pt;}
.x84{left:173.599931pt;}
.x18b{left:176.479929pt;}
.x57{left:177.599929pt;}
.xc4{left:178.559929pt;}
.x170{left:180.319928pt;}
.x175{left:181.279927pt;}
.x85{left:182.239927pt;}
.x138{left:183.359927pt;}
.x146{left:184.479926pt;}
.x190{left:185.919926pt;}
.x4{left:187.519925pt;}
.x113{left:188.479925pt;}
.x167{left:189.759924pt;}
.xc5{left:191.039924pt;}
.x155{left:192.159923pt;}
.x5{left:193.919922pt;}
.xd7{left:195.359922pt;}
.xfd{left:196.959921pt;}
.x143{left:197.919921pt;}
.xd8{left:199.679920pt;}
.x18c{left:200.639920pt;}
.xb4{left:201.759919pt;}
.x10b{left:203.199919pt;}
.xe2{left:205.119918pt;}
.x168{left:206.559917pt;}
.xb5{left:207.839917pt;}
.x20{left:209.119916pt;}
.xf1{left:210.559916pt;}
.x19c{left:211.679915pt;}
.x3b{left:212.639915pt;}
.x102{left:213.759914pt;}
.x9c{left:214.719914pt;}
.xe3{left:215.839914pt;}
.x58{left:217.279913pt;}
.x103{left:218.239913pt;}
.x139{left:219.359912pt;}
.x14c{left:220.959912pt;}
.x132{left:222.239911pt;}
.x10c{left:223.839910pt;}
.x9d{left:225.279910pt;}
.x13a{left:226.559909pt;}
.x153{left:227.839909pt;}
.x86{left:229.279908pt;}
.x59{left:230.559908pt;}
.x6{left:231.679907pt;}
.x196{left:232.639907pt;}
.x21{left:234.079906pt;}
.x3c{left:236.159906pt;}
.x133{left:239.039904pt;}
.x9e{left:240.159904pt;}
.x17e{left:241.119904pt;}
.x114{left:242.719903pt;}
.x22{left:243.999902pt;}
.x197{left:245.439902pt;}
.x3d{left:246.719901pt;}
.x118{left:248.159901pt;}
.x16c{left:249.119900pt;}
.xfe{left:250.719900pt;}
.xc6{left:251.839899pt;}
.x16d{left:253.599899pt;}
.xb6{left:254.719898pt;}
.xc7{left:256.319897pt;}
.x186{left:257.919897pt;}
.xb7{left:259.199896pt;}
.x156{left:260.159896pt;}
.x104{left:261.119896pt;}
.x12a{left:262.559895pt;}
.x171{left:264.319894pt;}
.xf2{left:265.439894pt;}
.x119{left:266.879893pt;}
.xc8{left:267.839893pt;}
.x176{left:269.599892pt;}
.x115{left:271.039892pt;}
.x7{left:272.639891pt;}
.x3e{left:273.759890pt;}
.x5a{left:276.319889pt;}
.x23{left:277.599889pt;}
.x13b{left:279.359888pt;}
.x105{left:280.639888pt;}
.x15f{left:282.079887pt;}
.x8{left:283.359887pt;}
.x3f{left:284.319886pt;}
.x13c{left:285.439886pt;}
.xb8{left:286.879885pt;}
.x79{left:288.959884pt;}
.x134{left:290.719884pt;}
.x1a0{left:292.319883pt;}
.x24{left:293.279883pt;}
.x5b{left:295.359882pt;}
.x147{left:296.319881pt;}
.xf3{left:297.279881pt;}
.x73{left:299.039880pt;}
.x148{left:300.959880pt;}
.x25{left:302.079879pt;}
.x187{left:303.359879pt;}
.xc9{left:304.479878pt;}
.x87{left:306.559877pt;}
.x157{left:307.999877pt;}
.x9f{left:308.959876pt;}
.xd9{left:310.239876pt;}
.x74{left:311.519875pt;}
.x26{left:313.599875pt;}
.xca{left:315.199874pt;}
.x40{left:317.119873pt;}
.x9{left:318.079873pt;}
.xf4{left:320.319872pt;}
.xa0{left:321.599871pt;}
.x122{left:322.719871pt;}
.xa{left:324.159870pt;}
.x41{left:325.919870pt;}
.x88{left:326.879869pt;}
.x5c{left:328.479869pt;}
.x7a{left:329.439868pt;}
.x19b{left:330.399868pt;}
.x89{left:331.359867pt;}
.x165{left:333.279867pt;}
.x75{left:334.399866pt;}
.x14d{left:336.639865pt;}
.xda{left:337.759865pt;}
.xa1{left:339.359864pt;}
.x7b{left:340.319864pt;}
.x5d{left:341.439863pt;}
.x42{left:343.679863pt;}
.x10d{left:344.639862pt;}
.x27{left:345.599862pt;}
.x183{left:347.199861pt;}
.xf5{left:348.479861pt;}
.x28{left:349.599860pt;}
.x177{left:350.559860pt;}
.x7c{left:351.839859pt;}
.xcb{left:353.439859pt;}
.x43{left:354.399858pt;}
.xb{left:356.159858pt;}
.x8a{left:357.119857pt;}
.x106{left:358.399857pt;}
.x29{left:360.319856pt;}
.x14e{left:361.599855pt;}
.xf6{left:362.559855pt;}
.x188{left:363.839854pt;}
.x5e{left:365.759854pt;}
.x7d{left:367.039853pt;}
.xff{left:368.159853pt;}
.x123{left:369.599852pt;}
.x17f{left:370.719852pt;}
.xa2{left:372.319851pt;}
.x2a{left:374.079850pt;}
.xdb{left:375.199850pt;}
.x135{left:376.479849pt;}
.x44{left:378.079849pt;}
.x14f{left:379.039848pt;}
.xa3{left:380.159848pt;}
.x144{left:382.399847pt;}
.xc{left:383.359847pt;}
.x76{left:385.119846pt;}
.xa4{left:386.239846pt;}
.x72{left:387.519845pt;}
.x2b{left:388.479845pt;}
.x8b{left:389.759844pt;}
.xa5{left:391.039844pt;}
.x5f{left:392.319843pt;}
.xd{left:394.079842pt;}
.x11a{left:395.039842pt;}
.x124{left:396.799841pt;}
.x45{left:398.559841pt;}
.x60{left:399.519840pt;}
.x158{left:400.799840pt;}
.x199{left:402.719839pt;}
.x61{left:403.839838pt;}
.x159{left:405.279838pt;}
.xf7{left:406.879837pt;}
.x107{left:408.159837pt;}
.x46{left:409.279836pt;}
.xe4{left:410.719836pt;}
.x12b{left:411.839835pt;}
.xf8{left:412.959835pt;}
.x108{left:414.239834pt;}
.x62{left:415.839834pt;}
.x7e{left:417.119833pt;}
.xe{left:419.519832pt;}
.x11b{left:420.799832pt;}
.x77{left:421.919831pt;}
.x47{left:423.039831pt;}
.x63{left:424.319830pt;}
.x180{left:425.759830pt;}
.xa6{left:426.719829pt;}
.x7f{left:427.839829pt;}
.x125{left:428.799828pt;}
.xf{left:430.239828pt;}
.x2c{left:433.119827pt;}
.x10{left:434.239826pt;}
.x18d{left:436.319825pt;}
.xa7{left:437.599825pt;}
.x2d{left:439.199824pt;}
.xe5{left:441.119824pt;}
.xa8{left:442.079823pt;}
.xb9{left:443.519823pt;}
.x11{left:444.959822pt;}
.xcc{left:446.719821pt;}
.xba{left:447.999821pt;}
.x1a1{left:449.919820pt;}
.x11c{left:451.039820pt;}
.x116{left:452.319819pt;}
.x10e{left:453.279819pt;}
.x181{left:454.239818pt;}
.x12{left:456.479817pt;}
.x48{left:457.439817pt;}
.x80{left:458.399817pt;}
.xdc{left:459.359816pt;}
.xbb{left:460.479816pt;}
.x8c{left:461.599815pt;}
.x18e{left:462.719815pt;}
.xdd{left:463.839814pt;}
.xa9{left:465.119814pt;}
.x8d{left:466.079814pt;}
.x18f{left:467.199813pt;}
.x49{left:468.159813pt;}
.x81{left:469.119812pt;}
.x64{left:471.999811pt;}
.xcd{left:472.959811pt;}
.x2e{left:473.919810pt;}
.x15a{left:474.879810pt;}
.x13{left:475.839810pt;}
.x178{left:477.279809pt;}
.x150{left:478.719809pt;}
.x4a{left:479.679808pt;}
.x82{left:480.959808pt;}
.x11d{left:481.919807pt;}
.x78{left:482.879807pt;}
.xde{left:484.159806pt;}
.xbc{left:485.439806pt;}
.xf9{left:486.399805pt;}
.x14{left:487.359805pt;}
.x11e{left:489.119804pt;}
.x17a{left:491.519803pt;}
.x83{left:493.119803pt;}
.x65{left:494.399802pt;}
.x17b{left:495.999802pt;}
.x15{left:498.079801pt;}
.x15b{left:499.039800pt;}
.x10f{left:500.639800pt;}
.xce{left:501.919799pt;}
.x2f{left:503.039799pt;}
.x8e{left:505.279798pt;}
.x66{left:506.719797pt;}
.xcf{left:507.999797pt;}
.x19d{left:508.959796pt;}
.x4b{left:510.079796pt;}
.x8f{left:511.359795pt;}
.x13d{left:513.119795pt;}
.x145{left:514.239794pt;}
.x67{left:515.359794pt;}
.xaa{left:517.119793pt;}
.x160{left:518.399793pt;}
.x16{left:519.359792pt;}
.x13e{left:520.319792pt;}
.x4c{left:521.439791pt;}
.x68{left:522.719791pt;}
.x11f{left:523.999790pt;}
.x109{left:525.119790pt;}
.xe6{left:526.079790pt;}
.x90{left:527.359789pt;}
.x69{left:528.639789pt;}
.x17{left:529.919788pt;}
.x91{left:531.519787pt;}
.x30{left:532.479787pt;}
.x100{left:534.719786pt;}
.x4d{left:536.159786pt;}
.xbd{left:537.439785pt;}
.x16e{left:538.559785pt;}
.xd0{left:539.679784pt;}
.x6a{left:541.439783pt;}
.x31{left:543.039783pt;}
.x19a{left:543.999782pt;}
.x18{left:545.439782pt;}
.x4e{left:546.879781pt;}
.x154{left:547.839781pt;}
.xab{left:548.799780pt;}
.xd1{left:550.239780pt;}
.x19e{left:551.519779pt;}
.x126{left:552.639779pt;}
.x15c{left:553.759778pt;}
.x172{left:555.039778pt;}
.x19{left:556.159778pt;}
.xd2{left:557.439777pt;}
.x32{left:558.559777pt;}
.xac{left:559.519776pt;}
.x92{left:560.799776pt;}
.x4f{left:562.239775pt;}
.x6b{left:564.319774pt;}
.x13f{left:565.759774pt;}
.x161{left:567.039773pt;}
.x93{left:567.999773pt;}
.xe7{left:568.959772pt;}
.x1a{left:569.919772pt;}
.x50{left:572.959771pt;}
.x193{left:574.239770pt;}
.xdf{left:575.199770pt;}
.x110{left:576.479769pt;}
.x6c{left:577.759769pt;}
.x127{left:579.199768pt;}
.x1b{left:580.639768pt;}
.xbe{left:581.919767pt;}
.x173{left:583.839766pt;}
.xd3{left:584.959766pt;}
.x51{left:586.879765pt;}
.x10a{left:587.839765pt;}
.x33{left:589.599764pt;}
.x1c{left:590.559764pt;}
.xe8{left:591.839763pt;}
.x189{left:592.799763pt;}
.x166{left:593.759762pt;}
.x162{left:594.719762pt;}
.x34{left:595.839762pt;}
.x52{left:597.439761pt;}
.xad{left:598.559761pt;}
.x6d{left:599.999760pt;}
.x136{left:600.959760pt;}
.x174{left:602.239759pt;}
.x182{left:603.519759pt;}
.xd4{left:605.119758pt;}
.x163{left:606.079758pt;}
.x35{left:607.359757pt;}
.x12c{left:608.959756pt;}
.x184{left:610.399756pt;}
.x194{left:611.839755pt;}
.x12d{left:613.279755pt;}
.x15d{left:614.719754pt;}
.xd5{left:616.319753pt;}
.x36{left:618.239753pt;}
.x6e{left:619.199752pt;}
.x12e{left:620.319752pt;}
.xbf{left:622.079751pt;}
.x164{left:623.199751pt;}
.x1d{left:625.919750pt;}
.x6f{left:627.519749pt;}
.x53{left:629.439748pt;}
.xe9{left:630.719748pt;}
.x18a{left:631.839747pt;}
.xc0{left:632.799747pt;}
.x12f{left:634.239746pt;}
.x70{left:635.999746pt;}
.x37{left:637.759745pt;}
.x17c{left:638.719745pt;}
.x71{left:640.159744pt;}
.x94{left:641.439743pt;}
.x151{left:642.399743pt;}
.xea{left:643.359743pt;}
.xfa{left:645.119742pt;}
.x17d{left:646.399741pt;}
.x117{left:647.359741pt;}
.x38{left:648.319741pt;}
.x111{left:649.599740pt;}
.xae{left:650.559740pt;}
.xc1{left:652.959739pt;}
.x140{left:653.919738pt;}
.x152{left:654.879738pt;}
.xfb{left:655.839738pt;}
.x149{left:657.759737pt;}
.xeb{left:659.359736pt;}
.x169{left:660.639736pt;}
.x95{left:661.759735pt;}
.x179{left:663.039735pt;}
.x120{left:664.639734pt;}
.x101{left:666.559733pt;}
.x96{left:667.839733pt;}
.xec{left:669.759732pt;}
.xaf{left:671.359731pt;}
.x16f{left:672.319731pt;}
.x16a{left:673.279731pt;}
.x191{left:675.199730pt;}
.x97{left:676.159730pt;}
.xed{left:677.119729pt;}
.x112{left:678.239729pt;}
.x128{left:679.199728pt;}
.x98{left:682.559727pt;}
.xee{left:683.519727pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  