
    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_fd5dc3137e4ef567eec7d2ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d541a7e14887b0989d41ebf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_af59584081f852be40503eb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_dfb0b828dcff4c6865483b35.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ab2355cd162025af34660ec.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0aef98c90b6136a75eb47e37.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_bf21a7e7fdeccd3f61ac2a9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c7f0adc8f29b58490815cb30.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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:ffa;src:url('chunks/assets/font_f9d7627c11397b3b9bd5ace6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.197280px;}
.lse{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.093600px;}
.wsb{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.737280px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-3.708000px;}
._a{margin-left:-2.676480px;}
._2{margin-left:-1.126080px;}
._0{width:1.317600px;}
._3{width:2.754960px;}
._b{width:3.863520px;}
._d{width:5.519040px;}
._c{width:6.633360px;}
._12{width:8.244000px;}
._13{width:9.444960px;}
._9{width:10.813680px;}
._6{width:11.832480px;}
._e{width:13.780080px;}
._5{width:16.177920px;}
._4{width:17.526720px;}
._15{width:19.464720px;}
._1b{width:21.024240px;}
._10{width:29.817360px;}
._f{width:31.254480px;}
._14{width:33.046560px;}
._7{width:34.359120px;}
._8{width:35.560080px;}
._1c{width:37.944720px;}
._18{width:42.312000px;}
._19{width:48.502560px;}
._16{width:61.371600px;}
._17{width:94.038720px;}
._1a{width:201.060000px;}
._1{width:1100.028000px;}
.fc5{color:rgb(17,85,204);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y28{bottom:5.760000px;}
.y8e{bottom:5.940000px;}
.yb9{bottom:6.120000px;}
.yd3{bottom:7.740000px;}
.y7{bottom:8.100000px;}
.y26{bottom:10.980000px;}
.y88{bottom:15.840000px;}
.y8a{bottom:16.920000px;}
.y8c{bottom:19.620000px;}
.y3a{bottom:25.560000px;}
.y93{bottom:25.740000px;}
.ya1{bottom:27.900000px;}
.y25{bottom:30.780000px;}
.y6{bottom:36.180000px;}
.y39{bottom:45.360000px;}
.ya4{bottom:49.860000px;}
.y24{bottom:50.580000px;}
.y10e{bottom:51.525000px;}
.ybd{bottom:56.700000px;}
.yb{bottom:57.960000px;}
.y5{bottom:58.140000px;}
.y38{bottom:65.160000px;}
.y23{bottom:70.560000px;}
.y4{bottom:81.900000px;}
.y10a{bottom:82.980000px;}
.y4e{bottom:83.340000px;}
.ye0{bottom:83.520000px;}
.y37{bottom:85.140000px;}
.y86{bottom:85.680000px;}
.y145{bottom:88.380000px;}
.y22{bottom:90.360000px;}
.yc2{bottom:100.080000px;}
.y94{bottom:102.240000px;}
.y109{bottom:102.780000px;}
.y4d{bottom:103.140000px;}
.ydf{bottom:103.320000px;}
.y36{bottom:104.940000px;}
.y85{bottom:105.480000px;}
.y144{bottom:108.180000px;}
.y9{bottom:108.750000px;}
.y21{bottom:110.160000px;}
.y3{bottom:118.110000px;}
.yc1{bottom:120.060000px;}
.y92{bottom:122.040000px;}
.y108{bottom:122.580000px;}
.y4c{bottom:122.940000px;}
.yde{bottom:123.300000px;}
.y35{bottom:124.740000px;}
.y84{bottom:125.280000px;}
.y143{bottom:127.980000px;}
.y20{bottom:129.960000px;}
.y8{bottom:130.710000px;}
.yc0{bottom:135.180000px;}
.y107{bottom:142.560000px;}
.y4b{bottom:142.740000px;}
.ydd{bottom:143.100000px;}
.y34{bottom:144.540000px;}
.y83{bottom:145.260000px;}
.y142{bottom:147.780000px;}
.y1f{bottom:149.760000px;}
.ybc{bottom:160.590000px;}
.y91{bottom:161.850000px;}
.y106{bottom:162.390000px;}
.y4a{bottom:162.750000px;}
.ydc{bottom:162.930000px;}
.y33{bottom:164.340000px;}
.y82{bottom:165.090000px;}
.y141{bottom:167.790000px;}
.y1e{bottom:169.770000px;}
.y90{bottom:181.650000px;}
.y105{bottom:182.190000px;}
.y49{bottom:182.550000px;}
.ydb{bottom:182.730000px;}
.y32{bottom:184.350000px;}
.y81{bottom:184.890000px;}
.ybf{bottom:186.150000px;}
.y140{bottom:187.590000px;}
.y1d{bottom:189.570000px;}
.y104{bottom:201.990000px;}
.y48{bottom:202.350000px;}
.yda{bottom:202.530000px;}
.y31{bottom:204.150000px;}
.y8f{bottom:204.510000px;}
.y168{bottom:204.690000px;}
.y13f{bottom:207.390000px;}
.y1c{bottom:209.370000px;}
.ybe{bottom:211.530000px;}
.y80{bottom:213.690000px;}
.y89{bottom:215.850000px;}
.y47{bottom:222.150000px;}
.y30{bottom:223.950000px;}
.y167{bottom:224.490000px;}
.y13e{bottom:227.190000px;}
.y8d{bottom:227.370000px;}
.y1b{bottom:229.170000px;}
.y103{bottom:230.790000px;}
.yd9{bottom:231.510000px;}
.y7f{bottom:233.490000px;}
.yba{bottom:237.090000px;}
.y8b{bottom:239.070000px;}
.y46{bottom:241.950000px;}
.y2f{bottom:243.750000px;}
.y166{bottom:244.470000px;}
.y13d{bottom:246.990000px;}
.y1a{bottom:248.970000px;}
.y102{bottom:250.770000px;}
.yd8{bottom:251.310000px;}
.y7e{bottom:253.470000px;}
.y45{bottom:261.930000px;}
.ybb{bottom:262.470000px;}
.y2e{bottom:263.550000px;}
.y165{bottom:264.270000px;}
.y13c{bottom:266.970000px;}
.y19{bottom:268.950000px;}
.y101{bottom:270.570000px;}
.yd7{bottom:271.110000px;}
.y7d{bottom:273.270000px;}
.y44{bottom:281.730000px;}
.y2d{bottom:283.530000px;}
.y164{bottom:284.070000px;}
.y13b{bottom:286.770000px;}
.yb8{bottom:288.030000px;}
.y18{bottom:288.750000px;}
.y100{bottom:290.370000px;}
.yd6{bottom:290.910000px;}
.y7c{bottom:293.070000px;}
.y87{bottom:299.910000px;}
.y43{bottom:301.530000px;}
.y2c{bottom:303.330000px;}
.y163{bottom:303.870000px;}
.y112{bottom:304.410000px;}
.yd5{bottom:306.030000px;}
.y13a{bottom:306.570000px;}
.y17{bottom:308.550000px;}
.y7b{bottom:312.870000px;}
.yb7{bottom:315.030000px;}
.y42{bottom:321.330000px;}
.y2b{bottom:323.130000px;}
.y162{bottom:323.670000px;}
.y139{bottom:326.370000px;}
.yd4{bottom:328.170000px;}
.y16{bottom:328.350000px;}
.y7a{bottom:332.670000px;}
.yb6{bottom:334.830000px;}
.y41{bottom:341.130000px;}
.y2a{bottom:342.930000px;}
.y161{bottom:343.650000px;}
.y111{bottom:344.010000px;}
.y138{bottom:346.170000px;}
.y15{bottom:348.150000px;}
.y79{bottom:352.650000px;}
.yd2{bottom:353.730000px;}
.yb5{bottom:354.630000px;}
.y40{bottom:360.930000px;}
.y29{bottom:362.730000px;}
.y160{bottom:363.450000px;}
.y137{bottom:366.150000px;}
.y10d{bottom:366.870000px;}
.y14{bottom:368.130000px;}
.y78{bottom:372.450000px;}
.yb4{bottom:374.610000px;}
.y3f{bottom:380.910000px;}
.yd1{bottom:381.090000px;}
.y15f{bottom:383.250000px;}
.y136{bottom:385.950000px;}
.y13{bottom:387.930000px;}
.y110{bottom:389.730000px;}
.y77{bottom:392.250000px;}
.yb3{bottom:394.410000px;}
.y3e{bottom:400.755000px;}
.y15e{bottom:403.095000px;}
.y135{bottom:405.795000px;}
.y76{bottom:412.095000px;}
.y10f{bottom:412.635000px;}
.yb2{bottom:414.255000px;}
.yd0{bottom:415.335000px;}
.y3d{bottom:420.555000px;}
.y15d{bottom:422.895000px;}
.y134{bottom:425.595000px;}
.y75{bottom:431.895000px;}
.y10c{bottom:435.495000px;}
.y3c{bottom:440.355000px;}
.ycf{bottom:442.155000px;}
.y15c{bottom:442.875000px;}
.yb1{bottom:443.055000px;}
.y133{bottom:445.395000px;}
.y74{bottom:451.875000px;}
.y10b{bottom:458.355000px;}
.y3b{bottom:460.155000px;}
.yce{bottom:461.955000px;}
.y15b{bottom:462.675000px;}
.yb0{bottom:462.855000px;}
.y73{bottom:471.675000px;}
.y132{bottom:474.375000px;}
.y12{bottom:479.595000px;}
.ycd{bottom:481.935000px;}
.y15a{bottom:482.475000px;}
.yaf{bottom:482.835000px;}
.yff{bottom:486.255000px;}
.y72{bottom:491.475000px;}
.y131{bottom:494.175000px;}
.ycc{bottom:501.735000px;}
.y159{bottom:502.275000px;}
.yae{bottom:502.635000px;}
.yfe{bottom:506.055000px;}
.y71{bottom:511.275000px;}
.y130{bottom:513.975000px;}
.ycb{bottom:521.535000px;}
.y158{bottom:522.075000px;}
.yad{bottom:522.435000px;}
.yfd{bottom:525.855000px;}
.y70{bottom:531.075000px;}
.y12f{bottom:533.775000px;}
.yca{bottom:541.335000px;}
.y157{bottom:542.055000px;}
.yac{bottom:542.235000px;}
.yfc{bottom:545.655000px;}
.y6f{bottom:551.055000px;}
.y12e{bottom:553.575000px;}
.yab{bottom:557.535000px;}
.y156{bottom:561.855000px;}
.yfb{bottom:565.635000px;}
.yc9{bottom:570.135000px;}
.y6e{bottom:570.855000px;}
.y12d{bottom:573.555000px;}
.yaa{bottom:579.495000px;}
.y155{bottom:581.655000px;}
.yc8{bottom:590.115000px;}
.y6d{bottom:590.655000px;}
.y12c{bottom:593.355000px;}
.yfa{bottom:594.435000px;}
.y154{bottom:601.455000px;}
.ya9{bottom:601.635000px;}
.yc7{bottom:609.915000px;}
.y6c{bottom:610.455000px;}
.y12b{bottom:613.155000px;}
.yf9{bottom:614.235000px;}
.y153{bottom:621.255000px;}
.ya8{bottom:627.015000px;}
.yc6{bottom:629.715000px;}
.y6b{bottom:630.255000px;}
.y12a{bottom:632.955000px;}
.yf8{bottom:634.035000px;}
.y152{bottom:641.235000px;}
.ya7{bottom:649.185000px;}
.yc5{bottom:649.545000px;}
.y6a{bottom:650.265000px;}
.y129{bottom:652.785000px;}
.yf7{bottom:653.865000px;}
.y151{bottom:661.065000px;}
.yc4{bottom:669.345000px;}
.y69{bottom:670.065000px;}
.ya3{bottom:671.325000px;}
.yf6{bottom:673.845000px;}
.y150{bottom:680.865000px;}
.y128{bottom:681.765000px;}
.yc3{bottom:685.905000px;}
.y68{bottom:689.865000px;}
.ya6{bottom:693.285000px;}
.yf5{bottom:693.645000px;}
.y14f{bottom:700.665000px;}
.y127{bottom:701.565000px;}
.y67{bottom:709.665000px;}
.yf4{bottom:713.445000px;}
.ya5{bottom:715.425000px;}
.y14e{bottom:720.465000px;}
.y126{bottom:721.365000px;}
.y66{bottom:729.465000px;}
.ya0{bottom:737.565000px;}
.y14d{bottom:740.445000px;}
.y125{bottom:741.165000px;}
.yf3{bottom:742.245000px;}
.y65{bottom:749.445000px;}
.ya2{bottom:759.705000px;}
.y14c{bottom:760.245000px;}
.y124{bottom:760.965000px;}
.yf2{bottom:762.045000px;}
.y64{bottom:769.245000px;}
.y14b{bottom:780.045000px;}
.y123{bottom:780.945000px;}
.y9f{bottom:781.665000px;}
.yf1{bottom:782.025000px;}
.y63{bottom:789.045000px;}
.y14a{bottom:799.845000px;}
.y122{bottom:800.745000px;}
.y9e{bottom:807.225000px;}
.y62{bottom:808.845000px;}
.yf0{bottom:810.825000px;}
.y149{bottom:819.645000px;}
.y121{bottom:820.545000px;}
.y61{bottom:828.645000px;}
.yef{bottom:830.625000px;}
.y9d{bottom:832.605000px;}
.y148{bottom:839.625000px;}
.y120{bottom:840.345000px;}
.y60{bottom:848.625000px;}
.yee{bottom:850.425000px;}
.y9c{bottom:859.425000px;}
.y11f{bottom:860.145000px;}
.y27{bottom:861.765000px;}
.y5f{bottom:868.425000px;}
.yed{bottom:870.225000px;}
.y9b{bottom:879.225000px;}
.y11e{bottom:880.125000px;}
.y5e{bottom:888.225000px;}
.yec{bottom:890.205000px;}
.y11{bottom:892.545000px;}
.y9a{bottom:899.070000px;}
.y11d{bottom:899.970000px;}
.y5d{bottom:908.070000px;}
.yeb{bottom:910.050000px;}
.y10{bottom:917.610000px;}
.y99{bottom:918.870000px;}
.y11c{bottom:919.770000px;}
.y5c{bottom:927.870000px;}
.yea{bottom:929.850000px;}
.yf{bottom:932.910000px;}
.y98{bottom:938.850000px;}
.y11b{bottom:939.570000px;}
.y5b{bottom:947.850000px;}
.ye9{bottom:949.650000px;}
.ye{bottom:954.150000px;}
.y97{bottom:958.650000px;}
.y11a{bottom:959.370000px;}
.y5a{bottom:967.650000px;}
.ye8{bottom:969.450000px;}
.yd{bottom:977.550000px;}
.y96{bottom:978.450000px;}
.y119{bottom:979.350000px;}
.ye7{bottom:984.750000px;}
.y59{bottom:987.450000px;}
.y95{bottom:998.250000px;}
.y118{bottom:999.150000px;}
.y58{bottom:1007.250000px;}
.yc{bottom:1009.230000px;}
.ye4{bottom:1010.130000px;}
.y147{bottom:1018.050000px;}
.y117{bottom:1018.950000px;}
.y57{bottom:1027.050000px;}
.y116{bottom:1034.070000px;}
.ya{bottom:1035.330000px;}
.ye6{bottom:1035.690000px;}
.y146{bottom:1038.030000px;}
.y56{bottom:1047.030000px;}
.y1{bottom:1051.350000px;}
.y115{bottom:1056.210000px;}
.ye5{bottom:1061.070000px;}
.y55{bottom:1066.830000px;}
.y114{bottom:1081.590000px;}
.ye2{bottom:1086.450000px;}
.y54{bottom:1086.630000px;}
.y53{bottom:1106.430000px;}
.y113{bottom:1107.150000px;}
.ye3{bottom:1112.010000px;}
.y52{bottom:1126.230000px;}
.ye1{bottom:1139.190000px;}
.y51{bottom:1146.210000px;}
.y50{bottom:1166.040000px;}
.y4f{bottom:1194.840000px;}
.h21{height:19.785000px;}
.hc{height:19.800000px;}
.h1c{height:19.836000px;}
.h18{height:19.980000px;}
.h13{height:20.160000px;}
.h20{height:21.600000px;}
.h1e{height:21.780000px;}
.h26{height:26.460000px;}
.h9{height:27.907031px;}
.h1d{height:28.656000px;}
.h23{height:39.600000px;}
.h14{height:39.816000px;}
.h16{height:41.940000px;}
.hb{height:42.164648px;}
.h10{height:42.480000px;}
.h7{height:42.894141px;}
.h27{height:43.506914px;}
.h11{height:44.640000px;}
.h1a{height:45.180000px;}
.he{height:45.461953px;}
.h1f{height:47.160000px;}
.h5{height:47.545312px;}
.h24{height:48.312422px;}
.h15{height:48.496641px;}
.h19{height:48.787031px;}
.h25{height:48.907031px;}
.h12{height:50.040000px;}
.h8{height:53.734219px;}
.h17{height:63.900000px;}
.h22{height:65.556000px;}
.hf{height:65.884219px;}
.h6{height:67.565039px;}
.h1b{height:70.740000px;}
.h3{height:73.722656px;}
.h4{height:105.060586px;}
.h2{height:156.810000px;}
.hd{height:376.770000px;}
.ha{height:401.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2f{width:19.260000px;}
.w2b{width:48.096000px;}
.w2a{width:53.640000px;}
.w38{width:59.616000px;}
.w21{width:63.540000px;}
.w3c{width:64.260000px;}
.w2c{width:65.700000px;}
.w20{width:66.276000px;}
.w3b{width:66.816000px;}
.wd{width:72.180000px;}
.wf{width:72.900000px;}
.w22{width:88.416000px;}
.w3d{width:89.136000px;}
.we{width:93.996000px;}
.w1c{width:98.316000px;}
.w36{width:99.000000px;}
.w34{width:99.216000px;}
.w37{width:99.936000px;}
.w10{width:104.796000px;}
.w11{width:114.660000px;}
.w39{width:125.280000px;}
.w2{width:127.656000px;}
.w1b{width:130.176000px;}
.w2d{width:133.056000px;}
.w40{width:136.116000px;}
.w35{width:136.836000px;}
.w25{width:139.536000px;}
.w33{width:142.596000px;}
.w4{width:157.170000px;}
.w1e{width:162.750000px;}
.w1a{width:163.110000px;}
.w29{width:175.890000px;}
.w2e{width:176.070000px;}
.w23{width:176.970000px;}
.w3e{width:178.050000px;}
.w32{width:184.890000px;}
.w16{width:198.030000px;}
.w28{width:198.930000px;}
.w3f{width:207.570000px;}
.wc{width:209.550000px;}
.w24{width:231.510000px;}
.w14{width:260.355000px;}
.w30{width:269.175000px;}
.wa{width:270.750000px;}
.w27{width:287.355000px;}
.w15{width:293.655000px;}
.w19{width:294.015000px;}
.w9{width:300.090000px;}
.w6{width:304.815000px;}
.w8{width:305.310000px;}
.w1d{width:372.495000px;}
.w18{width:469.725000px;}
.w7{width:473.325000px;}
.w13{width:490.425000px;}
.w3{width:499.785000px;}
.wb{width:680.505000px;}
.w3a{width:753.480000px;}
.w12{width:757.440000px;}
.w17{width:770.040000px;}
.w31{width:774.360000px;}
.w26{width:775.080000px;}
.w1f{width:778.320000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.080000px;}
.x15{left:4.500000px;}
.x20{left:5.580000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xa{left:55.980000px;}
.x29{left:57.420000px;}
.x2a{left:59.040000px;}
.x25{left:61.560000px;}
.x13{left:62.820000px;}
.x37{left:64.620000px;}
.x21{left:66.096000px;}
.x1b{left:67.860000px;}
.x1d{left:69.480000px;}
.x3e{left:71.460000px;}
.x34{left:79.380000px;}
.x44{left:80.999987px;}
.x10{left:82.614000px;}
.x11{left:85.854000px;}
.x7{left:102.285000px;}
.x14{left:106.236000px;}
.xc{left:108.035987px;}
.x2{left:115.950000px;}
.x3d{left:125.676000px;}
.xf{left:129.096000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x35{left:136.475987px;}
.x36{left:139.535987px;}
.x3f{left:141.516000px;}
.x24{left:153.570000px;}
.x3{left:181.650000px;}
.x2b{left:193.530000px;}
.x40{left:206.850000px;}
.xd{left:218.729987px;}
.x38{left:253.830000px;}
.x2c{left:283.395000px;}
.x41{left:297.435000px;}
.x16{left:320.475000px;}
.x27{left:324.074987px;}
.xe{left:346.574987px;}
.x2f{left:351.435000px;}
.x1f{left:362.595000px;}
.xb{left:363.855000px;}
.x28{left:368.534987px;}
.x17{left:394.275000px;}
.x39{left:397.875000px;}
.x33{left:418.215000px;}
.x2d{left:461.805000px;}
.x42{left:476.925000px;}
.x18{left:489.885000px;}
.x3a{left:498.525000px;}
.x12{left:516.885000px;}
.x22{left:527.865000px;}
.x30{left:552.705000px;}
.x1e{left:563.325000px;}
.x19{left:564.405000px;}
.x3b{left:636.990000px;}
.x1a{left:670.650000px;}
.x9{left:681.450000px;}
.x26{left:682.889987px;}
.x43{left:685.950000px;}
.x23{left:692.610000px;}
.x2e{left:694.950000px;}
.x31{left:730.230000px;}
.x3c{left:737.610000px;}
.x32{left:785.310000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.175360pt;}
.lse{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.655360pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.296000pt;}
._a{margin-left:-2.379093pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.171200pt;}
._3{width:2.448853pt;}
._b{width:3.434240pt;}
._d{width:4.905813pt;}
._c{width:5.896320pt;}
._12{width:7.328000pt;}
._13{width:8.395520pt;}
._9{width:9.612160pt;}
._6{width:10.517760pt;}
._e{width:12.248960pt;}
._5{width:14.380373pt;}
._4{width:15.579307pt;}
._15{width:17.301973pt;}
._1b{width:18.688213pt;}
._10{width:26.504320pt;}
._f{width:27.781760pt;}
._14{width:29.374720pt;}
._7{width:30.541440pt;}
._8{width:31.608960pt;}
._1c{width:33.728640pt;}
._18{width:37.610667pt;}
._19{width:43.113387pt;}
._16{width:54.552533pt;}
._17{width:83.589973pt;}
._1a{width:178.720000pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y28{bottom:5.120000pt;}
.y8e{bottom:5.280000pt;}
.yb9{bottom:5.440000pt;}
.yd3{bottom:6.880000pt;}
.y7{bottom:7.200000pt;}
.y26{bottom:9.760000pt;}
.y88{bottom:14.080000pt;}
.y8a{bottom:15.040000pt;}
.y8c{bottom:17.440000pt;}
.y3a{bottom:22.720000pt;}
.y93{bottom:22.880000pt;}
.ya1{bottom:24.800000pt;}
.y25{bottom:27.360000pt;}
.y6{bottom:32.160000pt;}
.y39{bottom:40.320000pt;}
.ya4{bottom:44.320000pt;}
.y24{bottom:44.960000pt;}
.y10e{bottom:45.800000pt;}
.ybd{bottom:50.400000pt;}
.yb{bottom:51.520000pt;}
.y5{bottom:51.680000pt;}
.y38{bottom:57.920000pt;}
.y23{bottom:62.720000pt;}
.y4{bottom:72.800000pt;}
.y10a{bottom:73.760000pt;}
.y4e{bottom:74.080000pt;}
.ye0{bottom:74.240000pt;}
.y37{bottom:75.680000pt;}
.y86{bottom:76.160000pt;}
.y145{bottom:78.560000pt;}
.y22{bottom:80.320000pt;}
.yc2{bottom:88.960000pt;}
.y94{bottom:90.880000pt;}
.y109{bottom:91.360000pt;}
.y4d{bottom:91.680000pt;}
.ydf{bottom:91.840000pt;}
.y36{bottom:93.280000pt;}
.y85{bottom:93.760000pt;}
.y144{bottom:96.160000pt;}
.y9{bottom:96.666667pt;}
.y21{bottom:97.920000pt;}
.y3{bottom:104.986667pt;}
.yc1{bottom:106.720000pt;}
.y92{bottom:108.480000pt;}
.y108{bottom:108.960000pt;}
.y4c{bottom:109.280000pt;}
.yde{bottom:109.600000pt;}
.y35{bottom:110.880000pt;}
.y84{bottom:111.360000pt;}
.y143{bottom:113.760000pt;}
.y20{bottom:115.520000pt;}
.y8{bottom:116.186667pt;}
.yc0{bottom:120.160000pt;}
.y107{bottom:126.720000pt;}
.y4b{bottom:126.880000pt;}
.ydd{bottom:127.200000pt;}
.y34{bottom:128.480000pt;}
.y83{bottom:129.120000pt;}
.y142{bottom:131.360000pt;}
.y1f{bottom:133.120000pt;}
.ybc{bottom:142.746667pt;}
.y91{bottom:143.866667pt;}
.y106{bottom:144.346667pt;}
.y4a{bottom:144.666667pt;}
.ydc{bottom:144.826667pt;}
.y33{bottom:146.080000pt;}
.y82{bottom:146.746667pt;}
.y141{bottom:149.146667pt;}
.y1e{bottom:150.906667pt;}
.y90{bottom:161.466667pt;}
.y105{bottom:161.946667pt;}
.y49{bottom:162.266667pt;}
.ydb{bottom:162.426667pt;}
.y32{bottom:163.866667pt;}
.y81{bottom:164.346667pt;}
.ybf{bottom:165.466667pt;}
.y140{bottom:166.746667pt;}
.y1d{bottom:168.506667pt;}
.y104{bottom:179.546667pt;}
.y48{bottom:179.866667pt;}
.yda{bottom:180.026667pt;}
.y31{bottom:181.466667pt;}
.y8f{bottom:181.786667pt;}
.y168{bottom:181.946667pt;}
.y13f{bottom:184.346667pt;}
.y1c{bottom:186.106667pt;}
.ybe{bottom:188.026667pt;}
.y80{bottom:189.946667pt;}
.y89{bottom:191.866667pt;}
.y47{bottom:197.466667pt;}
.y30{bottom:199.066667pt;}
.y167{bottom:199.546667pt;}
.y13e{bottom:201.946667pt;}
.y8d{bottom:202.106667pt;}
.y1b{bottom:203.706667pt;}
.y103{bottom:205.146667pt;}
.yd9{bottom:205.786667pt;}
.y7f{bottom:207.546667pt;}
.yba{bottom:210.746667pt;}
.y8b{bottom:212.506667pt;}
.y46{bottom:215.066667pt;}
.y2f{bottom:216.666667pt;}
.y166{bottom:217.306667pt;}
.y13d{bottom:219.546667pt;}
.y1a{bottom:221.306667pt;}
.y102{bottom:222.906667pt;}
.yd8{bottom:223.386667pt;}
.y7e{bottom:225.306667pt;}
.y45{bottom:232.826667pt;}
.ybb{bottom:233.306667pt;}
.y2e{bottom:234.266667pt;}
.y165{bottom:234.906667pt;}
.y13c{bottom:237.306667pt;}
.y19{bottom:239.066667pt;}
.y101{bottom:240.506667pt;}
.yd7{bottom:240.986667pt;}
.y7d{bottom:242.906667pt;}
.y44{bottom:250.426667pt;}
.y2d{bottom:252.026667pt;}
.y164{bottom:252.506667pt;}
.y13b{bottom:254.906667pt;}
.yb8{bottom:256.026667pt;}
.y18{bottom:256.666667pt;}
.y100{bottom:258.106667pt;}
.yd6{bottom:258.586667pt;}
.y7c{bottom:260.506667pt;}
.y87{bottom:266.586667pt;}
.y43{bottom:268.026667pt;}
.y2c{bottom:269.626667pt;}
.y163{bottom:270.106667pt;}
.y112{bottom:270.586667pt;}
.yd5{bottom:272.026667pt;}
.y13a{bottom:272.506667pt;}
.y17{bottom:274.266667pt;}
.y7b{bottom:278.106667pt;}
.yb7{bottom:280.026667pt;}
.y42{bottom:285.626667pt;}
.y2b{bottom:287.226667pt;}
.y162{bottom:287.706667pt;}
.y139{bottom:290.106667pt;}
.yd4{bottom:291.706667pt;}
.y16{bottom:291.866667pt;}
.y7a{bottom:295.706667pt;}
.yb6{bottom:297.626667pt;}
.y41{bottom:303.226667pt;}
.y2a{bottom:304.826667pt;}
.y161{bottom:305.466667pt;}
.y111{bottom:305.786667pt;}
.y138{bottom:307.706667pt;}
.y15{bottom:309.466667pt;}
.y79{bottom:313.466667pt;}
.yd2{bottom:314.426667pt;}
.yb5{bottom:315.226667pt;}
.y40{bottom:320.826667pt;}
.y29{bottom:322.426667pt;}
.y160{bottom:323.066667pt;}
.y137{bottom:325.466667pt;}
.y10d{bottom:326.106667pt;}
.y14{bottom:327.226667pt;}
.y78{bottom:331.066667pt;}
.yb4{bottom:332.986667pt;}
.y3f{bottom:338.586667pt;}
.yd1{bottom:338.746667pt;}
.y15f{bottom:340.666667pt;}
.y136{bottom:343.066667pt;}
.y13{bottom:344.826667pt;}
.y110{bottom:346.426667pt;}
.y77{bottom:348.666667pt;}
.yb3{bottom:350.586667pt;}
.y3e{bottom:356.226667pt;}
.y15e{bottom:358.306667pt;}
.y135{bottom:360.706667pt;}
.y76{bottom:366.306667pt;}
.y10f{bottom:366.786667pt;}
.yb2{bottom:368.226667pt;}
.yd0{bottom:369.186667pt;}
.y3d{bottom:373.826667pt;}
.y15d{bottom:375.906667pt;}
.y134{bottom:378.306667pt;}
.y75{bottom:383.906667pt;}
.y10c{bottom:387.106667pt;}
.y3c{bottom:391.426667pt;}
.ycf{bottom:393.026667pt;}
.y15c{bottom:393.666667pt;}
.yb1{bottom:393.826667pt;}
.y133{bottom:395.906667pt;}
.y74{bottom:401.666667pt;}
.y10b{bottom:407.426667pt;}
.y3b{bottom:409.026667pt;}
.yce{bottom:410.626667pt;}
.y15b{bottom:411.266667pt;}
.yb0{bottom:411.426667pt;}
.y73{bottom:419.266667pt;}
.y132{bottom:421.666667pt;}
.y12{bottom:426.306667pt;}
.ycd{bottom:428.386667pt;}
.y15a{bottom:428.866667pt;}
.yaf{bottom:429.186667pt;}
.yff{bottom:432.226667pt;}
.y72{bottom:436.866667pt;}
.y131{bottom:439.266667pt;}
.ycc{bottom:445.986667pt;}
.y159{bottom:446.466667pt;}
.yae{bottom:446.786667pt;}
.yfe{bottom:449.826667pt;}
.y71{bottom:454.466667pt;}
.y130{bottom:456.866667pt;}
.ycb{bottom:463.586667pt;}
.y158{bottom:464.066667pt;}
.yad{bottom:464.386667pt;}
.yfd{bottom:467.426667pt;}
.y70{bottom:472.066667pt;}
.y12f{bottom:474.466667pt;}
.yca{bottom:481.186667pt;}
.y157{bottom:481.826667pt;}
.yac{bottom:481.986667pt;}
.yfc{bottom:485.026667pt;}
.y6f{bottom:489.826667pt;}
.y12e{bottom:492.066667pt;}
.yab{bottom:495.586667pt;}
.y156{bottom:499.426667pt;}
.yfb{bottom:502.786667pt;}
.yc9{bottom:506.786667pt;}
.y6e{bottom:507.426667pt;}
.y12d{bottom:509.826667pt;}
.yaa{bottom:515.106667pt;}
.y155{bottom:517.026667pt;}
.yc8{bottom:524.546667pt;}
.y6d{bottom:525.026667pt;}
.y12c{bottom:527.426667pt;}
.yfa{bottom:528.386667pt;}
.y154{bottom:534.626667pt;}
.ya9{bottom:534.786667pt;}
.yc7{bottom:542.146667pt;}
.y6c{bottom:542.626667pt;}
.y12b{bottom:545.026667pt;}
.yf9{bottom:545.986667pt;}
.y153{bottom:552.226667pt;}
.ya8{bottom:557.346667pt;}
.yc6{bottom:559.746667pt;}
.y6b{bottom:560.226667pt;}
.y12a{bottom:562.626667pt;}
.yf8{bottom:563.586667pt;}
.y152{bottom:569.986667pt;}
.ya7{bottom:577.053333pt;}
.yc5{bottom:577.373333pt;}
.y6a{bottom:578.013333pt;}
.y129{bottom:580.253333pt;}
.yf7{bottom:581.213333pt;}
.y151{bottom:587.613333pt;}
.yc4{bottom:594.973333pt;}
.y69{bottom:595.613333pt;}
.ya3{bottom:596.733333pt;}
.yf6{bottom:598.973333pt;}
.y150{bottom:605.213333pt;}
.y128{bottom:606.013333pt;}
.yc3{bottom:609.693333pt;}
.y68{bottom:613.213333pt;}
.ya6{bottom:616.253333pt;}
.yf5{bottom:616.573333pt;}
.y14f{bottom:622.813333pt;}
.y127{bottom:623.613333pt;}
.y67{bottom:630.813333pt;}
.yf4{bottom:634.173333pt;}
.ya5{bottom:635.933333pt;}
.y14e{bottom:640.413333pt;}
.y126{bottom:641.213333pt;}
.y66{bottom:648.413333pt;}
.ya0{bottom:655.613333pt;}
.y14d{bottom:658.173333pt;}
.y125{bottom:658.813333pt;}
.yf3{bottom:659.773333pt;}
.y65{bottom:666.173333pt;}
.ya2{bottom:675.293333pt;}
.y14c{bottom:675.773333pt;}
.y124{bottom:676.413333pt;}
.yf2{bottom:677.373333pt;}
.y64{bottom:683.773333pt;}
.y14b{bottom:693.373333pt;}
.y123{bottom:694.173333pt;}
.y9f{bottom:694.813333pt;}
.yf1{bottom:695.133333pt;}
.y63{bottom:701.373333pt;}
.y14a{bottom:710.973333pt;}
.y122{bottom:711.773333pt;}
.y9e{bottom:717.533333pt;}
.y62{bottom:718.973333pt;}
.yf0{bottom:720.733333pt;}
.y149{bottom:728.573333pt;}
.y121{bottom:729.373333pt;}
.y61{bottom:736.573333pt;}
.yef{bottom:738.333333pt;}
.y9d{bottom:740.093333pt;}
.y148{bottom:746.333333pt;}
.y120{bottom:746.973333pt;}
.y60{bottom:754.333333pt;}
.yee{bottom:755.933333pt;}
.y9c{bottom:763.933333pt;}
.y11f{bottom:764.573333pt;}
.y27{bottom:766.013333pt;}
.y5f{bottom:771.933333pt;}
.yed{bottom:773.533333pt;}
.y9b{bottom:781.533333pt;}
.y11e{bottom:782.333333pt;}
.y5e{bottom:789.533333pt;}
.yec{bottom:791.293333pt;}
.y11{bottom:793.373333pt;}
.y9a{bottom:799.173333pt;}
.y11d{bottom:799.973333pt;}
.y5d{bottom:807.173333pt;}
.yeb{bottom:808.933333pt;}
.y10{bottom:815.653333pt;}
.y99{bottom:816.773333pt;}
.y11c{bottom:817.573333pt;}
.y5c{bottom:824.773333pt;}
.yea{bottom:826.533333pt;}
.yf{bottom:829.253333pt;}
.y98{bottom:834.533333pt;}
.y11b{bottom:835.173333pt;}
.y5b{bottom:842.533333pt;}
.ye9{bottom:844.133333pt;}
.ye{bottom:848.133333pt;}
.y97{bottom:852.133333pt;}
.y11a{bottom:852.773333pt;}
.y5a{bottom:860.133333pt;}
.ye8{bottom:861.733333pt;}
.yd{bottom:868.933333pt;}
.y96{bottom:869.733333pt;}
.y119{bottom:870.533333pt;}
.ye7{bottom:875.333333pt;}
.y59{bottom:877.733333pt;}
.y95{bottom:887.333333pt;}
.y118{bottom:888.133333pt;}
.y58{bottom:895.333333pt;}
.yc{bottom:897.093333pt;}
.ye4{bottom:897.893333pt;}
.y147{bottom:904.933333pt;}
.y117{bottom:905.733333pt;}
.y57{bottom:912.933333pt;}
.y116{bottom:919.173333pt;}
.ya{bottom:920.293333pt;}
.ye6{bottom:920.613333pt;}
.y146{bottom:922.693333pt;}
.y56{bottom:930.693333pt;}
.y1{bottom:934.533333pt;}
.y115{bottom:938.853333pt;}
.ye5{bottom:943.173333pt;}
.y55{bottom:948.293333pt;}
.y114{bottom:961.413333pt;}
.ye2{bottom:965.733333pt;}
.y54{bottom:965.893333pt;}
.y53{bottom:983.493333pt;}
.y113{bottom:984.133333pt;}
.ye3{bottom:988.453333pt;}
.y52{bottom:1001.093333pt;}
.ye1{bottom:1012.613333pt;}
.y51{bottom:1018.853333pt;}
.y50{bottom:1036.480000pt;}
.y4f{bottom:1062.080000pt;}
.h21{height:17.586667pt;}
.hc{height:17.600000pt;}
.h1c{height:17.632000pt;}
.h18{height:17.760000pt;}
.h13{height:17.920000pt;}
.h20{height:19.200000pt;}
.h1e{height:19.360000pt;}
.h26{height:23.520000pt;}
.h9{height:24.806250pt;}
.h1d{height:25.472000pt;}
.h23{height:35.200000pt;}
.h14{height:35.392000pt;}
.h16{height:37.280000pt;}
.hb{height:37.479688pt;}
.h10{height:37.760000pt;}
.h7{height:38.128125pt;}
.h27{height:38.672812pt;}
.h11{height:39.680000pt;}
.h1a{height:40.160000pt;}
.he{height:40.410625pt;}
.h1f{height:41.920000pt;}
.h5{height:42.262500pt;}
.h24{height:42.944375pt;}
.h15{height:43.108125pt;}
.h19{height:43.366250pt;}
.h25{height:43.472917pt;}
.h12{height:44.480000pt;}
.h8{height:47.763750pt;}
.h17{height:56.800000pt;}
.h22{height:58.272000pt;}
.hf{height:58.563750pt;}
.h6{height:60.057813pt;}
.h1b{height:62.880000pt;}
.h3{height:65.531250pt;}
.h4{height:93.387187pt;}
.h2{height:139.386667pt;}
.hd{height:334.906667pt;}
.ha{height:357.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2f{width:17.120000pt;}
.w2b{width:42.752000pt;}
.w2a{width:47.680000pt;}
.w38{width:52.992000pt;}
.w21{width:56.480000pt;}
.w3c{width:57.120000pt;}
.w2c{width:58.400000pt;}
.w20{width:58.912000pt;}
.w3b{width:59.392000pt;}
.wd{width:64.160000pt;}
.wf{width:64.800000pt;}
.w22{width:78.592000pt;}
.w3d{width:79.232000pt;}
.we{width:83.552000pt;}
.w1c{width:87.392000pt;}
.w36{width:88.000000pt;}
.w34{width:88.192000pt;}
.w37{width:88.832000pt;}
.w10{width:93.152000pt;}
.w11{width:101.920000pt;}
.w39{width:111.360000pt;}
.w2{width:113.472000pt;}
.w1b{width:115.712000pt;}
.w2d{width:118.272000pt;}
.w40{width:120.992000pt;}
.w35{width:121.632000pt;}
.w25{width:124.032000pt;}
.w33{width:126.752000pt;}
.w4{width:139.706667pt;}
.w1e{width:144.666667pt;}
.w1a{width:144.986667pt;}
.w29{width:156.346667pt;}
.w2e{width:156.506667pt;}
.w23{width:157.306667pt;}
.w3e{width:158.266667pt;}
.w32{width:164.346667pt;}
.w16{width:176.026667pt;}
.w28{width:176.826667pt;}
.w3f{width:184.506667pt;}
.wc{width:186.266667pt;}
.w24{width:205.786667pt;}
.w14{width:231.426667pt;}
.w30{width:239.266667pt;}
.wa{width:240.666667pt;}
.w27{width:255.426667pt;}
.w15{width:261.026667pt;}
.w19{width:261.346667pt;}
.w9{width:266.746667pt;}
.w6{width:270.946667pt;}
.w8{width:271.386667pt;}
.w1d{width:331.106667pt;}
.w18{width:417.533333pt;}
.w7{width:420.733333pt;}
.w13{width:435.933333pt;}
.w3{width:444.253333pt;}
.wb{width:604.893333pt;}
.w3a{width:669.760000pt;}
.w12{width:673.280000pt;}
.w17{width:684.480000pt;}
.w31{width:688.320000pt;}
.w26{width:688.960000pt;}
.w1f{width:691.840000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.960000pt;}
.x15{left:4.000000pt;}
.x20{left:4.960000pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xa{left:49.760000pt;}
.x29{left:51.040000pt;}
.x2a{left:52.480000pt;}
.x25{left:54.720000pt;}
.x13{left:55.840000pt;}
.x37{left:57.440000pt;}
.x21{left:58.752000pt;}
.x1b{left:60.320000pt;}
.x1d{left:61.760000pt;}
.x3e{left:63.520000pt;}
.x34{left:70.560000pt;}
.x44{left:71.999988pt;}
.x10{left:73.434667pt;}
.x11{left:76.314667pt;}
.x7{left:90.920000pt;}
.x14{left:94.432000pt;}
.xc{left:96.031988pt;}
.x2{left:103.066667pt;}
.x3d{left:111.712000pt;}
.xf{left:114.752000pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x35{left:121.311988pt;}
.x36{left:124.031988pt;}
.x3f{left:125.792000pt;}
.x24{left:136.506667pt;}
.x3{left:161.466667pt;}
.x2b{left:172.026667pt;}
.x40{left:183.866667pt;}
.xd{left:194.426655pt;}
.x38{left:225.626667pt;}
.x2c{left:251.906667pt;}
.x41{left:264.386667pt;}
.x16{left:284.866667pt;}
.x27{left:288.066655pt;}
.xe{left:308.066655pt;}
.x2f{left:312.386667pt;}
.x1f{left:322.306667pt;}
.xb{left:323.426667pt;}
.x28{left:327.586655pt;}
.x17{left:350.466667pt;}
.x39{left:353.666667pt;}
.x33{left:371.746667pt;}
.x2d{left:410.493333pt;}
.x42{left:423.933333pt;}
.x18{left:435.453333pt;}
.x3a{left:443.133333pt;}
.x12{left:459.453333pt;}
.x22{left:469.213333pt;}
.x30{left:491.293333pt;}
.x1e{left:500.733333pt;}
.x19{left:501.693333pt;}
.x3b{left:566.213333pt;}
.x1a{left:596.133333pt;}
.x9{left:605.733333pt;}
.x26{left:607.013322pt;}
.x43{left:609.733333pt;}
.x23{left:615.653333pt;}
.x2e{left:617.733333pt;}
.x31{left:649.093333pt;}
.x3c{left:655.653333pt;}
.x32{left:698.053333pt;}
}




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