
    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_5cf2e39e1e66498c997c9de4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.089355;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_0698f380db74391e01020f34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.901855;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_361b2db41287c0f14d189896.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089355;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_220a245903d5229a26e332ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_69d000d2aeac123f26c80d1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.259800px;}
.ls4{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.408000px;}
.lse{letter-spacing:13.824000px;}
.ls9{letter-spacing:17.424000px;}
.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;}
}
.ws4{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.800000px;}
.ws3{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.506480px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.179360px;}
._1{width:1.887360px;}
._c{width:3.051360px;}
._5{width:4.248000px;}
._23{width:5.328000px;}
._e{width:6.346080px;}
._d{width:7.416000px;}
._15{width:9.360000px;}
._14{width:10.368000px;}
._12{width:11.907360px;}
._2{width:12.960000px;}
._17{width:14.153280px;}
._7{width:15.408000px;}
._6{width:16.704000px;}
._8{width:17.928000px;}
._11{width:19.008000px;}
._26{width:20.027280px;}
._16{width:21.204000px;}
._22{width:22.248000px;}
._21{width:24.024000px;}
._24{width:25.522080px;}
._13{width:26.712000px;}
._1d{width:27.792000px;}
._28{width:28.956000px;}
._20{width:30.528000px;}
._1f{width:31.536000px;}
._25{width:32.622960px;}
._10{width:34.227360px;}
._f{width:35.280000px;}
._27{width:36.356640px;}
._1e{width:37.368000px;}
._1b{width:38.880000px;}
._1c{width:40.203360px;}
._30{width:41.312640px;}
._29{width:42.480000px;}
._2f{width:43.484640px;}
._b{width:44.784000px;}
._9{width:45.840000px;}
._a{width:46.966080px;}
._2a{width:49.906560px;}
._4{width:51.147360px;}
._3{width:52.344000px;}
._35{width:53.431200px;}
._33{width:55.944000px;}
._2c{width:57.339360px;}
._2b{width:58.392000px;}
._34{width:61.560000px;}
._32{width:62.712000px;}
._31{width:64.152000px;}
._36{width:66.456000px;}
._19{width:69.192000px;}
._18{width:70.272000px;}
._2e{width:89.955360px;}
._2d{width:91.152000px;}
._1a{width:304.392000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y23{bottom:56.196000px;}
.ye0{bottom:89.136000px;}
.y22{bottom:94.356000px;}
.y80{bottom:96.696000px;}
.ybc{bottom:99.396000px;}
.y198{bottom:101.916000px;}
.y85{bottom:104.616000px;}
.y40{bottom:107.136000px;}
.yb1{bottom:109.836000px;}
.y95{bottom:112.356000px;}
.y60{bottom:112.716000px;}
.y19a{bottom:113.076000px;}
.y8e{bottom:115.056000px;}
.y1ad{bottom:117.036000px;}
.ydf{bottom:120.096000px;}
.y21{bottom:125.316000px;}
.y133{bottom:128.196000px;}
.y7f{bottom:130.536000px;}
.y13d{bottom:133.416000px;}
.y84{bottom:135.756000px;}
.y182{bottom:136.656000px;}
.y197{bottom:138.096000px;}
.y129{bottom:138.636000px;}
.yb0{bottom:140.796000px;}
.y3f{bottom:143.316000px;}
.y176{bottom:144.036000px;}
.y8d{bottom:146.016000px;}
.y1ac{bottom:148.176000px;}
.y94{bottom:148.536000px;}
.y5f{bottom:149.076000px;}
.yde{bottom:151.230000px;}
.y132{bottom:154.110000px;}
.y20{bottom:156.450000px;}
.y13c{bottom:159.330000px;}
.y7e{bottom:161.490000px;}
.y123{bottom:164.370000px;}
.y83{bottom:166.710000px;}
.y181{bottom:167.790000px;}
.yaf{bottom:171.930000px;}
.y196{bottom:174.450000px;}
.y175{bottom:175.170000px;}
.y3e{bottom:177.150000px;}
.y1ab{bottom:179.130000px;}
.ydd{bottom:180.030000px;}
.y11e{bottom:182.190000px;}
.y93{bottom:184.710000px;}
.y13b{bottom:185.070000px;}
.y5e{bottom:185.250000px;}
.y1f{bottom:187.410000px;}
.y122{bottom:190.290000px;}
.y7d{bottom:192.630000px;}
.y14b{bottom:195.510000px;}
.y82{bottom:197.850000px;}
.y180{bottom:198.750000px;}
.yae{bottom:202.890000px;}
.ydc{bottom:205.770000px;}
.y174{bottom:206.130000px;}
.y3d{bottom:208.110000px;}
.y1aa{bottom:210.270000px;}
.y195{bottom:210.630000px;}
.y13a{bottom:210.990000px;}
.y10c{bottom:213.330000px;}
.y121{bottom:216.210000px;}
.y1e{bottom:218.550000px;}
.y92{bottom:220.890000px;}
.yca{bottom:221.430000px;}
.ybb{bottom:223.590000px;}
.y7c{bottom:226.110000px;}
.y81{bottom:228.810000px;}
.y17f{bottom:229.890000px;}
.ydb{bottom:231.690000px;}
.y189{bottom:231.870000px;}
.y5d{bottom:234.030000px;}
.y139{bottom:236.910000px;}
.y173{bottom:237.270000px;}
.y3c{bottom:239.250000px;}
.y1a9{bottom:241.230000px;}
.y164{bottom:241.590000px;}
.y128{bottom:242.130000px;}
.y10b{bottom:244.290000px;}
.y194{bottom:246.810000px;}
.yc9{bottom:247.170000px;}
.y1d{bottom:249.510000px;}
.yba{bottom:252.390000px;}
.yfa{bottom:254.730000px;}
.y91{bottom:257.070000px;}
.yda{bottom:257.610000px;}
.y7b{bottom:259.770000px;}
.y17e{bottom:260.850000px;}
.y105{bottom:262.650000px;}
.y5c{bottom:264.990000px;}
.y14a{bottom:267.870000px;}
.y188{bottom:268.050000px;}
.y172{bottom:268.230000px;}
.y3b{bottom:270.210000px;}
.y1a8{bottom:272.370000px;}
.yc8{bottom:273.090000px;}
.y10a{bottom:275.430000px;}
.yb9{bottom:278.310000px;}
.y1c{bottom:280.470000px;}
.y193{bottom:283.035000px;}
.yd9{bottom:283.395000px;}
.yf9{bottom:285.735000px;}
.y104{bottom:288.615000px;}
.y7a{bottom:290.955000px;}
.y17d{bottom:292.035000px;}
.y90{bottom:293.475000px;}
.y149{bottom:293.835000px;}
.y5b{bottom:296.175000px;}
.ya2{bottom:299.055000px;}
.y171{bottom:299.415000px;}
.y3a{bottom:301.215000px;}
.y1a7{bottom:303.375000px;}
.yb8{bottom:304.095000px;}
.y187{bottom:304.275000px;}
.y109{bottom:306.435000px;}
.y12b{bottom:309.315000px;}
.y1b{bottom:311.655000px;}
.y103{bottom:314.535000px;}
.yf8{bottom:316.875000px;}
.y192{bottom:319.215000px;}
.y148{bottom:319.755000px;}
.y79{bottom:321.915000px;}
.y17c{bottom:322.995000px;}
.ya1{bottom:324.795000px;}
.y5a{bottom:327.135000px;}
.y8f{bottom:329.655000px;}
.yb7{bottom:330.015000px;}
.y170{bottom:330.375000px;}
.y39{bottom:332.355000px;}
.y1a6{bottom:334.515000px;}
.y12a{bottom:335.235000px;}
.y108{bottom:337.575000px;}
.y186{bottom:338.115000px;}
.y102{bottom:340.455000px;}
.y1a{bottom:342.615000px;}
.y142{bottom:345.495000px;}
.yf7{bottom:347.835000px;}
.ya0{bottom:350.715000px;}
.y78{bottom:353.055000px;}
.y17b{bottom:354.135000px;}
.y191{bottom:355.575000px;}
.y158{bottom:355.935000px;}
.y59{bottom:358.275000px;}
.y163{bottom:361.155000px;}
.y16f{bottom:361.515000px;}
.y38{bottom:363.315000px;}
.y1a5{bottom:365.475000px;}
.y101{bottom:366.195000px;}
.y107{bottom:368.535000px;}
.y141{bottom:371.415000px;}
.y19{bottom:373.755000px;}
.y9f{bottom:376.635000px;}
.yf6{bottom:378.975000px;}
.y157{bottom:381.855000px;}
.y77{bottom:384.015000px;}
.y17a{bottom:385.095000px;}
.y162{bottom:386.895000px;}
.y58{bottom:389.235000px;}
.y190{bottom:391.755000px;}
.y16e{bottom:392.475000px;}
.y37{bottom:394.455000px;}
.y1a4{bottom:396.615000px;}
.y140{bottom:397.335000px;}
.y106{bottom:399.675000px;}
.y9e{bottom:402.555000px;}
.y18{bottom:404.715000px;}
.y156{bottom:407.595000px;}
.yf5{bottom:409.935000px;}
.y161{bottom:412.815000px;}
.y76{bottom:415.155000px;}
.y57{bottom:420.375000px;}
.y127{bottom:423.255000px;}
.y16d{bottom:423.615000px;}
.y36{bottom:425.415000px;}
.y1ae{bottom:425.595000px;}
.y1a3{bottom:427.575000px;}
.y18f{bottom:427.935000px;}
.y9d{bottom:428.295000px;}
.yc7{bottom:430.635000px;}
.y179{bottom:431.175000px;}
.y155{bottom:433.515000px;}
.y17{bottom:435.855000px;}
.y135{bottom:438.735000px;}
.yf4{bottom:441.075000px;}
.y75{bottom:446.115000px;}
.y126{bottom:448.995000px;}
.y56{bottom:451.335000px;}
.y9c{bottom:454.215000px;}
.y16c{bottom:454.575000px;}
.y35{bottom:456.555000px;}
.y1a2{bottom:458.715000px;}
.y154{bottom:459.435000px;}
.yc6{bottom:461.775000px;}
.y18e{bottom:464.115000px;}
.y134{bottom:464.655000px;}
.y16{bottom:466.815000px;}
.y14d{bottom:469.695000px;}
.yf3{bottom:472.035000px;}
.y125{bottom:474.915000px;}
.y74{bottom:477.255000px;}
.y9b{bottom:480.135000px;}
.y55{bottom:482.475000px;}
.y153{bottom:485.355000px;}
.y16b{bottom:485.715000px;}
.y199{bottom:487.335000px;}
.y34{bottom:487.515000px;}
.y1a1{bottom:489.675000px;}
.y11d{bottom:490.395000px;}
.yc5{bottom:492.735000px;}
.y14c{bottom:495.615000px;}
.y15{bottom:497.955000px;}
.y18d{bottom:500.475000px;}
.y124{bottom:500.835000px;}
.yf2{bottom:503.175000px;}
.yad{bottom:506.055000px;}
.y73{bottom:508.215000px;}
.y152{bottom:511.095000px;}
.y54{bottom:513.435000px;}
.y11c{bottom:516.315000px;}
.y16a{bottom:518.475000px;}
.y33{bottom:518.655000px;}
.y131{bottom:521.535000px;}
.yc4{bottom:523.875000px;}
.ya9{bottom:526.755000px;}
.y14{bottom:528.915000px;}
.yac{bottom:531.795000px;}
.yf1{bottom:534.135000px;}
.y1a0{bottom:535.755000px;}
.y18c{bottom:536.655000px;}
.y151{bottom:537.015000px;}
.y72{bottom:539.355000px;}
.y11b{bottom:542.235000px;}
.y53{bottom:544.575000px;}
.y130{bottom:547.455000px;}
.y32{bottom:549.615000px;}
.ye7{bottom:552.495000px;}
.ya8{bottom:554.835000px;}
.yab{bottom:557.715000px;}
.y13{bottom:560.055000px;}
.y150{bottom:562.935000px;}
.yf0{bottom:565.305000px;}
.y19f{bottom:566.745000px;}
.y11a{bottom:568.185000px;}
.y71{bottom:570.345000px;}
.y18b{bottom:572.865000px;}
.y12f{bottom:573.225000px;}
.y52{bottom:575.565000px;}
.ye6{bottom:578.445000px;}
.y31{bottom:580.785000px;}
.yaa{bottom:583.665000px;}
.ya7{bottom:586.005000px;}
.y14f{bottom:588.885000px;}
.y12{bottom:591.045000px;}
.y160{bottom:593.925000px;}
.yef{bottom:596.265000px;}
.y12e{bottom:599.145000px;}
.y70{bottom:601.485000px;}
.ye5{bottom:604.365000px;}
.y51{bottom:606.705000px;}
.y120{bottom:609.585000px;}
.y30{bottom:611.745000px;}
.y19e{bottom:612.825000px;}
.ya6{bottom:616.965000px;}
.y15f{bottom:619.845000px;}
.y11{bottom:622.185000px;}
.y12d{bottom:625.065000px;}
.yee{bottom:627.405000px;}
.ye4{bottom:630.285000px;}
.y6f{bottom:632.445000px;}
.y11f{bottom:635.325000px;}
.y50{bottom:637.665000px;}
.y2f{bottom:642.885000px;}
.y19d{bottom:643.965000px;}
.y15e{bottom:645.765000px;}
.ya5{bottom:648.105000px;}
.y12c{bottom:650.985000px;}
.y10{bottom:653.145000px;}
.ye3{bottom:656.025000px;}
.yed{bottom:658.365000px;}
.y9a{bottom:661.245000px;}
.y6e{bottom:663.585000px;}
.y4f{bottom:668.805000px;}
.y15d{bottom:671.685000px;}
.y2e{bottom:673.845000px;}
.yc3{bottom:676.725000px;}
.ya4{bottom:679.065000px;}
.y178{bottom:681.585000px;}
.ye2{bottom:681.945000px;}
.yf{bottom:684.285000px;}
.y99{bottom:687.165000px;}
.y119{bottom:689.505000px;}
.y19c{bottom:689.865000px;}
.y185{bottom:692.385000px;}
.y6d{bottom:694.545000px;}
.y177{bottom:697.425000px;}
.y4e{bottom:699.765000px;}
.yc2{bottom:702.645000px;}
.y2d{bottom:704.985000px;}
.ye1{bottom:707.865000px;}
.ya3{bottom:710.205000px;}
.y98{bottom:713.085000px;}
.ye{bottom:715.245000px;}
.y184{bottom:718.125000px;}
.y118{bottom:720.465000px;}
.y19b{bottom:721.005000px;}
.y6c{bottom:725.685000px;}
.yc1{bottom:728.565000px;}
.y4d{bottom:730.905000px;}
.y18a{bottom:733.245000px;}
.y2c{bottom:735.945000px;}
.y97{bottom:738.825000px;}
.y147{bottom:741.165000px;}
.y183{bottom:744.045000px;}
.yd{bottom:746.385000px;}
.y117{bottom:751.605000px;}
.yc0{bottom:754.485000px;}
.y6b{bottom:756.645000px;}
.y4c{bottom:761.865000px;}
.y96{bottom:764.745000px;}
.y2b{bottom:767.085000px;}
.y169{bottom:769.965000px;}
.y146{bottom:772.305000px;}
.yc{bottom:777.345000px;}
.ybf{bottom:780.225000px;}
.y116{bottom:782.565000px;}
.y15b{bottom:785.445000px;}
.y6a{bottom:787.785000px;}
.yec{bottom:790.665000px;}
.y4b{bottom:792.825000px;}
.y168{bottom:795.705000px;}
.y2a{bottom:798.045000px;}
.y145{bottom:803.265000px;}
.ybe{bottom:806.145000px;}
.yb{bottom:808.485000px;}
.y15a{bottom:811.365000px;}
.y115{bottom:813.525000px;}
.yeb{bottom:816.405000px;}
.y69{bottom:818.745000px;}
.y167{bottom:821.625000px;}
.y4a{bottom:823.965000px;}
.yd0{bottom:826.845000px;}
.y29{bottom:829.185000px;}
.ybd{bottom:832.065000px;}
.y144{bottom:834.225000px;}
.y159{bottom:837.105000px;}
.ya{bottom:839.445000px;}
.yea{bottom:842.325000px;}
.y114{bottom:844.665000px;}
.y166{bottom:847.590000px;}
.y68{bottom:849.930000px;}
.y13f{bottom:852.270000px;}
.ycf{bottom:852.810000px;}
.y49{bottom:854.970000px;}
.y28{bottom:860.190000px;}
.y14e{bottom:863.070000px;}
.y143{bottom:865.410000px;}
.y15c{bottom:867.930000px;}
.ye9{bottom:868.290000px;}
.y9{bottom:870.630000px;}
.y165{bottom:873.510000px;}
.y113{bottom:875.670000px;}
.yce{bottom:878.550000px;}
.y67{bottom:880.890000px;}
.yb6{bottom:883.770000px;}
.y48{bottom:886.110000px;}
.y13e{bottom:888.630000px;}
.y100{bottom:888.990000px;}
.y27{bottom:891.330000px;}
.ye8{bottom:894.210000px;}
.yd8{bottom:899.250000px;}
.y8{bottom:901.590000px;}
.ycd{bottom:904.470000px;}
.y112{bottom:906.810000px;}
.yb5{bottom:909.690000px;}
.y66{bottom:912.030000px;}
.yff{bottom:914.910000px;}
.y47{bottom:917.070000px;}
.y138{bottom:919.950000px;}
.y26{bottom:922.290000px;}
.yd7{bottom:925.170000px;}
.ycc{bottom:930.390000px;}
.y7{bottom:932.730000px;}
.yb4{bottom:935.610000px;}
.y111{bottom:937.770000px;}
.yfe{bottom:940.650000px;}
.y65{bottom:942.990000px;}
.y137{bottom:945.870000px;}
.y46{bottom:948.210000px;}
.yd6{bottom:951.090000px;}
.y8c{bottom:953.430000px;}
.y25{bottom:955.770000px;}
.ycb{bottom:956.310000px;}
.yb3{bottom:961.350000px;}
.y6{bottom:963.690000px;}
.yfd{bottom:966.570000px;}
.y110{bottom:968.910000px;}
.y136{bottom:971.790000px;}
.y64{bottom:974.130000px;}
.yd5{bottom:977.010000px;}
.y45{bottom:979.170000px;}
.y8b{bottom:984.390000px;}
.yb2{bottom:987.270000px;}
.y24{bottom:992.130000px;}
.yfc{bottom:992.490000px;}
.y5{bottom:994.830000px;}
.y10f{bottom:997.710000px;}
.yd4{bottom:1002.750000px;}
.y63{bottom:1005.090000px;}
.y44{bottom:1010.310000px;}
.y8a{bottom:1015.530000px;}
.yfb{bottom:1018.410000px;}
.y10e{bottom:1023.450000px;}
.y4{bottom:1028.310000px;}
.yd3{bottom:1028.670000px;}
.y62{bottom:1036.230000px;}
.y43{bottom:1041.270000px;}
.y89{bottom:1046.490000px;}
.y10d{bottom:1049.370000px;}
.yd2{bottom:1054.590000px;}
.y3{bottom:1064.490000px;}
.y61{bottom:1067.190000px;}
.y42{bottom:1072.410000px;}
.y88{bottom:1077.630000px;}
.yd1{bottom:1080.510000px;}
.y2{bottom:1100.670000px;}
.y41{bottom:1103.370000px;}
.y87{bottom:1108.590000px;}
.y1{bottom:1137.060000px;}
.y86{bottom:1139.760000px;}
.h4{height:41.726953px;}
.hb{height:50.273438px;}
.h9{height:52.260820px;}
.h6{height:53.603086px;}
.h7{height:59.439023px;}
.h3{height:62.964844px;}
.h5{height:64.582031px;}
.h8{height:71.613281px;}
.h2{height:73.668867px;}
.ha{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x4{left:117.755987px;}
.x5{left:118.835987px;}
.x8{left:120.995987px;}
.x6{left:122.075987px;}
.x7{left:124.055987px;}
.x3{left:421.994987px;}
.x2{left:425.774987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.362667pt;}
.lse{letter-spacing:12.288000pt;}
.ls9{letter-spacing:15.488000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.600000pt;}
.ws3{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.672427pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.048320pt;}
._1{width:1.677653pt;}
._c{width:2.712320pt;}
._5{width:3.776000pt;}
._23{width:4.736000pt;}
._e{width:5.640960pt;}
._d{width:6.592000pt;}
._15{width:8.320000pt;}
._14{width:9.216000pt;}
._12{width:10.584320pt;}
._2{width:11.520000pt;}
._17{width:12.580693pt;}
._7{width:13.696000pt;}
._6{width:14.848000pt;}
._8{width:15.936000pt;}
._11{width:16.896000pt;}
._26{width:17.802027pt;}
._16{width:18.848000pt;}
._22{width:19.776000pt;}
._21{width:21.354667pt;}
._24{width:22.686293pt;}
._13{width:23.744000pt;}
._1d{width:24.704000pt;}
._28{width:25.738667pt;}
._20{width:27.136000pt;}
._1f{width:28.032000pt;}
._25{width:28.998187pt;}
._10{width:30.424320pt;}
._f{width:31.360000pt;}
._27{width:32.317013pt;}
._1e{width:33.216000pt;}
._1b{width:34.560000pt;}
._1c{width:35.736320pt;}
._30{width:36.722347pt;}
._29{width:37.760000pt;}
._2f{width:38.653013pt;}
._b{width:39.808000pt;}
._9{width:40.746667pt;}
._a{width:41.747627pt;}
._2a{width:44.361387pt;}
._4{width:45.464320pt;}
._3{width:46.528000pt;}
._35{width:47.494400pt;}
._33{width:49.728000pt;}
._2c{width:50.968320pt;}
._2b{width:51.904000pt;}
._34{width:54.720000pt;}
._32{width:55.744000pt;}
._31{width:57.024000pt;}
._36{width:59.072000pt;}
._19{width:61.504000pt;}
._18{width:62.464000pt;}
._2e{width:79.960320pt;}
._2d{width:81.024000pt;}
._1a{width:270.570667pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:49.952000pt;}
.ye0{bottom:79.232000pt;}
.y22{bottom:83.872000pt;}
.y80{bottom:85.952000pt;}
.ybc{bottom:88.352000pt;}
.y198{bottom:90.592000pt;}
.y85{bottom:92.992000pt;}
.y40{bottom:95.232000pt;}
.yb1{bottom:97.632000pt;}
.y95{bottom:99.872000pt;}
.y60{bottom:100.192000pt;}
.y19a{bottom:100.512000pt;}
.y8e{bottom:102.272000pt;}
.y1ad{bottom:104.032000pt;}
.ydf{bottom:106.752000pt;}
.y21{bottom:111.392000pt;}
.y133{bottom:113.952000pt;}
.y7f{bottom:116.032000pt;}
.y13d{bottom:118.592000pt;}
.y84{bottom:120.672000pt;}
.y182{bottom:121.472000pt;}
.y197{bottom:122.752000pt;}
.y129{bottom:123.232000pt;}
.yb0{bottom:125.152000pt;}
.y3f{bottom:127.392000pt;}
.y176{bottom:128.032000pt;}
.y8d{bottom:129.792000pt;}
.y1ac{bottom:131.712000pt;}
.y94{bottom:132.032000pt;}
.y5f{bottom:132.512000pt;}
.yde{bottom:134.426667pt;}
.y132{bottom:136.986667pt;}
.y20{bottom:139.066667pt;}
.y13c{bottom:141.626667pt;}
.y7e{bottom:143.546667pt;}
.y123{bottom:146.106667pt;}
.y83{bottom:148.186667pt;}
.y181{bottom:149.146667pt;}
.yaf{bottom:152.826667pt;}
.y196{bottom:155.066667pt;}
.y175{bottom:155.706667pt;}
.y3e{bottom:157.466667pt;}
.y1ab{bottom:159.226667pt;}
.ydd{bottom:160.026667pt;}
.y11e{bottom:161.946667pt;}
.y93{bottom:164.186667pt;}
.y13b{bottom:164.506667pt;}
.y5e{bottom:164.666667pt;}
.y1f{bottom:166.586667pt;}
.y122{bottom:169.146667pt;}
.y7d{bottom:171.226667pt;}
.y14b{bottom:173.786667pt;}
.y82{bottom:175.866667pt;}
.y180{bottom:176.666667pt;}
.yae{bottom:180.346667pt;}
.ydc{bottom:182.906667pt;}
.y174{bottom:183.226667pt;}
.y3d{bottom:184.986667pt;}
.y1aa{bottom:186.906667pt;}
.y195{bottom:187.226667pt;}
.y13a{bottom:187.546667pt;}
.y10c{bottom:189.626667pt;}
.y121{bottom:192.186667pt;}
.y1e{bottom:194.266667pt;}
.y92{bottom:196.346667pt;}
.yca{bottom:196.826667pt;}
.ybb{bottom:198.746667pt;}
.y7c{bottom:200.986667pt;}
.y81{bottom:203.386667pt;}
.y17f{bottom:204.346667pt;}
.ydb{bottom:205.946667pt;}
.y189{bottom:206.106667pt;}
.y5d{bottom:208.026667pt;}
.y139{bottom:210.586667pt;}
.y173{bottom:210.906667pt;}
.y3c{bottom:212.666667pt;}
.y1a9{bottom:214.426667pt;}
.y164{bottom:214.746667pt;}
.y128{bottom:215.226667pt;}
.y10b{bottom:217.146667pt;}
.y194{bottom:219.386667pt;}
.yc9{bottom:219.706667pt;}
.y1d{bottom:221.786667pt;}
.yba{bottom:224.346667pt;}
.yfa{bottom:226.426667pt;}
.y91{bottom:228.506667pt;}
.yda{bottom:228.986667pt;}
.y7b{bottom:230.906667pt;}
.y17e{bottom:231.866667pt;}
.y105{bottom:233.466667pt;}
.y5c{bottom:235.546667pt;}
.y14a{bottom:238.106667pt;}
.y188{bottom:238.266667pt;}
.y172{bottom:238.426667pt;}
.y3b{bottom:240.186667pt;}
.y1a8{bottom:242.106667pt;}
.yc8{bottom:242.746667pt;}
.y10a{bottom:244.826667pt;}
.yb9{bottom:247.386667pt;}
.y1c{bottom:249.306667pt;}
.y193{bottom:251.586667pt;}
.yd9{bottom:251.906667pt;}
.yf9{bottom:253.986667pt;}
.y104{bottom:256.546667pt;}
.y7a{bottom:258.626667pt;}
.y17d{bottom:259.586667pt;}
.y90{bottom:260.866667pt;}
.y149{bottom:261.186667pt;}
.y5b{bottom:263.266667pt;}
.ya2{bottom:265.826667pt;}
.y171{bottom:266.146667pt;}
.y3a{bottom:267.746667pt;}
.y1a7{bottom:269.666667pt;}
.yb8{bottom:270.306667pt;}
.y187{bottom:270.466667pt;}
.y109{bottom:272.386667pt;}
.y12b{bottom:274.946667pt;}
.y1b{bottom:277.026667pt;}
.y103{bottom:279.586667pt;}
.yf8{bottom:281.666667pt;}
.y192{bottom:283.746667pt;}
.y148{bottom:284.226667pt;}
.y79{bottom:286.146667pt;}
.y17c{bottom:287.106667pt;}
.ya1{bottom:288.706667pt;}
.y5a{bottom:290.786667pt;}
.y8f{bottom:293.026667pt;}
.yb7{bottom:293.346667pt;}
.y170{bottom:293.666667pt;}
.y39{bottom:295.426667pt;}
.y1a6{bottom:297.346667pt;}
.y12a{bottom:297.986667pt;}
.y108{bottom:300.066667pt;}
.y186{bottom:300.546667pt;}
.y102{bottom:302.626667pt;}
.y1a{bottom:304.546667pt;}
.y142{bottom:307.106667pt;}
.yf7{bottom:309.186667pt;}
.ya0{bottom:311.746667pt;}
.y78{bottom:313.826667pt;}
.y17b{bottom:314.786667pt;}
.y191{bottom:316.066667pt;}
.y158{bottom:316.386667pt;}
.y59{bottom:318.466667pt;}
.y163{bottom:321.026667pt;}
.y16f{bottom:321.346667pt;}
.y38{bottom:322.946667pt;}
.y1a5{bottom:324.866667pt;}
.y101{bottom:325.506667pt;}
.y107{bottom:327.586667pt;}
.y141{bottom:330.146667pt;}
.y19{bottom:332.226667pt;}
.y9f{bottom:334.786667pt;}
.yf6{bottom:336.866667pt;}
.y157{bottom:339.426667pt;}
.y77{bottom:341.346667pt;}
.y17a{bottom:342.306667pt;}
.y162{bottom:343.906667pt;}
.y58{bottom:345.986667pt;}
.y190{bottom:348.226667pt;}
.y16e{bottom:348.866667pt;}
.y37{bottom:350.626667pt;}
.y1a4{bottom:352.546667pt;}
.y140{bottom:353.186667pt;}
.y106{bottom:355.266667pt;}
.y9e{bottom:357.826667pt;}
.y18{bottom:359.746667pt;}
.y156{bottom:362.306667pt;}
.yf5{bottom:364.386667pt;}
.y161{bottom:366.946667pt;}
.y76{bottom:369.026667pt;}
.y57{bottom:373.666667pt;}
.y127{bottom:376.226667pt;}
.y16d{bottom:376.546667pt;}
.y36{bottom:378.146667pt;}
.y1ae{bottom:378.306667pt;}
.y1a3{bottom:380.066667pt;}
.y18f{bottom:380.386667pt;}
.y9d{bottom:380.706667pt;}
.yc7{bottom:382.786667pt;}
.y179{bottom:383.266667pt;}
.y155{bottom:385.346667pt;}
.y17{bottom:387.426667pt;}
.y135{bottom:389.986667pt;}
.yf4{bottom:392.066667pt;}
.y75{bottom:396.546667pt;}
.y126{bottom:399.106667pt;}
.y56{bottom:401.186667pt;}
.y9c{bottom:403.746667pt;}
.y16c{bottom:404.066667pt;}
.y35{bottom:405.826667pt;}
.y1a2{bottom:407.746667pt;}
.y154{bottom:408.386667pt;}
.yc6{bottom:410.466667pt;}
.y18e{bottom:412.546667pt;}
.y134{bottom:413.026667pt;}
.y16{bottom:414.946667pt;}
.y14d{bottom:417.506667pt;}
.yf3{bottom:419.586667pt;}
.y125{bottom:422.146667pt;}
.y74{bottom:424.226667pt;}
.y9b{bottom:426.786667pt;}
.y55{bottom:428.866667pt;}
.y153{bottom:431.426667pt;}
.y16b{bottom:431.746667pt;}
.y199{bottom:433.186667pt;}
.y34{bottom:433.346667pt;}
.y1a1{bottom:435.266667pt;}
.y11d{bottom:435.906667pt;}
.yc5{bottom:437.986667pt;}
.y14c{bottom:440.546667pt;}
.y15{bottom:442.626667pt;}
.y18d{bottom:444.866667pt;}
.y124{bottom:445.186667pt;}
.yf2{bottom:447.266667pt;}
.yad{bottom:449.826667pt;}
.y73{bottom:451.746667pt;}
.y152{bottom:454.306667pt;}
.y54{bottom:456.386667pt;}
.y11c{bottom:458.946667pt;}
.y16a{bottom:460.866667pt;}
.y33{bottom:461.026667pt;}
.y131{bottom:463.586667pt;}
.yc4{bottom:465.666667pt;}
.ya9{bottom:468.226667pt;}
.y14{bottom:470.146667pt;}
.yac{bottom:472.706667pt;}
.yf1{bottom:474.786667pt;}
.y1a0{bottom:476.226667pt;}
.y18c{bottom:477.026667pt;}
.y151{bottom:477.346667pt;}
.y72{bottom:479.426667pt;}
.y11b{bottom:481.986667pt;}
.y53{bottom:484.066667pt;}
.y130{bottom:486.626667pt;}
.y32{bottom:488.546667pt;}
.ye7{bottom:491.106667pt;}
.ya8{bottom:493.186667pt;}
.yab{bottom:495.746667pt;}
.y13{bottom:497.826667pt;}
.y150{bottom:500.386667pt;}
.yf0{bottom:502.493333pt;}
.y19f{bottom:503.773333pt;}
.y11a{bottom:505.053333pt;}
.y71{bottom:506.973333pt;}
.y18b{bottom:509.213333pt;}
.y12f{bottom:509.533333pt;}
.y52{bottom:511.613333pt;}
.ye6{bottom:514.173333pt;}
.y31{bottom:516.253333pt;}
.yaa{bottom:518.813333pt;}
.ya7{bottom:520.893333pt;}
.y14f{bottom:523.453333pt;}
.y12{bottom:525.373333pt;}
.y160{bottom:527.933333pt;}
.yef{bottom:530.013333pt;}
.y12e{bottom:532.573333pt;}
.y70{bottom:534.653333pt;}
.ye5{bottom:537.213333pt;}
.y51{bottom:539.293333pt;}
.y120{bottom:541.853333pt;}
.y30{bottom:543.773333pt;}
.y19e{bottom:544.733333pt;}
.ya6{bottom:548.413333pt;}
.y15f{bottom:550.973333pt;}
.y11{bottom:553.053333pt;}
.y12d{bottom:555.613333pt;}
.yee{bottom:557.693333pt;}
.ye4{bottom:560.253333pt;}
.y6f{bottom:562.173333pt;}
.y11f{bottom:564.733333pt;}
.y50{bottom:566.813333pt;}
.y2f{bottom:571.453333pt;}
.y19d{bottom:572.413333pt;}
.y15e{bottom:574.013333pt;}
.ya5{bottom:576.093333pt;}
.y12c{bottom:578.653333pt;}
.y10{bottom:580.573333pt;}
.ye3{bottom:583.133333pt;}
.yed{bottom:585.213333pt;}
.y9a{bottom:587.773333pt;}
.y6e{bottom:589.853333pt;}
.y4f{bottom:594.493333pt;}
.y15d{bottom:597.053333pt;}
.y2e{bottom:598.973333pt;}
.yc3{bottom:601.533333pt;}
.ya4{bottom:603.613333pt;}
.y178{bottom:605.853333pt;}
.ye2{bottom:606.173333pt;}
.yf{bottom:608.253333pt;}
.y99{bottom:610.813333pt;}
.y119{bottom:612.893333pt;}
.y19c{bottom:613.213333pt;}
.y185{bottom:615.453333pt;}
.y6d{bottom:617.373333pt;}
.y177{bottom:619.933333pt;}
.y4e{bottom:622.013333pt;}
.yc2{bottom:624.573333pt;}
.y2d{bottom:626.653333pt;}
.ye1{bottom:629.213333pt;}
.ya3{bottom:631.293333pt;}
.y98{bottom:633.853333pt;}
.ye{bottom:635.773333pt;}
.y184{bottom:638.333333pt;}
.y118{bottom:640.413333pt;}
.y19b{bottom:640.893333pt;}
.y6c{bottom:645.053333pt;}
.yc1{bottom:647.613333pt;}
.y4d{bottom:649.693333pt;}
.y18a{bottom:651.773333pt;}
.y2c{bottom:654.173333pt;}
.y97{bottom:656.733333pt;}
.y147{bottom:658.813333pt;}
.y183{bottom:661.373333pt;}
.yd{bottom:663.453333pt;}
.y117{bottom:668.093333pt;}
.yc0{bottom:670.653333pt;}
.y6b{bottom:672.573333pt;}
.y4c{bottom:677.213333pt;}
.y96{bottom:679.773333pt;}
.y2b{bottom:681.853333pt;}
.y169{bottom:684.413333pt;}
.y146{bottom:686.493333pt;}
.yc{bottom:690.973333pt;}
.ybf{bottom:693.533333pt;}
.y116{bottom:695.613333pt;}
.y15b{bottom:698.173333pt;}
.y6a{bottom:700.253333pt;}
.yec{bottom:702.813333pt;}
.y4b{bottom:704.733333pt;}
.y168{bottom:707.293333pt;}
.y2a{bottom:709.373333pt;}
.y145{bottom:714.013333pt;}
.ybe{bottom:716.573333pt;}
.yb{bottom:718.653333pt;}
.y15a{bottom:721.213333pt;}
.y115{bottom:723.133333pt;}
.yeb{bottom:725.693333pt;}
.y69{bottom:727.773333pt;}
.y167{bottom:730.333333pt;}
.y4a{bottom:732.413333pt;}
.yd0{bottom:734.973333pt;}
.y29{bottom:737.053333pt;}
.ybd{bottom:739.613333pt;}
.y144{bottom:741.533333pt;}
.y159{bottom:744.093333pt;}
.ya{bottom:746.173333pt;}
.yea{bottom:748.733333pt;}
.y114{bottom:750.813333pt;}
.y166{bottom:753.413333pt;}
.y68{bottom:755.493333pt;}
.y13f{bottom:757.573333pt;}
.ycf{bottom:758.053333pt;}
.y49{bottom:759.973333pt;}
.y28{bottom:764.613333pt;}
.y14e{bottom:767.173333pt;}
.y143{bottom:769.253333pt;}
.y15c{bottom:771.493333pt;}
.ye9{bottom:771.813333pt;}
.y9{bottom:773.893333pt;}
.y165{bottom:776.453333pt;}
.y113{bottom:778.373333pt;}
.yce{bottom:780.933333pt;}
.y67{bottom:783.013333pt;}
.yb6{bottom:785.573333pt;}
.y48{bottom:787.653333pt;}
.y13e{bottom:789.893333pt;}
.y100{bottom:790.213333pt;}
.y27{bottom:792.293333pt;}
.ye8{bottom:794.853333pt;}
.yd8{bottom:799.333333pt;}
.y8{bottom:801.413333pt;}
.ycd{bottom:803.973333pt;}
.y112{bottom:806.053333pt;}
.yb5{bottom:808.613333pt;}
.y66{bottom:810.693333pt;}
.yff{bottom:813.253333pt;}
.y47{bottom:815.173333pt;}
.y138{bottom:817.733333pt;}
.y26{bottom:819.813333pt;}
.yd7{bottom:822.373333pt;}
.ycc{bottom:827.013333pt;}
.y7{bottom:829.093333pt;}
.yb4{bottom:831.653333pt;}
.y111{bottom:833.573333pt;}
.yfe{bottom:836.133333pt;}
.y65{bottom:838.213333pt;}
.y137{bottom:840.773333pt;}
.y46{bottom:842.853333pt;}
.yd6{bottom:845.413333pt;}
.y8c{bottom:847.493333pt;}
.y25{bottom:849.573333pt;}
.ycb{bottom:850.053333pt;}
.yb3{bottom:854.533333pt;}
.y6{bottom:856.613333pt;}
.yfd{bottom:859.173333pt;}
.y110{bottom:861.253333pt;}
.y136{bottom:863.813333pt;}
.y64{bottom:865.893333pt;}
.yd5{bottom:868.453333pt;}
.y45{bottom:870.373333pt;}
.y8b{bottom:875.013333pt;}
.yb2{bottom:877.573333pt;}
.y24{bottom:881.893333pt;}
.yfc{bottom:882.213333pt;}
.y5{bottom:884.293333pt;}
.y10f{bottom:886.853333pt;}
.yd4{bottom:891.333333pt;}
.y63{bottom:893.413333pt;}
.y44{bottom:898.053333pt;}
.y8a{bottom:902.693333pt;}
.yfb{bottom:905.253333pt;}
.y10e{bottom:909.733333pt;}
.y4{bottom:914.053333pt;}
.yd3{bottom:914.373333pt;}
.y62{bottom:921.093333pt;}
.y43{bottom:925.573333pt;}
.y89{bottom:930.213333pt;}
.y10d{bottom:932.773333pt;}
.yd2{bottom:937.413333pt;}
.y3{bottom:946.213333pt;}
.y61{bottom:948.613333pt;}
.y42{bottom:953.253333pt;}
.y88{bottom:957.893333pt;}
.yd1{bottom:960.453333pt;}
.y2{bottom:978.373333pt;}
.y41{bottom:980.773333pt;}
.y87{bottom:985.413333pt;}
.y1{bottom:1010.720000pt;}
.y86{bottom:1013.120000pt;}
.h4{height:37.090625pt;}
.hb{height:44.687500pt;}
.h9{height:46.454062pt;}
.h6{height:47.647188pt;}
.h7{height:52.834688pt;}
.h3{height:55.968750pt;}
.h5{height:57.406250pt;}
.h8{height:63.656250pt;}
.h2{height:65.483437pt;}
.ha{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x4{left:104.671988pt;}
.x5{left:105.631988pt;}
.x8{left:107.551988pt;}
.x6{left:108.511988pt;}
.x7{left:110.271988pt;}
.x3{left:375.106655pt;}
.x2{left:378.466655pt;}
}




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