
    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_3d76cf3ef5d5ac0b795a75ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5050c3a46695291fa9cc5c0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_039cb7de896e9584588fec31.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_70872ff68b88d8f171b121de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.012207;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_541a6c6c0f45ff9e46c6aac8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.876953;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_d76f641bedf75c591bfd6fe2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.800781;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_463b0366878291012317d622.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2fe623ee5a812b51b5da8414.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_3f49312ff7070837f97a21a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_48f3e082fcaec5841eaea3c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946332;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_c40e2413d42b5bd1a1fee7bc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;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_5eb77152dc23f5c0bc21e383.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_34b1b3ac9c3d88686c009b26.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.600000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls2c{letter-spacing:-1.500000px;}
.ls14{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.212000px;}
.ls2a{letter-spacing:-1.182000px;}
.ls8{letter-spacing:-0.978000px;}
.ls25{letter-spacing:-0.882000px;}
.ls18{letter-spacing:-0.780000px;}
.ls1a{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.384000px;}
.ls21{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.018000px;}
.ls2d{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.396000px;}
.ls19{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.588000px;}
.ls9{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.840000px;}
.ls29{letter-spacing:1.200000px;}
.lse{letter-spacing:1.320000px;}
.ls11{letter-spacing:1.800000px;}
.ls2{letter-spacing:2.100000px;}
.ls17{letter-spacing:3.000000px;}
.ls1d{letter-spacing:4.140000px;}
.ls1f{letter-spacing:4.200000px;}
.ls1e{letter-spacing:6.600000px;}
.ls1c{letter-spacing:12.600000px;}
.ls28{letter-spacing:27.540000px;}
.ls27{letter-spacing:27.600000px;}
.lsa{letter-spacing:45.900000px;}
.ls26{letter-spacing:47.700000px;}
.ls1{letter-spacing:55.200000px;}
.ls22{letter-spacing:64.920000px;}
.ls15{letter-spacing:74.520000px;}
.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;}
}
.ws17{word-spacing:-81.600000px;}
.ws18{word-spacing:-81.540000px;}
.wsd{word-spacing:-60.000000px;}
.ws5{word-spacing:-54.000000px;}
.ws13{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.240000px;}
.wsc{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.000000px;}
.ws15{word-spacing:-14.760000px;}
.ws14{word-spacing:-14.640000px;}
.wse{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.460000px;}
.ws10{word-spacing:-14.340000px;}
.ws16{word-spacing:-14.100000px;}
.wsf{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.488000px;}
.ws6{word-spacing:-13.482000px;}
.ws0{word-spacing:-12.300000px;}
.ws4{word-spacing:-12.288000px;}
.ws2{word-spacing:-12.000000px;}
.wsa{word-spacing:-11.616000px;}
.ws8{word-spacing:-10.500000px;}
.ws7{word-spacing:-9.522000px;}
.ws1{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._b{margin-left:-3.972000px;}
._a{margin-left:-2.220000px;}
._1{margin-left:-1.056000px;}
._0{width:1.188000px;}
._6{width:3.060000px;}
._16{width:4.068000px;}
._8{width:5.088000px;}
._9{width:6.252000px;}
._d{width:8.094000px;}
._7{width:9.600000px;}
._18{width:10.620000px;}
._14{width:11.760000px;}
._17{width:13.260000px;}
._1f{width:15.150000px;}
._1e{width:16.194000px;}
._f{width:17.556000px;}
._e{width:18.732000px;}
._c{width:20.484000px;}
._3{width:21.660000px;}
._24{width:23.892000px;}
._10{width:24.906000px;}
._11{width:26.550000px;}
._29{width:28.620000px;}
._2a{width:29.838000px;}
._27{width:30.918000px;}
._28{width:32.310000px;}
._22{width:33.474000px;}
._21{width:34.992000px;}
._20{width:36.252000px;}
._5{width:37.500000px;}
._1c{width:39.552000px;}
._1b{width:40.824000px;}
._13{width:45.150000px;}
._12{width:46.806000px;}
._1a{width:47.970000px;}
._23{width:53.586000px;}
._4{width:55.308000px;}
._25{width:71.946000px;}
._19{width:73.350000px;}
._26{width:76.140000px;}
._2{width:345.024000px;}
._1d{width:1838.592000px;}
._15{width:1862.592000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.000000px;}
.fs5{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:51.600000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:3.000000px;}
.yd5{bottom:9.000000px;}
.y3{bottom:9.585000px;}
.ycf{bottom:9.600000px;}
.ycb{bottom:10.800000px;}
.yd1{bottom:18.885000px;}
.ydb{bottom:19.200000px;}
.yd3{bottom:19.215000px;}
.yda{bottom:19.800000px;}
.yd8{bottom:19.830000px;}
.ydd{bottom:20.100000px;}
.ycd{bottom:20.115000px;}
.yd7{bottom:20.145000px;}
.y4{bottom:20.385000px;}
.y4e{bottom:21.000000px;}
.y2{bottom:28.500000px;}
.y7{bottom:28.837500px;}
.yd4{bottom:29.415000px;}
.yde{bottom:29.700000px;}
.yce{bottom:30.000000px;}
.y4d{bottom:39.007500px;}
.y6{bottom:42.637500px;}
.y55{bottom:46.837500px;}
.y4c{bottom:57.037500px;}
.y54{bottom:64.837500px;}
.y4b{bottom:75.037500px;}
.y53{bottom:80.737500px;}
.y4a{bottom:93.037500px;}
.y1a4{bottom:95.137500px;}
.y1be{bottom:95.437500px;}
.y8a{bottom:97.837500px;}
.y10d{bottom:98.437500px;}
.y17e{bottom:102.937500px;}
.y34{bottom:107.137500px;}
.y49{bottom:108.037500px;}
.yae{bottom:108.337500px;}
.y35{bottom:113.737500px;}
.y89{bottom:117.337500px;}
.y10c{bottom:117.637500px;}
.y1a3{bottom:119.737500px;}
.y33{bottom:126.937500px;}
.yad{bottom:127.537500px;}
.y157{bottom:132.337500px;}
.y88{bottom:136.537500px;}
.y10b{bottom:136.837500px;}
.y17d{bottom:138.037500px;}
.ye1{bottom:139.237500px;}
.y1a2{bottom:144.037500px;}
.y1bb{bottom:144.337500px;}
.y32{bottom:146.737500px;}
.y156{bottom:151.530000px;}
.y48{bottom:151.537500px;}
.y87{bottom:155.745000px;}
.y10a{bottom:156.045000px;}
.ye0{bottom:158.430000px;}
.yac{bottom:165.975000px;}
.y47{bottom:168.037500px;}
.y1a1{bottom:168.675000px;}
.y155{bottom:170.775000px;}
.y17c{bottom:173.175000px;}
.y86{bottom:174.975000px;}
.y109{bottom:175.275000px;}
.ydf{bottom:177.675000px;}
.y31{bottom:183.975000px;}
.y46{bottom:184.237500px;}
.yab{bottom:185.475000px;}
.y154{bottom:189.975000px;}
.y17b{bottom:190.875000px;}
.y1a0{bottom:192.975000px;}
.y1ba{bottom:193.275000px;}
.y85{bottom:194.175000px;}
.y108{bottom:194.475000px;}
.y139{bottom:198.975000px;}
.y45{bottom:200.437500px;}
.y30{bottom:203.475000px;}
.yaa{bottom:204.675000px;}
.y153{bottom:209.175000px;}
.ydc{bottom:211.275000px;}
.y84{bottom:213.375000px;}
.y107{bottom:213.675000px;}
.y19f{bottom:217.575000px;}
.y2f{bottom:222.975000px;}
.ya9{bottom:223.875000px;}
.y17a{bottom:225.675000px;}
.y152{bottom:228.375000px;}
.y83{bottom:232.575000px;}
.y44{bottom:232.582500px;}
.y106{bottom:233.175000px;}
.y138{bottom:236.475000px;}
.y19e{bottom:241.875000px;}
.y1b9{bottom:242.175000px;}
.y2e{bottom:242.475000px;}
.ya8{bottom:243.075000px;}
.y151{bottom:247.575000px;}
.y43{bottom:250.567500px;}
.y82{bottom:251.775000px;}
.y105{bottom:252.375000px;}
.y137{bottom:255.675000px;}
.y179{bottom:260.775000px;}
.y2d{bottom:261.975000px;}
.yd9{bottom:262.275000px;}
.ya7{bottom:263.175000px;}
.y19d{bottom:266.475000px;}
.y150{bottom:267.075000px;}
.y42{bottom:268.582500px;}
.y81{bottom:270.975000px;}
.y104{bottom:271.575000px;}
.y136{bottom:274.875000px;}
.y2c{bottom:281.475000px;}
.ya6{bottom:282.975000px;}
.y14f{bottom:286.275000px;}
.y41{bottom:286.582500px;}
.y80{bottom:290.175000px;}
.y103{bottom:290.775000px;}
.y1b8{bottom:291.075000px;}
.y135{bottom:294.075000px;}
.y178{bottom:296.475000px;}
.y2b{bottom:300.975000px;}
.ya5{bottom:302.175000px;}
.y40{bottom:304.582500px;}
.y7f{bottom:309.375000px;}
.y102{bottom:309.975000px;}
.yd6{bottom:312.675000px;}
.y134{bottom:313.275000px;}
.y19c{bottom:315.375000px;}
.y177{bottom:315.675000px;}
.y2a{bottom:320.475000px;}
.ya4{bottom:322.275000px;}
.y14e{bottom:323.475000px;}
.y7e{bottom:328.575000px;}
.y101{bottom:329.175000px;}
.y3f{bottom:331.582500px;}
.y133{bottom:332.505000px;}
.y176{bottom:334.920000px;}
.y19b{bottom:339.705000px;}
.y29{bottom:340.005000px;}
.y14d{bottom:342.705000px;}
.ya3{bottom:346.005000px;}
.y7d{bottom:348.120000px;}
.y100{bottom:348.420000px;}
.y132{bottom:351.720000px;}
.y175{bottom:354.105000px;}
.y3e{bottom:358.582500px;}
.y28{bottom:359.505000px;}
.y14c{bottom:361.920000px;}
.yd2{bottom:363.705000px;}
.y19a{bottom:364.305000px;}
.y7c{bottom:367.320000px;}
.yff{bottom:367.605000px;}
.y131{bottom:370.905000px;}
.y174{bottom:373.320000px;}
.y3d{bottom:376.582500px;}
.y27{bottom:379.005000px;}
.ya2{bottom:383.205000px;}
.y14b{bottom:385.620000px;}
.y7b{bottom:386.505000px;}
.yfe{bottom:386.820000px;}
.y199{bottom:388.620000px;}
.y1b7{bottom:388.920000px;}
.y130{bottom:391.005000px;}
.y173{bottom:392.505000px;}
.y3c{bottom:394.612500px;}
.y26{bottom:398.505000px;}
.ya1{bottom:402.420000px;}
.y7a{bottom:405.705000px;}
.yfd{bottom:406.005000px;}
.y12f{bottom:410.205000px;}
.y172{bottom:411.705000px;}
.y3b{bottom:412.612500px;}
.y198{bottom:413.205000px;}
.yd0{bottom:413.820000px;}
.y25{bottom:418.005000px;}
.ya0{bottom:421.620000px;}
.y14a{bottom:422.820000px;}
.y79{bottom:424.905000px;}
.yfc{bottom:425.205000px;}
.y12e{bottom:429.420000px;}
.y3a{bottom:430.612500px;}
.y24{bottom:437.505000px;}
.y1b6{bottom:437.820000px;}
.y9f{bottom:440.820000px;}
.y149{bottom:442.005000px;}
.y78{bottom:444.105000px;}
.yfb{bottom:444.420000px;}
.y39{bottom:448.612500px;}
.y12d{bottom:448.620000px;}
.y171{bottom:448.905000px;}
.y23{bottom:457.005000px;}
.y9e{bottom:460.005000px;}
.y148{bottom:461.205000px;}
.y197{bottom:462.120000px;}
.ycc{bottom:463.005000px;}
.y77{bottom:463.320000px;}
.yfa{bottom:463.905000px;}
.y38{bottom:466.612500px;}
.y12c{bottom:467.820000px;}
.y170{bottom:468.120000px;}
.y22{bottom:476.505000px;}
.y9d{bottom:479.205000px;}
.y147{bottom:480.405000px;}
.y76{bottom:482.505000px;}
.yf9{bottom:483.120000px;}
.y37{bottom:484.612500px;}
.y196{bottom:486.405000px;}
.y1b5{bottom:486.705000px;}
.y12b{bottom:487.005000px;}
.y16f{bottom:487.320000px;}
.y21{bottom:496.005000px;}
.y9c{bottom:498.405000px;}
.y146{bottom:499.605000px;}
.y75{bottom:501.750000px;}
.yf8{bottom:502.350000px;}
.y36{bottom:502.612500px;}
.y12a{bottom:506.250000px;}
.y16e{bottom:506.850000px;}
.y195{bottom:511.050000px;}
.yca{bottom:514.050000px;}
.y20{bottom:515.550000px;}
.y9b{bottom:517.650000px;}
.y145{bottom:518.850000px;}
.y74{bottom:520.950000px;}
.yf7{bottom:521.550000px;}
.y129{bottom:525.450000px;}
.y16d{bottom:526.050000px;}
.y1f{bottom:535.050000px;}
.y194{bottom:535.350000px;}
.y1b4{bottom:535.650000px;}
.y9a{bottom:536.850000px;}
.y144{bottom:538.350000px;}
.y73{bottom:540.150000px;}
.y128{bottom:544.650000px;}
.yf6{bottom:545.250000px;}
.y1e{bottom:554.550000px;}
.y99{bottom:556.350000px;}
.y72{bottom:559.350000px;}
.y193{bottom:559.950000px;}
.yc9{bottom:560.250000px;}
.y143{bottom:562.050000px;}
.y127{bottom:563.850000px;}
.y16c{bottom:564.450000px;}
.y1d{bottom:574.050000px;}
.y98{bottom:575.550000px;}
.yf5{bottom:582.450000px;}
.y71{bottom:583.350000px;}
.y16b{bottom:583.650000px;}
.y192{bottom:584.250000px;}
.y1b3{bottom:584.550000px;}
.y1c{bottom:593.550000px;}
.y97{bottom:594.750000px;}
.yc8{bottom:598.050000px;}
.y142{bottom:599.250000px;}
.yf4{bottom:601.650000px;}
.y126{bottom:602.550000px;}
.y16a{bottom:602.850000px;}
.y191{bottom:608.850000px;}
.y1b{bottom:613.050000px;}
.y96{bottom:613.950000px;}
.yc7{bottom:617.250000px;}
.y141{bottom:618.450000px;}
.y70{bottom:620.550000px;}
.yf3{bottom:620.850000px;}
.y125{bottom:621.750000px;}
.y169{bottom:622.050000px;}
.y1a{bottom:632.550000px;}
.y95{bottom:633.150000px;}
.y1b2{bottom:633.450000px;}
.yc6{bottom:636.450000px;}
.y140{bottom:637.650000px;}
.y6f{bottom:639.750000px;}
.yf2{bottom:640.050000px;}
.y124{bottom:640.950000px;}
.y168{bottom:641.250000px;}
.y19{bottom:652.050000px;}
.y94{bottom:652.350000px;}
.yc5{bottom:655.650000px;}
.y190{bottom:657.750000px;}
.y6e{bottom:658.950000px;}
.y123{bottom:660.150000px;}
.y167{bottom:660.450000px;}
.y13f{bottom:661.350000px;}
.y18{bottom:671.595000px;}
.yc4{bottom:674.880000px;}
.yf1{bottom:677.280000px;}
.y6d{bottom:678.195000px;}
.y122{bottom:679.380000px;}
.y18f{bottom:682.080000px;}
.y1b1{bottom:682.380000px;}
.y93{bottom:690.780000px;}
.y17{bottom:691.080000px;}
.yc3{bottom:694.080000px;}
.yf0{bottom:696.495000px;}
.y6c{bottom:697.380000px;}
.y166{bottom:697.680000px;}
.y121{bottom:698.595000px;}
.y18e{bottom:706.695000px;}
.y92{bottom:709.995000px;}
.y16{bottom:710.595000px;}
.yc2{bottom:713.280000px;}
.yef{bottom:715.695000px;}
.y6b{bottom:716.580000px;}
.y165{bottom:716.880000px;}
.y120{bottom:717.780000px;}
.y15{bottom:730.080000px;}
.y18d{bottom:730.980000px;}
.y1b0{bottom:731.280000px;}
.yc1{bottom:733.380000px;}
.y91{bottom:733.695000px;}
.y6a{bottom:735.780000px;}
.y11f{bottom:736.995000px;}
.y164{bottom:740.595000px;}
.y14{bottom:749.580000px;}
.yc0{bottom:752.595000px;}
.y69{bottom:754.980000px;}
.y18c{bottom:755.580000px;}
.y11e{bottom:756.195000px;}
.y13{bottom:769.080000px;}
.y90{bottom:770.880000px;}
.ybf{bottom:771.795000px;}
.y68{bottom:774.195000px;}
.y11d{bottom:775.380000px;}
.y163{bottom:778.080000px;}
.y18b{bottom:779.880000px;}
.y1af{bottom:780.195000px;}
.y12{bottom:788.880000px;}
.y8f{bottom:790.080000px;}
.ybe{bottom:790.995000px;}
.y67{bottom:793.380000px;}
.y11c{bottom:794.580000px;}
.y162{bottom:797.295000px;}
.y18a{bottom:804.495000px;}
.y8e{bottom:809.580000px;}
.ybd{bottom:810.195000px;}
.y66{bottom:812.580000px;}
.yee{bottom:813.480000px;}
.y11b{bottom:814.080000px;}
.y161{bottom:816.495000px;}
.y11{bottom:826.080000px;}
.y8d{bottom:828.795000px;}
.y1ae{bottom:829.080000px;}
.ybc{bottom:829.380000px;}
.y65{bottom:832.080000px;}
.yed{bottom:832.695000px;}
.y11a{bottom:833.295000px;}
.y160{bottom:835.695000px;}
.y10{bottom:845.025000px;}
.ybb{bottom:848.625000px;}
.y64{bottom:851.325000px;}
.y8c{bottom:852.525000px;}
.yec{bottom:852.825000px;}
.y189{bottom:853.425000px;}
.y15f{bottom:854.925000px;}
.yf{bottom:861.225000px;}
.y63{bottom:870.525000px;}
.y8b{bottom:871.725000px;}
.yeb{bottom:872.025000px;}
.yba{bottom:872.325000px;}
.y119{bottom:876.225000px;}
.ye{bottom:877.425000px;}
.y188{bottom:877.725000px;}
.y1bd{bottom:878.025000px;}
.y1ad{bottom:878.625000px;}
.y62{bottom:889.725000px;}
.y13e{bottom:890.925000px;}
.yea{bottom:892.125000px;}
.yd{bottom:893.625000px;}
.y187{bottom:902.325000px;}
.y61{bottom:908.925000px;}
.yb9{bottom:909.525000px;}
.y13d{bottom:910.125000px;}
.ye9{bottom:911.025000px;}
.y15e{bottom:911.325000px;}
.y118{bottom:913.425000px;}
.y186{bottom:926.625000px;}
.y1bc{bottom:926.925000px;}
.y1ac{bottom:927.525000px;}
.y60{bottom:928.125000px;}
.yb8{bottom:928.725000px;}
.y13c{bottom:929.325000px;}
.y15d{bottom:930.525000px;}
.ye8{bottom:931.125000px;}
.y117{bottom:932.625000px;}
.yc{bottom:934.725000px;}
.y5f{bottom:947.325000px;}
.y13b{bottom:948.525000px;}
.yb7{bottom:948.825000px;}
.y15c{bottom:949.725000px;}
.ye7{bottom:950.325000px;}
.y185{bottom:951.225000px;}
.y116{bottom:951.825000px;}
.y5e{bottom:966.525000px;}
.yb6{bottom:968.025000px;}
.ye6{bottom:969.525000px;}
.y115{bottom:971.025000px;}
.y13a{bottom:972.225000px;}
.y184{bottom:975.525000px;}
.y1ab{bottom:975.825000px;}
.yb{bottom:985.425000px;}
.y5d{bottom:985.725000px;}
.y15b{bottom:986.925000px;}
.yb5{bottom:987.225000px;}
.ye5{bottom:988.725000px;}
.y114{bottom:990.225000px;}
.y1aa{bottom:1000.125000px;}
.y183{bottom:1001.625000px;}
.y5c{bottom:1004.925000px;}
.y15a{bottom:1006.125000px;}
.yb4{bottom:1007.325000px;}
.ye4{bottom:1007.925000px;}
.y113{bottom:1009.455000px;}
.ya{bottom:1022.070000px;}
.y5b{bottom:1024.155000px;}
.y1a9{bottom:1024.755000px;}
.y159{bottom:1025.370000px;}
.yb3{bottom:1026.570000px;}
.ye3{bottom:1027.170000px;}
.y112{bottom:1028.670000px;}
.y182{bottom:1038.255000px;}
.y5a{bottom:1043.355000px;}
.ye2{bottom:1046.370000px;}
.yb2{bottom:1046.670000px;}
.y111{bottom:1047.855000px;}
.y1a8{bottom:1049.070000px;}
.y158{bottom:1049.355000px;}
.y9{bottom:1058.355000px;}
.y59{bottom:1062.855000px;}
.yb1{bottom:1065.855000px;}
.y110{bottom:1067.355000px;}
.y181{bottom:1073.370000px;}
.y1a7{bottom:1073.655000px;}
.y58{bottom:1082.070000px;}
.yb0{bottom:1085.955000px;}
.y10f{bottom:1086.570000px;}
.y180{bottom:1091.070000px;}
.y8{bottom:1091.370000px;}
.y1a6{bottom:1097.955000px;}
.y57{bottom:1101.255000px;}
.yaf{bottom:1104.870000px;}
.y10e{bottom:1105.755000px;}
.y1a5{bottom:1122.570000px;}
.y56{bottom:1124.955000px;}
.y17f{bottom:1126.455000px;}
.y5{bottom:1128.255000px;}
.y1{bottom:1134.570000px;}
.y52{bottom:1144.455000px;}
.y51{bottom:1163.655000px;}
.y50{bottom:1173.570000px;}
.h9{height:23.085938px;}
.h10{height:30.700195px;}
.h18{height:32.400000px;}
.h11{height:33.632812px;}
.ha{height:35.085938px;}
.h6{height:35.179688px;}
.hb{height:39.418945px;}
.hc{height:39.471680px;}
.hd{height:39.577148px;}
.h4{height:43.798828px;}
.h5{height:43.857422px;}
.h7{height:43.974609px;}
.h1e{height:44.929688px;}
.h16{height:46.171875px;}
.he{height:46.933594px;}
.h3{height:48.178711px;}
.h1a{height:48.600000px;}
.h1b{height:49.200000px;}
.h1c{height:49.800000px;}
.h14{height:49.921875px;}
.h1d{height:50.100000px;}
.h19{height:50.437500px;}
.h2{height:51.637500px;}
.h15{height:52.148438px;}
.h13{height:59.853516px;}
.h17{height:61.670545px;}
.h12{height:62.460938px;}
.h8{height:78.837891px;}
.hf{height:517.620000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:126.675000px;}
.w6{width:180.975000px;}
.w7{width:335.520000px;}
.w3{width:339.975000px;}
.w2{width:372.450000px;}
.w8{width:451.650000px;}
.w5{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:11.985000px;}
.x12{left:13.485000px;}
.x1a{left:15.300000px;}
.x19{left:20.737500px;}
.x1c{left:22.200000px;}
.x14{left:25.837500px;}
.x17{left:29.737500px;}
.x15{left:38.737500px;}
.x1{left:54.000000px;}
.x1b{left:66.037500px;}
.x7{left:81.637500px;}
.x1e{left:86.137487px;}
.x9{left:89.737487px;}
.x18{left:93.630000px;}
.xf{left:108.930000px;}
.x11{left:157.860000px;}
.x3{left:170.130000px;}
.x13{left:198.360000px;}
.x1d{left:204.960000px;}
.xe{left:228.974987px;}
.x5{left:249.674987px;}
.x6{left:250.874987px;}
.xb{left:276.674987px;}
.xc{left:281.474987px;}
.xd{left:303.719987px;}
.x10{left:389.520000px;}
.x2{left:426.450000px;}
.x8{left:597.494987px;}
.xa{left:646.094987px;}
.x4{left:766.425000px;}
@media print{
.v3{vertical-align:-13.866667pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls2c{letter-spacing:-1.333333pt;}
.ls14{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.077333pt;}
.ls2a{letter-spacing:-1.050667pt;}
.ls8{letter-spacing:-0.869333pt;}
.ls25{letter-spacing:-0.784000pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls1a{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.341333pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls2d{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.352000pt;}
.ls19{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.522667pt;}
.ls9{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls29{letter-spacing:1.066667pt;}
.lse{letter-spacing:1.173333pt;}
.ls11{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.866667pt;}
.ls17{letter-spacing:2.666667pt;}
.ls1d{letter-spacing:3.680000pt;}
.ls1f{letter-spacing:3.733333pt;}
.ls1e{letter-spacing:5.866667pt;}
.ls1c{letter-spacing:11.200000pt;}
.ls28{letter-spacing:24.480000pt;}
.ls27{letter-spacing:24.533333pt;}
.lsa{letter-spacing:40.800000pt;}
.ls26{letter-spacing:42.400000pt;}
.ls1{letter-spacing:49.066667pt;}
.ls22{letter-spacing:57.706667pt;}
.ls15{letter-spacing:66.240000pt;}
.ws17{word-spacing:-72.533333pt;}
.ws18{word-spacing:-72.480000pt;}
.wsd{word-spacing:-53.333333pt;}
.ws5{word-spacing:-48.000000pt;}
.ws13{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.546667pt;}
.wsc{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.333333pt;}
.ws15{word-spacing:-13.120000pt;}
.ws14{word-spacing:-13.013333pt;}
.wse{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.853333pt;}
.ws10{word-spacing:-12.746667pt;}
.ws16{word-spacing:-12.533333pt;}
.wsf{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.989333pt;}
.ws6{word-spacing:-11.984000pt;}
.ws0{word-spacing:-10.933333pt;}
.ws4{word-spacing:-10.922667pt;}
.ws2{word-spacing:-10.666667pt;}
.wsa{word-spacing:-10.325333pt;}
.ws8{word-spacing:-9.333333pt;}
.ws7{word-spacing:-8.464000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._b{margin-left:-3.530667pt;}
._a{margin-left:-1.973333pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.056000pt;}
._6{width:2.720000pt;}
._16{width:3.616000pt;}
._8{width:4.522667pt;}
._9{width:5.557333pt;}
._d{width:7.194667pt;}
._7{width:8.533333pt;}
._18{width:9.440000pt;}
._14{width:10.453333pt;}
._17{width:11.786667pt;}
._1f{width:13.466667pt;}
._1e{width:14.394667pt;}
._f{width:15.605333pt;}
._e{width:16.650667pt;}
._c{width:18.208000pt;}
._3{width:19.253333pt;}
._24{width:21.237333pt;}
._10{width:22.138667pt;}
._11{width:23.600000pt;}
._29{width:25.440000pt;}
._2a{width:26.522667pt;}
._27{width:27.482667pt;}
._28{width:28.720000pt;}
._22{width:29.754667pt;}
._21{width:31.104000pt;}
._20{width:32.224000pt;}
._5{width:33.333333pt;}
._1c{width:35.157333pt;}
._1b{width:36.288000pt;}
._13{width:40.133333pt;}
._12{width:41.605333pt;}
._1a{width:42.640000pt;}
._23{width:47.632000pt;}
._4{width:49.162667pt;}
._25{width:63.952000pt;}
._19{width:65.200000pt;}
._26{width:67.680000pt;}
._2{width:306.688000pt;}
._1d{width:1634.304000pt;}
._15{width:1655.637333pt;}
.fs6{font-size:26.666667pt;}
.fs5{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:45.866667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.666667pt;}
.yd5{bottom:8.000000pt;}
.y3{bottom:8.520000pt;}
.ycf{bottom:8.533333pt;}
.ycb{bottom:9.600000pt;}
.yd1{bottom:16.786667pt;}
.ydb{bottom:17.066667pt;}
.yd3{bottom:17.080000pt;}
.yda{bottom:17.600000pt;}
.yd8{bottom:17.626667pt;}
.ydd{bottom:17.866667pt;}
.ycd{bottom:17.880000pt;}
.yd7{bottom:17.906667pt;}
.y4{bottom:18.120000pt;}
.y4e{bottom:18.666667pt;}
.y2{bottom:25.333333pt;}
.y7{bottom:25.633333pt;}
.yd4{bottom:26.146667pt;}
.yde{bottom:26.400000pt;}
.yce{bottom:26.666667pt;}
.y4d{bottom:34.673333pt;}
.y6{bottom:37.900000pt;}
.y55{bottom:41.633333pt;}
.y4c{bottom:50.700000pt;}
.y54{bottom:57.633333pt;}
.y4b{bottom:66.700000pt;}
.y53{bottom:71.766667pt;}
.y4a{bottom:82.700000pt;}
.y1a4{bottom:84.566667pt;}
.y1be{bottom:84.833333pt;}
.y8a{bottom:86.966667pt;}
.y10d{bottom:87.500000pt;}
.y17e{bottom:91.500000pt;}
.y34{bottom:95.233333pt;}
.y49{bottom:96.033333pt;}
.yae{bottom:96.300000pt;}
.y35{bottom:101.100000pt;}
.y89{bottom:104.300000pt;}
.y10c{bottom:104.566667pt;}
.y1a3{bottom:106.433333pt;}
.y33{bottom:112.833333pt;}
.yad{bottom:113.366667pt;}
.y157{bottom:117.633333pt;}
.y88{bottom:121.366667pt;}
.y10b{bottom:121.633333pt;}
.y17d{bottom:122.700000pt;}
.ye1{bottom:123.766667pt;}
.y1a2{bottom:128.033333pt;}
.y1bb{bottom:128.300000pt;}
.y32{bottom:130.433333pt;}
.y156{bottom:134.693333pt;}
.y48{bottom:134.700000pt;}
.y87{bottom:138.440000pt;}
.y10a{bottom:138.706667pt;}
.ye0{bottom:140.826667pt;}
.yac{bottom:147.533333pt;}
.y47{bottom:149.366667pt;}
.y1a1{bottom:149.933333pt;}
.y155{bottom:151.800000pt;}
.y17c{bottom:153.933333pt;}
.y86{bottom:155.533333pt;}
.y109{bottom:155.800000pt;}
.ydf{bottom:157.933333pt;}
.y31{bottom:163.533333pt;}
.y46{bottom:163.766667pt;}
.yab{bottom:164.866667pt;}
.y154{bottom:168.866667pt;}
.y17b{bottom:169.666667pt;}
.y1a0{bottom:171.533333pt;}
.y1ba{bottom:171.800000pt;}
.y85{bottom:172.600000pt;}
.y108{bottom:172.866667pt;}
.y139{bottom:176.866667pt;}
.y45{bottom:178.166667pt;}
.y30{bottom:180.866667pt;}
.yaa{bottom:181.933333pt;}
.y153{bottom:185.933333pt;}
.ydc{bottom:187.800000pt;}
.y84{bottom:189.666667pt;}
.y107{bottom:189.933333pt;}
.y19f{bottom:193.400000pt;}
.y2f{bottom:198.200000pt;}
.ya9{bottom:199.000000pt;}
.y17a{bottom:200.600000pt;}
.y152{bottom:203.000000pt;}
.y83{bottom:206.733333pt;}
.y44{bottom:206.740000pt;}
.y106{bottom:207.266667pt;}
.y138{bottom:210.200000pt;}
.y19e{bottom:215.000000pt;}
.y1b9{bottom:215.266667pt;}
.y2e{bottom:215.533333pt;}
.ya8{bottom:216.066667pt;}
.y151{bottom:220.066667pt;}
.y43{bottom:222.726667pt;}
.y82{bottom:223.800000pt;}
.y105{bottom:224.333333pt;}
.y137{bottom:227.266667pt;}
.y179{bottom:231.800000pt;}
.y2d{bottom:232.866667pt;}
.yd9{bottom:233.133333pt;}
.ya7{bottom:233.933333pt;}
.y19d{bottom:236.866667pt;}
.y150{bottom:237.400000pt;}
.y42{bottom:238.740000pt;}
.y81{bottom:240.866667pt;}
.y104{bottom:241.400000pt;}
.y136{bottom:244.333333pt;}
.y2c{bottom:250.200000pt;}
.ya6{bottom:251.533333pt;}
.y14f{bottom:254.466667pt;}
.y41{bottom:254.740000pt;}
.y80{bottom:257.933333pt;}
.y103{bottom:258.466667pt;}
.y1b8{bottom:258.733333pt;}
.y135{bottom:261.400000pt;}
.y178{bottom:263.533333pt;}
.y2b{bottom:267.533333pt;}
.ya5{bottom:268.600000pt;}
.y40{bottom:270.740000pt;}
.y7f{bottom:275.000000pt;}
.y102{bottom:275.533333pt;}
.yd6{bottom:277.933333pt;}
.y134{bottom:278.466667pt;}
.y19c{bottom:280.333333pt;}
.y177{bottom:280.600000pt;}
.y2a{bottom:284.866667pt;}
.ya4{bottom:286.466667pt;}
.y14e{bottom:287.533333pt;}
.y7e{bottom:292.066667pt;}
.y101{bottom:292.600000pt;}
.y3f{bottom:294.740000pt;}
.y133{bottom:295.560000pt;}
.y176{bottom:297.706667pt;}
.y19b{bottom:301.960000pt;}
.y29{bottom:302.226667pt;}
.y14d{bottom:304.626667pt;}
.ya3{bottom:307.560000pt;}
.y7d{bottom:309.440000pt;}
.y100{bottom:309.706667pt;}
.y132{bottom:312.640000pt;}
.y175{bottom:314.760000pt;}
.y3e{bottom:318.740000pt;}
.y28{bottom:319.560000pt;}
.y14c{bottom:321.706667pt;}
.yd2{bottom:323.293333pt;}
.y19a{bottom:323.826667pt;}
.y7c{bottom:326.506667pt;}
.yff{bottom:326.760000pt;}
.y131{bottom:329.693333pt;}
.y174{bottom:331.840000pt;}
.y3d{bottom:334.740000pt;}
.y27{bottom:336.893333pt;}
.ya2{bottom:340.626667pt;}
.y14b{bottom:342.773333pt;}
.y7b{bottom:343.560000pt;}
.yfe{bottom:343.840000pt;}
.y199{bottom:345.440000pt;}
.y1b7{bottom:345.706667pt;}
.y130{bottom:347.560000pt;}
.y173{bottom:348.893333pt;}
.y3c{bottom:350.766667pt;}
.y26{bottom:354.226667pt;}
.ya1{bottom:357.706667pt;}
.y7a{bottom:360.626667pt;}
.yfd{bottom:360.893333pt;}
.y12f{bottom:364.626667pt;}
.y172{bottom:365.960000pt;}
.y3b{bottom:366.766667pt;}
.y198{bottom:367.293333pt;}
.yd0{bottom:367.840000pt;}
.y25{bottom:371.560000pt;}
.ya0{bottom:374.773333pt;}
.y14a{bottom:375.840000pt;}
.y79{bottom:377.693333pt;}
.yfc{bottom:377.960000pt;}
.y12e{bottom:381.706667pt;}
.y3a{bottom:382.766667pt;}
.y24{bottom:388.893333pt;}
.y1b6{bottom:389.173333pt;}
.y9f{bottom:391.840000pt;}
.y149{bottom:392.893333pt;}
.y78{bottom:394.760000pt;}
.yfb{bottom:395.040000pt;}
.y39{bottom:398.766667pt;}
.y12d{bottom:398.773333pt;}
.y171{bottom:399.026667pt;}
.y23{bottom:406.226667pt;}
.y9e{bottom:408.893333pt;}
.y148{bottom:409.960000pt;}
.y197{bottom:410.773333pt;}
.ycc{bottom:411.560000pt;}
.y77{bottom:411.840000pt;}
.yfa{bottom:412.360000pt;}
.y38{bottom:414.766667pt;}
.y12c{bottom:415.840000pt;}
.y170{bottom:416.106667pt;}
.y22{bottom:423.560000pt;}
.y9d{bottom:425.960000pt;}
.y147{bottom:427.026667pt;}
.y76{bottom:428.893333pt;}
.yf9{bottom:429.440000pt;}
.y37{bottom:430.766667pt;}
.y196{bottom:432.360000pt;}
.y1b5{bottom:432.626667pt;}
.y12b{bottom:432.893333pt;}
.y16f{bottom:433.173333pt;}
.y21{bottom:440.893333pt;}
.y9c{bottom:443.026667pt;}
.y146{bottom:444.093333pt;}
.y75{bottom:446.000000pt;}
.yf8{bottom:446.533333pt;}
.y36{bottom:446.766667pt;}
.y12a{bottom:450.000000pt;}
.y16e{bottom:450.533333pt;}
.y195{bottom:454.266667pt;}
.yca{bottom:456.933333pt;}
.y20{bottom:458.266667pt;}
.y9b{bottom:460.133333pt;}
.y145{bottom:461.200000pt;}
.y74{bottom:463.066667pt;}
.yf7{bottom:463.600000pt;}
.y129{bottom:467.066667pt;}
.y16d{bottom:467.600000pt;}
.y1f{bottom:475.600000pt;}
.y194{bottom:475.866667pt;}
.y1b4{bottom:476.133333pt;}
.y9a{bottom:477.200000pt;}
.y144{bottom:478.533333pt;}
.y73{bottom:480.133333pt;}
.y128{bottom:484.133333pt;}
.yf6{bottom:484.666667pt;}
.y1e{bottom:492.933333pt;}
.y99{bottom:494.533333pt;}
.y72{bottom:497.200000pt;}
.y193{bottom:497.733333pt;}
.yc9{bottom:498.000000pt;}
.y143{bottom:499.600000pt;}
.y127{bottom:501.200000pt;}
.y16c{bottom:501.733333pt;}
.y1d{bottom:510.266667pt;}
.y98{bottom:511.600000pt;}
.yf5{bottom:517.733333pt;}
.y71{bottom:518.533333pt;}
.y16b{bottom:518.800000pt;}
.y192{bottom:519.333333pt;}
.y1b3{bottom:519.600000pt;}
.y1c{bottom:527.600000pt;}
.y97{bottom:528.666667pt;}
.yc8{bottom:531.600000pt;}
.y142{bottom:532.666667pt;}
.yf4{bottom:534.800000pt;}
.y126{bottom:535.600000pt;}
.y16a{bottom:535.866667pt;}
.y191{bottom:541.200000pt;}
.y1b{bottom:544.933333pt;}
.y96{bottom:545.733333pt;}
.yc7{bottom:548.666667pt;}
.y141{bottom:549.733333pt;}
.y70{bottom:551.600000pt;}
.yf3{bottom:551.866667pt;}
.y125{bottom:552.666667pt;}
.y169{bottom:552.933333pt;}
.y1a{bottom:562.266667pt;}
.y95{bottom:562.800000pt;}
.y1b2{bottom:563.066667pt;}
.yc6{bottom:565.733333pt;}
.y140{bottom:566.800000pt;}
.y6f{bottom:568.666667pt;}
.yf2{bottom:568.933333pt;}
.y124{bottom:569.733333pt;}
.y168{bottom:570.000000pt;}
.y19{bottom:579.600000pt;}
.y94{bottom:579.866667pt;}
.yc5{bottom:582.800000pt;}
.y190{bottom:584.666667pt;}
.y6e{bottom:585.733333pt;}
.y123{bottom:586.800000pt;}
.y167{bottom:587.066667pt;}
.y13f{bottom:587.866667pt;}
.y18{bottom:596.973333pt;}
.yc4{bottom:599.893333pt;}
.yf1{bottom:602.026667pt;}
.y6d{bottom:602.840000pt;}
.y122{bottom:603.893333pt;}
.y18f{bottom:606.293333pt;}
.y1b1{bottom:606.560000pt;}
.y93{bottom:614.026667pt;}
.y17{bottom:614.293333pt;}
.yc3{bottom:616.960000pt;}
.yf0{bottom:619.106667pt;}
.y6c{bottom:619.893333pt;}
.y166{bottom:620.160000pt;}
.y121{bottom:620.973333pt;}
.y18e{bottom:628.173333pt;}
.y92{bottom:631.106667pt;}
.y16{bottom:631.640000pt;}
.yc2{bottom:634.026667pt;}
.yef{bottom:636.173333pt;}
.y6b{bottom:636.960000pt;}
.y165{bottom:637.226667pt;}
.y120{bottom:638.026667pt;}
.y15{bottom:648.960000pt;}
.y18d{bottom:649.760000pt;}
.y1b0{bottom:650.026667pt;}
.yc1{bottom:651.893333pt;}
.y91{bottom:652.173333pt;}
.y6a{bottom:654.026667pt;}
.y11f{bottom:655.106667pt;}
.y164{bottom:658.306667pt;}
.y14{bottom:666.293333pt;}
.yc0{bottom:668.973333pt;}
.y69{bottom:671.093333pt;}
.y18c{bottom:671.626667pt;}
.y11e{bottom:672.173333pt;}
.y13{bottom:683.626667pt;}
.y90{bottom:685.226667pt;}
.ybf{bottom:686.040000pt;}
.y68{bottom:688.173333pt;}
.y11d{bottom:689.226667pt;}
.y163{bottom:691.626667pt;}
.y18b{bottom:693.226667pt;}
.y1af{bottom:693.506667pt;}
.y12{bottom:701.226667pt;}
.y8f{bottom:702.293333pt;}
.ybe{bottom:703.106667pt;}
.y67{bottom:705.226667pt;}
.y11c{bottom:706.293333pt;}
.y162{bottom:708.706667pt;}
.y18a{bottom:715.106667pt;}
.y8e{bottom:719.626667pt;}
.ybd{bottom:720.173333pt;}
.y66{bottom:722.293333pt;}
.yee{bottom:723.093333pt;}
.y11b{bottom:723.626667pt;}
.y161{bottom:725.773333pt;}
.y11{bottom:734.293333pt;}
.y8d{bottom:736.706667pt;}
.y1ae{bottom:736.960000pt;}
.ybc{bottom:737.226667pt;}
.y65{bottom:739.626667pt;}
.yed{bottom:740.173333pt;}
.y11a{bottom:740.706667pt;}
.y160{bottom:742.840000pt;}
.y10{bottom:751.133333pt;}
.ybb{bottom:754.333333pt;}
.y64{bottom:756.733333pt;}
.y8c{bottom:757.800000pt;}
.yec{bottom:758.066667pt;}
.y189{bottom:758.600000pt;}
.y15f{bottom:759.933333pt;}
.yf{bottom:765.533333pt;}
.y63{bottom:773.800000pt;}
.y8b{bottom:774.866667pt;}
.yeb{bottom:775.133333pt;}
.yba{bottom:775.400000pt;}
.y119{bottom:778.866667pt;}
.ye{bottom:779.933333pt;}
.y188{bottom:780.200000pt;}
.y1bd{bottom:780.466667pt;}
.y1ad{bottom:781.000000pt;}
.y62{bottom:790.866667pt;}
.y13e{bottom:791.933333pt;}
.yea{bottom:793.000000pt;}
.yd{bottom:794.333333pt;}
.y187{bottom:802.066667pt;}
.y61{bottom:807.933333pt;}
.yb9{bottom:808.466667pt;}
.y13d{bottom:809.000000pt;}
.ye9{bottom:809.800000pt;}
.y15e{bottom:810.066667pt;}
.y118{bottom:811.933333pt;}
.y186{bottom:823.666667pt;}
.y1bc{bottom:823.933333pt;}
.y1ac{bottom:824.466667pt;}
.y60{bottom:825.000000pt;}
.yb8{bottom:825.533333pt;}
.y13c{bottom:826.066667pt;}
.y15d{bottom:827.133333pt;}
.ye8{bottom:827.666667pt;}
.y117{bottom:829.000000pt;}
.yc{bottom:830.866667pt;}
.y5f{bottom:842.066667pt;}
.y13b{bottom:843.133333pt;}
.yb7{bottom:843.400000pt;}
.y15c{bottom:844.200000pt;}
.ye7{bottom:844.733333pt;}
.y185{bottom:845.533333pt;}
.y116{bottom:846.066667pt;}
.y5e{bottom:859.133333pt;}
.yb6{bottom:860.466667pt;}
.ye6{bottom:861.800000pt;}
.y115{bottom:863.133333pt;}
.y13a{bottom:864.200000pt;}
.y184{bottom:867.133333pt;}
.y1ab{bottom:867.400000pt;}
.yb{bottom:875.933333pt;}
.y5d{bottom:876.200000pt;}
.y15b{bottom:877.266667pt;}
.yb5{bottom:877.533333pt;}
.ye5{bottom:878.866667pt;}
.y114{bottom:880.200000pt;}
.y1aa{bottom:889.000000pt;}
.y183{bottom:890.333333pt;}
.y5c{bottom:893.266667pt;}
.y15a{bottom:894.333333pt;}
.yb4{bottom:895.400000pt;}
.ye4{bottom:895.933333pt;}
.y113{bottom:897.293333pt;}
.ya{bottom:908.506667pt;}
.y5b{bottom:910.360000pt;}
.y1a9{bottom:910.893333pt;}
.y159{bottom:911.440000pt;}
.yb3{bottom:912.506667pt;}
.ye3{bottom:913.040000pt;}
.y112{bottom:914.373333pt;}
.y182{bottom:922.893333pt;}
.y5a{bottom:927.426667pt;}
.ye2{bottom:930.106667pt;}
.yb2{bottom:930.373333pt;}
.y111{bottom:931.426667pt;}
.y1a8{bottom:932.506667pt;}
.y158{bottom:932.760000pt;}
.y9{bottom:940.760000pt;}
.y59{bottom:944.760000pt;}
.yb1{bottom:947.426667pt;}
.y110{bottom:948.760000pt;}
.y181{bottom:954.106667pt;}
.y1a7{bottom:954.360000pt;}
.y58{bottom:961.840000pt;}
.yb0{bottom:965.293333pt;}
.y10f{bottom:965.840000pt;}
.y180{bottom:969.840000pt;}
.y8{bottom:970.106667pt;}
.y1a6{bottom:975.960000pt;}
.y57{bottom:978.893333pt;}
.yaf{bottom:982.106667pt;}
.y10e{bottom:982.893333pt;}
.y1a5{bottom:997.840000pt;}
.y56{bottom:999.960000pt;}
.y17f{bottom:1001.293333pt;}
.y5{bottom:1002.893333pt;}
.y1{bottom:1008.506667pt;}
.y52{bottom:1017.293333pt;}
.y51{bottom:1034.360000pt;}
.y50{bottom:1043.173333pt;}
.h9{height:20.520833pt;}
.h10{height:27.289062pt;}
.h18{height:28.800000pt;}
.h11{height:29.895833pt;}
.ha{height:31.187500pt;}
.h6{height:31.270833pt;}
.hb{height:35.039062pt;}
.hc{height:35.085938pt;}
.hd{height:35.179688pt;}
.h4{height:38.932292pt;}
.h5{height:38.984375pt;}
.h7{height:39.088542pt;}
.h1e{height:39.937500pt;}
.h16{height:41.041667pt;}
.he{height:41.718750pt;}
.h3{height:42.825521pt;}
.h1a{height:43.200000pt;}
.h1b{height:43.733333pt;}
.h1c{height:44.266667pt;}
.h14{height:44.375000pt;}
.h1d{height:44.533333pt;}
.h19{height:44.833333pt;}
.h2{height:45.900000pt;}
.h15{height:46.354167pt;}
.h13{height:53.203125pt;}
.h17{height:54.818262pt;}
.h12{height:55.520833pt;}
.h8{height:70.078125pt;}
.hf{height:460.106667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:112.600000pt;}
.w6{width:160.866667pt;}
.w7{width:298.240000pt;}
.w3{width:302.200000pt;}
.w2{width:331.066667pt;}
.w8{width:401.466667pt;}
.w5{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:10.653333pt;}
.x12{left:11.986667pt;}
.x1a{left:13.600000pt;}
.x19{left:18.433333pt;}
.x1c{left:19.733333pt;}
.x14{left:22.966667pt;}
.x17{left:26.433333pt;}
.x15{left:34.433333pt;}
.x1{left:48.000000pt;}
.x1b{left:58.700000pt;}
.x7{left:72.566667pt;}
.x1e{left:76.566655pt;}
.x9{left:79.766655pt;}
.x18{left:83.226667pt;}
.xf{left:96.826667pt;}
.x11{left:140.320000pt;}
.x3{left:151.226667pt;}
.x13{left:176.320000pt;}
.x1d{left:182.186667pt;}
.xe{left:203.533322pt;}
.x5{left:221.933322pt;}
.x6{left:222.999988pt;}
.xb{left:245.933322pt;}
.xc{left:250.199988pt;}
.xd{left:269.973322pt;}
.x10{left:346.240000pt;}
.x2{left:379.066667pt;}
.x8{left:531.106655pt;}
.xa{left:574.306655pt;}
.x4{left:681.266667pt;}
}




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