
    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_3875898d109721a9d50c748f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_222203d0a03cfa108dd70aa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_7e437b94e026b07451851212.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a28c186f70be26afaf0ff9b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_61cc73b229dd46374e264578.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cafade3d5b29bb6fe3795274.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_0cfbc310ce8be34172f9d553.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9a0a7f8cbf6f44c516c45a94.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_f0b5eafced3fee23eb5e7c31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.764160;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_507dac8cef230ae68a630c20.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_f4b18b99be6b346ac84b1fd6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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:ffc;src:url('chunks/assets/font_aaae22881e23877991486e15.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7ee9c4ad2d7c87cae6acbe4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.134766;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:ffe;src:url('chunks/assets/font_7bfec14ebd91a3b5d9e09a42.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295925,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297625,0.000000,0.000000,0.250000,0,0);}
.m9{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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls43{letter-spacing:-2.850000px;}
.ls1f{letter-spacing:-2.340000px;}
.ls1e{letter-spacing:-2.130000px;}
.ls2d{letter-spacing:-1.470000px;}
.ls2c{letter-spacing:-1.062000px;}
.ls30{letter-spacing:-0.900000px;}
.ls27{letter-spacing:-0.810000px;}
.ls31{letter-spacing:-0.684000px;}
.ls25{letter-spacing:-0.618000px;}
.ls3a{letter-spacing:-0.590400px;}
.ls23{letter-spacing:-0.428400px;}
.ls3b{letter-spacing:-0.378600px;}
.ls26{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.253200px;}
.ls20{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.004080px;}
.ls34{letter-spacing:0.028080px;}
.ls21{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.054720px;}
.ls1{letter-spacing:0.109200px;}
.lsf{letter-spacing:0.129600px;}
.ls3{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.208080px;}
.ls2{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.291600px;}
.ls22{letter-spacing:0.321600px;}
.ls1c{letter-spacing:0.341280px;}
.ls24{letter-spacing:0.341400px;}
.ls1a{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.378600px;}
.ls35{letter-spacing:0.378720px;}
.ls2b{letter-spacing:0.470640px;}
.ls7{letter-spacing:0.540000px;}
.ls9{letter-spacing:1.260000px;}
.ls8{letter-spacing:1.589760px;}
.lsa{letter-spacing:1.980000px;}
.ls12{letter-spacing:2.700000px;}
.ls29{letter-spacing:4.469760px;}
.ls3c{letter-spacing:5.580000px;}
.ls5{letter-spacing:5.909760px;}
.ls6{letter-spacing:6.809760px;}
.ls1d{letter-spacing:8.460000px;}
.ls3f{letter-spacing:10.620000px;}
.ls3e{letter-spacing:11.340000px;}
.ls36{letter-spacing:14.220000px;}
.ls39{letter-spacing:17.100000px;}
.ls33{letter-spacing:17.820000px;}
.ls32{letter-spacing:18.540000px;}
.lsd{letter-spacing:21.420000px;}
.ls42{letter-spacing:28.620000px;}
.ls1b{letter-spacing:30.060000px;}
.ls17{letter-spacing:30.780000px;}
.ls15{letter-spacing:30.900000px;}
.ls14{letter-spacing:32.400000px;}
.ls13{letter-spacing:32.940000px;}
.lsb{letter-spacing:33.660000px;}
.ls41{letter-spacing:42.300000px;}
.ls10{letter-spacing:45.180000px;}
.lse{letter-spacing:45.900000px;}
.ls11{letter-spacing:46.620000px;}
.ls40{letter-spacing:48.780000px;}
.lsc{letter-spacing:50.940000px;}
.ls2a{letter-spacing:52.709760px;}
.ls19{letter-spacing:64.620000px;}
.ls18{letter-spacing:64.800000px;}
.ls37{letter-spacing:71.100000px;}
.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;}
}
.ws12{word-spacing:-21.438600px;}
.wsc{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.ws7{word-spacing:-21.381600px;}
.ws9{word-spacing:-21.351600px;}
.ws6{word-spacing:-21.189600px;}
.ws5{word-spacing:-21.097440px;}
.ws4{word-spacing:-21.060000px;}
.ws13{word-spacing:-21.022560px;}
.ws17{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.631600px;}
.ws16{word-spacing:-20.469600px;}
.wsb{word-spacing:-20.442000px;}
.ws14{word-spacing:-20.376000px;}
.wsd{word-spacing:-20.250000px;}
.ws1{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.998000px;}
.ws11{word-spacing:-19.590000px;}
.wsf{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.210000px;}
.wse{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.970240px;}
.ws15{word-spacing:-13.500000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-6.587040px;}
._e{margin-left:-5.236800px;}
._2{margin-left:-4.032000px;}
._6{margin-left:-2.106000px;}
._1{margin-left:-1.080000px;}
._0{width:1.015920px;}
._3{width:2.589616px;}
._11{width:4.448864px;}
._2c{width:5.496993px;}
._2f{width:6.500542px;}
._5{width:7.656000px;}
._4{width:9.335520px;}
._f{width:10.699680px;}
._13{width:12.168960px;}
._12{width:13.266480px;}
._19{width:14.742000px;}
._1a{width:16.148880px;}
._2d{width:17.163600px;}
._1f{width:18.262560px;}
._1d{width:19.275840px;}
._1c{width:22.140000px;}
._1b{width:23.572080px;}
._29{width:25.777440px;}
._2e{width:27.123120px;}
._20{width:28.532160px;}
._c{width:29.989440px;}
._8{width:32.836080px;}
._7{width:34.032960px;}
._28{width:35.796960px;}
._24{width:37.402560px;}
._25{width:38.878304px;}
._30{width:40.687920px;}
._31{width:42.372720px;}
._23{width:44.136720px;}
._b{width:45.266880px;}
._2b{width:46.970880px;}
._32{width:48.560880px;}
._a{width:49.885200px;}
._9{width:50.950080px;}
._16{width:54.503280px;}
._17{width:56.420880px;}
._18{width:57.446400px;}
._d{width:65.067600px;}
._27{width:69.384000px;}
._26{width:71.153040px;}
._2a{width:73.373040px;}
._14{width:87.525360px;}
._15{width:88.952400px;}
._22{width:105.889680px;}
._21{width:106.900560px;}
._10{width:843.096000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc5{color:rgb(214,163,0);}
.fc2{color:rgb(68,114,196);}
.fc4{color:rgb(200,152,0);}
.fc1{color:rgb(188,143,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y36{bottom:-1173.600000px;}
.y35{bottom:-1148.940000px;}
.y34{bottom:-1124.100000px;}
.y33{bottom:-1099.260000px;}
.y32{bottom:-1074.420000px;}
.y31{bottom:-1049.580000px;}
.y30{bottom:-1024.920000px;}
.y2f{bottom:-1000.050000px;}
.y2e{bottom:-975.210000px;}
.y2d{bottom:-950.370000px;}
.y2c{bottom:-925.530000px;}
.y2b{bottom:-900.690000px;}
.y2a{bottom:-876.030000px;}
.y29{bottom:-851.190000px;}
.y28{bottom:-826.350000px;}
.y27{bottom:-801.510000px;}
.y26{bottom:-776.670000px;}
.y25{bottom:-751.785000px;}
.y24{bottom:-726.045000px;}
.y23{bottom:-697.065000px;}
.y22{bottom:-660.345000px;}
.y21{bottom:-631.545000px;}
.y20{bottom:-602.745000px;}
.y1f{bottom:-573.945000px;}
.y1e{bottom:-545.325000px;}
.y1d{bottom:-516.495000px;}
.y1c{bottom:-487.695000px;}
.y1b{bottom:-458.895000px;}
.y1a{bottom:-430.095000px;}
.y19{bottom:-401.475000px;}
.y18{bottom:-372.675000px;}
.y17{bottom:-343.875000px;}
.y16{bottom:-315.075000px;}
.y15{bottom:-286.455000px;}
.y14{bottom:-257.610000px;}
.y13{bottom:-228.810000px;}
.y12{bottom:-200.010000px;}
.y11{bottom:-171.210000px;}
.y10{bottom:-142.590000px;}
.yf{bottom:-113.790000px;}
.ye{bottom:-84.990000px;}
.yd{bottom:-56.190000px;}
.yc{bottom:-27.540000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.720000px;}
.y71{bottom:4.680000px;}
.y8{bottom:8.100000px;}
.y70{bottom:24.840000px;}
.ya{bottom:27.540000px;}
.y6f{bottom:44.820000px;}
.y6{bottom:57.420000px;}
.y76{bottom:57.600000px;}
.y6e{bottom:64.980000px;}
.y5{bottom:73.080000px;}
.y7{bottom:74.520000px;}
.y6d{bottom:85.140000px;}
.y6c{bottom:105.300000px;}
.yeb{bottom:121.356000px;}
.yf7{bottom:125.316000px;}
.y6b{bottom:125.460000px;}
.y9f{bottom:126.756000px;}
.y66{bottom:141.120000px;}
.y6a{bottom:145.620000px;}
.yea{bottom:149.076000px;}
.y9e{bottom:150.330000px;}
.yc7{bottom:151.050000px;}
.yf6{bottom:153.030000px;}
.y65{bottom:161.640000px;}
.y69{bottom:165.780000px;}
.y9d{bottom:171.030000px;}
.yc6{bottom:174.630000px;}
.ye9{bottom:176.970000px;}
.yf5{bottom:180.930000px;}
.y64{bottom:182.370000px;}
.y68{bottom:185.970000px;}
.y9c{bottom:191.730000px;}
.yc5{bottom:195.330000px;}
.y63{bottom:203.070000px;}
.ye8{bottom:204.690000px;}
.yf4{bottom:208.650000px;}
.y9b{bottom:212.430000px;}
.yc4{bottom:216.030000px;}
.y62{bottom:223.770000px;}
.ye7{bottom:232.410000px;}
.y9a{bottom:233.130000px;}
.yf3{bottom:236.370000px;}
.yc3{bottom:236.730000px;}
.y61{bottom:244.830000px;}
.yc2{bottom:257.430000px;}
.y99{bottom:257.970000px;}
.ye6{bottom:260.130000px;}
.yf2{bottom:264.270000px;}
.y60{bottom:266.970000px;}
.y117{bottom:275.970000px;}
.yc1{bottom:282.270000px;}
.y98{bottom:285.690000px;}
.y5f{bottom:287.670000px;}
.ye5{bottom:288.030000px;}
.yf1{bottom:291.990000px;}
.y116{bottom:300.090000px;}
.y5e{bottom:308.190000px;}
.yc0{bottom:309.990000px;}
.y97{bottom:313.590000px;}
.ye4{bottom:315.750000px;}
.yf0{bottom:319.710000px;}
.y115{bottom:324.210000px;}
.y5d{bottom:328.890000px;}
.ybf{bottom:337.890000px;}
.y96{bottom:341.310000px;}
.ye3{bottom:343.470000px;}
.yef{bottom:346.350000px;}
.y114{bottom:348.330000px;}
.y5c{bottom:349.590000px;}
.ybe{bottom:365.610000px;}
.y95{bottom:369.075000px;}
.y5b{bottom:370.110000px;}
.ye2{bottom:371.415000px;}
.y113{bottom:372.495000px;}
.y5a{bottom:390.810000px;}
.ybd{bottom:393.375000px;}
.y112{bottom:396.615000px;}
.y94{bottom:396.795000px;}
.ye1{bottom:399.135000px;}
.y59{bottom:411.510000px;}
.y111{bottom:420.915000px;}
.ybc{bottom:421.275000px;}
.y93{bottom:424.695000px;}
.ye0{bottom:426.855000px;}
.y58{bottom:432.255000px;}
.y110{bottom:445.035000px;}
.ybb{bottom:448.995000px;}
.y92{bottom:452.415000px;}
.y57{bottom:452.775000px;}
.ydf{bottom:454.575000px;}
.y10f{bottom:469.155000px;}
.y56{bottom:473.475000px;}
.yba{bottom:476.715000px;}
.y91{bottom:480.135000px;}
.yde{bottom:482.475000px;}
.y10e{bottom:493.275000px;}
.y55{bottom:494.175000px;}
.yb9{bottom:504.435000px;}
.y90{bottom:508.035000px;}
.ydd{bottom:510.195000px;}
.y54{bottom:516.675000px;}
.y10d{bottom:517.395000px;}
.yb8{bottom:532.335000px;}
.y8f{bottom:535.755000px;}
.ydc{bottom:537.915000px;}
.y53{bottom:540.435000px;}
.y10c{bottom:541.515000px;}
.yb7{bottom:560.055000px;}
.y52{bottom:561.135000px;}
.y8e{bottom:563.475000px;}
.ydb{bottom:565.815000px;}
.y51{bottom:581.835000px;}
.yb6{bottom:587.775000px;}
.y10b{bottom:589.935000px;}
.y8d{bottom:591.195000px;}
.yda{bottom:593.535000px;}
.y50{bottom:602.535000px;}
.y10a{bottom:614.055000px;}
.yb5{bottom:615.495000px;}
.y8c{bottom:619.095000px;}
.yd9{bottom:621.255000px;}
.y4f{bottom:623.235000px;}
.y109{bottom:638.205000px;}
.yb4{bottom:643.425000px;}
.y4e{bottom:643.935000px;}
.y8b{bottom:646.845000px;}
.yd8{bottom:649.005000px;}
.y108{bottom:662.325000px;}
.y4d{bottom:664.665000px;}
.yb3{bottom:667.545000px;}
.y8a{bottom:670.965000px;}
.yd7{bottom:676.905000px;}
.y4c{bottom:685.365000px;}
.y107{bottom:686.445000px;}
.yb2{bottom:691.665000px;}
.y89{bottom:695.085000px;}
.yd6{bottom:704.625000px;}
.y4b{bottom:706.065000px;}
.y106{bottom:710.565000px;}
.yb1{bottom:715.785000px;}
.y88{bottom:719.205000px;}
.y4a{bottom:726.765000px;}
.yd5{bottom:732.345000px;}
.y105{bottom:734.865000px;}
.yb0{bottom:739.905000px;}
.y87{bottom:743.505000px;}
.y49{bottom:747.465000px;}
.y104{bottom:758.985000px;}
.yd4{bottom:760.065000px;}
.yaf{bottom:764.205000px;}
.y86{bottom:767.625000px;}
.y48{bottom:768.165000px;}
.y103{bottom:783.105000px;}
.yd3{bottom:787.965000px;}
.yae{bottom:788.325000px;}
.y47{bottom:788.865000px;}
.y85{bottom:791.745000px;}
.y102{bottom:807.225000px;}
.y46{bottom:809.565000px;}
.yad{bottom:812.445000px;}
.yd2{bottom:815.685000px;}
.y84{bottom:815.865000px;}
.y45{bottom:830.265000px;}
.y101{bottom:831.345000px;}
.yac{bottom:836.565000px;}
.y83{bottom:839.985000px;}
.yd1{bottom:843.405000px;}
.y44{bottom:850.965000px;}
.y100{bottom:855.465000px;}
.yab{bottom:860.685000px;}
.y82{bottom:864.105000px;}
.yd0{bottom:871.305000px;}
.y43{bottom:871.665000px;}
.yff{bottom:879.765000px;}
.yaa{bottom:884.850000px;}
.y81{bottom:888.270000px;}
.y42{bottom:892.365000px;}
.ycf{bottom:899.070000px;}
.yfe{bottom:903.930000px;}
.ya9{bottom:908.970000px;}
.y80{bottom:912.570000px;}
.y41{bottom:914.910000px;}
.yee{bottom:926.790000px;}
.yfd{bottom:928.050000px;}
.ya8{bottom:933.270000px;}
.yce{bottom:934.350000px;}
.y7f{bottom:936.690000px;}
.y40{bottom:938.850000px;}
.yfc{bottom:952.170000px;}
.ycd{bottom:954.510000px;}
.ya7{bottom:957.390000px;}
.y3f{bottom:959.370000px;}
.y7e{bottom:960.810000px;}
.y67{bottom:972.330000px;}
.yfb{bottom:976.290000px;}
.y3e{bottom:978.270000px;}
.ya6{bottom:981.510000px;}
.yed{bottom:982.410000px;}
.y7d{bottom:984.930000px;}
.ycc{bottom:989.970000px;}
.y3d{bottom:997.350000px;}
.yfa{bottom:1000.410000px;}
.ya5{bottom:1005.630000px;}
.y7c{bottom:1009.050000px;}
.ycb{bottom:1010.130000px;}
.y3c{bottom:1016.250000px;}
.yf9{bottom:1024.530000px;}
.ya4{bottom:1029.750000px;}
.y7b{bottom:1032.450000px;}
.y3b{bottom:1035.150000px;}
.yec{bottom:1037.850000px;}
.yca{bottom:1045.410000px;}
.yf8{bottom:1048.830000px;}
.y7a{bottom:1052.250000px;}
.ya3{bottom:1053.150000px;}
.y3a{bottom:1054.230000px;}
.yc9{bottom:1065.750000px;}
.ya2{bottom:1072.950000px;}
.y39{bottom:1073.130000px;}
.y79{bottom:1076.370000px;}
.y38{bottom:1091.670000px;}
.yc8{bottom:1093.470000px;}
.ya1{bottom:1097.070000px;}
.y78{bottom:1100.490000px;}
.y37{bottom:1108.410000px;}
.ya0{bottom:1121.190000px;}
.y77{bottom:1124.070000px;}
.y75{bottom:1144.080000px;}
.y4{bottom:1144.410000px;}
.y74{bottom:1161.360000px;}
.y3{bottom:1161.540000px;}
.y73{bottom:1178.460000px;}
.y2{bottom:1178.820000px;}
.y9{bottom:1185.660000px;}
.y72{bottom:1195.740000px;}
.y1{bottom:1195.920000px;}
.h4{height:24.120000px;}
.h6{height:40.500000px;}
.h2{height:43.506914px;}
.h18{height:48.410156px;}
.ha{height:49.394180px;}
.h10{height:52.417969px;}
.h8{height:53.709961px;}
.h7{height:55.291992px;}
.hc{height:59.027344px;}
.hb{height:59.383125px;}
.h9{height:61.189805px;}
.hf{height:62.964844px;}
.hd{height:64.160156px;}
.h1a{height:64.546875px;}
.h3{height:65.884219px;}
.h13{height:67.824844px;}
.h11{height:69.292969px;}
.h19{height:69.432187px;}
.h5{height:71.613281px;}
.h15{height:75.067383px;}
.h16{height:75.519844px;}
.h17{height:78.360117px;}
.he{height:86.255508px;}
.h12{height:201.630000px;}
.h14{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:63.540000px;}
.w8{width:67.680000px;}
.w5{width:534.525000px;}
.w4{width:703.950000px;}
.w7{width:892.979987px;}
.w6{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3d{left:21.420000px;}
.x8{left:29.880000px;}
.x25{left:44.820000px;}
.x2c{left:48.960000px;}
.x24{left:51.300000px;}
.x6{left:70.559987px;}
.x23{left:74.925000px;}
.xb{left:81.174000px;}
.x32{left:84.995987px;}
.xa{left:86.934000px;}
.x3f{left:92.555987px;}
.x3e{left:97.955987px;}
.x48{left:99.395987px;}
.xd{left:101.694000px;}
.x9{left:105.336000px;}
.x26{left:107.685000px;}
.x2a{left:110.565000px;}
.x45{left:120.815987px;}
.x28{left:127.305000px;}
.x34{left:138.095987px;}
.x41{left:143.135987px;}
.x2f{left:146.015987px;}
.x46{left:150.689987px;}
.x2{left:152.309987px;}
.x42{left:155.729987px;}
.x43{left:169.949987px;}
.x54{left:180.929987px;}
.x14{left:185.249987px;}
.x1c{left:186.689987px;}
.x1b{left:198.749987px;}
.x53{left:201.449987px;}
.x47{left:227.549987px;}
.x4c{left:234.749987px;}
.x59{left:239.609987px;}
.x19{left:243.434987px;}
.x15{left:249.554987px;}
.x12{left:262.514987px;}
.x51{left:264.989987px;}
.x40{left:268.094987px;}
.x27{left:269.355000px;}
.x22{left:274.034987px;}
.x50{left:279.974987px;}
.x2e{left:281.954987px;}
.x58{left:284.114987px;}
.x1{left:288.254987px;}
.x4d{left:303.374987px;}
.x16{left:304.814987px;}
.x5a{left:307.334987px;}
.x44{left:310.754987px;}
.x49{left:318.674987px;}
.x1d{left:321.014987px;}
.x55{left:324.074987px;}
.x3a{left:337.034987px;}
.x30{left:338.834987px;}
.x35{left:343.514987px;}
.x3{left:345.134987px;}
.x13{left:347.474987px;}
.x1a{left:355.394987px;}
.x1e{left:360.434987px;}
.x39{left:366.554987px;}
.x4b{left:369.614987px;}
.x18{left:370.694987px;}
.x20{left:372.314987px;}
.x1f{left:375.194987px;}
.x21{left:382.754987px;}
.x57{left:384.554987px;}
.x11{left:391.754987px;}
.x4f{left:398.054987px;}
.x10{left:400.214987px;}
.x4e{left:403.634987px;}
.x29{left:411.240000px;}
.xc{left:412.989000px;}
.x17{left:414.284987px;}
.x56{left:416.594987px;}
.x2b{left:427.980000px;}
.xf{left:446.684987px;}
.x2d{left:450.840000px;}
.x4{left:452.804987px;}
.xe{left:456.224987px;}
.x52{left:462.164987px;}
.x4a{left:481.604987px;}
.x3c{left:491.504987px;}
.x3b{left:734.009987px;}
.x37{left:735.089987px;}
.x36{left:737.789987px;}
.x33{left:802.980000px;}
.x38{left:808.019987px;}
.x7{left:829.800000px;}
.x31{left:872.819987px;}
.x5{left:899.849987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls43{letter-spacing:-2.533333pt;}
.ls1f{letter-spacing:-2.080000pt;}
.ls1e{letter-spacing:-1.893333pt;}
.ls2d{letter-spacing:-1.306667pt;}
.ls2c{letter-spacing:-0.944000pt;}
.ls30{letter-spacing:-0.800000pt;}
.ls27{letter-spacing:-0.720000pt;}
.ls31{letter-spacing:-0.608000pt;}
.ls25{letter-spacing:-0.549333pt;}
.ls3a{letter-spacing:-0.524800pt;}
.ls23{letter-spacing:-0.380800pt;}
.ls3b{letter-spacing:-0.336533pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.225067pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.003627pt;}
.ls34{letter-spacing:0.024960pt;}
.ls21{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.048640pt;}
.ls1{letter-spacing:0.097067pt;}
.lsf{letter-spacing:0.115200pt;}
.ls3{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.184960pt;}
.ls2{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.259200pt;}
.ls22{letter-spacing:0.285867pt;}
.ls1c{letter-spacing:0.303360pt;}
.ls24{letter-spacing:0.303467pt;}
.ls1a{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.336533pt;}
.ls35{letter-spacing:0.336640pt;}
.ls2b{letter-spacing:0.418347pt;}
.ls7{letter-spacing:0.480000pt;}
.ls9{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.413120pt;}
.lsa{letter-spacing:1.760000pt;}
.ls12{letter-spacing:2.400000pt;}
.ls29{letter-spacing:3.973120pt;}
.ls3c{letter-spacing:4.960000pt;}
.ls5{letter-spacing:5.253120pt;}
.ls6{letter-spacing:6.053120pt;}
.ls1d{letter-spacing:7.520000pt;}
.ls3f{letter-spacing:9.440000pt;}
.ls3e{letter-spacing:10.080000pt;}
.ls36{letter-spacing:12.640000pt;}
.ls39{letter-spacing:15.200000pt;}
.ls33{letter-spacing:15.840000pt;}
.ls32{letter-spacing:16.480000pt;}
.lsd{letter-spacing:19.040000pt;}
.ls42{letter-spacing:25.440000pt;}
.ls1b{letter-spacing:26.720000pt;}
.ls17{letter-spacing:27.360000pt;}
.ls15{letter-spacing:27.466667pt;}
.ls14{letter-spacing:28.800000pt;}
.ls13{letter-spacing:29.280000pt;}
.lsb{letter-spacing:29.920000pt;}
.ls41{letter-spacing:37.600000pt;}
.ls10{letter-spacing:40.160000pt;}
.lse{letter-spacing:40.800000pt;}
.ls11{letter-spacing:41.440000pt;}
.ls40{letter-spacing:43.360000pt;}
.lsc{letter-spacing:45.280000pt;}
.ls2a{letter-spacing:46.853120pt;}
.ls19{letter-spacing:57.440000pt;}
.ls18{letter-spacing:57.600000pt;}
.ls37{letter-spacing:63.200000pt;}
.ws12{word-spacing:-19.056533pt;}
.wsc{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.ws7{word-spacing:-19.005867pt;}
.ws9{word-spacing:-18.979200pt;}
.ws6{word-spacing:-18.835200pt;}
.ws5{word-spacing:-18.753280pt;}
.ws4{word-spacing:-18.720000pt;}
.ws13{word-spacing:-18.686720pt;}
.ws17{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.339200pt;}
.ws16{word-spacing:-18.195200pt;}
.wsb{word-spacing:-18.170667pt;}
.ws14{word-spacing:-18.112000pt;}
.wsd{word-spacing:-18.000000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.776000pt;}
.ws11{word-spacing:-17.413333pt;}
.wsf{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.186667pt;}
.wse{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws15{word-spacing:-12.000000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-5.855147pt;}
._e{margin-left:-4.654933pt;}
._2{margin-left:-3.584000pt;}
._6{margin-left:-1.872000pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.903040pt;}
._3{width:2.301881pt;}
._11{width:3.954545pt;}
._2c{width:4.886216pt;}
._2f{width:5.778259pt;}
._5{width:6.805333pt;}
._4{width:8.298240pt;}
._f{width:9.510827pt;}
._13{width:10.816853pt;}
._12{width:11.792427pt;}
._19{width:13.104000pt;}
._1a{width:14.354560pt;}
._2d{width:15.256533pt;}
._1f{width:16.233387pt;}
._1d{width:17.134080pt;}
._1c{width:19.680000pt;}
._1b{width:20.952960pt;}
._29{width:22.913280pt;}
._2e{width:24.109440pt;}
._20{width:25.361920pt;}
._c{width:26.657280pt;}
._8{width:29.187627pt;}
._7{width:30.251520pt;}
._28{width:31.819520pt;}
._24{width:33.246720pt;}
._25{width:34.558492pt;}
._30{width:36.167040pt;}
._31{width:37.664640pt;}
._23{width:39.232640pt;}
._b{width:40.237227pt;}
._2b{width:41.751893pt;}
._32{width:43.165227pt;}
._a{width:44.342400pt;}
._9{width:45.288960pt;}
._16{width:48.447360pt;}
._17{width:50.151893pt;}
._18{width:51.063467pt;}
._d{width:57.837867pt;}
._27{width:61.674667pt;}
._26{width:63.247147pt;}
._2a{width:65.220480pt;}
._14{width:77.800320pt;}
._15{width:79.068800pt;}
._22{width:94.124160pt;}
._21{width:95.022720pt;}
._10{width:749.418667pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y36{bottom:-1043.200000pt;}
.y35{bottom:-1021.280000pt;}
.y34{bottom:-999.200000pt;}
.y33{bottom:-977.120000pt;}
.y32{bottom:-955.040000pt;}
.y31{bottom:-932.960000pt;}
.y30{bottom:-911.040000pt;}
.y2f{bottom:-888.933333pt;}
.y2e{bottom:-866.853333pt;}
.y2d{bottom:-844.773333pt;}
.y2c{bottom:-822.693333pt;}
.y2b{bottom:-800.613333pt;}
.y2a{bottom:-778.693333pt;}
.y29{bottom:-756.613333pt;}
.y28{bottom:-734.533333pt;}
.y27{bottom:-712.453333pt;}
.y26{bottom:-690.373333pt;}
.y25{bottom:-668.253333pt;}
.y24{bottom:-645.373333pt;}
.y23{bottom:-619.613333pt;}
.y22{bottom:-586.973333pt;}
.y21{bottom:-561.373333pt;}
.y20{bottom:-535.773333pt;}
.y1f{bottom:-510.173333pt;}
.y1e{bottom:-484.733333pt;}
.y1d{bottom:-459.106667pt;}
.y1c{bottom:-433.506667pt;}
.y1b{bottom:-407.906667pt;}
.y1a{bottom:-382.306667pt;}
.y19{bottom:-356.866667pt;}
.y18{bottom:-331.266667pt;}
.y17{bottom:-305.666667pt;}
.y16{bottom:-280.066667pt;}
.y15{bottom:-254.626667pt;}
.y14{bottom:-228.986667pt;}
.y13{bottom:-203.386667pt;}
.y12{bottom:-177.786667pt;}
.y11{bottom:-152.186667pt;}
.y10{bottom:-126.746667pt;}
.yf{bottom:-101.146667pt;}
.ye{bottom:-75.546667pt;}
.yd{bottom:-49.946667pt;}
.yc{bottom:-24.480000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.640000pt;}
.y71{bottom:4.160000pt;}
.y8{bottom:7.200000pt;}
.y70{bottom:22.080000pt;}
.ya{bottom:24.480000pt;}
.y6f{bottom:39.840000pt;}
.y6{bottom:51.040000pt;}
.y76{bottom:51.200000pt;}
.y6e{bottom:57.760000pt;}
.y5{bottom:64.960000pt;}
.y7{bottom:66.240000pt;}
.y6d{bottom:75.680000pt;}
.y6c{bottom:93.600000pt;}
.yeb{bottom:107.872000pt;}
.yf7{bottom:111.392000pt;}
.y6b{bottom:111.520000pt;}
.y9f{bottom:112.672000pt;}
.y66{bottom:125.440000pt;}
.y6a{bottom:129.440000pt;}
.yea{bottom:132.512000pt;}
.y9e{bottom:133.626667pt;}
.yc7{bottom:134.266667pt;}
.yf6{bottom:136.026667pt;}
.y65{bottom:143.680000pt;}
.y69{bottom:147.360000pt;}
.y9d{bottom:152.026667pt;}
.yc6{bottom:155.226667pt;}
.ye9{bottom:157.306667pt;}
.yf5{bottom:160.826667pt;}
.y64{bottom:162.106667pt;}
.y68{bottom:165.306667pt;}
.y9c{bottom:170.426667pt;}
.yc5{bottom:173.626667pt;}
.y63{bottom:180.506667pt;}
.ye8{bottom:181.946667pt;}
.yf4{bottom:185.466667pt;}
.y9b{bottom:188.826667pt;}
.yc4{bottom:192.026667pt;}
.y62{bottom:198.906667pt;}
.ye7{bottom:206.586667pt;}
.y9a{bottom:207.226667pt;}
.yf3{bottom:210.106667pt;}
.yc3{bottom:210.426667pt;}
.y61{bottom:217.626667pt;}
.yc2{bottom:228.826667pt;}
.y99{bottom:229.306667pt;}
.ye6{bottom:231.226667pt;}
.yf2{bottom:234.906667pt;}
.y60{bottom:237.306667pt;}
.y117{bottom:245.306667pt;}
.yc1{bottom:250.906667pt;}
.y98{bottom:253.946667pt;}
.y5f{bottom:255.706667pt;}
.ye5{bottom:256.026667pt;}
.yf1{bottom:259.546667pt;}
.y116{bottom:266.746667pt;}
.y5e{bottom:273.946667pt;}
.yc0{bottom:275.546667pt;}
.y97{bottom:278.746667pt;}
.ye4{bottom:280.666667pt;}
.yf0{bottom:284.186667pt;}
.y115{bottom:288.186667pt;}
.y5d{bottom:292.346667pt;}
.ybf{bottom:300.346667pt;}
.y96{bottom:303.386667pt;}
.ye3{bottom:305.306667pt;}
.yef{bottom:307.866667pt;}
.y114{bottom:309.626667pt;}
.y5c{bottom:310.746667pt;}
.ybe{bottom:324.986667pt;}
.y95{bottom:328.066667pt;}
.y5b{bottom:328.986667pt;}
.ye2{bottom:330.146667pt;}
.y113{bottom:331.106667pt;}
.y5a{bottom:347.386667pt;}
.ybd{bottom:349.666667pt;}
.y112{bottom:352.546667pt;}
.y94{bottom:352.706667pt;}
.ye1{bottom:354.786667pt;}
.y59{bottom:365.786667pt;}
.y111{bottom:374.146667pt;}
.ybc{bottom:374.466667pt;}
.y93{bottom:377.506667pt;}
.ye0{bottom:379.426667pt;}
.y58{bottom:384.226667pt;}
.y110{bottom:395.586667pt;}
.ybb{bottom:399.106667pt;}
.y92{bottom:402.146667pt;}
.y57{bottom:402.466667pt;}
.ydf{bottom:404.066667pt;}
.y10f{bottom:417.026667pt;}
.y56{bottom:420.866667pt;}
.yba{bottom:423.746667pt;}
.y91{bottom:426.786667pt;}
.yde{bottom:428.866667pt;}
.y10e{bottom:438.466667pt;}
.y55{bottom:439.266667pt;}
.yb9{bottom:448.386667pt;}
.y90{bottom:451.586667pt;}
.ydd{bottom:453.506667pt;}
.y54{bottom:459.266667pt;}
.y10d{bottom:459.906667pt;}
.yb8{bottom:473.186667pt;}
.y8f{bottom:476.226667pt;}
.ydc{bottom:478.146667pt;}
.y53{bottom:480.386667pt;}
.y10c{bottom:481.346667pt;}
.yb7{bottom:497.826667pt;}
.y52{bottom:498.786667pt;}
.y8e{bottom:500.866667pt;}
.ydb{bottom:502.946667pt;}
.y51{bottom:517.186667pt;}
.yb6{bottom:522.466667pt;}
.y10b{bottom:524.386667pt;}
.y8d{bottom:525.506667pt;}
.yda{bottom:527.586667pt;}
.y50{bottom:535.586667pt;}
.y10a{bottom:545.826667pt;}
.yb5{bottom:547.106667pt;}
.y8c{bottom:550.306667pt;}
.yd9{bottom:552.226667pt;}
.y4f{bottom:553.986667pt;}
.y109{bottom:567.293333pt;}
.yb4{bottom:571.933333pt;}
.y4e{bottom:572.386667pt;}
.y8b{bottom:574.973333pt;}
.yd8{bottom:576.893333pt;}
.y108{bottom:588.733333pt;}
.y4d{bottom:590.813333pt;}
.yb3{bottom:593.373333pt;}
.y8a{bottom:596.413333pt;}
.yd7{bottom:601.693333pt;}
.y4c{bottom:609.213333pt;}
.y107{bottom:610.173333pt;}
.yb2{bottom:614.813333pt;}
.y89{bottom:617.853333pt;}
.yd6{bottom:626.333333pt;}
.y4b{bottom:627.613333pt;}
.y106{bottom:631.613333pt;}
.yb1{bottom:636.253333pt;}
.y88{bottom:639.293333pt;}
.y4a{bottom:646.013333pt;}
.yd5{bottom:650.973333pt;}
.y105{bottom:653.213333pt;}
.yb0{bottom:657.693333pt;}
.y87{bottom:660.893333pt;}
.y49{bottom:664.413333pt;}
.y104{bottom:674.653333pt;}
.yd4{bottom:675.613333pt;}
.yaf{bottom:679.293333pt;}
.y86{bottom:682.333333pt;}
.y48{bottom:682.813333pt;}
.y103{bottom:696.093333pt;}
.yd3{bottom:700.413333pt;}
.yae{bottom:700.733333pt;}
.y47{bottom:701.213333pt;}
.y85{bottom:703.773333pt;}
.y102{bottom:717.533333pt;}
.y46{bottom:719.613333pt;}
.yad{bottom:722.173333pt;}
.yd2{bottom:725.053333pt;}
.y84{bottom:725.213333pt;}
.y45{bottom:738.013333pt;}
.y101{bottom:738.973333pt;}
.yac{bottom:743.613333pt;}
.y83{bottom:746.653333pt;}
.yd1{bottom:749.693333pt;}
.y44{bottom:756.413333pt;}
.y100{bottom:760.413333pt;}
.yab{bottom:765.053333pt;}
.y82{bottom:768.093333pt;}
.yd0{bottom:774.493333pt;}
.y43{bottom:774.813333pt;}
.yff{bottom:782.013333pt;}
.yaa{bottom:786.533333pt;}
.y81{bottom:789.573333pt;}
.y42{bottom:793.213333pt;}
.ycf{bottom:799.173333pt;}
.yfe{bottom:803.493333pt;}
.ya9{bottom:807.973333pt;}
.y80{bottom:811.173333pt;}
.y41{bottom:813.253333pt;}
.yee{bottom:823.813333pt;}
.yfd{bottom:824.933333pt;}
.ya8{bottom:829.573333pt;}
.yce{bottom:830.533333pt;}
.y7f{bottom:832.613333pt;}
.y40{bottom:834.533333pt;}
.yfc{bottom:846.373333pt;}
.ycd{bottom:848.453333pt;}
.ya7{bottom:851.013333pt;}
.y3f{bottom:852.773333pt;}
.y7e{bottom:854.053333pt;}
.y67{bottom:864.293333pt;}
.yfb{bottom:867.813333pt;}
.y3e{bottom:869.573333pt;}
.ya6{bottom:872.453333pt;}
.yed{bottom:873.253333pt;}
.y7d{bottom:875.493333pt;}
.ycc{bottom:879.973333pt;}
.y3d{bottom:886.533333pt;}
.yfa{bottom:889.253333pt;}
.ya5{bottom:893.893333pt;}
.y7c{bottom:896.933333pt;}
.ycb{bottom:897.893333pt;}
.y3c{bottom:903.333333pt;}
.yf9{bottom:910.693333pt;}
.ya4{bottom:915.333333pt;}
.y7b{bottom:917.733333pt;}
.y3b{bottom:920.133333pt;}
.yec{bottom:922.533333pt;}
.yca{bottom:929.253333pt;}
.yf8{bottom:932.293333pt;}
.y7a{bottom:935.333333pt;}
.ya3{bottom:936.133333pt;}
.y3a{bottom:937.093333pt;}
.yc9{bottom:947.333333pt;}
.ya2{bottom:953.733333pt;}
.y39{bottom:953.893333pt;}
.y79{bottom:956.773333pt;}
.y38{bottom:970.373333pt;}
.yc8{bottom:971.973333pt;}
.ya1{bottom:975.173333pt;}
.y78{bottom:978.213333pt;}
.y37{bottom:985.253333pt;}
.ya0{bottom:996.613333pt;}
.y77{bottom:999.173333pt;}
.y75{bottom:1016.960000pt;}
.y4{bottom:1017.253333pt;}
.y74{bottom:1032.320000pt;}
.y3{bottom:1032.480000pt;}
.y73{bottom:1047.520000pt;}
.y2{bottom:1047.840000pt;}
.y9{bottom:1053.920000pt;}
.y72{bottom:1062.880000pt;}
.y1{bottom:1063.040000pt;}
.h4{height:21.440000pt;}
.h6{height:36.000000pt;}
.h2{height:38.672812pt;}
.h18{height:43.031250pt;}
.ha{height:43.905937pt;}
.h10{height:46.593750pt;}
.h8{height:47.742188pt;}
.h7{height:49.148438pt;}
.hc{height:52.468750pt;}
.hb{height:52.785000pt;}
.h9{height:54.390938pt;}
.hf{height:55.968750pt;}
.hd{height:57.031250pt;}
.h1a{height:57.375000pt;}
.h3{height:58.563750pt;}
.h13{height:60.288750pt;}
.h11{height:61.593750pt;}
.h19{height:61.717500pt;}
.h5{height:63.656250pt;}
.h15{height:66.726562pt;}
.h16{height:67.128750pt;}
.h17{height:69.653437pt;}
.he{height:76.671562pt;}
.h12{height:179.226667pt;}
.h14{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:56.480000pt;}
.w8{width:60.160000pt;}
.w5{width:475.133333pt;}
.w4{width:625.733333pt;}
.w7{width:793.759988pt;}
.w6{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3d{left:19.040000pt;}
.x8{left:26.560000pt;}
.x25{left:39.840000pt;}
.x2c{left:43.520000pt;}
.x24{left:45.600000pt;}
.x6{left:62.719988pt;}
.x23{left:66.600000pt;}
.xb{left:72.154667pt;}
.x32{left:75.551988pt;}
.xa{left:77.274667pt;}
.x3f{left:82.271988pt;}
.x3e{left:87.071988pt;}
.x48{left:88.351988pt;}
.xd{left:90.394667pt;}
.x9{left:93.632000pt;}
.x26{left:95.720000pt;}
.x2a{left:98.280000pt;}
.x45{left:107.391988pt;}
.x28{left:113.160000pt;}
.x34{left:122.751988pt;}
.x41{left:127.231988pt;}
.x2f{left:129.791988pt;}
.x46{left:133.946655pt;}
.x2{left:135.386655pt;}
.x42{left:138.426655pt;}
.x43{left:151.066655pt;}
.x54{left:160.826655pt;}
.x14{left:164.666655pt;}
.x1c{left:165.946655pt;}
.x1b{left:176.666655pt;}
.x53{left:179.066655pt;}
.x47{left:202.266655pt;}
.x4c{left:208.666655pt;}
.x59{left:212.986655pt;}
.x19{left:216.386655pt;}
.x15{left:221.826655pt;}
.x12{left:233.346655pt;}
.x51{left:235.546655pt;}
.x40{left:238.306655pt;}
.x27{left:239.426667pt;}
.x22{left:243.586655pt;}
.x50{left:248.866655pt;}
.x2e{left:250.626655pt;}
.x58{left:252.546655pt;}
.x1{left:256.226655pt;}
.x4d{left:269.666655pt;}
.x16{left:270.946655pt;}
.x5a{left:273.186655pt;}
.x44{left:276.226655pt;}
.x49{left:283.266655pt;}
.x1d{left:285.346655pt;}
.x55{left:288.066655pt;}
.x3a{left:299.586655pt;}
.x30{left:301.186655pt;}
.x35{left:305.346655pt;}
.x3{left:306.786655pt;}
.x13{left:308.866655pt;}
.x1a{left:315.906655pt;}
.x1e{left:320.386655pt;}
.x39{left:325.826655pt;}
.x4b{left:328.546655pt;}
.x18{left:329.506655pt;}
.x20{left:330.946655pt;}
.x1f{left:333.506655pt;}
.x21{left:340.226655pt;}
.x57{left:341.826655pt;}
.x11{left:348.226655pt;}
.x4f{left:353.826655pt;}
.x10{left:355.746655pt;}
.x4e{left:358.786655pt;}
.x29{left:365.546667pt;}
.xc{left:367.101333pt;}
.x17{left:368.253321pt;}
.x56{left:370.306655pt;}
.x2b{left:380.426667pt;}
.xf{left:397.053321pt;}
.x2d{left:400.746667pt;}
.x4{left:402.493321pt;}
.xe{left:405.533321pt;}
.x52{left:410.813322pt;}
.x4a{left:428.093322pt;}
.x3c{left:436.893322pt;}
.x3b{left:652.453322pt;}
.x37{left:653.413322pt;}
.x36{left:655.813322pt;}
.x33{left:713.760000pt;}
.x38{left:718.239988pt;}
.x7{left:737.600000pt;}
.x31{left:775.839988pt;}
.x5{left:799.866655pt;}
}




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