
    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_e6dca3945cfe60507e729728.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_ff323eb6ed557577604f3651.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_39d0219d36e1267596c57781.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d567875134f2dfc0f5c1af90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e677f4f47b51eb736c488dad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cff8d2e696787aec2acc185e.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_b5ac80406bbc25a796cfd0c6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_93abc07e1cf9ddc981cf5278.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f804e7e4e751418a7376aaaa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls28{letter-spacing:-1.440000px;}
.ls29{letter-spacing:-1.152000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.576000px;}
.ls32{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.018720px;}
.lsc{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.252000px;}
.ls2f{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.336000px;}
.lse{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.350640px;}
.ls8{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.396000px;}
.ls1b{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.503040px;}
.ls15{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.ls3a{letter-spacing:0.864000px;}
.ls9{letter-spacing:1.440000px;}
.ls49{letter-spacing:2.880000px;}
.ls2c{letter-spacing:3.600000px;}
.ls17{letter-spacing:4.320000px;}
.ls18{letter-spacing:5.040000px;}
.ls2a{letter-spacing:6.480000px;}
.ls34{letter-spacing:7.200000px;}
.lsb{letter-spacing:7.920000px;}
.lsa{letter-spacing:8.640000px;}
.ls22{letter-spacing:9.360000px;}
.ls2b{letter-spacing:10.800000px;}
.ls16{letter-spacing:12.240000px;}
.ls45{letter-spacing:12.960000px;}
.ls24{letter-spacing:13.680000px;}
.ls47{letter-spacing:14.400000px;}
.ls26{letter-spacing:15.840000px;}
.ls5{letter-spacing:16.560000px;}
.ls44{letter-spacing:17.280000px;}
.ls38{letter-spacing:18.000000px;}
.ls36{letter-spacing:19.440000px;}
.ls3c{letter-spacing:21.600000px;}
.ls39{letter-spacing:22.320000px;}
.ls37{letter-spacing:23.040000px;}
.ls43{letter-spacing:25.920000px;}
.ls42{letter-spacing:26.100000px;}
.ls1a{letter-spacing:28.080000px;}
.ls41{letter-spacing:31.680000px;}
.ls46{letter-spacing:33.840000px;}
.ls2d{letter-spacing:34.560000px;}
.ls1d{letter-spacing:40.320000px;}
.ls1e{letter-spacing:40.440000px;}
.ls19{letter-spacing:42.480000px;}
.ls35{letter-spacing:43.200000px;}
.ls3b{letter-spacing:61.920000px;}
.ls3f{letter-spacing:83.861280px;}
.ls33{letter-spacing:84.240000px;}
.ls3e{letter-spacing:125.621280px;}
.ls3d{letter-spacing:138.384000px;}
.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;}
}
.ws0{word-spacing:-26.424000px;}
.ws17{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.wsf{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.640000px;}
.wse{word-spacing:-17.568000px;}
.ws16{word-spacing:-17.280000px;}
.ws11{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.970240px;}
.ws9{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.wsc{word-spacing:0.000000px;}
._34{margin-left:-17.010720px;}
._2f{margin-left:-8.580000px;}
._32{margin-left:-7.104000px;}
._31{margin-left:-5.484000px;}
._33{margin-left:-3.540000px;}
._27{margin-left:-2.484000px;}
._0{margin-left:-1.188000px;}
._2{width:1.488000px;}
._a{width:2.712000px;}
._7{width:4.116000px;}
._21{width:5.748000px;}
._19{width:6.768000px;}
._16{width:8.352000px;}
._1d{width:10.008000px;}
._1e{width:11.016000px;}
._20{width:12.180000px;}
._17{width:13.356000px;}
._4{width:14.952000px;}
._3{width:16.848000px;}
._1{width:18.648000px;}
._f{width:20.304000px;}
._10{width:22.008000px;}
._e{width:23.256000px;}
._1a{width:24.960000px;}
._2b{width:26.040000px;}
._18{width:27.048000px;}
._13{width:28.740000px;}
._14{width:30.096000px;}
._c{width:31.512000px;}
._b{width:32.544000px;}
._15{width:34.464000px;}
._29{width:35.940000px;}
._28{width:38.088000px;}
._30{width:39.288000px;}
._22{width:40.464000px;}
._23{width:41.976000px;}
._1b{width:43.968000px;}
._1c{width:45.528000px;}
._25{width:47.976000px;}
._24{width:49.248000px;}
._26{width:51.048000px;}
._8{width:56.160000px;}
._9{width:57.492000px;}
._2d{width:60.444000px;}
._d{width:61.908000px;}
._1f{width:65.520000px;}
._2e{width:67.968000px;}
._2a{width:74.952000px;}
._2c{width:85.104000px;}
._11{width:88.560000px;}
._12{width:89.568000px;}
._6{width:96.888000px;}
._5{width:98.136000px;}
.fc7{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc6{color:rgb(31,31,31);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y81{bottom:10.440000px;}
.y7{bottom:11.340000px;}
.y67{bottom:14.445000px;}
.y60{bottom:24.660000px;}
.y68{bottom:24.705000px;}
.y6f{bottom:25.560000px;}
.y2{bottom:28.260000px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.y52{bottom:121.176000px;}
.ya5{bottom:128.376000px;}
.y86{bottom:131.076000px;}
.y30{bottom:131.256000px;}
.ya8{bottom:141.876000px;}
.y51{bottom:152.310000px;}
.y85{bottom:152.490000px;}
.ya4{bottom:159.510000px;}
.y5b{bottom:161.310000px;}
.y2f{bottom:162.210000px;}
.yb9{bottom:166.530000px;}
.y84{bottom:173.910000px;}
.ya7{bottom:175.350000px;}
.y50{bottom:183.270000px;}
.ya3{bottom:190.470000px;}
.y5a{bottom:192.270000px;}
.y2e{bottom:193.350000px;}
.y83{bottom:195.330000px;}
.yb8{bottom:197.490000px;}
.ya6{bottom:211.530000px;}
.y4f{bottom:214.410000px;}
.y82{bottom:216.750000px;}
.ya2{bottom:221.430000px;}
.y59{bottom:223.410000px;}
.y2d{bottom:224.310000px;}
.yb7{bottom:228.450000px;}
.y80{bottom:238.170000px;}
.y4e{bottom:245.370000px;}
.y58{bottom:254.370000px;}
.y2c{bottom:255.450000px;}
.yb6{bottom:262.470000px;}
.ya1{bottom:265.530000px;}
.y7f{bottom:266.070000px;}
.y4d{bottom:276.510000px;}
.y57{bottom:285.510000px;}
.y2b{bottom:286.410000px;}
.y7e{bottom:287.490000px;}
.yb5{bottom:293.430000px;}
.y4c{bottom:307.470000px;}
.y7d{bottom:316.110000px;}
.y56{bottom:316.470000px;}
.y2a{bottom:317.550000px;}
.yb4{bottom:324.390000px;}
.y4b{bottom:338.655000px;}
.y7c{bottom:339.915000px;}
.y55{bottom:347.655000px;}
.y29{bottom:348.555000px;}
.yb3{bottom:358.455000px;}
.y7b{bottom:363.675000px;}
.y4a{bottom:369.615000px;}
.y54{bottom:378.615000px;}
.y28{bottom:382.035000px;}
.yb2{bottom:389.415000px;}
.y7a{bottom:394.815000px;}
.y49{bottom:400.755000px;}
.y53{bottom:405.615000px;}
.y27{bottom:408.675000px;}
.yb1{bottom:420.375000px;}
.y79{bottom:425.775000px;}
.y48{bottom:431.715000px;}
.y26{bottom:432.435000px;}
.yb0{bottom:454.395000px;}
.ya0{bottom:455.295000px;}
.y25{bottom:456.195000px;}
.y78{bottom:456.915000px;}
.y47{bottom:462.855000px;}
.y24{bottom:479.955000px;}
.yaf{bottom:485.355000px;}
.y9f{bottom:486.255000px;}
.y77{bottom:487.875000px;}
.y46{bottom:493.815000px;}
.y23{bottom:503.895000px;}
.yae{bottom:516.495000px;}
.y9e{bottom:517.395000px;}
.y76{bottom:519.015000px;}
.y45{bottom:524.955000px;}
.y22{bottom:527.655000px;}
.y9d{bottom:548.355000px;}
.y75{bottom:549.975000px;}
.yad{bottom:550.335000px;}
.y21{bottom:551.415000px;}
.y44{bottom:555.915000px;}
.y20{bottom:575.175000px;}
.y9c{bottom:579.495000px;}
.y74{bottom:581.115000px;}
.yac{bottom:581.295000px;}
.y43{bottom:587.055000px;}
.y1f{bottom:600.195000px;}
.y9b{bottom:610.485000px;}
.y73{bottom:612.105000px;}
.yab{bottom:615.345000px;}
.y42{bottom:618.045000px;}
.y1e{bottom:626.865000px;}
.y9a{bottom:641.625000px;}
.y72{bottom:643.245000px;}
.yaa{bottom:646.305000px;}
.y41{bottom:649.185000px;}
.y1d{bottom:650.625000px;}
.y99{bottom:672.585000px;}
.y71{bottom:674.205000px;}
.y1c{bottom:674.385000px;}
.ya9{bottom:677.265000px;}
.y40{bottom:680.145000px;}
.y1b{bottom:698.325000px;}
.y98{bottom:703.725000px;}
.y6e{bottom:709.665000px;}
.y3f{bottom:711.285000px;}
.y1a{bottom:722.085000px;}
.y70{bottom:731.265000px;}
.y97{bottom:734.685000px;}
.y3e{bottom:742.245000px;}
.y19{bottom:745.845000px;}
.y6d{bottom:752.685000px;}
.yc5{bottom:763.125000px;}
.y96{bottom:765.825000px;}
.y18{bottom:769.605000px;}
.y3d{bottom:773.385000px;}
.y6c{bottom:774.105000px;}
.yc4{bottom:793.185000px;}
.y17{bottom:793.545000px;}
.y6b{bottom:795.525000px;}
.y95{bottom:796.785000px;}
.y3c{bottom:804.345000px;}
.y6a{bottom:816.945000px;}
.y16{bottom:818.385000px;}
.yc3{bottom:824.145000px;}
.y94{bottom:827.925000px;}
.y3b{bottom:835.305000px;}
.y69{bottom:838.365000px;}
.y15{bottom:846.105000px;}
.yc2{bottom:855.105000px;}
.y93{bottom:858.885000px;}
.y66{bottom:859.785000px;}
.y3a{bottom:866.445000px;}
.y14{bottom:872.790000px;}
.yc1{bottom:889.170000px;}
.y92{bottom:890.070000px;}
.y13{bottom:896.730000px;}
.y39{bottom:897.450000px;}
.y65{bottom:902.130000px;}
.yc0{bottom:920.130000px;}
.y12{bottom:920.490000px;}
.y91{bottom:921.030000px;}
.y38{bottom:928.590000px;}
.y11{bottom:944.250000px;}
.ybf{bottom:951.090000px;}
.y90{bottom:952.170000px;}
.y37{bottom:959.550000px;}
.y64{bottom:965.670000px;}
.y10{bottom:968.010000px;}
.y8f{bottom:969.630000px;}
.ybe{bottom:985.110000px;}
.y63{bottom:987.090000px;}
.y36{bottom:990.690000px;}
.y8e{bottom:991.050000px;}
.yf{bottom:991.950000px;}
.y62{bottom:1008.510000px;}
.y8d{bottom:1012.470000px;}
.ye{bottom:1015.710000px;}
.ybd{bottom:1016.070000px;}
.y35{bottom:1021.650000px;}
.y61{bottom:1029.930000px;}
.y8c{bottom:1033.890000px;}
.yd{bottom:1046.670000px;}
.ybc{bottom:1047.210000px;}
.y5f{bottom:1051.530000px;}
.y34{bottom:1052.790000px;}
.y8b{bottom:1055.490000px;}
.yc{bottom:1070.610000px;}
.y8a{bottom:1076.910000px;}
.ybb{bottom:1078.170000px;}
.y33{bottom:1083.750000px;}
.y5d{bottom:1093.650000px;}
.yb{bottom:1094.370000px;}
.y89{bottom:1098.330000px;}
.yba{bottom:1112.010000px;}
.y32{bottom:1114.890000px;}
.ya{bottom:1118.130000px;}
.y88{bottom:1119.750000px;}
.y5c{bottom:1122.090000px;}
.y87{bottom:1141.200000px;}
.y9{bottom:1143.000000px;}
.y31{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h10{height:20.700000px;}
.h15{height:20.736000px;}
.h5{height:27.000000px;}
.h14{height:27.180000px;}
.h11{height:41.400000px;}
.h12{height:41.436000px;}
.h13{height:42.300000px;}
.hc{height:50.484375px;}
.h7{height:50.800781px;}
.h17{height:52.417969px;}
.h2{height:53.460000px;}
.ha{height:58.429688px;}
.h16{height:59.066719px;}
.h8{height:59.343750px;}
.hb{height:59.436914px;}
.hd{height:61.184531px;}
.h18{height:61.329023px;}
.he{height:61.364531px;}
.hf{height:62.907891px;}
.h4{height:65.884219px;}
.h9{height:67.120313px;}
.h6{height:68.362734px;}
.h3{height:75.726562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:65.880000px;}
.wa{width:73.260000px;}
.wd{width:73.620000px;}
.wc{width:73.836000px;}
.w12{width:94.860000px;}
.w11{width:105.516000px;}
.w5{width:106.416000px;}
.w14{width:116.136000px;}
.w15{width:116.280000px;}
.w13{width:116.316000px;}
.w10{width:129.060000px;}
.wb{width:177.330000px;}
.we{width:211.890000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w7{width:317.910000px;}
.w8{width:360.795000px;}
.w2{width:498.675000px;}
.wf{width:681.945000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:9.540000px;}
.x1d{left:11.340000px;}
.x32{left:14.220000px;}
.x23{left:15.300000px;}
.x2c{left:16.380000px;}
.x2e{left:19.665000px;}
.x2f{left:21.825000px;}
.x35{left:23.220000px;}
.x1e{left:26.460000px;}
.x20{left:27.540000px;}
.x24{left:30.240000px;}
.x2a{left:32.250000px;}
.x39{left:34.200000px;}
.x42{left:37.800000px;}
.x36{left:39.060000px;}
.x9{left:40.680000px;}
.x34{left:43.560000px;}
.x29{left:46.665000px;}
.x3b{left:48.285000px;}
.x3f{left:53.640000px;}
.x43{left:55.434000px;}
.x41{left:59.934000px;}
.x2d{left:64.440000px;}
.x31{left:68.400000px;}
.x2b{left:70.605000px;}
.x22{left:79.425000px;}
.x4{left:82.260000px;}
.x33{left:83.925000px;}
.x6{left:84.960000px;}
.x27{left:96.525000px;}
.x5{left:106.415987px;}
.x18{left:109.295987px;}
.x1a{left:117.396000px;}
.xb{left:122.615987px;}
.x37{left:126.215987px;}
.x28{left:127.650000px;}
.x46{left:148.895987px;}
.xd{left:154.649987px;}
.x10{left:159.509987px;}
.x14{left:170.309987px;}
.x13{left:173.189987px;}
.x1c{left:175.890000px;}
.x1f{left:183.990000px;}
.xe{left:189.389987px;}
.x2{left:197.310000px;}
.x11{left:207.569987px;}
.x3a{left:236.550000px;}
.xc{left:251.669987px;}
.x21{left:257.970000px;}
.x1{left:278.175000px;}
.x45{left:280.154987px;}
.x16{left:282.494987px;}
.x38{left:292.719000px;}
.x7{left:297.795000px;}
.xf{left:306.434987px;}
.x3c{left:342.975000px;}
.x12{left:349.814987px;}
.x48{left:381.674987px;}
.x8{left:390.855000px;}
.x19{left:402.194987px;}
.x1b{left:436.035000px;}
.x3d{left:438.555000px;}
.x47{left:483.764987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x25{left:510.585000px;}
.x3e{left:555.585000px;}
.x26{left:584.925000px;}
.x40{left:672.450000px;}
.x17{left:725.729987px;}
.x15{left:797.009987px;}
.x44{left:806.009987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls28{letter-spacing:-1.280000pt;}
.ls29{letter-spacing:-1.024000pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.016640pt;}
.lsc{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.224000pt;}
.ls2f{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.311680pt;}
.ls8{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.352000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.447147pt;}
.ls15{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls3a{letter-spacing:0.768000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls49{letter-spacing:2.560000pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls18{letter-spacing:4.480000pt;}
.ls2a{letter-spacing:5.760000pt;}
.ls34{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.040000pt;}
.lsa{letter-spacing:7.680000pt;}
.ls22{letter-spacing:8.320000pt;}
.ls2b{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls45{letter-spacing:11.520000pt;}
.ls24{letter-spacing:12.160000pt;}
.ls47{letter-spacing:12.800000pt;}
.ls26{letter-spacing:14.080000pt;}
.ls5{letter-spacing:14.720000pt;}
.ls44{letter-spacing:15.360000pt;}
.ls38{letter-spacing:16.000000pt;}
.ls36{letter-spacing:17.280000pt;}
.ls3c{letter-spacing:19.200000pt;}
.ls39{letter-spacing:19.840000pt;}
.ls37{letter-spacing:20.480000pt;}
.ls43{letter-spacing:23.040000pt;}
.ls42{letter-spacing:23.200000pt;}
.ls1a{letter-spacing:24.960000pt;}
.ls41{letter-spacing:28.160000pt;}
.ls46{letter-spacing:30.080000pt;}
.ls2d{letter-spacing:30.720000pt;}
.ls1d{letter-spacing:35.840000pt;}
.ls1e{letter-spacing:35.946667pt;}
.ls19{letter-spacing:37.760000pt;}
.ls35{letter-spacing:38.400000pt;}
.ls3b{letter-spacing:55.040000pt;}
.ls3f{letter-spacing:74.543360pt;}
.ls33{letter-spacing:74.880000pt;}
.ls3e{letter-spacing:111.663360pt;}
.ls3d{letter-spacing:123.008000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws17{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.wsf{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.680000pt;}
.wse{word-spacing:-15.616000pt;}
.ws16{word-spacing:-15.360000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.306880pt;}
.ws9{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.wsc{word-spacing:0.000000pt;}
._34{margin-left:-15.120640pt;}
._2f{margin-left:-7.626667pt;}
._32{margin-left:-6.314667pt;}
._31{margin-left:-4.874667pt;}
._33{margin-left:-3.146667pt;}
._27{margin-left:-2.208000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.322667pt;}
._a{width:2.410667pt;}
._7{width:3.658667pt;}
._21{width:5.109333pt;}
._19{width:6.016000pt;}
._16{width:7.424000pt;}
._1d{width:8.896000pt;}
._1e{width:9.792000pt;}
._20{width:10.826667pt;}
._17{width:11.872000pt;}
._4{width:13.290667pt;}
._3{width:14.976000pt;}
._1{width:16.576000pt;}
._f{width:18.048000pt;}
._10{width:19.562667pt;}
._e{width:20.672000pt;}
._1a{width:22.186667pt;}
._2b{width:23.146667pt;}
._18{width:24.042667pt;}
._13{width:25.546667pt;}
._14{width:26.752000pt;}
._c{width:28.010667pt;}
._b{width:28.928000pt;}
._15{width:30.634667pt;}
._29{width:31.946667pt;}
._28{width:33.856000pt;}
._30{width:34.922667pt;}
._22{width:35.968000pt;}
._23{width:37.312000pt;}
._1b{width:39.082667pt;}
._1c{width:40.469333pt;}
._25{width:42.645333pt;}
._24{width:43.776000pt;}
._26{width:45.376000pt;}
._8{width:49.920000pt;}
._9{width:51.104000pt;}
._2d{width:53.728000pt;}
._d{width:55.029333pt;}
._1f{width:58.240000pt;}
._2e{width:60.416000pt;}
._2a{width:66.624000pt;}
._2c{width:75.648000pt;}
._11{width:78.720000pt;}
._12{width:79.616000pt;}
._6{width:86.122667pt;}
._5{width:87.232000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y81{bottom:9.280000pt;}
.y7{bottom:10.080000pt;}
.y67{bottom:12.840000pt;}
.y60{bottom:21.920000pt;}
.y68{bottom:21.960000pt;}
.y6f{bottom:22.720000pt;}
.y2{bottom:25.120000pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.y52{bottom:107.712000pt;}
.ya5{bottom:114.112000pt;}
.y86{bottom:116.512000pt;}
.y30{bottom:116.672000pt;}
.ya8{bottom:126.112000pt;}
.y51{bottom:135.386667pt;}
.y85{bottom:135.546667pt;}
.ya4{bottom:141.786667pt;}
.y5b{bottom:143.386667pt;}
.y2f{bottom:144.186667pt;}
.yb9{bottom:148.026667pt;}
.y84{bottom:154.586667pt;}
.ya7{bottom:155.866667pt;}
.y50{bottom:162.906667pt;}
.ya3{bottom:169.306667pt;}
.y5a{bottom:170.906667pt;}
.y2e{bottom:171.866667pt;}
.y83{bottom:173.626667pt;}
.yb8{bottom:175.546667pt;}
.ya6{bottom:188.026667pt;}
.y4f{bottom:190.586667pt;}
.y82{bottom:192.666667pt;}
.ya2{bottom:196.826667pt;}
.y59{bottom:198.586667pt;}
.y2d{bottom:199.386667pt;}
.yb7{bottom:203.066667pt;}
.y80{bottom:211.706667pt;}
.y4e{bottom:218.106667pt;}
.y58{bottom:226.106667pt;}
.y2c{bottom:227.066667pt;}
.yb6{bottom:233.306667pt;}
.ya1{bottom:236.026667pt;}
.y7f{bottom:236.506667pt;}
.y4d{bottom:245.786667pt;}
.y57{bottom:253.786667pt;}
.y2b{bottom:254.586667pt;}
.y7e{bottom:255.546667pt;}
.yb5{bottom:260.826667pt;}
.y4c{bottom:273.306667pt;}
.y7d{bottom:280.986667pt;}
.y56{bottom:281.306667pt;}
.y2a{bottom:282.266667pt;}
.yb4{bottom:288.346667pt;}
.y4b{bottom:301.026667pt;}
.y7c{bottom:302.146667pt;}
.y55{bottom:309.026667pt;}
.y29{bottom:309.826667pt;}
.yb3{bottom:318.626667pt;}
.y7b{bottom:323.266667pt;}
.y4a{bottom:328.546667pt;}
.y54{bottom:336.546667pt;}
.y28{bottom:339.586667pt;}
.yb2{bottom:346.146667pt;}
.y7a{bottom:350.946667pt;}
.y49{bottom:356.226667pt;}
.y53{bottom:360.546667pt;}
.y27{bottom:363.266667pt;}
.yb1{bottom:373.666667pt;}
.y79{bottom:378.466667pt;}
.y48{bottom:383.746667pt;}
.y26{bottom:384.386667pt;}
.yb0{bottom:403.906667pt;}
.ya0{bottom:404.706667pt;}
.y25{bottom:405.506667pt;}
.y78{bottom:406.146667pt;}
.y47{bottom:411.426667pt;}
.y24{bottom:426.626667pt;}
.yaf{bottom:431.426667pt;}
.y9f{bottom:432.226667pt;}
.y77{bottom:433.666667pt;}
.y46{bottom:438.946667pt;}
.y23{bottom:447.906667pt;}
.yae{bottom:459.106667pt;}
.y9e{bottom:459.906667pt;}
.y76{bottom:461.346667pt;}
.y45{bottom:466.626667pt;}
.y22{bottom:469.026667pt;}
.y9d{bottom:487.426667pt;}
.y75{bottom:488.866667pt;}
.yad{bottom:489.186667pt;}
.y21{bottom:490.146667pt;}
.y44{bottom:494.146667pt;}
.y20{bottom:511.266667pt;}
.y9c{bottom:515.106667pt;}
.y74{bottom:516.546667pt;}
.yac{bottom:516.706667pt;}
.y43{bottom:521.826667pt;}
.y1f{bottom:533.506667pt;}
.y9b{bottom:542.653333pt;}
.y73{bottom:544.093333pt;}
.yab{bottom:546.973333pt;}
.y42{bottom:549.373333pt;}
.y1e{bottom:557.213333pt;}
.y9a{bottom:570.333333pt;}
.y72{bottom:571.773333pt;}
.yaa{bottom:574.493333pt;}
.y41{bottom:577.053333pt;}
.y1d{bottom:578.333333pt;}
.y99{bottom:597.853333pt;}
.y71{bottom:599.293333pt;}
.y1c{bottom:599.453333pt;}
.ya9{bottom:602.013333pt;}
.y40{bottom:604.573333pt;}
.y1b{bottom:620.733333pt;}
.y98{bottom:625.533333pt;}
.y6e{bottom:630.813333pt;}
.y3f{bottom:632.253333pt;}
.y1a{bottom:641.853333pt;}
.y70{bottom:650.013333pt;}
.y97{bottom:653.053333pt;}
.y3e{bottom:659.773333pt;}
.y19{bottom:662.973333pt;}
.y6d{bottom:669.053333pt;}
.yc5{bottom:678.333333pt;}
.y96{bottom:680.733333pt;}
.y18{bottom:684.093333pt;}
.y3d{bottom:687.453333pt;}
.y6c{bottom:688.093333pt;}
.yc4{bottom:705.053333pt;}
.y17{bottom:705.373333pt;}
.y6b{bottom:707.133333pt;}
.y95{bottom:708.253333pt;}
.y3c{bottom:714.973333pt;}
.y6a{bottom:726.173333pt;}
.y16{bottom:727.453333pt;}
.yc3{bottom:732.573333pt;}
.y94{bottom:735.933333pt;}
.y3b{bottom:742.493333pt;}
.y69{bottom:745.213333pt;}
.y15{bottom:752.093333pt;}
.yc2{bottom:760.093333pt;}
.y93{bottom:763.453333pt;}
.y66{bottom:764.253333pt;}
.y3a{bottom:770.173333pt;}
.y14{bottom:775.813333pt;}
.yc1{bottom:790.373333pt;}
.y92{bottom:791.173333pt;}
.y13{bottom:797.093333pt;}
.y39{bottom:797.733333pt;}
.y65{bottom:801.893333pt;}
.yc0{bottom:817.893333pt;}
.y12{bottom:818.213333pt;}
.y91{bottom:818.693333pt;}
.y38{bottom:825.413333pt;}
.y11{bottom:839.333333pt;}
.ybf{bottom:845.413333pt;}
.y90{bottom:846.373333pt;}
.y37{bottom:852.933333pt;}
.y64{bottom:858.373333pt;}
.y10{bottom:860.453333pt;}
.y8f{bottom:861.893333pt;}
.ybe{bottom:875.653333pt;}
.y63{bottom:877.413333pt;}
.y36{bottom:880.613333pt;}
.y8e{bottom:880.933333pt;}
.yf{bottom:881.733333pt;}
.y62{bottom:896.453333pt;}
.y8d{bottom:899.973333pt;}
.ye{bottom:902.853333pt;}
.ybd{bottom:903.173333pt;}
.y35{bottom:908.133333pt;}
.y61{bottom:915.493333pt;}
.y8c{bottom:919.013333pt;}
.yd{bottom:930.373333pt;}
.ybc{bottom:930.853333pt;}
.y5f{bottom:934.693333pt;}
.y34{bottom:935.813333pt;}
.y8b{bottom:938.213333pt;}
.yc{bottom:951.653333pt;}
.y8a{bottom:957.253333pt;}
.ybb{bottom:958.373333pt;}
.y33{bottom:963.333333pt;}
.y5d{bottom:972.133333pt;}
.yb{bottom:972.773333pt;}
.y89{bottom:976.293333pt;}
.yba{bottom:988.453333pt;}
.y32{bottom:991.013333pt;}
.ya{bottom:993.893333pt;}
.y88{bottom:995.333333pt;}
.y5c{bottom:997.413333pt;}
.y87{bottom:1014.400000pt;}
.y9{bottom:1016.000000pt;}
.y31{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h10{height:18.400000pt;}
.h15{height:18.432000pt;}
.h5{height:24.000000pt;}
.h14{height:24.160000pt;}
.h11{height:36.800000pt;}
.h12{height:36.832000pt;}
.h13{height:37.600000pt;}
.hc{height:44.875000pt;}
.h7{height:45.156250pt;}
.h17{height:46.593750pt;}
.h2{height:47.520000pt;}
.ha{height:51.937500pt;}
.h16{height:52.503750pt;}
.h8{height:52.750000pt;}
.hb{height:52.832812pt;}
.hd{height:54.386250pt;}
.h18{height:54.514687pt;}
.he{height:54.546250pt;}
.hf{height:55.918125pt;}
.h4{height:58.563750pt;}
.h9{height:59.662500pt;}
.h6{height:60.766875pt;}
.h3{height:67.312500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:58.560000pt;}
.wa{width:65.120000pt;}
.wd{width:65.440000pt;}
.wc{width:65.632000pt;}
.w12{width:84.320000pt;}
.w11{width:93.792000pt;}
.w5{width:94.592000pt;}
.w14{width:103.232000pt;}
.w15{width:103.360000pt;}
.w13{width:103.392000pt;}
.w10{width:114.720000pt;}
.wb{width:157.626667pt;}
.we{width:188.346667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w7{width:282.586667pt;}
.w8{width:320.706667pt;}
.w2{width:443.266667pt;}
.wf{width:606.173333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:8.480000pt;}
.x1d{left:10.080000pt;}
.x32{left:12.640000pt;}
.x23{left:13.600000pt;}
.x2c{left:14.560000pt;}
.x2e{left:17.480000pt;}
.x2f{left:19.400000pt;}
.x35{left:20.640000pt;}
.x1e{left:23.520000pt;}
.x20{left:24.480000pt;}
.x24{left:26.880000pt;}
.x2a{left:28.666667pt;}
.x39{left:30.400000pt;}
.x42{left:33.600000pt;}
.x36{left:34.720000pt;}
.x9{left:36.160000pt;}
.x34{left:38.720000pt;}
.x29{left:41.480000pt;}
.x3b{left:42.920000pt;}
.x3f{left:47.680000pt;}
.x43{left:49.274667pt;}
.x41{left:53.274667pt;}
.x2d{left:57.280000pt;}
.x31{left:60.800000pt;}
.x2b{left:62.760000pt;}
.x22{left:70.600000pt;}
.x4{left:73.120000pt;}
.x33{left:74.600000pt;}
.x6{left:75.520000pt;}
.x27{left:85.800000pt;}
.x5{left:94.591988pt;}
.x18{left:97.151988pt;}
.x1a{left:104.352000pt;}
.xb{left:108.991988pt;}
.x37{left:112.191988pt;}
.x28{left:113.466667pt;}
.x46{left:132.351988pt;}
.xd{left:137.466655pt;}
.x10{left:141.786655pt;}
.x14{left:151.386655pt;}
.x13{left:153.946655pt;}
.x1c{left:156.346667pt;}
.x1f{left:163.546667pt;}
.xe{left:168.346655pt;}
.x2{left:175.386667pt;}
.x11{left:184.506655pt;}
.x3a{left:210.266667pt;}
.xc{left:223.706655pt;}
.x21{left:229.306667pt;}
.x1{left:247.266667pt;}
.x45{left:249.026655pt;}
.x16{left:251.106655pt;}
.x38{left:260.194667pt;}
.x7{left:264.706667pt;}
.xf{left:272.386655pt;}
.x3c{left:304.866667pt;}
.x12{left:310.946655pt;}
.x48{left:339.266655pt;}
.x8{left:347.426667pt;}
.x19{left:357.506655pt;}
.x1b{left:387.586667pt;}
.x3d{left:389.826667pt;}
.x47{left:430.013322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x25{left:453.853333pt;}
.x3e{left:493.853333pt;}
.x26{left:519.933333pt;}
.x40{left:597.733333pt;}
.x17{left:645.093322pt;}
.x15{left:708.453322pt;}
.x44{left:716.453322pt;}
}




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