
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8fa2417e777b60862a7cd834.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000977;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:40.499998px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000021px;}
.ls1{letter-spacing:0.000148px;}
.ls8{letter-spacing:0.000180px;}
.ls7{letter-spacing:0.000207px;}
.ls0{letter-spacing:0.000234px;}
.ls2{letter-spacing:0.000245px;}
.ls4{letter-spacing:0.000275px;}
.ls9{letter-spacing:0.000284px;}
.lsa{letter-spacing:0.000372px;}
.lsc{letter-spacing:1.147860px;}
.lsb{letter-spacing:2.227751px;}
.ls6{letter-spacing:158.937933px;}
.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;}
}
.ws10{word-spacing:-2.227751px;}
.ws11{word-spacing:-1.147860px;}
.wsf{word-spacing:-0.000372px;}
.wse{word-spacing:-0.000284px;}
.ws6{word-spacing:-0.000275px;}
.ws2{word-spacing:-0.000245px;}
.ws1{word-spacing:-0.000234px;}
.wsc{word-spacing:-0.000207px;}
.wsd{word-spacing:-0.000180px;}
.ws3{word-spacing:-0.000021px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:31.744952px;}
.ws4{word-spacing:183.779101px;}
.ws9{word-spacing:196.603329px;}
.wsa{word-spacing:197.075854px;}
.ws7{word-spacing:238.522005px;}
.wsb{word-spacing:316.349169px;}
.ws8{word-spacing:632.440467px;}
._3{margin-left:-3.509681px;}
._0{margin-left:-1.822580px;}
._1{width:1.485202px;}
._2{width:3.619983px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,238);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:58.499998px;}
.fs2{font-size:67.499997px;}
.fs3{font-size:78.930001px;}
.fs1{font-size:101.249996px;}
.fs0{font-size:134.999994px;}
.y0{bottom:0.000000px;}
.y79{bottom:9.000000px;}
.y59{bottom:11.250000px;}
.y94{bottom:12.374999px;}
.y78{bottom:29.249999px;}
.y58{bottom:31.499999px;}
.y93{bottom:32.624999px;}
.y57{bottom:51.749998px;}
.y20{bottom:61.874997px;}
.y77{bottom:66.374997px;}
.y92{bottom:69.749997px;}
.y56{bottom:71.999997px;}
.y1f{bottom:83.249997px;}
.y95{bottom:85.814636px;}
.y21{bottom:85.814989px;}
.y1{bottom:85.814996px;}
.y76{bottom:86.624996px;}
.y91{bottom:89.999996px;}
.y55{bottom:92.249996px;}
.y1e{bottom:104.624996px;}
.y90{bottom:110.249995px;}
.y54{bottom:112.499995px;}
.y1d{bottom:125.999995px;}
.y75{bottom:127.124995px;}
.y53{bottom:132.749994px;}
.y1c{bottom:147.374994px;}
.y52{bottom:152.999994px;}
.y1b{bottom:168.749993px;}
.y74{bottom:169.874993px;}
.y1a{bottom:190.124992px;}
.y73{bottom:205.874991px;}
.y51{bottom:210.374991px;}
.y19{bottom:211.499991px;}
.y18{bottom:232.874990px;}
.y8f{bottom:238.499990px;}
.y72{bottom:240.749990px;}
.y50{bottom:247.499990px;}
.y4f{bottom:267.749989px;}
.y17{bottom:271.124989px;}
.y8e{bottom:273.374989px;}
.y71{bottom:276.749988px;}
.y4e{bottom:287.999988px;}
.y8d{bottom:293.624988px;}
.y4d{bottom:308.249987px;}
.y70{bottom:311.624987px;}
.y16{bottom:314.999987px;}
.y8c{bottom:334.124986px;}
.y6f{bottom:347.624986px;}
.y4c{bottom:350.999985px;}
.y15{bottom:364.499985px;}
.y6e{bottom:382.499984px;}
.y14{bottom:384.749984px;}
.y4b{bottom:400.499983px;}
.y13{bottom:404.999983px;}
.y4a{bottom:420.749982px;}
.y6d{bottom:422.999982px;}
.y12{bottom:442.124982px;}
.y49{bottom:458.999981px;}
.y6c{bottom:465.749981px;}
.y48{bottom:480.374980px;}
.y11{bottom:482.624980px;}
.y6b{bottom:485.999980px;}
.y46{bottom:490.499980px;}
.y47{bottom:500.624979px;}
.y6a{bottom:506.249979px;}
.y45{bottom:521.999978px;}
.y10{bottom:525.374978px;}
.y69{bottom:526.499978px;}
.y43{bottom:532.124978px;}
.y44{bottom:542.249977px;}
.y68{bottom:546.749977px;}
.y42{bottom:563.624977px;}
.yf{bottom:565.874976px;}
.y40{bottom:573.749976px;}
.y41{bottom:583.874976px;}
.y67{bottom:587.249976px;}
.y3f{bottom:605.249975px;}
.ye{bottom:608.624975px;}
.y3d{bottom:615.374974px;}
.y3e{bottom:625.499974px;}
.yd{bottom:628.874974px;}
.y66{bottom:629.999974px;}
.y87{bottom:641.249973px;}
.y3c{bottom:646.874973px;}
.y65{bottom:650.249973px;}
.y3a{bottom:656.999973px;}
.y3b{bottom:667.124972px;}
.yc{bottom:669.374972px;}
.y64{bottom:670.499972px;}
.y86{bottom:676.124972px;}
.y39{bottom:688.499971px;}
.y63{bottom:690.749971px;}
.y85{bottom:696.374971px;}
.y37{bottom:698.624971px;}
.y38{bottom:708.749970px;}
.y62{bottom:710.999970px;}
.yb{bottom:712.124970px;}
.y36{bottom:730.124970px;}
.ya{bottom:732.374969px;}
.y84{bottom:737.999969px;}
.y34{bottom:740.249969px;}
.y35{bottom:750.374969px;}
.y61{bottom:751.499969px;}
.y9{bottom:752.624969px;}
.y33{bottom:771.749968px;}
.y83{bottom:778.499968px;}
.y31{bottom:781.874967px;}
.y32{bottom:791.999967px;}
.y8{bottom:794.249967px;}
.y82{bottom:795.374967px;}
.y81{bottom:812.249966px;}
.y30{bottom:813.374966px;}
.y60{bottom:814.499966px;}
.y2e{bottom:823.499966px;}
.y80{bottom:829.124965px;}
.y2f{bottom:833.624965px;}
.y5f{bottom:834.749965px;}
.y7{bottom:835.874965px;}
.y9f{bottom:841.499958px;}
.y7f{bottom:845.999965px;}
.y2d{bottom:854.999964px;}
.y6{bottom:856.124964px;}
.y9e{bottom:861.749957px;}
.y2b{bottom:865.124964px;}
.y2c{bottom:875.249964px;}
.y7e{bottom:885.374963px;}
.y5e{bottom:895.499963px;}
.y2a{bottom:896.624963px;}
.y9d{bottom:898.874955px;}
.y5{bottom:899.999963px;}
.y28{bottom:906.749962px;}
.y5d{bottom:915.749962px;}
.y29{bottom:916.874962px;}
.y9c{bottom:919.124955px;}
.y7d{bottom:930.374961px;}
.y27{bottom:938.249961px;}
.y5c{bottom:952.874960px;}
.y4{bottom:955.124960px;}
.y9b{bottom:956.249953px;}
.y5b{bottom:973.124959px;}
.y8b{bottom:975.374959px;}
.y9a{bottom:976.499952px;}
.y26{bottom:976.499959px;}
.y7c{bottom:979.874959px;}
.y5a{bottom:993.374959px;}
.y3{bottom:995.624959px;}
.y99{bottom:996.749951px;}
.y7b{bottom:1000.124958px;}
.y8a{bottom:1010.249958px;}
.y25{bottom:1013.624958px;}
.y89{bottom:1030.499957px;}
.y98{bottom:1033.874950px;}
.y24{bottom:1033.874957px;}
.y2{bottom:1036.124957px;}
.y7a{bottom:1037.249957px;}
.y97{bottom:1054.124949px;}
.y23{bottom:1054.124956px;}
.y88{bottom:1072.124955px;}
.y96{bottom:1074.374948px;}
.y22{bottom:1074.374955px;}
.h7{height:44.760496px;}
.h5{height:64.124997px;}
.h6{height:74.983501px;}
.h4{height:96.187496px;}
.h8{height:104.624996px;}
.h3{height:128.249995px;}
.h2{height:1090.124955px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.w2{width:751.499969px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:9.000000px;}
.x107{left:13.587890px;}
.x1d8{left:15.598165px;}
.x12d{left:16.796310px;}
.x2c{left:18.382564px;}
.x8b{left:19.714072px;}
.xd1{left:20.761962px;}
.x56{left:22.095084px;}
.x108{left:24.214999px;}
.xae{left:25.233861px;}
.x24{left:26.516274px;}
.xfa{left:28.035117px;}
.xaf{left:29.098267px;}
.x11{left:30.254047px;}
.x175{left:31.978264px;}
.x162{left:33.362010px;}
.x5d{left:34.802042px;}
.x1b5{left:36.303942px;}
.x2d{left:37.333327px;}
.x11a{left:39.302042px;}
.x2e{left:41.197733px;}
.x1c4{left:42.463341px;}
.xb3{left:43.728966px;}
.xfb{left:45.298363px;}
.x1c5{left:46.327747px;}
.x176{left:47.570885px;}
.x5e{left:48.774626px;}
.x14b{left:49.871525px;}
.x1ca{left:50.890541px;}
.x3{left:51.929951px;}
.xb4{left:53.600902px;}
.x57{left:55.339059px;}
.x5f{left:56.621559px;}
.x1b6{left:58.157224px;}
.x2f{left:59.743478px;}
.xe9{left:62.392866px;}
.x8a{left:63.692239px;}
.x4{left:65.953071px;}
.x187{left:67.084147px;}
.x60{left:68.282275px;}
.x8d{left:69.817923px;}
.xff{left:71.458663px;}
.xfc{left:73.429181px;}
.x30{left:75.015452px;}
.x1bf{left:76.179848px;}
.x1b7{left:77.664857px;}
.x31{left:78.879859px;}
.x25{left:80.691435px;}
.xc8{left:81.984886px;}
.x8c{left:83.240383px;}
.x1e7{left:84.313645px;}
.x1{left:85.499989px;}
.x1ae{left:86.709917px;}
.x8e{left:87.789925px;}
.x193{left:89.055532px;}
.x58{left:90.928684px;}
.x32{left:91.958069px;}
.x1c0{left:93.223694px;}
.x26{left:94.436138px;}
.xea{left:96.497465px;}
.x18c{left:97.813747px;}
.x59{left:98.944378px;}
.x33{left:100.631878px;}
.x27{left:102.105831px;}
.xc7{left:103.786018px;}
.xeb{left:105.171274px;}
.x1af{left:106.571927px;}
.x28{left:108.104898px;}
.x5a{left:110.132579px;}
.x34{left:111.820079px;}
.x1cd{left:112.933818px;}
.x11e{left:114.052604px;}
.x29{left:115.723968px;}
.x8f{left:117.237008px;}
.x116{left:118.507628px;}
.x35{left:119.616389px;}
.x78{left:121.236409px;}
.x5{left:122.821753px;}
.xec{left:124.678906px;}
.x195{left:126.417080px;}
.x61{left:127.665814px;}
.x15f{left:129.374995px;}
.xb0{left:130.855162px;}
.x103{left:132.002718px;}
.x90{left:133.015246px;}
.x79{left:134.331493px;}
.x100{left:135.398129px;}
.x22{left:136.819572px;}
.x11f{left:137.897123px;}
.x163{left:139.078188px;}
.x5b{left:140.406538px;}
.x1ce{left:141.486494px;}
.x117{left:142.672794px;}
.xc9{left:144.152789px;}
.x7a{left:145.519695px;}
.x121{left:146.599703px;}
.x36{left:147.645944px;}
.x5c{left:149.080347px;}
.x110{left:151.025956px;}
.x1cb{left:152.084129px;}
.xd2{left:153.096674px;}
.x23{left:155.145796px;}
.x118{left:157.185407px;}
.x6{left:158.191721px;}
.xb1{left:159.289752px;}
.x16e{left:161.015841px;}
.x12e{left:162.091042px;}
.xb2{left:163.154159px;}
.x101{left:164.684726px;}
.x7{left:166.190471px;}
.xed{left:167.777926px;}
.x1dd{left:169.455968px;}
.xd3{left:170.748063px;}
.x62{left:172.334248px;}
.x91{left:173.768651px;}
.x194{left:174.814875px;}
.xfd{left:176.193179px;}
.x104{left:177.700537px;}
.x1d3{left:178.713047px;}
.x19a{left:179.725523px;}
.x37{left:181.278046px;}
.x119{left:182.818707px;}
.x38{left:185.142452px;}
.x1d5{left:187.133707px;}
.x2a{left:188.263394px;}
.x183{left:189.513105px;}
.x102{left:190.604769px;}
.x12{left:191.865759px;}
.xd4{left:193.698244px;}
.x39{left:195.014389px;}
.x92{left:196.583820px;}
.x63{left:198.119434px;}
.x8{left:200.412933px;}
.x2b{left:202.008096px;}
.xd5{left:203.975198px;}
.x93{left:205.443263px;}
.xb5{left:206.877562px;}
.x9{left:208.411683px;}
.xfe{left:210.162784px;}
.x7b{left:212.159549px;}
.xee{left:214.488238px;}
.x7c{left:216.023955px;}
.xef{left:218.352644px;}
.x64{left:219.483326px;}
.x155{left:220.985209px;}
.x173{left:222.019348px;}
.x12f{left:223.381464px;}
.x65{left:224.393991px;}
.x1a3{left:225.457125px;}
.x109{left:227.180691px;}
.x94{left:229.034668px;}
.x66{left:230.806539px;}
.x15e{left:232.498811px;}
.xb6{left:233.692132px;}
.x14c{left:234.721569px;}
.x1e9{left:235.818433px;}
.x95{left:236.881601px;}
.xca{left:237.910916px;}
.x1b0{left:239.024724px;}
.x10a{left:240.279998px;}
.xcb{left:241.775323px;}
.xb7{left:243.327828px;}
.x1dc{left:244.812442px;}
.x13c{left:246.213508px;}
.x67{left:247.276658px;}
.x105{left:248.913518px;}
.xa{left:250.092883px;}
.x3a{left:252.322284px;}
.xd6{left:253.959316px;}
.x13{left:255.855710px;}
.x156{left:257.671698px;}
.x18d{left:259.443621px;}
.x68{left:260.456131px;}
.xd7{left:261.975009px;}
.x14{left:263.854460px;}
.x1de{left:265.154520px;}
.x15b{left:266.687800px;}
.x69{left:268.252441px;}
.x122{left:270.193039px;}
.x19c{left:271.323704px;}
.x106{left:272.639935px;}
.x123{left:274.057446px;}
.x3b{left:275.221808px;}
.xd8{left:276.639490px;}
.x16f{left:277.943516px;}
.x3c{left:279.086214px;}
.x1ab{left:280.858120px;}
.x124{left:282.731254px;}
.x157{left:284.216262px;}
.xb{left:285.614719px;}
.x3d{left:287.760023px;}
.xd9{left:288.806471px;}
.xcc{left:290.325021px;}
.x159{left:292.025573px;}
.xf0{left:293.497529px;}
.x164{left:295.139264px;}
.x130{left:296.248214px;}
.x14d{left:297.463267px;}
.x1bc{left:299.116984px;}
.x1ba{left:300.686381px;}
.xc{left:301.915958px;}
.xda{left:303.470935px;}
.xb8{left:304.736353px;}
.x131{left:306.120150px;}
.x3e{left:307.267638px;}
.xb9{left:308.600760px;}
.x178{left:310.102660px;}
.x3f{left:311.132044px;}
.x11b{left:313.145203px;}
.x170{left:314.326285px;}
.xcd{left:315.907697px;}
.x1a1{left:317.207140px;}
.x6a{left:318.962171px;}
.x13d{left:320.396540px;}
.xba{left:322.269605px;}
.xce{left:324.227128px;}
.x15{left:325.414408px;}
.x1d1{left:326.505315px;}
.x6b{left:327.635980px;}
.x1db{left:328.844150px;}
.x40{left:330.167162px;}
.xd{left:331.953436px;}
.x41{left:334.031568px;}
.xbb{left:335.651570px;}
.x1b9{left:337.102899px;}
.x158{left:338.385381px;}
.xbc{left:339.971600px;}
.xf1{left:341.355363px;}
.x16{left:343.403147px;}
.xf2{left:345.219769px;}
.x96{left:346.772378px;}
.x160{left:348.886508px;}
.x42{left:351.007916px;}
.x165{left:352.666525px;}
.x97{left:354.619294px;}
.x19b{left:356.306725px;}
.x6c{left:357.876156px;}
.x184{left:358.922363px;}
.x111{left:359.999985px;}
.x7d{left:361.048699px;}
.x13e{left:362.348072px;}
.x98{left:364.254990px;}
.x6d{left:365.891849px;}
.x14e{left:367.596241px;}
.x43{left:370.279308px;}
.x19d{left:371.393116px;}
.x99{left:372.928799px;}
.x10b{left:374.504844px;}
.x14f{left:375.730072px;}
.x166{left:377.253566px;}
.x44{left:378.953117px;}
.x19e{left:380.066925px;}
.xbd{left:381.551864px;}
.x112{left:382.899509px;}
.x19f{left:383.931331px;}
.x9a{left:385.990135px;}
.x13f{left:387.660743px;}
.x1c7{left:388.757659px;}
.xbe{left:390.225673px;}
.x1bd{left:391.575755px;}
.x113{left:392.771445px;}
.x45{left:393.853873px;}
.x9b{left:395.170207px;}
.x46{left:397.718280px;}
.x132{left:398.747664px;}
.x6e{left:401.194628px;}
.x114{left:403.487149px;}
.x150{left:405.177172px;}
.x10c{left:407.040064px;}
.x6f{left:408.990938px;}
.x10d{left:411.039465px;}
.x17e{left:412.382727px;}
.x140{left:413.445928px;}
.x125{left:414.475279px;}
.x1a7{left:416.365373px;}
.x7e{left:417.563467px;}
.x151{left:418.913515px;}
.xbf{left:420.465883px;}
.x126{left:422.322195px;}
.xcf{left:423.334687px;}
.x17{left:424.774310px;}
.x1c1{left:426.338556px;}
.x9c{left:427.435438px;}
.xc0{left:429.139691px;}
.x141{left:431.046678px;}
.x18{left:432.773077px;}
.x1c8{left:433.898591px;}
.x47{left:435.788514px;}
.xc1{left:437.425374px;}
.x1e1{left:438.426915px;}
.x48{left:439.652921px;}
.x17f{left:441.829793px;}
.x142{left:443.584893px;}
.x152{left:444.715558px;}
.x9d{left:446.639333px;}
.x49{left:448.326730px;}
.xf3{left:449.980515px;}
.x7f{left:451.971821px;}
.xdb{left:453.456968px;}
.x4a{left:454.958661px;}
.x1a4{left:456.477417px;}
.xd0{left:457.489910px;}
.x4b{left:458.823067px;}
.x1bb{left:459.886165px;}
.x179{left:460.898727px;}
.x19{left:461.899308px;}
.x115{left:463.499981px;}
.x17a{left:464.763134px;}
.x153{left:466.535057px;}
.x70{left:468.374477px;}
.x1a{left:469.898076px;}
.xe{left:471.847049px;}
.x185{left:472.964427px;}
.x1da{left:474.179480px;}
.x154{left:475.208865px;}
.x9e{left:476.913257px;}
.x177{left:478.535852px;}
.xf{left:479.845782px;}
.xc2{left:481.317607px;}
.xf4{left:482.515734px;}
.x4c{left:484.405761px;}
.x9f{left:485.587066px;}
.x127{left:486.903262px;}
.x1b{left:488.215855px;}
.x10e{left:489.817339px;}
.xdc{left:491.527202px;}
.x120{left:493.706425px;}
.xa0{left:495.222762px;}
.x1b1{left:496.741484px;}
.x10{left:498.172006px;}
.x133{left:499.829603px;}
.xf5{left:501.280897px;}
.x143{left:503.137175px;}
.xdd{left:504.858562px;}
.x1e8{left:505.940805px;}
.x4d{left:507.305319px;}
.x1be{left:508.351526px;}
.xa1{left:509.566614px;}
.x1a8{left:510.916662px;}
.x18e{left:511.929121px;}
.xc3{left:513.160928px;}
.xde{left:514.241126px;}
.x80{left:515.253515px;}
.x11c{left:516.605966px;}
.x4e{left:518.122251px;}
.x18f{left:519.252916px;}
.x1d9{left:520.839170px;}
.x4f{left:521.986658px;}
.x190{left:523.117322px;}
.x161{left:524.430034px;}
.x71{left:525.581109px;}
.x1e2{left:526.599404px;}
.x134{left:528.044793px;}
.x188{left:529.242920px;}
.xf6{left:531.031735px;}
.xc4{left:532.972298px;}
.x72{left:534.254918px;}
.xa2{left:535.520543px;}
.xc5{left:536.836705px;}
.x144{left:538.524273px;}
.x1c{left:540.705438px;}
.x135{left:541.781136px;}
.x171{left:542.874550px;}
.x73{left:544.126854px;}
.xc6{left:546.354263px;}
.x1b2{left:547.653740px;}
.x1d{left:548.704171px;}
.xa3{left:550.573151px;}
.x136{left:552.496856px;}
.x50{left:553.559990px;}
.x137{left:556.361263px;}
.x11d{left:558.169389px;}
.x81{left:559.365062px;}
.xf7{left:560.866927px;}
.x10f{left:562.911901px;}
.x1b8{left:564.781940px;}
.x196{left:565.861999px;}
.x1e{left:566.920704px;}
.xa4{left:568.055763px;}
.x1a5{left:569.355067px;}
.x15c{left:570.482213px;}
.xa5{left:571.920169px;}
.x186{left:573.776309px;}
.xdf{left:575.075890px;}
.x167{left:576.152274px;}
.x180{left:578.653243px;}
.x1d4{left:579.716513px;}
.xa6{left:580.779613px;}
.x128{left:582.467078px;}
.xe0{left:583.749698px;}
.x1a0{left:584.897116px;}
.x1ac{left:587.006354px;}
.xe1{left:588.170974px;}
.x1f{left:590.174399px;}
.xe2{left:592.035346px;}
.xf8{left:593.132193px;}
.x129{left:594.802870px;}
.x1a9{left:596.051672px;}
.x15d{left:598.106785px;}
.x15a{left:599.501934px;}
.x145{left:601.265920px;}
.xe3{left:602.514792px;}
.x12a{left:604.438566px;}
.x82{left:605.670339px;}
.x197{left:607.324194px;}
.x20{left:608.500624px;}
.x189{left:609.889089px;}
.xe4{left:611.829825px;}
.x168{left:613.395650px;}
.x18a{left:614.765988px;}
.x198{left:615.998037px;}
.x169{left:617.260056px;}
.x83{left:619.406682px;}
.xe5{left:620.503668px;}
.x1a6{left:622.241635px;}
.x84{left:623.271123px;}
.x1c2{left:624.536748px;}
.x51{left:625.802236px;}
.x172{left:627.115118px;}
.xa7{left:628.468755px;}
.x52{left:629.666676px;}
.x1b4{left:630.915410px;}
.x146{left:631.961788px;}
.x12b{left:633.885563px;}
.x181{left:635.404217px;}
.x17b{left:636.872471px;}
.x21{left:638.099370px;}
.x147{left:639.808704px;}
.x53{left:641.192364px;}
.x174{left:642.252098px;}
.xe6{left:643.808209px;}
.x74{left:645.394428px;}
.xe7{left:647.672582px;}
.x148{left:649.444400px;}
.x138{left:650.693134px;}
.x1e5{left:651.722690px;}
.x149{left:653.308841px;}
.x139{left:654.557575px;}
.x17c{left:655.620776px;}
.x16a{left:656.882831px;}
.xa8{left:658.455799px;}
.x17d{left:659.485217px;}
.x1c6{left:660.801105px;}
.x13a{left:662.353885px;}
.x85{left:663.518161px;}
.x14a{left:664.733249px;}
.x1d6{left:666.150828px;}
.x16b{left:667.362277px;}
.x75{left:668.445803px;}
.x1a2{left:669.795749px;}
.x86{left:671.533923px;}
.x182{left:673.086291px;}
.xe8{left:674.824604px;}
.x76{left:676.292719px;}
.x12c{left:677.490847px;}
.x1cf{left:678.613701px;}
.xa9{left:679.870349px;}
.x13b{left:681.861483px;}
.x16c{left:683.866127px;}
.xf9{left:685.236483px;}
.x1d2{left:686.535890px;}
.x16d{left:687.730533px;}
.x1cc{left:688.778492px;}
.xaa{left:689.961703px;}
.x18b{left:691.328264px;}
.x1c9{left:692.425248px;}
.x1d7{left:693.454805px;}
.x1aa{left:695.041093px;}
.x54{left:696.829600px;}
.x1b3{left:697.842332px;}
.x77{left:699.192209px;}
.x1d0{left:700.365720px;}
.x199{left:703.664400px;}
.x55{left:705.503374px;}
.x87{left:707.359651px;}
.x1df{left:709.607802px;}
.x191{left:712.456071px;}
.x1e0{left:713.472209px;}
.x88{left:715.206567px;}
.x1c3{left:716.961633px;}
.xab{left:719.628083px;}
.x192{left:721.129914px;}
.x1e3{left:722.572247px;}
.x89{left:724.842263px;}
.x1ad{left:726.057145px;}
.xac{left:727.474999px;}
.x1e6{left:729.753151px;}
.x1e4{left:731.246056px;}
.xad{left:733.668198px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:35.999998pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000018pt;}
.ls1{letter-spacing:0.000131pt;}
.ls8{letter-spacing:0.000160pt;}
.ls7{letter-spacing:0.000184pt;}
.ls0{letter-spacing:0.000208pt;}
.ls2{letter-spacing:0.000218pt;}
.ls4{letter-spacing:0.000245pt;}
.ls9{letter-spacing:0.000252pt;}
.lsa{letter-spacing:0.000330pt;}
.lsc{letter-spacing:1.020320pt;}
.lsb{letter-spacing:1.980223pt;}
.ls6{letter-spacing:141.278163pt;}
.ws10{word-spacing:-1.980223pt;}
.ws11{word-spacing:-1.020320pt;}
.wsf{word-spacing:-0.000330pt;}
.wse{word-spacing:-0.000252pt;}
.ws6{word-spacing:-0.000245pt;}
.ws2{word-spacing:-0.000218pt;}
.ws1{word-spacing:-0.000208pt;}
.wsc{word-spacing:-0.000184pt;}
.wsd{word-spacing:-0.000160pt;}
.ws3{word-spacing:-0.000018pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:28.217735pt;}
.ws4{word-spacing:163.359201pt;}
.ws9{word-spacing:174.758515pt;}
.wsa{word-spacing:175.178537pt;}
.ws7{word-spacing:212.019560pt;}
.wsb{word-spacing:281.199261pt;}
.ws8{word-spacing:562.169304pt;}
._3{margin-left:-3.119716pt;}
._0{margin-left:-1.620071pt;}
._1{width:1.320180pt;}
._2{width:3.217762pt;}
.fs4{font-size:51.999998pt;}
.fs2{font-size:59.999998pt;}
.fs3{font-size:70.160001pt;}
.fs1{font-size:89.999996pt;}
.fs0{font-size:119.999995pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:8.000000pt;}
.y59{bottom:10.000000pt;}
.y94{bottom:11.000000pt;}
.y78{bottom:25.999999pt;}
.y58{bottom:27.999999pt;}
.y93{bottom:28.999999pt;}
.y57{bottom:45.999998pt;}
.y20{bottom:54.999998pt;}
.y77{bottom:58.999998pt;}
.y92{bottom:61.999997pt;}
.y56{bottom:63.999997pt;}
.y1f{bottom:73.999997pt;}
.y95{bottom:76.279677pt;}
.y21{bottom:76.279990pt;}
.y1{bottom:76.279997pt;}
.y76{bottom:76.999997pt;}
.y91{bottom:79.999997pt;}
.y55{bottom:81.999997pt;}
.y1e{bottom:92.999996pt;}
.y90{bottom:97.999996pt;}
.y54{bottom:99.999996pt;}
.y1d{bottom:111.999995pt;}
.y75{bottom:112.999995pt;}
.y53{bottom:117.999995pt;}
.y1c{bottom:130.999995pt;}
.y52{bottom:135.999994pt;}
.y1b{bottom:149.999994pt;}
.y74{bottom:150.999994pt;}
.y1a{bottom:168.999993pt;}
.y73{bottom:182.999992pt;}
.y51{bottom:186.999992pt;}
.y19{bottom:187.999992pt;}
.y18{bottom:206.999991pt;}
.y8f{bottom:211.999991pt;}
.y72{bottom:213.999991pt;}
.y50{bottom:219.999991pt;}
.y4f{bottom:237.999990pt;}
.y17{bottom:240.999990pt;}
.y8e{bottom:242.999990pt;}
.y71{bottom:245.999990pt;}
.y4e{bottom:255.999989pt;}
.y8d{bottom:260.999989pt;}
.y4d{bottom:273.999989pt;}
.y70{bottom:276.999988pt;}
.y16{bottom:279.999988pt;}
.y8c{bottom:296.999988pt;}
.y6f{bottom:308.999987pt;}
.y4c{bottom:311.999987pt;}
.y15{bottom:323.999986pt;}
.y6e{bottom:339.999986pt;}
.y14{bottom:341.999986pt;}
.y4b{bottom:355.999985pt;}
.y13{bottom:359.999985pt;}
.y4a{bottom:373.999984pt;}
.y6d{bottom:375.999984pt;}
.y12{bottom:392.999984pt;}
.y49{bottom:407.999983pt;}
.y6c{bottom:413.999983pt;}
.y48{bottom:426.999982pt;}
.y11{bottom:428.999982pt;}
.y6b{bottom:431.999982pt;}
.y46{bottom:435.999982pt;}
.y47{bottom:444.999981pt;}
.y6a{bottom:449.999981pt;}
.y45{bottom:463.999981pt;}
.y10{bottom:466.999981pt;}
.y69{bottom:467.999980pt;}
.y43{bottom:472.999980pt;}
.y44{bottom:481.999980pt;}
.y68{bottom:485.999980pt;}
.y42{bottom:500.999979pt;}
.yf{bottom:502.999979pt;}
.y40{bottom:509.999979pt;}
.y41{bottom:518.999978pt;}
.y67{bottom:521.999978pt;}
.y3f{bottom:537.999978pt;}
.ye{bottom:540.999977pt;}
.y3d{bottom:546.999977pt;}
.y3e{bottom:555.999977pt;}
.yd{bottom:558.999977pt;}
.y66{bottom:559.999977pt;}
.y87{bottom:569.999976pt;}
.y3c{bottom:574.999976pt;}
.y65{bottom:577.999976pt;}
.y3a{bottom:583.999976pt;}
.y3b{bottom:592.999975pt;}
.yc{bottom:594.999975pt;}
.y64{bottom:595.999975pt;}
.y86{bottom:600.999975pt;}
.y39{bottom:611.999974pt;}
.y63{bottom:613.999974pt;}
.y85{bottom:618.999974pt;}
.y37{bottom:620.999974pt;}
.y38{bottom:629.999974pt;}
.y62{bottom:631.999974pt;}
.yb{bottom:632.999974pt;}
.y36{bottom:648.999973pt;}
.ya{bottom:650.999973pt;}
.y84{bottom:655.999973pt;}
.y34{bottom:657.999973pt;}
.y35{bottom:666.999972pt;}
.y61{bottom:667.999972pt;}
.y9{bottom:668.999972pt;}
.y33{bottom:685.999971pt;}
.y83{bottom:691.999971pt;}
.y31{bottom:694.999971pt;}
.y32{bottom:703.999971pt;}
.y8{bottom:705.999971pt;}
.y82{bottom:706.999971pt;}
.y81{bottom:721.999970pt;}
.y30{bottom:722.999970pt;}
.y60{bottom:723.999970pt;}
.y2e{bottom:731.999969pt;}
.y80{bottom:736.999969pt;}
.y2f{bottom:740.999969pt;}
.y5f{bottom:741.999969pt;}
.y7{bottom:742.999969pt;}
.y9f{bottom:747.999962pt;}
.y7f{bottom:751.999969pt;}
.y2d{bottom:759.999968pt;}
.y6{bottom:760.999968pt;}
.y9e{bottom:765.999962pt;}
.y2b{bottom:768.999968pt;}
.y2c{bottom:777.999968pt;}
.y7e{bottom:786.999967pt;}
.y5e{bottom:795.999967pt;}
.y2a{bottom:796.999967pt;}
.y9d{bottom:798.999960pt;}
.y5{bottom:799.999967pt;}
.y28{bottom:805.999966pt;}
.y5d{bottom:813.999966pt;}
.y29{bottom:814.999966pt;}
.y9c{bottom:816.999960pt;}
.y7d{bottom:826.999966pt;}
.y27{bottom:833.999965pt;}
.y5c{bottom:846.999965pt;}
.y4{bottom:848.999965pt;}
.y9b{bottom:849.999958pt;}
.y5b{bottom:864.999964pt;}
.y8b{bottom:866.999964pt;}
.y9a{bottom:867.999957pt;}
.y26{bottom:867.999964pt;}
.y7c{bottom:870.999964pt;}
.y5a{bottom:882.999963pt;}
.y3{bottom:884.999963pt;}
.y99{bottom:885.999957pt;}
.y7b{bottom:888.999963pt;}
.y8a{bottom:897.999963pt;}
.y25{bottom:900.999962pt;}
.y89{bottom:915.999962pt;}
.y98{bottom:918.999955pt;}
.y24{bottom:918.999962pt;}
.y2{bottom:920.999962pt;}
.y7a{bottom:921.999962pt;}
.y97{bottom:936.999955pt;}
.y23{bottom:936.999961pt;}
.y88{bottom:952.999960pt;}
.y96{bottom:954.999954pt;}
.y22{bottom:954.999960pt;}
.h7{height:39.787108pt;}
.h5{height:56.999998pt;}
.h6{height:66.652001pt;}
.h4{height:85.499996pt;}
.h8{height:92.999996pt;}
.h3{height:113.999995pt;}
.h2{height:968.999960pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.w2{width:667.999972pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:8.000000pt;}
.x107{left:12.078124pt;}
.x1d8{left:13.865035pt;}
.x12d{left:14.930053pt;}
.x2c{left:16.340057pt;}
.x8b{left:17.523620pt;}
.xd1{left:18.455077pt;}
.x56{left:19.640075pt;}
.x108{left:21.524444pt;}
.xae{left:22.430099pt;}
.x24{left:23.570022pt;}
.xfa{left:24.920104pt;}
.xaf{left:25.865127pt;}
.x11{left:26.892486pt;}
.x175{left:28.425124pt;}
.x162{left:29.655120pt;}
.x5d{left:30.935149pt;}
.x1b5{left:32.270171pt;}
.x2d{left:33.185179pt;}
.x11a{left:34.935149pt;}
.x2e{left:36.620207pt;}
.x1c4{left:37.745192pt;}
.xb3{left:38.870192pt;}
.xfb{left:40.265211pt;}
.x1c5{left:41.180220pt;}
.x176{left:42.285231pt;}
.x5e{left:43.355223pt;}
.x14b{left:44.330244pt;}
.x1ca{left:45.236036pt;}
.x3{left:46.159956pt;}
.xb4{left:47.645246pt;}
.x57{left:49.190275pt;}
.x5f{left:50.330274pt;}
.x1b6{left:51.695310pt;}
.x2f{left:53.105314pt;}
.xe9{left:55.460325pt;}
.x8a{left:56.615324pt;}
.x4{left:58.624952pt;}
.x187{left:59.630353pt;}
.x60{left:60.695356pt;}
.x8d{left:62.060376pt;}
.xff{left:63.518811pt;}
.xfc{left:65.270383pt;}
.x30{left:66.680402pt;}
.x1bf{left:67.715421pt;}
.x1b7{left:69.035428pt;}
.x31{left:70.115430pt;}
.x25{left:71.725720pt;}
.xc8{left:72.875455pt;}
.x8c{left:73.991452pt;}
.x1e7{left:74.945462pt;}
.x1{left:75.999990pt;}
.x1ae{left:77.075482pt;}
.x8e{left:78.035489pt;}
.x193{left:79.160473pt;}
.x58{left:80.825497pt;}
.x32{left:81.740506pt;}
.x1c0{left:82.865506pt;}
.x26{left:83.943234pt;}
.xea{left:85.775524pt;}
.x18c{left:86.945553pt;}
.x59{left:87.950558pt;}
.x33{left:89.450558pt;}
.x27{left:90.760739pt;}
.xc7{left:92.254238pt;}
.xeb{left:93.485577pt;}
.x1af{left:94.730602pt;}
.x28{left:96.093243pt;}
.x5a{left:97.895626pt;}
.x34{left:99.395626pt;}
.x1cd{left:100.385616pt;}
.x11e{left:101.380092pt;}
.x29{left:102.865749pt;}
.x8f{left:104.210674pt;}
.x116{left:105.340114pt;}
.x35{left:106.325679pt;}
.x78{left:107.765697pt;}
.x5{left:109.174892pt;}
.xec{left:110.825694pt;}
.x195{left:112.370738pt;}
.x61{left:113.480723pt;}
.x15f{left:114.999995pt;}
.xb0{left:116.315700pt;}
.x103{left:117.335750pt;}
.x90{left:118.235774pt;}
.x79{left:119.405772pt;}
.x100{left:120.353892pt;}
.x22{left:121.617397pt;}
.x11f{left:122.575221pt;}
.x163{left:123.625056pt;}
.x5b{left:124.805811pt;}
.x1ce{left:125.765772pt;}
.x117{left:126.820261pt;}
.xc9{left:128.135813pt;}
.x7a{left:129.350840pt;}
.x121{left:130.310847pt;}
.x36{left:131.240839pt;}
.x5c{left:132.515864pt;}
.x110{left:134.245295pt;}
.x1cb{left:135.185892pt;}
.xd2{left:136.085932pt;}
.x23{left:137.907374pt;}
.x118{left:139.720362pt;}
.x6{left:140.614863pt;}
.xb1{left:141.590891pt;}
.x16e{left:143.125192pt;}
.x12e{left:144.080927pt;}
.xb2{left:145.025919pt;}
.x101{left:146.386423pt;}
.x7{left:147.724863pt;}
.xed{left:149.135934pt;}
.x1dd{left:150.627527pt;}
.xd3{left:151.776056pt;}
.x62{left:153.185998pt;}
.x91{left:154.461023pt;}
.x194{left:155.391000pt;}
.xfd{left:156.616159pt;}
.x104{left:157.956033pt;}
.x1d3{left:158.856042pt;}
.x19a{left:159.756021pt;}
.x37{left:161.136041pt;}
.x119{left:162.505517pt;}
.x38{left:164.571069pt;}
.x1d5{left:166.341073pt;}
.x2a{left:167.345239pt;}
.x183{left:168.456094pt;}
.x102{left:169.426461pt;}
.x12{left:170.547341pt;}
.xd4{left:172.176217pt;}
.x39{left:173.346123pt;}
.x92{left:174.741173pt;}
.x63{left:176.106163pt;}
.x8{left:178.144829pt;}
.x2b{left:179.562752pt;}
.xd5{left:181.311287pt;}
.x93{left:182.616234pt;}
.xb5{left:183.891166pt;}
.x9{left:185.254830pt;}
.xfe{left:186.811363pt;}
.x7b{left:188.586265pt;}
.xee{left:190.656211pt;}
.x7c{left:192.021293pt;}
.xef{left:194.091239pt;}
.x64{left:195.096290pt;}
.x155{left:196.431297pt;}
.x173{left:197.350532pt;}
.x12f{left:198.561302pt;}
.x65{left:199.461326pt;}
.x1a3{left:200.406333pt;}
.x109{left:201.938392pt;}
.x94{left:203.586372pt;}
.x66{left:205.161368pt;}
.x15e{left:206.665610pt;}
.xb6{left:207.726340pt;}
.x14c{left:208.641395pt;}
.x1e9{left:209.616385pt;}
.x95{left:210.561423pt;}
.xca{left:211.476370pt;}
.x1b0{left:212.466422pt;}
.x10a{left:213.582221pt;}
.xcb{left:214.911398pt;}
.xb7{left:216.291403pt;}
.x1dc{left:217.611060pt;}
.x13c{left:218.856451pt;}
.x67{left:219.801474pt;}
.x105{left:221.256460pt;}
.xa{left:222.304785pt;}
.x3a{left:224.286474pt;}
.xd6{left:225.741614pt;}
.x13{left:227.427298pt;}
.x156{left:229.041509pt;}
.x18d{left:230.616552pt;}
.x68{left:231.516561pt;}
.xd7{left:232.866675pt;}
.x14{left:234.537298pt;}
.x1de{left:235.692907pt;}
.x15b{left:237.055822pt;}
.x69{left:238.446615pt;}
.x122{left:240.171590pt;}
.x19c{left:241.176626pt;}
.x106{left:242.346609pt;}
.x123{left:243.606618pt;}
.x3b{left:244.641607pt;}
.xd8{left:245.901769pt;}
.x16f{left:247.060903pt;}
.x3c{left:248.076635pt;}
.x1ab{left:249.651662pt;}
.x124{left:251.316671pt;}
.x157{left:252.636677pt;}
.xb{left:253.879751pt;}
.x3d{left:255.786687pt;}
.xd9{left:256.716863pt;}
.xcc{left:258.066685pt;}
.x159{left:259.578287pt;}
.xf0{left:260.886693pt;}
.x164{left:262.346012pt;}
.x130{left:263.331746pt;}
.x14d{left:264.411793pt;}
.x1bc{left:265.881764pt;}
.x1ba{left:267.276783pt;}
.xc{left:268.369740pt;}
.xda{left:269.751942pt;}
.xb8{left:270.876758pt;}
.x131{left:272.106800pt;}
.x3e{left:273.126789pt;}
.xb9{left:274.311786pt;}
.x178{left:275.646809pt;}
.x3f{left:276.561817pt;}
.x11b{left:278.351291pt;}
.x170{left:279.401142pt;}
.xcd{left:280.806842pt;}
.x1a1{left:281.961902pt;}
.x6a{left:283.521930pt;}
.x13d{left:284.796924pt;}
.xba{left:286.461871pt;}
.xce{left:288.201892pt;}
.x15{left:289.257252pt;}
.x1d1{left:290.226947pt;}
.x6b{left:291.231982pt;}
.x1db{left:292.305911pt;}
.x40{left:293.481921pt;}
.xd{left:295.069721pt;}
.x41{left:296.916949pt;}
.xbb{left:298.356951pt;}
.x1b9{left:299.647021pt;}
.x158{left:300.787005pt;}
.xbc{left:302.196978pt;}
.xf1{left:303.426989pt;}
.x16{left:305.247241pt;}
.xf2{left:306.862017pt;}
.x96{left:308.242114pt;}
.x160{left:310.121340pt;}
.x42{left:312.007037pt;}
.x165{left:313.481356pt;}
.x97{left:315.217150pt;}
.x19b{left:316.717089pt;}
.x6c{left:318.112139pt;}
.x184{left:319.042101pt;}
.x111{left:319.999987pt;}
.x7d{left:320.932177pt;}
.x13e{left:322.087175pt;}
.x98{left:323.782213pt;}
.x6d{left:325.237199pt;}
.x14e{left:326.752214pt;}
.x43{left:329.137163pt;}
.x19d{left:330.127214pt;}
.x99{left:331.492265pt;}
.x10b{left:332.893195pt;}
.x14f{left:333.982286pt;}
.x166{left:335.336503pt;}
.x44{left:336.847215pt;}
.x19e{left:337.837266pt;}
.xbd{left:339.157212pt;}
.x112{left:340.355119pt;}
.x19f{left:341.272294pt;}
.x9a{left:343.102342pt;}
.x13f{left:344.587327pt;}
.x1c7{left:345.562364pt;}
.xbe{left:346.867264pt;}
.x1bd{left:348.067338pt;}
.x113{left:349.130173pt;}
.x45{left:350.092332pt;}
.x9b{left:351.262406pt;}
.x46{left:353.527360pt;}
.x132{left:354.442368pt;}
.x6e{left:356.617447pt;}
.x114{left:358.655243pt;}
.x150{left:360.157486pt;}
.x10c{left:361.813390pt;}
.x6f{left:363.547500pt;}
.x10d{left:365.368413pt;}
.x17e{left:366.562424pt;}
.x140{left:367.507492pt;}
.x125{left:368.422470pt;}
.x1a7{left:370.102554pt;}
.x7e{left:371.167526pt;}
.x151{left:372.367569pt;}
.xbf{left:373.747451pt;}
.x126{left:375.397506pt;}
.xcf{left:376.297500pt;}
.x17{left:377.577164pt;}
.x1c1{left:378.967605pt;}
.x9c{left:379.942611pt;}
.xc0{left:381.457503pt;}
.x141{left:383.152602pt;}
.x18{left:384.687180pt;}
.x1c8{left:385.687637pt;}
.x47{left:387.367568pt;}
.xc1{left:388.822554pt;}
.x1e1{left:389.712813pt;}
.x48{left:390.802596pt;}
.x17f{left:392.737593pt;}
.x142{left:394.297682pt;}
.x152{left:395.302718pt;}
.x9d{left:397.012740pt;}
.x49{left:398.512648pt;}
.xf3{left:399.982680pt;}
.x7f{left:401.752730pt;}
.xdb{left:403.072860pt;}
.x4a{left:404.407698pt;}
.x1a4{left:405.757704pt;}
.xd0{left:406.657698pt;}
.x4b{left:407.842726pt;}
.x1bb{left:408.787702pt;}
.x179{left:409.687758pt;}
.x19{left:410.577163pt;}
.x115{left:411.999983pt;}
.x17a{left:413.122786pt;}
.x153{left:414.697828pt;}
.x70{left:416.332868pt;}
.x1a{left:417.687178pt;}
.xe{left:419.419599pt;}
.x185{left:420.412824pt;}
.x1da{left:421.492872pt;}
.x154{left:422.407880pt;}
.x9e{left:423.922895pt;}
.x177{left:425.365201pt;}
.xf{left:426.529584pt;}
.xc2{left:427.837873pt;}
.xf4{left:428.902875pt;}
.x4c{left:430.582899pt;}
.x9f{left:431.632947pt;}
.x127{left:432.802899pt;}
.x1b{left:433.969649pt;}
.x10e{left:435.393191pt;}
.xdc{left:436.913069pt;}
.x120{left:438.850156pt;}
.xa0{left:440.198011pt;}
.x1b1{left:441.547986pt;}
.x10{left:442.819561pt;}
.x133{left:444.292981pt;}
.xf5{left:445.583020pt;}
.x143{left:447.233044pt;}
.xdd{left:448.763166pt;}
.x1e8{left:449.725160pt;}
.x4d{left:450.938061pt;}
.x1be{left:451.868023pt;}
.xa1{left:452.948102pt;}
.x1a8{left:454.148144pt;}
.x18e{left:455.048107pt;}
.xc3{left:456.143047pt;}
.xde{left:457.103223pt;}
.x80{left:458.003124pt;}
.x11c{left:459.205303pt;}
.x4e{left:460.553112pt;}
.x18f{left:461.558147pt;}
.x1d9{left:462.968151pt;}
.x4f{left:463.988140pt;}
.x190{left:464.993175pt;}
.x161{left:466.160030pt;}
.x71{left:467.183208pt;}
.x1e2{left:468.088359pt;}
.x134{left:469.373149pt;}
.x188{left:470.438151pt;}
.xf6{left:472.028209pt;}
.xc4{left:473.753154pt;}
.x72{left:474.893260pt;}
.xa2{left:476.018261pt;}
.xc5{left:477.188182pt;}
.x144{left:478.688243pt;}
.x1c{left:480.627056pt;}
.x135{left:481.583232pt;}
.x171{left:482.555156pt;}
.x73{left:483.668315pt;}
.xc6{left:485.648234pt;}
.x1b2{left:486.803324pt;}
.x1d{left:487.737041pt;}
.xa3{left:489.398356pt;}
.x136{left:491.108317pt;}
.x50{left:492.053325pt;}
.x137{left:494.543345pt;}
.x11d{left:496.150568pt;}
.x81{left:497.213389pt;}
.xf7{left:498.548380pt;}
.x10f{left:500.366134pt;}
.x1b8{left:502.028391pt;}
.x196{left:502.988444pt;}
.x1e{left:503.929515pt;}
.xa4{left:504.938456pt;}
.x1a5{left:506.093393pt;}
.x15c{left:507.095300pt;}
.xa5{left:508.373484pt;}
.x186{left:510.023386pt;}
.xdf{left:511.178569pt;}
.x167{left:512.135355pt;}
.x180{left:514.358438pt;}
.x1d4{left:515.303567pt;}
.xa6{left:516.248544pt;}
.x128{left:517.748514pt;}
.xe0{left:518.888621pt;}
.x1a0{left:519.908548pt;}
.x1ac{left:521.783426pt;}
.xe1{left:522.818644pt;}
.x1f{left:524.599466pt;}
.xe2{left:526.253641pt;}
.xf8{left:527.228616pt;}
.x129{left:528.713662pt;}
.x1a9{left:529.823708pt;}
.x15d{left:531.650475pt;}
.x15a{left:532.890608pt;}
.x145{left:534.458596pt;}
.xe3{left:535.568704pt;}
.x12a{left:537.278725pt;}
.x82{left:538.373635pt;}
.x197{left:539.843728pt;}
.x20{left:540.889443pt;}
.x189{left:542.123634pt;}
.xe4{left:543.848733pt;}
.x168{left:545.240578pt;}
.x18a{left:546.458656pt;}
.x198{left:547.553810pt;}
.x169{left:548.675606pt;}
.x83{left:550.583717pt;}
.xe5{left:551.558816pt;}
.x1a6{left:553.103676pt;}
.x84{left:554.018776pt;}
.x1c2{left:555.143776pt;}
.x51{left:556.268654pt;}
.x172{left:557.435661pt;}
.xa7{left:558.638893pt;}
.x52{left:559.703712pt;}
.x1b4{left:560.813698pt;}
.x146{left:561.743812pt;}
.x12b{left:563.453834pt;}
.x181{left:564.803748pt;}
.x17b{left:566.108863pt;}
.x21{left:567.199440pt;}
.x147{left:568.718848pt;}
.x53{left:569.948768pt;}
.x174{left:570.890754pt;}
.xe6{left:572.273964pt;}
.x74{left:573.683936pt;}
.xe7{left:575.708961pt;}
.x148{left:577.283911pt;}
.x138{left:578.393897pt;}
.x1e5{left:579.309058pt;}
.x149{left:580.718970pt;}
.x139{left:581.828955pt;}
.x17c{left:582.774023pt;}
.x16a{left:583.895849pt;}
.xa8{left:585.294043pt;}
.x17d{left:586.209082pt;}
.x1c6{left:587.378760pt;}
.x13a{left:588.759009pt;}
.x85{left:589.793921pt;}
.x14a{left:590.873999pt;}
.x1d6{left:592.134069pt;}
.x16b{left:593.210913pt;}
.x75{left:594.174047pt;}
.x1a2{left:595.373999pt;}
.x86{left:596.919043pt;}
.x182{left:598.298925pt;}
.xe8{left:599.844092pt;}
.x76{left:601.149084pt;}
.x12c{left:602.214086pt;}
.x1cf{left:603.212179pt;}
.xa9{left:604.329199pt;}
.x13b{left:606.099096pt;}
.x16c{left:607.881002pt;}
.xf9{left:609.099096pt;}
.x1d2{left:610.254125pt;}
.x16d{left:611.316030pt;}
.x1cc{left:612.247548pt;}
.xaa{left:613.299291pt;}
.x18b{left:614.514012pt;}
.x1c9{left:615.489110pt;}
.x1d7{left:616.404271pt;}
.x1aa{left:617.814305pt;}
.x54{left:619.404088pt;}
.x1b3{left:620.304295pt;}
.x77{left:621.504185pt;}
.x1d0{left:622.547307pt;}
.x199{left:625.479466pt;}
.x55{left:627.114110pt;}
.x87{left:628.764134pt;}
.x1df{left:630.762491pt;}
.x191{left:633.294285pt;}
.x1e0{left:634.197519pt;}
.x88{left:635.739170pt;}
.x1c3{left:637.299229pt;}
.xab{left:639.669407pt;}
.x192{left:641.004368pt;}
.x1e3{left:642.286442pt;}
.x89{left:644.304233pt;}
.x1ad{left:645.384129pt;}
.xac{left:646.644443pt;}
.x1e6{left:648.669467pt;}
.x1e4{left:649.996494pt;}
.xad{left:652.149509pt;}
}




    .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; }
  