
    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_d71c2f47d4bdf45c2c69561e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_59c5c1a9fc05cea8751de72e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_736f6aefa12c4032d3f59879.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.702148;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_0f9c90154a1664ee23fb1bd0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-30.239400px;}
.v3{vertical-align:-27.360600px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v1{vertical-align:30.239400px;}
.ls1b{letter-spacing:-0.820080px;}
.ls14{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.673920px;}
.ls1c{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.337680px;}
.ls7{letter-spacing:-0.336960px;}
.lsb{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.240480px;}
.ls15{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.120240px;}
.ls5{letter-spacing:-0.084240px;}
.lsa{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.084240px;}
.lsc{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.181440px;}
.lsd{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.295200px;}
.ls4{letter-spacing:0.336960px;}
.ls8{letter-spacing:0.378000px;}
.ls1a{letter-spacing:0.385920px;}
.ls29{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.792000px;}
.ls2f{letter-spacing:0.936000px;}
.ls30{letter-spacing:1.008000px;}
.ls25{letter-spacing:1.440000px;}
.lse{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.880000px;}
.lsf{letter-spacing:3.600000px;}
.ls2d{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.047200px;}
.ls28{letter-spacing:5.760000px;}
.ls26{letter-spacing:6.480000px;}
.ls2c{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.920000px;}
.ls2a{letter-spacing:9.360000px;}
.ls1f{letter-spacing:10.800000px;}
.ls21{letter-spacing:16.560000px;}
.ls1e{letter-spacing:25.200000px;}
.ls0{letter-spacing:846.000000px;}
.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;}
}
.ws5a{word-spacing:-21.396960px;}
.ws76{word-spacing:-21.144240px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.975760px;}
.ws2{word-spacing:-20.723040px;}
.ws1{word-spacing:-20.386080px;}
.ws7d{word-spacing:-18.720000px;}
.ws4c{word-spacing:-18.144000px;}
.ws3a{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws3b{word-spacing:-17.856000px;}
.ws77{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws4{word-spacing:-13.122000px;}
.ws4d{word-spacing:-12.060000px;}
.ws4e{word-spacing:-11.239920px;}
.ws23{word-spacing:-4.320000px;}
.ws53{word-spacing:-4.032000px;}
.ws84{word-spacing:-3.888000px;}
.ws65{word-spacing:-3.744000px;}
.ws2b{word-spacing:-3.600000px;}
.ws4a{word-spacing:-2.880000px;}
.ws51{word-spacing:-2.592000px;}
.ws61{word-spacing:-2.304000px;}
.ws3e{word-spacing:-2.160000px;}
.ws90{word-spacing:-1.728000px;}
.ws6d{word-spacing:-1.584000px;}
.ws17{word-spacing:-1.440000px;}
.ws16{word-spacing:-1.152000px;}
.ws8d{word-spacing:-1.008000px;}
.ws8b{word-spacing:-0.936000px;}
.ws6a{word-spacing:-0.864000px;}
.ws3f{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.505440px;}
.ws67{word-spacing:-0.504000px;}
.ws42{word-spacing:-0.432000px;}
.ws57{word-spacing:-0.385920px;}
.wsb{word-spacing:-0.378000px;}
.wsa{word-spacing:-0.336960px;}
.ws56{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.216000px;}
.ws3d{word-spacing:-0.144000px;}
.ws2f{word-spacing:-0.084240px;}
.ws4b{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.ws22{word-spacing:0.144000px;}
.wse{word-spacing:0.168480px;}
.ws46{word-spacing:0.216000px;}
.wsf{word-spacing:0.288000px;}
.wsd{word-spacing:0.336960px;}
.ws59{word-spacing:0.337680px;}
.ws7{word-spacing:0.360720px;}
.ws74{word-spacing:0.432000px;}
.ws8{word-spacing:0.480960px;}
.ws36{word-spacing:0.504000px;}
.ws11{word-spacing:0.576000px;}
.ws58{word-spacing:0.648000px;}
.ws13{word-spacing:0.720000px;}
.ws12{word-spacing:1.008000px;}
.ws92{word-spacing:1.152000px;}
.ws78{word-spacing:1.296000px;}
.ws40{word-spacing:1.440000px;}
.ws41{word-spacing:1.656000px;}
.ws39{word-spacing:1.728000px;}
.ws33{word-spacing:2.016000px;}
.ws21{word-spacing:2.160000px;}
.ws68{word-spacing:2.448000px;}
.ws54{word-spacing:2.736000px;}
.ws30{word-spacing:2.880000px;}
.ws93{word-spacing:3.096000px;}
.ws38{word-spacing:3.168000px;}
.ws66{word-spacing:3.456000px;}
.ws31{word-spacing:3.600000px;}
.ws32{word-spacing:3.888000px;}
.ws91{word-spacing:4.032000px;}
.ws85{word-spacing:4.176000px;}
.ws8c{word-spacing:4.248000px;}
.ws19{word-spacing:4.320000px;}
.ws52{word-spacing:4.608000px;}
.ws75{word-spacing:4.896000px;}
.ws44{word-spacing:5.040000px;}
.ws6e{word-spacing:5.328000px;}
.ws1c{word-spacing:5.616000px;}
.ws27{word-spacing:5.760000px;}
.ws7b{word-spacing:5.904000px;}
.ws64{word-spacing:5.976000px;}
.ws50{word-spacing:6.048000px;}
.ws15{word-spacing:6.480000px;}
.ws62{word-spacing:6.768000px;}
.ws2a{word-spacing:7.056000px;}
.ws29{word-spacing:7.200000px;}
.ws4f{word-spacing:7.488000px;}
.ws6f{word-spacing:7.776000px;}
.ws43{word-spacing:7.920000px;}
.ws7a{word-spacing:8.208000px;}
.ws48{word-spacing:8.496000px;}
.ws47{word-spacing:8.640000px;}
.ws7f{word-spacing:8.928000px;}
.ws10{word-spacing:9.216000px;}
.ws49{word-spacing:9.360000px;}
.ws28{word-spacing:10.080000px;}
.ws79{word-spacing:10.296000px;}
.ws45{word-spacing:10.656000px;}
.ws34{word-spacing:10.800000px;}
.ws26{word-spacing:11.088000px;}
.ws83{word-spacing:11.520000px;}
.ws8a{word-spacing:12.096000px;}
.ws87{word-spacing:12.168000px;}
.ws63{word-spacing:12.240000px;}
.ws89{word-spacing:12.528000px;}
.ws94{word-spacing:12.816000px;}
.ws88{word-spacing:12.888000px;}
.ws60{word-spacing:12.960000px;}
.ws2c{word-spacing:13.536000px;}
.ws7e{word-spacing:13.680000px;}
.ws37{word-spacing:13.968000px;}
.ws35{word-spacing:14.400000px;}
.ws73{word-spacing:14.976000px;}
.ws1b{word-spacing:15.120000px;}
.ws6b{word-spacing:15.840000px;}
.ws6c{word-spacing:16.128000px;}
.ws7c{word-spacing:16.416000px;}
.ws1d{word-spacing:16.560000px;}
.ws5f{word-spacing:16.848000px;}
.ws1a{word-spacing:17.280000px;}
.ws18{word-spacing:18.000000px;}
.ws81{word-spacing:18.288000px;}
.ws70{word-spacing:18.576000px;}
.ws3c{word-spacing:18.720000px;}
.ws25{word-spacing:19.440000px;}
.ws24{word-spacing:19.728000px;}
.ws71{word-spacing:20.160000px;}
.ws72{word-spacing:20.448000px;}
.ws5b{word-spacing:20.592000px;}
.ws5c{word-spacing:20.880000px;}
.ws5d{word-spacing:21.168000px;}
.ws55{word-spacing:21.600000px;}
.ws86{word-spacing:21.888000px;}
.ws69{word-spacing:24.336000px;}
.ws5e{word-spacing:24.480000px;}
.ws14{word-spacing:25.200000px;}
.ws82{word-spacing:28.080000px;}
.ws2d{word-spacing:30.240000px;}
.ws2e{word-spacing:30.528000px;}
.ws80{word-spacing:31.680000px;}
.ws20{word-spacing:32.400000px;}
.ws8e{word-spacing:33.120000px;}
.ws8f{word-spacing:36.720000px;}
._9{margin-left:-2.738592px;}
._1{margin-left:-1.019304px;}
._0{width:1.298592px;}
._4{width:3.777912px;}
._8{width:5.267304px;}
._7{width:6.480000px;}
._c{width:8.387856px;}
._6{width:11.227824px;}
._b{width:12.666816px;}
._5{width:14.112000px;}
._2{width:16.654608px;}
._3{width:19.440000px;}
._a{width:21.248712px;}
._e{width:842.905440px;}
._d{width:846.000000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y148{bottom:23.220000px;}
.y146{bottom:23.400000px;}
.y57{bottom:113.220000px;}
.y107{bottom:120.780000px;}
.y8b{bottom:121.500000px;}
.y128{bottom:127.260000px;}
.ye4{bottom:131.400000px;}
.y9d{bottom:131.760000px;}
.y104{bottom:139.320000px;}
.yd7{bottom:141.840000px;}
.y56{bottom:144.360000px;}
.yb2{bottom:144.720000px;}
.y106{bottom:151.740000px;}
.ye3{bottom:152.100000px;}
.y8a{bottom:152.460000px;}
.y127{bottom:158.220000px;}
.y39{bottom:159.300000px;}
.y103{bottom:160.020000px;}
.y9c{bottom:162.720000px;}
.yd6{bottom:172.800000px;}
.y55{bottom:175.320000px;}
.yb1{bottom:175.680000px;}
.y102{bottom:180.720000px;}
.y89{bottom:183.600000px;}
.y126{bottom:189.360000px;}
.y6f{bottom:189.900000px;}
.y38{bottom:190.260000px;}
.y9b{bottom:193.680000px;}
.ye2{bottom:195.840000px;}
.y101{bottom:201.420000px;}
.yd5{bottom:203.940000px;}
.y54{bottom:206.460000px;}
.yb0{bottom:206.820000px;}
.y121{bottom:214.740000px;}
.y105{bottom:220.320000px;}
.y6e{bottom:221.040000px;}
.y37{bottom:221.400000px;}
.y100{bottom:222.120000px;}
.y88{bottom:223.560000px;}
.y9a{bottom:224.820000px;}
.yd4{bottom:234.900000px;}
.y53{bottom:237.420000px;}
.yaf{bottom:237.780000px;}
.yff{bottom:242.820000px;}
.ye1{bottom:247.860000px;}
.y1d{bottom:250.380000px;}
.y125{bottom:251.460000px;}
.y36{bottom:252.360000px;}
.y6d{bottom:253.620000px;}
.y87{bottom:254.700000px;}
.yc2{bottom:255.780000px;}
.y120{bottom:256.320000px;}
.yfe{bottom:263.520000px;}
.y99{bottom:264.780000px;}
.yd3{bottom:266.040000px;}
.y52{bottom:268.380000px;}
.yae{bottom:268.920000px;}
.ye0{bottom:278.820000px;}
.y124{bottom:282.420000px;}
.y35{bottom:283.500000px;}
.yfd{bottom:284.220000px;}
.y1c{bottom:284.940000px;}
.y86{bottom:285.660000px;}
.yc1{bottom:286.920000px;}
.y11f{bottom:289.260000px;}
.y98{bottom:295.920000px;}
.yd2{bottom:297.000000px;}
.y51{bottom:299.520000px;}
.yfc{bottom:304.920000px;}
.yad{bottom:308.880000px;}
.ydf{bottom:309.960000px;}
.y123{bottom:313.560000px;}
.y34{bottom:314.460000px;}
.y6c{bottom:316.080000px;}
.y85{bottom:316.800000px;}
.yc0{bottom:317.880000px;}
.y11e{bottom:322.200000px;}
.yfb{bottom:325.620000px;}
.y97{bottom:326.880000px;}
.yd1{bottom:328.140000px;}
.y50{bottom:330.480000px;}
.yde{bottom:333.180000px;}
.yac{bottom:340.020000px;}
.y33{bottom:345.600000px;}
.y131{bottom:346.140000px;}
.yfa{bottom:346.320000px;}
.y6b{bottom:347.040000px;}
.y84{bottom:347.760000px;}
.ybf{bottom:349.020000px;}
.y122{bottom:349.560000px;}
.y11d{bottom:353.700000px;}
.y1b{bottom:354.600000px;}
.y96{bottom:358.020000px;}
.yd0{bottom:359.100000px;}
.y4f{bottom:361.620000px;}
.yf9{bottom:367.020000px;}
.yab{bottom:370.980000px;}
.y114{bottom:371.880000px;}
.y1a{bottom:375.660000px;}
.y32{bottom:376.560000px;}
.y83{bottom:378.900000px;}
.ybe{bottom:379.980000px;}
.ydd{bottom:385.020000px;}
.y130{bottom:386.100000px;}
.y11c{bottom:386.280000px;}
.yf8{bottom:387.720000px;}
.y6a{bottom:388.620000px;}
.y95{bottom:388.980000px;}
.ycf{bottom:390.240000px;}
.y4e{bottom:392.580000px;}
.y19{bottom:396.540000px;}
.yaa{bottom:402.120000px;}
.y31{bottom:407.700000px;}
.yf7{bottom:408.420000px;}
.y82{bottom:409.860000px;}
.ybd{bottom:411.120000px;}
.y113{bottom:412.020000px;}
.ydc{bottom:416.160000px;}
.y12f{bottom:417.240000px;}
.y18{bottom:417.600000px;}
.y69{bottom:420.120000px;}
.yce{bottom:422.820000px;}
.y4d{bottom:423.720000px;}
.yb9{bottom:429.120000px;}
.ya9{bottom:433.080000px;}
.y17{bottom:438.660000px;}
.y81{bottom:441.000000px;}
.ybc{bottom:442.080000px;}
.y112{bottom:442.980000px;}
.ydb{bottom:447.120000px;}
.y12e{bottom:448.200000px;}
.y11b{bottom:448.740000px;}
.yf6{bottom:449.820000px;}
.y68{bottom:451.080000px;}
.ycd{bottom:454.140000px;}
.y4c{bottom:454.680000px;}
.y16{bottom:459.720000px;}
.yb8{bottom:460.080000px;}
.y30{bottom:469.800000px;}
.yf5{bottom:470.520000px;}
.y80{bottom:471.960000px;}
.ya8{bottom:473.220000px;}
.y111{bottom:474.120000px;}
.yda{bottom:478.260000px;}
.y12d{bottom:479.340000px;}
.y11a{bottom:479.700000px;}
.y15{bottom:480.780000px;}
.y67{bottom:482.220000px;}
.ycc{bottom:485.280000px;}
.y4b{bottom:485.820000px;}
.yb7{bottom:491.220000px;}
.y2f{bottom:496.080000px;}
.y14{bottom:501.840000px;}
.y7f{bottom:503.100000px;}
.ya7{bottom:504.180000px;}
.y110{bottom:505.080000px;}
.yd9{bottom:509.220000px;}
.y12c{bottom:510.300000px;}
.y119{bottom:510.840000px;}
.yf4{bottom:511.920000px;}
.y66{bottom:513.180000px;}
.ycb{bottom:516.240000px;}
.y4a{bottom:516.780000px;}
.y2e{bottom:521.100000px;}
.yb6{bottom:522.180000px;}
.y13{bottom:522.900000px;}
.yd8{bottom:532.440000px;}
.yf3{bottom:532.620000px;}
.y7e{bottom:534.060000px;}
.ya6{bottom:535.320000px;}
.y10f{bottom:536.220000px;}
.y12b{bottom:541.440000px;}
.y118{bottom:541.800000px;}
.y12{bottom:543.960000px;}
.y65{bottom:544.320000px;}
.yca{bottom:547.380000px;}
.y49{bottom:547.920000px;}
.yb5{bottom:553.320000px;}
.y11{bottom:565.020000px;}
.ya5{bottom:566.280000px;}
.y10e{bottom:567.180000px;}
.y12a{bottom:572.400000px;}
.y117{bottom:572.940000px;}
.yf2{bottom:574.020000px;}
.y64{bottom:575.280000px;}
.yc9{bottom:578.340000px;}
.y48{bottom:578.880000px;}
.yb4{bottom:584.280000px;}
.y10{bottom:586.080000px;}
.y2d{bottom:587.340000px;}
.y14d{bottom:594.180000px;}
.yf1{bottom:594.720000px;}
.y7d{bottom:596.160000px;}
.y13b{bottom:596.520000px;}
.ya4{bottom:597.420000px;}
.y10d{bottom:598.320000px;}
.y63{bottom:606.420000px;}
.y129{bottom:608.760000px;}
.y116{bottom:609.300000px;}
.yc8{bottom:609.480000px;}
.y47{bottom:610.020000px;}
.yf{bottom:610.920000px;}
.yb3{bottom:615.420000px;}
.y2c{bottom:618.480000px;}
.y14c{bottom:625.320000px;}
.y7c{bottom:627.120000px;}
.ya3{bottom:628.380000px;}
.y10c{bottom:629.280000px;}
.yf0{bottom:636.120000px;}
.y13a{bottom:636.660000px;}
.y62{bottom:637.380000px;}
.yc7{bottom:640.440000px;}
.y46{bottom:640.980000px;}
.y141{bottom:642.780000px;}
.y94{bottom:646.380000px;}
.y2b{bottom:649.440000px;}
.y108{bottom:650.520000px;}
.yef{bottom:656.820000px;}
.y7b{bottom:658.260000px;}
.ya2{bottom:659.520000px;}
.y10b{bottom:660.420000px;}
.y139{bottom:667.620000px;}
.ye{bottom:668.520000px;}
.yc6{bottom:671.580000px;}
.y93{bottom:677.520000px;}
.y2a{bottom:680.580000px;}
.y45{bottom:681.120000px;}
.y14b{bottom:683.640000px;}
.y140{bottom:685.620000px;}
.ya1{bottom:690.480000px;}
.y10a{bottom:691.380000px;}
.y7a{bottom:698.220000px;}
.y138{bottom:698.760000px;}
.y61{bottom:699.480000px;}
.yc5{bottom:702.540000px;}
.y92{bottom:708.480000px;}
.y29{bottom:711.540000px;}
.y44{bottom:712.080000px;}
.yee{bottom:718.920000px;}
.yd{bottom:721.620000px;}
.y14a{bottom:724.320000px;}
.y13f{bottom:725.760000px;}
.y79{bottom:729.360000px;}
.y137{bottom:729.720000px;}
.y60{bottom:730.620000px;}
.y109{bottom:731.520000px;}
.yc4{bottom:733.680000px;}
.y91{bottom:739.620000px;}
.yc{bottom:740.340000px;}
.y28{bottom:742.680000px;}
.y43{bottom:743.220000px;}
.ya0{bottom:752.580000px;}
.y13e{bottom:756.720000px;}
.y78{bottom:760.320000px;}
.y136{bottom:760.860000px;}
.y5f{bottom:761.580000px;}
.yc3{bottom:764.640000px;}
.y149{bottom:765.180000px;}
.y115{bottom:767.520000px;}
.y90{bottom:770.580000px;}
.y27{bottom:773.640000px;}
.y42{bottom:774.180000px;}
.yb{bottom:778.140000px;}
.yed{bottom:781.020000px;}
.y9f{bottom:783.720000px;}
.y13d{bottom:787.860000px;}
.y77{bottom:791.460000px;}
.y135{bottom:791.820000px;}
.y5e{bottom:792.720000px;}
.y8f{bottom:801.720000px;}
.y26{bottom:804.780000px;}
.y41{bottom:805.320000px;}
.y147{bottom:806.040000px;}
.ya{bottom:816.120000px;}
.y76{bottom:816.300000px;}
.yec{bottom:822.420000px;}
.y134{bottom:822.960000px;}
.y5d{bottom:823.680000px;}
.y13c{bottom:824.040000px;}
.y8e{bottom:832.680000px;}
.y25{bottom:835.740000px;}
.y40{bottom:836.280000px;}
.y9{bottom:842.220000px;}
.yeb{bottom:843.120000px;}
.y145{bottom:846.720000px;}
.y133{bottom:853.920000px;}
.y5c{bottom:854.820000px;}
.y8{bottom:856.079850px;}
.y8d{bottom:863.820000px;}
.y24{bottom:866.880000px;}
.y3f{bottom:867.420000px;}
.y75{bottom:868.500000px;}
.y7{bottom:876.779850px;}
.y132{bottom:884.340000px;}
.yea{bottom:884.520000px;}
.y5b{bottom:885.780000px;}
.y8c{bottom:894.780000px;}
.y23{bottom:897.840000px;}
.y3e{bottom:898.380000px;}
.y74{bottom:899.460000px;}
.y6{bottom:904.320000px;}
.ye9{bottom:905.220000px;}
.y144{bottom:910.980000px;}
.y9e{bottom:916.920000px;}
.y5{bottom:918.180000px;}
.y5a{bottom:925.920000px;}
.y22{bottom:928.980000px;}
.y3d{bottom:929.520000px;}
.y73{bottom:930.600000px;}
.y4{bottom:939.420000px;}
.ye8{bottom:946.620000px;}
.ybb{bottom:947.880000px;}
.y143{bottom:950.940000px;}
.y3c{bottom:955.800000px;}
.y59{bottom:956.880000px;}
.y21{bottom:959.940000px;}
.y72{bottom:961.560000px;}
.ye7{bottom:967.320000px;}
.yba{bottom:979.020000px;}
.y3{bottom:981.000000px;}
.y142{bottom:981.900000px;}
.y58{bottom:988.020000px;}
.y20{bottom:990.900000px;}
.y71{bottom:992.700000px;}
.y2{bottom:1004.211000px;}
.ye6{bottom:1008.720000px;}
.y3b{bottom:1018.980000px;}
.y1f{bottom:1022.040000px;}
.y70{bottom:1023.660000px;}
.ye5{bottom:1029.420000px;}
.y1{bottom:1038.780000px;}
.y1e{bottom:1047.060000px;}
.y3a{bottom:1050.120000px;}
.h5{height:33.518320px;}
.h9{height:39.960000px;}
.h8{height:40.140000px;}
.ha{height:40.141500px;}
.h7{height:48.796875px;}
.h3{height:50.027344px;}
.h6{height:57.092344px;}
.h4{height:67.759908px;}
.h2{height:81.490781px;}
.h1{height:1173.000000px;}
.h0{height:1173.060000px;}
.w7{width:124.018500px;}
.w5{width:124.740000px;}
.w6{width:124.920000px;}
.w2{width:130.321500px;}
.w4{width:249.660000px;}
.w3{width:250.380000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x12{left:45.000000px;}
.x14{left:61.920000px;}
.x5{left:126.540000px;}
.x1{left:127.620000px;}
.x3{left:130.140000px;}
.xf{left:131.940000px;}
.x7{left:139.320000px;}
.x4{left:144.000000px;}
.x6{left:147.780000px;}
.x2{left:148.860000px;}
.x11{left:263.160000px;}
.x15{left:388.620000px;}
.xe{left:475.380000px;}
.xc{left:479.520000px;}
.xa{left:494.640000px;}
.x8{left:500.220000px;}
.xb{left:502.380000px;}
.x13{left:514.440000px;}
.xd{left:561.240000px;}
.x16{left:639.180000px;}
.x9{left:693.000000px;}
@media print{
.v2{vertical-align:-26.879467pt;}
.v3{vertical-align:-24.320533pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v1{vertical-align:26.879467pt;}
.ls1b{letter-spacing:-0.728960pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.599040pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.300160pt;}
.ls7{letter-spacing:-0.299520pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.213760pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.106880pt;}
.ls5{letter-spacing:-0.074880pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.074880pt;}
.lsc{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.161280pt;}
.lsd{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.262400pt;}
.ls4{letter-spacing:0.299520pt;}
.ls8{letter-spacing:0.336000pt;}
.ls1a{letter-spacing:0.343040pt;}
.ls29{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls2f{letter-spacing:0.832000pt;}
.ls30{letter-spacing:0.896000pt;}
.ls25{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.560000pt;}
.lsf{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:4.486400pt;}
.ls28{letter-spacing:5.120000pt;}
.ls26{letter-spacing:5.760000pt;}
.ls2c{letter-spacing:6.400000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls2a{letter-spacing:8.320000pt;}
.ls1f{letter-spacing:9.600000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls1e{letter-spacing:22.400000pt;}
.ls0{letter-spacing:752.000000pt;}
.ws5a{word-spacing:-19.019520pt;}
.ws76{word-spacing:-18.794880pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.645120pt;}
.ws2{word-spacing:-18.420480pt;}
.ws1{word-spacing:-18.120960pt;}
.ws7d{word-spacing:-16.640000pt;}
.ws4c{word-spacing:-16.128000pt;}
.ws3a{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws3b{word-spacing:-15.872000pt;}
.ws77{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws4{word-spacing:-11.664000pt;}
.ws4d{word-spacing:-10.720000pt;}
.ws4e{word-spacing:-9.991040pt;}
.ws23{word-spacing:-3.840000pt;}
.ws53{word-spacing:-3.584000pt;}
.ws84{word-spacing:-3.456000pt;}
.ws65{word-spacing:-3.328000pt;}
.ws2b{word-spacing:-3.200000pt;}
.ws4a{word-spacing:-2.560000pt;}
.ws51{word-spacing:-2.304000pt;}
.ws61{word-spacing:-2.048000pt;}
.ws3e{word-spacing:-1.920000pt;}
.ws90{word-spacing:-1.536000pt;}
.ws6d{word-spacing:-1.408000pt;}
.ws17{word-spacing:-1.280000pt;}
.ws16{word-spacing:-1.024000pt;}
.ws8d{word-spacing:-0.896000pt;}
.ws8b{word-spacing:-0.832000pt;}
.ws6a{word-spacing:-0.768000pt;}
.ws3f{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.449280pt;}
.ws67{word-spacing:-0.448000pt;}
.ws42{word-spacing:-0.384000pt;}
.ws57{word-spacing:-0.343040pt;}
.wsb{word-spacing:-0.336000pt;}
.wsa{word-spacing:-0.299520pt;}
.ws56{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws3d{word-spacing:-0.128000pt;}
.ws2f{word-spacing:-0.074880pt;}
.ws4b{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.ws22{word-spacing:0.128000pt;}
.wse{word-spacing:0.149760pt;}
.ws46{word-spacing:0.192000pt;}
.wsf{word-spacing:0.256000pt;}
.wsd{word-spacing:0.299520pt;}
.ws59{word-spacing:0.300160pt;}
.ws7{word-spacing:0.320640pt;}
.ws74{word-spacing:0.384000pt;}
.ws8{word-spacing:0.427520pt;}
.ws36{word-spacing:0.448000pt;}
.ws11{word-spacing:0.512000pt;}
.ws58{word-spacing:0.576000pt;}
.ws13{word-spacing:0.640000pt;}
.ws12{word-spacing:0.896000pt;}
.ws92{word-spacing:1.024000pt;}
.ws78{word-spacing:1.152000pt;}
.ws40{word-spacing:1.280000pt;}
.ws41{word-spacing:1.472000pt;}
.ws39{word-spacing:1.536000pt;}
.ws33{word-spacing:1.792000pt;}
.ws21{word-spacing:1.920000pt;}
.ws68{word-spacing:2.176000pt;}
.ws54{word-spacing:2.432000pt;}
.ws30{word-spacing:2.560000pt;}
.ws93{word-spacing:2.752000pt;}
.ws38{word-spacing:2.816000pt;}
.ws66{word-spacing:3.072000pt;}
.ws31{word-spacing:3.200000pt;}
.ws32{word-spacing:3.456000pt;}
.ws91{word-spacing:3.584000pt;}
.ws85{word-spacing:3.712000pt;}
.ws8c{word-spacing:3.776000pt;}
.ws19{word-spacing:3.840000pt;}
.ws52{word-spacing:4.096000pt;}
.ws75{word-spacing:4.352000pt;}
.ws44{word-spacing:4.480000pt;}
.ws6e{word-spacing:4.736000pt;}
.ws1c{word-spacing:4.992000pt;}
.ws27{word-spacing:5.120000pt;}
.ws7b{word-spacing:5.248000pt;}
.ws64{word-spacing:5.312000pt;}
.ws50{word-spacing:5.376000pt;}
.ws15{word-spacing:5.760000pt;}
.ws62{word-spacing:6.016000pt;}
.ws2a{word-spacing:6.272000pt;}
.ws29{word-spacing:6.400000pt;}
.ws4f{word-spacing:6.656000pt;}
.ws6f{word-spacing:6.912000pt;}
.ws43{word-spacing:7.040000pt;}
.ws7a{word-spacing:7.296000pt;}
.ws48{word-spacing:7.552000pt;}
.ws47{word-spacing:7.680000pt;}
.ws7f{word-spacing:7.936000pt;}
.ws10{word-spacing:8.192000pt;}
.ws49{word-spacing:8.320000pt;}
.ws28{word-spacing:8.960000pt;}
.ws79{word-spacing:9.152000pt;}
.ws45{word-spacing:9.472000pt;}
.ws34{word-spacing:9.600000pt;}
.ws26{word-spacing:9.856000pt;}
.ws83{word-spacing:10.240000pt;}
.ws8a{word-spacing:10.752000pt;}
.ws87{word-spacing:10.816000pt;}
.ws63{word-spacing:10.880000pt;}
.ws89{word-spacing:11.136000pt;}
.ws94{word-spacing:11.392000pt;}
.ws88{word-spacing:11.456000pt;}
.ws60{word-spacing:11.520000pt;}
.ws2c{word-spacing:12.032000pt;}
.ws7e{word-spacing:12.160000pt;}
.ws37{word-spacing:12.416000pt;}
.ws35{word-spacing:12.800000pt;}
.ws73{word-spacing:13.312000pt;}
.ws1b{word-spacing:13.440000pt;}
.ws6b{word-spacing:14.080000pt;}
.ws6c{word-spacing:14.336000pt;}
.ws7c{word-spacing:14.592000pt;}
.ws1d{word-spacing:14.720000pt;}
.ws5f{word-spacing:14.976000pt;}
.ws1a{word-spacing:15.360000pt;}
.ws18{word-spacing:16.000000pt;}
.ws81{word-spacing:16.256000pt;}
.ws70{word-spacing:16.512000pt;}
.ws3c{word-spacing:16.640000pt;}
.ws25{word-spacing:17.280000pt;}
.ws24{word-spacing:17.536000pt;}
.ws71{word-spacing:17.920000pt;}
.ws72{word-spacing:18.176000pt;}
.ws5b{word-spacing:18.304000pt;}
.ws5c{word-spacing:18.560000pt;}
.ws5d{word-spacing:18.816000pt;}
.ws55{word-spacing:19.200000pt;}
.ws86{word-spacing:19.456000pt;}
.ws69{word-spacing:21.632000pt;}
.ws5e{word-spacing:21.760000pt;}
.ws14{word-spacing:22.400000pt;}
.ws82{word-spacing:24.960000pt;}
.ws2d{word-spacing:26.880000pt;}
.ws2e{word-spacing:27.136000pt;}
.ws80{word-spacing:28.160000pt;}
.ws20{word-spacing:28.800000pt;}
.ws8e{word-spacing:29.440000pt;}
.ws8f{word-spacing:32.640000pt;}
._9{margin-left:-2.434304pt;}
._1{margin-left:-0.906048pt;}
._0{width:1.154304pt;}
._4{width:3.358144pt;}
._8{width:4.682048pt;}
._7{width:5.760000pt;}
._c{width:7.455872pt;}
._6{width:9.980288pt;}
._b{width:11.259392pt;}
._5{width:12.544000pt;}
._2{width:14.804096pt;}
._3{width:17.280000pt;}
._a{width:18.887744pt;}
._e{width:749.249280pt;}
._d{width:752.000000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:20.640000pt;}
.y146{bottom:20.800000pt;}
.y57{bottom:100.640000pt;}
.y107{bottom:107.360000pt;}
.y8b{bottom:108.000000pt;}
.y128{bottom:113.120000pt;}
.ye4{bottom:116.800000pt;}
.y9d{bottom:117.120000pt;}
.y104{bottom:123.840000pt;}
.yd7{bottom:126.080000pt;}
.y56{bottom:128.320000pt;}
.yb2{bottom:128.640000pt;}
.y106{bottom:134.880000pt;}
.ye3{bottom:135.200000pt;}
.y8a{bottom:135.520000pt;}
.y127{bottom:140.640000pt;}
.y39{bottom:141.600000pt;}
.y103{bottom:142.240000pt;}
.y9c{bottom:144.640000pt;}
.yd6{bottom:153.600000pt;}
.y55{bottom:155.840000pt;}
.yb1{bottom:156.160000pt;}
.y102{bottom:160.640000pt;}
.y89{bottom:163.200000pt;}
.y126{bottom:168.320000pt;}
.y6f{bottom:168.800000pt;}
.y38{bottom:169.120000pt;}
.y9b{bottom:172.160000pt;}
.ye2{bottom:174.080000pt;}
.y101{bottom:179.040000pt;}
.yd5{bottom:181.280000pt;}
.y54{bottom:183.520000pt;}
.yb0{bottom:183.840000pt;}
.y121{bottom:190.880000pt;}
.y105{bottom:195.840000pt;}
.y6e{bottom:196.480000pt;}
.y37{bottom:196.800000pt;}
.y100{bottom:197.440000pt;}
.y88{bottom:198.720000pt;}
.y9a{bottom:199.840000pt;}
.yd4{bottom:208.800000pt;}
.y53{bottom:211.040000pt;}
.yaf{bottom:211.360000pt;}
.yff{bottom:215.840000pt;}
.ye1{bottom:220.320000pt;}
.y1d{bottom:222.560000pt;}
.y125{bottom:223.520000pt;}
.y36{bottom:224.320000pt;}
.y6d{bottom:225.440000pt;}
.y87{bottom:226.400000pt;}
.yc2{bottom:227.360000pt;}
.y120{bottom:227.840000pt;}
.yfe{bottom:234.240000pt;}
.y99{bottom:235.360000pt;}
.yd3{bottom:236.480000pt;}
.y52{bottom:238.560000pt;}
.yae{bottom:239.040000pt;}
.ye0{bottom:247.840000pt;}
.y124{bottom:251.040000pt;}
.y35{bottom:252.000000pt;}
.yfd{bottom:252.640000pt;}
.y1c{bottom:253.280000pt;}
.y86{bottom:253.920000pt;}
.yc1{bottom:255.040000pt;}
.y11f{bottom:257.120000pt;}
.y98{bottom:263.040000pt;}
.yd2{bottom:264.000000pt;}
.y51{bottom:266.240000pt;}
.yfc{bottom:271.040000pt;}
.yad{bottom:274.560000pt;}
.ydf{bottom:275.520000pt;}
.y123{bottom:278.720000pt;}
.y34{bottom:279.520000pt;}
.y6c{bottom:280.960000pt;}
.y85{bottom:281.600000pt;}
.yc0{bottom:282.560000pt;}
.y11e{bottom:286.400000pt;}
.yfb{bottom:289.440000pt;}
.y97{bottom:290.560000pt;}
.yd1{bottom:291.680000pt;}
.y50{bottom:293.760000pt;}
.yde{bottom:296.160000pt;}
.yac{bottom:302.240000pt;}
.y33{bottom:307.200000pt;}
.y131{bottom:307.680000pt;}
.yfa{bottom:307.840000pt;}
.y6b{bottom:308.480000pt;}
.y84{bottom:309.120000pt;}
.ybf{bottom:310.240000pt;}
.y122{bottom:310.720000pt;}
.y11d{bottom:314.400000pt;}
.y1b{bottom:315.200000pt;}
.y96{bottom:318.240000pt;}
.yd0{bottom:319.200000pt;}
.y4f{bottom:321.440000pt;}
.yf9{bottom:326.240000pt;}
.yab{bottom:329.760000pt;}
.y114{bottom:330.560000pt;}
.y1a{bottom:333.920000pt;}
.y32{bottom:334.720000pt;}
.y83{bottom:336.800000pt;}
.ybe{bottom:337.760000pt;}
.ydd{bottom:342.240000pt;}
.y130{bottom:343.200000pt;}
.y11c{bottom:343.360000pt;}
.yf8{bottom:344.640000pt;}
.y6a{bottom:345.440000pt;}
.y95{bottom:345.760000pt;}
.ycf{bottom:346.880000pt;}
.y4e{bottom:348.960000pt;}
.y19{bottom:352.480000pt;}
.yaa{bottom:357.440000pt;}
.y31{bottom:362.400000pt;}
.yf7{bottom:363.040000pt;}
.y82{bottom:364.320000pt;}
.ybd{bottom:365.440000pt;}
.y113{bottom:366.240000pt;}
.ydc{bottom:369.920000pt;}
.y12f{bottom:370.880000pt;}
.y18{bottom:371.200000pt;}
.y69{bottom:373.440000pt;}
.yce{bottom:375.840000pt;}
.y4d{bottom:376.640000pt;}
.yb9{bottom:381.440000pt;}
.ya9{bottom:384.960000pt;}
.y17{bottom:389.920000pt;}
.y81{bottom:392.000000pt;}
.ybc{bottom:392.960000pt;}
.y112{bottom:393.760000pt;}
.ydb{bottom:397.440000pt;}
.y12e{bottom:398.400000pt;}
.y11b{bottom:398.880000pt;}
.yf6{bottom:399.840000pt;}
.y68{bottom:400.960000pt;}
.ycd{bottom:403.680000pt;}
.y4c{bottom:404.160000pt;}
.y16{bottom:408.640000pt;}
.yb8{bottom:408.960000pt;}
.y30{bottom:417.600000pt;}
.yf5{bottom:418.240000pt;}
.y80{bottom:419.520000pt;}
.ya8{bottom:420.640000pt;}
.y111{bottom:421.440000pt;}
.yda{bottom:425.120000pt;}
.y12d{bottom:426.080000pt;}
.y11a{bottom:426.400000pt;}
.y15{bottom:427.360000pt;}
.y67{bottom:428.640000pt;}
.ycc{bottom:431.360000pt;}
.y4b{bottom:431.840000pt;}
.yb7{bottom:436.640000pt;}
.y2f{bottom:440.960000pt;}
.y14{bottom:446.080000pt;}
.y7f{bottom:447.200000pt;}
.ya7{bottom:448.160000pt;}
.y110{bottom:448.960000pt;}
.yd9{bottom:452.640000pt;}
.y12c{bottom:453.600000pt;}
.y119{bottom:454.080000pt;}
.yf4{bottom:455.040000pt;}
.y66{bottom:456.160000pt;}
.ycb{bottom:458.880000pt;}
.y4a{bottom:459.360000pt;}
.y2e{bottom:463.200000pt;}
.yb6{bottom:464.160000pt;}
.y13{bottom:464.800000pt;}
.yd8{bottom:473.280000pt;}
.yf3{bottom:473.440000pt;}
.y7e{bottom:474.720000pt;}
.ya6{bottom:475.840000pt;}
.y10f{bottom:476.640000pt;}
.y12b{bottom:481.280000pt;}
.y118{bottom:481.600000pt;}
.y12{bottom:483.520000pt;}
.y65{bottom:483.840000pt;}
.yca{bottom:486.560000pt;}
.y49{bottom:487.040000pt;}
.yb5{bottom:491.840000pt;}
.y11{bottom:502.240000pt;}
.ya5{bottom:503.360000pt;}
.y10e{bottom:504.160000pt;}
.y12a{bottom:508.800000pt;}
.y117{bottom:509.280000pt;}
.yf2{bottom:510.240000pt;}
.y64{bottom:511.360000pt;}
.yc9{bottom:514.080000pt;}
.y48{bottom:514.560000pt;}
.yb4{bottom:519.360000pt;}
.y10{bottom:520.960000pt;}
.y2d{bottom:522.080000pt;}
.y14d{bottom:528.160000pt;}
.yf1{bottom:528.640000pt;}
.y7d{bottom:529.920000pt;}
.y13b{bottom:530.240000pt;}
.ya4{bottom:531.040000pt;}
.y10d{bottom:531.840000pt;}
.y63{bottom:539.040000pt;}
.y129{bottom:541.120000pt;}
.y116{bottom:541.600000pt;}
.yc8{bottom:541.760000pt;}
.y47{bottom:542.240000pt;}
.yf{bottom:543.040000pt;}
.yb3{bottom:547.040000pt;}
.y2c{bottom:549.760000pt;}
.y14c{bottom:555.840000pt;}
.y7c{bottom:557.440000pt;}
.ya3{bottom:558.560000pt;}
.y10c{bottom:559.360000pt;}
.yf0{bottom:565.440000pt;}
.y13a{bottom:565.920000pt;}
.y62{bottom:566.560000pt;}
.yc7{bottom:569.280000pt;}
.y46{bottom:569.760000pt;}
.y141{bottom:571.360000pt;}
.y94{bottom:574.560000pt;}
.y2b{bottom:577.280000pt;}
.y108{bottom:578.240000pt;}
.yef{bottom:583.840000pt;}
.y7b{bottom:585.120000pt;}
.ya2{bottom:586.240000pt;}
.y10b{bottom:587.040000pt;}
.y139{bottom:593.440000pt;}
.ye{bottom:594.240000pt;}
.yc6{bottom:596.960000pt;}
.y93{bottom:602.240000pt;}
.y2a{bottom:604.960000pt;}
.y45{bottom:605.440000pt;}
.y14b{bottom:607.680000pt;}
.y140{bottom:609.440000pt;}
.ya1{bottom:613.760000pt;}
.y10a{bottom:614.560000pt;}
.y7a{bottom:620.640000pt;}
.y138{bottom:621.120000pt;}
.y61{bottom:621.760000pt;}
.yc5{bottom:624.480000pt;}
.y92{bottom:629.760000pt;}
.y29{bottom:632.480000pt;}
.y44{bottom:632.960000pt;}
.yee{bottom:639.040000pt;}
.yd{bottom:641.440000pt;}
.y14a{bottom:643.840000pt;}
.y13f{bottom:645.120000pt;}
.y79{bottom:648.320000pt;}
.y137{bottom:648.640000pt;}
.y60{bottom:649.440000pt;}
.y109{bottom:650.240000pt;}
.yc4{bottom:652.160000pt;}
.y91{bottom:657.440000pt;}
.yc{bottom:658.080000pt;}
.y28{bottom:660.160000pt;}
.y43{bottom:660.640000pt;}
.ya0{bottom:668.960000pt;}
.y13e{bottom:672.640000pt;}
.y78{bottom:675.840000pt;}
.y136{bottom:676.320000pt;}
.y5f{bottom:676.960000pt;}
.yc3{bottom:679.680000pt;}
.y149{bottom:680.160000pt;}
.y115{bottom:682.240000pt;}
.y90{bottom:684.960000pt;}
.y27{bottom:687.680000pt;}
.y42{bottom:688.160000pt;}
.yb{bottom:691.680000pt;}
.yed{bottom:694.240000pt;}
.y9f{bottom:696.640000pt;}
.y13d{bottom:700.320000pt;}
.y77{bottom:703.520000pt;}
.y135{bottom:703.840000pt;}
.y5e{bottom:704.640000pt;}
.y8f{bottom:712.640000pt;}
.y26{bottom:715.360000pt;}
.y41{bottom:715.840000pt;}
.y147{bottom:716.480000pt;}
.ya{bottom:725.440000pt;}
.y76{bottom:725.600000pt;}
.yec{bottom:731.040000pt;}
.y134{bottom:731.520000pt;}
.y5d{bottom:732.160000pt;}
.y13c{bottom:732.480000pt;}
.y8e{bottom:740.160000pt;}
.y25{bottom:742.880000pt;}
.y40{bottom:743.360000pt;}
.y9{bottom:748.640000pt;}
.yeb{bottom:749.440000pt;}
.y145{bottom:752.640000pt;}
.y133{bottom:759.040000pt;}
.y5c{bottom:759.840000pt;}
.y8{bottom:760.959867pt;}
.y8d{bottom:767.840000pt;}
.y24{bottom:770.560000pt;}
.y3f{bottom:771.040000pt;}
.y75{bottom:772.000000pt;}
.y7{bottom:779.359867pt;}
.y132{bottom:786.080000pt;}
.yea{bottom:786.240000pt;}
.y5b{bottom:787.360000pt;}
.y8c{bottom:795.360000pt;}
.y23{bottom:798.080000pt;}
.y3e{bottom:798.560000pt;}
.y74{bottom:799.520000pt;}
.y6{bottom:803.840000pt;}
.ye9{bottom:804.640000pt;}
.y144{bottom:809.760000pt;}
.y9e{bottom:815.040000pt;}
.y5{bottom:816.160000pt;}
.y5a{bottom:823.040000pt;}
.y22{bottom:825.760000pt;}
.y3d{bottom:826.240000pt;}
.y73{bottom:827.200000pt;}
.y4{bottom:835.040000pt;}
.ye8{bottom:841.440000pt;}
.ybb{bottom:842.560000pt;}
.y143{bottom:845.280000pt;}
.y3c{bottom:849.600000pt;}
.y59{bottom:850.560000pt;}
.y21{bottom:853.280000pt;}
.y72{bottom:854.720000pt;}
.ye7{bottom:859.840000pt;}
.yba{bottom:870.240000pt;}
.y3{bottom:872.000000pt;}
.y142{bottom:872.800000pt;}
.y58{bottom:878.240000pt;}
.y20{bottom:880.800000pt;}
.y71{bottom:882.400000pt;}
.y2{bottom:892.632000pt;}
.ye6{bottom:896.640000pt;}
.y3b{bottom:905.760000pt;}
.y1f{bottom:908.480000pt;}
.y70{bottom:909.920000pt;}
.ye5{bottom:915.040000pt;}
.y1{bottom:923.360000pt;}
.y1e{bottom:930.720000pt;}
.y3a{bottom:933.440000pt;}
.h5{height:29.794062pt;}
.h9{height:35.520000pt;}
.h8{height:35.680000pt;}
.ha{height:35.681333pt;}
.h7{height:43.375000pt;}
.h3{height:44.468750pt;}
.h6{height:50.748750pt;}
.h4{height:60.231029pt;}
.h2{height:72.436250pt;}
.h1{height:1042.666667pt;}
.h0{height:1042.720000pt;}
.w7{width:110.238667pt;}
.w5{width:110.880000pt;}
.w6{width:111.040000pt;}
.w2{width:115.841333pt;}
.w4{width:221.920000pt;}
.w3{width:222.560000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x12{left:40.000000pt;}
.x14{left:55.040000pt;}
.x5{left:112.480000pt;}
.x1{left:113.440000pt;}
.x3{left:115.680000pt;}
.xf{left:117.280000pt;}
.x7{left:123.840000pt;}
.x4{left:128.000000pt;}
.x6{left:131.360000pt;}
.x2{left:132.320000pt;}
.x11{left:233.920000pt;}
.x15{left:345.440000pt;}
.xe{left:422.560000pt;}
.xc{left:426.240000pt;}
.xa{left:439.680000pt;}
.x8{left:444.640000pt;}
.xb{left:446.560000pt;}
.x13{left:457.280000pt;}
.xd{left:498.880000pt;}
.x16{left:568.160000pt;}
.x9{left:616.000000pt;}
}




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