
    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_50170b1b12297347ca682b4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_71604fdf37ef148b83e23f2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_54a0058919c2f300ba63a5b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_81225b4baae91032b1aa62cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d788ea0f2eda2a48f6fc0abc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_381e74fb89f4628df6c65cc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_efd8e52451867aa1930c0976.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_325311d59fb7efb89dfdc2dc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_25d5360bcd7c059abaf312fb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-6.060000px;}
.ls26{letter-spacing:-3.906000px;}
.ls16{letter-spacing:-3.816000px;}
.ls20{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.290000px;}
.ls27{letter-spacing:-1.026000px;}
.ls9{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.684000px;}
.ls21{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.219000px;}
.ls10{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.166800px;}
.ls1f{letter-spacing:-0.152400px;}
.ls1e{letter-spacing:-0.109200px;}
.ls13{letter-spacing:-0.051840px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.152400px;}
.ls1a{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.219000px;}
.ls17{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.792000px;}
.ls18{letter-spacing:5.760000px;}
.ls19{letter-spacing:8.640000px;}
.ls22{letter-spacing:10.080000px;}
.ls23{letter-spacing:10.800000px;}
.ls24{letter-spacing:18.180000px;}
.ls25{letter-spacing:21.600000px;}
.lse{letter-spacing:32.520000px;}
.lsf{letter-spacing:33.960000px;}
.ls3{letter-spacing:53.424000px;}
.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;}
}
.ws2{word-spacing:-21.401400px;}
.ws3{word-spacing:-20.376000px;}
.wsc{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.865400px;}
.ws13{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.450800px;}
.ws16{word-spacing:-16.407600px;}
.ws14{word-spacing:-16.254600px;}
.ws5{word-spacing:-16.145400px;}
.ws17{word-spacing:-16.102200px;}
.ws11{word-spacing:-16.059000px;}
.ws6{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.788160px;}
.wsf{word-spacing:-15.621000px;}
.ws18{word-spacing:-15.534000px;}
.ws0{word-spacing:-15.300000px;}
.ws12{word-spacing:-14.184000px;}
.wse{word-spacing:-11.940000px;}
.ws8{word-spacing:0.000000px;}
._24{margin-left:-7.344000px;}
._15{margin-left:-6.220320px;}
._9{margin-left:-4.977600px;}
._5{margin-left:-3.624000px;}
._1{margin-left:-2.450160px;}
._2{margin-left:-1.086720px;}
._0{width:1.135440px;}
._d{width:2.157840px;}
._3{width:3.161280px;}
._8{width:4.590480px;}
._16{width:6.353520px;}
._c{width:7.848000px;}
._6{width:9.073920px;}
._10{width:10.167120px;}
._4{width:11.910720px;}
._a{width:12.960000px;}
._b{width:14.056560px;}
._e{width:15.480000px;}
._1a{width:16.850160px;}
._7{width:17.932800px;}
._18{width:19.368000px;}
._11{width:20.952000px;}
._12{width:22.032000px;}
._21{width:23.040000px;}
._17{width:24.840000px;}
._f{width:26.568000px;}
._19{width:27.648000px;}
._1b{width:29.016000px;}
._1c{width:30.328560px;}
._23{width:31.646880px;}
._25{width:33.000000px;}
._1f{width:34.176000px;}
._20{width:35.990160px;}
._22{width:37.617840px;}
._13{width:38.712000px;}
._14{width:40.320000px;}
._1e{width:41.688000px;}
._1d{width:43.632000px;}
._27{width:44.935680px;}
._28{width:46.474560px;}
._26{width:55.885440px;}
._29{width:73.572480px;}
._2a{width:93.055680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y13f{bottom:3.420000px;}
.y154{bottom:3.450000px;}
.y145{bottom:6.480000px;}
.y144{bottom:9.000000px;}
.y158{bottom:12.420000px;}
.y14a{bottom:21.420000px;}
.y13e{bottom:21.600000px;}
.y157{bottom:21.960000px;}
.y14b{bottom:31.860000px;}
.y13d{bottom:39.600000px;}
.y152{bottom:39.780000px;}
.y142{bottom:39.825000px;}
.y150{bottom:39.960000px;}
.y4{bottom:58.896000px;}
.y148{bottom:59.400000px;}
.y3{bottom:79.776000px;}
.y119{bottom:177.150000px;}
.y166{bottom:186.510000px;}
.y71{bottom:187.410000px;}
.y162{bottom:190.110000px;}
.y13a{bottom:190.290000px;}
.ydc{bottom:191.010000px;}
.y2c{bottom:191.370000px;}
.yb7{bottom:195.510000px;}
.y118{bottom:197.850000px;}
.y165{bottom:207.210000px;}
.y70{bottom:208.110000px;}
.y161{bottom:209.010000px;}
.y1a2{bottom:210.630000px;}
.y139{bottom:210.990000px;}
.ydb{bottom:211.710000px;}
.y2b{bottom:212.070000px;}
.yfa{bottom:215.850000px;}
.yb6{bottom:216.210000px;}
.y17d{bottom:220.710000px;}
.y117{bottom:226.110000px;}
.y160{bottom:227.730000px;}
.y164{bottom:227.910000px;}
.y6f{bottom:228.810000px;}
.y1a1{bottom:229.890000px;}
.y138{bottom:231.690000px;}
.yda{bottom:232.410000px;}
.y2a{bottom:232.770000px;}
.yf9{bottom:236.550000px;}
.yb5{bottom:236.910000px;}
.y17c{bottom:239.970000px;}
.y97{bottom:245.190000px;}
.y15f{bottom:246.630000px;}
.y116{bottom:246.810000px;}
.y163{bottom:248.610000px;}
.y6e{bottom:249.510000px;}
.y137{bottom:252.390000px;}
.yd9{bottom:253.110000px;}
.y29{bottom:253.470000px;}
.yf8{bottom:257.250000px;}
.yb4{bottom:257.610000px;}
.y1a0{bottom:260.670000px;}
.y15e{bottom:265.530000px;}
.y96{bottom:265.890000px;}
.y115{bottom:267.510000px;}
.y54{bottom:269.310000px;}
.y6d{bottom:270.210000px;}
.y17b{bottom:270.750000px;}
.y136{bottom:273.090000px;}
.yd8{bottom:273.810000px;}
.y28{bottom:274.170000px;}
.yf7{bottom:277.950000px;}
.yb3{bottom:278.310000px;}
.y19f{bottom:279.795000px;}
.y15d{bottom:284.475000px;}
.y95{bottom:286.635000px;}
.y17a{bottom:289.875000px;}
.y53{bottom:290.055000px;}
.y6c{bottom:290.955000px;}
.y135{bottom:293.835000px;}
.yd7{bottom:294.555000px;}
.y27{bottom:294.915000px;}
.y1bc{bottom:297.795000px;}
.yf6{bottom:298.695000px;}
.y114{bottom:300.135000px;}
.y94{bottom:307.335000px;}
.y19e{bottom:310.575000px;}
.y52{bottom:310.755000px;}
.yb2{bottom:310.935000px;}
.y6b{bottom:311.655000px;}
.y134{bottom:314.535000px;}
.yd6{bottom:315.255000px;}
.y26{bottom:315.615000px;}
.y1bb{bottom:316.875000px;}
.yf5{bottom:319.395000px;}
.y179{bottom:320.655000px;}
.y113{bottom:320.835000px;}
.y15c{bottom:321.375000px;}
.y93{bottom:328.035000px;}
.y19d{bottom:329.835000px;}
.y51{bottom:331.455000px;}
.yb1{bottom:331.635000px;}
.y6a{bottom:332.355000px;}
.y133{bottom:335.235000px;}
.y1ba{bottom:335.775000px;}
.yd5{bottom:335.955000px;}
.y25{bottom:336.315000px;}
.y178{bottom:339.915000px;}
.yf4{bottom:340.095000px;}
.y112{bottom:341.535000px;}
.y50{bottom:352.155000px;}
.yb0{bottom:352.335000px;}
.y69{bottom:353.055000px;}
.y1b9{bottom:354.855000px;}
.y132{bottom:355.935000px;}
.y92{bottom:356.295000px;}
.yd4{bottom:356.655000px;}
.y24{bottom:357.015000px;}
.y19c{bottom:360.615000px;}
.y111{bottom:362.235000px;}
.y177{bottom:370.695000px;}
.y4f{bottom:372.855000px;}
.yaf{bottom:373.035000px;}
.y68{bottom:373.755000px;}
.y15b{bottom:376.455000px;}
.y131{bottom:376.635000px;}
.y91{bottom:376.995000px;}
.yd3{bottom:377.355000px;}
.y23{bottom:377.715000px;}
.y19b{bottom:379.695000px;}
.y110{bottom:382.935000px;}
.y176{bottom:389.775000px;}
.y1b8{bottom:392.655000px;}
.y4e{bottom:393.375000px;}
.yae{bottom:393.735000px;}
.y67{bottom:394.455000px;}
.y15a{bottom:395.355000px;}
.y130{bottom:397.335000px;}
.y22{bottom:398.415000px;}
.y10f{bottom:403.635000px;}
.y90{bottom:405.075000px;}
.yd2{bottom:409.935000px;}
.y19a{bottom:410.475000px;}
.y4d{bottom:414.075000px;}
.yad{bottom:414.435000px;}
.y66{bottom:415.155000px;}
.y12f{bottom:418.035000px;}
.y21{bottom:419.115000px;}
.y10e{bottom:424.335000px;}
.y8f{bottom:425.775000px;}
.y199{bottom:429.735000px;}
.y175{bottom:430.095000px;}
.yd1{bottom:430.635000px;}
.y4c{bottom:434.775000px;}
.yac{bottom:435.135000px;}
.y65{bottom:435.855000px;}
.y12e{bottom:438.735000px;}
.y20{bottom:439.815000px;}
.yf3{bottom:442.335000px;}
.y159{bottom:450.435000px;}
.yd0{bottom:451.335000px;}
.y4b{bottom:455.475000px;}
.yab{bottom:455.835000px;}
.y64{bottom:456.375000px;}
.y10d{bottom:457.095000px;}
.y8e{bottom:458.535000px;}
.y12d{bottom:459.435000px;}
.y1f{bottom:460.515000px;}
.yf2{bottom:463.035000px;}
.y1b7{bottom:465.555000px;}
.ycf{bottom:472.035000px;}
.y4a{bottom:476.175000px;}
.yaa{bottom:476.535000px;}
.y63{bottom:477.075000px;}
.y10c{bottom:477.795000px;}
.y8d{bottom:479.235000px;}
.y198{bottom:479.595000px;}
.y12c{bottom:480.135000px;}
.y1e{bottom:481.215000px;}
.yf1{bottom:483.735000px;}
.y1b6{bottom:484.635000px;}
.yce{bottom:492.735000px;}
.y49{bottom:496.875000px;}
.ya9{bottom:497.235000px;}
.y62{bottom:497.775000px;}
.y10b{bottom:498.495000px;}
.y8c{bottom:499.935000px;}
.y12b{bottom:500.835000px;}
.y1d{bottom:501.915000px;}
.y156{bottom:505.515000px;}
.y197{bottom:510.375000px;}
.yf0{bottom:511.995000px;}
.ycd{bottom:513.435000px;}
.y1b5{bottom:515.415000px;}
.y48{bottom:517.575000px;}
.ya8{bottom:517.935000px;}
.y61{bottom:518.475000px;}
.y10a{bottom:519.195000px;}
.y12a{bottom:521.535000px;}
.y1c{bottom:522.615000px;}
.y196{bottom:529.635000px;}
.y8b{bottom:532.695000px;}
.y174{bottom:534.135000px;}
.y1b4{bottom:534.675000px;}
.y47{bottom:538.275000px;}
.ya7{bottom:538.635000px;}
.y60{bottom:539.175000px;}
.y109{bottom:539.895000px;}
.ycc{bottom:541.695000px;}
.y129{bottom:542.235000px;}
.y155{bottom:542.415000px;}
.y1b{bottom:543.315000px;}
.y8a{bottom:553.395000px;}
.y173{bottom:554.835000px;}
.y46{bottom:558.975000px;}
.ya6{bottom:559.335000px;}
.y5f{bottom:559.875000px;}
.y195{bottom:560.415000px;}
.y108{bottom:560.595000px;}
.y153{bottom:561.315000px;}
.ycb{bottom:562.395000px;}
.y128{bottom:562.965000px;}
.y1a{bottom:564.045000px;}
.y1b3{bottom:565.485000px;}
.y89{bottom:574.125000px;}
.y172{bottom:575.565000px;}
.y45{bottom:579.705000px;}
.ya5{bottom:580.065000px;}
.y14f{bottom:580.245000px;}
.y5e{bottom:580.605000px;}
.yef{bottom:581.505000px;}
.yca{bottom:583.125000px;}
.y127{bottom:583.665000px;}
.y19{bottom:584.745000px;}
.y107{bottom:588.705000px;}
.y194{bottom:591.405000px;}
.y88{bottom:594.825000px;}
.y171{bottom:596.265000px;}
.y1b2{bottom:596.445000px;}
.y44{bottom:600.405000px;}
.ya4{bottom:600.765000px;}
.y5d{bottom:601.305000px;}
.yee{bottom:602.205000px;}
.yc9{bottom:603.825000px;}
.y126{bottom:604.365000px;}
.y18{bottom:605.445000px;}
.y106{bottom:609.405000px;}
.y193{bottom:610.485000px;}
.y87{bottom:615.525000px;}
.y170{bottom:616.965000px;}
.y151{bottom:617.145000px;}
.y43{bottom:621.105000px;}
.ya3{bottom:621.465000px;}
.y5c{bottom:622.005000px;}
.yed{bottom:622.905000px;}
.yc8{bottom:624.525000px;}
.y125{bottom:625.065000px;}
.y105{bottom:630.105000px;}
.y1b1{bottom:634.605000px;}
.y86{bottom:636.225000px;}
.y16f{bottom:637.665000px;}
.y192{bottom:641.265000px;}
.y42{bottom:641.805000px;}
.ya2{bottom:642.165000px;}
.y5b{bottom:642.705000px;}
.yc7{bottom:645.225000px;}
.y124{bottom:645.765000px;}
.y17{bottom:647.205000px;}
.y104{bottom:650.805000px;}
.yec{bottom:651.165000px;}
.y16e{bottom:658.365000px;}
.y191{bottom:660.525000px;}
.y41{bottom:662.505000px;}
.y72{bottom:662.865000px;}
.y5a{bottom:663.405000px;}
.y85{bottom:664.305000px;}
.y1b0{bottom:665.385000px;}
.y123{bottom:666.465000px;}
.yeb{bottom:671.865000px;}
.y147{bottom:672.225000px;}
.yc6{bottom:673.305000px;}
.y16d{bottom:679.065000px;}
.y40{bottom:683.205000px;}
.ya1{bottom:683.565000px;}
.y59{bottom:684.105000px;}
.y84{bottom:685.005000px;}
.y122{bottom:687.165000px;}
.y14e{bottom:691.125000px;}
.y190{bottom:691.305000px;}
.yea{bottom:692.565000px;}
.yc5{bottom:694.005000px;}
.y1af{bottom:696.345000px;}
.y16c{bottom:699.765000px;}
.ya0{bottom:704.265000px;}
.y58{bottom:704.805000px;}
.y83{bottom:705.705000px;}
.y121{bottom:707.865000px;}
.y16{bottom:709.485000px;}
.y14d{bottom:710.025000px;}
.y18f{bottom:710.385000px;}
.yc4{bottom:714.705000px;}
.y1ae{bottom:715.425000px;}
.y3f{bottom:724.965000px;}
.ye9{bottom:725.325000px;}
.y57{bottom:725.505000px;}
.y82{bottom:726.405000px;}
.y14c{bottom:728.925000px;}
.y16b{bottom:732.525000px;}
.y1ad{bottom:734.505000px;}
.yc3{bottom:735.405000px;}
.y18e{bottom:741.165000px;}
.y9f{bottom:745.665000px;}
.ye8{bottom:746.025000px;}
.y56{bottom:746.205000px;}
.y81{bottom:747.105000px;}
.y149{bottom:747.825000px;}
.y15{bottom:749.445000px;}
.y120{bottom:749.625000px;}
.yc2{bottom:756.105000px;}
.y18d{bottom:760.425000px;}
.y16a{bottom:760.605000px;}
.y1ac{bottom:765.285000px;}
.y9e{bottom:766.365000px;}
.ye7{bottom:766.725000px;}
.y55{bottom:766.905000px;}
.y80{bottom:767.805000px;}
.y14{bottom:768.525000px;}
.yc1{bottom:776.805000px;}
.y169{bottom:781.305000px;}
.y1ab{bottom:784.365000px;}
.y9d{bottom:787.065000px;}
.y13{bottom:787.425000px;}
.y3e{bottom:787.605000px;}
.y7f{bottom:788.505000px;}
.y18c{bottom:791.205000px;}
.yc0{bottom:797.505000px;}
.y146{bottom:802.905000px;}
.y12{bottom:806.505000px;}
.y9c{bottom:807.765000px;}
.ye6{bottom:808.125000px;}
.y3d{bottom:808.305000px;}
.y168{bottom:809.565000px;}
.y11f{bottom:812.265000px;}
.y1aa{bottom:815.145000px;}
.y7e{bottom:816.765000px;}
.y141{bottom:821.625000px;}
.y18b{bottom:822.165000px;}
.y11{bottom:825.405000px;}
.y9b{bottom:828.465000px;}
.ye5{bottom:828.825000px;}
.y3c{bottom:829.005000px;}
.ybf{bottom:830.265000px;}
.y1a9{bottom:834.405000px;}
.y7d{bottom:837.465000px;}
.y167{bottom:837.825000px;}
.y11e{bottom:840.525000px;}
.y18a{bottom:841.245000px;}
.y10{bottom:844.305000px;}
.y143{bottom:846.690000px;}
.y9a{bottom:849.210000px;}
.ye4{bottom:849.570000px;}
.y3b{bottom:849.750000px;}
.y7c{bottom:858.210000px;}
.y11d{bottom:861.270000px;}
.ybe{bottom:863.070000px;}
.yf{bottom:863.430000px;}
.y1a8{bottom:865.230000px;}
.y99{bottom:869.910000px;}
.ye3{bottom:870.270000px;}
.y3a{bottom:870.450000px;}
.y189{bottom:872.070000px;}
.y140{bottom:876.750000px;}
.y7b{bottom:878.910000px;}
.y11c{bottom:881.970000px;}
.ye{bottom:882.330000px;}
.ybd{bottom:883.770000px;}
.y1a7{bottom:884.310000px;}
.ye2{bottom:890.970000px;}
.y39{bottom:891.150000px;}
.y188{bottom:891.330000px;}
.y13c{bottom:895.650000px;}
.y7a{bottom:899.610000px;}
.yd{bottom:901.410000px;}
.y103{bottom:902.670000px;}
.y1a6{bottom:903.210000px;}
.ybc{bottom:904.470000px;}
.y11b{bottom:910.050000px;}
.y98{bottom:911.490000px;}
.ye1{bottom:911.670000px;}
.y38{bottom:911.850000px;}
.yc{bottom:920.310000px;}
.y187{bottom:922.110000px;}
.y102{bottom:923.370000px;}
.ybb{bottom:925.170000px;}
.y11a{bottom:930.750000px;}
.ye0{bottom:932.370000px;}
.y37{bottom:932.550000px;}
.y1a5{bottom:933.990000px;}
.yb{bottom:939.210000px;}
.y79{bottom:941.010000px;}
.y186{bottom:941.190000px;}
.yba{bottom:945.870000px;}
.y101{bottom:951.450000px;}
.ydf{bottom:953.070000px;}
.y36{bottom:953.250000px;}
.ya{bottom:958.290000px;}
.y78{bottom:961.710000px;}
.y13b{bottom:963.150000px;}
.yb9{bottom:966.570000px;}
.y185{bottom:971.970000px;}
.y100{bottom:972.150000px;}
.yde{bottom:973.770000px;}
.y35{bottom:973.950000px;}
.y9{bottom:977.190000px;}
.y77{bottom:982.410000px;}
.yb8{bottom:987.270000px;}
.y184{bottom:991.230000px;}
.ydd{bottom:994.470000px;}
.y34{bottom:994.650000px;}
.y8{bottom:996.270000px;}
.yff{bottom:1000.410000px;}
.y1a4{bottom:1002.930000px;}
.y7{bottom:1015.170000px;}
.y33{bottom:1015.350000px;}
.yfe{bottom:1021.110000px;}
.y183{bottom:1022.010000px;}
.y1a3{bottom:1022.190000px;}
.y76{bottom:1035.870000px;}
.y32{bottom:1036.050000px;}
.y182{bottom:1041.090000px;}
.yfd{bottom:1049.370000px;}
.y75{bottom:1056.570000px;}
.y31{bottom:1056.750000px;}
.yfc{bottom:1070.070000px;}
.y181{bottom:1071.870000px;}
.y74{bottom:1077.270000px;}
.y30{bottom:1077.450000px;}
.y6{bottom:1085.370000px;}
.yfb{bottom:1090.770000px;}
.y180{bottom:1091.130000px;}
.y73{bottom:1097.970000px;}
.y2f{bottom:1098.150000px;}
.y5{bottom:1115.610000px;}
.y2e{bottom:1118.850000px;}
.y17f{bottom:1121.910000px;}
.y2d{bottom:1139.580000px;}
.y17e{bottom:1141.020000px;}
.y2{bottom:1177.380000px;}
.y1{bottom:1194.660000px;}
.h14{height:18.000000px;}
.h10{height:18.180000px;}
.h1a{height:18.216000px;}
.h13{height:24.300000px;}
.h12{height:29.340000px;}
.h19{height:36.180000px;}
.h9{height:50.510039px;}
.h1c{height:50.800781px;}
.h8{height:52.417969px;}
.h2{height:53.573906px;}
.h6{height:53.755312px;}
.h16{height:54.180000px;}
.he{height:54.360000px;}
.h11{height:54.396000px;}
.h7{height:54.596250px;}
.h1b{height:55.080000px;}
.hf{height:56.801250px;}
.ha{height:59.343750px;}
.hd{height:59.383125px;}
.h5{height:59.436914px;}
.h4{height:60.855469px;}
.h3{height:64.546875px;}
.h17{height:74.700000px;}
.hb{height:75.519844px;}
.hc{height:85.847344px;}
.h18{height:91.260000px;}
.h15{height:129.780000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:105.480000px;}
.w8{width:105.516000px;}
.w6{width:105.696000px;}
.w4{width:116.136000px;}
.w3{width:124.380000px;}
.w5{width:126.720000px;}
.w9{width:687.885000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x19{left:13.860000px;}
.x15{left:20.370000px;}
.xb{left:21.420000px;}
.xd{left:22.680000px;}
.x11{left:25.560000px;}
.xe{left:28.800000px;}
.x16{left:31.710000px;}
.x18{left:33.660000px;}
.xf{left:37.080000px;}
.x12{left:38.700000px;}
.xa{left:39.780000px;}
.x13{left:42.300000px;}
.x1{left:106.415987px;}
.x9{left:133.235987px;}
.x8{left:138.275987px;}
.x5{left:148.895987px;}
.x6{left:159.509987px;}
.xc{left:232.230000px;}
.x4{left:237.089987px;}
.x3{left:261.209987px;}
.x1b{left:274.539000px;}
.x1d{left:276.699000px;}
.x10{left:349.275000px;}
.x14{left:476.715000px;}
.x17{left:583.125000px;}
.x7{left:647.564987px;}
.x1a{left:689.505000px;}
.x2{left:768.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-5.386667pt;}
.ls26{letter-spacing:-3.472000pt;}
.ls16{letter-spacing:-3.392000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.146667pt;}
.ls27{letter-spacing:-0.912000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls21{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.194667pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.148267pt;}
.ls1f{letter-spacing:-0.135467pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls13{letter-spacing:-0.046080pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.135467pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.194667pt;}
.ls17{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.704000pt;}
.ls18{letter-spacing:5.120000pt;}
.ls19{letter-spacing:7.680000pt;}
.ls22{letter-spacing:8.960000pt;}
.ls23{letter-spacing:9.600000pt;}
.ls24{letter-spacing:16.160000pt;}
.ls25{letter-spacing:19.200000pt;}
.lse{letter-spacing:28.906667pt;}
.lsf{letter-spacing:30.186667pt;}
.ls3{letter-spacing:47.488000pt;}
.ws2{word-spacing:-19.023467pt;}
.ws3{word-spacing:-18.112000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.991467pt;}
.ws13{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.622933pt;}
.ws16{word-spacing:-14.584533pt;}
.ws14{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.351467pt;}
.ws17{word-spacing:-14.313067pt;}
.ws11{word-spacing:-14.274667pt;}
.ws6{word-spacing:-14.080000pt;}
.ws10{word-spacing:-14.033920pt;}
.wsf{word-spacing:-13.885333pt;}
.ws18{word-spacing:-13.808000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws12{word-spacing:-12.608000pt;}
.wse{word-spacing:-10.613333pt;}
.ws8{word-spacing:0.000000pt;}
._24{margin-left:-6.528000pt;}
._15{margin-left:-5.529173pt;}
._9{margin-left:-4.424533pt;}
._5{margin-left:-3.221333pt;}
._1{margin-left:-2.177920pt;}
._2{margin-left:-0.965973pt;}
._0{width:1.009280pt;}
._d{width:1.918080pt;}
._3{width:2.810027pt;}
._8{width:4.080427pt;}
._16{width:5.647573pt;}
._c{width:6.976000pt;}
._6{width:8.065707pt;}
._10{width:9.037440pt;}
._4{width:10.587307pt;}
._a{width:11.520000pt;}
._b{width:12.494720pt;}
._e{width:13.760000pt;}
._1a{width:14.977920pt;}
._7{width:15.940267pt;}
._18{width:17.216000pt;}
._11{width:18.624000pt;}
._12{width:19.584000pt;}
._21{width:20.480000pt;}
._17{width:22.080000pt;}
._f{width:23.616000pt;}
._19{width:24.576000pt;}
._1b{width:25.792000pt;}
._1c{width:26.958720pt;}
._23{width:28.130560pt;}
._25{width:29.333333pt;}
._1f{width:30.378667pt;}
._20{width:31.991253pt;}
._22{width:33.438080pt;}
._13{width:34.410667pt;}
._14{width:35.840000pt;}
._1e{width:37.056000pt;}
._1d{width:38.784000pt;}
._27{width:39.942827pt;}
._28{width:41.310720pt;}
._26{width:49.675947pt;}
._29{width:65.397760pt;}
._2a{width:82.716160pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:3.040000pt;}
.y154{bottom:3.066667pt;}
.y145{bottom:5.760000pt;}
.y144{bottom:8.000000pt;}
.y158{bottom:11.040000pt;}
.y14a{bottom:19.040000pt;}
.y13e{bottom:19.200000pt;}
.y157{bottom:19.520000pt;}
.y14b{bottom:28.320000pt;}
.y13d{bottom:35.200000pt;}
.y152{bottom:35.360000pt;}
.y142{bottom:35.400000pt;}
.y150{bottom:35.520000pt;}
.y4{bottom:52.352000pt;}
.y148{bottom:52.800000pt;}
.y3{bottom:70.912000pt;}
.y119{bottom:157.466667pt;}
.y166{bottom:165.786667pt;}
.y71{bottom:166.586667pt;}
.y162{bottom:168.986667pt;}
.y13a{bottom:169.146667pt;}
.ydc{bottom:169.786667pt;}
.y2c{bottom:170.106667pt;}
.yb7{bottom:173.786667pt;}
.y118{bottom:175.866667pt;}
.y165{bottom:184.186667pt;}
.y70{bottom:184.986667pt;}
.y161{bottom:185.786667pt;}
.y1a2{bottom:187.226667pt;}
.y139{bottom:187.546667pt;}
.ydb{bottom:188.186667pt;}
.y2b{bottom:188.506667pt;}
.yfa{bottom:191.866667pt;}
.yb6{bottom:192.186667pt;}
.y17d{bottom:196.186667pt;}
.y117{bottom:200.986667pt;}
.y160{bottom:202.426667pt;}
.y164{bottom:202.586667pt;}
.y6f{bottom:203.386667pt;}
.y1a1{bottom:204.346667pt;}
.y138{bottom:205.946667pt;}
.yda{bottom:206.586667pt;}
.y2a{bottom:206.906667pt;}
.yf9{bottom:210.266667pt;}
.yb5{bottom:210.586667pt;}
.y17c{bottom:213.306667pt;}
.y97{bottom:217.946667pt;}
.y15f{bottom:219.226667pt;}
.y116{bottom:219.386667pt;}
.y163{bottom:220.986667pt;}
.y6e{bottom:221.786667pt;}
.y137{bottom:224.346667pt;}
.yd9{bottom:224.986667pt;}
.y29{bottom:225.306667pt;}
.yf8{bottom:228.666667pt;}
.yb4{bottom:228.986667pt;}
.y1a0{bottom:231.706667pt;}
.y15e{bottom:236.026667pt;}
.y96{bottom:236.346667pt;}
.y115{bottom:237.786667pt;}
.y54{bottom:239.386667pt;}
.y6d{bottom:240.186667pt;}
.y17b{bottom:240.666667pt;}
.y136{bottom:242.746667pt;}
.yd8{bottom:243.386667pt;}
.y28{bottom:243.706667pt;}
.yf7{bottom:247.066667pt;}
.yb3{bottom:247.386667pt;}
.y19f{bottom:248.706667pt;}
.y15d{bottom:252.866667pt;}
.y95{bottom:254.786667pt;}
.y17a{bottom:257.666667pt;}
.y53{bottom:257.826667pt;}
.y6c{bottom:258.626667pt;}
.y135{bottom:261.186667pt;}
.yd7{bottom:261.826667pt;}
.y27{bottom:262.146667pt;}
.y1bc{bottom:264.706667pt;}
.yf6{bottom:265.506667pt;}
.y114{bottom:266.786667pt;}
.y94{bottom:273.186667pt;}
.y19e{bottom:276.066667pt;}
.y52{bottom:276.226667pt;}
.yb2{bottom:276.386667pt;}
.y6b{bottom:277.026667pt;}
.y134{bottom:279.586667pt;}
.yd6{bottom:280.226667pt;}
.y26{bottom:280.546667pt;}
.y1bb{bottom:281.666667pt;}
.yf5{bottom:283.906667pt;}
.y179{bottom:285.026667pt;}
.y113{bottom:285.186667pt;}
.y15c{bottom:285.666667pt;}
.y93{bottom:291.586667pt;}
.y19d{bottom:293.186667pt;}
.y51{bottom:294.626667pt;}
.yb1{bottom:294.786667pt;}
.y6a{bottom:295.426667pt;}
.y133{bottom:297.986667pt;}
.y1ba{bottom:298.466667pt;}
.yd5{bottom:298.626667pt;}
.y25{bottom:298.946667pt;}
.y178{bottom:302.146667pt;}
.yf4{bottom:302.306667pt;}
.y112{bottom:303.586667pt;}
.y50{bottom:313.026667pt;}
.yb0{bottom:313.186667pt;}
.y69{bottom:313.826667pt;}
.y1b9{bottom:315.426667pt;}
.y132{bottom:316.386667pt;}
.y92{bottom:316.706667pt;}
.yd4{bottom:317.026667pt;}
.y24{bottom:317.346667pt;}
.y19c{bottom:320.546667pt;}
.y111{bottom:321.986667pt;}
.y177{bottom:329.506667pt;}
.y4f{bottom:331.426667pt;}
.yaf{bottom:331.586667pt;}
.y68{bottom:332.226667pt;}
.y15b{bottom:334.626667pt;}
.y131{bottom:334.786667pt;}
.y91{bottom:335.106667pt;}
.yd3{bottom:335.426667pt;}
.y23{bottom:335.746667pt;}
.y19b{bottom:337.506667pt;}
.y110{bottom:340.386667pt;}
.y176{bottom:346.466667pt;}
.y1b8{bottom:349.026667pt;}
.y4e{bottom:349.666667pt;}
.yae{bottom:349.986667pt;}
.y67{bottom:350.626667pt;}
.y15a{bottom:351.426667pt;}
.y130{bottom:353.186667pt;}
.y22{bottom:354.146667pt;}
.y10f{bottom:358.786667pt;}
.y90{bottom:360.066667pt;}
.yd2{bottom:364.386667pt;}
.y19a{bottom:364.866667pt;}
.y4d{bottom:368.066667pt;}
.yad{bottom:368.386667pt;}
.y66{bottom:369.026667pt;}
.y12f{bottom:371.586667pt;}
.y21{bottom:372.546667pt;}
.y10e{bottom:377.186667pt;}
.y8f{bottom:378.466667pt;}
.y199{bottom:381.986667pt;}
.y175{bottom:382.306667pt;}
.yd1{bottom:382.786667pt;}
.y4c{bottom:386.466667pt;}
.yac{bottom:386.786667pt;}
.y65{bottom:387.426667pt;}
.y12e{bottom:389.986667pt;}
.y20{bottom:390.946667pt;}
.yf3{bottom:393.186667pt;}
.y159{bottom:400.386667pt;}
.yd0{bottom:401.186667pt;}
.y4b{bottom:404.866667pt;}
.yab{bottom:405.186667pt;}
.y64{bottom:405.666667pt;}
.y10d{bottom:406.306667pt;}
.y8e{bottom:407.586667pt;}
.y12d{bottom:408.386667pt;}
.y1f{bottom:409.346667pt;}
.yf2{bottom:411.586667pt;}
.y1b7{bottom:413.826667pt;}
.ycf{bottom:419.586667pt;}
.y4a{bottom:423.266667pt;}
.yaa{bottom:423.586667pt;}
.y63{bottom:424.066667pt;}
.y10c{bottom:424.706667pt;}
.y8d{bottom:425.986667pt;}
.y198{bottom:426.306667pt;}
.y12c{bottom:426.786667pt;}
.y1e{bottom:427.746667pt;}
.yf1{bottom:429.986667pt;}
.y1b6{bottom:430.786667pt;}
.yce{bottom:437.986667pt;}
.y49{bottom:441.666667pt;}
.ya9{bottom:441.986667pt;}
.y62{bottom:442.466667pt;}
.y10b{bottom:443.106667pt;}
.y8c{bottom:444.386667pt;}
.y12b{bottom:445.186667pt;}
.y1d{bottom:446.146667pt;}
.y156{bottom:449.346667pt;}
.y197{bottom:453.666667pt;}
.yf0{bottom:455.106667pt;}
.ycd{bottom:456.386667pt;}
.y1b5{bottom:458.146667pt;}
.y48{bottom:460.066667pt;}
.ya8{bottom:460.386667pt;}
.y61{bottom:460.866667pt;}
.y10a{bottom:461.506667pt;}
.y12a{bottom:463.586667pt;}
.y1c{bottom:464.546667pt;}
.y196{bottom:470.786667pt;}
.y8b{bottom:473.506667pt;}
.y174{bottom:474.786667pt;}
.y1b4{bottom:475.266667pt;}
.y47{bottom:478.466667pt;}
.ya7{bottom:478.786667pt;}
.y60{bottom:479.266667pt;}
.y109{bottom:479.906667pt;}
.ycc{bottom:481.506667pt;}
.y129{bottom:481.986667pt;}
.y155{bottom:482.146667pt;}
.y1b{bottom:482.946667pt;}
.y8a{bottom:491.906667pt;}
.y173{bottom:493.186667pt;}
.y46{bottom:496.866667pt;}
.ya6{bottom:497.186667pt;}
.y5f{bottom:497.666667pt;}
.y195{bottom:498.146667pt;}
.y108{bottom:498.306667pt;}
.y153{bottom:498.946667pt;}
.ycb{bottom:499.906667pt;}
.y128{bottom:500.413333pt;}
.y1a{bottom:501.373333pt;}
.y1b3{bottom:502.653333pt;}
.y89{bottom:510.333333pt;}
.y172{bottom:511.613333pt;}
.y45{bottom:515.293333pt;}
.ya5{bottom:515.613333pt;}
.y14f{bottom:515.773333pt;}
.y5e{bottom:516.093333pt;}
.yef{bottom:516.893333pt;}
.yca{bottom:518.333333pt;}
.y127{bottom:518.813333pt;}
.y19{bottom:519.773333pt;}
.y107{bottom:523.293333pt;}
.y194{bottom:525.693333pt;}
.y88{bottom:528.733333pt;}
.y171{bottom:530.013333pt;}
.y1b2{bottom:530.173333pt;}
.y44{bottom:533.693333pt;}
.ya4{bottom:534.013333pt;}
.y5d{bottom:534.493333pt;}
.yee{bottom:535.293333pt;}
.yc9{bottom:536.733333pt;}
.y126{bottom:537.213333pt;}
.y18{bottom:538.173333pt;}
.y106{bottom:541.693333pt;}
.y193{bottom:542.653333pt;}
.y87{bottom:547.133333pt;}
.y170{bottom:548.413333pt;}
.y151{bottom:548.573333pt;}
.y43{bottom:552.093333pt;}
.ya3{bottom:552.413333pt;}
.y5c{bottom:552.893333pt;}
.yed{bottom:553.693333pt;}
.yc8{bottom:555.133333pt;}
.y125{bottom:555.613333pt;}
.y105{bottom:560.093333pt;}
.y1b1{bottom:564.093333pt;}
.y86{bottom:565.533333pt;}
.y16f{bottom:566.813333pt;}
.y192{bottom:570.013333pt;}
.y42{bottom:570.493333pt;}
.ya2{bottom:570.813333pt;}
.y5b{bottom:571.293333pt;}
.yc7{bottom:573.533333pt;}
.y124{bottom:574.013333pt;}
.y17{bottom:575.293333pt;}
.y104{bottom:578.493333pt;}
.yec{bottom:578.813333pt;}
.y16e{bottom:585.213333pt;}
.y191{bottom:587.133333pt;}
.y41{bottom:588.893333pt;}
.y72{bottom:589.213333pt;}
.y5a{bottom:589.693333pt;}
.y85{bottom:590.493333pt;}
.y1b0{bottom:591.453333pt;}
.y123{bottom:592.413333pt;}
.yeb{bottom:597.213333pt;}
.y147{bottom:597.533333pt;}
.yc6{bottom:598.493333pt;}
.y16d{bottom:603.613333pt;}
.y40{bottom:607.293333pt;}
.ya1{bottom:607.613333pt;}
.y59{bottom:608.093333pt;}
.y84{bottom:608.893333pt;}
.y122{bottom:610.813333pt;}
.y14e{bottom:614.333333pt;}
.y190{bottom:614.493333pt;}
.yea{bottom:615.613333pt;}
.yc5{bottom:616.893333pt;}
.y1af{bottom:618.973333pt;}
.y16c{bottom:622.013333pt;}
.ya0{bottom:626.013333pt;}
.y58{bottom:626.493333pt;}
.y83{bottom:627.293333pt;}
.y121{bottom:629.213333pt;}
.y16{bottom:630.653333pt;}
.y14d{bottom:631.133333pt;}
.y18f{bottom:631.453333pt;}
.yc4{bottom:635.293333pt;}
.y1ae{bottom:635.933333pt;}
.y3f{bottom:644.413333pt;}
.ye9{bottom:644.733333pt;}
.y57{bottom:644.893333pt;}
.y82{bottom:645.693333pt;}
.y14c{bottom:647.933333pt;}
.y16b{bottom:651.133333pt;}
.y1ad{bottom:652.893333pt;}
.yc3{bottom:653.693333pt;}
.y18e{bottom:658.813333pt;}
.y9f{bottom:662.813333pt;}
.ye8{bottom:663.133333pt;}
.y56{bottom:663.293333pt;}
.y81{bottom:664.093333pt;}
.y149{bottom:664.733333pt;}
.y15{bottom:666.173333pt;}
.y120{bottom:666.333333pt;}
.yc2{bottom:672.093333pt;}
.y18d{bottom:675.933333pt;}
.y16a{bottom:676.093333pt;}
.y1ac{bottom:680.253333pt;}
.y9e{bottom:681.213333pt;}
.ye7{bottom:681.533333pt;}
.y55{bottom:681.693333pt;}
.y80{bottom:682.493333pt;}
.y14{bottom:683.133333pt;}
.yc1{bottom:690.493333pt;}
.y169{bottom:694.493333pt;}
.y1ab{bottom:697.213333pt;}
.y9d{bottom:699.613333pt;}
.y13{bottom:699.933333pt;}
.y3e{bottom:700.093333pt;}
.y7f{bottom:700.893333pt;}
.y18c{bottom:703.293333pt;}
.yc0{bottom:708.893333pt;}
.y146{bottom:713.693333pt;}
.y12{bottom:716.893333pt;}
.y9c{bottom:718.013333pt;}
.ye6{bottom:718.333333pt;}
.y3d{bottom:718.493333pt;}
.y168{bottom:719.613333pt;}
.y11f{bottom:722.013333pt;}
.y1aa{bottom:724.573333pt;}
.y7e{bottom:726.013333pt;}
.y141{bottom:730.333333pt;}
.y18b{bottom:730.813333pt;}
.y11{bottom:733.693333pt;}
.y9b{bottom:736.413333pt;}
.ye5{bottom:736.733333pt;}
.y3c{bottom:736.893333pt;}
.ybf{bottom:738.013333pt;}
.y1a9{bottom:741.693333pt;}
.y7d{bottom:744.413333pt;}
.y167{bottom:744.733333pt;}
.y11e{bottom:747.133333pt;}
.y18a{bottom:747.773333pt;}
.y10{bottom:750.493333pt;}
.y143{bottom:752.613333pt;}
.y9a{bottom:754.853333pt;}
.ye4{bottom:755.173333pt;}
.y3b{bottom:755.333333pt;}
.y7c{bottom:762.853333pt;}
.y11d{bottom:765.573333pt;}
.ybe{bottom:767.173333pt;}
.yf{bottom:767.493333pt;}
.y1a8{bottom:769.093333pt;}
.y99{bottom:773.253333pt;}
.ye3{bottom:773.573333pt;}
.y3a{bottom:773.733333pt;}
.y189{bottom:775.173333pt;}
.y140{bottom:779.333333pt;}
.y7b{bottom:781.253333pt;}
.y11c{bottom:783.973333pt;}
.ye{bottom:784.293333pt;}
.ybd{bottom:785.573333pt;}
.y1a7{bottom:786.053333pt;}
.ye2{bottom:791.973333pt;}
.y39{bottom:792.133333pt;}
.y188{bottom:792.293333pt;}
.y13c{bottom:796.133333pt;}
.y7a{bottom:799.653333pt;}
.yd{bottom:801.253333pt;}
.y103{bottom:802.373333pt;}
.y1a6{bottom:802.853333pt;}
.ybc{bottom:803.973333pt;}
.y11b{bottom:808.933333pt;}
.y98{bottom:810.213333pt;}
.ye1{bottom:810.373333pt;}
.y38{bottom:810.533333pt;}
.yc{bottom:818.053333pt;}
.y187{bottom:819.653333pt;}
.y102{bottom:820.773333pt;}
.ybb{bottom:822.373333pt;}
.y11a{bottom:827.333333pt;}
.ye0{bottom:828.773333pt;}
.y37{bottom:828.933333pt;}
.y1a5{bottom:830.213333pt;}
.yb{bottom:834.853333pt;}
.y79{bottom:836.453333pt;}
.y186{bottom:836.613333pt;}
.yba{bottom:840.773333pt;}
.y101{bottom:845.733333pt;}
.ydf{bottom:847.173333pt;}
.y36{bottom:847.333333pt;}
.ya{bottom:851.813333pt;}
.y78{bottom:854.853333pt;}
.y13b{bottom:856.133333pt;}
.yb9{bottom:859.173333pt;}
.y185{bottom:863.973333pt;}
.y100{bottom:864.133333pt;}
.yde{bottom:865.573333pt;}
.y35{bottom:865.733333pt;}
.y9{bottom:868.613333pt;}
.y77{bottom:873.253333pt;}
.yb8{bottom:877.573333pt;}
.y184{bottom:881.093333pt;}
.ydd{bottom:883.973333pt;}
.y34{bottom:884.133333pt;}
.y8{bottom:885.573333pt;}
.yff{bottom:889.253333pt;}
.y1a4{bottom:891.493333pt;}
.y7{bottom:902.373333pt;}
.y33{bottom:902.533333pt;}
.yfe{bottom:907.653333pt;}
.y183{bottom:908.453333pt;}
.y1a3{bottom:908.613333pt;}
.y76{bottom:920.773333pt;}
.y32{bottom:920.933333pt;}
.y182{bottom:925.413333pt;}
.yfd{bottom:932.773333pt;}
.y75{bottom:939.173333pt;}
.y31{bottom:939.333333pt;}
.yfc{bottom:951.173333pt;}
.y181{bottom:952.773333pt;}
.y74{bottom:957.573333pt;}
.y30{bottom:957.733333pt;}
.y6{bottom:964.773333pt;}
.yfb{bottom:969.573333pt;}
.y180{bottom:969.893333pt;}
.y73{bottom:975.973333pt;}
.y2f{bottom:976.133333pt;}
.y5{bottom:991.653333pt;}
.y2e{bottom:994.533333pt;}
.y17f{bottom:997.253333pt;}
.y2d{bottom:1012.960000pt;}
.y17e{bottom:1014.240000pt;}
.y2{bottom:1046.560000pt;}
.y1{bottom:1061.920000pt;}
.h14{height:16.000000pt;}
.h10{height:16.160000pt;}
.h1a{height:16.192000pt;}
.h13{height:21.600000pt;}
.h12{height:26.080000pt;}
.h19{height:32.160000pt;}
.h9{height:44.897813pt;}
.h1c{height:45.156250pt;}
.h8{height:46.593750pt;}
.h2{height:47.621250pt;}
.h6{height:47.782500pt;}
.h16{height:48.160000pt;}
.he{height:48.320000pt;}
.h11{height:48.352000pt;}
.h7{height:48.530000pt;}
.h1b{height:48.960000pt;}
.hf{height:50.490000pt;}
.ha{height:52.750000pt;}
.hd{height:52.785000pt;}
.h5{height:52.832812pt;}
.h4{height:54.093750pt;}
.h3{height:57.375000pt;}
.h17{height:66.400000pt;}
.hb{height:67.128750pt;}
.hc{height:76.308750pt;}
.h18{height:81.120000pt;}
.h15{height:115.360000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:93.760000pt;}
.w8{width:93.792000pt;}
.w6{width:93.952000pt;}
.w4{width:103.232000pt;}
.w3{width:110.560000pt;}
.w5{width:112.640000pt;}
.w9{width:611.453333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x19{left:12.320000pt;}
.x15{left:18.106667pt;}
.xb{left:19.040000pt;}
.xd{left:20.160000pt;}
.x11{left:22.720000pt;}
.xe{left:25.600000pt;}
.x16{left:28.186667pt;}
.x18{left:29.920000pt;}
.xf{left:32.960000pt;}
.x12{left:34.400000pt;}
.xa{left:35.360000pt;}
.x13{left:37.600000pt;}
.x1{left:94.591988pt;}
.x9{left:118.431988pt;}
.x8{left:122.911988pt;}
.x5{left:132.351988pt;}
.x6{left:141.786655pt;}
.xc{left:206.426667pt;}
.x4{left:210.746655pt;}
.x3{left:232.186655pt;}
.x1b{left:244.034667pt;}
.x1d{left:245.954667pt;}
.x10{left:310.466667pt;}
.x14{left:423.746667pt;}
.x17{left:518.333333pt;}
.x7{left:575.613322pt;}
.x1a{left:612.893333pt;}
.x2{left:683.333322pt;}
}




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