
    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_90d480dd831a4d3e1fdd3b6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ec36985bbd924f97d4a1271a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_9545880877ad33d0b8071546.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_41c43c894a137ac1e3963baf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_50b6504bf801347be50cf699.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_f811a8240c4a6b89861eba92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_8e652c1819cb91539021914d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_98495c39320368793c2654f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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:ffa;src:url('chunks/assets/font_4286694c80876eed53c136b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861328;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:ffb;src:url('chunks/assets/font_ee6026a1cb3f66b41976e379.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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:ffc;src:url('chunks/assets/font_a8a6d4174fd350c9044ed8fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959961;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.839994px;}
.v1{vertical-align:-5.039998px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018600px;}
.ls1{letter-spacing:0.187842px;}
.ls5{letter-spacing:0.189018px;}
.ls2{letter-spacing:0.189300px;}
.ls12{letter-spacing:0.378602px;}
.ls7{letter-spacing:13.150615px;}
.ls11{letter-spacing:29.465868px;}
.lsf{letter-spacing:43.183423px;}
.lsb{letter-spacing:46.036302px;}
.lsc{letter-spacing:46.065102px;}
.lsd{letter-spacing:49.638100px;}
.lse{letter-spacing:56.122298px;}
.ls4{letter-spacing:56.383770px;}
.ls10{letter-spacing:59.753496px;}
.ls3{letter-spacing:140.675492px;}
.lsa{letter-spacing:161.335855px;}
.ls9{letter-spacing:1717.723169px;}
.ls0{letter-spacing:1726.368473px;}
.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;}
}
.ws3{word-spacing:-32.418587px;}
.ws7{word-spacing:-15.318596px;}
.ws2{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws4{word-spacing:-13.505755px;}
.ws0{word-spacing:-13.499995px;}
.ws6{word-spacing:-12.059995px;}
.ws5{word-spacing:0.000000px;}
._1b{margin-left:-4.267709px;}
._9{margin-left:-3.259557px;}
._2{margin-left:-2.098956px;}
._1{margin-left:-1.020320px;}
._0{width:1.013430px;}
._3{width:2.177681px;}
._4{width:3.356058px;}
._5{width:5.288072px;}
._6{width:6.766374px;}
._a{width:8.459420px;}
._1c{width:9.698265px;}
._d{width:11.174758px;}
._c{width:12.447138px;}
._b{width:16.049173px;}
._1f{width:17.748107px;}
._2d{width:19.261048px;}
._1d{width:20.308233px;}
._7{width:21.892707px;}
._19{width:23.237086px;}
._2c{width:24.637253px;}
._2b{width:40.710868px;}
._2a{width:42.064580px;}
._8{width:71.512971px;}
._24{width:93.818089px;}
._10{width:136.653914px;}
._e{width:150.135001px;}
._14{width:221.848385px;}
._16{width:278.196995px;}
._f{width:287.109266px;}
._18{width:334.628672px;}
._13{width:402.269772px;}
._15{width:428.863123px;}
._11{width:464.772831px;}
._17{width:491.177225px;}
._2e{width:520.348637px;}
._12{width:588.698282px;}
._23{width:875.392793px;}
._29{width:888.705148px;}
._2f{width:968.464197px;}
._20{width:969.631433px;}
._26{width:980.612086px;}
._22{width:995.453928px;}
._21{width:1005.006127px;}
._28{width:1007.138522px;}
._25{width:1079.021489px;}
._27{width:1100.037022px;}
._1a{width:1887.028813px;}
._1e{width:2387.733749px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(0,176,80);}
.fcc{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(5,99,193);}
.fc9{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fca{color:rgb(0,32,96);}
.fc8{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fcb{color:rgb(44,62,80);}
.fs1{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs3{font-size:84.239966px;}
.y48{bottom:-8.279991px;}
.y6{bottom:-5.579992px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y22{bottom:3.238968px;}
.y10{bottom:3.239027px;}
.y6d{bottom:3.239189px;}
.y72{bottom:3.239211px;}
.y137{bottom:3.239227px;}
.y76{bottom:3.239234px;}
.y10c{bottom:3.239245px;}
.y79{bottom:3.239262px;}
.y7c{bottom:3.239273px;}
.y7f{bottom:3.239289px;}
.y82{bottom:3.239305px;}
.y9{bottom:32.880287px;}
.y7{bottom:55.200278px;}
.y8{bottom:56.460277px;}
.y2f{bottom:176.699929px;}
.y13e{bottom:180.839928px;}
.y3f{bottom:181.199928px;}
.y112{bottom:181.559927px;}
.yeb{bottom:190.199924px;}
.y177{bottom:194.339922px;}
.y84{bottom:194.519922px;}
.y13d{bottom:197.219921px;}
.y111{bottom:197.939921px;}
.y83{bottom:210.899916px;}
.y176{bottom:211.619915px;}
.yea{bottom:215.579914px;}
.y3e{bottom:217.199913px;}
.yb7{bottom:224.039910px;}
.y175{bottom:225.119910px;}
.ye9{bottom:231.959907px;}
.y81{bottom:233.760600px;}
.y110{bottom:234.479906px;}
.y80{bottom:236.999905px;}
.y13c{bottom:237.539905px;}
.yb6{bottom:241.319903px;}
.y174{bottom:242.219903px;}
.ye8{bottom:248.339901px;}
.y173{bottom:255.719898px;}
.yb5{bottom:258.599897px;}
.y43{bottom:259.679896px;}
.ye7{bottom:264.719894px;}
.y10f{bottom:271.019892px;}
.y172{bottom:272.999891px;}
.y7e{bottom:274.440600px;}
.yb4{bottom:275.879890px;}
.y13b{bottom:276.959889px;}
.y7d{bottom:277.679889px;}
.y42{bottom:277.859889px;}
.ye6{bottom:285.779886px;}
.y171{bottom:286.499885px;}
.yb3{bottom:293.159883px;}
.y41{bottom:296.219882px;}
.y170{bottom:303.779878px;}
.y10e{bottom:307.559877px;}
.yb2{bottom:310.259876px;}
.y2e{bottom:311.699875px;}
.ye5{bottom:311.879875px;}
.y40{bottom:314.579874px;}
.y7b{bottom:315.120600px;}
.y13a{bottom:317.099873px;}
.y7a{bottom:318.359873px;}
.y16f{bottom:321.059872px;}
.yb1{bottom:327.539869px;}
.ye4{bottom:328.259869px;}
.y16e{bottom:334.559866px;}
.y78{bottom:341.220600px;}
.y10d{bottom:343.019863px;}
.y77{bottom:344.459862px;}
.ye3{bottom:344.639862px;}
.yb0{bottom:344.819862px;}
.y16d{bottom:351.839859px;}
.y139{bottom:357.239857px;}
.ye2{bottom:361.019856px;}
.yaf{bottom:362.099855px;}
.y16c{bottom:365.339854px;}
.y3d{bottom:367.139853px;}
.ye1{bottom:377.399849px;}
.yae{bottom:379.379848px;}
.y16b{bottom:382.619847px;}
.y10b{bottom:384.240600px;}
.ye0{bottom:393.779842px;}
.y3c{bottom:394.499842px;}
.y16a{bottom:396.119842px;}
.yad{bottom:396.479841px;}
.y2d{bottom:398.459841px;}
.y74{bottom:399.359840px;}
.y138{bottom:403.139839px;}
.y3b{bottom:409.979836px;}
.y75{bottom:412.500600px;}
.y169{bottom:413.219835px;}
.y10a{bottom:413.579835px;}
.yac{bottom:413.759834px;}
.y73{bottom:415.739834px;}
.ydf{bottom:416.279833px;}
.y168{bottom:426.719829px;}
.y109{bottom:429.959828px;}
.y136{bottom:429.960600px;}
.yab{bottom:431.039828px;}
.y135{bottom:432.479827px;}
.y2c{bottom:433.199827px;}
.y3a{bottom:434.639826px;}
.y167{bottom:440.219824px;}
.yde{bottom:445.619822px;}
.y108{bottom:446.339821px;}
.yaa{bottom:448.319821px;}
.y2b{bottom:448.499821px;}
.y166{bottom:457.499817px;}
.y39{bottom:459.119816px;}
.y134{bottom:459.299816px;}
.ydd{bottom:462.899815px;}
.y2a{bottom:463.799814px;}
.ya9{bottom:465.599814px;}
.y107{bottom:467.399813px;}
.y71{bottom:468.120600px;}
.y165{bottom:470.999812px;}
.y70{bottom:471.359811px;}
.y38{bottom:474.599810px;}
.y29{bottom:478.019809px;}
.ydc{bottom:479.999808px;}
.ya8{bottom:482.879807px;}
.y164{bottom:484.499806px;}
.y133{bottom:484.679806px;}
.y37{bottom:490.079804px;}
.y106{bottom:493.499803px;}
.ydb{bottom:497.279801px;}
.ya7{bottom:499.979800px;}
.y132{bottom:501.059800px;}
.y163{bottom:501.779799px;}
.y36{bottom:505.739798px;}
.y105{bottom:509.879796px;}
.y6f{bottom:511.319795px;}
.y28{bottom:511.499795px;}
.yda{bottom:514.559794px;}
.y162{bottom:515.279794px;}
.y6e{bottom:515.639794px;}
.ya6{bottom:517.259793px;}
.y131{bottom:517.439793px;}
.y35{bottom:521.219792px;}
.y6c{bottom:524.460600px;}
.y104{bottom:526.259789px;}
.y161{bottom:532.559787px;}
.y130{bottom:533.819786px;}
.ya5{bottom:534.539786px;}
.yd9{bottom:536.339785px;}
.y34{bottom:536.699785px;}
.y103{bottom:542.639783px;}
.y27{bottom:544.979782px;}
.y160{bottom:546.059782px;}
.y12f{bottom:550.199780px;}
.y33{bottom:552.179779px;}
.y26{bottom:560.459776px;}
.ya4{bottom:560.639776px;}
.y6b{bottom:562.259775px;}
.yd8{bottom:562.619775px;}
.y15f{bottom:563.339775px;}
.y102{bottom:563.699775px;}
.y32{bottom:567.839773px;}
.y12e{bottom:571.259771px;}
.y6a{bottom:579.359768px;}
.yd7{bottom:579.899768px;}
.y15e{bottom:580.619768px;}
.y30{bottom:581.879767px;}
.y31{bottom:583.319767px;}
.y25{bottom:584.579766px;}
.y19a{bottom:585.119766px;}
.ya3{bottom:586.019766px;}
.y101{bottom:589.799764px;}
.y15d{bottom:594.119762px;}
.y69{bottom:596.639761px;}
.yd6{bottom:596.999761px;}
.y12d{bottom:597.359761px;}
.y199{bottom:602.219759px;}
.ya2{bottom:602.399759px;}
.y15c{bottom:611.219756px;}
.y12c{bottom:613.739755px;}
.y68{bottom:613.919754px;}
.yd5{bottom:614.279754px;}
.y100{bottom:615.179754px;}
.y24{bottom:618.059753px;}
.ya1{bottom:618.779752px;}
.y198{bottom:619.499752px;}
.y15b{bottom:628.499749px;}
.y12b{bottom:630.119748px;}
.y67{bottom:631.199748px;}
.yd4{bottom:631.559747px;}
.y197{bottom:636.779745px;}
.yff{bottom:640.559744px;}
.y15a{bottom:641.999743px;}
.ya0{bottom:644.159742px;}
.y66{bottom:648.479741px;}
.yd3{bottom:653.339739px;}
.y196{bottom:654.059738px;}
.y1f{bottom:655.319738px;}
.y12a{bottom:655.499738px;}
.y159{bottom:659.279736px;}
.y9f{bottom:660.539736px;}
.y65{bottom:665.759734px;}
.yfe{bottom:665.939734px;}
.y1e{bottom:671.159732px;}
.y195{bottom:671.339731px;}
.y158{bottom:676.559729px;}
.y9e{bottom:676.919729px;}
.yd2{bottom:679.619728px;}
.y129{bottom:680.879728px;}
.y64{bottom:682.859727px;}
.y1d{bottom:688.079725px;}
.y194{bottom:688.619725px;}
.yfd{bottom:691.319723px;}
.y9d{bottom:693.299723px;}
.y157{bottom:693.839722px;}
.yd1{bottom:696.899721px;}
.y63{bottom:700.139720px;}
.y1c{bottom:703.739719px;}
.y193{bottom:705.719718px;}
.y128{bottom:706.259717px;}
.y156{bottom:707.339717px;}
.yd0{bottom:713.999714px;}
.y9c{bottom:714.359714px;}
.yfc{bottom:716.699713px;}
.y62{bottom:717.419713px;}
.y1b{bottom:719.579712px;}
.y192{bottom:722.999711px;}
.y155{bottom:724.619710px;}
.ycf{bottom:731.279707px;}
.y127{bottom:731.639707px;}
.y61{bottom:734.699706px;}
.y191{bottom:740.279704px;}
.y9b{bottom:740.459704px;}
.y154{bottom:741.719703px;}
.yfb{bottom:742.079703px;}
.y1a{bottom:745.499702px;}
.yce{bottom:748.559701px;}
.y60{bottom:751.979699px;}
.y9a{bottom:756.839697px;}
.y126{bottom:757.019697px;}
.y190{bottom:757.559697px;}
.y153{bottom:758.999696px;}
.y19{bottom:760.979696px;}
.ycd{bottom:765.839694px;}
.yfa{bottom:767.459693px;}
.y5f{bottom:769.259692px;}
.y152{bottom:772.499691px;}
.y99{bottom:773.219691px;}
.y18f{bottom:774.839690px;}
.y18{bottom:776.819689px;}
.y125{bottom:778.079689px;}
.ycc{bottom:783.119687px;}
.y5e{bottom:786.359685px;}
.y18e{bottom:791.939683px;}
.yf9{bottom:792.839683px;}
.y151{bottom:795.359682px;}
.y98{bottom:795.719682px;}
.ycb{bottom:800.219680px;}
.y17{bottom:802.739679px;}
.y5d{bottom:803.639679px;}
.y124{bottom:804.179678px;}
.y18d{bottom:809.219676px;}
.yca{bottom:817.499673px;}
.y150{bottom:817.859673px;}
.y16{bottom:818.219673px;}
.y123{bottom:820.559672px;}
.y5c{bottom:820.919672px;}
.y97{bottom:825.059670px;}
.y18c{bottom:826.499669px;}
.y15{bottom:834.059666px;}
.yc9{bottom:834.779666px;}
.y122{bottom:836.939665px;}
.y5b{bottom:838.199665px;}
.y96{bottom:842.339663px;}
.y18b{bottom:843.779662px;}
.y14f{bottom:847.019661px;}
.yf8{bottom:851.159660px;}
.yc8{bottom:852.059659px;}
.y121{bottom:853.319659px;}
.y5a{bottom:855.479658px;}
.y95{bottom:859.619656px;}
.y14{bottom:859.979656px;}
.y18a{bottom:861.059656px;}
.y14e{bottom:863.399655px;}
.yf7{bottom:867.539653px;}
.yc7{bottom:869.339652px;}
.y120{bottom:869.699652px;}
.y59{bottom:872.579651px;}
.y13{bottom:875.639650px;}
.y94{bottom:876.719649px;}
.y189{bottom:878.339649px;}
.y14d{bottom:879.779648px;}
.yf6{bottom:883.919646px;}
.yc6{bottom:886.619645px;}
.y58{bottom:889.859644px;}
.y11f{bottom:890.759644px;}
.y12{bottom:891.479643px;}
.y93{bottom:893.999642px;}
.y14c{bottom:896.159642px;}
.y188{bottom:898.679641px;}
.yc5{bottom:903.719639px;}
.yf5{bottom:904.799638px;}
.y57{bottom:907.139637px;}
.y92{bottom:911.279635px;}
.y187{bottom:915.959634px;}
.y11e{bottom:916.859633px;}
.y11{bottom:917.399633px;}
.yc4{bottom:920.999632px;}
.y14b{bottom:921.539631px;}
.y56{bottom:924.419630px;}
.y91{bottom:928.559629px;}
.y186{bottom:929.459628px;}
.yf{bottom:929.640600px;}
.yf4{bottom:930.899628px;}
.ye{bottom:932.879627px;}
.y11d{bottom:933.239627px;}
.y14a{bottom:937.919625px;}
.yc3{bottom:938.279625px;}
.y90{bottom:945.839622px;}
.y185{bottom:946.739621px;}
.y55{bottom:947.639621px;}
.yd{bottom:948.719621px;}
.y11c{bottom:949.619620px;}
.y149{bottom:954.299618px;}
.yc2{bottom:955.559618px;}
.yf3{bottom:956.459617px;}
.y184{bottom:960.239616px;}
.y8f{bottom:963.119615px;}
.y11b{bottom:965.999614px;}
.y148{bottom:970.679612px;}
.yc1{bottom:972.839611px;}
.y54{bottom:976.799609px;}
.y183{bottom:977.519609px;}
.y8e{bottom:980.219608px;}
.yf2{bottom:981.839607px;}
.y11a{bottom:982.379607px;}
.yc{bottom:988.139605px;}
.yc0{bottom:990.119604px;}
.y182{bottom:991.019604px;}
.y53{bottom:993.179603px;}
.y147{bottom:996.059602px;}
.y8d{bottom:997.499601px;}
.y119{bottom:998.759600px;}
.ybf{bottom:1007.219597px;}
.y181{bottom:1008.299597px;}
.y52{bottom:1009.559596px;}
.y146{bottom:1012.439595px;}
.y8c{bottom:1014.779594px;}
.y118{bottom:1019.819592px;}
.y180{bottom:1021.799591px;}
.ybe{bottom:1024.499590px;}
.y51{bottom:1025.939590px;}
.y145{bottom:1028.819588px;}
.yb{bottom:1032.059587px;}
.yf1{bottom:1032.599587px;}
.y17f{bottom:1038.899584px;}
.ybd{bottom:1041.779583px;}
.y50{bottom:1042.319583px;}
.y144{bottom:1045.199582px;}
.y117{bottom:1045.919582px;}
.y8b{bottom:1049.339580px;}
.y17e{bottom:1056.179578px;}
.yf0{bottom:1057.979577px;}
.y23{bottom:1062.119575px;}
.y116{bottom:1062.299575px;}
.ybc{bottom:1063.559575px;}
.y8a{bottom:1066.439573px;}
.y4f{bottom:1067.699573px;}
.y17d{bottom:1069.679572px;}
.y143{bottom:1070.579572px;}
.y21{bottom:1076.160600px;}
.y115{bottom:1078.679569px;}
.ybb{bottom:1080.839568px;}
.yef{bottom:1083.359567px;}
.y89{bottom:1083.719567px;}
.y4e{bottom:1084.079566px;}
.y17c{bottom:1086.959565px;}
.y142{bottom:1087.139565px;}
.y114{bottom:1095.059562px;}
.yba{bottom:1097.939561px;}
.y4d{bottom:1100.459560px;}
.y88{bottom:1100.999560px;}
.y141{bottom:1103.519559px;}
.yee{bottom:1108.739557px;}
.y113{bottom:1111.439555px;}
.yb9{bottom:1115.219554px;}
.y4c{bottom:1116.839553px;}
.y17b{bottom:1117.739553px;}
.y87{bottom:1118.279553px;}
.y140{bottom:1119.899552px;}
.y20{bottom:1123.499551px;}
.y17a{bottom:1131.239548px;}
.yb8{bottom:1132.499547px;}
.y4b{bottom:1133.219547px;}
.yed{bottom:1134.119546px;}
.y86{bottom:1135.559546px;}
.y13f{bottom:1136.279545px;}
.y179{bottom:1148.519541px;}
.y85{bottom:1158.599537px;}
.y4a{bottom:1158.779536px;}
.yec{bottom:1159.499536px;}
.y178{bottom:1162.019535px;}
.ya{bottom:1168.859532px;}
.y4{bottom:1171.739531px;}
.y47{bottom:1176.059530px;}
.y3{bottom:1189.019524px;}
.y49{bottom:1202.339519px;}
.y46{bottom:1205.939518px;}
.y2{bottom:1206.299517px;}
.y45{bottom:1223.219511px;}
.y1{bottom:1223.579511px;}
.y44{bottom:1240.499504px;}
.h10{height:5.040000px;}
.h2{height:5.220000px;}
.h9{height:15.300000px;}
.h13{height:16.560000px;}
.ha{height:16.740000px;}
.h12{height:32.693893px;}
.h3{height:33.518307px;}
.h14{height:35.120025px;}
.h5{height:36.597642px;}
.hc{height:36.624009px;}
.hd{height:37.494126px;}
.h8{height:37.520493px;}
.hb{height:39.313461px;}
.h7{height:40.501390px;}
.h1{height:41.522679px;}
.h4{height:42.894123px;}
.h11{height:43.506897px;}
.hf{height:44.893107px;}
.he{height:46.025138px;}
.h15{height:51.385409px;}
.h6{height:57.092321px;}
.h0{height:1263.000000px;}
.wb{width:3.600000px;}
.w2{width:5.400000px;}
.w5{width:6.840000px;}
.w9{width:7.380000px;}
.w15{width:7.920000px;}
.w6{width:8.100000px;}
.w16{width:12.420000px;}
.w11{width:23.040000px;}
.w10{width:28.260000px;}
.w12{width:35.100000px;}
.w17{width:40.320000px;}
.w13{width:42.840000px;}
.w3{width:58.500000px;}
.wa{width:63.720000px;}
.wc{width:69.120000px;}
.wd{width:69.660000px;}
.we{width:71.820000px;}
.w14{width:115.380000px;}
.w7{width:121.680000px;}
.wf{width:160.560000px;}
.w8{width:166.860000px;}
.w4{width:457.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x43{left:41.039984px;}
.x1{left:66.959973px;}
.x11{left:68.039973px;}
.x6{left:69.839972px;}
.x2{left:74.879970px;}
.x23{left:75.959970px;}
.x1b{left:78.659969px;}
.x19{left:80.639968px;}
.x26{left:82.619967px;}
.xe{left:84.959966px;}
.x27{left:86.399965px;}
.x41{left:87.659965px;}
.x28{left:89.459964px;}
.x3{left:93.239963px;}
.x24{left:94.319962px;}
.x17{left:96.119962px;}
.x16{left:97.379961px;}
.x4c{left:98.460000px;}
.x18{left:99.720002px;}
.x48{left:109.619956px;}
.x3a{left:112.319955px;}
.x3b{left:115.379954px;}
.x56{left:117.359953px;}
.x3c{left:119.159952px;}
.x57{left:120.419952px;}
.x2c{left:122.039951px;}
.x58{left:123.119951px;}
.x1c{left:127.259949px;}
.x59{left:129.239948px;}
.x3d{left:131.399947px;}
.x44{left:133.199884px;}
.x1a{left:137.339945px;}
.x5a{left:140.039944px;}
.x4a{left:142.197999px;}
.x29{left:152.819939px;}
.x2a{left:167.759933px;}
.x49{left:178.919928px;}
.x3e{left:192.599923px;}
.x2b{left:197.999921px;}
.x3f{left:200.879920px;}
.x42{left:203.579919px;}
.x46{left:207.539782px;}
.x51{left:208.979916px;}
.x5b{left:212.219915px;}
.x13{left:218.880000px;}
.x40{left:243.539903px;}
.x1d{left:244.619846px;}
.x2d{left:254.700000px;}
.x1f{left:262.439557px;}
.x4b{left:264.237972px;}
.x12{left:266.039894px;}
.x21{left:275.399890px;}
.x39{left:281.159452px;}
.x1e{left:282.779887px;}
.x20{left:284.039886px;}
.x52{left:289.079884px;}
.x14{left:297.899881px;}
.x50{left:309.239959px;}
.xf{left:327.240463px;}
.x47{left:331.199959px;}
.x55{left:347.039861px;}
.x4{left:360.359856px;}
.x25{left:361.439855px;}
.x9{left:374.579850px;}
.x45{left:376.560272px;}
.x2e{left:388.800000px;}
.xd{left:392.039843px;}
.xc{left:395.999842px;}
.x7{left:399.419840px;}
.xa{left:413.639835px;}
.xb{left:417.059833px;}
.x10{left:446.399821px;}
.x53{left:460.440000px;}
.x54{left:500.760000px;}
.x2f{left:555.660000px;}
.x4d{left:560.700000px;}
.x4e{left:568.260000px;}
.x4f{left:580.680000px;}
.x30{left:634.860000px;}
.x37{left:657.899737px;}
.x36{left:662.939735px;}
.x38{left:669.959732px;}
.x22{left:699.119720px;}
.x5{left:700.199720px;}
.x31{left:702.180000px;}
.x33{left:704.520000px;}
.x15{left:736.379820px;}
.x32{left:771.300000px;}
.x34{left:776.340000px;}
.x35{left:795.420000px;}
.x8{left:833.940000px;}
@media print{
.v2{vertical-align:-14.079994pt;}
.v1{vertical-align:-4.479998pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016533pt;}
.ls1{letter-spacing:0.166971pt;}
.ls5{letter-spacing:0.168016pt;}
.ls2{letter-spacing:0.168267pt;}
.ls12{letter-spacing:0.336535pt;}
.ls7{letter-spacing:11.689435pt;}
.ls11{letter-spacing:26.191883pt;}
.lsf{letter-spacing:38.385265pt;}
.lsb{letter-spacing:40.921157pt;}
.lsc{letter-spacing:40.946757pt;}
.lsd{letter-spacing:44.122756pt;}
.lse{letter-spacing:49.886487pt;}
.ls4{letter-spacing:50.118907pt;}
.ls10{letter-spacing:53.114219pt;}
.ls3{letter-spacing:125.044881pt;}
.lsa{letter-spacing:143.409649pt;}
.ls9{letter-spacing:1526.865039pt;}
.ls0{letter-spacing:1534.549754pt;}
.ws3{word-spacing:-28.816521pt;}
.ws7{word-spacing:-13.616529pt;}
.ws2{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws4{word-spacing:-12.005115pt;}
.ws0{word-spacing:-11.999995pt;}
.ws6{word-spacing:-10.719996pt;}
.ws5{word-spacing:0.000000pt;}
._1b{margin-left:-3.793520pt;}
._9{margin-left:-2.897384pt;}
._2{margin-left:-1.865738pt;}
._1{margin-left:-0.906951pt;}
._0{width:0.900827pt;}
._3{width:1.935717pt;}
._4{width:2.983163pt;}
._5{width:4.700508pt;}
._6{width:6.014554pt;}
._a{width:7.519485pt;}
._1c{width:8.620680pt;}
._d{width:9.933118pt;}
._c{width:11.064122pt;}
._b{width:14.265932pt;}
._1f{width:15.776095pt;}
._2d{width:17.120931pt;}
._1d{width:18.051763pt;}
._7{width:19.460184pt;}
._19{width:20.655187pt;}
._2c{width:21.899780pt;}
._2b{width:36.187438pt;}
._2a{width:37.390738pt;}
._8{width:63.567085pt;}
._24{width:83.393857pt;}
._10{width:121.470146pt;}
._e{width:133.453334pt;}
._14{width:197.198564pt;}
._16{width:247.286218pt;}
._f{width:255.208237pt;}
._18{width:297.447709pt;}
._13{width:357.573131pt;}
._15{width:381.211665pt;}
._11{width:413.131405pt;}
._17{width:436.601977pt;}
._2e{width:462.532122pt;}
._12{width:523.287362pt;}
._23{width:778.126927pt;}
._29{width:789.960132pt;}
._2f{width:860.857064pt;}
._20{width:861.894607pt;}
._26{width:871.655188pt;}
._22{width:884.847936pt;}
._21{width:893.338780pt;}
._28{width:895.234242pt;}
._25{width:959.130213pt;}
._27{width:977.810687pt;}
._1a{width:1677.358945pt;}
._1e{width:2122.429999pt;}
.fs1{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs3{font-size:74.879970pt;}
.y48{bottom:-7.359992pt;}
.y6{bottom:-4.959993pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y22{bottom:2.879083pt;}
.y10{bottom:2.879135pt;}
.y6d{bottom:2.879279pt;}
.y72{bottom:2.879299pt;}
.y137{bottom:2.879313pt;}
.y76{bottom:2.879319pt;}
.y10c{bottom:2.879329pt;}
.y79{bottom:2.879344pt;}
.y7c{bottom:2.879353pt;}
.y7f{bottom:2.879368pt;}
.y82{bottom:2.879382pt;}
.y9{bottom:29.226922pt;}
.y7{bottom:49.066914pt;}
.y8{bottom:50.186913pt;}
.y2f{bottom:157.066604pt;}
.y13e{bottom:160.746602pt;}
.y3f{bottom:161.066602pt;}
.y112{bottom:161.386602pt;}
.yeb{bottom:169.066599pt;}
.y177{bottom:172.746598pt;}
.y84{bottom:172.906598pt;}
.y13d{bottom:175.306597pt;}
.y111{bottom:175.946596pt;}
.y83{bottom:187.466592pt;}
.y176{bottom:188.106591pt;}
.yea{bottom:191.626590pt;}
.y3e{bottom:193.066589pt;}
.yb7{bottom:199.146587pt;}
.y175{bottom:200.106587pt;}
.ye9{bottom:206.186584pt;}
.y81{bottom:207.787200pt;}
.y110{bottom:208.426583pt;}
.y80{bottom:210.666582pt;}
.y13c{bottom:211.146582pt;}
.yb6{bottom:214.506581pt;}
.y174{bottom:215.306581pt;}
.ye8{bottom:220.746578pt;}
.y173{bottom:227.306576pt;}
.yb5{bottom:229.866575pt;}
.y43{bottom:230.826574pt;}
.ye7{bottom:235.306573pt;}
.y10f{bottom:240.906570pt;}
.y172{bottom:242.666570pt;}
.y7e{bottom:243.947200pt;}
.yb4{bottom:245.226569pt;}
.y13b{bottom:246.186568pt;}
.y7d{bottom:246.826568pt;}
.y42{bottom:246.986568pt;}
.ye6{bottom:254.026565pt;}
.y171{bottom:254.666565pt;}
.yb3{bottom:260.586562pt;}
.y41{bottom:263.306561pt;}
.y170{bottom:270.026559pt;}
.y10e{bottom:273.386557pt;}
.yb2{bottom:275.786556pt;}
.y2e{bottom:277.066556pt;}
.ye5{bottom:277.226556pt;}
.y40{bottom:279.626555pt;}
.y7b{bottom:280.107200pt;}
.y13a{bottom:281.866554pt;}
.y7a{bottom:282.986553pt;}
.y16f{bottom:285.386553pt;}
.yb1{bottom:291.146550pt;}
.ye4{bottom:291.786550pt;}
.y16e{bottom:297.386548pt;}
.y78{bottom:303.307200pt;}
.y10d{bottom:304.906545pt;}
.y77{bottom:306.186544pt;}
.ye3{bottom:306.346544pt;}
.yb0{bottom:306.506544pt;}
.y16d{bottom:312.746542pt;}
.y139{bottom:317.546540pt;}
.ye2{bottom:320.906538pt;}
.yaf{bottom:321.866538pt;}
.y16c{bottom:324.746537pt;}
.y3d{bottom:326.346536pt;}
.ye1{bottom:335.466532pt;}
.yae{bottom:337.226532pt;}
.y16b{bottom:340.106531pt;}
.y10b{bottom:341.547200pt;}
.ye0{bottom:350.026527pt;}
.y3c{bottom:350.666526pt;}
.y16a{bottom:352.106526pt;}
.yad{bottom:352.426526pt;}
.y2d{bottom:354.186525pt;}
.y74{bottom:354.986525pt;}
.y138{bottom:358.346523pt;}
.y3b{bottom:364.426521pt;}
.y75{bottom:366.667200pt;}
.y169{bottom:367.306520pt;}
.y10a{bottom:367.626520pt;}
.yac{bottom:367.786520pt;}
.y73{bottom:369.546519pt;}
.ydf{bottom:370.026519pt;}
.y168{bottom:379.306515pt;}
.y109{bottom:382.186514pt;}
.y136{bottom:382.187200pt;}
.yab{bottom:383.146513pt;}
.y135{bottom:384.426513pt;}
.y2c{bottom:385.066513pt;}
.y3a{bottom:386.346512pt;}
.y167{bottom:391.306510pt;}
.yde{bottom:396.106508pt;}
.y108{bottom:396.746508pt;}
.yaa{bottom:398.506507pt;}
.y2b{bottom:398.666507pt;}
.y166{bottom:406.666504pt;}
.y39{bottom:408.106503pt;}
.y134{bottom:408.266503pt;}
.ydd{bottom:411.466502pt;}
.y2a{bottom:412.266502pt;}
.ya9{bottom:413.866501pt;}
.y107{bottom:415.466500pt;}
.y71{bottom:416.107200pt;}
.y165{bottom:418.666499pt;}
.y70{bottom:418.986499pt;}
.y38{bottom:421.866498pt;}
.y29{bottom:424.906497pt;}
.ydc{bottom:426.666496pt;}
.ya8{bottom:429.226495pt;}
.y164{bottom:430.666494pt;}
.y133{bottom:430.826494pt;}
.y37{bottom:435.626492pt;}
.y106{bottom:438.666491pt;}
.ydb{bottom:442.026490pt;}
.ya7{bottom:444.426489pt;}
.y132{bottom:445.386489pt;}
.y163{bottom:446.026488pt;}
.y36{bottom:449.546487pt;}
.y105{bottom:453.226485pt;}
.y6f{bottom:454.506485pt;}
.y28{bottom:454.666485pt;}
.yda{bottom:457.386484pt;}
.y162{bottom:458.026483pt;}
.y6e{bottom:458.346483pt;}
.ya6{bottom:459.786483pt;}
.y131{bottom:459.946483pt;}
.y35{bottom:463.306481pt;}
.y6c{bottom:466.187200pt;}
.y104{bottom:467.786480pt;}
.y161{bottom:473.386477pt;}
.y130{bottom:474.506477pt;}
.ya5{bottom:475.146477pt;}
.yd9{bottom:476.746476pt;}
.y34{bottom:477.066476pt;}
.y103{bottom:482.346474pt;}
.y27{bottom:484.426473pt;}
.y160{bottom:485.386473pt;}
.y12f{bottom:489.066471pt;}
.y33{bottom:490.826470pt;}
.y26{bottom:498.186467pt;}
.ya4{bottom:498.346467pt;}
.y6b{bottom:499.786467pt;}
.yd8{bottom:500.106467pt;}
.y15f{bottom:500.746466pt;}
.y102{bottom:501.066466pt;}
.y32{bottom:504.746465pt;}
.y12e{bottom:507.786464pt;}
.y6a{bottom:514.986461pt;}
.yd7{bottom:515.466460pt;}
.y15e{bottom:516.106460pt;}
.y30{bottom:517.226460pt;}
.y31{bottom:518.506459pt;}
.y25{bottom:519.626459pt;}
.y19a{bottom:520.106459pt;}
.ya3{bottom:520.906458pt;}
.y101{bottom:524.266457pt;}
.y15d{bottom:528.106455pt;}
.y69{bottom:530.346455pt;}
.yd6{bottom:530.666454pt;}
.y12d{bottom:530.986454pt;}
.y199{bottom:535.306453pt;}
.ya2{bottom:535.466452pt;}
.y15c{bottom:543.306449pt;}
.y12c{bottom:545.546448pt;}
.y68{bottom:545.706448pt;}
.yd5{bottom:546.026448pt;}
.y100{bottom:546.826448pt;}
.y24{bottom:549.386447pt;}
.ya1{bottom:550.026447pt;}
.y198{bottom:550.666446pt;}
.y15b{bottom:558.666443pt;}
.y12b{bottom:560.106443pt;}
.y67{bottom:561.066442pt;}
.yd4{bottom:561.386442pt;}
.y197{bottom:566.026440pt;}
.yff{bottom:569.386439pt;}
.y15a{bottom:570.666438pt;}
.ya0{bottom:572.586438pt;}
.y66{bottom:576.426436pt;}
.yd3{bottom:580.746434pt;}
.y196{bottom:581.386434pt;}
.y1f{bottom:582.506434pt;}
.y12a{bottom:582.666434pt;}
.y159{bottom:586.026432pt;}
.y9f{bottom:587.146432pt;}
.y65{bottom:591.786430pt;}
.yfe{bottom:591.946430pt;}
.y1e{bottom:596.586428pt;}
.y195{bottom:596.746428pt;}
.y158{bottom:601.386426pt;}
.y9e{bottom:601.706426pt;}
.yd2{bottom:604.106425pt;}
.y129{bottom:605.226425pt;}
.y64{bottom:606.986424pt;}
.y1d{bottom:611.626422pt;}
.y194{bottom:612.106422pt;}
.yfd{bottom:614.506421pt;}
.y9d{bottom:616.266420pt;}
.y157{bottom:616.746420pt;}
.yd1{bottom:619.466419pt;}
.y63{bottom:622.346418pt;}
.y1c{bottom:625.546416pt;}
.y193{bottom:627.306416pt;}
.y128{bottom:627.786416pt;}
.y156{bottom:628.746415pt;}
.yd0{bottom:634.666413pt;}
.y9c{bottom:634.986413pt;}
.yfc{bottom:637.066412pt;}
.y62{bottom:637.706412pt;}
.y1b{bottom:639.626411pt;}
.y192{bottom:642.666410pt;}
.y155{bottom:644.106409pt;}
.ycf{bottom:650.026407pt;}
.y127{bottom:650.346407pt;}
.y61{bottom:653.066405pt;}
.y191{bottom:658.026403pt;}
.y9b{bottom:658.186403pt;}
.y154{bottom:659.306403pt;}
.yfb{bottom:659.626403pt;}
.y1a{bottom:662.666402pt;}
.yce{bottom:665.386401pt;}
.y60{bottom:668.426399pt;}
.y9a{bottom:672.746398pt;}
.y126{bottom:672.906398pt;}
.y190{bottom:673.386397pt;}
.y153{bottom:674.666397pt;}
.y19{bottom:676.426396pt;}
.ycd{bottom:680.746394pt;}
.yfa{bottom:682.186394pt;}
.y5f{bottom:683.786393pt;}
.y152{bottom:686.666392pt;}
.y99{bottom:687.306392pt;}
.y18f{bottom:688.746391pt;}
.y18{bottom:690.506390pt;}
.y125{bottom:691.626390pt;}
.ycc{bottom:696.106388pt;}
.y5e{bottom:698.986387pt;}
.y18e{bottom:703.946385pt;}
.yf9{bottom:704.746385pt;}
.y151{bottom:706.986384pt;}
.y98{bottom:707.306384pt;}
.ycb{bottom:711.306382pt;}
.y17{bottom:713.546381pt;}
.y5d{bottom:714.346381pt;}
.y124{bottom:714.826381pt;}
.y18d{bottom:719.306379pt;}
.yca{bottom:726.666376pt;}
.y150{bottom:726.986376pt;}
.y16{bottom:727.306376pt;}
.y123{bottom:729.386375pt;}
.y5c{bottom:729.706375pt;}
.y97{bottom:733.386373pt;}
.y18c{bottom:734.666373pt;}
.y15{bottom:741.386370pt;}
.yc9{bottom:742.026370pt;}
.y122{bottom:743.946369pt;}
.y5b{bottom:745.066369pt;}
.y96{bottom:748.746367pt;}
.y18b{bottom:750.026367pt;}
.y14f{bottom:752.906366pt;}
.yf8{bottom:756.586364pt;}
.yc8{bottom:757.386364pt;}
.y121{bottom:758.506363pt;}
.y5a{bottom:760.426362pt;}
.y95{bottom:764.106361pt;}
.y14{bottom:764.426361pt;}
.y18a{bottom:765.386361pt;}
.y14e{bottom:767.466360pt;}
.yf7{bottom:771.146358pt;}
.yc7{bottom:772.746358pt;}
.y120{bottom:773.066357pt;}
.y59{bottom:775.626356pt;}
.y13{bottom:778.346355pt;}
.y94{bottom:779.306355pt;}
.y189{bottom:780.746354pt;}
.y14d{bottom:782.026354pt;}
.yf6{bottom:785.706352pt;}
.yc6{bottom:788.106351pt;}
.y58{bottom:790.986350pt;}
.y11f{bottom:791.786350pt;}
.y12{bottom:792.426350pt;}
.y93{bottom:794.666349pt;}
.y14c{bottom:796.586348pt;}
.y188{bottom:798.826347pt;}
.yc5{bottom:803.306345pt;}
.yf5{bottom:804.266345pt;}
.y57{bottom:806.346344pt;}
.y92{bottom:810.026343pt;}
.y187{bottom:814.186341pt;}
.y11e{bottom:814.986341pt;}
.y11{bottom:815.466340pt;}
.yc4{bottom:818.666339pt;}
.y14b{bottom:819.146339pt;}
.y56{bottom:821.706338pt;}
.y91{bottom:825.386337pt;}
.y186{bottom:826.186336pt;}
.yf{bottom:826.347200pt;}
.yf4{bottom:827.466336pt;}
.ye{bottom:829.226335pt;}
.y11d{bottom:829.546335pt;}
.y14a{bottom:833.706333pt;}
.yc3{bottom:834.026333pt;}
.y90{bottom:840.746330pt;}
.y185{bottom:841.546330pt;}
.y55{bottom:842.346330pt;}
.yd{bottom:843.306329pt;}
.y11c{bottom:844.106329pt;}
.y149{bottom:848.266327pt;}
.yc2{bottom:849.386327pt;}
.yf3{bottom:850.186327pt;}
.y184{bottom:853.546325pt;}
.y8f{bottom:856.106324pt;}
.y11b{bottom:858.666323pt;}
.y148{bottom:862.826322pt;}
.yc1{bottom:864.746321pt;}
.y54{bottom:868.266319pt;}
.y183{bottom:868.906319pt;}
.y8e{bottom:871.306318pt;}
.yf2{bottom:872.746318pt;}
.y11a{bottom:873.226317pt;}
.yc{bottom:878.346315pt;}
.yc0{bottom:880.106315pt;}
.y182{bottom:880.906314pt;}
.y53{bottom:882.826314pt;}
.y147{bottom:885.386313pt;}
.y8d{bottom:886.666312pt;}
.y119{bottom:887.786312pt;}
.ybf{bottom:895.306309pt;}
.y181{bottom:896.266308pt;}
.y52{bottom:897.386308pt;}
.y146{bottom:899.946307pt;}
.y8c{bottom:902.026306pt;}
.y118{bottom:906.506304pt;}
.y180{bottom:908.266303pt;}
.ybe{bottom:910.666302pt;}
.y51{bottom:911.946302pt;}
.y145{bottom:914.506301pt;}
.yb{bottom:917.386300pt;}
.yf1{bottom:917.866300pt;}
.y17f{bottom:923.466297pt;}
.ybd{bottom:926.026296pt;}
.y50{bottom:926.506296pt;}
.y144{bottom:929.066295pt;}
.y117{bottom:929.706295pt;}
.y8b{bottom:932.746294pt;}
.y17e{bottom:938.826291pt;}
.yf0{bottom:940.426290pt;}
.y23{bottom:944.106289pt;}
.y116{bottom:944.266289pt;}
.ybc{bottom:945.386289pt;}
.y8a{bottom:947.946287pt;}
.y4f{bottom:949.066287pt;}
.y17d{bottom:950.826286pt;}
.y143{bottom:951.626286pt;}
.y21{bottom:956.587200pt;}
.y115{bottom:958.826283pt;}
.ybb{bottom:960.746282pt;}
.yef{bottom:962.986281pt;}
.y89{bottom:963.306281pt;}
.y4e{bottom:963.626281pt;}
.y17c{bottom:966.186280pt;}
.y142{bottom:966.346280pt;}
.y114{bottom:973.386277pt;}
.yba{bottom:975.946276pt;}
.y4d{bottom:978.186275pt;}
.y88{bottom:978.666275pt;}
.y141{bottom:980.906274pt;}
.yee{bottom:985.546272pt;}
.y113{bottom:987.946271pt;}
.yb9{bottom:991.306270pt;}
.y4c{bottom:992.746270pt;}
.y17b{bottom:993.546269pt;}
.y87{bottom:994.026269pt;}
.y140{bottom:995.466268pt;}
.y20{bottom:998.666267pt;}
.y17a{bottom:1005.546264pt;}
.yb8{bottom:1006.666264pt;}
.y4b{bottom:1007.306264pt;}
.yed{bottom:1008.106263pt;}
.y86{bottom:1009.386263pt;}
.y13f{bottom:1010.026263pt;}
.y179{bottom:1020.906258pt;}
.y85{bottom:1029.866255pt;}
.y4a{bottom:1030.026255pt;}
.yec{bottom:1030.666254pt;}
.y178{bottom:1032.906254pt;}
.ya{bottom:1038.986251pt;}
.y4{bottom:1041.546250pt;}
.y47{bottom:1045.386249pt;}
.y3{bottom:1056.906244pt;}
.y49{bottom:1068.746239pt;}
.y46{bottom:1071.946238pt;}
.y2{bottom:1072.266238pt;}
.y45{bottom:1087.306232pt;}
.y1{bottom:1087.626232pt;}
.y44{bottom:1102.666226pt;}
.h10{height:4.480000pt;}
.h2{height:4.640000pt;}
.h9{height:13.600000pt;}
.h13{height:14.720000pt;}
.ha{height:14.880000pt;}
.h12{height:29.061238pt;}
.h3{height:29.794051pt;}
.h14{height:31.217800pt;}
.h5{height:32.531237pt;}
.hc{height:32.554674pt;}
.hd{height:33.328112pt;}
.h8{height:33.351549pt;}
.hb{height:34.945299pt;}
.h7{height:36.001236pt;}
.h1{height:36.909048pt;}
.h4{height:38.128110pt;}
.h11{height:38.672797pt;}
.hf{height:39.904984pt;}
.he{height:40.911234pt;}
.h15{height:45.675919pt;}
.h6{height:50.748730pt;}
.h0{height:1122.666667pt;}
.wb{width:3.200000pt;}
.w2{width:4.800000pt;}
.w5{width:6.080000pt;}
.w9{width:6.560000pt;}
.w15{width:7.040000pt;}
.w6{width:7.200000pt;}
.w16{width:11.040000pt;}
.w11{width:20.480000pt;}
.w10{width:25.120000pt;}
.w12{width:31.200000pt;}
.w17{width:35.840000pt;}
.w13{width:38.080000pt;}
.w3{width:52.000000pt;}
.wa{width:56.640000pt;}
.wc{width:61.440000pt;}
.wd{width:61.920000pt;}
.we{width:63.840000pt;}
.w14{width:102.560000pt;}
.w7{width:108.160000pt;}
.wf{width:142.720000pt;}
.w8{width:148.320000pt;}
.w4{width:406.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x43{left:36.479985pt;}
.x1{left:59.519976pt;}
.x11{left:60.479976pt;}
.x6{left:62.079975pt;}
.x2{left:66.559973pt;}
.x23{left:67.519973pt;}
.x1b{left:69.919972pt;}
.x19{left:71.679971pt;}
.x26{left:73.439971pt;}
.xe{left:75.519970pt;}
.x27{left:76.799969pt;}
.x41{left:77.919969pt;}
.x28{left:79.519968pt;}
.x3{left:82.879967pt;}
.x24{left:83.839966pt;}
.x17{left:85.439966pt;}
.x16{left:86.559965pt;}
.x4c{left:87.520000pt;}
.x18{left:88.640002pt;}
.x48{left:97.439961pt;}
.x3a{left:99.839960pt;}
.x3b{left:102.559959pt;}
.x56{left:104.319958pt;}
.x3c{left:105.919958pt;}
.x57{left:107.039957pt;}
.x2c{left:108.479957pt;}
.x58{left:109.439956pt;}
.x1c{left:113.119955pt;}
.x59{left:114.879954pt;}
.x3d{left:116.799953pt;}
.x44{left:118.399897pt;}
.x1a{left:122.079951pt;}
.x5a{left:124.479950pt;}
.x4a{left:126.398222pt;}
.x29{left:135.839946pt;}
.x2a{left:149.119940pt;}
.x49{left:159.039936pt;}
.x3e{left:171.199932pt;}
.x2b{left:175.999930pt;}
.x3f{left:178.559929pt;}
.x42{left:180.959928pt;}
.x46{left:184.479806pt;}
.x51{left:185.759926pt;}
.x5b{left:188.639925pt;}
.x13{left:194.560000pt;}
.x40{left:216.479913pt;}
.x1d{left:217.439863pt;}
.x2d{left:226.400000pt;}
.x1f{left:233.279606pt;}
.x4b{left:234.878197pt;}
.x12{left:236.479905pt;}
.x21{left:244.799902pt;}
.x39{left:249.919513pt;}
.x1e{left:251.359899pt;}
.x20{left:252.479899pt;}
.x52{left:256.959897pt;}
.x14{left:264.799894pt;}
.x50{left:274.879964pt;}
.xf{left:290.880411pt;}
.x47{left:294.399963pt;}
.x55{left:308.479877pt;}
.x4{left:320.319872pt;}
.x25{left:321.279871pt;}
.x9{left:332.959867pt;}
.x45{left:334.720242pt;}
.x2e{left:345.600000pt;}
.xd{left:348.479861pt;}
.xc{left:351.999859pt;}
.x7{left:355.039858pt;}
.xa{left:367.679853pt;}
.xb{left:370.719852pt;}
.x10{left:396.799841pt;}
.x53{left:409.280000pt;}
.x54{left:445.120000pt;}
.x2f{left:493.920000pt;}
.x4d{left:498.400000pt;}
.x4e{left:505.120000pt;}
.x4f{left:516.160000pt;}
.x30{left:564.320000pt;}
.x37{left:584.799766pt;}
.x36{left:589.279764pt;}
.x38{left:595.519762pt;}
.x22{left:621.439751pt;}
.x5{left:622.399751pt;}
.x31{left:624.160000pt;}
.x33{left:626.240000pt;}
.x15{left:654.559840pt;}
.x32{left:685.600000pt;}
.x34{left:690.080000pt;}
.x35{left:707.040000pt;}
.x8{left:741.280000pt;}
}




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