
    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_57255dcee3db5ba53bb25500.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895508;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_ebfc54cfb4a0b34c98c91949.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_4e19c81e7ae557be57841923.woff')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_ac6ef0b4ef722a51f8fce3a7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_75b4368690e87911bca62808.woff')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_4fe52b862fb6252075c986d8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_4a277772363de50c2167acf2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_ad93315e4a33536bd6838c06.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_9c2c29a4d3362048be79972b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_3337720343cc42b2e8621b86.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_cc8a741a90851d414ea3e448.woff')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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_0b720703082a8e589c1615aa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.728027;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_3de531354522cc2a2529b083.woff')format("woff");}.ffd{font-family:ffd;line-height:0.931641;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_5a9cca322e3e21b201685250.woff')format("woff");}.ffe{font-family:ffe;line-height:0.942871;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_8c6e67d716c00f097423a4d8.woff')format("woff");}.fff{font-family:fff;line-height:0.728027;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);}
.v2{vertical-align:-19.798800px;}
.v3{vertical-align:-4.368000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.629900px;}
.v1{vertical-align:19.800000px;}
.ls1f{letter-spacing:-0.672000px;}
.ls1e{letter-spacing:-0.604800px;}
.ls21{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001200px;}
.ls9{letter-spacing:0.001800px;}
.ls5{letter-spacing:0.002640px;}
.lsa{letter-spacing:0.004080px;}
.lsd{letter-spacing:0.005700px;}
.ls4{letter-spacing:0.007200px;}
.ls11{letter-spacing:0.011400px;}
.ls8{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.014400px;}
.lse{letter-spacing:0.028500px;}
.ls10{letter-spacing:0.433200px;}
.lsf{letter-spacing:0.438900px;}
.ls7{letter-spacing:1.245600px;}
.ls6{letter-spacing:1.252800px;}
.ls17{letter-spacing:1.772700px;}
.ls16{letter-spacing:1.778400px;}
.ls15{letter-spacing:2.057700px;}
.ls14{letter-spacing:2.063400px;}
.ls2{letter-spacing:2.534400px;}
.ls1{letter-spacing:3.769200px;}
.ls0{letter-spacing:3.780000px;}
.ls19{letter-spacing:3.967200px;}
.ls18{letter-spacing:3.972900px;}
.ls1a{letter-spacing:5.221200px;}
.lsc{letter-spacing:6.914100px;}
.ls13{letter-spacing:7.444200px;}
.ls12{letter-spacing:7.449900px;}
.ls1c{letter-spacing:52.641300px;}
.ls1b{letter-spacing:146.624100px;}
.lsb{letter-spacing:294.197700px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-74.534400px;}
.ws7{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.ws9{word-spacing:-60.000000px;}
.wsa{word-spacing:-59.328000px;}
.ws4{word-spacing:-57.780000px;}
.wse{word-spacing:-57.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.wsd{word-spacing:-51.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws5{word-spacing:-20.016000px;}
.ws4f{word-spacing:-16.080000px;}
.wsf{word-spacing:-12.996000px;}
.wsa6{word-spacing:-5.040000px;}
.ws11{word-spacing:-4.086000px;}
.ws66{word-spacing:-3.546000px;}
.ws57{word-spacing:-3.228000px;}
.ws9d{word-spacing:-3.036000px;}
.ws7c{word-spacing:-2.652000px;}
.ws13{word-spacing:-2.352000px;}
.ws6e{word-spacing:-2.208000px;}
.ws63{word-spacing:-2.136000px;}
.ws84{word-spacing:-2.106000px;}
.ws9c{word-spacing:-1.974000px;}
.wsae{word-spacing:-1.924800px;}
.ws5e{word-spacing:-1.698000px;}
.ws61{word-spacing:-1.692000px;}
.ws14{word-spacing:-1.668000px;}
.ws59{word-spacing:-1.368000px;}
.ws6d{word-spacing:-1.356000px;}
.ws6c{word-spacing:-1.344000px;}
.wsb0{word-spacing:-1.300800px;}
.wsa5{word-spacing:-1.291200px;}
.ws73{word-spacing:-1.290000px;}
.ws1d{word-spacing:-1.267200px;}
.ws7a{word-spacing:-1.254000px;}
.ws7e{word-spacing:-1.050000px;}
.ws1f{word-spacing:-0.832200px;}
.ws1e{word-spacing:-0.826500px;}
.ws4a{word-spacing:-0.432000px;}
.ws56{word-spacing:-0.378000px;}
.ws29{word-spacing:-0.240000px;}
.ws94{word-spacing:-0.168000px;}
.ws5a{word-spacing:-0.096000px;}
.ws6{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.057000px;}
.ws50{word-spacing:-0.048000px;}
.ws10{word-spacing:0.000000px;}
.wsa2{word-spacing:0.052800px;}
.ws43{word-spacing:0.174000px;}
.ws16{word-spacing:0.180000px;}
.ws54{word-spacing:0.216000px;}
.ws20{word-spacing:0.285000px;}
.ws25{word-spacing:0.433200px;}
.ws74{word-spacing:0.456000px;}
.ws86{word-spacing:0.480000px;}
.ws6f{word-spacing:0.510000px;}
.ws4e{word-spacing:0.528000px;}
.ws22{word-spacing:0.621300px;}
.ws21{word-spacing:0.632700px;}
.ws72{word-spacing:0.660000px;}
.ws97{word-spacing:0.708000px;}
.ws4b{word-spacing:0.762000px;}
.ws65{word-spacing:0.768000px;}
.ws40{word-spacing:0.852000px;}
.ws6a{word-spacing:1.008000px;}
.ws18{word-spacing:1.044000px;}
.ws2b{word-spacing:1.182000px;}
.ws85{word-spacing:1.206000px;}
.ws9a{word-spacing:1.242000px;}
.ws69{word-spacing:1.392000px;}
.ws45{word-spacing:1.638000px;}
.ws49{word-spacing:1.842000px;}
.ws3f{word-spacing:1.854000px;}
.ws8e{word-spacing:1.884000px;}
.ws33{word-spacing:1.920000px;}
.ws42{word-spacing:1.926000px;}
.ws55{word-spacing:2.010000px;}
.ws2a{word-spacing:2.046000px;}
.ws27{word-spacing:2.057700px;}
.ws5f{word-spacing:2.130000px;}
.ws80{word-spacing:2.298000px;}
.ws67{word-spacing:2.412000px;}
.ws2c{word-spacing:2.460000px;}
.ws7d{word-spacing:2.514000px;}
.ws19{word-spacing:2.658000px;}
.wsa1{word-spacing:2.731200px;}
.ws23{word-spacing:2.753100px;}
.ws8f{word-spacing:2.838000px;}
.wsad{word-spacing:2.956800px;}
.ws98{word-spacing:2.982000px;}
.ws91{word-spacing:3.444000px;}
.ws37{word-spacing:3.540000px;}
.ws88{word-spacing:3.648000px;}
.ws79{word-spacing:3.840000px;}
.ws8d{word-spacing:3.864000px;}
.wsa0{word-spacing:3.942000px;}
.ws7b{word-spacing:3.966000px;}
.ws28{word-spacing:3.967200px;}
.ws8c{word-spacing:3.978000px;}
.ws62{word-spacing:3.990000px;}
.ws15{word-spacing:4.050000px;}
.wsab{word-spacing:4.104000px;}
.ws31{word-spacing:4.176000px;}
.ws83{word-spacing:4.236000px;}
.ws38{word-spacing:4.536000px;}
.ws1b{word-spacing:5.010000px;}
.ws68{word-spacing:5.076000px;}
.wsa7{word-spacing:5.083200px;}
.ws53{word-spacing:5.094000px;}
.ws6b{word-spacing:5.136000px;}
.ws2e{word-spacing:5.202000px;}
.ws3a{word-spacing:5.238000px;}
.ws12{word-spacing:5.472000px;}
.wsa8{word-spacing:5.558400px;}
.wsaa{word-spacing:5.620800px;}
.ws8a{word-spacing:5.694000px;}
.ws35{word-spacing:5.832000px;}
.ws87{word-spacing:6.288000px;}
.ws96{word-spacing:6.330000px;}
.ws2d{word-spacing:6.468000px;}
.ws51{word-spacing:6.582000px;}
.ws41{word-spacing:6.600000px;}
.ws47{word-spacing:6.744000px;}
.ws32{word-spacing:6.888000px;}
.ws99{word-spacing:6.912000px;}
.ws4d{word-spacing:7.014000px;}
.ws60{word-spacing:7.224000px;}
.ws75{word-spacing:7.266000px;}
.ws92{word-spacing:7.362000px;}
.ws1a{word-spacing:7.380000px;}
.ws26{word-spacing:7.444200px;}
.ws81{word-spacing:7.626000px;}
.ws30{word-spacing:7.668000px;}
.ws1c{word-spacing:7.680000px;}
.ws9e{word-spacing:8.052000px;}
.ws24{word-spacing:8.111100px;}
.ws70{word-spacing:8.286000px;}
.ws95{word-spacing:8.340000px;}
.ws64{word-spacing:8.346000px;}
.ws58{word-spacing:8.382000px;}
.ws2f{word-spacing:8.592000px;}
.ws8b{word-spacing:9.156000px;}
.ws52{word-spacing:9.426000px;}
.ws71{word-spacing:9.444000px;}
.ws7f{word-spacing:9.618000px;}
.ws5d{word-spacing:9.780000px;}
.wsac{word-spacing:10.041600px;}
.ws48{word-spacing:10.272000px;}
.ws90{word-spacing:10.320000px;}
.ws34{word-spacing:10.614000px;}
.ws78{word-spacing:10.944000px;}
.ws3e{word-spacing:10.968000px;}
.ws3d{word-spacing:10.998000px;}
.ws5c{word-spacing:11.298000px;}
.ws82{word-spacing:11.340000px;}
.ws3b{word-spacing:11.928000px;}
.ws9b{word-spacing:12.150000px;}
.ws93{word-spacing:12.480000px;}
.ws5b{word-spacing:12.498000px;}
.wsa4{word-spacing:12.619200px;}
.ws4c{word-spacing:12.666000px;}
.ws76{word-spacing:12.786000px;}
.ws46{word-spacing:13.086000px;}
.ws3c{word-spacing:13.596000px;}
.ws44{word-spacing:13.722000px;}
.wsa9{word-spacing:13.819200px;}
.ws39{word-spacing:14.172000px;}
.ws17{word-spacing:14.328000px;}
.wsaf{word-spacing:15.686400px;}
.wsa3{word-spacing:15.753600px;}
.ws36{word-spacing:18.726000px;}
.ws89{word-spacing:19.794000px;}
.ws77{word-spacing:21.570000px;}
.ws9f{word-spacing:22.056000px;}
.wsb{word-spacing:274.833000px;}
._e{margin-left:-15.948000px;}
._4{margin-left:-14.844000px;}
._9{margin-left:-11.462700px;}
._10{margin-left:-10.152000px;}
._8{margin-left:-8.398800px;}
._6{margin-left:-7.087800px;}
._f{margin-left:-5.736000px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._5{width:2.534400px;}
._7{width:4.917600px;}
._c{width:7.094700px;}
._d{width:11.071800px;}
._b{width:61.041000px;}
._a{width:246.936000px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc6{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,40,73);}
.fs2{font-size:30.000000px;}
.fs5{font-size:34.800000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.045000px;}
.y3a{bottom:71.469750px;}
.y67{bottom:76.142250px;}
.y9e{bottom:82.296900px;}
.yd4{bottom:82.545000px;}
.y39{bottom:87.969750px;}
.yd3{bottom:98.295000px;}
.y9d{bottom:100.296900px;}
.yd2{bottom:114.045000px;}
.y9c{bottom:118.296900px;}
.yd1{bottom:129.795000px;}
.y9b{bottom:136.296900px;}
.yd{bottom:142.733550px;}
.y14{bottom:143.176050px;}
.yd0{bottom:145.545000px;}
.y9a{bottom:154.296900px;}
.ycf{bottom:161.295000px;}
.yc{bottom:161.483550px;}
.y13{bottom:161.926050px;}
.y99{bottom:172.296900px;}
.yce{bottom:177.045000px;}
.yb{bottom:180.233550px;}
.y12{bottom:180.676050px;}
.y98{bottom:190.296900px;}
.ycd{bottom:192.795000px;}
.ya{bottom:198.983550px;}
.y11{bottom:199.426050px;}
.y97{bottom:208.296900px;}
.ycc{bottom:208.545000px;}
.y9{bottom:217.733550px;}
.y10{bottom:218.176050px;}
.ycb{bottom:224.295000px;}
.y96{bottom:226.296900px;}
.yf{bottom:236.926050px;}
.yca{bottom:240.045000px;}
.y95{bottom:244.296900px;}
.y8{bottom:253.492200px;}
.ye{bottom:255.676050px;}
.yc9{bottom:255.795000px;}
.y94{bottom:262.296900px;}
.yc8{bottom:271.545000px;}
.y93{bottom:280.296900px;}
.yc7{bottom:287.295000px;}
.y92{bottom:298.296900px;}
.yc6{bottom:303.045000px;}
.y91{bottom:316.296900px;}
.yc5{bottom:318.795000px;}
.y38{bottom:321.558375px;}
.y90{bottom:334.296900px;}
.yc4{bottom:334.545000px;}
.y37{bottom:338.807850px;}
.yc3{bottom:350.295000px;}
.y8f{bottom:352.296900px;}
.y66{bottom:361.144350px;}
.y36{bottom:361.181850px;}
.yc2{bottom:366.045000px;}
.y8e{bottom:370.296900px;}
.y65{bottom:376.144350px;}
.yc1{bottom:381.795000px;}
.y35{bottom:382.465500px;}
.y8d{bottom:388.296900px;}
.yc0{bottom:397.545000px;}
.y34{bottom:399.715125px;}
.y8c{bottom:406.296900px;}
.ybf{bottom:413.295000px;}
.y33{bottom:416.964750px;}
.y8b{bottom:424.296900px;}
.ybe{bottom:429.045000px;}
.y32{bottom:434.214375px;}
.y8a{bottom:442.296900px;}
.ybd{bottom:449.046000px;}
.y31{bottom:451.465275px;}
.y89{bottom:460.296900px;}
.y30{bottom:468.714900px;}
.y88{bottom:478.296900px;}
.y2f{bottom:485.964525px;}
.yd5{bottom:492.345150px;}
.y87{bottom:496.296900px;}
.y2e{bottom:504.307650px;}
.y86{bottom:514.296900px;}
.ybc{bottom:527.796450px;}
.y85{bottom:532.296900px;}
.ybb{bottom:546.546450px;}
.y84{bottom:550.296900px;}
.y2d{bottom:554.022825px;}
.yba{bottom:565.296450px;}
.y83{bottom:568.296900px;}
.y2c{bottom:571.272300px;}
.yb9{bottom:584.046450px;}
.y82{bottom:586.296900px;}
.y2b{bottom:593.647800px;}
.yb8{bottom:602.796450px;}
.y81{bottom:604.296900px;}
.y2a{bottom:614.932350px;}
.yb7{bottom:621.546450px;}
.y80{bottom:622.296900px;}
.y29{bottom:632.181975px;}
.y7f{bottom:640.296900px;}
.y28{bottom:649.431600px;}
.yb6{bottom:653.052450px;}
.y7e{bottom:658.296900px;}
.y27{bottom:666.681225px;}
.y7d{bottom:676.296900px;}
.y26{bottom:683.930850px;}
.y7c{bottom:694.296900px;}
.yb5{bottom:697.314900px;}
.y25{bottom:701.180475px;}
.y7b{bottom:712.296900px;}
.yb4{bottom:715.314900px;}
.y24{bottom:719.522100px;}
.y7a{bottom:730.296900px;}
.yb3{bottom:733.314900px;}
.y79{bottom:748.296900px;}
.yb2{bottom:751.314900px;}
.y64{bottom:751.315500px;}
.y50{bottom:754.375500px;}
.y78{bottom:766.296900px;}
.yb1{bottom:769.314900px;}
.y63{bottom:769.315500px;}
.y4f{bottom:772.375500px;}
.y23{bottom:779.769600px;}
.y77{bottom:784.296900px;}
.yb0{bottom:787.314900px;}
.y62{bottom:787.315500px;}
.y4e{bottom:790.375500px;}
.y22{bottom:798.519450px;}
.y76{bottom:802.296900px;}
.yaf{bottom:805.314900px;}
.y61{bottom:805.315500px;}
.y4d{bottom:808.375500px;}
.y21{bottom:816.572250px;}
.y75{bottom:820.296900px;}
.yae{bottom:823.314900px;}
.y60{bottom:823.315500px;}
.y4c{bottom:826.375500px;}
.y74{bottom:838.296900px;}
.yad{bottom:841.314900px;}
.y5f{bottom:841.315500px;}
.y4b{bottom:844.375500px;}
.y1f{bottom:848.033400px;}
.y20{bottom:848.078400px;}
.y73{bottom:856.296900px;}
.yac{bottom:859.314900px;}
.y5e{bottom:859.315500px;}
.y4a{bottom:862.375500px;}
.y1d{bottom:872.033400px;}
.y1e{bottom:872.078400px;}
.y72{bottom:874.296900px;}
.yab{bottom:877.314900px;}
.y5d{bottom:877.315500px;}
.y49{bottom:880.375500px;}
.y71{bottom:892.296900px;}
.yaa{bottom:895.314900px;}
.y5c{bottom:895.315500px;}
.y48{bottom:898.375500px;}
.y70{bottom:910.296900px;}
.ya9{bottom:913.314900px;}
.y5b{bottom:913.315500px;}
.y47{bottom:916.375500px;}
.ya8{bottom:931.314900px;}
.y5a{bottom:931.315500px;}
.y46{bottom:934.375500px;}
.y1c{bottom:935.044050px;}
.y6f{bottom:941.053050px;}
.ya7{bottom:949.314900px;}
.y59{bottom:949.315500px;}
.y45{bottom:952.375500px;}
.y1b{bottom:953.793750px;}
.ya6{bottom:967.314900px;}
.y58{bottom:967.315500px;}
.y44{bottom:970.375500px;}
.y1a{bottom:971.846550px;}
.ya5{bottom:985.314900px;}
.y57{bottom:985.315500px;}
.y6e{bottom:985.315650px;}
.y43{bottom:988.375500px;}
.y18{bottom:1003.306200px;}
.ya4{bottom:1003.314900px;}
.y56{bottom:1003.315500px;}
.y6d{bottom:1003.315650px;}
.y19{bottom:1003.351200px;}
.y42{bottom:1006.375500px;}
.ya3{bottom:1021.314900px;}
.y55{bottom:1021.315500px;}
.y6c{bottom:1021.315650px;}
.y41{bottom:1024.375500px;}
.y16{bottom:1027.306200px;}
.y17{bottom:1027.351200px;}
.ya2{bottom:1039.314900px;}
.y54{bottom:1039.315500px;}
.y6b{bottom:1039.315650px;}
.y40{bottom:1042.375500px;}
.ya1{bottom:1057.314900px;}
.y53{bottom:1057.315500px;}
.y6a{bottom:1057.315650px;}
.y3f{bottom:1060.375500px;}
.y3b{bottom:1074.486150px;}
.ya0{bottom:1075.314900px;}
.y52{bottom:1075.315500px;}
.y69{bottom:1075.315650px;}
.y3e{bottom:1091.131500px;}
.y9f{bottom:1093.314900px;}
.y51{bottom:1093.315500px;}
.y68{bottom:1093.315650px;}
.y5{bottom:1096.789650px;}
.y7{bottom:1100.989800px;}
.y4{bottom:1105.789650px;}
.y2{bottom:1106.036700px;}
.y3{bottom:1114.789650px;}
.y1{bottom:1122.236700px;}
.y6{bottom:1123.567200px;}
.y3c{bottom:1135.835400px;}
.y3d{bottom:1136.927550px;}
.h3{height:21.855469px;}
.hb{height:25.335352px;}
.h16{height:34.945312px;}
.h15{height:34.968750px;}
.hf{height:37.129395px;}
.he{height:37.179223px;}
.h10{height:37.183123px;}
.hc{height:37.185223px;}
.h11{height:37.374047px;}
.h13{height:37.380047px;}
.h5{height:39.313477px;}
.h2{height:39.339844px;}
.hd{height:41.553223px;}
.h12{height:41.748047px;}
.h17{height:43.681641px;}
.h7{height:43.710938px;}
.ha{height:45.135352px;}
.h14{height:46.377947px;}
.h1{height:48.082031px;}
.h4{height:48.278320px;}
.h9{height:52.417969px;}
.h6{height:64.371094px;}
.h8{height:1187.955000px;}
.h0{height:1188.000000px;}
.w1{width:914.175000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:1.913400px;}
.x18{left:59.315100px;}
.x1b{left:65.880900px;}
.x19{left:84.826950px;}
.x3{left:101.351700px;}
.x1e{left:102.543450px;}
.x9{left:104.894850px;}
.xa{left:106.808250px;}
.x10{left:108.412200px;}
.x2{left:114.306450px;}
.x6{left:127.346700px;}
.x1{left:184.468800px;}
.x11{left:207.811050px;}
.x12{left:209.724450px;}
.xb{left:221.447550px;}
.xc{left:223.360950px;}
.x16{left:224.763450px;}
.xd{left:233.803950px;}
.x13{left:245.968950px;}
.x1c{left:263.319450px;}
.x15{left:307.952100px;}
.xe{left:318.588240px;}
.x14{left:320.275380px;}
.xf{left:333.173100px;}
.x1a{left:454.747950px;}
.x7{left:497.269200px;}
.x1f{left:522.781050px;}
.x20{left:525.529050px;}
.x1d{left:594.779700px;}
.x4{left:711.178350px;}
.x5{left:753.668250px;}
.x17{left:791.625150px;}
@media print{
.v2{vertical-align:-17.598933pt;}
.v3{vertical-align:-3.882667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.115467pt;}
.v1{vertical-align:17.600000pt;}
.ls1f{letter-spacing:-0.597333pt;}
.ls1e{letter-spacing:-0.537600pt;}
.ls21{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001067pt;}
.ls9{letter-spacing:0.001600pt;}
.ls5{letter-spacing:0.002347pt;}
.lsa{letter-spacing:0.003627pt;}
.lsd{letter-spacing:0.005067pt;}
.ls4{letter-spacing:0.006400pt;}
.ls11{letter-spacing:0.010133pt;}
.ls8{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.012800pt;}
.lse{letter-spacing:0.025333pt;}
.ls10{letter-spacing:0.385067pt;}
.lsf{letter-spacing:0.390133pt;}
.ls7{letter-spacing:1.107200pt;}
.ls6{letter-spacing:1.113600pt;}
.ls17{letter-spacing:1.575733pt;}
.ls16{letter-spacing:1.580800pt;}
.ls15{letter-spacing:1.829067pt;}
.ls14{letter-spacing:1.834133pt;}
.ls2{letter-spacing:2.252800pt;}
.ls1{letter-spacing:3.350400pt;}
.ls0{letter-spacing:3.360000pt;}
.ls19{letter-spacing:3.526400pt;}
.ls18{letter-spacing:3.531467pt;}
.ls1a{letter-spacing:4.641067pt;}
.lsc{letter-spacing:6.145867pt;}
.ls13{letter-spacing:6.617067pt;}
.ls12{letter-spacing:6.622133pt;}
.ls1c{letter-spacing:46.792267pt;}
.ls1b{letter-spacing:130.332533pt;}
.lsb{letter-spacing:261.509067pt;}
.ws8{word-spacing:-66.252800pt;}
.ws7{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.ws9{word-spacing:-53.333333pt;}
.wsa{word-spacing:-52.736000pt;}
.ws4{word-spacing:-51.360000pt;}
.wse{word-spacing:-50.666667pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.wsd{word-spacing:-45.333333pt;}
.ws3{word-spacing:-26.666667pt;}
.ws5{word-spacing:-17.792000pt;}
.ws4f{word-spacing:-14.293333pt;}
.wsf{word-spacing:-11.552000pt;}
.wsa6{word-spacing:-4.480000pt;}
.ws11{word-spacing:-3.632000pt;}
.ws66{word-spacing:-3.152000pt;}
.ws57{word-spacing:-2.869333pt;}
.ws9d{word-spacing:-2.698667pt;}
.ws7c{word-spacing:-2.357333pt;}
.ws13{word-spacing:-2.090667pt;}
.ws6e{word-spacing:-1.962667pt;}
.ws63{word-spacing:-1.898667pt;}
.ws84{word-spacing:-1.872000pt;}
.ws9c{word-spacing:-1.754667pt;}
.wsae{word-spacing:-1.710933pt;}
.ws5e{word-spacing:-1.509333pt;}
.ws61{word-spacing:-1.504000pt;}
.ws14{word-spacing:-1.482667pt;}
.ws59{word-spacing:-1.216000pt;}
.ws6d{word-spacing:-1.205333pt;}
.ws6c{word-spacing:-1.194667pt;}
.wsb0{word-spacing:-1.156267pt;}
.wsa5{word-spacing:-1.147733pt;}
.ws73{word-spacing:-1.146667pt;}
.ws1d{word-spacing:-1.126400pt;}
.ws7a{word-spacing:-1.114667pt;}
.ws7e{word-spacing:-0.933333pt;}
.ws1f{word-spacing:-0.739733pt;}
.ws1e{word-spacing:-0.734667pt;}
.ws4a{word-spacing:-0.384000pt;}
.ws56{word-spacing:-0.336000pt;}
.ws29{word-spacing:-0.213333pt;}
.ws94{word-spacing:-0.149333pt;}
.ws5a{word-spacing:-0.085333pt;}
.ws6{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.050667pt;}
.ws50{word-spacing:-0.042667pt;}
.ws10{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.046933pt;}
.ws43{word-spacing:0.154667pt;}
.ws16{word-spacing:0.160000pt;}
.ws54{word-spacing:0.192000pt;}
.ws20{word-spacing:0.253333pt;}
.ws25{word-spacing:0.385067pt;}
.ws74{word-spacing:0.405333pt;}
.ws86{word-spacing:0.426667pt;}
.ws6f{word-spacing:0.453333pt;}
.ws4e{word-spacing:0.469333pt;}
.ws22{word-spacing:0.552267pt;}
.ws21{word-spacing:0.562400pt;}
.ws72{word-spacing:0.586667pt;}
.ws97{word-spacing:0.629333pt;}
.ws4b{word-spacing:0.677333pt;}
.ws65{word-spacing:0.682667pt;}
.ws40{word-spacing:0.757333pt;}
.ws6a{word-spacing:0.896000pt;}
.ws18{word-spacing:0.928000pt;}
.ws2b{word-spacing:1.050667pt;}
.ws85{word-spacing:1.072000pt;}
.ws9a{word-spacing:1.104000pt;}
.ws69{word-spacing:1.237333pt;}
.ws45{word-spacing:1.456000pt;}
.ws49{word-spacing:1.637333pt;}
.ws3f{word-spacing:1.648000pt;}
.ws8e{word-spacing:1.674667pt;}
.ws33{word-spacing:1.706667pt;}
.ws42{word-spacing:1.712000pt;}
.ws55{word-spacing:1.786667pt;}
.ws2a{word-spacing:1.818667pt;}
.ws27{word-spacing:1.829067pt;}
.ws5f{word-spacing:1.893333pt;}
.ws80{word-spacing:2.042667pt;}
.ws67{word-spacing:2.144000pt;}
.ws2c{word-spacing:2.186667pt;}
.ws7d{word-spacing:2.234667pt;}
.ws19{word-spacing:2.362667pt;}
.wsa1{word-spacing:2.427733pt;}
.ws23{word-spacing:2.447200pt;}
.ws8f{word-spacing:2.522667pt;}
.wsad{word-spacing:2.628267pt;}
.ws98{word-spacing:2.650667pt;}
.ws91{word-spacing:3.061333pt;}
.ws37{word-spacing:3.146667pt;}
.ws88{word-spacing:3.242667pt;}
.ws79{word-spacing:3.413333pt;}
.ws8d{word-spacing:3.434667pt;}
.wsa0{word-spacing:3.504000pt;}
.ws7b{word-spacing:3.525333pt;}
.ws28{word-spacing:3.526400pt;}
.ws8c{word-spacing:3.536000pt;}
.ws62{word-spacing:3.546667pt;}
.ws15{word-spacing:3.600000pt;}
.wsab{word-spacing:3.648000pt;}
.ws31{word-spacing:3.712000pt;}
.ws83{word-spacing:3.765333pt;}
.ws38{word-spacing:4.032000pt;}
.ws1b{word-spacing:4.453333pt;}
.ws68{word-spacing:4.512000pt;}
.wsa7{word-spacing:4.518400pt;}
.ws53{word-spacing:4.528000pt;}
.ws6b{word-spacing:4.565333pt;}
.ws2e{word-spacing:4.624000pt;}
.ws3a{word-spacing:4.656000pt;}
.ws12{word-spacing:4.864000pt;}
.wsa8{word-spacing:4.940800pt;}
.wsaa{word-spacing:4.996267pt;}
.ws8a{word-spacing:5.061333pt;}
.ws35{word-spacing:5.184000pt;}
.ws87{word-spacing:5.589333pt;}
.ws96{word-spacing:5.626667pt;}
.ws2d{word-spacing:5.749333pt;}
.ws51{word-spacing:5.850667pt;}
.ws41{word-spacing:5.866667pt;}
.ws47{word-spacing:5.994667pt;}
.ws32{word-spacing:6.122667pt;}
.ws99{word-spacing:6.144000pt;}
.ws4d{word-spacing:6.234667pt;}
.ws60{word-spacing:6.421333pt;}
.ws75{word-spacing:6.458667pt;}
.ws92{word-spacing:6.544000pt;}
.ws1a{word-spacing:6.560000pt;}
.ws26{word-spacing:6.617067pt;}
.ws81{word-spacing:6.778667pt;}
.ws30{word-spacing:6.816000pt;}
.ws1c{word-spacing:6.826667pt;}
.ws9e{word-spacing:7.157333pt;}
.ws24{word-spacing:7.209867pt;}
.ws70{word-spacing:7.365333pt;}
.ws95{word-spacing:7.413333pt;}
.ws64{word-spacing:7.418667pt;}
.ws58{word-spacing:7.450667pt;}
.ws2f{word-spacing:7.637333pt;}
.ws8b{word-spacing:8.138667pt;}
.ws52{word-spacing:8.378667pt;}
.ws71{word-spacing:8.394667pt;}
.ws7f{word-spacing:8.549333pt;}
.ws5d{word-spacing:8.693333pt;}
.wsac{word-spacing:8.925867pt;}
.ws48{word-spacing:9.130667pt;}
.ws90{word-spacing:9.173333pt;}
.ws34{word-spacing:9.434667pt;}
.ws78{word-spacing:9.728000pt;}
.ws3e{word-spacing:9.749333pt;}
.ws3d{word-spacing:9.776000pt;}
.ws5c{word-spacing:10.042667pt;}
.ws82{word-spacing:10.080000pt;}
.ws3b{word-spacing:10.602667pt;}
.ws9b{word-spacing:10.800000pt;}
.ws93{word-spacing:11.093333pt;}
.ws5b{word-spacing:11.109333pt;}
.wsa4{word-spacing:11.217067pt;}
.ws4c{word-spacing:11.258667pt;}
.ws76{word-spacing:11.365333pt;}
.ws46{word-spacing:11.632000pt;}
.ws3c{word-spacing:12.085333pt;}
.ws44{word-spacing:12.197333pt;}
.wsa9{word-spacing:12.283733pt;}
.ws39{word-spacing:12.597333pt;}
.ws17{word-spacing:12.736000pt;}
.wsaf{word-spacing:13.943467pt;}
.wsa3{word-spacing:14.003200pt;}
.ws36{word-spacing:16.645333pt;}
.ws89{word-spacing:17.594667pt;}
.ws77{word-spacing:19.173333pt;}
.ws9f{word-spacing:19.605333pt;}
.wsb{word-spacing:244.296000pt;}
._e{margin-left:-14.176000pt;}
._4{margin-left:-13.194667pt;}
._9{margin-left:-10.189067pt;}
._10{margin-left:-9.024000pt;}
._8{margin-left:-7.465600pt;}
._6{margin-left:-6.300267pt;}
._f{margin-left:-5.098667pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._5{width:2.252800pt;}
._7{width:4.371200pt;}
._c{width:6.306400pt;}
._d{width:9.841600pt;}
._b{width:54.258667pt;}
._a{width:219.498667pt;}
.fs2{font-size:26.666667pt;}
.fs5{font-size:30.933333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.040000pt;}
.y3a{bottom:63.528667pt;}
.y67{bottom:67.682000pt;}
.y9e{bottom:73.152800pt;}
.yd4{bottom:73.373333pt;}
.y39{bottom:78.195333pt;}
.yd3{bottom:87.373333pt;}
.y9d{bottom:89.152800pt;}
.yd2{bottom:101.373333pt;}
.y9c{bottom:105.152800pt;}
.yd1{bottom:115.373333pt;}
.y9b{bottom:121.152800pt;}
.yd{bottom:126.874267pt;}
.y14{bottom:127.267600pt;}
.yd0{bottom:129.373333pt;}
.y9a{bottom:137.152800pt;}
.ycf{bottom:143.373333pt;}
.yc{bottom:143.540933pt;}
.y13{bottom:143.934267pt;}
.y99{bottom:153.152800pt;}
.yce{bottom:157.373333pt;}
.yb{bottom:160.207600pt;}
.y12{bottom:160.600933pt;}
.y98{bottom:169.152800pt;}
.ycd{bottom:171.373333pt;}
.ya{bottom:176.874267pt;}
.y11{bottom:177.267600pt;}
.y97{bottom:185.152800pt;}
.ycc{bottom:185.373333pt;}
.y9{bottom:193.540933pt;}
.y10{bottom:193.934267pt;}
.ycb{bottom:199.373333pt;}
.y96{bottom:201.152800pt;}
.yf{bottom:210.600933pt;}
.yca{bottom:213.373333pt;}
.y95{bottom:217.152800pt;}
.y8{bottom:225.326400pt;}
.ye{bottom:227.267600pt;}
.yc9{bottom:227.373333pt;}
.y94{bottom:233.152800pt;}
.yc8{bottom:241.373333pt;}
.y93{bottom:249.152800pt;}
.yc7{bottom:255.373333pt;}
.y92{bottom:265.152800pt;}
.yc6{bottom:269.373333pt;}
.y91{bottom:281.152800pt;}
.yc5{bottom:283.373333pt;}
.y38{bottom:285.829667pt;}
.y90{bottom:297.152800pt;}
.yc4{bottom:297.373333pt;}
.y37{bottom:301.162533pt;}
.yc3{bottom:311.373333pt;}
.y8f{bottom:313.152800pt;}
.y66{bottom:321.017200pt;}
.y36{bottom:321.050533pt;}
.yc2{bottom:325.373333pt;}
.y8e{bottom:329.152800pt;}
.y65{bottom:334.350533pt;}
.yc1{bottom:339.373333pt;}
.y35{bottom:339.969333pt;}
.y8d{bottom:345.152800pt;}
.yc0{bottom:353.373333pt;}
.y34{bottom:355.302333pt;}
.y8c{bottom:361.152800pt;}
.ybf{bottom:367.373333pt;}
.y33{bottom:370.635333pt;}
.y8b{bottom:377.152800pt;}
.ybe{bottom:381.373333pt;}
.y32{bottom:385.968333pt;}
.y8a{bottom:393.152800pt;}
.ybd{bottom:399.152000pt;}
.y31{bottom:401.302467pt;}
.y89{bottom:409.152800pt;}
.y30{bottom:416.635467pt;}
.y88{bottom:425.152800pt;}
.y2f{bottom:431.968467pt;}
.yd5{bottom:437.640133pt;}
.y87{bottom:441.152800pt;}
.y2e{bottom:448.273467pt;}
.y86{bottom:457.152800pt;}
.ybc{bottom:469.152400pt;}
.y85{bottom:473.152800pt;}
.ybb{bottom:485.819067pt;}
.y84{bottom:489.152800pt;}
.y2d{bottom:492.464733pt;}
.yba{bottom:502.485733pt;}
.y83{bottom:505.152800pt;}
.y2c{bottom:507.797600pt;}
.yb9{bottom:519.152400pt;}
.y82{bottom:521.152800pt;}
.y2b{bottom:527.686933pt;}
.yb8{bottom:535.819067pt;}
.y81{bottom:537.152800pt;}
.y2a{bottom:546.606533pt;}
.yb7{bottom:552.485733pt;}
.y80{bottom:553.152800pt;}
.y29{bottom:561.939533pt;}
.y7f{bottom:569.152800pt;}
.y28{bottom:577.272533pt;}
.yb6{bottom:580.491067pt;}
.y7e{bottom:585.152800pt;}
.y27{bottom:592.605533pt;}
.y7d{bottom:601.152800pt;}
.y26{bottom:607.938533pt;}
.y7c{bottom:617.152800pt;}
.yb5{bottom:619.835467pt;}
.y25{bottom:623.271533pt;}
.y7b{bottom:633.152800pt;}
.yb4{bottom:635.835467pt;}
.y24{bottom:639.575200pt;}
.y7a{bottom:649.152800pt;}
.yb3{bottom:651.835467pt;}
.y79{bottom:665.152800pt;}
.yb2{bottom:667.835467pt;}
.y64{bottom:667.836000pt;}
.y50{bottom:670.556000pt;}
.y78{bottom:681.152800pt;}
.yb1{bottom:683.835467pt;}
.y63{bottom:683.836000pt;}
.y4f{bottom:686.556000pt;}
.y23{bottom:693.128533pt;}
.y77{bottom:697.152800pt;}
.yb0{bottom:699.835467pt;}
.y62{bottom:699.836000pt;}
.y4e{bottom:702.556000pt;}
.y22{bottom:709.795067pt;}
.y76{bottom:713.152800pt;}
.yaf{bottom:715.835467pt;}
.y61{bottom:715.836000pt;}
.y4d{bottom:718.556000pt;}
.y21{bottom:725.842000pt;}
.y75{bottom:729.152800pt;}
.yae{bottom:731.835467pt;}
.y60{bottom:731.836000pt;}
.y4c{bottom:734.556000pt;}
.y74{bottom:745.152800pt;}
.yad{bottom:747.835467pt;}
.y5f{bottom:747.836000pt;}
.y4b{bottom:750.556000pt;}
.y1f{bottom:753.807467pt;}
.y20{bottom:753.847467pt;}
.y73{bottom:761.152800pt;}
.yac{bottom:763.835467pt;}
.y5e{bottom:763.836000pt;}
.y4a{bottom:766.556000pt;}
.y1d{bottom:775.140800pt;}
.y1e{bottom:775.180800pt;}
.y72{bottom:777.152800pt;}
.yab{bottom:779.835467pt;}
.y5d{bottom:779.836000pt;}
.y49{bottom:782.556000pt;}
.y71{bottom:793.152800pt;}
.yaa{bottom:795.835467pt;}
.y5c{bottom:795.836000pt;}
.y48{bottom:798.556000pt;}
.y70{bottom:809.152800pt;}
.ya9{bottom:811.835467pt;}
.y5b{bottom:811.836000pt;}
.y47{bottom:814.556000pt;}
.ya8{bottom:827.835467pt;}
.y5a{bottom:827.836000pt;}
.y46{bottom:830.556000pt;}
.y1c{bottom:831.150267pt;}
.y6f{bottom:836.491600pt;}
.ya7{bottom:843.835467pt;}
.y59{bottom:843.836000pt;}
.y45{bottom:846.556000pt;}
.y1b{bottom:847.816667pt;}
.ya6{bottom:859.835467pt;}
.y58{bottom:859.836000pt;}
.y44{bottom:862.556000pt;}
.y1a{bottom:863.863600pt;}
.ya5{bottom:875.835467pt;}
.y57{bottom:875.836000pt;}
.y6e{bottom:875.836133pt;}
.y43{bottom:878.556000pt;}
.y18{bottom:891.827733pt;}
.ya4{bottom:891.835467pt;}
.y56{bottom:891.836000pt;}
.y6d{bottom:891.836133pt;}
.y19{bottom:891.867733pt;}
.y42{bottom:894.556000pt;}
.ya3{bottom:907.835467pt;}
.y55{bottom:907.836000pt;}
.y6c{bottom:907.836133pt;}
.y41{bottom:910.556000pt;}
.y16{bottom:913.161067pt;}
.y17{bottom:913.201067pt;}
.ya2{bottom:923.835467pt;}
.y54{bottom:923.836000pt;}
.y6b{bottom:923.836133pt;}
.y40{bottom:926.556000pt;}
.ya1{bottom:939.835467pt;}
.y53{bottom:939.836000pt;}
.y6a{bottom:939.836133pt;}
.y3f{bottom:942.556000pt;}
.y3b{bottom:955.098800pt;}
.ya0{bottom:955.835467pt;}
.y52{bottom:955.836000pt;}
.y69{bottom:955.836133pt;}
.y3e{bottom:969.894667pt;}
.y9f{bottom:971.835467pt;}
.y51{bottom:971.836000pt;}
.y68{bottom:971.836133pt;}
.y5{bottom:974.924133pt;}
.y7{bottom:978.657600pt;}
.y4{bottom:982.924133pt;}
.y2{bottom:983.143733pt;}
.y3{bottom:990.924133pt;}
.y1{bottom:997.543733pt;}
.y6{bottom:998.726400pt;}
.y3c{bottom:1009.631467pt;}
.y3d{bottom:1010.602267pt;}
.h3{height:19.427083pt;}
.hb{height:22.520312pt;}
.h16{height:31.062500pt;}
.h15{height:31.083333pt;}
.hf{height:33.003906pt;}
.he{height:33.048198pt;}
.h10{height:33.051665pt;}
.hc{height:33.053531pt;}
.h11{height:33.221375pt;}
.h13{height:33.226708pt;}
.h5{height:34.945312pt;}
.h2{height:34.968750pt;}
.hd{height:36.936198pt;}
.h12{height:37.109375pt;}
.h17{height:38.828125pt;}
.h7{height:38.854167pt;}
.ha{height:40.120313pt;}
.h14{height:41.224842pt;}
.h1{height:42.739583pt;}
.h4{height:42.914062pt;}
.h9{height:46.593750pt;}
.h6{height:57.218750pt;}
.h8{height:1055.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:812.600000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.700800pt;}
.x18{left:52.724533pt;}
.x1b{left:58.560800pt;}
.x19{left:75.401733pt;}
.x3{left:90.090400pt;}
.x1e{left:91.149733pt;}
.x9{left:93.239867pt;}
.xa{left:94.940667pt;}
.x10{left:96.366400pt;}
.x2{left:101.605733pt;}
.x6{left:113.197067pt;}
.x1{left:163.972267pt;}
.x11{left:184.720933pt;}
.x12{left:186.421733pt;}
.xb{left:196.842267pt;}
.xc{left:198.543067pt;}
.x16{left:199.789733pt;}
.xd{left:207.825733pt;}
.x13{left:218.639067pt;}
.x1c{left:234.061733pt;}
.x15{left:273.735200pt;}
.xe{left:283.189547pt;}
.x14{left:284.689227pt;}
.xf{left:296.153867pt;}
.x1a{left:404.220400pt;}
.x7{left:442.017067pt;}
.x1f{left:464.694267pt;}
.x20{left:467.136933pt;}
.x1d{left:528.693067pt;}
.x4{left:632.158533pt;}
.x5{left:669.927333pt;}
.x17{left:703.666800pt;}
}




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