
    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;}
.ffc{font-family:sans-serif;visibility:hidden;}
.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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0a8eec7dd31520cdade3c88a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.977539;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_606840483dee73e0b6d8a024.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.941895;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;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{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;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.477269px;}
.ls7{letter-spacing:1.723480px;}
.ls3{letter-spacing:1.846586px;}
.ls6{letter-spacing:2.154350px;}
.ls5{letter-spacing:2.215903px;}
.ls8{letter-spacing:2.369785px;}
.ls1{letter-spacing:2.431338px;}
.ls9{letter-spacing:2.492891px;}
.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;}
}
.ws1{word-spacing:-3.446960px;}
.ws9{word-spacing:-2.492891px;}
.ws2{word-spacing:-2.431338px;}
.ws8{word-spacing:-2.369785px;}
.ws5{word-spacing:-2.215903px;}
.ws6{word-spacing:-2.154350px;}
.ws3{word-spacing:-1.846586px;}
.ws7{word-spacing:-1.723480px;}
.ws4{word-spacing:-1.477269px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-3.446960px;}
._3{margin-left:-2.339008px;}
._6{margin-left:-1.169505px;}
._2{width:1.754256px;}
._0{width:3.446960px;}
._5{width:4.524135px;}
._4{width:5.733209px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,238);}
.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;}
.y6d{bottom:21.385447px;}
.y1{bottom:25.380071px;}
.y34{bottom:27.013044px;}
.y54{bottom:28.138510px;}
.y42{bottom:40.519263px;}
.y6c{bottom:46.147282px;}
.y33{bottom:51.774879px;}
.y53{bottom:52.900345px;}
.y41{bottom:65.281098px;}
.y6b{bottom:70.909116px;}
.y32{bottom:76.536714px;}
.y43{bottom:84.086374px;}
.y25{bottom:84.086550px;}
.y1c{bottom:84.086642px;}
.y2{bottom:84.086672px;}
.y35{bottom:84.086734px;}
.y6a{bottom:95.670951px;}
.y40{bottom:105.800464px;}
.y31{bottom:117.056079px;}
.y3f{bottom:130.562298px;}
.y69{bottom:140.692468px;}
.y30{bottom:157.575445px;}
.y24{bottom:278.007820px;}
.y1b{bottom:282.510006px;}
.y1a{bottom:307.271841px;}
.y23{bottom:318.527186px;}
.y68{bottom:332.033918px;}
.y19{bottom:347.791207px;}
.y67{bottom:377.055435px;}
.y2f{bottom:386.059646px;}
.y18{bottom:388.310572px;}
.y2e{bottom:410.821481px;}
.y3e{bottom:416.448934px;}
.y66{bottom:423.202490px;}
.y17{bottom:435.583166px;}
.y3d{bottom:441.210769px;}
.y65{bottom:447.964325px;}
.y2d{bottom:452.466385px;}
.y16{bottom:460.345000px;}
.y22{bottom:462.596042px;}
.y64{bottom:472.726160px;}
.y3c{bottom:481.730135px;}
.y15{bottom:485.106835px;}
.y52{bottom:486.232451px;}
.y21{bottom:487.357876px;}
.y2c{bottom:496.362364px;}
.y63{bottom:497.487994px;}
.y3b{bottom:506.491969px;}
.y14{bottom:509.868670px;}
.y51{bottom:510.994285px;}
.y2b{bottom:521.124199px;}
.y62{bottom:522.249829px;}
.y3a{bottom:531.253804px;}
.y13{bottom:534.630504px;}
.y50{bottom:535.756120px;}
.y2a{bottom:545.886033px;}
.y12{bottom:559.392339px;}
.y4f{bottom:560.517955px;}
.y61{bottom:563.894733px;}
.y29{bottom:570.647868px;}
.y39{bottom:571.773170px;}
.y11{bottom:584.154174px;}
.y38{bottom:596.535004px;}
.y4e{bottom:601.037320px;}
.y60{bottom:608.916250px;}
.y28{bottom:613.418310px;}
.y37{bottom:621.296839px;}
.y10{bottom:624.673539px;}
.y5f{bottom:633.678085px;}
.y4d{bottom:641.556686px;}
.yf{bottom:649.435374px;}
.y27{bottom:655.063213px;}
.y5e{bottom:658.439919px;}
.y4c{bottom:666.318521px;}
.y5d{bottom:683.201754px;}
.ye{bottom:691.080278px;}
.y5c{bottom:707.963589px;}
.y4b{bottom:709.088962px;}
.yd{bottom:738.352871px;}
.y5b{bottom:748.482954px;}
.y4a{bottom:752.984942px;}
.yc{bottom:763.114706px;}
.y49{bottom:777.746776px;}
.yb{bottom:787.876540px;}
.y48{bottom:802.508611px;}
.y47{bottom:827.270446px;}
.ya{bottom:828.395906px;}
.y9{bottom:853.157740px;}
.y46{bottom:867.789811px;}
.y20{bottom:882.421692px;}
.y8{bottom:894.802644px;}
.y45{bottom:908.309177px;}
.y44{bottom:933.071012px;}
.y7{bottom:942.075238px;}
.y5a{bottom:957.833011px;}
.y6{bottom:966.837072px;}
.y5{bottom:991.598907px;}
.y59{bottom:1000.603452px;}
.y58{bottom:1044.499432px;}
.y4{bottom:1047.875804px;}
.y1f{bottom:1053.503459px;}
.y57{bottom:1069.261266px;}
.y1e{bottom:1078.265293px;}
.y3{bottom:1085.018556px;}
.y56{bottom:1094.023101px;}
.y36{bottom:1118.784607px;}
.y1d{bottom:1118.784659px;}
.y26{bottom:1118.784843px;}
.y55{bottom:1118.784936px;}
.h7{height:48.072780px;}
.hb{height:48.226663px;}
.h2{height:51.299996px;}
.h5{height:59.878618px;}
.h9{height:70.015216px;}
.h6{height:89.817927px;}
.h4{height:119.757237px;}
.ha{height:1136.793121px;}
.h3{height:1136.793301px;}
.h8{height:1136.793481px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:784.499907px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:22.726194px;}
.x11f{left:25.980801px;}
.x188{left:27.811999px;}
.x1e3{left:29.720137px;}
.x73{left:30.751147px;}
.x35{left:32.074534px;}
.x29{left:33.159403px;}
.x18b{left:34.244272px;}
.x9f{left:35.683070px;}
.x19a{left:37.337303px;}
.xc{left:39.145418px;}
.x18c{left:43.100189px;}
.x36{left:44.562069px;}
.x17d{left:47.154983px;}
.x74{left:49.024652px;}
.x1b9{left:51.125143px;}
.x37{left:52.471611px;}
.xa{left:53.999998px;}
.x38{left:56.564876px;}
.xc1{left:58.780779px;}
.x18d{left:60.242659px;}
.x39{left:61.996916px;}
.xd{left:63.181808px;}
.xa0{left:65.113029px;}
.x13d{left:66.205060px;}
.xc7{left:67.447641px;}
.x1a7{left:68.998553px;}
.x3a{left:70.660480px;}
.xff{left:72.833516px;}
.xa1{left:73.968946px;}
.xe0{left:75.803441px;}
.x149{left:77.096051px;}
.x10b{left:78.591027px;}
.x13f{left:79.931879px;}
.xa2{left:82.186253px;}
.x140{left:84.025144px;}
.xba{left:85.130021px;}
.x2a{left:86.725775px;}
.x147{left:88.544882px;}
.x75{left:89.811113px;}
.x168{left:91.214738px;}
.xa3{left:92.773344px;}
.x2b{left:94.050565px;}
.xc2{left:95.066188px;}
.x17e{left:96.235692px;}
.xe{left:97.743737px;}
.xc3{left:99.159453px;}
.x3b{left:100.375121px;}
.x13e{left:101.759477px;}
.x76{left:102.798765px;}
.x2c{left:104.406833px;}
.x100{left:105.571941px;}
.xc4{left:107.638358px;}
.x130{left:109.257418px;}
.xc8{left:110.711605px;}
.x14a{left:112.273508px;}
.xa4{left:113.362774px;}
.xf{left:114.747713px;}
.x141{left:115.801806px;}
.x77{left:117.186745px;}
.xe1{left:119.659851px;}
.x131{left:121.668013px;}
.x10c{left:123.703654px;}
.x1ce{left:124.826444px;}
.x78{left:126.065745px;}
.x19b{left:127.296802px;}
.x3c{left:128.574024px;}
.x137{left:130.188687px;}
.xa5{left:131.251573px;}
.x3d{left:132.667289px;}
.x169{left:133.955502px;}
.x1c1{left:135.094230px;}
.xc9{left:136.586887px;}
.x79{left:138.022387px;}
.x2d{left:139.261138px;}
.x3e{left:141.146195px;}
.xc5{left:142.761957px;}
.x138{left:144.207350px;}
.xa6{left:145.624165px;}
.x134{left:147.008005px;}
.x1d7{left:148.058800px;}
.x10{left:149.124983px;}
.x172{left:150.490138px;}
.x132{left:151.601387px;}
.x7a{left:153.764530px;}
.x10d{left:154.957117px;}
.x18e{left:156.172786px;}
.x7b{left:157.396149px;}
.x1e4{left:158.450241px;}
.xc6{left:159.527416px;}
.xca{left:161.308053px;}
.xa7{left:162.835882px;}
.x135{left:163.842711px;}
.x2e{left:164.851738px;}
.x11{left:166.713712px;}
.x15f{left:168.294301px;}
.x7c{left:169.491285px;}
.x101{left:170.810275px;}
.x133{left:172.229288px;}
.x164{left:173.772506px;}
.xe2{left:175.095892px;}
.x3f{left:176.269793px;}
.x148{left:177.581089px;}
.x2f{left:179.224330px;}
.x14b{left:180.420214px;}
.x142{left:181.601809px;}
.xa8{left:182.625126px;}
.x7d{left:183.879265px;}
.x10e{left:185.618133px;}
.x165{left:187.514181px;}
.xbb{left:188.606899px;}
.x10f{left:189.711398px;}
.xa9{left:191.288690px;}
.x40{left:193.035252px;}
.x160{left:194.246525px;}
.xe3{left:195.693017px;}
.x41{left:197.128517px;}
.x30{left:199.136678px;}
.x16f{left:200.997657px;}
.x12{left:202.029663px;}
.x143{left:203.191474px;}
.x1b6{left:204.453307px;}
.x7e{left:205.907493px;}
.x110{left:206.923115px;}
.x156{left:208.095917px;}
.xbc{left:209.577582px;}
.x13b{left:210.707517px;}
.x157{left:212.189182px;}
.xcb{left:213.212498px;}
.xbd{left:214.594140px;}
.x102{left:216.313223px;}
.x13{left:217.556371px;}
.xe4{left:218.675314px;}
.x42{left:220.110815px;}
.x1c5{left:221.749453px;}
.x7f{left:223.180763px;}
.x14{left:224.881161px;}
.x14c{left:226.377115px;}
.xaa{left:227.904945px;}
.x144{left:228.966732px;}
.x14d{left:230.470380px;}
.x80{left:231.890493px;}
.x43{left:233.059997px;}
.x1ba{left:234.360301px;}
.x120{left:235.404501px;}
.x189{left:236.445404px;}
.x81{left:237.637991px;}
.x31{left:238.884435px;}
.xab{left:240.354011px;}
.x15{left:241.561985px;}
.x1d8{left:242.596293px;}
.x121{left:243.760301px;}
.xbe{left:245.216686px;}
.x139{left:246.385091px;}
.x103{left:248.143744px;}
.x82{left:249.979338px;}
.x191{left:252.243609px;}
.xcc{left:253.414207px;}
.xbf{left:254.972814px;}
.xcd{left:256.968885px;}
.x16{left:259.027608px;}
.x111{left:260.150947px;}
.x122{left:262.487758px;}
.xe5{left:264.008993px;}
.xce{left:265.824802px;}
.x14e{left:266.825036px;}
.x32{left:268.460582px;}
.x136{left:270.429175px;}
.xac{left:272.346107px;}
.x1ad{left:273.358432px;}
.x44{left:274.531234px;}
.x83{left:275.962338px;}
.x17{left:277.339582px;}
.x1dc{left:278.370593px;}
.x84{left:280.070991px;}
.x1ae{left:281.267974px;}
.x45{left:282.887034px;}
.x123{left:284.100504px;}
.x85{left:285.433783px;}
.xcf{left:286.806632px;}
.x193{left:288.412502px;}
.x13a{left:289.518255px;}
.x112{left:290.796576px;}
.x1a5{left:291.869354px;}
.x14f{left:293.123493px;}
.xe6{left:294.654621px;}
.x124{left:295.657053px;}
.x46{left:296.844144px;}
.xe7{left:298.747886px;}
.x86{left:299.937175px;}
.x47{left:300.937409px;}
.x18{left:302.930182px;}
.xe8{left:304.179925px;}
.xad{left:305.330744px;}
.x18f{left:307.014659px;}
.xd0{left:308.557872px;}
.x48{left:309.854879px;}
.x174{left:311.107919px;}
.x33{left:312.224662px;}
.x49{left:313.501886px;}
.x175{left:315.201184px;}
.x104{left:316.228897px;}
.x87{left:317.418186px;}
.x179{left:318.540426px;}
.x125{left:319.754996px;}
.x145{left:321.065193px;}
.x4a{left:322.165450px;}
.x1cb{left:323.869145px;}
.x105{left:324.892462px;}
.xae{left:326.497233px;}
.x13c{left:327.958014px;}
.x4b{left:330.074992px;}
.x126{left:331.311545px;}
.x170{left:332.947161px;}
.x4c{left:334.168257px;}
.x34{left:336.261053px;}
.x150{left:337.472326px;}
.x106{left:338.834183px;}
.x88{left:340.531284px;}
.xe9{left:342.296531px;}
.x127{left:344.068374px;}
.xea{left:345.851209px;}
.x192{left:347.020718px;}
.x4d{left:348.410049px;}
.x1cc{left:349.437767px;}
.x107{left:351.052425px;}
.x4e{left:352.503314px;}
.x89{left:353.680512px;}
.xeb{left:354.707126px;}
.x19{left:355.911803px;}
.x4f{left:357.935354px;}
.x1bb{left:359.604975px;}
.x8a{left:360.774479px;}
.x158{left:361.801093px;}
.x108{left:362.916738px;}
.xec{left:363.970831px;}
.x1a3{left:365.248053px;}
.x50{left:366.598918px;}
.xed{left:368.064096px;}
.xd1{left:369.187436px;}
.x8b{left:370.792206px;}
.x1af{left:371.919943px;}
.xee{left:373.449971px;}
.x113{left:375.085518px;}
.x159{left:376.666108px;}
.xaf{left:378.401678px;}
.x51{left:379.525018px;}
.x146{left:380.786851px;}
.x1a{left:381.794779px;}
.x1c0{left:383.263254px;}
.x1bc{left:384.480023px;}
.x171{left:385.750169px;}
.x109{left:387.230116px;}
.x17f{left:389.211899px;}
.x8c{left:390.766108px;}
.x128{left:392.887483px;}
.xd2{left:394.831894px;}
.xb0{left:396.736735px;}
.x151{left:398.578924px;}
.x52{left:399.914401px;}
.x114{left:400.960800px;}
.xd3{left:403.264636px;}
.x53{left:405.184865px;}
.xef{left:406.603878px;}
.x173{left:407.611806px;}
.x1a4{left:408.742839px;}
.x1b{left:410.001375px;}
.xd4{left:411.620436px;}
.x115{left:413.371394px;}
.x1{left:414.749966px;}
.x152{left:416.913981px;}
.x54{left:417.941694px;}
.x180{left:419.411269px;}
.xd5{left:420.476353px;}
.x116{left:421.588701px;}
.x55{left:423.327569px;}
.x16a{left:425.288732px;}
.x2{left:426.390287px;}
.x1c{left:427.466998px;}
.x166{left:428.747518px;}
.xd6{left:429.816999px;}
.x3{left:431.492404px;}
.x190{left:432.869360px;}
.xd7{left:433.910264px;}
.x10a{left:435.826096px;}
.x167{left:437.603435px;}
.x4{left:439.062708px;}
.x56{left:440.923992px;}
.x129{left:442.837626px;}
.x5{left:444.170559px;}
.x16b{left:445.272129px;}
.xb1{left:446.448361px;}
.x117{left:448.025652px;}
.x6{left:449.594817px;}
.x16c{left:450.696386px;}
.xb2{left:451.718824px;}
.x57{left:453.373057px;}
.x7{left:454.695527px;}
.x16d{left:455.797082px;}
.x194{left:457.244291px;}
.x18a{left:458.674297px;}
.xb3{left:460.382389px;}
.x8d{left:462.535644px;}
.x8{left:463.672081px;}
.x16e{left:464.773651px;}
.x118{left:466.029863px;}
.xf0{left:467.602758px;}
.x9{left:468.654688px;}
.x58{left:470.577080px;}
.xf1{left:471.696023px;}
.x1b0{left:472.751215px;}
.x153{left:473.994362px;}
.x1b4{left:475.389194px;}
.xd8{left:476.904934px;}
.x154{left:478.103015px;}
.x59{left:479.240644px;}
.xc0{left:481.434564px;}
.x1d{left:483.156944px;}
.x5a{left:484.903507px;}
.xb4{left:486.819340px;}
.x5b{left:488.458184px;}
.x1e{left:490.512510px;}
.x176{left:492.419556px;}
.x8e{left:493.496731px;}
.x119{left:494.682717px;}
.x177{left:496.066562px;}
.x8f{left:497.836207px;}
.x12a{left:499.120018px;}
.x161{left:500.818218px;}
.x5c{left:501.830542px;}
.x17a{left:503.816721px;}
.xb5{left:504.823551px;}
.x1f{left:506.039218px;}
.x1c9{left:507.424158px;}
.xb6{left:508.470557px;}
.x5d{left:510.494107px;}
.x90{left:511.577882px;}
.x12b{left:512.615482px;}
.x20{left:513.671773px;}
.x155{left:516.009682px;}
.x178{left:517.794721px;}
.xf2{left:519.345628px;}
.xb7{left:520.473364px;}
.x1c2{left:522.000095px;}
.xf3{left:523.438893px;}
.x1cf{left:524.734800px;}
.x11a{left:525.736133px;}
.x1d2{left:527.913566px;}
.x91{left:529.174305px;}
.x1b5{left:530.602106px;}
.x5e{left:532.491559px;}
.x1d4{left:533.551147px;}
.xf4{left:535.303206px;}
.x5f{left:536.584824px;}
.x181{left:537.592752px;}
.xf5{left:538.857883px;}
.x19c{left:540.670395px;}
.x21{left:541.878368px;}
.x1d0{left:543.015998px;}
.xf6{left:544.243758px;}
.xd9{left:546.367332px;}
.x1b1{left:548.091911px;}
.xda{left:549.922009px;}
.x1dd{left:551.003581px;}
.x1a6{left:552.045582px;}
.xf7{left:553.176616px;}
.x60{left:554.589034px;}
.xb8{left:556.112468px;}
.xf8{left:557.269881px;}
.x22{left:559.343991px;}
.x1e0{left:560.367310px;}
.x11b{left:561.475260px;}
.x61{left:562.498576px;}
.x1d1{left:564.397922px;}
.xf9{left:565.625682px;}
.x92{left:567.490957px;}
.x1c6{left:568.615391px;}
.x1b7{left:569.854143px;}
.x62{left:570.977482px;}
.x93{left:573.153820px;}
.x19d{left:574.809148px;}
.x63{left:576.640345px;}
.x15a{left:579.098063px;}
.x1d9{left:580.113685px;}
.xdb{left:581.867942px;}
.x1b8{left:582.980290px;}
.x23{left:584.934591px;}
.x182{left:585.965603px;}
.x1e5{left:587.450566px;}
.x15b{left:588.577203px;}
.x94{left:590.080856px;}
.x183{left:591.351478px;}
.x1e1{left:592.459430px;}
.x1b2{left:593.464059px;}
.x15c{left:594.532441px;}
.x1bd{left:596.026202px;}
.x162{left:597.063803px;}
.x95{left:598.744420px;}
.xfa{left:599.995258px;}
.x1a8{left:601.961651px;}
.xdc{left:603.249865px;}
.x1cd{left:604.397391px;}
.x1ca{left:606.201104px;}
.x64{left:607.539878px;}
.x17b{left:608.941305px;}
.x1d3{left:610.125099px;}
.x65{left:611.633143px;}
.x184{left:613.041166px;}
.x66{left:615.187821px;}
.x1c3{left:617.199281px;}
.x24{left:618.727109px;}
.x96{left:620.741872px;}
.x17c{left:622.621427px;}
.x67{left:624.043738px;}
.xdd{left:626.224469px;}
.x68{left:628.137003px;}
.xb9{left:629.391143px;}
.x1d5{left:630.527672px;}
.x195{left:632.108261px;}
.x69{left:633.522878px;}
.xde{left:634.580269px;}
.x25{left:635.731085px;}
.x1e2{left:636.839039px;}
.x1b3{left:638.089880px;}
.xdf{left:639.850732px;}
.x12c{left:641.353281px;}
.x1da{left:642.540372px;}
.x1c7{left:643.648322px;}
.x15d{left:645.136583px;}
.x26{left:646.302788px;}
.x1be{left:648.412074px;}
.xfb{left:649.445283px;}
.x6a{left:651.119300px;}
.x1de{left:652.543259px;}
.x12d{left:653.802346px;}
.x6b{left:655.207075px;}
.x19e{left:656.497482px;}
.x185{left:658.236351px;}
.x1a9{left:659.259666px;}
.x19f{left:660.590747px;}
.x12e{left:662.658263px;}
.x6c{left:663.870639px;}
.x97{left:665.344610px;}
.xfc{left:667.449494px;}
.x1a0{left:668.500289px;}
.x27{left:670.662331px;}
.x11c{left:672.408895px;}
.x98{left:674.008175px;}
.x12f{left:676.092174px;}
.x99{left:678.101440px;}
.x6d{left:679.458900px;}
.x11d{left:680.764695px;}
.x1bf{left:682.567314px;}
.xfd{left:685.030528px;}
.x11e{left:686.196735px;}
.x28{left:688.127954px;}
.x15e{left:689.593133px;}
.x1e6{left:690.797811px;}
.x1d6{left:692.788386px;}
.x6e{left:693.831492px;}
.x9a{left:694.866899px;}
.x163{left:696.956394px;}
.x9b{left:698.421576px;}
.x1df{left:699.450383px;}
.x186{left:700.907868px;}
.x6f{left:702.541221px;}
.x1aa{left:704.631815px;}
.x1e7{left:705.639743px;}
.x9c{left:707.277494px;}
.x1ab{left:708.725080px;}
.xfe{left:710.674987px;}
.x1a1{left:711.841193px;}
.x1c8{left:715.403564px;}
.x9d{left:716.541198px;}
.x1ac{left:717.580997px;}
.x70{left:720.099173px;}
.x187{left:721.158758px;}
.x1c4{left:722.940497px;}
.x196{left:723.968204px;}
.x9e{left:726.020338px;}
.x71{left:729.085890px;}
.x197{left:732.170122px;}
.x1a2{left:733.569352px;}
.x198{left:735.724800px;}
.x1db{left:739.916990px;}
.x72{left:747.190124px;}
.x199{left:750.358991px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.313128pt;}
.ls7{letter-spacing:1.531982pt;}
.ls3{letter-spacing:1.641410pt;}
.ls6{letter-spacing:1.914978pt;}
.ls5{letter-spacing:1.969692pt;}
.ls8{letter-spacing:2.106475pt;}
.ls1{letter-spacing:2.161189pt;}
.ls9{letter-spacing:2.215903pt;}
.ls0{letter-spacing:3.063965pt;}
.ws1{word-spacing:-3.063965pt;}
.ws9{word-spacing:-2.215903pt;}
.ws2{word-spacing:-2.161189pt;}
.ws8{word-spacing:-2.106475pt;}
.ws5{word-spacing:-1.969692pt;}
.ws6{word-spacing:-1.914978pt;}
.ws3{word-spacing:-1.641410pt;}
.ws7{word-spacing:-1.531982pt;}
.ws4{word-spacing:-1.313128pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-3.063965pt;}
._3{margin-left:-2.079118pt;}
._6{margin-left:-1.039560pt;}
._2{width:1.559339pt;}
._0{width:3.063964pt;}
._5{width:4.021454pt;}
._4{width:5.096185pt;}
.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;}
.y6d{bottom:19.009286pt;}
.y1{bottom:22.560063pt;}
.y34{bottom:24.011595pt;}
.y54{bottom:25.012009pt;}
.y42{bottom:36.017123pt;}
.y6c{bottom:41.019806pt;}
.y33{bottom:46.022115pt;}
.y53{bottom:47.022529pt;}
.y41{bottom:58.027643pt;}
.y6b{bottom:63.030325pt;}
.y32{bottom:68.032634pt;}
.y43{bottom:74.743444pt;}
.y25{bottom:74.743600pt;}
.y1c{bottom:74.743682pt;}
.y2{bottom:74.743709pt;}
.y35{bottom:74.743764pt;}
.y6a{bottom:85.040845pt;}
.y40{bottom:94.044857pt;}
.y31{bottom:104.049848pt;}
.y3f{bottom:116.055376pt;}
.y69{bottom:125.059972pt;}
.y30{bottom:140.067062pt;}
.y24{bottom:247.118062pt;}
.y1b{bottom:251.120006pt;}
.y1a{bottom:273.130525pt;}
.y23{bottom:283.135276pt;}
.y68{bottom:295.141260pt;}
.y19{bottom:309.147739pt;}
.y67{bottom:335.160387pt;}
.y2f{bottom:343.164130pt;}
.y18{bottom:345.164953pt;}
.y2e{bottom:365.174650pt;}
.y3e{bottom:370.176831pt;}
.y66{bottom:376.179991pt;}
.y17{bottom:387.185036pt;}
.y3d{bottom:392.187350pt;}
.y65{bottom:398.190511pt;}
.y2d{bottom:402.192342pt;}
.y16{bottom:409.195556pt;}
.y22{bottom:411.196482pt;}
.y64{bottom:420.201031pt;}
.y3c{bottom:428.204564pt;}
.y15{bottom:431.206076pt;}
.y52{bottom:432.206623pt;}
.y21{bottom:433.207001pt;}
.y2c{bottom:441.210990pt;}
.y63{bottom:442.211550pt;}
.y3b{bottom:450.215084pt;}
.y14{bottom:453.216595pt;}
.y51{bottom:454.217143pt;}
.y2b{bottom:463.221510pt;}
.y62{bottom:464.222070pt;}
.y3a{bottom:472.225604pt;}
.y13{bottom:475.227115pt;}
.y50{bottom:476.227662pt;}
.y2a{bottom:485.232030pt;}
.y12{bottom:497.237635pt;}
.y4f{bottom:498.238182pt;}
.y61{bottom:501.239762pt;}
.y29{bottom:507.242549pt;}
.y39{bottom:508.242818pt;}
.y11{bottom:519.248154pt;}
.y38{bottom:530.253337pt;}
.y4e{bottom:534.255396pt;}
.y60{bottom:541.258889pt;}
.y28{bottom:545.260720pt;}
.y37{bottom:552.263857pt;}
.y10{bottom:555.265368pt;}
.y5f{bottom:563.269409pt;}
.y4d{bottom:570.272610pt;}
.yf{bottom:577.275888pt;}
.y27{bottom:582.278412pt;}
.y5e{bottom:585.279928pt;}
.y4c{bottom:592.283129pt;}
.y5d{bottom:607.290448pt;}
.ye{bottom:614.293580pt;}
.y5c{bottom:629.300968pt;}
.y4b{bottom:630.301300pt;}
.yd{bottom:656.313663pt;}
.y5b{bottom:665.318182pt;}
.y4a{bottom:669.319948pt;}
.yc{bottom:678.324183pt;}
.y49{bottom:691.330468pt;}
.yb{bottom:700.334702pt;}
.y48{bottom:713.340988pt;}
.y47{bottom:735.351507pt;}
.ya{bottom:736.351916pt;}
.y9{bottom:758.362436pt;}
.y46{bottom:771.368721pt;}
.y20{bottom:784.374838pt;}
.y8{bottom:795.380128pt;}
.y45{bottom:807.385935pt;}
.y44{bottom:829.396455pt;}
.y7{bottom:837.400211pt;}
.y5a{bottom:851.407120pt;}
.y6{bottom:859.410731pt;}
.y5{bottom:881.421250pt;}
.y59{bottom:889.425291pt;}
.y58{bottom:928.443939pt;}
.y4{bottom:931.445159pt;}
.y1f{bottom:936.447519pt;}
.y57{bottom:950.454459pt;}
.y1e{bottom:958.458039pt;}
.y3{bottom:964.460938pt;}
.y56{bottom:972.464979pt;}
.y36{bottom:994.475206pt;}
.y1d{bottom:994.475253pt;}
.y26{bottom:994.475416pt;}
.y55{bottom:994.475498pt;}
.h7{height:42.731360pt;}
.hb{height:42.868145pt;}
.h2{height:45.599996pt;}
.h5{height:53.225438pt;}
.h9{height:62.235748pt;}
.h6{height:79.838158pt;}
.h4{height:106.450877pt;}
.ha{height:1010.482774pt;}
.h3{height:1010.482934pt;}
.h8{height:1010.483094pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:697.333251pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:20.201061pt;}
.x11f{left:23.094045pt;}
.x188{left:24.721776pt;}
.x1e3{left:26.417900pt;}
.x73{left:27.334353pt;}
.x35{left:28.510697pt;}
.x29{left:29.475025pt;}
.x18b{left:30.439353pt;}
.x9f{left:31.718284pt;}
.x19a{left:33.188714pt;}
.xc{left:34.795927pt;}
.x18c{left:38.311279pt;}
.x36{left:39.610728pt;}
.x17d{left:41.915541pt;}
.x74{left:43.577468pt;}
.x1b9{left:45.444571pt;}
.x37{left:46.641432pt;}
.xa{left:47.999998pt;}
.x38{left:50.279890pt;}
.xc1{left:52.249581pt;}
.x18d{left:53.549031pt;}
.x39{left:55.108370pt;}
.xd{left:56.161607pt;}
.xa0{left:57.878248pt;}
.x13d{left:58.848942pt;}
.xc7{left:59.953459pt;}
.x1a7{left:61.332047pt;}
.x3a{left:62.809316pt;}
.xff{left:64.740903pt;}
.xa1{left:65.750175pt;}
.xe0{left:67.380837pt;}
.x149{left:68.529823pt;}
.x10b{left:69.858690pt;}
.x13f{left:71.050559pt;}
.xa2{left:73.054447pt;}
.x140{left:74.689017pt;}
.xba{left:75.671130pt;}
.x2a{left:77.089578pt;}
.x147{left:78.706562pt;}
.x75{left:79.832100pt;}
.x168{left:81.079767pt;}
.xa3{left:82.465195pt;}
.x2b{left:83.600502pt;}
.xc2{left:84.503278pt;}
.x17e{left:85.542837pt;}
.xe{left:86.883322pt;}
.xc3{left:88.141736pt;}
.x3b{left:89.222330pt;}
.x13e{left:90.452868pt;}
.x76{left:91.376680pt;}
.x2c{left:92.806074pt;}
.x100{left:93.841726pt;}
.xc4{left:95.678541pt;}
.x130{left:97.117705pt;}
.xc8{left:98.410315pt;}
.x14a{left:99.798674pt;}
.xa4{left:100.766911pt;}
.xf{left:101.997968pt;}
.x141{left:102.934939pt;}
.x77{left:104.165996pt;}
.xe1{left:106.364312pt;}
.x131{left:108.149345pt;}
.x10c{left:109.958804pt;}
.x1ce{left:110.956839pt;}
.x78{left:112.058440pt;}
.x19b{left:113.152713pt;}
.x3c{left:114.288021pt;}
.x137{left:115.723277pt;}
.xa5{left:116.668065pt;}
.x3d{left:117.926479pt;}
.x169{left:119.071557pt;}
.x1c1{left:120.083760pt;}
.xc9{left:121.410566pt;}
.x79{left:122.686566pt;}
.x2d{left:123.787678pt;}
.x3e{left:125.463284pt;}
.xc5{left:126.899517pt;}
.x138{left:128.184311pt;}
.xa6{left:129.443702pt;}
.x134{left:130.673782pt;}
.x1d7{left:131.607822pt;}
.x10{left:132.555541pt;}
.x172{left:133.769011pt;}
.x132{left:134.756788pt;}
.x7a{left:136.679582pt;}
.x10d{left:137.739659pt;}
.x18e{left:138.820254pt;}
.x7b{left:139.907688pt;}
.x1e4{left:140.844659pt;}
.xc6{left:141.802148pt;}
.xca{left:143.384936pt;}
.xa7{left:144.743007pt;}
.x135{left:145.637965pt;}
.x2e{left:146.534878pt;}
.x11{left:148.189966pt;}
.x15f{left:149.594935pt;}
.x7c{left:150.658920pt;}
.x101{left:151.831355pt;}
.x133{left:153.092700pt;}
.x164{left:154.464450pt;}
.xe2{left:155.640793pt;}
.x3f{left:156.684260pt;}
.x148{left:157.849856pt;}
.x2f{left:159.310515pt;}
.x14b{left:160.373524pt;}
.x142{left:161.423831pt;}
.xa8{left:162.333445pt;}
.x7d{left:163.448235pt;}
.x10e{left:164.993896pt;}
.x165{left:166.679272pt;}
.xbb{left:167.650577pt;}
.x10f{left:168.632354pt;}
.xa9{left:170.034391pt;}
.x40{left:171.586891pt;}
.x160{left:172.663577pt;}
.xe3{left:173.949348pt;}
.x41{left:175.225349pt;}
.x30{left:177.010381pt;}
.x16f{left:178.664584pt;}
.x12{left:179.581923pt;}
.x143{left:180.614643pt;}
.x1b6{left:181.736273pt;}
.x7e{left:183.028883pt;}
.x110{left:183.931658pt;}
.x156{left:184.974149pt;}
.xbc{left:186.291184pt;}
.x13b{left:187.295571pt;}
.x157{left:188.612606pt;}
.xcb{left:189.522221pt;}
.xbd{left:190.750347pt;}
.x102{left:192.278421pt;}
.x13{left:193.383441pt;}
.xe4{left:194.378057pt;}
.x42{left:195.654058pt;}
.x1c5{left:197.110625pt;}
.x7f{left:198.382901pt;}
.x14{left:199.894365pt;}
.x14c{left:201.224102pt;}
.xaa{left:202.582174pt;}
.x144{left:203.525984pt;}
.x14d{left:204.862560pt;}
.x80{left:206.124882pt;}
.x43{left:207.164442pt;}
.x1ba{left:208.320268pt;}
.x120{left:209.248445pt;}
.x189{left:210.173692pt;}
.x81{left:211.233769pt;}
.x31{left:212.341720pt;}
.xab{left:213.648009pt;}
.x15{left:214.721764pt;}
.x1d8{left:215.641149pt;}
.x121{left:216.675823pt;}
.xbe{left:217.970387pt;}
.x139{left:219.008970pt;}
.x103{left:220.572217pt;}
.x82{left:222.203856pt;}
.x191{left:224.216542pt;}
.xcc{left:225.257073pt;}
.xbf{left:226.642501pt;}
.xcd{left:228.416786pt;}
.x16{left:230.246762pt;}
.x111{left:231.245287pt;}
.x122{left:233.322451pt;}
.xe5{left:234.674660pt;}
.xce{left:236.288713pt;}
.x14e{left:237.177810pt;}
.x32{left:238.631629pt;}
.x136{left:240.381489pt;}
.xac{left:242.085429pt;}
.x1ad{left:242.985273pt;}
.x44{left:244.027763pt;}
.x83{left:245.299856pt;}
.x17{left:246.524073pt;}
.x1dc{left:247.440527pt;}
.x84{left:248.951992pt;}
.x1ae{left:250.015977pt;}
.x45{left:251.455141pt;}
.x123{left:252.533782pt;}
.x85{left:253.718918pt;}
.xcf{left:254.939228pt;}
.x193{left:256.366668pt;}
.x13a{left:257.349560pt;}
.x112{left:258.485845pt;}
.x1a5{left:259.439426pt;}
.x14f{left:260.554216pt;}
.xe6{left:261.915219pt;}
.x124{left:262.806269pt;}
.x46{left:263.861461pt;}
.xe7{left:265.553676pt;}
.x86{left:266.610822pt;}
.x47{left:267.499919pt;}
.x18{left:269.271273pt;}
.xe8{left:270.382156pt;}
.xad{left:271.405106pt;}
.x18f{left:272.901920pt;}
.xd0{left:274.273664pt;}
.x48{left:275.426559pt;}
.x174{left:276.540372pt;}
.x33{left:277.533033pt;}
.x49{left:278.668343pt;}
.x175{left:280.178830pt;}
.x104{left:281.092353pt;}
.x87{left:282.149499pt;}
.x179{left:283.147045pt;}
.x125{left:284.226663pt;}
.x145{left:285.391283pt;}
.x4a{left:286.369289pt;}
.x1cb{left:287.883684pt;}
.x105{left:288.793299pt;}
.xae{left:290.219762pt;}
.x13c{left:291.518234pt;}
.x4b{left:293.399993pt;}
.x126{left:294.499151pt;}
.x170{left:295.953032pt;}
.x4c{left:297.038451pt;}
.x34{left:298.898713pt;}
.x150{left:299.975401pt;}
.x106{left:301.185941pt;}
.x88{left:302.694474pt;}
.xe9{left:304.263584pt;}
.x127{left:305.838555pt;}
.xea{left:307.423297pt;}
.x192{left:308.462861pt;}
.x4d{left:309.697821pt;}
.x1cc{left:310.611349pt;}
.x107{left:312.046600pt;}
.x4e{left:313.336279pt;}
.x89{left:314.382678pt;}
.xeb{left:315.295223pt;}
.x19{left:316.366047pt;}
.x4f{left:318.164759pt;}
.x1bb{left:319.648867pt;}
.x8a{left:320.688426pt;}
.x158{left:321.600971pt;}
.x108{left:322.592656pt;}
.xec{left:323.529628pt;}
.x1a3{left:324.664936pt;}
.x50{left:325.865705pt;}
.xed{left:327.168085pt;}
.xd1{left:328.166609pt;}
.x8b{left:329.593072pt;}
.x1af{left:330.595505pt;}
.xee{left:331.955530pt;}
.x113{left:333.409349pt;}
.x159{left:334.814318pt;}
.xaf{left:336.357048pt;}
.x51{left:337.355571pt;}
.x146{left:338.477201pt;}
.x1a{left:339.373137pt;}
.x1c0{left:340.678448pt;}
.x1bc{left:341.760020pt;}
.x171{left:342.889039pt;}
.x109{left:344.204548pt;}
.x17f{left:345.966132pt;}
.x8c{left:347.347652pt;}
.x128{left:349.233318pt;}
.xd2{left:350.961684pt;}
.xb0{left:352.654876pt;}
.x151{left:354.292377pt;}
.x52{left:355.479468pt;}
.x114{left:356.409600pt;}
.xd3{left:358.457454pt;}
.x53{left:360.164324pt;}
.xef{left:361.425669pt;}
.x173{left:362.321605pt;}
.x1a4{left:363.326968pt;}
.x1b{left:364.445667pt;}
.xd4{left:365.884832pt;}
.x115{left:367.441239pt;}
.x1{left:368.666637pt;}
.x152{left:370.590205pt;}
.x54{left:371.503728pt;}
.x180{left:372.810017pt;}
.xd5{left:373.756758pt;}
.x116{left:374.745512pt;}
.x55{left:376.291172pt;}
.x16a{left:378.034429pt;}
.x2{left:379.013589pt;}
.x1c{left:379.970665pt;}
.x166{left:381.108905pt;}
.xd6{left:382.059555pt;}
.x3{left:383.548803pt;}
.x190{left:384.772765pt;}
.xd7{left:385.698012pt;}
.x10a{left:387.400974pt;}
.x167{left:388.980831pt;}
.x4{left:390.277963pt;}
.x56{left:391.932437pt;}
.x129{left:393.633445pt;}
.x5{left:394.818275pt;}
.x16b{left:395.797448pt;}
.xb1{left:396.842987pt;}
.x117{left:398.245024pt;}
.x6{left:399.639837pt;}
.x16c{left:400.619010pt;}
.xb2{left:401.527844pt;}
.x57{left:402.998273pt;}
.x7{left:404.173802pt;}
.x16d{left:405.152962pt;}
.x194{left:406.439370pt;}
.x18a{left:407.710486pt;}
.xb3{left:409.228790pt;}
.x8d{left:411.142795pt;}
.x8{left:412.152961pt;}
.x16e{left:413.132134pt;}
.x118{left:414.248767pt;}
.xf0{left:415.646896pt;}
.x9{left:416.581945pt;}
.x58{left:418.290738pt;}
.xf1{left:419.285354pt;}
.x1b0{left:420.223302pt;}
.x153{left:421.328322pt;}
.x1b4{left:422.568172pt;}
.xd8{left:423.915497pt;}
.x154{left:424.980458pt;}
.x59{left:425.991684pt;}
.xc0{left:427.941834pt;}
.x1d{left:429.472839pt;}
.x5a{left:431.025340pt;}
.xb4{left:432.728302pt;}
.x5b{left:434.185053pt;}
.x1e{left:436.011120pt;}
.x176{left:437.706272pt;}
.x8e{left:438.663760pt;}
.x119{left:439.717971pt;}
.x177{left:440.948056pt;}
.x8f{left:442.521073pt;}
.x12a{left:443.662239pt;}
.x161{left:445.171750pt;}
.x5c{left:446.071593pt;}
.x17a{left:447.837085pt;}
.xb5{left:448.732045pt;}
.x1f{left:449.812639pt;}
.x1c9{left:451.043696pt;}
.xb6{left:451.973829pt;}
.x5d{left:453.772539pt;}
.x90{left:454.735895pt;}
.x12b{left:455.658206pt;}
.x20{left:456.597131pt;}
.x155{left:458.675273pt;}
.x178{left:460.261974pt;}
.xf2{left:461.640558pt;}
.xb7{left:462.642991pt;}
.x1c2{left:464.000084pt;}
.xf3{left:465.279016pt;}
.x1cf{left:466.430933pt;}
.x11a{left:467.321007pt;}
.x1d2{left:469.256503pt;}
.x91{left:470.377160pt;}
.x1b5{left:471.646316pt;}
.x5e{left:473.325830pt;}
.x1d4{left:474.267686pt;}
.xf4{left:475.825072pt;}
.x5f{left:476.964288pt;}
.x181{left:477.860224pt;}
.xf5{left:478.984785pt;}
.x19c{left:480.595907pt;}
.x21{left:481.669661pt;}
.x1d0{left:482.680887pt;}
.xf6{left:483.772230pt;}
.xd9{left:485.659851pt;}
.x1b1{left:487.192809pt;}
.xda{left:488.819564pt;}
.x1dd{left:489.780961pt;}
.x1a6{left:490.707184pt;}
.xf7{left:491.712548pt;}
.x60{left:492.968030pt;}
.xb8{left:494.322194pt;}
.xf8{left:495.351006pt;}
.x22{left:497.194659pt;}
.x1e0{left:498.104275pt;}
.x11b{left:499.089120pt;}
.x61{left:499.998734pt;}
.x1d1{left:501.687041pt;}
.xf9{left:502.778384pt;}
.x92{left:504.436407pt;}
.x1c6{left:505.435903pt;}
.x1b7{left:506.537016pt;}
.x62{left:507.535540pt;}
.x93{left:509.470062pt;}
.x19d{left:510.941465pt;}
.x63{left:512.569195pt;}
.x15a{left:514.753833pt;}
.x1d9{left:515.656609pt;}
.xdb{left:517.215948pt;}
.x1b8{left:518.204702pt;}
.x23{left:519.941859pt;}
.x182{left:520.858314pt;}
.x1e5{left:522.178281pt;}
.x15b{left:523.179736pt;}
.x94{left:524.516316pt;}
.x183{left:525.645758pt;}
.x1e1{left:526.630604pt;}
.x1b2{left:527.523608pt;}
.x15c{left:528.473281pt;}
.x1bd{left:529.801069pt;}
.x162{left:530.723380pt;}
.x95{left:532.217262pt;}
.xfa{left:533.329118pt;}
.x1a8{left:535.077023pt;}
.xdc{left:536.222102pt;}
.x1cd{left:537.242125pt;}
.x1ca{left:538.845426pt;}
.x64{left:540.035447pt;}
.x17b{left:541.281160pt;}
.x1d3{left:542.333421pt;}
.x65{left:543.673905pt;}
.x184{left:544.925481pt;}
.x66{left:546.833618pt;}
.x1c3{left:548.621583pt;}
.x24{left:549.979652pt;}
.x96{left:551.770553pt;}
.x17c{left:553.441269pt;}
.x67{left:554.705545pt;}
.xdd{left:556.643972pt;}
.x68{left:558.344003pt;}
.xb9{left:559.458794pt;}
.x1d5{left:560.469042pt;}
.x195{left:561.874010pt;}
.x69{left:563.131447pt;}
.xde{left:564.071350pt;}
.x25{left:565.094298pt;}
.x1e2{left:566.079146pt;}
.x1b3{left:567.191004pt;}
.xdf{left:568.756206pt;}
.x12c{left:570.091805pt;}
.x1da{left:571.146997pt;}
.x1c7{left:572.131842pt;}
.x15d{left:573.454740pt;}
.x26{left:574.491367pt;}
.x1be{left:576.366288pt;}
.xfb{left:577.284696pt;}
.x6a{left:578.772712pt;}
.x1de{left:580.038453pt;}
.x12d{left:581.157641pt;}
.x6b{left:582.406289pt;}
.x19e{left:583.553317pt;}
.x185{left:585.098978pt;}
.x1a9{left:586.008592pt;}
.x19f{left:587.191775pt;}
.x12e{left:589.029567pt;}
.x6c{left:590.107235pt;}
.x97{left:591.417431pt;}
.xfc{left:593.288439pt;}
.x1a0{left:594.222479pt;}
.x27{left:596.144294pt;}
.x11c{left:597.696796pt;}
.x98{left:599.118378pt;}
.x12f{left:600.970821pt;}
.x99{left:602.756835pt;}
.x6d{left:603.963467pt;}
.x11d{left:605.124174pt;}
.x1bf{left:606.726501pt;}
.xfd{left:608.916025pt;}
.x11e{left:609.952653pt;}
.x28{left:611.669293pt;}
.x15e{left:612.971674pt;}
.x1e6{left:614.042498pt;}
.x1d6{left:615.811899pt;}
.x6e{left:616.739104pt;}
.x9a{left:617.659466pt;}
.x163{left:619.516795pt;}
.x9b{left:620.819179pt;}
.x1df{left:621.733673pt;}
.x186{left:623.029216pt;}
.x6f{left:624.481085pt;}
.x1aa{left:626.339391pt;}
.x1e7{left:627.235327pt;}
.x9c{left:628.691105pt;}
.x1ab{left:629.977849pt;}
.xfe{left:631.711099pt;}
.x1a1{left:632.747727pt;}
.x1c8{left:635.914279pt;}
.x9d{left:636.925510pt;}
.x1ac{left:637.849775pt;}
.x70{left:640.088154pt;}
.x187{left:641.030007pt;}
.x1c4{left:642.613775pt;}
.x196{left:643.527293pt;}
.x9e{left:645.351412pt;}
.x71{left:648.076347pt;}
.x197{left:650.817887pt;}
.x1a2{left:652.061646pt;}
.x198{left:653.977600pt;}
.x1db{left:657.703991pt;}
.x72{left:664.168999pt;}
.x199{left:666.985770pt;}
}




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