
    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_1501e43d3a41d21d2f2d3b47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_84788e7bbb76892042db8999.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_f52d96379b84285bf9b39958.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_65e71dd34c526381815e9dc9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.206543;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_ddc78af1fa06d8f7f4449507.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_9333dffcda815d1f0d7a3028.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ff053b0d6d869c0e3afa1690.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6d0ac6d074d8648c8eef2f86.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_266defdef16f8fe8dcec992d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_879c0056d3b18ba993b57a23.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6568571b0fbe187a5106a056.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cbb996f495e176c84fc4fb8d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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);}
.v1{vertical-align:-84.960000px;}
.v6{vertical-align:-79.200000px;}
.v5{vertical-align:-72.000000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:33.120000px;}
.ls19{letter-spacing:-1.854000px;}
.ls2f{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-1.296000px;}
.ls39{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.666000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.567600px;}
.ls18{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.414600px;}
.ls3a{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls3d{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.131760px;}
.ls3c{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.046116px;}
.lsb{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013176px;}
.ls7{letter-spacing:0.019764px;}
.ls0{letter-spacing:0.025164px;}
.ls2{letter-spacing:0.026352px;}
.ls4{letter-spacing:0.032940px;}
.ls5{letter-spacing:0.039528px;}
.ls1{letter-spacing:0.041940px;}
.ls6{letter-spacing:0.046116px;}
.ls31{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.059292px;}
.ls20{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.223992px;}
.ls36{letter-spacing:0.259800px;}
.ls26{letter-spacing:0.262080px;}
.ls2b{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.386640px;}
.ls22{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.720000px;}
.ls34{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.800000px;}
.ls1a{letter-spacing:2.880000px;}
.ls25{letter-spacing:8.640000px;}
.ls38{letter-spacing:13.860000px;}
.ls11{letter-spacing:144.876000px;}
.lse{letter-spacing:155.384568px;}
.ls30{letter-spacing:194.376000px;}
.ls1d{letter-spacing:397.416000px;}
.ls2a{letter-spacing:653.916000px;}
.ls23{letter-spacing:823.836000px;}
.ls12{letter-spacing:1059.996000px;}
.ls2c{letter-spacing:1070.076000px;}
.ls33{letter-spacing:1165.980000px;}
.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;}
}
.ws2c{word-spacing:-20.016000px;}
.ws2d{word-spacing:-19.872000px;}
.ws2e{word-spacing:-19.800000px;}
.ws15{word-spacing:-18.504000px;}
.ws1c{word-spacing:-18.432000px;}
.ws19{word-spacing:-18.144000px;}
.ws1b{word-spacing:-18.072000px;}
.ws14{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.856000px;}
.ws16{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.424000px;}
.ws23{word-spacing:-17.280000px;}
.ws24{word-spacing:-17.136000px;}
.ws21{word-spacing:-16.992000px;}
.ws22{word-spacing:-16.704000px;}
.ws20{word-spacing:-16.669200px;}
.ws1d{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.145400px;}
.ws2a{word-spacing:-16.020000px;}
.ws13{word-spacing:-15.840000px;}
.ws25{word-spacing:-15.300000px;}
.ws26{word-spacing:-15.199800px;}
.ws17{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.921820px;}
.ws2b{word-spacing:-14.886720px;}
.ws0{word-spacing:-14.875704px;}
.ws1{word-spacing:-14.855940px;}
.ws28{word-spacing:-14.580000px;}
.ws29{word-spacing:-14.274000px;}
.ws27{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.500000px;}
.ws30{word-spacing:-13.140000px;}
.ws2f{word-spacing:-12.060000px;}
.ws1e{word-spacing:-10.440000px;}
.ws10{word-spacing:-0.191052px;}
.wse{word-spacing:-0.177876px;}
.wsf{word-spacing:-0.151524px;}
.ws7{word-spacing:-0.085644px;}
.ws12{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:0.075492px;}
.ws5{word-spacing:0.092268px;}
.ws4{word-spacing:0.234864px;}
.wsb{word-spacing:8.109828px;}
.ws9{word-spacing:8.834508px;}
.wsa{word-spacing:8.841096px;}
.wsc{word-spacing:10.626444px;}
.ws8{word-spacing:10.652796px;}
.wsd{word-spacing:10.665972px;}
._5{margin-left:-8.157600px;}
._4{margin-left:-4.194000px;}
._c{margin-left:-2.426400px;}
._1{margin-left:-1.296000px;}
._0{width:1.317600px;}
._12{width:3.068640px;}
._2{width:4.356000px;}
._18{width:5.772960px;}
._19{width:6.950880px;}
._b{width:8.300160px;}
._a{width:9.328320px;}
._1d{width:10.399680px;}
._14{width:11.460960px;}
._13{width:12.497760px;}
._17{width:14.140800px;}
._7{width:15.497280px;}
._6{width:16.807680px;}
._d{width:17.948160px;}
._e{width:19.488960px;}
._f{width:21.025440px;}
._8{width:22.746240px;}
._9{width:23.934240px;}
._1e{width:24.984000px;}
._1a{width:26.616000px;}
._1b{width:27.864000px;}
._21{width:28.881600px;}
._24{width:30.064800px;}
._23{width:31.622400px;}
._1c{width:33.465600px;}
._11{width:34.721280px;}
._10{width:36.023040px;}
._1f{width:38.448000px;}
._20{width:39.751200px;}
._25{width:46.960320px;}
._26{width:48.208080px;}
._16{width:61.865280px;}
._15{width:63.158400px;}
._3{width:90.389040px;}
._22{width:109.440000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs6{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y65{bottom:4.500000px;}
.y5f{bottom:10.800000px;}
.y5a{bottom:16.020000px;}
.y26{bottom:16.710000px;}
.y5e{bottom:30.240000px;}
.y61{bottom:30.465000px;}
.y59{bottom:35.460000px;}
.y5d{bottom:49.365000px;}
.y64{bottom:52.920000px;}
.y58{bottom:54.900000px;}
.y2e{bottom:57.600000px;}
.y1e{bottom:62.880000px;}
.y5c{bottom:68.805000px;}
.y2d{bottom:78.300000px;}
.y20{bottom:98.250000px;}
.y24{bottom:165.510000px;}
.y143{bottom:166.350000px;}
.y117{bottom:167.430000px;}
.yf6{bottom:169.230000px;}
.yc0{bottom:172.290000px;}
.y92{bottom:174.270000px;}
.yad{bottom:177.690000px;}
.yd5{bottom:177.870000px;}
.y56{bottom:180.030000px;}
.y173{bottom:180.750000px;}
.y1b{bottom:183.502590px;}
.y142{bottom:183.630000px;}
.y23{bottom:186.480000px;}
.y116{bottom:188.130000px;}
.yf5{bottom:189.930000px;}
.y91{bottom:194.970000px;}
.y55{bottom:197.130000px;}
.y172{bottom:198.210000px;}
.yac{bottom:198.390000px;}
.yd4{bottom:198.570000px;}
.ybf{bottom:203.250000px;}
.y141{bottom:206.670000px;}
.y1a{bottom:206.725290px;}
.y22{bottom:207.450000px;}
.y115{bottom:208.830000px;}
.yf4{bottom:210.630000px;}
.y54{bottom:215.130000px;}
.y90{bottom:215.490000px;}
.yab{bottom:219.090000px;}
.yd3{bottom:219.270000px;}
.y171{bottom:221.250000px;}
.y140{bottom:224.130000px;}
.ybe{bottom:228.270000px;}
.y114{bottom:229.530000px;}
.y19{bottom:229.849170px;}
.yf3{bottom:231.330000px;}
.y53{bottom:235.830000px;}
.y8f{bottom:236.190000px;}
.y170{bottom:238.710000px;}
.yaa{bottom:239.790000px;}
.yd2{bottom:239.970000px;}
.y13f{bottom:247.170000px;}
.y113{bottom:250.230000px;}
.yf2{bottom:252.030000px;}
.y18{bottom:252.981180px;}
.ybd{bottom:253.290000px;}
.y52{bottom:256.530000px;}
.y8e{bottom:256.890000px;}
.ya9{bottom:260.490000px;}
.yd1{bottom:260.670000px;}
.y16f{bottom:261.750000px;}
.y13e{bottom:264.630000px;}
.y112{bottom:270.930000px;}
.ybc{bottom:272.190000px;}
.yf1{bottom:272.730000px;}
.y17{bottom:276.203880px;}
.y51{bottom:277.230000px;}
.y8d{bottom:277.590000px;}
.y16e{bottom:279.210000px;}
.ya8{bottom:281.190000px;}
.yd0{bottom:281.370000px;}
.y13d{bottom:287.670000px;}
.ybb{bottom:291.090000px;}
.y111{bottom:291.630000px;}
.yf0{bottom:293.430000px;}
.y16d{bottom:296.490000px;}
.y50{bottom:297.930000px;}
.y8c{bottom:298.290000px;}
.ya7{bottom:301.890000px;}
.ycf{bottom:302.070000px;}
.y21{bottom:305.055000px;}
.y13c{bottom:305.130000px;}
.y110{bottom:312.330000px;}
.yef{bottom:314.130000px;}
.y4f{bottom:318.630000px;}
.y8b{bottom:318.990000px;}
.y16c{bottom:319.530000px;}
.ya6{bottom:322.590000px;}
.yce{bottom:322.770000px;}
.y13b{bottom:328.170000px;}
.y10f{bottom:333.030000px;}
.yee{bottom:334.830000px;}
.y16b{bottom:336.990000px;}
.y4e{bottom:339.330000px;}
.y8a{bottom:339.690000px;}
.ya5{bottom:343.290000px;}
.ycd{bottom:343.470000px;}
.y16{bottom:344.356740px;}
.y13a{bottom:345.630000px;}
.y10e{bottom:353.730000px;}
.y16a{bottom:354.090000px;}
.yed{bottom:355.530000px;}
.y4d{bottom:360.075000px;}
.y89{bottom:360.435000px;}
.ya4{bottom:364.035000px;}
.ycc{bottom:364.215000px;}
.y139{bottom:368.715000px;}
.y169{bottom:371.415000px;}
.y10d{bottom:374.475000px;}
.yec{bottom:376.275000px;}
.y88{bottom:381.135000px;}
.y15{bottom:382.517730px;}
.ya3{bottom:384.735000px;}
.ycb{bottom:384.915000px;}
.y138{bottom:386.175000px;}
.y168{bottom:394.455000px;}
.y10c{bottom:395.175000px;}
.yeb{bottom:396.975000px;}
.y4c{bottom:401.475000px;}
.y87{bottom:401.835000px;}
.ya2{bottom:405.435000px;}
.yca{bottom:405.615000px;}
.y137{bottom:409.215000px;}
.y167{bottom:411.915000px;}
.y10b{bottom:415.875000px;}
.yea{bottom:417.675000px;}
.y14{bottom:420.678720px;}
.y4b{bottom:422.175000px;}
.y86{bottom:422.535000px;}
.ya1{bottom:426.135000px;}
.y136{bottom:426.675000px;}
.y166{bottom:434.955000px;}
.y10a{bottom:436.575000px;}
.yc9{bottom:437.835000px;}
.ye9{bottom:438.375000px;}
.y4a{bottom:442.515000px;}
.y85{bottom:443.235000px;}
.ya0{bottom:446.835000px;}
.y135{bottom:449.715000px;}
.y165{bottom:452.415000px;}
.yc8{bottom:456.915000px;}
.y109{bottom:457.275000px;}
.y13{bottom:458.839710px;}
.ye8{bottom:459.075000px;}
.y49{bottom:461.955000px;}
.y84{bottom:463.935000px;}
.y134{bottom:467.175000px;}
.y9f{bottom:467.535000px;}
.y164{bottom:469.695000px;}
.yc7{bottom:475.815000px;}
.y108{bottom:477.975000px;}
.ye7{bottom:479.775000px;}
.y48{bottom:482.655000px;}
.y133{bottom:484.455000px;}
.y83{bottom:484.635000px;}
.y163{bottom:486.975000px;}
.y9e{bottom:488.235000px;}
.y12{bottom:497.000700px;}
.y107{bottom:498.675000px;}
.ye6{bottom:500.475000px;}
.y47{bottom:502.815000px;}
.y162{bottom:504.255000px;}
.y82{bottom:505.335000px;}
.yc6{bottom:507.315000px;}
.y132{bottom:507.495000px;}
.y9d{bottom:508.935000px;}
.y106{bottom:519.375000px;}
.ye5{bottom:521.175000px;}
.y46{bottom:521.895000px;}
.y131{bottom:524.955000px;}
.y81{bottom:526.035000px;}
.y161{bottom:527.295000px;}
.yc5{bottom:528.015000px;}
.y9c{bottom:529.635000px;}
.y11{bottom:535.161690px;}
.y105{bottom:540.075000px;}
.y45{bottom:540.795000px;}
.ye4{bottom:541.875000px;}
.y130{bottom:542.055000px;}
.y160{bottom:544.755000px;}
.y80{bottom:546.735000px;}
.yc4{bottom:548.715000px;}
.y9b{bottom:550.335000px;}
.y12f{bottom:559.335000px;}
.y44{bottom:559.695000px;}
.y104{bottom:560.775000px;}
.ye3{bottom:562.575000px;}
.y7f{bottom:567.435000px;}
.y15f{bottom:567.795000px;}
.yc3{bottom:569.415000px;}
.y9a{bottom:571.035000px;}
.y10{bottom:573.322680px;}
.y43{bottom:578.775000px;}
.y103{bottom:581.475000px;}
.y12e{bottom:582.375000px;}
.ye2{bottom:583.275000px;}
.y15e{bottom:585.255000px;}
.y7e{bottom:588.135000px;}
.yc2{bottom:590.115000px;}
.yba{bottom:591.735000px;}
.y42{bottom:597.675000px;}
.y12d{bottom:599.835000px;}
.y102{bottom:602.175000px;}
.y99{bottom:603.255000px;}
.ye1{bottom:603.975000px;}
.y15d{bottom:608.295000px;}
.y7d{bottom:608.835000px;}
.yf{bottom:611.483670px;}
.yb9{bottom:612.435000px;}
.y41{bottom:616.785000px;}
.y12c{bottom:617.145000px;}
.y98{bottom:622.365000px;}
.y101{bottom:622.905000px;}
.ye0{bottom:624.705000px;}
.y15c{bottom:625.785000px;}
.y7c{bottom:629.565000px;}
.yb8{bottom:633.165000px;}
.y12b{bottom:634.425000px;}
.y25{bottom:635.130000px;}
.y40{bottom:635.685000px;}
.y97{bottom:641.265000px;}
.y100{bottom:643.605000px;}
.ydf{bottom:645.405000px;}
.y15b{bottom:648.825000px;}
.ye{bottom:649.644660px;}
.y7b{bottom:650.265000px;}
.yb7{bottom:653.865000px;}
.y3f{bottom:654.585000px;}
.y12a{bottom:657.465000px;}
.y96{bottom:660.165000px;}
.yff{bottom:664.305000px;}
.yde{bottom:666.105000px;}
.y15a{bottom:666.285000px;}
.y1d{bottom:667.530000px;}
.y7a{bottom:670.965000px;}
.y3e{bottom:673.665000px;}
.yb6{bottom:674.565000px;}
.y129{bottom:674.925000px;}
.y159{bottom:683.385000px;}
.yfe{bottom:684.645000px;}
.ydd{bottom:686.805000px;}
.yd{bottom:687.805650px;}
.y79{bottom:691.665000px;}
.y128{bottom:692.205000px;}
.y3d{bottom:692.565000px;}
.yb5{bottom:695.265000px;}
.y158{bottom:700.665000px;}
.ydc{bottom:707.505000px;}
.y3c{bottom:711.645000px;}
.y78{bottom:712.365000px;}
.y127{bottom:715.245000px;}
.yb4{bottom:715.965000px;}
.y157{bottom:717.945000px;}
.yc{bottom:725.966640px;}
.yfd{bottom:726.405000px;}
.y126{bottom:732.705000px;}
.y77{bottom:733.065000px;}
.y156{bottom:735.225000px;}
.yb3{bottom:736.665000px;}
.ydb{bottom:739.725000px;}
.yfc{bottom:747.105000px;}
.y1f{bottom:749.250000px;}
.y125{bottom:749.985000px;}
.y3b{bottom:752.325000px;}
.y76{bottom:753.765000px;}
.y155{bottom:758.265000px;}
.y181{bottom:764.025000px;}
.yb{bottom:764.127630px;}
.yda{bottom:764.745000px;}
.y124{bottom:767.085000px;}
.yb2{bottom:768.885000px;}
.y57{bottom:774.105000px;}
.y75{bottom:774.465000px;}
.y154{bottom:775.725000px;}
.y3a{bottom:778.245000px;}
.yfb{bottom:779.325000px;}
.y180{bottom:779.505000px;}
.yd9{bottom:783.645000px;}
.y123{bottom:784.365000px;}
.yb1{bottom:787.965000px;}
.y153{bottom:793.005000px;}
.y93{bottom:794.805000px;}
.y74{bottom:795.165000px;}
.ya{bottom:802.288620px;}
.y39{bottom:804.165000px;}
.yfa{bottom:804.345000px;}
.yb0{bottom:806.865000px;}
.y122{bottom:807.405000px;}
.yd8{bottom:808.665000px;}
.y73{bottom:815.865000px;}
.y152{bottom:816.045000px;}
.y17f{bottom:819.105000px;}
.yf9{bottom:823.245000px;}
.y121{bottom:824.865000px;}
.yaf{bottom:825.765000px;}
.yd7{bottom:827.565000px;}
.y38{bottom:830.085000px;}
.y151{bottom:833.505000px;}
.y72{bottom:836.565000px;}
.y17e{bottom:839.265000px;}
.y9{bottom:840.449610px;}
.y5b{bottom:841.065000px;}
.y120{bottom:842.145000px;}
.y60{bottom:846.105000px;}
.yd6{bottom:846.465000px;}
.yf8{bottom:848.265000px;}
.y150{bottom:850.785000px;}
.y37{bottom:855.825000px;}
.y17d{bottom:856.545000px;}
.y71{bottom:857.265000px;}
.y11f{bottom:859.425000px;}
.yf7{bottom:867.165000px;}
.y14f{bottom:873.825000px;}
.y11e{bottom:876.750000px;}
.y70{bottom:878.010000px;}
.y8{bottom:878.610600px;}
.y36{bottom:881.790000px;}
.y14e{bottom:891.150000px;}
.y6f{bottom:898.710000px;}
.y11d{bottom:899.790000px;}
.y7{bottom:900.041520px;}
.y35{bottom:907.710000px;}
.y17c{bottom:908.430000px;}
.y14d{bottom:914.370000px;}
.y11c{bottom:917.610000px;}
.y6e{bottom:919.410000px;}
.y17b{bottom:925.530000px;}
.y6{bottom:925.687830px;}
.y14c{bottom:931.650000px;}
.y34{bottom:932.550000px;}
.y6d{bottom:940.110000px;}
.y17a{bottom:942.810000px;}
.y14b{bottom:948.930000px;}
.y5{bottom:951.334140px;}
.y33{bottom:953.250000px;}
.y11b{bottom:958.470000px;}
.y179{bottom:960.090000px;}
.y95{bottom:960.450000px;}
.y6c{bottom:960.810000px;}
.y14a{bottom:971.970000px;}
.y32{bottom:974.850000px;}
.y4{bottom:976.980450px;}
.y178{bottom:977.370000px;}
.y94{bottom:981.150000px;}
.y6b{bottom:981.510000px;}
.y11a{bottom:982.410000px;}
.y177{bottom:994.650000px;}
.y149{bottom:995.370000px;}
.y31{bottom:1000.770000px;}
.y6a{bottom:1002.210000px;}
.y119{bottom:1005.630000px;}
.y176{bottom:1011.750000px;}
.y148{bottom:1012.650000px;}
.y3{bottom:1019.370450px;}
.y69{bottom:1022.910000px;}
.y30{bottom:1026.690000px;}
.y118{bottom:1028.850000px;}
.y175{bottom:1029.030000px;}
.y147{bottom:1035.870000px;}
.y68{bottom:1043.610000px;}
.y174{bottom:1046.310000px;}
.y2f{bottom:1052.610000px;}
.y146{bottom:1053.150000px;}
.y2{bottom:1060.044600px;}
.yc1{bottom:1063.950000px;}
.y67{bottom:1064.310000px;}
.y145{bottom:1070.430000px;}
.yae{bottom:1084.650000px;}
.y66{bottom:1085.010000px;}
.y2c{bottom:1085.550000px;}
.y1c{bottom:1086.240450px;}
.y144{bottom:1087.710000px;}
.y1{bottom:1093.890450px;}
.y2b{bottom:1119.030000px;}
.y2a{bottom:1143.360000px;}
.y29{bottom:1166.400000px;}
.y63{bottom:1176.300000px;}
.y28{bottom:1181.880000px;}
.y62{bottom:1196.280000px;}
.y27{bottom:1197.540000px;}
.h13{height:20.698500px;}
.h8{height:32.625000px;}
.h1c{height:41.522695px;}
.h1{height:45.035156px;}
.h3{height:45.807187px;}
.h19{height:45.992812px;}
.hb{height:47.344922px;}
.h14{height:50.027344px;}
.h1d{height:52.971680px;}
.ha{height:52.998047px;}
.h2{height:58.322812px;}
.h1b{height:58.621992px;}
.h10{height:58.651172px;}
.h5{height:63.615234px;}
.hf{height:64.978594px;}
.h18{height:65.010937px;}
.h17{height:70.628906px;}
.hc{height:70.664062px;}
.h16{height:71.225156px;}
.h11{height:72.720000px;}
.he{height:74.953125px;}
.h15{height:75.093750px;}
.h4{height:78.780000px;}
.h1a{height:80.464922px;}
.h12{height:84.982500px;}
.hd{height:93.867188px;}
.h6{height:114.150000px;}
.h7{height:223.350000px;}
.h9{height:1262.880000px;}
.h0{height:1263.000000px;}
.wa{width:27.216000px;}
.w9{width:338.250000px;}
.w8{width:338.284500px;}
.w4{width:575.460000px;}
.w2{width:580.575000px;}
.w3{width:583.020000px;}
.w7{width:673.650000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w5{width:892.980000px;}
.w6{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.500000px;}
.x15{left:72.343500px;}
.x3{left:106.380000px;}
.xa{left:108.036000px;}
.x10{left:118.486500px;}
.x18{left:120.405000px;}
.x14{left:130.483500px;}
.x1a{left:139.896000px;}
.xd{left:148.536000px;}
.xf{left:150.510000px;}
.x1c{left:161.130000px;}
.x16{left:179.668500px;}
.x5{left:186.885000px;}
.x7{left:188.505000px;}
.x2{left:204.216300px;}
.x13{left:240.148500px;}
.x12{left:242.668500px;}
.xe{left:243.750000px;}
.x11{left:289.648500px;}
.x1d{left:384.915000px;}
.x1b{left:396.435000px;}
.xb{left:432.975000px;}
.x19{left:436.395000px;}
.x17{left:444.720000px;}
.xc{left:446.505000px;}
.x4{left:485.820000px;}
.x8{left:494.385000px;}
.x1{left:742.950000px;}
.x9{left:785.130000px;}
@media print{
.v1{vertical-align:-75.520000pt;}
.v6{vertical-align:-70.400000pt;}
.v5{vertical-align:-64.000000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:29.440000pt;}
.ls19{letter-spacing:-1.648000pt;}
.ls2f{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-1.152000pt;}
.ls39{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.592000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.504533pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.368533pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls3d{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.117120pt;}
.ls3c{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.040992pt;}
.lsb{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011712pt;}
.ls7{letter-spacing:0.017568pt;}
.ls0{letter-spacing:0.022368pt;}
.ls2{letter-spacing:0.023424pt;}
.ls4{letter-spacing:0.029280pt;}
.ls5{letter-spacing:0.035136pt;}
.ls1{letter-spacing:0.037280pt;}
.ls6{letter-spacing:0.040992pt;}
.ls31{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.052704pt;}
.ls20{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.199104pt;}
.ls36{letter-spacing:0.230933pt;}
.ls26{letter-spacing:0.232960pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.343680pt;}
.ls22{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.960000pt;}
.ls37{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:2.560000pt;}
.ls25{letter-spacing:7.680000pt;}
.ls38{letter-spacing:12.320000pt;}
.ls11{letter-spacing:128.778667pt;}
.lse{letter-spacing:138.119616pt;}
.ls30{letter-spacing:172.778667pt;}
.ls1d{letter-spacing:353.258667pt;}
.ls2a{letter-spacing:581.258667pt;}
.ls23{letter-spacing:732.298667pt;}
.ls12{letter-spacing:942.218667pt;}
.ls2c{letter-spacing:951.178667pt;}
.ls33{letter-spacing:1036.426667pt;}
.ws2c{word-spacing:-17.792000pt;}
.ws2d{word-spacing:-17.664000pt;}
.ws2e{word-spacing:-17.600000pt;}
.ws15{word-spacing:-16.448000pt;}
.ws1c{word-spacing:-16.384000pt;}
.ws19{word-spacing:-16.128000pt;}
.ws1b{word-spacing:-16.064000pt;}
.ws14{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.872000pt;}
.ws16{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.488000pt;}
.ws23{word-spacing:-15.360000pt;}
.ws24{word-spacing:-15.232000pt;}
.ws21{word-spacing:-15.104000pt;}
.ws22{word-spacing:-14.848000pt;}
.ws20{word-spacing:-14.817067pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.351467pt;}
.ws2a{word-spacing:-14.240000pt;}
.ws13{word-spacing:-14.080000pt;}
.ws25{word-spacing:-13.600000pt;}
.ws26{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.263840pt;}
.ws2b{word-spacing:-13.232640pt;}
.ws0{word-spacing:-13.222848pt;}
.ws1{word-spacing:-13.205280pt;}
.ws28{word-spacing:-12.960000pt;}
.ws29{word-spacing:-12.688000pt;}
.ws27{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.000000pt;}
.ws30{word-spacing:-11.680000pt;}
.ws2f{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-9.280000pt;}
.ws10{word-spacing:-0.169824pt;}
.wse{word-spacing:-0.158112pt;}
.wsf{word-spacing:-0.134688pt;}
.ws7{word-spacing:-0.076128pt;}
.ws12{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:0.067104pt;}
.ws5{word-spacing:0.082016pt;}
.ws4{word-spacing:0.208768pt;}
.wsb{word-spacing:7.208736pt;}
.ws9{word-spacing:7.852896pt;}
.wsa{word-spacing:7.858752pt;}
.wsc{word-spacing:9.445728pt;}
.ws8{word-spacing:9.469152pt;}
.wsd{word-spacing:9.480864pt;}
._5{margin-left:-7.251200pt;}
._4{margin-left:-3.728000pt;}
._c{margin-left:-2.156800pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.171200pt;}
._12{width:2.727680pt;}
._2{width:3.872000pt;}
._18{width:5.131520pt;}
._19{width:6.178560pt;}
._b{width:7.377920pt;}
._a{width:8.291840pt;}
._1d{width:9.244160pt;}
._14{width:10.187520pt;}
._13{width:11.109120pt;}
._17{width:12.569600pt;}
._7{width:13.775360pt;}
._6{width:14.940160pt;}
._d{width:15.953920pt;}
._e{width:17.323520pt;}
._f{width:18.689280pt;}
._8{width:20.218880pt;}
._9{width:21.274880pt;}
._1e{width:22.208000pt;}
._1a{width:23.658667pt;}
._1b{width:24.768000pt;}
._21{width:25.672533pt;}
._24{width:26.724267pt;}
._23{width:28.108800pt;}
._1c{width:29.747200pt;}
._11{width:30.863360pt;}
._10{width:32.020480pt;}
._1f{width:34.176000pt;}
._20{width:35.334400pt;}
._25{width:41.742507pt;}
._26{width:42.851627pt;}
._16{width:54.991360pt;}
._15{width:56.140800pt;}
._3{width:80.345813pt;}
._22{width:97.280000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs6{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:4.000000pt;}
.y5f{bottom:9.600000pt;}
.y5a{bottom:14.240000pt;}
.y26{bottom:14.853333pt;}
.y5e{bottom:26.880000pt;}
.y61{bottom:27.080000pt;}
.y59{bottom:31.520000pt;}
.y5d{bottom:43.880000pt;}
.y64{bottom:47.040000pt;}
.y58{bottom:48.800000pt;}
.y2e{bottom:51.200000pt;}
.y1e{bottom:55.893333pt;}
.y5c{bottom:61.160000pt;}
.y2d{bottom:69.600000pt;}
.y20{bottom:87.333333pt;}
.y24{bottom:147.120000pt;}
.y143{bottom:147.866667pt;}
.y117{bottom:148.826667pt;}
.yf6{bottom:150.426667pt;}
.yc0{bottom:153.146667pt;}
.y92{bottom:154.906667pt;}
.yad{bottom:157.946667pt;}
.yd5{bottom:158.106667pt;}
.y56{bottom:160.026667pt;}
.y173{bottom:160.666667pt;}
.y1b{bottom:163.113413pt;}
.y142{bottom:163.226667pt;}
.y23{bottom:165.760000pt;}
.y116{bottom:167.226667pt;}
.yf5{bottom:168.826667pt;}
.y91{bottom:173.306667pt;}
.y55{bottom:175.226667pt;}
.y172{bottom:176.186667pt;}
.yac{bottom:176.346667pt;}
.yd4{bottom:176.506667pt;}
.ybf{bottom:180.666667pt;}
.y141{bottom:183.706667pt;}
.y1a{bottom:183.755813pt;}
.y22{bottom:184.400000pt;}
.y115{bottom:185.626667pt;}
.yf4{bottom:187.226667pt;}
.y54{bottom:191.226667pt;}
.y90{bottom:191.546667pt;}
.yab{bottom:194.746667pt;}
.yd3{bottom:194.906667pt;}
.y171{bottom:196.666667pt;}
.y140{bottom:199.226667pt;}
.ybe{bottom:202.906667pt;}
.y114{bottom:204.026667pt;}
.y19{bottom:204.310373pt;}
.yf3{bottom:205.626667pt;}
.y53{bottom:209.626667pt;}
.y8f{bottom:209.946667pt;}
.y170{bottom:212.186667pt;}
.yaa{bottom:213.146667pt;}
.yd2{bottom:213.306667pt;}
.y13f{bottom:219.706667pt;}
.y113{bottom:222.426667pt;}
.yf2{bottom:224.026667pt;}
.y18{bottom:224.872160pt;}
.ybd{bottom:225.146667pt;}
.y52{bottom:228.026667pt;}
.y8e{bottom:228.346667pt;}
.ya9{bottom:231.546667pt;}
.yd1{bottom:231.706667pt;}
.y16f{bottom:232.666667pt;}
.y13e{bottom:235.226667pt;}
.y112{bottom:240.826667pt;}
.ybc{bottom:241.946667pt;}
.yf1{bottom:242.426667pt;}
.y17{bottom:245.514560pt;}
.y51{bottom:246.426667pt;}
.y8d{bottom:246.746667pt;}
.y16e{bottom:248.186667pt;}
.ya8{bottom:249.946667pt;}
.yd0{bottom:250.106667pt;}
.y13d{bottom:255.706667pt;}
.ybb{bottom:258.746667pt;}
.y111{bottom:259.226667pt;}
.yf0{bottom:260.826667pt;}
.y16d{bottom:263.546667pt;}
.y50{bottom:264.826667pt;}
.y8c{bottom:265.146667pt;}
.ya7{bottom:268.346667pt;}
.ycf{bottom:268.506667pt;}
.y21{bottom:271.160000pt;}
.y13c{bottom:271.226667pt;}
.y110{bottom:277.626667pt;}
.yef{bottom:279.226667pt;}
.y4f{bottom:283.226667pt;}
.y8b{bottom:283.546667pt;}
.y16c{bottom:284.026667pt;}
.ya6{bottom:286.746667pt;}
.yce{bottom:286.906667pt;}
.y13b{bottom:291.706667pt;}
.y10f{bottom:296.026667pt;}
.yee{bottom:297.626667pt;}
.y16b{bottom:299.546667pt;}
.y4e{bottom:301.626667pt;}
.y8a{bottom:301.946667pt;}
.ya5{bottom:305.146667pt;}
.ycd{bottom:305.306667pt;}
.y16{bottom:306.094880pt;}
.y13a{bottom:307.226667pt;}
.y10e{bottom:314.426667pt;}
.y16a{bottom:314.746667pt;}
.yed{bottom:316.026667pt;}
.y4d{bottom:320.066667pt;}
.y89{bottom:320.386667pt;}
.ya4{bottom:323.586667pt;}
.ycc{bottom:323.746667pt;}
.y139{bottom:327.746667pt;}
.y169{bottom:330.146667pt;}
.y10d{bottom:332.866667pt;}
.yec{bottom:334.466667pt;}
.y88{bottom:338.786667pt;}
.y15{bottom:340.015760pt;}
.ya3{bottom:341.986667pt;}
.ycb{bottom:342.146667pt;}
.y138{bottom:343.266667pt;}
.y168{bottom:350.626667pt;}
.y10c{bottom:351.266667pt;}
.yeb{bottom:352.866667pt;}
.y4c{bottom:356.866667pt;}
.y87{bottom:357.186667pt;}
.ya2{bottom:360.386667pt;}
.yca{bottom:360.546667pt;}
.y137{bottom:363.746667pt;}
.y167{bottom:366.146667pt;}
.y10b{bottom:369.666667pt;}
.yea{bottom:371.266667pt;}
.y14{bottom:373.936640pt;}
.y4b{bottom:375.266667pt;}
.y86{bottom:375.586667pt;}
.ya1{bottom:378.786667pt;}
.y136{bottom:379.266667pt;}
.y166{bottom:386.626667pt;}
.y10a{bottom:388.066667pt;}
.yc9{bottom:389.186667pt;}
.ye9{bottom:389.666667pt;}
.y4a{bottom:393.346667pt;}
.y85{bottom:393.986667pt;}
.ya0{bottom:397.186667pt;}
.y135{bottom:399.746667pt;}
.y165{bottom:402.146667pt;}
.yc8{bottom:406.146667pt;}
.y109{bottom:406.466667pt;}
.y13{bottom:407.857520pt;}
.ye8{bottom:408.066667pt;}
.y49{bottom:410.626667pt;}
.y84{bottom:412.386667pt;}
.y134{bottom:415.266667pt;}
.y9f{bottom:415.586667pt;}
.y164{bottom:417.506667pt;}
.yc7{bottom:422.946667pt;}
.y108{bottom:424.866667pt;}
.ye7{bottom:426.466667pt;}
.y48{bottom:429.026667pt;}
.y133{bottom:430.626667pt;}
.y83{bottom:430.786667pt;}
.y163{bottom:432.866667pt;}
.y9e{bottom:433.986667pt;}
.y12{bottom:441.778400pt;}
.y107{bottom:443.266667pt;}
.ye6{bottom:444.866667pt;}
.y47{bottom:446.946667pt;}
.y162{bottom:448.226667pt;}
.y82{bottom:449.186667pt;}
.yc6{bottom:450.946667pt;}
.y132{bottom:451.106667pt;}
.y9d{bottom:452.386667pt;}
.y106{bottom:461.666667pt;}
.ye5{bottom:463.266667pt;}
.y46{bottom:463.906667pt;}
.y131{bottom:466.626667pt;}
.y81{bottom:467.586667pt;}
.y161{bottom:468.706667pt;}
.yc5{bottom:469.346667pt;}
.y9c{bottom:470.786667pt;}
.y11{bottom:475.699280pt;}
.y105{bottom:480.066667pt;}
.y45{bottom:480.706667pt;}
.ye4{bottom:481.666667pt;}
.y130{bottom:481.826667pt;}
.y160{bottom:484.226667pt;}
.y80{bottom:485.986667pt;}
.yc4{bottom:487.746667pt;}
.y9b{bottom:489.186667pt;}
.y12f{bottom:497.186667pt;}
.y44{bottom:497.506667pt;}
.y104{bottom:498.466667pt;}
.ye3{bottom:500.066667pt;}
.y7f{bottom:504.386667pt;}
.y15f{bottom:504.706667pt;}
.yc3{bottom:506.146667pt;}
.y9a{bottom:507.586667pt;}
.y10{bottom:509.620160pt;}
.y43{bottom:514.466667pt;}
.y103{bottom:516.866667pt;}
.y12e{bottom:517.666667pt;}
.ye2{bottom:518.466667pt;}
.y15e{bottom:520.226667pt;}
.y7e{bottom:522.786667pt;}
.yc2{bottom:524.546667pt;}
.yba{bottom:525.986667pt;}
.y42{bottom:531.266667pt;}
.y12d{bottom:533.186667pt;}
.y102{bottom:535.266667pt;}
.y99{bottom:536.226667pt;}
.ye1{bottom:536.866667pt;}
.y15d{bottom:540.706667pt;}
.y7d{bottom:541.186667pt;}
.yf{bottom:543.541040pt;}
.yb9{bottom:544.386667pt;}
.y41{bottom:548.253333pt;}
.y12c{bottom:548.573333pt;}
.y98{bottom:553.213333pt;}
.y101{bottom:553.693333pt;}
.ye0{bottom:555.293333pt;}
.y15c{bottom:556.253333pt;}
.y7c{bottom:559.613333pt;}
.yb8{bottom:562.813333pt;}
.y12b{bottom:563.933333pt;}
.y25{bottom:564.560000pt;}
.y40{bottom:565.053333pt;}
.y97{bottom:570.013333pt;}
.y100{bottom:572.093333pt;}
.ydf{bottom:573.693333pt;}
.y15b{bottom:576.733333pt;}
.ye{bottom:577.461920pt;}
.y7b{bottom:578.013333pt;}
.yb7{bottom:581.213333pt;}
.y3f{bottom:581.853333pt;}
.y12a{bottom:584.413333pt;}
.y96{bottom:586.813333pt;}
.yff{bottom:590.493333pt;}
.yde{bottom:592.093333pt;}
.y15a{bottom:592.253333pt;}
.y1d{bottom:593.360000pt;}
.y7a{bottom:596.413333pt;}
.y3e{bottom:598.813333pt;}
.yb6{bottom:599.613333pt;}
.y129{bottom:599.933333pt;}
.y159{bottom:607.453333pt;}
.yfe{bottom:608.573333pt;}
.ydd{bottom:610.493333pt;}
.yd{bottom:611.382800pt;}
.y79{bottom:614.813333pt;}
.y128{bottom:615.293333pt;}
.y3d{bottom:615.613333pt;}
.yb5{bottom:618.013333pt;}
.y158{bottom:622.813333pt;}
.ydc{bottom:628.893333pt;}
.y3c{bottom:632.573333pt;}
.y78{bottom:633.213333pt;}
.y127{bottom:635.773333pt;}
.yb4{bottom:636.413333pt;}
.y157{bottom:638.173333pt;}
.yc{bottom:645.303680pt;}
.yfd{bottom:645.693333pt;}
.y126{bottom:651.293333pt;}
.y77{bottom:651.613333pt;}
.y156{bottom:653.533333pt;}
.yb3{bottom:654.813333pt;}
.ydb{bottom:657.533333pt;}
.yfc{bottom:664.093333pt;}
.y1f{bottom:666.000000pt;}
.y125{bottom:666.653333pt;}
.y3b{bottom:668.733333pt;}
.y76{bottom:670.013333pt;}
.y155{bottom:674.013333pt;}
.y181{bottom:679.133333pt;}
.yb{bottom:679.224560pt;}
.yda{bottom:679.773333pt;}
.y124{bottom:681.853333pt;}
.yb2{bottom:683.453333pt;}
.y57{bottom:688.093333pt;}
.y75{bottom:688.413333pt;}
.y154{bottom:689.533333pt;}
.y3a{bottom:691.773333pt;}
.yfb{bottom:692.733333pt;}
.y180{bottom:692.893333pt;}
.yd9{bottom:696.573333pt;}
.y123{bottom:697.213333pt;}
.yb1{bottom:700.413333pt;}
.y153{bottom:704.893333pt;}
.y93{bottom:706.493333pt;}
.y74{bottom:706.813333pt;}
.ya{bottom:713.145440pt;}
.y39{bottom:714.813333pt;}
.yfa{bottom:714.973333pt;}
.yb0{bottom:717.213333pt;}
.y122{bottom:717.693333pt;}
.yd8{bottom:718.813333pt;}
.y73{bottom:725.213333pt;}
.y152{bottom:725.373333pt;}
.y17f{bottom:728.093333pt;}
.yf9{bottom:731.773333pt;}
.y121{bottom:733.213333pt;}
.yaf{bottom:734.013333pt;}
.yd7{bottom:735.613333pt;}
.y38{bottom:737.853333pt;}
.y151{bottom:740.893333pt;}
.y72{bottom:743.613333pt;}
.y17e{bottom:746.013333pt;}
.y9{bottom:747.066320pt;}
.y5b{bottom:747.613333pt;}
.y120{bottom:748.573333pt;}
.y60{bottom:752.093333pt;}
.yd6{bottom:752.413333pt;}
.yf8{bottom:754.013333pt;}
.y150{bottom:756.253333pt;}
.y37{bottom:760.733333pt;}
.y17d{bottom:761.373333pt;}
.y71{bottom:762.013333pt;}
.y11f{bottom:763.933333pt;}
.yf7{bottom:770.813333pt;}
.y14f{bottom:776.733333pt;}
.y11e{bottom:779.333333pt;}
.y70{bottom:780.453333pt;}
.y8{bottom:780.987200pt;}
.y36{bottom:783.813333pt;}
.y14e{bottom:792.133333pt;}
.y6f{bottom:798.853333pt;}
.y11d{bottom:799.813333pt;}
.y7{bottom:800.036907pt;}
.y35{bottom:806.853333pt;}
.y17c{bottom:807.493333pt;}
.y14d{bottom:812.773333pt;}
.y11c{bottom:815.653333pt;}
.y6e{bottom:817.253333pt;}
.y17b{bottom:822.693333pt;}
.y6{bottom:822.833627pt;}
.y14c{bottom:828.133333pt;}
.y34{bottom:828.933333pt;}
.y6d{bottom:835.653333pt;}
.y17a{bottom:838.053333pt;}
.y14b{bottom:843.493333pt;}
.y5{bottom:845.630347pt;}
.y33{bottom:847.333333pt;}
.y11b{bottom:851.973333pt;}
.y179{bottom:853.413333pt;}
.y95{bottom:853.733333pt;}
.y6c{bottom:854.053333pt;}
.y14a{bottom:863.973333pt;}
.y32{bottom:866.533333pt;}
.y4{bottom:868.427067pt;}
.y178{bottom:868.773333pt;}
.y94{bottom:872.133333pt;}
.y6b{bottom:872.453333pt;}
.y11a{bottom:873.253333pt;}
.y177{bottom:884.133333pt;}
.y149{bottom:884.773333pt;}
.y31{bottom:889.573333pt;}
.y6a{bottom:890.853333pt;}
.y119{bottom:893.893333pt;}
.y176{bottom:899.333333pt;}
.y148{bottom:900.133333pt;}
.y3{bottom:906.107067pt;}
.y69{bottom:909.253333pt;}
.y30{bottom:912.613333pt;}
.y118{bottom:914.533333pt;}
.y175{bottom:914.693333pt;}
.y147{bottom:920.773333pt;}
.y68{bottom:927.653333pt;}
.y174{bottom:930.053333pt;}
.y2f{bottom:935.653333pt;}
.y146{bottom:936.133333pt;}
.y2{bottom:942.261867pt;}
.yc1{bottom:945.733333pt;}
.y67{bottom:946.053333pt;}
.y145{bottom:951.493333pt;}
.yae{bottom:964.133333pt;}
.y66{bottom:964.453333pt;}
.y2c{bottom:964.933333pt;}
.y1c{bottom:965.547067pt;}
.y144{bottom:966.853333pt;}
.y1{bottom:972.347067pt;}
.y2b{bottom:994.693333pt;}
.y2a{bottom:1016.320000pt;}
.y29{bottom:1036.800000pt;}
.y63{bottom:1045.600000pt;}
.y28{bottom:1050.560000pt;}
.y62{bottom:1063.360000pt;}
.y27{bottom:1064.480000pt;}
.h13{height:18.398667pt;}
.h8{height:29.000000pt;}
.h1c{height:36.909063pt;}
.h1{height:40.031250pt;}
.h3{height:40.717500pt;}
.h19{height:40.882500pt;}
.hb{height:42.084375pt;}
.h14{height:44.468750pt;}
.h1d{height:47.085938pt;}
.ha{height:47.109375pt;}
.h2{height:51.842500pt;}
.h1b{height:52.108438pt;}
.h10{height:52.134375pt;}
.h5{height:56.546875pt;}
.hf{height:57.758750pt;}
.h18{height:57.787500pt;}
.h17{height:62.781250pt;}
.hc{height:62.812500pt;}
.h16{height:63.311250pt;}
.h11{height:64.640000pt;}
.he{height:66.625000pt;}
.h15{height:66.750000pt;}
.h4{height:70.026667pt;}
.h1a{height:71.524375pt;}
.h12{height:75.540000pt;}
.hd{height:83.437500pt;}
.h6{height:101.466667pt;}
.h7{height:198.533333pt;}
.h9{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.wa{width:24.192000pt;}
.w9{width:300.666667pt;}
.w8{width:300.697333pt;}
.w4{width:511.520000pt;}
.w2{width:516.066667pt;}
.w3{width:518.240000pt;}
.w7{width:598.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w5{width:793.760000pt;}
.w6{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.333333pt;}
.x15{left:64.305333pt;}
.x3{left:94.560000pt;}
.xa{left:96.032000pt;}
.x10{left:105.321333pt;}
.x18{left:107.026667pt;}
.x14{left:115.985333pt;}
.x1a{left:124.352000pt;}
.xd{left:132.032000pt;}
.xf{left:133.786667pt;}
.x1c{left:143.226667pt;}
.x16{left:159.705333pt;}
.x5{left:166.120000pt;}
.x7{left:167.560000pt;}
.x2{left:181.525600pt;}
.x13{left:213.465333pt;}
.x12{left:215.705333pt;}
.xe{left:216.666667pt;}
.x11{left:257.465333pt;}
.x1d{left:342.146667pt;}
.x1b{left:352.386667pt;}
.xb{left:384.866667pt;}
.x19{left:387.906667pt;}
.x17{left:395.306667pt;}
.xc{left:396.893333pt;}
.x4{left:431.840000pt;}
.x8{left:439.453333pt;}
.x1{left:660.400000pt;}
.x9{left:697.893333pt;}
}




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