
    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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_51be038071f50e9208dca3ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.274414;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.307077px;}
.ls3{letter-spacing:2.369785px;}
.ls1{letter-spacing:2.462114px;}
.ls0{letter-spacing:3.446960px;}
.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;}
}
.ws0{word-spacing:-3.446960px;}
.ws2{word-spacing:-2.462114px;}
.ws3{word-spacing:-2.369785px;}
.ws4{word-spacing:-0.307077px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-3.446960px;}
._6{margin-left:-2.300263px;}
._5{margin-left:-1.292610px;}
._3{width:1.754256px;}
._1{width:3.446960px;}
._4{width:4.524135px;}
._2{width:6.524603px;}
.fc3{color:transparent;}
.fc2{color:rgb(77,77,76);}
.fc1{color:rgb(201,174,117);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:53.999996px;}
.fs2{font-size:63.030124px;}
.fs4{font-size:73.700228px;}
.fs3{font-size:94.545187px;}
.fs1{font-size:126.060249px;}
.y0{bottom:0.000000px;}
.y28{bottom:21.385205px;}
.y70{bottom:23.636228px;}
.y3f{bottom:23.636230px;}
.y1e{bottom:23.636309px;}
.y77{bottom:23.636320px;}
.y39{bottom:23.636372px;}
.y80{bottom:23.636440px;}
.y1{bottom:25.380071px;}
.y53{bottom:25.887322px;}
.y27{bottom:42.770426px;}
.y3e{bottom:45.021451px;}
.y1d{bottom:45.021530px;}
.y38{bottom:45.021592px;}
.y7f{bottom:45.021661px;}
.y52{bottom:50.649157px;}
.y78{bottom:55.151493px;}
.y26{bottom:64.155647px;}
.y3d{bottom:66.406672px;}
.y1c{bottom:66.406750px;}
.y37{bottom:66.406813px;}
.y7e{bottom:66.406882px;}
.y51{bottom:75.410991px;}
.y54{bottom:84.086550px;}
.y3a{bottom:84.086642px;}
.y2{bottom:84.086672px;}
.y79{bottom:84.086734px;}
.y25{bottom:85.540867px;}
.y1b{bottom:87.791971px;}
.y36{bottom:87.792034px;}
.y50{bottom:100.172826px;}
.y24{bottom:106.926088px;}
.y1a{bottom:109.177192px;}
.y35{bottom:109.177255px;}
.y4f{bottom:124.934661px;}
.y19{bottom:130.562413px;}
.y34{bottom:130.562476px;}
.y4e{bottom:149.696495px;}
.y18{bottom:151.947634px;}
.y33{bottom:151.947696px;}
.y23{bottom:172.207289px;}
.y17{bottom:173.332854px;}
.y32{bottom:173.332917px;}
.y4d{bottom:174.458330px;}
.y76{bottom:185.385075px;}
.y75{bottom:190.216045px;}
.y16{bottom:194.718075px;}
.y31{bottom:194.718138px;}
.y4c{bottom:199.220164px;}
.y22{bottom:212.726654px;}
.y74{bottom:214.977880px;}
.y15{bottom:216.103296px;}
.y30{bottom:216.103359px;}
.y4b{bottom:223.981999px;}
.y21{bottom:237.488489px;}
.y14{bottom:237.488517px;}
.y2f{bottom:237.488580px;}
.y73{bottom:239.739715px;}
.y4a{bottom:248.743834px;}
.y13{bottom:258.873738px;}
.y2e{bottom:258.873800px;}
.y20{bottom:262.250324px;}
.y72{bottom:264.501549px;}
.y49{bottom:273.505668px;}
.y12{bottom:280.258958px;}
.y2d{bottom:280.259021px;}
.y48{bottom:298.267503px;}
.y11{bottom:301.644179px;}
.y2c{bottom:301.644242px;}
.y1f{bottom:303.895227px;}
.y71{bottom:306.146453px;}
.y47{bottom:323.029338px;}
.y10{bottom:323.029400px;}
.y2b{bottom:323.029463px;}
.y2a{bottom:344.414684px;}
.y46{bottom:347.791172px;}
.y45{bottom:372.553007px;}
.y44{bottom:413.072373px;}
.yf{bottom:437.505556px;}
.y6f{bottom:437.505664px;}
.y43{bottom:437.834207px;}
.y6e{bottom:442.336543px;}
.y6d{bottom:467.098378px;}
.y42{bottom:479.479111px;}
.y8d{bottom:482.855673px;}
.y6c{bottom:491.860212px;}
.y8c{bottom:523.375039px;}
.y41{bottom:526.751704px;}
.y6b{bottom:533.505116px;}
.y40{bottom:551.513539px;}
.y8b{bottom:570.647632px;}
.y6a{bottom:576.275558px;}
.y8a{bottom:595.409466px;}
.y89{bottom:620.171301px;}
.y69{bottom:623.548151px;}
.y88{bottom:644.933136px;}
.y68{bottom:648.309986px;}
.y67{bottom:673.071820px;}
.y3c{bottom:678.370689px;}
.y87{bottom:686.578039px;}
.y66{bottom:697.833655px;}
.y65{bottom:722.595490px;}
.y3b{bottom:727.097457px;}
.y86{bottom:733.850633px;}
.ye{bottom:742.855023px;}
.y64{bottom:747.357324px;}
.y85{bottom:758.612467px;}
.y63{bottom:772.119159px;}
.yd{bottom:790.127616px;}
.y62{bottom:796.880993px;}
.y84{bottom:801.382909px;}
.yc{bottom:814.889451px;}
.y61{bottom:821.642828px;}
.yb{bottom:839.651285px;}
.y83{bottom:845.278889px;}
.y60{bottom:846.404663px;}
.y29{bottom:860.707693px;}
.ya{bottom:864.413120px;}
.y82{bottom:870.040723px;}
.y5f{bottom:871.166497px;}
.y9{bottom:889.174954px;}
.y81{bottom:894.802558px;}
.y5e{bottom:895.928332px;}
.y8{bottom:913.936789px;}
.y5d{bottom:920.690166px;}
.y5c{bottom:945.452001px;}
.y7{bottom:954.456155px;}
.y5b{bottom:970.213836px;}
.y6{bottom:979.217989px;}
.y5a{bottom:994.975670px;}
.y5{bottom:1003.979824px;}
.y59{bottom:1019.737505px;}
.y7d{bottom:1021.659590px;}
.y4{bottom:1028.741659px;}
.y58{bottom:1044.499340px;}
.y7c{bottom:1069.260938px;}
.y57{bottom:1069.261174px;}
.y3{bottom:1085.018556px;}
.y7b{bottom:1094.022773px;}
.y56{bottom:1094.023009px;}
.y7a{bottom:1118.784607px;}
.y55{bottom:1118.784843px;}
.h2{height:51.299996px;}
.he{height:57.402394px;}
.hf{height:57.402430px;}
.h5{height:59.878618px;}
.h6{height:61.306645px;}
.hd{height:70.015216px;}
.h7{height:89.817927px;}
.hb{height:100.172807px;}
.h11{height:100.173160px;}
.h4{height:119.757237px;}
.h9{height:140.692193px;}
.h8{height:356.795542px;}
.ha{height:360.172249px;}
.h10{height:1136.793121px;}
.h3{height:1136.793301px;}
.hc{height:1136.793481px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w3{width:721.469843px;}
.w2{width:784.499907px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xf3{left:18.008615px;}
.xb{left:22.726194px;}
.xff{left:26.303953px;}
.x1a3{left:30.535712px;}
.x26{left:32.074534px;}
.x18a{left:34.026055px;}
.x7f{left:35.798482px;}
.x19b{left:37.049272px;}
.x1b9{left:38.157189px;}
.x100{left:39.253136px;}
.x122{left:41.645333px;}
.x80{left:44.154282px;}
.xc{left:45.208374px;}
.x1bb{left:46.662801px;}
.xef{left:48.407612px;}
.x97{left:49.670956px;}
.xd{left:52.502387px;}
.xa{left:53.999998px;}
.xfd{left:55.086320px;}
.x27{left:56.564876px;}
.x123{left:58.091229px;}
.xe{left:59.857954px;}
.x28{left:61.996916px;}
.x5c{left:63.251055px;}
.x118{left:64.720630px;}
.x81{left:66.267145px;}
.x9f{left:67.447641px;}
.x19d{left:69.398647px;}
.x29{left:70.660480px;}
.xfc{left:72.768666px;}
.xf4{left:73.929256px;}
.x82{left:75.123062px;}
.xf{left:77.323577px;}
.x5d{left:78.916257px;}
.xc8{left:80.881552px;}
.x5e{left:82.470934px;}
.x83{left:84.386767px;}
.xf2{left:85.515052px;}
.xf6{left:86.559803px;}
.x84{left:88.480032px;}
.xf0{left:89.791791px;}
.x5f{left:91.326852px;}
.x101{left:92.396333px;}
.x195{left:93.558143px;}
.xbb{left:94.715556px;}
.x2a{left:96.820444px;}
.xf5{left:97.856298px;}
.x1a1{left:99.182535px;}
.x2b{left:100.375121px;}
.x1b2{left:101.606179px;}
.x19e{left:103.398905px;}
.x60{left:104.683822px;}
.x1b3{left:105.699444px;}
.x102{left:106.722760px;}
.xc9{left:107.795538px;}
.x98{left:108.830945px;}
.xa9{left:110.234570px;}
.xca{left:111.350215px;}
.x61{left:113.162727px;}
.xfa{left:114.212423px;}
.x85{left:115.355548px;}
.x62{left:116.809734px;}
.x10{left:118.010015px;}
.xaa{left:119.152040px;}
.x63{left:120.364412px;}
.xdf{left:121.398719px;}
.x1b4{left:122.534150px;}
.xf7{left:124.291704px;}
.x11{left:125.304028px;}
.x18b{left:127.321138px;}
.x2c{left:128.574024px;}
.x125{left:129.812775px;}
.xfb{left:131.201012px;}
.x2d{left:132.667289px;}
.x126{left:134.152251px;}
.xbc{left:135.425076px;}
.xa0{left:137.340909px;}
.x99{left:139.361161px;}
.x2e{left:141.146195px;}
.x9a{left:143.008168px;}
.xbd{left:144.088641px;}
.xe7{left:145.465886px;}
.x9b{left:146.562846px;}
.xbe{left:148.181906px;}
.x64{left:149.609712px;}
.x124{left:151.316447px;}
.x12{left:152.371897px;}
.x1b5{left:153.487542px;}
.xf8{left:154.721897px;}
.x86{left:156.065068px;}
.x65{left:157.349984px;}
.xab{left:159.246032px;}
.xcb{left:160.892571px;}
.x66{left:162.782023px;}
.x2f{left:164.359315px;}
.xa1{left:166.109175px;}
.x119{left:167.683170px;}
.x13{left:169.375873px;}
.x1a4{left:170.383801px;}
.x67{left:171.445588px;}
.x87{left:172.638174px;}
.x163{left:173.956065px;}
.xa2{left:175.049728px;}
.x30{left:176.269793px;}
.xac{left:177.581089px;}
.xe8{left:179.042969px;}
.x169{left:181.285251px;}
.xcc{left:183.151622px;}
.x9c{left:184.525570px;}
.x16a{left:185.624728px;}
.xf1{left:186.912838px;}
.x19c{left:188.327060px;}
.x9d{left:189.957609px;}
.x88{left:190.973231px;}
.x31{left:193.035252px;}
.x11a{left:194.058569px;}
.x89{left:195.066496px;}
.x32{left:197.128517px;}
.x9e{left:198.621174px;}
.x8a{left:200.452371px;}
.x1a6{left:201.498770px;}
.xad{left:202.740819px;}
.xe9{left:204.187311px;}
.x33{left:205.484317px;}
.x1af{left:206.607657px;}
.xea{left:207.741988px;}
.x34{left:209.577582px;}
.xa3{left:211.304360px;}
.x68{left:212.993766px;}
.xcd{left:214.528190px;}
.xae{left:216.113176px;}
.x35{left:217.487124px;}
.xbf{left:219.267760px;}
.xe0{left:221.552910px;}
.xc0{left:223.361025px;}
.x69{left:225.442831px;}
.x14{left:226.835464px;}
.x15b{left:228.461119px;}
.xe1{left:229.462452px;}
.x36{left:231.536564px;}
.x8b{left:233.498561px;}
.x37{left:235.629829px;}
.xeb{left:237.264277px;}
.x147{left:239.017434px;}
.xc1{left:240.126484px;}
.xe2{left:242.034623px;}
.x167{left:243.341522px;}
.x38{left:244.601157px;}
.xaf{left:245.804735px;}
.xf9{left:246.989628px;}
.xa4{left:248.951625px;}
.x39{left:249.963950px;}
.xe3{left:251.005952px;}
.x13b{left:252.110606px;}
.x15{left:253.226251px;}
.x1a7{left:254.603497px;}
.x8c{left:255.726836px;}
.xa5{left:257.430531px;}
.xb0{left:259.177093px;}
.x1b6{left:260.266359px;}
.x3a{left:261.966757px;}
.x14b{left:263.076906px;}
.x8d{left:264.082636px;}
.xfe{left:265.276888px;}
.x6a{left:266.790962px;}
.xe4{left:269.010162px;}
.x3b{left:270.445663px;}
.x148{left:271.678918px;}
.x8e{left:272.938553px;}
.xc2{left:274.249849px;}
.x3c{left:276.108526px;}
.x14d{left:277.275837px;}
.x3d{left:279.663203px;}
.xce{left:281.497698px;}
.xc3{left:283.105766px;}
.xb1{left:285.137010px;}
.x8f{left:286.703311px;}
.x16{left:288.080556px;}
.xcf{left:289.407240px;}
.x174{left:291.406608px;}
.x6b{left:292.558526px;}
.xa6{left:293.877516px;}
.x164{left:295.438320px;}
.xa7{left:297.524523px;}
.xb2{left:299.071038px;}
.x11b{left:300.714280px;}
.x3e{left:302.083831px;}
.x15f{left:303.122535px;}
.x90{left:304.299734px;}
.x3f{left:306.177096px;}
.xd0{left:307.742297px;}
.x11c{left:309.993373px;}
.xb3{left:311.597045px;}
.xe5{left:314.151488px;}
.xa8{left:315.713392px;}
.x14e{left:317.077452px;}
.xe6{left:318.244753px;}
.x182{left:319.251582px;}
.x40{left:320.418888px;}
.xc4{left:321.945619px;}
.x1ba{left:323.253616px;}
.x41{left:324.512153px;}
.x1b7{left:325.604716px;}
.xc5{left:327.623870px;}
.x6c{left:328.928570px;}
.x14f{left:330.388258px;}
.xb4{left:332.417298px;}
.x42{left:333.852799px;}
.xc6{left:335.825788px;}
.x13c{left:338.123028px;}
.xb5{left:340.311452px;}
.x149{left:341.641433px;}
.x43{left:342.708716px;}
.x13f{left:343.889217px;}
.x91{left:345.009254px;}
.x44{left:346.263393px;}
.x15c{left:347.588978px;}
.x6d{left:348.602402px;}
.x45{left:349.910400px;}
.x14c{left:351.005161px;}
.x92{left:353.672818px;}
.x15d{left:355.236920px;}
.x1ac{left:356.350367px;}
.x103{left:357.484698px;}
.x46{left:359.251046px;}
.x168{left:360.315031px;}
.x104{left:361.577963px;}
.x47{left:363.344311px;}
.x165{left:365.531635px;}
.x6e{left:366.606612px;}
.x17{left:367.853057px;}
.x93{left:369.584231px;}
.x6f{left:370.699877px;}
.x48{left:371.700111px;}
.x13d{left:372.861921px;}
.x70{left:374.254555px;}
.x11d{left:376.962880px;}
.x1ad{left:378.270878px;}
.xb6{left:379.412904px;}
.x49{left:380.556028px;}
.x14a{left:381.827754px;}
.x71{left:383.110472px;}
.x18{left:384.857034px;}
.x1a2{left:386.803643px;}
.x72{left:388.127030px;}
.xd1{left:389.807642px;}
.x1ae{left:391.027708px;}
.x18c{left:392.158742px;}
.x4a{left:393.312858px;}
.x1b8{left:395.790360px;}
.x140{left:397.086273px;}
.x127{left:398.206310px;}
.xc7{left:401.025650px;}
.x4b{left:402.168775px;}
.xec{left:404.154959px;}
.x94{left:405.300276px;}
.x16b{left:406.968798px;}
.x11e{left:408.385613px;}
.x19{left:410.447633px;}
.x4c{left:411.509421px;}
.xb7{left:412.589893px;}
.x1{left:414.234341px;}
.x73{left:416.287461px;}
.x4d{left:418.295623px;}
.xb8{left:420.945693px;}
.x95{left:422.781287px;}
.x74{left:424.643262px;}
.x2{left:425.874662px;}
.x13e{left:427.351587px;}
.xb9{left:429.886246px;}
.x3{left:430.976779px;}
.x4e{left:432.537415px;}
.x75{left:433.583814px;}
.x166{left:434.870928px;}
.xd2{left:436.433931px;}
.x4{left:438.547083px;}
.x4f{left:439.631382px;}
.x128{left:441.162509px;}
.x19f{left:442.226499px;}
.x5{left:443.654934px;}
.xd3{left:445.097495px;}
.x1a{left:446.686877px;}
.xba{left:447.713492px;}
.x6{left:449.079192px;}
.x162{left:450.180762px;}
.x76{left:451.411060px;}
.x7{left:454.179902px;}
.x77{left:455.504325px;}
.x50{left:457.150863px;}
.xd4{left:458.469853px;}
.xed{left:459.552529px;}
.x11f{left:461.621140px;}
.x160{left:462.829114px;}
.x8{left:464.164276px;}
.x96{left:465.398946px;}
.x51{left:466.491509px;}
.x161{left:468.099577px;}
.x9{left:469.146883px;}
.x52{left:470.584774px;}
.x188{left:472.521496px;}
.x150{left:473.937212px;}
.x1b0{left:475.062744px;}
.x78{left:476.309190px;}
.x120{left:477.886482px;}
.x1b{left:480.017749px;}
.x175{left:481.820368px;}
.x53{left:483.418545px;}
.x79{left:485.242048px;}
.xee{left:486.412657px;}
.x16c{left:489.034143px;}
.x1c{left:490.374017px;}
.x1a0{left:491.514949px;}
.x54{left:492.697638px;}
.x121{left:493.705566px;}
.x171{left:496.538096px;}
.x1d{left:497.729583px;}
.x141{left:498.902391px;}
.x55{left:501.361202px;}
.x105{left:503.272638px;}
.x56{left:505.008209px;}
.x106{left:506.919644px;}
.x57{left:508.562886px;}
.x16d{left:509.892868px;}
.x129{left:511.617447px;}
.x16e{left:513.447545px;}
.x142{left:514.582981px;}
.x1b1{left:515.772265px;}
.x58{left:517.418803px;}
.x176{left:518.802643px;}
.x7a{left:519.988636px;}
.x196{left:521.004258px;}
.x16f{left:522.303462px;}
.x143{left:523.438898px;}
.xd5{left:524.739197px;}
.x59{left:526.082368px;}
.x7b{left:527.898178px;}
.x5a{left:530.175633px;}
.x170{left:531.567167px;}
.x1e{left:532.783935px;}
.x189{left:534.143599px;}
.x5b{left:535.192191px;}
.x7c{left:536.330919px;}
.x12a{left:538.477574px;}
.x107{left:541.019926px;}
.x197{left:542.732416px;}
.x7d{left:544.686719px;}
.xd6{left:546.044179px;}
.x144{left:547.475288px;}
.x145{left:551.568553px;}
.x7e{left:553.542636px;}
.xd7{left:555.384825px;}
.x146{left:557.000593px;}
.x1f{left:559.174722px;}
.x1bc{left:562.127066px;}
.x151{left:563.719747px;}
.xd8{left:564.840882px;}
.x20{left:566.530288px;}
.x12b{left:568.676945px;}
.x177{left:570.242150px;}
.x152{left:572.998840px;}
.x108{left:574.758586px;}
.x1bd{left:576.368858px;}
.x180{left:578.494630px;}
.x1be{left:580.462123px;}
.x109{left:582.052599px;}
.x12c{left:583.311136px;}
.x21{left:584.703769px;}
.x12d{left:587.404401px;}
.x18d{left:588.589294px;}
.x10a{left:590.408399px;}
.x181{left:591.505365px;}
.x1a8{left:594.082886px;}
.x12e{left:595.760201px;}
.x18e{left:596.945094px;}
.xd9{left:598.225613px;}
.x1a9{left:599.353349px;}
.x183{left:600.601992px;}
.x22{left:601.707745px;}
.x10b{left:603.780757px;}
.x18f{left:605.801011px;}
.x12f{left:607.763008px;}
.x23{left:609.001759px;}
.x184{left:610.373508px;}
.x10c{left:612.136558px;}
.x24{left:616.357325px;}
.x153{left:619.986751px;}
.x178{left:621.546456px;}
.xda{left:624.047036px;}
.x130{left:625.397901px;}
.x10d{left:627.586324px;}
.xdb{left:629.317499px;}
.x185{left:631.716961px;}
.x25{left:633.822948px;}
.x10e{left:636.442242px;}
.x154{left:637.729362px;}
.x131{left:640.693786px;}
.x198{left:641.832514px;}
.x179{left:643.159203px;}
.x10f{left:645.782888px;}
.x190{left:648.980340px;}
.xdc{left:650.283941px;}
.x155{left:651.355626px;}
.x17a{left:652.499848px;}
.x132{left:655.027908px;}
.x17b{left:656.593113px;}
.xdd{left:659.139858px;}
.x1bf{left:661.442599px;}
.x186{left:663.208941px;}
.x133{left:664.507047px;}
.x110{left:667.087870px;}
.xde{left:668.403563px;}
.x17c{left:670.834905px;}
.x156{left:673.453101px;}
.x17d{left:674.928170px;}
.x111{left:676.428516px;}
.x191{left:679.625968px;}
.x112{left:680.767992px;}
.x134{left:682.103470px;}
.x17e{left:683.591735px;}
.x113{left:684.861257px;}
.x135{left:686.196735px;}
.x187{left:688.745682px;}
.x157{left:690.880253px;}
.x17f{left:692.447652px;}
.x136{left:694.860300px;}
.x199{left:698.276483px;}
.x192{left:701.354126px;}
.x114{left:702.557703px;}
.x137{left:703.716217px;}
.x172{left:705.691403px;}
.x115{left:710.467245px;}
.x138{left:713.056863px;}
.x19a{left:716.611540px;}
.x193{left:718.542761px;}
.x139{left:719.843065px;}
.x173{left:723.118555px;}
.x1a5{left:725.075056px;}
.x158{left:727.396485px;}
.x116{left:728.471455px;}
.x1aa{left:729.476087px;}
.x117{left:732.564720px;}
.x13a{left:734.084857px;}
.x159{left:736.337037px;}
.x15e{left:738.162732px;}
.x194{left:745.618324px;}
.x1ab{left:747.072509px;}
.x15a{left:754.164283px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.272958pt;}
.ls3{letter-spacing:2.106475pt;}
.ls1{letter-spacing:2.188546pt;}
.ls0{letter-spacing:3.063965pt;}
.ws0{word-spacing:-3.063965pt;}
.ws2{word-spacing:-2.188546pt;}
.ws3{word-spacing:-2.106475pt;}
.ws4{word-spacing:-0.272958pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-3.063965pt;}
._6{margin-left:-2.044679pt;}
._5{margin-left:-1.148987pt;}
._3{width:1.559339pt;}
._1{width:3.063964pt;}
._4{width:4.021454pt;}
._2{width:5.799647pt;}
.fs0{font-size:47.999996pt;}
.fs2{font-size:56.026777pt;}
.fs4{font-size:65.511314pt;}
.fs3{font-size:84.040166pt;}
.fs1{font-size:112.053555pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:19.009071pt;}
.y70{bottom:21.009981pt;}
.y3f{bottom:21.009982pt;}
.y1e{bottom:21.010052pt;}
.y77{bottom:21.010062pt;}
.y39{bottom:21.010108pt;}
.y80{bottom:21.010169pt;}
.y1{bottom:22.560063pt;}
.y53{bottom:23.010953pt;}
.y27{bottom:38.018156pt;}
.y3e{bottom:40.019068pt;}
.y1d{bottom:40.019137pt;}
.y38{bottom:40.019193pt;}
.y7f{bottom:40.019254pt;}
.y52{bottom:45.021473pt;}
.y78{bottom:49.023549pt;}
.y26{bottom:57.027241pt;}
.y3d{bottom:59.028153pt;}
.y1c{bottom:59.028223pt;}
.y37{bottom:59.028278pt;}
.y7e{bottom:59.028340pt;}
.y51{bottom:67.031992pt;}
.y54{bottom:74.743600pt;}
.y3a{bottom:74.743682pt;}
.y2{bottom:74.743709pt;}
.y79{bottom:74.743764pt;}
.y25{bottom:76.036327pt;}
.y1b{bottom:78.037308pt;}
.y36{bottom:78.037364pt;}
.y50{bottom:89.042512pt;}
.y24{bottom:95.045412pt;}
.y1a{bottom:97.046393pt;}
.y35{bottom:97.046449pt;}
.y4f{bottom:111.053032pt;}
.y19{bottom:116.055478pt;}
.y34{bottom:116.055534pt;}
.y4e{bottom:133.063551pt;}
.y18{bottom:135.064563pt;}
.y33{bottom:135.064619pt;}
.y23{bottom:153.073145pt;}
.y17{bottom:154.073648pt;}
.y32{bottom:154.073704pt;}
.y4d{bottom:155.074071pt;}
.y76{bottom:164.786733pt;}
.y75{bottom:169.080929pt;}
.y16{bottom:173.082734pt;}
.y31{bottom:173.082789pt;}
.y4c{bottom:177.084591pt;}
.y22{bottom:189.090359pt;}
.y74{bottom:191.091449pt;}
.y15{bottom:192.091819pt;}
.y30{bottom:192.091874pt;}
.y4b{bottom:199.095110pt;}
.y21{bottom:211.100879pt;}
.y14{bottom:211.100904pt;}
.y2f{bottom:211.100960pt;}
.y73{bottom:213.101968pt;}
.y4a{bottom:221.105630pt;}
.y13{bottom:230.109989pt;}
.y2e{bottom:230.110045pt;}
.y20{bottom:233.111399pt;}
.y72{bottom:235.112488pt;}
.y49{bottom:243.116150pt;}
.y12{bottom:249.119074pt;}
.y2d{bottom:249.119130pt;}
.y48{bottom:265.126669pt;}
.y11{bottom:268.128159pt;}
.y2c{bottom:268.128215pt;}
.y1f{bottom:270.129091pt;}
.y71{bottom:272.130180pt;}
.y47{bottom:287.137189pt;}
.y10{bottom:287.137244pt;}
.y2b{bottom:287.137300pt;}
.y2a{bottom:306.146385pt;}
.y46{bottom:309.147709pt;}
.y45{bottom:331.158228pt;}
.y44{bottom:367.175442pt;}
.yf{bottom:388.893828pt;}
.y6f{bottom:388.893924pt;}
.y43{bottom:389.185962pt;}
.y6e{bottom:393.188038pt;}
.y6d{bottom:415.198558pt;}
.y42{bottom:426.203654pt;}
.y8d{bottom:429.205042pt;}
.y6c{bottom:437.209078pt;}
.y8c{bottom:465.222256pt;}
.y41{bottom:468.223737pt;}
.y6b{bottom:474.226770pt;}
.y40{bottom:490.234257pt;}
.y8b{bottom:507.242339pt;}
.y6a{bottom:512.244940pt;}
.y8a{bottom:529.252859pt;}
.y89{bottom:551.263379pt;}
.y69{bottom:554.265023pt;}
.y88{bottom:573.273898pt;}
.y68{bottom:576.275543pt;}
.y67{bottom:598.286062pt;}
.y3c{bottom:602.996168pt;}
.y87{bottom:610.291591pt;}
.y66{bottom:620.296582pt;}
.y65{bottom:642.307102pt;}
.y3b{bottom:646.308851pt;}
.y86{bottom:652.311674pt;}
.ye{bottom:660.315576pt;}
.y64{bottom:664.317621pt;}
.y85{bottom:674.322193pt;}
.y63{bottom:686.328141pt;}
.yd{bottom:702.335659pt;}
.y62{bottom:708.338661pt;}
.y84{bottom:712.340364pt;}
.yc{bottom:724.346178pt;}
.y61{bottom:730.349180pt;}
.yb{bottom:746.356698pt;}
.y83{bottom:751.359012pt;}
.y60{bottom:752.359700pt;}
.y29{bottom:765.073505pt;}
.ya{bottom:768.367218pt;}
.y82{bottom:773.369532pt;}
.y5f{bottom:774.370220pt;}
.y9{bottom:790.377737pt;}
.y81{bottom:795.380051pt;}
.y5e{bottom:796.380739pt;}
.y8{bottom:812.388257pt;}
.y5d{bottom:818.391259pt;}
.y5c{bottom:840.401779pt;}
.y7{bottom:848.405471pt;}
.y5b{bottom:862.412298pt;}
.y6{bottom:870.415991pt;}
.y5a{bottom:884.422818pt;}
.y5{bottom:892.426510pt;}
.y59{bottom:906.433338pt;}
.y7d{bottom:908.141857pt;}
.y4{bottom:914.437030pt;}
.y58{bottom:928.443857pt;}
.y7c{bottom:950.454167pt;}
.y57{bottom:950.454377pt;}
.y3{bottom:964.460938pt;}
.y7b{bottom:972.464687pt;}
.y56{bottom:972.464897pt;}
.y7a{bottom:994.475206pt;}
.y55{bottom:994.475416pt;}
.h2{height:45.599996pt;}
.he{height:51.024350pt;}
.hf{height:51.024382pt;}
.h5{height:53.225438pt;}
.h6{height:54.494795pt;}
.hd{height:62.235748pt;}
.h7{height:79.838158pt;}
.hb{height:89.042495pt;}
.h11{height:89.042809pt;}
.h4{height:106.450877pt;}
.h9{height:125.059727pt;}
.h8{height:317.151593pt;}
.ha{height:320.153111pt;}
.h10{height:1010.482774pt;}
.h3{height:1010.482934pt;}
.hc{height:1010.483094pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w3{width:641.306527pt;}
.w2{width:697.333251pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xf3{left:16.007658pt;}
.xb{left:20.201061pt;}
.xff{left:23.381292pt;}
.x1a3{left:27.142855pt;}
.x26{left:28.510697pt;}
.x18a{left:30.245382pt;}
.x7f{left:31.820872pt;}
.x19b{left:32.932686pt;}
.x1b9{left:33.917501pt;}
.x100{left:34.891676pt;}
.x122{left:37.018074pt;}
.x80{left:39.248250pt;}
.xc{left:40.185221pt;}
.x1bb{left:41.478045pt;}
.xef{left:43.028988pt;}
.x97{left:44.151961pt;}
.xd{left:46.668789pt;}
.xa{left:47.999998pt;}
.xfd{left:48.965617pt;}
.x27{left:50.279890pt;}
.x123{left:51.636648pt;}
.xe{left:53.207070pt;}
.x28{left:55.108370pt;}
.x5c{left:56.223160pt;}
.x118{left:57.529449pt;}
.x81{left:58.904129pt;}
.x9f{left:59.953459pt;}
.x19d{left:61.687686pt;}
.x29{left:62.809316pt;}
.xfc{left:64.683258pt;}
.xf4{left:65.714895pt;}
.x82{left:66.776055pt;}
.xf{left:68.732068pt;}
.x5d{left:70.147784pt;}
.xc8{left:71.894713pt;}
.x5e{left:73.307497pt;}
.x83{left:75.010460pt;}
.xf2{left:76.013379pt;}
.xf6{left:76.942047pt;}
.x84{left:78.648917pt;}
.xf0{left:79.814926pt;}
.x5f{left:81.179424pt;}
.x101{left:82.130073pt;}
.x195{left:83.162794pt;}
.xbb{left:84.191605pt;}
.x2a{left:86.062617pt;}
.xf5{left:86.983376pt;}
.x1a1{left:88.162253pt;}
.x2b{left:89.222330pt;}
.x1b2{left:90.316603pt;}
.x19e{left:91.910138pt;}
.x60{left:93.052286pt;}
.x1b3{left:93.955061pt;}
.x102{left:94.864675pt;}
.xc9{left:95.818256pt;}
.x98{left:96.738618pt;}
.xa9{left:97.986284pt;}
.xca{left:98.977969pt;}
.x61{left:100.589091pt;}
.xfa{left:101.522154pt;}
.x85{left:102.538265pt;}
.x62{left:103.830875pt;}
.x10{left:104.897791pt;}
.xaa{left:105.912924pt;}
.x63{left:106.990588pt;}
.xdf{left:107.909973pt;}
.x1b4{left:108.919244pt;}
.xf7{left:110.481514pt;}
.x11{left:111.381358pt;}
.x18b{left:113.174345pt;}
.x2c{left:114.288021pt;}
.x125{left:115.389133pt;}
.xfb{left:116.623121pt;}
.x2d{left:117.926479pt;}
.x126{left:119.246446pt;}
.xbc{left:120.377846pt;}
.xa0{left:122.080808pt;}
.x99{left:123.876588pt;}
.x2e{left:125.463284pt;}
.x9a{left:127.118372pt;}
.xbd{left:128.078792pt;}
.xe7{left:129.303010pt;}
.x9b{left:130.278085pt;}
.xbe{left:131.717250pt;}
.x64{left:132.986411pt;}
.x124{left:134.503509pt;}
.x12{left:135.441686pt;}
.x1b5{left:136.433371pt;}
.xf8{left:137.530575pt;}
.x86{left:138.724505pt;}
.x65{left:139.866652pt;}
.xab{left:141.552028pt;}
.xcb{left:143.015618pt;}
.x66{left:144.695132pt;}
.x2f{left:146.097169pt;}
.xa1{left:147.652600pt;}
.x119{left:149.051706pt;}
.x13{left:150.556332pt;}
.x1a4{left:151.452268pt;}
.x67{left:152.396078pt;}
.x87{left:153.456155pt;}
.x163{left:154.627613pt;}
.xa2{left:155.599758pt;}
.x30{left:156.684260pt;}
.xac{left:157.849857pt;}
.xe8{left:159.149306pt;}
.x169{left:161.142446pt;}
.xcc{left:162.801442pt;}
.x9c{left:164.022729pt;}
.x16a{left:164.999758pt;}
.xf1{left:166.144745pt;}
.x19c{left:167.401831pt;}
.x9d{left:168.851208pt;}
.x88{left:169.753984pt;}
.x31{left:171.586891pt;}
.x11a{left:172.496505pt;}
.x89{left:173.392441pt;}
.x32{left:175.225349pt;}
.x9e{left:176.552154pt;}
.x8a{left:178.179886pt;}
.x1a6{left:179.110018pt;}
.xad{left:180.214061pt;}
.xe9{left:181.499832pt;}
.x33{left:182.652727pt;}
.x1af{left:183.651251pt;}
.xea{left:184.659545pt;}
.x34{left:186.291184pt;}
.xa3{left:187.826097pt;}
.x68{left:189.327792pt;}
.xcd{left:190.691725pt;}
.xae{left:192.100601pt;}
.x35{left:193.321888pt;}
.xbf{left:194.904676pt;}
.xe0{left:196.935920pt;}
.xc0{left:198.543134pt;}
.x69{left:200.393627pt;}
.x14{left:201.631524pt;}
.x15b{left:203.076550pt;}
.xe1{left:203.966624pt;}
.x36{left:205.810279pt;}
.x8b{left:207.554276pt;}
.x37{left:209.448737pt;}
.xeb{left:210.901579pt;}
.x147{left:212.459941pt;}
.xc1{left:213.445764pt;}
.xe2{left:215.141887pt;}
.x167{left:216.303575pt;}
.x38{left:217.423251pt;}
.xaf{left:218.493098pt;}
.xf9{left:219.546336pt;}
.xa4{left:221.290334pt;}
.x39{left:222.190178pt;}
.xe3{left:223.116402pt;}
.x13b{left:224.098316pt;}
.x15{left:225.090001pt;}
.x1a7{left:226.314219pt;}
.x8c{left:227.312743pt;}
.xa5{left:228.827139pt;}
.xb0{left:230.379639pt;}
.x1b6{left:231.347875pt;}
.x3a{left:232.859340pt;}
.x14b{left:233.846139pt;}
.x8d{left:234.740121pt;}
.xfe{left:235.801679pt;}
.x6a{left:237.147522pt;}
.xe4{left:239.120144pt;}
.x3b{left:240.396145pt;}
.x148{left:241.492372pt;}
.x8e{left:242.612048pt;}
.xc2{left:243.777644pt;}
.x3c{left:245.429801pt;}
.x14d{left:246.467411pt;}
.x3d{left:248.589514pt;}
.xce{left:250.220176pt;}
.xc3{left:251.649570pt;}
.xb1{left:253.455120pt;}
.x8f{left:254.847387pt;}
.x16{left:256.071605pt;}
.xcf{left:257.250880pt;}
.x174{left:259.028096pt;}
.x6b{left:260.052023pt;}
.xa6{left:261.224459pt;}
.x164{left:262.611840pt;}
.xa7{left:264.466242pt;}
.xb2{left:265.840923pt;}
.x11b{left:267.301582pt;}
.x3e{left:268.518961pt;}
.x15f{left:269.442253pt;}
.x90{left:270.488652pt;}
.x3f{left:272.157418pt;}
.xd0{left:273.548708pt;}
.x11c{left:275.549665pt;}
.xb3{left:276.975151pt;}
.xe5{left:279.245767pt;}
.xa8{left:280.634126pt;}
.x14e{left:281.846624pt;}
.xe6{left:282.884225pt;}
.x182{left:283.779184pt;}
.x40{left:284.816789pt;}
.xc4{left:286.173883pt;}
.x1ba{left:287.336548pt;}
.x41{left:288.455247pt;}
.x1b7{left:289.426414pt;}
.xc5{left:291.221217pt;}
.x6c{left:292.380951pt;}
.x14f{left:293.678451pt;}
.xb4{left:295.482043pt;}
.x42{left:296.758043pt;}
.xc6{left:298.511811pt;}
.x13c{left:300.553803pt;}
.xb5{left:302.499068pt;}
.x149{left:303.681274pt;}
.x43{left:304.629970pt;}
.x13f{left:305.679304pt;}
.x91{left:306.674892pt;}
.x44{left:307.789683pt;}
.x15c{left:308.967980pt;}
.x6d{left:309.868802pt;}
.x45{left:311.031467pt;}
.x14c{left:312.004588pt;}
.x92{left:314.375838pt;}
.x15d{left:315.766151pt;}
.x1ac{left:316.755882pt;}
.x103{left:317.764176pt;}
.x46{left:319.334263pt;}
.x168{left:320.280027pt;}
.x104{left:321.402634pt;}
.x47{left:322.972721pt;}
.x165{left:324.917009pt;}
.x6e{left:325.872544pt;}
.x17{left:326.980495pt;}
.x93{left:328.519317pt;}
.x6f{left:329.511002pt;}
.x48{left:330.400099pt;}
.x13d{left:331.432819pt;}
.x70{left:332.670715pt;}
.x11d{left:335.078116pt;}
.x1ad{left:336.240781pt;}
.xb6{left:337.255914pt;}
.x49{left:338.272025pt;}
.x14a{left:339.402448pt;}
.x71{left:340.542642pt;}
.x18{left:342.095141pt;}
.x1a2{left:343.825461pt;}
.x72{left:345.001804pt;}
.xd1{left:346.495682pt;}
.x1ae{left:347.580185pt;}
.x18c{left:348.585548pt;}
.x4a{left:349.611429pt;}
.x1b8{left:351.813653pt;}
.x140{left:352.965576pt;}
.x127{left:353.961164pt;}
.xc7{left:356.467245pt;}
.x4b{left:357.483355pt;}
.xec{left:359.248852pt;}
.x94{left:360.266912pt;}
.x16b{left:361.750043pt;}
.x11e{left:363.009434pt;}
.x19{left:364.842341pt;}
.x4c{left:365.786152pt;}
.xb7{left:366.746572pt;}
.x1{left:368.208303pt;}
.x73{left:370.033299pt;}
.x4d{left:371.818332pt;}
.xb8{left:374.173950pt;}
.x95{left:375.805589pt;}
.x74{left:377.460677pt;}
.x2{left:378.555255pt;}
.x13e{left:379.868077pt;}
.xb9{left:382.121107pt;}
.x3{left:383.090470pt;}
.x4e{left:384.477702pt;}
.x75{left:385.407835pt;}
.x166{left:386.551936pt;}
.xd2{left:387.941272pt;}
.x4{left:389.819630pt;}
.x4f{left:390.783450pt;}
.x128{left:392.144453pt;}
.x19f{left:393.090222pt;}
.x5{left:394.359942pt;}
.xd3{left:395.642218pt;}
.x1a{left:397.055002pt;}
.xba{left:397.967548pt;}
.x6{left:399.181504pt;}
.x162{left:400.160677pt;}
.x76{left:401.254275pt;}
.x7{left:403.715468pt;}
.x77{left:404.892733pt;}
.x50{left:406.356323pt;}
.xd4{left:407.528758pt;}
.xed{left:408.491137pt;}
.x11f{left:410.329902pt;}
.x160{left:411.403657pt;}
.x8{left:412.590468pt;}
.x96{left:413.687952pt;}
.x51{left:414.659119pt;}
.x161{left:416.088513pt;}
.x9{left:417.019452pt;}
.x52{left:418.297577pt;}
.x188{left:420.019107pt;}
.x150{left:421.277522pt;}
.x1b0{left:422.277995pt;}
.x78{left:423.385947pt;}
.x120{left:424.787984pt;}
.x1b{left:426.682444pt;}
.x175{left:428.284772pt;}
.x53{left:429.705373pt;}
.x79{left:431.326265pt;}
.xee{left:432.366806pt;}
.x16c{left:434.697016pt;}
.x1c{left:435.888015pt;}
.x1a0{left:436.902177pt;}
.x54{left:437.953456pt;}
.x121{left:438.849392pt;}
.x171{left:441.367196pt;}
.x1d{left:442.426296pt;}
.x141{left:443.468792pt;}
.x55{left:445.654402pt;}
.x105{left:447.353456pt;}
.x56{left:448.896186pt;}
.x106{left:450.595239pt;}
.x57{left:452.055899pt;}
.x16d{left:453.238105pt;}
.x129{left:454.771064pt;}
.x16e{left:456.397818pt;}
.x142{left:457.407094pt;}
.x1b1{left:458.464235pt;}
.x58{left:459.927825pt;}
.x176{left:461.157905pt;}
.x7a{left:462.212121pt;}
.x196{left:463.114896pt;}
.x16f{left:464.269744pt;}
.x143{left:465.279021pt;}
.xd5{left:466.434842pt;}
.x59{left:467.628771pt;}
.x7b{left:469.242825pt;}
.x5a{left:471.267229pt;}
.x170{left:472.504149pt;}
.x1e{left:473.585720pt;}
.x189{left:474.794310pt;}
.x5b{left:475.726392pt;}
.x7c{left:476.738595pt;}
.x12a{left:478.646733pt;}
.x107{left:480.906601pt;}
.x197{left:482.428814pt;}
.x7d{left:484.165973pt;}
.xd6{left:485.372604pt;}
.x144{left:486.644701pt;}
.x145{left:490.283159pt;}
.x7e{left:492.037899pt;}
.xd7{left:493.675400pt;}
.x146{left:495.111638pt;}
.x1f{left:497.044197pt;}
.x1bc{left:499.668503pt;}
.x151{left:501.084219pt;}
.xd8{left:502.080784pt;}
.x20{left:503.582478pt;}
.x12b{left:505.490617pt;}
.x177{left:506.881912pt;}
.x152{left:509.332302pt;}
.x108{left:510.896521pt;}
.x1bd{left:512.327874pt;}
.x180{left:514.217449pt;}
.x1be{left:515.966332pt;}
.x109{left:517.380088pt;}
.x12c{left:518.498788pt;}
.x21{left:519.736683pt;}
.x12d{left:522.137245pt;}
.x18d{left:523.190483pt;}
.x10a{left:524.807466pt;}
.x181{left:525.782546pt;}
.x1a8{left:528.073676pt;}
.x12e{left:529.564623pt;}
.x18e{left:530.617861pt;}
.xd9{left:531.756100pt;}
.x1a9{left:532.758533pt;}
.x183{left:533.868438pt;}
.x22{left:534.851329pt;}
.x10b{left:536.694007pt;}
.x18f{left:538.489788pt;}
.x12f{left:540.233785pt;}
.x23{left:541.334897pt;}
.x184{left:542.554230pt;}
.x10c{left:544.121384pt;}
.x24{left:547.873178pt;}
.x153{left:551.099334pt;}
.x178{left:552.485739pt;}
.xda{left:554.708476pt;}
.x130{left:555.909246pt;}
.x10d{left:557.854511pt;}
.xdb{left:559.393333pt;}
.x185{left:561.526188pt;}
.x25{left:563.398176pt;}
.x10e{left:565.726437pt;}
.x154{left:566.870544pt;}
.x131{left:569.505588pt;}
.x198{left:570.517790pt;}
.x179{left:571.697069pt;}
.x10f{left:574.029233pt;}
.x190{left:576.871413pt;}
.xdc{left:578.030170pt;}
.x155{left:578.982778pt;}
.x17a{left:579.999865pt;}
.x132{left:582.247029pt;}
.x17b{left:583.638323pt;}
.xdd{left:585.902096pt;}
.x1bf{left:587.948977pt;}
.x186{left:589.519059pt;}
.x133{left:590.672931pt;}
.x110{left:592.966995pt;}
.xde{left:594.136500pt;}
.x17c{left:596.297694pt;}
.x156{left:598.624978pt;}
.x17d{left:599.936151pt;}
.x111{left:601.269792pt;}
.x191{left:604.111971pt;}
.x112{left:605.127104pt;}
.x134{left:606.314196pt;}
.x17e{left:607.637098pt;}
.x113{left:608.765562pt;}
.x135{left:609.952653pt;}
.x187{left:612.218384pt;}
.x157{left:614.115781pt;}
.x17f{left:615.509024pt;}
.x136{left:617.653600pt;}
.x199{left:620.690207pt;}
.x192{left:623.425890pt;}
.x114{left:624.495736pt;}
.x137{left:625.525526pt;}
.x172{left:627.281247pt;}
.x115{left:631.526440pt;}
.x138{left:633.828322pt;}
.x19a{left:636.988036pt;}
.x193{left:638.704676pt;}
.x139{left:639.860502pt;}
.x173{left:642.772049pt;}
.x1a5{left:644.511161pt;}
.x158{left:646.574653pt;}
.x116{left:647.530183pt;}
.x1aa{left:648.423188pt;}
.x117{left:651.168640pt;}
.x13a{left:652.519873pt;}
.x159{left:654.521811pt;}
.x15e{left:656.144651pt;}
.x194{left:662.771843pt;}
.x1ab{left:664.064453pt;}
.x15a{left:670.368252pt;}
}




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