
    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_7620f7dc6d868fa569e1dc27.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_c20bec12e9c6b65e68b7d73d.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_0a0bf73b4d1455d2cc580915.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109000;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_56d336f9163e3a04bbcf73ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_d5b74832faa7dc221e5955b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.103000;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_7e4f68fa3628bdab4e938e8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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_f781a97ed95202cb29ec0c23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_02260261e8a4118f95aac687.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_01cdd16f13dec01bcc9e12f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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_c20bec12e9c6b65e68b7d73d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_02260261e8a4118f95aac687.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;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_01cdd16f13dec01bcc9e12f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978000;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_bd68b128ccab728048d11bef.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_187a8f5d049950502fb12853.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921875;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_7b28cb1ead27c9d86d845ea1.woff2')format("woff");}.fff{font-family:fff;line-height:1.103000;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;}
.m3{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);}
.m4{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v6{vertical-align:-22.800600px;}
.v3{vertical-align:-21.600000px;}
.v7{vertical-align:-11.399400px;}
.v8{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v5{vertical-align:22.800600px;}
.v2{vertical-align:24.000000px;}
.v1{vertical-align:40.023600px;}
.ls41{letter-spacing:-3.600000px;}
.lsb{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-0.969000px;}
.lsd{letter-spacing:-0.960000px;}
.ls30{letter-spacing:-0.855000px;}
.ls28{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.627000px;}
.lsa{letter-spacing:-0.600000px;}
.ls33{letter-spacing:-0.598500px;}
.ls27{letter-spacing:-0.570000px;}
.ls40{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.510000px;}
.ls32{letter-spacing:-0.399000px;}
.lsc{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.306000px;}
.ls11{letter-spacing:-0.285000px;}
.ls13{letter-spacing:-0.228000px;}
.ls12{letter-spacing:-0.171000px;}
.ls14{letter-spacing:-0.165300px;}
.lsf{letter-spacing:-0.114000px;}
.ls10{letter-spacing:-0.057000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000176px;}
.ls0{letter-spacing:0.000353px;}
.ls2f{letter-spacing:0.001800px;}
.ls16{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.009333px;}
.ls37{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.010000px;}
.ls1c{letter-spacing:0.057000px;}
.ls3a{letter-spacing:0.102000px;}
.ls8{letter-spacing:0.109200px;}
.ls2c{letter-spacing:0.114000px;}
.ls39{letter-spacing:0.153000px;}
.ls6{letter-spacing:0.159600px;}
.ls4{letter-spacing:0.171000px;}
.ls3d{letter-spacing:0.204000px;}
.ls5{letter-spacing:0.228000px;}
.ls3b{letter-spacing:0.255000px;}
.ls7{letter-spacing:0.285000px;}
.ls3e{letter-spacing:0.306000px;}
.ls17{letter-spacing:0.342000px;}
.ls3f{letter-spacing:0.357000px;}
.ls34{letter-spacing:0.384000px;}
.ls1e{letter-spacing:0.456000px;}
.ls2a{letter-spacing:0.495900px;}
.ls1b{letter-spacing:0.513000px;}
.ls3c{letter-spacing:0.561000px;}
.ls1d{letter-spacing:0.570000px;}
.ls22{letter-spacing:0.597600px;}
.ls2d{letter-spacing:0.627000px;}
.ls1a{letter-spacing:0.741000px;}
.ls24{letter-spacing:0.798000px;}
.ls23{letter-spacing:0.854400px;}
.ls1f{letter-spacing:0.855000px;}
.ls29{letter-spacing:0.912000px;}
.ls15{letter-spacing:0.958200px;}
.ls38{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.140000px;}
.ls21{letter-spacing:1.254000px;}
.ls36{letter-spacing:1.876800px;}
.ls19{letter-spacing:2.074800px;}
.ls18{letter-spacing:2.491200px;}
.ls2e{letter-spacing:4.990800px;}
.ls35{letter-spacing:8.544600px;}
.ls25{letter-spacing:13.872000px;}
.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;}
}
.ws5{word-spacing:-13.728000px;}
.ws4{word-spacing:-13.344000px;}
.ws23{word-spacing:-12.996000px;}
.ws3{word-spacing:-12.480000px;}
.ws22{word-spacing:-12.426000px;}
.ws3c{word-spacing:-11.232000px;}
.ws3d{word-spacing:-10.848000px;}
.ws36{word-spacing:-10.464000px;}
.ws0{word-spacing:-9.156000px;}
.ws6{word-spacing:-8.857800px;}
.ws7{word-spacing:-8.698200px;}
.ws34{word-spacing:-8.299200px;}
.ws1{word-spacing:-8.240400px;}
.ws35{word-spacing:-8.099700px;}
.ws24{word-spacing:-7.702980px;}
.ws2{word-spacing:-7.488000px;}
.ws21{word-spacing:-7.207080px;}
.ws8{word-spacing:-7.041780px;}
.ws3f{word-spacing:-6.864000px;}
.ws3e{word-spacing:-6.069120px;}
.wsd{word-spacing:-2.592000px;}
.ws16{word-spacing:-1.872000px;}
.ws13{word-spacing:-1.584000px;}
.ws17{word-spacing:-1.536000px;}
.ws31{word-spacing:-1.254000px;}
.ws30{word-spacing:-1.140000px;}
.ws42{word-spacing:-1.071000px;}
.ws32{word-spacing:-0.912000px;}
.ws2f{word-spacing:-0.855000px;}
.ws26{word-spacing:-0.798000px;}
.ws2a{word-spacing:-0.741000px;}
.ws38{word-spacing:-0.627000px;}
.ws29{word-spacing:-0.570000px;}
.ws47{word-spacing:-0.561000px;}
.ws27{word-spacing:-0.513000px;}
.ws11{word-spacing:-0.480000px;}
.ws2b{word-spacing:-0.456000px;}
.ws41{word-spacing:-0.432000px;}
.ws3b{word-spacing:-0.399000px;}
.ws4a{word-spacing:-0.357000px;}
.ws25{word-spacing:-0.342000px;}
.ws15{word-spacing:-0.336000px;}
.ws46{word-spacing:-0.306000px;}
.ws1b{word-spacing:-0.285000px;}
.ws48{word-spacing:-0.255000px;}
.ws1a{word-spacing:-0.228000px;}
.ws49{word-spacing:-0.204000px;}
.ws18{word-spacing:-0.171000px;}
.ws44{word-spacing:-0.153000px;}
.ws37{word-spacing:-0.114000px;}
.ws45{word-spacing:-0.102000px;}
.ws28{word-spacing:-0.057000px;}
.ws9{word-spacing:0.000000px;}
.ws1c{word-spacing:0.057000px;}
.ws19{word-spacing:0.114000px;}
.ws1f{word-spacing:0.171000px;}
.ws20{word-spacing:0.228000px;}
.ws1e{word-spacing:0.285000px;}
.ws43{word-spacing:0.306000px;}
.wsc{word-spacing:0.360000px;}
.ws33{word-spacing:0.510000px;}
.ws40{word-spacing:0.540000px;}
.ws2d{word-spacing:0.570000px;}
.wsa{word-spacing:0.600000px;}
.ws2c{word-spacing:0.627000px;}
.ws1d{word-spacing:0.660000px;}
.ws2e{word-spacing:0.684000px;}
.ws39{word-spacing:0.855000px;}
.ws3a{word-spacing:0.969000px;}
.ws14{word-spacing:1.152000px;}
.wsb{word-spacing:1.440000px;}
.wse{word-spacing:1.872000px;}
.wsf{word-spacing:5.856000px;}
.ws12{word-spacing:6.048000px;}
.ws10{word-spacing:6.432000px;}
._5{margin-left:-924.871800px;}
._4{margin-left:-13.346667px;}
._13{margin-left:-10.107600px;}
._10{margin-left:-6.172800px;}
._7{margin-left:-5.016000px;}
._0{margin-left:-3.108600px;}
._2{margin-left:-1.440000px;}
._3{width:1.188600px;}
._a{width:2.280000px;}
._6{width:3.306000px;}
._8{width:5.016000px;}
._9{width:6.498000px;}
._e{width:7.782000px;}
._b{width:9.120000px;}
._c{width:10.845000px;}
._11{width:13.452000px;}
._12{width:15.120000px;}
._f{width:16.245000px;}
._14{width:21.267000px;}
._15{width:22.899000px;}
._1{width:61.594200px;}
._d{width:3829.036286px;}
.fc7{color:transparent;}
.fc5{color:rgb(66,178,60);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(163,43,155);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(33,81,168);}
.fc0{color:rgb(102,106,111);}
.fsd{font-size:27.840000px;}
.fsb{font-size:33.060000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fsa{font-size:39.900000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:40.157850px;}
.y35{bottom:50.163750px;}
.y1{bottom:53.409750px;}
.y79{bottom:99.531450px;}
.y65{bottom:115.401750px;}
.y33{bottom:117.823350px;}
.ya4{bottom:119.875200px;}
.y78{bottom:120.862800px;}
.y64{bottom:135.651750px;}
.y32{bottom:138.073350px;}
.ya3{bottom:140.218950px;}
.y77{bottom:142.194000px;}
.y63{bottom:155.901750px;}
.y31{bottom:158.323350px;}
.ya2{bottom:160.562700px;}
.y76{bottom:167.777250px;}
.y62{bottom:176.151750px;}
.y30{bottom:178.573350px;}
.ya1{bottom:180.906450px;}
.y75{bottom:189.108450px;}
.y61{bottom:196.401750px;}
.y2f{bottom:198.823350px;}
.ya0{bottom:201.250200px;}
.y74{bottom:210.439650px;}
.y60{bottom:216.651750px;}
.y2e{bottom:219.073350px;}
.y9f{bottom:221.593950px;}
.y73{bottom:231.770850px;}
.y5f{bottom:236.901750px;}
.y2d{bottom:239.323350px;}
.y9e{bottom:241.937700px;}
.y5e{bottom:257.151750px;}
.y72{bottom:257.354100px;}
.y2c{bottom:259.573350px;}
.y9d{bottom:266.533350px;}
.y5d{bottom:277.401750px;}
.y71{bottom:278.685450px;}
.y2b{bottom:279.823350px;}
.y9c{bottom:286.877100px;}
.y5c{bottom:297.651750px;}
.y70{bottom:300.016650px;}
.y2a{bottom:300.073350px;}
.y9b{bottom:307.220850px;}
.y29{bottom:320.323350px;}
.y6f{bottom:321.347850px;}
.y9a{bottom:327.564450px;}
.y5b{bottom:342.403800px;}
.y6e{bottom:346.931100px;}
.y99{bottom:347.908200px;}
.y28{bottom:365.075400px;}
.y98{bottom:368.251950px;}
.y6d{bottom:368.262300px;}
.y97{bottom:388.595700px;}
.y5a{bottom:391.407600px;}
.y6c{bottom:393.845550px;}
.yc5{bottom:403.083150px;}
.y96{bottom:408.939450px;}
.y59{bottom:411.657600px;}
.y6b{bottom:415.176750px;}
.yc4{bottom:421.833150px;}
.y95{bottom:429.283200px;}
.yd8{bottom:430.360200px;}
.y58{bottom:431.907600px;}
.y6a{bottom:436.508100px;}
.yc3{bottom:440.583150px;}
.yd7{bottom:449.110200px;}
.y94{bottom:449.626950px;}
.y57{bottom:452.157600px;}
.y69{bottom:457.839300px;}
.yc2{bottom:459.333150px;}
.yd6{bottom:467.860200px;}
.y93{bottom:469.970550px;}
.y27{bottom:470.515800px;}
.y56{bottom:472.407600px;}
.yc1{bottom:478.083150px;}
.y1b{bottom:478.271250px;}
.y68{bottom:479.170500px;}
.y26{bottom:484.015800px;}
.yd5{bottom:486.610200px;}
.y92{bottom:490.314300px;}
.y1a{bottom:491.771250px;}
.y55{bottom:492.657600px;}
.y25{bottom:497.515800px;}
.y67{bottom:500.501700px;}
.yc0{bottom:501.085200px;}
.y19{bottom:505.271250px;}
.yd4{bottom:505.360200px;}
.y91{bottom:510.658050px;}
.y24{bottom:511.015800px;}
.y54{bottom:512.907600px;}
.y18{bottom:518.771250px;}
.ybf{bottom:519.835200px;}
.yd3{bottom:524.110200px;}
.y23{bottom:524.515800px;}
.y90{bottom:531.001800px;}
.y17{bottom:532.271250px;}
.y53{bottom:533.157600px;}
.y66{bottom:534.242550px;}
.ybe{bottom:538.585200px;}
.y16{bottom:545.771250px;}
.yd2{bottom:547.112100px;}
.y8f{bottom:551.345550px;}
.y52{bottom:553.407600px;}
.ybd{bottom:557.335200px;}
.yab{bottom:562.520250px;}
.yd1{bottom:565.862100px;}
.y8e{bottom:571.689300px;}
.y51{bottom:573.657600px;}
.y4b{bottom:577.909650px;}
.y15{bottom:580.072350px;}
.ybc{bottom:580.337100px;}
.yd0{bottom:588.864150px;}
.y8d{bottom:592.033050px;}
.y50{bottom:593.907600px;}
.y14{bottom:598.072350px;}
.y4a{bottom:598.159650px;}
.ybb{bottom:599.087100px;}
.ycf{bottom:607.614150px;}
.y8c{bottom:612.376800px;}
.yba{bottom:617.837100px;}
.y49{bottom:618.409650px;}
.yce{bottom:626.364150px;}
.y12{bottom:631.401750px;}
.ya8{bottom:635.228850px;}
.y8b{bottom:636.972450px;}
.y48{bottom:638.659650px;}
.y22{bottom:639.909900px;}
.yb9{bottom:640.839150px;}
.y11{bottom:644.901750px;}
.ycd{bottom:645.114150px;}
.y21{bottom:653.409900px;}
.y8a{bottom:657.316200px;}
.y10{bottom:658.401750px;}
.y47{bottom:658.909650px;}
.yb8{bottom:659.589150px;}
.y20{bottom:666.909900px;}
.ycc{bottom:668.116050px;}
.yf{bottom:671.901750px;}
.y89{bottom:677.659950px;}
.yb7{bottom:678.339150px;}
.y13{bottom:678.625800px;}
.y46{bottom:679.159650px;}
.y1f{bottom:680.409900px;}
.ycb{bottom:686.866050px;}
.y1e{bottom:693.909900px;}
.y88{bottom:698.003700px;}
.y4f{bottom:699.409650px;}
.yb6{bottom:701.341050px;}
.y45{bottom:703.661700px;}
.yca{bottom:705.616050px;}
.y1d{bottom:707.409900px;}
.y87{bottom:718.347450px;}
.y4e{bottom:719.659650px;}
.yb5{bottom:720.091050px;}
.y1c{bottom:720.909900px;}
.y44{bottom:723.911700px;}
.yc9{bottom:724.366050px;}
.y86{bottom:738.691050px;}
.yb4{bottom:738.841050px;}
.y4d{bottom:739.909650px;}
.y43{bottom:744.161700px;}
.yc8{bottom:747.368100px;}
.y85{bottom:759.034800px;}
.y42{bottom:764.411700px;}
.yc7{bottom:766.118100px;}
.y84{bottom:779.378550px;}
.ye{bottom:781.617750px;}
.yb3{bottom:782.093100px;}
.y41{bottom:784.661700px;}
.yc6{bottom:784.868100px;}
.yd{bottom:793.617750px;}
.ya{bottom:797.048100px;}
.y83{bottom:803.974350px;}
.y40{bottom:804.911700px;}
.yc{bottom:814.121550px;}
.y9{bottom:815.048100px;}
.yaa{bottom:819.380550px;}
.y82{bottom:824.317950px;}
.y3f{bottom:825.161700px;}
.yb{bottom:826.121550px;}
.y8{bottom:833.048100px;}
.ya9{bottom:835.880550px;}
.y7{bottom:838.448100px;}
.yb2{bottom:842.240700px;}
.y81{bottom:844.661700px;}
.y3e{bottom:845.411700px;}
.yb1{bottom:857.240700px;}
.y80{bottom:865.005450px;}
.y3d{bottom:865.661700px;}
.y4c{bottom:869.913600px;}
.yb0{bottom:872.240700px;}
.y6{bottom:876.248100px;}
.y7f{bottom:885.349200px;}
.y3c{bottom:890.163600px;}
.y7e{bottom:909.945000px;}
.y3b{bottom:910.413600px;}
.yaf{bottom:911.742750px;}
.y5{bottom:915.248100px;}
.ya7{bottom:917.772150px;}
.y7d{bottom:930.288600px;}
.y3a{bottom:930.663600px;}
.y4{bottom:939.248100px;}
.y7c{bottom:950.632350px;}
.y39{bottom:950.913600px;}
.yae{bottom:955.496550px;}
.yad{bottom:970.496550px;}
.y7b{bottom:970.976100px;}
.y38{bottom:971.163600px;}
.y3{bottom:981.248100px;}
.ya6{bottom:989.982150px;}
.y7a{bottom:991.319850px;}
.y37{bottom:991.413600px;}
.ya5{bottom:1004.982150px;}
.yac{bottom:1009.998600px;}
.y36{bottom:1011.663600px;}
.y34{bottom:1068.316200px;}
.hc{height:30.384000px;}
.hb{height:30.780000px;}
.h2{height:31.836000px;}
.h7{height:32.545800px;}
.h8{height:36.000000px;}
.hd{height:36.384000px;}
.h1b{height:38.250000px;}
.h18{height:40.512000px;}
.h1a{height:41.040000px;}
.h1c{height:43.044000px;}
.h17{height:43.605000px;}
.h16{height:43.911000px;}
.ha{height:45.576000px;}
.h19{height:46.494000px;}
.h10{height:48.108000px;}
.h14{height:48.735000px;}
.h12{height:51.300000px;}
.he{height:51.660000px;}
.h9{height:54.145800px;}
.h13{height:56.475000px;}
.h15{height:56.475600px;}
.h11{height:56.476200px;}
.hf{height:56.826000px;}
.h6{height:59.910000px;}
.h5{height:72.324000px;}
.h3{height:91.323600px;}
.h4{height:123.984000px;}
.h0{height:1108.983750px;}
.h1{height:1109.250000px;}
.w0{width:811.346250px;}
.w1{width:811.500000px;}
.x1c{left:-721.098450px;}
.x0{left:0.000000px;}
.x1b{left:54.572250px;}
.x1a{left:86.400600px;}
.x13{left:91.104750px;}
.xe{left:95.104350px;}
.xf{left:98.869200px;}
.xc{left:108.474900px;}
.x11{left:120.632550px;}
.xd{left:124.576050px;}
.x10{left:127.732200px;}
.x17{left:145.130850px;}
.x18{left:147.037950px;}
.x19{left:151.835700px;}
.x12{left:153.511800px;}
.x1e{left:207.956700px;}
.x14{left:214.334700px;}
.x15{left:218.586600px;}
.x16{left:237.094500px;}
.x6{left:258.475350px;}
.x1d{left:276.344400px;}
.x4{left:278.343900px;}
.x9{left:374.361750px;}
.xb{left:418.497900px;}
.x1f{left:439.689000px;}
.x7{left:452.257800px;}
.x8{left:457.657800px;}
.x1{left:525.050100px;}
.xa{left:531.969000px;}
.x5{left:538.273950px;}
.x3{left:544.502850px;}
.x2{left:570.157050px;}
@media print{
.v6{vertical-align:-20.267200pt;}
.v3{vertical-align:-19.200000pt;}
.v7{vertical-align:-10.132800pt;}
.v8{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v5{vertical-align:20.267200pt;}
.v2{vertical-align:21.333333pt;}
.v1{vertical-align:35.576533pt;}
.ls41{letter-spacing:-3.200000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-0.861333pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls30{letter-spacing:-0.760000pt;}
.ls28{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.557333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls33{letter-spacing:-0.532000pt;}
.ls27{letter-spacing:-0.506667pt;}
.ls40{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.453333pt;}
.ls32{letter-spacing:-0.354667pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.272000pt;}
.ls11{letter-spacing:-0.253333pt;}
.ls13{letter-spacing:-0.202667pt;}
.ls12{letter-spacing:-0.152000pt;}
.ls14{letter-spacing:-0.146933pt;}
.lsf{letter-spacing:-0.101333pt;}
.ls10{letter-spacing:-0.050667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000157pt;}
.ls0{letter-spacing:0.000314pt;}
.ls2f{letter-spacing:0.001600pt;}
.ls16{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.008296pt;}
.ls37{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.008889pt;}
.ls1c{letter-spacing:0.050667pt;}
.ls3a{letter-spacing:0.090667pt;}
.ls8{letter-spacing:0.097067pt;}
.ls2c{letter-spacing:0.101333pt;}
.ls39{letter-spacing:0.136000pt;}
.ls6{letter-spacing:0.141867pt;}
.ls4{letter-spacing:0.152000pt;}
.ls3d{letter-spacing:0.181333pt;}
.ls5{letter-spacing:0.202667pt;}
.ls3b{letter-spacing:0.226667pt;}
.ls7{letter-spacing:0.253333pt;}
.ls3e{letter-spacing:0.272000pt;}
.ls17{letter-spacing:0.304000pt;}
.ls3f{letter-spacing:0.317333pt;}
.ls34{letter-spacing:0.341333pt;}
.ls1e{letter-spacing:0.405333pt;}
.ls2a{letter-spacing:0.440800pt;}
.ls1b{letter-spacing:0.456000pt;}
.ls3c{letter-spacing:0.498667pt;}
.ls1d{letter-spacing:0.506667pt;}
.ls22{letter-spacing:0.531200pt;}
.ls2d{letter-spacing:0.557333pt;}
.ls1a{letter-spacing:0.658667pt;}
.ls24{letter-spacing:0.709333pt;}
.ls23{letter-spacing:0.759467pt;}
.ls1f{letter-spacing:0.760000pt;}
.ls29{letter-spacing:0.810667pt;}
.ls15{letter-spacing:0.851733pt;}
.ls38{letter-spacing:0.906667pt;}
.ls20{letter-spacing:1.013333pt;}
.ls21{letter-spacing:1.114667pt;}
.ls36{letter-spacing:1.668267pt;}
.ls19{letter-spacing:1.844267pt;}
.ls18{letter-spacing:2.214400pt;}
.ls2e{letter-spacing:4.436267pt;}
.ls35{letter-spacing:7.595200pt;}
.ls25{letter-spacing:12.330667pt;}
.ws5{word-spacing:-12.202667pt;}
.ws4{word-spacing:-11.861333pt;}
.ws23{word-spacing:-11.552000pt;}
.ws3{word-spacing:-11.093333pt;}
.ws22{word-spacing:-11.045333pt;}
.ws3c{word-spacing:-9.984000pt;}
.ws3d{word-spacing:-9.642667pt;}
.ws36{word-spacing:-9.301333pt;}
.ws0{word-spacing:-8.138667pt;}
.ws6{word-spacing:-7.873600pt;}
.ws7{word-spacing:-7.731733pt;}
.ws34{word-spacing:-7.377067pt;}
.ws1{word-spacing:-7.324800pt;}
.ws35{word-spacing:-7.199733pt;}
.ws24{word-spacing:-6.847093pt;}
.ws2{word-spacing:-6.656000pt;}
.ws21{word-spacing:-6.406293pt;}
.ws8{word-spacing:-6.259360pt;}
.ws3f{word-spacing:-6.101333pt;}
.ws3e{word-spacing:-5.394773pt;}
.wsd{word-spacing:-2.304000pt;}
.ws16{word-spacing:-1.664000pt;}
.ws13{word-spacing:-1.408000pt;}
.ws17{word-spacing:-1.365333pt;}
.ws31{word-spacing:-1.114667pt;}
.ws30{word-spacing:-1.013333pt;}
.ws42{word-spacing:-0.952000pt;}
.ws32{word-spacing:-0.810667pt;}
.ws2f{word-spacing:-0.760000pt;}
.ws26{word-spacing:-0.709333pt;}
.ws2a{word-spacing:-0.658667pt;}
.ws38{word-spacing:-0.557333pt;}
.ws29{word-spacing:-0.506667pt;}
.ws47{word-spacing:-0.498667pt;}
.ws27{word-spacing:-0.456000pt;}
.ws11{word-spacing:-0.426667pt;}
.ws2b{word-spacing:-0.405333pt;}
.ws41{word-spacing:-0.384000pt;}
.ws3b{word-spacing:-0.354667pt;}
.ws4a{word-spacing:-0.317333pt;}
.ws25{word-spacing:-0.304000pt;}
.ws15{word-spacing:-0.298667pt;}
.ws46{word-spacing:-0.272000pt;}
.ws1b{word-spacing:-0.253333pt;}
.ws48{word-spacing:-0.226667pt;}
.ws1a{word-spacing:-0.202667pt;}
.ws49{word-spacing:-0.181333pt;}
.ws18{word-spacing:-0.152000pt;}
.ws44{word-spacing:-0.136000pt;}
.ws37{word-spacing:-0.101333pt;}
.ws45{word-spacing:-0.090667pt;}
.ws28{word-spacing:-0.050667pt;}
.ws9{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.050667pt;}
.ws19{word-spacing:0.101333pt;}
.ws1f{word-spacing:0.152000pt;}
.ws20{word-spacing:0.202667pt;}
.ws1e{word-spacing:0.253333pt;}
.ws43{word-spacing:0.272000pt;}
.wsc{word-spacing:0.320000pt;}
.ws33{word-spacing:0.453333pt;}
.ws40{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.506667pt;}
.wsa{word-spacing:0.533333pt;}
.ws2c{word-spacing:0.557333pt;}
.ws1d{word-spacing:0.586667pt;}
.ws2e{word-spacing:0.608000pt;}
.ws39{word-spacing:0.760000pt;}
.ws3a{word-spacing:0.861333pt;}
.ws14{word-spacing:1.024000pt;}
.wsb{word-spacing:1.280000pt;}
.wse{word-spacing:1.664000pt;}
.wsf{word-spacing:5.205333pt;}
.ws12{word-spacing:5.376000pt;}
.ws10{word-spacing:5.717333pt;}
._5{margin-left:-822.108267pt;}
._4{margin-left:-11.863704pt;}
._13{margin-left:-8.984533pt;}
._10{margin-left:-5.486933pt;}
._7{margin-left:-4.458667pt;}
._0{margin-left:-2.763200pt;}
._2{margin-left:-1.280000pt;}
._3{width:1.056533pt;}
._a{width:2.026667pt;}
._6{width:2.938667pt;}
._8{width:4.458667pt;}
._9{width:5.776000pt;}
._e{width:6.917333pt;}
._b{width:8.106667pt;}
._c{width:9.640000pt;}
._11{width:11.957333pt;}
._12{width:13.440000pt;}
._f{width:14.440000pt;}
._14{width:18.904000pt;}
._15{width:20.354667pt;}
._1{width:54.750400pt;}
._d{width:3403.587810pt;}
.fsd{font-size:24.746667pt;}
.fsb{font-size:29.386667pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fsa{font-size:35.466667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:35.695867pt;}
.y35{bottom:44.590000pt;}
.y1{bottom:47.475333pt;}
.y79{bottom:88.472400pt;}
.y65{bottom:102.579333pt;}
.y33{bottom:104.731867pt;}
.ya4{bottom:106.555733pt;}
.y78{bottom:107.433600pt;}
.y64{bottom:120.579333pt;}
.y32{bottom:122.731867pt;}
.ya3{bottom:124.639067pt;}
.y77{bottom:126.394667pt;}
.y63{bottom:138.579333pt;}
.y31{bottom:140.731867pt;}
.ya2{bottom:142.722400pt;}
.y76{bottom:149.135333pt;}
.y62{bottom:156.579333pt;}
.y30{bottom:158.731867pt;}
.ya1{bottom:160.805733pt;}
.y75{bottom:168.096400pt;}
.y61{bottom:174.579333pt;}
.y2f{bottom:176.731867pt;}
.ya0{bottom:178.889067pt;}
.y74{bottom:187.057467pt;}
.y60{bottom:192.579333pt;}
.y2e{bottom:194.731867pt;}
.y9f{bottom:196.972400pt;}
.y73{bottom:206.018533pt;}
.y5f{bottom:210.579333pt;}
.y2d{bottom:212.731867pt;}
.y9e{bottom:215.055733pt;}
.y5e{bottom:228.579333pt;}
.y72{bottom:228.759200pt;}
.y2c{bottom:230.731867pt;}
.y9d{bottom:236.918533pt;}
.y5d{bottom:246.579333pt;}
.y71{bottom:247.720400pt;}
.y2b{bottom:248.731867pt;}
.y9c{bottom:255.001867pt;}
.y5c{bottom:264.579333pt;}
.y70{bottom:266.681467pt;}
.y2a{bottom:266.731867pt;}
.y9b{bottom:273.085200pt;}
.y29{bottom:284.731867pt;}
.y6f{bottom:285.642533pt;}
.y9a{bottom:291.168400pt;}
.y5b{bottom:304.358933pt;}
.y6e{bottom:308.383200pt;}
.y99{bottom:309.251733pt;}
.y28{bottom:324.511467pt;}
.y98{bottom:327.335067pt;}
.y6d{bottom:327.344267pt;}
.y97{bottom:345.418400pt;}
.y5a{bottom:347.917867pt;}
.y6c{bottom:350.084933pt;}
.yc5{bottom:358.296133pt;}
.y96{bottom:363.501733pt;}
.y59{bottom:365.917867pt;}
.y6b{bottom:369.046000pt;}
.yc4{bottom:374.962800pt;}
.y95{bottom:381.585067pt;}
.yd8{bottom:382.542400pt;}
.y58{bottom:383.917867pt;}
.y6a{bottom:388.007200pt;}
.yc3{bottom:391.629467pt;}
.yd7{bottom:399.209067pt;}
.y94{bottom:399.668400pt;}
.y57{bottom:401.917867pt;}
.y69{bottom:406.968267pt;}
.yc2{bottom:408.296133pt;}
.yd6{bottom:415.875733pt;}
.y93{bottom:417.751600pt;}
.y27{bottom:418.236267pt;}
.y56{bottom:419.917867pt;}
.yc1{bottom:424.962800pt;}
.y1b{bottom:425.130000pt;}
.y68{bottom:425.929333pt;}
.y26{bottom:430.236267pt;}
.yd5{bottom:432.542400pt;}
.y92{bottom:435.834933pt;}
.y1a{bottom:437.130000pt;}
.y55{bottom:437.917867pt;}
.y25{bottom:442.236267pt;}
.y67{bottom:444.890400pt;}
.yc0{bottom:445.409067pt;}
.y19{bottom:449.130000pt;}
.yd4{bottom:449.209067pt;}
.y91{bottom:453.918267pt;}
.y24{bottom:454.236267pt;}
.y54{bottom:455.917867pt;}
.y18{bottom:461.130000pt;}
.ybf{bottom:462.075733pt;}
.yd3{bottom:465.875733pt;}
.y23{bottom:466.236267pt;}
.y90{bottom:472.001600pt;}
.y17{bottom:473.130000pt;}
.y53{bottom:473.917867pt;}
.y66{bottom:474.882267pt;}
.ybe{bottom:478.742400pt;}
.y16{bottom:485.130000pt;}
.yd2{bottom:486.321867pt;}
.y8f{bottom:490.084933pt;}
.y52{bottom:491.917867pt;}
.ybd{bottom:495.409067pt;}
.yab{bottom:500.018000pt;}
.yd1{bottom:502.988533pt;}
.y8e{bottom:508.168267pt;}
.y51{bottom:509.917867pt;}
.y4b{bottom:513.697467pt;}
.y15{bottom:515.619867pt;}
.ybc{bottom:515.855200pt;}
.yd0{bottom:523.434800pt;}
.y8d{bottom:526.251600pt;}
.y50{bottom:527.917867pt;}
.y14{bottom:531.619867pt;}
.y4a{bottom:531.697467pt;}
.ybb{bottom:532.521867pt;}
.ycf{bottom:540.101467pt;}
.y8c{bottom:544.334933pt;}
.yba{bottom:549.188533pt;}
.y49{bottom:549.697467pt;}
.yce{bottom:556.768133pt;}
.y12{bottom:561.246000pt;}
.ya8{bottom:564.647867pt;}
.y8b{bottom:566.197733pt;}
.y48{bottom:567.697467pt;}
.y22{bottom:568.808800pt;}
.yb9{bottom:569.634800pt;}
.y11{bottom:573.246000pt;}
.ycd{bottom:573.434800pt;}
.y21{bottom:580.808800pt;}
.y8a{bottom:584.281067pt;}
.y10{bottom:585.246000pt;}
.y47{bottom:585.697467pt;}
.yb8{bottom:586.301467pt;}
.y20{bottom:592.808800pt;}
.ycc{bottom:593.880933pt;}
.yf{bottom:597.246000pt;}
.y89{bottom:602.364400pt;}
.yb7{bottom:602.968133pt;}
.y13{bottom:603.222933pt;}
.y46{bottom:603.697467pt;}
.y1f{bottom:604.808800pt;}
.ycb{bottom:610.547600pt;}
.y1e{bottom:616.808800pt;}
.y88{bottom:620.447733pt;}
.y4f{bottom:621.697467pt;}
.yb6{bottom:623.414267pt;}
.y45{bottom:625.477067pt;}
.yca{bottom:627.214267pt;}
.y1d{bottom:628.808800pt;}
.y87{bottom:638.531067pt;}
.y4e{bottom:639.697467pt;}
.yb5{bottom:640.080933pt;}
.y1c{bottom:640.808800pt;}
.y44{bottom:643.477067pt;}
.yc9{bottom:643.880933pt;}
.y86{bottom:656.614267pt;}
.yb4{bottom:656.747600pt;}
.y4d{bottom:657.697467pt;}
.y43{bottom:661.477067pt;}
.yc8{bottom:664.327200pt;}
.y85{bottom:674.697600pt;}
.y42{bottom:679.477067pt;}
.yc7{bottom:680.993867pt;}
.y84{bottom:692.780933pt;}
.ye{bottom:694.771333pt;}
.yb3{bottom:695.193867pt;}
.y41{bottom:697.477067pt;}
.yc6{bottom:697.660533pt;}
.yd{bottom:705.438000pt;}
.ya{bottom:708.487200pt;}
.y83{bottom:714.643867pt;}
.y40{bottom:715.477067pt;}
.yc{bottom:723.663600pt;}
.y9{bottom:724.487200pt;}
.yaa{bottom:728.338267pt;}
.y82{bottom:732.727067pt;}
.y3f{bottom:733.477067pt;}
.yb{bottom:734.330267pt;}
.y8{bottom:740.487200pt;}
.ya9{bottom:743.004933pt;}
.y7{bottom:745.287200pt;}
.yb2{bottom:748.658400pt;}
.y81{bottom:750.810400pt;}
.y3e{bottom:751.477067pt;}
.yb1{bottom:761.991733pt;}
.y80{bottom:768.893733pt;}
.y3d{bottom:769.477067pt;}
.y4c{bottom:773.256533pt;}
.yb0{bottom:775.325067pt;}
.y6{bottom:778.887200pt;}
.y7f{bottom:786.977067pt;}
.y3c{bottom:791.256533pt;}
.y7e{bottom:808.840000pt;}
.y3b{bottom:809.256533pt;}
.yaf{bottom:810.438000pt;}
.y5{bottom:813.553867pt;}
.ya7{bottom:815.797467pt;}
.y7d{bottom:826.923200pt;}
.y3a{bottom:827.256533pt;}
.y4{bottom:834.887200pt;}
.y7c{bottom:845.006533pt;}
.y39{bottom:845.256533pt;}
.yae{bottom:849.330267pt;}
.yad{bottom:862.663600pt;}
.y7b{bottom:863.089867pt;}
.y38{bottom:863.256533pt;}
.y3{bottom:872.220533pt;}
.ya6{bottom:879.984133pt;}
.y7a{bottom:881.173200pt;}
.y37{bottom:881.256533pt;}
.ya5{bottom:893.317467pt;}
.yac{bottom:897.776533pt;}
.y36{bottom:899.256533pt;}
.y34{bottom:949.614400pt;}
.hc{height:27.008000pt;}
.hb{height:27.360000pt;}
.h2{height:28.298667pt;}
.h7{height:28.929600pt;}
.h8{height:32.000000pt;}
.hd{height:32.341333pt;}
.h1b{height:34.000000pt;}
.h18{height:36.010667pt;}
.h1a{height:36.480000pt;}
.h1c{height:38.261333pt;}
.h17{height:38.760000pt;}
.h16{height:39.032000pt;}
.ha{height:40.512000pt;}
.h19{height:41.328000pt;}
.h10{height:42.762667pt;}
.h14{height:43.320000pt;}
.h12{height:45.600000pt;}
.he{height:45.920000pt;}
.h9{height:48.129600pt;}
.h13{height:50.200000pt;}
.h15{height:50.200533pt;}
.h11{height:50.201067pt;}
.hf{height:50.512000pt;}
.h6{height:53.253333pt;}
.h5{height:64.288000pt;}
.h3{height:81.176533pt;}
.h4{height:110.208000pt;}
.h0{height:985.763333pt;}
.h1{height:986.000000pt;}
.w0{width:721.196667pt;}
.w1{width:721.333333pt;}
.x1c{left:-640.976400pt;}
.x0{left:0.000000pt;}
.x1b{left:48.508667pt;}
.x1a{left:76.800533pt;}
.x13{left:80.982000pt;}
.xe{left:84.537200pt;}
.xf{left:87.883733pt;}
.xc{left:96.422133pt;}
.x11{left:107.228933pt;}
.xd{left:110.734267pt;}
.x10{left:113.539733pt;}
.x17{left:129.005200pt;}
.x18{left:130.700400pt;}
.x19{left:134.965067pt;}
.x12{left:136.454933pt;}
.x1e{left:184.850400pt;}
.x14{left:190.519733pt;}
.x15{left:194.299200pt;}
.x16{left:210.750667pt;}
.x6{left:229.755867pt;}
.x1d{left:245.639467pt;}
.x4{left:247.416800pt;}
.x9{left:332.766000pt;}
.xb{left:371.998133pt;}
.x1f{left:390.834667pt;}
.x7{left:402.006933pt;}
.x8{left:406.806933pt;}
.x1{left:466.711200pt;}
.xa{left:472.861333pt;}
.x5{left:478.465733pt;}
.x3{left:484.002533pt;}
.x2{left:506.806267pt;}
}




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