
    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_d15d04b0dfe893fed12bb5b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_1efe5065c42a566016d1e248.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_6b41eed959e5fbab5f570434.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_4a763dffffe21e8a3be90a24.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_646bf6ba9875dd508bfbf259.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_19d076e8dcc2876ea10b4418.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_afbcbeaf714838f40a214be7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_9166543ae74b294e6b907242.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_2779d8114e2db131c4a2ae66.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffb{font-family:ffb;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.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls3c{letter-spacing:-1.008000px;}
.ls3b{letter-spacing:-0.936000px;}
.ls49{letter-spacing:-0.864000px;}
.ls44{letter-spacing:-0.768000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.576000px;}
.ls2d{letter-spacing:-0.504000px;}
.ls45{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.045360px;}
.ls1d{letter-spacing:-0.000006px;}
.ls17{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000001px;}
.ls43{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.161280px;}
.ls1f{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.252000px;}
.ls4d{letter-spacing:0.256200px;}
.ls3f{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.350640px;}
.ls1b{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls48{letter-spacing:0.504000px;}
.ls42{letter-spacing:0.540000px;}
.ls4a{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.648000px;}
.ls2a{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.792000px;}
.ls33{letter-spacing:0.900000px;}
.ls5{letter-spacing:1.440000px;}
.ls4c{letter-spacing:2.160000px;}
.ls30{letter-spacing:3.600000px;}
.ls8{letter-spacing:4.320000px;}
.ls4b{letter-spacing:5.040000px;}
.ls40{letter-spacing:5.160000px;}
.lsb{letter-spacing:6.480000px;}
.ls9{letter-spacing:7.920000px;}
.ls20{letter-spacing:8.640000px;}
.ls34{letter-spacing:10.080000px;}
.ls32{letter-spacing:10.800000px;}
.ls39{letter-spacing:12.240000px;}
.ls37{letter-spacing:12.960000px;}
.ls28{letter-spacing:15.120000px;}
.lse{letter-spacing:15.840000px;}
.ls24{letter-spacing:17.280000px;}
.ls25{letter-spacing:17.424000px;}
.ls23{letter-spacing:20.160000px;}
.ls2f{letter-spacing:20.880000px;}
.ls29{letter-spacing:22.320000px;}
.ls22{letter-spacing:23.040000px;}
.ls21{letter-spacing:29.520000px;}
.ls36{letter-spacing:30.240000px;}
.ls35{letter-spacing:31.680000px;}
.lsc{letter-spacing:32.400000px;}
.ls26{letter-spacing:32.580000px;}
.ls14{letter-spacing:33.120000px;}
.ls3e{letter-spacing:33.840000px;}
.lsd{letter-spacing:35.280000px;}
.ls38{letter-spacing:38.160000px;}
.ls12{letter-spacing:40.320000px;}
.ls47{letter-spacing:45.360000px;}
.ls6{letter-spacing:54.720000px;}
.ls11{letter-spacing:61.200000px;}
.ls10{letter-spacing:61.320000px;}
.ls41{letter-spacing:82.080000px;}
.ls3d{letter-spacing:83.520000px;}
.ls2e{letter-spacing:102.240000px;}
.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;}
.ws2{word-spacing:-21.060000px;}
.wse{word-spacing:-18.720000px;}
.ws18{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.999994px;}
.ws4{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.568000px;}
.wsf{word-spacing:-17.280000px;}
.ws16{word-spacing:-17.136000px;}
.ws19{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws12{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.ws15{word-spacing:-12.014640px;}
.ws17{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.292000px;}
.wsc{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._2{width:1.452000px;}
._d{width:3.348000px;}
._4{width:4.800000px;}
._6{width:6.456000px;}
._5{width:7.632000px;}
._7{width:8.640000px;}
._22{width:9.648000px;}
._1c{width:10.656000px;}
._1d{width:11.700000px;}
._1a{width:13.296000px;}
._19{width:14.868000px;}
._e{width:15.888000px;}
._1b{width:16.896000px;}
._1{width:18.648000px;}
._16{width:19.896000px;}
._15{width:20.940000px;}
._1e{width:22.764000px;}
._30{width:23.820160px;}
._1f{width:24.851920px;}
._12{width:25.896011px;}
._8{width:27.648000px;}
._9{width:28.896000px;}
._18{width:29.904000px;}
._a{width:31.392000px;}
._b{width:33.024000px;}
._17{width:34.200000px;}
._c{width:35.208000px;}
._13{width:37.368000px;}
._14{width:38.400000px;}
._11{width:40.428000px;}
._2b{width:42.384000px;}
._2c{width:43.392000px;}
._2e{width:44.784000px;}
._2f{width:46.224000px;}
._25{width:49.032000px;}
._24{width:50.088000px;}
._3{width:54.792000px;}
._f{width:60.480000px;}
._2a{width:63.360000px;}
._27{width:66.852000px;}
._26{width:68.112000px;}
._32{width:77.988000px;}
._31{width:79.344000px;}
._2d{width:82.008000px;}
._28{width:83.736000px;}
._29{width:85.020000px;}
._35{width:88.896000px;}
._10{width:90.576000px;}
._21{width:101.292000px;}
._20{width:102.612000px;}
._34{width:108.144000px;}
._23{width:109.392000px;}
._36{width:127.368000px;}
._33{width:1276.680000px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(0,0,153);}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.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;}
.y8d{bottom:3.960000px;}
.y86{bottom:5.220000px;}
.y88{bottom:6.660000px;}
.y3{bottom:7.020000px;}
.y96{bottom:7.740000px;}
.y7{bottom:11.340000px;}
.y8a{bottom:12.240000px;}
.y8f{bottom:13.320000px;}
.yc2{bottom:15.840000px;}
.y92{bottom:16.740000px;}
.y94{bottom:16.920000px;}
.ybf{bottom:24.165000px;}
.y8c{bottom:24.660000px;}
.y98{bottom:24.690000px;}
.y85{bottom:25.920000px;}
.y2{bottom:28.260000px;}
.yc1{bottom:36.540000px;}
.y9c{bottom:45.360000px;}
.yb0{bottom:64.620000px;}
.yae{bottom:66.060000px;}
.y8{bottom:71.136000px;}
.yaf{bottom:85.320000px;}
.yad{bottom:86.760000px;}
.y6{bottom:86.796000px;}
.yac{bottom:107.460000px;}
.yd7{bottom:119.016000px;}
.y83{bottom:121.356000px;}
.y95{bottom:125.676000px;}
.y6a{bottom:131.616000px;}
.y33{bottom:133.236000px;}
.ybd{bottom:137.376000px;}
.yd6{bottom:150.150000px;}
.y82{bottom:152.310000px;}
.y93{bottom:152.670000px;}
.y32{bottom:156.990000px;}
.ybc{bottom:157.710000px;}
.y69{bottom:162.750000px;}
.ybb{bottom:179.130000px;}
.y31{bottom:180.750000px;}
.yd5{bottom:181.110000px;}
.y81{bottom:183.450000px;}
.y91{bottom:189.030000px;}
.y68{bottom:193.710000px;}
.yba{bottom:200.730000px;}
.y30{bottom:204.690000px;}
.yd4{bottom:212.250000px;}
.y80{bottom:214.410000px;}
.yb9{bottom:222.150000px;}
.y55{bottom:224.850000px;}
.y90{bottom:225.210000px;}
.y2f{bottom:228.450000px;}
.yd3{bottom:243.210000px;}
.yb8{bottom:243.570000px;}
.y7f{bottom:245.550000px;}
.y2e{bottom:252.210000px;}
.y54{bottom:255.810000px;}
.yb7{bottom:264.990000px;}
.y8e{bottom:269.130000px;}
.yd2{bottom:274.350000px;}
.y2d{bottom:275.970000px;}
.y7e{bottom:276.510000px;}
.yb6{bottom:286.410000px;}
.y53{bottom:286.950000px;}
.y2c{bottom:299.910000px;}
.y8b{bottom:301.710000px;}
.yd1{bottom:305.310000px;}
.y7d{bottom:307.650000px;}
.yb5{bottom:307.830000px;}
.y52{bottom:317.910000px;}
.y2b{bottom:323.670000px;}
.yb4{bottom:329.430000px;}
.yd0{bottom:336.495000px;}
.y7c{bottom:338.655000px;}
.y89{bottom:345.855000px;}
.y2a{bottom:347.475000px;}
.y51{bottom:349.095000px;}
.yb3{bottom:350.895000px;}
.ycf{bottom:367.455000px;}
.y7b{bottom:369.795000px;}
.y29{bottom:371.235000px;}
.yb2{bottom:372.315000px;}
.y87{bottom:377.355000px;}
.y50{bottom:380.055000px;}
.yb1{bottom:393.735000px;}
.y28{bottom:394.995000px;}
.y7a{bottom:400.755000px;}
.yce{bottom:400.935000px;}
.y84{bottom:403.275000px;}
.y4f{bottom:411.195000px;}
.yab{bottom:415.155000px;}
.y27{bottom:418.935000px;}
.y79{bottom:431.895000px;}
.ycd{bottom:437.115000px;}
.y4e{bottom:442.155000px;}
.y26{bottom:442.695000px;}
.y78{bottom:462.855000px;}
.y25{bottom:466.455000px;}
.y4d{bottom:473.295000px;}
.y24{bottom:490.215000px;}
.y77{bottom:493.995000px;}
.y4c{bottom:504.255000px;}
.ycc{bottom:509.475000px;}
.y23{bottom:514.155000px;}
.y76{bottom:524.955000px;}
.y4b{bottom:535.395000px;}
.y67{bottom:537.555000px;}
.y22{bottom:537.915000px;}
.ycb{bottom:543.495000px;}
.yaa{bottom:544.035000px;}
.y75{bottom:556.095000px;}
.y21{bottom:561.675000px;}
.ya9{bottom:564.735000px;}
.y4a{bottom:566.355000px;}
.y66{bottom:573.915000px;}
.yca{bottom:574.455000px;}
.y20{bottom:585.435000px;}
.y74{bottom:587.055000px;}
.y49{bottom:597.495000px;}
.yc9{bottom:605.625000px;}
.y1f{bottom:609.405000px;}
.y65{bottom:610.125000px;}
.ya8{bottom:616.605000px;}
.y73{bottom:618.045000px;}
.y48{bottom:628.485000px;}
.y1e{bottom:633.165000px;}
.yc8{bottom:636.585000px;}
.y64{bottom:646.305000px;}
.ya7{bottom:647.565000px;}
.y72{bottom:649.185000px;}
.y1d{bottom:656.925000px;}
.y47{bottom:659.445000px;}
.yc7{bottom:667.725000px;}
.ya6{bottom:678.705000px;}
.y71{bottom:680.145000px;}
.y1c{bottom:680.685000px;}
.y63{bottom:682.485000px;}
.y46{bottom:690.585000px;}
.yc6{bottom:698.685000px;}
.y1b{bottom:704.625000px;}
.ya5{bottom:709.665000px;}
.y70{bottom:711.285000px;}
.y62{bottom:718.665000px;}
.y45{bottom:721.545000px;}
.y1a{bottom:728.385000px;}
.yc5{bottom:729.825000px;}
.ya4{bottom:740.805000px;}
.y6f{bottom:742.245000px;}
.y19{bottom:752.145000px;}
.y44{bottom:752.685000px;}
.y61{bottom:755.025000px;}
.yc4{bottom:760.785000px;}
.ya3{bottom:771.765000px;}
.y6e{bottom:773.385000px;}
.y18{bottom:775.905000px;}
.y43{bottom:785.985000px;}
.y60{bottom:791.205000px;}
.yc3{bottom:791.925000px;}
.y17{bottom:799.845000px;}
.ya2{bottom:802.905000px;}
.y6d{bottom:804.345000px;}
.yc0{bottom:808.665000px;}
.y42{bottom:812.625000px;}
.y16{bottom:823.605000px;}
.y5f{bottom:827.385000px;}
.ya1{bottom:833.865000px;}
.y6c{bottom:835.485000px;}
.y41{bottom:836.565000px;}
.y15{bottom:847.365000px;}
.y40{bottom:860.325000px;}
.ybe{bottom:861.945000px;}
.y5e{bottom:863.565000px;}
.ya0{bottom:865.005000px;}
.y6b{bottom:866.445000px;}
.y14{bottom:871.170000px;}
.y3f{bottom:884.130000px;}
.y13{bottom:894.930000px;}
.y9f{bottom:896.010000px;}
.y5d{bottom:897.630000px;}
.y3e{bottom:907.890000px;}
.y12{bottom:918.870000px;}
.y9e{bottom:927.150000px;}
.y5c{bottom:928.590000px;}
.y3d{bottom:931.830000px;}
.y11{bottom:942.630000px;}
.y3c{bottom:955.590000px;}
.y5b{bottom:959.730000px;}
.y9d{bottom:960.450000px;}
.y10{bottom:966.390000px;}
.y3b{bottom:979.350000px;}
.y9b{bottom:981.510000px;}
.yf{bottom:990.150000px;}
.y5a{bottom:990.690000px;}
.y3a{bottom:1003.110000px;}
.ye{bottom:1010.850000px;}
.y59{bottom:1021.830000px;}
.y39{bottom:1027.050000px;}
.yd{bottom:1031.550000px;}
.y9a{bottom:1046.310000px;}
.y38{bottom:1050.810000px;}
.y58{bottom:1052.790000px;}
.yc{bottom:1062.690000px;}
.y37{bottom:1074.570000px;}
.y99{bottom:1082.490000px;}
.y57{bottom:1083.930000px;}
.yb{bottom:1087.530000px;}
.y36{bottom:1098.330000px;}
.y56{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y97{bottom:1118.670000px;}
.y35{bottom:1122.270000px;}
.y9{bottom:1143.180000px;}
.y34{bottom:1146.060000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h1a{height:20.700000px;}
.h1b{height:20.736000px;}
.hf{height:23.400000px;}
.h16{height:24.480000px;}
.h5{height:27.000000px;}
.h10{height:28.980000px;}
.h12{height:30.060000px;}
.h14{height:33.480000px;}
.h15{height:33.660000px;}
.h13{height:41.400000px;}
.h11{height:41.436000px;}
.he{height:42.660000px;}
.h7{height:50.800781px;}
.h9{height:51.996094px;}
.hb{height:52.066406px;}
.hc{height:52.417969px;}
.h1e{height:53.280000px;}
.h2{height:53.460000px;}
.h19{height:57.826406px;}
.ha{height:59.343750px;}
.h6{height:59.436914px;}
.h1c{height:60.917695px;}
.h17{height:62.100000px;}
.h4{height:65.884219px;}
.h8{height:69.432187px;}
.hd{height:73.722656px;}
.h3{height:78.099609px;}
.h18{height:124.200000px;}
.h1d{height:300.855000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:32.940000px;}
.wd{width:48.816000px;}
.w7{width:50.940000px;}
.we{width:57.600000px;}
.w10{width:57.636000px;}
.w11{width:69.660000px;}
.w12{width:70.200000px;}
.wf{width:73.080000px;}
.w14{width:73.620000px;}
.wc{width:92.880000px;}
.w5{width:106.416000px;}
.w13{width:128.376000px;}
.w9{width:136.656000px;}
.w8{width:232.410000px;}
.wa{width:243.030000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.w16{width:701.025000px;}
.w15{width:711.285000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:2.880000px;}
.x21{left:6.120000px;}
.x36{left:7.920000px;}
.x42{left:9.000000px;}
.x1e{left:11.520000px;}
.x3b{left:13.680000px;}
.x3a{left:15.660000px;}
.x1c{left:16.920000px;}
.x3f{left:18.360000px;}
.x3d{left:19.980000px;}
.x24{left:21.060000px;}
.x27{left:22.320000px;}
.x38{left:24.294000px;}
.x40{left:27.360000px;}
.x33{left:28.440000px;}
.x23{left:29.520000px;}
.x43{left:33.480000px;}
.x45{left:38.340000px;}
.x2f{left:43.560000px;}
.x4f{left:44.820000px;}
.x30{left:46.620000px;}
.x9{left:48.960000px;}
.x25{left:52.560000px;}
.x26{left:54.720000px;}
.x2a{left:56.160000px;}
.x2b{left:58.500000px;}
.x32{left:60.660000px;}
.x2c{left:61.920000px;}
.x4c{left:63.714000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x2d{left:94.500000px;}
.x31{left:97.020000px;}
.x2e{left:98.100000px;}
.x28{left:100.260000px;}
.x29{left:101.520000px;}
.x34{left:104.625000px;}
.x5{left:106.415987px;}
.xc{left:111.635987px;}
.x1b{left:123.336000px;}
.x14{left:125.315987px;}
.x35{left:132.155987px;}
.x37{left:135.216000px;}
.xb{left:139.895987px;}
.x4a{left:148.895987px;}
.x12{left:159.509987px;}
.x15{left:169.589987px;}
.x1d{left:175.890000px;}
.x47{left:177.699000px;}
.x49{left:179.679000px;}
.x13{left:183.629987px;}
.x48{left:185.079000px;}
.x2{left:197.310000px;}
.xf{left:206.129987px;}
.x10{left:216.389987px;}
.x19{left:217.829987px;}
.x39{left:228.810000px;}
.x4d{left:252.399000px;}
.x17{left:255.449987px;}
.x1{left:278.175000px;}
.x7{left:297.795000px;}
.x11{left:306.434987px;}
.xd{left:308.414987px;}
.x3c{left:336.675000px;}
.x1a{left:354.314987px;}
.x4e{left:381.674987px;}
.x8{left:390.855000px;}
.x1f{left:409.755000px;}
.xe{left:457.094987px;}
.x3e{left:468.825000px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x41{left:539.205000px;}
.x22{left:548.025000px;}
.x4b{left:608.154000px;}
.x44{left:610.125000px;}
.x18{left:723.389987px;}
.x46{left:739.230000px;}
.x16{left:783.869987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls3c{letter-spacing:-0.896000pt;}
.ls3b{letter-spacing:-0.832000pt;}
.ls49{letter-spacing:-0.768000pt;}
.ls44{letter-spacing:-0.682667pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls2d{letter-spacing:-0.448000pt;}
.ls45{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.040320pt;}
.ls1d{letter-spacing:-0.000005pt;}
.ls17{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000001pt;}
.ls43{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.143360pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.224000pt;}
.ls4d{letter-spacing:0.227733pt;}
.ls3f{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.311680pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls48{letter-spacing:0.448000pt;}
.ls42{letter-spacing:0.480000pt;}
.ls4a{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls2a{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls33{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls4c{letter-spacing:1.920000pt;}
.ls30{letter-spacing:3.200000pt;}
.ls8{letter-spacing:3.840000pt;}
.ls4b{letter-spacing:4.480000pt;}
.ls40{letter-spacing:4.586667pt;}
.lsb{letter-spacing:5.760000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls34{letter-spacing:8.960000pt;}
.ls32{letter-spacing:9.600000pt;}
.ls39{letter-spacing:10.880000pt;}
.ls37{letter-spacing:11.520000pt;}
.ls28{letter-spacing:13.440000pt;}
.lse{letter-spacing:14.080000pt;}
.ls24{letter-spacing:15.360000pt;}
.ls25{letter-spacing:15.488000pt;}
.ls23{letter-spacing:17.920000pt;}
.ls2f{letter-spacing:18.560000pt;}
.ls29{letter-spacing:19.840000pt;}
.ls22{letter-spacing:20.480000pt;}
.ls21{letter-spacing:26.240000pt;}
.ls36{letter-spacing:26.880000pt;}
.ls35{letter-spacing:28.160000pt;}
.lsc{letter-spacing:28.800000pt;}
.ls26{letter-spacing:28.960000pt;}
.ls14{letter-spacing:29.440000pt;}
.ls3e{letter-spacing:30.080000pt;}
.lsd{letter-spacing:31.360000pt;}
.ls38{letter-spacing:33.920000pt;}
.ls12{letter-spacing:35.840000pt;}
.ls47{letter-spacing:40.320000pt;}
.ls6{letter-spacing:48.640000pt;}
.ls11{letter-spacing:54.400000pt;}
.ls10{letter-spacing:54.506667pt;}
.ls41{letter-spacing:72.960000pt;}
.ls3d{letter-spacing:74.240000pt;}
.ls2e{letter-spacing:90.880000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws2{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.640000pt;}
.ws18{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.999995pt;}
.ws4{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.616000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws16{word-spacing:-15.232000pt;}
.ws19{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws12{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.679680pt;}
.ws17{word-spacing:-10.400000pt;}
.ws13{word-spacing:-10.037333pt;}
.wsc{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.290667pt;}
._d{width:2.976000pt;}
._4{width:4.266667pt;}
._6{width:5.738667pt;}
._5{width:6.784000pt;}
._7{width:7.680000pt;}
._22{width:8.576000pt;}
._1c{width:9.472000pt;}
._1d{width:10.400000pt;}
._1a{width:11.818667pt;}
._19{width:13.216000pt;}
._e{width:14.122667pt;}
._1b{width:15.018667pt;}
._1{width:16.576000pt;}
._16{width:17.685333pt;}
._15{width:18.613333pt;}
._1e{width:20.234667pt;}
._30{width:21.173476pt;}
._1f{width:22.090595pt;}
._12{width:23.018677pt;}
._8{width:24.576000pt;}
._9{width:25.685333pt;}
._18{width:26.581333pt;}
._a{width:27.904000pt;}
._b{width:29.354667pt;}
._17{width:30.400000pt;}
._c{width:31.296000pt;}
._13{width:33.216000pt;}
._14{width:34.133333pt;}
._11{width:35.936000pt;}
._2b{width:37.674667pt;}
._2c{width:38.570667pt;}
._2e{width:39.808000pt;}
._2f{width:41.088000pt;}
._25{width:43.584000pt;}
._24{width:44.522667pt;}
._3{width:48.704000pt;}
._f{width:53.760000pt;}
._2a{width:56.320000pt;}
._27{width:59.424000pt;}
._26{width:60.544000pt;}
._32{width:69.322667pt;}
._31{width:70.528000pt;}
._2d{width:72.896000pt;}
._28{width:74.432000pt;}
._29{width:75.573333pt;}
._35{width:79.018667pt;}
._10{width:80.512000pt;}
._21{width:90.037333pt;}
._20{width:91.210667pt;}
._34{width:96.128000pt;}
._23{width:97.237333pt;}
._36{width:113.216000pt;}
._33{width:1134.826667pt;}
.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;}
.y8d{bottom:3.520000pt;}
.y86{bottom:4.640000pt;}
.y88{bottom:5.920000pt;}
.y3{bottom:6.240000pt;}
.y96{bottom:6.880000pt;}
.y7{bottom:10.080000pt;}
.y8a{bottom:10.880000pt;}
.y8f{bottom:11.840000pt;}
.yc2{bottom:14.080000pt;}
.y92{bottom:14.880000pt;}
.y94{bottom:15.040000pt;}
.ybf{bottom:21.480000pt;}
.y8c{bottom:21.920000pt;}
.y98{bottom:21.946667pt;}
.y85{bottom:23.040000pt;}
.y2{bottom:25.120000pt;}
.yc1{bottom:32.480000pt;}
.y9c{bottom:40.320000pt;}
.yb0{bottom:57.440000pt;}
.yae{bottom:58.720000pt;}
.y8{bottom:63.232000pt;}
.yaf{bottom:75.840000pt;}
.yad{bottom:77.120000pt;}
.y6{bottom:77.152000pt;}
.yac{bottom:95.520000pt;}
.yd7{bottom:105.792000pt;}
.y83{bottom:107.872000pt;}
.y95{bottom:111.712000pt;}
.y6a{bottom:116.992000pt;}
.y33{bottom:118.432000pt;}
.ybd{bottom:122.112000pt;}
.yd6{bottom:133.466667pt;}
.y82{bottom:135.386667pt;}
.y93{bottom:135.706667pt;}
.y32{bottom:139.546667pt;}
.ybc{bottom:140.186667pt;}
.y69{bottom:144.666667pt;}
.ybb{bottom:159.226667pt;}
.y31{bottom:160.666667pt;}
.yd5{bottom:160.986667pt;}
.y81{bottom:163.066667pt;}
.y91{bottom:168.026667pt;}
.y68{bottom:172.186667pt;}
.yba{bottom:178.426667pt;}
.y30{bottom:181.946667pt;}
.yd4{bottom:188.666667pt;}
.y80{bottom:190.586667pt;}
.yb9{bottom:197.466667pt;}
.y55{bottom:199.866667pt;}
.y90{bottom:200.186667pt;}
.y2f{bottom:203.066667pt;}
.yd3{bottom:216.186667pt;}
.yb8{bottom:216.506667pt;}
.y7f{bottom:218.266667pt;}
.y2e{bottom:224.186667pt;}
.y54{bottom:227.386667pt;}
.yb7{bottom:235.546667pt;}
.y8e{bottom:239.226667pt;}
.yd2{bottom:243.866667pt;}
.y2d{bottom:245.306667pt;}
.y7e{bottom:245.786667pt;}
.yb6{bottom:254.586667pt;}
.y53{bottom:255.066667pt;}
.y2c{bottom:266.586667pt;}
.y8b{bottom:268.186667pt;}
.yd1{bottom:271.386667pt;}
.y7d{bottom:273.466667pt;}
.yb5{bottom:273.626667pt;}
.y52{bottom:282.586667pt;}
.y2b{bottom:287.706667pt;}
.yb4{bottom:292.826667pt;}
.yd0{bottom:299.106667pt;}
.y7c{bottom:301.026667pt;}
.y89{bottom:307.426667pt;}
.y2a{bottom:308.866667pt;}
.y51{bottom:310.306667pt;}
.yb3{bottom:311.906667pt;}
.ycf{bottom:326.626667pt;}
.y7b{bottom:328.706667pt;}
.y29{bottom:329.986667pt;}
.yb2{bottom:330.946667pt;}
.y87{bottom:335.426667pt;}
.y50{bottom:337.826667pt;}
.yb1{bottom:349.986667pt;}
.y28{bottom:351.106667pt;}
.y7a{bottom:356.226667pt;}
.yce{bottom:356.386667pt;}
.y84{bottom:358.466667pt;}
.y4f{bottom:365.506667pt;}
.yab{bottom:369.026667pt;}
.y27{bottom:372.386667pt;}
.y79{bottom:383.906667pt;}
.ycd{bottom:388.546667pt;}
.y4e{bottom:393.026667pt;}
.y26{bottom:393.506667pt;}
.y78{bottom:411.426667pt;}
.y25{bottom:414.626667pt;}
.y4d{bottom:420.706667pt;}
.y24{bottom:435.746667pt;}
.y77{bottom:439.106667pt;}
.y4c{bottom:448.226667pt;}
.ycc{bottom:452.866667pt;}
.y23{bottom:457.026667pt;}
.y76{bottom:466.626667pt;}
.y4b{bottom:475.906667pt;}
.y67{bottom:477.826667pt;}
.y22{bottom:478.146667pt;}
.ycb{bottom:483.106667pt;}
.yaa{bottom:483.586667pt;}
.y75{bottom:494.306667pt;}
.y21{bottom:499.266667pt;}
.ya9{bottom:501.986667pt;}
.y4a{bottom:503.426667pt;}
.y66{bottom:510.146667pt;}
.yca{bottom:510.626667pt;}
.y20{bottom:520.386667pt;}
.y74{bottom:521.826667pt;}
.y49{bottom:531.106667pt;}
.yc9{bottom:538.333333pt;}
.y1f{bottom:541.693333pt;}
.y65{bottom:542.333333pt;}
.ya8{bottom:548.093333pt;}
.y73{bottom:549.373333pt;}
.y48{bottom:558.653333pt;}
.y1e{bottom:562.813333pt;}
.yc8{bottom:565.853333pt;}
.y64{bottom:574.493333pt;}
.ya7{bottom:575.613333pt;}
.y72{bottom:577.053333pt;}
.y1d{bottom:583.933333pt;}
.y47{bottom:586.173333pt;}
.yc7{bottom:593.533333pt;}
.ya6{bottom:603.293333pt;}
.y71{bottom:604.573333pt;}
.y1c{bottom:605.053333pt;}
.y63{bottom:606.653333pt;}
.y46{bottom:613.853333pt;}
.yc6{bottom:621.053333pt;}
.y1b{bottom:626.333333pt;}
.ya5{bottom:630.813333pt;}
.y70{bottom:632.253333pt;}
.y62{bottom:638.813333pt;}
.y45{bottom:641.373333pt;}
.y1a{bottom:647.453333pt;}
.yc5{bottom:648.733333pt;}
.ya4{bottom:658.493333pt;}
.y6f{bottom:659.773333pt;}
.y19{bottom:668.573333pt;}
.y44{bottom:669.053333pt;}
.y61{bottom:671.133333pt;}
.yc4{bottom:676.253333pt;}
.ya3{bottom:686.013333pt;}
.y6e{bottom:687.453333pt;}
.y18{bottom:689.693333pt;}
.y43{bottom:698.653333pt;}
.y60{bottom:703.293333pt;}
.yc3{bottom:703.933333pt;}
.y17{bottom:710.973333pt;}
.ya2{bottom:713.693333pt;}
.y6d{bottom:714.973333pt;}
.yc0{bottom:718.813333pt;}
.y42{bottom:722.333333pt;}
.y16{bottom:732.093333pt;}
.y5f{bottom:735.453333pt;}
.ya1{bottom:741.213333pt;}
.y6c{bottom:742.653333pt;}
.y41{bottom:743.613333pt;}
.y15{bottom:753.213333pt;}
.y40{bottom:764.733333pt;}
.ybe{bottom:766.173333pt;}
.y5e{bottom:767.613333pt;}
.ya0{bottom:768.893333pt;}
.y6b{bottom:770.173333pt;}
.y14{bottom:774.373333pt;}
.y3f{bottom:785.893333pt;}
.y13{bottom:795.493333pt;}
.y9f{bottom:796.453333pt;}
.y5d{bottom:797.893333pt;}
.y3e{bottom:807.013333pt;}
.y12{bottom:816.773333pt;}
.y9e{bottom:824.133333pt;}
.y5c{bottom:825.413333pt;}
.y3d{bottom:828.293333pt;}
.y11{bottom:837.893333pt;}
.y3c{bottom:849.413333pt;}
.y5b{bottom:853.093333pt;}
.y9d{bottom:853.733333pt;}
.y10{bottom:859.013333pt;}
.y3b{bottom:870.533333pt;}
.y9b{bottom:872.453333pt;}
.yf{bottom:880.133333pt;}
.y5a{bottom:880.613333pt;}
.y3a{bottom:891.653333pt;}
.ye{bottom:898.533333pt;}
.y59{bottom:908.293333pt;}
.y39{bottom:912.933333pt;}
.yd{bottom:916.933333pt;}
.y9a{bottom:930.053333pt;}
.y38{bottom:934.053333pt;}
.y58{bottom:935.813333pt;}
.yc{bottom:944.613333pt;}
.y37{bottom:955.173333pt;}
.y99{bottom:962.213333pt;}
.y57{bottom:963.493333pt;}
.yb{bottom:966.693333pt;}
.y36{bottom:976.293333pt;}
.y56{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y97{bottom:994.373333pt;}
.y35{bottom:997.573333pt;}
.y9{bottom:1016.160000pt;}
.y34{bottom:1018.720000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h1a{height:18.400000pt;}
.h1b{height:18.432000pt;}
.hf{height:20.800000pt;}
.h16{height:21.760000pt;}
.h5{height:24.000000pt;}
.h10{height:25.760000pt;}
.h12{height:26.720000pt;}
.h14{height:29.760000pt;}
.h15{height:29.920000pt;}
.h13{height:36.800000pt;}
.h11{height:36.832000pt;}
.he{height:37.920000pt;}
.h7{height:45.156250pt;}
.h9{height:46.218750pt;}
.hb{height:46.281250pt;}
.hc{height:46.593750pt;}
.h1e{height:47.360000pt;}
.h2{height:47.520000pt;}
.h19{height:51.401250pt;}
.ha{height:52.750000pt;}
.h6{height:52.832812pt;}
.h1c{height:54.149062pt;}
.h17{height:55.200000pt;}
.h4{height:58.563750pt;}
.h8{height:61.717500pt;}
.hd{height:65.531250pt;}
.h3{height:69.421875pt;}
.h18{height:110.400000pt;}
.h1d{height:267.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:29.280000pt;}
.wd{width:43.392000pt;}
.w7{width:45.280000pt;}
.we{width:51.200000pt;}
.w10{width:51.232000pt;}
.w11{width:61.920000pt;}
.w12{width:62.400000pt;}
.wf{width:64.960000pt;}
.w14{width:65.440000pt;}
.wc{width:82.560000pt;}
.w5{width:94.592000pt;}
.w13{width:114.112000pt;}
.w9{width:121.472000pt;}
.w8{width:206.586667pt;}
.wa{width:216.026667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.w16{width:623.133333pt;}
.w15{width:632.253333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:2.560000pt;}
.x21{left:5.440000pt;}
.x36{left:7.040000pt;}
.x42{left:8.000000pt;}
.x1e{left:10.240000pt;}
.x3b{left:12.160000pt;}
.x3a{left:13.920000pt;}
.x1c{left:15.040000pt;}
.x3f{left:16.320000pt;}
.x3d{left:17.760000pt;}
.x24{left:18.720000pt;}
.x27{left:19.840000pt;}
.x38{left:21.594667pt;}
.x40{left:24.320000pt;}
.x33{left:25.280000pt;}
.x23{left:26.240000pt;}
.x43{left:29.760000pt;}
.x45{left:34.080000pt;}
.x2f{left:38.720000pt;}
.x4f{left:39.840000pt;}
.x30{left:41.440000pt;}
.x9{left:43.520000pt;}
.x25{left:46.720000pt;}
.x26{left:48.640000pt;}
.x2a{left:49.920000pt;}
.x2b{left:52.000000pt;}
.x32{left:53.920000pt;}
.x2c{left:55.040000pt;}
.x4c{left:56.634667pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x2d{left:84.000000pt;}
.x31{left:86.240000pt;}
.x2e{left:87.200000pt;}
.x28{left:89.120000pt;}
.x29{left:90.240000pt;}
.x34{left:93.000000pt;}
.x5{left:94.591988pt;}
.xc{left:99.231988pt;}
.x1b{left:109.632000pt;}
.x14{left:111.391988pt;}
.x35{left:117.471988pt;}
.x37{left:120.192000pt;}
.xb{left:124.351988pt;}
.x4a{left:132.351988pt;}
.x12{left:141.786655pt;}
.x15{left:150.746655pt;}
.x1d{left:156.346667pt;}
.x47{left:157.954667pt;}
.x49{left:159.714667pt;}
.x13{left:163.226655pt;}
.x48{left:164.514667pt;}
.x2{left:175.386667pt;}
.xf{left:183.226655pt;}
.x10{left:192.346655pt;}
.x19{left:193.626655pt;}
.x39{left:203.386667pt;}
.x4d{left:224.354667pt;}
.x17{left:227.066655pt;}
.x1{left:247.266667pt;}
.x7{left:264.706667pt;}
.x11{left:272.386655pt;}
.xd{left:274.146655pt;}
.x3c{left:299.266667pt;}
.x1a{left:314.946655pt;}
.x4e{left:339.266655pt;}
.x8{left:347.426667pt;}
.x1f{left:364.226667pt;}
.xe{left:406.306655pt;}
.x3e{left:416.733333pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x41{left:479.293333pt;}
.x22{left:487.133333pt;}
.x4b{left:540.581333pt;}
.x44{left:542.333333pt;}
.x18{left:643.013322pt;}
.x46{left:657.093333pt;}
.x16{left:696.773322pt;}
}




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