
    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_99172d3e396d3e88cd61ca0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_e1b9cc13018fba9d402e8616.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_d7b6d4beccf41bfd6f16aaa5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8dadf4f499aad643b4adf633.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_e1449cb6ee79ba54b0160f1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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_aad14e0e87e51eca87c65eb6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20938ebcef7b967acd65f854.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_d59eec5f7bff06071efa5720.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.775879;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_8e15475b11325a586f3a04dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734863;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_25d26477ef116d8755b2c3de.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.733887;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_9a4b1454ba60290e9d75c3ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_66079ea57542eb26975fa3bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_96ce4806720d6ae5401a1a0c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_aaf27fd9590644b183972aac.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3ee96e1bf2f97ef420cdac26.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d151123a04cdae5b7e4dc3b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.775879;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:ff11;src:url('chunks/assets/font_3891704081691c21a42f1534.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_347321e0be816ab26c38e1ab.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f786eb58f8523c758200d4be.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.713867;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:ff14;src:url('chunks/assets/font_1b7946e0efa07a8d3df37c57.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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:ff15;src:url('chunks/assets/font_daac392ee873fa5d46bef9b2.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-3.556800px;}
.ls48{letter-spacing:-3.488400px;}
.ls47{letter-spacing:-3.196800px;}
.ls35{letter-spacing:-3.002400px;}
.ls34{letter-spacing:-2.916000px;}
.ls8{letter-spacing:-1.850400px;}
.ls43{letter-spacing:-1.252800px;}
.ls26{letter-spacing:-1.242000px;}
.ls28{letter-spacing:-1.220400px;}
.ls29{letter-spacing:-1.188000px;}
.ls2a{letter-spacing:-1.177200px;}
.ls27{letter-spacing:-1.166400px;}
.ls3d{letter-spacing:-1.155600px;}
.ls23{letter-spacing:-0.678528px;}
.ls39{letter-spacing:-0.656640px;}
.ls30{letter-spacing:-0.569088px;}
.ls21{letter-spacing:-0.525312px;}
.ls3f{letter-spacing:-0.470592px;}
.ls1d{letter-spacing:-0.465120px;}
.ls2e{letter-spacing:-0.454176px;}
.ls2f{letter-spacing:-0.437760px;}
.ls2d{letter-spacing:-0.421344px;}
.ls49{letter-spacing:-0.415872px;}
.ls3c{letter-spacing:-0.404928px;}
.ls3a{letter-spacing:-0.393984px;}
.ls1e{letter-spacing:-0.366624px;}
.ls2c{letter-spacing:-0.333792px;}
.ls1f{letter-spacing:-0.328320px;}
.ls4a{letter-spacing:-0.254016px;}
.ls44{letter-spacing:-0.251712px;}
.ls16{letter-spacing:-0.225216px;}
.ls20{letter-spacing:-0.218880px;}
.ls33{letter-spacing:-0.218592px;}
.ls22{letter-spacing:-0.213408px;}
.ls17{letter-spacing:-0.205344px;}
.ls31{letter-spacing:-0.196992px;}
.ls40{letter-spacing:-0.186048px;}
.ls3b{letter-spacing:-0.169632px;}
.ls1c{letter-spacing:-0.165600px;}
.ls1a{letter-spacing:-0.158976px;}
.ls18{letter-spacing:-0.152352px;}
.ls12{letter-spacing:-0.145728px;}
.ls1b{letter-spacing:-0.139104px;}
.lsf{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.125856px;}
.ls4d{letter-spacing:-0.119232px;}
.lsd{letter-spacing:-0.116894px;}
.ls36{letter-spacing:-0.112608px;}
.ls10{letter-spacing:-0.105984px;}
.ls4f{letter-spacing:-0.099360px;}
.lsc{letter-spacing:-0.097412px;}
.ls15{letter-spacing:-0.086112px;}
.ls19{letter-spacing:-0.079488px;}
.ls4e{letter-spacing:-0.072864px;}
.ls13{letter-spacing:-0.066240px;}
.ls4c{letter-spacing:-0.059616px;}
.ls4b{letter-spacing:-0.052992px;}
.ls14{letter-spacing:-0.046368px;}
.ls2b{letter-spacing:-0.038965px;}
.ls9{letter-spacing:-0.036000px;}
.ls32{letter-spacing:-0.033120px;}
.lse{letter-spacing:-0.019482px;}
.ls7{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.005760px;}
.ls4{letter-spacing:0.007200px;}
.ls37{letter-spacing:0.011088px;}
.ls0{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.036000px;}
.ls45{letter-spacing:0.089280px;}
.ls41{letter-spacing:0.132480px;}
.lsb{letter-spacing:0.357120px;}
.ls42{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.509472px;}
.ls46{letter-spacing:0.516960px;}
.ls38{letter-spacing:0.553680px;}
.ls3e{letter-spacing:1.136160px;}
.ls25{letter-spacing:35.318736px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-17.222400px;}
.ws19{word-spacing:-17.176032px;}
.ws2f{word-spacing:-17.156160px;}
.ws13{word-spacing:-17.142912px;}
.ws1b{word-spacing:-17.136288px;}
.ws7{word-spacing:-17.116416px;}
.ws30{word-spacing:-17.103168px;}
.ws1c{word-spacing:-17.096544px;}
.ws25{word-spacing:-17.083296px;}
.ws15{word-spacing:-17.076672px;}
.ws14{word-spacing:-17.070048px;}
.ws29{word-spacing:-16.997184px;}
.ws4{word-spacing:-16.286400px;}
.ws2{word-spacing:-16.272000px;}
.ws1{word-spacing:-16.257600px;}
.ws3{word-spacing:-14.421600px;}
.wsc{word-spacing:-14.227200px;}
.ws27{word-spacing:-13.975488px;}
.ws28{word-spacing:-13.833216px;}
.ws2d{word-spacing:-13.811328px;}
.ws18{word-spacing:-13.805856px;}
.ws16{word-spacing:-13.773024px;}
.ws24{word-spacing:-13.756608px;}
.ws0{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.060480px;}
.wsa{word-spacing:-0.036000px;}
.ws9{word-spacing:-0.019872px;}
.ws5{word-spacing:0.000000px;}
.ws1f{word-spacing:0.013248px;}
.ws1a{word-spacing:0.019872px;}
.ws20{word-spacing:0.039744px;}
.ws21{word-spacing:0.059616px;}
.ws22{word-spacing:0.079488px;}
.wsd{word-spacing:0.158976px;}
.ws2e{word-spacing:0.193536px;}
.wsb{word-spacing:0.311904px;}
.ws17{word-spacing:0.383040px;}
.ws23{word-spacing:1.047600px;}
.wsf{word-spacing:1.058400px;}
.ws12{word-spacing:1.069200px;}
.ws11{word-spacing:1.080000px;}
.ws10{word-spacing:1.112400px;}
.wse{word-spacing:1.134000px;}
.ws26{word-spacing:1.144800px;}
.ws1d{word-spacing:2.808000px;}
.ws1e{word-spacing:2.894400px;}
.ws2b{word-spacing:3.088800px;}
.ws2c{word-spacing:3.380400px;}
.ws2a{word-spacing:840.132000px;}
._2{margin-left:-8.791200px;}
._5{margin-left:-5.454000px;}
._1{margin-left:-3.996000px;}
._0{margin-left:-1.846800px;}
._7{width:1.039059px;}
._4{width:2.304000px;}
._3{width:3.528000px;}
._9{width:2983.158576px;}
._6{width:3013.313904px;}
._8{width:3043.977264px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs5{font-size:64.941178px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:108.000000px;}
.y24{bottom:-0.960000px;}
.y0{bottom:0.000000px;}
.y23{bottom:27.480000px;}
.y26{bottom:50.040000px;}
.y22{bottom:53.040000px;}
.y1{bottom:60.000000px;}
.y21{bottom:78.240000px;}
.y20{bottom:103.800000px;}
.y49{bottom:122.040000px;}
.y1f{bottom:129.360000px;}
.y48{bottom:148.320000px;}
.y47{bottom:153.000000px;}
.y1e{bottom:154.560000px;}
.y60{bottom:169.920000px;}
.y46{bottom:171.360000px;}
.y7f{bottom:172.440000px;}
.yc6{bottom:173.880000px;}
.yd6{bottom:175.320000px;}
.ya2{bottom:176.760000px;}
.y1d{bottom:180.120000px;}
.y5f{bottom:188.280000px;}
.y45{bottom:189.720000px;}
.y87{bottom:193.680000px;}
.y7e{bottom:198.360000px;}
.ya1{bottom:202.680000px;}
.y1c{bottom:205.680000px;}
.yc5{bottom:207.720000px;}
.y86{bottom:210.960000px;}
.y5e{bottom:212.040000px;}
.y44{bottom:213.480000px;}
.ye8{bottom:214.200000px;}
.y7d{bottom:224.640000px;}
.y5d{bottom:225.000000px;}
.ya0{bottom:228.600000px;}
.yd5{bottom:229.320000px;}
.y43{bottom:230.760000px;}
.y1b{bottom:231.240000px;}
.ye7{bottom:240.120000px;}
.yb1{bottom:243.000000px;}
.y5c{bottom:243.360000px;}
.y7c{bottom:250.560000px;}
.y85{bottom:252.000000px;}
.y9f{bottom:254.880000px;}
.y1a{bottom:256.440000px;}
.yd4{bottom:262.800000px;}
.ybe{bottom:265.320000px;}
.y5b{bottom:266.040000px;}
.ye6{bottom:266.400000px;}
.yb0{bottom:268.920000px;}
.y7b{bottom:276.480000px;}
.y42{bottom:277.920000px;}
.y19{bottom:282.000000px;}
.ybd{bottom:291.240000px;}
.ye5{bottom:292.320000px;}
.y5a{bottom:293.760000px;}
.yaf{bottom:294.840000px;}
.yd3{bottom:297.720000px;}
.y7a{bottom:302.760000px;}
.y41{bottom:303.840000px;}
.y18{bottom:307.560000px;}
.y59{bottom:316.440000px;}
.ybc{bottom:317.520000px;}
.ye4{bottom:318.240000px;}
.y9e{bottom:319.320000px;}
.yae{bottom:321.120000px;}
.yd2{bottom:323.640000px;}
.y79{bottom:328.680000px;}
.y40{bottom:330.120000px;}
.y17{bottom:332.760000px;}
.y58{bottom:338.760000px;}
.ybb{bottom:343.440000px;}
.ye3{bottom:344.520000px;}
.yad{bottom:347.040000px;}
.yd1{bottom:349.920000px;}
.y9d{bottom:353.520000px;}
.y78{bottom:354.600000px;}
.y3f{bottom:356.040000px;}
.y16{bottom:358.320000px;}
.yba{bottom:369.360000px;}
.y57{bottom:370.080000px;}
.ye2{bottom:370.440000px;}
.yc4{bottom:372.960000px;}
.yd0{bottom:375.840000px;}
.y9c{bottom:379.440000px;}
.y77{bottom:380.520000px;}
.y3e{bottom:381.960000px;}
.y15{bottom:383.880000px;}
.y84{bottom:390.960000px;}
.y56{bottom:392.760000px;}
.ye1{bottom:396.360000px;}
.ycf{bottom:401.760000px;}
.yb9{bottom:404.640000px;}
.y9b{bottom:405.360000px;}
.y76{bottom:406.800000px;}
.y3d{bottom:408.240000px;}
.y14{bottom:410.520000px;}
.y54{bottom:415.080000px;}
.y55{bottom:415.330560px;}
.y83{bottom:417.240000px;}
.ye0{bottom:422.640000px;}
.yb8{bottom:430.560000px;}
.y9a{bottom:431.640000px;}
.y3c{bottom:434.160000px;}
.y13{bottom:440.400000px;}
.y75{bottom:441.720000px;}
.y82{bottom:443.160000px;}
.y53{bottom:446.760000px;}
.ydf{bottom:448.560000px;}
.yb7{bottom:456.480000px;}
.y99{bottom:457.560000px;}
.y3b{bottom:460.080000px;}
.yce{bottom:466.560000px;}
.y74{bottom:467.640000px;}
.y12{bottom:468.480000px;}
.y52{bottom:469.080000px;}
.yde{bottom:474.480000px;}
.yb6{bottom:482.400000px;}
.y98{bottom:483.480000px;}
.yac{bottom:486.000000px;}
.y51{bottom:491.400000px;}
.y73{bottom:493.920000px;}
.y11{bottom:494.040000px;}
.y3a{bottom:495.000000px;}
.ycd{bottom:500.400000px;}
.yb5{bottom:508.680000px;}
.y97{bottom:509.400000px;}
.yc3{bottom:512.280000px;}
.y10{bottom:519.600000px;}
.y72{bottom:519.840000px;}
.y39{bottom:521.280000px;}
.ydd{bottom:526.680000px;}
.y96{bottom:535.680000px;}
.yc2{bottom:538.200000px;}
.yf{bottom:545.160000px;}
.y71{bottom:545.760000px;}
.y38{bottom:547.200000px;}
.ydc{bottom:552.600000px;}
.y50{bottom:556.200000px;}
.y95{bottom:561.600000px;}
.ye{bottom:570.360000px;}
.y70{bottom:572.040000px;}
.y37{bottom:573.120000px;}
.yb4{bottom:573.480000px;}
.ydb{bottom:578.520000px;}
.y81{bottom:582.120000px;}
.y94{bottom:587.520000px;}
.yd{bottom:595.920000px;}
.y6f{bottom:597.960000px;}
.y4f{bottom:599.400000px;}
.yda{bottom:604.800000px;}
.y36{bottom:608.400000px;}
.y93{bottom:613.800000px;}
.yb3{bottom:616.320000px;}
.yc{bottom:621.480000px;}
.yab{bottom:625.320000px;}
.yd9{bottom:630.720000px;}
.y35{bottom:634.320000px;}
.y92{bottom:639.720000px;}
.yb{bottom:646.680000px;}
.yaa{bottom:651.240000px;}
.yd8{bottom:656.640000px;}
.y34{bottom:660.240000px;}
.y6e{bottom:662.760000px;}
.y91{bottom:665.640000px;}
.ya{bottom:672.240000px;}
.ya9{bottom:677.520000px;}
.y33{bottom:686.520000px;}
.y90{bottom:691.920000px;}
.y9{bottom:697.800000px;}
.y6d{bottom:702.000000px;}
.ya8{bottom:703.440000px;}
.y32{bottom:712.440000px;}
.y8f{bottom:717.840000px;}
.yd7{bottom:721.440000px;}
.y8{bottom:723.000000px;}
.yb2{bottom:729.360000px;}
.y6c{bottom:733.680000px;}
.y31{bottom:738.360000px;}
.y8e{bottom:743.760000px;}
.y7{bottom:748.560000px;}
.yc1{bottom:755.280000px;}
.y6b{bottom:756.000000px;}
.y4e{bottom:764.280000px;}
.y8d{bottom:769.680000px;}
.y30{bottom:773.280000px;}
.y6{bottom:774.120000px;}
.y6a{bottom:778.320000px;}
.y80{bottom:790.560000px;}
.y8c{bottom:795.960000px;}
.y2f{bottom:799.560000px;}
.y5{bottom:799.680000px;}
.y69{bottom:810.000000px;}
.ya7{bottom:816.480000px;}
.y8b{bottom:821.880000px;}
.y2e{bottom:825.480000px;}
.y4{bottom:826.320000px;}
.ycc{bottom:830.880000px;}
.y68{bottom:832.320000px;}
.ya6{bottom:842.400000px;}
.y8a{bottom:847.800000px;}
.y2d{bottom:851.400000px;}
.y67{bottom:855.000000px;}
.ycb{bottom:856.800000px;}
.y3{bottom:858.720000px;}
.ya5{bottom:868.680000px;}
.y89{bottom:874.080000px;}
.y66{bottom:877.320000px;}
.y2c{bottom:877.680000px;}
.yca{bottom:883.080000px;}
.ya4{bottom:894.600000px;}
.y2{bottom:895.800000px;}
.y2b{bottom:903.600000px;}
.y65{bottom:908.640000px;}
.yc9{bottom:909.000000px;}
.ya3{bottom:920.520000px;}
.y4d{bottom:929.520000px;}
.y2a{bottom:929.770589px;}
.y64{bottom:931.320000px;}
.yc8{bottom:934.920000px;}
.y88{bottom:938.880000px;}
.yc0{bottom:946.800000px;}
.y62{bottom:953.640000px;}
.y63{bottom:953.890589px;}
.y4c{bottom:955.800000px;}
.y29{bottom:956.050589px;}
.ybf{bottom:972.720000px;}
.y4b{bottom:981.720000px;}
.y28{bottom:981.970589px;}
.y61{bottom:985.320000px;}
.yc7{bottom:999.720000px;}
.y4a{bottom:1007.640000px;}
.y27{bottom:1007.890596px;}
.y25{bottom:1028.880000px;}
.hb{height:26.068359px;}
.hc{height:41.868281px;}
.hd{height:43.174688px;}
.h8{height:49.688880px;}
.h7{height:50.682656px;}
.h9{height:50.747344px;}
.h6{height:51.679688px;}
.h5{height:55.666406px;}
.ha{height:57.640078px;}
.h4{height:73.458984px;}
.h3{height:75.726563px;}
.h2{height:922.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:760.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:11.219964px;}
.x4{left:63.719964px;}
.x1{left:70.500000px;}
.x8{left:90.494748px;}
.xb{left:117.719964px;}
.x5{left:279.719964px;}
.x9{left:472.095000px;}
.xa{left:475.647840px;}
.x6{left:597.367800px;}
.x7{left:605.593440px;}
.x3{left:829.019880px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-3.161600pt;}
.ls48{letter-spacing:-3.100800pt;}
.ls47{letter-spacing:-2.841600pt;}
.ls35{letter-spacing:-2.668800pt;}
.ls34{letter-spacing:-2.592000pt;}
.ls8{letter-spacing:-1.644800pt;}
.ls43{letter-spacing:-1.113600pt;}
.ls26{letter-spacing:-1.104000pt;}
.ls28{letter-spacing:-1.084800pt;}
.ls29{letter-spacing:-1.056000pt;}
.ls2a{letter-spacing:-1.046400pt;}
.ls27{letter-spacing:-1.036800pt;}
.ls3d{letter-spacing:-1.027200pt;}
.ls23{letter-spacing:-0.603136pt;}
.ls39{letter-spacing:-0.583680pt;}
.ls30{letter-spacing:-0.505856pt;}
.ls21{letter-spacing:-0.466944pt;}
.ls3f{letter-spacing:-0.418304pt;}
.ls1d{letter-spacing:-0.413440pt;}
.ls2e{letter-spacing:-0.403712pt;}
.ls2f{letter-spacing:-0.389120pt;}
.ls2d{letter-spacing:-0.374528pt;}
.ls49{letter-spacing:-0.369664pt;}
.ls3c{letter-spacing:-0.359936pt;}
.ls3a{letter-spacing:-0.350208pt;}
.ls1e{letter-spacing:-0.325888pt;}
.ls2c{letter-spacing:-0.296704pt;}
.ls1f{letter-spacing:-0.291840pt;}
.ls4a{letter-spacing:-0.225792pt;}
.ls44{letter-spacing:-0.223744pt;}
.ls16{letter-spacing:-0.200192pt;}
.ls20{letter-spacing:-0.194560pt;}
.ls33{letter-spacing:-0.194304pt;}
.ls22{letter-spacing:-0.189696pt;}
.ls17{letter-spacing:-0.182528pt;}
.ls31{letter-spacing:-0.175104pt;}
.ls40{letter-spacing:-0.165376pt;}
.ls3b{letter-spacing:-0.150784pt;}
.ls1c{letter-spacing:-0.147200pt;}
.ls1a{letter-spacing:-0.141312pt;}
.ls18{letter-spacing:-0.135424pt;}
.ls12{letter-spacing:-0.129536pt;}
.ls1b{letter-spacing:-0.123648pt;}
.lsf{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.111872pt;}
.ls4d{letter-spacing:-0.105984pt;}
.lsd{letter-spacing:-0.103906pt;}
.ls36{letter-spacing:-0.100096pt;}
.ls10{letter-spacing:-0.094208pt;}
.ls4f{letter-spacing:-0.088320pt;}
.lsc{letter-spacing:-0.086588pt;}
.ls15{letter-spacing:-0.076544pt;}
.ls19{letter-spacing:-0.070656pt;}
.ls4e{letter-spacing:-0.064768pt;}
.ls13{letter-spacing:-0.058880pt;}
.ls4c{letter-spacing:-0.052992pt;}
.ls4b{letter-spacing:-0.047104pt;}
.ls14{letter-spacing:-0.041216pt;}
.ls2b{letter-spacing:-0.034635pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls32{letter-spacing:-0.029440pt;}
.lse{letter-spacing:-0.017318pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005120pt;}
.ls4{letter-spacing:0.006400pt;}
.ls37{letter-spacing:0.009856pt;}
.ls0{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.032000pt;}
.ls45{letter-spacing:0.079360pt;}
.ls41{letter-spacing:0.117760pt;}
.lsb{letter-spacing:0.317440pt;}
.ls42{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.452864pt;}
.ls46{letter-spacing:0.459520pt;}
.ls38{letter-spacing:0.492160pt;}
.ls3e{letter-spacing:1.009920pt;}
.ls25{letter-spacing:31.394432pt;}
.ws8{word-spacing:-15.308800pt;}
.ws19{word-spacing:-15.267584pt;}
.ws2f{word-spacing:-15.249920pt;}
.ws13{word-spacing:-15.238144pt;}
.ws1b{word-spacing:-15.232256pt;}
.ws7{word-spacing:-15.214592pt;}
.ws30{word-spacing:-15.202816pt;}
.ws1c{word-spacing:-15.196928pt;}
.ws25{word-spacing:-15.185152pt;}
.ws15{word-spacing:-15.179264pt;}
.ws14{word-spacing:-15.173376pt;}
.ws29{word-spacing:-15.108608pt;}
.ws4{word-spacing:-14.476800pt;}
.ws2{word-spacing:-14.464000pt;}
.ws1{word-spacing:-14.451200pt;}
.ws3{word-spacing:-12.819200pt;}
.wsc{word-spacing:-12.646400pt;}
.ws27{word-spacing:-12.422656pt;}
.ws28{word-spacing:-12.296192pt;}
.ws2d{word-spacing:-12.276736pt;}
.ws18{word-spacing:-12.271872pt;}
.ws16{word-spacing:-12.242688pt;}
.ws24{word-spacing:-12.228096pt;}
.ws0{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.053760pt;}
.wsa{word-spacing:-0.032000pt;}
.ws9{word-spacing:-0.017664pt;}
.ws5{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.011776pt;}
.ws1a{word-spacing:0.017664pt;}
.ws20{word-spacing:0.035328pt;}
.ws21{word-spacing:0.052992pt;}
.ws22{word-spacing:0.070656pt;}
.wsd{word-spacing:0.141312pt;}
.ws2e{word-spacing:0.172032pt;}
.wsb{word-spacing:0.277248pt;}
.ws17{word-spacing:0.340480pt;}
.ws23{word-spacing:0.931200pt;}
.wsf{word-spacing:0.940800pt;}
.ws12{word-spacing:0.950400pt;}
.ws11{word-spacing:0.960000pt;}
.ws10{word-spacing:0.988800pt;}
.wse{word-spacing:1.008000pt;}
.ws26{word-spacing:1.017600pt;}
.ws1d{word-spacing:2.496000pt;}
.ws1e{word-spacing:2.572800pt;}
.ws2b{word-spacing:2.745600pt;}
.ws2c{word-spacing:3.004800pt;}
.ws2a{word-spacing:746.784000pt;}
._2{margin-left:-7.814400pt;}
._5{margin-left:-4.848000pt;}
._1{margin-left:-3.552000pt;}
._0{margin-left:-1.641600pt;}
._7{width:0.923608pt;}
._4{width:2.048000pt;}
._3{width:3.136000pt;}
._9{width:2651.696512pt;}
._6{width:2678.501248pt;}
._8{width:2705.757568pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs5{font-size:57.725491pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:96.000000pt;}
.y24{bottom:-0.853333pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:24.426667pt;}
.y26{bottom:44.480000pt;}
.y22{bottom:47.146667pt;}
.y1{bottom:53.333333pt;}
.y21{bottom:69.546667pt;}
.y20{bottom:92.266667pt;}
.y49{bottom:108.480000pt;}
.y1f{bottom:114.986667pt;}
.y48{bottom:131.840000pt;}
.y47{bottom:136.000000pt;}
.y1e{bottom:137.386667pt;}
.y60{bottom:151.040000pt;}
.y46{bottom:152.320000pt;}
.y7f{bottom:153.280000pt;}
.yc6{bottom:154.560000pt;}
.yd6{bottom:155.840000pt;}
.ya2{bottom:157.120000pt;}
.y1d{bottom:160.106667pt;}
.y5f{bottom:167.360000pt;}
.y45{bottom:168.640000pt;}
.y87{bottom:172.160000pt;}
.y7e{bottom:176.320000pt;}
.ya1{bottom:180.160000pt;}
.y1c{bottom:182.826667pt;}
.yc5{bottom:184.640000pt;}
.y86{bottom:187.520000pt;}
.y5e{bottom:188.480000pt;}
.y44{bottom:189.760000pt;}
.ye8{bottom:190.400000pt;}
.y7d{bottom:199.680000pt;}
.y5d{bottom:200.000000pt;}
.ya0{bottom:203.200000pt;}
.yd5{bottom:203.840000pt;}
.y43{bottom:205.120000pt;}
.y1b{bottom:205.546667pt;}
.ye7{bottom:213.440000pt;}
.yb1{bottom:216.000000pt;}
.y5c{bottom:216.320000pt;}
.y7c{bottom:222.720000pt;}
.y85{bottom:224.000000pt;}
.y9f{bottom:226.560000pt;}
.y1a{bottom:227.946667pt;}
.yd4{bottom:233.600000pt;}
.ybe{bottom:235.840000pt;}
.y5b{bottom:236.480000pt;}
.ye6{bottom:236.800000pt;}
.yb0{bottom:239.040000pt;}
.y7b{bottom:245.760000pt;}
.y42{bottom:247.040000pt;}
.y19{bottom:250.666667pt;}
.ybd{bottom:258.880000pt;}
.ye5{bottom:259.840000pt;}
.y5a{bottom:261.120000pt;}
.yaf{bottom:262.080000pt;}
.yd3{bottom:264.640000pt;}
.y7a{bottom:269.120000pt;}
.y41{bottom:270.080000pt;}
.y18{bottom:273.386667pt;}
.y59{bottom:281.280000pt;}
.ybc{bottom:282.240000pt;}
.ye4{bottom:282.880000pt;}
.y9e{bottom:283.840000pt;}
.yae{bottom:285.440000pt;}
.yd2{bottom:287.680000pt;}
.y79{bottom:292.160000pt;}
.y40{bottom:293.440000pt;}
.y17{bottom:295.786667pt;}
.y58{bottom:301.120000pt;}
.ybb{bottom:305.280000pt;}
.ye3{bottom:306.240000pt;}
.yad{bottom:308.480000pt;}
.yd1{bottom:311.040000pt;}
.y9d{bottom:314.240000pt;}
.y78{bottom:315.200000pt;}
.y3f{bottom:316.480000pt;}
.y16{bottom:318.506667pt;}
.yba{bottom:328.320000pt;}
.y57{bottom:328.960000pt;}
.ye2{bottom:329.280000pt;}
.yc4{bottom:331.520000pt;}
.yd0{bottom:334.080000pt;}
.y9c{bottom:337.280000pt;}
.y77{bottom:338.240000pt;}
.y3e{bottom:339.520000pt;}
.y15{bottom:341.226667pt;}
.y84{bottom:347.520000pt;}
.y56{bottom:349.120000pt;}
.ye1{bottom:352.320000pt;}
.ycf{bottom:357.120000pt;}
.yb9{bottom:359.680000pt;}
.y9b{bottom:360.320000pt;}
.y76{bottom:361.600000pt;}
.y3d{bottom:362.880000pt;}
.y14{bottom:364.906667pt;}
.y54{bottom:368.960000pt;}
.y55{bottom:369.182720pt;}
.y83{bottom:370.880000pt;}
.ye0{bottom:375.680000pt;}
.yb8{bottom:382.720000pt;}
.y9a{bottom:383.680000pt;}
.y3c{bottom:385.920000pt;}
.y13{bottom:391.466667pt;}
.y75{bottom:392.640000pt;}
.y82{bottom:393.920000pt;}
.y53{bottom:397.120000pt;}
.ydf{bottom:398.720000pt;}
.yb7{bottom:405.760000pt;}
.y99{bottom:406.720000pt;}
.y3b{bottom:408.960000pt;}
.yce{bottom:414.720000pt;}
.y74{bottom:415.680000pt;}
.y12{bottom:416.426667pt;}
.y52{bottom:416.960000pt;}
.yde{bottom:421.760000pt;}
.yb6{bottom:428.800000pt;}
.y98{bottom:429.760000pt;}
.yac{bottom:432.000000pt;}
.y51{bottom:436.800000pt;}
.y73{bottom:439.040000pt;}
.y11{bottom:439.146667pt;}
.y3a{bottom:440.000000pt;}
.ycd{bottom:444.800000pt;}
.yb5{bottom:452.160000pt;}
.y97{bottom:452.800000pt;}
.yc3{bottom:455.360000pt;}
.y10{bottom:461.866667pt;}
.y72{bottom:462.080000pt;}
.y39{bottom:463.360000pt;}
.ydd{bottom:468.160000pt;}
.y96{bottom:476.160000pt;}
.yc2{bottom:478.400000pt;}
.yf{bottom:484.586667pt;}
.y71{bottom:485.120000pt;}
.y38{bottom:486.400000pt;}
.ydc{bottom:491.200000pt;}
.y50{bottom:494.400000pt;}
.y95{bottom:499.200000pt;}
.ye{bottom:506.986667pt;}
.y70{bottom:508.480000pt;}
.y37{bottom:509.440000pt;}
.yb4{bottom:509.760000pt;}
.ydb{bottom:514.240000pt;}
.y81{bottom:517.440000pt;}
.y94{bottom:522.240000pt;}
.yd{bottom:529.706667pt;}
.y6f{bottom:531.520000pt;}
.y4f{bottom:532.800000pt;}
.yda{bottom:537.600000pt;}
.y36{bottom:540.800000pt;}
.y93{bottom:545.600000pt;}
.yb3{bottom:547.840000pt;}
.yc{bottom:552.426667pt;}
.yab{bottom:555.840000pt;}
.yd9{bottom:560.640000pt;}
.y35{bottom:563.840000pt;}
.y92{bottom:568.640000pt;}
.yb{bottom:574.826667pt;}
.yaa{bottom:578.880000pt;}
.yd8{bottom:583.680000pt;}
.y34{bottom:586.880000pt;}
.y6e{bottom:589.120000pt;}
.y91{bottom:591.680000pt;}
.ya{bottom:597.546667pt;}
.ya9{bottom:602.240000pt;}
.y33{bottom:610.240000pt;}
.y90{bottom:615.040000pt;}
.y9{bottom:620.266667pt;}
.y6d{bottom:624.000000pt;}
.ya8{bottom:625.280000pt;}
.y32{bottom:633.280000pt;}
.y8f{bottom:638.080000pt;}
.yd7{bottom:641.280000pt;}
.y8{bottom:642.666667pt;}
.yb2{bottom:648.320000pt;}
.y6c{bottom:652.160000pt;}
.y31{bottom:656.320000pt;}
.y8e{bottom:661.120000pt;}
.y7{bottom:665.386667pt;}
.yc1{bottom:671.360000pt;}
.y6b{bottom:672.000000pt;}
.y4e{bottom:679.360000pt;}
.y8d{bottom:684.160000pt;}
.y30{bottom:687.360000pt;}
.y6{bottom:688.106667pt;}
.y6a{bottom:691.840000pt;}
.y80{bottom:702.720000pt;}
.y8c{bottom:707.520000pt;}
.y2f{bottom:710.720000pt;}
.y5{bottom:710.826667pt;}
.y69{bottom:720.000000pt;}
.ya7{bottom:725.760000pt;}
.y8b{bottom:730.560000pt;}
.y2e{bottom:733.760000pt;}
.y4{bottom:734.506667pt;}
.ycc{bottom:738.560000pt;}
.y68{bottom:739.840000pt;}
.ya6{bottom:748.800000pt;}
.y8a{bottom:753.600000pt;}
.y2d{bottom:756.800000pt;}
.y67{bottom:760.000000pt;}
.ycb{bottom:761.600000pt;}
.y3{bottom:763.306667pt;}
.ya5{bottom:772.160000pt;}
.y89{bottom:776.960000pt;}
.y66{bottom:779.840000pt;}
.y2c{bottom:780.160000pt;}
.yca{bottom:784.960000pt;}
.ya4{bottom:795.200000pt;}
.y2{bottom:796.266667pt;}
.y2b{bottom:803.200000pt;}
.y65{bottom:807.680000pt;}
.yc9{bottom:808.000000pt;}
.ya3{bottom:818.240000pt;}
.y4d{bottom:826.240000pt;}
.y2a{bottom:826.462746pt;}
.y64{bottom:827.840000pt;}
.yc8{bottom:831.040000pt;}
.y88{bottom:834.560000pt;}
.yc0{bottom:841.600000pt;}
.y62{bottom:847.680000pt;}
.y63{bottom:847.902746pt;}
.y4c{bottom:849.600000pt;}
.y29{bottom:849.822746pt;}
.ybf{bottom:864.640000pt;}
.y4b{bottom:872.640000pt;}
.y28{bottom:872.862746pt;}
.y61{bottom:875.840000pt;}
.yc7{bottom:888.640000pt;}
.y4a{bottom:895.680000pt;}
.y27{bottom:895.902752pt;}
.y25{bottom:914.560000pt;}
.hb{height:23.171875pt;}
.hc{height:37.216250pt;}
.hd{height:38.377500pt;}
.h8{height:44.167893pt;}
.h7{height:45.051250pt;}
.h9{height:45.108750pt;}
.h6{height:45.937500pt;}
.h5{height:49.481250pt;}
.ha{height:51.235625pt;}
.h4{height:65.296875pt;}
.h3{height:67.312500pt;}
.h2{height:820.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:676.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:9.973301pt;}
.x4{left:56.639968pt;}
.x1{left:62.666667pt;}
.x8{left:80.439776pt;}
.xb{left:104.639968pt;}
.x5{left:248.639968pt;}
.x9{left:419.640000pt;}
.xa{left:422.798080pt;}
.x6{left:530.993600pt;}
.x7{left:538.305280pt;}
.x3{left:736.906560pt;}
}




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