
    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_5a8f74cc2f0b4332fd55e358.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5fe97394b88cf5273728ca12.woff')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_3d8cd493721999ef77f4d45b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_bb9be873cc36af64c5345905.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_7a6025572ac0a28b99daddbe.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d68ba6a9f737dd4cbad10fcb.woff')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_f666f8d03583186456be9eb6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e6501219139cd4023d7a9b88.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls8{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.846000px;}
.ls16{letter-spacing:-0.702000px;}
.ls19{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.153360px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.lse{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.620000px;}
.ls13{letter-spacing:8.100000px;}
.lsb{letter-spacing:18.900000px;}
.ls18{letter-spacing:25.308000px;}
.ls17{letter-spacing:52.668000px;}
.ls12{letter-spacing:68.652000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-54.000000px;}
.ws5{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.436000px;}
.wsc{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.374000px;}
.wsd{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.798000px;}
.ws2{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._a{width:2.118000px;}
._14{width:3.186000px;}
._15{width:4.422000px;}
._c{width:5.616000px;}
._b{width:6.696000px;}
._10{width:7.888320px;}
._8{width:9.558000px;}
._9{width:11.556000px;}
._16{width:15.174000px;}
._6{width:16.200000px;}
._7{width:17.334000px;}
._13{width:18.924000px;}
._1b{width:19.980000px;}
._11{width:21.394080px;}
._f{width:23.004000px;}
._19{width:24.030000px;}
._18{width:25.164000px;}
._24{width:26.190000px;}
._20{width:27.432000px;}
._21{width:28.590000px;}
._27{width:29.676000px;}
._26{width:30.966000px;}
._1a{width:32.508000px;}
._23{width:33.966000px;}
._22{width:35.424000px;}
._17{width:36.828000px;}
._12{width:38.340000px;}
._28{width:39.474000px;}
._1e{width:41.310000px;}
._d{width:42.390000px;}
._2a{width:43.740000px;}
._30{width:44.910000px;}
._2b{width:46.032000px;}
._29{width:47.142000px;}
._34{width:48.492000px;}
._35{width:49.734000px;}
._37{width:51.138000px;}
._e{width:52.488000px;}
._1d{width:56.268000px;}
._1c{width:57.618000px;}
._1f{width:59.100000px;}
._25{width:65.412000px;}
._36{width:70.848000px;}
._3{width:78.192000px;}
._3a{width:99.846000px;}
._32{width:103.572000px;}
._31{width:105.246000px;}
._33{width:147.582000px;}
._4{width:157.860000px;}
._2d{width:161.544000px;}
._2c{width:163.080000px;}
._2f{width:169.560000px;}
._39{width:295.326000px;}
._38{width:352.746000px;}
._3b{width:357.384000px;}
._2e{width:845.016000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y39{bottom:69.690000px;}
.y38{bottom:89.490000px;}
.yd3{bottom:106.200000px;}
.y1aa{bottom:107.460000px;}
.y2c{bottom:108.180000px;}
.y178{bottom:108.360000px;}
.y37{bottom:109.470000px;}
.y127{bottom:112.500000px;}
.y2e{bottom:117.000000px;}
.yd2{bottom:124.020000px;}
.y75{bottom:124.920000px;}
.y1a9{bottom:125.280000px;}
.yfe{bottom:125.460000px;}
.y2b{bottom:126.000000px;}
.y177{bottom:126.180000px;}
.y144{bottom:126.360000px;}
.y36{bottom:129.270000px;}
.ya5{bottom:134.280000px;}
.y2d{bottom:134.820000px;}
.y126{bottom:139.320000px;}
.yd1{bottom:141.840000px;}
.y74{bottom:142.740000px;}
.y1a8{bottom:143.100000px;}
.yfd{bottom:143.280000px;}
.y2a{bottom:143.820000px;}
.y176{bottom:144.000000px;}
.y35{bottom:149.115000px;}
.ya4{bottom:152.280000px;}
.y143{bottom:153.540000px;}
.y125{bottom:157.140000px;}
.yd0{bottom:159.660000px;}
.y73{bottom:160.560000px;}
.y1a7{bottom:161.100000px;}
.yfc{bottom:161.280000px;}
.y29{bottom:161.640000px;}
.y175{bottom:162.000000px;}
.y34{bottom:168.915000px;}
.ya3{bottom:170.100000px;}
.y142{bottom:171.360000px;}
.y124{bottom:175.140000px;}
.ycf{bottom:177.480000px;}
.y72{bottom:178.380000px;}
.y1a6{bottom:178.920000px;}
.yfb{bottom:179.100000px;}
.y28{bottom:179.460000px;}
.y174{bottom:179.820000px;}
.y33{bottom:188.715000px;}
.y141{bottom:189.180000px;}
.y71{bottom:196.200000px;}
.y1a5{bottom:196.740000px;}
.ya2{bottom:196.920000px;}
.y27{bottom:197.460000px;}
.y173{bottom:197.640000px;}
.y123{bottom:201.960000px;}
.yce{bottom:204.480000px;}
.y140{bottom:207.210000px;}
.y32{bottom:208.695000px;}
.y70{bottom:214.230000px;}
.y1a4{bottom:214.590000px;}
.y26{bottom:215.310000px;}
.y172{bottom:215.490000px;}
.y122{bottom:219.810000px;}
.ya1{bottom:223.770000px;}
.y13f{bottom:225.030000px;}
.y31{bottom:228.495000px;}
.ycd{bottom:231.330000px;}
.y6f{bottom:232.050000px;}
.y1a3{bottom:232.410000px;}
.y25{bottom:233.130000px;}
.y171{bottom:233.310000px;}
.y121{bottom:237.630000px;}
.ya0{bottom:241.590000px;}
.y13e{bottom:242.850000px;}
.ycc{bottom:249.150000px;}
.y1a2{bottom:250.230000px;}
.y170{bottom:251.310000px;}
.y24{bottom:252.930000px;}
.y120{bottom:255.450000px;}
.y30{bottom:258.735000px;}
.y6e{bottom:258.870000px;}
.y9f{bottom:259.410000px;}
.y13d{bottom:260.670000px;}
.ycb{bottom:266.970000px;}
.y1a1{bottom:268.230000px;}
.y16f{bottom:269.130000px;}
.y11f{bottom:273.450000px;}
.y6d{bottom:276.690000px;}
.y9e{bottom:277.410000px;}
.y13c{bottom:278.490000px;}
.yca{bottom:284.790000px;}
.y1a0{bottom:286.050000px;}
.y16e{bottom:286.950000px;}
.y6c{bottom:294.510000px;}
.y9d{bottom:295.230000px;}
.y13b{bottom:296.490000px;}
.y11e{bottom:300.270000px;}
.yc9{bottom:302.610000px;}
.y19f{bottom:303.870000px;}
.y2f{bottom:304.020000px;}
.y16d{bottom:304.770000px;}
.y23{bottom:305.670000px;}
.y6b{bottom:312.510000px;}
.y9c{bottom:313.050000px;}
.y13a{bottom:314.310000px;}
.y11d{bottom:318.090000px;}
.y19e{bottom:321.690000px;}
.y16c{bottom:322.590000px;}
.y3b{bottom:324.750000px;}
.yc8{bottom:329.610000px;}
.y6a{bottom:330.330000px;}
.yfa{bottom:330.870000px;}
.y139{bottom:332.130000px;}
.y11c{bottom:336.810000px;}
.y19d{bottom:339.510000px;}
.y9b{bottom:339.870000px;}
.y16b{bottom:340.410000px;}
.yc7{bottom:347.430000px;}
.y69{bottom:348.150000px;}
.y138{bottom:349.950000px;}
.y3a{bottom:353.910000px;}
.y11b{bottom:354.810000px;}
.y19c{bottom:357.510000px;}
.y9a{bottom:357.690000px;}
.y16a{bottom:358.410000px;}
.y21{bottom:358.590000px;}
.y68{bottom:365.970000px;}
.y137{bottom:367.770000px;}
.y11a{bottom:373.530000px;}
.yc6{bottom:374.250000px;}
.y19b{bottom:375.330000px;}
.yf9{bottom:375.690000px;}
.y169{bottom:376.230000px;}
.y67{bottom:383.790000px;}
.y99{bottom:384.690000px;}
.y136{bottom:385.590000px;}
.y119{bottom:391.530000px;}
.yc5{bottom:392.070000px;}
.y19a{bottom:393.150000px;}
.y20{bottom:393.330000px;}
.yf8{bottom:393.510000px;}
.y168{bottom:394.050000px;}
.y22{bottom:398.910000px;}
.y98{bottom:402.510000px;}
.y135{bottom:405.570000px;}
.y66{bottom:410.610000px;}
.y199{bottom:410.970000px;}
.yf7{bottom:411.330000px;}
.y167{bottom:411.870000px;}
.yc4{bottom:418.890000px;}
.y118{bottom:419.250000px;}
.y1f{bottom:428.070000px;}
.y65{bottom:428.610000px;}
.y198{bottom:428.790000px;}
.yf6{bottom:429.150000px;}
.y97{bottom:429.330000px;}
.y166{bottom:429.690000px;}
.yc3{bottom:436.890000px;}
.y117{bottom:437.070000px;}
.y134{bottom:438.330000px;}
.y64{bottom:446.475000px;}
.y197{bottom:446.655000px;}
.yf5{bottom:447.015000px;}
.y96{bottom:447.195000px;}
.y165{bottom:447.735000px;}
.y133{bottom:456.195000px;}
.y1d{bottom:460.875000px;}
.yc2{bottom:463.755000px;}
.y116{bottom:463.935000px;}
.y63{bottom:464.295000px;}
.y196{bottom:464.655000px;}
.yf4{bottom:464.835000px;}
.y95{bottom:465.015000px;}
.y164{bottom:465.555000px;}
.y132{bottom:474.015000px;}
.yc1{bottom:481.575000px;}
.y62{bottom:482.115000px;}
.y195{bottom:482.475000px;}
.y163{bottom:483.375000px;}
.y1c{bottom:487.875000px;}
.y115{bottom:490.935000px;}
.y94{bottom:491.835000px;}
.y61{bottom:499.935000px;}
.y194{bottom:500.295000px;}
.y162{bottom:501.195000px;}
.yc0{bottom:508.395000px;}
.y114{bottom:508.755000px;}
.yf3{bottom:509.655000px;}
.y93{bottom:509.835000px;}
.y1b{bottom:514.695000px;}
.y60{bottom:517.935000px;}
.y193{bottom:518.115000px;}
.y161{bottom:519.015000px;}
.ybf{bottom:526.215000px;}
.y113{bottom:526.575000px;}
.yf2{bottom:527.475000px;}
.y92{bottom:527.655000px;}
.y5f{bottom:535.755000px;}
.y192{bottom:535.935000px;}
.y160{bottom:536.835000px;}
.y1a{bottom:541.515000px;}
.y112{bottom:544.395000px;}
.yf1{bottom:545.295000px;}
.y91{bottom:545.475000px;}
.ybe{bottom:553.035000px;}
.y5e{bottom:553.575000px;}
.y191{bottom:553.935000px;}
.y15f{bottom:554.835000px;}
.yf0{bottom:563.115000px;}
.y19{bottom:568.335000px;}
.ybd{bottom:571.035000px;}
.y111{bottom:571.215000px;}
.y190{bottom:571.755000px;}
.y90{bottom:572.295000px;}
.y15e{bottom:572.655000px;}
.y5d{bottom:580.395000px;}
.yef{bottom:581.115000px;}
.y110{bottom:589.035000px;}
.y18f{bottom:589.575000px;}
.y131{bottom:590.115000px;}
.y15d{bottom:590.475000px;}
.y18{bottom:594.795000px;}
.y1e{bottom:595.155000px;}
.ybc{bottom:597.855000px;}
.y5c{bottom:598.215000px;}
.y8f{bottom:599.115000px;}
.y10f{bottom:607.035000px;}
.y18e{bottom:607.395000px;}
.yee{bottom:607.935000px;}
.y130{bottom:608.115000px;}
.y15c{bottom:608.295000px;}
.ybb{bottom:615.675000px;}
.y5b{bottom:616.035000px;}
.y8e{bottom:617.115000px;}
.y17{bottom:623.235000px;}
.y10e{bottom:624.855000px;}
.y18d{bottom:625.215000px;}
.y12f{bottom:625.935000px;}
.y15b{bottom:626.115000px;}
.y5a{bottom:634.035000px;}
.yed{bottom:634.755000px;}
.y8d{bottom:634.935000px;}
.yba{bottom:642.495000px;}
.y10d{bottom:642.675000px;}
.y18c{bottom:643.035000px;}
.y12e{bottom:643.755000px;}
.y15a{bottom:644.115000px;}
.y16{bottom:649.695000px;}
.y59{bottom:651.855000px;}
.yec{bottom:652.575000px;}
.y8c{bottom:652.755000px;}
.yb9{bottom:660.315000px;}
.y10c{bottom:660.495000px;}
.y18b{bottom:661.035000px;}
.y159{bottom:661.935000px;}
.y58{bottom:669.675000px;}
.yeb{bottom:670.395000px;}
.y8b{bottom:670.575000px;}
.y18a{bottom:678.885000px;}
.y158{bottom:679.785000px;}
.y15{bottom:680.505000px;}
.yb8{bottom:687.165000px;}
.y10b{bottom:687.345000px;}
.y57{bottom:687.525000px;}
.yea{bottom:688.245000px;}
.y8a{bottom:688.425000px;}
.y189{bottom:696.705000px;}
.y157{bottom:697.605000px;}
.yb7{bottom:705.165000px;}
.y89{bottom:706.245000px;}
.y56{bottom:714.345000px;}
.y188{bottom:714.525000px;}
.y156{bottom:715.425000px;}
.yb6{bottom:722.985000px;}
.y10a{bottom:723.165000px;}
.ye9{bottom:724.065000px;}
.y12d{bottom:724.245000px;}
.y55{bottom:732.165000px;}
.y187{bottom:732.345000px;}
.y88{bottom:733.245000px;}
.y14{bottom:736.845000px;}
.yb5{bottom:740.805000px;}
.y109{bottom:740.985000px;}
.ye8{bottom:741.885000px;}
.y12c{bottom:742.065000px;}
.y54{bottom:750.165000px;}
.y87{bottom:751.065000px;}
.y155{bottom:751.245000px;}
.ye7{bottom:759.705000px;}
.y12b{bottom:759.885000px;}
.yb4{bottom:767.625000px;}
.y108{bottom:767.805000px;}
.y53{bottom:767.985000px;}
.y186{bottom:768.165000px;}
.y86{bottom:768.885000px;}
.y154{bottom:769.065000px;}
.y13{bottom:777.705000px;}
.y107{bottom:785.625000px;}
.y52{bottom:785.805000px;}
.y185{bottom:785.985000px;}
.ye6{bottom:786.525000px;}
.y85{bottom:786.705000px;}
.y153{bottom:786.885000px;}
.yb3{bottom:794.445000px;}
.y106{bottom:803.445000px;}
.y51{bottom:803.625000px;}
.y184{bottom:803.805000px;}
.y84{bottom:804.525000px;}
.y152{bottom:804.705000px;}
.yb2{bottom:812.445000px;}
.ye5{bottom:813.345000px;}
.y50{bottom:821.445000px;}
.y183{bottom:821.625000px;}
.y83{bottom:822.345000px;}
.y151{bottom:822.525000px;}
.y12{bottom:828.465000px;}
.yb1{bottom:830.265000px;}
.ye4{bottom:831.345000px;}
.y4f{bottom:839.445000px;}
.y12a{bottom:840.345000px;}
.y105{bottom:848.265000px;}
.ye3{bottom:849.165000px;}
.y82{bottom:849.345000px;}
.yb0{bottom:857.085000px;}
.y4e{bottom:857.265000px;}
.y182{bottom:857.445000px;}
.y129{bottom:858.165000px;}
.y150{bottom:858.345000px;}
.y104{bottom:866.085000px;}
.y81{bottom:867.165000px;}
.y11{bottom:874.545000px;}
.yaf{bottom:874.905000px;}
.y4d{bottom:875.085000px;}
.y181{bottom:875.265000px;}
.ye2{bottom:875.985000px;}
.y14f{bottom:876.165000px;}
.y103{bottom:883.905000px;}
.y80{bottom:884.985000px;}
.yae{bottom:892.725000px;}
.y180{bottom:893.085000px;}
.ye1{bottom:893.805000px;}
.y14e{bottom:893.985000px;}
.y10{bottom:899.745000px;}
.y102{bottom:901.725000px;}
.y4c{bottom:901.905000px;}
.y7f{bottom:902.805000px;}
.yad{bottom:910.590000px;}
.y17f{bottom:910.950000px;}
.ye0{bottom:911.670000px;}
.y14d{bottom:911.850000px;}
.yf{bottom:919.590000px;}
.y4b{bottom:919.770000px;}
.y7e{bottom:920.670000px;}
.y17e{bottom:928.770000px;}
.ydf{bottom:929.670000px;}
.y4a{bottom:937.590000px;}
.y7d{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.y17d{bottom:946.590000px;}
.yde{bottom:947.490000px;}
.y14c{bottom:947.670000px;}
.yac{bottom:955.410000px;}
.y49{bottom:955.590000px;}
.y7c{bottom:956.130000px;}
.y128{bottom:958.470000px;}
.yd{bottom:959.010000px;}
.y17c{bottom:964.590000px;}
.ydd{bottom:965.310000px;}
.y14b{bottom:965.490000px;}
.yab{bottom:973.230000px;}
.y48{bottom:973.410000px;}
.y7b{bottom:976.290000px;}
.yc{bottom:979.170000px;}
.y17b{bottom:982.410000px;}
.y14a{bottom:983.310000px;}
.yaa{bottom:991.050000px;}
.y47{bottom:991.230000px;}
.ydc{bottom:992.130000px;}
.y101{bottom:1000.050000px;}
.y17a{bottom:1000.230000px;}
.y149{bottom:1001.130000px;}
.ya9{bottom:1008.870000px;}
.y46{bottom:1009.050000px;}
.ydb{bottom:1009.950000px;}
.y100{bottom:1017.870000px;}
.y179{bottom:1018.050000px;}
.yb{bottom:1019.130000px;}
.y148{bottom:1020.930000px;}
.y45{bottom:1026.870000px;}
.yda{bottom:1027.770000px;}
.ya{bottom:1031.190000px;}
.yff{bottom:1035.870000px;}
.y9{bottom:1043.250000px;}
.y44{bottom:1044.870000px;}
.yd9{bottom:1045.770000px;}
.ya8{bottom:1053.690000px;}
.y147{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.y43{bottom:1062.690000px;}
.yd8{bottom:1063.590000px;}
.y7{bottom:1069.890000px;}
.ya7{bottom:1071.510000px;}
.y146{bottom:1071.690000px;}
.y7a{bottom:1080.510000px;}
.yd7{bottom:1081.410000px;}
.ya6{bottom:1089.330000px;}
.y42{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.y79{bottom:1098.330000px;}
.yd6{bottom:1099.230000px;}
.y1ac{bottom:1106.250000px;}
.y41{bottom:1107.330000px;}
.y78{bottom:1116.150000px;}
.y40{bottom:1125.150000px;}
.yd5{bottom:1126.050000px;}
.y1ab{bottom:1129.830000px;}
.y77{bottom:1133.970000px;}
.y3f{bottom:1142.970000px;}
.yd4{bottom:1146.060000px;}
.y76{bottom:1152.000000px;}
.y3e{bottom:1161.000000px;}
.y3d{bottom:1178.820000px;}
.y145{bottom:1196.280000px;}
.y3c{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h13{height:39.049805px;}
.h7{height:40.985156px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.he{height:54.421875px;}
.h14{height:55.503491px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h12{height:58.763250px;}
.h9{height:60.226875px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.h16{height:70.664062px;}
.hb{height:72.326250px;}
.hf{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h10{height:286.020000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x11{left:10.800000px;}
.x10{left:38.340000px;}
.x1{left:45.364500px;}
.x12{left:49.140000px;}
.x5{left:54.000000px;}
.xb{left:58.500000px;}
.x13{left:81.000000px;}
.x14{left:108.036000px;}
.x2{left:222.370500px;}
.xd{left:234.390000px;}
.xc{left:261.930000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:297.795000px;}
.xe{left:314.355000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.xf{left:473.505000px;}
.x15{left:500.505000px;}
.x16{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.752000pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.136320pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.832000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls13{letter-spacing:7.200000pt;}
.lsb{letter-spacing:16.800000pt;}
.ls18{letter-spacing:22.496000pt;}
.ls17{letter-spacing:46.816000pt;}
.ls12{letter-spacing:61.024000pt;}
.wsb{word-spacing:-48.000000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.832000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.888000pt;}
.wsd{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.376000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._a{width:1.882667pt;}
._14{width:2.832000pt;}
._15{width:3.930667pt;}
._c{width:4.992000pt;}
._b{width:5.952000pt;}
._10{width:7.011840pt;}
._8{width:8.496000pt;}
._9{width:10.272000pt;}
._16{width:13.488000pt;}
._6{width:14.400000pt;}
._7{width:15.408000pt;}
._13{width:16.821333pt;}
._1b{width:17.760000pt;}
._11{width:19.016960pt;}
._f{width:20.448000pt;}
._19{width:21.360000pt;}
._18{width:22.368000pt;}
._24{width:23.280000pt;}
._20{width:24.384000pt;}
._21{width:25.413333pt;}
._27{width:26.378667pt;}
._26{width:27.525333pt;}
._1a{width:28.896000pt;}
._23{width:30.192000pt;}
._22{width:31.488000pt;}
._17{width:32.736000pt;}
._12{width:34.080000pt;}
._28{width:35.088000pt;}
._1e{width:36.720000pt;}
._d{width:37.680000pt;}
._2a{width:38.880000pt;}
._30{width:39.920000pt;}
._2b{width:40.917333pt;}
._29{width:41.904000pt;}
._34{width:43.104000pt;}
._35{width:44.208000pt;}
._37{width:45.456000pt;}
._e{width:46.656000pt;}
._1d{width:50.016000pt;}
._1c{width:51.216000pt;}
._1f{width:52.533333pt;}
._25{width:58.144000pt;}
._36{width:62.976000pt;}
._3{width:69.504000pt;}
._3a{width:88.752000pt;}
._32{width:92.064000pt;}
._31{width:93.552000pt;}
._33{width:131.184000pt;}
._4{width:140.320000pt;}
._2d{width:143.594667pt;}
._2c{width:144.960000pt;}
._2f{width:150.720000pt;}
._39{width:262.512000pt;}
._38{width:313.552000pt;}
._3b{width:317.674667pt;}
._2e{width:751.125333pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y39{bottom:61.946667pt;}
.y38{bottom:79.546667pt;}
.yd3{bottom:94.400000pt;}
.y1aa{bottom:95.520000pt;}
.y2c{bottom:96.160000pt;}
.y178{bottom:96.320000pt;}
.y37{bottom:97.306667pt;}
.y127{bottom:100.000000pt;}
.y2e{bottom:104.000000pt;}
.yd2{bottom:110.240000pt;}
.y75{bottom:111.040000pt;}
.y1a9{bottom:111.360000pt;}
.yfe{bottom:111.520000pt;}
.y2b{bottom:112.000000pt;}
.y177{bottom:112.160000pt;}
.y144{bottom:112.320000pt;}
.y36{bottom:114.906667pt;}
.ya5{bottom:119.360000pt;}
.y2d{bottom:119.840000pt;}
.y126{bottom:123.840000pt;}
.yd1{bottom:126.080000pt;}
.y74{bottom:126.880000pt;}
.y1a8{bottom:127.200000pt;}
.yfd{bottom:127.360000pt;}
.y2a{bottom:127.840000pt;}
.y176{bottom:128.000000pt;}
.y35{bottom:132.546667pt;}
.ya4{bottom:135.360000pt;}
.y143{bottom:136.480000pt;}
.y125{bottom:139.680000pt;}
.yd0{bottom:141.920000pt;}
.y73{bottom:142.720000pt;}
.y1a7{bottom:143.200000pt;}
.yfc{bottom:143.360000pt;}
.y29{bottom:143.680000pt;}
.y175{bottom:144.000000pt;}
.y34{bottom:150.146667pt;}
.ya3{bottom:151.200000pt;}
.y142{bottom:152.320000pt;}
.y124{bottom:155.680000pt;}
.ycf{bottom:157.760000pt;}
.y72{bottom:158.560000pt;}
.y1a6{bottom:159.040000pt;}
.yfb{bottom:159.200000pt;}
.y28{bottom:159.520000pt;}
.y174{bottom:159.840000pt;}
.y33{bottom:167.746667pt;}
.y141{bottom:168.160000pt;}
.y71{bottom:174.400000pt;}
.y1a5{bottom:174.880000pt;}
.ya2{bottom:175.040000pt;}
.y27{bottom:175.520000pt;}
.y173{bottom:175.680000pt;}
.y123{bottom:179.520000pt;}
.yce{bottom:181.760000pt;}
.y140{bottom:184.186667pt;}
.y32{bottom:185.506667pt;}
.y70{bottom:190.426667pt;}
.y1a4{bottom:190.746667pt;}
.y26{bottom:191.386667pt;}
.y172{bottom:191.546667pt;}
.y122{bottom:195.386667pt;}
.ya1{bottom:198.906667pt;}
.y13f{bottom:200.026667pt;}
.y31{bottom:203.106667pt;}
.ycd{bottom:205.626667pt;}
.y6f{bottom:206.266667pt;}
.y1a3{bottom:206.586667pt;}
.y25{bottom:207.226667pt;}
.y171{bottom:207.386667pt;}
.y121{bottom:211.226667pt;}
.ya0{bottom:214.746667pt;}
.y13e{bottom:215.866667pt;}
.ycc{bottom:221.466667pt;}
.y1a2{bottom:222.426667pt;}
.y170{bottom:223.386667pt;}
.y24{bottom:224.826667pt;}
.y120{bottom:227.066667pt;}
.y30{bottom:229.986667pt;}
.y6e{bottom:230.106667pt;}
.y9f{bottom:230.586667pt;}
.y13d{bottom:231.706667pt;}
.ycb{bottom:237.306667pt;}
.y1a1{bottom:238.426667pt;}
.y16f{bottom:239.226667pt;}
.y11f{bottom:243.066667pt;}
.y6d{bottom:245.946667pt;}
.y9e{bottom:246.586667pt;}
.y13c{bottom:247.546667pt;}
.yca{bottom:253.146667pt;}
.y1a0{bottom:254.266667pt;}
.y16e{bottom:255.066667pt;}
.y6c{bottom:261.786667pt;}
.y9d{bottom:262.426667pt;}
.y13b{bottom:263.546667pt;}
.y11e{bottom:266.906667pt;}
.yc9{bottom:268.986667pt;}
.y19f{bottom:270.106667pt;}
.y2f{bottom:270.240000pt;}
.y16d{bottom:270.906667pt;}
.y23{bottom:271.706667pt;}
.y6b{bottom:277.786667pt;}
.y9c{bottom:278.266667pt;}
.y13a{bottom:279.386667pt;}
.y11d{bottom:282.746667pt;}
.y19e{bottom:285.946667pt;}
.y16c{bottom:286.746667pt;}
.y3b{bottom:288.666667pt;}
.yc8{bottom:292.986667pt;}
.y6a{bottom:293.626667pt;}
.yfa{bottom:294.106667pt;}
.y139{bottom:295.226667pt;}
.y11c{bottom:299.386667pt;}
.y19d{bottom:301.786667pt;}
.y9b{bottom:302.106667pt;}
.y16b{bottom:302.586667pt;}
.yc7{bottom:308.826667pt;}
.y69{bottom:309.466667pt;}
.y138{bottom:311.066667pt;}
.y3a{bottom:314.586667pt;}
.y11b{bottom:315.386667pt;}
.y19c{bottom:317.786667pt;}
.y9a{bottom:317.946667pt;}
.y16a{bottom:318.586667pt;}
.y21{bottom:318.746667pt;}
.y68{bottom:325.306667pt;}
.y137{bottom:326.906667pt;}
.y11a{bottom:332.026667pt;}
.yc6{bottom:332.666667pt;}
.y19b{bottom:333.626667pt;}
.yf9{bottom:333.946667pt;}
.y169{bottom:334.426667pt;}
.y67{bottom:341.146667pt;}
.y99{bottom:341.946667pt;}
.y136{bottom:342.746667pt;}
.y119{bottom:348.026667pt;}
.yc5{bottom:348.506667pt;}
.y19a{bottom:349.466667pt;}
.y20{bottom:349.626667pt;}
.yf8{bottom:349.786667pt;}
.y168{bottom:350.266667pt;}
.y22{bottom:354.586667pt;}
.y98{bottom:357.786667pt;}
.y135{bottom:360.506667pt;}
.y66{bottom:364.986667pt;}
.y199{bottom:365.306667pt;}
.yf7{bottom:365.626667pt;}
.y167{bottom:366.106667pt;}
.yc4{bottom:372.346667pt;}
.y118{bottom:372.666667pt;}
.y1f{bottom:380.506667pt;}
.y65{bottom:380.986667pt;}
.y198{bottom:381.146667pt;}
.yf6{bottom:381.466667pt;}
.y97{bottom:381.626667pt;}
.y166{bottom:381.946667pt;}
.yc3{bottom:388.346667pt;}
.y117{bottom:388.506667pt;}
.y134{bottom:389.626667pt;}
.y64{bottom:396.866667pt;}
.y197{bottom:397.026667pt;}
.yf5{bottom:397.346667pt;}
.y96{bottom:397.506667pt;}
.y165{bottom:397.986667pt;}
.y133{bottom:405.506667pt;}
.y1d{bottom:409.666667pt;}
.yc2{bottom:412.226667pt;}
.y116{bottom:412.386667pt;}
.y63{bottom:412.706667pt;}
.y196{bottom:413.026667pt;}
.yf4{bottom:413.186667pt;}
.y95{bottom:413.346667pt;}
.y164{bottom:413.826667pt;}
.y132{bottom:421.346667pt;}
.yc1{bottom:428.066667pt;}
.y62{bottom:428.546667pt;}
.y195{bottom:428.866667pt;}
.y163{bottom:429.666667pt;}
.y1c{bottom:433.666667pt;}
.y115{bottom:436.386667pt;}
.y94{bottom:437.186667pt;}
.y61{bottom:444.386667pt;}
.y194{bottom:444.706667pt;}
.y162{bottom:445.506667pt;}
.yc0{bottom:451.906667pt;}
.y114{bottom:452.226667pt;}
.yf3{bottom:453.026667pt;}
.y93{bottom:453.186667pt;}
.y1b{bottom:457.506667pt;}
.y60{bottom:460.386667pt;}
.y193{bottom:460.546667pt;}
.y161{bottom:461.346667pt;}
.ybf{bottom:467.746667pt;}
.y113{bottom:468.066667pt;}
.yf2{bottom:468.866667pt;}
.y92{bottom:469.026667pt;}
.y5f{bottom:476.226667pt;}
.y192{bottom:476.386667pt;}
.y160{bottom:477.186667pt;}
.y1a{bottom:481.346667pt;}
.y112{bottom:483.906667pt;}
.yf1{bottom:484.706667pt;}
.y91{bottom:484.866667pt;}
.ybe{bottom:491.586667pt;}
.y5e{bottom:492.066667pt;}
.y191{bottom:492.386667pt;}
.y15f{bottom:493.186667pt;}
.yf0{bottom:500.546667pt;}
.y19{bottom:505.186667pt;}
.ybd{bottom:507.586667pt;}
.y111{bottom:507.746667pt;}
.y190{bottom:508.226667pt;}
.y90{bottom:508.706667pt;}
.y15e{bottom:509.026667pt;}
.y5d{bottom:515.906667pt;}
.yef{bottom:516.546667pt;}
.y110{bottom:523.586667pt;}
.y18f{bottom:524.066667pt;}
.y131{bottom:524.546667pt;}
.y15d{bottom:524.866667pt;}
.y18{bottom:528.706667pt;}
.y1e{bottom:529.026667pt;}
.ybc{bottom:531.426667pt;}
.y5c{bottom:531.746667pt;}
.y8f{bottom:532.546667pt;}
.y10f{bottom:539.586667pt;}
.y18e{bottom:539.906667pt;}
.yee{bottom:540.386667pt;}
.y130{bottom:540.546667pt;}
.y15c{bottom:540.706667pt;}
.ybb{bottom:547.266667pt;}
.y5b{bottom:547.586667pt;}
.y8e{bottom:548.546667pt;}
.y17{bottom:553.986667pt;}
.y10e{bottom:555.426667pt;}
.y18d{bottom:555.746667pt;}
.y12f{bottom:556.386667pt;}
.y15b{bottom:556.546667pt;}
.y5a{bottom:563.586667pt;}
.yed{bottom:564.226667pt;}
.y8d{bottom:564.386667pt;}
.yba{bottom:571.106667pt;}
.y10d{bottom:571.266667pt;}
.y18c{bottom:571.586667pt;}
.y12e{bottom:572.226667pt;}
.y15a{bottom:572.546667pt;}
.y16{bottom:577.506667pt;}
.y59{bottom:579.426667pt;}
.yec{bottom:580.066667pt;}
.y8c{bottom:580.226667pt;}
.yb9{bottom:586.946667pt;}
.y10c{bottom:587.106667pt;}
.y18b{bottom:587.586667pt;}
.y159{bottom:588.386667pt;}
.y58{bottom:595.266667pt;}
.yeb{bottom:595.906667pt;}
.y8b{bottom:596.066667pt;}
.y18a{bottom:603.453333pt;}
.y158{bottom:604.253333pt;}
.y15{bottom:604.893333pt;}
.yb8{bottom:610.813333pt;}
.y10b{bottom:610.973333pt;}
.y57{bottom:611.133333pt;}
.yea{bottom:611.773333pt;}
.y8a{bottom:611.933333pt;}
.y189{bottom:619.293333pt;}
.y157{bottom:620.093333pt;}
.yb7{bottom:626.813333pt;}
.y89{bottom:627.773333pt;}
.y56{bottom:634.973333pt;}
.y188{bottom:635.133333pt;}
.y156{bottom:635.933333pt;}
.yb6{bottom:642.653333pt;}
.y10a{bottom:642.813333pt;}
.ye9{bottom:643.613333pt;}
.y12d{bottom:643.773333pt;}
.y55{bottom:650.813333pt;}
.y187{bottom:650.973333pt;}
.y88{bottom:651.773333pt;}
.y14{bottom:654.973333pt;}
.yb5{bottom:658.493333pt;}
.y109{bottom:658.653333pt;}
.ye8{bottom:659.453333pt;}
.y12c{bottom:659.613333pt;}
.y54{bottom:666.813333pt;}
.y87{bottom:667.613333pt;}
.y155{bottom:667.773333pt;}
.ye7{bottom:675.293333pt;}
.y12b{bottom:675.453333pt;}
.yb4{bottom:682.333333pt;}
.y108{bottom:682.493333pt;}
.y53{bottom:682.653333pt;}
.y186{bottom:682.813333pt;}
.y86{bottom:683.453333pt;}
.y154{bottom:683.613333pt;}
.y13{bottom:691.293333pt;}
.y107{bottom:698.333333pt;}
.y52{bottom:698.493333pt;}
.y185{bottom:698.653333pt;}
.ye6{bottom:699.133333pt;}
.y85{bottom:699.293333pt;}
.y153{bottom:699.453333pt;}
.yb3{bottom:706.173333pt;}
.y106{bottom:714.173333pt;}
.y51{bottom:714.333333pt;}
.y184{bottom:714.493333pt;}
.y84{bottom:715.133333pt;}
.y152{bottom:715.293333pt;}
.yb2{bottom:722.173333pt;}
.ye5{bottom:722.973333pt;}
.y50{bottom:730.173333pt;}
.y183{bottom:730.333333pt;}
.y83{bottom:730.973333pt;}
.y151{bottom:731.133333pt;}
.y12{bottom:736.413333pt;}
.yb1{bottom:738.013333pt;}
.ye4{bottom:738.973333pt;}
.y4f{bottom:746.173333pt;}
.y12a{bottom:746.973333pt;}
.y105{bottom:754.013333pt;}
.ye3{bottom:754.813333pt;}
.y82{bottom:754.973333pt;}
.yb0{bottom:761.853333pt;}
.y4e{bottom:762.013333pt;}
.y182{bottom:762.173333pt;}
.y129{bottom:762.813333pt;}
.y150{bottom:762.973333pt;}
.y104{bottom:769.853333pt;}
.y81{bottom:770.813333pt;}
.y11{bottom:777.373333pt;}
.yaf{bottom:777.693333pt;}
.y4d{bottom:777.853333pt;}
.y181{bottom:778.013333pt;}
.ye2{bottom:778.653333pt;}
.y14f{bottom:778.813333pt;}
.y103{bottom:785.693333pt;}
.y80{bottom:786.653333pt;}
.yae{bottom:793.533333pt;}
.y180{bottom:793.853333pt;}
.ye1{bottom:794.493333pt;}
.y14e{bottom:794.653333pt;}
.y10{bottom:799.773333pt;}
.y102{bottom:801.533333pt;}
.y4c{bottom:801.693333pt;}
.y7f{bottom:802.493333pt;}
.yad{bottom:809.413333pt;}
.y17f{bottom:809.733333pt;}
.ye0{bottom:810.373333pt;}
.y14d{bottom:810.533333pt;}
.yf{bottom:817.413333pt;}
.y4b{bottom:817.573333pt;}
.y7e{bottom:818.373333pt;}
.y17e{bottom:825.573333pt;}
.ydf{bottom:826.373333pt;}
.y4a{bottom:833.413333pt;}
.y7d{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.y17d{bottom:841.413333pt;}
.yde{bottom:842.213333pt;}
.y14c{bottom:842.373333pt;}
.yac{bottom:849.253333pt;}
.y49{bottom:849.413333pt;}
.y7c{bottom:849.893333pt;}
.y128{bottom:851.973333pt;}
.yd{bottom:852.453333pt;}
.y17c{bottom:857.413333pt;}
.ydd{bottom:858.053333pt;}
.y14b{bottom:858.213333pt;}
.yab{bottom:865.093333pt;}
.y48{bottom:865.253333pt;}
.y7b{bottom:867.813333pt;}
.yc{bottom:870.373333pt;}
.y17b{bottom:873.253333pt;}
.y14a{bottom:874.053333pt;}
.yaa{bottom:880.933333pt;}
.y47{bottom:881.093333pt;}
.ydc{bottom:881.893333pt;}
.y101{bottom:888.933333pt;}
.y17a{bottom:889.093333pt;}
.y149{bottom:889.893333pt;}
.ya9{bottom:896.773333pt;}
.y46{bottom:896.933333pt;}
.ydb{bottom:897.733333pt;}
.y100{bottom:904.773333pt;}
.y179{bottom:904.933333pt;}
.yb{bottom:905.893333pt;}
.y148{bottom:907.493333pt;}
.y45{bottom:912.773333pt;}
.yda{bottom:913.573333pt;}
.ya{bottom:916.613333pt;}
.yff{bottom:920.773333pt;}
.y9{bottom:927.333333pt;}
.y44{bottom:928.773333pt;}
.yd9{bottom:929.573333pt;}
.ya8{bottom:936.613333pt;}
.y147{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.y43{bottom:944.613333pt;}
.yd8{bottom:945.413333pt;}
.y7{bottom:951.013333pt;}
.ya7{bottom:952.453333pt;}
.y146{bottom:952.613333pt;}
.y7a{bottom:960.453333pt;}
.yd7{bottom:961.253333pt;}
.ya6{bottom:968.293333pt;}
.y42{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.y79{bottom:976.293333pt;}
.yd6{bottom:977.093333pt;}
.y1ac{bottom:983.333333pt;}
.y41{bottom:984.293333pt;}
.y78{bottom:992.133333pt;}
.y40{bottom:1000.133333pt;}
.yd5{bottom:1000.933333pt;}
.y1ab{bottom:1004.293333pt;}
.y77{bottom:1007.973333pt;}
.y3f{bottom:1015.973333pt;}
.yd4{bottom:1018.720000pt;}
.y76{bottom:1024.000000pt;}
.y3e{bottom:1032.000000pt;}
.y3d{bottom:1047.840000pt;}
.y145{bottom:1063.360000pt;}
.y3c{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h13{height:34.710938pt;}
.h7{height:36.431250pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.he{height:48.375000pt;}
.h14{height:49.336436pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h12{height:52.234000pt;}
.h9{height:53.535000pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.h16{height:62.812500pt;}
.hb{height:64.290000pt;}
.hf{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h10{height:254.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x11{left:9.600000pt;}
.x10{left:34.080000pt;}
.x1{left:40.324000pt;}
.x12{left:43.680000pt;}
.x5{left:48.000000pt;}
.xb{left:52.000000pt;}
.x13{left:72.000000pt;}
.x14{left:96.032000pt;}
.x2{left:197.662667pt;}
.xd{left:208.346667pt;}
.xc{left:232.826667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:264.706667pt;}
.xe{left:279.426667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.xf{left:420.893333pt;}
.x15{left:444.893333pt;}
.x16{left:468.893333pt;}
.x4{left:682.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; }
  