
    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_50a8b9819bacfe89a3e84b21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_dfe62c2345ff6c914c6c7be1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.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_dd0a5a1e7cdb27bd0cf3f781.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_7f39b93df049b4c3b328d7e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_bbf895394962e7f449b605dd.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_313d64b08dfad04ba8c9ced5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9e92627fb8a5d1d5eaaa7471.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_6017bc126dc69d970f02493d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_bbaf4e377dae4eab72f8e3f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_88c4baf2b9861169d8c7a02c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d6079128ec39c6109f46e715.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_01e50960226561b6a543fb9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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.000000,-0.209570,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.209570,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.209570,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.208092,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.208092,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.208092,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.200800,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.200800,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.200800,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.205797,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.205797,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.205797,0.250000,0.000000,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);}
.m3{transform:matrix(0.280941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280941,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298230,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300348,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.303697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303697,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311255,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-57.818393px;}
.v8{vertical-align:-34.769229px;}
.v5{vertical-align:-26.853065px;}
.v3{vertical-align:-23.871852px;}
.v7{vertical-align:-22.667085px;}
.v9{vertical-align:-12.288669px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:38.001429px;}
.ls24{letter-spacing:-0.696000px;}
.ls21{letter-spacing:-0.513600px;}
.ls16{letter-spacing:-0.220200px;}
.ls22{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.172402px;}
.ls3{letter-spacing:-0.153600px;}
.ls26{letter-spacing:-0.139800px;}
.ls1e{letter-spacing:-0.078830px;}
.ls1d{letter-spacing:-0.065253px;}
.ls13{letter-spacing:-0.055535px;}
.ls12{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.049420px;}
.ls25{letter-spacing:-0.013320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.031680px;}
.ls6{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.139800px;}
.ls1f{letter-spacing:0.140040px;}
.ls1a{letter-spacing:0.145397px;}
.ls5{letter-spacing:0.151680px;}
.ls19{letter-spacing:0.153019px;}
.lsa{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.248400px;}
.ls15{letter-spacing:0.255960px;}
.ls9{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.333360px;}
.ls1c{letter-spacing:0.378600px;}
.ls11{letter-spacing:0.450000px;}
.ls8{letter-spacing:0.540000px;}
.lse{letter-spacing:3.899090px;}
.lsf{letter-spacing:4.643594px;}
.ls10{letter-spacing:7.185288px;}
.ls18{letter-spacing:9.011956px;}
.lsd{letter-spacing:9.935760px;}
.ls20{letter-spacing:24.228000px;}
.lsc{letter-spacing:79.462794px;}
.ls17{letter-spacing:88.417513px;}
.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:-15.779288px;}
.ws5{word-spacing:-15.183600px;}
.ws19{word-spacing:-15.169800px;}
.ws15{word-spacing:-15.030000px;}
.ws1c{word-spacing:-15.016680px;}
.wsa{word-spacing:-14.976720px;}
.ws1d{word-spacing:-14.890200px;}
.ws1b{word-spacing:-14.876400px;}
.ws1a{word-spacing:-14.334000px;}
.ws8{word-spacing:-14.258644px;}
.wse{word-spacing:-13.568723px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws18{word-spacing:-12.348600px;}
.ws14{word-spacing:-11.970000px;}
.ws10{word-spacing:-11.909641px;}
.ws3{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.398364px;}
.ws9{word-spacing:-8.492647px;}
.ws4{word-spacing:-8.010000px;}
.wsd{word-spacing:-0.180208px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:6.134566px;}
.wsc{word-spacing:7.884765px;}
.ws17{word-spacing:13.941390px;}
.ws7{word-spacing:19.071131px;}
.wsb{word-spacing:31.721217px;}
.wsf{word-spacing:35.739134px;}
.ws11{word-spacing:47.385646px;}
.ws16{word-spacing:52.833957px;}
._a{margin-left:-4.424760px;}
._3{margin-left:-2.970000px;}
._1{margin-left:-1.043640px;}
._0{width:1.317600px;}
._2{width:3.240000px;}
._4{width:4.509000px;}
._5{width:5.539440px;}
._8{width:7.154280px;}
._9{width:8.433120px;}
._6{width:10.100160px;}
._e{width:32.051551px;}
._f{width:70.984333px;}
._10{width:82.825366px;}
._d{width:96.167397px;}
._c{width:454.542000px;}
._b{width:550.380000px;}
._7{width:996.540000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs1e{font-size:30.425184px;}
.fsa{font-size:30.549091px;}
.fs1d{font-size:30.735685px;}
.fs15{font-size:33.807066px;}
.fs7{font-size:38.403317px;}
.fs4{font-size:38.880000px;}
.fs1b{font-size:40.380150px;}
.fs17{font-size:41.202075px;}
.fse{font-size:41.242483px;}
.fs12{font-size:42.488423px;}
.fs16{font-size:42.539552px;}
.fs11{font-size:42.840435px;}
.fsc{font-size:43.154984px;}
.fs5{font-size:47.880000px;}
.fs19{font-size:49.754655px;}
.fs9{font-size:51.290085px;}
.fs0{font-size:54.000000px;}
.fs14{font-size:56.760028px;}
.fs1c{font-size:56.814290px;}
.fs10{font-size:57.636239px;}
.fs2{font-size:60.120000px;}
.fsb{font-size:60.186662px;}
.fs8{font-size:62.306530px;}
.fsf{font-size:63.196236px;}
.fs18{font-size:65.270961px;}
.fs1{font-size:65.880000px;}
.fs1a{font-size:67.774791px;}
.fsd{font-size:69.243646px;}
.fs13{font-size:70.667314px;}
.fs3{font-size:72.000000px;}
.yc6{bottom:-6.266948px;}
.yc8{bottom:-4.776851px;}
.yc4{bottom:-3.954614px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y9c{bottom:2.070000px;}
.yca{bottom:5.430942px;}
.y81{bottom:20.502338px;}
.y5e{bottom:22.534518px;}
.y64{bottom:22.871541px;}
.ybb{bottom:24.154782px;}
.y9a{bottom:25.310753px;}
.y69{bottom:25.619704px;}
.y90{bottom:33.963909px;}
.ybc{bottom:35.796402px;}
.y68{bottom:37.366775px;}
.y6b{bottom:37.366813px;}
.y6a{bottom:37.366829px;}
.y78{bottom:37.608168px;}
.y5d{bottom:40.615352px;}
.y91{bottom:45.597685px;}
.y79{bottom:49.418199px;}
.ybd{bottom:63.085698px;}
.y88{bottom:64.725812px;}
.y92{bottom:66.722453px;}
.y3{bottom:73.349908px;}
.y7a{bottom:76.158206px;}
.y5f{bottom:79.717446px;}
.y87{bottom:85.512488px;}
.y93{bottom:87.842845px;}
.ybe{bottom:90.379374px;}
.y8a{bottom:96.191830px;}
.y10a{bottom:96.389908px;}
.y8b{bottom:98.081124px;}
.y7b{bottom:102.992622px;}
.y80{bottom:104.979657px;}
.y60{bottom:108.390948px;}
.y94{bottom:108.874638px;}
.y5b{bottom:110.519908px;}
.y86{bottom:111.118474px;}
.y109{bottom:114.299908px;}
.ybf{bottom:117.668670px;}
.y63{bottom:118.398485px;}
.yc9{bottom:118.785426px;}
.yeb{bottom:122.849908px;}
.y5a{bottom:126.359908px;}
.yb9{bottom:127.619908px;}
.y7c{bottom:129.735961px;}
.y84{bottom:129.830371px;}
.y95{bottom:129.999405px;}
.y8e{bottom:131.399908px;}
.y89{bottom:135.591551px;}
.y61{bottom:136.983401px;}
.y108{bottom:141.659908px;}
.yea{bottom:142.649908px;}
.yc0{bottom:144.957964px;}
.y8d{bottom:147.239908px;}
.yb8{bottom:147.509908px;}
.y59{bottom:149.579908px;}
.y96{bottom:151.124172px;}
.y85{bottom:152.222003px;}
.y7d{bottom:156.570378px;}
.y99{bottom:161.173013px;}
.ycb{bottom:161.258168px;}
.ye9{bottom:162.539908px;}
.y62{bottom:165.572888px;}
.yb7{bottom:167.309908px;}
.y83{bottom:170.367444px;}
.y8c{bottom:170.459908px;}
.y77{bottom:170.475000px;}
.y107{bottom:170.549908px;}
.y97{bottom:172.244564px;}
.yc1{bottom:172.248357px;}
.y28{bottom:181.709908px;}
.ye8{bottom:182.339908px;}
.y7e{bottom:183.310385px;}
.yb6{bottom:187.109908px;}
.y106{bottom:190.349908px;}
.y98{bottom:193.369331px;}
.yc2{bottom:199.540938px;}
.y27{bottom:201.509908px;}
.ye7{bottom:202.139908px;}
.yb5{bottom:206.999908px;}
.y7f{bottom:210.144801px;}
.y105{bottom:210.149908px;}
.y82{bottom:210.808997px;}
.y26{bottom:221.399908px;}
.ye6{bottom:222.029908px;}
.y12f{bottom:222.839908px;}
.yb4{bottom:226.799908px;}
.y104{bottom:230.039908px;}
.y25{bottom:241.199908px;}
.ye5{bottom:241.829908px;}
.y12e{bottom:245.159908px;}
.yb3{bottom:246.689908px;}
.y103{bottom:249.839908px;}
.y24{bottom:261.089908px;}
.ye4{bottom:261.719908px;}
.y58{bottom:265.589908px;}
.yb2{bottom:266.489908px;}
.y12d{bottom:267.569908px;}
.y102{bottom:269.729908px;}
.y23{bottom:280.889908px;}
.ye3{bottom:281.519908px;}
.y57{bottom:285.389908px;}
.yb1{bottom:286.289908px;}
.y101{bottom:298.529908px;}
.y22{bottom:300.689908px;}
.ye2{bottom:301.319908px;}
.yb0{bottom:306.179908px;}
.y48{bottom:307.529908px;}
.y12c{bottom:307.709908px;}
.y21{bottom:320.579908px;}
.ye1{bottom:321.209908px;}
.y56{bottom:322.199908px;}
.y12b{bottom:325.619908px;}
.yaf{bottom:325.979908px;}
.y47{bottom:327.329908px;}
.y100{bottom:336.359908px;}
.y55{bottom:338.069908px;}
.y20{bottom:340.409908px;}
.ye0{bottom:341.039908px;}
.yae{bottom:345.899908px;}
.y46{bottom:347.249908px;}
.y12a{bottom:347.969908px;}
.y54{bottom:353.909908px;}
.yff{bottom:356.249908px;}
.y1f{bottom:360.299908px;}
.ydf{bottom:360.929908px;}
.yad{bottom:365.699908px;}
.y129{bottom:365.879908px;}
.y45{bottom:367.049908px;}
.yfe{bottom:376.049908px;}
.y53{bottom:377.129908px;}
.y1e{bottom:380.099908px;}
.yde{bottom:380.729908px;}
.yac{bottom:385.499908px;}
.y44{bottom:386.939908px;}
.y128{bottom:388.199908px;}
.yfd{bottom:395.939908px;}
.y1d{bottom:399.899908px;}
.ydd{bottom:400.529908px;}
.yab{bottom:405.389908px;}
.y127{bottom:406.019908px;}
.y43{bottom:406.739908px;}
.y76{bottom:415.469908px;}
.yfc{bottom:415.739908px;}
.y1c{bottom:419.789908px;}
.ydc{bottom:420.419908px;}
.y126{bottom:423.929908px;}
.yaa{bottom:425.189908px;}
.y42{bottom:426.539908px;}
.y75{bottom:435.359908px;}
.yfb{bottom:435.539908px;}
.y1b{bottom:439.589908px;}
.ydb{bottom:440.219908px;}
.ya9{bottom:445.079908px;}
.y125{bottom:446.249908px;}
.y41{bottom:446.429908px;}
.y74{bottom:455.159908px;}
.yfa{bottom:455.429908px;}
.y1a{bottom:459.479908px;}
.yda{bottom:460.109908px;}
.y124{bottom:464.069908px;}
.y40{bottom:466.229908px;}
.yf9{bottom:475.229908px;}
.y19{bottom:479.279908px;}
.yd9{bottom:479.909908px;}
.ya8{bottom:481.799908px;}
.y3f{bottom:486.119908px;}
.y123{bottom:486.479908px;}
.y73{bottom:491.879908px;}
.yf8{bottom:495.119908px;}
.ya7{bottom:497.639908px;}
.yd8{bottom:499.709908px;}
.y122{bottom:504.299908px;}
.y72{bottom:507.809908px;}
.y18{bottom:508.079908px;}
.ya6{bottom:513.569908px;}
.y3e{bottom:514.919908px;}
.yd7{bottom:519.599908px;}
.y71{bottom:523.649908px;}
.y121{bottom:526.619908px;}
.ya5{bottom:529.409908px;}
.yf7{bottom:534.719908px;}
.yd6{bottom:539.399908px;}
.y70{bottom:539.489908px;}
.y120{bottom:544.529908px;}
.ya4{bottom:545.249908px;}
.y17{bottom:545.429908px;}
.y3d{bottom:552.719908px;}
.yf6{bottom:554.609908px;}
.yd5{bottom:559.289908px;}
.y6f{bottom:562.619908px;}
.y8f{bottom:562.755000px;}
.y11f{bottom:566.849908px;}
.ya3{bottom:568.019908px;}
.y52{bottom:570.359908px;}
.y16{bottom:572.249908px;}
.y3c{bottom:572.609908px;}
.yf5{bottom:574.409908px;}
.yd4{bottom:579.089908px;}
.y11e{bottom:584.669908px;}
.y15{bottom:590.159908px;}
.y3b{bottom:592.409908px;}
.yf4{bottom:594.299908px;}
.yd3{bottom:598.889908px;}
.y11d{bottom:607.079908px;}
.y14{bottom:607.979908px;}
.y51{bottom:610.049908px;}
.y3a{bottom:612.299908px;}
.yf3{bottom:614.099908px;}
.yd2{bottom:618.779908px;}
.y11c{bottom:624.899908px;}
.y13{bottom:625.799908px;}
.y50{bottom:629.879908px;}
.y39{bottom:632.129908px;}
.yf2{bottom:633.929908px;}
.yd1{bottom:638.609908px;}
.y9b{bottom:643.020000px;}
.y12{bottom:643.739908px;}
.y11b{bottom:647.339908px;}
.y4f{bottom:649.679908px;}
.y38{bottom:651.929908px;}
.yf1{bottom:653.819908px;}
.y11{bottom:661.559908px;}
.y11a{bottom:665.159908px;}
.yd0{bottom:667.499908px;}
.y4e{bottom:669.569908px;}
.y37{bottom:671.819908px;}
.yf0{bottom:673.619908px;}
.y10{bottom:679.379908px;}
.y119{bottom:687.479908px;}
.y4d{bottom:689.369908px;}
.y36{bottom:691.619908px;}
.yef{bottom:693.509908px;}
.yf{bottom:697.289908px;}
.ycf{bottom:704.219908px;}
.y118{bottom:705.389908px;}
.y35{bottom:711.509908px;}
.yee{bottom:713.309908px;}
.ye{bottom:715.109908px;}
.yce{bottom:720.059908px;}
.y4c{bottom:726.179908px;}
.y117{bottom:727.709908px;}
.y34{bottom:731.309908px;}
.yd{bottom:732.929908px;}
.ycd{bottom:735.899908px;}
.y4b{bottom:742.019908px;}
.yed{bottom:742.109908px;}
.y116{bottom:745.529908px;}
.yc{bottom:750.839908px;}
.y33{bottom:751.109908px;}
.y4a{bottom:757.859908px;}
.yba{bottom:759.074919px;}
.ycc{bottom:759.119908px;}
.y115{bottom:767.939908px;}
.yb{bottom:768.659908px;}
.y32{bottom:770.999908px;}
.yec{bottom:779.999908px;}
.y49{bottom:781.079908px;}
.y5c{bottom:781.095000px;}
.y114{bottom:785.759908px;}
.ya{bottom:786.479908px;}
.y31{bottom:790.799908px;}
.y6e{bottom:792.329908px;}
.ya2{bottom:799.799908px;}
.y113{bottom:808.079908px;}
.y30{bottom:810.689908px;}
.y6d{bottom:812.129908px;}
.ya1{bottom:819.689908px;}
.y9{bottom:822.929908px;}
.y112{bottom:825.989908px;}
.y67{bottom:829.199919px;}
.y2f{bottom:830.489908px;}
.ya0{bottom:839.489908px;}
.y8{bottom:842.729908px;}
.y111{bottom:843.809908px;}
.y2e{bottom:850.289908px;}
.y9f{bottom:859.289908px;}
.y7{bottom:862.619908px;}
.y110{bottom:866.219908px;}
.y2d{bottom:870.179908px;}
.y6c{bottom:874.229908px;}
.y9e{bottom:879.179908px;}
.y10f{bottom:884.039908px;}
.y2c{bottom:889.979908px;}
.y9d{bottom:898.979908px;}
.y6{bottom:901.049908px;}
.y10e{bottom:901.859908px;}
.yc5{bottom:903.387970px;}
.yc7{bottom:904.594512px;}
.yc3{bottom:904.780646px;}
.y2b{bottom:909.869908px;}
.y66{bottom:918.869908px;}
.y10d{bottom:924.269908px;}
.y2a{bottom:929.699908px;}
.y65{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.y10c{bottom:942.119908px;}
.y29{bottom:958.499908px;}
.y10b{bottom:959.939908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.h23{height:7.169127px;}
.h27{height:8.658899px;}
.h25{height:11.355861px;}
.h1f{height:16.380000px;}
.h2b{height:32.056359px;}
.hf{height:40.053460px;}
.h15{height:41.789762px;}
.h24{height:42.349240px;}
.h1c{height:44.314098px;}
.h22{height:44.367423px;}
.h1a{height:44.681235px;}
.h17{height:45.009300px;}
.hd{height:48.254063px;}
.h28{height:51.139945px;}
.h9{height:52.998047px;}
.h11{height:53.493956px;}
.hb{height:53.896641px;}
.h8{height:54.421875px;}
.h2c{height:56.320312px;}
.h5{height:58.975137px;}
.h7{height:59.004492px;}
.hc{height:59.038594px;}
.h13{height:59.040529px;}
.h1e{height:59.198936px;}
.h2a{height:59.255529px;}
.h20{height:59.797090px;}
.h19{height:60.112796px;}
.ha{height:60.589687px;}
.h10{height:64.983764px;}
.h3{height:65.526152px;}
.h4{height:66.394687px;}
.h26{height:67.088262px;}
.h6{height:70.664062px;}
.h29{height:70.686989px;}
.h18{height:72.218959px;}
.h1d{height:73.703801px;}
.h12{height:83.778658px;}
.h14{height:97.071346px;}
.he{height:191.445000px;}
.h21{height:213.448911px;}
.h1b{height:223.755000px;}
.h16{height:239.249480px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w9{width:26.317391px;}
.wb{width:29.551231px;}
.wa{width:36.384610px;}
.w4{width:60.375539px;}
.w7{width:76.680000px;}
.w3{width:234.075000px;}
.w8{width:304.047512px;}
.w5{width:344.017859px;}
.w6{width:347.325000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x1a{left:3.068292px;}
.x32{left:11.160000px;}
.x1b{left:14.830434px;}
.x15{left:17.533767px;}
.x19{left:30.375469px;}
.x23{left:32.917831px;}
.x22{left:35.754716px;}
.x39{left:40.089958px;}
.x18{left:43.057849px;}
.x3b{left:44.347746px;}
.x3a{left:51.384875px;}
.x2f{left:55.122194px;}
.x21{left:57.320977px;}
.x25{left:74.439724px;}
.x2{left:76.589989px;}
.xe{left:78.389989px;}
.x35{left:80.009989px;}
.xb{left:81.809989px;}
.x9{left:82.889989px;}
.x20{left:84.655752px;}
.x34{left:86.579989px;}
.x36{left:87.929989px;}
.x12{left:89.099989px;}
.x2d{left:94.139989px;}
.xf{left:98.009989px;}
.x1{left:101.249989px;}
.x7{left:111.179989px;}
.x40{left:119.803559px;}
.x2b{left:125.709282px;}
.x5{left:128.729989px;}
.x42{left:130.619989px;}
.x2e{left:135.029989px;}
.x16{left:136.276623px;}
.x17{left:141.470835px;}
.x29{left:164.773253px;}
.x24{left:172.152384px;}
.x3{left:199.109989px;}
.x1f{left:200.144980px;}
.x2a{left:208.096571px;}
.x38{left:220.169980px;}
.x26{left:224.741626px;}
.x27{left:227.673261px;}
.x10{left:238.979989px;}
.x30{left:242.298246px;}
.x3f{left:245.347322px;}
.x14{left:255.075000px;}
.x1e{left:256.079989px;}
.x6{left:267.149989px;}
.x28{left:268.254427px;}
.xc{left:282.719989px;}
.x37{left:319.739989px;}
.x4{left:330.269989px;}
.x3c{left:331.365206px;}
.x8{left:335.399989px;}
.x13{left:342.059989px;}
.x3e{left:358.676518px;}
.x3d{left:389.229507px;}
.x1c{left:402.359989px;}
.x31{left:429.630000px;}
.xa{left:489.209989px;}
.xd{left:506.489989px;}
.x41{left:524.219989px;}
.x33{left:526.289989px;}
.x11{left:534.239989px;}
.x2c{left:544.229989px;}
.x1d{left:545.849989px;}
@media print{
.v6{vertical-align:-51.394127pt;}
.v8{vertical-align:-30.905981pt;}
.v5{vertical-align:-23.869392pt;}
.v3{vertical-align:-21.219424pt;}
.v7{vertical-align:-20.148520pt;}
.v9{vertical-align:-10.923261pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:33.779048pt;}
.ls24{letter-spacing:-0.618667pt;}
.ls21{letter-spacing:-0.456533pt;}
.ls16{letter-spacing:-0.195733pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.153246pt;}
.ls3{letter-spacing:-0.136533pt;}
.ls26{letter-spacing:-0.124267pt;}
.ls1e{letter-spacing:-0.070071pt;}
.ls1d{letter-spacing:-0.058003pt;}
.ls13{letter-spacing:-0.049364pt;}
.ls12{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.043929pt;}
.ls25{letter-spacing:-0.011840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.028160pt;}
.ls6{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.124267pt;}
.ls1f{letter-spacing:0.124480pt;}
.ls1a{letter-spacing:0.129242pt;}
.ls5{letter-spacing:0.134827pt;}
.ls19{letter-spacing:0.136017pt;}
.lsa{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.220800pt;}
.ls15{letter-spacing:0.227520pt;}
.ls9{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.296320pt;}
.ls1c{letter-spacing:0.336533pt;}
.ls11{letter-spacing:0.400000pt;}
.ls8{letter-spacing:0.480000pt;}
.lse{letter-spacing:3.465858pt;}
.lsf{letter-spacing:4.127639pt;}
.ls10{letter-spacing:6.386923pt;}
.ls18{letter-spacing:8.010628pt;}
.lsd{letter-spacing:8.831787pt;}
.ls20{letter-spacing:21.536000pt;}
.lsc{letter-spacing:70.633594pt;}
.ls17{letter-spacing:78.593345pt;}
.ws12{word-spacing:-14.026034pt;}
.ws5{word-spacing:-13.496533pt;}
.ws19{word-spacing:-13.484267pt;}
.ws15{word-spacing:-13.360000pt;}
.ws1c{word-spacing:-13.348160pt;}
.wsa{word-spacing:-13.312640pt;}
.ws1d{word-spacing:-13.235733pt;}
.ws1b{word-spacing:-13.223467pt;}
.ws1a{word-spacing:-12.741333pt;}
.ws8{word-spacing:-12.674350pt;}
.wse{word-spacing:-12.061087pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws18{word-spacing:-10.976533pt;}
.ws14{word-spacing:-10.640000pt;}
.ws10{word-spacing:-10.586347pt;}
.ws3{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.354102pt;}
.ws9{word-spacing:-7.549020pt;}
.ws4{word-spacing:-7.120000pt;}
.wsd{word-spacing:-0.160185pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:5.452947pt;}
.wsc{word-spacing:7.008680pt;}
.ws17{word-spacing:12.392346pt;}
.ws7{word-spacing:16.952116pt;}
.wsb{word-spacing:28.196637pt;}
.wsf{word-spacing:31.768119pt;}
.ws11{word-spacing:42.120574pt;}
.ws16{word-spacing:46.963517pt;}
._a{margin-left:-3.933120pt;}
._3{margin-left:-2.640000pt;}
._1{margin-left:-0.927680pt;}
._0{width:1.171200pt;}
._2{width:2.880000pt;}
._4{width:4.008000pt;}
._5{width:4.923947pt;}
._8{width:6.359360pt;}
._9{width:7.496107pt;}
._6{width:8.977920pt;}
._e{width:28.490268pt;}
._f{width:63.097185pt;}
._10{width:73.622548pt;}
._d{width:85.482130pt;}
._c{width:404.037333pt;}
._b{width:489.226667pt;}
._7{width:885.813333pt;}
.fs6{font-size:26.560000pt;}
.fs1e{font-size:27.044608pt;}
.fsa{font-size:27.154747pt;}
.fs1d{font-size:27.320609pt;}
.fs15{font-size:30.050725pt;}
.fs7{font-size:34.136282pt;}
.fs4{font-size:34.560000pt;}
.fs1b{font-size:35.893467pt;}
.fs17{font-size:36.624067pt;}
.fse{font-size:36.659985pt;}
.fs12{font-size:37.767487pt;}
.fs16{font-size:37.812935pt;}
.fs11{font-size:38.080386pt;}
.fsc{font-size:38.359986pt;}
.fs5{font-size:42.560000pt;}
.fs19{font-size:44.226360pt;}
.fs9{font-size:45.591186pt;}
.fs0{font-size:48.000000pt;}
.fs14{font-size:50.453359pt;}
.fs1c{font-size:50.501591pt;}
.fs10{font-size:51.232212pt;}
.fs2{font-size:53.440000pt;}
.fsb{font-size:53.499255pt;}
.fs8{font-size:55.383582pt;}
.fsf{font-size:56.174432pt;}
.fs18{font-size:58.018632pt;}
.fs1{font-size:58.560000pt;}
.fs1a{font-size:60.244258pt;}
.fsd{font-size:61.549908pt;}
.fs13{font-size:62.815391pt;}
.fs3{font-size:64.000000pt;}
.yc6{bottom:-5.570621pt;}
.yc8{bottom:-4.246089pt;}
.yc4{bottom:-3.515213pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y9c{bottom:1.840000pt;}
.yca{bottom:4.827504pt;}
.y81{bottom:18.224301pt;}
.y5e{bottom:20.030683pt;}
.y64{bottom:20.330259pt;}
.ybb{bottom:21.470918pt;}
.y9a{bottom:22.498447pt;}
.y69{bottom:22.773070pt;}
.y90{bottom:30.190141pt;}
.ybc{bottom:31.819024pt;}
.y68{bottom:33.214911pt;}
.y6b{bottom:33.214945pt;}
.y6a{bottom:33.214959pt;}
.y78{bottom:33.429483pt;}
.y5d{bottom:36.102535pt;}
.y91{bottom:40.531276pt;}
.y79{bottom:43.927288pt;}
.ybd{bottom:56.076176pt;}
.y88{bottom:57.534055pt;}
.y92{bottom:59.308847pt;}
.y3{bottom:65.199919pt;}
.y7a{bottom:67.696183pt;}
.y5f{bottom:70.859952pt;}
.y87{bottom:76.011100pt;}
.y93{bottom:78.082529pt;}
.ybe{bottom:80.337221pt;}
.y8a{bottom:85.503849pt;}
.y10a{bottom:85.679919pt;}
.y8b{bottom:87.183222pt;}
.y7b{bottom:91.548997pt;}
.y80{bottom:93.315251pt;}
.y60{bottom:96.347509pt;}
.y94{bottom:96.777456pt;}
.y5b{bottom:98.239919pt;}
.y86{bottom:98.771977pt;}
.y109{bottom:101.599919pt;}
.ybf{bottom:104.594374pt;}
.y63{bottom:105.243098pt;}
.yc9{bottom:105.587045pt;}
.yeb{bottom:109.199919pt;}
.y5a{bottom:112.319919pt;}
.yb9{bottom:113.439919pt;}
.y7c{bottom:115.320855pt;}
.y84{bottom:115.404774pt;}
.y95{bottom:115.555027pt;}
.y8e{bottom:116.799919pt;}
.y89{bottom:120.525823pt;}
.y61{bottom:121.763023pt;}
.y108{bottom:125.919919pt;}
.yea{bottom:126.799919pt;}
.yc0{bottom:128.851523pt;}
.y8d{bottom:130.879919pt;}
.yb8{bottom:131.119919pt;}
.y59{bottom:132.959919pt;}
.y96{bottom:134.332598pt;}
.y85{bottom:135.308447pt;}
.y7d{bottom:139.173669pt;}
.y99{bottom:143.264900pt;}
.ycb{bottom:143.340594pt;}
.ye9{bottom:144.479919pt;}
.y62{bottom:147.175901pt;}
.yb7{bottom:148.719919pt;}
.y83{bottom:151.437728pt;}
.y8c{bottom:151.519919pt;}
.y77{bottom:151.533333pt;}
.y107{bottom:151.599919pt;}
.y97{bottom:153.106280pt;}
.yc1{bottom:153.109650pt;}
.y28{bottom:161.519919pt;}
.ye8{bottom:162.079919pt;}
.y7e{bottom:162.942564pt;}
.yb6{bottom:166.319919pt;}
.y106{bottom:169.199919pt;}
.y98{bottom:171.883849pt;}
.yc2{bottom:177.369722pt;}
.y27{bottom:179.119919pt;}
.ye7{bottom:179.679919pt;}
.yb5{bottom:183.999919pt;}
.y7f{bottom:186.795379pt;}
.y105{bottom:186.799919pt;}
.y82{bottom:187.385775pt;}
.y26{bottom:196.799919pt;}
.ye6{bottom:197.359919pt;}
.y12f{bottom:198.079919pt;}
.yb4{bottom:201.599919pt;}
.y104{bottom:204.479919pt;}
.y25{bottom:214.399919pt;}
.ye5{bottom:214.959919pt;}
.y12e{bottom:217.919919pt;}
.yb3{bottom:219.279919pt;}
.y103{bottom:222.079919pt;}
.y24{bottom:232.079919pt;}
.ye4{bottom:232.639919pt;}
.y58{bottom:236.079919pt;}
.yb2{bottom:236.879919pt;}
.y12d{bottom:237.839919pt;}
.y102{bottom:239.759919pt;}
.y23{bottom:249.679919pt;}
.ye3{bottom:250.239919pt;}
.y57{bottom:253.679919pt;}
.yb1{bottom:254.479919pt;}
.y101{bottom:265.359919pt;}
.y22{bottom:267.279919pt;}
.ye2{bottom:267.839919pt;}
.yb0{bottom:272.159919pt;}
.y48{bottom:273.359919pt;}
.y12c{bottom:273.519919pt;}
.y21{bottom:284.959919pt;}
.ye1{bottom:285.519919pt;}
.y56{bottom:286.399919pt;}
.y12b{bottom:289.439919pt;}
.yaf{bottom:289.759919pt;}
.y47{bottom:290.959919pt;}
.y100{bottom:298.986585pt;}
.y55{bottom:300.506585pt;}
.y20{bottom:302.586585pt;}
.ye0{bottom:303.146585pt;}
.yae{bottom:307.466585pt;}
.y46{bottom:308.666585pt;}
.y12a{bottom:309.306585pt;}
.y54{bottom:314.586585pt;}
.yff{bottom:316.666585pt;}
.y1f{bottom:320.266585pt;}
.ydf{bottom:320.826585pt;}
.yad{bottom:325.066585pt;}
.y129{bottom:325.226585pt;}
.y45{bottom:326.266585pt;}
.yfe{bottom:334.266585pt;}
.y53{bottom:335.226585pt;}
.y1e{bottom:337.866585pt;}
.yde{bottom:338.426585pt;}
.yac{bottom:342.666585pt;}
.y44{bottom:343.946585pt;}
.y128{bottom:345.066585pt;}
.yfd{bottom:351.946585pt;}
.y1d{bottom:355.466585pt;}
.ydd{bottom:356.026585pt;}
.yab{bottom:360.346585pt;}
.y127{bottom:360.906585pt;}
.y43{bottom:361.546585pt;}
.y76{bottom:369.306585pt;}
.yfc{bottom:369.546585pt;}
.y1c{bottom:373.146585pt;}
.ydc{bottom:373.706585pt;}
.y126{bottom:376.826585pt;}
.yaa{bottom:377.946585pt;}
.y42{bottom:379.146585pt;}
.y75{bottom:386.986585pt;}
.yfb{bottom:387.146585pt;}
.y1b{bottom:390.746585pt;}
.ydb{bottom:391.306585pt;}
.ya9{bottom:395.626585pt;}
.y125{bottom:396.666585pt;}
.y41{bottom:396.826585pt;}
.y74{bottom:404.586585pt;}
.yfa{bottom:404.826585pt;}
.y1a{bottom:408.426585pt;}
.yda{bottom:408.986585pt;}
.y124{bottom:412.506585pt;}
.y40{bottom:414.426585pt;}
.yf9{bottom:422.426585pt;}
.y19{bottom:426.026585pt;}
.yd9{bottom:426.586585pt;}
.ya8{bottom:428.266585pt;}
.y3f{bottom:432.106585pt;}
.y123{bottom:432.426585pt;}
.y73{bottom:437.226585pt;}
.yf8{bottom:440.106585pt;}
.ya7{bottom:442.346585pt;}
.yd8{bottom:444.186585pt;}
.y122{bottom:448.266585pt;}
.y72{bottom:451.386585pt;}
.y18{bottom:451.626585pt;}
.ya6{bottom:456.506585pt;}
.y3e{bottom:457.706585pt;}
.yd7{bottom:461.866585pt;}
.y71{bottom:465.466585pt;}
.y121{bottom:468.106585pt;}
.ya5{bottom:470.586585pt;}
.yf7{bottom:475.306585pt;}
.yd6{bottom:479.466585pt;}
.y70{bottom:479.546585pt;}
.y120{bottom:484.026585pt;}
.ya4{bottom:484.666585pt;}
.y17{bottom:484.826585pt;}
.y3d{bottom:491.306585pt;}
.yf6{bottom:492.986585pt;}
.yd5{bottom:497.146585pt;}
.y6f{bottom:500.106585pt;}
.y8f{bottom:500.226667pt;}
.y11f{bottom:503.866585pt;}
.ya3{bottom:504.906585pt;}
.y52{bottom:506.986585pt;}
.y16{bottom:508.666585pt;}
.y3c{bottom:508.986585pt;}
.yf5{bottom:510.586585pt;}
.yd4{bottom:514.746585pt;}
.y11e{bottom:519.706585pt;}
.y15{bottom:524.586585pt;}
.y3b{bottom:526.586585pt;}
.yf4{bottom:528.266585pt;}
.yd3{bottom:532.346585pt;}
.y11d{bottom:539.626585pt;}
.y14{bottom:540.426585pt;}
.y51{bottom:542.266585pt;}
.y3a{bottom:544.266585pt;}
.yf3{bottom:545.866585pt;}
.yd2{bottom:550.026585pt;}
.y11c{bottom:555.466585pt;}
.y13{bottom:556.266585pt;}
.y50{bottom:559.893252pt;}
.y39{bottom:561.893252pt;}
.yf2{bottom:563.493252pt;}
.yd1{bottom:567.653252pt;}
.y9b{bottom:571.573333pt;}
.y12{bottom:572.213252pt;}
.y11b{bottom:575.413252pt;}
.y4f{bottom:577.493252pt;}
.y38{bottom:579.493252pt;}
.yf1{bottom:581.173252pt;}
.y11{bottom:588.053252pt;}
.y11a{bottom:591.253252pt;}
.yd0{bottom:593.333252pt;}
.y4e{bottom:595.173252pt;}
.y37{bottom:597.173252pt;}
.yf0{bottom:598.773252pt;}
.y10{bottom:603.893252pt;}
.y119{bottom:611.093252pt;}
.y4d{bottom:612.773252pt;}
.y36{bottom:614.773252pt;}
.yef{bottom:616.453252pt;}
.yf{bottom:619.813252pt;}
.ycf{bottom:625.973252pt;}
.y118{bottom:627.013252pt;}
.y35{bottom:632.453252pt;}
.yee{bottom:634.053252pt;}
.ye{bottom:635.653252pt;}
.yce{bottom:640.053252pt;}
.y4c{bottom:645.493252pt;}
.y117{bottom:646.853252pt;}
.y34{bottom:650.053252pt;}
.yd{bottom:651.493252pt;}
.ycd{bottom:654.133252pt;}
.y4b{bottom:659.573252pt;}
.yed{bottom:659.653252pt;}
.y116{bottom:662.693252pt;}
.yc{bottom:667.413252pt;}
.y33{bottom:667.653252pt;}
.y4a{bottom:673.653252pt;}
.yba{bottom:674.733261pt;}
.ycc{bottom:674.773252pt;}
.y115{bottom:682.613252pt;}
.yb{bottom:683.253252pt;}
.y32{bottom:685.333252pt;}
.yec{bottom:693.333252pt;}
.y49{bottom:694.293252pt;}
.y5c{bottom:694.306667pt;}
.y114{bottom:698.453252pt;}
.ya{bottom:699.093252pt;}
.y31{bottom:702.933252pt;}
.y6e{bottom:704.293252pt;}
.ya2{bottom:710.933252pt;}
.y113{bottom:718.293252pt;}
.y30{bottom:720.613252pt;}
.y6d{bottom:721.893252pt;}
.ya1{bottom:728.613252pt;}
.y9{bottom:731.493252pt;}
.y112{bottom:734.213252pt;}
.y67{bottom:737.066594pt;}
.y2f{bottom:738.213252pt;}
.ya0{bottom:746.213252pt;}
.y8{bottom:749.093252pt;}
.y111{bottom:750.053252pt;}
.y2e{bottom:755.813252pt;}
.y9f{bottom:763.813252pt;}
.y7{bottom:766.773252pt;}
.y110{bottom:769.973252pt;}
.y2d{bottom:773.493252pt;}
.y6c{bottom:777.093252pt;}
.y9e{bottom:781.493252pt;}
.y10f{bottom:785.813252pt;}
.y2c{bottom:791.093252pt;}
.y9d{bottom:799.093252pt;}
.y6{bottom:800.933252pt;}
.y10e{bottom:801.653252pt;}
.yc5{bottom:803.011529pt;}
.yc7{bottom:804.084011pt;}
.yc3{bottom:804.249463pt;}
.y2b{bottom:808.773252pt;}
.y66{bottom:816.773252pt;}
.y10d{bottom:821.573252pt;}
.y2a{bottom:826.399919pt;}
.y65{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.y10c{bottom:837.439919pt;}
.y29{bottom:851.999919pt;}
.y10b{bottom:853.279919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.h23{height:6.372557pt;}
.h27{height:7.696799pt;}
.h25{height:10.094098pt;}
.h1f{height:14.560000pt;}
.h2b{height:28.494542pt;}
.hf{height:35.603076pt;}
.h15{height:37.146455pt;}
.h24{height:37.643769pt;}
.h1c{height:39.390309pt;}
.h22{height:39.437709pt;}
.h1a{height:39.716653pt;}
.h17{height:40.008266pt;}
.hd{height:42.892500pt;}
.h28{height:45.457729pt;}
.h9{height:47.109375pt;}
.h11{height:47.550183pt;}
.hb{height:47.908125pt;}
.h8{height:48.375000pt;}
.h2c{height:50.062500pt;}
.h5{height:52.422344pt;}
.h7{height:52.448437pt;}
.hc{height:52.478750pt;}
.h13{height:52.480470pt;}
.h1e{height:52.621276pt;}
.h2a{height:52.671581pt;}
.h20{height:53.152969pt;}
.h19{height:53.433596pt;}
.ha{height:53.857500pt;}
.h10{height:57.763345pt;}
.h3{height:58.245469pt;}
.h4{height:59.017500pt;}
.h26{height:59.634011pt;}
.h6{height:62.812500pt;}
.h29{height:62.832879pt;}
.h18{height:64.194630pt;}
.h1d{height:65.514489pt;}
.h12{height:74.469918pt;}
.h14{height:86.285641pt;}
.he{height:170.173333pt;}
.h21{height:189.732365pt;}
.h1b{height:198.893333pt;}
.h16{height:212.666204pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w9{width:23.393237pt;}
.wb{width:26.267761pt;}
.wa{width:32.341875pt;}
.w4{width:53.667146pt;}
.w7{width:68.160000pt;}
.w3{width:208.066667pt;}
.w8{width:270.264455pt;}
.w5{width:305.793653pt;}
.w6{width:308.733333pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x1a{left:2.727371pt;}
.x32{left:9.920000pt;}
.x1b{left:13.182608pt;}
.x15{left:15.585571pt;}
.x19{left:27.000417pt;}
.x23{left:29.260294pt;}
.x22{left:31.781970pt;}
.x39{left:35.635518pt;}
.x18{left:38.273644pt;}
.x3b{left:39.420218pt;}
.x3a{left:45.675444pt;}
.x2f{left:48.997506pt;}
.x21{left:50.951980pt;}
.x25{left:66.168644pt;}
.x2{left:68.079990pt;}
.xe{left:69.679990pt;}
.x35{left:71.119990pt;}
.xb{left:72.719990pt;}
.x9{left:73.679990pt;}
.x20{left:75.249558pt;}
.x34{left:76.959990pt;}
.x36{left:78.159990pt;}
.x12{left:79.199990pt;}
.x2d{left:83.679990pt;}
.xf{left:87.119990pt;}
.x1{left:89.999990pt;}
.x7{left:98.826657pt;}
.x40{left:106.492052pt;}
.x2b{left:111.741584pt;}
.x5{left:114.426657pt;}
.x42{left:116.106657pt;}
.x2e{left:120.026657pt;}
.x16{left:121.134776pt;}
.x17{left:125.751854pt;}
.x29{left:146.465114pt;}
.x24{left:153.024341pt;}
.x3{left:176.986657pt;}
.x1f{left:177.906649pt;}
.x2a{left:184.974730pt;}
.x38{left:195.706649pt;}
.x26{left:199.770334pt;}
.x27{left:202.376232pt;}
.x10{left:212.426657pt;}
.x30{left:215.376219pt;}
.x3f{left:218.086509pt;}
.x14{left:226.733333pt;}
.x1e{left:227.626657pt;}
.x6{left:237.466657pt;}
.x28{left:238.448379pt;}
.xc{left:251.306657pt;}
.x37{left:284.213323pt;}
.x4{left:293.573323pt;}
.x3c{left:294.546849pt;}
.x8{left:298.133323pt;}
.x13{left:304.053323pt;}
.x3e{left:318.823572pt;}
.x3d{left:345.981784pt;}
.x1c{left:357.653323pt;}
.x31{left:381.893333pt;}
.xa{left:434.853323pt;}
.xd{left:450.213323pt;}
.x41{left:465.973323pt;}
.x33{left:467.813323pt;}
.x11{left:474.879990pt;}
.x2c{left:483.759990pt;}
.x1d{left:485.199990pt;}
}




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