
    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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_aa5c031f8ef48fd4708417ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_0ff4fb1948490961925b9490.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_891434f8f0551adacf563bac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_b4ebd56930de5739e6feea44.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c45d61129b1c4f53c931822c.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.432000px;}
.ls1{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.468000px;}
.lsb{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.ls4{letter-spacing:2.880000px;}
.ls6{letter-spacing:33.984000px;}
.lsa{letter-spacing:44.760000px;}
.ls3{letter-spacing:44.784000px;}
.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;}
}
.ws8{word-spacing:-30.060000px;}
.ws1{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.792000px;}
.wse{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.568000px;}
.ws6{word-spacing:-15.226440px;}
.ws4{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-16.265760px;}
._14{margin-left:-14.244000px;}
._15{margin-left:-12.300000px;}
._17{margin-left:-8.009760px;}
._16{margin-left:-6.324000px;}
._28{margin-left:-5.156400px;}
._1c{margin-left:-4.104000px;}
._19{margin-left:-2.580000px;}
._3{margin-left:-1.263600px;}
._1{width:1.053360px;}
._2{width:2.703360px;}
._18{width:3.718320px;}
._1d{width:4.731360px;}
._11{width:5.760000px;}
._13{width:7.488000px;}
._a{width:8.496000px;}
._b{width:9.567600px;}
._d{width:10.755840px;}
._8{width:12.396000px;}
._9{width:13.668000px;}
._e{width:15.390240px;}
._12{width:16.671600px;}
._c{width:19.512000px;}
._1b{width:20.921280px;}
._1e{width:21.990720px;}
._1f{width:23.159520px;}
._26{width:24.502800px;}
._6{width:25.776000px;}
._7{width:27.242640px;}
._4{width:28.368000px;}
._5{width:29.448000px;}
._20{width:31.032000px;}
._21{width:32.112000px;}
._22{width:33.120000px;}
._f{width:34.128000px;}
._10{width:35.424000px;}
._27{width:36.648000px;}
._24{width:38.952000px;}
._25{width:40.104000px;}
._2b{width:47.254320px;}
._2a{width:88.737120px;}
._29{width:89.976000px;}
._0{width:843.096000px;}
._23{width:846.156000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(47,84,150);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,114,196);}
.fs6{font-size:36.000000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs0{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:18.360000px;}
.y10{bottom:19.080000px;}
.yb{bottom:23.580000px;}
.y12{bottom:56.565000px;}
.y14{bottom:57.420000px;}
.y6{bottom:57.645000px;}
.yf{bottom:60.480000px;}
.ya{bottom:75.420000px;}
.y13{bottom:77.580000px;}
.ye{bottom:98.820000px;}
.y19a{bottom:114.336000px;}
.y185{bottom:122.076000px;}
.y144{bottom:123.336000px;}
.y1ad{bottom:123.696000px;}
.y66{bottom:124.596000px;}
.y9{bottom:127.080000px;}
.ye4{bottom:127.296000px;}
.yfd{bottom:132.336000px;}
.y91{bottom:133.596000px;}
.y1a0{bottom:135.216000px;}
.yd{bottom:135.360000px;}
.y18a{bottom:136.296000px;}
.y16b{bottom:145.296000px;}
.y135{bottom:149.076000px;}
.ya6{bottom:149.436000px;}
.y184{bottom:153.210000px;}
.y1b9{bottom:153.390000px;}
.y143{bottom:154.290000px;}
.y1ac{bottom:154.650000px;}
.y65{bottom:155.730000px;}
.ye3{bottom:158.430000px;}
.y199{bottom:162.210000px;}
.yfc{bottom:163.290000px;}
.yd1{bottom:163.470000px;}
.y32{bottom:163.830000px;}
.y90{bottom:164.730000px;}
.y10b{bottom:167.430000px;}
.y15a{bottom:169.410000px;}
.y168{bottom:171.210000px;}
.y19f{bottom:175.170000px;}
.y117{bottom:176.430000px;}
.y134{bottom:180.210000px;}
.ya5{bottom:180.390000px;}
.y1b8{bottom:184.350000px;}
.y160{bottom:185.430000px;}
.y1ab{bottom:185.790000px;}
.y64{bottom:186.690000px;}
.y189{bottom:189.390000px;}
.y183{bottom:193.170000px;}
.yfb{bottom:194.430000px;}
.yd0{bottom:194.610000px;}
.y8f{bottom:195.690000px;}
.y31{bottom:196.230000px;}
.ye2{bottom:198.390000px;}
.y159{bottom:200.370000px;}
.y167{bottom:202.170000px;}
.y10a{bottom:207.390000px;}
.y49{bottom:208.830000px;}
.y133{bottom:211.170000px;}
.ya4{bottom:211.350000px;}
.y19e{bottom:215.310000px;}
.y15f{bottom:216.390000px;}
.y63{bottom:217.650000px;}
.y147{bottom:220.350000px;}
.y182{bottom:224.310000px;}
.y1b7{bottom:224.490000px;}
.y142{bottom:225.390000px;}
.y1aa{bottom:225.750000px;}
.y8e{bottom:226.650000px;}
.y30{bottom:228.810000px;}
.ye1{bottom:229.350000px;}
.y158{bottom:231.510000px;}
.y166{bottom:233.310000px;}
.yfa{bottom:234.390000px;}
.ycf{bottom:234.570000px;}
.y109{bottom:238.350000px;}
.y132{bottom:242.310000px;}
.ya3{bottom:242.490000px;}
.y19d{bottom:246.270000px;}
.y15e{bottom:247.350000px;}
.y62{bottom:248.790000px;}
.y146{bottom:251.490000px;}
.y181{bottom:255.270000px;}
.y1b6{bottom:255.450000px;}
.y141{bottom:256.350000px;}
.y1a9{bottom:256.890000px;}
.y2f{bottom:257.250000px;}
.y8d{bottom:257.790000px;}
.y48{bottom:257.970000px;}
.ye0{bottom:260.490000px;}
.y165{bottom:264.270000px;}
.yf9{bottom:265.350000px;}
.yce{bottom:265.710000px;}
.y108{bottom:269.490000px;}
.y157{bottom:271.470000px;}
.y131{bottom:273.270000px;}
.ya2{bottom:273.450000px;}
.y19c{bottom:277.410000px;}
.y15d{bottom:278.490000px;}
.y145{bottom:282.450000px;}
.y180{bottom:286.410000px;}
.y140{bottom:287.490000px;}
.y61{bottom:288.750000px;}
.ydf{bottom:291.450000px;}
.y198{bottom:295.410000px;}
.y1b5{bottom:295.590000px;}
.yf8{bottom:296.490000px;}
.y1a8{bottom:296.850000px;}
.y2e{bottom:298.290000px;}
.y107{bottom:300.450000px;}
.y156{bottom:302.430000px;}
.y130{bottom:304.410000px;}
.y7f{bottom:304.590000px;}
.ycd{bottom:305.670000px;}
.y47{bottom:307.290000px;}
.y116{bottom:309.450000px;}
.y11{bottom:313.050000px;}
.y17f{bottom:317.370000px;}
.y13f{bottom:318.450000px;}
.y60{bottom:319.890000px;}
.yde{bottom:322.590000px;}
.y197{bottom:326.370000px;}
.y1b4{bottom:326.550000px;}
.yf7{bottom:327.450000px;}
.y1a7{bottom:327.990000px;}
.y8c{bottom:328.890000px;}
.y106{bottom:331.590000px;}
.y155{bottom:333.570000px;}
.y12f{bottom:335.370000px;}
.y7e{bottom:335.550000px;}
.ycc{bottom:336.810000px;}
.y115{bottom:340.590000px;}
.y2d{bottom:341.130000px;}
.y188{bottom:344.370000px;}
.ya1{bottom:344.550000px;}
.y17e{bottom:348.510000px;}
.y15c{bottom:349.590000px;}
.y5f{bottom:350.850000px;}
.ydd{bottom:353.550000px;}
.y46{bottom:356.430000px;}
.y196{bottom:357.510000px;}
.yf6{bottom:358.590000px;}
.y8b{bottom:359.895000px;}
.y186{bottom:362.595000px;}
.y154{bottom:364.575000px;}
.y164{bottom:366.555000px;}
.y7d{bottom:366.735000px;}
.ycb{bottom:367.815000px;}
.y1a6{bottom:367.995000px;}
.y105{bottom:371.595000px;}
.y2c{bottom:372.315000px;}
.y12e{bottom:375.555000px;}
.ya0{bottom:375.735000px;}
.y19b{bottom:379.515000px;}
.y15b{bottom:380.595000px;}
.y5e{bottom:382.035000px;}
.y17d{bottom:388.515000px;}
.yf5{bottom:389.595000px;}
.y8a{bottom:391.035000px;}
.ydc{bottom:393.735000px;}
.y153{bottom:395.715000px;}
.y163{bottom:397.515000px;}
.y1b3{bottom:397.695000px;}
.y1a5{bottom:399.135000px;}
.y104{bottom:402.735000px;}
.y2b{bottom:403.275000px;}
.y45{bottom:405.615000px;}
.y12d{bottom:406.515000px;}
.y7c{bottom:406.695000px;}
.yca{bottom:407.955000px;}
.y114{bottom:411.735000px;}
.y5d{bottom:412.995000px;}
.y9f{bottom:415.695000px;}
.y17c{bottom:419.655000px;}
.y13e{bottom:420.735000px;}
.y89{bottom:421.995000px;}
.ydb{bottom:424.695000px;}
.y152{bottom:427.755000px;}
.y162{bottom:428.655000px;}
.y1b2{bottom:428.835000px;}
.yf4{bottom:429.735000px;}
.y103{bottom:433.695000px;}
.y2a{bottom:434.415000px;}
.y12c{bottom:437.655000px;}
.y7b{bottom:437.835000px;}
.yc9{bottom:438.915000px;}
.y1a4{bottom:439.095000px;}
.y113{bottom:442.695000px;}
.y9e{bottom:446.835000px;}
.y44{bottom:448.275000px;}
.y17b{bottom:450.615000px;}
.y13d{bottom:451.695000px;}
.y5c{bottom:453.135000px;}
.yda{bottom:455.835000px;}
.y195{bottom:459.615000px;}
.yf3{bottom:460.695000px;}
.yc{bottom:462.135000px;}
.y102{bottom:464.835000px;}
.y29{bottom:465.375000px;}
.y12b{bottom:468.615000px;}
.y7a{bottom:468.795000px;}
.yc8{bottom:470.055000px;}
.y1a3{bottom:470.235000px;}
.y161{bottom:470.955000px;}
.y112{bottom:473.835000px;}
.yb5{bottom:479.235000px;}
.y187{bottom:479.955000px;}
.y17a{bottom:481.755000px;}
.y13c{bottom:482.835000px;}
.y5b{bottom:484.095000px;}
.y9d{bottom:486.795000px;}
.y43{bottom:487.335000px;}
.y194{bottom:490.755000px;}
.yf2{bottom:491.835000px;}
.y88{bottom:493.095000px;}
.yd9{bottom:495.795000px;}
.y28{bottom:496.515000px;}
.y79{bottom:499.935000px;}
.y101{bottom:504.795000px;}
.y12a{bottom:508.755000px;}
.yc7{bottom:510.015000px;}
.yb4{bottom:510.195000px;}
.y13b{bottom:513.795000px;}
.y5a{bottom:515.235000px;}
.y9c{bottom:517.935000px;}
.y179{bottom:521.715000px;}
.yf1{bottom:522.795000px;}
.y87{bottom:524.235000px;}
.yd8{bottom:526.935000px;}
.y42{bottom:527.295000px;}
.y27{bottom:527.475000px;}
.y78{bottom:530.895000px;}
.y100{bottom:535.935000px;}
.y129{bottom:539.715000px;}
.y1b1{bottom:539.895000px;}
.yc6{bottom:541.155000px;}
.y1a2{bottom:541.335000px;}
.y13a{bottom:544.935000px;}
.y59{bottom:546.195000px;}
.y9b{bottom:548.895000px;}
.yb3{bottom:550.335000px;}
.y178{bottom:552.855000px;}
.yf0{bottom:553.935000px;}
.y86{bottom:555.195000px;}
.y151{bottom:557.895000px;}
.y26{bottom:558.615000px;}
.yd7{bottom:566.895000px;}
.y41{bottom:567.435000px;}
.y128{bottom:570.855000px;}
.y77{bottom:571.035000px;}
.yc5{bottom:572.115000px;}
.y139{bottom:575.895000px;}
.y9a{bottom:580.035000px;}
.yb2{bottom:581.295000px;}
.y177{bottom:583.815000px;}
.yef{bottom:584.895000px;}
.y58{bottom:586.335000px;}
.y150{bottom:589.035000px;}
.y25{bottom:589.575000px;}
.yd6{bottom:598.035000px;}
.y127{bottom:601.815000px;}
.yff{bottom:607.035000px;}
.y40{bottom:607.395000px;}
.y76{bottom:610.995000px;}
.yc4{bottom:612.255000px;}
.y193{bottom:614.955000px;}
.y16a{bottom:616.035000px;}
.y57{bottom:617.295000px;}
.y99{bottom:620.025000px;}
.y24{bottom:620.745000px;}
.yb1{bottom:621.465000px;}
.y176{bottom:623.985000px;}
.yee{bottom:625.065000px;}
.y85{bottom:626.325000px;}
.y14f{bottom:629.025000px;}
.yd5{bottom:638.025000px;}
.y126{bottom:641.985000px;}
.y1b0{bottom:642.165000px;}
.yc3{bottom:643.245000px;}
.y8{bottom:646.845000px;}
.y138{bottom:647.025000px;}
.y3f{bottom:647.565000px;}
.y56{bottom:648.465000px;}
.y75{bottom:651.165000px;}
.yb0{bottom:652.425000px;}
.y175{bottom:654.945000px;}
.yed{bottom:656.025000px;}
.y84{bottom:657.465000px;}
.y14e{bottom:660.165000px;}
.y23{bottom:663.045000px;}
.yd4{bottom:669.165000px;}
.y125{bottom:672.945000px;}
.y137{bottom:678.165000px;}
.y55{bottom:679.425000px;}
.y1af{bottom:682.125000px;}
.yc2{bottom:683.385000px;}
.y174{bottom:686.085000px;}
.yec{bottom:687.165000px;}
.y3e{bottom:687.525000px;}
.y83{bottom:688.425000px;}
.y74{bottom:691.125000px;}
.yaf{bottom:692.565000px;}
.yd3{bottom:700.125000px;}
.y124{bottom:704.085000px;}
.y22{bottom:706.065000px;}
.y136{bottom:709.125000px;}
.y1ae{bottom:713.265000px;}
.yc1{bottom:714.345000px;}
.y192{bottom:717.045000px;}
.yeb{bottom:718.125000px;}
.y54{bottom:719.565000px;}
.y98{bottom:722.265000px;}
.yae{bottom:723.525000px;}
.y173{bottom:726.045000px;}
.y3d{bottom:727.665000px;}
.y73{bottom:731.265000px;}
.y123{bottom:735.045000px;}
.yd2{bottom:740.265000px;}
.yc0{bottom:745.485000px;}
.y191{bottom:748.005000px;}
.y21{bottom:748.365000px;}
.yea{bottom:749.265000px;}
.y53{bottom:750.525000px;}
.y14d{bottom:753.225000px;}
.y172{bottom:757.005000px;}
.y3c{bottom:758.625000px;}
.y97{bottom:762.225000px;}
.yad{bottom:763.665000px;}
.y122{bottom:766.005000px;}
.y72{bottom:771.225000px;}
.ybf{bottom:776.445000px;}
.ye9{bottom:780.225000px;}
.y52{bottom:781.665000px;}
.y14c{bottom:784.365000px;}
.y171{bottom:788.145000px;}
.y20{bottom:791.205000px;}
.y96{bottom:793.365000px;}
.yac{bottom:794.625000px;}
.y121{bottom:797.145000px;}
.y3b{bottom:798.765000px;}
.y71{bottom:802.365000px;}
.y1a1{bottom:803.625000px;}
.ybe{bottom:807.405000px;}
.ye8{bottom:811.365000px;}
.y82{bottom:812.625000px;}
.y190{bottom:819.105000px;}
.y51{bottom:821.625000px;}
.y1f{bottom:822.345000px;}
.y14b{bottom:824.325000px;}
.y120{bottom:828.105000px;}
.y70{bottom:833.325000px;}
.y5{bottom:834.225000px;}
.yab{bottom:834.765000px;}
.ybd{bottom:838.545000px;}
.y3a{bottom:838.725000px;}
.yfe{bottom:842.325000px;}
.y81{bottom:843.765000px;}
.y4{bottom:848.445000px;}
.y18f{bottom:850.245000px;}
.ye7{bottom:851.325000px;}
.y50{bottom:852.765000px;}
.y1e{bottom:853.305000px;}
.y14a{bottom:855.465000px;}
.y111{bottom:864.465000px;}
.yaa{bottom:865.725000px;}
.y11f{bottom:868.245000px;}
.y3{bottom:872.565000px;}
.y6f{bottom:873.465000px;}
.ybc{bottom:878.505000px;}
.y39{bottom:878.865000px;}
.ye6{bottom:882.510000px;}
.y4f{bottom:883.770000px;}
.y1d{bottom:884.490000px;}
.y149{bottom:886.470000px;}
.y18e{bottom:890.250000px;}
.y110{bottom:895.470000px;}
.y11e{bottom:899.250000px;}
.y6e{bottom:904.470000px;}
.ya9{bottom:905.910000px;}
.ybb{bottom:909.690000px;}
.y95{bottom:913.470000px;}
.y4e{bottom:914.910000px;}
.y1c{bottom:915.450000px;}
.y38{bottom:918.870000px;}
.y18d{bottom:921.390000px;}
.y10f{bottom:926.610000px;}
.y2{bottom:929.850000px;}
.y11d{bottom:930.390000px;}
.y6d{bottom:935.610000px;}
.ya8{bottom:936.870000px;}
.yba{bottom:940.650000px;}
.y94{bottom:944.610000px;}
.y4d{bottom:945.870000px;}
.y1b{bottom:946.590000px;}
.y18c{bottom:952.350000px;}
.y10e{bottom:957.570000px;}
.y37{bottom:959.010000px;}
.y11c{bottom:961.350000px;}
.y16d{bottom:966.570000px;}
.yb9{bottom:971.790000px;}
.y170{bottom:972.690000px;}
.y6c{bottom:975.570000px;}
.y80{bottom:977.010000px;}
.y1a{bottom:977.550000px;}
.y1{bottom:984.030000px;}
.y169{bottom:984.570000px;}
.y4c{bottom:986.010000px;}
.y10d{bottom:988.710000px;}
.y18b{bottom:992.490000px;}
.y148{bottom:997.710000px;}
.y36{bottom:998.970000px;}
.y11b{bottom:1001.490000px;}
.yb8{bottom:1002.750000px;}
.y6b{bottom:1006.710000px;}
.ya7{bottom:1007.970000px;}
.y19{bottom:1008.690000px;}
.ye5{bottom:1015.710000px;}
.y4b{bottom:1016.970000px;}
.y16f{bottom:1025.070000px;}
.y10c{bottom:1028.670000px;}
.y11a{bottom:1032.450000px;}
.yb7{bottom:1033.890000px;}
.y6a{bottom:1037.670000px;}
.y35{bottom:1039.110000px;}
.y18{bottom:1039.650000px;}
.y93{bottom:1046.670000px;}
.y4a{bottom:1048.110000px;}
.y119{bottom:1063.590000px;}
.y69{bottom:1068.810000px;}
.y17{bottom:1070.790000px;}
.yb6{bottom:1076.190000px;}
.y16e{bottom:1076.730000px;}
.y92{bottom:1077.810000px;}
.y34{bottom:1079.070000px;}
.y118{bottom:1094.550000px;}
.y16c{bottom:1099.770000px;}
.y16{bottom:1101.750000px;}
.y68{bottom:1108.770000px;}
.y33{bottom:1128.570000px;}
.y15{bottom:1137.030000px;}
.y67{bottom:1139.910000px;}
.hc{height:35.332031px;}
.h11{height:64.546875px;}
.hf{height:65.010937px;}
.h4{height:65.884219px;}
.h10{height:66.757500px;}
.he{height:70.664062px;}
.h12{height:74.004654px;}
.hd{height:76.176000px;}
.h6{height:79.956000px;}
.h8{height:82.676953px;}
.h3{height:83.787539px;}
.h5{height:84.898125px;}
.h7{height:93.983203px;}
.ha{height:121.179375px;}
.h9{height:164.160000px;}
.hb{height:166.710000px;}
.h2{height:228.287109px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:342.255000px;}
.w3{width:510.045000px;}
.w4{width:637.350000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:11.520000px;}
.xc{left:15.480000px;}
.x4{left:16.920000px;}
.x7{left:19.440000px;}
.x5{left:95.805000px;}
.x9{left:126.396000px;}
.x1{left:127.655987px;}
.x6{left:137.745000px;}
.x11{left:144.215987px;}
.x2{left:152.129987px;}
.x14{left:154.649987px;}
.xa{left:158.619000px;}
.xd{left:173.379000px;}
.x15{left:181.649987px;}
.x1a{left:186.149987px;}
.x3{left:190.470000px;}
.x18{left:208.649987px;}
.x1b{left:265.574987px;}
.x17{left:298.514987px;}
.x12{left:310.574987px;}
.x13{left:313.094987px;}
.xb{left:318.669000px;}
.x16{left:345.674987px;}
.x10{left:392.294987px;}
.xe{left:457.485000px;}
.x19{left:748.799987px;}
.xf{left:757.259987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls1{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.416000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls4{letter-spacing:2.560000pt;}
.ls6{letter-spacing:30.208000pt;}
.lsa{letter-spacing:39.786667pt;}
.ls3{letter-spacing:39.808000pt;}
.ws8{word-spacing:-26.720000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.704000pt;}
.wse{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.616000pt;}
.ws6{word-spacing:-13.534613pt;}
.ws4{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-14.458453pt;}
._14{margin-left:-12.661333pt;}
._15{margin-left:-10.933333pt;}
._17{margin-left:-7.119787pt;}
._16{margin-left:-5.621333pt;}
._28{margin-left:-4.583467pt;}
._1c{margin-left:-3.648000pt;}
._19{margin-left:-2.293333pt;}
._3{margin-left:-1.123200pt;}
._1{width:0.936320pt;}
._2{width:2.402987pt;}
._18{width:3.305173pt;}
._1d{width:4.205653pt;}
._11{width:5.120000pt;}
._13{width:6.656000pt;}
._a{width:7.552000pt;}
._b{width:8.504533pt;}
._d{width:9.560747pt;}
._8{width:11.018667pt;}
._9{width:12.149333pt;}
._e{width:13.680213pt;}
._12{width:14.819200pt;}
._c{width:17.344000pt;}
._1b{width:18.596693pt;}
._1e{width:19.547307pt;}
._1f{width:20.586240pt;}
._26{width:21.780267pt;}
._6{width:22.912000pt;}
._7{width:24.215680pt;}
._4{width:25.216000pt;}
._5{width:26.176000pt;}
._20{width:27.584000pt;}
._21{width:28.544000pt;}
._22{width:29.440000pt;}
._f{width:30.336000pt;}
._10{width:31.488000pt;}
._27{width:32.576000pt;}
._24{width:34.624000pt;}
._25{width:35.648000pt;}
._2b{width:42.003840pt;}
._2a{width:78.877440pt;}
._29{width:79.978667pt;}
._0{width:749.418667pt;}
._23{width:752.138667pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs0{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:16.320000pt;}
.y10{bottom:16.960000pt;}
.yb{bottom:20.960000pt;}
.y12{bottom:50.280000pt;}
.y14{bottom:51.040000pt;}
.y6{bottom:51.240000pt;}
.yf{bottom:53.760000pt;}
.ya{bottom:67.040000pt;}
.y13{bottom:68.960000pt;}
.ye{bottom:87.840000pt;}
.y19a{bottom:101.632000pt;}
.y185{bottom:108.512000pt;}
.y144{bottom:109.632000pt;}
.y1ad{bottom:109.952000pt;}
.y66{bottom:110.752000pt;}
.y9{bottom:112.960000pt;}
.ye4{bottom:113.152000pt;}
.yfd{bottom:117.632000pt;}
.y91{bottom:118.752000pt;}
.y1a0{bottom:120.192000pt;}
.yd{bottom:120.320000pt;}
.y18a{bottom:121.152000pt;}
.y16b{bottom:129.152000pt;}
.y135{bottom:132.512000pt;}
.ya6{bottom:132.832000pt;}
.y184{bottom:136.186667pt;}
.y1b9{bottom:136.346667pt;}
.y143{bottom:137.146667pt;}
.y1ac{bottom:137.466667pt;}
.y65{bottom:138.426667pt;}
.ye3{bottom:140.826667pt;}
.y199{bottom:144.186667pt;}
.yfc{bottom:145.146667pt;}
.yd1{bottom:145.306667pt;}
.y32{bottom:145.626667pt;}
.y90{bottom:146.426667pt;}
.y10b{bottom:148.826667pt;}
.y15a{bottom:150.586667pt;}
.y168{bottom:152.186667pt;}
.y19f{bottom:155.706667pt;}
.y117{bottom:156.826667pt;}
.y134{bottom:160.186667pt;}
.ya5{bottom:160.346667pt;}
.y1b8{bottom:163.866667pt;}
.y160{bottom:164.826667pt;}
.y1ab{bottom:165.146667pt;}
.y64{bottom:165.946667pt;}
.y189{bottom:168.346667pt;}
.y183{bottom:171.706667pt;}
.yfb{bottom:172.826667pt;}
.yd0{bottom:172.986667pt;}
.y8f{bottom:173.946667pt;}
.y31{bottom:174.426667pt;}
.ye2{bottom:176.346667pt;}
.y159{bottom:178.106667pt;}
.y167{bottom:179.706667pt;}
.y10a{bottom:184.346667pt;}
.y49{bottom:185.626667pt;}
.y133{bottom:187.706667pt;}
.ya4{bottom:187.866667pt;}
.y19e{bottom:191.386667pt;}
.y15f{bottom:192.346667pt;}
.y63{bottom:193.466667pt;}
.y147{bottom:195.866667pt;}
.y182{bottom:199.386667pt;}
.y1b7{bottom:199.546667pt;}
.y142{bottom:200.346667pt;}
.y1aa{bottom:200.666667pt;}
.y8e{bottom:201.466667pt;}
.y30{bottom:203.386667pt;}
.ye1{bottom:203.866667pt;}
.y158{bottom:205.786667pt;}
.y166{bottom:207.386667pt;}
.yfa{bottom:208.346667pt;}
.ycf{bottom:208.506667pt;}
.y109{bottom:211.866667pt;}
.y132{bottom:215.386667pt;}
.ya3{bottom:215.546667pt;}
.y19d{bottom:218.906667pt;}
.y15e{bottom:219.866667pt;}
.y62{bottom:221.146667pt;}
.y146{bottom:223.546667pt;}
.y181{bottom:226.906667pt;}
.y1b6{bottom:227.066667pt;}
.y141{bottom:227.866667pt;}
.y1a9{bottom:228.346667pt;}
.y2f{bottom:228.666667pt;}
.y8d{bottom:229.146667pt;}
.y48{bottom:229.306667pt;}
.ye0{bottom:231.546667pt;}
.y165{bottom:234.906667pt;}
.yf9{bottom:235.866667pt;}
.yce{bottom:236.186667pt;}
.y108{bottom:239.546667pt;}
.y157{bottom:241.306667pt;}
.y131{bottom:242.906667pt;}
.ya2{bottom:243.066667pt;}
.y19c{bottom:246.586667pt;}
.y15d{bottom:247.546667pt;}
.y145{bottom:251.066667pt;}
.y180{bottom:254.586667pt;}
.y140{bottom:255.546667pt;}
.y61{bottom:256.666667pt;}
.ydf{bottom:259.066667pt;}
.y198{bottom:262.586667pt;}
.y1b5{bottom:262.746667pt;}
.yf8{bottom:263.546667pt;}
.y1a8{bottom:263.866667pt;}
.y2e{bottom:265.146667pt;}
.y107{bottom:267.066667pt;}
.y156{bottom:268.826667pt;}
.y130{bottom:270.586667pt;}
.y7f{bottom:270.746667pt;}
.ycd{bottom:271.706667pt;}
.y47{bottom:273.146667pt;}
.y116{bottom:275.066667pt;}
.y11{bottom:278.266667pt;}
.y17f{bottom:282.106667pt;}
.y13f{bottom:283.066667pt;}
.y60{bottom:284.346667pt;}
.yde{bottom:286.746667pt;}
.y197{bottom:290.106667pt;}
.y1b4{bottom:290.266667pt;}
.yf7{bottom:291.066667pt;}
.y1a7{bottom:291.546667pt;}
.y8c{bottom:292.346667pt;}
.y106{bottom:294.746667pt;}
.y155{bottom:296.506667pt;}
.y12f{bottom:298.106667pt;}
.y7e{bottom:298.266667pt;}
.ycc{bottom:299.386667pt;}
.y115{bottom:302.746667pt;}
.y2d{bottom:303.226667pt;}
.y188{bottom:306.106667pt;}
.ya1{bottom:306.266667pt;}
.y17e{bottom:309.786667pt;}
.y15c{bottom:310.746667pt;}
.y5f{bottom:311.866667pt;}
.ydd{bottom:314.266667pt;}
.y46{bottom:316.826667pt;}
.y196{bottom:317.786667pt;}
.yf6{bottom:318.746667pt;}
.y8b{bottom:319.906667pt;}
.y186{bottom:322.306667pt;}
.y154{bottom:324.066667pt;}
.y164{bottom:325.826667pt;}
.y7d{bottom:325.986667pt;}
.ycb{bottom:326.946667pt;}
.y1a6{bottom:327.106667pt;}
.y105{bottom:330.306667pt;}
.y2c{bottom:330.946667pt;}
.y12e{bottom:333.826667pt;}
.ya0{bottom:333.986667pt;}
.y19b{bottom:337.346667pt;}
.y15b{bottom:338.306667pt;}
.y5e{bottom:339.586667pt;}
.y17d{bottom:345.346667pt;}
.yf5{bottom:346.306667pt;}
.y8a{bottom:347.586667pt;}
.ydc{bottom:349.986667pt;}
.y153{bottom:351.746667pt;}
.y163{bottom:353.346667pt;}
.y1b3{bottom:353.506667pt;}
.y1a5{bottom:354.786667pt;}
.y104{bottom:357.986667pt;}
.y2b{bottom:358.466667pt;}
.y45{bottom:360.546667pt;}
.y12d{bottom:361.346667pt;}
.y7c{bottom:361.506667pt;}
.yca{bottom:362.626667pt;}
.y114{bottom:365.986667pt;}
.y5d{bottom:367.106667pt;}
.y9f{bottom:369.506667pt;}
.y17c{bottom:373.026667pt;}
.y13e{bottom:373.986667pt;}
.y89{bottom:375.106667pt;}
.ydb{bottom:377.506667pt;}
.y152{bottom:380.226667pt;}
.y162{bottom:381.026667pt;}
.y1b2{bottom:381.186667pt;}
.yf4{bottom:381.986667pt;}
.y103{bottom:385.506667pt;}
.y2a{bottom:386.146667pt;}
.y12c{bottom:389.026667pt;}
.y7b{bottom:389.186667pt;}
.yc9{bottom:390.146667pt;}
.y1a4{bottom:390.306667pt;}
.y113{bottom:393.506667pt;}
.y9e{bottom:397.186667pt;}
.y44{bottom:398.466667pt;}
.y17b{bottom:400.546667pt;}
.y13d{bottom:401.506667pt;}
.y5c{bottom:402.786667pt;}
.yda{bottom:405.186667pt;}
.y195{bottom:408.546667pt;}
.yf3{bottom:409.506667pt;}
.yc{bottom:410.786667pt;}
.y102{bottom:413.186667pt;}
.y29{bottom:413.666667pt;}
.y12b{bottom:416.546667pt;}
.y7a{bottom:416.706667pt;}
.yc8{bottom:417.826667pt;}
.y1a3{bottom:417.986667pt;}
.y161{bottom:418.626667pt;}
.y112{bottom:421.186667pt;}
.yb5{bottom:425.986667pt;}
.y187{bottom:426.626667pt;}
.y17a{bottom:428.226667pt;}
.y13c{bottom:429.186667pt;}
.y5b{bottom:430.306667pt;}
.y9d{bottom:432.706667pt;}
.y43{bottom:433.186667pt;}
.y194{bottom:436.226667pt;}
.yf2{bottom:437.186667pt;}
.y88{bottom:438.306667pt;}
.yd9{bottom:440.706667pt;}
.y28{bottom:441.346667pt;}
.y79{bottom:444.386667pt;}
.y101{bottom:448.706667pt;}
.y12a{bottom:452.226667pt;}
.yc7{bottom:453.346667pt;}
.yb4{bottom:453.506667pt;}
.y13b{bottom:456.706667pt;}
.y5a{bottom:457.986667pt;}
.y9c{bottom:460.386667pt;}
.y179{bottom:463.746667pt;}
.yf1{bottom:464.706667pt;}
.y87{bottom:465.986667pt;}
.yd8{bottom:468.386667pt;}
.y42{bottom:468.706667pt;}
.y27{bottom:468.866667pt;}
.y78{bottom:471.906667pt;}
.y100{bottom:476.386667pt;}
.y129{bottom:479.746667pt;}
.y1b1{bottom:479.906667pt;}
.yc6{bottom:481.026667pt;}
.y1a2{bottom:481.186667pt;}
.y13a{bottom:484.386667pt;}
.y59{bottom:485.506667pt;}
.y9b{bottom:487.906667pt;}
.yb3{bottom:489.186667pt;}
.y178{bottom:491.426667pt;}
.yf0{bottom:492.386667pt;}
.y86{bottom:493.506667pt;}
.y151{bottom:495.906667pt;}
.y26{bottom:496.546667pt;}
.yd7{bottom:503.906667pt;}
.y41{bottom:504.386667pt;}
.y128{bottom:507.426667pt;}
.y77{bottom:507.586667pt;}
.yc5{bottom:508.546667pt;}
.y139{bottom:511.906667pt;}
.y9a{bottom:515.586667pt;}
.yb2{bottom:516.706667pt;}
.y177{bottom:518.946667pt;}
.yef{bottom:519.906667pt;}
.y58{bottom:521.186667pt;}
.y150{bottom:523.586667pt;}
.y25{bottom:524.066667pt;}
.yd6{bottom:531.586667pt;}
.y127{bottom:534.946667pt;}
.yff{bottom:539.586667pt;}
.y40{bottom:539.906667pt;}
.y76{bottom:543.106667pt;}
.yc4{bottom:544.226667pt;}
.y193{bottom:546.626667pt;}
.y16a{bottom:547.586667pt;}
.y57{bottom:548.706667pt;}
.y99{bottom:551.133333pt;}
.y24{bottom:551.773333pt;}
.yb1{bottom:552.413333pt;}
.y176{bottom:554.653333pt;}
.yee{bottom:555.613333pt;}
.y85{bottom:556.733333pt;}
.y14f{bottom:559.133333pt;}
.yd5{bottom:567.133333pt;}
.y126{bottom:570.653333pt;}
.y1b0{bottom:570.813333pt;}
.yc3{bottom:571.773333pt;}
.y8{bottom:574.973333pt;}
.y138{bottom:575.133333pt;}
.y3f{bottom:575.613333pt;}
.y56{bottom:576.413333pt;}
.y75{bottom:578.813333pt;}
.yb0{bottom:579.933333pt;}
.y175{bottom:582.173333pt;}
.yed{bottom:583.133333pt;}
.y84{bottom:584.413333pt;}
.y14e{bottom:586.813333pt;}
.y23{bottom:589.373333pt;}
.yd4{bottom:594.813333pt;}
.y125{bottom:598.173333pt;}
.y137{bottom:602.813333pt;}
.y55{bottom:603.933333pt;}
.y1af{bottom:606.333333pt;}
.yc2{bottom:607.453333pt;}
.y174{bottom:609.853333pt;}
.yec{bottom:610.813333pt;}
.y3e{bottom:611.133333pt;}
.y83{bottom:611.933333pt;}
.y74{bottom:614.333333pt;}
.yaf{bottom:615.613333pt;}
.yd3{bottom:622.333333pt;}
.y124{bottom:625.853333pt;}
.y22{bottom:627.613333pt;}
.y136{bottom:630.333333pt;}
.y1ae{bottom:634.013333pt;}
.yc1{bottom:634.973333pt;}
.y192{bottom:637.373333pt;}
.yeb{bottom:638.333333pt;}
.y54{bottom:639.613333pt;}
.y98{bottom:642.013333pt;}
.yae{bottom:643.133333pt;}
.y173{bottom:645.373333pt;}
.y3d{bottom:646.813333pt;}
.y73{bottom:650.013333pt;}
.y123{bottom:653.373333pt;}
.yd2{bottom:658.013333pt;}
.yc0{bottom:662.653333pt;}
.y191{bottom:664.893333pt;}
.y21{bottom:665.213333pt;}
.yea{bottom:666.013333pt;}
.y53{bottom:667.133333pt;}
.y14d{bottom:669.533333pt;}
.y172{bottom:672.893333pt;}
.y3c{bottom:674.333333pt;}
.y97{bottom:677.533333pt;}
.yad{bottom:678.813333pt;}
.y122{bottom:680.893333pt;}
.y72{bottom:685.533333pt;}
.ybf{bottom:690.173333pt;}
.ye9{bottom:693.533333pt;}
.y52{bottom:694.813333pt;}
.y14c{bottom:697.213333pt;}
.y171{bottom:700.573333pt;}
.y20{bottom:703.293333pt;}
.y96{bottom:705.213333pt;}
.yac{bottom:706.333333pt;}
.y121{bottom:708.573333pt;}
.y3b{bottom:710.013333pt;}
.y71{bottom:713.213333pt;}
.y1a1{bottom:714.333333pt;}
.ybe{bottom:717.693333pt;}
.ye8{bottom:721.213333pt;}
.y82{bottom:722.333333pt;}
.y190{bottom:728.093333pt;}
.y51{bottom:730.333333pt;}
.y1f{bottom:730.973333pt;}
.y14b{bottom:732.733333pt;}
.y120{bottom:736.093333pt;}
.y70{bottom:740.733333pt;}
.y5{bottom:741.533333pt;}
.yab{bottom:742.013333pt;}
.ybd{bottom:745.373333pt;}
.y3a{bottom:745.533333pt;}
.yfe{bottom:748.733333pt;}
.y81{bottom:750.013333pt;}
.y4{bottom:754.173333pt;}
.y18f{bottom:755.773333pt;}
.ye7{bottom:756.733333pt;}
.y50{bottom:758.013333pt;}
.y1e{bottom:758.493333pt;}
.y14a{bottom:760.413333pt;}
.y111{bottom:768.413333pt;}
.yaa{bottom:769.533333pt;}
.y11f{bottom:771.773333pt;}
.y3{bottom:775.613333pt;}
.y6f{bottom:776.413333pt;}
.ybc{bottom:780.893333pt;}
.y39{bottom:781.213333pt;}
.ye6{bottom:784.453333pt;}
.y4f{bottom:785.573333pt;}
.y1d{bottom:786.213333pt;}
.y149{bottom:787.973333pt;}
.y18e{bottom:791.333333pt;}
.y110{bottom:795.973333pt;}
.y11e{bottom:799.333333pt;}
.y6e{bottom:803.973333pt;}
.ya9{bottom:805.253333pt;}
.ybb{bottom:808.613333pt;}
.y95{bottom:811.973333pt;}
.y4e{bottom:813.253333pt;}
.y1c{bottom:813.733333pt;}
.y38{bottom:816.773333pt;}
.y18d{bottom:819.013333pt;}
.y10f{bottom:823.653333pt;}
.y2{bottom:826.533333pt;}
.y11d{bottom:827.013333pt;}
.y6d{bottom:831.653333pt;}
.ya8{bottom:832.773333pt;}
.yba{bottom:836.133333pt;}
.y94{bottom:839.653333pt;}
.y4d{bottom:840.773333pt;}
.y1b{bottom:841.413333pt;}
.y18c{bottom:846.533333pt;}
.y10e{bottom:851.173333pt;}
.y37{bottom:852.453333pt;}
.y11c{bottom:854.533333pt;}
.y16d{bottom:859.173333pt;}
.yb9{bottom:863.813333pt;}
.y170{bottom:864.613333pt;}
.y6c{bottom:867.173333pt;}
.y80{bottom:868.453333pt;}
.y1a{bottom:868.933333pt;}
.y1{bottom:874.693333pt;}
.y169{bottom:875.173333pt;}
.y4c{bottom:876.453333pt;}
.y10d{bottom:878.853333pt;}
.y18b{bottom:882.213333pt;}
.y148{bottom:886.853333pt;}
.y36{bottom:887.973333pt;}
.y11b{bottom:890.213333pt;}
.yb8{bottom:891.333333pt;}
.y6b{bottom:894.853333pt;}
.ya7{bottom:895.973333pt;}
.y19{bottom:896.613333pt;}
.ye5{bottom:902.853333pt;}
.y4b{bottom:903.973333pt;}
.y16f{bottom:911.173333pt;}
.y10c{bottom:914.373333pt;}
.y11a{bottom:917.733333pt;}
.yb7{bottom:919.013333pt;}
.y6a{bottom:922.373333pt;}
.y35{bottom:923.653333pt;}
.y18{bottom:924.133333pt;}
.y93{bottom:930.373333pt;}
.y4a{bottom:931.653333pt;}
.y119{bottom:945.413333pt;}
.y69{bottom:950.053333pt;}
.y17{bottom:951.813333pt;}
.yb6{bottom:956.613333pt;}
.y16e{bottom:957.093333pt;}
.y92{bottom:958.053333pt;}
.y34{bottom:959.173333pt;}
.y118{bottom:972.933333pt;}
.y16c{bottom:977.573333pt;}
.y16{bottom:979.333333pt;}
.y68{bottom:985.573333pt;}
.y33{bottom:1003.173333pt;}
.y15{bottom:1010.693333pt;}
.y67{bottom:1013.253333pt;}
.hc{height:31.406250pt;}
.h11{height:57.375000pt;}
.hf{height:57.787500pt;}
.h4{height:58.563750pt;}
.h10{height:59.340000pt;}
.he{height:62.812500pt;}
.h12{height:65.781915pt;}
.hd{height:67.712000pt;}
.h6{height:71.072000pt;}
.h8{height:73.490625pt;}
.h3{height:74.477812pt;}
.h5{height:75.465000pt;}
.h7{height:83.540625pt;}
.ha{height:107.715000pt;}
.h9{height:145.920000pt;}
.hb{height:148.186667pt;}
.h2{height:202.921875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:304.226667pt;}
.w3{width:453.373333pt;}
.w4{width:566.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:10.240000pt;}
.xc{left:13.760000pt;}
.x4{left:15.040000pt;}
.x7{left:17.280000pt;}
.x5{left:85.160000pt;}
.x9{left:112.352000pt;}
.x1{left:113.471988pt;}
.x6{left:122.440000pt;}
.x11{left:128.191988pt;}
.x2{left:135.226655pt;}
.x14{left:137.466655pt;}
.xa{left:140.994667pt;}
.xd{left:154.114667pt;}
.x15{left:161.466655pt;}
.x1a{left:165.466655pt;}
.x3{left:169.306667pt;}
.x18{left:185.466655pt;}
.x1b{left:236.066655pt;}
.x17{left:265.346655pt;}
.x12{left:276.066655pt;}
.x13{left:278.306655pt;}
.xb{left:283.261333pt;}
.x16{left:307.266655pt;}
.x10{left:348.706655pt;}
.xe{left:406.653333pt;}
.x19{left:665.599988pt;}
.xf{left:673.119988pt;}
}




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