
    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_25fa00840b44d774e002d422.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_374f852453f00d83392a88c9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_1eecb8a920a4526b6bfaddd3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_e366c8ca1d22c2193c7453a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.078000;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_ea9857befdd25f9b6591dc58.woff')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_9b903fe7a33413dd9e98657e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_d985251dbc01f8849928cb9d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_493ef0114e23d787a1326ef1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_47c6124df0c092f3af51328c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.075000;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_72e5528b31dcfc15d5f3dc3f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.086000;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_a84f229499d0a7e12cdd61a7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.085000;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_d28921ae6aaef2a406985327.woff')format("woff");}.ffc{font-family:ffc;line-height:1.075000;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_75b642757146836fd6f474f0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.972000;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_59f49c79a9408dbf37e2a6db.woff')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_1e5cf3ee6c381b94d4bb4c6d.woff')format("woff");}.fff{font-family:fff;line-height:0.870605;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_b8b887bf6c1f53852793d48d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.712000;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_d0adbf5b0becac105cba6b61.woff')format("woff");}.ff11{font-family:ff11;line-height:0.969000;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_fd49a73c23a06855bb59a07e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.075000;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_aa57a939911bb932e9449a01.woff')format("woff");}.ff13{font-family:ff13;line-height:1.078000;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_d07bf5fd96cd340082a98ca1.woff')format("woff");}.ff14{font-family:ff14;line-height:1.076000;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_eeb385f0c9ab30e37d1dae13.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_9e11da4df9ceee251e34919e.woff')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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:ff17;src:url('chunks/assets/font_82c36e88c6b782214a73b0b4.woff')format("woff");}.ff17{font-family:ff17;line-height:1.076000;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);}
.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:-24.480000px;}
.v4{vertical-align:-21.600000px;}
.v3{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls37{letter-spacing:-6.175008px;}
.ls39{letter-spacing:-1.893024px;}
.ls2b{letter-spacing:-1.270080px;}
.ls28{letter-spacing:-1.179360px;}
.ls33{letter-spacing:-0.822528px;}
.ls29{letter-spacing:-0.804384px;}
.lsa{letter-spacing:-0.569088px;}
.ls8{letter-spacing:-0.530784px;}
.ls6{letter-spacing:-0.383040px;}
.ls2c{letter-spacing:-0.356832px;}
.ls7{letter-spacing:-0.344736px;}
.ls26{letter-spacing:-0.308448px;}
.ls9{letter-spacing:-0.306432px;}
.ls5{letter-spacing:-0.273600px;}
.ls27{letter-spacing:-0.272160px;}
.ls40{letter-spacing:-0.266112px;}
.ls35{letter-spacing:-0.254016px;}
.ls1{letter-spacing:-0.241920px;}
.ls31{letter-spacing:-0.229824px;}
.ls34{letter-spacing:-0.223776px;}
.ls48{letter-spacing:-0.211968px;}
.ls2d{letter-spacing:-0.211680px;}
.ls30{letter-spacing:-0.205632px;}
.ls49{letter-spacing:-0.198720px;}
.ls46{letter-spacing:-0.192096px;}
.ls25{letter-spacing:-0.185472px;}
.ls3{letter-spacing:-0.184032px;}
.ls32{letter-spacing:-0.181440px;}
.ls12{letter-spacing:-0.178848px;}
.ls43{letter-spacing:-0.172224px;}
.lse{letter-spacing:-0.165600px;}
.ls4{letter-spacing:-0.163584px;}
.ls3a{letter-spacing:-0.163296px;}
.ls3e{letter-spacing:-0.158976px;}
.lsb{letter-spacing:-0.158688px;}
.ls2{letter-spacing:-0.153360px;}
.ls4d{letter-spacing:-0.152352px;}
.ls44{letter-spacing:-0.145728px;}
.lsd{letter-spacing:-0.139104px;}
.ls4a{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.125856px;}
.ls2e{letter-spacing:-0.120960px;}
.ls24{letter-spacing:-0.119232px;}
.ls10{letter-spacing:-0.112608px;}
.ls11{letter-spacing:-0.105984px;}
.ls14{letter-spacing:-0.099360px;}
.ls15{letter-spacing:-0.092736px;}
.lsc{letter-spacing:-0.086112px;}
.ls45{letter-spacing:-0.079488px;}
.ls13{letter-spacing:-0.072864px;}
.ls18{letter-spacing:-0.066240px;}
.ls38{letter-spacing:-0.060480px;}
.ls3b{letter-spacing:-0.059616px;}
.ls1d{letter-spacing:-0.056304px;}
.ls47{letter-spacing:-0.052992px;}
.ls0{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.006048px;}
.ls1a{letter-spacing:0.033120px;}
.ls19{letter-spacing:0.116640px;}
.ls1c{letter-spacing:0.116928px;}
.ls3c{letter-spacing:0.155520px;}
.ls17{letter-spacing:0.171072px;}
.ls41{letter-spacing:0.178848px;}
.ls20{letter-spacing:0.206640px;}
.ls22{letter-spacing:0.209952px;}
.ls1b{letter-spacing:0.213120px;}
.ls1f{letter-spacing:0.287280px;}
.ls1e{letter-spacing:0.317520px;}
.ls2a{letter-spacing:0.332640px;}
.ls3f{letter-spacing:0.447120px;}
.ls2f{letter-spacing:0.610848px;}
.ls42{letter-spacing:2.068416px;}
.ls4c{letter-spacing:11.766240px;}
.ls21{letter-spacing:17.965872px;}
.ls4b{letter-spacing:23.509296px;}
.ls16{letter-spacing:34.890768px;}
.ls23{letter-spacing:41.877360px;}
.ls3d{letter-spacing:56.199168px;}
.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;}
}
.ws19{word-spacing:-17.029440px;}
.ws7{word-spacing:-15.624000px;}
.ws20{word-spacing:-15.168960px;}
.ws25{word-spacing:-15.056352px;}
.ws1c{word-spacing:-15.043104px;}
.ws8{word-spacing:-15.036480px;}
.ws1e{word-spacing:-15.009984px;}
.ws1f{word-spacing:-15.003360px;}
.ws24{word-spacing:-14.956992px;}
.ws23{word-spacing:-14.923872px;}
.ws21{word-spacing:-14.917248px;}
.wsa{word-spacing:-14.910624px;}
.ws1d{word-spacing:-14.904000px;}
.ws26{word-spacing:-14.897376px;}
.ws0{word-spacing:-14.878080px;}
.ws22{word-spacing:-14.864256px;}
.ws1b{word-spacing:-14.857632px;}
.ws18{word-spacing:-14.254848px;}
.ws14{word-spacing:-13.728960px;}
.ws16{word-spacing:-13.668480px;}
.ws17{word-spacing:-13.565664px;}
.ws13{word-spacing:-13.547520px;}
.ws12{word-spacing:-13.499136px;}
.ws15{word-spacing:-13.474944px;}
.wsf{word-spacing:-13.456800px;}
.ws11{word-spacing:-12.912480px;}
.ws3{word-spacing:-12.421440px;}
.wse{word-spacing:-12.319776px;}
.ws1{word-spacing:-12.257280px;}
.ws5{word-spacing:-12.224448px;}
.ws4{word-spacing:-12.076704px;}
.ws2{word-spacing:-12.038400px;}
.wsd{word-spacing:-11.944800px;}
.ws10{word-spacing:-11.854080px;}
.ws6{word-spacing:-11.797632px;}
.wsb{word-spacing:-9.596448px;}
.ws1a{word-spacing:-0.486000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:0.023184px;}
._1d{margin-left:-4.957920px;}
._8{margin-left:-3.908160px;}
._9{margin-left:-2.444688px;}
._0{margin-left:-1.192032px;}
._1{width:1.022400px;}
._6{width:2.583360px;}
._5{width:3.643200px;}
._7{width:4.769280px;}
._a{width:6.624000px;}
._14{width:7.754400px;}
._4{width:9.538560px;}
._3{width:10.863360px;}
._11{width:11.896416px;}
._b{width:13.248000px;}
._16{width:14.824800px;}
._e{width:17.686080px;}
._f{width:18.745920px;}
._12{width:20.263680px;}
._13{width:21.398400px;}
._15{width:23.212800px;}
._1e{width:24.544800px;}
._21{width:25.567200px;}
._c{width:26.893440px;}
._d{width:27.896256px;}
._10{width:29.152800px;}
._2{width:30.266640px;}
._19{width:31.514400px;}
._18{width:32.601600px;}
._23{width:33.609600px;}
._1f{width:35.280000px;}
._1c{width:37.080000px;}
._1b{width:38.361600px;}
._1a{width:40.651200px;}
._20{width:42.660000px;}
._17{width:53.330400px;}
._22{width:57.981600px;}
._24{width:81.673920px;}
._25{width:849.029760px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(0,13,26);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.120000px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:50.400000px;}
.fs4{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs2{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y78{bottom:4.140000px;}
.y80{bottom:4.200000px;}
.y8a{bottom:4.560000px;}
.y7c{bottom:4.920000px;}
.y85{bottom:4.980000px;}
.y76{bottom:13.140000px;}
.y82{bottom:13.200000px;}
.y86{bottom:13.980000px;}
.y77{bottom:22.140000px;}
.y7f{bottom:22.200000px;}
.y89{bottom:22.560000px;}
.y7b{bottom:22.920000px;}
.y84{bottom:22.980000px;}
.y81{bottom:31.200000px;}
.y7e{bottom:40.200000px;}
.y7a{bottom:40.920000px;}
.y3{bottom:57.240000px;}
.y2{bottom:74.160000px;}
.y54{bottom:90.360000px;}
.y109{bottom:93.240000px;}
.yf0{bottom:96.120000px;}
.y3a{bottom:98.640000px;}
.y66{bottom:102.240000px;}
.y11a{bottom:105.120000px;}
.y53{bottom:110.520000px;}
.y21{bottom:111.240000px;}
.yda{bottom:116.640000px;}
.yed{bottom:118.440000px;}
.y83{bottom:118.500000px;}
.ybd{bottom:119.880000px;}
.yd3{bottom:122.760000px;}
.yef{bottom:123.120000px;}
.y119{bottom:124.920000px;}
.y108{bottom:125.640000px;}
.y39{bottom:131.040000px;}
.y20{bottom:132.840000px;}
.y65{bottom:134.640000px;}
.y52{bottom:136.440000px;}
.y133{bottom:137.160000px;}
.yff{bottom:137.880000px;}
.yee{bottom:143.280000px;}
.ydb{bottom:143.640000px;}
.y118{bottom:144.720000px;}
.yd9{bottom:149.040000px;}
.yec{bottom:150.840000px;}
.y1f{bottom:154.080000px;}
.yd2{bottom:155.160000px;}
.y9e{bottom:155.880000px;}
.y7d{bottom:156.000000px;}
.y51{bottom:156.600000px;}
.y132{bottom:156.960000px;}
.yad{bottom:158.040000px;}
.y38{bottom:163.440000px;}
.y117{bottom:164.520000px;}
.yb9{bottom:167.040000px;}
.ybc{bottom:170.280000px;}
.y1e{bottom:175.320000px;}
.y64{bottom:176.040000px;}
.yd8{bottom:181.440000px;}
.y116{bottom:184.320000px;}
.yd1{bottom:187.560000px;}
.y9d{bottom:188.280000px;}
.yac{bottom:190.440000px;}
.yeb{bottom:192.240000px;}
.y37{bottom:195.840000px;}
.y1d{bottom:196.920000px;}
.y131{bottom:197.640000px;}
.y50{bottom:198.000000px;}
.yb8{bottom:199.440000px;}
.ybb{bottom:202.680000px;}
.y115{bottom:204.120000px;}
.y63{bottom:208.440000px;}
.y79{bottom:210.000000px;}
.y130{bottom:217.440000px;}
.y1c{bottom:218.160000px;}
.yd0{bottom:219.960000px;}
.y9c{bottom:220.680000px;}
.yab{bottom:222.840000px;}
.yea{bottom:224.640000px;}
.y36{bottom:228.240000px;}
.y4f{bottom:230.400000px;}
.yb7{bottom:231.840000px;}
.yfe{bottom:235.080000px;}
.y12f{bottom:237.240000px;}
.y1b{bottom:239.760000px;}
.y62{bottom:240.840000px;}
.yba{bottom:244.800000px;}
.y114{bottom:245.160000px;}
.ycf{bottom:252.360000px;}
.y9b{bottom:253.080000px;}
.yaa{bottom:255.240000px;}
.ye9{bottom:257.040000px;}
.y35{bottom:260.640000px;}
.y1a{bottom:261.000000px;}
.y4e{bottom:262.800000px;}
.yb6{bottom:264.240000px;}
.y113{bottom:264.960000px;}
.y75{bottom:265.500000px;}
.yfd{bottom:267.480000px;}
.y61{bottom:273.240000px;}
.y12e{bottom:276.840000px;}
.y19{bottom:282.240000px;}
.yce{bottom:284.760000px;}
.y9a{bottom:285.480000px;}
.ya9{bottom:287.640000px;}
.ye8{bottom:289.440000px;}
.y4d{bottom:295.200000px;}
.yb5{bottom:296.640000px;}
.yfc{bottom:299.880000px;}
.y34{bottom:302.040000px;}
.y18{bottom:303.840000px;}
.y60{bottom:305.640000px;}
.ycd{bottom:317.160000px;}
.y99{bottom:317.880000px;}
.ya8{bottom:320.040000px;}
.ye7{bottom:321.840000px;}
.y74{bottom:324.360000px;}
.y17{bottom:325.080000px;}
.y112{bottom:325.440000px;}
.yb4{bottom:329.040000px;}
.yfb{bottom:332.280000px;}
.y33{bottom:334.440000px;}
.y4c{bottom:336.600000px;}
.y12d{bottom:337.680000px;}
.y5f{bottom:338.040000px;}
.y16{bottom:346.320000px;}
.ycc{bottom:349.560000px;}
.y73{bottom:351.360000px;}
.y107{bottom:352.440000px;}
.ye6{bottom:354.240000px;}
.y12c{bottom:357.480000px;}
.ya7{bottom:361.440000px;}
.y111{bottom:366.120000px;}
.y32{bottom:366.840000px;}
.y15{bottom:367.560000px;}
.y98{bottom:368.280000px;}
.y4b{bottom:369.000000px;}
.y5e{bottom:370.440000px;}
.ycb{bottom:381.960000px;}
.yfa{bottom:382.680000px;}
.y106{bottom:384.840000px;}
.y110{bottom:385.920000px;}
.ye5{bottom:386.640000px;}
.y72{bottom:390.240000px;}
.ya6{bottom:393.840000px;}
.y12b{bottom:398.160000px;}
.y31{bottom:399.240000px;}
.y97{bottom:400.680000px;}
.y4a{bottom:401.400000px;}
.y5d{bottom:402.840000px;}
.yd7{bottom:411.840000px;}
.yf9{bottom:415.080000px;}
.y14{bottom:416.880000px;}
.y105{bottom:417.240000px;}
.y12a{bottom:417.960000px;}
.ye4{bottom:419.040000px;}
.y71{bottom:422.640000px;}
.ya5{bottom:426.240000px;}
.y10f{bottom:426.960000px;}
.y30{bottom:431.640000px;}
.y96{bottom:433.080000px;}
.y49{bottom:433.800000px;}
.y5c{bottom:435.240000px;}
.yca{bottom:443.880000px;}
.yd6{bottom:444.240000px;}
.y10e{bottom:446.760000px;}
.yf8{bottom:447.480000px;}
.y104{bottom:449.640000px;}
.ye3{bottom:451.440000px;}
.y13{bottom:453.600000px;}
.ya4{bottom:458.640000px;}
.y2f{bottom:464.040000px;}
.y95{bottom:465.480000px;}
.y48{bottom:466.200000px;}
.y10d{bottom:466.560000px;}
.y5b{bottom:467.640000px;}
.y70{bottom:473.040000px;}
.yd5{bottom:476.640000px;}
.y12{bottom:478.440000px;}
.yf7{bottom:479.880000px;}
.ye2{bottom:483.840000px;}
.ya3{bottom:491.040000px;}
.yc9{bottom:492.840000px;}
.y2e{bottom:496.440000px;}
.y94{bottom:497.880000px;}
.y47{bottom:498.600000px;}
.y5a{bottom:500.040000px;}
.y11{bottom:503.640000px;}
.y6f{bottom:505.440000px;}
.y10c{bottom:507.240000px;}
.yd4{bottom:509.040000px;}
.yf6{bottom:512.280000px;}
.y129{bottom:519.480000px;}
.ya2{bottom:523.440000px;}
.yc8{bottom:525.240000px;}
.y10b{bottom:527.040000px;}
.y10{bottom:528.840000px;}
.y93{bottom:530.280000px;}
.y46{bottom:531.000000px;}
.y59{bottom:532.440000px;}
.ye1{bottom:534.240000px;}
.y6e{bottom:537.840000px;}
.y128{bottom:539.280000px;}
.yb3{bottom:541.440000px;}
.yf5{bottom:544.680000px;}
.y10a{bottom:546.840000px;}
.yf{bottom:555.840000px;}
.yc7{bottom:557.640000px;}
.y127{bottom:559.080000px;}
.y2d{bottom:561.240000px;}
.y92{bottom:562.680000px;}
.y45{bottom:564.120000px;}
.y58{bottom:564.840000px;}
.ye0{bottom:566.640000px;}
.y6d{bottom:570.240000px;}
.yb2{bottom:573.840000px;}
.yf4{bottom:577.080000px;}
.ye{bottom:585.000000px;}
.ya1{bottom:588.240000px;}
.yc6{bottom:590.040000px;}
.y2c{bottom:593.640000px;}
.y91{bottom:595.080000px;}
.y44{bottom:597.240000px;}
.ydf{bottom:599.040000px;}
.y126{bottom:599.760000px;}
.y6c{bottom:602.640000px;}
.yb1{bottom:606.240000px;}
.yf3{bottom:609.480000px;}
.yd{bottom:610.200000px;}
.y125{bottom:619.560000px;}
.ya0{bottom:620.640000px;}
.yc5{bottom:622.440000px;}
.y2b{bottom:626.040000px;}
.y90{bottom:627.480000px;}
.y43{bottom:629.640000px;}
.yde{bottom:631.440000px;}
.y6b{bottom:635.040000px;}
.yc{bottom:636.840000px;}
.yb0{bottom:638.640000px;}
.y124{bottom:639.360000px;}
.yf2{bottom:641.880000px;}
.y103{bottom:653.040000px;}
.yc4{bottom:654.840000px;}
.y2a{bottom:658.440000px;}
.y123{bottom:659.160000px;}
.y8f{bottom:659.880000px;}
.y42{bottom:662.040000px;}
.ydd{bottom:663.840000px;}
.yb{bottom:666.000000px;}
.y6a{bottom:667.440000px;}
.yaf{bottom:671.040000px;}
.y122{bottom:678.960000px;}
.yf1{bottom:684.000000px;}
.y102{bottom:685.440000px;}
.yc3{bottom:687.240000px;}
.ya{bottom:691.200000px;}
.y8e{bottom:692.280000px;}
.y41{bottom:694.440000px;}
.ydc{bottom:696.240000px;}
.y139{bottom:696.960000px;}
.y121{bottom:698.760000px;}
.y69{bottom:699.840000px;}
.yae{bottom:703.440000px;}
.y9{bottom:717.840000px;}
.y57{bottom:726.840000px;}
.yc2{bottom:728.640000px;}
.y29{bottom:732.600000px;}
.y8d{bottom:732.960000px;}
.y40{bottom:735.840000px;}
.y138{bottom:738.360000px;}
.y120{bottom:739.440000px;}
.y68{bottom:740.520000px;}
.y8{bottom:750.240000px;}
.y137{bottom:758.160000px;}
.y56{bottom:759.240000px;}
.yc1{bottom:761.040000px;}
.y3f{bottom:768.240000px;}
.y28{bottom:770.760000px;}
.y136{bottom:777.960000px;}
.y11f{bottom:779.040000px;}
.y67{bottom:781.200000px;}
.y8c{bottom:781.920000px;}
.y101{bottom:782.640000px;}
.y7{bottom:789.840000px;}
.y55{bottom:791.640000px;}
.y27{bottom:792.360000px;}
.yc0{bottom:793.440000px;}
.y11e{bottom:798.840000px;}
.y3e{bottom:800.640000px;}
.y26{bottom:813.600000px;}
.y8b{bottom:814.320000px;}
.y100{bottom:815.040000px;}
.y135{bottom:818.640000px;}
.y9f{bottom:824.040000px;}
.ybf{bottom:825.840000px;}
.y6{bottom:829.440000px;}
.y3d{bottom:833.040000px;}
.y25{bottom:835.200000px;}
.y134{bottom:838.440000px;}
.y11d{bottom:839.880000px;}
.y88{bottom:840.000000px;}
.y24{bottom:856.440000px;}
.ybe{bottom:858.240000px;}
.y11c{bottom:859.680000px;}
.y5{bottom:860.040000px;}
.y3c{bottom:865.440000px;}
.y87{bottom:877.500000px;}
.y23{bottom:877.680000px;}
.y11b{bottom:879.480000px;}
.y4{bottom:890.640000px;}
.y3b{bottom:897.840000px;}
.y22{bottom:899.280000px;}
.y1{bottom:951.480000px;}
.hc{height:26.040960px;}
.h12{height:28.278281px;}
.h10{height:37.500000px;}
.h3{height:40.310156px;}
.h6{height:44.760960px;}
.h2{height:47.545313px;}
.hd{height:49.472640px;}
.hf{height:49.533120px;}
.h8{height:50.863680px;}
.hb{height:51.480000px;}
.h7{height:54.184320px;}
.h13{height:54.250560px;}
.he{height:55.177920px;}
.h11{height:55.500000px;}
.ha{height:58.896000px;}
.h5{height:59.976000px;}
.h9{height:65.396160px;}
.h4{height:85.983840px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:57.000000px;}
.w4{width:96.000000px;}
.w6{width:97.500000px;}
.w5{width:138.000000px;}
.w2{width:139.500000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1e{left:7.800000px;}
.x16{left:9.120120px;}
.x1c{left:13.261080px;}
.x18{left:20.528688px;}
.x1d{left:22.094988px;}
.x1b{left:31.230480px;}
.x14{left:35.115972px;}
.x19{left:36.300480px;}
.x1f{left:41.400480px;}
.x1{left:84.959856px;}
.x5{left:93.981456px;}
.x6{left:95.205312px;}
.x13{left:97.500000px;}
.x4{left:99.552960px;}
.x11{left:106.259760px;}
.x12{left:116.834832px;}
.x20{left:159.359976px;}
.x15{left:237.000000px;}
.x17{left:294.000000px;}
.x10{left:300.959856px;}
.xf{left:319.226076px;}
.xd{left:323.832636px;}
.xb{left:327.080556px;}
.x3{left:328.559688px;}
.x8{left:345.575304px;}
.x2{left:361.372320px;}
.xc{left:390.399480px;}
.x7{left:427.207680px;}
.xa{left:430.125120px;}
.x9{left:466.002000px;}
.x1a{left:528.000000px;}
.xe{left:637.785000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v4{vertical-align:-19.200000pt;}
.v3{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls37{letter-spacing:-5.488896pt;}
.ls39{letter-spacing:-1.682688pt;}
.ls2b{letter-spacing:-1.128960pt;}
.ls28{letter-spacing:-1.048320pt;}
.ls33{letter-spacing:-0.731136pt;}
.ls29{letter-spacing:-0.715008pt;}
.lsa{letter-spacing:-0.505856pt;}
.ls8{letter-spacing:-0.471808pt;}
.ls6{letter-spacing:-0.340480pt;}
.ls2c{letter-spacing:-0.317184pt;}
.ls7{letter-spacing:-0.306432pt;}
.ls26{letter-spacing:-0.274176pt;}
.ls9{letter-spacing:-0.272384pt;}
.ls5{letter-spacing:-0.243200pt;}
.ls27{letter-spacing:-0.241920pt;}
.ls40{letter-spacing:-0.236544pt;}
.ls35{letter-spacing:-0.225792pt;}
.ls1{letter-spacing:-0.215040pt;}
.ls31{letter-spacing:-0.204288pt;}
.ls34{letter-spacing:-0.198912pt;}
.ls48{letter-spacing:-0.188416pt;}
.ls2d{letter-spacing:-0.188160pt;}
.ls30{letter-spacing:-0.182784pt;}
.ls49{letter-spacing:-0.176640pt;}
.ls46{letter-spacing:-0.170752pt;}
.ls25{letter-spacing:-0.164864pt;}
.ls3{letter-spacing:-0.163584pt;}
.ls32{letter-spacing:-0.161280pt;}
.ls12{letter-spacing:-0.158976pt;}
.ls43{letter-spacing:-0.153088pt;}
.lse{letter-spacing:-0.147200pt;}
.ls4{letter-spacing:-0.145408pt;}
.ls3a{letter-spacing:-0.145152pt;}
.ls3e{letter-spacing:-0.141312pt;}
.lsb{letter-spacing:-0.141056pt;}
.ls2{letter-spacing:-0.136320pt;}
.ls4d{letter-spacing:-0.135424pt;}
.ls44{letter-spacing:-0.129536pt;}
.lsd{letter-spacing:-0.123648pt;}
.ls4a{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.111872pt;}
.ls2e{letter-spacing:-0.107520pt;}
.ls24{letter-spacing:-0.105984pt;}
.ls10{letter-spacing:-0.100096pt;}
.ls11{letter-spacing:-0.094208pt;}
.ls14{letter-spacing:-0.088320pt;}
.ls15{letter-spacing:-0.082432pt;}
.lsc{letter-spacing:-0.076544pt;}
.ls45{letter-spacing:-0.070656pt;}
.ls13{letter-spacing:-0.064768pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls38{letter-spacing:-0.053760pt;}
.ls3b{letter-spacing:-0.052992pt;}
.ls1d{letter-spacing:-0.050048pt;}
.ls47{letter-spacing:-0.047104pt;}
.ls0{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.005376pt;}
.ls1a{letter-spacing:0.029440pt;}
.ls19{letter-spacing:0.103680pt;}
.ls1c{letter-spacing:0.103936pt;}
.ls3c{letter-spacing:0.138240pt;}
.ls17{letter-spacing:0.152064pt;}
.ls41{letter-spacing:0.158976pt;}
.ls20{letter-spacing:0.183680pt;}
.ls22{letter-spacing:0.186624pt;}
.ls1b{letter-spacing:0.189440pt;}
.ls1f{letter-spacing:0.255360pt;}
.ls1e{letter-spacing:0.282240pt;}
.ls2a{letter-spacing:0.295680pt;}
.ls3f{letter-spacing:0.397440pt;}
.ls2f{letter-spacing:0.542976pt;}
.ls42{letter-spacing:1.838592pt;}
.ls4c{letter-spacing:10.458880pt;}
.ls21{letter-spacing:15.969664pt;}
.ls4b{letter-spacing:20.897152pt;}
.ls16{letter-spacing:31.014016pt;}
.ls23{letter-spacing:37.224320pt;}
.ls3d{letter-spacing:49.954816pt;}
.ws19{word-spacing:-15.137280pt;}
.ws7{word-spacing:-13.888000pt;}
.ws20{word-spacing:-13.483520pt;}
.ws25{word-spacing:-13.383424pt;}
.ws1c{word-spacing:-13.371648pt;}
.ws8{word-spacing:-13.365760pt;}
.ws1e{word-spacing:-13.342208pt;}
.ws1f{word-spacing:-13.336320pt;}
.ws24{word-spacing:-13.295104pt;}
.ws23{word-spacing:-13.265664pt;}
.ws21{word-spacing:-13.259776pt;}
.wsa{word-spacing:-13.253888pt;}
.ws1d{word-spacing:-13.248000pt;}
.ws26{word-spacing:-13.242112pt;}
.ws0{word-spacing:-13.224960pt;}
.ws22{word-spacing:-13.212672pt;}
.ws1b{word-spacing:-13.206784pt;}
.ws18{word-spacing:-12.670976pt;}
.ws14{word-spacing:-12.203520pt;}
.ws16{word-spacing:-12.149760pt;}
.ws17{word-spacing:-12.058368pt;}
.ws13{word-spacing:-12.042240pt;}
.ws12{word-spacing:-11.999232pt;}
.ws15{word-spacing:-11.977728pt;}
.wsf{word-spacing:-11.961600pt;}
.ws11{word-spacing:-11.477760pt;}
.ws3{word-spacing:-11.041280pt;}
.wse{word-spacing:-10.950912pt;}
.ws1{word-spacing:-10.895360pt;}
.ws5{word-spacing:-10.866176pt;}
.ws4{word-spacing:-10.734848pt;}
.ws2{word-spacing:-10.700800pt;}
.wsd{word-spacing:-10.617600pt;}
.ws10{word-spacing:-10.536960pt;}
.ws6{word-spacing:-10.486784pt;}
.wsb{word-spacing:-8.530176pt;}
.ws1a{word-spacing:-0.432000pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:0.020608pt;}
._1d{margin-left:-4.407040pt;}
._8{margin-left:-3.473920pt;}
._9{margin-left:-2.173056pt;}
._0{margin-left:-1.059584pt;}
._1{width:0.908800pt;}
._6{width:2.296320pt;}
._5{width:3.238400pt;}
._7{width:4.239360pt;}
._a{width:5.888000pt;}
._14{width:6.892800pt;}
._4{width:8.478720pt;}
._3{width:9.656320pt;}
._11{width:10.574592pt;}
._b{width:11.776000pt;}
._16{width:13.177600pt;}
._e{width:15.720960pt;}
._f{width:16.663040pt;}
._12{width:18.012160pt;}
._13{width:19.020800pt;}
._15{width:20.633600pt;}
._1e{width:21.817600pt;}
._21{width:22.726400pt;}
._c{width:23.905280pt;}
._d{width:24.796672pt;}
._10{width:25.913600pt;}
._2{width:26.903680pt;}
._19{width:28.012800pt;}
._18{width:28.979200pt;}
._23{width:29.875200pt;}
._1f{width:31.360000pt;}
._1c{width:32.960000pt;}
._1b{width:34.099200pt;}
._1a{width:36.134400pt;}
._20{width:37.920000pt;}
._17{width:47.404800pt;}
._22{width:51.539200pt;}
._24{width:72.599040pt;}
._25{width:754.693120pt;}
.fs8{font-size:29.440000pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:44.800000pt;}
.fs4{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs2{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:3.680000pt;}
.y80{bottom:3.733333pt;}
.y8a{bottom:4.053333pt;}
.y7c{bottom:4.373333pt;}
.y85{bottom:4.426667pt;}
.y76{bottom:11.680000pt;}
.y82{bottom:11.733333pt;}
.y86{bottom:12.426667pt;}
.y77{bottom:19.680000pt;}
.y7f{bottom:19.733333pt;}
.y89{bottom:20.053333pt;}
.y7b{bottom:20.373333pt;}
.y84{bottom:20.426667pt;}
.y81{bottom:27.733333pt;}
.y7e{bottom:35.733333pt;}
.y7a{bottom:36.373333pt;}
.y3{bottom:50.880000pt;}
.y2{bottom:65.920000pt;}
.y54{bottom:80.320000pt;}
.y109{bottom:82.880000pt;}
.yf0{bottom:85.440000pt;}
.y3a{bottom:87.680000pt;}
.y66{bottom:90.880000pt;}
.y11a{bottom:93.440000pt;}
.y53{bottom:98.240000pt;}
.y21{bottom:98.880000pt;}
.yda{bottom:103.680000pt;}
.yed{bottom:105.280000pt;}
.y83{bottom:105.333333pt;}
.ybd{bottom:106.560000pt;}
.yd3{bottom:109.120000pt;}
.yef{bottom:109.440000pt;}
.y119{bottom:111.040000pt;}
.y108{bottom:111.680000pt;}
.y39{bottom:116.480000pt;}
.y20{bottom:118.080000pt;}
.y65{bottom:119.680000pt;}
.y52{bottom:121.280000pt;}
.y133{bottom:121.920000pt;}
.yff{bottom:122.560000pt;}
.yee{bottom:127.360000pt;}
.ydb{bottom:127.680000pt;}
.y118{bottom:128.640000pt;}
.yd9{bottom:132.480000pt;}
.yec{bottom:134.080000pt;}
.y1f{bottom:136.960000pt;}
.yd2{bottom:137.920000pt;}
.y9e{bottom:138.560000pt;}
.y7d{bottom:138.666667pt;}
.y51{bottom:139.200000pt;}
.y132{bottom:139.520000pt;}
.yad{bottom:140.480000pt;}
.y38{bottom:145.280000pt;}
.y117{bottom:146.240000pt;}
.yb9{bottom:148.480000pt;}
.ybc{bottom:151.360000pt;}
.y1e{bottom:155.840000pt;}
.y64{bottom:156.480000pt;}
.yd8{bottom:161.280000pt;}
.y116{bottom:163.840000pt;}
.yd1{bottom:166.720000pt;}
.y9d{bottom:167.360000pt;}
.yac{bottom:169.280000pt;}
.yeb{bottom:170.880000pt;}
.y37{bottom:174.080000pt;}
.y1d{bottom:175.040000pt;}
.y131{bottom:175.680000pt;}
.y50{bottom:176.000000pt;}
.yb8{bottom:177.280000pt;}
.ybb{bottom:180.160000pt;}
.y115{bottom:181.440000pt;}
.y63{bottom:185.280000pt;}
.y79{bottom:186.666667pt;}
.y130{bottom:193.280000pt;}
.y1c{bottom:193.920000pt;}
.yd0{bottom:195.520000pt;}
.y9c{bottom:196.160000pt;}
.yab{bottom:198.080000pt;}
.yea{bottom:199.680000pt;}
.y36{bottom:202.880000pt;}
.y4f{bottom:204.800000pt;}
.yb7{bottom:206.080000pt;}
.yfe{bottom:208.960000pt;}
.y12f{bottom:210.880000pt;}
.y1b{bottom:213.120000pt;}
.y62{bottom:214.080000pt;}
.yba{bottom:217.600000pt;}
.y114{bottom:217.920000pt;}
.ycf{bottom:224.320000pt;}
.y9b{bottom:224.960000pt;}
.yaa{bottom:226.880000pt;}
.ye9{bottom:228.480000pt;}
.y35{bottom:231.680000pt;}
.y1a{bottom:232.000000pt;}
.y4e{bottom:233.600000pt;}
.yb6{bottom:234.880000pt;}
.y113{bottom:235.520000pt;}
.y75{bottom:236.000000pt;}
.yfd{bottom:237.760000pt;}
.y61{bottom:242.880000pt;}
.y12e{bottom:246.080000pt;}
.y19{bottom:250.880000pt;}
.yce{bottom:253.120000pt;}
.y9a{bottom:253.760000pt;}
.ya9{bottom:255.680000pt;}
.ye8{bottom:257.280000pt;}
.y4d{bottom:262.400000pt;}
.yb5{bottom:263.680000pt;}
.yfc{bottom:266.560000pt;}
.y34{bottom:268.480000pt;}
.y18{bottom:270.080000pt;}
.y60{bottom:271.680000pt;}
.ycd{bottom:281.920000pt;}
.y99{bottom:282.560000pt;}
.ya8{bottom:284.480000pt;}
.ye7{bottom:286.080000pt;}
.y74{bottom:288.320000pt;}
.y17{bottom:288.960000pt;}
.y112{bottom:289.280000pt;}
.yb4{bottom:292.480000pt;}
.yfb{bottom:295.360000pt;}
.y33{bottom:297.280000pt;}
.y4c{bottom:299.200000pt;}
.y12d{bottom:300.160000pt;}
.y5f{bottom:300.480000pt;}
.y16{bottom:307.840000pt;}
.ycc{bottom:310.720000pt;}
.y73{bottom:312.320000pt;}
.y107{bottom:313.280000pt;}
.ye6{bottom:314.880000pt;}
.y12c{bottom:317.760000pt;}
.ya7{bottom:321.280000pt;}
.y111{bottom:325.440000pt;}
.y32{bottom:326.080000pt;}
.y15{bottom:326.720000pt;}
.y98{bottom:327.360000pt;}
.y4b{bottom:328.000000pt;}
.y5e{bottom:329.280000pt;}
.ycb{bottom:339.520000pt;}
.yfa{bottom:340.160000pt;}
.y106{bottom:342.080000pt;}
.y110{bottom:343.040000pt;}
.ye5{bottom:343.680000pt;}
.y72{bottom:346.880000pt;}
.ya6{bottom:350.080000pt;}
.y12b{bottom:353.920000pt;}
.y31{bottom:354.880000pt;}
.y97{bottom:356.160000pt;}
.y4a{bottom:356.800000pt;}
.y5d{bottom:358.080000pt;}
.yd7{bottom:366.080000pt;}
.yf9{bottom:368.960000pt;}
.y14{bottom:370.560000pt;}
.y105{bottom:370.880000pt;}
.y12a{bottom:371.520000pt;}
.ye4{bottom:372.480000pt;}
.y71{bottom:375.680000pt;}
.ya5{bottom:378.880000pt;}
.y10f{bottom:379.520000pt;}
.y30{bottom:383.680000pt;}
.y96{bottom:384.960000pt;}
.y49{bottom:385.600000pt;}
.y5c{bottom:386.880000pt;}
.yca{bottom:394.560000pt;}
.yd6{bottom:394.880000pt;}
.y10e{bottom:397.120000pt;}
.yf8{bottom:397.760000pt;}
.y104{bottom:399.680000pt;}
.ye3{bottom:401.280000pt;}
.y13{bottom:403.200000pt;}
.ya4{bottom:407.680000pt;}
.y2f{bottom:412.480000pt;}
.y95{bottom:413.760000pt;}
.y48{bottom:414.400000pt;}
.y10d{bottom:414.720000pt;}
.y5b{bottom:415.680000pt;}
.y70{bottom:420.480000pt;}
.yd5{bottom:423.680000pt;}
.y12{bottom:425.280000pt;}
.yf7{bottom:426.560000pt;}
.ye2{bottom:430.080000pt;}
.ya3{bottom:436.480000pt;}
.yc9{bottom:438.080000pt;}
.y2e{bottom:441.280000pt;}
.y94{bottom:442.560000pt;}
.y47{bottom:443.200000pt;}
.y5a{bottom:444.480000pt;}
.y11{bottom:447.680000pt;}
.y6f{bottom:449.280000pt;}
.y10c{bottom:450.880000pt;}
.yd4{bottom:452.480000pt;}
.yf6{bottom:455.360000pt;}
.y129{bottom:461.760000pt;}
.ya2{bottom:465.280000pt;}
.yc8{bottom:466.880000pt;}
.y10b{bottom:468.480000pt;}
.y10{bottom:470.080000pt;}
.y93{bottom:471.360000pt;}
.y46{bottom:472.000000pt;}
.y59{bottom:473.280000pt;}
.ye1{bottom:474.880000pt;}
.y6e{bottom:478.080000pt;}
.y128{bottom:479.360000pt;}
.yb3{bottom:481.280000pt;}
.yf5{bottom:484.160000pt;}
.y10a{bottom:486.080000pt;}
.yf{bottom:494.080000pt;}
.yc7{bottom:495.680000pt;}
.y127{bottom:496.960000pt;}
.y2d{bottom:498.880000pt;}
.y92{bottom:500.160000pt;}
.y45{bottom:501.440000pt;}
.y58{bottom:502.080000pt;}
.ye0{bottom:503.680000pt;}
.y6d{bottom:506.880000pt;}
.yb2{bottom:510.080000pt;}
.yf4{bottom:512.960000pt;}
.ye{bottom:520.000000pt;}
.ya1{bottom:522.880000pt;}
.yc6{bottom:524.480000pt;}
.y2c{bottom:527.680000pt;}
.y91{bottom:528.960000pt;}
.y44{bottom:530.880000pt;}
.ydf{bottom:532.480000pt;}
.y126{bottom:533.120000pt;}
.y6c{bottom:535.680000pt;}
.yb1{bottom:538.880000pt;}
.yf3{bottom:541.760000pt;}
.yd{bottom:542.400000pt;}
.y125{bottom:550.720000pt;}
.ya0{bottom:551.680000pt;}
.yc5{bottom:553.280000pt;}
.y2b{bottom:556.480000pt;}
.y90{bottom:557.760000pt;}
.y43{bottom:559.680000pt;}
.yde{bottom:561.280000pt;}
.y6b{bottom:564.480000pt;}
.yc{bottom:566.080000pt;}
.yb0{bottom:567.680000pt;}
.y124{bottom:568.320000pt;}
.yf2{bottom:570.560000pt;}
.y103{bottom:580.480000pt;}
.yc4{bottom:582.080000pt;}
.y2a{bottom:585.280000pt;}
.y123{bottom:585.920000pt;}
.y8f{bottom:586.560000pt;}
.y42{bottom:588.480000pt;}
.ydd{bottom:590.080000pt;}
.yb{bottom:592.000000pt;}
.y6a{bottom:593.280000pt;}
.yaf{bottom:596.480000pt;}
.y122{bottom:603.520000pt;}
.yf1{bottom:608.000000pt;}
.y102{bottom:609.280000pt;}
.yc3{bottom:610.880000pt;}
.ya{bottom:614.400000pt;}
.y8e{bottom:615.360000pt;}
.y41{bottom:617.280000pt;}
.ydc{bottom:618.880000pt;}
.y139{bottom:619.520000pt;}
.y121{bottom:621.120000pt;}
.y69{bottom:622.080000pt;}
.yae{bottom:625.280000pt;}
.y9{bottom:638.080000pt;}
.y57{bottom:646.080000pt;}
.yc2{bottom:647.680000pt;}
.y29{bottom:651.200000pt;}
.y8d{bottom:651.520000pt;}
.y40{bottom:654.080000pt;}
.y138{bottom:656.320000pt;}
.y120{bottom:657.280000pt;}
.y68{bottom:658.240000pt;}
.y8{bottom:666.880000pt;}
.y137{bottom:673.920000pt;}
.y56{bottom:674.880000pt;}
.yc1{bottom:676.480000pt;}
.y3f{bottom:682.880000pt;}
.y28{bottom:685.120000pt;}
.y136{bottom:691.520000pt;}
.y11f{bottom:692.480000pt;}
.y67{bottom:694.400000pt;}
.y8c{bottom:695.040000pt;}
.y101{bottom:695.680000pt;}
.y7{bottom:702.080000pt;}
.y55{bottom:703.680000pt;}
.y27{bottom:704.320000pt;}
.yc0{bottom:705.280000pt;}
.y11e{bottom:710.080000pt;}
.y3e{bottom:711.680000pt;}
.y26{bottom:723.200000pt;}
.y8b{bottom:723.840000pt;}
.y100{bottom:724.480000pt;}
.y135{bottom:727.680000pt;}
.y9f{bottom:732.480000pt;}
.ybf{bottom:734.080000pt;}
.y6{bottom:737.280000pt;}
.y3d{bottom:740.480000pt;}
.y25{bottom:742.400000pt;}
.y134{bottom:745.280000pt;}
.y11d{bottom:746.560000pt;}
.y88{bottom:746.666667pt;}
.y24{bottom:761.280000pt;}
.ybe{bottom:762.880000pt;}
.y11c{bottom:764.160000pt;}
.y5{bottom:764.480000pt;}
.y3c{bottom:769.280000pt;}
.y87{bottom:780.000000pt;}
.y23{bottom:780.160000pt;}
.y11b{bottom:781.760000pt;}
.y4{bottom:791.680000pt;}
.y3b{bottom:798.080000pt;}
.y22{bottom:799.360000pt;}
.y1{bottom:845.760000pt;}
.hc{height:23.147520pt;}
.h12{height:25.136250pt;}
.h10{height:33.333333pt;}
.h3{height:35.831250pt;}
.h6{height:39.787520pt;}
.h2{height:42.262500pt;}
.hd{height:43.975680pt;}
.hf{height:44.029440pt;}
.h8{height:45.212160pt;}
.hb{height:45.760000pt;}
.h7{height:48.163840pt;}
.h13{height:48.222720pt;}
.he{height:49.047040pt;}
.h11{height:49.333333pt;}
.ha{height:52.352000pt;}
.h5{height:53.312000pt;}
.h9{height:58.129920pt;}
.h4{height:76.430080pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:50.666667pt;}
.w4{width:85.333333pt;}
.w6{width:86.666667pt;}
.w5{width:122.666667pt;}
.w2{width:124.000000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:6.933333pt;}
.x16{left:8.106773pt;}
.x1c{left:11.787627pt;}
.x18{left:18.247723pt;}
.x1d{left:19.639989pt;}
.x1b{left:27.760427pt;}
.x14{left:31.214197pt;}
.x19{left:32.267093pt;}
.x1f{left:36.800427pt;}
.x1{left:75.519872pt;}
.x5{left:83.539072pt;}
.x6{left:84.626944pt;}
.x13{left:86.666667pt;}
.x4{left:88.491520pt;}
.x11{left:94.453120pt;}
.x12{left:103.853184pt;}
.x20{left:141.653312pt;}
.x15{left:210.666667pt;}
.x17{left:261.333333pt;}
.x10{left:267.519872pt;}
.xf{left:283.756512pt;}
.xd{left:287.851232pt;}
.xb{left:290.738272pt;}
.x3{left:292.053056pt;}
.x8{left:307.178048pt;}
.x2{left:321.219840pt;}
.xc{left:347.021760pt;}
.x7{left:379.740160pt;}
.xa{left:382.333440pt;}
.x9{left:414.224000pt;}
.x1a{left:469.333333pt;}
.xe{left:566.920000pt;}
}




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