
    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_ffed3ee8b91793c901676534.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d55dbfeaca2a75308e7658a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c82cfeb0e93c7b392774f784.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_6c2a6814542f3c5ac078cf1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_b72577071172990dd5191e7d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_b44d883460d72c464bcd4133.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_138b8331dd93ae74a187e611.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ac461e6178d603b8990e8373.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27d4079a71c73c653e2b6763.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897461;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_c74aa8d9fb15c45c6bf8a8e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.136230;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-83.520000px;}
.v3{vertical-align:-52.560000px;}
.v4{vertical-align:-27.360000px;}
.v5{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:21.600000px;}
.v7{vertical-align:25.620000px;}
.v2{vertical-align:27.360000px;}
.v8{vertical-align:49.800000px;}
.v9{vertical-align:87.360000px;}
.ls12{letter-spacing:-7.620000px;}
.ls1f{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.311760px;}
.lsb{letter-spacing:0.350400px;}
.ls1{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.418320px;}
.lsa{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.466560px;}
.ls11{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.972000px;}
.ls2{letter-spacing:131.196000px;}
.ls0{letter-spacing:1832.700000px;}
.ls1e{letter-spacing:2124.768000px;}
.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:-72.000000px;}
.ws6{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.410400px;}
.ws8{word-spacing:-21.060000px;}
.ws9{word-spacing:-21.031920px;}
.ws5{word-spacing:-20.718600px;}
.wsc{word-spacing:-18.792000px;}
.wsf{word-spacing:-18.504000px;}
.ws24{word-spacing:-18.432000px;}
.ws11{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.wse{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws18{word-spacing:-15.358320px;}
.ws17{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.970240px;}
.ws16{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws14{word-spacing:-14.680200px;}
.ws22{word-spacing:-13.538304px;}
.ws21{word-spacing:-12.420000px;}
.ws10{word-spacing:-10.380000px;}
.ws12{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
.ws23{word-spacing:4.363200px;}
.ws20{word-spacing:5.109120px;}
.ws19{word-spacing:153.246480px;}
.ws1e{word-spacing:204.168000px;}
.ws1d{word-spacing:204.420000px;}
.ws1f{word-spacing:204.600000px;}
.ws1c{word-spacing:220.440000px;}
.ws1a{word-spacing:398.041344px;}
.ws1b{word-spacing:416.041344px;}
._1{margin-left:-7.948800px;}
._3{margin-left:-6.384960px;}
._5{margin-left:-5.276880px;}
._4{margin-left:-3.255840px;}
._0{margin-left:-1.457280px;}
._2{width:1.648320px;}
._9{width:2.808000px;}
._a{width:4.283040px;}
._d{width:5.462400px;}
._12{width:6.516480px;}
._b{width:7.608000px;}
._c{width:8.859840px;}
._15{width:10.268160px;}
._16{width:11.484960px;}
._13{width:12.782880px;}
._8{width:13.977120px;}
._6{width:15.168000px;}
._7{width:16.699680px;}
._18{width:19.944000px;}
._10{width:21.240000px;}
._17{width:22.824000px;}
._11{width:24.000000px;}
._1b{width:25.615680px;}
._1e{width:27.016320px;}
._14{width:29.376000px;}
._19{width:30.960000px;}
._1a{width:31.968000px;}
._1f{width:34.791840px;}
._1c{width:39.312000px;}
._e{width:40.824000px;}
._f{width:41.832000px;}
._1d{width:250.500000px;}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:72.144000px;}
.fs5{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:5.685000px;}
.yd6{bottom:6.015000px;}
.y108{bottom:6.375000px;}
.ydb{bottom:6.510000px;}
.yae{bottom:11.700000px;}
.yab{bottom:11.880000px;}
.ye0{bottom:12.420000px;}
.ye1{bottom:12.600000px;}
.ye3{bottom:12.780000px;}
.yde{bottom:13.680000px;}
.yff{bottom:14.070000px;}
.ycd{bottom:23.610000px;}
.y100{bottom:37.830000px;}
.yce{bottom:44.745000px;}
.y4{bottom:57.780000px;}
.y101{bottom:61.590000px;}
.ycf{bottom:65.850000px;}
.yfb{bottom:66.060000px;}
.y30{bottom:79.416000px;}
.y102{bottom:85.350000px;}
.yd0{bottom:86.970000px;}
.yfc{bottom:87.510000px;}
.y3{bottom:100.656000px;}
.y127{bottom:101.016000px;}
.yaf{bottom:101.376000px;}
.y14b{bottom:102.996000px;}
.y50{bottom:107.316000px;}
.yd1{bottom:108.075000px;}
.y103{bottom:109.110000px;}
.y87{bottom:114.516000px;}
.yf9{bottom:117.756000px;}
.y2{bottom:119.556000px;}
.y70{bottom:120.816000px;}
.y126{bottom:121.716000px;}
.ycc{bottom:122.190000px;}
.y8c{bottom:122.796000px;}
.y14a{bottom:123.696000px;}
.yad{bottom:127.296000px;}
.yd2{bottom:129.210000px;}
.y104{bottom:132.870000px;}
.yc9{bottom:133.056000px;}
.y4f{bottom:138.456000px;}
.y1{bottom:138.636000px;}
.ycb{bottom:139.890000px;}
.y125{bottom:142.416000px;}
.y149{bottom:144.396000px;}
.y86{bottom:145.656000px;}
.yf8{bottom:148.896000px;}
.yd3{bottom:150.300000px;}
.y6f{bottom:151.950000px;}
.yac{bottom:153.030000px;}
.y8b{bottom:153.930000px;}
.yfd{bottom:155.625000px;}
.y105{bottom:156.630000px;}
.y124{bottom:163.110000px;}
.yc8{bottom:164.190000px;}
.y148{bottom:165.090000px;}
.y4e{bottom:169.950000px;}
.yd4{bottom:171.435000px;}
.yfe{bottom:175.425000px;}
.y85{bottom:176.610000px;}
.yaa{bottom:179.670000px;}
.yf7{bottom:179.850000px;}
.y106{bottom:180.390000px;}
.y6e{bottom:182.910000px;}
.y123{bottom:183.810000px;}
.y2f{bottom:184.350000px;}
.y8a{bottom:184.890000px;}
.y147{bottom:185.790000px;}
.yd5{bottom:192.525000px;}
.yc7{bottom:195.870000px;}
.y4d{bottom:202.530000px;}
.y10a{bottom:203.970000px;}
.yd7{bottom:204.375000px;}
.y122{bottom:204.510000px;}
.y146{bottom:206.490000px;}
.y84{bottom:209.910000px;}
.yf6{bottom:210.810000px;}
.y6d{bottom:214.050000px;}
.y2e{bottom:215.310000px;}
.y89{bottom:216.570000px;}
.y121{bottom:225.210000px;}
.ya9{bottom:226.650000px;}
.y145{bottom:227.190000px;}
.yc6{bottom:228.270000px;}
.y4c{bottom:233.490000px;}
.yf5{bottom:241.950000px;}
.y6c{bottom:245.010000px;}
.y120{bottom:245.910000px;}
.y83{bottom:246.270000px;}
.y2d{bottom:246.450000px;}
.y144{bottom:247.890000px;}
.y88{bottom:249.150000px;}
.yc5{bottom:259.410000px;}
.ya8{bottom:263.730000px;}
.y4b{bottom:264.630000px;}
.y11f{bottom:267.150000px;}
.y143{bottom:268.590000px;}
.yf4{bottom:272.910000px;}
.y6b{bottom:276.150000px;}
.y2c{bottom:277.410000px;}
.y82{bottom:280.110000px;}
.y142{bottom:289.290000px;}
.yc4{bottom:290.370000px;}
.y11e{bottom:290.730000px;}
.ya7{bottom:294.690000px;}
.y4a{bottom:295.590000px;}
.y2b{bottom:298.110000px;}
.yf3{bottom:304.050000px;}
.y6a{bottom:307.110000px;}
.y141{bottom:309.990000px;}
.y81{bottom:311.250000px;}
.y2a{bottom:318.810000px;}
.yc3{bottom:321.510000px;}
.y11d{bottom:321.690000px;}
.y49{bottom:326.730000px;}
.ya6{bottom:328.170000px;}
.y140{bottom:330.690000px;}
.yf2{bottom:335.010000px;}
.y69{bottom:338.835000px;}
.y29{bottom:339.555000px;}
.y80{bottom:342.255000px;}
.y13f{bottom:351.435000px;}
.yc2{bottom:352.515000px;}
.y11c{bottom:352.875000px;}
.y48{bottom:357.735000px;}
.y28{bottom:360.255000px;}
.ya5{bottom:364.395000px;}
.yf1{bottom:366.195000px;}
.y68{bottom:371.235000px;}
.y13e{bottom:372.135000px;}
.y7f{bottom:373.395000px;}
.y27{bottom:380.955000px;}
.yc1{bottom:383.655000px;}
.y11b{bottom:384.375000px;}
.y47{bottom:391.215000px;}
.y13d{bottom:392.835000px;}
.yf0{bottom:397.155000px;}
.ya4{bottom:398.235000px;}
.y67{bottom:402.375000px;}
.y26{bottom:403.095000px;}
.y7e{bottom:404.355000px;}
.y13c{bottom:413.535000px;}
.yc0{bottom:414.615000px;}
.y11a{bottom:416.955000px;}
.y25{bottom:423.795000px;}
.y109{bottom:424.980000px;}
.y46{bottom:425.055000px;}
.yfa{bottom:425.160000px;}
.ya3{bottom:429.915000px;}
.y66{bottom:433.335000px;}
.y13b{bottom:434.235000px;}
.y7d{bottom:435.495000px;}
.y24{bottom:444.495000px;}
.ybf{bottom:445.575000px;}
.y119{bottom:448.635000px;}
.y13a{bottom:454.935000px;}
.y45{bottom:456.195000px;}
.ya2{bottom:462.315000px;}
.y65{bottom:464.475000px;}
.y23{bottom:465.195000px;}
.y7c{bottom:466.455000px;}
.y139{bottom:475.635000px;}
.ybe{bottom:476.715000px;}
.y118{bottom:481.035000px;}
.y22{bottom:485.895000px;}
.y44{bottom:487.155000px;}
.ya1{bottom:493.455000px;}
.y64{bottom:495.435000px;}
.y138{bottom:496.335000px;}
.y7b{bottom:497.595000px;}
.y21{bottom:506.595000px;}
.ybd{bottom:507.675000px;}
.y117{bottom:512.175000px;}
.y137{bottom:517.035000px;}
.y43{bottom:518.295000px;}
.ya0{bottom:524.415000px;}
.y63{bottom:526.575000px;}
.y20{bottom:527.295000px;}
.y7a{bottom:528.555000px;}
.y136{bottom:537.735000px;}
.ybc{bottom:539.355000px;}
.y116{bottom:543.135000px;}
.y1f{bottom:547.995000px;}
.y42{bottom:549.255000px;}
.y9f{bottom:555.555000px;}
.y62{bottom:557.535000px;}
.y79{bottom:559.695000px;}
.y1e{bottom:568.515000px;}
.ybb{bottom:572.475000px;}
.y135{bottom:573.735000px;}
.y115{bottom:574.815000px;}
.y41{bottom:580.395000px;}
.y9e{bottom:586.515000px;}
.y61{bottom:588.675000px;}
.y1d{bottom:589.215000px;}
.y78{bottom:590.655000px;}
.y134{bottom:597.675000px;}
.yba{bottom:604.905000px;}
.y114{bottom:607.245000px;}
.y1c{bottom:609.945000px;}
.y40{bottom:611.385000px;}
.y107{bottom:615.060000px;}
.y9d{bottom:617.685000px;}
.y60{bottom:619.665000px;}
.y77{bottom:621.645000px;}
.y1b{bottom:630.645000px;}
.yb9{bottom:636.045000px;}
.y113{bottom:638.385000px;}
.y3f{bottom:642.345000px;}
.y9c{bottom:648.645000px;}
.y5f{bottom:650.805000px;}
.y1a{bottom:651.345000px;}
.y76{bottom:652.785000px;}
.yb8{bottom:663.045000px;}
.yda{bottom:663.120000px;}
.yca{bottom:663.300000px;}
.yef{bottom:665.205000px;}
.y112{bottom:670.065000px;}
.y19{bottom:672.045000px;}
.y3e{bottom:673.485000px;}
.y9b{bottom:679.785000px;}
.y5e{bottom:681.765000px;}
.y75{bottom:683.745000px;}
.y18{bottom:694.185000px;}
.yee{bottom:702.465000px;}
.y3d{bottom:704.445000px;}
.y111{bottom:704.805000px;}
.y9a{bottom:710.745000px;}
.y5d{bottom:712.905000px;}
.y17{bottom:714.885000px;}
.y133{bottom:725.145000px;}
.yed{bottom:734.145000px;}
.y16{bottom:735.585000px;}
.y110{bottom:740.985000px;}
.y99{bottom:741.885000px;}
.y5c{bottom:743.865000px;}
.y74{bottom:745.845000px;}
.y15{bottom:756.285000px;}
.y3c{bottom:766.545000px;}
.yec{bottom:767.265000px;}
.y98{bottom:772.845000px;}
.y5b{bottom:775.005000px;}
.y14{bottom:776.985000px;}
.y132{bottom:787.245000px;}
.y13{bottom:797.685000px;}
.y3b{bottom:800.025000px;}
.yeb{bottom:800.205000px;}
.y97{bottom:803.985000px;}
.y5a{bottom:805.965000px;}
.y73{bottom:807.945000px;}
.y12{bottom:818.385000px;}
.y131{bottom:828.645000px;}
.yea{bottom:833.325000px;}
.y3a{bottom:833.865000px;}
.y96{bottom:834.945000px;}
.y59{bottom:837.105000px;}
.y11{bottom:839.085000px;}
.y130{bottom:849.345000px;}
.y10{bottom:859.785000px;}
.y39{bottom:865.005000px;}
.ye9{bottom:865.905000px;}
.y95{bottom:866.085000px;}
.yd8{bottom:866.340000px;}
.y58{bottom:868.065000px;}
.y72{bottom:870.045000px;}
.yf{bottom:880.530000px;}
.y12f{bottom:890.790000px;}
.ye8{bottom:893.310000px;}
.y38{bottom:896.010000px;}
.y94{bottom:897.090000px;}
.y10f{bottom:899.250000px;}
.y57{bottom:899.790000px;}
.y71{bottom:901.230000px;}
.ye7{bottom:906.630000px;}
.yb7{bottom:910.050000px;}
.y12e{bottom:911.490000px;}
.ye{bottom:921.210000px;}
.y37{bottom:927.150000px;}
.y93{bottom:928.230000px;}
.y10e{bottom:930.210000px;}
.y56{bottom:932.190000px;}
.ye6{bottom:932.550000px;}
.yd{bottom:939.210000px;}
.yb6{bottom:946.950000px;}
.y12d{bottom:952.890000px;}
.y36{bottom:958.110000px;}
.ye5{bottom:958.470000px;}
.y92{bottom:959.190000px;}
.yc{bottom:959.910000px;}
.y10d{bottom:961.350000px;}
.y55{bottom:963.330000px;}
.y12c{bottom:973.590000px;}
.yb5{bottom:978.090000px;}
.yb{bottom:980.610000px;}
.ye4{bottom:984.210000px;}
.y35{bottom:989.250000px;}
.y91{bottom:990.870000px;}
.y10c{bottom:992.310000px;}
.y54{bottom:994.290000px;}
.ya{bottom:1001.850000px;}
.yb4{bottom:1009.050000px;}
.ye2{bottom:1011.750000px;}
.y12b{bottom:1014.990000px;}
.y34{bottom:1020.210000px;}
.y90{bottom:1023.450000px;}
.y53{bottom:1025.430000px;}
.y9{bottom:1025.970000px;}
.y12a{bottom:1035.690000px;}
.ydf{bottom:1039.470000px;}
.yb3{bottom:1040.190000px;}
.y8{bottom:1049.550000px;}
.y33{bottom:1051.350000px;}
.y8f{bottom:1054.410000px;}
.y52{bottom:1056.390000px;}
.ydd{bottom:1067.730000px;}
.yb2{bottom:1068.810000px;}
.y7{bottom:1070.790000px;}
.y129{bottom:1077.090000px;}
.y32{bottom:1082.310000px;}
.yb1{bottom:1083.570000px;}
.y8e{bottom:1085.370000px;}
.y10b{bottom:1086.090000px;}
.y51{bottom:1087.530000px;}
.y6{bottom:1094.910000px;}
.y128{bottom:1097.790000px;}
.yb0{bottom:1109.490000px;}
.y31{bottom:1115.610000px;}
.y8d{bottom:1117.050000px;}
.y5{bottom:1118.490000px;}
.ydc{bottom:1118.670000px;}
.h13{height:19.800000px;}
.hf{height:25.740000px;}
.hd{height:25.920000px;}
.h16{height:27.540000px;}
.h17{height:27.720000px;}
.h15{height:29.700000px;}
.h18{height:48.410156px;}
.ha{height:52.695866px;}
.he{height:53.077852px;}
.h7{height:53.573906px;}
.h9{height:59.343750px;}
.h2{height:59.383125px;}
.h1a{height:59.439023px;}
.h1b{height:59.582250px;}
.h4{height:63.949219px;}
.h1c{height:64.445977px;}
.h8{height:64.546875px;}
.h12{height:64.573875px;}
.hb{height:65.884219px;}
.h6{height:70.606406px;}
.h3{height:71.613281px;}
.h5{height:74.820586px;}
.hc{height:75.519844px;}
.h11{height:140.437852px;}
.h19{height:226.080000px;}
.h1d{height:226.260000px;}
.h10{height:229.320000px;}
.h14{height:229.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:69.300000px;}
.w12{width:69.336000px;}
.w11{width:69.480000px;}
.w13{width:69.516000px;}
.w14{width:69.840000px;}
.w16{width:70.020000px;}
.w18{width:70.056000px;}
.w17{width:70.200000px;}
.w19{width:70.236000px;}
.w6{width:75.996000px;}
.w5{width:76.140000px;}
.w4{width:76.176000px;}
.wb{width:76.500000px;}
.wa{width:76.716000px;}
.w9{width:76.860000px;}
.w8{width:76.896000px;}
.w3{width:142.560000px;}
.w7{width:142.920000px;}
.wf{width:191.010000px;}
.w15{width:191.370000px;}
.wd{width:242.100000px;}
.w1a{width:527.580000px;}
.w1b{width:527.760000px;}
.wc{width:528.840000px;}
.we{width:529.020000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:8.100000px;}
.x2b{left:9.180000px;}
.x26{left:10.470000px;}
.x37{left:14.400000px;}
.x40{left:16.200000px;}
.x25{left:18.000000px;}
.x1c{left:21.465000px;}
.x3f{left:23.685000px;}
.x1d{left:25.020000px;}
.x12{left:27.174000px;}
.x14{left:30.285000px;}
.x27{left:34.485000px;}
.x1f{left:43.734000px;}
.x1e{left:47.514000px;}
.x34{left:56.334000px;}
.x36{left:57.594000px;}
.x39{left:59.754000px;}
.x1b{left:61.014000px;}
.x33{left:63.714000px;}
.x3c{left:84.600000px;}
.x24{left:90.900000px;}
.x35{left:95.574000px;}
.x41{left:103.245000px;}
.x1{left:127.655987px;}
.x42{left:131.975987px;}
.x7{left:133.055987px;}
.x28{left:151.560000px;}
.x2a{left:157.529987px;}
.x3{left:165.989987px;}
.x10{left:170.129987px;}
.x11{left:176.789987px;}
.x5{left:182.549987px;}
.xd{left:190.469987px;}
.xe{left:200.369987px;}
.x23{left:203.220000px;}
.x3b{left:206.460000px;}
.x3a{left:208.469987px;}
.x20{left:220.889987px;}
.xb{left:238.349987px;}
.xc{left:248.249987px;}
.x21{left:253.289987px;}
.x4{left:256.529987px;}
.x13{left:270.930000px;}
.x6{left:273.449987px;}
.x3d{left:316.155000px;}
.x2c{left:319.395000px;}
.xa{left:335.594987px;}
.x9{left:343.694987px;}
.x15{left:347.835000px;}
.x8{left:364.934987px;}
.x2d{left:389.415000px;}
.x16{left:424.695000px;}
.x3e{left:433.800000px;}
.x2e{left:459.615000px;}
.x2{left:467.924987px;}
.x29{left:473.910000px;}
.x17{left:501.405000px;}
.x2f{left:529.845000px;}
.x18{left:578.265000px;}
.x30{left:599.865000px;}
.x19{left:655.125000px;}
.x31{left:670.110000px;}
.x1a{left:731.850000px;}
.x22{left:734.549987px;}
.x32{left:740.130000px;}
.xf{left:783.149987px;}
@media print{
.v1{vertical-align:-74.240000pt;}
.v3{vertical-align:-46.720000pt;}
.v4{vertical-align:-24.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:19.200000pt;}
.v7{vertical-align:22.773333pt;}
.v2{vertical-align:24.320000pt;}
.v8{vertical-align:44.266667pt;}
.v9{vertical-align:77.653333pt;}
.ls12{letter-spacing:-6.773333pt;}
.ls1f{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.277120pt;}
.lsb{letter-spacing:0.311467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.371840pt;}
.lsa{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.414720pt;}
.ls11{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.864000pt;}
.ls2{letter-spacing:116.618667pt;}
.ls0{letter-spacing:1629.066667pt;}
.ls1e{letter-spacing:1888.682667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.031467pt;}
.ws8{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.695040pt;}
.ws5{word-spacing:-18.416533pt;}
.wsc{word-spacing:-16.704000pt;}
.wsf{word-spacing:-16.448000pt;}
.ws24{word-spacing:-16.384000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.wse{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws18{word-spacing:-13.651840pt;}
.ws17{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.306880pt;}
.ws16{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws14{word-spacing:-13.049067pt;}
.ws22{word-spacing:-12.034048pt;}
.ws21{word-spacing:-11.040000pt;}
.ws10{word-spacing:-9.226667pt;}
.ws12{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
.ws23{word-spacing:3.878400pt;}
.ws20{word-spacing:4.541440pt;}
.ws19{word-spacing:136.219093pt;}
.ws1e{word-spacing:181.482667pt;}
.ws1d{word-spacing:181.706667pt;}
.ws1f{word-spacing:181.866667pt;}
.ws1c{word-spacing:195.946667pt;}
.ws1a{word-spacing:353.814528pt;}
.ws1b{word-spacing:369.814528pt;}
._1{margin-left:-7.065600pt;}
._3{margin-left:-5.675520pt;}
._5{margin-left:-4.690560pt;}
._4{margin-left:-2.894080pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.465173pt;}
._9{width:2.496000pt;}
._a{width:3.807147pt;}
._d{width:4.855467pt;}
._12{width:5.792427pt;}
._b{width:6.762667pt;}
._c{width:7.875413pt;}
._15{width:9.127253pt;}
._16{width:10.208853pt;}
._13{width:11.362560pt;}
._8{width:12.424107pt;}
._6{width:13.482667pt;}
._7{width:14.844160pt;}
._18{width:17.728000pt;}
._10{width:18.880000pt;}
._17{width:20.288000pt;}
._11{width:21.333333pt;}
._1b{width:22.769493pt;}
._1e{width:24.014507pt;}
._14{width:26.112000pt;}
._19{width:27.520000pt;}
._1a{width:28.416000pt;}
._1f{width:30.926080pt;}
._1c{width:34.944000pt;}
._e{width:36.288000pt;}
._f{width:37.184000pt;}
._1d{width:222.666667pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:64.128000pt;}
.fs5{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:5.053333pt;}
.yd6{bottom:5.346667pt;}
.y108{bottom:5.666667pt;}
.ydb{bottom:5.786667pt;}
.yae{bottom:10.400000pt;}
.yab{bottom:10.560000pt;}
.ye0{bottom:11.040000pt;}
.ye1{bottom:11.200000pt;}
.ye3{bottom:11.360000pt;}
.yde{bottom:12.160000pt;}
.yff{bottom:12.506667pt;}
.ycd{bottom:20.986667pt;}
.y100{bottom:33.626667pt;}
.yce{bottom:39.773333pt;}
.y4{bottom:51.360000pt;}
.y101{bottom:54.746667pt;}
.ycf{bottom:58.533333pt;}
.yfb{bottom:58.720000pt;}
.y30{bottom:70.592000pt;}
.y102{bottom:75.866667pt;}
.yd0{bottom:77.306667pt;}
.yfc{bottom:77.786667pt;}
.y3{bottom:89.472000pt;}
.y127{bottom:89.792000pt;}
.yaf{bottom:90.112000pt;}
.y14b{bottom:91.552000pt;}
.y50{bottom:95.392000pt;}
.yd1{bottom:96.066667pt;}
.y103{bottom:96.986667pt;}
.y87{bottom:101.792000pt;}
.yf9{bottom:104.672000pt;}
.y2{bottom:106.272000pt;}
.y70{bottom:107.392000pt;}
.y126{bottom:108.192000pt;}
.ycc{bottom:108.613333pt;}
.y8c{bottom:109.152000pt;}
.y14a{bottom:109.952000pt;}
.yad{bottom:113.152000pt;}
.yd2{bottom:114.853333pt;}
.y104{bottom:118.106667pt;}
.yc9{bottom:118.272000pt;}
.y4f{bottom:123.072000pt;}
.y1{bottom:123.232000pt;}
.ycb{bottom:124.346667pt;}
.y125{bottom:126.592000pt;}
.y149{bottom:128.352000pt;}
.y86{bottom:129.472000pt;}
.yf8{bottom:132.352000pt;}
.yd3{bottom:133.600000pt;}
.y6f{bottom:135.066667pt;}
.yac{bottom:136.026667pt;}
.y8b{bottom:136.826667pt;}
.yfd{bottom:138.333333pt;}
.y105{bottom:139.226667pt;}
.y124{bottom:144.986667pt;}
.yc8{bottom:145.946667pt;}
.y148{bottom:146.746667pt;}
.y4e{bottom:151.066667pt;}
.yd4{bottom:152.386667pt;}
.yfe{bottom:155.933333pt;}
.y85{bottom:156.986667pt;}
.yaa{bottom:159.706667pt;}
.yf7{bottom:159.866667pt;}
.y106{bottom:160.346667pt;}
.y6e{bottom:162.586667pt;}
.y123{bottom:163.386667pt;}
.y2f{bottom:163.866667pt;}
.y8a{bottom:164.346667pt;}
.y147{bottom:165.146667pt;}
.yd5{bottom:171.133333pt;}
.yc7{bottom:174.106667pt;}
.y4d{bottom:180.026667pt;}
.y10a{bottom:181.306667pt;}
.yd7{bottom:181.666667pt;}
.y122{bottom:181.786667pt;}
.y146{bottom:183.546667pt;}
.y84{bottom:186.586667pt;}
.yf6{bottom:187.386667pt;}
.y6d{bottom:190.266667pt;}
.y2e{bottom:191.386667pt;}
.y89{bottom:192.506667pt;}
.y121{bottom:200.186667pt;}
.ya9{bottom:201.466667pt;}
.y145{bottom:201.946667pt;}
.yc6{bottom:202.906667pt;}
.y4c{bottom:207.546667pt;}
.yf5{bottom:215.066667pt;}
.y6c{bottom:217.786667pt;}
.y120{bottom:218.586667pt;}
.y83{bottom:218.906667pt;}
.y2d{bottom:219.066667pt;}
.y144{bottom:220.346667pt;}
.y88{bottom:221.466667pt;}
.yc5{bottom:230.586667pt;}
.ya8{bottom:234.426667pt;}
.y4b{bottom:235.226667pt;}
.y11f{bottom:237.466667pt;}
.y143{bottom:238.746667pt;}
.yf4{bottom:242.586667pt;}
.y6b{bottom:245.466667pt;}
.y2c{bottom:246.586667pt;}
.y82{bottom:248.986667pt;}
.y142{bottom:257.146667pt;}
.yc4{bottom:258.106667pt;}
.y11e{bottom:258.426667pt;}
.ya7{bottom:261.946667pt;}
.y4a{bottom:262.746667pt;}
.y2b{bottom:264.986667pt;}
.yf3{bottom:270.266667pt;}
.y6a{bottom:272.986667pt;}
.y141{bottom:275.546667pt;}
.y81{bottom:276.666667pt;}
.y2a{bottom:283.386667pt;}
.yc3{bottom:285.786667pt;}
.y11d{bottom:285.946667pt;}
.y49{bottom:290.426667pt;}
.ya6{bottom:291.706667pt;}
.y140{bottom:293.946667pt;}
.yf2{bottom:297.786667pt;}
.y69{bottom:301.186667pt;}
.y29{bottom:301.826667pt;}
.y80{bottom:304.226667pt;}
.y13f{bottom:312.386667pt;}
.yc2{bottom:313.346667pt;}
.y11c{bottom:313.666667pt;}
.y48{bottom:317.986667pt;}
.y28{bottom:320.226667pt;}
.ya5{bottom:323.906667pt;}
.yf1{bottom:325.506667pt;}
.y68{bottom:329.986667pt;}
.y13e{bottom:330.786667pt;}
.y7f{bottom:331.906667pt;}
.y27{bottom:338.626667pt;}
.yc1{bottom:341.026667pt;}
.y11b{bottom:341.666667pt;}
.y47{bottom:347.746667pt;}
.y13d{bottom:349.186667pt;}
.yf0{bottom:353.026667pt;}
.ya4{bottom:353.986667pt;}
.y67{bottom:357.666667pt;}
.y26{bottom:358.306667pt;}
.y7e{bottom:359.426667pt;}
.y13c{bottom:367.586667pt;}
.yc0{bottom:368.546667pt;}
.y11a{bottom:370.626667pt;}
.y25{bottom:376.706667pt;}
.y109{bottom:377.760000pt;}
.y46{bottom:377.826667pt;}
.yfa{bottom:377.920000pt;}
.ya3{bottom:382.146667pt;}
.y66{bottom:385.186667pt;}
.y13b{bottom:385.986667pt;}
.y7d{bottom:387.106667pt;}
.y24{bottom:395.106667pt;}
.ybf{bottom:396.066667pt;}
.y119{bottom:398.786667pt;}
.y13a{bottom:404.386667pt;}
.y45{bottom:405.506667pt;}
.ya2{bottom:410.946667pt;}
.y65{bottom:412.866667pt;}
.y23{bottom:413.506667pt;}
.y7c{bottom:414.626667pt;}
.y139{bottom:422.786667pt;}
.ybe{bottom:423.746667pt;}
.y118{bottom:427.586667pt;}
.y22{bottom:431.906667pt;}
.y44{bottom:433.026667pt;}
.ya1{bottom:438.626667pt;}
.y64{bottom:440.386667pt;}
.y138{bottom:441.186667pt;}
.y7b{bottom:442.306667pt;}
.y21{bottom:450.306667pt;}
.ybd{bottom:451.266667pt;}
.y117{bottom:455.266667pt;}
.y137{bottom:459.586667pt;}
.y43{bottom:460.706667pt;}
.ya0{bottom:466.146667pt;}
.y63{bottom:468.066667pt;}
.y20{bottom:468.706667pt;}
.y7a{bottom:469.826667pt;}
.y136{bottom:477.986667pt;}
.ybc{bottom:479.426667pt;}
.y116{bottom:482.786667pt;}
.y1f{bottom:487.106667pt;}
.y42{bottom:488.226667pt;}
.y9f{bottom:493.826667pt;}
.y62{bottom:495.586667pt;}
.y79{bottom:497.506667pt;}
.y1e{bottom:505.346667pt;}
.ybb{bottom:508.866667pt;}
.y135{bottom:509.986667pt;}
.y115{bottom:510.946667pt;}
.y41{bottom:515.906667pt;}
.y9e{bottom:521.346667pt;}
.y61{bottom:523.266667pt;}
.y1d{bottom:523.746667pt;}
.y78{bottom:525.026667pt;}
.y134{bottom:531.266667pt;}
.yba{bottom:537.693333pt;}
.y114{bottom:539.773333pt;}
.y1c{bottom:542.173333pt;}
.y40{bottom:543.453333pt;}
.y107{bottom:546.720000pt;}
.y9d{bottom:549.053333pt;}
.y60{bottom:550.813333pt;}
.y77{bottom:552.573333pt;}
.y1b{bottom:560.573333pt;}
.yb9{bottom:565.373333pt;}
.y113{bottom:567.453333pt;}
.y3f{bottom:570.973333pt;}
.y9c{bottom:576.573333pt;}
.y5f{bottom:578.493333pt;}
.y1a{bottom:578.973333pt;}
.y76{bottom:580.253333pt;}
.yb8{bottom:589.373333pt;}
.yda{bottom:589.440000pt;}
.yca{bottom:589.600000pt;}
.yef{bottom:591.293333pt;}
.y112{bottom:595.613333pt;}
.y19{bottom:597.373333pt;}
.y3e{bottom:598.653333pt;}
.y9b{bottom:604.253333pt;}
.y5e{bottom:606.013333pt;}
.y75{bottom:607.773333pt;}
.y18{bottom:617.053333pt;}
.yee{bottom:624.413333pt;}
.y3d{bottom:626.173333pt;}
.y111{bottom:626.493333pt;}
.y9a{bottom:631.773333pt;}
.y5d{bottom:633.693333pt;}
.y17{bottom:635.453333pt;}
.y133{bottom:644.573333pt;}
.yed{bottom:652.573333pt;}
.y16{bottom:653.853333pt;}
.y110{bottom:658.653333pt;}
.y99{bottom:659.453333pt;}
.y5c{bottom:661.213333pt;}
.y74{bottom:662.973333pt;}
.y15{bottom:672.253333pt;}
.y3c{bottom:681.373333pt;}
.yec{bottom:682.013333pt;}
.y98{bottom:686.973333pt;}
.y5b{bottom:688.893333pt;}
.y14{bottom:690.653333pt;}
.y132{bottom:699.773333pt;}
.y13{bottom:709.053333pt;}
.y3b{bottom:711.133333pt;}
.yeb{bottom:711.293333pt;}
.y97{bottom:714.653333pt;}
.y5a{bottom:716.413333pt;}
.y73{bottom:718.173333pt;}
.y12{bottom:727.453333pt;}
.y131{bottom:736.573333pt;}
.yea{bottom:740.733333pt;}
.y3a{bottom:741.213333pt;}
.y96{bottom:742.173333pt;}
.y59{bottom:744.093333pt;}
.y11{bottom:745.853333pt;}
.y130{bottom:754.973333pt;}
.y10{bottom:764.253333pt;}
.y39{bottom:768.893333pt;}
.ye9{bottom:769.693333pt;}
.y95{bottom:769.853333pt;}
.yd8{bottom:770.080000pt;}
.y58{bottom:771.613333pt;}
.y72{bottom:773.373333pt;}
.yf{bottom:782.693333pt;}
.y12f{bottom:791.813333pt;}
.ye8{bottom:794.053333pt;}
.y38{bottom:796.453333pt;}
.y94{bottom:797.413333pt;}
.y10f{bottom:799.333333pt;}
.y57{bottom:799.813333pt;}
.y71{bottom:801.093333pt;}
.ye7{bottom:805.893333pt;}
.yb7{bottom:808.933333pt;}
.y12e{bottom:810.213333pt;}
.ye{bottom:818.853333pt;}
.y37{bottom:824.133333pt;}
.y93{bottom:825.093333pt;}
.y10e{bottom:826.853333pt;}
.y56{bottom:828.613333pt;}
.ye6{bottom:828.933333pt;}
.yd{bottom:834.853333pt;}
.yb6{bottom:841.733333pt;}
.y12d{bottom:847.013333pt;}
.y36{bottom:851.653333pt;}
.ye5{bottom:851.973333pt;}
.y92{bottom:852.613333pt;}
.yc{bottom:853.253333pt;}
.y10d{bottom:854.533333pt;}
.y55{bottom:856.293333pt;}
.y12c{bottom:865.413333pt;}
.yb5{bottom:869.413333pt;}
.yb{bottom:871.653333pt;}
.ye4{bottom:874.853333pt;}
.y35{bottom:879.333333pt;}
.y91{bottom:880.773333pt;}
.y10c{bottom:882.053333pt;}
.y54{bottom:883.813333pt;}
.ya{bottom:890.533333pt;}
.yb4{bottom:896.933333pt;}
.ye2{bottom:899.333333pt;}
.y12b{bottom:902.213333pt;}
.y34{bottom:906.853333pt;}
.y90{bottom:909.733333pt;}
.y53{bottom:911.493333pt;}
.y9{bottom:911.973333pt;}
.y12a{bottom:920.613333pt;}
.ydf{bottom:923.973333pt;}
.yb3{bottom:924.613333pt;}
.y8{bottom:932.933333pt;}
.y33{bottom:934.533333pt;}
.y8f{bottom:937.253333pt;}
.y52{bottom:939.013333pt;}
.ydd{bottom:949.093333pt;}
.yb2{bottom:950.053333pt;}
.y7{bottom:951.813333pt;}
.y129{bottom:957.413333pt;}
.y32{bottom:962.053333pt;}
.yb1{bottom:963.173333pt;}
.y8e{bottom:964.773333pt;}
.y10b{bottom:965.413333pt;}
.y51{bottom:966.693333pt;}
.y6{bottom:973.253333pt;}
.y128{bottom:975.813333pt;}
.yb0{bottom:986.213333pt;}
.y31{bottom:991.653333pt;}
.y8d{bottom:992.933333pt;}
.y5{bottom:994.213333pt;}
.ydc{bottom:994.373333pt;}
.h13{height:17.600000pt;}
.hf{height:22.880000pt;}
.hd{height:23.040000pt;}
.h16{height:24.480000pt;}
.h17{height:24.640000pt;}
.h15{height:26.400000pt;}
.h18{height:43.031250pt;}
.ha{height:46.840769pt;}
.he{height:47.180312pt;}
.h7{height:47.621250pt;}
.h9{height:52.750000pt;}
.h2{height:52.785000pt;}
.h1a{height:52.834688pt;}
.h1b{height:52.962000pt;}
.h4{height:56.843750pt;}
.h1c{height:57.285313pt;}
.h8{height:57.375000pt;}
.h12{height:57.399000pt;}
.hb{height:58.563750pt;}
.h6{height:62.761250pt;}
.h3{height:63.656250pt;}
.h5{height:66.507188pt;}
.hc{height:67.128750pt;}
.h11{height:124.833646pt;}
.h19{height:200.960000pt;}
.h1d{height:201.120000pt;}
.h10{height:203.840000pt;}
.h14{height:204.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:61.600000pt;}
.w12{width:61.632000pt;}
.w11{width:61.760000pt;}
.w13{width:61.792000pt;}
.w14{width:62.080000pt;}
.w16{width:62.240000pt;}
.w18{width:62.272000pt;}
.w17{width:62.400000pt;}
.w19{width:62.432000pt;}
.w6{width:67.552000pt;}
.w5{width:67.680000pt;}
.w4{width:67.712000pt;}
.wb{width:68.000000pt;}
.wa{width:68.192000pt;}
.w9{width:68.320000pt;}
.w8{width:68.352000pt;}
.w3{width:126.720000pt;}
.w7{width:127.040000pt;}
.wf{width:169.786667pt;}
.w15{width:170.106667pt;}
.wd{width:215.200000pt;}
.w1a{width:468.960000pt;}
.w1b{width:469.120000pt;}
.wc{width:470.080000pt;}
.we{width:470.240000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:7.200000pt;}
.x2b{left:8.160000pt;}
.x26{left:9.306667pt;}
.x37{left:12.800000pt;}
.x40{left:14.400000pt;}
.x25{left:16.000000pt;}
.x1c{left:19.080000pt;}
.x3f{left:21.053333pt;}
.x1d{left:22.240000pt;}
.x12{left:24.154667pt;}
.x14{left:26.920000pt;}
.x27{left:30.653333pt;}
.x1f{left:38.874667pt;}
.x1e{left:42.234667pt;}
.x34{left:50.074667pt;}
.x36{left:51.194667pt;}
.x39{left:53.114667pt;}
.x1b{left:54.234667pt;}
.x33{left:56.634667pt;}
.x3c{left:75.200000pt;}
.x24{left:80.800000pt;}
.x35{left:84.954667pt;}
.x41{left:91.773333pt;}
.x1{left:113.471988pt;}
.x42{left:117.311988pt;}
.x7{left:118.271988pt;}
.x28{left:134.720000pt;}
.x2a{left:140.026655pt;}
.x3{left:147.546655pt;}
.x10{left:151.226655pt;}
.x11{left:157.146655pt;}
.x5{left:162.266655pt;}
.xd{left:169.306655pt;}
.xe{left:178.106655pt;}
.x23{left:180.640000pt;}
.x3b{left:183.520000pt;}
.x3a{left:185.306655pt;}
.x20{left:196.346655pt;}
.xb{left:211.866655pt;}
.xc{left:220.666655pt;}
.x21{left:225.146655pt;}
.x4{left:228.026655pt;}
.x13{left:240.826667pt;}
.x6{left:243.066655pt;}
.x3d{left:281.026667pt;}
.x2c{left:283.906667pt;}
.xa{left:298.306655pt;}
.x9{left:305.506655pt;}
.x15{left:309.186667pt;}
.x8{left:324.386655pt;}
.x2d{left:346.146667pt;}
.x16{left:377.506667pt;}
.x3e{left:385.600000pt;}
.x2e{left:408.546667pt;}
.x2{left:415.933322pt;}
.x29{left:421.253333pt;}
.x17{left:445.693333pt;}
.x2f{left:470.973333pt;}
.x18{left:514.013333pt;}
.x30{left:533.213333pt;}
.x19{left:582.333333pt;}
.x31{left:595.653333pt;}
.x1a{left:650.533333pt;}
.x22{left:652.933322pt;}
.x32{left:657.893333pt;}
.xf{left:696.133322pt;}
}




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