
    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_541449b6739cf884448139b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_ee32a87b8e03d212b445b0ff.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fec9da47ca4470f7dc4642e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_dfc79bfafd95d870911e3c81.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_88903eae33806cc1216169d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_b11b68ce215db41ad9c251fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_2b02ccd1c1e6ae59f3e604d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_63e0f384e7bcf02e1d32beac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls1c{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.684000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.900000px;}
.ls16{letter-spacing:1.440000px;}
.ls10{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.880000px;}
.ls15{letter-spacing:4.320000px;}
.ls6{letter-spacing:6.480000px;}
.ls1d{letter-spacing:7.344000px;}
.ls8{letter-spacing:7.920000px;}
.ls1b{letter-spacing:9.360000px;}
.ls19{letter-spacing:10.080000px;}
.lsf{letter-spacing:12.240000px;}
.ls14{letter-spacing:14.400000px;}
.ls11{letter-spacing:15.120000px;}
.ls12{letter-spacing:15.840000px;}
.lse{letter-spacing:17.280000px;}
.ls17{letter-spacing:23.736000px;}
.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;}
}
.ws2{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-4.680000px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._19{width:3.252960px;}
._9{width:4.263120px;}
._8{width:6.048000px;}
._7{width:7.704000px;}
._d{width:8.712000px;}
._c{width:10.152000px;}
._18{width:11.232000px;}
._e{width:12.528000px;}
._f{width:13.752000px;}
._10{width:15.408000px;}
._11{width:16.560000px;}
._1b{width:19.800000px;}
._1c{width:21.384000px;}
._a{width:22.968000px;}
._b{width:23.968080px;}
._12{width:25.848000px;}
._13{width:27.000000px;}
._20{width:28.064160px;}
._21{width:29.367360px;}
._15{width:30.568320px;}
._14{width:31.824000px;}
._1f{width:33.048000px;}
._23{width:34.488000px;}
._1d{width:36.288000px;}
._1e{width:37.864080px;}
._24{width:39.103920px;}
._25{width:40.248000px;}
._22{width:41.472000px;}
._17{width:43.488000px;}
._16{width:44.680320px;}
._29{width:45.990720px;}
._26{width:51.840000px;}
._2a{width:55.440000px;}
._2b{width:56.784000px;}
._27{width:121.176000px;}
._28{width:176.688000px;}
._3{width:194.376000px;}
._6{width:1864.536000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.yc5{bottom:12.240000px;}
.y14{bottom:12.600000px;}
.y43{bottom:12.780000px;}
.yd7{bottom:13.500000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.yc9{bottom:20.520000px;}
.yc6{bottom:21.240000px;}
.y7{bottom:21.420000px;}
.yd1{bottom:22.140000px;}
.yd4{bottom:22.860000px;}
.ydc{bottom:23.400000px;}
.ycd{bottom:29.370000px;}
.yca{bottom:29.520000px;}
.yce{bottom:29.550000px;}
.yd6{bottom:30.780000px;}
.y5{bottom:37.260000px;}
.yc4{bottom:38.520000px;}
.y2{bottom:39.060000px;}
.yd0{bottom:39.420000px;}
.yd3{bottom:40.140000px;}
.ydb{bottom:40.680000px;}
.ycc{bottom:46.650000px;}
.yc8{bottom:46.800000px;}
.y12{bottom:57.420000px;}
.y11{bottom:73.260000px;}
.y41{bottom:109.440000px;}
.y9b{bottom:110.160000px;}
.y108{bottom:115.560000px;}
.y154{bottom:118.260000px;}
.y147{bottom:120.960000px;}
.y128{bottom:121.860000px;}
.ybf{bottom:122.760000px;}
.y193{bottom:123.660000px;}
.ye0{bottom:124.380000px;}
.y9a{bottom:130.860000px;}
.y184{bottom:131.760000px;}
.y40{bottom:135.360000px;}
.yfc{bottom:136.260000px;}
.y6f{bottom:138.960000px;}
.y146{bottom:141.660000px;}
.y127{bottom:142.560000px;}
.y192{bottom:144.360000px;}
.ydf{bottom:145.080000px;}
.y179{bottom:145.260000px;}
.y16f{bottom:150.660000px;}
.y3f{bottom:150.840000px;}
.ybe{bottom:152.460000px;}
.y3e{bottom:155.340000px;}
.yfb{bottom:156.960000px;}
.y6e{bottom:159.660000px;}
.y99{bottom:160.560000px;}
.y183{bottom:161.460000px;}
.y126{bottom:163.260000px;}
.y178{bottom:165.960000px;}
.y145{bottom:171.360000px;}
.y191{bottom:174.060000px;}
.yde{bottom:174.780000px;}
.y3d{bottom:176.040000px;}
.y161{bottom:177.660000px;}
.y6d{bottom:180.360000px;}
.y98{bottom:181.260000px;}
.ybd{bottom:182.160000px;}
.y125{bottom:183.960000px;}
.yfa{bottom:186.660000px;}
.y182{bottom:191.160000px;}
.y16e{bottom:192.060000px;}
.y190{bottom:194.760000px;}
.y160{bottom:198.390000px;}
.y6c{bottom:201.090000px;}
.y97{bottom:201.990000px;}
.ydd{bottom:204.510000px;}
.y124{bottom:204.690000px;}
.yf9{bottom:207.390000px;}
.y3c{bottom:209.190000px;}
.ybc{bottom:211.890000px;}
.y16d{bottom:212.790000px;}
.y15f{bottom:219.090000px;}
.y181{bottom:220.890000px;}
.y6b{bottom:221.790000px;}
.y96{bottom:222.690000px;}
.y18f{bottom:224.490000px;}
.y123{bottom:225.390000px;}
.yf8{bottom:228.090000px;}
.y3b{bottom:229.890000px;}
.y144{bottom:230.790000px;}
.yda{bottom:230.970000px;}
.ybb{bottom:241.590000px;}
.y6a{bottom:242.490000px;}
.y95{bottom:243.390000px;}
.y18e{bottom:245.190000px;}
.yc1{bottom:245.565000px;}
.yf7{bottom:248.790000px;}
.y3a{bottom:250.590000px;}
.y143{bottom:251.490000px;}
.y122{bottom:255.090000px;}
.y69{bottom:263.190000px;}
.y94{bottom:264.090000px;}
.yf6{bottom:269.490000px;}
.yba{bottom:271.290000px;}
.y142{bottom:272.190000px;}
.y18d{bottom:274.890000px;}
.y121{bottom:275.790000px;}
.y39{bottom:280.290000px;}
.y68{bottom:283.890000px;}
.yf5{bottom:290.190000px;}
.y141{bottom:292.890000px;}
.y93{bottom:293.790000px;}
.yd9{bottom:295.410000px;}
.y18c{bottom:295.590000px;}
.y120{bottom:296.490000px;}
.y38{bottom:300.990000px;}
.y16c{bottom:304.590000px;}
.y180{bottom:309.990000px;}
.yf4{bottom:310.890000px;}
.y67{bottom:313.590000px;}
.y92{bottom:314.490000px;}
.y18b{bottom:316.290000px;}
.y11f{bottom:317.190000px;}
.y177{bottom:319.890000px;}
.y37{bottom:321.690000px;}
.y16b{bottom:325.290000px;}
.yf3{bottom:331.590000px;}
.y140{bottom:334.290000px;}
.y91{bottom:335.190000px;}
.y18a{bottom:336.990000px;}
.y11e{bottom:337.890000px;}
.y17f{bottom:339.690000px;}
.y176{bottom:340.590000px;}
.y36{bottom:342.390000px;}
.y66{bottom:343.290000px;}
.yd8{bottom:348.690000px;}
.yf2{bottom:352.290000px;}
.y13f{bottom:354.990000px;}
.y90{bottom:355.890000px;}
.y11d{bottom:358.590000px;}
.y15e{bottom:361.290000px;}
.y35{bottom:363.090000px;}
.y189{bottom:366.690000px;}
.y17e{bottom:369.390000px;}
.y65{bottom:372.990000px;}
.y13e{bottom:375.690000px;}
.y8f{bottom:376.590000px;}
.y11c{bottom:379.290000px;}
.y15d{bottom:381.990000px;}
.y34{bottom:383.790000px;}
.y153{bottom:384.690000px;}
.y188{bottom:387.390000px;}
.yb9{bottom:392.790000px;}
.yf1{bottom:393.690000px;}
.y13d{bottom:396.390000px;}
.y8e{bottom:397.290000px;}
.y17d{bottom:399.090000px;}
.y11b{bottom:399.990000px;}
.yd5{bottom:401.970000px;}
.y64{bottom:402.690000px;}
.y33{bottom:404.490000px;}
.y152{bottom:405.390000px;}
.y187{bottom:408.090000px;}
.yf0{bottom:414.390000px;}
.y13c{bottom:417.090000px;}
.y8d{bottom:417.990000px;}
.y11a{bottom:420.690000px;}
.yb8{bottom:422.490000px;}
.y63{bottom:423.390000px;}
.y32{bottom:425.190000px;}
.y17c{bottom:428.790000px;}
.yef{bottom:435.090000px;}
.y13b{bottom:437.835000px;}
.y8c{bottom:438.735000px;}
.y119{bottom:441.435000px;}
.yb7{bottom:443.235000px;}
.y62{bottom:444.135000px;}
.y31{bottom:445.935000px;}
.y16a{bottom:446.835000px;}
.yee{bottom:455.835000px;}
.yd2{bottom:456.555000px;}
.y13a{bottom:458.535000px;}
.y8b{bottom:459.435000px;}
.y118{bottom:462.135000px;}
.yb6{bottom:463.935000px;}
.y61{bottom:464.835000px;}
.y30{bottom:466.635000px;}
.y169{bottom:467.535000px;}
.y175{bottom:473.835000px;}
.yed{bottom:476.535000px;}
.y139{bottom:479.235000px;}
.y8a{bottom:480.135000px;}
.y117{bottom:482.835000px;}
.yb5{bottom:484.635000px;}
.y60{bottom:485.535000px;}
.y2f{bottom:487.335000px;}
.y168{bottom:488.235000px;}
.y174{bottom:494.535000px;}
.yec{bottom:497.235000px;}
.y89{bottom:500.835000px;}
.y116{bottom:503.535000px;}
.yb4{bottom:505.335000px;}
.y5f{bottom:506.235000px;}
.y2e{bottom:508.035000px;}
.y138{bottom:508.935000px;}
.y15c{bottom:515.235000px;}
.yeb{bottom:517.935000px;}
.ycf{bottom:520.455000px;}
.y88{bottom:521.535000px;}
.y115{bottom:524.235000px;}
.yb3{bottom:526.035000px;}
.y5e{bottom:526.935000px;}
.y2d{bottom:528.735000px;}
.y137{bottom:529.635000px;}
.y173{bottom:535.935000px;}
.yea{bottom:538.635000px;}
.y87{bottom:542.235000px;}
.y114{bottom:544.935000px;}
.yb2{bottom:546.735000px;}
.y151{bottom:547.635000px;}
.y2c{bottom:549.435000px;}
.y136{bottom:550.335000px;}
.y5d{bottom:556.635000px;}
.y107{bottom:559.335000px;}
.y86{bottom:562.935000px;}
.y113{bottom:565.635000px;}
.yb1{bottom:567.435000px;}
.ye9{bottom:568.335000px;}
.y2b{bottom:570.135000px;}
.y135{bottom:571.035000px;}
.y5c{bottom:577.335000px;}
.y17b{bottom:580.035000px;}
.y85{bottom:583.635000px;}
.y15b{bottom:586.335000px;}
.yb0{bottom:588.135000px;}
.y106{bottom:589.035000px;}
.y167{bottom:591.735000px;}
.y112{bottom:595.335000px;}
.y5b{bottom:598.035000px;}
.y2a{bottom:599.835000px;}
.y134{bottom:600.735000px;}
.y84{bottom:604.335000px;}
.y15a{bottom:607.035000px;}
.yaf{bottom:608.835000px;}
.y150{bottom:609.735000px;}
.y111{bottom:616.035000px;}
.y42{bottom:617.475000px;}
.y5a{bottom:618.735000px;}
.y29{bottom:620.535000px;}
.y133{bottom:621.435000px;}
.y83{bottom:625.035000px;}
.y159{bottom:627.735000px;}
.y14f{bottom:630.435000px;}
.y110{bottom:636.735000px;}
.yae{bottom:638.535000px;}
.y59{bottom:639.435000px;}
.y28{bottom:641.235000px;}
.y132{bottom:642.135000px;}
.y82{bottom:645.735000px;}
.y158{bottom:648.435000px;}
.y17a{bottom:651.135000px;}
.ycb{bottom:654.195000px;}
.y10f{bottom:657.435000px;}
.y13{bottom:660.135000px;}
.y27{bottom:661.935000px;}
.y131{bottom:662.835000px;}
.y81{bottom:666.435000px;}
.yad{bottom:668.235000px;}
.ye8{bottom:669.135000px;}
.y186{bottom:671.835000px;}
.y10e{bottom:678.165000px;}
.y58{bottom:680.865000px;}
.y166{bottom:683.565000px;}
.y80{bottom:687.165000px;}
.y14e{bottom:689.865000px;}
.y26{bottom:691.665000px;}
.y130{bottom:692.565000px;}
.yac{bottom:697.965000px;}
.ye7{bottom:698.865000px;}
.y57{bottom:701.565000px;}
.y165{bottom:704.265000px;}
.y7f{bottom:707.865000px;}
.y14d{bottom:710.565000px;}
.y10d{bottom:719.565000px;}
.y25{bottom:721.365000px;}
.y56{bottom:722.265000px;}
.yc7{bottom:724.605000px;}
.yab{bottom:727.665000px;}
.y7e{bottom:728.565000px;}
.y14c{bottom:731.265000px;}
.y164{bottom:733.965000px;}
.y10c{bottom:740.265000px;}
.y55{bottom:742.965000px;}
.yaa{bottom:748.365000px;}
.y7d{bottom:749.265000px;}
.y24{bottom:751.065000px;}
.y14b{bottom:751.965000px;}
.y194{bottom:754.665000px;}
.y10b{bottom:760.965000px;}
.y54{bottom:763.665000px;}
.y7c{bottom:769.965000px;}
.y14a{bottom:772.665000px;}
.ya9{bottom:778.065000px;}
.y23{bottom:780.765000px;}
.y157{bottom:781.665000px;}
.y53{bottom:784.365000px;}
.y7b{bottom:790.665000px;}
.y105{bottom:793.365000px;}
.yc3{bottom:795.165000px;}
.ya8{bottom:798.765000px;}
.y22{bottom:801.465000px;}
.y156{bottom:802.365000px;}
.y52{bottom:805.065000px;}
.y7a{bottom:811.365000px;}
.y104{bottom:814.065000px;}
.y12f{bottom:823.065000px;}
.y51{bottom:825.765000px;}
.ya7{bottom:828.465000px;}
.y21{bottom:831.165000px;}
.ye6{bottom:832.065000px;}
.y103{bottom:834.765000px;}
.y79{bottom:841.065000px;}
.y172{bottom:843.765000px;}
.y50{bottom:846.465000px;}
.ya6{bottom:849.165000px;}
.y20{bottom:851.865000px;}
.ye5{bottom:852.765000px;}
.y102{bottom:855.465000px;}
.yc0{bottom:857.445000px;}
.y78{bottom:861.765000px;}
.y149{bottom:864.465000px;}
.y10a{bottom:870.765000px;}
.y12e{bottom:873.465000px;}
.y4f{bottom:876.165000px;}
.ya5{bottom:878.865000px;}
.y1f{bottom:881.565000px;}
.y77{bottom:882.465000px;}
.y171{bottom:885.165000px;}
.y109{bottom:891.465000px;}
.y12d{bottom:894.165000px;}
.y4e{bottom:896.865000px;}
.ya4{bottom:899.565000px;}
.y76{bottom:903.165000px;}
.y163{bottom:905.865000px;}
.y1e{bottom:911.265000px;}
.ye4{bottom:912.165000px;}
.y12c{bottom:914.910000px;}
.y4d{bottom:917.610000px;}
.y75{bottom:923.910000px;}
.y162{bottom:926.610000px;}
.ya3{bottom:929.310000px;}
.yc2{bottom:932.550000px;}
.ye3{bottom:932.910000px;}
.y12b{bottom:935.610000px;}
.y4c{bottom:938.310000px;}
.y1d{bottom:941.010000px;}
.y74{bottom:944.610000px;}
.y101{bottom:947.310000px;}
.ya2{bottom:950.010000px;}
.ye2{bottom:953.610000px;}
.y12a{bottom:956.310000px;}
.y1c{bottom:961.710000px;}
.y73{bottom:965.310000px;}
.y4b{bottom:968.010000px;}
.ye1{bottom:974.310000px;}
.y100{bottom:977.010000px;}
.ya1{bottom:979.710000px;}
.y170{bottom:986.010000px;}
.y185{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y72{bottom:995.010000px;}
.y1b{bottom:997.350000px;}
.y4a{bottom:997.710000px;}
.ya0{bottom:1000.410000px;}
.y155{bottom:1006.710000px;}
.y19{bottom:1012.110000px;}
.y71{bottom:1015.710000px;}
.yff{bottom:1018.410000px;}
.y49{bottom:1027.410000px;}
.y9f{bottom:1030.110000px;}
.y70{bottom:1036.410000px;}
.yfe{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y148{bottom:1048.110000px;}
.y48{bottom:1057.110000px;}
.y9e{bottom:1059.810000px;}
.y129{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y47{bottom:1077.810000px;}
.y9d{bottom:1080.510000px;}
.yfd{bottom:1089.510000px;}
.y46{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y9c{bottom:1110.210000px;}
.y45{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y44{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.116000px;}
.h13{height:28.260000px;}
.h11{height:30.041016px;}
.hf{height:42.210000px;}
.h12{height:45.061523px;}
.ha{height:49.868086px;}
.h5{height:52.020000px;}
.h15{height:52.290000px;}
.h1e{height:52.560000px;}
.h2{height:53.820000px;}
.h1d{height:53.856000px;}
.hc{height:55.275469px;}
.hd{height:60.082031px;}
.h20{height:61.171875px;}
.h7{height:61.189805px;}
.h18{height:61.560000px;}
.h1b{height:62.460000px;}
.he{height:63.000000px;}
.h1c{height:63.180000px;}
.h1f{height:63.720000px;}
.h4{height:65.884219px;}
.h10{height:65.970000px;}
.h3{height:67.824844px;}
.h1a{height:69.696000px;}
.h19{height:69.840000px;}
.h17{height:74.376000px;}
.h16{height:193.500000px;}
.h14{height:268.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:40.140000px;}
.wf{width:41.760000px;}
.wd{width:48.456000px;}
.wb{width:51.300000px;}
.w10{width:52.200000px;}
.we{width:52.380000px;}
.w11{width:52.416000px;}
.wa{width:56.700000px;}
.w3{width:75.060000px;}
.w14{width:84.276000px;}
.w15{width:84.420000px;}
.w8{width:84.990000px;}
.w12{width:105.660000px;}
.w13{width:169.410000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x19{left:7.740000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x1a{left:30.960000px;}
.x23{left:48.645000px;}
.x25{left:57.780000px;}
.x6{left:61.380000px;}
.x26{left:84.420000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x11{left:110.555987px;}
.xd{left:112.715987px;}
.x15{left:117.755987px;}
.x17{left:120.815987px;}
.x28{left:138.275987px;}
.x2{left:148.005000px;}
.x14{left:156.809987px;}
.x1{left:165.270000px;}
.x1b{left:216.570000px;}
.x1c{left:257.430000px;}
.x1d{left:306.615000px;}
.x18{left:322.274987px;}
.x12{left:340.094987px;}
.xe{left:354.674987px;}
.x1e{left:359.715000px;}
.x7{left:378.075000px;}
.x1f{left:402.375000px;}
.x16{left:428.474987px;}
.x13{left:446.474987px;}
.x20{left:455.475000px;}
.x21{left:508.605000px;}
.xf{left:532.184973px;}
.x10{left:538.304987px;}
.x22{left:614.985000px;}
.x8{left:662.730000px;}
.x24{left:699.990000px;}
.x27{left:723.209987px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.608000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls15{letter-spacing:3.840000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:6.528000pt;}
.ls8{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:8.320000pt;}
.ls19{letter-spacing:8.960000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls14{letter-spacing:12.800000pt;}
.ls11{letter-spacing:13.440000pt;}
.ls12{letter-spacing:14.080000pt;}
.lse{letter-spacing:15.360000pt;}
.ls17{letter-spacing:21.098667pt;}
.ws2{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-4.160000pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._19{width:2.891520pt;}
._9{width:3.789440pt;}
._8{width:5.376000pt;}
._7{width:6.848000pt;}
._d{width:7.744000pt;}
._c{width:9.024000pt;}
._18{width:9.984000pt;}
._e{width:11.136000pt;}
._f{width:12.224000pt;}
._10{width:13.696000pt;}
._11{width:14.720000pt;}
._1b{width:17.600000pt;}
._1c{width:19.008000pt;}
._a{width:20.416000pt;}
._b{width:21.304960pt;}
._12{width:22.976000pt;}
._13{width:24.000000pt;}
._20{width:24.945920pt;}
._21{width:26.104320pt;}
._15{width:27.171840pt;}
._14{width:28.288000pt;}
._1f{width:29.376000pt;}
._23{width:30.656000pt;}
._1d{width:32.256000pt;}
._1e{width:33.656960pt;}
._24{width:34.759040pt;}
._25{width:35.776000pt;}
._22{width:36.864000pt;}
._17{width:38.656000pt;}
._16{width:39.715840pt;}
._29{width:40.880640pt;}
._26{width:46.080000pt;}
._2a{width:49.280000pt;}
._2b{width:50.474667pt;}
._27{width:107.712000pt;}
._28{width:157.056000pt;}
._3{width:172.778667pt;}
._6{width:1657.365333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.yc5{bottom:10.880000pt;}
.y14{bottom:11.200000pt;}
.y43{bottom:11.360000pt;}
.yd7{bottom:12.000000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.yc9{bottom:18.240000pt;}
.yc6{bottom:18.880000pt;}
.y7{bottom:19.040000pt;}
.yd1{bottom:19.680000pt;}
.yd4{bottom:20.320000pt;}
.ydc{bottom:20.800000pt;}
.ycd{bottom:26.106667pt;}
.yca{bottom:26.240000pt;}
.yce{bottom:26.266667pt;}
.yd6{bottom:27.360000pt;}
.y5{bottom:33.120000pt;}
.yc4{bottom:34.240000pt;}
.y2{bottom:34.720000pt;}
.yd0{bottom:35.040000pt;}
.yd3{bottom:35.680000pt;}
.ydb{bottom:36.160000pt;}
.ycc{bottom:41.466667pt;}
.yc8{bottom:41.600000pt;}
.y12{bottom:51.040000pt;}
.y11{bottom:65.120000pt;}
.y41{bottom:97.280000pt;}
.y9b{bottom:97.920000pt;}
.y108{bottom:102.720000pt;}
.y154{bottom:105.120000pt;}
.y147{bottom:107.520000pt;}
.y128{bottom:108.320000pt;}
.ybf{bottom:109.120000pt;}
.y193{bottom:109.920000pt;}
.ye0{bottom:110.560000pt;}
.y9a{bottom:116.320000pt;}
.y184{bottom:117.120000pt;}
.y40{bottom:120.320000pt;}
.yfc{bottom:121.120000pt;}
.y6f{bottom:123.520000pt;}
.y146{bottom:125.920000pt;}
.y127{bottom:126.720000pt;}
.y192{bottom:128.320000pt;}
.ydf{bottom:128.960000pt;}
.y179{bottom:129.120000pt;}
.y16f{bottom:133.920000pt;}
.y3f{bottom:134.080000pt;}
.ybe{bottom:135.520000pt;}
.y3e{bottom:138.080000pt;}
.yfb{bottom:139.520000pt;}
.y6e{bottom:141.920000pt;}
.y99{bottom:142.720000pt;}
.y183{bottom:143.520000pt;}
.y126{bottom:145.120000pt;}
.y178{bottom:147.520000pt;}
.y145{bottom:152.320000pt;}
.y191{bottom:154.720000pt;}
.yde{bottom:155.360000pt;}
.y3d{bottom:156.480000pt;}
.y161{bottom:157.920000pt;}
.y6d{bottom:160.320000pt;}
.y98{bottom:161.120000pt;}
.ybd{bottom:161.920000pt;}
.y125{bottom:163.520000pt;}
.yfa{bottom:165.920000pt;}
.y182{bottom:169.920000pt;}
.y16e{bottom:170.720000pt;}
.y190{bottom:173.120000pt;}
.y160{bottom:176.346667pt;}
.y6c{bottom:178.746667pt;}
.y97{bottom:179.546667pt;}
.ydd{bottom:181.786667pt;}
.y124{bottom:181.946667pt;}
.yf9{bottom:184.346667pt;}
.y3c{bottom:185.946667pt;}
.ybc{bottom:188.346667pt;}
.y16d{bottom:189.146667pt;}
.y15f{bottom:194.746667pt;}
.y181{bottom:196.346667pt;}
.y6b{bottom:197.146667pt;}
.y96{bottom:197.946667pt;}
.y18f{bottom:199.546667pt;}
.y123{bottom:200.346667pt;}
.yf8{bottom:202.746667pt;}
.y3b{bottom:204.346667pt;}
.y144{bottom:205.146667pt;}
.yda{bottom:205.306667pt;}
.ybb{bottom:214.746667pt;}
.y6a{bottom:215.546667pt;}
.y95{bottom:216.346667pt;}
.y18e{bottom:217.946667pt;}
.yc1{bottom:218.280000pt;}
.yf7{bottom:221.146667pt;}
.y3a{bottom:222.746667pt;}
.y143{bottom:223.546667pt;}
.y122{bottom:226.746667pt;}
.y69{bottom:233.946667pt;}
.y94{bottom:234.746667pt;}
.yf6{bottom:239.546667pt;}
.yba{bottom:241.146667pt;}
.y142{bottom:241.946667pt;}
.y18d{bottom:244.346667pt;}
.y121{bottom:245.146667pt;}
.y39{bottom:249.146667pt;}
.y68{bottom:252.346667pt;}
.yf5{bottom:257.946667pt;}
.y141{bottom:260.346667pt;}
.y93{bottom:261.146667pt;}
.yd9{bottom:262.586667pt;}
.y18c{bottom:262.746667pt;}
.y120{bottom:263.546667pt;}
.y38{bottom:267.546667pt;}
.y16c{bottom:270.746667pt;}
.y180{bottom:275.546667pt;}
.yf4{bottom:276.346667pt;}
.y67{bottom:278.746667pt;}
.y92{bottom:279.546667pt;}
.y18b{bottom:281.146667pt;}
.y11f{bottom:281.946667pt;}
.y177{bottom:284.346667pt;}
.y37{bottom:285.946667pt;}
.y16b{bottom:289.146667pt;}
.yf3{bottom:294.746667pt;}
.y140{bottom:297.146667pt;}
.y91{bottom:297.946667pt;}
.y18a{bottom:299.546667pt;}
.y11e{bottom:300.346667pt;}
.y17f{bottom:301.946667pt;}
.y176{bottom:302.746667pt;}
.y36{bottom:304.346667pt;}
.y66{bottom:305.146667pt;}
.yd8{bottom:309.946667pt;}
.yf2{bottom:313.146667pt;}
.y13f{bottom:315.546667pt;}
.y90{bottom:316.346667pt;}
.y11d{bottom:318.746667pt;}
.y15e{bottom:321.146667pt;}
.y35{bottom:322.746667pt;}
.y189{bottom:325.946667pt;}
.y17e{bottom:328.346667pt;}
.y65{bottom:331.546667pt;}
.y13e{bottom:333.946667pt;}
.y8f{bottom:334.746667pt;}
.y11c{bottom:337.146667pt;}
.y15d{bottom:339.546667pt;}
.y34{bottom:341.146667pt;}
.y153{bottom:341.946667pt;}
.y188{bottom:344.346667pt;}
.yb9{bottom:349.146667pt;}
.yf1{bottom:349.946667pt;}
.y13d{bottom:352.346667pt;}
.y8e{bottom:353.146667pt;}
.y17d{bottom:354.746667pt;}
.y11b{bottom:355.546667pt;}
.yd5{bottom:357.306667pt;}
.y64{bottom:357.946667pt;}
.y33{bottom:359.546667pt;}
.y152{bottom:360.346667pt;}
.y187{bottom:362.746667pt;}
.yf0{bottom:368.346667pt;}
.y13c{bottom:370.746667pt;}
.y8d{bottom:371.546667pt;}
.y11a{bottom:373.946667pt;}
.yb8{bottom:375.546667pt;}
.y63{bottom:376.346667pt;}
.y32{bottom:377.946667pt;}
.y17c{bottom:381.146667pt;}
.yef{bottom:386.746667pt;}
.y13b{bottom:389.186667pt;}
.y8c{bottom:389.986667pt;}
.y119{bottom:392.386667pt;}
.yb7{bottom:393.986667pt;}
.y62{bottom:394.786667pt;}
.y31{bottom:396.386667pt;}
.y16a{bottom:397.186667pt;}
.yee{bottom:405.186667pt;}
.yd2{bottom:405.826667pt;}
.y13a{bottom:407.586667pt;}
.y8b{bottom:408.386667pt;}
.y118{bottom:410.786667pt;}
.yb6{bottom:412.386667pt;}
.y61{bottom:413.186667pt;}
.y30{bottom:414.786667pt;}
.y169{bottom:415.586667pt;}
.y175{bottom:421.186667pt;}
.yed{bottom:423.586667pt;}
.y139{bottom:425.986667pt;}
.y8a{bottom:426.786667pt;}
.y117{bottom:429.186667pt;}
.yb5{bottom:430.786667pt;}
.y60{bottom:431.586667pt;}
.y2f{bottom:433.186667pt;}
.y168{bottom:433.986667pt;}
.y174{bottom:439.586667pt;}
.yec{bottom:441.986667pt;}
.y89{bottom:445.186667pt;}
.y116{bottom:447.586667pt;}
.yb4{bottom:449.186667pt;}
.y5f{bottom:449.986667pt;}
.y2e{bottom:451.586667pt;}
.y138{bottom:452.386667pt;}
.y15c{bottom:457.986667pt;}
.yeb{bottom:460.386667pt;}
.ycf{bottom:462.626667pt;}
.y88{bottom:463.586667pt;}
.y115{bottom:465.986667pt;}
.yb3{bottom:467.586667pt;}
.y5e{bottom:468.386667pt;}
.y2d{bottom:469.986667pt;}
.y137{bottom:470.786667pt;}
.y173{bottom:476.386667pt;}
.yea{bottom:478.786667pt;}
.y87{bottom:481.986667pt;}
.y114{bottom:484.386667pt;}
.yb2{bottom:485.986667pt;}
.y151{bottom:486.786667pt;}
.y2c{bottom:488.386667pt;}
.y136{bottom:489.186667pt;}
.y5d{bottom:494.786667pt;}
.y107{bottom:497.186667pt;}
.y86{bottom:500.386667pt;}
.y113{bottom:502.786667pt;}
.yb1{bottom:504.386667pt;}
.ye9{bottom:505.186667pt;}
.y2b{bottom:506.786667pt;}
.y135{bottom:507.586667pt;}
.y5c{bottom:513.186667pt;}
.y17b{bottom:515.586667pt;}
.y85{bottom:518.786667pt;}
.y15b{bottom:521.186667pt;}
.yb0{bottom:522.786667pt;}
.y106{bottom:523.586667pt;}
.y167{bottom:525.986667pt;}
.y112{bottom:529.186667pt;}
.y5b{bottom:531.586667pt;}
.y2a{bottom:533.186667pt;}
.y134{bottom:533.986667pt;}
.y84{bottom:537.186667pt;}
.y15a{bottom:539.586667pt;}
.yaf{bottom:541.186667pt;}
.y150{bottom:541.986667pt;}
.y111{bottom:547.586667pt;}
.y42{bottom:548.866667pt;}
.y5a{bottom:549.986667pt;}
.y29{bottom:551.586667pt;}
.y133{bottom:552.386667pt;}
.y83{bottom:555.586667pt;}
.y159{bottom:557.986667pt;}
.y14f{bottom:560.386667pt;}
.y110{bottom:565.986667pt;}
.yae{bottom:567.586667pt;}
.y59{bottom:568.386667pt;}
.y28{bottom:569.986667pt;}
.y132{bottom:570.786667pt;}
.y82{bottom:573.986667pt;}
.y158{bottom:576.386667pt;}
.y17a{bottom:578.786667pt;}
.ycb{bottom:581.506667pt;}
.y10f{bottom:584.386667pt;}
.y13{bottom:586.786667pt;}
.y27{bottom:588.386667pt;}
.y131{bottom:589.186667pt;}
.y81{bottom:592.386667pt;}
.yad{bottom:593.986667pt;}
.ye8{bottom:594.786667pt;}
.y186{bottom:597.186667pt;}
.y10e{bottom:602.813333pt;}
.y58{bottom:605.213333pt;}
.y166{bottom:607.613333pt;}
.y80{bottom:610.813333pt;}
.y14e{bottom:613.213333pt;}
.y26{bottom:614.813333pt;}
.y130{bottom:615.613333pt;}
.yac{bottom:620.413333pt;}
.ye7{bottom:621.213333pt;}
.y57{bottom:623.613333pt;}
.y165{bottom:626.013333pt;}
.y7f{bottom:629.213333pt;}
.y14d{bottom:631.613333pt;}
.y10d{bottom:639.613333pt;}
.y25{bottom:641.213333pt;}
.y56{bottom:642.013333pt;}
.yc7{bottom:644.093333pt;}
.yab{bottom:646.813333pt;}
.y7e{bottom:647.613333pt;}
.y14c{bottom:650.013333pt;}
.y164{bottom:652.413333pt;}
.y10c{bottom:658.013333pt;}
.y55{bottom:660.413333pt;}
.yaa{bottom:665.213333pt;}
.y7d{bottom:666.013333pt;}
.y24{bottom:667.613333pt;}
.y14b{bottom:668.413333pt;}
.y194{bottom:670.813333pt;}
.y10b{bottom:676.413333pt;}
.y54{bottom:678.813333pt;}
.y7c{bottom:684.413333pt;}
.y14a{bottom:686.813333pt;}
.ya9{bottom:691.613333pt;}
.y23{bottom:694.013333pt;}
.y157{bottom:694.813333pt;}
.y53{bottom:697.213333pt;}
.y7b{bottom:702.813333pt;}
.y105{bottom:705.213333pt;}
.yc3{bottom:706.813333pt;}
.ya8{bottom:710.013333pt;}
.y22{bottom:712.413333pt;}
.y156{bottom:713.213333pt;}
.y52{bottom:715.613333pt;}
.y7a{bottom:721.213333pt;}
.y104{bottom:723.613333pt;}
.y12f{bottom:731.613333pt;}
.y51{bottom:734.013333pt;}
.ya7{bottom:736.413333pt;}
.y21{bottom:738.813333pt;}
.ye6{bottom:739.613333pt;}
.y103{bottom:742.013333pt;}
.y79{bottom:747.613333pt;}
.y172{bottom:750.013333pt;}
.y50{bottom:752.413333pt;}
.ya6{bottom:754.813333pt;}
.y20{bottom:757.213333pt;}
.ye5{bottom:758.013333pt;}
.y102{bottom:760.413333pt;}
.yc0{bottom:762.173333pt;}
.y78{bottom:766.013333pt;}
.y149{bottom:768.413333pt;}
.y10a{bottom:774.013333pt;}
.y12e{bottom:776.413333pt;}
.y4f{bottom:778.813333pt;}
.ya5{bottom:781.213333pt;}
.y1f{bottom:783.613333pt;}
.y77{bottom:784.413333pt;}
.y171{bottom:786.813333pt;}
.y109{bottom:792.413333pt;}
.y12d{bottom:794.813333pt;}
.y4e{bottom:797.213333pt;}
.ya4{bottom:799.613333pt;}
.y76{bottom:802.813333pt;}
.y163{bottom:805.213333pt;}
.y1e{bottom:810.013333pt;}
.ye4{bottom:810.813333pt;}
.y12c{bottom:813.253333pt;}
.y4d{bottom:815.653333pt;}
.y75{bottom:821.253333pt;}
.y162{bottom:823.653333pt;}
.ya3{bottom:826.053333pt;}
.yc2{bottom:828.933333pt;}
.ye3{bottom:829.253333pt;}
.y12b{bottom:831.653333pt;}
.y4c{bottom:834.053333pt;}
.y1d{bottom:836.453333pt;}
.y74{bottom:839.653333pt;}
.y101{bottom:842.053333pt;}
.ya2{bottom:844.453333pt;}
.ye2{bottom:847.653333pt;}
.y12a{bottom:850.053333pt;}
.y1c{bottom:854.853333pt;}
.y73{bottom:858.053333pt;}
.y4b{bottom:860.453333pt;}
.ye1{bottom:866.053333pt;}
.y100{bottom:868.453333pt;}
.ya1{bottom:870.853333pt;}
.y170{bottom:876.453333pt;}
.y185{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y72{bottom:884.453333pt;}
.y1b{bottom:886.533333pt;}
.y4a{bottom:886.853333pt;}
.ya0{bottom:889.253333pt;}
.y155{bottom:894.853333pt;}
.y19{bottom:899.653333pt;}
.y71{bottom:902.853333pt;}
.yff{bottom:905.253333pt;}
.y49{bottom:913.253333pt;}
.y9f{bottom:915.653333pt;}
.y70{bottom:921.253333pt;}
.yfe{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y148{bottom:931.653333pt;}
.y48{bottom:939.653333pt;}
.y9e{bottom:942.053333pt;}
.y129{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y47{bottom:958.053333pt;}
.y9d{bottom:960.453333pt;}
.yfd{bottom:968.453333pt;}
.y46{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y9c{bottom:986.853333pt;}
.y45{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y44{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:24.992000pt;}
.h13{height:25.120000pt;}
.h11{height:26.703125pt;}
.hf{height:37.520000pt;}
.h12{height:40.054688pt;}
.ha{height:44.327188pt;}
.h5{height:46.240000pt;}
.h15{height:46.480000pt;}
.h1e{height:46.720000pt;}
.h2{height:47.840000pt;}
.h1d{height:47.872000pt;}
.hc{height:49.133750pt;}
.hd{height:53.406250pt;}
.h20{height:54.375000pt;}
.h7{height:54.390938pt;}
.h18{height:54.720000pt;}
.h1b{height:55.520000pt;}
.he{height:56.000000pt;}
.h1c{height:56.160000pt;}
.h1f{height:56.640000pt;}
.h4{height:58.563750pt;}
.h10{height:58.640000pt;}
.h3{height:60.288750pt;}
.h1a{height:61.952000pt;}
.h19{height:62.080000pt;}
.h17{height:66.112000pt;}
.h16{height:172.000000pt;}
.h14{height:238.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:35.680000pt;}
.wf{width:37.120000pt;}
.wd{width:43.072000pt;}
.wb{width:45.600000pt;}
.w10{width:46.400000pt;}
.we{width:46.560000pt;}
.w11{width:46.592000pt;}
.wa{width:50.400000pt;}
.w3{width:66.720000pt;}
.w14{width:74.912000pt;}
.w15{width:75.040000pt;}
.w8{width:75.546667pt;}
.w12{width:93.920000pt;}
.w13{width:150.586667pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x19{left:6.880000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x1a{left:27.520000pt;}
.x23{left:43.240000pt;}
.x25{left:51.360000pt;}
.x6{left:54.560000pt;}
.x26{left:75.040000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x11{left:98.271988pt;}
.xd{left:100.191988pt;}
.x15{left:104.671988pt;}
.x17{left:107.391988pt;}
.x28{left:122.911988pt;}
.x2{left:131.560000pt;}
.x14{left:139.386655pt;}
.x1{left:146.906667pt;}
.x1b{left:192.506667pt;}
.x1c{left:228.826667pt;}
.x1d{left:272.546667pt;}
.x18{left:286.466655pt;}
.x12{left:302.306655pt;}
.xe{left:315.266655pt;}
.x1e{left:319.746667pt;}
.x7{left:336.066667pt;}
.x1f{left:357.666667pt;}
.x16{left:380.866655pt;}
.x13{left:396.866655pt;}
.x20{left:404.866667pt;}
.x21{left:452.093333pt;}
.xf{left:473.053310pt;}
.x10{left:478.493322pt;}
.x22{left:546.653333pt;}
.x8{left:589.093333pt;}
.x24{left:622.213333pt;}
.x27{left:642.853322pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  