
    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_9e8e29f2eb97a17db406db81.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_bb09baa763d2c0b7d8a991cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_f64c6eb1a8bcecd426c60752.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_2112d11557d99a1658a6da62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_b0a8e723ed3fba39b9d4905b.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_ca269f83cb3e7118cd4b2f53.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_56040b7602d325bdf828f665.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_dd453a52d8d7de1cfe55e535.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_422c8a02a4ef6bc37c7e836a.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);}
.m2{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls38{letter-spacing:-6.480000px;}
.ls35{letter-spacing:-4.176000px;}
.ls37{letter-spacing:-3.600000px;}
.ls36{letter-spacing:-3.312000px;}
.ls23{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.936000px;}
.ls49{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.ls4a{letter-spacing:-0.504000px;}
.ls40{letter-spacing:-0.432000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls34{letter-spacing:-0.223800px;}
.ls22{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.lse{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000003px;}
.ls1a{letter-spacing:0.048000px;}
.ls3{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.152400px;}
.ls39{letter-spacing:0.184800px;}
.ls25{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.350640px;}
.ls1c{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.378600px;}
.ls47{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.lsb{letter-spacing:1.440000px;}
.lsa{letter-spacing:2.160000px;}
.ls44{letter-spacing:2.880000px;}
.ls2d{letter-spacing:3.600000px;}
.ls1b{letter-spacing:4.320000px;}
.ls3d{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.760000px;}
.ls27{letter-spacing:6.480000px;}
.ls7{letter-spacing:7.200000px;}
.ls1e{letter-spacing:8.640000px;}
.ls1d{letter-spacing:9.360000px;}
.ls15{letter-spacing:10.080000px;}
.ls3a{letter-spacing:10.800000px;}
.ls1f{letter-spacing:11.700000px;}
.ls17{letter-spacing:13.680000px;}
.ls41{letter-spacing:15.120000px;}
.ls2f{letter-spacing:16.020000px;}
.ls28{letter-spacing:16.560000px;}
.ls18{letter-spacing:17.280000px;}
.ls2e{letter-spacing:18.000000px;}
.lsc{letter-spacing:18.720000px;}
.ls6{letter-spacing:19.440000px;}
.ls3b{letter-spacing:19.620000px;}
.ls3c{letter-spacing:20.160000px;}
.ls29{letter-spacing:22.320000px;}
.ls30{letter-spacing:23.040000px;}
.ls42{letter-spacing:23.760000px;}
.ls26{letter-spacing:27.360000px;}
.ls5{letter-spacing:28.080000px;}
.ls46{letter-spacing:28.800000px;}
.ls2c{letter-spacing:32.400000px;}
.ls45{letter-spacing:33.840000px;}
.ls3f{letter-spacing:41.040000px;}
.ls24{letter-spacing:42.480000px;}
.ls16{letter-spacing:45.360000px;}
.ls31{letter-spacing:46.920000px;}
.ls4d{letter-spacing:48.240000px;}
.ls19{letter-spacing:48.960000px;}
.ls9{letter-spacing:71.280000px;}
.ls4e{letter-spacing:83.861280px;}
.ls4c{letter-spacing:125.621280px;}
.ls48{letter-spacing:138.960000px;}
.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;}
.ws3{word-spacing:-21.438600px;}
.ws1d{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.504000px;}
.wsf{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws1a{word-spacing:-18.184800px;}
.wsa{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1c{word-spacing:-18.000003px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.496000px;}
.ws10{word-spacing:-17.280000px;}
.ws12{word-spacing:-16.992000px;}
.ws1{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.688000px;}
.ws18{word-spacing:-14.400000px;}
.ws16{word-spacing:-13.824000px;}
.ws14{word-spacing:-12.212400px;}
.ws13{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.836200px;}
.ws19{word-spacing:-11.520000px;}
.wsc{word-spacing:0.000000px;}
._2d{margin-left:-7.344000px;}
._2c{margin-left:-6.264000px;}
._29{margin-left:-4.680000px;}
._2a{margin-left:-3.672000px;}
._2b{margin-left:-2.664000px;}
._0{margin-left:-1.188000px;}
._2{width:1.800000px;}
._8{width:3.444000px;}
._9{width:5.172000px;}
._5{width:6.528000px;}
._2f{width:7.560000px;}
._14{width:8.568000px;}
._15{width:9.720000px;}
._11{width:11.052000px;}
._b{width:12.492000px;}
._a{width:14.328000px;}
._2e{width:15.336000px;}
._13{width:16.344000px;}
._1{width:18.648000px;}
._4{width:19.848000px;}
._12{width:21.960000px;}
._10{width:23.088000px;}
._f{width:24.120000px;}
._28{width:25.416000px;}
._23{width:26.700000px;}
._3{width:27.720000px;}
._1a{width:29.568000px;}
._26{width:30.696000px;}
._1b{width:31.752000px;}
._1c{width:32.940000px;}
._17{width:34.428000px;}
._18{width:35.604000px;}
._21{width:36.624000px;}
._1f{width:37.668000px;}
._d{width:39.420000px;}
._c{width:40.680000px;}
._20{width:42.336000px;}
._22{width:43.596000px;}
._27{width:44.784000px;}
._19{width:45.876000px;}
._16{width:47.736000px;}
._1d{width:48.816000px;}
._32{width:53.928000px;}
._1e{width:59.736000px;}
._30{width:61.368000px;}
._25{width:63.072000px;}
._24{width:64.344000px;}
._e{width:67.392000px;}
._6{width:70.632000px;}
._7{width:72.012000px;}
._31{width:138.792000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc6{color:rgb(34,34,34);}
.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;}
.fs5{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.954000px;}
.y5c{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.y75{bottom:14.220000px;}
.y78{bottom:14.250000px;}
.y73{bottom:14.400000px;}
.y94{bottom:14.580000px;}
.y5a{bottom:14.754000px;}
.y8f{bottom:14.760000px;}
.y8d{bottom:15.120000px;}
.yb4{bottom:24.660000px;}
.yb6{bottom:25.380000px;}
.y8a{bottom:25.560000px;}
.y2{bottom:28.260000px;}
.y74{bottom:29.880000px;}
.y6f{bottom:30.240000px;}
.yb5{bottom:34.914000px;}
.y8c{bottom:35.820000px;}
.yb3{bottom:45.354000px;}
.y72{bottom:45.360000px;}
.y70{bottom:45.720000px;}
.y89{bottom:46.260000px;}
.y8b{bottom:56.520000px;}
.y6e{bottom:61.200000px;}
.y8{bottom:71.136000px;}
.y6{bottom:86.796000px;}
.yb2{bottom:115.596000px;}
.y54{bottom:121.176000px;}
.y5e{bottom:125.316000px;}
.yd9{bottom:127.656000px;}
.yeb{bottom:132.696000px;}
.y87{bottom:133.596000px;}
.y59{bottom:146.736000px;}
.y53{bottom:152.310000px;}
.y32{bottom:154.650000px;}
.yd8{bottom:158.790000px;}
.yea{bottom:163.650000px;}
.y86{bottom:164.730000px;}
.y5b{bottom:168.330000px;}
.y31{bottom:178.410000px;}
.y52{bottom:183.270000px;}
.yb1{bottom:185.430000px;}
.yd7{bottom:189.750000px;}
.ye9{bottom:194.610000px;}
.y85{bottom:195.690000px;}
.y30{bottom:202.350000px;}
.y58{bottom:203.970000px;}
.yb0{bottom:209.190000px;}
.y51{bottom:214.410000px;}
.yd6{bottom:220.890000px;}
.y2f{bottom:226.110000px;}
.y84{bottom:226.830000px;}
.ye8{bottom:228.630000px;}
.yaf{bottom:232.950000px;}
.y57{bottom:235.110000px;}
.y50{bottom:245.370000px;}
.y2e{bottom:249.870000px;}
.yd5{bottom:251.850000px;}
.y83{bottom:257.790000px;}
.ye7{bottom:259.590000px;}
.yae{bottom:264.090000px;}
.y56{bottom:268.410000px;}
.y2d{bottom:273.630000px;}
.y4f{bottom:276.510000px;}
.yd4{bottom:282.990000px;}
.y82{bottom:288.930000px;}
.ye6{bottom:290.550000px;}
.yad{bottom:295.050000px;}
.y2c{bottom:297.570000px;}
.y55{bottom:304.590000px;}
.y4e{bottom:307.470000px;}
.yd3{bottom:313.950000px;}
.y81{bottom:319.890000px;}
.y2b{bottom:321.330000px;}
.ye5{bottom:324.570000px;}
.yac{bottom:326.190000px;}
.y4d{bottom:338.655000px;}
.y2a{bottom:345.135000px;}
.y80{bottom:351.075000px;}
.ye4{bottom:355.575000px;}
.yab{bottom:357.195000px;}
.y29{bottom:368.895000px;}
.y4c{bottom:369.615000px;}
.yd2{bottom:376.095000px;}
.y7f{bottom:382.035000px;}
.yaa{bottom:388.335000px;}
.ye3{bottom:389.415000px;}
.y28{bottom:392.835000px;}
.y4b{bottom:400.755000px;}
.yd1{bottom:407.235000px;}
.y7e{bottom:413.175000px;}
.y27{bottom:416.595000px;}
.ya9{bottom:419.295000px;}
.ye2{bottom:420.375000px;}
.y4a{bottom:431.715000px;}
.yd0{bottom:438.195000px;}
.y26{bottom:440.355000px;}
.y7d{bottom:444.135000px;}
.ya8{bottom:450.435000px;}
.ye1{bottom:454.395000px;}
.y49{bottom:462.855000px;}
.y25{bottom:464.115000px;}
.ycf{bottom:469.155000px;}
.y7c{bottom:475.275000px;}
.ya7{bottom:481.395000px;}
.ye0{bottom:485.355000px;}
.y24{bottom:488.055000px;}
.y48{bottom:493.815000px;}
.yce{bottom:500.295000px;}
.y7b{bottom:508.575000px;}
.y23{bottom:511.815000px;}
.ya6{bottom:512.535000px;}
.ydf{bottom:516.495000px;}
.y47{bottom:524.955000px;}
.y7a{bottom:528.915000px;}
.ycd{bottom:531.255000px;}
.y22{bottom:535.575000px;}
.ya5{bottom:543.495000px;}
.yde{bottom:550.335000px;}
.y46{bottom:555.915000px;}
.y21{bottom:559.335000px;}
.y79{bottom:560.775000px;}
.ya4{bottom:560.955000px;}
.ycc{bottom:562.395000px;}
.ydd{bottom:581.295000px;}
.ya3{bottom:582.555000px;}
.y20{bottom:583.275000px;}
.y45{bottom:587.055000px;}
.y77{bottom:592.635000px;}
.ycb{bottom:593.355000px;}
.ya2{bottom:604.005000px;}
.y1f{bottom:607.065000px;}
.ydc{bottom:612.465000px;}
.y44{bottom:618.045000px;}
.y76{bottom:624.345000px;}
.yca{bottom:624.525000px;}
.ya1{bottom:625.425000px;}
.y1e{bottom:630.825000px;}
.ydb{bottom:646.305000px;}
.ya0{bottom:646.845000px;}
.y43{bottom:649.185000px;}
.y1d{bottom:654.585000px;}
.yc9{bottom:655.485000px;}
.y6d{bottom:656.205000px;}
.y9f{bottom:668.265000px;}
.yda{bottom:677.265000px;}
.y1c{bottom:678.345000px;}
.y42{bottom:680.145000px;}
.yc8{bottom:686.625000px;}
.y71{bottom:687.885000px;}
.y9e{bottom:689.685000px;}
.y1b{bottom:702.285000px;}
.y41{bottom:711.285000px;}
.yc7{bottom:717.585000px;}
.y1a{bottom:726.045000px;}
.y9c{bottom:732.705000px;}
.y40{bottom:742.245000px;}
.y19{bottom:749.805000px;}
.yc6{bottom:753.405000px;}
.y9d{bottom:754.125000px;}
.y6c{bottom:765.105000px;}
.y3f{bottom:773.385000px;}
.y18{bottom:773.565000px;}
.yc3{bottom:776.625000px;}
.y9b{bottom:779.505000px;}
.yf6{bottom:794.265000px;}
.y6b{bottom:796.245000px;}
.y17{bottom:797.505000px;}
.yc5{bottom:798.045000px;}
.y9a{bottom:800.205000px;}
.y3e{bottom:804.345000px;}
.yc4{bottom:819.465000px;}
.y99{bottom:820.905000px;}
.y16{bottom:821.265000px;}
.yf5{bottom:824.145000px;}
.y6a{bottom:827.205000px;}
.y3d{bottom:835.305000px;}
.yc0{bottom:840.885000px;}
.y15{bottom:845.025000px;}
.y98{bottom:854.205000px;}
.yf4{bottom:855.285000px;}
.y69{bottom:858.345000px;}
.yc2{bottom:862.305000px;}
.y3c{bottom:866.445000px;}
.y14{bottom:868.785000px;}
.y96{bottom:874.590000px;}
.yc1{bottom:883.770000px;}
.yf3{bottom:886.290000px;}
.y68{bottom:889.350000px;}
.y13{bottom:892.770000px;}
.y97{bottom:896.190000px;}
.y3b{bottom:897.450000px;}
.ybd{bottom:905.190000px;}
.y12{bottom:916.530000px;}
.yf2{bottom:917.430000px;}
.y93{bottom:917.610000px;}
.y67{bottom:920.490000px;}
.ybf{bottom:926.790000px;}
.y3a{bottom:928.590000px;}
.y95{bottom:939.030000px;}
.y11{bottom:940.290000px;}
.ybe{bottom:948.210000px;}
.yf1{bottom:948.390000px;}
.y66{bottom:951.450000px;}
.y39{bottom:959.550000px;}
.y91{bottom:960.450000px;}
.y10{bottom:964.050000px;}
.yba{bottom:969.630000px;}
.y92{bottom:981.870000px;}
.yf0{bottom:982.230000px;}
.y65{bottom:982.410000px;}
.yf{bottom:987.990000px;}
.y38{bottom:990.690000px;}
.ybc{bottom:991.050000px;}
.y8e{bottom:1003.290000px;}
.ybb{bottom:1012.470000px;}
.yef{bottom:1013.190000px;}
.y64{bottom:1013.550000px;}
.ye{bottom:1018.950000px;}
.y37{bottom:1021.650000px;}
.y90{bottom:1024.890000px;}
.yb7{bottom:1033.890000px;}
.yd{bottom:1042.710000px;}
.y63{bottom:1044.510000px;}
.y88{bottom:1046.310000px;}
.yee{bottom:1047.210000px;}
.y36{bottom:1052.790000px;}
.yb9{bottom:1055.490000px;}
.yc{bottom:1066.650000px;}
.yb8{bottom:1076.910000px;}
.y62{bottom:1077.990000px;}
.yed{bottom:1078.170000px;}
.y35{bottom:1083.750000px;}
.yb{bottom:1090.410000px;}
.y61{bottom:1098.330000px;}
.yec{bottom:1112.010000px;}
.y34{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y60{bottom:1119.750000px;}
.y5f{bottom:1141.200000px;}
.y9{bottom:1143.000000px;}
.y33{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.he{height:20.700000px;}
.hf{height:20.736000px;}
.h5{height:27.000000px;}
.h13{height:30.960000px;}
.h15{height:30.996000px;}
.h14{height:31.140000px;}
.h17{height:42.120000px;}
.hd{height:42.300000px;}
.ha{height:50.484375px;}
.h9{height:52.171875px;}
.h2{height:53.460000px;}
.h10{height:59.066719px;}
.h8{height:59.343750px;}
.hb{height:61.184531px;}
.h1e{height:61.329023px;}
.h1d{height:61.364531px;}
.h12{height:62.100000px;}
.h7{height:62.261719px;}
.h1b{height:63.540000px;}
.h19{height:63.576000px;}
.h1a{height:63.720000px;}
.h18{height:65.475352px;}
.h4{height:65.884219px;}
.h1c{height:67.144219px;}
.hc{height:69.432187px;}
.h6{height:72.846211px;}
.h3{height:75.726562px;}
.h16{height:84.600000px;}
.h11{height:93.780000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:52.200000px;}
.w20{width:53.496000px;}
.w22{width:62.496000px;}
.w23{width:62.640000px;}
.we{width:73.620000px;}
.w1b{width:73.656000px;}
.wf{width:73.800000px;}
.w24{width:74.160000px;}
.wd{width:79.776000px;}
.w1a{width:82.980000px;}
.wc{width:83.880000px;}
.w1c{width:84.240000px;}
.w10{width:84.276000px;}
.w11{width:84.420000px;}
.w19{width:85.896000px;}
.wb{width:88.056000px;}
.w16{width:88.920000px;}
.w17{width:88.956000px;}
.w18{width:89.100000px;}
.w1d{width:105.660000px;}
.w13{width:105.696000px;}
.w5{width:106.416000px;}
.w7{width:113.760000px;}
.w12{width:114.480000px;}
.w26{width:137.376000px;}
.w28{width:137.520000px;}
.w9{width:148.140000px;}
.w27{width:158.790000px;}
.wa{width:169.410000px;}
.w15{width:178.770000px;}
.w8{width:253.335000px;}
.w14{width:268.410000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w1e{width:347.610000px;}
.w1f{width:360.795000px;}
.w2{width:498.675000px;}
.w25{width:709.125000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:7.740000px;}
.x46{left:9.180000px;}
.x40{left:10.260000px;}
.x1f{left:12.420000px;}
.x36{left:14.400000px;}
.x57{left:15.480000px;}
.x24{left:17.100000px;}
.x23{left:19.980000px;}
.x28{left:21.060000px;}
.x20{left:22.680000px;}
.x1a{left:23.760000px;}
.x26{left:25.605000px;}
.x3a{left:27.000000px;}
.x2b{left:28.260000px;}
.x44{left:29.340000px;}
.x3d{left:30.780000px;}
.x2a{left:32.760000px;}
.x41{left:34.020000px;}
.x3c{left:35.460000px;}
.x5e{left:36.720000px;}
.x37{left:37.980000px;}
.x33{left:39.240000px;}
.x9{left:40.680000px;}
.x5a{left:42.300000px;}
.x63{left:43.380000px;}
.x1c{left:45.000000px;}
.x30{left:47.334000px;}
.x61{left:50.760000px;}
.x60{left:52.374000px;}
.x62{left:63.540000px;}
.x5c{left:64.980000px;}
.x3f{left:74.700000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x34{left:94.500000px;}
.x50{left:95.610000px;}
.x4d{left:98.676000px;}
.x5{left:106.415987px;}
.x19{left:113.796000px;}
.x2f{left:122.436000px;}
.x4e{left:125.814000px;}
.x2d{left:128.015987px;}
.xb{left:150.329987px;}
.x5b{left:153.750000px;}
.x11{left:159.509987px;}
.x13{left:162.029987px;}
.x56{left:170.814000px;}
.x4b{left:182.549987px;}
.xf{left:185.789987px;}
.x2{left:197.310000px;}
.x3e{left:201.989987px;}
.x59{left:213.150000px;}
.x1b{left:228.270000px;}
.xc{left:232.949987px;}
.x31{left:237.630000px;}
.x42{left:245.010000px;}
.x18{left:258.509987px;}
.x1{left:278.175000px;}
.x64{left:294.554987px;}
.x7{left:297.795000px;}
.x10{left:302.834987px;}
.x21{left:317.235000px;}
.x4c{left:328.934987px;}
.x43{left:330.015000px;}
.x32{left:344.055000px;}
.xe{left:351.074987px;}
.x58{left:380.954987px;}
.x15{left:389.594987px;}
.x8{left:390.855000px;}
.x22{left:401.835000px;}
.x14{left:410.114987px;}
.x45{left:415.155000px;}
.x2e{left:432.614987px;}
.x38{left:433.695000px;}
.x4f{left:447.015000px;}
.xd{left:478.364987px;}
.x1d{left:482.325000px;}
.x12{left:483.764987px;}
.x47{left:489.525000px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x51{left:501.225000px;}
.x5d{left:521.385000px;}
.x39{left:523.365000px;}
.x52{left:554.145000px;}
.x25{left:556.665000px;}
.x48{left:574.665000px;}
.x53{left:607.065000px;}
.x35{left:613.185000px;}
.x1e{left:631.185000px;}
.x49{left:659.670000px;}
.x54{left:670.290000px;}
.x5f{left:680.910000px;}
.x3b{left:703.050000px;}
.x27{left:716.190000px;}
.x17{left:728.069987px;}
.x2c{left:730.229987px;}
.x55{left:733.650000px;}
.x4a{left:766.050000px;}
.x16{left:807.989987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls38{letter-spacing:-5.760000pt;}
.ls35{letter-spacing:-3.712000pt;}
.ls37{letter-spacing:-3.200000pt;}
.ls36{letter-spacing:-2.944000pt;}
.ls23{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls49{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls4a{letter-spacing:-0.448000pt;}
.ls40{letter-spacing:-0.384000pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls34{letter-spacing:-0.198933pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.lse{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000003pt;}
.ls1a{letter-spacing:0.042667pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.135467pt;}
.ls39{letter-spacing:0.164267pt;}
.ls25{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.311680pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.336533pt;}
.ls47{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.lsb{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls44{letter-spacing:2.560000pt;}
.ls2d{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:3.840000pt;}
.ls3d{letter-spacing:4.480000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls27{letter-spacing:5.760000pt;}
.ls7{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:7.680000pt;}
.ls1d{letter-spacing:8.320000pt;}
.ls15{letter-spacing:8.960000pt;}
.ls3a{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:10.400000pt;}
.ls17{letter-spacing:12.160000pt;}
.ls41{letter-spacing:13.440000pt;}
.ls2f{letter-spacing:14.240000pt;}
.ls28{letter-spacing:14.720000pt;}
.ls18{letter-spacing:15.360000pt;}
.ls2e{letter-spacing:16.000000pt;}
.lsc{letter-spacing:16.640000pt;}
.ls6{letter-spacing:17.280000pt;}
.ls3b{letter-spacing:17.440000pt;}
.ls3c{letter-spacing:17.920000pt;}
.ls29{letter-spacing:19.840000pt;}
.ls30{letter-spacing:20.480000pt;}
.ls42{letter-spacing:21.120000pt;}
.ls26{letter-spacing:24.320000pt;}
.ls5{letter-spacing:24.960000pt;}
.ls46{letter-spacing:25.600000pt;}
.ls2c{letter-spacing:28.800000pt;}
.ls45{letter-spacing:30.080000pt;}
.ls3f{letter-spacing:36.480000pt;}
.ls24{letter-spacing:37.760000pt;}
.ls16{letter-spacing:40.320000pt;}
.ls31{letter-spacing:41.706667pt;}
.ls4d{letter-spacing:42.880000pt;}
.ls19{letter-spacing:43.520000pt;}
.ls9{letter-spacing:63.360000pt;}
.ls4e{letter-spacing:74.543360pt;}
.ls4c{letter-spacing:111.663360pt;}
.ls48{letter-spacing:123.520000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws3{word-spacing:-19.056533pt;}
.ws1d{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.448000pt;}
.wsf{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws1a{word-spacing:-16.164267pt;}
.wsa{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1c{word-spacing:-16.000003pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.552000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.104000pt;}
.ws1{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.056000pt;}
.ws18{word-spacing:-12.800000pt;}
.ws16{word-spacing:-12.288000pt;}
.ws14{word-spacing:-10.855467pt;}
.ws13{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.521067pt;}
.ws19{word-spacing:-10.240000pt;}
.wsc{word-spacing:0.000000pt;}
._2d{margin-left:-6.528000pt;}
._2c{margin-left:-5.568000pt;}
._29{margin-left:-4.160000pt;}
._2a{margin-left:-3.264000pt;}
._2b{margin-left:-2.368000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.600000pt;}
._8{width:3.061333pt;}
._9{width:4.597333pt;}
._5{width:5.802667pt;}
._2f{width:6.720000pt;}
._14{width:7.616000pt;}
._15{width:8.640000pt;}
._11{width:9.824000pt;}
._b{width:11.104000pt;}
._a{width:12.736000pt;}
._2e{width:13.632000pt;}
._13{width:14.528000pt;}
._1{width:16.576000pt;}
._4{width:17.642667pt;}
._12{width:19.520000pt;}
._10{width:20.522667pt;}
._f{width:21.440000pt;}
._28{width:22.592000pt;}
._23{width:23.733333pt;}
._3{width:24.640000pt;}
._1a{width:26.282667pt;}
._26{width:27.285333pt;}
._1b{width:28.224000pt;}
._1c{width:29.280000pt;}
._17{width:30.602667pt;}
._18{width:31.648000pt;}
._21{width:32.554667pt;}
._1f{width:33.482667pt;}
._d{width:35.040000pt;}
._c{width:36.160000pt;}
._20{width:37.632000pt;}
._22{width:38.752000pt;}
._27{width:39.808000pt;}
._19{width:40.778667pt;}
._16{width:42.432000pt;}
._1d{width:43.392000pt;}
._32{width:47.936000pt;}
._1e{width:53.098667pt;}
._30{width:54.549333pt;}
._25{width:56.064000pt;}
._24{width:57.194667pt;}
._e{width:59.904000pt;}
._6{width:62.784000pt;}
._7{width:64.010667pt;}
._31{width:123.370667pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:3.514667pt;}
.y5c{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.y75{bottom:12.640000pt;}
.y78{bottom:12.666667pt;}
.y73{bottom:12.800000pt;}
.y94{bottom:12.960000pt;}
.y5a{bottom:13.114667pt;}
.y8f{bottom:13.120000pt;}
.y8d{bottom:13.440000pt;}
.yb4{bottom:21.920000pt;}
.yb6{bottom:22.560000pt;}
.y8a{bottom:22.720000pt;}
.y2{bottom:25.120000pt;}
.y74{bottom:26.560000pt;}
.y6f{bottom:26.880000pt;}
.yb5{bottom:31.034667pt;}
.y8c{bottom:31.840000pt;}
.yb3{bottom:40.314667pt;}
.y72{bottom:40.320000pt;}
.y70{bottom:40.640000pt;}
.y89{bottom:41.120000pt;}
.y8b{bottom:50.240000pt;}
.y6e{bottom:54.400000pt;}
.y8{bottom:63.232000pt;}
.y6{bottom:77.152000pt;}
.yb2{bottom:102.752000pt;}
.y54{bottom:107.712000pt;}
.y5e{bottom:111.392000pt;}
.yd9{bottom:113.472000pt;}
.yeb{bottom:117.952000pt;}
.y87{bottom:118.752000pt;}
.y59{bottom:130.432000pt;}
.y53{bottom:135.386667pt;}
.y32{bottom:137.466667pt;}
.yd8{bottom:141.146667pt;}
.yea{bottom:145.466667pt;}
.y86{bottom:146.426667pt;}
.y5b{bottom:149.626667pt;}
.y31{bottom:158.586667pt;}
.y52{bottom:162.906667pt;}
.yb1{bottom:164.826667pt;}
.yd7{bottom:168.666667pt;}
.ye9{bottom:172.986667pt;}
.y85{bottom:173.946667pt;}
.y30{bottom:179.866667pt;}
.y58{bottom:181.306667pt;}
.yb0{bottom:185.946667pt;}
.y51{bottom:190.586667pt;}
.yd6{bottom:196.346667pt;}
.y2f{bottom:200.986667pt;}
.y84{bottom:201.626667pt;}
.ye8{bottom:203.226667pt;}
.yaf{bottom:207.066667pt;}
.y57{bottom:208.986667pt;}
.y50{bottom:218.106667pt;}
.y2e{bottom:222.106667pt;}
.yd5{bottom:223.866667pt;}
.y83{bottom:229.146667pt;}
.ye7{bottom:230.746667pt;}
.yae{bottom:234.746667pt;}
.y56{bottom:238.586667pt;}
.y2d{bottom:243.226667pt;}
.y4f{bottom:245.786667pt;}
.yd4{bottom:251.546667pt;}
.y82{bottom:256.826667pt;}
.ye6{bottom:258.266667pt;}
.yad{bottom:262.266667pt;}
.y2c{bottom:264.506667pt;}
.y55{bottom:270.746667pt;}
.y4e{bottom:273.306667pt;}
.yd3{bottom:279.066667pt;}
.y81{bottom:284.346667pt;}
.y2b{bottom:285.626667pt;}
.ye5{bottom:288.506667pt;}
.yac{bottom:289.946667pt;}
.y4d{bottom:301.026667pt;}
.y2a{bottom:306.786667pt;}
.y80{bottom:312.066667pt;}
.ye4{bottom:316.066667pt;}
.yab{bottom:317.506667pt;}
.y29{bottom:327.906667pt;}
.y4c{bottom:328.546667pt;}
.yd2{bottom:334.306667pt;}
.y7f{bottom:339.586667pt;}
.yaa{bottom:345.186667pt;}
.ye3{bottom:346.146667pt;}
.y28{bottom:349.186667pt;}
.y4b{bottom:356.226667pt;}
.yd1{bottom:361.986667pt;}
.y7e{bottom:367.266667pt;}
.y27{bottom:370.306667pt;}
.ya9{bottom:372.706667pt;}
.ye2{bottom:373.666667pt;}
.y4a{bottom:383.746667pt;}
.yd0{bottom:389.506667pt;}
.y26{bottom:391.426667pt;}
.y7d{bottom:394.786667pt;}
.ya8{bottom:400.386667pt;}
.ye1{bottom:403.906667pt;}
.y49{bottom:411.426667pt;}
.y25{bottom:412.546667pt;}
.ycf{bottom:417.026667pt;}
.y7c{bottom:422.466667pt;}
.ya7{bottom:427.906667pt;}
.ye0{bottom:431.426667pt;}
.y24{bottom:433.826667pt;}
.y48{bottom:438.946667pt;}
.yce{bottom:444.706667pt;}
.y7b{bottom:452.066667pt;}
.y23{bottom:454.946667pt;}
.ya6{bottom:455.586667pt;}
.ydf{bottom:459.106667pt;}
.y47{bottom:466.626667pt;}
.y7a{bottom:470.146667pt;}
.ycd{bottom:472.226667pt;}
.y22{bottom:476.066667pt;}
.ya5{bottom:483.106667pt;}
.yde{bottom:489.186667pt;}
.y46{bottom:494.146667pt;}
.y21{bottom:497.186667pt;}
.y79{bottom:498.466667pt;}
.ya4{bottom:498.626667pt;}
.ycc{bottom:499.906667pt;}
.ydd{bottom:516.706667pt;}
.ya3{bottom:517.826667pt;}
.y20{bottom:518.466667pt;}
.y45{bottom:521.826667pt;}
.y77{bottom:526.786667pt;}
.ycb{bottom:527.426667pt;}
.ya2{bottom:536.893333pt;}
.y1f{bottom:539.613333pt;}
.ydc{bottom:544.413333pt;}
.y44{bottom:549.373333pt;}
.y76{bottom:554.973333pt;}
.yca{bottom:555.133333pt;}
.ya1{bottom:555.933333pt;}
.y1e{bottom:560.733333pt;}
.ydb{bottom:574.493333pt;}
.ya0{bottom:574.973333pt;}
.y43{bottom:577.053333pt;}
.y1d{bottom:581.853333pt;}
.yc9{bottom:582.653333pt;}
.y6d{bottom:583.293333pt;}
.y9f{bottom:594.013333pt;}
.yda{bottom:602.013333pt;}
.y1c{bottom:602.973333pt;}
.y42{bottom:604.573333pt;}
.yc8{bottom:610.333333pt;}
.y71{bottom:611.453333pt;}
.y9e{bottom:613.053333pt;}
.y1b{bottom:624.253333pt;}
.y41{bottom:632.253333pt;}
.yc7{bottom:637.853333pt;}
.y1a{bottom:645.373333pt;}
.y9c{bottom:651.293333pt;}
.y40{bottom:659.773333pt;}
.y19{bottom:666.493333pt;}
.yc6{bottom:669.693333pt;}
.y9d{bottom:670.333333pt;}
.y6c{bottom:680.093333pt;}
.y3f{bottom:687.453333pt;}
.y18{bottom:687.613333pt;}
.yc3{bottom:690.333333pt;}
.y9b{bottom:692.893333pt;}
.yf6{bottom:706.013333pt;}
.y6b{bottom:707.773333pt;}
.y17{bottom:708.893333pt;}
.yc5{bottom:709.373333pt;}
.y9a{bottom:711.293333pt;}
.y3e{bottom:714.973333pt;}
.yc4{bottom:728.413333pt;}
.y99{bottom:729.693333pt;}
.y16{bottom:730.013333pt;}
.yf5{bottom:732.573333pt;}
.y6a{bottom:735.293333pt;}
.y3d{bottom:742.493333pt;}
.yc0{bottom:747.453333pt;}
.y15{bottom:751.133333pt;}
.y98{bottom:759.293333pt;}
.yf4{bottom:760.253333pt;}
.y69{bottom:762.973333pt;}
.yc2{bottom:766.493333pt;}
.y3c{bottom:770.173333pt;}
.y14{bottom:772.253333pt;}
.y96{bottom:777.413333pt;}
.yc1{bottom:785.573333pt;}
.yf3{bottom:787.813333pt;}
.y68{bottom:790.533333pt;}
.y13{bottom:793.573333pt;}
.y97{bottom:796.613333pt;}
.y3b{bottom:797.733333pt;}
.ybd{bottom:804.613333pt;}
.y12{bottom:814.693333pt;}
.yf2{bottom:815.493333pt;}
.y93{bottom:815.653333pt;}
.y67{bottom:818.213333pt;}
.ybf{bottom:823.813333pt;}
.y3a{bottom:825.413333pt;}
.y95{bottom:834.693333pt;}
.y11{bottom:835.813333pt;}
.ybe{bottom:842.853333pt;}
.yf1{bottom:843.013333pt;}
.y66{bottom:845.733333pt;}
.y39{bottom:852.933333pt;}
.y91{bottom:853.733333pt;}
.y10{bottom:856.933333pt;}
.yba{bottom:861.893333pt;}
.y92{bottom:872.773333pt;}
.yf0{bottom:873.093333pt;}
.y65{bottom:873.253333pt;}
.yf{bottom:878.213333pt;}
.y38{bottom:880.613333pt;}
.ybc{bottom:880.933333pt;}
.y8e{bottom:891.813333pt;}
.ybb{bottom:899.973333pt;}
.yef{bottom:900.613333pt;}
.y64{bottom:900.933333pt;}
.ye{bottom:905.733333pt;}
.y37{bottom:908.133333pt;}
.y90{bottom:911.013333pt;}
.yb7{bottom:919.013333pt;}
.yd{bottom:926.853333pt;}
.y63{bottom:928.453333pt;}
.y88{bottom:930.053333pt;}
.yee{bottom:930.853333pt;}
.y36{bottom:935.813333pt;}
.yb9{bottom:938.213333pt;}
.yc{bottom:948.133333pt;}
.yb8{bottom:957.253333pt;}
.y62{bottom:958.213333pt;}
.yed{bottom:958.373333pt;}
.y35{bottom:963.333333pt;}
.yb{bottom:969.253333pt;}
.y61{bottom:976.293333pt;}
.yec{bottom:988.453333pt;}
.y34{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y60{bottom:995.333333pt;}
.y5f{bottom:1014.400000pt;}
.y9{bottom:1016.000000pt;}
.y33{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.he{height:18.400000pt;}
.hf{height:18.432000pt;}
.h5{height:24.000000pt;}
.h13{height:27.520000pt;}
.h15{height:27.552000pt;}
.h14{height:27.680000pt;}
.h17{height:37.440000pt;}
.hd{height:37.600000pt;}
.ha{height:44.875000pt;}
.h9{height:46.375000pt;}
.h2{height:47.520000pt;}
.h10{height:52.503750pt;}
.h8{height:52.750000pt;}
.hb{height:54.386250pt;}
.h1e{height:54.514687pt;}
.h1d{height:54.546250pt;}
.h12{height:55.200000pt;}
.h7{height:55.343750pt;}
.h1b{height:56.480000pt;}
.h19{height:56.512000pt;}
.h1a{height:56.640000pt;}
.h18{height:58.200313pt;}
.h4{height:58.563750pt;}
.h1c{height:59.683750pt;}
.hc{height:61.717500pt;}
.h6{height:64.752187pt;}
.h3{height:67.312500pt;}
.h16{height:75.200000pt;}
.h11{height:83.360000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:46.400000pt;}
.w20{width:47.552000pt;}
.w22{width:55.552000pt;}
.w23{width:55.680000pt;}
.we{width:65.440000pt;}
.w1b{width:65.472000pt;}
.wf{width:65.600000pt;}
.w24{width:65.920000pt;}
.wd{width:70.912000pt;}
.w1a{width:73.760000pt;}
.wc{width:74.560000pt;}
.w1c{width:74.880000pt;}
.w10{width:74.912000pt;}
.w11{width:75.040000pt;}
.w19{width:76.352000pt;}
.wb{width:78.272000pt;}
.w16{width:79.040000pt;}
.w17{width:79.072000pt;}
.w18{width:79.200000pt;}
.w1d{width:93.920000pt;}
.w13{width:93.952000pt;}
.w5{width:94.592000pt;}
.w7{width:101.120000pt;}
.w12{width:101.760000pt;}
.w26{width:122.112000pt;}
.w28{width:122.240000pt;}
.w9{width:131.680000pt;}
.w27{width:141.146667pt;}
.wa{width:150.586667pt;}
.w15{width:158.906667pt;}
.w8{width:225.186667pt;}
.w14{width:238.586667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w1e{width:308.986667pt;}
.w1f{width:320.706667pt;}
.w2{width:443.266667pt;}
.w25{width:630.333333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:6.880000pt;}
.x46{left:8.160000pt;}
.x40{left:9.120000pt;}
.x1f{left:11.040000pt;}
.x36{left:12.800000pt;}
.x57{left:13.760000pt;}
.x24{left:15.200000pt;}
.x23{left:17.760000pt;}
.x28{left:18.720000pt;}
.x20{left:20.160000pt;}
.x1a{left:21.120000pt;}
.x26{left:22.760000pt;}
.x3a{left:24.000000pt;}
.x2b{left:25.120000pt;}
.x44{left:26.080000pt;}
.x3d{left:27.360000pt;}
.x2a{left:29.120000pt;}
.x41{left:30.240000pt;}
.x3c{left:31.520000pt;}
.x5e{left:32.640000pt;}
.x37{left:33.760000pt;}
.x33{left:34.880000pt;}
.x9{left:36.160000pt;}
.x5a{left:37.600000pt;}
.x63{left:38.560000pt;}
.x1c{left:40.000000pt;}
.x30{left:42.074667pt;}
.x61{left:45.120000pt;}
.x60{left:46.554667pt;}
.x62{left:56.480000pt;}
.x5c{left:57.760000pt;}
.x3f{left:66.400000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x34{left:84.000000pt;}
.x50{left:84.986667pt;}
.x4d{left:87.712000pt;}
.x5{left:94.591988pt;}
.x19{left:101.152000pt;}
.x2f{left:108.832000pt;}
.x4e{left:111.834667pt;}
.x2d{left:113.791988pt;}
.xb{left:133.626655pt;}
.x5b{left:136.666667pt;}
.x11{left:141.786655pt;}
.x13{left:144.026655pt;}
.x56{left:151.834667pt;}
.x4b{left:162.266655pt;}
.xf{left:165.146655pt;}
.x2{left:175.386667pt;}
.x3e{left:179.546655pt;}
.x59{left:189.466667pt;}
.x1b{left:202.906667pt;}
.xc{left:207.066655pt;}
.x31{left:211.226667pt;}
.x42{left:217.786667pt;}
.x18{left:229.786655pt;}
.x1{left:247.266667pt;}
.x64{left:261.826655pt;}
.x7{left:264.706667pt;}
.x10{left:269.186655pt;}
.x21{left:281.986667pt;}
.x4c{left:292.386655pt;}
.x43{left:293.346667pt;}
.x32{left:305.826667pt;}
.xe{left:312.066655pt;}
.x58{left:338.626655pt;}
.x15{left:346.306655pt;}
.x8{left:347.426667pt;}
.x22{left:357.186667pt;}
.x14{left:364.546655pt;}
.x45{left:369.026667pt;}
.x2e{left:384.546655pt;}
.x38{left:385.506667pt;}
.x4f{left:397.346667pt;}
.xd{left:425.213322pt;}
.x1d{left:428.733333pt;}
.x12{left:430.013322pt;}
.x47{left:435.133333pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x51{left:445.533333pt;}
.x5d{left:463.453333pt;}
.x39{left:465.213333pt;}
.x52{left:492.573333pt;}
.x25{left:494.813333pt;}
.x48{left:510.813333pt;}
.x53{left:539.613333pt;}
.x35{left:545.053333pt;}
.x1e{left:561.053333pt;}
.x49{left:586.373333pt;}
.x54{left:595.813333pt;}
.x5f{left:605.253333pt;}
.x3b{left:624.933333pt;}
.x27{left:636.613333pt;}
.x17{left:647.173322pt;}
.x2c{left:649.093322pt;}
.x55{left:652.133333pt;}
.x4a{left:680.933333pt;}
.x16{left:718.213322pt;}
}




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