
    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_31ce5d8ad16265ebda62ac60.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_48d8aa9ae71976008f71f853.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c862f77c85dd1662e522377f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_a2ea58fc0081d5bc1bf1fd63.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_a85e0861e9d56f50c08383e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_89c9a5643147ad513bcc44fd.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_06181eddb78fef578872d9e9.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_7bd05895632fe0afb2ff981f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854980;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;}
.v6{vertical-align:12.960000px;}
.v5{vertical-align:15.840000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.v8{vertical-align:65.640000px;}
.ls1b{letter-spacing:-4.782000px;}
.ls19{letter-spacing:-4.266000px;}
.ls26{letter-spacing:-1.800000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.513600px;}
.ls24{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls22{letter-spacing:0.030240px;}
.ls2c{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.119520px;}
.ls23{letter-spacing:0.135600px;}
.ls2b{letter-spacing:0.153600px;}
.lsa{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206640px;}
.lsd{letter-spacing:0.259800px;}
.ls27{letter-spacing:0.298800px;}
.ls1f{letter-spacing:0.301200px;}
.ls18{letter-spacing:0.311040px;}
.lsf{letter-spacing:0.312000px;}
.ls7{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.460080px;}
.ls1a{letter-spacing:0.460200px;}
.ls2e{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.828000px;}
.ls8{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.098720px;}
.ls15{letter-spacing:1.395360px;}
.ls6{letter-spacing:1.421280px;}
.ls4{letter-spacing:1.440000px;}
.ls14{letter-spacing:1.510560px;}
.ls9{letter-spacing:1.620000px;}
.ls0{letter-spacing:1.629360px;}
.ls5{letter-spacing:1.762560px;}
.ls1{letter-spacing:1.800000px;}
.ls12{letter-spacing:2.340000px;}
.ls3{letter-spacing:2.431920px;}
.ls13{letter-spacing:2.520000px;}
.ls21{letter-spacing:3.060000px;}
.ls33{letter-spacing:3.780000px;}
.ls34{letter-spacing:8.100000px;}
.ls30{letter-spacing:11.466720px;}
.ls2f{letter-spacing:41.706720px;}
.ls20{letter-spacing:46.026720px;}
.ls31{letter-spacing:49.860000px;}
.ls32{letter-spacing:64.980000px;}
.ls16{letter-spacing:83.700000px;}
.ls1e{letter-spacing:182.340000px;}
.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;}
}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.400200px;}
.ws8{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.252000px;}
.ws10{word-spacing:-15.238800px;}
.ws17{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.093600px;}
.ws16{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.580000px;}
.wsf{word-spacing:-13.140000px;}
.ws2{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.732960px;}
.ws3{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.488400px;}
.wsb{word-spacing:-9.217440px;}
.wsa{word-spacing:-9.187200px;}
.ws6{word-spacing:0.000000px;}
.wse{word-spacing:64.620000px;}
.wsd{word-spacing:95.630640px;}
._6{margin-left:-2651.618400px;}
._8{margin-left:-1390.443840px;}
._b{margin-left:-1018.589760px;}
._a{margin-left:-989.979840px;}
._11{margin-left:-755.400000px;}
._e{margin-left:-555.635520px;}
._f{margin-left:-544.404960px;}
._c{margin-left:-541.998720px;}
._12{margin-left:-524.147040px;}
._1e{margin-left:-517.503360px;}
._1f{margin-left:-515.571840px;}
._28{margin-left:-513.647760px;}
._10{margin-left:-462.960000px;}
._1a{margin-left:-271.248480px;}
._14{margin-left:-264.240000px;}
._d{margin-left:-243.360000px;}
._13{margin-left:-230.400000px;}
._1b{margin-left:-204.151680px;}
._15{margin-left:-165.600000px;}
._1d{margin-left:-151.200000px;}
._19{margin-left:-101.520000px;}
._17{margin-left:-99.360000px;}
._18{margin-left:-82.800000px;}
._16{margin-left:-66.240000px;}
._1c{margin-left:-49.680000px;}
._22{margin-left:-9.282480px;}
._9{margin-left:-8.213760px;}
._31{margin-left:-7.106640px;}
._5{margin-left:-5.683680px;}
._1{margin-left:-3.732480px;}
._4{margin-left:-2.255040px;}
._7{margin-left:-1.059840px;}
._0{width:1.399680px;}
._2{width:2.566080px;}
._3{width:3.915840px;}
._24{width:5.155920px;}
._26{width:6.251280px;}
._27{width:7.968000px;}
._23{width:9.212640px;}
._29{width:10.577280px;}
._21{width:11.688000px;}
._25{width:13.034880px;}
._2e{width:16.833600px;}
._20{width:18.098640px;}
._2a{width:20.019600px;}
._30{width:32.932080px;}
._37{width:34.660800px;}
._36{width:35.796240px;}
._2f{width:38.333520px;}
._2d{width:48.286080px;}
._33{width:49.361760px;}
._32{width:50.556960px;}
._2b{width:52.110720px;}
._2c{width:53.213760px;}
._34{width:64.097280px;}
._35{width:65.616480px;}
.fc5{color:rgb(70,120,134);}
.fc3{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yac{bottom:5.760000px;}
.y141{bottom:5.805000px;}
.yb0{bottom:5.940000px;}
.yae{bottom:6.120000px;}
.y14e{bottom:6.150000px;}
.yb1{bottom:6.300000px;}
.yc7{bottom:6.660000px;}
.y160{bottom:6.840000px;}
.y163{bottom:7.560000px;}
.y167{bottom:7.740000px;}
.y162{bottom:7.920000px;}
.y166{bottom:8.100000px;}
.y154{bottom:9.180000px;}
.y136{bottom:15.660000px;}
.y9d{bottom:17.790000px;}
.y134{bottom:25.560000px;}
.yd8{bottom:26.280000px;}
.yc6{bottom:26.460000px;}
.y135{bottom:35.460000px;}
.y137{bottom:45.360000px;}
.y108{bottom:46.980000px;}
.y6{bottom:60.120000px;}
.y92{bottom:95.616000px;}
.y196{bottom:99.576000px;}
.yd7{bottom:105.696000px;}
.yaa{bottom:110.556000px;}
.y132{bottom:112.356000px;}
.y91{bottom:115.776000px;}
.y195{bottom:119.556000px;}
.y6a{bottom:120.096000px;}
.y94{bottom:120.960000px;}
.y104{bottom:123.336000px;}
.y33{bottom:124.056000px;}
.ya9{bottom:130.356000px;}
.y19c{bottom:130.716000px;}
.y131{bottom:132.156000px;}
.yd6{bottom:134.496000px;}
.y90{bottom:135.576000px;}
.y95{bottom:137.190000px;}
.y194{bottom:139.356000px;}
.y69{bottom:139.896000px;}
.y103{bottom:143.496000px;}
.y32{bottom:143.856000px;}
.ya8{bottom:150.330000px;}
.y19b{bottom:150.690000px;}
.y130{bottom:152.310000px;}
.y96{bottom:153.435000px;}
.y8f{bottom:155.370000px;}
.y193{bottom:159.150000px;}
.y68{bottom:159.690000px;}
.yd5{bottom:163.290000px;}
.y31{bottom:163.650000px;}
.y97{bottom:169.710000px;}
.ya7{bottom:170.130000px;}
.y19a{bottom:170.490000px;}
.y12f{bottom:172.110000px;}
.y8e{bottom:175.350000px;}
.y67{bottom:176.250000px;}
.y192{bottom:178.950000px;}
.y102{bottom:183.090000px;}
.y30{bottom:183.630000px;}
.y66{bottom:183.810000px;}
.y98{bottom:185.940000px;}
.ya6{bottom:189.930000px;}
.y199{bottom:190.290000px;}
.yd4{bottom:192.090000px;}
.y8d{bottom:195.150000px;}
.y191{bottom:198.390000px;}
.y99{bottom:202.170000px;}
.y101{bottom:203.070000px;}
.y2f{bottom:203.430000px;}
.ya5{bottom:209.730000px;}
.y65{bottom:210.090000px;}
.y12e{bottom:211.890000px;}
.y8c{bottom:214.950000px;}
.y190{bottom:218.370000px;}
.y9a{bottom:218.415000px;}
.yd3{bottom:220.890000px;}
.y100{bottom:222.870000px;}
.y2e{bottom:223.230000px;}
.ya4{bottom:229.530000px;}
.y64{bottom:229.890000px;}
.y12d{bottom:231.690000px;}
.y8b{bottom:234.750000px;}
.y18f{bottom:238.530000px;}
.yff{bottom:242.670000px;}
.y2d{bottom:243.030000px;}
.y15e{bottom:246.090000px;}
.y9c{bottom:246.600000px;}
.ya3{bottom:249.510000px;}
.y63{bottom:249.870000px;}
.y8a{bottom:254.550000px;}
.y18e{bottom:258.330000px;}
.y2c{bottom:262.470000px;}
.y15d{bottom:266.790000px;}
.ya2{bottom:269.310000px;}
.y62{bottom:269.670000px;}
.y9b{bottom:270.360000px;}
.y89{bottom:274.530000px;}
.y18d{bottom:278.130000px;}
.y2b{bottom:282.450000px;}
.y15c{bottom:287.310000px;}
.ya1{bottom:289.110000px;}
.y61{bottom:289.470000px;}
.yfe{bottom:291.270000px;}
.y88{bottom:294.330000px;}
.y18c{bottom:297.930000px;}
.y2a{bottom:304.590000px;}
.y12c{bottom:305.670000px;}
.y15b{bottom:307.830000px;}
.y60{bottom:308.910000px;}
.yd2{bottom:309.270000px;}
.y87{bottom:314.130000px;}
.y18b{bottom:317.910000px;}
.yfd{bottom:325.290000px;}
.y12b{bottom:326.370000px;}
.y15a{bottom:328.530000px;}
.ya0{bottom:328.710000px;}
.y5f{bottom:329.070000px;}
.y29{bottom:333.750000px;}
.y86{bottom:333.930000px;}
.y18a{bottom:337.755000px;}
.yfc{bottom:345.855000px;}
.y12a{bottom:346.935000px;}
.y9f{bottom:348.735000px;}
.y5e{bottom:349.095000px;}
.y85{bottom:350.175000px;}
.y93{bottom:350.460000px;}
.y28{bottom:353.595000px;}
.y189{bottom:357.555000px;}
.yfb{bottom:366.375000px;}
.y129{bottom:367.635000px;}
.y5d{bottom:368.895000px;}
.y159{bottom:369.615000px;}
.y27{bottom:373.395000px;}
.y188{bottom:377.355000px;}
.yfa{bottom:387.075000px;}
.y128{bottom:388.155000px;}
.y5c{bottom:388.695000px;}
.y158{bottom:390.315000px;}
.y26{bottom:393.195000px;}
.y187{bottom:397.155000px;}
.yf9{bottom:407.595000px;}
.y5b{bottom:408.495000px;}
.y127{bottom:408.675000px;}
.y157{bottom:410.835000px;}
.y25{bottom:412.995000px;}
.y186{bottom:417.135000px;}
.yf8{bottom:428.115000px;}
.y5a{bottom:428.295000px;}
.y126{bottom:429.375000px;}
.yd1{bottom:430.095000px;}
.y156{bottom:431.535000px;}
.y24{bottom:432.795000px;}
.y185{bottom:436.935000px;}
.y59{bottom:448.275000px;}
.yf7{bottom:448.815000px;}
.y125{bottom:449.895000px;}
.yd0{bottom:450.615000px;}
.y155{bottom:452.055000px;}
.y23{bottom:452.775000px;}
.y184{bottom:456.735000px;}
.y58{bottom:468.075000px;}
.yf6{bottom:469.335000px;}
.y124{bottom:470.415000px;}
.ycf{bottom:471.315000px;}
.y22{bottom:472.575000px;}
.y183{bottom:476.535000px;}
.y57{bottom:487.875000px;}
.yf5{bottom:490.035000px;}
.y123{bottom:491.115000px;}
.yce{bottom:491.835000px;}
.y21{bottom:492.375000px;}
.y182{bottom:496.335000px;}
.y153{bottom:499.755000px;}
.y56{bottom:507.675000px;}
.yf4{bottom:510.555000px;}
.y122{bottom:511.635000px;}
.y20{bottom:512.175000px;}
.ycd{bottom:512.535000px;}
.y181{bottom:516.315000px;}
.y152{bottom:520.275000px;}
.y55{bottom:527.475000px;}
.yf3{bottom:531.075000px;}
.y1f{bottom:531.975000px;}
.y121{bottom:532.335000px;}
.ycc{bottom:533.055000px;}
.y180{bottom:536.115000px;}
.y151{bottom:540.795000px;}
.y54{bottom:547.455000px;}
.yf2{bottom:551.775000px;}
.y1e{bottom:551.955000px;}
.y120{bottom:552.855000px;}
.ycb{bottom:553.575000px;}
.y17f{bottom:555.915000px;}
.y150{bottom:561.495000px;}
.y53{bottom:567.255000px;}
.y1d{bottom:571.755000px;}
.yf1{bottom:572.295000px;}
.y11f{bottom:573.375000px;}
.yca{bottom:574.275000px;}
.y17e{bottom:575.715000px;}
.y14f{bottom:582.015000px;}
.y52{bottom:587.055000px;}
.y1c{bottom:591.555000px;}
.yf0{bottom:592.815000px;}
.y11e{bottom:594.075000px;}
.yc9{bottom:594.795000px;}
.y17d{bottom:595.515000px;}
.y14d{bottom:602.715000px;}
.y51{bottom:606.885000px;}
.y1b{bottom:611.385000px;}
.yef{bottom:613.545000px;}
.y11d{bottom:614.625000px;}
.yc5{bottom:615.345000px;}
.y17c{bottom:615.525000px;}
.y14c{bottom:623.265000px;}
.y50{bottom:626.685000px;}
.y1a{bottom:631.185000px;}
.yee{bottom:634.065000px;}
.y11c{bottom:635.145000px;}
.y17b{bottom:635.325000px;}
.yc8{bottom:636.045000px;}
.y14b{bottom:643.785000px;}
.y4f{bottom:646.665000px;}
.y19{bottom:651.165000px;}
.yed{bottom:654.585000px;}
.y17a{bottom:655.125000px;}
.y84{bottom:655.305000px;}
.y11b{bottom:655.845000px;}
.yc4{bottom:656.565000px;}
.y14a{bottom:664.485000px;}
.y4e{bottom:666.465000px;}
.y18{bottom:670.965000px;}
.y179{bottom:674.925000px;}
.y83{bottom:675.105000px;}
.yec{bottom:675.285000px;}
.y11a{bottom:676.365000px;}
.yc3{bottom:677.085000px;}
.y149{bottom:685.005000px;}
.y4d{bottom:686.265000px;}
.y17{bottom:690.765000px;}
.y178{bottom:694.725000px;}
.y82{bottom:695.445000px;}
.yeb{bottom:695.805000px;}
.y119{bottom:696.885000px;}
.yc2{bottom:697.785000px;}
.y148{bottom:705.525000px;}
.y4c{bottom:706.065000px;}
.y16{bottom:710.565000px;}
.y177{bottom:714.705000px;}
.y81{bottom:715.245000px;}
.yea{bottom:716.505000px;}
.y118{bottom:717.585000px;}
.yc1{bottom:718.305000px;}
.y4b{bottom:725.865000px;}
.y147{bottom:726.225000px;}
.y15{bottom:730.365000px;}
.y176{bottom:734.505000px;}
.y80{bottom:735.045000px;}
.ye9{bottom:737.025000px;}
.y117{bottom:738.105000px;}
.yc0{bottom:739.005000px;}
.y4a{bottom:745.845000px;}
.y146{bottom:746.745000px;}
.y14{bottom:750.345000px;}
.y175{bottom:754.305000px;}
.y7f{bottom:754.845000px;}
.ye8{bottom:757.545000px;}
.y116{bottom:758.805000px;}
.ybf{bottom:759.525000px;}
.y49{bottom:765.645000px;}
.y145{bottom:767.265000px;}
.y13{bottom:770.145000px;}
.y174{bottom:774.105000px;}
.y7e{bottom:774.645000px;}
.ye7{bottom:778.245000px;}
.y115{bottom:779.325000px;}
.ybe{bottom:780.045000px;}
.y48{bottom:785.445000px;}
.y144{bottom:787.965000px;}
.y12{bottom:789.945000px;}
.y173{bottom:793.905000px;}
.y7d{bottom:794.625000px;}
.ye6{bottom:798.765000px;}
.y114{bottom:799.845000px;}
.ybd{bottom:800.745000px;}
.y47{bottom:805.245000px;}
.y143{bottom:808.485000px;}
.y11{bottom:809.745000px;}
.y172{bottom:813.885000px;}
.y7c{bottom:814.425000px;}
.ye5{bottom:819.285000px;}
.y113{bottom:820.545000px;}
.ybc{bottom:821.265000px;}
.y46{bottom:825.045000px;}
.y10{bottom:829.185000px;}
.y171{bottom:833.685000px;}
.y7b{bottom:833.865000px;}
.ye4{bottom:839.985000px;}
.y112{bottom:841.065000px;}
.ybb{bottom:841.785000px;}
.y45{bottom:845.025000px;}
.y142{bottom:849.705000px;}
.yf{bottom:851.505000px;}
.y170{bottom:853.125000px;}
.y7a{bottom:854.025000px;}
.ye3{bottom:860.505000px;}
.y111{bottom:861.585000px;}
.yba{bottom:862.485000px;}
.y44{bottom:864.825000px;}
.y140{bottom:870.225000px;}
.ye{bottom:871.530000px;}
.y16f{bottom:872.970000px;}
.y79{bottom:873.870000px;}
.ye2{bottom:881.070000px;}
.y110{bottom:882.330000px;}
.yb9{bottom:883.050000px;}
.y43{bottom:884.670000px;}
.y13f{bottom:890.970000px;}
.y16e{bottom:893.130000px;}
.y78{bottom:893.850000px;}
.yd{bottom:896.730000px;}
.ye1{bottom:901.770000px;}
.y10f{bottom:902.850000px;}
.yb8{bottom:903.570000px;}
.y42{bottom:904.470000px;}
.y16d{bottom:909.150000px;}
.yc{bottom:911.310000px;}
.y13e{bottom:911.490000px;}
.y77{bottom:913.650000px;}
.ye0{bottom:922.290000px;}
.y10e{bottom:923.370000px;}
.y41{bottom:924.270000px;}
.y16c{bottom:931.470000px;}
.y13d{bottom:932.010000px;}
.y76{bottom:933.450000px;}
.yb{bottom:936.330000px;}
.ydf{bottom:942.990000px;}
.y10d{bottom:944.070000px;}
.y40{bottom:944.250000px;}
.yb7{bottom:944.790000px;}
.ya{bottom:951.270000px;}
.y13c{bottom:952.710000px;}
.y75{bottom:953.250000px;}
.y16b{bottom:953.970000px;}
.yde{bottom:963.510000px;}
.y3f{bottom:964.050000px;}
.y10c{bottom:964.590000px;}
.yb6{bottom:965.490000px;}
.y9{bottom:972.330000px;}
.y74{bottom:973.050000px;}
.y13b{bottom:973.230000px;}
.y16a{bottom:976.470000px;}
.y3e{bottom:983.850000px;}
.ydd{bottom:984.030000px;}
.y10b{bottom:985.290000px;}
.yb5{bottom:986.010000px;}
.y73{bottom:993.030000px;}
.y13a{bottom:993.750000px;}
.y8{bottom:995.910000px;}
.y169{bottom:998.790000px;}
.y3d{bottom:1003.650000px;}
.ydc{bottom:1004.730000px;}
.y10a{bottom:1005.810000px;}
.yb4{bottom:1006.530000px;}
.y72{bottom:1012.830000px;}
.y139{bottom:1014.450000px;}
.y168{bottom:1021.290000px;}
.y3c{bottom:1023.450000px;}
.ydb{bottom:1025.250000px;}
.y109{bottom:1026.330000px;}
.yb3{bottom:1027.230000px;}
.y7{bottom:1027.590000px;}
.y71{bottom:1032.630000px;}
.y138{bottom:1034.970000px;}
.y3b{bottom:1043.430000px;}
.y165{bottom:1043.610000px;}
.yda{bottom:1045.770000px;}
.y107{bottom:1047.030000px;}
.yb2{bottom:1047.750000px;}
.y70{bottom:1052.430000px;}
.y133{bottom:1055.670000px;}
.y3a{bottom:1063.230000px;}
.y164{bottom:1066.110000px;}
.y5{bottom:1066.470000px;}
.y105{bottom:1067.550000px;}
.yaf{bottom:1068.270000px;}
.y6f{bottom:1072.230000px;}
.y198{bottom:1082.670000px;}
.y39{bottom:1083.030000px;}
.yd9{bottom:1086.990000px;}
.y106{bottom:1088.070000px;}
.y161{bottom:1088.610000px;}
.yad{bottom:1088.970000px;}
.y6e{bottom:1092.210000px;}
.y4{bottom:1095.990000px;}
.y197{bottom:1102.470000px;}
.y38{bottom:1102.830000px;}
.yab{bottom:1109.490000px;}
.y6d{bottom:1112.010000px;}
.y15f{bottom:1112.370000px;}
.y37{bottom:1122.630000px;}
.y3{bottom:1125.510000px;}
.y6c{bottom:1128.570000px;}
.y6b{bottom:1136.130000px;}
.y9e{bottom:1142.280000px;}
.y36{bottom:1142.640000px;}
.y2{bottom:1155.060000px;}
.y35{bottom:1171.800000px;}
.y1{bottom:1186.560000px;}
.y34{bottom:1193.580000px;}
.h18{height:19.800000px;}
.h1a{height:19.836000px;}
.h19{height:19.980000px;}
.h1d{height:20.016000px;}
.h22{height:21.600000px;}
.h21{height:21.780000px;}
.h20{height:26.460000px;}
.h8{height:27.147656px;}
.h16{height:35.991211px;}
.h1c{height:40.320000px;}
.h1b{height:40.500000px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.hd{height:46.736719px;}
.hc{height:48.027656px;}
.h11{height:49.255313px;}
.h17{height:56.146289px;}
.h9{height:58.651172px;}
.he{height:59.038594px;}
.h1f{height:59.400000px;}
.h6{height:60.226875px;}
.h1e{height:61.020000px;}
.h14{height:61.423863px;}
.h4{height:65.010937px;}
.h7{height:65.846250px;}
.h3{height:66.757500px;}
.h5{height:67.565039px;}
.hf{height:81.459844px;}
.h12{height:81.579844px;}
.h10{height:88.891172px;}
.h2{height:96.508125px;}
.h13{height:100.834219px;}
.h15{height:299.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:44.856000px;}
.w26{width:46.476000px;}
.w11{width:48.276000px;}
.we{width:52.380000px;}
.w1e{width:56.160000px;}
.w1c{width:56.196000px;}
.w1d{width:56.340000px;}
.w24{width:56.916000px;}
.w25{width:57.780000px;}
.w20{width:61.560000px;}
.w21{width:62.280000px;}
.w27{width:63.000000px;}
.wb{width:73.800000px;}
.w22{width:75.060000px;}
.w19{width:77.760000px;}
.w17{width:84.420000px;}
.w14{width:85.536000px;}
.w1a{width:90.576000px;}
.w18{width:94.896000px;}
.w13{width:97.380000px;}
.wc{width:103.536000px;}
.wd{width:103.716000px;}
.w6{width:105.480000px;}
.w5{width:105.516000px;}
.w15{width:118.440000px;}
.w12{width:119.340000px;}
.w7{width:190.290000px;}
.w16{width:243.390000px;}
.wf{width:248.655000px;}
.w23{width:254.010000px;}
.wa{width:261.075000px;}
.w8{width:286.410000px;}
.w10{width:302.970000px;}
.w1b{width:329.070000px;}
.w9{width:349.770000px;}
.w3{width:465.840000px;}
.w4{width:477.435000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.xb{left:14.505000px;}
.xa{left:22.605000px;}
.x7{left:26.999987px;}
.x1{left:54.179987px;}
.xc{left:75.570000px;}
.x2c{left:80.999987px;}
.x18{left:85.680000px;}
.x1e{left:96.336000px;}
.xd{left:100.770000px;}
.x13{left:103.536000px;}
.x24{left:106.596000px;}
.x2d{left:108.035987px;}
.xe{left:163.590000px;}
.x2b{left:181.650000px;}
.x9{left:213.480000px;}
.x12{left:292.575000px;}
.x4{left:302.834987px;}
.x19{left:335.235000px;}
.x1f{left:340.455000px;}
.x5{left:371.594987px;}
.x20{left:425.595000px;}
.x1c{left:433.335000px;}
.x25{left:438.015000px;}
.x14{left:454.035000px;}
.x6{left:481.604987px;}
.x3{left:491.504987px;}
.x26{left:496.365000px;}
.x1d{left:519.765000px;}
.x21{left:521.205000px;}
.x27{left:554.865000px;}
.x16{left:558.285000px;}
.x10{left:579.705000px;}
.x22{left:599.865000px;}
.x28{left:613.365000px;}
.x1a{left:638.925000px;}
.x29{left:660.570000px;}
.x17{left:662.730000px;}
.x8{left:679.469987px;}
.x11{left:686.130000px;}
.x1b{left:688.110000px;}
.x23{left:691.350000px;}
.x15{left:715.830000px;}
.x2a{left:724.290000px;}
.x2{left:802.769987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.520000pt;}
.v5{vertical-align:14.080000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.v8{vertical-align:58.346667pt;}
.ls1b{letter-spacing:-4.250667pt;}
.ls19{letter-spacing:-3.792000pt;}
.ls26{letter-spacing:-1.600000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.456533pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls22{letter-spacing:0.026880pt;}
.ls2c{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.106240pt;}
.ls23{letter-spacing:0.120533pt;}
.ls2b{letter-spacing:0.136533pt;}
.lsa{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183680pt;}
.lsd{letter-spacing:0.230933pt;}
.ls27{letter-spacing:0.265600pt;}
.ls1f{letter-spacing:0.267733pt;}
.ls18{letter-spacing:0.276480pt;}
.lsf{letter-spacing:0.277333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.408960pt;}
.ls1a{letter-spacing:0.409067pt;}
.ls2e{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls8{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls2{letter-spacing:0.976640pt;}
.ls15{letter-spacing:1.240320pt;}
.ls6{letter-spacing:1.263360pt;}
.ls4{letter-spacing:1.280000pt;}
.ls14{letter-spacing:1.342720pt;}
.ls9{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.448320pt;}
.ls5{letter-spacing:1.566720pt;}
.ls1{letter-spacing:1.600000pt;}
.ls12{letter-spacing:2.080000pt;}
.ls3{letter-spacing:2.161707pt;}
.ls13{letter-spacing:2.240000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls33{letter-spacing:3.360000pt;}
.ls34{letter-spacing:7.200000pt;}
.ls30{letter-spacing:10.192640pt;}
.ls2f{letter-spacing:37.072640pt;}
.ls20{letter-spacing:40.912640pt;}
.ls31{letter-spacing:44.320000pt;}
.ls32{letter-spacing:57.760000pt;}
.ls16{letter-spacing:74.400000pt;}
.ls1e{letter-spacing:162.080000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.689067pt;}
.ws8{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.557333pt;}
.ws10{word-spacing:-13.545600pt;}
.ws17{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.416533pt;}
.ws16{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws15{word-spacing:-12.960000pt;}
.wsf{word-spacing:-11.680000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.651520pt;}
.ws3{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.434133pt;}
.wsb{word-spacing:-8.193280pt;}
.wsa{word-spacing:-8.166400pt;}
.ws6{word-spacing:0.000000pt;}
.wse{word-spacing:57.440000pt;}
.wsd{word-spacing:85.005013pt;}
._6{margin-left:-2356.994133pt;}
._8{margin-left:-1235.950080pt;}
._b{margin-left:-905.413120pt;}
._a{margin-left:-879.982080pt;}
._11{margin-left:-671.466667pt;}
._e{margin-left:-493.898240pt;}
._f{margin-left:-483.915520pt;}
._c{margin-left:-481.776640pt;}
._12{margin-left:-465.908480pt;}
._1e{margin-left:-460.002987pt;}
._1f{margin-left:-458.286080pt;}
._28{margin-left:-456.575787pt;}
._10{margin-left:-411.520000pt;}
._1a{margin-left:-241.109760pt;}
._14{margin-left:-234.880000pt;}
._d{margin-left:-216.320000pt;}
._13{margin-left:-204.800000pt;}
._1b{margin-left:-181.468160pt;}
._15{margin-left:-147.200000pt;}
._1d{margin-left:-134.400000pt;}
._19{margin-left:-90.240000pt;}
._17{margin-left:-88.320000pt;}
._18{margin-left:-73.600000pt;}
._16{margin-left:-58.880000pt;}
._1c{margin-left:-44.160000pt;}
._22{margin-left:-8.251093pt;}
._9{margin-left:-7.301120pt;}
._31{margin-left:-6.317013pt;}
._5{margin-left:-5.052160pt;}
._1{margin-left:-3.317760pt;}
._4{margin-left:-2.004480pt;}
._7{margin-left:-0.942080pt;}
._0{width:1.244160pt;}
._2{width:2.280960pt;}
._3{width:3.480747pt;}
._24{width:4.583040pt;}
._26{width:5.556693pt;}
._27{width:7.082667pt;}
._23{width:8.189013pt;}
._29{width:9.402027pt;}
._21{width:10.389333pt;}
._25{width:11.586560pt;}
._2e{width:14.963200pt;}
._20{width:16.087680pt;}
._2a{width:17.795200pt;}
._30{width:29.272960pt;}
._37{width:30.809600pt;}
._36{width:31.818880pt;}
._2f{width:34.074240pt;}
._2d{width:42.920960pt;}
._33{width:43.877120pt;}
._32{width:44.939520pt;}
._2b{width:46.320640pt;}
._2c{width:47.301120pt;}
._34{width:56.975360pt;}
._35{width:58.325760pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:5.120000pt;}
.y141{bottom:5.160000pt;}
.yb0{bottom:5.280000pt;}
.yae{bottom:5.440000pt;}
.y14e{bottom:5.466667pt;}
.yb1{bottom:5.600000pt;}
.yc7{bottom:5.920000pt;}
.y160{bottom:6.080000pt;}
.y163{bottom:6.720000pt;}
.y167{bottom:6.880000pt;}
.y162{bottom:7.040000pt;}
.y166{bottom:7.200000pt;}
.y154{bottom:8.160000pt;}
.y136{bottom:13.920000pt;}
.y9d{bottom:15.813333pt;}
.y134{bottom:22.720000pt;}
.yd8{bottom:23.360000pt;}
.yc6{bottom:23.520000pt;}
.y135{bottom:31.520000pt;}
.y137{bottom:40.320000pt;}
.y108{bottom:41.760000pt;}
.y6{bottom:53.440000pt;}
.y92{bottom:84.992000pt;}
.y196{bottom:88.512000pt;}
.yd7{bottom:93.952000pt;}
.yaa{bottom:98.272000pt;}
.y132{bottom:99.872000pt;}
.y91{bottom:102.912000pt;}
.y195{bottom:106.272000pt;}
.y6a{bottom:106.752000pt;}
.y94{bottom:107.520000pt;}
.y104{bottom:109.632000pt;}
.y33{bottom:110.272000pt;}
.ya9{bottom:115.872000pt;}
.y19c{bottom:116.192000pt;}
.y131{bottom:117.472000pt;}
.yd6{bottom:119.552000pt;}
.y90{bottom:120.512000pt;}
.y95{bottom:121.946667pt;}
.y194{bottom:123.872000pt;}
.y69{bottom:124.352000pt;}
.y103{bottom:127.552000pt;}
.y32{bottom:127.872000pt;}
.ya8{bottom:133.626667pt;}
.y19b{bottom:133.946667pt;}
.y130{bottom:135.386667pt;}
.y96{bottom:136.386667pt;}
.y8f{bottom:138.106667pt;}
.y193{bottom:141.466667pt;}
.y68{bottom:141.946667pt;}
.yd5{bottom:145.146667pt;}
.y31{bottom:145.466667pt;}
.y97{bottom:150.853333pt;}
.ya7{bottom:151.226667pt;}
.y19a{bottom:151.546667pt;}
.y12f{bottom:152.986667pt;}
.y8e{bottom:155.866667pt;}
.y67{bottom:156.666667pt;}
.y192{bottom:159.066667pt;}
.y102{bottom:162.746667pt;}
.y30{bottom:163.226667pt;}
.y66{bottom:163.386667pt;}
.y98{bottom:165.280000pt;}
.ya6{bottom:168.826667pt;}
.y199{bottom:169.146667pt;}
.yd4{bottom:170.746667pt;}
.y8d{bottom:173.466667pt;}
.y191{bottom:176.346667pt;}
.y99{bottom:179.706667pt;}
.y101{bottom:180.506667pt;}
.y2f{bottom:180.826667pt;}
.ya5{bottom:186.426667pt;}
.y65{bottom:186.746667pt;}
.y12e{bottom:188.346667pt;}
.y8c{bottom:191.066667pt;}
.y190{bottom:194.106667pt;}
.y9a{bottom:194.146667pt;}
.yd3{bottom:196.346667pt;}
.y100{bottom:198.106667pt;}
.y2e{bottom:198.426667pt;}
.ya4{bottom:204.026667pt;}
.y64{bottom:204.346667pt;}
.y12d{bottom:205.946667pt;}
.y8b{bottom:208.666667pt;}
.y18f{bottom:212.026667pt;}
.yff{bottom:215.706667pt;}
.y2d{bottom:216.026667pt;}
.y15e{bottom:218.746667pt;}
.y9c{bottom:219.200000pt;}
.ya3{bottom:221.786667pt;}
.y63{bottom:222.106667pt;}
.y8a{bottom:226.266667pt;}
.y18e{bottom:229.626667pt;}
.y2c{bottom:233.306667pt;}
.y15d{bottom:237.146667pt;}
.ya2{bottom:239.386667pt;}
.y62{bottom:239.706667pt;}
.y9b{bottom:240.320000pt;}
.y89{bottom:244.026667pt;}
.y18d{bottom:247.226667pt;}
.y2b{bottom:251.066667pt;}
.y15c{bottom:255.386667pt;}
.ya1{bottom:256.986667pt;}
.y61{bottom:257.306667pt;}
.yfe{bottom:258.906667pt;}
.y88{bottom:261.626667pt;}
.y18c{bottom:264.826667pt;}
.y2a{bottom:270.746667pt;}
.y12c{bottom:271.706667pt;}
.y15b{bottom:273.626667pt;}
.y60{bottom:274.586667pt;}
.yd2{bottom:274.906667pt;}
.y87{bottom:279.226667pt;}
.y18b{bottom:282.586667pt;}
.yfd{bottom:289.146667pt;}
.y12b{bottom:290.106667pt;}
.y15a{bottom:292.026667pt;}
.ya0{bottom:292.186667pt;}
.y5f{bottom:292.506667pt;}
.y29{bottom:296.666667pt;}
.y86{bottom:296.826667pt;}
.y18a{bottom:300.226667pt;}
.yfc{bottom:307.426667pt;}
.y12a{bottom:308.386667pt;}
.y9f{bottom:309.986667pt;}
.y5e{bottom:310.306667pt;}
.y85{bottom:311.266667pt;}
.y93{bottom:311.520000pt;}
.y28{bottom:314.306667pt;}
.y189{bottom:317.826667pt;}
.yfb{bottom:325.666667pt;}
.y129{bottom:326.786667pt;}
.y5d{bottom:327.906667pt;}
.y159{bottom:328.546667pt;}
.y27{bottom:331.906667pt;}
.y188{bottom:335.426667pt;}
.yfa{bottom:344.066667pt;}
.y128{bottom:345.026667pt;}
.y5c{bottom:345.506667pt;}
.y158{bottom:346.946667pt;}
.y26{bottom:349.506667pt;}
.y187{bottom:353.026667pt;}
.yf9{bottom:362.306667pt;}
.y5b{bottom:363.106667pt;}
.y127{bottom:363.266667pt;}
.y157{bottom:365.186667pt;}
.y25{bottom:367.106667pt;}
.y186{bottom:370.786667pt;}
.yf8{bottom:380.546667pt;}
.y5a{bottom:380.706667pt;}
.y126{bottom:381.666667pt;}
.yd1{bottom:382.306667pt;}
.y156{bottom:383.586667pt;}
.y24{bottom:384.706667pt;}
.y185{bottom:388.386667pt;}
.y59{bottom:398.466667pt;}
.yf7{bottom:398.946667pt;}
.y125{bottom:399.906667pt;}
.yd0{bottom:400.546667pt;}
.y155{bottom:401.826667pt;}
.y23{bottom:402.466667pt;}
.y184{bottom:405.986667pt;}
.y58{bottom:416.066667pt;}
.yf6{bottom:417.186667pt;}
.y124{bottom:418.146667pt;}
.ycf{bottom:418.946667pt;}
.y22{bottom:420.066667pt;}
.y183{bottom:423.586667pt;}
.y57{bottom:433.666667pt;}
.yf5{bottom:435.586667pt;}
.y123{bottom:436.546667pt;}
.yce{bottom:437.186667pt;}
.y21{bottom:437.666667pt;}
.y182{bottom:441.186667pt;}
.y153{bottom:444.226667pt;}
.y56{bottom:451.266667pt;}
.yf4{bottom:453.826667pt;}
.y122{bottom:454.786667pt;}
.y20{bottom:455.266667pt;}
.ycd{bottom:455.586667pt;}
.y181{bottom:458.946667pt;}
.y152{bottom:462.466667pt;}
.y55{bottom:468.866667pt;}
.yf3{bottom:472.066667pt;}
.y1f{bottom:472.866667pt;}
.y121{bottom:473.186667pt;}
.ycc{bottom:473.826667pt;}
.y180{bottom:476.546667pt;}
.y151{bottom:480.706667pt;}
.y54{bottom:486.626667pt;}
.yf2{bottom:490.466667pt;}
.y1e{bottom:490.626667pt;}
.y120{bottom:491.426667pt;}
.ycb{bottom:492.066667pt;}
.y17f{bottom:494.146667pt;}
.y150{bottom:499.106667pt;}
.y53{bottom:504.226667pt;}
.y1d{bottom:508.226667pt;}
.yf1{bottom:508.706667pt;}
.y11f{bottom:509.666667pt;}
.yca{bottom:510.466667pt;}
.y17e{bottom:511.746667pt;}
.y14f{bottom:517.346667pt;}
.y52{bottom:521.826667pt;}
.y1c{bottom:525.826667pt;}
.yf0{bottom:526.946667pt;}
.y11e{bottom:528.066667pt;}
.yc9{bottom:528.706667pt;}
.y17d{bottom:529.346667pt;}
.y14d{bottom:535.746667pt;}
.y51{bottom:539.453333pt;}
.y1b{bottom:543.453333pt;}
.yef{bottom:545.373333pt;}
.y11d{bottom:546.333333pt;}
.yc5{bottom:546.973333pt;}
.y17c{bottom:547.133333pt;}
.y14c{bottom:554.013333pt;}
.y50{bottom:557.053333pt;}
.y1a{bottom:561.053333pt;}
.yee{bottom:563.613333pt;}
.y11c{bottom:564.573333pt;}
.y17b{bottom:564.733333pt;}
.yc8{bottom:565.373333pt;}
.y14b{bottom:572.253333pt;}
.y4f{bottom:574.813333pt;}
.y19{bottom:578.813333pt;}
.yed{bottom:581.853333pt;}
.y17a{bottom:582.333333pt;}
.y84{bottom:582.493333pt;}
.y11b{bottom:582.973333pt;}
.yc4{bottom:583.613333pt;}
.y14a{bottom:590.653333pt;}
.y4e{bottom:592.413333pt;}
.y18{bottom:596.413333pt;}
.y179{bottom:599.933333pt;}
.y83{bottom:600.093333pt;}
.yec{bottom:600.253333pt;}
.y11a{bottom:601.213333pt;}
.yc3{bottom:601.853333pt;}
.y149{bottom:608.893333pt;}
.y4d{bottom:610.013333pt;}
.y17{bottom:614.013333pt;}
.y178{bottom:617.533333pt;}
.y82{bottom:618.173333pt;}
.yeb{bottom:618.493333pt;}
.y119{bottom:619.453333pt;}
.yc2{bottom:620.253333pt;}
.y148{bottom:627.133333pt;}
.y4c{bottom:627.613333pt;}
.y16{bottom:631.613333pt;}
.y177{bottom:635.293333pt;}
.y81{bottom:635.773333pt;}
.yea{bottom:636.893333pt;}
.y118{bottom:637.853333pt;}
.yc1{bottom:638.493333pt;}
.y4b{bottom:645.213333pt;}
.y147{bottom:645.533333pt;}
.y15{bottom:649.213333pt;}
.y176{bottom:652.893333pt;}
.y80{bottom:653.373333pt;}
.ye9{bottom:655.133333pt;}
.y117{bottom:656.093333pt;}
.yc0{bottom:656.893333pt;}
.y4a{bottom:662.973333pt;}
.y146{bottom:663.773333pt;}
.y14{bottom:666.973333pt;}
.y175{bottom:670.493333pt;}
.y7f{bottom:670.973333pt;}
.ye8{bottom:673.373333pt;}
.y116{bottom:674.493333pt;}
.ybf{bottom:675.133333pt;}
.y49{bottom:680.573333pt;}
.y145{bottom:682.013333pt;}
.y13{bottom:684.573333pt;}
.y174{bottom:688.093333pt;}
.y7e{bottom:688.573333pt;}
.ye7{bottom:691.773333pt;}
.y115{bottom:692.733333pt;}
.ybe{bottom:693.373333pt;}
.y48{bottom:698.173333pt;}
.y144{bottom:700.413333pt;}
.y12{bottom:702.173333pt;}
.y173{bottom:705.693333pt;}
.y7d{bottom:706.333333pt;}
.ye6{bottom:710.013333pt;}
.y114{bottom:710.973333pt;}
.ybd{bottom:711.773333pt;}
.y47{bottom:715.773333pt;}
.y143{bottom:718.653333pt;}
.y11{bottom:719.773333pt;}
.y172{bottom:723.453333pt;}
.y7c{bottom:723.933333pt;}
.ye5{bottom:728.253333pt;}
.y113{bottom:729.373333pt;}
.ybc{bottom:730.013333pt;}
.y46{bottom:733.373333pt;}
.y10{bottom:737.053333pt;}
.y171{bottom:741.053333pt;}
.y7b{bottom:741.213333pt;}
.ye4{bottom:746.653333pt;}
.y112{bottom:747.613333pt;}
.ybb{bottom:748.253333pt;}
.y45{bottom:751.133333pt;}
.y142{bottom:755.293333pt;}
.yf{bottom:756.893333pt;}
.y170{bottom:758.333333pt;}
.y7a{bottom:759.133333pt;}
.ye3{bottom:764.893333pt;}
.y111{bottom:765.853333pt;}
.yba{bottom:766.653333pt;}
.y44{bottom:768.733333pt;}
.y140{bottom:773.533333pt;}
.ye{bottom:774.693333pt;}
.y16f{bottom:775.973333pt;}
.y79{bottom:776.773333pt;}
.ye2{bottom:783.173333pt;}
.y110{bottom:784.293333pt;}
.yb9{bottom:784.933333pt;}
.y43{bottom:786.373333pt;}
.y13f{bottom:791.973333pt;}
.y16e{bottom:793.893333pt;}
.y78{bottom:794.533333pt;}
.yd{bottom:797.093333pt;}
.ye1{bottom:801.573333pt;}
.y10f{bottom:802.533333pt;}
.yb8{bottom:803.173333pt;}
.y42{bottom:803.973333pt;}
.y16d{bottom:808.133333pt;}
.yc{bottom:810.053333pt;}
.y13e{bottom:810.213333pt;}
.y77{bottom:812.133333pt;}
.ye0{bottom:819.813333pt;}
.y10e{bottom:820.773333pt;}
.y41{bottom:821.573333pt;}
.y16c{bottom:827.973333pt;}
.y13d{bottom:828.453333pt;}
.y76{bottom:829.733333pt;}
.yb{bottom:832.293333pt;}
.ydf{bottom:838.213333pt;}
.y10d{bottom:839.173333pt;}
.y40{bottom:839.333333pt;}
.yb7{bottom:839.813333pt;}
.ya{bottom:845.573333pt;}
.y13c{bottom:846.853333pt;}
.y75{bottom:847.333333pt;}
.y16b{bottom:847.973333pt;}
.yde{bottom:856.453333pt;}
.y3f{bottom:856.933333pt;}
.y10c{bottom:857.413333pt;}
.yb6{bottom:858.213333pt;}
.y9{bottom:864.293333pt;}
.y74{bottom:864.933333pt;}
.y13b{bottom:865.093333pt;}
.y16a{bottom:867.973333pt;}
.y3e{bottom:874.533333pt;}
.ydd{bottom:874.693333pt;}
.y10b{bottom:875.813333pt;}
.yb5{bottom:876.453333pt;}
.y73{bottom:882.693333pt;}
.y13a{bottom:883.333333pt;}
.y8{bottom:885.253333pt;}
.y169{bottom:887.813333pt;}
.y3d{bottom:892.133333pt;}
.ydc{bottom:893.093333pt;}
.y10a{bottom:894.053333pt;}
.yb4{bottom:894.693333pt;}
.y72{bottom:900.293333pt;}
.y139{bottom:901.733333pt;}
.y168{bottom:907.813333pt;}
.y3c{bottom:909.733333pt;}
.ydb{bottom:911.333333pt;}
.y109{bottom:912.293333pt;}
.yb3{bottom:913.093333pt;}
.y7{bottom:913.413333pt;}
.y71{bottom:917.893333pt;}
.y138{bottom:919.973333pt;}
.y3b{bottom:927.493333pt;}
.y165{bottom:927.653333pt;}
.yda{bottom:929.573333pt;}
.y107{bottom:930.693333pt;}
.yb2{bottom:931.333333pt;}
.y70{bottom:935.493333pt;}
.y133{bottom:938.373333pt;}
.y3a{bottom:945.093333pt;}
.y164{bottom:947.653333pt;}
.y5{bottom:947.973333pt;}
.y105{bottom:948.933333pt;}
.yaf{bottom:949.573333pt;}
.y6f{bottom:953.093333pt;}
.y198{bottom:962.373333pt;}
.y39{bottom:962.693333pt;}
.yd9{bottom:966.213333pt;}
.y106{bottom:967.173333pt;}
.y161{bottom:967.653333pt;}
.yad{bottom:967.973333pt;}
.y6e{bottom:970.853333pt;}
.y4{bottom:974.213333pt;}
.y197{bottom:979.973333pt;}
.y38{bottom:980.293333pt;}
.yab{bottom:986.213333pt;}
.y6d{bottom:988.453333pt;}
.y15f{bottom:988.773333pt;}
.y37{bottom:997.893333pt;}
.y3{bottom:1000.453333pt;}
.y6c{bottom:1003.173333pt;}
.y6b{bottom:1009.893333pt;}
.y9e{bottom:1015.360000pt;}
.y36{bottom:1015.680000pt;}
.y2{bottom:1026.720000pt;}
.y35{bottom:1041.600000pt;}
.y1{bottom:1054.720000pt;}
.y34{bottom:1060.960000pt;}
.h18{height:17.600000pt;}
.h1a{height:17.632000pt;}
.h19{height:17.760000pt;}
.h1d{height:17.792000pt;}
.h22{height:19.200000pt;}
.h21{height:19.360000pt;}
.h20{height:23.520000pt;}
.h8{height:24.131250pt;}
.h16{height:31.992188pt;}
.h1c{height:35.840000pt;}
.h1b{height:36.000000pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.hd{height:41.543750pt;}
.hc{height:42.691250pt;}
.h11{height:43.782500pt;}
.h17{height:49.907812pt;}
.h9{height:52.134375pt;}
.he{height:52.478750pt;}
.h1f{height:52.800000pt;}
.h6{height:53.535000pt;}
.h1e{height:54.240000pt;}
.h14{height:54.598989pt;}
.h4{height:57.787500pt;}
.h7{height:58.530000pt;}
.h3{height:59.340000pt;}
.h5{height:60.057813pt;}
.hf{height:72.408750pt;}
.h12{height:72.515417pt;}
.h10{height:79.014375pt;}
.h2{height:85.785000pt;}
.h13{height:89.630417pt;}
.h15{height:265.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:39.872000pt;}
.w26{width:41.312000pt;}
.w11{width:42.912000pt;}
.we{width:46.560000pt;}
.w1e{width:49.920000pt;}
.w1c{width:49.952000pt;}
.w1d{width:50.080000pt;}
.w24{width:50.592000pt;}
.w25{width:51.360000pt;}
.w20{width:54.720000pt;}
.w21{width:55.360000pt;}
.w27{width:56.000000pt;}
.wb{width:65.600000pt;}
.w22{width:66.720000pt;}
.w19{width:69.120000pt;}
.w17{width:75.040000pt;}
.w14{width:76.032000pt;}
.w1a{width:80.512000pt;}
.w18{width:84.352000pt;}
.w13{width:86.560000pt;}
.wc{width:92.032000pt;}
.wd{width:92.192000pt;}
.w6{width:93.760000pt;}
.w5{width:93.792000pt;}
.w15{width:105.280000pt;}
.w12{width:106.080000pt;}
.w7{width:169.146667pt;}
.w16{width:216.346667pt;}
.wf{width:221.026667pt;}
.w23{width:225.786667pt;}
.wa{width:232.066667pt;}
.w8{width:254.586667pt;}
.w10{width:269.306667pt;}
.w1b{width:292.506667pt;}
.w9{width:310.906667pt;}
.w3{width:414.080000pt;}
.w4{width:424.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.xb{left:12.893333pt;}
.xa{left:20.093333pt;}
.x7{left:23.999988pt;}
.x1{left:48.159988pt;}
.xc{left:67.173333pt;}
.x2c{left:71.999988pt;}
.x18{left:76.160000pt;}
.x1e{left:85.632000pt;}
.xd{left:89.573333pt;}
.x13{left:92.032000pt;}
.x24{left:94.752000pt;}
.x2d{left:96.031988pt;}
.xe{left:145.413333pt;}
.x2b{left:161.466667pt;}
.x9{left:189.760000pt;}
.x12{left:260.066667pt;}
.x4{left:269.186655pt;}
.x19{left:297.986667pt;}
.x1f{left:302.626667pt;}
.x5{left:330.306655pt;}
.x20{left:378.306667pt;}
.x1c{left:385.186667pt;}
.x25{left:389.346667pt;}
.x14{left:403.586667pt;}
.x6{left:428.093322pt;}
.x3{left:436.893322pt;}
.x26{left:441.213333pt;}
.x1d{left:462.013333pt;}
.x21{left:463.293333pt;}
.x27{left:493.213333pt;}
.x16{left:496.253333pt;}
.x10{left:515.293333pt;}
.x22{left:533.213333pt;}
.x28{left:545.213333pt;}
.x1a{left:567.933333pt;}
.x29{left:587.173333pt;}
.x17{left:589.093333pt;}
.x8{left:603.973322pt;}
.x11{left:609.893333pt;}
.x1b{left:611.653333pt;}
.x23{left:614.533333pt;}
.x15{left:636.293333pt;}
.x2a{left:643.813333pt;}
.x2{left:713.573322pt;}
}




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