
    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_063ed2ebbaac0a4c947db91c.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_f07ed372274a879184471c96.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2594812410ad26c0f87bc058.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4cce070e577122ba36990c52.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ff8e71e622dc6fe63ea0dabd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_229cf5e06f994d5b687c87f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.950195;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:-27.540000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.000001px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.684000px;}
.lse{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.lsa{letter-spacing:1.440000px;}
.ls7{letter-spacing:5.940000px;}
.ls16{letter-spacing:6.480000px;}
.ls4{letter-spacing:18.720000px;}
.lsb{letter-spacing:164.826720px;}
.ls10{letter-spacing:194.376000px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws8{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws1{word-spacing:0.000000px;}
._32{margin-left:-5.328000px;}
._3{margin-left:-4.248000px;}
._2{margin-left:-3.024000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._8{width:2.280000px;}
._d{width:3.312000px;}
._13{width:5.160000px;}
._7{width:6.264000px;}
._6{width:7.272000px;}
._b{width:9.144000px;}
._12{width:10.176000px;}
._30{width:11.448000px;}
._e{width:12.456000px;}
._31{width:13.584000px;}
._9{width:14.688000px;}
._a{width:15.912000px;}
._2e{width:16.920000px;}
._f{width:19.536000px;}
._34{width:20.844000px;}
._10{width:22.104000px;}
._11{width:23.376000px;}
._19{width:24.575760px;}
._4{width:26.280000px;}
._5{width:27.648000px;}
._c{width:29.088000px;}
._2f{width:30.144000px;}
._36{width:31.354560px;}
._22{width:32.509440px;}
._33{width:34.488000px;}
._23{width:36.154800px;}
._1a{width:37.529280px;}
._29{width:39.627840px;}
._35{width:41.112000px;}
._3b{width:42.984000px;}
._2a{width:44.138880px;}
._20{width:48.240000px;}
._1f{width:49.446720px;}
._3d{width:51.624000px;}
._3e{width:52.740000px;}
._16{width:58.366800px;}
._2c{width:59.687760px;}
._1c{width:63.883440px;}
._24{width:73.146240px;}
._38{width:80.424000px;}
._39{width:81.540000px;}
._26{width:95.443680px;}
._15{width:98.604000px;}
._28{width:99.739440px;}
._1d{width:103.982400px;}
._27{width:121.312800px;}
._18{width:172.825920px;}
._21{width:177.367680px;}
._3a{width:179.136000px;}
._3c{width:186.672000px;}
._1e{width:188.549760px;}
._37{width:194.376000px;}
._2b{width:196.256880px;}
._2d{width:219.319200px;}
._1b{width:259.146720px;}
._17{width:265.752720px;}
._25{width:272.206800px;}
._14{width:302.684400px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.y47{bottom:12.240000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y12{bottom:12.960000px;}
.y3{bottom:21.960000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.y4d{bottom:29.340000px;}
.y46{bottom:29.520000px;}
.y2{bottom:42.660000px;}
.y4c{bottom:46.620000px;}
.y4a{bottom:46.800000px;}
.y53{bottom:46.845000px;}
.yc{bottom:56.700000px;}
.y51{bottom:63.900000px;}
.y49{bottom:64.080000px;}
.yb{bottom:72.180000px;}
.y5d{bottom:110.520000px;}
.y10a{bottom:111.780000px;}
.y8a{bottom:111.960000px;}
.yf0{bottom:113.580000px;}
.y140{bottom:114.120000px;}
.y176{bottom:118.260000px;}
.y6e{bottom:120.240000px;}
.y119{bottom:124.020000px;}
.y1b2{bottom:126.360000px;}
.ybc{bottom:128.520000px;}
.ya0{bottom:129.060000px;}
.y181{bottom:129.960000px;}
.y5c{bottom:131.220000px;}
.y109{bottom:132.480000px;}
.y89{bottom:132.660000px;}
.yef{bottom:134.280000px;}
.y13f{bottom:134.820000px;}
.y1bf{bottom:135.360000px;}
.y39{bottom:137.880000px;}
.y169{bottom:138.960000px;}
.y6d{bottom:140.940000px;}
.y118{bottom:144.720000px;}
.ybb{bottom:149.220000px;}
.y9f{bottom:149.760000px;}
.y180{bottom:150.660000px;}
.y108{bottom:153.180000px;}
.yee{bottom:154.980000px;}
.y1b1{bottom:156.060000px;}
.y79{bottom:156.960000px;}
.y88{bottom:158.400000px;}
.y38{bottom:158.580000px;}
.y168{bottom:159.660000px;}
.y13e{bottom:160.560000px;}
.y5b{bottom:160.920000px;}
.y12f{bottom:161.100000px;}
.y6c{bottom:161.640000px;}
.y17f{bottom:171.360000px;}
.y107{bottom:173.880000px;}
.y117{bottom:174.240000px;}
.yd5{bottom:174.960000px;}
.yed{bottom:175.680000px;}
.y1b0{bottom:176.760000px;}
.yba{bottom:178.920000px;}
.y37{bottom:179.280000px;}
.y9e{bottom:179.460000px;}
.y167{bottom:180.360000px;}
.y5a{bottom:181.620000px;}
.y12e{bottom:181.800000px;}
.y6b{bottom:182.340000px;}
.y17e{bottom:192.060000px;}
.y106{bottom:194.580000px;}
.yd4{bottom:195.660000px;}
.yec{bottom:196.380000px;}
.y1af{bottom:197.490000px;}
.yb9{bottom:199.650000px;}
.y36{bottom:200.010000px;}
.y166{bottom:201.090000px;}
.y59{bottom:202.350000px;}
.y12d{bottom:202.530000px;}
.y6a{bottom:203.070000px;}
.y116{bottom:203.970000px;}
.y1be{bottom:206.490000px;}
.y9d{bottom:209.190000px;}
.y19a{bottom:210.090000px;}
.y17d{bottom:212.790000px;}
.y105{bottom:215.310000px;}
.yd3{bottom:216.390000px;}
.yb8{bottom:220.350000px;}
.y165{bottom:221.790000px;}
.y58{bottom:223.050000px;}
.y12c{bottom:223.230000px;}
.y115{bottom:224.670000px;}
.yeb{bottom:226.110000px;}
.y1ae{bottom:227.190000px;}
.y35{bottom:229.710000px;}
.y199{bottom:230.790000px;}
.y69{bottom:232.770000px;}
.y104{bottom:236.010000px;}
.y1bd{bottom:236.190000px;}
.y9c{bottom:238.890000px;}
.yb7{bottom:241.050000px;}
.y164{bottom:242.490000px;}
.y12b{bottom:243.930000px;}
.y114{bottom:245.370000px;}
.yd2{bottom:246.090000px;}
.yea{bottom:246.810000px;}
.y1ad{bottom:247.890000px;}
.y34{bottom:250.410000px;}
.y57{bottom:252.750000px;}
.y68{bottom:253.470000px;}
.y103{bottom:256.710000px;}
.y1bc{bottom:256.890000px;}
.y198{bottom:260.490000px;}
.yb6{bottom:261.750000px;}
.y175{bottom:263.190000px;}
.y12a{bottom:264.630000px;}
.yd1{bottom:266.790000px;}
.ye9{bottom:267.510000px;}
.y9b{bottom:268.590000px;}
.y33{bottom:271.110000px;}
.y163{bottom:272.190000px;}
.y56{bottom:273.450000px;}
.y67{bottom:274.170000px;}
.y113{bottom:275.070000px;}
.y1ac{bottom:277.590000px;}
.y174{bottom:283.890000px;}
.y129{bottom:285.330000px;}
.y102{bottom:286.410000px;}
.yd0{bottom:287.490000px;}
.ye8{bottom:288.210000px;}
.y9a{bottom:289.290000px;}
.y197{bottom:290.190000px;}
.yb5{bottom:291.450000px;}
.y32{bottom:291.810000px;}
.y17c{bottom:292.890000px;}
.y55{bottom:294.150000px;}
.y1ab{bottom:298.290000px;}
.y162{bottom:301.890000px;}
.y66{bottom:303.870000px;}
.y173{bottom:304.590000px;}
.y112{bottom:304.770000px;}
.y128{bottom:306.030000px;}
.y1bb{bottom:307.290000px;}
.ycf{bottom:308.190000px;}
.ye7{bottom:308.910000px;}
.yb4{bottom:312.150000px;}
.y17b{bottom:313.590000px;}
.y101{bottom:316.110000px;}
.y99{bottom:318.990000px;}
.y196{bottom:319.890000px;}
.y54{bottom:320.610000px;}
.y31{bottom:321.510000px;}
.y161{bottom:322.590000px;}
.y172{bottom:325.290000px;}
.y127{bottom:326.730000px;}
.y1ba{bottom:327.990000px;}
.yce{bottom:328.890000px;}
.ye6{bottom:329.610000px;}
.yb3{bottom:332.850000px;}
.y65{bottom:333.570000px;}
.y111{bottom:334.470000px;}
.y1c2{bottom:339.690000px;}
.y195{bottom:340.590000px;}
.y160{bottom:343.290000px;}
.y100{bottom:345.810000px;}
.y98{bottom:348.690000px;}
.y30{bottom:351.210000px;}
.yb2{bottom:353.550000px;}
.y171{bottom:354.990000px;}
.y110{bottom:355.170000px;}
.y126{bottom:356.430000px;}
.ycd{bottom:358.590000px;}
.ye5{bottom:359.310000px;}
.y194{bottom:361.290000px;}
.y64{bottom:363.270000px;}
.y15f{bottom:363.990000px;}
.yff{bottom:366.510000px;}
.y97{bottom:369.390000px;}
.yb1{bottom:374.250000px;}
.y125{bottom:377.130000px;}
.y1b9{bottom:378.390000px;}
.ycc{bottom:379.290000px;}
.ye4{bottom:380.010000px;}
.y2f{bottom:380.910000px;}
.y193{bottom:381.990000px;}
.y15e{bottom:384.690000px;}
.y10f{bottom:384.870000px;}
.yfe{bottom:387.210000px;}
.y1aa{bottom:390.090000px;}
.y52{bottom:390.990000px;}
.y63{bottom:392.970000px;}
.y96{bottom:395.130000px;}
.y124{bottom:397.830000px;}
.y1b8{bottom:399.090000px;}
.ycb{bottom:399.990000px;}
.ye3{bottom:400.710000px;}
.y2e{bottom:401.610000px;}
.yb0{bottom:403.950000px;}
.y15d{bottom:405.390000px;}
.yfd{bottom:407.910000px;}
.y1c1{bottom:410.790000px;}
.y192{bottom:411.690000px;}
.y10e{bottom:414.570000px;}
.y123{bottom:418.530000px;}
.y62{bottom:418.710000px;}
.y1a9{bottom:419.790000px;}
.yca{bottom:420.690000px;}
.ye2{bottom:421.410000px;}
.yaf{bottom:424.650000px;}
.y15c{bottom:426.090000px;}
.yfc{bottom:428.610000px;}
.y2d{bottom:431.310000px;}
.y191{bottom:432.390000px;}
.y10d{bottom:435.270000px;}
.y122{bottom:439.275000px;}
.y1a8{bottom:440.535000px;}
.yc9{bottom:441.435000px;}
.ye1{bottom:442.155000px;}
.yae{bottom:445.395000px;}
.y15b{bottom:446.835000px;}
.yfb{bottom:449.355000px;}
.y1b7{bottom:449.535000px;}
.y2c{bottom:452.055000px;}
.y190{bottom:453.135000px;}
.y170{bottom:455.835000px;}
.y121{bottom:459.975000px;}
.y10c{bottom:461.235000px;}
.y50{bottom:461.595000px;}
.ye0{bottom:462.855000px;}
.yad{bottom:466.095000px;}
.y15a{bottom:467.535000px;}
.yfa{bottom:470.055000px;}
.y1a7{bottom:470.235000px;}
.yc8{bottom:471.135000px;}
.y2b{bottom:472.755000px;}
.y18f{bottom:473.835000px;}
.y16f{bottom:476.535000px;}
.ydf{bottom:483.555000px;}
.yac{bottom:486.795000px;}
.y159{bottom:488.235000px;}
.y78{bottom:489.495000px;}
.y120{bottom:489.675000px;}
.yf9{bottom:490.755000px;}
.y1a6{bottom:490.935000px;}
.yc7{bottom:491.835000px;}
.y2a{bottom:493.455000px;}
.y16e{bottom:497.235000px;}
.y13d{bottom:499.935000px;}
.y18e{bottom:503.535000px;}
.yde{bottom:504.255000px;}
.yab{bottom:507.495000px;}
.y17a{bottom:508.935000px;}
.y77{bottom:510.195000px;}
.y11f{bottom:510.375000px;}
.y1a5{bottom:511.635000px;}
.yc6{bottom:512.535000px;}
.y158{bottom:517.935000px;}
.yf8{bottom:520.455000px;}
.y13c{bottom:520.635000px;}
.y29{bottom:523.155000px;}
.y18d{bottom:524.235000px;}
.ydd{bottom:524.955000px;}
.y1c0{bottom:532.335000px;}
.yc5{bottom:533.235000px;}
.yaa{bottom:537.195000px;}
.y16d{bottom:538.635000px;}
.y76{bottom:539.895000px;}
.y11e{bottom:540.075000px;}
.y13b{bottom:541.335000px;}
.y28{bottom:543.855000px;}
.y18c{bottom:544.935000px;}
.y157{bottom:547.635000px;}
.y4f{bottom:549.255000px;}
.yf7{bottom:550.155000px;}
.yc4{bottom:553.935000px;}
.ydc{bottom:554.655000px;}
.ya9{bottom:557.895000px;}
.y16c{bottom:559.335000px;}
.y13a{bottom:562.035000px;}
.y27{bottom:564.555000px;}
.y18b{bottom:565.635000px;}
.y156{bottom:568.335000px;}
.y75{bottom:569.595000px;}
.y11d{bottom:569.775000px;}
.yc3{bottom:574.635000px;}
.ya8{bottom:578.595000px;}
.yf6{bottom:579.855000px;}
.y16b{bottom:580.035000px;}
.y139{bottom:582.735000px;}
.ydb{bottom:584.355000px;}
.y26{bottom:585.255000px;}
.y155{bottom:589.035000px;}
.y11c{bottom:590.475000px;}
.y1b6{bottom:591.735000px;}
.y74{bottom:595.335000px;}
.ya7{bottom:599.295000px;}
.yf5{bottom:600.555000px;}
.y138{bottom:603.435000px;}
.yda{bottom:605.055000px;}
.y25{bottom:605.955000px;}
.y154{bottom:609.735000px;}
.y1a4{bottom:612.435000px;}
.y18a{bottom:616.035000px;}
.y11b{bottom:616.215000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.y4e{bottom:619.815000px;}
.y137{bottom:624.135000px;}
.yc2{bottom:625.035000px;}
.ya6{bottom:628.995000px;}
.yf4{bottom:630.255000px;}
.y153{bottom:630.435000px;}
.y1a3{bottom:633.135000px;}
.yd9{bottom:634.755000px;}
.y24{bottom:635.655000px;}
.y189{bottom:636.735000px;}
.y1b5{bottom:642.135000px;}
.y136{bottom:644.835000px;}
.y87{bottom:648.435000px;}
.y152{bottom:651.135000px;}
.y1a2{bottom:653.835000px;}
.yc1{bottom:654.735000px;}
.y23{bottom:656.355000px;}
.y188{bottom:657.435000px;}
.ya5{bottom:658.695000px;}
.yf3{bottom:659.955000px;}
.y1b4{bottom:662.835000px;}
.yd8{bottom:664.455000px;}
.y135{bottom:665.535000px;}
.y86{bottom:669.135000px;}
.y151{bottom:671.835000px;}
.yc0{bottom:675.465000px;}
.y22{bottom:677.085000px;}
.y187{bottom:678.165000px;}
.ya4{bottom:679.425000px;}
.yf2{bottom:680.685000px;}
.y1a1{bottom:683.565000px;}
.yd7{bottom:685.185000px;}
.y134{bottom:686.265000px;}
.y85{bottom:689.865000px;}
.y4b{bottom:690.405000px;}
.y150{bottom:692.565000px;}
.y1c3{bottom:695.265000px;}
.y21{bottom:697.785000px;}
.y186{bottom:698.865000px;}
.y1a0{bottom:704.265000px;}
.ybf{bottom:705.165000px;}
.yf1{bottom:706.425000px;}
.ya3{bottom:709.125000px;}
.y84{bottom:710.565000px;}
.yd6{bottom:710.925000px;}
.y14f{bottom:713.265000px;}
.y133{bottom:715.965000px;}
.y20{bottom:718.485000px;}
.y185{bottom:719.565000px;}
.y19f{bottom:724.965000px;}
.y95{bottom:731.265000px;}
.y14e{bottom:733.965000px;}
.ybe{bottom:734.865000px;}
.ya2{bottom:738.825000px;}
.y1f{bottom:739.185000px;}
.y83{bottom:740.265000px;}
.y179{bottom:742.965000px;}
.y132{bottom:745.665000px;}
.y94{bottom:751.965000px;}
.y14d{bottom:754.665000px;}
.ybd{bottom:760.605000px;}
.y48{bottom:760.785000px;}
.y82{bottom:760.965000px;}
.y1b3{bottom:763.665000px;}
.ya1{bottom:764.565000px;}
.y131{bottom:766.365000px;}
.y1e{bottom:768.885000px;}
.y178{bottom:772.665000px;}
.y19e{bottom:775.365000px;}
.y81{bottom:781.665000px;}
.y14c{bottom:784.365000px;}
.y184{bottom:790.665000px;}
.y130{bottom:792.105000px;}
.y177{bottom:793.365000px;}
.y19d{bottom:796.065000px;}
.y1d{bottom:798.225000px;}
.y80{bottom:802.365000px;}
.y16a{bottom:805.065000px;}
.y183{bottom:811.365000px;}
.y14b{bottom:814.065000px;}
.y7f{bottom:823.065000px;}
.y19c{bottom:825.765000px;}
.y182{bottom:832.065000px;}
.y1c{bottom:833.325000px;}
.y14a{bottom:834.765000px;}
.y7e{bottom:843.765000px;}
.y19b{bottom:846.465000px;}
.y45{bottom:848.625000px;}
.y10b{bottom:852.765000px;}
.y149{bottom:855.465000px;}
.y1b{bottom:856.185000px;}
.y93{bottom:864.465000px;}
.y7d{bottom:873.465000px;}
.y148{bottom:876.165000px;}
.y61{bottom:882.465000px;}
.y1a{bottom:883.725000px;}
.y92{bottom:885.165000px;}
.y73{bottom:894.165000px;}
.y147{bottom:896.865000px;}
.y60{bottom:903.165000px;}
.y91{bottom:905.865000px;}
.y19{bottom:913.470000px;}
.y44{bottom:914.910000px;}
.y146{bottom:917.610000px;}
.y5f{bottom:923.910000px;}
.y90{bottom:926.610000px;}
.y43{bottom:935.610000px;}
.y18{bottom:936.330000px;}
.y145{bottom:938.310000px;}
.y5e{bottom:944.610000px;}
.y8f{bottom:947.310000px;}
.y72{bottom:956.310000px;}
.y144{bottom:959.010000px;}
.y42{bottom:965.310000px;}
.y17{bottom:965.850000px;}
.y8e{bottom:968.010000px;}
.y7c{bottom:977.010000px;}
.y143{bottom:979.710000px;}
.y41{bottom:986.010000px;}
.y8d{bottom:988.710000px;}
.y16{bottom:994.110000px;}
.y7b{bottom:997.710000px;}
.y142{bottom:1000.410000px;}
.y40{bottom:1006.710000px;}
.y15{bottom:1014.810000px;}
.y7a{bottom:1018.410000px;}
.y3f{bottom:1027.410000px;}
.y141{bottom:1030.110000px;}
.y8c{bottom:1039.110000px;}
.y14{bottom:1040.550000px;}
.y3e{bottom:1048.110000px;}
.y11a{bottom:1057.110000px;}
.y8b{bottom:1059.810000px;}
.y71{bottom:1068.810000px;}
.y3d{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.y70{bottom:1089.510000px;}
.y3c{bottom:1098.510000px;}
.y6f{bottom:1110.210000px;}
.y11{bottom:1117.950000px;}
.y3b{bottom:1119.210000px;}
.y3a{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h6{height:19.620000px;}
.hb{height:28.080000px;}
.ha{height:28.260000px;}
.hd{height:38.700000px;}
.hc{height:38.736000px;}
.h7{height:42.164648px;}
.he{height:43.246406px;}
.h5{height:43.560000px;}
.h3{height:50.800781px;}
.hf{height:52.560000px;}
.h8{height:53.573906px;}
.h9{height:59.383125px;}
.h2{height:60.120000px;}
.h4{height:64.546875px;}
.h11{height:69.660000px;}
.h13{height:69.840000px;}
.h12{height:69.876000px;}
.h15{height:70.606406px;}
.h14{height:86.940000px;}
.h10{height:87.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:84.990000px;}
.w3{width:101.376000px;}
.wd{width:107.856000px;}
.we{width:116.640000px;}
.wc{width:117.540000px;}
.w6{width:124.416000px;}
.w10{width:153.030000px;}
.wf{width:180.930000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.w9{width:223.770000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.w2{width:618.450000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x1a{left:7.740000px;}
.xc{left:10.800000px;}
.xe{left:14.940000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x7{left:29.340000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.x11{left:90.900000px;}
.xa{left:106.235987px;}
.x3b{left:109.115987px;}
.x26{left:111.635987px;}
.x2e{left:115.595987px;}
.x39{left:118.295987px;}
.x17{left:121.715987px;}
.x23{left:124.595987px;}
.x28{left:126.755987px;}
.x36{left:136.295987px;}
.x33{left:137.375987px;}
.x1e{left:160.409987px;}
.x13{left:169.949987px;}
.x15{left:182.729987px;}
.x12{left:184.185000px;}
.x2a{left:206.489987px;}
.x16{left:210.629987px;}
.x1b{left:225.390000px;}
.x31{left:245.729987px;}
.x34{left:266.069987px;}
.x2{left:270.435000px;}
.x20{left:272.909987px;}
.xf{left:275.970000px;}
.x2c{left:314.714987px;}
.x2f{left:319.214987px;}
.x29{left:326.054987px;}
.x19{left:327.134987px;}
.x1c{left:333.975000px;}
.x3c{left:341.714987px;}
.x37{left:357.014987px;}
.x18{left:399.134987px;}
.x14{left:411.914987px;}
.x24{left:429.194987px;}
.x21{left:446.474987px;}
.x8{left:451.155000px;}
.x10{left:562.065000px;}
.x2d{left:598.784987px;}
.x38{left:607.604987px;}
.x25{left:629.744987px;}
.x1d{left:632.985000px;}
.x22{left:647.744987px;}
.x1f{left:669.209987px;}
.x30{left:688.289987px;}
.x27{left:692.249987px;}
.x35{left:698.549987px;}
.x32{left:708.629987px;}
.x3a{left:719.969987px;}
.x9{left:737.610000px;}
.x4{left:761.010000px;}
.x2b{left:771.629987px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.000001pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.608000pt;}
.lse{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls7{letter-spacing:5.280000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls4{letter-spacing:16.640000pt;}
.lsb{letter-spacing:146.512640pt;}
.ls10{letter-spacing:172.778667pt;}
.ws7{word-spacing:-53.120000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws1{word-spacing:0.000000pt;}
._32{margin-left:-4.736000pt;}
._3{margin-left:-3.776000pt;}
._2{margin-left:-2.688000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._8{width:2.026667pt;}
._d{width:2.944000pt;}
._13{width:4.586667pt;}
._7{width:5.568000pt;}
._6{width:6.464000pt;}
._b{width:8.128000pt;}
._12{width:9.045333pt;}
._30{width:10.176000pt;}
._e{width:11.072000pt;}
._31{width:12.074667pt;}
._9{width:13.056000pt;}
._a{width:14.144000pt;}
._2e{width:15.040000pt;}
._f{width:17.365333pt;}
._34{width:18.528000pt;}
._10{width:19.648000pt;}
._11{width:20.778667pt;}
._19{width:21.845120pt;}
._4{width:23.360000pt;}
._5{width:24.576000pt;}
._c{width:25.856000pt;}
._2f{width:26.794667pt;}
._36{width:27.870720pt;}
._22{width:28.897280pt;}
._33{width:30.656000pt;}
._23{width:32.137600pt;}
._1a{width:33.359360pt;}
._29{width:35.224747pt;}
._35{width:36.544000pt;}
._3b{width:38.208000pt;}
._2a{width:39.234560pt;}
._20{width:42.880000pt;}
._1f{width:43.952640pt;}
._3d{width:45.888000pt;}
._3e{width:46.880000pt;}
._16{width:51.881600pt;}
._2c{width:53.055787pt;}
._1c{width:56.785280pt;}
._24{width:65.018880pt;}
._38{width:71.488000pt;}
._39{width:72.480000pt;}
._26{width:84.838827pt;}
._15{width:87.648000pt;}
._28{width:88.657280pt;}
._1d{width:92.428800pt;}
._27{width:107.833600pt;}
._18{width:153.623040pt;}
._21{width:157.660160pt;}
._3a{width:159.232000pt;}
._3c{width:165.930667pt;}
._1e{width:167.599787pt;}
._37{width:172.778667pt;}
._2b{width:174.450560pt;}
._2d{width:194.950400pt;}
._1b{width:230.352640pt;}
._17{width:236.224640pt;}
._25{width:241.961600pt;}
._14{width:269.052800pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.y47{bottom:10.880000pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y12{bottom:11.520000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.y4d{bottom:26.080000pt;}
.y46{bottom:26.240000pt;}
.y2{bottom:37.920000pt;}
.y4c{bottom:41.440000pt;}
.y4a{bottom:41.600000pt;}
.y53{bottom:41.640000pt;}
.yc{bottom:50.400000pt;}
.y51{bottom:56.800000pt;}
.y49{bottom:56.960000pt;}
.yb{bottom:64.160000pt;}
.y5d{bottom:98.240000pt;}
.y10a{bottom:99.360000pt;}
.y8a{bottom:99.520000pt;}
.yf0{bottom:100.960000pt;}
.y140{bottom:101.440000pt;}
.y176{bottom:105.120000pt;}
.y6e{bottom:106.880000pt;}
.y119{bottom:110.240000pt;}
.y1b2{bottom:112.320000pt;}
.ybc{bottom:114.240000pt;}
.ya0{bottom:114.720000pt;}
.y181{bottom:115.520000pt;}
.y5c{bottom:116.640000pt;}
.y109{bottom:117.760000pt;}
.y89{bottom:117.920000pt;}
.yef{bottom:119.360000pt;}
.y13f{bottom:119.840000pt;}
.y1bf{bottom:120.320000pt;}
.y39{bottom:122.560000pt;}
.y169{bottom:123.520000pt;}
.y6d{bottom:125.280000pt;}
.y118{bottom:128.640000pt;}
.ybb{bottom:132.640000pt;}
.y9f{bottom:133.120000pt;}
.y180{bottom:133.920000pt;}
.y108{bottom:136.160000pt;}
.yee{bottom:137.760000pt;}
.y1b1{bottom:138.720000pt;}
.y79{bottom:139.520000pt;}
.y88{bottom:140.800000pt;}
.y38{bottom:140.960000pt;}
.y168{bottom:141.920000pt;}
.y13e{bottom:142.720000pt;}
.y5b{bottom:143.040000pt;}
.y12f{bottom:143.200000pt;}
.y6c{bottom:143.680000pt;}
.y17f{bottom:152.320000pt;}
.y107{bottom:154.560000pt;}
.y117{bottom:154.880000pt;}
.yd5{bottom:155.520000pt;}
.yed{bottom:156.160000pt;}
.y1b0{bottom:157.120000pt;}
.yba{bottom:159.040000pt;}
.y37{bottom:159.360000pt;}
.y9e{bottom:159.520000pt;}
.y167{bottom:160.320000pt;}
.y5a{bottom:161.440000pt;}
.y12e{bottom:161.600000pt;}
.y6b{bottom:162.080000pt;}
.y17e{bottom:170.720000pt;}
.y106{bottom:172.960000pt;}
.yd4{bottom:173.920000pt;}
.yec{bottom:174.560000pt;}
.y1af{bottom:175.546667pt;}
.yb9{bottom:177.466667pt;}
.y36{bottom:177.786667pt;}
.y166{bottom:178.746667pt;}
.y59{bottom:179.866667pt;}
.y12d{bottom:180.026667pt;}
.y6a{bottom:180.506667pt;}
.y116{bottom:181.306667pt;}
.y1be{bottom:183.546667pt;}
.y9d{bottom:185.946667pt;}
.y19a{bottom:186.746667pt;}
.y17d{bottom:189.146667pt;}
.y105{bottom:191.386667pt;}
.yd3{bottom:192.346667pt;}
.yb8{bottom:195.866667pt;}
.y165{bottom:197.146667pt;}
.y58{bottom:198.266667pt;}
.y12c{bottom:198.426667pt;}
.y115{bottom:199.706667pt;}
.yeb{bottom:200.986667pt;}
.y1ae{bottom:201.946667pt;}
.y35{bottom:204.186667pt;}
.y199{bottom:205.146667pt;}
.y69{bottom:206.906667pt;}
.y104{bottom:209.786667pt;}
.y1bd{bottom:209.946667pt;}
.y9c{bottom:212.346667pt;}
.yb7{bottom:214.266667pt;}
.y164{bottom:215.546667pt;}
.y12b{bottom:216.826667pt;}
.y114{bottom:218.106667pt;}
.yd2{bottom:218.746667pt;}
.yea{bottom:219.386667pt;}
.y1ad{bottom:220.346667pt;}
.y34{bottom:222.586667pt;}
.y57{bottom:224.666667pt;}
.y68{bottom:225.306667pt;}
.y103{bottom:228.186667pt;}
.y1bc{bottom:228.346667pt;}
.y198{bottom:231.546667pt;}
.yb6{bottom:232.666667pt;}
.y175{bottom:233.946667pt;}
.y12a{bottom:235.226667pt;}
.yd1{bottom:237.146667pt;}
.ye9{bottom:237.786667pt;}
.y9b{bottom:238.746667pt;}
.y33{bottom:240.986667pt;}
.y163{bottom:241.946667pt;}
.y56{bottom:243.066667pt;}
.y67{bottom:243.706667pt;}
.y113{bottom:244.506667pt;}
.y1ac{bottom:246.746667pt;}
.y174{bottom:252.346667pt;}
.y129{bottom:253.626667pt;}
.y102{bottom:254.586667pt;}
.yd0{bottom:255.546667pt;}
.ye8{bottom:256.186667pt;}
.y9a{bottom:257.146667pt;}
.y197{bottom:257.946667pt;}
.yb5{bottom:259.066667pt;}
.y32{bottom:259.386667pt;}
.y17c{bottom:260.346667pt;}
.y55{bottom:261.466667pt;}
.y1ab{bottom:265.146667pt;}
.y162{bottom:268.346667pt;}
.y66{bottom:270.106667pt;}
.y173{bottom:270.746667pt;}
.y112{bottom:270.906667pt;}
.y128{bottom:272.026667pt;}
.y1bb{bottom:273.146667pt;}
.ycf{bottom:273.946667pt;}
.ye7{bottom:274.586667pt;}
.yb4{bottom:277.466667pt;}
.y17b{bottom:278.746667pt;}
.y101{bottom:280.986667pt;}
.y99{bottom:283.546667pt;}
.y196{bottom:284.346667pt;}
.y54{bottom:284.986667pt;}
.y31{bottom:285.786667pt;}
.y161{bottom:286.746667pt;}
.y172{bottom:289.146667pt;}
.y127{bottom:290.426667pt;}
.y1ba{bottom:291.546667pt;}
.yce{bottom:292.346667pt;}
.ye6{bottom:292.986667pt;}
.yb3{bottom:295.866667pt;}
.y65{bottom:296.506667pt;}
.y111{bottom:297.306667pt;}
.y1c2{bottom:301.946667pt;}
.y195{bottom:302.746667pt;}
.y160{bottom:305.146667pt;}
.y100{bottom:307.386667pt;}
.y98{bottom:309.946667pt;}
.y30{bottom:312.186667pt;}
.yb2{bottom:314.266667pt;}
.y171{bottom:315.546667pt;}
.y110{bottom:315.706667pt;}
.y126{bottom:316.826667pt;}
.ycd{bottom:318.746667pt;}
.ye5{bottom:319.386667pt;}
.y194{bottom:321.146667pt;}
.y64{bottom:322.906667pt;}
.y15f{bottom:323.546667pt;}
.yff{bottom:325.786667pt;}
.y97{bottom:328.346667pt;}
.yb1{bottom:332.666667pt;}
.y125{bottom:335.226667pt;}
.y1b9{bottom:336.346667pt;}
.ycc{bottom:337.146667pt;}
.ye4{bottom:337.786667pt;}
.y2f{bottom:338.586667pt;}
.y193{bottom:339.546667pt;}
.y15e{bottom:341.946667pt;}
.y10f{bottom:342.106667pt;}
.yfe{bottom:344.186667pt;}
.y1aa{bottom:346.746667pt;}
.y52{bottom:347.546667pt;}
.y63{bottom:349.306667pt;}
.y96{bottom:351.226667pt;}
.y124{bottom:353.626667pt;}
.y1b8{bottom:354.746667pt;}
.ycb{bottom:355.546667pt;}
.ye3{bottom:356.186667pt;}
.y2e{bottom:356.986667pt;}
.yb0{bottom:359.066667pt;}
.y15d{bottom:360.346667pt;}
.yfd{bottom:362.586667pt;}
.y1c1{bottom:365.146667pt;}
.y192{bottom:365.946667pt;}
.y10e{bottom:368.506667pt;}
.y123{bottom:372.026667pt;}
.y62{bottom:372.186667pt;}
.y1a9{bottom:373.146667pt;}
.yca{bottom:373.946667pt;}
.ye2{bottom:374.586667pt;}
.yaf{bottom:377.466667pt;}
.y15c{bottom:378.746667pt;}
.yfc{bottom:380.986667pt;}
.y2d{bottom:383.386667pt;}
.y191{bottom:384.346667pt;}
.y10d{bottom:386.906667pt;}
.y122{bottom:390.466667pt;}
.y1a8{bottom:391.586667pt;}
.yc9{bottom:392.386667pt;}
.ye1{bottom:393.026667pt;}
.yae{bottom:395.906667pt;}
.y15b{bottom:397.186667pt;}
.yfb{bottom:399.426667pt;}
.y1b7{bottom:399.586667pt;}
.y2c{bottom:401.826667pt;}
.y190{bottom:402.786667pt;}
.y170{bottom:405.186667pt;}
.y121{bottom:408.866667pt;}
.y10c{bottom:409.986667pt;}
.y50{bottom:410.306667pt;}
.ye0{bottom:411.426667pt;}
.yad{bottom:414.306667pt;}
.y15a{bottom:415.586667pt;}
.yfa{bottom:417.826667pt;}
.y1a7{bottom:417.986667pt;}
.yc8{bottom:418.786667pt;}
.y2b{bottom:420.226667pt;}
.y18f{bottom:421.186667pt;}
.y16f{bottom:423.586667pt;}
.ydf{bottom:429.826667pt;}
.yac{bottom:432.706667pt;}
.y159{bottom:433.986667pt;}
.y78{bottom:435.106667pt;}
.y120{bottom:435.266667pt;}
.yf9{bottom:436.226667pt;}
.y1a6{bottom:436.386667pt;}
.yc7{bottom:437.186667pt;}
.y2a{bottom:438.626667pt;}
.y16e{bottom:441.986667pt;}
.y13d{bottom:444.386667pt;}
.y18e{bottom:447.586667pt;}
.yde{bottom:448.226667pt;}
.yab{bottom:451.106667pt;}
.y17a{bottom:452.386667pt;}
.y77{bottom:453.506667pt;}
.y11f{bottom:453.666667pt;}
.y1a5{bottom:454.786667pt;}
.yc6{bottom:455.586667pt;}
.y158{bottom:460.386667pt;}
.yf8{bottom:462.626667pt;}
.y13c{bottom:462.786667pt;}
.y29{bottom:465.026667pt;}
.y18d{bottom:465.986667pt;}
.ydd{bottom:466.626667pt;}
.y1c0{bottom:473.186667pt;}
.yc5{bottom:473.986667pt;}
.yaa{bottom:477.506667pt;}
.y16d{bottom:478.786667pt;}
.y76{bottom:479.906667pt;}
.y11e{bottom:480.066667pt;}
.y13b{bottom:481.186667pt;}
.y28{bottom:483.426667pt;}
.y18c{bottom:484.386667pt;}
.y157{bottom:486.786667pt;}
.y4f{bottom:488.226667pt;}
.yf7{bottom:489.026667pt;}
.yc4{bottom:492.386667pt;}
.ydc{bottom:493.026667pt;}
.ya9{bottom:495.906667pt;}
.y16c{bottom:497.186667pt;}
.y13a{bottom:499.586667pt;}
.y27{bottom:501.826667pt;}
.y18b{bottom:502.786667pt;}
.y156{bottom:505.186667pt;}
.y75{bottom:506.306667pt;}
.y11d{bottom:506.466667pt;}
.yc3{bottom:510.786667pt;}
.ya8{bottom:514.306667pt;}
.yf6{bottom:515.426667pt;}
.y16b{bottom:515.586667pt;}
.y139{bottom:517.986667pt;}
.ydb{bottom:519.426667pt;}
.y26{bottom:520.226667pt;}
.y155{bottom:523.586667pt;}
.y11c{bottom:524.866667pt;}
.y1b6{bottom:525.986667pt;}
.y74{bottom:529.186667pt;}
.ya7{bottom:532.706667pt;}
.yf5{bottom:533.826667pt;}
.y138{bottom:536.386667pt;}
.yda{bottom:537.826667pt;}
.y25{bottom:538.626667pt;}
.y154{bottom:541.986667pt;}
.y1a4{bottom:544.386667pt;}
.y18a{bottom:547.586667pt;}
.y11b{bottom:547.746667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.y4e{bottom:550.946667pt;}
.y137{bottom:554.786667pt;}
.yc2{bottom:555.586667pt;}
.ya6{bottom:559.106667pt;}
.yf4{bottom:560.226667pt;}
.y153{bottom:560.386667pt;}
.y1a3{bottom:562.786667pt;}
.yd9{bottom:564.226667pt;}
.y24{bottom:565.026667pt;}
.y189{bottom:565.986667pt;}
.y1b5{bottom:570.786667pt;}
.y136{bottom:573.186667pt;}
.y87{bottom:576.386667pt;}
.y152{bottom:578.786667pt;}
.y1a2{bottom:581.186667pt;}
.yc1{bottom:581.986667pt;}
.y23{bottom:583.426667pt;}
.y188{bottom:584.386667pt;}
.ya5{bottom:585.506667pt;}
.yf3{bottom:586.626667pt;}
.y1b4{bottom:589.186667pt;}
.yd8{bottom:590.626667pt;}
.y135{bottom:591.586667pt;}
.y86{bottom:594.786667pt;}
.y151{bottom:597.186667pt;}
.yc0{bottom:600.413333pt;}
.y22{bottom:601.853333pt;}
.y187{bottom:602.813333pt;}
.ya4{bottom:603.933333pt;}
.yf2{bottom:605.053333pt;}
.y1a1{bottom:607.613333pt;}
.yd7{bottom:609.053333pt;}
.y134{bottom:610.013333pt;}
.y85{bottom:613.213333pt;}
.y4b{bottom:613.693333pt;}
.y150{bottom:615.613333pt;}
.y1c3{bottom:618.013333pt;}
.y21{bottom:620.253333pt;}
.y186{bottom:621.213333pt;}
.y1a0{bottom:626.013333pt;}
.ybf{bottom:626.813333pt;}
.yf1{bottom:627.933333pt;}
.ya3{bottom:630.333333pt;}
.y84{bottom:631.613333pt;}
.yd6{bottom:631.933333pt;}
.y14f{bottom:634.013333pt;}
.y133{bottom:636.413333pt;}
.y20{bottom:638.653333pt;}
.y185{bottom:639.613333pt;}
.y19f{bottom:644.413333pt;}
.y95{bottom:650.013333pt;}
.y14e{bottom:652.413333pt;}
.ybe{bottom:653.213333pt;}
.ya2{bottom:656.733333pt;}
.y1f{bottom:657.053333pt;}
.y83{bottom:658.013333pt;}
.y179{bottom:660.413333pt;}
.y132{bottom:662.813333pt;}
.y94{bottom:668.413333pt;}
.y14d{bottom:670.813333pt;}
.ybd{bottom:676.093333pt;}
.y48{bottom:676.253333pt;}
.y82{bottom:676.413333pt;}
.y1b3{bottom:678.813333pt;}
.ya1{bottom:679.613333pt;}
.y131{bottom:681.213333pt;}
.y1e{bottom:683.453333pt;}
.y178{bottom:686.813333pt;}
.y19e{bottom:689.213333pt;}
.y81{bottom:694.813333pt;}
.y14c{bottom:697.213333pt;}
.y184{bottom:702.813333pt;}
.y130{bottom:704.093333pt;}
.y177{bottom:705.213333pt;}
.y19d{bottom:707.613333pt;}
.y1d{bottom:709.533333pt;}
.y80{bottom:713.213333pt;}
.y16a{bottom:715.613333pt;}
.y183{bottom:721.213333pt;}
.y14b{bottom:723.613333pt;}
.y7f{bottom:731.613333pt;}
.y19c{bottom:734.013333pt;}
.y182{bottom:739.613333pt;}
.y1c{bottom:740.733333pt;}
.y14a{bottom:742.013333pt;}
.y7e{bottom:750.013333pt;}
.y19b{bottom:752.413333pt;}
.y45{bottom:754.333333pt;}
.y10b{bottom:758.013333pt;}
.y149{bottom:760.413333pt;}
.y1b{bottom:761.053333pt;}
.y93{bottom:768.413333pt;}
.y7d{bottom:776.413333pt;}
.y148{bottom:778.813333pt;}
.y61{bottom:784.413333pt;}
.y1a{bottom:785.533333pt;}
.y92{bottom:786.813333pt;}
.y73{bottom:794.813333pt;}
.y147{bottom:797.213333pt;}
.y60{bottom:802.813333pt;}
.y91{bottom:805.213333pt;}
.y19{bottom:811.973333pt;}
.y44{bottom:813.253333pt;}
.y146{bottom:815.653333pt;}
.y5f{bottom:821.253333pt;}
.y90{bottom:823.653333pt;}
.y43{bottom:831.653333pt;}
.y18{bottom:832.293333pt;}
.y145{bottom:834.053333pt;}
.y5e{bottom:839.653333pt;}
.y8f{bottom:842.053333pt;}
.y72{bottom:850.053333pt;}
.y144{bottom:852.453333pt;}
.y42{bottom:858.053333pt;}
.y17{bottom:858.533333pt;}
.y8e{bottom:860.453333pt;}
.y7c{bottom:868.453333pt;}
.y143{bottom:870.853333pt;}
.y41{bottom:876.453333pt;}
.y8d{bottom:878.853333pt;}
.y16{bottom:883.653333pt;}
.y7b{bottom:886.853333pt;}
.y142{bottom:889.253333pt;}
.y40{bottom:894.853333pt;}
.y15{bottom:902.053333pt;}
.y7a{bottom:905.253333pt;}
.y3f{bottom:913.253333pt;}
.y141{bottom:915.653333pt;}
.y8c{bottom:923.653333pt;}
.y14{bottom:924.933333pt;}
.y3e{bottom:931.653333pt;}
.y11a{bottom:939.653333pt;}
.y8b{bottom:942.053333pt;}
.y71{bottom:950.053333pt;}
.y3d{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.y70{bottom:968.453333pt;}
.y3c{bottom:976.453333pt;}
.y6f{bottom:986.853333pt;}
.y11{bottom:993.733333pt;}
.y3b{bottom:994.853333pt;}
.y3a{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h6{height:17.440000pt;}
.hb{height:24.960000pt;}
.ha{height:25.120000pt;}
.hd{height:34.400000pt;}
.hc{height:34.432000pt;}
.h7{height:37.479688pt;}
.he{height:38.441250pt;}
.h5{height:38.720000pt;}
.h3{height:45.156250pt;}
.hf{height:46.720000pt;}
.h8{height:47.621250pt;}
.h9{height:52.785000pt;}
.h2{height:53.440000pt;}
.h4{height:57.375000pt;}
.h11{height:61.920000pt;}
.h13{height:62.080000pt;}
.h12{height:62.112000pt;}
.h15{height:62.761250pt;}
.h14{height:77.280000pt;}
.h10{height:77.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:75.546667pt;}
.w3{width:90.112000pt;}
.wd{width:95.872000pt;}
.we{width:103.680000pt;}
.wc{width:104.480000pt;}
.w6{width:110.592000pt;}
.w10{width:136.026667pt;}
.wf{width:160.826667pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.w9{width:198.906667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.w2{width:549.733333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x1a{left:6.880000pt;}
.xc{left:9.600000pt;}
.xe{left:13.280000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x7{left:26.080000pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.x11{left:80.800000pt;}
.xa{left:94.431988pt;}
.x3b{left:96.991988pt;}
.x26{left:99.231988pt;}
.x2e{left:102.751988pt;}
.x39{left:105.151988pt;}
.x17{left:108.191988pt;}
.x23{left:110.751988pt;}
.x28{left:112.671988pt;}
.x36{left:121.151988pt;}
.x33{left:122.111988pt;}
.x1e{left:142.586655pt;}
.x13{left:151.066655pt;}
.x15{left:162.426655pt;}
.x12{left:163.720000pt;}
.x2a{left:183.546655pt;}
.x16{left:187.226655pt;}
.x1b{left:200.346667pt;}
.x31{left:218.426655pt;}
.x34{left:236.506655pt;}
.x2{left:240.386667pt;}
.x20{left:242.586655pt;}
.xf{left:245.306667pt;}
.x2c{left:279.746655pt;}
.x2f{left:283.746655pt;}
.x29{left:289.826655pt;}
.x19{left:290.786655pt;}
.x1c{left:296.866667pt;}
.x3c{left:303.746655pt;}
.x37{left:317.346655pt;}
.x18{left:354.786655pt;}
.x14{left:366.146655pt;}
.x24{left:381.506655pt;}
.x21{left:396.866655pt;}
.x8{left:401.026667pt;}
.x10{left:499.613333pt;}
.x2d{left:532.253322pt;}
.x38{left:540.093322pt;}
.x25{left:559.773322pt;}
.x1d{left:562.653333pt;}
.x22{left:575.773322pt;}
.x1f{left:594.853322pt;}
.x30{left:611.813322pt;}
.x27{left:615.333322pt;}
.x35{left:620.933322pt;}
.x32{left:629.893322pt;}
.x3a{left:639.973322pt;}
.x9{left:655.653333pt;}
.x4{left:676.453333pt;}
.x2b{left:685.893322pt;}
.xb{left:718.213333pt;}
}




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