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



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

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b84cb009bba937f178d59ccc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.048000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a73fa9fc6c911e8aa222e408.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77d2d66a1d4cd714118b0a3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62392b08bd770a01b47f6e12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1543f8f769fd4ae423c36c5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.055000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e14457152654cabaf8ca074a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.291000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_79e3b4519129e53fe88a98af.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.460000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_db38a09338a99a4d33e54e77.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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;}
.m1{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);}
.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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.358000px;}
.lsf{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000442px;}
.lse{letter-spacing:0.001209px;}
.ls6{letter-spacing:2.982442px;}
.ls7{letter-spacing:2.984909px;}
.ls5{letter-spacing:2.988442px;}
.ls8{letter-spacing:2.988931px;}
.lsd{letter-spacing:8.968022px;}
.ls4{letter-spacing:10.586909px;}
.lsa{letter-spacing:10.956442px;}
.lsb{letter-spacing:10.958909px;}
.lsc{letter-spacing:11.106931px;}
.ls2{letter-spacing:11.960909px;}
.ls0{letter-spacing:15.152909px;}
.ls3{letter-spacing:17.384909px;}
.ls1{letter-spacing:17.678909px;}
.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:-13.389768px;}
.ws2{word-spacing:-10.711848px;}
.ws4{word-spacing:-0.047821px;}
.ws0{word-spacing:-0.038257px;}
.ws3{word-spacing:-0.035866px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-2829.132000px;}
._2{margin-left:-14.547027px;}
._0{margin-left:-12.211507px;}
._3{width:4.468371px;}
._1{width:5.970693px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:0.001200px;}
.fs3{font-size:35.865600px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:38.256600px;}
.fs2{font-size:47.820600px;}
.y0{bottom:0.000000px;}
.y60{bottom:312.375000px;}
.y5f{bottom:312.375366px;}
.ya5{bottom:319.283695px;}
.y5e{bottom:328.066500px;}
.y5d{bottom:328.068061px;}
.ya3{bottom:332.135695px;}
.ya4{bottom:332.136000px;}
.y5c{bottom:343.758000px;}
.y5b{bottom:343.758366px;}
.ya1{bottom:344.987695px;}
.ya2{bottom:344.988000px;}
.ya0{bottom:357.840000px;}
.y5a{bottom:359.449500px;}
.y59{bottom:359.449561px;}
.y9f{bottom:370.692000px;}
.y58{bottom:375.139500px;}
.y57{bottom:375.139866px;}
.y56{bottom:390.831000px;}
.y55{bottom:390.832561px;}
.y9e{bottom:402.073500px;}
.y9d{bottom:402.073866px;}
.y54{bottom:406.522500px;}
.y53{bottom:406.524061px;}
.y9c{bottom:417.765000px;}
.y9b{bottom:422.106000px;}
.y52{bottom:422.214000px;}
.y51{bottom:422.214366px;}
.y50{bottom:437.905500px;}
.y4f{bottom:437.905561px;}
.y9a{bottom:449.430061px;}
.y4e{bottom:453.595500px;}
.y4d{bottom:453.595866px;}
.y99{bottom:465.120000px;}
.y4c{bottom:469.287000px;}
.y4b{bottom:469.288561px;}
.y98{bottom:469.459500px;}
.y97{bottom:480.811500px;}
.y96{bottom:480.811561px;}
.y4a{bottom:484.978500px;}
.y49{bottom:484.980061px;}
.y95{bottom:496.501500px;}
.y48{bottom:500.670000px;}
.y47{bottom:500.670061px;}
.y94{bottom:500.841000px;}
.y93{bottom:512.193000px;}
.y46{bottom:516.360000px;}
.y45{bottom:516.361561px;}
.y92{bottom:516.532500px;}
.y44{bottom:532.051500px;}
.y43{bottom:532.051866px;}
.y91{bottom:543.576000px;}
.y90{bottom:543.576366px;}
.y42{bottom:547.743000px;}
.y41{bottom:547.744561px;}
.y8f{bottom:559.267500px;}
.y8e{bottom:559.267711px;}
.y40{bottom:563.434500px;}
.y3f{bottom:563.434866px;}
.y8d{bottom:574.957650px;}
.y3e{bottom:579.126000px;}
.y3d{bottom:579.126061px;}
.y3c{bottom:594.816000px;}
.y3b{bottom:594.817561px;}
.y8c{bottom:605.575500px;}
.y8b{bottom:605.576812px;}
.y3a{bottom:610.507500px;}
.y39{bottom:610.507866px;}
.y8a{bottom:617.532000px;}
.y38{bottom:626.199000px;}
.y37{bottom:626.200561px;}
.y88{bottom:629.485500px;}
.y87{bottom:629.486813px;}
.y89{bottom:629.487000px;}
.y85{bottom:641.441812px;}
.y86{bottom:641.442000px;}
.y36{bottom:641.890500px;}
.y35{bottom:641.890866px;}
.y84{bottom:653.397000px;}
.y34{bottom:657.582000px;}
.y33{bottom:657.582211px;}
.y83{bottom:665.351812px;}
.y32{bottom:673.272150px;}
.y31{bottom:673.272366px;}
.y82{bottom:677.307000px;}
.y30{bottom:688.963500px;}
.y2f{bottom:688.963866px;}
.y81{bottom:689.262000px;}
.y80{bottom:689.263312px;}
.y7e{bottom:701.216812px;}
.y7f{bottom:701.218500px;}
.y2e{bottom:704.655000px;}
.y2d{bottom:704.655061px;}
.y7d{bottom:713.172000px;}
.y7c{bottom:713.173312px;}
.y2c{bottom:720.345000px;}
.y2b{bottom:720.345366px;}
.y7a{bottom:725.127000px;}
.y7b{bottom:725.128500px;}
.y2a{bottom:736.036500px;}
.y29{bottom:736.038061px;}
.y28{bottom:751.728000px;}
.y27{bottom:751.728366px;}
.y79{bottom:752.475961px;}
.y26{bottom:767.419500px;}
.y25{bottom:767.419866px;}
.y24{bottom:783.111000px;}
.y23{bottom:783.111211px;}
.y78{bottom:784.605427px;}
.y22{bottom:798.801150px;}
.y21{bottom:798.802561px;}
.y20{bottom:814.492500px;}
.y1f{bottom:814.494061px;}
.y77{bottom:815.986500px;}
.y76{bottom:815.986800px;}
.y1e{bottom:830.184000px;}
.y1d{bottom:830.185561px;}
.y1c{bottom:845.875500px;}
.y1b{bottom:845.875866px;}
.y75{bottom:848.116266px;}
.y1a{bottom:861.567000px;}
.y19{bottom:861.567061px;}
.y18{bottom:877.257000px;}
.y17{bottom:877.258561px;}
.y74{bottom:879.499730px;}
.y16{bottom:892.948500px;}
.y15{bottom:892.948866px;}
.y14{bottom:908.640000px;}
.y13{bottom:908.641561px;}
.y73{bottom:911.628000px;}
.y72{bottom:911.628366px;}
.y12{bottom:924.331500px;}
.y11{bottom:924.331866px;}
.y71{bottom:927.319500px;}
.y70{bottom:927.319866px;}
.y10{bottom:940.023000px;}
.yf{bottom:940.023061px;}
.y6f{bottom:943.011000px;}
.y6e{bottom:943.012561px;}
.ye{bottom:955.713000px;}
.yd{bottom:955.713366px;}
.y6d{bottom:958.702500px;}
.y6c{bottom:958.702866px;}
.yc{bottom:971.404500px;}
.yb{bottom:971.406427px;}
.y6b{bottom:974.394000px;}
.y6a{bottom:974.394061px;}
.y69{bottom:990.084000px;}
.y68{bottom:990.085444px;}
.ya{bottom:1002.787500px;}
.y9{bottom:1002.787927px;}
.y67{bottom:1024.456500px;}
.y66{bottom:1024.456687px;}
.y8{bottom:1034.169000px;}
.y7{bottom:1034.169516px;}
.y5{bottom:1049.860078px;}
.y6{bottom:1049.860650px;}
.y65{bottom:1065.552516px;}
.y4{bottom:1080.495150px;}
.y3{bottom:1080.495516px;}
.y63{bottom:1081.242516px;}
.y64{bottom:1081.243650px;}
.y2{bottom:1096.186650px;}
.y62{bottom:1096.933650px;}
.y61{bottom:1096.934110px;}
.y1{bottom:1127.419800px;}
.ya6{bottom:1179.300000px;}
.h3{height:0.000000px;}
.hb{height:21.663610px;}
.ha{height:29.266330px;}
.h2{height:31.217386px;}
.hd{height:31.218605px;}
.hc{height:31.557869px;}
.he{height:37.546875px;}
.h5{height:37.730453px;}
.h6{height:39.021610px;}
.h4{height:40.360586px;}
.h9{height:46.623730px;}
.h7{height:46.624330px;}
.h8{height:46.630930px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1aa{left:11.250000px;}
.x10{left:64.097400px;}
.x80{left:70.540950px;}
.x81{left:74.960700px;}
.x1b{left:76.314900px;}
.xa9{left:78.418950px;}
.x1c{left:79.423200px;}
.x30{left:81.455250px;}
.x5e{left:83.128650px;}
.x31{left:84.563700px;}
.xd0{left:85.663500px;}
.xbf{left:87.049800px;}
.x5f{left:88.222800px;}
.xd1{left:89.713500px;}
.x4a{left:90.897000px;}
.xb7{left:92.295750px;}
.x4b{left:93.619950px;}
.x82{left:94.889100px;}
.x9d{left:96.083850px;}
.x3b{left:97.654050px;}
.x83{left:99.308850px;}
.x3c{left:100.761900px;}
.x11{left:102.698400px;}
.xd8{left:104.635500px;}
.x12{left:105.806850px;}
.x9e{left:107.603250px;}
.x9f{left:109.846950px;}
.x75{left:110.959050px;}
.x96{left:112.843950px;}
.x76{left:114.631050px;}
.x97{left:116.426400px;}
.x3d{left:118.347600px;}
.x91{left:119.622000px;}
.x3e{left:120.900600px;}
.xd5{left:122.701200px;}
.x1d{left:124.790700px;}
.x8b{left:125.961900px;}
.x1e{left:127.899000px;}
.x13{left:128.963100px;}
.xc5{left:130.209450px;}
.x14{left:132.070950px;}
.xd2{left:133.500600px;}
.x60{left:134.916750px;}
.x77{left:136.378200px;}
.x98{left:138.717000px;}
.x61{left:140.010000px;}
.xa0{left:141.295500px;}
.x92{left:143.215500px;}
.xdb{left:144.372000px;}
.x93{left:145.435500px;}
.xcc{left:146.655000px;}
.xe3{left:149.980500px;}
.xc6{left:151.249500px;}
.xaf{left:152.263500px;}
.xaa{left:154.384500px;}
.xc7{left:155.641500px;}
.x67{left:157.656000px;}
.xbb{left:160.152000px;}
.x62{left:161.601000px;}
.x25{left:163.941000px;}
.xc2{left:165.855000px;}
.x26{left:167.049000px;}
.xb0{left:168.832500px;}
.x4c{left:169.956000px;}
.x84{left:172.012500px;}
.x3f{left:174.636000px;}
.xab{left:176.079000px;}
.x40{left:177.187500px;}
.x56{left:178.755000px;}
.x27{left:180.546000px;}
.xc4{left:182.568000px;}
.x28{left:183.654000px;}
.x32{left:186.069000px;}
.xdd{left:187.912500px;}
.x1f{left:189.130500px;}
.xd9{left:190.233000px;}
.x20{left:192.238500px;}
.xcd{left:193.240500px;}
.x41{left:195.264000px;}
.x15{left:197.151000px;}
.x16{left:200.260500px;}
.x33{left:202.674000px;}
.x21{left:204.408000px;}
.xa4{left:205.960500px;}
.x22{left:207.516000px;}
.xa5{left:210.009000px;}
.x78{left:211.144500px;}
.xce{left:214.033500px;}
.x17{left:215.191500px;}
.x70{left:216.229500px;}
.x18{left:218.299500px;}
.x34{left:219.375000px;}
.x57{left:220.620000px;}
.x29{left:222.399000px;}
.x4d{left:224.691000px;}
.xac{left:227.406000px;}
.xbc{left:228.531000px;}
.xc8{left:229.830000px;}
.xb8{left:231.319500px;}
.xc3{left:232.689000px;}
.xb1{left:233.818500px;}
.xb9{left:235.261500px;}
.xb2{left:236.652000px;}
.xad{left:238.596000px;}
.xa1{left:240.546000px;}
.x23{left:241.741500px;}
.xa2{left:242.788500px;}
.x24{left:244.851000px;}
.x4e{left:246.066000px;}
.x2a{left:248.149500px;}
.xc0{left:249.369000px;}
.x2b{left:251.257500px;}
.x71{left:253.681500px;}
.x8c{left:256.101000px;}
.x68{left:257.734500px;}
.x72{left:259.180500px;}
.x69{left:260.773500px;}
.x8d{left:262.593000px;}
.x94{left:264.621000px;}
.x2c{left:266.727000px;}
.x99{left:267.841500px;}
.x2d{left:269.835000px;}
.x6a{left:272.035500px;}
.xda{left:273.900000px;}
.x6b{left:275.074500px;}
.x79{left:277.780500px;}
.x63{left:279.043500px;}
.xc9{left:280.272000px;}
.x7a{left:281.452500px;}
.x58{left:282.658500px;}
.x64{left:284.137500px;}
.x42{left:285.849000px;}
.xd6{left:287.106000px;}
.x43{left:288.402000px;}
.xbd{left:289.855500px;}
.x85{left:292.179000px;}
.x35{left:293.719500px;}
.x4f{left:295.147500px;}
.x36{left:296.829000px;}
.x50{left:297.871500px;}
.x7b{left:299.479500px;}
.x19{left:300.558000px;}
.xca{left:302.190000px;}
.x1a{left:303.666000px;}
.x86{left:305.875500px;}
.xba{left:307.473000px;}
.x51{left:309.252000px;}
.x37{left:310.767000px;}
.x2e{left:312.847500px;}
.x38{left:313.875000px;}
.x2f{left:315.955500px;}
.xde{left:317.238000px;}
.x7c{left:318.516000px;}
.xae{left:319.677000px;}
.x65{left:322.236000px;}
.xc1{left:323.484000px;}
.x44{left:324.804000px;}
.x8e{left:325.953000px;}
.x45{left:327.355500px;}
.xb3{left:328.942500px;}
.xcb{left:330.006000px;}
.xb4{left:331.776000px;}
.x87{left:332.833500px;}
.xd7{left:335.635500px;}
.x6c{left:336.942000px;}
.x7d{left:338.073000px;}
.x59{left:339.879000px;}
.x7e{left:341.745000px;}
.x1{left:344.421000px;}
.xe4{left:345.898500px;}
.xa3{left:347.526000px;}
.x39{left:349.069500px;}
.xdc{left:351.172500px;}
.x3a{left:352.179000px;}
.x5a{left:354.661500px;}
.xd3{left:355.761000px;}
.x9a{left:356.871000px;}
.x5b{left:358.363500px;}
.x6d{left:359.539500px;}
.x73{left:360.841500px;}
.xcf{left:361.965000px;}
.x52{left:363.057000px;}
.xe6{left:364.090500px;}
.x53{left:365.779500px;}
.x8f{left:367.269000px;}
.x7f{left:368.584500px;}
.xe2{left:370.809000px;}
.x2{left:372.280500px;}
.xe5{left:373.575000px;}
.x3{left:374.767500px;}
.x46{left:375.915000px;}
.xdf{left:377.217000px;}
.x47{left:378.466500px;}
.x88{left:380.394000px;}
.xa6{left:381.546000px;}
.x4{left:382.791000px;}
.xbe{left:383.793000px;}
.x5{left:385.278000px;}
.x66{left:387.678000px;}
.x5c{left:388.950000px;}
.xb5{left:390.568500px;}
.xe7{left:392.376000px;}
.xb6{left:393.402000px;}
.x9b{left:394.930500px;}
.x6e{left:396.736500px;}
.x74{left:398.187000px;}
.x6f{left:399.775500px;}
.xa7{left:401.335500px;}
.xd4{left:402.615000px;}
.x54{left:404.668500px;}
.x55{left:407.391000px;}
.xe0{left:408.757500px;}
.x5d{left:410.073000px;}
.xa8{left:411.826500px;}
.x48{left:413.889000px;}
.x95{left:415.375500px;}
.x49{left:416.440500px;}
.xe1{left:417.721500px;}
.x6{left:419.611500px;}
.x9c{left:420.804000px;}
.x7{left:422.097000px;}
.x8{left:425.215500px;}
.x90{left:426.301500px;}
.x9{left:427.702500px;}
.x89{left:430.551000px;}
.x8a{left:434.970000px;}
.xa{left:444.018000px;}
.xb{left:446.503500px;}
.x157{left:466.170000px;}
.xe8{left:468.331850px;}
.xc{left:471.063000px;}
.xd{left:473.550000px;}
.x100{left:474.775500px;}
.x1a4{left:476.193000px;}
.x101{left:479.035500px;}
.x1a0{left:481.864500px;}
.xe9{left:482.916000px;}
.x1a1{left:484.972500px;}
.x113{left:486.266044px;}
.xea{left:487.818000px;}
.x14f{left:489.706500px;}
.x150{left:492.814500px;}
.x1a8{left:495.559500px;}
.x1a9{left:498.381000px;}
.x17c{left:501.402000px;}
.x102{left:502.968000px;}
.x17d{left:504.226500px;}
.x145{left:505.474500px;}
.xeb{left:506.526000px;}
.x146{left:507.940500px;}
.x164{left:509.731500px;}
.xec{left:511.428000px;}
.x194{left:513.172500px;}
.x121{left:514.635000px;}
.x186{left:516.960000px;}
.x103{left:518.919000px;}
.x12c{left:520.725000px;}
.x104{left:523.179000px;}
.x16f{left:525.114000px;}
.x187{left:527.275500px;}
.x158{left:530.368500px;}
.x12d{left:531.903000px;}
.x159{left:533.115000px;}
.x19d{left:534.831000px;}
.x111{left:536.400000px;}
.x12e{left:537.589500px;}
.x112{left:539.509500px;}
.x122{left:540.604500px;}
.x151{left:541.888500px;}
.x114{left:543.747000px;}
.x123{left:544.852500px;}
.x170{left:546.798000px;}
.x115{left:548.355000px;}
.x16e{left:550.012500px;}
.x152{left:553.077000px;}
.xed{left:554.475000px;}
.x153{left:556.186500px;}
.x171{left:558.334500px;}
.xee{left:559.377000px;}
.x105{left:560.752500px;}
.x176{left:562.138500px;}
.x17e{left:563.944500px;}
.xe{left:565.332000px;}
.x17f{left:566.767500px;}
.x199{left:568.090500px;}
.x165{left:569.784000px;}
.x116{left:571.021500px;}
.x12f{left:572.257500px;}
.x166{left:573.544500px;}
.x117{left:575.629500px;}
.x130{left:577.944000px;}
.x147{left:579.559500px;}
.x148{left:582.027000px;}
.x124{left:583.047000px;}
.x13c{left:585.024000px;}
.x125{left:587.295000px;}
.x15a{left:589.783500px;}
.x188{left:591.715500px;}
.x149{left:593.718000px;}
.xef{left:595.777500px;}
.x177{left:598.447500px;}
.x19b{left:599.539500px;}
.xf0{left:600.679500px;}
.x160{left:603.664500px;}
.x189{left:604.929000px;}
.x13d{left:606.006000px;}
.x13e{left:607.824000px;}
.x172{left:610.629000px;}
.x131{left:611.943000px;}
.x173{left:613.213500px;}
.x14a{left:614.893500px;}
.x19a{left:615.895500px;}
.x132{left:617.629500px;}
.x192{left:619.740000px;}
.xf1{left:622.054500px;}
.x106{left:624.294000px;}
.xf2{left:626.955000px;}
.x107{left:628.554000px;}
.x15b{left:629.922000px;}
.x118{left:631.666500px;}
.x19e{left:633.121500px;}
.x133{left:636.339000px;}
.x193{left:639.144000px;}
.x108{left:640.245000px;}
.xf3{left:641.539500px;}
.x1a5{left:643.035000px;}
.x109{left:644.505000px;}
.xf4{left:646.441500px;}
.x119{left:650.284500px;}
.x195{left:653.562000px;}
.x167{left:654.906000px;}
.x11a{left:657.075000px;}
.x161{left:659.152500px;}
.x178{left:660.559500px;}
.x11b{left:661.683000px;}
.x13f{left:662.851500px;}
.xf5{left:665.149500px;}
.x162{left:666.793500px;}
.x174{left:667.795500px;}
.xf6{left:670.050000px;}
.x179{left:671.254500px;}
.x18a{left:672.502500px;}
.x154{left:673.866000px;}
.x1a2{left:674.962500px;}
.x126{left:676.197000px;}
.x19f{left:677.820000px;}
.x127{left:680.445000px;}
.x18b{left:681.930000px;}
.x180{left:683.503500px;}
.x10a{left:687.829500px;}
.x196{left:689.139000px;}
.x15c{left:691.015500px;}
.x10b{left:692.089500px;}
.x15d{left:693.763500px;}
.xf7{left:696.040500px;}
.x134{left:698.458500px;}
.x181{left:699.559500px;}
.xf8{left:700.941000px;}
.x182{left:702.384000px;}
.x135{left:704.146500px;}
.x197{left:706.114500px;}
.x198{left:709.222500px;}
.x175{left:710.634000px;}
.x14b{left:711.649500px;}
.x10c{left:713.535000px;}
.x136{left:715.335000px;}
.x183{left:716.509500px;}
.x10d{left:717.795000px;}
.x163{left:719.440500px;}
.x128{left:721.533000px;}
.x129{left:725.781000px;}
.x155{left:728.008500px;}
.x19c{left:729.186000px;}
.x140{left:730.816500px;}
.x141{left:732.636000px;}
.x1a6{left:733.764000px;}
.xf9{left:734.964000px;}
.x168{left:736.380000px;}
.xfa{left:739.864500px;}
.x14c{left:741.945000px;}
.x10e{left:743.226000px;}
.x14d{left:744.412500px;}
.x137{left:745.417500px;}
.x1a3{left:746.593500px;}
.x11c{left:748.245000px;}
.x169{left:749.493000px;}
.x16a{left:753.253500px;}
.x10f{left:754.308000px;}
.x15e{left:756.547500px;}
.x110{left:758.568000px;}
.x18c{left:759.859500px;}
.x184{left:761.358000px;}
.x17a{left:763.156500px;}
.x17b{left:765.904500px;}
.x18d{left:767.151000px;}
.x18e{left:769.287000px;}
.x11d{left:770.911500px;}
.x185{left:772.509000px;}
.x156{left:773.590500px;}
.x11e{left:775.519500px;}
.xfb{left:776.887350px;}
.x142{left:778.231500px;}
.x138{left:779.500500px;}
.xfc{left:781.789500px;}
.x14e{left:783.670500px;}
.x139{left:785.187000px;}
.x13a{left:791.977500px;}
.x13b{left:797.664000px;}
.xfd{left:801.096000px;}
.x18f{left:802.845000px;}
.x12a{left:803.943000px;}
.x190{left:804.981000px;}
.xfe{left:805.996500px;}
.x16b{left:807.096000px;}
.x12b{left:808.191000px;}
.x15f{left:810.775500px;}
.x143{left:812.962500px;}
.x144{left:814.780500px;}
.x1a7{left:816.757500px;}
.x16c{left:819.865500px;}
.x16d{left:823.624500px;}
.x11f{left:827.031000px;}
.xf{left:829.159500px;}
.x191{left:830.487000px;}
.x120{left:831.639000px;}
.xff{left:833.659500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.429333pt;}
.lsf{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000393pt;}
.lse{letter-spacing:0.001075pt;}
.ls6{letter-spacing:2.651059pt;}
.ls7{letter-spacing:2.653252pt;}
.ls5{letter-spacing:2.656393pt;}
.ls8{letter-spacing:2.656828pt;}
.lsd{letter-spacing:7.971575pt;}
.ls4{letter-spacing:9.410586pt;}
.lsa{letter-spacing:9.739059pt;}
.lsb{letter-spacing:9.741252pt;}
.lsc{letter-spacing:9.872828pt;}
.ls2{letter-spacing:10.631919pt;}
.ls0{letter-spacing:13.469252pt;}
.ls3{letter-spacing:15.453252pt;}
.ls1{letter-spacing:15.714586pt;}
.ws1{word-spacing:-11.902016pt;}
.ws2{word-spacing:-9.521643pt;}
.ws4{word-spacing:-0.042507pt;}
.ws0{word-spacing:-0.034006pt;}
.ws3{word-spacing:-0.031881pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-2514.784000pt;}
._2{margin-left:-12.930690pt;}
._0{margin-left:-10.854673pt;}
._3{width:3.971885pt;}
._1{width:5.307283pt;}
.fs1{font-size:0.001067pt;}
.fs3{font-size:31.880533pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:34.005867pt;}
.fs2{font-size:42.507200pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:277.666667pt;}
.y5f{bottom:277.666992pt;}
.ya5{bottom:283.807729pt;}
.y5e{bottom:291.614667pt;}
.y5d{bottom:291.616054pt;}
.ya3{bottom:295.231729pt;}
.ya4{bottom:295.232000pt;}
.y5c{bottom:305.562667pt;}
.y5b{bottom:305.562992pt;}
.ya1{bottom:306.655729pt;}
.ya2{bottom:306.656000pt;}
.ya0{bottom:318.080000pt;}
.y5a{bottom:319.510667pt;}
.y59{bottom:319.510721pt;}
.y9f{bottom:329.504000pt;}
.y58{bottom:333.457333pt;}
.y57{bottom:333.457658pt;}
.y56{bottom:347.405333pt;}
.y55{bottom:347.406721pt;}
.y9e{bottom:357.398667pt;}
.y9d{bottom:357.398992pt;}
.y54{bottom:361.353333pt;}
.y53{bottom:361.354721pt;}
.y9c{bottom:371.346667pt;}
.y9b{bottom:375.205333pt;}
.y52{bottom:375.301333pt;}
.y51{bottom:375.301658pt;}
.y50{bottom:389.249333pt;}
.y4f{bottom:389.249388pt;}
.y9a{bottom:399.493388pt;}
.y4e{bottom:403.196000pt;}
.y4d{bottom:403.196325pt;}
.y99{bottom:413.440000pt;}
.y4c{bottom:417.144000pt;}
.y4b{bottom:417.145388pt;}
.y98{bottom:417.297333pt;}
.y97{bottom:427.388000pt;}
.y96{bottom:427.388054pt;}
.y4a{bottom:431.092000pt;}
.y49{bottom:431.093388pt;}
.y95{bottom:441.334667pt;}
.y48{bottom:445.040000pt;}
.y47{bottom:445.040054pt;}
.y94{bottom:445.192000pt;}
.y93{bottom:455.282667pt;}
.y46{bottom:458.986667pt;}
.y45{bottom:458.988054pt;}
.y92{bottom:459.140000pt;}
.y44{bottom:472.934667pt;}
.y43{bottom:472.934992pt;}
.y91{bottom:483.178667pt;}
.y90{bottom:483.178992pt;}
.y42{bottom:486.882667pt;}
.y41{bottom:486.884054pt;}
.y8f{bottom:497.126667pt;}
.y8e{bottom:497.126854pt;}
.y40{bottom:500.830667pt;}
.y3f{bottom:500.830992pt;}
.y8d{bottom:511.073467pt;}
.y3e{bottom:514.778667pt;}
.y3d{bottom:514.778721pt;}
.y3c{bottom:528.725333pt;}
.y3b{bottom:528.726721pt;}
.y8c{bottom:538.289333pt;}
.y8b{bottom:538.290500pt;}
.y3a{bottom:542.673333pt;}
.y39{bottom:542.673658pt;}
.y8a{bottom:548.917333pt;}
.y38{bottom:556.621333pt;}
.y37{bottom:556.622721pt;}
.y88{bottom:559.542667pt;}
.y87{bottom:559.543833pt;}
.y89{bottom:559.544000pt;}
.y85{bottom:570.170500pt;}
.y86{bottom:570.170667pt;}
.y36{bottom:570.569333pt;}
.y35{bottom:570.569658pt;}
.y84{bottom:580.797333pt;}
.y34{bottom:584.517333pt;}
.y33{bottom:584.517521pt;}
.y83{bottom:591.423833pt;}
.y32{bottom:598.464133pt;}
.y31{bottom:598.464325pt;}
.y82{bottom:602.050667pt;}
.y30{bottom:612.412000pt;}
.y2f{bottom:612.412325pt;}
.y81{bottom:612.677333pt;}
.y80{bottom:612.678500pt;}
.y7e{bottom:623.303833pt;}
.y7f{bottom:623.305333pt;}
.y2e{bottom:626.360000pt;}
.y2d{bottom:626.360054pt;}
.y7d{bottom:633.930667pt;}
.y7c{bottom:633.931833pt;}
.y2c{bottom:640.306667pt;}
.y2b{bottom:640.306992pt;}
.y7a{bottom:644.557333pt;}
.y7b{bottom:644.558667pt;}
.y2a{bottom:654.254667pt;}
.y29{bottom:654.256054pt;}
.y28{bottom:668.202667pt;}
.y27{bottom:668.202992pt;}
.y79{bottom:668.867521pt;}
.y26{bottom:682.150667pt;}
.y25{bottom:682.150992pt;}
.y24{bottom:696.098667pt;}
.y23{bottom:696.098854pt;}
.y78{bottom:697.427046pt;}
.y22{bottom:710.045467pt;}
.y21{bottom:710.046721pt;}
.y20{bottom:723.993333pt;}
.y1f{bottom:723.994721pt;}
.y77{bottom:725.321333pt;}
.y76{bottom:725.321600pt;}
.y1e{bottom:737.941333pt;}
.y1d{bottom:737.942721pt;}
.y1c{bottom:751.889333pt;}
.y1b{bottom:751.889658pt;}
.y75{bottom:753.881125pt;}
.y1a{bottom:765.837333pt;}
.y19{bottom:765.837388pt;}
.y18{bottom:779.784000pt;}
.y17{bottom:779.785388pt;}
.y74{bottom:781.777538pt;}
.y16{bottom:793.732000pt;}
.y15{bottom:793.732325pt;}
.y14{bottom:807.680000pt;}
.y13{bottom:807.681388pt;}
.y73{bottom:810.336000pt;}
.y72{bottom:810.336325pt;}
.y12{bottom:821.628000pt;}
.y11{bottom:821.628325pt;}
.y71{bottom:824.284000pt;}
.y70{bottom:824.284325pt;}
.y10{bottom:835.576000pt;}
.yf{bottom:835.576054pt;}
.y6f{bottom:838.232000pt;}
.y6e{bottom:838.233388pt;}
.ye{bottom:849.522667pt;}
.yd{bottom:849.522992pt;}
.y6d{bottom:852.180000pt;}
.y6c{bottom:852.180325pt;}
.yc{bottom:863.470667pt;}
.yb{bottom:863.472379pt;}
.y6b{bottom:866.128000pt;}
.y6a{bottom:866.128054pt;}
.y69{bottom:880.074667pt;}
.y68{bottom:880.075950pt;}
.ya{bottom:891.366667pt;}
.y9{bottom:891.367046pt;}
.y67{bottom:910.628000pt;}
.y66{bottom:910.628167pt;}
.y8{bottom:919.261333pt;}
.y7{bottom:919.261792pt;}
.y5{bottom:933.208958pt;}
.y6{bottom:933.209467pt;}
.y65{bottom:947.157792pt;}
.y4{bottom:960.440133pt;}
.y3{bottom:960.440458pt;}
.y63{bottom:961.104458pt;}
.y64{bottom:961.105467pt;}
.y2{bottom:974.388133pt;}
.y62{bottom:975.052133pt;}
.y61{bottom:975.052542pt;}
.y1{bottom:1002.150933pt;}
.ya6{bottom:1048.266667pt;}
.h3{height:0.000000pt;}
.hb{height:19.256542pt;}
.ha{height:26.014515pt;}
.h2{height:27.748787pt;}
.hd{height:27.749871pt;}
.hc{height:28.051439pt;}
.he{height:33.375000pt;}
.h5{height:33.538181pt;}
.h6{height:34.685875pt;}
.h4{height:35.876077pt;}
.h9{height:41.443315pt;}
.h7{height:41.443849pt;}
.h8{height:41.449715pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1aa{left:10.000000pt;}
.x10{left:56.975467pt;}
.x80{left:62.703067pt;}
.x81{left:66.631733pt;}
.x1b{left:67.835467pt;}
.xa9{left:69.705733pt;}
.x1c{left:70.598400pt;}
.x30{left:72.404667pt;}
.x5e{left:73.892133pt;}
.x31{left:75.167733pt;}
.xd0{left:76.145333pt;}
.xbf{left:77.377600pt;}
.x5f{left:78.420267pt;}
.xd1{left:79.745333pt;}
.x4a{left:80.797333pt;}
.xb7{left:82.040667pt;}
.x4b{left:83.217733pt;}
.x82{left:84.345867pt;}
.x9d{left:85.407867pt;}
.x3b{left:86.803600pt;}
.x83{left:88.274533pt;}
.x3c{left:89.566133pt;}
.x11{left:91.287467pt;}
.xd8{left:93.009333pt;}
.x12{left:94.050533pt;}
.x9e{left:95.647333pt;}
.x9f{left:97.641733pt;}
.x75{left:98.630267pt;}
.x96{left:100.305733pt;}
.x76{left:101.894267pt;}
.x97{left:103.490133pt;}
.x3d{left:105.197867pt;}
.x91{left:106.330667pt;}
.x3e{left:107.467200pt;}
.xd5{left:109.067733pt;}
.x1d{left:110.925067pt;}
.x8b{left:111.966133pt;}
.x1e{left:113.688000pt;}
.x13{left:114.633867pt;}
.xc5{left:115.741733pt;}
.x14{left:117.396400pt;}
.xd2{left:118.667200pt;}
.x60{left:119.926000pt;}
.x77{left:121.225067pt;}
.x98{left:123.304000pt;}
.x61{left:124.453333pt;}
.xa0{left:125.596000pt;}
.x92{left:127.302667pt;}
.xdb{left:128.330667pt;}
.x93{left:129.276000pt;}
.xcc{left:130.360000pt;}
.xe3{left:133.316000pt;}
.xc6{left:134.444000pt;}
.xaf{left:135.345333pt;}
.xaa{left:137.230667pt;}
.xc7{left:138.348000pt;}
.x67{left:140.138667pt;}
.xbb{left:142.357333pt;}
.x62{left:143.645333pt;}
.x25{left:145.725333pt;}
.xc2{left:147.426667pt;}
.x26{left:148.488000pt;}
.xb0{left:150.073333pt;}
.x4c{left:151.072000pt;}
.x84{left:152.900000pt;}
.x3f{left:155.232000pt;}
.xab{left:156.514667pt;}
.x40{left:157.500000pt;}
.x56{left:158.893333pt;}
.x27{left:160.485333pt;}
.xc4{left:162.282667pt;}
.x28{left:163.248000pt;}
.x32{left:165.394667pt;}
.xdd{left:167.033333pt;}
.x1f{left:168.116000pt;}
.xd9{left:169.096000pt;}
.x20{left:170.878667pt;}
.xcd{left:171.769333pt;}
.x41{left:173.568000pt;}
.x15{left:175.245333pt;}
.x16{left:178.009333pt;}
.x33{left:180.154667pt;}
.x21{left:181.696000pt;}
.xa4{left:183.076000pt;}
.x22{left:184.458667pt;}
.xa5{left:186.674667pt;}
.x78{left:187.684000pt;}
.xce{left:190.252000pt;}
.x17{left:191.281333pt;}
.x70{left:192.204000pt;}
.x18{left:194.044000pt;}
.x34{left:195.000000pt;}
.x57{left:196.106667pt;}
.x29{left:197.688000pt;}
.x4d{left:199.725333pt;}
.xac{left:202.138667pt;}
.xbc{left:203.138667pt;}
.xc8{left:204.293333pt;}
.xb8{left:205.617333pt;}
.xc3{left:206.834667pt;}
.xb1{left:207.838667pt;}
.xb9{left:209.121333pt;}
.xb2{left:210.357333pt;}
.xad{left:212.085333pt;}
.xa1{left:213.818667pt;}
.x23{left:214.881333pt;}
.xa2{left:215.812000pt;}
.x24{left:217.645333pt;}
.x4e{left:218.725333pt;}
.x2a{left:220.577333pt;}
.xc0{left:221.661333pt;}
.x2b{left:223.340000pt;}
.x71{left:225.494667pt;}
.x8c{left:227.645333pt;}
.x68{left:229.097333pt;}
.x72{left:230.382667pt;}
.x69{left:231.798667pt;}
.x8d{left:233.416000pt;}
.x94{left:235.218667pt;}
.x2c{left:237.090667pt;}
.x99{left:238.081333pt;}
.x2d{left:239.853333pt;}
.x6a{left:241.809333pt;}
.xda{left:243.466667pt;}
.x6b{left:244.510667pt;}
.x79{left:246.916000pt;}
.x63{left:248.038667pt;}
.xc9{left:249.130667pt;}
.x7a{left:250.180000pt;}
.x58{left:251.252000pt;}
.x64{left:252.566667pt;}
.x42{left:254.088000pt;}
.xd6{left:255.205333pt;}
.x43{left:256.357333pt;}
.xbd{left:257.649333pt;}
.x85{left:259.714667pt;}
.x35{left:261.084000pt;}
.x4f{left:262.353333pt;}
.x36{left:263.848000pt;}
.x50{left:264.774667pt;}
.x7b{left:266.204000pt;}
.x19{left:267.162667pt;}
.xca{left:268.613333pt;}
.x1a{left:269.925333pt;}
.x86{left:271.889333pt;}
.xba{left:273.309333pt;}
.x51{left:274.890667pt;}
.x37{left:276.237333pt;}
.x2e{left:278.086667pt;}
.x38{left:279.000000pt;}
.x2f{left:280.849333pt;}
.xde{left:281.989333pt;}
.x7c{left:283.125333pt;}
.xae{left:284.157333pt;}
.x65{left:286.432000pt;}
.xc1{left:287.541333pt;}
.x44{left:288.714667pt;}
.x8e{left:289.736000pt;}
.x45{left:290.982667pt;}
.xb3{left:292.393333pt;}
.xcb{left:293.338667pt;}
.xb4{left:294.912000pt;}
.x87{left:295.852000pt;}
.xd7{left:298.342667pt;}
.x6c{left:299.504000pt;}
.x7d{left:300.509333pt;}
.x59{left:302.114667pt;}
.x7e{left:303.773333pt;}
.x1{left:306.152000pt;}
.xe4{left:307.465333pt;}
.xa3{left:308.912000pt;}
.x39{left:310.284000pt;}
.xdc{left:312.153333pt;}
.x3a{left:313.048000pt;}
.x5a{left:315.254667pt;}
.xd3{left:316.232000pt;}
.x9a{left:317.218667pt;}
.x5b{left:318.545333pt;}
.x6d{left:319.590667pt;}
.x73{left:320.748000pt;}
.xcf{left:321.746667pt;}
.x52{left:322.717333pt;}
.xe6{left:323.636000pt;}
.x53{left:325.137333pt;}
.x8f{left:326.461333pt;}
.x7f{left:327.630667pt;}
.xe2{left:329.608000pt;}
.x2{left:330.916000pt;}
.xe5{left:332.066667pt;}
.x3{left:333.126667pt;}
.x46{left:334.146667pt;}
.xdf{left:335.304000pt;}
.x47{left:336.414667pt;}
.x88{left:338.128000pt;}
.xa6{left:339.152000pt;}
.x4{left:340.258667pt;}
.xbe{left:341.149333pt;}
.x5{left:342.469333pt;}
.x66{left:344.602667pt;}
.x5c{left:345.733333pt;}
.xb5{left:347.172000pt;}
.xe7{left:348.778667pt;}
.xb6{left:349.690667pt;}
.x9b{left:351.049333pt;}
.x6e{left:352.654667pt;}
.x74{left:353.944000pt;}
.x6f{left:355.356000pt;}
.xa7{left:356.742667pt;}
.xd4{left:357.880000pt;}
.x54{left:359.705333pt;}
.x55{left:362.125333pt;}
.xe0{left:363.340000pt;}
.x5d{left:364.509333pt;}
.xa8{left:366.068000pt;}
.x48{left:367.901333pt;}
.x95{left:369.222667pt;}
.x49{left:370.169333pt;}
.xe1{left:371.308000pt;}
.x6{left:372.988000pt;}
.x9c{left:374.048000pt;}
.x7{left:375.197333pt;}
.x8{left:377.969333pt;}
.x90{left:378.934667pt;}
.x9{left:380.180000pt;}
.x89{left:382.712000pt;}
.x8a{left:386.640000pt;}
.xa{left:394.682667pt;}
.xb{left:396.892000pt;}
.x157{left:414.373333pt;}
.xe8{left:416.294978pt;}
.xc{left:418.722667pt;}
.xd{left:420.933333pt;}
.x100{left:422.022667pt;}
.x1a4{left:423.282667pt;}
.x101{left:425.809333pt;}
.x1a0{left:428.324000pt;}
.xe9{left:429.258667pt;}
.x1a1{left:431.086667pt;}
.x113{left:432.236484pt;}
.xea{left:433.616000pt;}
.x14f{left:435.294667pt;}
.x150{left:438.057333pt;}
.x1a8{left:440.497333pt;}
.x1a9{left:443.005333pt;}
.x17c{left:445.690667pt;}
.x102{left:447.082667pt;}
.x17d{left:448.201333pt;}
.x145{left:449.310667pt;}
.xeb{left:450.245333pt;}
.x146{left:451.502667pt;}
.x164{left:453.094667pt;}
.xec{left:454.602667pt;}
.x194{left:456.153333pt;}
.x121{left:457.453333pt;}
.x186{left:459.520000pt;}
.x103{left:461.261333pt;}
.x12c{left:462.866667pt;}
.x104{left:465.048000pt;}
.x16f{left:466.768000pt;}
.x187{left:468.689333pt;}
.x158{left:471.438667pt;}
.x12d{left:472.802667pt;}
.x159{left:473.880000pt;}
.x19d{left:475.405333pt;}
.x111{left:476.800000pt;}
.x12e{left:477.857333pt;}
.x112{left:479.564000pt;}
.x122{left:480.537333pt;}
.x151{left:481.678667pt;}
.x114{left:483.330667pt;}
.x123{left:484.313333pt;}
.x170{left:486.042667pt;}
.x115{left:487.426667pt;}
.x16e{left:488.900000pt;}
.x152{left:491.624000pt;}
.xed{left:492.866667pt;}
.x153{left:494.388000pt;}
.x171{left:496.297333pt;}
.xee{left:497.224000pt;}
.x105{left:498.446667pt;}
.x176{left:499.678667pt;}
.x17e{left:501.284000pt;}
.xe{left:502.517333pt;}
.x17f{left:503.793333pt;}
.x199{left:504.969333pt;}
.x165{left:506.474667pt;}
.x116{left:507.574667pt;}
.x12f{left:508.673333pt;}
.x166{left:509.817333pt;}
.x117{left:511.670667pt;}
.x130{left:513.728000pt;}
.x147{left:515.164000pt;}
.x148{left:517.357333pt;}
.x124{left:518.264000pt;}
.x13c{left:520.021333pt;}
.x125{left:522.040000pt;}
.x15a{left:524.252000pt;}
.x188{left:525.969333pt;}
.x149{left:527.749333pt;}
.xef{left:529.580000pt;}
.x177{left:531.953333pt;}
.x19b{left:532.924000pt;}
.xf0{left:533.937333pt;}
.x160{left:536.590667pt;}
.x189{left:537.714667pt;}
.x13d{left:538.672000pt;}
.x13e{left:540.288000pt;}
.x172{left:542.781333pt;}
.x131{left:543.949333pt;}
.x173{left:545.078667pt;}
.x14a{left:546.572000pt;}
.x19a{left:547.462667pt;}
.x132{left:549.004000pt;}
.x192{left:550.880000pt;}
.xf1{left:552.937333pt;}
.x106{left:554.928000pt;}
.xf2{left:557.293333pt;}
.x107{left:558.714667pt;}
.x15b{left:559.930667pt;}
.x118{left:561.481333pt;}
.x19e{left:562.774667pt;}
.x133{left:565.634667pt;}
.x193{left:568.128000pt;}
.x108{left:569.106667pt;}
.xf3{left:570.257333pt;}
.x1a5{left:571.586667pt;}
.x109{left:572.893333pt;}
.xf4{left:574.614667pt;}
.x119{left:578.030667pt;}
.x195{left:580.944000pt;}
.x167{left:582.138667pt;}
.x11a{left:584.066667pt;}
.x161{left:585.913333pt;}
.x178{left:587.164000pt;}
.x11b{left:588.162667pt;}
.x13f{left:589.201333pt;}
.xf5{left:591.244000pt;}
.x162{left:592.705333pt;}
.x174{left:593.596000pt;}
.xf6{left:595.600000pt;}
.x179{left:596.670667pt;}
.x18a{left:597.780000pt;}
.x154{left:598.992000pt;}
.x1a2{left:599.966667pt;}
.x126{left:601.064000pt;}
.x19f{left:602.506667pt;}
.x127{left:604.840000pt;}
.x18b{left:606.160000pt;}
.x180{left:607.558667pt;}
.x10a{left:611.404000pt;}
.x196{left:612.568000pt;}
.x15c{left:614.236000pt;}
.x10b{left:615.190667pt;}
.x15d{left:616.678667pt;}
.xf7{left:618.702667pt;}
.x134{left:620.852000pt;}
.x181{left:621.830667pt;}
.xf8{left:623.058667pt;}
.x182{left:624.341333pt;}
.x135{left:625.908000pt;}
.x197{left:627.657333pt;}
.x198{left:630.420000pt;}
.x175{left:631.674667pt;}
.x14b{left:632.577333pt;}
.x10c{left:634.253333pt;}
.x136{left:635.853333pt;}
.x183{left:636.897333pt;}
.x10d{left:638.040000pt;}
.x163{left:639.502667pt;}
.x128{left:641.362667pt;}
.x129{left:645.138667pt;}
.x155{left:647.118667pt;}
.x19c{left:648.165333pt;}
.x140{left:649.614667pt;}
.x141{left:651.232000pt;}
.x1a6{left:652.234667pt;}
.xf9{left:653.301333pt;}
.x168{left:654.560000pt;}
.xfa{left:657.657333pt;}
.x14c{left:659.506667pt;}
.x10e{left:660.645333pt;}
.x14d{left:661.700000pt;}
.x137{left:662.593333pt;}
.x1a3{left:663.638667pt;}
.x11c{left:665.106667pt;}
.x169{left:666.216000pt;}
.x16a{left:669.558667pt;}
.x10f{left:670.496000pt;}
.x15e{left:672.486667pt;}
.x110{left:674.282667pt;}
.x18c{left:675.430667pt;}
.x184{left:676.762667pt;}
.x17a{left:678.361333pt;}
.x17b{left:680.804000pt;}
.x18d{left:681.912000pt;}
.x18e{left:683.810667pt;}
.x11d{left:685.254667pt;}
.x185{left:686.674667pt;}
.x156{left:687.636000pt;}
.x11e{left:689.350667pt;}
.xfb{left:690.566533pt;}
.x142{left:691.761333pt;}
.x138{left:692.889333pt;}
.xfc{left:694.924000pt;}
.x14e{left:696.596000pt;}
.x139{left:697.944000pt;}
.x13a{left:703.980000pt;}
.x13b{left:709.034667pt;}
.xfd{left:712.085333pt;}
.x18f{left:713.640000pt;}
.x12a{left:714.616000pt;}
.x190{left:715.538667pt;}
.xfe{left:716.441333pt;}
.x16b{left:717.418667pt;}
.x12b{left:718.392000pt;}
.x15f{left:720.689333pt;}
.x143{left:722.633333pt;}
.x144{left:724.249333pt;}
.x1a7{left:726.006667pt;}
.x16c{left:728.769333pt;}
.x16d{left:732.110667pt;}
.x11f{left:735.138667pt;}
.xf{left:737.030667pt;}
.x191{left:738.210667pt;}
.x120{left:739.234667pt;}
.xff{left:741.030667pt;}
}




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