
    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_c1f38353619cf5b184425f4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0cb1d764b1823c0417ccd36f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e847fd092afd5ecf7f6d04ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_7d3ec5fb149a4a560ca73102.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_753f3122baa10720a1dfec78.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_ddbf15ceacf043d492ec05aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7fcb4e7a16a2cb9a1f71c622.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dbc808ec6d062cd9d89f0cc2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.816425;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.048960px;}
.ls7{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.480000px;}
.ls16{letter-spacing:6.785280px;}
.ls15{letter-spacing:16.506720px;}
.ls13{letter-spacing:41.706720px;}
.ls3{letter-spacing:46.026720px;}
.lsb{letter-spacing:49.985280px;}
.lsa{letter-spacing:55.386720px;}
.ls10{letter-spacing:847.740000px;}
.ls11{letter-spacing:2674.141440px;}
.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;}
}
.wsb{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.506480px;}
.ws9{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-6.094080px;}
._4{margin-left:-3.444480px;}
._22{margin-left:-2.411280px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._7{width:2.626320px;}
._9{width:3.764880px;}
._11{width:5.622480px;}
._8{width:7.295760px;}
._a{width:8.306640px;}
._21{width:9.333840px;}
._b{width:10.530240px;}
._f{width:11.718000px;}
._10{width:13.087440px;}
._20{width:16.498800px;}
._16{width:17.509680px;}
._15{width:18.645120px;}
._14{width:20.378160px;}
._c{width:21.633120px;}
._d{width:22.654080px;}
._13{width:24.382080px;}
._1d{width:25.603920px;}
._12{width:27.011520px;}
._18{width:28.331280px;}
._26{width:29.439360px;}
._1c{width:30.453840px;}
._1b{width:31.457520px;}
._17{width:32.514480px;}
._e{width:35.024400px;}
._19{width:36.264240px;}
._28{width:37.509840px;}
._29{width:39.354240px;}
._25{width:40.522320px;}
._2f{width:41.891760px;}
._2c{width:44.765280px;}
._24{width:48.395520px;}
._23{width:49.546080px;}
._2d{width:56.239200px;}
._1f{width:59.884560px;}
._1e{width:61.350480px;}
._1a{width:86.537520px;}
._27{width:106.970400px;}
._2e{width:108.105840px;}
._30{width:164.544480px;}
._6{width:202.500000px;}
._31{width:320.011200px;}
._5{width:345.365760px;}
._2a{width:525.756000px;}
._3{width:631.448160px;}
._2b{width:988.200000px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:transparent;}
.fc2{color:rgb(0,78,154);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:3.600000px;}
.y177{bottom:3.630000px;}
.ya5{bottom:3.780000px;}
.yec{bottom:5.040000px;}
.y10f{bottom:6.300000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.660000px;}
.yba{bottom:13.860000px;}
.yef{bottom:20.700000px;}
.yfb{bottom:21.420000px;}
.yf0{bottom:21.600000px;}
.yac{bottom:22.500000px;}
.ya1{bottom:22.680000px;}
.ya4{bottom:22.725000px;}
.yfc{bottom:22.860000px;}
.yb5{bottom:23.400000px;}
.yf2{bottom:23.760000px;}
.yb9{bottom:32.760000px;}
.yf4{bottom:39.780000px;}
.yee{bottom:39.825000px;}
.yf8{bottom:40.500000px;}
.yf9{bottom:40.680000px;}
.yf5{bottom:41.040000px;}
.yf1{bottom:41.085000px;}
.yab{bottom:41.574000px;}
.ya8{bottom:41.580000px;}
.ya3{bottom:41.625000px;}
.yb8{bottom:51.660000px;}
.yb3{bottom:57.285000px;}
.y9{bottom:57.420000px;}
.y110{bottom:57.600000px;}
.ya7{bottom:60.660000px;}
.y6{bottom:72.720000px;}
.y10e{bottom:72.900000px;}
.y10a{bottom:100.656000px;}
.y19c{bottom:104.076000px;}
.y34{bottom:108.396000px;}
.yb1{bottom:110.205000px;}
.y4a{bottom:110.376000px;}
.y154{bottom:111.600000px;}
.yaa{bottom:111.816000px;}
.y7c{bottom:112.896000px;}
.ye9{bottom:114.876000px;}
.y12f{bottom:117.360000px;}
.y170{bottom:120.420000px;}
.y109{bottom:120.636000px;}
.y19b{bottom:124.056000px;}
.yd2{bottom:128.016000px;}
.y33{bottom:128.376000px;}
.y49{bottom:130.356000px;}
.y7b{bottom:132.696000px;}
.ye8{bottom:134.676000px;}
.y12e{bottom:137.160000px;}
.y16f{bottom:140.220000px;}
.y108{bottom:140.436000px;}
.y19a{bottom:143.856000px;}
.yd1{bottom:147.816000px;}
.y32{bottom:148.176000px;}
.y48{bottom:150.150000px;}
.y153{bottom:151.560000px;}
.y7a{bottom:152.670000px;}
.ye7{bottom:154.470000px;}
.y12d{bottom:156.990000px;}
.y16e{bottom:160.050000px;}
.y107{bottom:160.230000px;}
.y199{bottom:163.650000px;}
.yd0{bottom:164.370000px;}
.y31{bottom:167.970000px;}
.y47{bottom:169.950000px;}
.y79{bottom:172.470000px;}
.ye6{bottom:174.270000px;}
.y12c{bottom:176.790000px;}
.y106{bottom:180.030000px;}
.y198{bottom:183.450000px;}
.ya9{bottom:185.070000px;}
.y30{bottom:187.770000px;}
.y46{bottom:189.750000px;}
.y152{bottom:191.370000px;}
.y78{bottom:192.270000px;}
.ye5{bottom:194.070000px;}
.y12b{bottom:196.770000px;}
.y105{bottom:199.830000px;}
.y197{bottom:203.250000px;}
.y2f{bottom:207.570000px;}
.y45{bottom:209.550000px;}
.y77{bottom:212.070000px;}
.ycf{bottom:213.690000px;}
.ye4{bottom:214.050000px;}
.y12a{bottom:216.570000px;}
.y16d{bottom:219.630000px;}
.y104{bottom:219.810000px;}
.y196{bottom:223.230000px;}
.y2e{bottom:227.550000px;}
.y44{bottom:229.530000px;}
.ye3{bottom:230.610000px;}
.y151{bottom:231.150000px;}
.y76{bottom:231.870000px;}
.yce{bottom:233.490000px;}
.y129{bottom:236.370000px;}
.y16c{bottom:239.430000px;}
.ya6{bottom:239.610000px;}
.y195{bottom:243.030000px;}
.y2d{bottom:247.350000px;}
.y43{bottom:249.330000px;}
.y75{bottom:251.850000px;}
.ycd{bottom:253.290000px;}
.y128{bottom:256.170000px;}
.y16b{bottom:259.230000px;}
.y103{bottom:259.410000px;}
.y194{bottom:262.830000px;}
.ye2{bottom:264.810000px;}
.y2c{bottom:267.150000px;}
.y10b{bottom:268.410000px;}
.y42{bottom:269.130000px;}
.y150{bottom:270.930000px;}
.y74{bottom:271.650000px;}
.ycc{bottom:273.090000px;}
.y127{bottom:275.970000px;}
.y16a{bottom:279.210000px;}
.y85{bottom:280.650000px;}
.y193{bottom:282.630000px;}
.ye1{bottom:284.610000px;}
.y2b{bottom:286.950000px;}
.y102{bottom:288.210000px;}
.y41{bottom:288.930000px;}
.y73{bottom:291.450000px;}
.ycb{bottom:293.070000px;}
.y126{bottom:295.950000px;}
.y169{bottom:299.010000px;}
.y84{bottom:300.450000px;}
.ye0{bottom:301.170000px;}
.y192{bottom:302.430000px;}
.y2a{bottom:306.750000px;}
.y101{bottom:308.010000px;}
.y40{bottom:308.730000px;}
.y14f{bottom:310.710000px;}
.y72{bottom:311.250000px;}
.yca{bottom:312.870000px;}
.y168{bottom:318.810000px;}
.y83{bottom:320.250000px;}
.y125{bottom:322.230000px;}
.y29{bottom:326.730000px;}
.y100{bottom:327.990000px;}
.y3f{bottom:328.710000px;}
.y71{bottom:331.050000px;}
.ya2{bottom:331.950000px;}
.yc9{bottom:332.670000px;}
.ydf{bottom:335.730000px;}
.y167{bottom:338.610000px;}
.y82{bottom:340.095000px;}
.y182{bottom:342.255000px;}
.y28{bottom:346.575000px;}
.yff{bottom:347.835000px;}
.y3e{bottom:348.555000px;}
.y14e{bottom:350.670000px;}
.y70{bottom:351.075000px;}
.yc8{bottom:352.515000px;}
.y191{bottom:353.055000px;}
.yde{bottom:355.575000px;}
.y81{bottom:360.075000px;}
.y181{bottom:362.055000px;}
.y124{bottom:365.070000px;}
.y27{bottom:366.375000px;}
.y3d{bottom:368.355000px;}
.yfe{bottom:370.875000px;}
.yc7{bottom:372.315000px;}
.y190{bottom:373.035000px;}
.y166{bottom:374.070000px;}
.ydd{bottom:375.375000px;}
.y6f{bottom:379.875000px;}
.y180{bottom:381.855000px;}
.y26{bottom:386.175000px;}
.y3c{bottom:388.155000px;}
.y14d{bottom:390.450000px;}
.yc6{bottom:392.295000px;}
.y18f{bottom:392.835000px;}
.ydc{bottom:395.175000px;}
.y6e{bottom:399.675000px;}
.y17f{bottom:401.655000px;}
.y123{bottom:402.015000px;}
.ya0{bottom:405.435000px;}
.y25{bottom:405.975000px;}
.y3b{bottom:407.955000px;}
.y165{bottom:410.835000px;}
.yc5{bottom:412.095000px;}
.y18e{bottom:412.635000px;}
.ydb{bottom:414.975000px;}
.y6d{bottom:419.475000px;}
.y17e{bottom:421.635000px;}
.y24{bottom:425.955000px;}
.y3a{bottom:427.935000px;}
.y14c{bottom:430.275000px;}
.yc4{bottom:431.895000px;}
.y18d{bottom:432.435000px;}
.yda{bottom:434.955000px;}
.y122{bottom:438.735000px;}
.y6c{bottom:439.275000px;}
.y17d{bottom:441.435000px;}
.yfd{bottom:442.335000px;}
.y23{bottom:445.755000px;}
.y39{bottom:447.735000px;}
.yc3{bottom:451.695000px;}
.y18c{bottom:452.235000px;}
.y6b{bottom:459.255000px;}
.y9e{bottom:459.975000px;}
.y17c{bottom:461.235000px;}
.yd9{bottom:463.755000px;}
.y22{bottom:465.555000px;}
.y38{bottom:467.535000px;}
.y14b{bottom:470.055000px;}
.yc2{bottom:471.495000px;}
.y18b{bottom:472.215000px;}
.y121{bottom:475.635000px;}
.y6a{bottom:479.055000px;}
.y17b{bottom:481.035000px;}
.yd8{bottom:483.555000px;}
.y164{bottom:484.455000px;}
.y21{bottom:485.355000px;}
.y37{bottom:487.335000px;}
.yc1{bottom:491.475000px;}
.y18a{bottom:492.015000px;}
.y69{bottom:498.855000px;}
.y9d{bottom:500.115000px;}
.y17a{bottom:500.835000px;}
.yd7{bottom:503.355000px;}
.y20{bottom:505.155000px;}
.y36{bottom:507.135000px;}
.y14a{bottom:510.015000px;}
.yc0{bottom:511.275000px;}
.y189{bottom:511.815000px;}
.y120{bottom:512.355000px;}
.yfa{bottom:513.795000px;}
.y68{bottom:518.655000px;}
.y179{bottom:520.815000px;}
.y163{bottom:521.355000px;}
.yd6{bottom:523.155000px;}
.y1f{bottom:525.675000px;}
.y35{bottom:527.115000px;}
.y80{bottom:527.655000px;}
.y19e{bottom:530.535000px;}
.ybf{bottom:531.075000px;}
.y188{bottom:531.615000px;}
.y67{bottom:538.455000px;}
.y99{bottom:542.415000px;}
.yd5{bottom:543.135000px;}
.y178{bottom:543.855000px;}
.y1e{bottom:546.915000px;}
.y7f{bottom:547.455000px;}
.y11f{bottom:549.255000px;}
.y149{bottom:549.795000px;}
.ybe{bottom:550.875000px;}
.y187{bottom:551.415000px;}
.y162{bottom:558.255000px;}
.y66{bottom:558.435000px;}
.y9c{bottom:560.955000px;}
.y98{bottom:562.395000px;}
.yd4{bottom:562.935000px;}
.y1d{bottom:566.715000px;}
.y7e{bottom:567.435000px;}
.ybd{bottom:570.675000px;}
.y186{bottom:571.395000px;}
.y65{bottom:578.235000px;}
.y176{bottom:579.315000px;}
.y9b{bottom:580.755000px;}
.y97{bottom:582.195000px;}
.yd3{bottom:582.765000px;}
.yf7{bottom:585.285000px;}
.y11e{bottom:585.975000px;}
.y1c{bottom:586.545000px;}
.y7d{bottom:587.265000px;}
.y148{bottom:589.575000px;}
.y185{bottom:591.225000px;}
.y161{bottom:594.975000px;}
.y9a{bottom:600.585000px;}
.y96{bottom:602.025000px;}
.ybc{bottom:602.565000px;}
.y64{bottom:607.065000px;}
.y1b{bottom:608.685000px;}
.y19d{bottom:609.585000px;}
.y184{bottom:611.025000px;}
.y175{bottom:614.805000px;}
.y95{bottom:621.825000px;}
.ybb{bottom:622.365000px;}
.y11d{bottom:622.875000px;}
.y63{bottom:626.865000px;}
.y1a{bottom:628.485000px;}
.y147{bottom:629.355000px;}
.y183{bottom:630.825000px;}
.y160{bottom:631.875000px;}
.yb7{bottom:645.405000px;}
.y62{bottom:646.665000px;}
.y19{bottom:648.285000px;}
.y174{bottom:650.265000px;}
.y94{bottom:650.625000px;}
.y11c{bottom:659.625000px;}
.y61{bottom:666.645000px;}
.y18{bottom:668.085000px;}
.y146{bottom:669.165000px;}
.y93{bottom:670.605000px;}
.yf6{bottom:674.565000px;}
.y15f{bottom:674.745000px;}
.y173{bottom:685.725000px;}
.y60{bottom:686.445000px;}
.y17{bottom:688.065000px;}
.y92{bottom:690.405000px;}
.y11b{bottom:696.525000px;}
.y5f{bottom:706.245000px;}
.y16{bottom:707.865000px;}
.y145{bottom:709.125000px;}
.y91{bottom:710.205000px;}
.yf3{bottom:717.045000px;}
.y15e{bottom:717.585000px;}
.y172{bottom:721.185000px;}
.y5e{bottom:726.045000px;}
.y15{bottom:727.665000px;}
.yb6{bottom:728.925000px;}
.y90{bottom:730.005000px;}
.y11a{bottom:733.425000px;}
.y5d{bottom:745.845000px;}
.y14{bottom:747.465000px;}
.y144{bottom:748.905000px;}
.y8f{bottom:749.805000px;}
.y171{bottom:756.645000px;}
.y15d{bottom:760.425000px;}
.y5c{bottom:765.825000px;}
.y13{bottom:767.265000px;}
.y8e{bottom:769.785000px;}
.y119{bottom:770.145000px;}
.yb0{bottom:783.465000px;}
.y5b{bottom:785.625000px;}
.yed{bottom:788.505000px;}
.y143{bottom:788.685000px;}
.y12{bottom:789.405000px;}
.y8d{bottom:789.585000px;}
.yb4{bottom:790.845000px;}
.y15c{bottom:803.085000px;}
.y5a{bottom:805.425000px;}
.y118{bottom:807.045000px;}
.y11{bottom:809.205000px;}
.y8c{bottom:809.385000px;}
.y59{bottom:825.225000px;}
.y142{bottom:828.465000px;}
.y13a{bottom:828.825000px;}
.y10{bottom:829.230000px;}
.y117{bottom:843.765000px;}
.y58{bottom:845.070000px;}
.y15b{bottom:845.925000px;}
.y8b{bottom:849.030000px;}
.yf{bottom:854.250000px;}
.y139{bottom:855.285000px;}
.yeb{bottom:860.010000px;}
.yb2{bottom:863.610000px;}
.y57{bottom:865.050000px;}
.y141{bottom:868.425000px;}
.y8a{bottom:869.010000px;}
.ye{bottom:874.050000px;}
.y56{bottom:884.850000px;}
.y116{bottom:886.605000px;}
.y15a{bottom:888.765000px;}
.y89{bottom:888.810000px;}
.yd{bottom:889.170000px;}
.yea{bottom:895.470000px;}
.y138{bottom:898.170000px;}
.y55{bottom:904.650000px;}
.y140{bottom:908.250000px;}
.y88{bottom:908.610000px;}
.yc{bottom:910.410000px;}
.y54{bottom:924.450000px;}
.yaf{bottom:925.530000px;}
.y87{bottom:928.410000px;}
.y115{bottom:929.490000px;}
.y159{bottom:931.650000px;}
.yb{bottom:933.990000px;}
.y137{bottom:941.010000px;}
.y53{bottom:945.510000px;}
.y13f{bottom:948.030000px;}
.y86{bottom:948.210000px;}
.ya{bottom:965.670000px;}
.y52{bottom:968.190000px;}
.y114{bottom:972.330000px;}
.y158{bottom:974.490000px;}
.y136{bottom:983.850000px;}
.y51{bottom:987.990000px;}
.y13e{bottom:990.870000px;}
.y5{bottom:991.590000px;}
.yae{bottom:998.970000px;}
.y50{bottom:1007.790000px;}
.y113{bottom:1015.170000px;}
.y157{bottom:1017.330000px;}
.y135{bottom:1026.690000px;}
.y4f{bottom:1027.590000px;}
.y4{bottom:1027.950000px;}
.yad{bottom:1034.430000px;}
.y13b{bottom:1043.070000px;}
.y4e{bottom:1047.390000px;}
.y13d{bottom:1047.750000px;}
.y3{bottom:1056.390000px;}
.y112{bottom:1058.010000px;}
.y156{bottom:1059.990000px;}
.y134{bottom:1062.870000px;}
.y4d{bottom:1067.370000px;}
.y13c{bottom:1067.550000px;}
.y133{bottom:1082.670000px;}
.y2{bottom:1084.860000px;}
.y4c{bottom:1096.740000px;}
.y132{bottom:1102.470000px;}
.y155{bottom:1102.830000px;}
.y1{bottom:1115.640000px;}
.y4b{bottom:1118.520000px;}
.y131{bottom:1122.270000px;}
.y111{bottom:1140.990000px;}
.y130{bottom:1142.250000px;}
.y10d{bottom:1171.620000px;}
.y10c{bottom:1193.400000px;}
.he{height:18.900000px;}
.h1f{height:18.936000px;}
.h16{height:19.080000px;}
.h1d{height:21.780000px;}
.h5{height:21.996000px;}
.h9{height:27.907031px;}
.hf{height:37.980000px;}
.h14{height:38.736000px;}
.h8{height:42.164648px;}
.ha{height:42.894141px;}
.hb{height:43.506914px;}
.h2{height:46.736719px;}
.h4{height:47.545312px;}
.hd{height:48.224531px;}
.hc{height:49.255313px;}
.h3{height:50.800781px;}
.h1e{height:53.205469px;}
.h6{height:53.224453px;}
.h1{height:54.864844px;}
.h1a{height:54.900000px;}
.h18{height:55.080000px;}
.h17{height:55.116000px;}
.h12{height:56.880000px;}
.h10{height:56.916000px;}
.h15{height:66.960000px;}
.h7{height:67.565039px;}
.h19{height:73.980000px;}
.h11{height:75.960000px;}
.h13{height:125.496000px;}
.h0{height:1188.000000px;}
.h1b{height:1262.880000px;}
.h1c{height:1263.000000px;}
.w6{width:17.280000px;}
.w2{width:54.936000px;}
.w7{width:91.440000px;}
.w10{width:106.560000px;}
.wf{width:106.596000px;}
.wa{width:115.560000px;}
.wb{width:115.596000px;}
.w8{width:116.640000px;}
.w9{width:116.676000px;}
.w5{width:232.590000px;}
.w4{width:232.635000px;}
.w3{width:754.530000px;}
.we{width:892.979987px;}
.wc{width:892.980000px;}
.wd{width:893.250000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:6.840000px;}
.x3{left:8.100000px;}
.x2d{left:9.360000px;}
.x1e{left:11.340000px;}
.x19{left:12.780000px;}
.x2f{left:14.220000px;}
.x3e{left:16.200000px;}
.x1b{left:17.640000px;}
.x22{left:19.080000px;}
.x1f{left:20.340000px;}
.x25{left:23.220000px;}
.x1d{left:26.100000px;}
.x1c{left:28.080000px;}
.x1a{left:29.160000px;}
.x38{left:30.780000px;}
.x21{left:32.760000px;}
.x3a{left:34.200000px;}
.x20{left:35.280000px;}
.x3b{left:37.080000px;}
.x34{left:39.060000px;}
.x36{left:42.300000px;}
.x2c{left:43.920000px;}
.x2a{left:45.720000px;}
.x1{left:52.919986px;}
.x2{left:53.999986px;}
.x14{left:55.440000px;}
.x39{left:58.185000px;}
.x10{left:61.379986px;}
.x27{left:67.140000px;}
.xb{left:69.119986px;}
.x26{left:75.780000px;}
.x12{left:80.999986px;}
.x2b{left:91.620000px;}
.x2e{left:93.960000px;}
.x23{left:95.220000px;}
.x42{left:97.056000px;}
.x18{left:99.930000px;}
.x24{left:105.300000px;}
.x13{left:108.035986px;}
.x4{left:109.656000px;}
.x29{left:116.325000px;}
.x46{left:163.470000px;}
.x8{left:179.669986px;}
.xc{left:219.809986px;}
.x32{left:223.590000px;}
.x3c{left:225.750000px;}
.x6{left:228.989986px;}
.x47{left:271.515000px;}
.x16{left:289.515000px;}
.x33{left:341.715000px;}
.x3d{left:342.795000px;}
.x5{left:346.569000px;}
.xa{left:367.994986px;}
.x9{left:379.874986px;}
.x30{left:398.054986px;}
.x41{left:405.974987px;}
.x11{left:436.574986px;}
.x7{left:459.104986px;}
.x43{left:473.504987px;}
.xd{left:486.104986px;}
.x44{left:500.504987px;}
.xe{left:513.104986px;}
.x17{left:523.545000px;}
.x45{left:527.504987px;}
.x28{left:530.385000px;}
.xf{left:540.104986px;}
.x3f{left:576.825000px;}
.x35{left:577.905000px;}
.x40{left:693.870000px;}
.x37{left:696.210000px;}
.x31{left:717.269986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.043520pt;}
.ls7{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls16{letter-spacing:6.031360pt;}
.ls15{letter-spacing:14.672640pt;}
.ls13{letter-spacing:37.072640pt;}
.ls3{letter-spacing:40.912640pt;}
.lsb{letter-spacing:44.431360pt;}
.lsa{letter-spacing:49.232640pt;}
.ls10{letter-spacing:753.546667pt;}
.ls11{letter-spacing:2377.014613pt;}
.wsb{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.672427pt;}
.ws9{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-5.416960pt;}
._4{margin-left:-3.061760pt;}
._22{margin-left:-2.143360pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._7{width:2.334507pt;}
._9{width:3.346560pt;}
._11{width:4.997760pt;}
._8{width:6.485120pt;}
._a{width:7.383680pt;}
._21{width:8.296747pt;}
._b{width:9.360213pt;}
._f{width:10.416000pt;}
._10{width:11.633280pt;}
._20{width:14.665600pt;}
._16{width:15.564160pt;}
._15{width:16.573440pt;}
._14{width:18.113920pt;}
._c{width:19.229440pt;}
._d{width:20.136960pt;}
._13{width:21.672960pt;}
._1d{width:22.759040pt;}
._12{width:24.010240pt;}
._18{width:25.183360pt;}
._26{width:26.168320pt;}
._1c{width:27.070080pt;}
._1b{width:27.962240pt;}
._17{width:28.901760pt;}
._e{width:31.132800pt;}
._19{width:32.234880pt;}
._28{width:33.342080pt;}
._29{width:34.981547pt;}
._25{width:36.019840pt;}
._2f{width:37.237120pt;}
._2c{width:39.791360pt;}
._24{width:43.018240pt;}
._23{width:44.040960pt;}
._2d{width:49.990400pt;}
._1f{width:53.230720pt;}
._1e{width:54.533760pt;}
._1a{width:76.922240pt;}
._27{width:95.084800pt;}
._2e{width:96.094080pt;}
._30{width:146.261760pt;}
._6{width:180.000000pt;}
._31{width:284.454400pt;}
._5{width:306.991787pt;}
._2a{width:467.338667pt;}
._3{width:561.287253pt;}
._2b{width:878.400000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:3.200000pt;}
.y177{bottom:3.226667pt;}
.ya5{bottom:3.360000pt;}
.yec{bottom:4.480000pt;}
.y10f{bottom:5.600000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:5.920000pt;}
.yba{bottom:12.320000pt;}
.yef{bottom:18.400000pt;}
.yfb{bottom:19.040000pt;}
.yf0{bottom:19.200000pt;}
.yac{bottom:20.000000pt;}
.ya1{bottom:20.160000pt;}
.ya4{bottom:20.200000pt;}
.yfc{bottom:20.320000pt;}
.yb5{bottom:20.800000pt;}
.yf2{bottom:21.120000pt;}
.yb9{bottom:29.120000pt;}
.yf4{bottom:35.360000pt;}
.yee{bottom:35.400000pt;}
.yf8{bottom:36.000000pt;}
.yf9{bottom:36.160000pt;}
.yf5{bottom:36.480000pt;}
.yf1{bottom:36.520000pt;}
.yab{bottom:36.954667pt;}
.ya8{bottom:36.960000pt;}
.ya3{bottom:37.000000pt;}
.yb8{bottom:45.920000pt;}
.yb3{bottom:50.920000pt;}
.y9{bottom:51.040000pt;}
.y110{bottom:51.200000pt;}
.ya7{bottom:53.920000pt;}
.y6{bottom:64.640000pt;}
.y10e{bottom:64.800000pt;}
.y10a{bottom:89.472000pt;}
.y19c{bottom:92.512000pt;}
.y34{bottom:96.352000pt;}
.yb1{bottom:97.960000pt;}
.y4a{bottom:98.112000pt;}
.y154{bottom:99.200000pt;}
.yaa{bottom:99.392000pt;}
.y7c{bottom:100.352000pt;}
.ye9{bottom:102.112000pt;}
.y12f{bottom:104.320000pt;}
.y170{bottom:107.040000pt;}
.y109{bottom:107.232000pt;}
.y19b{bottom:110.272000pt;}
.yd2{bottom:113.792000pt;}
.y33{bottom:114.112000pt;}
.y49{bottom:115.872000pt;}
.y7b{bottom:117.952000pt;}
.ye8{bottom:119.712000pt;}
.y12e{bottom:121.920000pt;}
.y16f{bottom:124.640000pt;}
.y108{bottom:124.832000pt;}
.y19a{bottom:127.872000pt;}
.yd1{bottom:131.392000pt;}
.y32{bottom:131.712000pt;}
.y48{bottom:133.466667pt;}
.y153{bottom:134.720000pt;}
.y7a{bottom:135.706667pt;}
.ye7{bottom:137.306667pt;}
.y12d{bottom:139.546667pt;}
.y16e{bottom:142.266667pt;}
.y107{bottom:142.426667pt;}
.y199{bottom:145.466667pt;}
.yd0{bottom:146.106667pt;}
.y31{bottom:149.306667pt;}
.y47{bottom:151.066667pt;}
.y79{bottom:153.306667pt;}
.ye6{bottom:154.906667pt;}
.y12c{bottom:157.146667pt;}
.y106{bottom:160.026667pt;}
.y198{bottom:163.066667pt;}
.ya9{bottom:164.506667pt;}
.y30{bottom:166.906667pt;}
.y46{bottom:168.666667pt;}
.y152{bottom:170.106667pt;}
.y78{bottom:170.906667pt;}
.ye5{bottom:172.506667pt;}
.y12b{bottom:174.906667pt;}
.y105{bottom:177.626667pt;}
.y197{bottom:180.666667pt;}
.y2f{bottom:184.506667pt;}
.y45{bottom:186.266667pt;}
.y77{bottom:188.506667pt;}
.ycf{bottom:189.946667pt;}
.ye4{bottom:190.266667pt;}
.y12a{bottom:192.506667pt;}
.y16d{bottom:195.226667pt;}
.y104{bottom:195.386667pt;}
.y196{bottom:198.426667pt;}
.y2e{bottom:202.266667pt;}
.y44{bottom:204.026667pt;}
.ye3{bottom:204.986667pt;}
.y151{bottom:205.466667pt;}
.y76{bottom:206.106667pt;}
.yce{bottom:207.546667pt;}
.y129{bottom:210.106667pt;}
.y16c{bottom:212.826667pt;}
.ya6{bottom:212.986667pt;}
.y195{bottom:216.026667pt;}
.y2d{bottom:219.866667pt;}
.y43{bottom:221.626667pt;}
.y75{bottom:223.866667pt;}
.ycd{bottom:225.146667pt;}
.y128{bottom:227.706667pt;}
.y16b{bottom:230.426667pt;}
.y103{bottom:230.586667pt;}
.y194{bottom:233.626667pt;}
.ye2{bottom:235.386667pt;}
.y2c{bottom:237.466667pt;}
.y10b{bottom:238.586667pt;}
.y42{bottom:239.226667pt;}
.y150{bottom:240.826667pt;}
.y74{bottom:241.466667pt;}
.ycc{bottom:242.746667pt;}
.y127{bottom:245.306667pt;}
.y16a{bottom:248.186667pt;}
.y85{bottom:249.466667pt;}
.y193{bottom:251.226667pt;}
.ye1{bottom:252.986667pt;}
.y2b{bottom:255.066667pt;}
.y102{bottom:256.186667pt;}
.y41{bottom:256.826667pt;}
.y73{bottom:259.066667pt;}
.ycb{bottom:260.506667pt;}
.y126{bottom:263.066667pt;}
.y169{bottom:265.786667pt;}
.y84{bottom:267.066667pt;}
.ye0{bottom:267.706667pt;}
.y192{bottom:268.826667pt;}
.y2a{bottom:272.666667pt;}
.y101{bottom:273.786667pt;}
.y40{bottom:274.426667pt;}
.y14f{bottom:276.186667pt;}
.y72{bottom:276.666667pt;}
.yca{bottom:278.106667pt;}
.y168{bottom:283.386667pt;}
.y83{bottom:284.666667pt;}
.y125{bottom:286.426667pt;}
.y29{bottom:290.426667pt;}
.y100{bottom:291.546667pt;}
.y3f{bottom:292.186667pt;}
.y71{bottom:294.266667pt;}
.ya2{bottom:295.066667pt;}
.yc9{bottom:295.706667pt;}
.ydf{bottom:298.426667pt;}
.y167{bottom:300.986667pt;}
.y82{bottom:302.306667pt;}
.y182{bottom:304.226667pt;}
.y28{bottom:308.066667pt;}
.yff{bottom:309.186667pt;}
.y3e{bottom:309.826667pt;}
.y14e{bottom:311.706667pt;}
.y70{bottom:312.066667pt;}
.yc8{bottom:313.346667pt;}
.y191{bottom:313.826667pt;}
.yde{bottom:316.066667pt;}
.y81{bottom:320.066667pt;}
.y181{bottom:321.826667pt;}
.y124{bottom:324.506667pt;}
.y27{bottom:325.666667pt;}
.y3d{bottom:327.426667pt;}
.yfe{bottom:329.666667pt;}
.yc7{bottom:330.946667pt;}
.y190{bottom:331.586667pt;}
.y166{bottom:332.506667pt;}
.ydd{bottom:333.666667pt;}
.y6f{bottom:337.666667pt;}
.y180{bottom:339.426667pt;}
.y26{bottom:343.266667pt;}
.y3c{bottom:345.026667pt;}
.y14d{bottom:347.066667pt;}
.yc6{bottom:348.706667pt;}
.y18f{bottom:349.186667pt;}
.ydc{bottom:351.266667pt;}
.y6e{bottom:355.266667pt;}
.y17f{bottom:357.026667pt;}
.y123{bottom:357.346667pt;}
.ya0{bottom:360.386667pt;}
.y25{bottom:360.866667pt;}
.y3b{bottom:362.626667pt;}
.y165{bottom:365.186667pt;}
.yc5{bottom:366.306667pt;}
.y18e{bottom:366.786667pt;}
.ydb{bottom:368.866667pt;}
.y6d{bottom:372.866667pt;}
.y17e{bottom:374.786667pt;}
.y24{bottom:378.626667pt;}
.y3a{bottom:380.386667pt;}
.y14c{bottom:382.466667pt;}
.yc4{bottom:383.906667pt;}
.y18d{bottom:384.386667pt;}
.yda{bottom:386.626667pt;}
.y122{bottom:389.986667pt;}
.y6c{bottom:390.466667pt;}
.y17d{bottom:392.386667pt;}
.yfd{bottom:393.186667pt;}
.y23{bottom:396.226667pt;}
.y39{bottom:397.986667pt;}
.yc3{bottom:401.506667pt;}
.y18c{bottom:401.986667pt;}
.y6b{bottom:408.226667pt;}
.y9e{bottom:408.866667pt;}
.y17c{bottom:409.986667pt;}
.yd9{bottom:412.226667pt;}
.y22{bottom:413.826667pt;}
.y38{bottom:415.586667pt;}
.y14b{bottom:417.826667pt;}
.yc2{bottom:419.106667pt;}
.y18b{bottom:419.746667pt;}
.y121{bottom:422.786667pt;}
.y6a{bottom:425.826667pt;}
.y17b{bottom:427.586667pt;}
.yd8{bottom:429.826667pt;}
.y164{bottom:430.626667pt;}
.y21{bottom:431.426667pt;}
.y37{bottom:433.186667pt;}
.yc1{bottom:436.866667pt;}
.y18a{bottom:437.346667pt;}
.y69{bottom:443.426667pt;}
.y9d{bottom:444.546667pt;}
.y17a{bottom:445.186667pt;}
.yd7{bottom:447.426667pt;}
.y20{bottom:449.026667pt;}
.y36{bottom:450.786667pt;}
.y14a{bottom:453.346667pt;}
.yc0{bottom:454.466667pt;}
.y189{bottom:454.946667pt;}
.y120{bottom:455.426667pt;}
.yfa{bottom:456.706667pt;}
.y68{bottom:461.026667pt;}
.y179{bottom:462.946667pt;}
.y163{bottom:463.426667pt;}
.yd6{bottom:465.026667pt;}
.y1f{bottom:467.266667pt;}
.y35{bottom:468.546667pt;}
.y80{bottom:469.026667pt;}
.y19e{bottom:471.586667pt;}
.ybf{bottom:472.066667pt;}
.y188{bottom:472.546667pt;}
.y67{bottom:478.626667pt;}
.y99{bottom:482.146667pt;}
.yd5{bottom:482.786667pt;}
.y178{bottom:483.426667pt;}
.y1e{bottom:486.146667pt;}
.y7f{bottom:486.626667pt;}
.y11f{bottom:488.226667pt;}
.y149{bottom:488.706667pt;}
.ybe{bottom:489.666667pt;}
.y187{bottom:490.146667pt;}
.y162{bottom:496.226667pt;}
.y66{bottom:496.386667pt;}
.y9c{bottom:498.626667pt;}
.y98{bottom:499.906667pt;}
.yd4{bottom:500.386667pt;}
.y1d{bottom:503.746667pt;}
.y7e{bottom:504.386667pt;}
.ybd{bottom:507.266667pt;}
.y186{bottom:507.906667pt;}
.y65{bottom:513.986667pt;}
.y176{bottom:514.946667pt;}
.y9b{bottom:516.226667pt;}
.y97{bottom:517.506667pt;}
.yd3{bottom:518.013333pt;}
.yf7{bottom:520.253333pt;}
.y11e{bottom:520.866667pt;}
.y1c{bottom:521.373333pt;}
.y7d{bottom:522.013333pt;}
.y148{bottom:524.066667pt;}
.y185{bottom:525.533333pt;}
.y161{bottom:528.866667pt;}
.y9a{bottom:533.853333pt;}
.y96{bottom:535.133333pt;}
.ybc{bottom:535.613333pt;}
.y64{bottom:539.613333pt;}
.y1b{bottom:541.053333pt;}
.y19d{bottom:541.853333pt;}
.y184{bottom:543.133333pt;}
.y175{bottom:546.493333pt;}
.y95{bottom:552.733333pt;}
.ybb{bottom:553.213333pt;}
.y11d{bottom:553.666667pt;}
.y63{bottom:557.213333pt;}
.y1a{bottom:558.653333pt;}
.y147{bottom:559.426667pt;}
.y183{bottom:560.733333pt;}
.y160{bottom:561.666667pt;}
.yb7{bottom:573.693333pt;}
.y62{bottom:574.813333pt;}
.y19{bottom:576.253333pt;}
.y174{bottom:578.013333pt;}
.y94{bottom:578.333333pt;}
.y11c{bottom:586.333333pt;}
.y61{bottom:592.573333pt;}
.y18{bottom:593.853333pt;}
.y146{bottom:594.813333pt;}
.y93{bottom:596.093333pt;}
.yf6{bottom:599.613333pt;}
.y15f{bottom:599.773333pt;}
.y173{bottom:609.533333pt;}
.y60{bottom:610.173333pt;}
.y17{bottom:611.613333pt;}
.y92{bottom:613.693333pt;}
.y11b{bottom:619.133333pt;}
.y5f{bottom:627.773333pt;}
.y16{bottom:629.213333pt;}
.y145{bottom:630.333333pt;}
.y91{bottom:631.293333pt;}
.yf3{bottom:637.373333pt;}
.y15e{bottom:637.853333pt;}
.y172{bottom:641.053333pt;}
.y5e{bottom:645.373333pt;}
.y15{bottom:646.813333pt;}
.yb6{bottom:647.933333pt;}
.y90{bottom:648.893333pt;}
.y11a{bottom:651.933333pt;}
.y5d{bottom:662.973333pt;}
.y14{bottom:664.413333pt;}
.y144{bottom:665.693333pt;}
.y8f{bottom:666.493333pt;}
.y171{bottom:672.573333pt;}
.y15d{bottom:675.933333pt;}
.y5c{bottom:680.733333pt;}
.y13{bottom:682.013333pt;}
.y8e{bottom:684.253333pt;}
.y119{bottom:684.573333pt;}
.yb0{bottom:696.413333pt;}
.y5b{bottom:698.333333pt;}
.yed{bottom:700.893333pt;}
.y143{bottom:701.053333pt;}
.y12{bottom:701.693333pt;}
.y8d{bottom:701.853333pt;}
.yb4{bottom:702.973333pt;}
.y15c{bottom:713.853333pt;}
.y5a{bottom:715.933333pt;}
.y118{bottom:717.373333pt;}
.y11{bottom:719.293333pt;}
.y8c{bottom:719.453333pt;}
.y59{bottom:733.533333pt;}
.y142{bottom:736.413333pt;}
.y13a{bottom:736.733333pt;}
.y10{bottom:737.093333pt;}
.y117{bottom:750.013333pt;}
.y58{bottom:751.173333pt;}
.y15b{bottom:751.933333pt;}
.y8b{bottom:754.693333pt;}
.yf{bottom:759.333333pt;}
.y139{bottom:760.253333pt;}
.yeb{bottom:764.453333pt;}
.yb2{bottom:767.653333pt;}
.y57{bottom:768.933333pt;}
.y141{bottom:771.933333pt;}
.y8a{bottom:772.453333pt;}
.ye{bottom:776.933333pt;}
.y56{bottom:786.533333pt;}
.y116{bottom:788.093333pt;}
.y15a{bottom:790.013333pt;}
.y89{bottom:790.053333pt;}
.yd{bottom:790.373333pt;}
.yea{bottom:795.973333pt;}
.y138{bottom:798.373333pt;}
.y55{bottom:804.133333pt;}
.y140{bottom:807.333333pt;}
.y88{bottom:807.653333pt;}
.yc{bottom:809.253333pt;}
.y54{bottom:821.733333pt;}
.yaf{bottom:822.693333pt;}
.y87{bottom:825.253333pt;}
.y115{bottom:826.213333pt;}
.y159{bottom:828.133333pt;}
.yb{bottom:830.213333pt;}
.y137{bottom:836.453333pt;}
.y53{bottom:840.453333pt;}
.y13f{bottom:842.693333pt;}
.y86{bottom:842.853333pt;}
.ya{bottom:858.373333pt;}
.y52{bottom:860.613333pt;}
.y114{bottom:864.293333pt;}
.y158{bottom:866.213333pt;}
.y136{bottom:874.533333pt;}
.y51{bottom:878.213333pt;}
.y13e{bottom:880.773333pt;}
.y5{bottom:881.413333pt;}
.yae{bottom:887.973333pt;}
.y50{bottom:895.813333pt;}
.y113{bottom:902.373333pt;}
.y157{bottom:904.293333pt;}
.y135{bottom:912.613333pt;}
.y4f{bottom:913.413333pt;}
.y4{bottom:913.733333pt;}
.yad{bottom:919.493333pt;}
.y13b{bottom:927.173333pt;}
.y4e{bottom:931.013333pt;}
.y13d{bottom:931.333333pt;}
.y3{bottom:939.013333pt;}
.y112{bottom:940.453333pt;}
.y156{bottom:942.213333pt;}
.y134{bottom:944.773333pt;}
.y4d{bottom:948.773333pt;}
.y13c{bottom:948.933333pt;}
.y133{bottom:962.373333pt;}
.y2{bottom:964.320000pt;}
.y4c{bottom:974.880000pt;}
.y132{bottom:979.973333pt;}
.y155{bottom:980.293333pt;}
.y1{bottom:991.680000pt;}
.y4b{bottom:994.240000pt;}
.y131{bottom:997.573333pt;}
.y111{bottom:1014.213333pt;}
.y130{bottom:1015.333333pt;}
.y10d{bottom:1041.440000pt;}
.y10c{bottom:1060.800000pt;}
.he{height:16.800000pt;}
.h1f{height:16.832000pt;}
.h16{height:16.960000pt;}
.h1d{height:19.360000pt;}
.h5{height:19.552000pt;}
.h9{height:24.806250pt;}
.hf{height:33.760000pt;}
.h14{height:34.432000pt;}
.h8{height:37.479688pt;}
.ha{height:38.128125pt;}
.hb{height:38.672812pt;}
.h2{height:41.543750pt;}
.h4{height:42.262500pt;}
.hd{height:42.866250pt;}
.hc{height:43.782500pt;}
.h3{height:45.156250pt;}
.h1e{height:47.293750pt;}
.h6{height:47.310625pt;}
.h1{height:48.768750pt;}
.h1a{height:48.800000pt;}
.h18{height:48.960000pt;}
.h17{height:48.992000pt;}
.h12{height:50.560000pt;}
.h10{height:50.592000pt;}
.h15{height:59.520000pt;}
.h7{height:60.057813pt;}
.h19{height:65.760000pt;}
.h11{height:67.520000pt;}
.h13{height:111.552000pt;}
.h0{height:1056.000000pt;}
.h1b{height:1122.560000pt;}
.h1c{height:1122.666667pt;}
.w6{width:15.360000pt;}
.w2{width:48.832000pt;}
.w7{width:81.280000pt;}
.w10{width:94.720000pt;}
.wf{width:94.752000pt;}
.wa{width:102.720000pt;}
.wb{width:102.752000pt;}
.w8{width:103.680000pt;}
.w9{width:103.712000pt;}
.w5{width:206.746667pt;}
.w4{width:206.786667pt;}
.w3{width:670.693333pt;}
.we{width:793.759988pt;}
.wc{width:793.760000pt;}
.wd{width:794.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.080000pt;}
.x3{left:7.200000pt;}
.x2d{left:8.320000pt;}
.x1e{left:10.080000pt;}
.x19{left:11.360000pt;}
.x2f{left:12.640000pt;}
.x3e{left:14.400000pt;}
.x1b{left:15.680000pt;}
.x22{left:16.960000pt;}
.x1f{left:18.080000pt;}
.x25{left:20.640000pt;}
.x1d{left:23.200000pt;}
.x1c{left:24.960000pt;}
.x1a{left:25.920000pt;}
.x38{left:27.360000pt;}
.x21{left:29.120000pt;}
.x3a{left:30.400000pt;}
.x20{left:31.360000pt;}
.x3b{left:32.960000pt;}
.x34{left:34.720000pt;}
.x36{left:37.600000pt;}
.x2c{left:39.040000pt;}
.x2a{left:40.640000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x14{left:49.280000pt;}
.x39{left:51.720000pt;}
.x10{left:54.559988pt;}
.x27{left:59.680000pt;}
.xb{left:61.439988pt;}
.x26{left:67.360000pt;}
.x12{left:71.999988pt;}
.x2b{left:81.440000pt;}
.x2e{left:83.520000pt;}
.x23{left:84.640000pt;}
.x42{left:86.272000pt;}
.x18{left:88.826667pt;}
.x24{left:93.600000pt;}
.x13{left:96.031988pt;}
.x4{left:97.472000pt;}
.x29{left:103.400000pt;}
.x46{left:145.306667pt;}
.x8{left:159.706655pt;}
.xc{left:195.386655pt;}
.x32{left:198.746667pt;}
.x3c{left:200.666667pt;}
.x6{left:203.546655pt;}
.x47{left:241.346667pt;}
.x16{left:257.346667pt;}
.x33{left:303.746667pt;}
.x3d{left:304.706667pt;}
.x5{left:308.061333pt;}
.xa{left:327.106655pt;}
.x9{left:337.666655pt;}
.x30{left:353.826655pt;}
.x41{left:360.866655pt;}
.x11{left:388.066655pt;}
.x7{left:408.093321pt;}
.x43{left:420.893322pt;}
.xd{left:432.093321pt;}
.x44{left:444.893322pt;}
.xe{left:456.093321pt;}
.x17{left:465.373333pt;}
.x45{left:468.893322pt;}
.x28{left:471.453333pt;}
.xf{left:480.093321pt;}
.x3f{left:512.733333pt;}
.x35{left:513.693333pt;}
.x40{left:616.773333pt;}
.x37{left:618.853333pt;}
.x31{left:637.573321pt;}
}




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