
    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_a8a83f246372084cd121e8e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_a1717bd729e0c3bee10130bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002000;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_088270305f44011521fda116.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677000;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_7c4ac6ec9dc52b8895d28e75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002000;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_40a3a98691670160554b614e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_850f529735b21de7642bcc8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.550000;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_ff795bbdab74eb347bb69f2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_04d338a962320d50f248480f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.124000;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_8575108bb354e2d9d5689729.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.203315;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_15288e284521d4ac454cfcc2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.124000;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_a340b11b65f93e985bf5aaba.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_c373eb2e8afda22dabb0347e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.454000;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_0350329370e74fc3c11dbec4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922000;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_a58147cd79610cc3dec14b2b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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:fff;src:url('chunks/assets/font_b056656fca25e7d5a2e0f2b5.woff2')format("woff");}.fff{font-family:fff;line-height:0.694000;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;}
.m9{transform:matrix(-0.005738,-0.249821,0.249935,-0.005712,0,0);-ms-transform:matrix(-0.005738,-0.249821,0.249935,-0.005712,0,0);-webkit-transform:matrix(-0.005738,-0.249821,0.249935,-0.005712,0,0);}
.m10{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.md{transform:matrix(0.158465,-0.019877,0.002162,0.249991,0,0);-ms-transform:matrix(0.158465,-0.019877,0.002162,0.249991,0,0);-webkit-transform:matrix(0.158465,-0.019877,0.002162,0.249991,0,0);}
.ma{transform:matrix(0.166643,-0.107336,0.000000,0.250000,0,0);-ms-transform:matrix(0.166643,-0.107336,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166643,-0.107336,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.171062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171062,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.184413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184413,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.227327,0.000150,-0.000106,0.250000,0,0);-ms-transform:matrix(0.227327,0.000150,-0.000106,0.250000,0,0);-webkit-transform:matrix(0.227327,0.000150,-0.000106,0.250000,0,0);}
.m8{transform:matrix(0.246244,0.049609,0.000000,0.250000,0,0);-ms-transform:matrix(0.246244,0.049609,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246244,0.049609,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.275945,0.000182,-0.000129,0.250000,0,0);-ms-transform:matrix(0.275945,0.000182,-0.000129,0.250000,0,0);-webkit-transform:matrix(0.275945,0.000182,-0.000129,0.250000,0,0);}
.m1{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:-22.854000px;}
.v7{vertical-align:-8.964000px;}
.v3{vertical-align:-7.470000px;}
.v4{vertical-align:-1.547681px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.655661px;}
.v5{vertical-align:8.917801px;}
.v6{vertical-align:10.476381px;}
.v1{vertical-align:23.754000px;}
.v8{vertical-align:42.342000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.988893px;}
.ls5{letter-spacing:21.677400px;}
.ls8{letter-spacing:21.680682px;}
.ls6{letter-spacing:32.723468px;}
.ls2{letter-spacing:32.726700px;}
.ls3{letter-spacing:32.728200px;}
.ls7{letter-spacing:32.729468px;}
.ls4{letter-spacing:32.732700px;}
.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:-41.007178px;}
.ws8{word-spacing:-32.517845px;}
.wsd{word-spacing:-24.348722px;}
.wse{word-spacing:-23.302403px;}
.ws10{word-spacing:-21.053107px;}
.wsb{word-spacing:-20.708403px;}
.wsf{word-spacing:-18.125302px;}
.wsa{word-spacing:-14.667555px;}
.wsc{word-spacing:-14.245202px;}
.ws1d{word-spacing:-13.720706px;}
.ws7{word-spacing:-13.634628px;}
.ws2{word-spacing:-10.852373px;}
.ws1e{word-spacing:-10.838329px;}
.ws1{word-spacing:-10.786918px;}
.ws1a{word-spacing:-9.976548px;}
.ws1b{word-spacing:-9.916772px;}
.ws3{word-spacing:-7.029658px;}
.ws5{word-spacing:-6.993792px;}
.ws12{word-spacing:-3.960482px;}
.ws13{word-spacing:-3.632526px;}
.ws1f{word-spacing:-0.071731px;}
.ws4{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.035866px;}
.ws22{word-spacing:-0.027304px;}
.ws6{word-spacing:0.000000px;}
.ws21{word-spacing:9.064829px;}
.ws17{word-spacing:18.002787px;}
.ws18{word-spacing:22.802106px;}
.ws9{word-spacing:23.312640px;}
.ws1c{word-spacing:23.384371px;}
.ws16{word-spacing:24.261671px;}
.ws14{word-spacing:25.863749px;}
.ws19{word-spacing:33.867839px;}
.ws15{word-spacing:36.811402px;}
.ws25{word-spacing:39.220396px;}
.ws11{word-spacing:120.903450px;}
.ws23{word-spacing:135.538565px;}
.ws24{word-spacing:137.619498px;}
._1c{margin-left:-282.574847px;}
._1d{margin-left:-209.982044px;}
._15{margin-left:-158.591912px;}
._12{margin-left:-21.290370px;}
._11{margin-left:-16.305775px;}
._10{margin-left:-14.785179px;}
._e{margin-left:-13.502293px;}
._f{margin-left:-11.389622px;}
._d{margin-left:-10.126409px;}
._c{margin-left:-9.049779px;}
._13{margin-left:-8.012441px;}
._a{margin-left:-6.800099px;}
._6{margin-left:-5.432732px;}
._14{margin-left:-4.160805px;}
._0{margin-left:-2.238007px;}
._1{margin-left:-1.022172px;}
._7{width:1.832729px;}
._1e{width:2.901517px;}
._5{width:7.029658px;}
._1b{width:19.127122px;}
._b{width:24.445974px;}
._9{width:28.930933px;}
._19{width:31.203072px;}
._8{width:36.324578px;}
._21{width:71.738242px;}
._16{width:137.736616px;}
._17{width:152.410870px;}
._4{width:173.463977px;}
._26{width:195.447436px;}
._20{width:233.542013px;}
._22{width:318.318271px;}
._25{width:328.385728px;}
._27{width:333.753005px;}
._24{width:337.353008px;}
._23{width:346.778471px;}
._2{width:352.689331px;}
._1a{width:376.038645px;}
._3{width:388.220621px;}
._1f{width:490.124045px;}
._18{width:552.716168px;}
.fc4{color:rgb(239,127,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,117,101);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:10.354202px;}
.fs7{font-size:14.245202px;}
.fsf{font-size:14.931851px;}
.fs11{font-size:15.531302px;}
.fs10{font-size:17.820792px;}
.fs9{font-size:18.125302px;}
.fse{font-size:18.125304px;}
.fsd{font-size:18.127412px;}
.fs6{font-size:20.708403px;}
.fsc{font-size:23.302403px;}
.fsa{font-size:24.348722px;}
.fs13{font-size:27.303701px;}
.fs8{font-size:27.825554px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs12{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.ya6{bottom:2.411746px;}
.y7{bottom:3.987000px;}
.y43{bottom:17.319000px;}
.y6c{bottom:21.178500px;}
.y6{bottom:24.651000px;}
.y32{bottom:27.044687px;}
.y31{bottom:31.318247px;}
.ya4{bottom:32.207766px;}
.y30{bottom:35.591808px;}
.ye{bottom:36.129000px;}
.y2f{bottom:39.865368px;}
.y35{bottom:41.217897px;}
.y1e{bottom:41.229000px;}
.ya3{bottom:41.255238px;}
.y2e{bottom:44.138929px;}
.ya1{bottom:45.087995px;}
.y5{bottom:48.300000px;}
.y2d{bottom:48.412489px;}
.y2c{bottom:52.686050px;}
.y33{bottom:53.335037px;}
.y2b{bottom:56.959610px;}
.yd{bottom:58.320000px;}
.y4{bottom:58.761000px;}
.y2a{bottom:61.233171px;}
.y7a{bottom:63.522000px;}
.y4d{bottom:63.586500px;}
.y9a{bottom:63.720785px;}
.y29{bottom:65.506731px;}
.y28{bottom:69.780292px;}
.y8f{bottom:69.961500px;}
.y79{bottom:73.983000px;}
.y27{bottom:74.053852px;}
.y26{bottom:78.327412px;}
.y98{bottom:78.549595px;}
.y8d{bottom:82.459500px;}
.y25{bottom:82.600973px;}
.yc{bottom:83.127000px;}
.ya0{bottom:83.142874px;}
.y4c{bottom:83.910000px;}
.y78{bottom:84.444000px;}
.y84{bottom:86.770500px;}
.y34{bottom:90.463024px;}
.y4f{bottom:91.414548px;}
.y51{bottom:91.608008px;}
.y55{bottom:92.774218px;}
.y8c{bottom:92.920500px;}
.yae{bottom:93.702000px;}
.y4e{bottom:95.324049px;}
.y50{bottom:95.490834px;}
.y1d{bottom:95.940000px;}
.y54{bottom:96.683720px;}
.y83{bottom:97.230000px;}
.y53{bottom:102.434716px;}
.y24{bottom:102.860818px;}
.y8b{bottom:103.380000px;}
.y4b{bottom:104.235000px;}
.yb6{bottom:105.162000px;}
.ybe{bottom:105.192000px;}
.y52{bottom:105.996016px;}
.yb{bottom:107.934000px;}
.y97{bottom:108.862222px;}
.y23{bottom:109.618297px;}
.yad{bottom:114.025500px;}
.y22{bottom:115.678230px;}
.y1c{bottom:118.879500px;}
.y20{bottom:120.841707px;}
.y1f{bottom:121.424812px;}
.y21{bottom:122.667316px;}
.y4a{bottom:124.558500px;}
.yb5{bottom:125.485500px;}
.ybd{bottom:127.383000px;}
.y99{bottom:127.555992px;}
.ya2{bottom:128.652925px;}
.ya{bottom:132.741000px;}
.y3a{bottom:134.341792px;}
.y39{bottom:137.579335px;}
.y96{bottom:137.847705px;}
.y38{bottom:138.550608px;}
.y1b{bottom:139.203000px;}
.y37{bottom:139.521882px;}
.y9d{bottom:140.343724px;}
.yac{bottom:140.700000px;}
.y36{bottom:142.435667px;}
.yb4{bottom:145.809000px;}
.y49{bottom:146.749500px;}
.ybc{bottom:152.190000px;}
.y3b{bottom:153.362074px;}
.y6b{bottom:155.829000px;}
.y9b{bottom:155.880984px;}
.y9c{bottom:156.506531px;}
.y9{bottom:157.548000px;}
.y60{bottom:157.810500px;}
.y1a{bottom:159.526500px;}
.yab{bottom:165.507000px;}
.yb3{bottom:166.132500px;}
.y91{bottom:168.159647px;}
.y12{bottom:168.648000px;}
.y48{bottom:169.689000px;}
.y70{bottom:170.349000px;}
.yc2{bottom:173.038500px;}
.y5f{bottom:175.743000px;}
.ybb{bottom:176.997000px;}
.y82{bottom:178.873500px;}
.y92{bottom:179.187217px;}
.y6a{bottom:180.636000px;}
.y19{bottom:181.719000px;}
.y9f{bottom:181.845618px;}
.y58{bottom:185.535358px;}
.yb2{bottom:186.456000px;}
.y47{bottom:190.012500px;}
.yaa{bottom:190.314000px;}
.y5a{bottom:191.086681px;}
.y3f{bottom:191.161118px;}
.y57{bottom:191.397307px;}
.y59{bottom:192.026843px;}
.y3d{bottom:192.656074px;}
.y56{bottom:192.727114px;}
.y11{bottom:193.455000px;}
.y5e{bottom:193.675500px;}
.y81{bottom:193.818000px;}
.y3c{bottom:194.223023px;}
.y6f{bottom:195.156000px;}
.yc1{bottom:195.978000px;}
.y93{bottom:197.145129px;}
.yba{bottom:199.936500px;}
.y69{bottom:205.443000px;}
.y3e{bottom:205.610994px;}
.y90{bottom:206.339224px;}
.y77{bottom:206.355000px;}
.y18{bottom:206.526000px;}
.yb1{bottom:206.779500px;}
.y8a{bottom:208.339500px;}
.y80{bottom:208.761000px;}
.y3{bottom:210.759000px;}
.y5d{bottom:211.608000px;}
.y46{bottom:212.205000px;}
.ya9{bottom:215.121000px;}
.y13{bottom:217.003500px;}
.yc0{bottom:218.169000px;}
.y10{bottom:218.262000px;}
.y6e{bottom:219.963000px;}
.y76{bottom:221.299500px;}
.y7f{bottom:221.838000px;}
.yb9{bottom:222.127500px;}
.y89{bottom:223.284000px;}
.y94{bottom:226.129927px;}
.yb0{bottom:227.104500px;}
.y41{bottom:228.120337px;}
.y17{bottom:228.555000px;}
.y5c{bottom:229.540500px;}
.y68{bottom:230.250000px;}
.y7e{bottom:232.297500px;}
.y75{bottom:234.375000px;}
.y40{bottom:235.635270px;}
.y88{bottom:236.359500px;}
.y45{bottom:237.012000px;}
.ya8{bottom:239.928000px;}
.y42{bottom:240.081360px;}
.ybf{bottom:242.976000px;}
.yf{bottom:243.069000px;}
.y7d{bottom:244.627500px;}
.y6d{bottom:244.770000px;}
.yb8{bottom:245.067000px;}
.y74{bottom:246.703500px;}
.y87{bottom:248.688000px;}
.y5b{bottom:250.089000px;}
.y95{bottom:255.039357px;}
.y67{bottom:255.057000px;}
.y44{bottom:259.041000px;}
.y7c{bottom:263.449500px;}
.ya7{bottom:264.735000px;}
.y9e{bottom:264.929569px;}
.y73{bottom:265.527000px;}
.yb7{bottom:267.258000px;}
.y86{bottom:267.511500px;}
.yaf{bottom:268.350000px;}
.y2{bottom:273.510000px;}
.y62{bottom:283.224000px;}
.ya5{bottom:284.064578px;}
.y7b{bottom:284.371500px;}
.y72{bottom:286.449000px;}
.y85{bottom:288.433500px;}
.y71{bottom:307.369500px;}
.y66{bottom:309.972000px;}
.y15{bottom:321.025500px;}
.y14{bottom:330.874500px;}
.y65{bottom:330.894000px;}
.y1{bottom:335.682000px;}
.y64{bottom:346.507500px;}
.y16{bottom:350.961000px;}
.y61{bottom:366.411000px;}
.y8{bottom:377.860500px;}
.y63{bottom:388.743000px;}
.y8e{bottom:389.116500px;}
.hf{height:9.484677px;}
.hb{height:10.327771px;}
.h13{height:10.825592px;}
.h15{height:11.260194px;}
.h14{height:12.920074px;}
.hd{height:13.140844px;}
.h12{height:13.140845px;}
.h11{height:13.142374px;}
.ha{height:15.013592px;}
.h10{height:16.894242px;}
.he{height:17.652824px;}
.h1c{height:19.494931px;}
.h1b{height:19.500931px;}
.hc{height:20.173527px;}
.h16{height:20.177996px;}
.h1f{height:20.477776px;}
.h17{height:21.736575px;}
.h20{height:23.133436px;}
.h1d{height:24.926592px;}
.h5{height:26.970931px;}
.h19{height:35.921476px;}
.h18{height:35.927476px;}
.h8{height:41.745859px;}
.h6{height:41.751859px;}
.h4{height:49.221859px;}
.h7{height:53.870131px;}
.h3{height:56.176367px;}
.h2{height:64.557900px;}
.h1a{height:96.212131px;}
.h9{height:272.478989px;}
.h1e{height:305.954595px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w3{width:192.397507px;}
.w2{width:192.630528px;}
.w4{width:409.392445px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x7{left:12.756000px;}
.x26{left:14.745864px;}
.xa{left:16.258500px;}
.xb{left:17.664000px;}
.x29{left:20.922000px;}
.x1a{left:23.679997px;}
.x14{left:24.825406px;}
.x3c{left:29.349985px;}
.x8{left:32.623500px;}
.xc{left:34.027500px;}
.x4{left:35.904000px;}
.x6{left:37.273500px;}
.x2a{left:39.739500px;}
.x22{left:44.573250px;}
.x9{left:48.987000px;}
.xd{left:50.391000px;}
.x27{left:53.065310px;}
.x1b{left:61.528501px;}
.x15{left:64.733741px;}
.x28{left:66.060000px;}
.x30{left:67.431000px;}
.xf{left:72.294138px;}
.x10{left:75.267566px;}
.x16{left:83.297545px;}
.x23{left:84.394628px;}
.x31{left:100.160754px;}
.x1d{left:119.715347px;}
.x24{left:125.563654px;}
.x11{left:132.629971px;}
.x25{left:133.865222px;}
.x1f{left:138.954905px;}
.x20{left:140.395905px;}
.x17{left:142.197929px;}
.x13{left:144.545463px;}
.x19{left:148.570624px;}
.x12{left:149.701335px;}
.x35{left:152.399027px;}
.x32{left:154.864214px;}
.x18{left:158.355619px;}
.x36{left:159.414329px;}
.x33{left:162.230316px;}
.x1e{left:166.191351px;}
.x34{left:167.738277px;}
.x21{left:173.245143px;}
.x2{left:186.252000px;}
.x1{left:195.159000px;}
.x2b{left:214.182000px;}
.x3{left:226.371000px;}
.x2c{left:228.093000px;}
.x38{left:236.112635px;}
.x5{left:242.937000px;}
.x3d{left:279.054724px;}
.x1c{left:280.957500px;}
.x37{left:295.057890px;}
.x3f{left:297.321000px;}
.xe{left:307.458000px;}
.x40{left:313.686000px;}
.x3a{left:330.121382px;}
.x39{left:333.221023px;}
.x3e{left:354.178500px;}
.x2d{left:369.808500px;}
.x2e{left:388.626000px;}
.x3b{left:392.203962px;}
.x2f{left:402.535500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v7{vertical-align:-7.968000pt;}
.v3{vertical-align:-6.640000pt;}
.v4{vertical-align:-1.375716pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.360587pt;}
.v5{vertical-align:7.926935pt;}
.v6{vertical-align:9.312339pt;}
.v1{vertical-align:21.114667pt;}
.v8{vertical-align:37.637333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.656794pt;}
.ls5{letter-spacing:19.268800pt;}
.ls8{letter-spacing:19.271717pt;}
.ls6{letter-spacing:29.087527pt;}
.ls2{letter-spacing:29.090400pt;}
.ls3{letter-spacing:29.091733pt;}
.ls7{letter-spacing:29.092861pt;}
.ls4{letter-spacing:29.095733pt;}
.ws0{word-spacing:-36.450825pt;}
.ws8{word-spacing:-28.904751pt;}
.wsd{word-spacing:-21.643309pt;}
.wse{word-spacing:-20.713247pt;}
.ws10{word-spacing:-18.713873pt;}
.wsb{word-spacing:-18.407469pt;}
.wsf{word-spacing:-16.111380pt;}
.wsa{word-spacing:-13.037827pt;}
.wsc{word-spacing:-12.662401pt;}
.ws1d{word-spacing:-12.196183pt;}
.ws7{word-spacing:-12.119670pt;}
.ws2{word-spacing:-9.646553pt;}
.ws1e{word-spacing:-9.634070pt;}
.ws1{word-spacing:-9.588372pt;}
.ws1a{word-spacing:-8.868042pt;}
.ws1b{word-spacing:-8.814908pt;}
.ws3{word-spacing:-6.248585pt;}
.ws5{word-spacing:-6.216704pt;}
.ws12{word-spacing:-3.520429pt;}
.ws13{word-spacing:-3.228912pt;}
.ws1f{word-spacing:-0.063761pt;}
.ws4{word-spacing:-0.047821pt;}
.ws20{word-spacing:-0.031881pt;}
.ws22{word-spacing:-0.024270pt;}
.ws6{word-spacing:0.000000pt;}
.ws21{word-spacing:8.057625pt;}
.ws17{word-spacing:16.002478pt;}
.ws18{word-spacing:20.268538pt;}
.ws9{word-spacing:20.722347pt;}
.ws1c{word-spacing:20.786108pt;}
.ws16{word-spacing:21.565930pt;}
.ws14{word-spacing:22.989999pt;}
.ws19{word-spacing:30.104746pt;}
.ws15{word-spacing:32.721246pt;}
.ws25{word-spacing:34.862575pt;}
.ws11{word-spacing:107.469733pt;}
.ws23{word-spacing:120.478724pt;}
.ws24{word-spacing:122.328443pt;}
._1c{margin-left:-251.177642pt;}
._1d{margin-left:-186.650706pt;}
._15{margin-left:-140.970589pt;}
._12{margin-left:-18.924774pt;}
._11{margin-left:-14.494022pt;}
._10{margin-left:-13.142381pt;}
._e{margin-left:-12.002038pt;}
._f{margin-left:-10.124108pt;}
._d{margin-left:-9.001253pt;}
._c{margin-left:-8.044248pt;}
._13{margin-left:-7.122170pt;}
._a{margin-left:-6.044532pt;}
._6{margin-left:-4.829095pt;}
._14{margin-left:-3.698493pt;}
._0{margin-left:-1.989340pt;}
._1{margin-left:-0.908597pt;}
._7{width:1.629092pt;}
._1e{width:2.579126pt;}
._5{width:6.248585pt;}
._1b{width:17.001886pt;}
._b{width:21.729755pt;}
._9{width:25.716385pt;}
._19{width:27.736064pt;}
._8{width:32.288514pt;}
._21{width:63.767326pt;}
._16{width:122.432548pt;}
._17{width:135.476329pt;}
._4{width:154.190202pt;}
._26{width:173.731054pt;}
._20{width:207.592900pt;}
._22{width:282.949574pt;}
._25{width:291.898425pt;}
._27{width:296.669338pt;}
._24{width:299.869341pt;}
._23{width:308.247530pt;}
._2{width:313.501628pt;}
._1a{width:334.256573pt;}
._3{width:345.084997pt;}
._1f{width:435.665818pt;}
._18{width:491.303261pt;}
.fsb{font-size:9.203735pt;}
.fs7{font-size:12.662401pt;}
.fsf{font-size:13.272756pt;}
.fs11{font-size:13.805602pt;}
.fs10{font-size:15.840704pt;}
.fs9{font-size:16.111380pt;}
.fse{font-size:16.111381pt;}
.fsd{font-size:16.113255pt;}
.fs6{font-size:18.407469pt;}
.fsc{font-size:20.713247pt;}
.fsa{font-size:21.643309pt;}
.fs13{font-size:24.269956pt;}
.fs8{font-size:24.733826pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs12{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:2.143774pt;}
.y7{bottom:3.544000pt;}
.y43{bottom:15.394667pt;}
.y6c{bottom:18.825333pt;}
.y6{bottom:21.912000pt;}
.y32{bottom:24.039722pt;}
.y31{bottom:27.838442pt;}
.ya4{bottom:28.629126pt;}
.y30{bottom:31.637163pt;}
.ye{bottom:32.114667pt;}
.y2f{bottom:35.435883pt;}
.y35{bottom:36.638130pt;}
.y1e{bottom:36.648000pt;}
.ya3{bottom:36.671323pt;}
.y2e{bottom:39.234603pt;}
.ya1{bottom:40.078218pt;}
.y5{bottom:42.933333pt;}
.y2d{bottom:43.033324pt;}
.y2c{bottom:46.832044pt;}
.y33{bottom:47.408922pt;}
.y2b{bottom:50.630765pt;}
.yd{bottom:51.840000pt;}
.y4{bottom:52.232000pt;}
.y2a{bottom:54.429485pt;}
.y7a{bottom:56.464000pt;}
.y4d{bottom:56.521333pt;}
.y9a{bottom:56.640698pt;}
.y29{bottom:58.228205pt;}
.y28{bottom:62.026926pt;}
.y8f{bottom:62.188000pt;}
.y79{bottom:65.762667pt;}
.y27{bottom:65.825646pt;}
.y26{bottom:69.624367pt;}
.y98{bottom:69.821862pt;}
.y8d{bottom:73.297333pt;}
.y25{bottom:73.423087pt;}
.yc{bottom:73.890667pt;}
.ya0{bottom:73.904777pt;}
.y4c{bottom:74.586667pt;}
.y78{bottom:75.061333pt;}
.y84{bottom:77.129333pt;}
.y34{bottom:80.411577pt;}
.y4f{bottom:81.257376pt;}
.y51{bottom:81.429341pt;}
.y55{bottom:82.465972pt;}
.y8c{bottom:82.596000pt;}
.yae{bottom:83.290667pt;}
.y4e{bottom:84.732488pt;}
.y50{bottom:84.880741pt;}
.y1d{bottom:85.280000pt;}
.y54{bottom:85.941084pt;}
.y83{bottom:86.426667pt;}
.y53{bottom:91.053081pt;}
.y24{bottom:91.431838pt;}
.y8b{bottom:91.893333pt;}
.y4b{bottom:92.653333pt;}
.yb6{bottom:93.477333pt;}
.ybe{bottom:93.504000pt;}
.y52{bottom:94.218681pt;}
.yb{bottom:95.941333pt;}
.y97{bottom:96.766420pt;}
.y23{bottom:97.438486pt;}
.yad{bottom:101.356000pt;}
.y22{bottom:102.825093pt;}
.y1c{bottom:105.670667pt;}
.y20{bottom:107.414850pt;}
.y1f{bottom:107.933166pt;}
.y21{bottom:109.037614pt;}
.y4a{bottom:110.718667pt;}
.yb5{bottom:111.542667pt;}
.ybd{bottom:113.229333pt;}
.y99{bottom:113.383104pt;}
.ya2{bottom:114.358155pt;}
.ya{bottom:117.992000pt;}
.y3a{bottom:119.414927pt;}
.y39{bottom:122.292742pt;}
.y96{bottom:122.531293pt;}
.y38{bottom:123.156096pt;}
.y1b{bottom:123.736000pt;}
.y37{bottom:124.019451pt;}
.y9d{bottom:124.749977pt;}
.yac{bottom:125.066667pt;}
.y36{bottom:126.609481pt;}
.yb4{bottom:129.608000pt;}
.y49{bottom:130.444000pt;}
.ybc{bottom:135.280000pt;}
.y3b{bottom:136.321844pt;}
.y6b{bottom:138.514667pt;}
.y9b{bottom:138.560875pt;}
.y9c{bottom:139.116916pt;}
.y9{bottom:140.042667pt;}
.y60{bottom:140.276000pt;}
.y1a{bottom:141.801333pt;}
.yab{bottom:147.117333pt;}
.yb3{bottom:147.673333pt;}
.y91{bottom:149.475242pt;}
.y12{bottom:149.909333pt;}
.y48{bottom:150.834667pt;}
.y70{bottom:151.421333pt;}
.yc2{bottom:153.812000pt;}
.y5f{bottom:156.216000pt;}
.ybb{bottom:157.330667pt;}
.y82{bottom:158.998667pt;}
.y92{bottom:159.277526pt;}
.y6a{bottom:160.565333pt;}
.y19{bottom:161.528000pt;}
.y9f{bottom:161.640550pt;}
.y58{bottom:164.920318pt;}
.yb2{bottom:165.738667pt;}
.y47{bottom:168.900000pt;}
.yaa{bottom:169.168000pt;}
.y5a{bottom:169.854828pt;}
.y3f{bottom:169.920993pt;}
.y57{bottom:170.130940pt;}
.y59{bottom:170.690527pt;}
.y3d{bottom:171.249843pt;}
.y56{bottom:171.312990pt;}
.y11{bottom:171.960000pt;}
.y5e{bottom:172.156000pt;}
.y81{bottom:172.282667pt;}
.y3c{bottom:172.642687pt;}
.y6f{bottom:173.472000pt;}
.yc1{bottom:174.202667pt;}
.y93{bottom:175.240115pt;}
.yba{bottom:177.721333pt;}
.y69{bottom:182.616000pt;}
.y3e{bottom:182.765328pt;}
.y90{bottom:183.412644pt;}
.y77{bottom:183.426667pt;}
.y18{bottom:183.578667pt;}
.yb1{bottom:183.804000pt;}
.y8a{bottom:185.190667pt;}
.y80{bottom:185.565333pt;}
.y3{bottom:187.341333pt;}
.y5d{bottom:188.096000pt;}
.y46{bottom:188.626667pt;}
.ya9{bottom:191.218667pt;}
.y13{bottom:192.892000pt;}
.yc0{bottom:193.928000pt;}
.y10{bottom:194.010667pt;}
.y6e{bottom:195.522667pt;}
.y76{bottom:196.710667pt;}
.y7f{bottom:197.189333pt;}
.yb9{bottom:197.446667pt;}
.y89{bottom:198.474667pt;}
.y94{bottom:201.004379pt;}
.yb0{bottom:201.870667pt;}
.y41{bottom:202.773633pt;}
.y17{bottom:203.160000pt;}
.y5c{bottom:204.036000pt;}
.y68{bottom:204.666667pt;}
.y7e{bottom:206.486667pt;}
.y75{bottom:208.333333pt;}
.y40{bottom:209.453573pt;}
.y88{bottom:210.097333pt;}
.y45{bottom:210.677333pt;}
.ya8{bottom:213.269333pt;}
.y42{bottom:213.405653pt;}
.ybf{bottom:215.978667pt;}
.yf{bottom:216.061333pt;}
.y7d{bottom:217.446667pt;}
.y6d{bottom:217.573333pt;}
.yb8{bottom:217.837333pt;}
.y74{bottom:219.292000pt;}
.y87{bottom:221.056000pt;}
.y5b{bottom:222.301333pt;}
.y95{bottom:226.701650pt;}
.y67{bottom:226.717333pt;}
.y44{bottom:230.258667pt;}
.y7c{bottom:234.177333pt;}
.ya7{bottom:235.320000pt;}
.y9e{bottom:235.492950pt;}
.y73{bottom:236.024000pt;}
.yb7{bottom:237.562667pt;}
.y86{bottom:237.788000pt;}
.yaf{bottom:238.533333pt;}
.y2{bottom:243.120000pt;}
.y62{bottom:251.754667pt;}
.ya5{bottom:252.501847pt;}
.y7b{bottom:252.774667pt;}
.y72{bottom:254.621333pt;}
.y85{bottom:256.385333pt;}
.y71{bottom:273.217333pt;}
.y66{bottom:275.530667pt;}
.y15{bottom:285.356000pt;}
.y14{bottom:294.110667pt;}
.y65{bottom:294.128000pt;}
.y1{bottom:298.384000pt;}
.y64{bottom:308.006667pt;}
.y16{bottom:311.965333pt;}
.y61{bottom:325.698667pt;}
.y8{bottom:335.876000pt;}
.y63{bottom:345.549333pt;}
.y8e{bottom:345.881333pt;}
.hf{height:8.430824pt;}
.hb{height:9.180241pt;}
.h13{height:9.622748pt;}
.h15{height:10.009062pt;}
.h14{height:11.484511pt;}
.hd{height:11.680750pt;}
.h12{height:11.680751pt;}
.h11{height:11.682110pt;}
.ha{height:13.345415pt;}
.h10{height:15.017104pt;}
.he{height:15.691399pt;}
.h1c{height:17.328828pt;}
.h1b{height:17.334161pt;}
.hc{height:17.932024pt;}
.h16{height:17.935996pt;}
.h1f{height:18.202467pt;}
.h17{height:19.321400pt;}
.h20{height:20.563055pt;}
.h1d{height:22.156971pt;}
.h5{height:23.974161pt;}
.h19{height:31.930201pt;}
.h18{height:31.935534pt;}
.h8{height:37.107430pt;}
.h6{height:37.112764pt;}
.h4{height:43.752764pt;}
.h7{height:47.884561pt;}
.h3{height:49.934548pt;}
.h2{height:57.384800pt;}
.h1a{height:85.521894pt;}
.h9{height:242.203546pt;}
.h1e{height:271.959640pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w3{width:171.020006pt;}
.w2{width:171.227136pt;}
.w4{width:363.904396pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x7{left:11.338667pt;}
.x26{left:13.107435pt;}
.xa{left:14.452000pt;}
.xb{left:15.701333pt;}
.x29{left:18.597333pt;}
.x1a{left:21.048887pt;}
.x14{left:22.067028pt;}
.x3c{left:26.088875pt;}
.x8{left:28.998667pt;}
.xc{left:30.246667pt;}
.x4{left:31.914667pt;}
.x6{left:33.132000pt;}
.x2a{left:35.324000pt;}
.x22{left:39.620667pt;}
.x9{left:43.544000pt;}
.xd{left:44.792000pt;}
.x27{left:47.169165pt;}
.x1b{left:54.692001pt;}
.x15{left:57.541103pt;}
.x28{left:58.720000pt;}
.x30{left:59.938667pt;}
.xf{left:64.261456pt;}
.x10{left:66.904503pt;}
.x16{left:74.042262pt;}
.x23{left:75.017447pt;}
.x31{left:89.031781pt;}
.x1d{left:106.413642pt;}
.x24{left:111.612137pt;}
.x11{left:117.893308pt;}
.x25{left:118.991308pt;}
.x1f{left:123.515471pt;}
.x20{left:124.796360pt;}
.x17{left:126.398160pt;}
.x13{left:128.484856pt;}
.x19{left:132.062777pt;}
.x12{left:133.067853pt;}
.x35{left:135.465801pt;}
.x32{left:137.657079pt;}
.x18{left:140.760550pt;}
.x36{left:141.701626pt;}
.x33{left:144.204725pt;}
.x1e{left:147.725645pt;}
.x34{left:149.100690pt;}
.x21{left:153.995683pt;}
.x2{left:165.557333pt;}
.x1{left:173.474667pt;}
.x2b{left:190.384000pt;}
.x3{left:201.218667pt;}
.x2c{left:202.749333pt;}
.x38{left:209.877898pt;}
.x5{left:215.944000pt;}
.x3d{left:248.048644pt;}
.x1c{left:249.740000pt;}
.x37{left:262.273680pt;}
.x3f{left:264.285333pt;}
.xe{left:273.296000pt;}
.x40{left:278.832000pt;}
.x3a{left:293.441229pt;}
.x39{left:296.196465pt;}
.x3e{left:314.825333pt;}
.x2d{left:328.718667pt;}
.x2e{left:345.445333pt;}
.x3b{left:348.625744pt;}
.x2f{left:357.809333pt;}
}




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