
    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_656d5ea79f282b501e5f6157.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_49b39d827d1d2dd358b5ee94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_89aede5ba0d4a225c30832bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_bac184f692065cba83057be0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_142497673ed916691734ed95.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c1aeaf3e64f424b583473f8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_15374573c126a76e7ede1fee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3771cb54e98b90b215172013.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853000;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_cfe908094dd0af7b151a4752.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c76e1d855947f9bfae35bb6f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;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_a2522e3dc917557cc7e9a986.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_1b526757bb78833e0dc6af85.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689000;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_2b5e0a2895d7aa01e7cf93e0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.742000;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_5f8dd39b4ec6dbf7405e80a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.693000;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_1627484c4b8b24b2d7343a8b.woff2')format("woff");}.fff{font-family:fff;line-height:1.239258;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_36780d203275a29c6840a69f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c95e61e6cb87f57f9f10608c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.662000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-8.970240px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.966400px;}
.v1{vertical-align:59.776200px;}
.ls1f{letter-spacing:-0.497496px;}
.ls22{letter-spacing:-0.376155px;}
.ls23{letter-spacing:-0.242681px;}
.ls2b{letter-spacing:-0.237416px;}
.ls1d{letter-spacing:-0.200212px;}
.ls2a{letter-spacing:-0.188716px;}
.ls1c{letter-spacing:-0.182011px;}
.ls1e{letter-spacing:-0.175944px;}
.ls33{letter-spacing:-0.170932px;}
.ls2e{letter-spacing:-0.166862px;}
.ls25{letter-spacing:-0.130883px;}
.ls29{letter-spacing:-0.124796px;}
.ls21{letter-spacing:-0.121340px;}
.ls14{letter-spacing:-0.011955px;}
.ls13{letter-spacing:-0.005978px;}
.ls12{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000661px;}
.ls10{letter-spacing:0.003125px;}
.ls5{letter-spacing:0.003789px;}
.ls2{letter-spacing:0.004236px;}
.lse{letter-spacing:0.004536px;}
.ls7{letter-spacing:0.010146px;}
.ls28{letter-spacing:0.140015px;}
.ls2d{letter-spacing:0.143059px;}
.ls26{letter-spacing:0.146102px;}
.ls27{letter-spacing:0.155234px;}
.ls20{letter-spacing:0.182011px;}
.ls24{letter-spacing:0.185672px;}
.ls2c{letter-spacing:0.206978px;}
.ls1b{letter-spacing:0.215194px;}
.ls15{letter-spacing:0.284886px;}
.ls32{letter-spacing:0.443608px;}
.ls1a{letter-spacing:2.151936px;}
.ls3{letter-spacing:2.988408px;}
.ls8{letter-spacing:2.988552px;}
.ls17{letter-spacing:2.988916px;}
.ls2f{letter-spacing:3.212406px;}
.ls1{letter-spacing:3.661296px;}
.ls30{letter-spacing:3.749004px;}
.ls16{letter-spacing:4.076335px;}
.ls9{letter-spacing:4.243992px;}
.ls31{letter-spacing:5.321862px;}
.lsa{letter-spacing:8.966340px;}
.ls18{letter-spacing:13.449600px;}
.ls6{letter-spacing:15.728208px;}
.ls4{letter-spacing:16.400496px;}
.lsb{letter-spacing:18.913000px;}
.lsc{letter-spacing:22.117392px;}
.ls11{letter-spacing:23.217552px;}
.lsf{letter-spacing:24.472392px;}
.lsd{letter-spacing:26.744352px;}
.ls19{letter-spacing:39.106057px;}
.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;}
}
.ws31{word-spacing:-28.871615px;}
.ws27{word-spacing:-19.905275px;}
.ws64{word-spacing:-18.279445px;}
.ws60{word-spacing:-17.914867px;}
.ws54{word-spacing:-16.866316px;}
.ws56{word-spacing:-16.744975px;}
.ws57{word-spacing:-16.490160px;}
.ws55{word-spacing:-16.368820px;}
.ws7{word-spacing:-14.955955px;}
.ws1c{word-spacing:-14.943900px;}
.ws5e{word-spacing:-13.449600px;}
.ws51{word-spacing:-13.294127px;}
.ws5c{word-spacing:-9.738792px;}
.ws59{word-spacing:-8.330881px;}
.ws1{word-spacing:-3.997805px;}
.ws0{word-spacing:-3.975090px;}
.ws1b{word-spacing:-3.299613px;}
.ws7e{word-spacing:-3.167501px;}
.ws29{word-spacing:-3.036600px;}
.ws2b{word-spacing:-2.976825px;}
.ws72{word-spacing:-2.953532px;}
.ws21{word-spacing:-2.911072px;}
.ws3e{word-spacing:-2.899117px;}
.ws66{word-spacing:-2.779565px;}
.ws20{word-spacing:-2.313316px;}
.ws26{word-spacing:-2.205720px;}
.ws17{word-spacing:-2.146556px;}
.ws4a{word-spacing:-2.104101px;}
.ws6f{word-spacing:-1.995921px;}
.ws6a{word-spacing:-1.936742px;}
.ws39{word-spacing:-1.930752px;}
.ws2f{word-spacing:-1.870976px;}
.ws40{word-spacing:-1.864999px;}
.ws1a{word-spacing:-1.709582px;}
.ws44{word-spacing:-1.619919px;}
.ws62{word-spacing:-1.446570px;}
.ws61{word-spacing:-1.022163px;}
.ws46{word-spacing:-1.004230px;}
.ws4c{word-spacing:-0.968365px;}
.ws6b{word-spacing:-0.823116px;}
.ws3f{word-spacing:-0.741217px;}
.ws5f{word-spacing:-0.737038px;}
.ws18{word-spacing:-0.657532px;}
.ws4d{word-spacing:-0.466250px;}
.ws7c{word-spacing:-0.459614px;}
.ws78{word-spacing:-0.432220px;}
.ws76{word-spacing:-0.423088px;}
.ws7f{word-spacing:-0.337793px;}
.ws77{word-spacing:-0.085226px;}
.ws7d{word-spacing:-0.082183px;}
.ws79{word-spacing:-0.073051px;}
.ws53{word-spacing:-0.024268px;}
.ws7b{word-spacing:-0.009131px;}
.ws75{word-spacing:-0.006067px;}
.ws3{word-spacing:0.000000px;}
.ws50{word-spacing:0.004184px;}
.ws74{word-spacing:0.005380px;}
.ws4f{word-spacing:0.020921px;}
.ws2a{word-spacing:0.029888px;}
.ws5a{word-spacing:0.089300px;}
.ws80{word-spacing:0.113954px;}
.ws52{word-spacing:0.200212px;}
.ws3a{word-spacing:0.209215px;}
.ws58{word-spacing:0.248748px;}
.ws7a{word-spacing:0.249592px;}
.wsf{word-spacing:0.500325px;}
.ws49{word-spacing:0.526025px;}
.ws1d{word-spacing:0.609711px;}
.ws73{word-spacing:0.758557px;}
.ws69{word-spacing:1.038309px;}
.ws2c{word-spacing:1.159647px;}
.ws23{word-spacing:1.386794px;}
.ws71{word-spacing:1.613952px;}
.ws41{word-spacing:1.966617px;}
.ws45{word-spacing:2.026393px;}
.wse{word-spacing:2.189595px;}
.ws28{word-spacing:2.564373px;}
.ws33{word-spacing:2.929004px;}
.ws43{word-spacing:3.084421px;}
.ws3b{word-spacing:3.221905px;}
.ws2d{word-spacing:3.311568px;}
.ws16{word-spacing:3.416198px;}
.ws30{word-spacing:3.969100px;}
.ws10{word-spacing:4.163996px;}
.ws22{word-spacing:4.417417px;}
.ws11{word-spacing:4.734259px;}
.ws12{word-spacing:4.933313px;}
.ws65{word-spacing:5.212432px;}
.ws35{word-spacing:5.284163px;}
.ws3c{word-spacing:5.666727px;}
.wsd{word-spacing:5.890925px;}
.ws67{word-spacing:5.960863px;}
.ws5d{word-spacing:5.966243px;}
.ws4b{word-spacing:5.983538px;}
.ws4e{word-spacing:6.055268px;}
.ws38{word-spacing:6.121021px;}
.ws2e{word-spacing:6.395989px;}
.ws47{word-spacing:6.539451px;}
.ws42{word-spacing:6.605204px;}
.ws68{word-spacing:6.708660px;}
.ws48{word-spacing:6.802463px;}
.ws25{word-spacing:7.005700px;}
.ws1f{word-spacing:7.711052px;}
.ws19{word-spacing:7.944177px;}
.wsc{word-spacing:8.128938px;}
.ws63{word-spacing:8.159369px;}
.ws36{word-spacing:8.685395px;}
.ws34{word-spacing:8.810923px;}
.ws3d{word-spacing:8.972318px;}
.ws2{word-spacing:9.468479px;}
.ws24{word-spacing:11.429095px;}
.ws37{word-spacing:11.877412px;}
.ws1e{word-spacing:12.050761px;}
.ws6{word-spacing:13.246306px;}
.ws6d{word-spacing:14.455630px;}
.wsb{word-spacing:16.204078px;}
.ws15{word-spacing:16.354714px;}
.ws5{word-spacing:16.557841px;}
.wsa{word-spacing:18.226898px;}
.ws4{word-spacing:21.525227px;}
.ws32{word-spacing:21.895802px;}
.ws9{word-spacing:23.719715px;}
.ws6e{word-spacing:25.656457px;}
.ws14{word-spacing:26.172922px;}
.ws5b{word-spacing:26.949600px;}
.ws70{word-spacing:27.033696px;}
.ws6c{word-spacing:32.644869px;}
.ws8{word-spacing:33.435706px;}
.ws13{word-spacing:37.115516px;}
._19{margin-left:-1091.871749px;}
._0{margin-left:-10.221660px;}
._13{margin-left:-8.900576px;}
._10{margin-left:-7.173072px;}
._3{margin-left:-5.748036px;}
._1{margin-left:-4.542960px;}
._6{margin-left:-3.138246px;}
._5{margin-left:-1.434618px;}
._16{width:1.021516px;}
._b{width:2.162696px;}
._7{width:4.567484px;}
._12{width:8.428360px;}
._8{width:9.463139px;}
._a{width:10.765060px;}
._c{width:12.655165px;}
._1c{width:14.579323px;}
._e{width:15.592558px;}
._9{width:17.070232px;}
._d{width:18.587347px;}
._11{width:20.676380px;}
._1d{width:21.761095px;}
._4{width:22.762606px;}
._14{width:23.836133px;}
._f{width:25.906749px;}
._15{width:27.951071px;}
._1e{width:34.296480px;}
._2{width:41.863001px;}
._1b{width:43.539450px;}
._1f{width:52.496479px;}
._20{width:54.182168px;}
._1a{width:58.707150px;}
._18{width:157.353873px;}
._17{width:1371.238668px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(217,217,217);}
.fsd{font-size:21.546000px;}
.fsc{font-size:28.500000px;}
.fs9{font-size:30.438000px;}
.fsb{font-size:34.542000px;}
.fs11{font-size:38.854200px;}
.fsa{font-size:40.698000px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:44.832000px;}
.fs10{font-size:45.600000px;}
.fs1{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs8{font-size:60.670200px;}
.fs12{font-size:65.753400px;}
.fs3{font-size:77.708400px;}
.fs2{font-size:95.641200px;}
.fse{font-size:103.839000px;}
.fs0{font-size:113.574000px;}
.fsf{font-size:121.744800px;}
.y0{bottom:0.000000px;}
.y5b{bottom:104.919750px;}
.y30{bottom:155.729280px;}
.y5a{bottom:156.885000px;}
.y98{bottom:159.465147px;}
.ya9{bottom:162.389090px;}
.y2f{bottom:173.661960px;}
.y59{bottom:174.817680px;}
.y97{bottom:175.903248px;}
.ya8{bottom:178.827191px;}
.y2e{bottom:191.594640px;}
.y96{bottom:192.341349px;}
.y58{bottom:192.750360px;}
.ya7{bottom:195.265292px;}
.y95{bottom:208.779450px;}
.y2d{bottom:209.527320px;}
.y57{bottom:210.683040px;}
.ya6{bottom:211.703393px;}
.y2c{bottom:227.460090px;}
.ya5{bottom:228.141494px;}
.y56{bottom:228.615720px;}
.y94{bottom:231.195450px;}
.ya4{bottom:244.579595px;}
.y2b{bottom:245.392770px;}
.y55{bottom:246.548400px;}
.ya3{bottom:261.017696px;}
.y2a{bottom:263.326560px;}
.y54{bottom:264.481080px;}
.y93{bottom:264.784440px;}
.ya2{bottom:277.455798px;}
.y29{bottom:281.259240px;}
.y53{bottom:282.413760px;}
.y92{bottom:282.717120px;}
.ya1{bottom:293.893899px;}
.y28{bottom:299.191920px;}
.y52{bottom:300.346440px;}
.y91{bottom:300.649800px;}
.ya0{bottom:310.332000px;}
.y27{bottom:317.124600px;}
.y51{bottom:318.279120px;}
.y90{bottom:323.065800px;}
.y9f{bottom:326.770101px;}
.y26{bottom:335.057280px;}
.y50{bottom:336.211800px;}
.y9e{bottom:343.208202px;}
.y25{bottom:352.989960px;}
.y8f{bottom:353.665980px;}
.y4f{bottom:354.144480px;}
.y9d{bottom:359.646303px;}
.y24{bottom:370.922640px;}
.y8e{bottom:371.598660px;}
.y4e{bottom:372.077160px;}
.y9c{bottom:376.084404px;}
.y23{bottom:388.855320px;}
.y8d{bottom:389.531340px;}
.y4d{bottom:390.009840px;}
.y9b{bottom:392.522505px;}
.y22{bottom:406.788000px;}
.y8c{bottom:407.464020px;}
.y4c{bottom:407.942520px;}
.y9a{bottom:408.960606px;}
.y21{bottom:424.720680px;}
.y8b{bottom:425.396700px;}
.y99{bottom:425.398708px;}
.y4b{bottom:425.875200px;}
.y20{bottom:442.653360px;}
.y4a{bottom:443.807880px;}
.y8a{bottom:452.443899px;}
.y1f{bottom:460.586040px;}
.y49{bottom:461.740560px;}
.y89{bottom:468.882249px;}
.y1e{bottom:478.518720px;}
.y48{bottom:479.673240px;}
.y88{bottom:485.320350px;}
.y1d{bottom:496.451400px;}
.y47{bottom:497.605920px;}
.y46{bottom:515.538600px;}
.y45{bottom:533.471280px;}
.y1c{bottom:533.478268px;}
.y7b{bottom:543.736650px;}
.y7a{bottom:550.575256px;}
.y44{bottom:551.403960px;}
.y1b{bottom:551.410620px;}
.y79{bottom:557.416650px;}
.y6f{bottom:563.619600px;}
.y43{bottom:569.336640px;}
.y1a{bottom:569.342971px;}
.y70{bottom:575.202000px;}
.y42{bottom:587.269320px;}
.y19{bottom:587.275323px;}
.y72{bottom:601.449150px;}
.y41{bottom:605.202000px;}
.y18{bottom:605.207675px;}
.y73{bottom:621.112725px;}
.y40{bottom:623.134680px;}
.y17{bottom:623.140026px;}
.y71{bottom:625.051350px;}
.y74{bottom:640.864650px;}
.y3f{bottom:641.067360px;}
.y16{bottom:641.072378px;}
.y3e{bottom:659.000040px;}
.y15{bottom:659.004730px;}
.y75{bottom:660.528225px;}
.y6e{bottom:663.433800px;}
.y3d{bottom:676.932720px;}
.y14{bottom:676.937082px;}
.y76{bottom:680.280150px;}
.y6d{bottom:688.572150px;}
.y3c{bottom:694.865520px;}
.y13{bottom:694.869433px;}
.y77{bottom:699.943725px;}
.y6c{bottom:703.791364px;}
.y3b{bottom:712.798170px;}
.y12{bottom:712.801785px;}
.y83{bottom:713.453104px;}
.y87{bottom:714.445740px;}
.y6b{bottom:718.839090px;}
.y78{bottom:719.610150px;}
.y3a{bottom:730.731060px;}
.y11{bottom:730.734137px;}
.y82{bottom:732.006305px;}
.y6a{bottom:733.801650px;}
.y80{bottom:735.766800px;}
.y7e{bottom:743.892198px;}
.y86{bottom:744.540600px;}
.y39{bottom:748.663740px;}
.y10{bottom:748.666488px;}
.y69{bottom:749.020744px;}
.y81{bottom:750.388574px;}
.y7d{bottom:762.445398px;}
.y68{bottom:763.555633px;}
.y7f{bottom:766.206150px;}
.y38{bottom:766.596420px;}
.yf{bottom:766.598840px;}
.y7c{bottom:780.826650px;}
.y37{bottom:782.287500px;}
.y67{bottom:783.049411px;}
.y36{bottom:784.529220px;}
.ye{bottom:784.531192px;}
.y66{bottom:797.242744px;}
.y35{bottom:802.461870px;}
.yd{bottom:802.463543px;}
.y65{bottom:811.777650px;}
.y34{bottom:820.392109px;}
.yc{bottom:820.395895px;}
.y85{bottom:833.645700px;}
.y33{bottom:838.324789px;}
.yb{bottom:838.328247px;}
.y32{bottom:856.257469px;}
.ya{bottom:856.260598px;}
.y31{bottom:874.190149px;}
.y9{bottom:874.192950px;}
.y64{bottom:904.442550px;}
.y62{bottom:904.443291px;}
.y60{bottom:904.879494px;}
.y63{bottom:922.599624px;}
.y61{bottom:922.600365px;}
.y5f{bottom:922.965281px;}
.y8{bottom:936.999525px;}
.y7{bottom:954.932250px;}
.y6{bottom:984.820050px;}
.y5e{bottom:1001.140831px;}
.y5{bottom:1020.685500px;}
.y4{bottom:1056.551081px;}
.y5d{bottom:1059.554100px;}
.y3{bottom:1087.933350px;}
.y84{bottom:1094.557200px;}
.y1{bottom:1140.966450px;}
.y2{bottom:1140.966563px;}
.y5c{bottom:1162.952100px;}
.h15{height:15.707034px;}
.h14{height:20.776500px;}
.he{height:22.158864px;}
.h10{height:22.158932px;}
.h11{height:22.159103px;}
.hf{height:22.159822px;}
.h13{height:25.181118px;}
.h12{height:27.511848px;}
.h17{height:27.593244px;}
.h16{height:29.668842px;}
.h6{height:34.143908px;}
.h2{height:34.861217px;}
.h1a{height:42.237891px;}
.h5{height:43.576412px;}
.hd{height:44.228576px;}
.hc{height:49.875391px;}
.h1c{height:52.800188px;}
.h1b{height:54.218700px;}
.h7{height:56.110050px;}
.h4{height:56.649424px;}
.h8{height:58.666482px;}
.ha{height:58.666602px;}
.h9{height:58.676246px;}
.hb{height:67.632882px;}
.h1d{height:68.578741px;}
.h18{height:75.698631px;}
.h19{height:88.751959px;}
.h3{height:99.750783px;}
.h1{height:118.454133px;}
.h0{height:1261.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:68.154150px;}
.x8{left:71.583750px;}
.x4{left:80.910263px;}
.x27{left:84.339863px;}
.x28{left:86.527601px;}
.x1c{left:189.160650px;}
.x1d{left:195.426450px;}
.x1b{left:225.209400px;}
.x1e{left:239.544300px;}
.x1f{left:253.309350px;}
.x3{left:256.447950px;}
.x20{left:263.141987px;}
.x1a{left:307.922550px;}
.x21{left:319.743000px;}
.xb{left:326.071374px;}
.xc{left:341.093316px;}
.x22{left:389.853000px;}
.xd{left:397.172806px;}
.xe{left:405.995770px;}
.x23{left:413.108855px;}
.x24{left:422.941491px;}
.xa{left:430.719658px;}
.x9{left:433.418100px;}
.x25{left:447.930300px;}
.x26{left:450.729000px;}
.x5{left:458.189768px;}
.xf{left:461.420618px;}
.x7{left:470.949219px;}
.x29{left:476.566001px;}
.x10{left:482.279033px;}
.x11{left:549.877377px;}
.x19{left:558.630000px;}
.x2{left:642.636143px;}
.x15{left:655.159139px;}
.x13{left:656.441859px;}
.x17{left:659.178120px;}
.x18{left:662.000881px;}
.x14{left:664.564089px;}
.x12{left:666.019350px;}
.x16{left:697.995203px;}
.x6{left:772.998300px;}
@media print{
.v2{vertical-align:-7.973547pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.970133pt;}
.v1{vertical-align:53.134400pt;}
.ls1f{letter-spacing:-0.442218pt;}
.ls22{letter-spacing:-0.334360pt;}
.ls23{letter-spacing:-0.215716pt;}
.ls2b{letter-spacing:-0.211037pt;}
.ls1d{letter-spacing:-0.177966pt;}
.ls2a{letter-spacing:-0.167747pt;}
.ls1c{letter-spacing:-0.161787pt;}
.ls1e{letter-spacing:-0.156394pt;}
.ls33{letter-spacing:-0.151939pt;}
.ls2e{letter-spacing:-0.148322pt;}
.ls25{letter-spacing:-0.116341pt;}
.ls29{letter-spacing:-0.110930pt;}
.ls21{letter-spacing:-0.107858pt;}
.ls14{letter-spacing:-0.010627pt;}
.ls13{letter-spacing:-0.005313pt;}
.ls12{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000588pt;}
.ls10{letter-spacing:0.002777pt;}
.ls5{letter-spacing:0.003368pt;}
.ls2{letter-spacing:0.003766pt;}
.lse{letter-spacing:0.004032pt;}
.ls7{letter-spacing:0.009019pt;}
.ls28{letter-spacing:0.124458pt;}
.ls2d{letter-spacing:0.127163pt;}
.ls26{letter-spacing:0.129869pt;}
.ls27{letter-spacing:0.137986pt;}
.ls20{letter-spacing:0.161787pt;}
.ls24{letter-spacing:0.165042pt;}
.ls2c{letter-spacing:0.183981pt;}
.ls1b{letter-spacing:0.191283pt;}
.ls15{letter-spacing:0.253232pt;}
.ls32{letter-spacing:0.394318pt;}
.ls1a{letter-spacing:1.912832pt;}
.ls3{letter-spacing:2.656363pt;}
.ls8{letter-spacing:2.656491pt;}
.ls17{letter-spacing:2.656814pt;}
.ls2f{letter-spacing:2.855472pt;}
.ls1{letter-spacing:3.254485pt;}
.ls30{letter-spacing:3.332448pt;}
.ls16{letter-spacing:3.623409pt;}
.ls9{letter-spacing:3.772437pt;}
.ls31{letter-spacing:4.730544pt;}
.lsa{letter-spacing:7.970080pt;}
.ls18{letter-spacing:11.955200pt;}
.ls6{letter-spacing:13.980629pt;}
.ls4{letter-spacing:14.578219pt;}
.lsb{letter-spacing:16.811555pt;}
.lsc{letter-spacing:19.659904pt;}
.ls11{letter-spacing:20.637824pt;}
.lsf{letter-spacing:21.753237pt;}
.lsd{letter-spacing:23.772757pt;}
.ls19{letter-spacing:34.760940pt;}
.ws31{word-spacing:-25.663658pt;}
.ws27{word-spacing:-17.693578pt;}
.ws64{word-spacing:-16.248396pt;}
.ws60{word-spacing:-15.924326pt;}
.ws54{word-spacing:-14.992281pt;}
.ws56{word-spacing:-14.884422pt;}
.ws57{word-spacing:-14.657920pt;}
.ws55{word-spacing:-14.550062pt;}
.ws7{word-spacing:-13.294182pt;}
.ws1c{word-spacing:-13.283467pt;}
.ws5e{word-spacing:-11.955200pt;}
.ws51{word-spacing:-11.817002pt;}
.ws5c{word-spacing:-8.656704pt;}
.ws59{word-spacing:-7.405227pt;}
.ws1{word-spacing:-3.553604pt;}
.ws0{word-spacing:-3.533413pt;}
.ws1b{word-spacing:-2.932989pt;}
.ws7e{word-spacing:-2.815557pt;}
.ws29{word-spacing:-2.699200pt;}
.ws2b{word-spacing:-2.646067pt;}
.ws72{word-spacing:-2.625362pt;}
.ws21{word-spacing:-2.587619pt;}
.ws3e{word-spacing:-2.576993pt;}
.ws66{word-spacing:-2.470725pt;}
.ws20{word-spacing:-2.056281pt;}
.ws26{word-spacing:-1.960640pt;}
.ws17{word-spacing:-1.908050pt;}
.ws4a{word-spacing:-1.870312pt;}
.ws6f{word-spacing:-1.774152pt;}
.ws6a{word-spacing:-1.721549pt;}
.ws39{word-spacing:-1.716224pt;}
.ws2f{word-spacing:-1.663090pt;}
.ws40{word-spacing:-1.657777pt;}
.ws1a{word-spacing:-1.519629pt;}
.ws44{word-spacing:-1.439928pt;}
.ws62{word-spacing:-1.285840pt;}
.ws61{word-spacing:-0.908589pt;}
.ws46{word-spacing:-0.892649pt;}
.ws4c{word-spacing:-0.860769pt;}
.ws6b{word-spacing:-0.731658pt;}
.ws3f{word-spacing:-0.658860pt;}
.ws5f{word-spacing:-0.655145pt;}
.ws18{word-spacing:-0.584473pt;}
.ws4d{word-spacing:-0.414444pt;}
.ws7c{word-spacing:-0.408546pt;}
.ws78{word-spacing:-0.384195pt;}
.ws76{word-spacing:-0.376078pt;}
.ws7f{word-spacing:-0.300261pt;}
.ws77{word-spacing:-0.075757pt;}
.ws7d{word-spacing:-0.073051pt;}
.ws79{word-spacing:-0.064934pt;}
.ws53{word-spacing:-0.021572pt;}
.ws7b{word-spacing:-0.008117pt;}
.ws75{word-spacing:-0.005393pt;}
.ws3{word-spacing:0.000000pt;}
.ws50{word-spacing:0.003719pt;}
.ws74{word-spacing:0.004782pt;}
.ws4f{word-spacing:0.018597pt;}
.ws2a{word-spacing:0.026567pt;}
.ws5a{word-spacing:0.079378pt;}
.ws80{word-spacing:0.101293pt;}
.ws52{word-spacing:0.177966pt;}
.ws3a{word-spacing:0.185969pt;}
.ws58{word-spacing:0.221109pt;}
.ws7a{word-spacing:0.221859pt;}
.wsf{word-spacing:0.444733pt;}
.ws49{word-spacing:0.467578pt;}
.ws1d{word-spacing:0.541965pt;}
.ws73{word-spacing:0.674273pt;}
.ws69{word-spacing:0.922941pt;}
.ws2c{word-spacing:1.030797pt;}
.ws23{word-spacing:1.232706pt;}
.ws71{word-spacing:1.434624pt;}
.ws41{word-spacing:1.748104pt;}
.ws45{word-spacing:1.801238pt;}
.wse{word-spacing:1.946307pt;}
.ws28{word-spacing:2.279443pt;}
.ws33{word-spacing:2.603559pt;}
.ws43{word-spacing:2.741708pt;}
.ws3b{word-spacing:2.863915pt;}
.ws2d{word-spacing:2.943616pt;}
.ws16{word-spacing:3.036621pt;}
.ws30{word-spacing:3.528089pt;}
.ws10{word-spacing:3.701330pt;}
.ws22{word-spacing:3.926593pt;}
.ws11{word-spacing:4.208230pt;}
.ws12{word-spacing:4.385167pt;}
.ws65{word-spacing:4.633273pt;}
.ws35{word-spacing:4.697034pt;}
.ws3c{word-spacing:5.037091pt;}
.wsd{word-spacing:5.236378pt;}
.ws67{word-spacing:5.298545pt;}
.ws5d{word-spacing:5.303327pt;}
.ws4b{word-spacing:5.318700pt;}
.ws4e{word-spacing:5.382461pt;}
.ws38{word-spacing:5.440908pt;}
.ws2e{word-spacing:5.685324pt;}
.ws47{word-spacing:5.812845pt;}
.ws42{word-spacing:5.871292pt;}
.ws68{word-spacing:5.963254pt;}
.ws48{word-spacing:6.046634pt;}
.ws25{word-spacing:6.227289pt;}
.ws1f{word-spacing:6.854269pt;}
.ws19{word-spacing:7.061491pt;}
.wsc{word-spacing:7.225723pt;}
.ws63{word-spacing:7.252773pt;}
.ws36{word-spacing:7.720351pt;}
.ws34{word-spacing:7.831932pt;}
.ws3d{word-spacing:7.975393pt;}
.ws2{word-spacing:8.416426pt;}
.ws24{word-spacing:10.159195pt;}
.ws37{word-spacing:10.557699pt;}
.ws1e{word-spacing:10.711788pt;}
.ws6{word-spacing:11.774494pt;}
.ws6d{word-spacing:12.849449pt;}
.wsb{word-spacing:14.403625pt;}
.ws15{word-spacing:14.537523pt;}
.ws5{word-spacing:14.718081pt;}
.wsa{word-spacing:16.201687pt;}
.ws4{word-spacing:19.133535pt;}
.ws32{word-spacing:19.462935pt;}
.ws9{word-spacing:21.084191pt;}
.ws6e{word-spacing:22.805740pt;}
.ws14{word-spacing:23.264819pt;}
.ws5b{word-spacing:23.955200pt;}
.ws70{word-spacing:24.029952pt;}
.ws6c{word-spacing:29.017661pt;}
.ws8{word-spacing:29.720627pt;}
.ws13{word-spacing:32.991570pt;}
._19{margin-left:-970.552665pt;}
._0{margin-left:-9.085920pt;}
._13{margin-left:-7.911623pt;}
._10{margin-left:-6.376064pt;}
._3{margin-left:-5.109365pt;}
._1{margin-left:-4.038187pt;}
._6{margin-left:-2.789552pt;}
._5{margin-left:-1.275216pt;}
._16{width:0.908014pt;}
._b{width:1.922396pt;}
._7{width:4.059986pt;}
._12{width:7.491875pt;}
._8{width:8.411679pt;}
._a{width:9.568942pt;}
._c{width:11.249036pt;}
._1c{width:12.959398pt;}
._e{width:13.860051pt;}
._9{width:15.173540pt;}
._d{width:16.522086pt;}
._11{width:18.379004pt;}
._1d{width:19.343195pt;}
._4{width:20.233427pt;}
._14{width:21.187673pt;}
._f{width:23.028221pt;}
._15{width:24.845396pt;}
._1e{width:30.485760pt;}
._2{width:37.211556pt;}
._1b{width:38.701733pt;}
._1f{width:46.663537pt;}
._20{width:48.161927pt;}
._1a{width:52.184133pt;}
._18{width:139.870109pt;}
._17{width:1218.878816pt;}
.fsd{font-size:19.152000pt;}
.fsc{font-size:25.333333pt;}
.fs9{font-size:27.056000pt;}
.fsb{font-size:30.704000pt;}
.fs11{font-size:34.537067pt;}
.fsa{font-size:36.176000pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:39.850667pt;}
.fs10{font-size:40.533333pt;}
.fs1{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs8{font-size:53.929067pt;}
.fs12{font-size:58.447467pt;}
.fs3{font-size:69.074133pt;}
.fs2{font-size:85.014400pt;}
.fse{font-size:92.301333pt;}
.fs0{font-size:100.954667pt;}
.fsf{font-size:108.217600pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:93.262000pt;}
.y30{bottom:138.426027pt;}
.y5a{bottom:139.453333pt;}
.y98{bottom:141.746797pt;}
.ya9{bottom:144.345857pt;}
.y2f{bottom:154.366187pt;}
.y59{bottom:155.393493pt;}
.y97{bottom:156.358442pt;}
.ya8{bottom:158.957503pt;}
.y2e{bottom:170.306347pt;}
.y96{bottom:170.970088pt;}
.y58{bottom:171.333653pt;}
.ya7{bottom:173.569148pt;}
.y95{bottom:185.581733pt;}
.y2d{bottom:186.246507pt;}
.y57{bottom:187.273813pt;}
.ya6{bottom:188.180794pt;}
.y2c{bottom:202.186747pt;}
.ya5{bottom:202.792439pt;}
.y56{bottom:203.213973pt;}
.y94{bottom:205.507067pt;}
.ya4{bottom:217.404085pt;}
.y2b{bottom:218.126907pt;}
.y55{bottom:219.154133pt;}
.ya3{bottom:232.015730pt;}
.y2a{bottom:234.068053pt;}
.y54{bottom:235.094293pt;}
.y93{bottom:235.363947pt;}
.ya2{bottom:246.627376pt;}
.y29{bottom:250.008213pt;}
.y53{bottom:251.034453pt;}
.y92{bottom:251.304107pt;}
.ya1{bottom:261.239021pt;}
.y28{bottom:265.948373pt;}
.y52{bottom:266.974613pt;}
.y91{bottom:267.244267pt;}
.ya0{bottom:275.850666pt;}
.y27{bottom:281.888533pt;}
.y51{bottom:282.914773pt;}
.y90{bottom:287.169600pt;}
.y9f{bottom:290.462312pt;}
.y26{bottom:297.828693pt;}
.y50{bottom:298.854933pt;}
.y9e{bottom:305.073957pt;}
.y25{bottom:313.768853pt;}
.y8f{bottom:314.369760pt;}
.y4f{bottom:314.795093pt;}
.y9d{bottom:319.685603pt;}
.y24{bottom:329.709013pt;}
.y8e{bottom:330.309920pt;}
.y4e{bottom:330.735253pt;}
.y9c{bottom:334.297248pt;}
.y23{bottom:345.649173pt;}
.y8d{bottom:346.250080pt;}
.y4d{bottom:346.675413pt;}
.y9b{bottom:348.908894pt;}
.y22{bottom:361.589333pt;}
.y8c{bottom:362.190240pt;}
.y4c{bottom:362.615573pt;}
.y9a{bottom:363.520539pt;}
.y21{bottom:377.529493pt;}
.y8b{bottom:378.130400pt;}
.y99{bottom:378.132185pt;}
.y4b{bottom:378.555733pt;}
.y20{bottom:393.469653pt;}
.y4a{bottom:394.495893pt;}
.y8a{bottom:402.172355pt;}
.y1f{bottom:409.409813pt;}
.y49{bottom:410.436053pt;}
.y89{bottom:416.784221pt;}
.y1e{bottom:425.349973pt;}
.y48{bottom:426.376213pt;}
.y88{bottom:431.395867pt;}
.y1d{bottom:441.290133pt;}
.y47{bottom:442.316373pt;}
.y46{bottom:458.256533pt;}
.y45{bottom:474.196693pt;}
.y1c{bottom:474.202905pt;}
.y7b{bottom:483.321467pt;}
.y7a{bottom:489.400228pt;}
.y44{bottom:490.136853pt;}
.y1b{bottom:490.142773pt;}
.y79{bottom:495.481467pt;}
.y6f{bottom:500.995200pt;}
.y43{bottom:506.077013pt;}
.y1a{bottom:506.082641pt;}
.y70{bottom:511.290667pt;}
.y42{bottom:522.017173pt;}
.y19{bottom:522.022509pt;}
.y72{bottom:534.621467pt;}
.y41{bottom:537.957333pt;}
.y18{bottom:537.962378pt;}
.y73{bottom:552.100200pt;}
.y40{bottom:553.897493pt;}
.y17{bottom:553.902246pt;}
.y71{bottom:555.601200pt;}
.y74{bottom:569.657467pt;}
.y3f{bottom:569.837653pt;}
.y16{bottom:569.842114pt;}
.y3e{bottom:585.777813pt;}
.y15{bottom:585.781982pt;}
.y75{bottom:587.136200pt;}
.y6e{bottom:589.718933pt;}
.y3d{bottom:601.717973pt;}
.y14{bottom:601.721850pt;}
.y76{bottom:604.693467pt;}
.y6d{bottom:612.064133pt;}
.y3c{bottom:617.658240pt;}
.y13{bottom:617.661718pt;}
.y77{bottom:622.172200pt;}
.y6c{bottom:625.592323pt;}
.y3b{bottom:633.598373pt;}
.y12{bottom:633.601587pt;}
.y83{bottom:634.180537pt;}
.y87{bottom:635.062880pt;}
.y6b{bottom:638.968080pt;}
.y78{bottom:639.653467pt;}
.y3a{bottom:649.538720pt;}
.y11{bottom:649.541455pt;}
.y82{bottom:650.672271pt;}
.y6a{bottom:652.268133pt;}
.y80{bottom:654.014933pt;}
.y7e{bottom:661.237509pt;}
.y86{bottom:661.813867pt;}
.y39{bottom:665.478880pt;}
.y10{bottom:665.481323pt;}
.y69{bottom:665.796217pt;}
.y81{bottom:667.012066pt;}
.y7d{bottom:677.729243pt;}
.y68{bottom:678.716118pt;}
.y7f{bottom:681.072133pt;}
.y38{bottom:681.419040pt;}
.yf{bottom:681.421191pt;}
.y7c{bottom:694.068133pt;}
.y37{bottom:695.366667pt;}
.y67{bottom:696.043921pt;}
.y36{bottom:697.359307pt;}
.ye{bottom:697.361059pt;}
.y66{bottom:708.660217pt;}
.y35{bottom:713.299440pt;}
.yd{bottom:713.300927pt;}
.y65{bottom:721.580133pt;}
.y34{bottom:729.237430pt;}
.yc{bottom:729.240796pt;}
.y85{bottom:741.018400pt;}
.y33{bottom:745.177590pt;}
.yb{bottom:745.180664pt;}
.y32{bottom:761.117750pt;}
.ya{bottom:761.120532pt;}
.y31{bottom:777.057910pt;}
.y9{bottom:777.060400pt;}
.y64{bottom:803.948933pt;}
.y62{bottom:803.949592pt;}
.y60{bottom:804.337328pt;}
.y63{bottom:820.088555pt;}
.y61{bottom:820.089214pt;}
.y5f{bottom:820.413583pt;}
.y8{bottom:832.888467pt;}
.y7{bottom:848.828667pt;}
.y6{bottom:875.395600pt;}
.y5e{bottom:889.902961pt;}
.y5{bottom:907.276000pt;}
.y4{bottom:939.156517pt;}
.y5d{bottom:941.825867pt;}
.y3{bottom:967.051867pt;}
.y84{bottom:972.939733pt;}
.y1{bottom:1014.192400pt;}
.y2{bottom:1014.192500pt;}
.y5c{bottom:1033.735200pt;}
.h15{height:13.961808pt;}
.h14{height:18.468000pt;}
.he{height:19.696768pt;}
.h10{height:19.696829pt;}
.h11{height:19.696981pt;}
.hf{height:19.697619pt;}
.h13{height:22.383216pt;}
.h12{height:24.454976pt;}
.h17{height:24.527328pt;}
.h16{height:26.372304pt;}
.h6{height:30.350141pt;}
.h2{height:30.987749pt;}
.h1a{height:37.544792pt;}
.h5{height:38.734589pt;}
.hd{height:39.314290pt;}
.hc{height:44.333681pt;}
.h1c{height:46.933500pt;}
.h1b{height:48.194400pt;}
.h7{height:49.875600pt;}
.h4{height:50.355043pt;}
.h8{height:52.147984pt;}
.ha{height:52.148091pt;}
.h9{height:52.156663pt;}
.hb{height:60.118118pt;}
.h1d{height:60.958881pt;}
.h18{height:67.287672pt;}
.h19{height:78.890630pt;}
.h3{height:88.667362pt;}
.h1{height:105.292562pt;}
.h0{height:1121.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:60.581467pt;}
.x8{left:63.630000pt;}
.x4{left:71.920234pt;}
.x27{left:74.968767pt;}
.x28{left:76.913423pt;}
.x1c{left:168.142800pt;}
.x1d{left:173.712400pt;}
.x1b{left:200.186133pt;}
.x1e{left:212.928267pt;}
.x1f{left:225.163867pt;}
.x3{left:227.953733pt;}
.x20{left:233.903988pt;}
.x1a{left:273.708933pt;}
.x21{left:284.216000pt;}
.xb{left:289.841221pt;}
.xc{left:303.194058pt;}
.x22{left:346.536000pt;}
.xd{left:353.042494pt;}
.xe{left:360.885129pt;}
.x23{left:367.207871pt;}
.x24{left:375.947992pt;}
.xa{left:382.861919pt;}
.x9{left:385.260533pt;}
.x25{left:398.160267pt;}
.x26{left:400.648000pt;}
.x5{left:407.279794pt;}
.xf{left:410.151661pt;}
.x7{left:418.621528pt;}
.x29{left:423.614223pt;}
.x10{left:428.692474pt;}
.x11{left:488.779891pt;}
.x19{left:496.560000pt;}
.x2{left:571.232127pt;}
.x15{left:582.363679pt;}
.x13{left:583.503875pt;}
.x17{left:585.936106pt;}
.x18{left:588.445228pt;}
.x14{left:590.723634pt;}
.x12{left:592.017200pt;}
.x16{left:620.440181pt;}
.x6{left:687.109600pt;}
}




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