
    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_aa5c2321fab2e6bd7a390579.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_3e9110b03b70985f2eaac12d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_e6563782d71794868a551b3b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_5f03a29632c15b47616ab34a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_cba8e66c97df9a79344b0e9a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_e545ad6974df1eab409adb61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_6027952488325d3e323d814a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_ea1c8133be863173c176bf2b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.801270;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_602f8d3071b2dd66de46f356.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b4f4dd84846af1d0b8de3a4c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_8f23e217ff88a1c38af9e49b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.050000;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_fb2b89c44e58763d92373279.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.900000;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_d30ba2d85388908d581e43f6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_90cbd0922da6bb3c9416e820.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;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:ff10;src:url('chunks/assets/font_2580738afc298f48f9a36ed5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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;}
.m1{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,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(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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls5e{letter-spacing:-1.663200px;}
.ls1c{letter-spacing:-1.632960px;}
.ls4d{letter-spacing:-1.614816px;}
.ls4e{letter-spacing:-1.596672px;}
.ls5a{letter-spacing:-1.584576px;}
.ls1e{letter-spacing:-1.536192px;}
.ls4b{letter-spacing:-1.518048px;}
.ls1d{letter-spacing:-1.505952px;}
.ls4c{letter-spacing:-1.499904px;}
.ls1f{letter-spacing:-1.475712px;}
.ls44{letter-spacing:-1.457568px;}
.ls47{letter-spacing:-1.439424px;}
.ls4a{letter-spacing:-1.421280px;}
.ls48{letter-spacing:-1.378944px;}
.ls45{letter-spacing:-1.360800px;}
.ls49{letter-spacing:-1.342656px;}
.ls46{letter-spacing:-1.318464px;}
.ls15{letter-spacing:-1.209600px;}
.ls16{letter-spacing:-1.202400px;}
.ls14{letter-spacing:-1.188000px;}
.ls13{letter-spacing:-0.223776px;}
.ls29{letter-spacing:-0.221760px;}
.lsf{letter-spacing:-0.178848px;}
.ls2a{letter-spacing:-0.177408px;}
.ls12{letter-spacing:-0.157248px;}
.ls9{letter-spacing:-0.145728px;}
.lse{letter-spacing:-0.132480px;}
.lsd{letter-spacing:-0.066240px;}
.lsa{letter-spacing:-0.059616px;}
.lsb{letter-spacing:-0.052992px;}
.ls10{letter-spacing:-0.021600px;}
.ls38{letter-spacing:-0.014400px;}
.lsc{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.058320px;}
.ls20{letter-spacing:0.202752px;}
.ls1{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240480px;}
.ls21{letter-spacing:0.994464px;}
.ls22{letter-spacing:0.995040px;}
.ls2c{letter-spacing:1.642032px;}
.ls28{letter-spacing:1.886400px;}
.ls51{letter-spacing:2.059200px;}
.ls33{letter-spacing:2.308320px;}
.ls52{letter-spacing:3.156480px;}
.ls3b{letter-spacing:3.201120px;}
.ls5{letter-spacing:3.227040px;}
.ls18{letter-spacing:3.683520px;}
.ls1a{letter-spacing:4.619520px;}
.ls17{letter-spacing:4.633920px;}
.ls3d{letter-spacing:4.776480px;}
.ls58{letter-spacing:5.457600px;}
.ls59{letter-spacing:5.765760px;}
.ls3e{letter-spacing:5.994144px;}
.ls24{letter-spacing:6.785280px;}
.ls43{letter-spacing:6.848640px;}
.ls3{letter-spacing:8.111520px;}
.ls30{letter-spacing:8.474400px;}
.ls26{letter-spacing:9.676800px;}
.ls27{letter-spacing:9.678240px;}
.ls32{letter-spacing:9.748512px;}
.ls3a{letter-spacing:10.120608px;}
.ls23{letter-spacing:11.925360px;}
.ls5d{letter-spacing:12.632976px;}
.ls4{letter-spacing:12.942720px;}
.ls7{letter-spacing:13.332960px;}
.ls6{letter-spacing:13.334400px;}
.ls2e{letter-spacing:13.525920px;}
.ls31{letter-spacing:14.060160px;}
.ls8{letter-spacing:15.829056px;}
.ls2b{letter-spacing:16.863840px;}
.ls34{letter-spacing:18.433584px;}
.ls3c{letter-spacing:18.519840px;}
.ls54{letter-spacing:18.549360px;}
.ls53{letter-spacing:18.549504px;}
.ls37{letter-spacing:19.031040px;}
.ls36{letter-spacing:19.032480px;}
.ls35{letter-spacing:19.032624px;}
.ls2{letter-spacing:19.825344px;}
.ls2d{letter-spacing:20.355408px;}
.ls39{letter-spacing:20.747520px;}
.ls19{letter-spacing:22.730400px;}
.ls3f{letter-spacing:23.808960px;}
.ls56{letter-spacing:24.505920px;}
.ls5c{letter-spacing:24.932160px;}
.ls5b{letter-spacing:24.933600px;}
.ls2f{letter-spacing:26.036640px;}
.ls57{letter-spacing:26.557776px;}
.ls25{letter-spacing:28.893600px;}
.ls40{letter-spacing:32.019984px;}
.ls1b{letter-spacing:34.060320px;}
.ls4f{letter-spacing:43.066080px;}
.ls55{letter-spacing:46.111680px;}
.ls50{letter-spacing:47.252160px;}
.ls42{letter-spacing:53.355168px;}
.ls41{letter-spacing:53.355600px;}
.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;}
}
.ws2{word-spacing:-26.978400px;}
.ws0{word-spacing:-18.414720px;}
.ws6{word-spacing:-18.000000px;}
.wse{word-spacing:-17.985600px;}
.wsc{word-spacing:-16.813440px;}
.ws5{word-spacing:-16.812000px;}
.ws7{word-spacing:-16.797600px;}
.ws8{word-spacing:-16.790400px;}
.wsb{word-spacing:-15.307488px;}
.wsa{word-spacing:-15.180480px;}
.ws11{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.896224px;}
.ws1b{word-spacing:-13.801536px;}
.ws15{word-spacing:-13.777344px;}
.ws14{word-spacing:-13.759200px;}
.ws13{word-spacing:-13.741056px;}
.ws16{word-spacing:-13.698720px;}
.ws12{word-spacing:-13.680576px;}
.ws10{word-spacing:-13.662432px;}
.ws1a{word-spacing:-13.620096px;}
.ws18{word-spacing:-13.601952px;}
.wsf{word-spacing:-13.583808px;}
.ws19{word-spacing:-13.535424px;}
.ws17{word-spacing:-13.523328px;}
.ws3{word-spacing:-0.097200px;}
.ws1{word-spacing:-0.050400px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:32.181696px;}
._2f{margin-left:-6.688800px;}
._11{margin-left:-2.258640px;}
._0{margin-left:-1.009872px;}
._e{width:1.296000px;}
._12{width:2.448000px;}
._b{width:3.456000px;}
._d{width:4.464000px;}
._1a{width:5.472000px;}
._5{width:6.480000px;}
._7{width:7.632000px;}
._4{width:8.640000px;}
._6{width:10.584000px;}
._2{width:12.384000px;}
._a{width:14.184000px;}
._14{width:15.314400px;}
._2c{width:16.417872px;}
._f{width:17.985024px;}
._1{width:19.060992px;}
._13{width:20.062080px;}
._c{width:22.104000px;}
._15{width:23.688000px;}
._3{width:24.840000px;}
._8{width:26.738640px;}
._9{width:27.874800px;}
._10{width:29.149200px;}
._17{width:31.042800px;}
._1c{width:32.112000px;}
._30{width:33.179904px;}
._1b{width:34.272000px;}
._16{width:35.280000px;}
._1d{width:37.296000px;}
._18{width:40.180608px;}
._19{width:41.295744px;}
._1e{width:42.984000px;}
._24{width:45.057600px;}
._2e{width:46.894176px;}
._25{width:48.263040px;}
._26{width:49.436352px;}
._1f{width:52.616736px;}
._20{width:54.690912px;}
._21{width:55.793232px;}
._2b{width:60.600960px;}
._2a{width:75.777120px;}
._28{width:77.418720px;}
._27{width:78.986880px;}
._29{width:129.971520px;}
._2d{width:131.483520px;}
._22{width:144.064800px;}
._23{width:145.532592px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.200000px;}
.y39{bottom:5.460000px;}
.y38{bottom:52.500000px;}
.y5{bottom:57.960000px;}
.y6{bottom:75.000000px;}
.y4{bottom:79.200000px;}
.ya5{bottom:92.880000px;}
.y6b{bottom:96.120000px;}
.yed{bottom:103.680000px;}
.ycd{bottom:104.760000px;}
.ybf{bottom:107.640000px;}
.y95{bottom:113.400000px;}
.y6a{bottom:116.640000px;}
.y127{bottom:119.160000px;}
.y35{bottom:119.520000px;}
.yec{bottom:120.960000px;}
.ycc{bottom:125.640000px;}
.ybe{bottom:128.520000px;}
.y94{bottom:134.280000px;}
.y126{bottom:136.440000px;}
.y69{bottom:137.520000px;}
.yeb{bottom:138.240000px;}
.y34{bottom:140.040000px;}
.ya4{bottom:145.800000px;}
.ycb{bottom:146.160000px;}
.ybd{bottom:149.040000px;}
.y125{bottom:153.720000px;}
.y93{bottom:154.800000px;}
.yea{bottom:155.520000px;}
.y68{bottom:158.040000px;}
.y33{bottom:160.920000px;}
.ya3{bottom:167.040000px;}
.ybc{bottom:169.920000px;}
.y124{bottom:171.000000px;}
.ye9{bottom:172.800000px;}
.y92{bottom:175.680000px;}
.yca{bottom:178.560000px;}
.y67{bottom:178.920000px;}
.y32{bottom:181.440000px;}
.ya2{bottom:187.560000px;}
.y123{bottom:188.280000px;}
.ye8{bottom:190.080000px;}
.ybb{bottom:190.440000px;}
.y91{bottom:196.200000px;}
.y66{bottom:199.440000px;}
.y31{bottom:202.320000px;}
.y122{bottom:205.560000px;}
.ye7{bottom:207.360000px;}
.ya1{bottom:208.440000px;}
.yba{bottom:211.320000px;}
.y90{bottom:217.080000px;}
.y65{bottom:220.320000px;}
.y30{bottom:222.840000px;}
.ye6{bottom:224.640000px;}
.ya0{bottom:228.960000px;}
.yb9{bottom:231.840000px;}
.y8f{bottom:237.600000px;}
.y121{bottom:240.120000px;}
.y64{bottom:240.840000px;}
.ye5{bottom:241.920000px;}
.y2f{bottom:243.720000px;}
.y9f{bottom:249.840000px;}
.yb8{bottom:252.720000px;}
.y120{bottom:257.040000px;}
.ye4{bottom:258.840000px;}
.y63{bottom:261.720000px;}
.y2e{bottom:264.240000px;}
.y8e{bottom:270.000000px;}
.y9e{bottom:270.360000px;}
.yb7{bottom:273.240000px;}
.y11f{bottom:274.320000px;}
.ye3{bottom:276.120000px;}
.y62{bottom:282.240000px;}
.y2d{bottom:285.120000px;}
.y8d{bottom:291.240000px;}
.y11e{bottom:291.600000px;}
.ye2{bottom:293.400000px;}
.yb6{bottom:294.120000px;}
.y61{bottom:303.120000px;}
.y2c{bottom:305.640000px;}
.y11d{bottom:308.880000px;}
.ye1{bottom:310.680000px;}
.y8c{bottom:311.760000px;}
.yb5{bottom:314.640000px;}
.y60{bottom:323.640000px;}
.y11c{bottom:326.160000px;}
.y2b{bottom:326.520000px;}
.ye0{bottom:327.960000px;}
.y8b{bottom:332.640000px;}
.yb4{bottom:335.520000px;}
.y11b{bottom:343.440000px;}
.y9d{bottom:344.160000px;}
.y5f{bottom:344.520000px;}
.ydf{bottom:345.240000px;}
.y2a{bottom:347.040000px;}
.y8a{bottom:353.160000px;}
.yb3{bottom:356.040000px;}
.y11a{bottom:360.720000px;}
.yde{bottom:362.520000px;}
.y5e{bottom:365.040000px;}
.y29{bottom:367.920000px;}
.y89{bottom:374.040000px;}
.yb2{bottom:376.920000px;}
.y119{bottom:378.000000px;}
.ydd{bottom:379.800000px;}
.y5d{bottom:385.920000px;}
.y28{bottom:388.440000px;}
.y88{bottom:394.560000px;}
.y118{bottom:395.280000px;}
.ydc{bottom:397.080000px;}
.yb1{bottom:397.440000px;}
.y5c{bottom:406.440000px;}
.y27{bottom:409.320000px;}
.y117{bottom:412.560000px;}
.ydb{bottom:414.360000px;}
.y87{bottom:415.440000px;}
.yb0{bottom:418.320000px;}
.y5b{bottom:427.320000px;}
.y26{bottom:429.840000px;}
.yda{bottom:431.640000px;}
.y86{bottom:435.960000px;}
.yaf{bottom:438.840000px;}
.y116{bottom:447.120000px;}
.y9c{bottom:447.840000px;}
.yd9{bottom:448.560000px;}
.y25{bottom:450.720000px;}
.y85{bottom:456.840000px;}
.y5a{bottom:459.720000px;}
.y115{bottom:464.040000px;}
.yd8{bottom:465.840000px;}
.y9b{bottom:468.720000px;}
.y24{bottom:471.240000px;}
.y84{bottom:477.360000px;}
.yae{bottom:480.240000px;}
.y59{bottom:480.600000px;}
.y114{bottom:481.320000px;}
.yd7{bottom:483.120000px;}
.yc9{bottom:489.240000px;}
.y23{bottom:492.120000px;}
.y113{bottom:498.600000px;}
.y9a{bottom:501.120000px;}
.y58{bottom:501.480000px;}
.y83{bottom:509.760000px;}
.yc8{bottom:510.120000px;}
.y22{bottom:512.640000px;}
.yd6{bottom:513.000000px;}
.y112{bottom:515.880000px;}
.yad{bottom:521.640000px;}
.y57{bottom:522.000000px;}
.y82{bottom:530.640000px;}
.y111{bottom:533.160000px;}
.y21{bottom:533.520000px;}
.yd5{bottom:534.240000px;}
.yac{bottom:542.520000px;}
.y56{bottom:542.880000px;}
.y110{bottom:550.440000px;}
.y81{bottom:551.520000px;}
.yd4{bottom:554.760000px;}
.yab{bottom:563.040000px;}
.y55{bottom:563.400000px;}
.y20{bottom:565.920000px;}
.y10f{bottom:567.720000px;}
.y80{bottom:572.040000px;}
.yd3{bottom:575.640000px;}
.y54{bottom:584.280000px;}
.y10e{bottom:585.000000px;}
.y1f{bottom:587.520000px;}
.y7f{bottom:592.920000px;}
.yaa{bottom:595.440000px;}
.yd2{bottom:596.160000px;}
.y10d{bottom:602.280000px;}
.y53{bottom:604.800000px;}
.y7e{bottom:613.440000px;}
.ya9{bottom:616.320000px;}
.yd1{bottom:617.040000px;}
.y1e{bottom:617.400000px;}
.y10c{bottom:619.560000px;}
.y52{bottom:625.680000px;}
.y7d{bottom:634.320000px;}
.y10b{bottom:636.840000px;}
.ya8{bottom:637.200000px;}
.yd0{bottom:637.560000px;}
.y1d{bottom:638.640000px;}
.y51{bottom:646.200000px;}
.y10a{bottom:653.760000px;}
.y7c{bottom:654.840000px;}
.ya7{bottom:657.720000px;}
.ycf{bottom:658.440000px;}
.y50{bottom:667.080000px;}
.y1c{bottom:667.800000px;}
.y109{bottom:671.040000px;}
.y7b{bottom:675.720000px;}
.y99{bottom:678.600000px;}
.yce{bottom:678.960000px;}
.y4f{bottom:687.600000px;}
.y108{bottom:688.320000px;}
.y1b{bottom:689.040000px;}
.y7a{bottom:696.240000px;}
.ya6{bottom:699.120000px;}
.y98{bottom:699.840000px;}
.y107{bottom:705.600000px;}
.y4e{bottom:708.480000px;}
.y1a{bottom:709.560000px;}
.y79{bottom:717.120000px;}
.y97{bottom:720.360000px;}
.y106{bottom:722.880000px;}
.yc7{bottom:729.000000px;}
.y19{bottom:730.440000px;}
.y105{bottom:740.160000px;}
.y4d{bottom:740.880000px;}
.y96{bottom:741.240000px;}
.y78{bottom:749.520000px;}
.yc6{bottom:749.880000px;}
.y18{bottom:750.960000px;}
.y104{bottom:757.440000px;}
.y4c{bottom:761.760000px;}
.y77{bottom:770.400000px;}
.y17{bottom:771.840000px;}
.y103{bottom:774.720000px;}
.y4b{bottom:782.280000px;}
.y76{bottom:791.280000px;}
.y102{bottom:792.000000px;}
.y16{bottom:792.360000px;}
.y4a{bottom:803.160000px;}
.y101{bottom:809.280000px;}
.y75{bottom:811.800000px;}
.y15{bottom:813.240000px;}
.y49{bottom:823.680000px;}
.y100{bottom:826.560000px;}
.y74{bottom:832.680000px;}
.y14{bottom:833.760000px;}
.yff{bottom:843.480000px;}
.y48{bottom:844.560000px;}
.y73{bottom:853.200000px;}
.y13{bottom:854.640000px;}
.yfe{bottom:860.760000px;}
.y47{bottom:865.080000px;}
.y72{bottom:874.080000px;}
.y12{bottom:875.160000px;}
.yfd{bottom:878.040000px;}
.y46{bottom:885.960000px;}
.y71{bottom:894.600000px;}
.yfc{bottom:895.320000px;}
.y11{bottom:896.040000px;}
.y45{bottom:906.480000px;}
.yfb{bottom:912.600000px;}
.y70{bottom:915.480000px;}
.y10{bottom:916.560000px;}
.y44{bottom:927.360000px;}
.yfa{bottom:929.880000px;}
.yc5{bottom:936.000000px;}
.yf{bottom:936.360000px;}
.yf9{bottom:947.160000px;}
.y6f{bottom:947.520000px;}
.y43{bottom:947.880000px;}
.yc4{bottom:956.880000px;}
.ye{bottom:959.040000px;}
.yf8{bottom:964.440000px;}
.y42{bottom:968.760000px;}
.yc3{bottom:977.400000px;}
.yd{bottom:980.280000px;}
.yf7{bottom:981.720000px;}
.y41{bottom:989.280000px;}
.yc2{bottom:998.280000px;}
.yf6{bottom:999.000000px;}
.yc{bottom:1001.520000px;}
.y40{bottom:1010.160000px;}
.yf5{bottom:1016.280000px;}
.yc1{bottom:1018.800000px;}
.yb{bottom:1023.840000px;}
.y3f{bottom:1030.680000px;}
.yf4{bottom:1033.560000px;}
.yf3{bottom:1050.480000px;}
.yc0{bottom:1051.200000px;}
.y3e{bottom:1051.560000px;}
.ya{bottom:1054.800000px;}
.yf2{bottom:1067.760000px;}
.y3d{bottom:1072.080000px;}
.yf1{bottom:1085.040000px;}
.y9{bottom:1086.120000px;}
.y3c{bottom:1092.960000px;}
.yf0{bottom:1102.320000px;}
.y3b{bottom:1113.480000px;}
.y8{bottom:1117.080000px;}
.yef{bottom:1119.600000px;}
.y3a{bottom:1134.360000px;}
.yee{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y6e{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y37{bottom:1171.800000px;}
.y1{bottom:1190.880000px;}
.y6d{bottom:1191.240000px;}
.y6c{bottom:1191.600000px;}
.y36{bottom:1192.320000px;}
.h5{height:21.000000px;}
.he{height:24.000000px;}
.h9{height:26.274375px;}
.h11{height:40.310156px;}
.ha{height:41.993438px;}
.h10{height:42.022969px;}
.h3{height:44.149219px;}
.hd{height:46.448640px;}
.hb{height:47.988281px;}
.hf{height:48.660480px;}
.hc{height:48.796875px;}
.h7{height:50.027344px;}
.h4{height:50.449219px;}
.h2{height:50.872320px;}
.h8{height:56.593125px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:127.439928px;}
.x7{left:134.142696px;}
.xe{left:144.256356px;}
.x4{left:154.439928px;}
.xa{left:164.279664px;}
.xd{left:169.965072px;}
.x6{left:180.674208px;}
.x2{left:233.702280px;}
.x8{left:240.639768px;}
.x1{left:242.852076px;}
.x9{left:268.642476px;}
.xb{left:351.977436px;}
.xf{left:356.422104px;}
.x3{left:446.152320px;}
.x10{left:534.392985px;}
.x5{left:735.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls5e{letter-spacing:-1.478400pt;}
.ls1c{letter-spacing:-1.451520pt;}
.ls4d{letter-spacing:-1.435392pt;}
.ls4e{letter-spacing:-1.419264pt;}
.ls5a{letter-spacing:-1.408512pt;}
.ls1e{letter-spacing:-1.365504pt;}
.ls4b{letter-spacing:-1.349376pt;}
.ls1d{letter-spacing:-1.338624pt;}
.ls4c{letter-spacing:-1.333248pt;}
.ls1f{letter-spacing:-1.311744pt;}
.ls44{letter-spacing:-1.295616pt;}
.ls47{letter-spacing:-1.279488pt;}
.ls4a{letter-spacing:-1.263360pt;}
.ls48{letter-spacing:-1.225728pt;}
.ls45{letter-spacing:-1.209600pt;}
.ls49{letter-spacing:-1.193472pt;}
.ls46{letter-spacing:-1.171968pt;}
.ls15{letter-spacing:-1.075200pt;}
.ls16{letter-spacing:-1.068800pt;}
.ls14{letter-spacing:-1.056000pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls29{letter-spacing:-0.197120pt;}
.lsf{letter-spacing:-0.158976pt;}
.ls2a{letter-spacing:-0.157696pt;}
.ls12{letter-spacing:-0.139776pt;}
.ls9{letter-spacing:-0.129536pt;}
.lse{letter-spacing:-0.117760pt;}
.lsd{letter-spacing:-0.058880pt;}
.lsa{letter-spacing:-0.052992pt;}
.lsb{letter-spacing:-0.047104pt;}
.ls10{letter-spacing:-0.019200pt;}
.ls38{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.051840pt;}
.ls20{letter-spacing:0.180224pt;}
.ls1{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213760pt;}
.ls21{letter-spacing:0.883968pt;}
.ls22{letter-spacing:0.884480pt;}
.ls2c{letter-spacing:1.459584pt;}
.ls28{letter-spacing:1.676800pt;}
.ls51{letter-spacing:1.830400pt;}
.ls33{letter-spacing:2.051840pt;}
.ls52{letter-spacing:2.805760pt;}
.ls3b{letter-spacing:2.845440pt;}
.ls5{letter-spacing:2.868480pt;}
.ls18{letter-spacing:3.274240pt;}
.ls1a{letter-spacing:4.106240pt;}
.ls17{letter-spacing:4.119040pt;}
.ls3d{letter-spacing:4.245760pt;}
.ls58{letter-spacing:4.851200pt;}
.ls59{letter-spacing:5.125120pt;}
.ls3e{letter-spacing:5.328128pt;}
.ls24{letter-spacing:6.031360pt;}
.ls43{letter-spacing:6.087680pt;}
.ls3{letter-spacing:7.210240pt;}
.ls30{letter-spacing:7.532800pt;}
.ls26{letter-spacing:8.601600pt;}
.ls27{letter-spacing:8.602880pt;}
.ls32{letter-spacing:8.665344pt;}
.ls3a{letter-spacing:8.996096pt;}
.ls23{letter-spacing:10.600320pt;}
.ls5d{letter-spacing:11.229312pt;}
.ls4{letter-spacing:11.504640pt;}
.ls7{letter-spacing:11.851520pt;}
.ls6{letter-spacing:11.852800pt;}
.ls2e{letter-spacing:12.023040pt;}
.ls31{letter-spacing:12.497920pt;}
.ls8{letter-spacing:14.070272pt;}
.ls2b{letter-spacing:14.990080pt;}
.ls34{letter-spacing:16.385408pt;}
.ls3c{letter-spacing:16.462080pt;}
.ls54{letter-spacing:16.488320pt;}
.ls53{letter-spacing:16.488448pt;}
.ls37{letter-spacing:16.916480pt;}
.ls36{letter-spacing:16.917760pt;}
.ls35{letter-spacing:16.917888pt;}
.ls2{letter-spacing:17.622528pt;}
.ls2d{letter-spacing:18.093696pt;}
.ls39{letter-spacing:18.442240pt;}
.ls19{letter-spacing:20.204800pt;}
.ls3f{letter-spacing:21.163520pt;}
.ls56{letter-spacing:21.783040pt;}
.ls5c{letter-spacing:22.161920pt;}
.ls5b{letter-spacing:22.163200pt;}
.ls2f{letter-spacing:23.143680pt;}
.ls57{letter-spacing:23.606912pt;}
.ls25{letter-spacing:25.683200pt;}
.ls40{letter-spacing:28.462208pt;}
.ls1b{letter-spacing:30.275840pt;}
.ls4f{letter-spacing:38.280960pt;}
.ls55{letter-spacing:40.988160pt;}
.ls50{letter-spacing:42.001920pt;}
.ls42{letter-spacing:47.426816pt;}
.ls41{letter-spacing:47.427200pt;}
.ws2{word-spacing:-23.980800pt;}
.ws0{word-spacing:-16.368640pt;}
.ws6{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.987200pt;}
.wsc{word-spacing:-14.945280pt;}
.ws5{word-spacing:-14.944000pt;}
.ws7{word-spacing:-14.931200pt;}
.ws8{word-spacing:-14.924800pt;}
.wsb{word-spacing:-13.606656pt;}
.wsa{word-spacing:-13.493760pt;}
.ws11{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.241088pt;}
.ws1b{word-spacing:-12.268032pt;}
.ws15{word-spacing:-12.246528pt;}
.ws14{word-spacing:-12.230400pt;}
.ws13{word-spacing:-12.214272pt;}
.ws16{word-spacing:-12.176640pt;}
.ws12{word-spacing:-12.160512pt;}
.ws10{word-spacing:-12.144384pt;}
.ws1a{word-spacing:-12.106752pt;}
.ws18{word-spacing:-12.090624pt;}
.wsf{word-spacing:-12.074496pt;}
.ws19{word-spacing:-12.031488pt;}
.ws17{word-spacing:-12.020736pt;}
.ws3{word-spacing:-0.086400pt;}
.ws1{word-spacing:-0.044800pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:28.605952pt;}
._2f{margin-left:-5.945600pt;}
._11{margin-left:-2.007680pt;}
._0{margin-left:-0.897664pt;}
._e{width:1.152000pt;}
._12{width:2.176000pt;}
._b{width:3.072000pt;}
._d{width:3.968000pt;}
._1a{width:4.864000pt;}
._5{width:5.760000pt;}
._7{width:6.784000pt;}
._4{width:7.680000pt;}
._6{width:9.408000pt;}
._2{width:11.008000pt;}
._a{width:12.608000pt;}
._14{width:13.612800pt;}
._2c{width:14.593664pt;}
._f{width:15.986688pt;}
._1{width:16.943104pt;}
._13{width:17.832960pt;}
._c{width:19.648000pt;}
._15{width:21.056000pt;}
._3{width:22.080000pt;}
._8{width:23.767680pt;}
._9{width:24.777600pt;}
._10{width:25.910400pt;}
._17{width:27.593600pt;}
._1c{width:28.544000pt;}
._30{width:29.493248pt;}
._1b{width:30.464000pt;}
._16{width:31.360000pt;}
._1d{width:33.152000pt;}
._18{width:35.716096pt;}
._19{width:36.707328pt;}
._1e{width:38.208000pt;}
._24{width:40.051200pt;}
._2e{width:41.683712pt;}
._25{width:42.900480pt;}
._26{width:43.943424pt;}
._1f{width:46.770432pt;}
._20{width:48.614144pt;}
._21{width:49.593984pt;}
._2b{width:53.867520pt;}
._2a{width:67.357440pt;}
._28{width:68.816640pt;}
._27{width:70.210560pt;}
._29{width:115.530240pt;}
._2d{width:116.874240pt;}
._22{width:128.057600pt;}
._23{width:129.362304pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.733333pt;}
.y39{bottom:4.853333pt;}
.y38{bottom:46.666667pt;}
.y5{bottom:51.520000pt;}
.y6{bottom:66.666667pt;}
.y4{bottom:70.400000pt;}
.ya5{bottom:82.560000pt;}
.y6b{bottom:85.440000pt;}
.yed{bottom:92.160000pt;}
.ycd{bottom:93.120000pt;}
.ybf{bottom:95.680000pt;}
.y95{bottom:100.800000pt;}
.y6a{bottom:103.680000pt;}
.y127{bottom:105.920000pt;}
.y35{bottom:106.240000pt;}
.yec{bottom:107.520000pt;}
.ycc{bottom:111.680000pt;}
.ybe{bottom:114.240000pt;}
.y94{bottom:119.360000pt;}
.y126{bottom:121.280000pt;}
.y69{bottom:122.240000pt;}
.yeb{bottom:122.880000pt;}
.y34{bottom:124.480000pt;}
.ya4{bottom:129.600000pt;}
.ycb{bottom:129.920000pt;}
.ybd{bottom:132.480000pt;}
.y125{bottom:136.640000pt;}
.y93{bottom:137.600000pt;}
.yea{bottom:138.240000pt;}
.y68{bottom:140.480000pt;}
.y33{bottom:143.040000pt;}
.ya3{bottom:148.480000pt;}
.ybc{bottom:151.040000pt;}
.y124{bottom:152.000000pt;}
.ye9{bottom:153.600000pt;}
.y92{bottom:156.160000pt;}
.yca{bottom:158.720000pt;}
.y67{bottom:159.040000pt;}
.y32{bottom:161.280000pt;}
.ya2{bottom:166.720000pt;}
.y123{bottom:167.360000pt;}
.ye8{bottom:168.960000pt;}
.ybb{bottom:169.280000pt;}
.y91{bottom:174.400000pt;}
.y66{bottom:177.280000pt;}
.y31{bottom:179.840000pt;}
.y122{bottom:182.720000pt;}
.ye7{bottom:184.320000pt;}
.ya1{bottom:185.280000pt;}
.yba{bottom:187.840000pt;}
.y90{bottom:192.960000pt;}
.y65{bottom:195.840000pt;}
.y30{bottom:198.080000pt;}
.ye6{bottom:199.680000pt;}
.ya0{bottom:203.520000pt;}
.yb9{bottom:206.080000pt;}
.y8f{bottom:211.200000pt;}
.y121{bottom:213.440000pt;}
.y64{bottom:214.080000pt;}
.ye5{bottom:215.040000pt;}
.y2f{bottom:216.640000pt;}
.y9f{bottom:222.080000pt;}
.yb8{bottom:224.640000pt;}
.y120{bottom:228.480000pt;}
.ye4{bottom:230.080000pt;}
.y63{bottom:232.640000pt;}
.y2e{bottom:234.880000pt;}
.y8e{bottom:240.000000pt;}
.y9e{bottom:240.320000pt;}
.yb7{bottom:242.880000pt;}
.y11f{bottom:243.840000pt;}
.ye3{bottom:245.440000pt;}
.y62{bottom:250.880000pt;}
.y2d{bottom:253.440000pt;}
.y8d{bottom:258.880000pt;}
.y11e{bottom:259.200000pt;}
.ye2{bottom:260.800000pt;}
.yb6{bottom:261.440000pt;}
.y61{bottom:269.440000pt;}
.y2c{bottom:271.680000pt;}
.y11d{bottom:274.560000pt;}
.ye1{bottom:276.160000pt;}
.y8c{bottom:277.120000pt;}
.yb5{bottom:279.680000pt;}
.y60{bottom:287.680000pt;}
.y11c{bottom:289.920000pt;}
.y2b{bottom:290.240000pt;}
.ye0{bottom:291.520000pt;}
.y8b{bottom:295.680000pt;}
.yb4{bottom:298.240000pt;}
.y11b{bottom:305.280000pt;}
.y9d{bottom:305.920000pt;}
.y5f{bottom:306.240000pt;}
.ydf{bottom:306.880000pt;}
.y2a{bottom:308.480000pt;}
.y8a{bottom:313.920000pt;}
.yb3{bottom:316.480000pt;}
.y11a{bottom:320.640000pt;}
.yde{bottom:322.240000pt;}
.y5e{bottom:324.480000pt;}
.y29{bottom:327.040000pt;}
.y89{bottom:332.480000pt;}
.yb2{bottom:335.040000pt;}
.y119{bottom:336.000000pt;}
.ydd{bottom:337.600000pt;}
.y5d{bottom:343.040000pt;}
.y28{bottom:345.280000pt;}
.y88{bottom:350.720000pt;}
.y118{bottom:351.360000pt;}
.ydc{bottom:352.960000pt;}
.yb1{bottom:353.280000pt;}
.y5c{bottom:361.280000pt;}
.y27{bottom:363.840000pt;}
.y117{bottom:366.720000pt;}
.ydb{bottom:368.320000pt;}
.y87{bottom:369.280000pt;}
.yb0{bottom:371.840000pt;}
.y5b{bottom:379.840000pt;}
.y26{bottom:382.080000pt;}
.yda{bottom:383.680000pt;}
.y86{bottom:387.520000pt;}
.yaf{bottom:390.080000pt;}
.y116{bottom:397.440000pt;}
.y9c{bottom:398.080000pt;}
.yd9{bottom:398.720000pt;}
.y25{bottom:400.640000pt;}
.y85{bottom:406.080000pt;}
.y5a{bottom:408.640000pt;}
.y115{bottom:412.480000pt;}
.yd8{bottom:414.080000pt;}
.y9b{bottom:416.640000pt;}
.y24{bottom:418.880000pt;}
.y84{bottom:424.320000pt;}
.yae{bottom:426.880000pt;}
.y59{bottom:427.200000pt;}
.y114{bottom:427.840000pt;}
.yd7{bottom:429.440000pt;}
.yc9{bottom:434.880000pt;}
.y23{bottom:437.440000pt;}
.y113{bottom:443.200000pt;}
.y9a{bottom:445.440000pt;}
.y58{bottom:445.760000pt;}
.y83{bottom:453.120000pt;}
.yc8{bottom:453.440000pt;}
.y22{bottom:455.680000pt;}
.yd6{bottom:456.000000pt;}
.y112{bottom:458.560000pt;}
.yad{bottom:463.680000pt;}
.y57{bottom:464.000000pt;}
.y82{bottom:471.680000pt;}
.y111{bottom:473.920000pt;}
.y21{bottom:474.240000pt;}
.yd5{bottom:474.880000pt;}
.yac{bottom:482.240000pt;}
.y56{bottom:482.560000pt;}
.y110{bottom:489.280000pt;}
.y81{bottom:490.240000pt;}
.yd4{bottom:493.120000pt;}
.yab{bottom:500.480000pt;}
.y55{bottom:500.800000pt;}
.y20{bottom:503.040000pt;}
.y10f{bottom:504.640000pt;}
.y80{bottom:508.480000pt;}
.yd3{bottom:511.680000pt;}
.y54{bottom:519.360000pt;}
.y10e{bottom:520.000000pt;}
.y1f{bottom:522.240000pt;}
.y7f{bottom:527.040000pt;}
.yaa{bottom:529.280000pt;}
.yd2{bottom:529.920000pt;}
.y10d{bottom:535.360000pt;}
.y53{bottom:537.600000pt;}
.y7e{bottom:545.280000pt;}
.ya9{bottom:547.840000pt;}
.yd1{bottom:548.480000pt;}
.y1e{bottom:548.800000pt;}
.y10c{bottom:550.720000pt;}
.y52{bottom:556.160000pt;}
.y7d{bottom:563.840000pt;}
.y10b{bottom:566.080000pt;}
.ya8{bottom:566.400000pt;}
.yd0{bottom:566.720000pt;}
.y1d{bottom:567.680000pt;}
.y51{bottom:574.400000pt;}
.y10a{bottom:581.120000pt;}
.y7c{bottom:582.080000pt;}
.ya7{bottom:584.640000pt;}
.ycf{bottom:585.280000pt;}
.y50{bottom:592.960000pt;}
.y1c{bottom:593.600000pt;}
.y109{bottom:596.480000pt;}
.y7b{bottom:600.640000pt;}
.y99{bottom:603.200000pt;}
.yce{bottom:603.520000pt;}
.y4f{bottom:611.200000pt;}
.y108{bottom:611.840000pt;}
.y1b{bottom:612.480000pt;}
.y7a{bottom:618.880000pt;}
.ya6{bottom:621.440000pt;}
.y98{bottom:622.080000pt;}
.y107{bottom:627.200000pt;}
.y4e{bottom:629.760000pt;}
.y1a{bottom:630.720000pt;}
.y79{bottom:637.440000pt;}
.y97{bottom:640.320000pt;}
.y106{bottom:642.560000pt;}
.yc7{bottom:648.000000pt;}
.y19{bottom:649.280000pt;}
.y105{bottom:657.920000pt;}
.y4d{bottom:658.560000pt;}
.y96{bottom:658.880000pt;}
.y78{bottom:666.240000pt;}
.yc6{bottom:666.560000pt;}
.y18{bottom:667.520000pt;}
.y104{bottom:673.280000pt;}
.y4c{bottom:677.120000pt;}
.y77{bottom:684.800000pt;}
.y17{bottom:686.080000pt;}
.y103{bottom:688.640000pt;}
.y4b{bottom:695.360000pt;}
.y76{bottom:703.360000pt;}
.y102{bottom:704.000000pt;}
.y16{bottom:704.320000pt;}
.y4a{bottom:713.920000pt;}
.y101{bottom:719.360000pt;}
.y75{bottom:721.600000pt;}
.y15{bottom:722.880000pt;}
.y49{bottom:732.160000pt;}
.y100{bottom:734.720000pt;}
.y74{bottom:740.160000pt;}
.y14{bottom:741.120000pt;}
.yff{bottom:749.760000pt;}
.y48{bottom:750.720000pt;}
.y73{bottom:758.400000pt;}
.y13{bottom:759.680000pt;}
.yfe{bottom:765.120000pt;}
.y47{bottom:768.960000pt;}
.y72{bottom:776.960000pt;}
.y12{bottom:777.920000pt;}
.yfd{bottom:780.480000pt;}
.y46{bottom:787.520000pt;}
.y71{bottom:795.200000pt;}
.yfc{bottom:795.840000pt;}
.y11{bottom:796.480000pt;}
.y45{bottom:805.760000pt;}
.yfb{bottom:811.200000pt;}
.y70{bottom:813.760000pt;}
.y10{bottom:814.720000pt;}
.y44{bottom:824.320000pt;}
.yfa{bottom:826.560000pt;}
.yc5{bottom:832.000000pt;}
.yf{bottom:832.320000pt;}
.yf9{bottom:841.920000pt;}
.y6f{bottom:842.240000pt;}
.y43{bottom:842.560000pt;}
.yc4{bottom:850.560000pt;}
.ye{bottom:852.480000pt;}
.yf8{bottom:857.280000pt;}
.y42{bottom:861.120000pt;}
.yc3{bottom:868.800000pt;}
.yd{bottom:871.360000pt;}
.yf7{bottom:872.640000pt;}
.y41{bottom:879.360000pt;}
.yc2{bottom:887.360000pt;}
.yf6{bottom:888.000000pt;}
.yc{bottom:890.240000pt;}
.y40{bottom:897.920000pt;}
.yf5{bottom:903.360000pt;}
.yc1{bottom:905.600000pt;}
.yb{bottom:910.080000pt;}
.y3f{bottom:916.160000pt;}
.yf4{bottom:918.720000pt;}
.yf3{bottom:933.760000pt;}
.yc0{bottom:934.400000pt;}
.y3e{bottom:934.720000pt;}
.ya{bottom:937.600000pt;}
.yf2{bottom:949.120000pt;}
.y3d{bottom:952.960000pt;}
.yf1{bottom:964.480000pt;}
.y9{bottom:965.440000pt;}
.y3c{bottom:971.520000pt;}
.yf0{bottom:979.840000pt;}
.y3b{bottom:989.760000pt;}
.y8{bottom:992.960000pt;}
.yef{bottom:995.200000pt;}
.y3a{bottom:1008.320000pt;}
.yee{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y6e{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y37{bottom:1041.600000pt;}
.y1{bottom:1058.560000pt;}
.y6d{bottom:1058.880000pt;}
.y6c{bottom:1059.200000pt;}
.y36{bottom:1059.840000pt;}
.h5{height:18.666667pt;}
.he{height:21.333333pt;}
.h9{height:23.355000pt;}
.h11{height:35.831250pt;}
.ha{height:37.327500pt;}
.h10{height:37.353750pt;}
.h3{height:39.243750pt;}
.hd{height:41.287680pt;}
.hb{height:42.656250pt;}
.hf{height:43.253760pt;}
.hc{height:43.375000pt;}
.h7{height:44.468750pt;}
.h4{height:44.843750pt;}
.h2{height:45.219840pt;}
.h8{height:50.305000pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:113.279936pt;}
.x7{left:119.237952pt;}
.xe{left:128.227872pt;}
.x4{left:137.279936pt;}
.xa{left:146.026368pt;}
.xd{left:151.080064pt;}
.x6{left:160.599296pt;}
.x2{left:207.735360pt;}
.x8{left:213.902016pt;}
.x1{left:215.868512pt;}
.x9{left:238.793312pt;}
.xb{left:312.868832pt;}
.xf{left:316.819648pt;}
.x3{left:396.579840pt;}
.x10{left:475.015987pt;}
.x5{left:653.333333pt;}
}




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