
    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_8dc775daddbe4b5454998e0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.141113;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_725fdd58c3420efb1529310e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117676;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_0317c33bde0373b9df1acc4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_541bca35a3e723fc14a19c3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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_08e9c8897a354e9dc3a25f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976074;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_7fd9321f537a4fe21550d79b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5c10aebbf7d1fa72f6d58d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138184;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_6ccd64cf79edbc88ea6ccbc0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.905273;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_3514f0cb6f71a7534e7479a7.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-73.440000px;}
.v1{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.936000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.lse{letter-spacing:0.472320px;}
.ls1{letter-spacing:0.475200px;}
.lsf{letter-spacing:0.590400px;}
.ls13{letter-spacing:0.885600px;}
.ls6{letter-spacing:17.952600px;}
.ls8{letter-spacing:17.988000px;}
.ls7{letter-spacing:21.960600px;}
.ls5{letter-spacing:33.984000px;}
.ls10{letter-spacing:115.158240px;}
.ls11{letter-spacing:143.638920px;}
.lsd{letter-spacing:210.037020px;}
.lsc{letter-spacing:230.534400px;}
.lsb{letter-spacing:251.547480px;}
.ls12{letter-spacing:427.255140px;}
.ls3{letter-spacing:521.100606px;}
.ls4{letter-spacing:1227.899460px;}
.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:-27.000000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.064000px;}
.ws7{word-spacing:-15.645600px;}
.ws6{word-spacing:-15.350400px;}
.ws5{word-spacing:-15.232320px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-2.056320px;}
._1{margin-left:-1.003200px;}
._2{width:1.033200px;}
._0{width:2.109600px;}
._3{width:3.592800px;}
._e{width:4.759200px;}
._19{width:5.904000px;}
._11{width:7.128000px;}
._15{width:8.273820px;}
._13{width:9.481860px;}
._a{width:10.944000px;}
._c{width:12.024000px;}
._b{width:13.608000px;}
._10{width:15.554880px;}
._5{width:16.954560px;}
._4{width:18.374400px;}
._6{width:19.627200px;}
._9{width:21.009600px;}
._17{width:22.248000px;}
._1b{width:23.266920px;}
._1c{width:24.765060px;}
._16{width:25.848000px;}
._23{width:26.856000px;}
._f{width:27.864000px;}
._1f{width:29.736000px;}
._18{width:30.816000px;}
._d{width:32.472000px;}
._12{width:34.056000px;}
._1e{width:35.776800px;}
._1a{width:37.080000px;}
._14{width:51.264000px;}
._1d{width:52.531800px;}
._22{width:123.048000px;}
._20{width:124.272000px;}
._21{width:222.768000px;}
._8{width:699.923460px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,95,145);}
.fs2{font-size:53.280000px;}
.fs8{font-size:59.040000px;}
.fs9{font-size:60.000000px;}
.fs0{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs5{font-size:95.040000px;}
.fs6{font-size:100.800000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y21{bottom:4.320150px;}
.y3{bottom:5.400000px;}
.y2{bottom:7.560000px;}
.y4{bottom:12.734985px;}
.y188{bottom:13.247400px;}
.y170{bottom:13.362300px;}
.y124{bottom:13.365000px;}
.y25{bottom:15.840000px;}
.y9{bottom:20.805105px;}
.yff{bottom:23.040150px;}
.y154{bottom:23.727150px;}
.y12b{bottom:25.560000px;}
.y129{bottom:25.560150px;}
.y12d{bottom:25.920000px;}
.y16f{bottom:31.362300px;}
.ycc{bottom:31.680000px;}
.y17d{bottom:31.912350px;}
.y11c{bottom:32.030100px;}
.ycf{bottom:32.040000px;}
.ye8{bottom:40.680000px;}
.y153{bottom:41.727150px;}
.yfe{bottom:43.560000px;}
.y26{bottom:45.045075px;}
.y164{bottom:50.027250px;}
.y148{bottom:60.392100px;}
.y17e{bottom:62.483400px;}
.y11d{bottom:75.006450px;}
.y165{bottom:78.798450px;}
.ye7{bottom:82.080000px;}
.y149{bottom:89.163000px;}
.y17f{bottom:93.054300px;}
.yc{bottom:101.310105px;}
.y166{bottom:107.569350px;}
.y159{bottom:116.285100px;}
.y18d{bottom:116.305350px;}
.y175{bottom:116.420400px;}
.y14a{bottom:117.934050px;}
.y11e{bottom:117.982800px;}
.y180{bottom:123.625350px;}
.y167{bottom:136.340400px;}
.yb{bottom:138.750165px;}
.y127{bottom:143.464200px;}
.y158{bottom:145.763550px;}
.y18c{bottom:145.783950px;}
.y174{bottom:145.899000px;}
.y14b{bottom:146.705100px;}
.y162{bottom:152.325015px;}
.y181{bottom:154.196400px;}
.y192{bottom:154.845015px;}
.y48{bottom:155.925015px;}
.y138{bottom:156.645015px;}
.y1d{bottom:157.005015px;}
.y7d{bottom:157.365015px;}
.y11f{bottom:160.959300px;}
.y94{bottom:160.965015px;}
.yb4{bottom:163.845015px;}
.y168{bottom:165.111300px;}
.y11a{bottom:165.645015px;}
.ya{bottom:168.480045px;}
.yc0{bottom:169.965015px;}
.y126{bottom:172.942650px;}
.y17b{bottom:173.205015px;}
.y146{bottom:173.565015px;}
.y47{bottom:173.925015px;}
.y1c{bottom:175.005015px;}
.y157{bottom:175.242150px;}
.y18b{bottom:175.262400px;}
.y173{bottom:175.377600px;}
.y14c{bottom:175.476000px;}
.yd0{bottom:176.580000px;}
.y182{bottom:184.767450px;}
.y46{bottom:191.925015px;}
.y1b{bottom:193.005015px;}
.ya4{bottom:193.365015px;}
.y169{bottom:193.882500px;}
.y161{bottom:194.085015px;}
.y191{bottom:196.605015px;}
.yfc{bottom:196.965015px;}
.y137{bottom:198.405015px;}
.y7c{bottom:199.125015px;}
.y93{bottom:202.365015px;}
.y125{bottom:202.421250px;}
.y120{bottom:203.935800px;}
.y14d{bottom:204.247050px;}
.y156{bottom:204.720750px;}
.y18a{bottom:204.741000px;}
.y172{bottom:204.856050px;}
.yb3{bottom:205.605015px;}
.y119{bottom:207.045015px;}
.ye5{bottom:207.765015px;}
.y1a{bottom:211.005015px;}
.ybf{bottom:211.365015px;}
.y17a{bottom:214.965015px;}
.y145{bottom:215.325015px;}
.y183{bottom:215.338350px;}
.y16a{bottom:222.653400px;}
.y19{bottom:229.005015px;}
.y14e{bottom:233.017950px;}
.yce{bottom:233.820000px;}
.y155{bottom:234.199200px;}
.y189{bottom:234.219600px;}
.y171{bottom:234.334650px;}
.y45{bottom:235.125015px;}
.y160{bottom:235.485015px;}
.y190{bottom:238.005015px;}
.yfb{bottom:238.365015px;}
.y136{bottom:239.805015px;}
.y7b{bottom:240.525015px;}
.y179{bottom:243.405015px;}
.y92{bottom:244.125015px;}
.y184{bottom:245.909400px;}
.y121{bottom:246.912150px;}
.y18{bottom:247.005015px;}
.y118{bottom:248.805015px;}
.y16b{bottom:251.424450px;}
.ybe{bottom:253.125015px;}
.y144{bottom:256.725015px;}
.ye4{bottom:258.165015px;}
.y44{bottom:259.245015px;}
.y14f{bottom:261.789150px;}
.y17{bottom:265.005015px;}
.y178{bottom:270.045015px;}
.y185{bottom:276.480300px;}
.ya3{bottom:276.525015px;}
.y15f{bottom:277.245015px;}
.yfa{bottom:279.765015px;}
.y16c{bottom:280.195350px;}
.y7a{bottom:282.285015px;}
.y16{bottom:283.005015px;}
.y43{bottom:283.725015px;}
.y91{bottom:285.525015px;}
.y177{bottom:286.965015px;}
.yb2{bottom:288.765015px;}
.y122{bottom:289.888650px;}
.y117{bottom:290.205015px;}
.y150{bottom:290.560050px;}
.ycd{bottom:291.420000px;}
.ybd{bottom:294.525015px;}
.y20{bottom:296.205000px;}
.y143{bottom:298.485015px;}
.ye3{bottom:299.565015px;}
.y15{bottom:301.005015px;}
.y186{bottom:307.051500px;}
.y42{bottom:308.565015px;}
.y16d{bottom:308.966400px;}
.y176{bottom:310.005015px;}
.y135{bottom:311.445015px;}
.y6{bottom:317.805150px;}
.ya2{bottom:318.285015px;}
.y14{bottom:319.005015px;}
.y151{bottom:319.331100px;}
.y18f{bottom:321.165015px;}
.yf9{bottom:321.525015px;}
.y79{bottom:323.685015px;}
.y1f{bottom:325.230165px;}
.y17c{bottom:325.260000px;}
.y90{bottom:327.285015px;}
.yb1{bottom:330.165015px;}
.y116{bottom:331.965015px;}
.y123{bottom:332.865000px;}
.ybc{bottom:336.285015px;}
.y13{bottom:337.005015px;}
.y187{bottom:337.622400px;}
.y16e{bottom:337.737300px;}
.y134{bottom:338.580000px;}
.y142{bottom:339.885015px;}
.y41{bottom:340.965015px;}
.ye2{bottom:341.325015px;}
.y152{bottom:348.102000px;}
.y15e{bottom:348.525015px;}
.ycb{bottom:348.660000px;}
.y12{bottom:355.005015px;}
.ya1{bottom:359.685015px;}
.yf8{bottom:362.925015px;}
.y78{bottom:365.445015px;}
.y8f{bottom:368.685015px;}
.yb0{bottom:371.925015px;}
.y1e{bottom:372.030165px;}
.y11{bottom:373.005015px;}
.y40{bottom:373.365015px;}
.y15d{bottom:377.325015px;}
.ybb{bottom:377.685015px;}
.y141{bottom:381.645015px;}
.ye1{bottom:382.725015px;}
.y10{bottom:391.005015px;}
.y15c{bottom:394.605015px;}
.y133{bottom:395.820000px;}
.y10f{bottom:396.045165px;}
.y65{bottom:399.645015px;}
.ya0{bottom:401.445015px;}
.y18e{bottom:404.325015px;}
.yf7{bottom:404.685015px;}
.y3f{bottom:405.765015px;}
.y77{bottom:406.845015px;}
.yf{bottom:409.005015px;}
.y8e{bottom:410.445015px;}
.yaf{bottom:413.325015px;}
.y115{bottom:415.125165px;}
.y15b{bottom:417.285015px;}
.yba{bottom:419.445015px;}
.y140{bottom:423.045165px;}
.ye0{bottom:424.485015px;}
.yca{bottom:425.205015px;}
.ye{bottom:427.005015px;}
.y163{bottom:432.540000px;}
.y64{bottom:436.005015px;}
.y10e{bottom:437.445015px;}
.y3e{bottom:439.245015px;}
.yd{bottom:440.325015px;}
.y9f{bottom:442.845015px;}
.yf6{bottom:446.085015px;}
.y76{bottom:448.605015px;}
.y8d{bottom:451.845015px;}
.y132{bottom:453.060000px;}
.yae{bottom:455.085015px;}
.y114{bottom:456.525015px;}
.y63{bottom:456.885015px;}
.yb9{bottom:460.845015px;}
.y13f{bottom:464.805015px;}
.ydf{bottom:465.885015px;}
.y3d{bottom:470.205015px;}
.yc9{bottom:475.605015px;}
.y62{bottom:477.765015px;}
.y10d{bottom:479.205015px;}
.y13e{bottom:484.245015px;}
.y9e{bottom:484.605015px;}
.yf5{bottom:487.845015px;}
.y75{bottom:490.005015px;}
.y8c{bottom:493.605015px;}
.yad{bottom:496.485015px;}
.y24{bottom:497.865000px;}
.y61{bottom:498.285015px;}
.y3c{bottom:501.525015px;}
.yb8{bottom:502.605015px;}
.yde{bottom:507.645015px;}
.y131{bottom:510.300000px;}
.y60{bottom:519.165015px;}
.y10c{bottom:520.605015px;}
.y9d{bottom:526.005015px;}
.yc8{bottom:526.365015px;}
.yf4{bottom:529.245015px;}
.y3b{bottom:531.045165px;}
.y74{bottom:531.765015px;}
.y13d{bottom:534.285015px;}
.y8b{bottom:535.005015px;}
.yac{bottom:538.245015px;}
.y113{bottom:539.685015px;}
.y5f{bottom:540.045165px;}
.yb7{bottom:544.005015px;}
.ydd{bottom:549.045015px;}
.y13c{bottom:551.205015px;}
.y23{bottom:553.890015px;}
.y3a{bottom:559.125015px;}
.y5e{bottom:560.925015px;}
.y10b{bottom:562.365015px;}
.y9c{bottom:567.765015px;}
.y130{bottom:567.900000px;}
.yf3{bottom:571.005015px;}
.y73{bottom:573.165015px;}
.y13b{bottom:574.245015px;}
.y8a{bottom:576.765015px;}
.y39{bottom:577.125015px;}
.yab{bottom:579.645015px;}
.y5d{bottom:581.445015px;}
.yb6{bottom:585.765015px;}
.y147{bottom:589.500000px;}
.ydc{bottom:590.805015px;}
.y38{bottom:595.125015px;}
.y22{bottom:602.130015px;}
.y5c{bottom:602.325015px;}
.y10a{bottom:603.765015px;}
.y9b{bottom:609.165015px;}
.yf2{bottom:612.405015px;}
.y37{bottom:613.125015px;}
.y72{bottom:614.925015px;}
.y89{bottom:618.165015px;}
.yaa{bottom:621.405015px;}
.y112{bottom:622.845015px;}
.y5b{bottom:623.205015px;}
.yb5{bottom:627.165015px;}
.y36{bottom:631.125015px;}
.ydb{bottom:632.205015px;}
.y12f{bottom:633.285015px;}
.y5a{bottom:644.085015px;}
.y109{bottom:645.525015px;}
.y111{bottom:648.405015px;}
.y35{bottom:649.125015px;}
.y9a{bottom:650.925015px;}
.yf1{bottom:654.165015px;}
.y71{bottom:656.325015px;}
.yc7{bottom:659.925015px;}
.ya9{bottom:662.805015px;}
.y59{bottom:664.605015px;}
.y34{bottom:667.125015px;}
.y12e{bottom:667.845015px;}
.y88{bottom:668.925015px;}
.yda{bottom:673.965015px;}
.y33{bottom:685.125015px;}
.y58{bottom:685.485015px;}
.y108{bottom:686.925015px;}
.y99{bottom:692.325015px;}
.y12c{bottom:694.980000px;}
.yf0{bottom:695.565015px;}
.y70{bottom:698.085015px;}
.y32{bottom:698.445015px;}
.yc6{bottom:701.325015px;}
.ya8{bottom:704.205015px;}
.y57{bottom:706.365015px;}
.y87{bottom:710.325015px;}
.yd9{bottom:715.365015px;}
.y110{bottom:726.525015px;}
.y56{bottom:727.245015px;}
.y107{bottom:728.685015px;}
.y98{bottom:734.085015px;}
.yef{bottom:737.325015px;}
.y12a{bottom:737.460000px;}
.y6f{bottom:739.485015px;}
.yc5{bottom:743.085015px;}
.ya7{bottom:745.965015px;}
.y55{bottom:747.765015px;}
.y86{bottom:752.085015px;}
.y11b{bottom:754.740000px;}
.yd8{bottom:757.125165px;}
.y54{bottom:768.645015px;}
.y106{bottom:770.445165px;}
.y97{bottom:775.485015px;}
.yee{bottom:779.085015px;}
.y128{bottom:779.940000px;}
.y6e{bottom:781.245015px;}
.yc4{bottom:784.485015px;}
.ya6{bottom:787.365015px;}
.y53{bottom:789.525015px;}
.y85{bottom:793.485015px;}
.y15a{bottom:795.645015px;}
.yd7{bottom:798.525015px;}
.yed{bottom:808.605165px;}
.y52{bottom:810.405015px;}
.y96{bottom:817.245015px;}
.y105{bottom:820.845015px;}
.y6d{bottom:822.645015px;}
.yc3{bottom:826.245015px;}
.y51{bottom:830.925015px;}
.y84{bottom:835.245015px;}
.yec{bottom:837.405015px;}
.yd6{bottom:839.925015px;}
.y104{bottom:849.285165px;}
.y50{bottom:851.805015px;}
.yeb{bottom:854.325015px;}
.y6c{bottom:864.405015px;}
.y95{bottom:867.645015px;}
.y4f{bottom:872.685015px;}
.y103{bottom:875.925015px;}
.y83{bottom:876.645015px;}
.yd5{bottom:881.685015px;}
.y7{bottom:888.840000px;}
.yea{bottom:890.460000px;}
.y102{bottom:892.845015px;}
.y4e{bottom:893.565015px;}
.y6b{bottom:905.805015px;}
.y31{bottom:906.885015px;}
.yc2{bottom:909.405015px;}
.y4d{bottom:914.085015px;}
.y82{bottom:918.405015px;}
.yd4{bottom:923.445165px;}
.y30{bottom:924.885015px;}
.y101{bottom:928.980000px;}
.y4c{bottom:934.965015px;}
.y2f{bottom:942.885015px;}
.y13a{bottom:944.685015px;}
.y6a{bottom:947.565015px;}
.ye9{bottom:948.060000px;}
.yc1{bottom:950.805015px;}
.y4b{bottom:955.845015px;}
.y81{bottom:959.805015px;}
.y2e{bottom:960.885015px;}
.yd3{bottom:973.845015px;}
.y4a{bottom:976.365015px;}
.y2d{bottom:978.885015px;}
.y100{bottom:986.220000px;}
.y69{bottom:988.965015px;}
.y139{bottom:992.565015px;}
.y2c{bottom:996.885015px;}
.y80{bottom:1001.565015px;}
.ye6{bottom:1005.300000px;}
.y2b{bottom:1014.885015px;}
.yd2{bottom:1019.925015px;}
.y68{bottom:1030.365015px;}
.y2a{bottom:1032.885015px;}
.y7f{bottom:1042.965015px;}
.yfd{bottom:1043.820000px;}
.y29{bottom:1050.885015px;}
.yd1{bottom:1055.700000px;}
.y28{bottom:1068.885015px;}
.y7e{bottom:1084.365015px;}
.ya5{bottom:1084.725015px;}
.y27{bottom:1086.885015px;}
.y5{bottom:1160.685015px;}
.y67{bottom:1164.645015px;}
.y8{bottom:1169.790015px;}
.y66{bottom:1181.565015px;}
.y49{bottom:1181.925015px;}
.y1{bottom:1184.940000px;}
.h2{height:19.800015px;}
.h20{height:41.399970px;}
.h21{height:41.400015px;}
.h22{height:41.760000px;}
.h1f{height:46.992188px;}
.h6{height:47.660625px;}
.h16{height:49.324219px;}
.h1b{height:52.813125px;}
.h15{height:54.946406px;}
.h17{height:56.519985px;}
.h1a{height:56.520000px;}
.h18{height:56.520015px;}
.h19{height:56.880000px;}
.h23{height:56.880015px;}
.h3{height:59.832422px;}
.hc{height:64.406250px;}
.h9{height:65.882813px;}
.h4{height:66.480469px;}
.h14{height:67.007813px;}
.h1d{height:68.399970px;}
.h13{height:74.711250px;}
.hb{height:76.424063px;}
.hd{height:86.965313px;}
.hf{height:92.235938px;}
.h11{height:96.609375px;}
.h12{height:98.824219px;}
.h1c{height:106.919955px;}
.h8{height:109.365469px;}
.h10{height:150.840000px;}
.he{height:178.200000px;}
.ha{height:189.000000px;}
.h1e{height:358.200000px;}
.h24{height:363.240000px;}
.h7{height:918.000000px;}
.h5{height:1237.365000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:32.040000px;}
.we{width:106.920000px;}
.wb{width:107.279985px;}
.wd{width:125.639970px;}
.w9{width:126.000000px;}
.w7{width:126.000015px;}
.wc{width:127.080015px;}
.wa{width:136.080000px;}
.w8{width:139.680000px;}
.w6{width:157.320000px;}
.w5{width:157.680000px;}
.w10{width:210.240000px;}
.w11{width:210.600000px;}
.w3{width:597.600000px;}
.wf{width:622.800000px;}
.w4{width:867.465000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.xa{left:-12.015016px;}
.x0{left:0.000000px;}
.x1d{left:7.560135px;}
.x4{left:8.999850px;}
.x2{left:11.184195px;}
.x5{left:12.735000px;}
.x7{left:14.895000px;}
.x2e{left:20.120100px;}
.xe{left:26.415000px;}
.x2d{left:29.604900px;}
.x2f{left:64.757990px;}
.x37{left:68.825145px;}
.x28{left:70.157805px;}
.x30{left:78.216240px;}
.x16{left:101.460210px;}
.x13{left:110.975820px;}
.x39{left:120.475695px;}
.x9{left:122.760135px;}
.x1c{left:127.935000px;}
.x1{left:136.215000px;}
.x17{left:149.760150px;}
.xb{left:152.055000px;}
.xd{left:153.495000px;}
.x3{left:168.255000px;}
.x18{left:176.760150px;}
.x14{left:180.282000px;}
.x31{left:193.686570px;}
.x19{left:208.260150px;}
.xf{left:218.295000px;}
.x21{left:254.655000px;}
.x26{left:255.735000px;}
.x1e{left:286.335000px;}
.x32{left:295.925839px;}
.x33{left:309.270570px;}
.xc{left:320.895000px;}
.x2a{left:338.895000px;}
.x12{left:366.847350px;}
.x1b{left:377.668200px;}
.x22{left:395.055000px;}
.x27{left:396.135000px;}
.x34{left:411.509539px;}
.x15{left:423.585150px;}
.x25{left:425.235000px;}
.x35{left:428.538345px;}
.x1a{left:429.735000px;}
.x10{left:434.235000px;}
.x1f{left:444.735000px;}
.x29{left:494.605200px;}
.x23{left:522.135000px;}
.x2b{left:550.215000px;}
.x11{left:557.235000px;}
.x3a{left:572.835150px;}
.x36{left:574.335150px;}
.x38{left:575.835150px;}
.x20{left:603.135000px;}
.x24{left:658.935000px;}
.x6{left:745.710150px;}
.x2c{left:749.760150px;}
.x8{left:878.985000px;}
@media print{
.v2{vertical-align:-65.280000pt;}
.v1{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.419840pt;}
.ls1{letter-spacing:0.422400pt;}
.lsf{letter-spacing:0.524800pt;}
.ls13{letter-spacing:0.787200pt;}
.ls6{letter-spacing:15.957867pt;}
.ls8{letter-spacing:15.989333pt;}
.ls7{letter-spacing:19.520533pt;}
.ls5{letter-spacing:30.208000pt;}
.ls10{letter-spacing:102.362880pt;}
.ls11{letter-spacing:127.679040pt;}
.lsd{letter-spacing:186.699573pt;}
.lsc{letter-spacing:204.919467pt;}
.lsb{letter-spacing:223.597760pt;}
.ls12{letter-spacing:379.782347pt;}
.ls3{letter-spacing:463.200539pt;}
.ls4{letter-spacing:1091.466187pt;}
.ws1{word-spacing:-24.000000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws7{word-spacing:-13.907200pt;}
.ws6{word-spacing:-13.644800pt;}
.ws5{word-spacing:-13.539840pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-1.827840pt;}
._1{margin-left:-0.891733pt;}
._2{width:0.918400pt;}
._0{width:1.875200pt;}
._3{width:3.193600pt;}
._e{width:4.230400pt;}
._19{width:5.248000pt;}
._11{width:6.336000pt;}
._15{width:7.354507pt;}
._13{width:8.428320pt;}
._a{width:9.728000pt;}
._c{width:10.688000pt;}
._b{width:12.096000pt;}
._10{width:13.826560pt;}
._5{width:15.070720pt;}
._4{width:16.332800pt;}
._6{width:17.446400pt;}
._9{width:18.675200pt;}
._17{width:19.776000pt;}
._1b{width:20.681707pt;}
._1c{width:22.013387pt;}
._16{width:22.976000pt;}
._23{width:23.872000pt;}
._f{width:24.768000pt;}
._1f{width:26.432000pt;}
._18{width:27.392000pt;}
._d{width:28.864000pt;}
._12{width:30.272000pt;}
._1e{width:31.801600pt;}
._1a{width:32.960000pt;}
._14{width:45.568000pt;}
._1d{width:46.694933pt;}
._22{width:109.376000pt;}
._20{width:110.464000pt;}
._21{width:198.016000pt;}
._8{width:622.154187pt;}
.fs2{font-size:47.360000pt;}
.fs8{font-size:52.480000pt;}
.fs9{font-size:53.333333pt;}
.fs0{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs5{font-size:84.480000pt;}
.fs6{font-size:89.600000pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.840133pt;}
.y3{bottom:4.800000pt;}
.y2{bottom:6.720000pt;}
.y4{bottom:11.319987pt;}
.y188{bottom:11.775467pt;}
.y170{bottom:11.877600pt;}
.y124{bottom:11.880000pt;}
.y25{bottom:14.080000pt;}
.y9{bottom:18.493427pt;}
.yff{bottom:20.480133pt;}
.y154{bottom:21.090800pt;}
.y12b{bottom:22.720000pt;}
.y129{bottom:22.720133pt;}
.y12d{bottom:23.040000pt;}
.y16f{bottom:27.877600pt;}
.ycc{bottom:28.160000pt;}
.y17d{bottom:28.366533pt;}
.y11c{bottom:28.471200pt;}
.ycf{bottom:28.480000pt;}
.ye8{bottom:36.160000pt;}
.y153{bottom:37.090800pt;}
.yfe{bottom:38.720000pt;}
.y26{bottom:40.040067pt;}
.y164{bottom:44.468667pt;}
.y148{bottom:53.681867pt;}
.y17e{bottom:55.540800pt;}
.y11d{bottom:66.672400pt;}
.y165{bottom:70.043067pt;}
.ye7{bottom:72.960000pt;}
.y149{bottom:79.256000pt;}
.y17f{bottom:82.714933pt;}
.yc{bottom:90.053427pt;}
.y166{bottom:95.617200pt;}
.y159{bottom:103.364533pt;}
.y18d{bottom:103.382533pt;}
.y175{bottom:103.484800pt;}
.y14a{bottom:104.830267pt;}
.y11e{bottom:104.873600pt;}
.y180{bottom:109.889200pt;}
.y167{bottom:121.191467pt;}
.yb{bottom:123.333480pt;}
.y127{bottom:127.523733pt;}
.y158{bottom:129.567600pt;}
.y18c{bottom:129.585733pt;}
.y174{bottom:129.688000pt;}
.y14b{bottom:130.404533pt;}
.y162{bottom:135.400013pt;}
.y181{bottom:137.063467pt;}
.y192{bottom:137.640013pt;}
.y48{bottom:138.600013pt;}
.y138{bottom:139.240013pt;}
.y1d{bottom:139.560013pt;}
.y7d{bottom:139.880013pt;}
.y11f{bottom:143.074933pt;}
.y94{bottom:143.080013pt;}
.yb4{bottom:145.640013pt;}
.y168{bottom:146.765600pt;}
.y11a{bottom:147.240013pt;}
.ya{bottom:149.760040pt;}
.yc0{bottom:151.080013pt;}
.y126{bottom:153.726800pt;}
.y17b{bottom:153.960013pt;}
.y146{bottom:154.280013pt;}
.y47{bottom:154.600013pt;}
.y1c{bottom:155.560013pt;}
.y157{bottom:155.770800pt;}
.y18b{bottom:155.788800pt;}
.y173{bottom:155.891200pt;}
.y14c{bottom:155.978667pt;}
.yd0{bottom:156.960000pt;}
.y182{bottom:164.237733pt;}
.y46{bottom:170.600013pt;}
.y1b{bottom:171.560013pt;}
.ya4{bottom:171.880013pt;}
.y169{bottom:172.340000pt;}
.y161{bottom:172.520013pt;}
.y191{bottom:174.760013pt;}
.yfc{bottom:175.080013pt;}
.y137{bottom:176.360013pt;}
.y7c{bottom:177.000013pt;}
.y93{bottom:179.880013pt;}
.y125{bottom:179.930000pt;}
.y120{bottom:181.276267pt;}
.y14d{bottom:181.552933pt;}
.y156{bottom:181.974000pt;}
.y18a{bottom:181.992000pt;}
.y172{bottom:182.094267pt;}
.yb3{bottom:182.760013pt;}
.y119{bottom:184.040013pt;}
.ye5{bottom:184.680013pt;}
.y1a{bottom:187.560013pt;}
.ybf{bottom:187.880013pt;}
.y17a{bottom:191.080013pt;}
.y145{bottom:191.400013pt;}
.y183{bottom:191.411867pt;}
.y16a{bottom:197.914133pt;}
.y19{bottom:203.560013pt;}
.y14e{bottom:207.127067pt;}
.yce{bottom:207.840000pt;}
.y155{bottom:208.177067pt;}
.y189{bottom:208.195200pt;}
.y171{bottom:208.297467pt;}
.y45{bottom:209.000013pt;}
.y160{bottom:209.320013pt;}
.y190{bottom:211.560013pt;}
.yfb{bottom:211.880013pt;}
.y136{bottom:213.160013pt;}
.y7b{bottom:213.800013pt;}
.y179{bottom:216.360013pt;}
.y92{bottom:217.000013pt;}
.y184{bottom:218.586133pt;}
.y121{bottom:219.477467pt;}
.y18{bottom:219.560013pt;}
.y118{bottom:221.160013pt;}
.y16b{bottom:223.488400pt;}
.ybe{bottom:225.000013pt;}
.y144{bottom:228.200013pt;}
.ye4{bottom:229.480013pt;}
.y44{bottom:230.440013pt;}
.y14f{bottom:232.701467pt;}
.y17{bottom:235.560013pt;}
.y178{bottom:240.040013pt;}
.y185{bottom:245.760267pt;}
.ya3{bottom:245.800013pt;}
.y15f{bottom:246.440013pt;}
.yfa{bottom:248.680013pt;}
.y16c{bottom:249.062533pt;}
.y7a{bottom:250.920013pt;}
.y16{bottom:251.560013pt;}
.y43{bottom:252.200013pt;}
.y91{bottom:253.800013pt;}
.y177{bottom:255.080013pt;}
.yb2{bottom:256.680013pt;}
.y122{bottom:257.678800pt;}
.y117{bottom:257.960013pt;}
.y150{bottom:258.275600pt;}
.ycd{bottom:259.040000pt;}
.ybd{bottom:261.800013pt;}
.y20{bottom:263.293333pt;}
.y143{bottom:265.320013pt;}
.ye3{bottom:266.280013pt;}
.y15{bottom:267.560013pt;}
.y186{bottom:272.934667pt;}
.y42{bottom:274.280013pt;}
.y16d{bottom:274.636800pt;}
.y176{bottom:275.560013pt;}
.y135{bottom:276.840013pt;}
.y6{bottom:282.493467pt;}
.ya2{bottom:282.920013pt;}
.y14{bottom:283.560013pt;}
.y151{bottom:283.849867pt;}
.y18f{bottom:285.480013pt;}
.yf9{bottom:285.800013pt;}
.y79{bottom:287.720013pt;}
.y1f{bottom:289.093480pt;}
.y17c{bottom:289.120000pt;}
.y90{bottom:290.920013pt;}
.yb1{bottom:293.480013pt;}
.y116{bottom:295.080013pt;}
.y123{bottom:295.880000pt;}
.ybc{bottom:298.920013pt;}
.y13{bottom:299.560013pt;}
.y187{bottom:300.108800pt;}
.y16e{bottom:300.210933pt;}
.y134{bottom:300.960000pt;}
.y142{bottom:302.120013pt;}
.y41{bottom:303.080013pt;}
.ye2{bottom:303.400013pt;}
.y152{bottom:309.424000pt;}
.y15e{bottom:309.800013pt;}
.ycb{bottom:309.920000pt;}
.y12{bottom:315.560013pt;}
.ya1{bottom:319.720013pt;}
.yf8{bottom:322.600013pt;}
.y78{bottom:324.840013pt;}
.y8f{bottom:327.720013pt;}
.yb0{bottom:330.600013pt;}
.y1e{bottom:330.693480pt;}
.y11{bottom:331.560013pt;}
.y40{bottom:331.880013pt;}
.y15d{bottom:335.400013pt;}
.ybb{bottom:335.720013pt;}
.y141{bottom:339.240013pt;}
.ye1{bottom:340.200013pt;}
.y10{bottom:347.560013pt;}
.y15c{bottom:350.760013pt;}
.y133{bottom:351.840000pt;}
.y10f{bottom:352.040147pt;}
.y65{bottom:355.240013pt;}
.ya0{bottom:356.840013pt;}
.y18e{bottom:359.400013pt;}
.yf7{bottom:359.720013pt;}
.y3f{bottom:360.680013pt;}
.y77{bottom:361.640013pt;}
.yf{bottom:363.560013pt;}
.y8e{bottom:364.840013pt;}
.yaf{bottom:367.400013pt;}
.y115{bottom:369.000147pt;}
.y15b{bottom:370.920013pt;}
.yba{bottom:372.840013pt;}
.y140{bottom:376.040147pt;}
.ye0{bottom:377.320013pt;}
.yca{bottom:377.960013pt;}
.ye{bottom:379.560013pt;}
.y163{bottom:384.480000pt;}
.y64{bottom:387.560013pt;}
.y10e{bottom:388.840013pt;}
.y3e{bottom:390.440013pt;}
.yd{bottom:391.400013pt;}
.y9f{bottom:393.640013pt;}
.yf6{bottom:396.520013pt;}
.y76{bottom:398.760013pt;}
.y8d{bottom:401.640013pt;}
.y132{bottom:402.720000pt;}
.yae{bottom:404.520013pt;}
.y114{bottom:405.800013pt;}
.y63{bottom:406.120013pt;}
.yb9{bottom:409.640013pt;}
.y13f{bottom:413.160013pt;}
.ydf{bottom:414.120013pt;}
.y3d{bottom:417.960013pt;}
.yc9{bottom:422.760013pt;}
.y62{bottom:424.680013pt;}
.y10d{bottom:425.960013pt;}
.y13e{bottom:430.440013pt;}
.y9e{bottom:430.760013pt;}
.yf5{bottom:433.640013pt;}
.y75{bottom:435.560013pt;}
.y8c{bottom:438.760013pt;}
.yad{bottom:441.320013pt;}
.y24{bottom:442.546667pt;}
.y61{bottom:442.920013pt;}
.y3c{bottom:445.800013pt;}
.yb8{bottom:446.760013pt;}
.yde{bottom:451.240013pt;}
.y131{bottom:453.600000pt;}
.y60{bottom:461.480013pt;}
.y10c{bottom:462.760013pt;}
.y9d{bottom:467.560013pt;}
.yc8{bottom:467.880013pt;}
.yf4{bottom:470.440013pt;}
.y3b{bottom:472.040147pt;}
.y74{bottom:472.680013pt;}
.y13d{bottom:474.920013pt;}
.y8b{bottom:475.560013pt;}
.yac{bottom:478.440013pt;}
.y113{bottom:479.720013pt;}
.y5f{bottom:480.040147pt;}
.yb7{bottom:483.560013pt;}
.ydd{bottom:488.040013pt;}
.y13c{bottom:489.960013pt;}
.y23{bottom:492.346680pt;}
.y3a{bottom:497.000013pt;}
.y5e{bottom:498.600013pt;}
.y10b{bottom:499.880013pt;}
.y9c{bottom:504.680013pt;}
.y130{bottom:504.800000pt;}
.yf3{bottom:507.560013pt;}
.y73{bottom:509.480013pt;}
.y13b{bottom:510.440013pt;}
.y8a{bottom:512.680013pt;}
.y39{bottom:513.000013pt;}
.yab{bottom:515.240013pt;}
.y5d{bottom:516.840013pt;}
.yb6{bottom:520.680013pt;}
.y147{bottom:524.000000pt;}
.ydc{bottom:525.160013pt;}
.y38{bottom:529.000013pt;}
.y22{bottom:535.226680pt;}
.y5c{bottom:535.400013pt;}
.y10a{bottom:536.680013pt;}
.y9b{bottom:541.480013pt;}
.yf2{bottom:544.360013pt;}
.y37{bottom:545.000013pt;}
.y72{bottom:546.600013pt;}
.y89{bottom:549.480013pt;}
.yaa{bottom:552.360013pt;}
.y112{bottom:553.640013pt;}
.y5b{bottom:553.960013pt;}
.yb5{bottom:557.480013pt;}
.y36{bottom:561.000013pt;}
.ydb{bottom:561.960013pt;}
.y12f{bottom:562.920013pt;}
.y5a{bottom:572.520013pt;}
.y109{bottom:573.800013pt;}
.y111{bottom:576.360013pt;}
.y35{bottom:577.000013pt;}
.y9a{bottom:578.600013pt;}
.yf1{bottom:581.480013pt;}
.y71{bottom:583.400013pt;}
.yc7{bottom:586.600013pt;}
.ya9{bottom:589.160013pt;}
.y59{bottom:590.760013pt;}
.y34{bottom:593.000013pt;}
.y12e{bottom:593.640013pt;}
.y88{bottom:594.600013pt;}
.yda{bottom:599.080013pt;}
.y33{bottom:609.000013pt;}
.y58{bottom:609.320013pt;}
.y108{bottom:610.600013pt;}
.y99{bottom:615.400013pt;}
.y12c{bottom:617.760000pt;}
.yf0{bottom:618.280013pt;}
.y70{bottom:620.520013pt;}
.y32{bottom:620.840013pt;}
.yc6{bottom:623.400013pt;}
.ya8{bottom:625.960013pt;}
.y57{bottom:627.880013pt;}
.y87{bottom:631.400013pt;}
.yd9{bottom:635.880013pt;}
.y110{bottom:645.800013pt;}
.y56{bottom:646.440013pt;}
.y107{bottom:647.720013pt;}
.y98{bottom:652.520013pt;}
.yef{bottom:655.400013pt;}
.y12a{bottom:655.520000pt;}
.y6f{bottom:657.320013pt;}
.yc5{bottom:660.520013pt;}
.ya7{bottom:663.080013pt;}
.y55{bottom:664.680013pt;}
.y86{bottom:668.520013pt;}
.y11b{bottom:670.880000pt;}
.yd8{bottom:673.000147pt;}
.y54{bottom:683.240013pt;}
.y106{bottom:684.840147pt;}
.y97{bottom:689.320013pt;}
.yee{bottom:692.520013pt;}
.y128{bottom:693.280000pt;}
.y6e{bottom:694.440013pt;}
.yc4{bottom:697.320013pt;}
.ya6{bottom:699.880013pt;}
.y53{bottom:701.800013pt;}
.y85{bottom:705.320013pt;}
.y15a{bottom:707.240013pt;}
.yd7{bottom:709.800013pt;}
.yed{bottom:718.760147pt;}
.y52{bottom:720.360013pt;}
.y96{bottom:726.440013pt;}
.y105{bottom:729.640013pt;}
.y6d{bottom:731.240013pt;}
.yc3{bottom:734.440013pt;}
.y51{bottom:738.600013pt;}
.y84{bottom:742.440013pt;}
.yec{bottom:744.360013pt;}
.yd6{bottom:746.600013pt;}
.y104{bottom:754.920147pt;}
.y50{bottom:757.160013pt;}
.yeb{bottom:759.400013pt;}
.y6c{bottom:768.360013pt;}
.y95{bottom:771.240013pt;}
.y4f{bottom:775.720013pt;}
.y103{bottom:778.600013pt;}
.y83{bottom:779.240013pt;}
.yd5{bottom:783.720013pt;}
.y7{bottom:790.080000pt;}
.yea{bottom:791.520000pt;}
.y102{bottom:793.640013pt;}
.y4e{bottom:794.280013pt;}
.y6b{bottom:805.160013pt;}
.y31{bottom:806.120013pt;}
.yc2{bottom:808.360013pt;}
.y4d{bottom:812.520013pt;}
.y82{bottom:816.360013pt;}
.yd4{bottom:820.840147pt;}
.y30{bottom:822.120013pt;}
.y101{bottom:825.760000pt;}
.y4c{bottom:831.080013pt;}
.y2f{bottom:838.120013pt;}
.y13a{bottom:839.720013pt;}
.y6a{bottom:842.280013pt;}
.ye9{bottom:842.720000pt;}
.yc1{bottom:845.160013pt;}
.y4b{bottom:849.640013pt;}
.y81{bottom:853.160013pt;}
.y2e{bottom:854.120013pt;}
.yd3{bottom:865.640013pt;}
.y4a{bottom:867.880013pt;}
.y2d{bottom:870.120013pt;}
.y100{bottom:876.640000pt;}
.y69{bottom:879.080013pt;}
.y139{bottom:882.280013pt;}
.y2c{bottom:886.120013pt;}
.y80{bottom:890.280013pt;}
.ye6{bottom:893.600000pt;}
.y2b{bottom:902.120013pt;}
.yd2{bottom:906.600013pt;}
.y68{bottom:915.880013pt;}
.y2a{bottom:918.120013pt;}
.y7f{bottom:927.080013pt;}
.yfd{bottom:927.840000pt;}
.y29{bottom:934.120013pt;}
.yd1{bottom:938.400000pt;}
.y28{bottom:950.120013pt;}
.y7e{bottom:963.880013pt;}
.ya5{bottom:964.200013pt;}
.y27{bottom:966.120013pt;}
.y5{bottom:1031.720013pt;}
.y67{bottom:1035.240013pt;}
.y8{bottom:1039.813347pt;}
.y66{bottom:1050.280013pt;}
.y49{bottom:1050.600013pt;}
.y1{bottom:1053.280000pt;}
.h2{height:17.600013pt;}
.h20{height:36.799973pt;}
.h21{height:36.800013pt;}
.h22{height:37.120000pt;}
.h1f{height:41.770833pt;}
.h6{height:42.365000pt;}
.h16{height:43.843750pt;}
.h1b{height:46.945000pt;}
.h15{height:48.841250pt;}
.h17{height:50.239987pt;}
.h1a{height:50.240000pt;}
.h18{height:50.240013pt;}
.h19{height:50.560000pt;}
.h23{height:50.560013pt;}
.h3{height:53.184375pt;}
.hc{height:57.250000pt;}
.h9{height:58.562500pt;}
.h4{height:59.093750pt;}
.h14{height:59.562500pt;}
.h1d{height:60.799973pt;}
.h13{height:66.410000pt;}
.hb{height:67.932500pt;}
.hd{height:77.302500pt;}
.hf{height:81.987500pt;}
.h11{height:85.875000pt;}
.h12{height:87.843750pt;}
.h1c{height:95.039960pt;}
.h8{height:97.213750pt;}
.h10{height:134.080000pt;}
.he{height:158.400000pt;}
.ha{height:168.000000pt;}
.h1e{height:318.400000pt;}
.h24{height:322.880000pt;}
.h7{height:816.000000pt;}
.h5{height:1099.880000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:28.480000pt;}
.we{width:95.040000pt;}
.wb{width:95.359987pt;}
.wd{width:111.679973pt;}
.w9{width:112.000000pt;}
.w7{width:112.000013pt;}
.wc{width:112.960013pt;}
.wa{width:120.960000pt;}
.w8{width:124.160000pt;}
.w6{width:139.840000pt;}
.w5{width:140.160000pt;}
.w10{width:186.880000pt;}
.w11{width:187.200000pt;}
.w3{width:531.200000pt;}
.wf{width:553.600000pt;}
.w4{width:771.080000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.xa{left:-10.680015pt;}
.x0{left:0.000000pt;}
.x1d{left:6.720120pt;}
.x4{left:7.999867pt;}
.x2{left:9.941507pt;}
.x5{left:11.320000pt;}
.x7{left:13.240000pt;}
.x2e{left:17.884533pt;}
.xe{left:23.480000pt;}
.x2d{left:26.315467pt;}
.x2f{left:57.562657pt;}
.x37{left:61.177907pt;}
.x28{left:62.362493pt;}
.x30{left:69.525547pt;}
.x16{left:90.186853pt;}
.x13{left:98.645173pt;}
.x39{left:107.089507pt;}
.x9{left:109.120120pt;}
.x1c{left:113.720000pt;}
.x1{left:121.080000pt;}
.x17{left:133.120133pt;}
.xb{left:135.160000pt;}
.xd{left:136.440000pt;}
.x3{left:149.560000pt;}
.x18{left:157.120133pt;}
.x14{left:160.250667pt;}
.x31{left:172.165840pt;}
.x19{left:185.120133pt;}
.xf{left:194.040000pt;}
.x21{left:226.360000pt;}
.x26{left:227.320000pt;}
.x1e{left:254.520000pt;}
.x32{left:263.045191pt;}
.x33{left:274.907173pt;}
.xc{left:285.240000pt;}
.x2a{left:301.240000pt;}
.x12{left:326.086533pt;}
.x1b{left:335.705067pt;}
.x22{left:351.160000pt;}
.x27{left:352.120000pt;}
.x34{left:365.786257pt;}
.x15{left:376.520133pt;}
.x25{left:377.986667pt;}
.x35{left:380.922973pt;}
.x1a{left:381.986667pt;}
.x10{left:385.986667pt;}
.x1f{left:395.320000pt;}
.x29{left:439.649067pt;}
.x23{left:464.120000pt;}
.x2b{left:489.080000pt;}
.x11{left:495.320000pt;}
.x3a{left:509.186800pt;}
.x36{left:510.520133pt;}
.x38{left:511.853467pt;}
.x20{left:536.120000pt;}
.x24{left:585.720000pt;}
.x6{left:662.853467pt;}
.x2c{left:666.453467pt;}
.x8{left:781.320000pt;}
}




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