
    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_ad29d93340a009496457493d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5fb7288a621ad8d23a51f5bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689453;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_ed38b0b10daddb5730389044.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_5726a4064929a765d5fa4f7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_24aa77e5431f70f511339789.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_85ec5b98f45db8e40e904227.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cdbf9ea86200ac0bb8617493.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694336;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_c0aa4bd3bc5c6399f5e79065.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2021c674a917257034e748f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ad29d93340a009496457493d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_919f27b1e383f772bb1f2fe5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b2021c674a917257034e748f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ad29d93340a009496457493d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_919f27b1e383f772bb1f2fe5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b2021c674a917257034e748f.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9cc30bd24b3bd4472b3291f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.891113;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);}
.v4{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.478200px;}
.v3{vertical-align:18.738000px;}
.v1{vertical-align:21.978000px;}
.ls22{letter-spacing:-1.482000px;}
.ls27{letter-spacing:-1.140000px;}
.ls43{letter-spacing:-1.026000px;}
.ls26{letter-spacing:-0.969000px;}
.ls17{letter-spacing:-0.684000px;}
.ls18{letter-spacing:-0.627000px;}
.ls24{letter-spacing:-0.570000px;}
.ls29{letter-spacing:-0.513000px;}
.ls15{letter-spacing:-0.459000px;}
.ls23{letter-spacing:-0.456000px;}
.ls37{letter-spacing:-0.399000px;}
.ls19{letter-spacing:-0.342000px;}
.ls14{letter-spacing:-0.306000px;}
.ls38{letter-spacing:-0.285000px;}
.ls1a{letter-spacing:-0.228000px;}
.ls39{letter-spacing:-0.171000px;}
.ls12{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.114000px;}
.ls25{letter-spacing:-0.057000px;}
.ls13{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.009600px;}
.ls2a{letter-spacing:0.057000px;}
.ls21{letter-spacing:0.114000px;}
.ls5{letter-spacing:0.171000px;}
.ls2d{letter-spacing:0.228000px;}
.ls31{letter-spacing:0.285000px;}
.ls3d{letter-spacing:0.342000px;}
.lsa{letter-spacing:0.399000px;}
.ls40{letter-spacing:0.456000px;}
.ls2f{letter-spacing:0.513000px;}
.lsb{letter-spacing:0.570000px;}
.ls33{letter-spacing:0.627000px;}
.ls7{letter-spacing:0.684000px;}
.ls6{letter-spacing:0.741000px;}
.ls4{letter-spacing:0.765000px;}
.ls10{letter-spacing:0.798000px;}
.ls8{letter-spacing:0.855000px;}
.ls1d{letter-spacing:0.912000px;}
.ls1{letter-spacing:0.918000px;}
.ls3c{letter-spacing:0.940500px;}
.ls0{letter-spacing:0.969000px;}
.ls20{letter-spacing:0.972000px;}
.ls45{letter-spacing:1.083000px;}
.lsf{letter-spacing:1.140000px;}
.ls2b{letter-spacing:1.197000px;}
.ls1e{letter-spacing:1.254000px;}
.ls2{letter-spacing:1.275000px;}
.ls1f{letter-spacing:1.311000px;}
.ls3a{letter-spacing:1.368000px;}
.ls32{letter-spacing:1.425000px;}
.ls3{letter-spacing:1.428000px;}
.ls2e{letter-spacing:1.653000px;}
.lsc{letter-spacing:1.710000px;}
.ls3f{letter-spacing:1.824000px;}
.ls3b{letter-spacing:1.881000px;}
.ls9{letter-spacing:1.995000px;}
.lsd{letter-spacing:2.109000px;}
.ls16{letter-spacing:2.166000px;}
.ls35{letter-spacing:2.223000px;}
.ls34{letter-spacing:2.280000px;}
.ls30{letter-spacing:2.337000px;}
.ls11{letter-spacing:2.394000px;}
.ls42{letter-spacing:2.508000px;}
.ls41{letter-spacing:2.622000px;}
.ls44{letter-spacing:2.850000px;}
.ls46{letter-spacing:2.964000px;}
.lse{letter-spacing:3.192000px;}
.ls36{letter-spacing:3.420000px;}
.ls1c{letter-spacing:3.648000px;}
.ls3e{letter-spacing:7.991400px;}
.ls1b{letter-spacing:814.604400px;}
.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;}
}
.ws3e{word-spacing:-15.162000px;}
.ws1{word-spacing:-15.000000px;}
.ws1c{word-spacing:-14.250000px;}
.ws3f{word-spacing:-13.965000px;}
.ws1d{word-spacing:-13.794000px;}
.ws1f{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws1e{word-spacing:-9.975000px;}
.ws21{word-spacing:-3.648000px;}
.ws2e{word-spacing:-3.420000px;}
.ws2{word-spacing:-2.976000px;}
.ws48{word-spacing:-2.964000px;}
.ws45{word-spacing:-2.850000px;}
.ws44{word-spacing:-2.622000px;}
.ws46{word-spacing:-2.508000px;}
.ws1b{word-spacing:-2.394000px;}
.ws37{word-spacing:-2.337000px;}
.ws3c{word-spacing:-2.280000px;}
.ws3d{word-spacing:-2.223000px;}
.wsb{word-spacing:-2.166000px;}
.ws18{word-spacing:-2.109000px;}
.ws12{word-spacing:-1.995000px;}
.ws3b{word-spacing:-1.881000px;}
.ws41{word-spacing:-1.824000px;}
.ws15{word-spacing:-1.710000px;}
.ws34{word-spacing:-1.653000px;}
.ws7{word-spacing:-1.428000px;}
.ws39{word-spacing:-1.425000px;}
.ws36{word-spacing:-1.368000px;}
.ws2b{word-spacing:-1.311000px;}
.ws6{word-spacing:-1.275000px;}
.ws2a{word-spacing:-1.254000px;}
.ws2f{word-spacing:-1.197000px;}
.ws19{word-spacing:-1.140000px;}
.ws47{word-spacing:-1.083000px;}
.ws4{word-spacing:-0.969000px;}
.ws5{word-spacing:-0.918000px;}
.ws22{word-spacing:-0.912000px;}
.ws11{word-spacing:-0.855000px;}
.ws1a{word-spacing:-0.798000px;}
.ws8{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.741000px;}
.ws10{word-spacing:-0.684000px;}
.ws3a{word-spacing:-0.627000px;}
.ws14{word-spacing:-0.570000px;}
.ws35{word-spacing:-0.513000px;}
.ws42{word-spacing:-0.456000px;}
.ws13{word-spacing:-0.399000px;}
.ws40{word-spacing:-0.342000px;}
.ws38{word-spacing:-0.285000px;}
.ws33{word-spacing:-0.228000px;}
.wsd{word-spacing:-0.171000px;}
.ws20{word-spacing:-0.114000px;}
.ws2d{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:0.057000px;}
.ws29{word-spacing:0.114000px;}
.ws32{word-spacing:0.171000px;}
.ws17{word-spacing:0.228000px;}
.ws31{word-spacing:0.285000px;}
.ws9{word-spacing:0.306000px;}
.ws16{word-spacing:0.342000px;}
.ws30{word-spacing:0.399000px;}
.ws24{word-spacing:0.456000px;}
.wsa{word-spacing:0.459000px;}
.ws2c{word-spacing:0.513000px;}
.ws25{word-spacing:0.570000px;}
.wse{word-spacing:0.627000px;}
.wsc{word-spacing:0.684000px;}
.ws27{word-spacing:0.969000px;}
.ws43{word-spacing:1.026000px;}
.ws28{word-spacing:1.140000px;}
.ws23{word-spacing:1.482000px;}
._d{margin-left:-40.992000px;}
._10{margin-left:-13.671600px;}
._8{margin-left:-8.954400px;}
._11{margin-left:-7.296000px;}
._0{margin-left:-6.192000px;}
._7{margin-left:-4.569600px;}
._5{margin-left:-3.442500px;}
._1{margin-left:-1.771200px;}
._3{width:1.118400px;}
._9{width:2.527200px;}
._c{width:3.568200px;}
._b{width:4.725300px;}
._6{width:6.227100px;}
._2{width:7.359300px;}
._4{width:8.547600px;}
._a{width:9.557400px;}
._f{width:10.774800px;}
._13{width:23.313000px;}
._12{width:26.505000px;}
._14{width:32.832000px;}
._15{width:35.967000px;}
._e{width:56.047200px;}
._16{width:70.794000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:39.900000px;}
.fs6{font-size:46.200000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:49.102650px;}
.y3f{bottom:61.883100px;}
.y1{bottom:63.502650px;}
.y67{bottom:112.553400px;}
.ycc{bottom:112.629900px;}
.y8e{bottom:112.638900px;}
.y13a{bottom:112.659150px;}
.y105{bottom:112.758150px;}
.y170{bottom:112.787400px;}
.yc{bottom:113.444400px;}
.y66{bottom:130.551150px;}
.ycb{bottom:130.627650px;}
.y8d{bottom:130.636650px;}
.y139{bottom:130.656900px;}
.y104{bottom:130.755900px;}
.y16f{bottom:130.785150px;}
.yb{bottom:142.244400px;}
.y65{bottom:148.548900px;}
.yca{bottom:148.625400px;}
.y8c{bottom:148.634400px;}
.y138{bottom:148.654650px;}
.y103{bottom:148.753650px;}
.y16e{bottom:148.782900px;}
.ya{bottom:156.644400px;}
.y64{bottom:166.546650px;}
.yc9{bottom:166.623150px;}
.y8b{bottom:166.632150px;}
.y137{bottom:166.652400px;}
.y102{bottom:166.751400px;}
.y16d{bottom:166.780650px;}
.y63{bottom:184.544400px;}
.yc8{bottom:184.620900px;}
.y8a{bottom:184.629900px;}
.y101{bottom:184.749150px;}
.y16c{bottom:184.778400px;}
.y25{bottom:201.030450px;}
.y3e{bottom:201.087450px;}
.y62{bottom:202.542150px;}
.yc7{bottom:202.618650px;}
.y89{bottom:202.627650px;}
.y136{bottom:202.647900px;}
.y100{bottom:202.746900px;}
.y16b{bottom:202.776150px;}
.y24{bottom:219.028200px;}
.y3d{bottom:219.085200px;}
.y61{bottom:220.539900px;}
.yc6{bottom:220.616400px;}
.y88{bottom:220.625400px;}
.y135{bottom:220.645650px;}
.yff{bottom:220.744650px;}
.y16a{bottom:220.773900px;}
.y23{bottom:237.025950px;}
.y3c{bottom:237.082950px;}
.y60{bottom:238.537650px;}
.yc5{bottom:238.614150px;}
.y87{bottom:238.623150px;}
.y134{bottom:238.643400px;}
.yfe{bottom:238.742400px;}
.y169{bottom:238.771650px;}
.y22{bottom:255.023700px;}
.y3b{bottom:255.080700px;}
.y5f{bottom:256.596150px;}
.yc4{bottom:256.611900px;}
.y86{bottom:256.620900px;}
.y133{bottom:256.641150px;}
.yfd{bottom:256.740150px;}
.y168{bottom:256.769400px;}
.y3a{bottom:273.078450px;}
.y5e{bottom:274.593900px;}
.yc3{bottom:274.609650px;}
.y85{bottom:274.618650px;}
.y132{bottom:274.638900px;}
.yfc{bottom:274.737900px;}
.y167{bottom:274.767150px;}
.y21{bottom:291.019200px;}
.y39{bottom:291.076200px;}
.y5d{bottom:292.591650px;}
.yc2{bottom:292.607400px;}
.y131{bottom:292.636650px;}
.yfb{bottom:292.735650px;}
.y166{bottom:292.764900px;}
.y38{bottom:309.073950px;}
.y5c{bottom:310.589400px;}
.yc1{bottom:310.605150px;}
.y84{bottom:310.614150px;}
.y130{bottom:310.634400px;}
.yfa{bottom:310.733400px;}
.y165{bottom:310.762650px;}
.y37{bottom:327.071700px;}
.y5b{bottom:328.587150px;}
.yc0{bottom:328.602900px;}
.y83{bottom:328.611900px;}
.y12f{bottom:328.632150px;}
.yf9{bottom:328.731150px;}
.y164{bottom:328.760400px;}
.y20{bottom:345.012450px;}
.y36{bottom:345.069450px;}
.y5a{bottom:346.584900px;}
.ybf{bottom:346.600650px;}
.y82{bottom:346.609650px;}
.y12e{bottom:346.629900px;}
.yf8{bottom:346.728900px;}
.y163{bottom:346.758150px;}
.y1f{bottom:363.010200px;}
.y35{bottom:363.067200px;}
.y59{bottom:364.582650px;}
.ybe{bottom:364.598400px;}
.y81{bottom:364.607400px;}
.y12d{bottom:364.627650px;}
.yf7{bottom:364.726650px;}
.y162{bottom:364.755900px;}
.y1e{bottom:381.007950px;}
.y34{bottom:381.064950px;}
.y58{bottom:382.580400px;}
.ybd{bottom:382.596150px;}
.y80{bottom:382.605150px;}
.yf6{bottom:382.724400px;}
.y161{bottom:382.753650px;}
.y1d{bottom:399.005700px;}
.y33{bottom:399.062700px;}
.y57{bottom:400.578150px;}
.ybc{bottom:400.593900px;}
.y7f{bottom:400.602900px;}
.y12c{bottom:400.623150px;}
.yf5{bottom:400.722150px;}
.y160{bottom:400.751400px;}
.y1c{bottom:417.003450px;}
.y32{bottom:417.060450px;}
.y56{bottom:418.575900px;}
.ybb{bottom:418.591650px;}
.y7e{bottom:418.600650px;}
.y12b{bottom:418.620900px;}
.yf4{bottom:418.719900px;}
.y15f{bottom:418.749150px;}
.y1b{bottom:435.001200px;}
.y31{bottom:435.058200px;}
.y55{bottom:436.573650px;}
.yba{bottom:436.589400px;}
.y7d{bottom:436.598400px;}
.y12a{bottom:436.618650px;}
.yf3{bottom:436.717650px;}
.y15e{bottom:436.746900px;}
.y1a{bottom:452.998950px;}
.y30{bottom:453.055950px;}
.y54{bottom:454.571400px;}
.yb9{bottom:454.587150px;}
.y7c{bottom:454.596150px;}
.y129{bottom:454.616400px;}
.yf2{bottom:454.715400px;}
.y15d{bottom:454.744650px;}
.y19{bottom:470.996700px;}
.y2f{bottom:471.053700px;}
.y53{bottom:472.569150px;}
.yb8{bottom:472.584900px;}
.y7b{bottom:472.593900px;}
.y128{bottom:472.614150px;}
.yf1{bottom:472.713150px;}
.y15c{bottom:472.742400px;}
.y18{bottom:488.994450px;}
.y2e{bottom:489.051450px;}
.y52{bottom:490.566900px;}
.yb7{bottom:490.582650px;}
.y7a{bottom:490.591650px;}
.y127{bottom:490.611900px;}
.yf0{bottom:490.710900px;}
.y15b{bottom:490.740150px;}
.y17{bottom:506.992200px;}
.y2d{bottom:507.049200px;}
.y51{bottom:508.564650px;}
.yb6{bottom:508.580400px;}
.y79{bottom:508.589400px;}
.y126{bottom:508.609650px;}
.yef{bottom:508.708650px;}
.y15a{bottom:508.737900px;}
.y16{bottom:524.989950px;}
.y2c{bottom:525.046950px;}
.y50{bottom:526.562400px;}
.yb5{bottom:526.578150px;}
.y78{bottom:526.587150px;}
.y125{bottom:526.607400px;}
.yee{bottom:526.706400px;}
.y159{bottom:526.735650px;}
.y15{bottom:542.987700px;}
.y2b{bottom:543.044700px;}
.y4f{bottom:544.560150px;}
.yb4{bottom:544.575900px;}
.y77{bottom:544.584900px;}
.y124{bottom:544.605150px;}
.yed{bottom:544.704150px;}
.y158{bottom:544.733400px;}
.y14{bottom:560.985450px;}
.y2a{bottom:561.042450px;}
.yb3{bottom:562.573650px;}
.y76{bottom:562.582650px;}
.y123{bottom:562.602900px;}
.yec{bottom:562.701900px;}
.y157{bottom:562.731150px;}
.y13{bottom:578.983200px;}
.y29{bottom:579.040200px;}
.y4e{bottom:580.555650px;}
.yb2{bottom:580.571400px;}
.y75{bottom:580.580400px;}
.y122{bottom:580.600650px;}
.yeb{bottom:580.699650px;}
.y156{bottom:580.728900px;}
.y12{bottom:596.980950px;}
.y28{bottom:597.037950px;}
.yb1{bottom:598.569150px;}
.y74{bottom:598.578150px;}
.y121{bottom:598.598400px;}
.yea{bottom:598.697400px;}
.y155{bottom:598.726650px;}
.y27{bottom:615.035700px;}
.yb0{bottom:616.566900px;}
.y73{bottom:616.575900px;}
.y120{bottom:616.596150px;}
.ye9{bottom:616.695150px;}
.y154{bottom:616.724400px;}
.y11{bottom:632.976450px;}
.y26{bottom:633.033450px;}
.y4d{bottom:634.548900px;}
.yaf{bottom:634.564650px;}
.y72{bottom:634.573650px;}
.y11f{bottom:634.593900px;}
.ye8{bottom:634.692900px;}
.y153{bottom:634.722150px;}
.y18a{bottom:652.539900px;}
.y4c{bottom:652.546650px;}
.yae{bottom:652.562400px;}
.y71{bottom:652.571400px;}
.y11e{bottom:652.591650px;}
.ye7{bottom:652.690650px;}
.y152{bottom:652.719900px;}
.y189{bottom:670.537650px;}
.y4b{bottom:670.544400px;}
.yad{bottom:670.560150px;}
.y70{bottom:670.569150px;}
.y11d{bottom:670.589400px;}
.ye6{bottom:670.688400px;}
.y151{bottom:670.717650px;}
.y188{bottom:688.535400px;}
.yac{bottom:688.557900px;}
.y6f{bottom:688.566900px;}
.y11c{bottom:688.587150px;}
.ye5{bottom:688.686150px;}
.y150{bottom:688.715400px;}
.y9{bottom:695.985450px;}
.y4a{bottom:706.539900px;}
.yab{bottom:706.555650px;}
.y6e{bottom:706.564650px;}
.y11b{bottom:706.584900px;}
.ye4{bottom:706.683900px;}
.y14f{bottom:706.713150px;}
.y49{bottom:724.537650px;}
.yaa{bottom:724.553400px;}
.y6d{bottom:724.562400px;}
.y11a{bottom:724.582650px;}
.ye3{bottom:724.681650px;}
.y14e{bottom:724.710900px;}
.y8{bottom:728.982450px;}
.y48{bottom:742.535400px;}
.ya9{bottom:742.551150px;}
.y6c{bottom:742.560150px;}
.y119{bottom:742.580400px;}
.ye2{bottom:742.679400px;}
.y14d{bottom:742.708650px;}
.y7{bottom:745.480950px;}
.y47{bottom:760.542150px;}
.ya8{bottom:760.548900px;}
.y6b{bottom:760.557900px;}
.y118{bottom:760.578150px;}
.y176{bottom:760.582650px;}
.ye1{bottom:760.677150px;}
.y14c{bottom:760.706400px;}
.y6{bottom:761.979450px;}
.y5{bottom:778.477950px;}
.y46{bottom:778.539900px;}
.ya7{bottom:778.546650px;}
.y6a{bottom:778.555650px;}
.y117{bottom:778.575900px;}
.y175{bottom:778.580400px;}
.ye0{bottom:778.674900px;}
.y14b{bottom:778.704150px;}
.y4{bottom:794.976450px;}
.y45{bottom:796.537650px;}
.ya6{bottom:796.544400px;}
.y116{bottom:796.573650px;}
.y174{bottom:796.578150px;}
.y187{bottom:796.620900px;}
.ydf{bottom:796.672650px;}
.y14a{bottom:796.701900px;}
.y44{bottom:814.535400px;}
.ya5{bottom:814.542150px;}
.y69{bottom:814.551150px;}
.y115{bottom:814.571400px;}
.y173{bottom:814.575900px;}
.y186{bottom:814.618650px;}
.yde{bottom:814.670400px;}
.y3{bottom:830.976450px;}
.y43{bottom:832.535400px;}
.ya4{bottom:832.539900px;}
.y68{bottom:832.548900px;}
.y114{bottom:832.569150px;}
.y172{bottom:832.573650px;}
.y185{bottom:832.616400px;}
.ydd{bottom:832.668150px;}
.y149{bottom:832.697400px;}
.ya3{bottom:850.537650px;}
.y113{bottom:850.566900px;}
.y171{bottom:850.571400px;}
.y148{bottom:850.695150px;}
.y112{bottom:868.564650px;}
.ya2{bottom:868.569150px;}
.y184{bottom:868.611900px;}
.ydc{bottom:868.663650px;}
.y90{bottom:878.961900px;}
.y111{bottom:886.562400px;}
.ya1{bottom:886.566900px;}
.ydb{bottom:886.661400px;}
.y8f{bottom:895.161900px;}
.y10{bottom:903.290700px;}
.y110{bottom:904.560150px;}
.ya0{bottom:904.564650px;}
.yda{bottom:904.659150px;}
.y147{bottom:904.688400px;}
.y10f{bottom:922.557900px;}
.y9f{bottom:922.562400px;}
.y183{bottom:922.605150px;}
.yd9{bottom:922.656900px;}
.y146{bottom:922.686150px;}
.yf{bottom:938.690700px;}
.y10e{bottom:940.555650px;}
.y9e{bottom:940.560150px;}
.y182{bottom:940.602900px;}
.yd8{bottom:940.654650px;}
.y145{bottom:940.683900px;}
.y10d{bottom:958.553400px;}
.y9d{bottom:958.557900px;}
.y181{bottom:958.600650px;}
.yd7{bottom:958.652400px;}
.ye{bottom:976.490700px;}
.y10c{bottom:976.551150px;}
.y9c{bottom:976.555650px;}
.y180{bottom:976.598400px;}
.yd6{bottom:976.650150px;}
.y144{bottom:976.679400px;}
.y10b{bottom:994.548900px;}
.y9b{bottom:994.553400px;}
.y17f{bottom:994.596150px;}
.yd5{bottom:994.647900px;}
.y143{bottom:994.677150px;}
.yd{bottom:1010.690700px;}
.y10a{bottom:1012.546650px;}
.y9a{bottom:1012.551150px;}
.y17e{bottom:1012.593900px;}
.yd4{bottom:1012.645650px;}
.y142{bottom:1012.674900px;}
.y109{bottom:1030.544400px;}
.y99{bottom:1030.548900px;}
.y17d{bottom:1030.591650px;}
.yd3{bottom:1030.643400px;}
.y141{bottom:1030.672650px;}
.y108{bottom:1048.542150px;}
.y98{bottom:1048.546650px;}
.y17c{bottom:1048.589400px;}
.yd2{bottom:1048.641150px;}
.y140{bottom:1048.670400px;}
.y107{bottom:1066.539900px;}
.y97{bottom:1066.544400px;}
.y17b{bottom:1066.587150px;}
.yd1{bottom:1066.638900px;}
.y13f{bottom:1066.668150px;}
.y106{bottom:1084.537650px;}
.y96{bottom:1084.542150px;}
.y17a{bottom:1084.584900px;}
.yd0{bottom:1084.636650px;}
.y13e{bottom:1084.665900px;}
.y42{bottom:1099.465650px;}
.y95{bottom:1102.539900px;}
.y179{bottom:1102.582650px;}
.ycf{bottom:1102.634400px;}
.y13d{bottom:1102.663650px;}
.y94{bottom:1120.537650px;}
.y178{bottom:1120.580400px;}
.yce{bottom:1120.632150px;}
.y13c{bottom:1120.661400px;}
.y41{bottom:1130.965650px;}
.y93{bottom:1138.535400px;}
.y177{bottom:1138.578150px;}
.ycd{bottom:1138.629900px;}
.y13b{bottom:1138.659150px;}
.y40{bottom:1150.465650px;}
.y92{bottom:1181.618550px;}
.y91{bottom:1195.118550px;}
.h2{height:33.328125px;}
.hf{height:37.494141px;}
.h3{height:38.519531px;}
.h12{height:38.603027px;}
.he{height:39.577148px;}
.hc{height:41.660156px;}
.h4{height:44.749512px;}
.h5{height:45.446777px;}
.h10{height:46.550004px;}
.ha{height:50.014160px;}
.h9{height:50.793457px;}
.hb{height:52.646484px;}
.hd{height:53.747912px;}
.h11{height:53.972912px;}
.h8{height:57.911133px;}
.h7{height:73.705078px;}
.h6{height:96.240234px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x3{left:76.533300px;}
.x15{left:85.039350px;}
.xa{left:92.287350px;}
.xb{left:106.299150px;}
.xf{left:140.082600px;}
.x10{left:162.452100px;}
.x7{left:306.998100px;}
.x8{left:335.843100px;}
.x6{left:351.638100px;}
.x2{left:457.086600px;}
.x4{left:469.876050px;}
.xc{left:475.416750px;}
.xd{left:478.352250px;}
.xe{left:499.613250px;}
.x11{left:542.193600px;}
.x12{left:549.929100px;}
.x9{left:575.086650px;}
.x14{left:659.858250px;}
.x13{left:731.282250px;}
.x5{left:821.633850px;}
@media print{
.v4{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.758400pt;}
.v3{vertical-align:16.656000pt;}
.v1{vertical-align:19.536000pt;}
.ls22{letter-spacing:-1.317333pt;}
.ls27{letter-spacing:-1.013333pt;}
.ls43{letter-spacing:-0.912000pt;}
.ls26{letter-spacing:-0.861333pt;}
.ls17{letter-spacing:-0.608000pt;}
.ls18{letter-spacing:-0.557333pt;}
.ls24{letter-spacing:-0.506667pt;}
.ls29{letter-spacing:-0.456000pt;}
.ls15{letter-spacing:-0.408000pt;}
.ls23{letter-spacing:-0.405333pt;}
.ls37{letter-spacing:-0.354667pt;}
.ls19{letter-spacing:-0.304000pt;}
.ls14{letter-spacing:-0.272000pt;}
.ls38{letter-spacing:-0.253333pt;}
.ls1a{letter-spacing:-0.202667pt;}
.ls39{letter-spacing:-0.152000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.101333pt;}
.ls25{letter-spacing:-0.050667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.008533pt;}
.ls2a{letter-spacing:0.050667pt;}
.ls21{letter-spacing:0.101333pt;}
.ls5{letter-spacing:0.152000pt;}
.ls2d{letter-spacing:0.202667pt;}
.ls31{letter-spacing:0.253333pt;}
.ls3d{letter-spacing:0.304000pt;}
.lsa{letter-spacing:0.354667pt;}
.ls40{letter-spacing:0.405333pt;}
.ls2f{letter-spacing:0.456000pt;}
.lsb{letter-spacing:0.506667pt;}
.ls33{letter-spacing:0.557333pt;}
.ls7{letter-spacing:0.608000pt;}
.ls6{letter-spacing:0.658667pt;}
.ls4{letter-spacing:0.680000pt;}
.ls10{letter-spacing:0.709333pt;}
.ls8{letter-spacing:0.760000pt;}
.ls1d{letter-spacing:0.810667pt;}
.ls1{letter-spacing:0.816000pt;}
.ls3c{letter-spacing:0.836000pt;}
.ls0{letter-spacing:0.861333pt;}
.ls20{letter-spacing:0.864000pt;}
.ls45{letter-spacing:0.962667pt;}
.lsf{letter-spacing:1.013333pt;}
.ls2b{letter-spacing:1.064000pt;}
.ls1e{letter-spacing:1.114667pt;}
.ls2{letter-spacing:1.133333pt;}
.ls1f{letter-spacing:1.165333pt;}
.ls3a{letter-spacing:1.216000pt;}
.ls32{letter-spacing:1.266667pt;}
.ls3{letter-spacing:1.269333pt;}
.ls2e{letter-spacing:1.469333pt;}
.lsc{letter-spacing:1.520000pt;}
.ls3f{letter-spacing:1.621333pt;}
.ls3b{letter-spacing:1.672000pt;}
.ls9{letter-spacing:1.773333pt;}
.lsd{letter-spacing:1.874667pt;}
.ls16{letter-spacing:1.925333pt;}
.ls35{letter-spacing:1.976000pt;}
.ls34{letter-spacing:2.026667pt;}
.ls30{letter-spacing:2.077333pt;}
.ls11{letter-spacing:2.128000pt;}
.ls42{letter-spacing:2.229333pt;}
.ls41{letter-spacing:2.330667pt;}
.ls44{letter-spacing:2.533333pt;}
.ls46{letter-spacing:2.634667pt;}
.lse{letter-spacing:2.837333pt;}
.ls36{letter-spacing:3.040000pt;}
.ls1c{letter-spacing:3.242667pt;}
.ls3e{letter-spacing:7.103467pt;}
.ls1b{letter-spacing:724.092800pt;}
.ws3e{word-spacing:-13.477333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-12.666667pt;}
.ws3f{word-spacing:-12.413333pt;}
.ws1d{word-spacing:-12.261333pt;}
.ws1f{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1e{word-spacing:-8.866667pt;}
.ws21{word-spacing:-3.242667pt;}
.ws2e{word-spacing:-3.040000pt;}
.ws2{word-spacing:-2.645333pt;}
.ws48{word-spacing:-2.634667pt;}
.ws45{word-spacing:-2.533333pt;}
.ws44{word-spacing:-2.330667pt;}
.ws46{word-spacing:-2.229333pt;}
.ws1b{word-spacing:-2.128000pt;}
.ws37{word-spacing:-2.077333pt;}
.ws3c{word-spacing:-2.026667pt;}
.ws3d{word-spacing:-1.976000pt;}
.wsb{word-spacing:-1.925333pt;}
.ws18{word-spacing:-1.874667pt;}
.ws12{word-spacing:-1.773333pt;}
.ws3b{word-spacing:-1.672000pt;}
.ws41{word-spacing:-1.621333pt;}
.ws15{word-spacing:-1.520000pt;}
.ws34{word-spacing:-1.469333pt;}
.ws7{word-spacing:-1.269333pt;}
.ws39{word-spacing:-1.266667pt;}
.ws36{word-spacing:-1.216000pt;}
.ws2b{word-spacing:-1.165333pt;}
.ws6{word-spacing:-1.133333pt;}
.ws2a{word-spacing:-1.114667pt;}
.ws2f{word-spacing:-1.064000pt;}
.ws19{word-spacing:-1.013333pt;}
.ws47{word-spacing:-0.962667pt;}
.ws4{word-spacing:-0.861333pt;}
.ws5{word-spacing:-0.816000pt;}
.ws22{word-spacing:-0.810667pt;}
.ws11{word-spacing:-0.760000pt;}
.ws1a{word-spacing:-0.709333pt;}
.ws8{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.658667pt;}
.ws10{word-spacing:-0.608000pt;}
.ws3a{word-spacing:-0.557333pt;}
.ws14{word-spacing:-0.506667pt;}
.ws35{word-spacing:-0.456000pt;}
.ws42{word-spacing:-0.405333pt;}
.ws13{word-spacing:-0.354667pt;}
.ws40{word-spacing:-0.304000pt;}
.ws38{word-spacing:-0.253333pt;}
.ws33{word-spacing:-0.202667pt;}
.wsd{word-spacing:-0.152000pt;}
.ws20{word-spacing:-0.101333pt;}
.ws2d{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:0.050667pt;}
.ws29{word-spacing:0.101333pt;}
.ws32{word-spacing:0.152000pt;}
.ws17{word-spacing:0.202667pt;}
.ws31{word-spacing:0.253333pt;}
.ws9{word-spacing:0.272000pt;}
.ws16{word-spacing:0.304000pt;}
.ws30{word-spacing:0.354667pt;}
.ws24{word-spacing:0.405333pt;}
.wsa{word-spacing:0.408000pt;}
.ws2c{word-spacing:0.456000pt;}
.ws25{word-spacing:0.506667pt;}
.wse{word-spacing:0.557333pt;}
.wsc{word-spacing:0.608000pt;}
.ws27{word-spacing:0.861333pt;}
.ws43{word-spacing:0.912000pt;}
.ws28{word-spacing:1.013333pt;}
.ws23{word-spacing:1.317333pt;}
._d{margin-left:-36.437333pt;}
._10{margin-left:-12.152533pt;}
._8{margin-left:-7.959467pt;}
._11{margin-left:-6.485333pt;}
._0{margin-left:-5.504000pt;}
._7{margin-left:-4.061867pt;}
._5{margin-left:-3.060000pt;}
._1{margin-left:-1.574400pt;}
._3{width:0.994133pt;}
._9{width:2.246400pt;}
._c{width:3.171733pt;}
._b{width:4.200267pt;}
._6{width:5.535200pt;}
._2{width:6.541600pt;}
._4{width:7.597867pt;}
._a{width:8.495467pt;}
._f{width:9.577600pt;}
._13{width:20.722667pt;}
._12{width:23.560000pt;}
._14{width:29.184000pt;}
._15{width:31.970667pt;}
._e{width:49.819733pt;}
._16{width:62.928000pt;}
.fs8{font-size:35.466667pt;}
.fs6{font-size:41.066667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:43.646800pt;}
.y3f{bottom:55.007200pt;}
.y1{bottom:56.446800pt;}
.y67{bottom:100.047467pt;}
.ycc{bottom:100.115467pt;}
.y8e{bottom:100.123467pt;}
.y13a{bottom:100.141467pt;}
.y105{bottom:100.229467pt;}
.y170{bottom:100.255467pt;}
.yc{bottom:100.839467pt;}
.y66{bottom:116.045467pt;}
.ycb{bottom:116.113467pt;}
.y8d{bottom:116.121467pt;}
.y139{bottom:116.139467pt;}
.y104{bottom:116.227467pt;}
.y16f{bottom:116.253467pt;}
.yb{bottom:126.439467pt;}
.y65{bottom:132.043467pt;}
.yca{bottom:132.111467pt;}
.y8c{bottom:132.119467pt;}
.y138{bottom:132.137467pt;}
.y103{bottom:132.225467pt;}
.y16e{bottom:132.251467pt;}
.ya{bottom:139.239467pt;}
.y64{bottom:148.041467pt;}
.yc9{bottom:148.109467pt;}
.y8b{bottom:148.117467pt;}
.y137{bottom:148.135467pt;}
.y102{bottom:148.223467pt;}
.y16d{bottom:148.249467pt;}
.y63{bottom:164.039467pt;}
.yc8{bottom:164.107467pt;}
.y8a{bottom:164.115467pt;}
.y101{bottom:164.221467pt;}
.y16c{bottom:164.247467pt;}
.y25{bottom:178.693733pt;}
.y3e{bottom:178.744400pt;}
.y62{bottom:180.037467pt;}
.yc7{bottom:180.105467pt;}
.y89{bottom:180.113467pt;}
.y136{bottom:180.131467pt;}
.y100{bottom:180.219467pt;}
.y16b{bottom:180.245467pt;}
.y24{bottom:194.691733pt;}
.y3d{bottom:194.742400pt;}
.y61{bottom:196.035467pt;}
.yc6{bottom:196.103467pt;}
.y88{bottom:196.111467pt;}
.y135{bottom:196.129467pt;}
.yff{bottom:196.217467pt;}
.y16a{bottom:196.243467pt;}
.y23{bottom:210.689733pt;}
.y3c{bottom:210.740400pt;}
.y60{bottom:212.033467pt;}
.yc5{bottom:212.101467pt;}
.y87{bottom:212.109467pt;}
.y134{bottom:212.127467pt;}
.yfe{bottom:212.215467pt;}
.y169{bottom:212.241467pt;}
.y22{bottom:226.687733pt;}
.y3b{bottom:226.738400pt;}
.y5f{bottom:228.085467pt;}
.yc4{bottom:228.099467pt;}
.y86{bottom:228.107467pt;}
.y133{bottom:228.125467pt;}
.yfd{bottom:228.213467pt;}
.y168{bottom:228.239467pt;}
.y3a{bottom:242.736400pt;}
.y5e{bottom:244.083467pt;}
.yc3{bottom:244.097467pt;}
.y85{bottom:244.105467pt;}
.y132{bottom:244.123467pt;}
.yfc{bottom:244.211467pt;}
.y167{bottom:244.237467pt;}
.y21{bottom:258.683733pt;}
.y39{bottom:258.734400pt;}
.y5d{bottom:260.081467pt;}
.yc2{bottom:260.095467pt;}
.y131{bottom:260.121467pt;}
.yfb{bottom:260.209467pt;}
.y166{bottom:260.235467pt;}
.y38{bottom:274.732400pt;}
.y5c{bottom:276.079467pt;}
.yc1{bottom:276.093467pt;}
.y84{bottom:276.101467pt;}
.y130{bottom:276.119467pt;}
.yfa{bottom:276.207467pt;}
.y165{bottom:276.233467pt;}
.y37{bottom:290.730400pt;}
.y5b{bottom:292.077467pt;}
.yc0{bottom:292.091467pt;}
.y83{bottom:292.099467pt;}
.y12f{bottom:292.117467pt;}
.yf9{bottom:292.205467pt;}
.y164{bottom:292.231467pt;}
.y20{bottom:306.677733pt;}
.y36{bottom:306.728400pt;}
.y5a{bottom:308.075467pt;}
.ybf{bottom:308.089467pt;}
.y82{bottom:308.097467pt;}
.y12e{bottom:308.115467pt;}
.yf8{bottom:308.203467pt;}
.y163{bottom:308.229467pt;}
.y1f{bottom:322.675733pt;}
.y35{bottom:322.726400pt;}
.y59{bottom:324.073467pt;}
.ybe{bottom:324.087467pt;}
.y81{bottom:324.095467pt;}
.y12d{bottom:324.113467pt;}
.yf7{bottom:324.201467pt;}
.y162{bottom:324.227467pt;}
.y1e{bottom:338.673733pt;}
.y34{bottom:338.724400pt;}
.y58{bottom:340.071467pt;}
.ybd{bottom:340.085467pt;}
.y80{bottom:340.093467pt;}
.yf6{bottom:340.199467pt;}
.y161{bottom:340.225467pt;}
.y1d{bottom:354.671733pt;}
.y33{bottom:354.722400pt;}
.y57{bottom:356.069467pt;}
.ybc{bottom:356.083467pt;}
.y7f{bottom:356.091467pt;}
.y12c{bottom:356.109467pt;}
.yf5{bottom:356.197467pt;}
.y160{bottom:356.223467pt;}
.y1c{bottom:370.669733pt;}
.y32{bottom:370.720400pt;}
.y56{bottom:372.067467pt;}
.ybb{bottom:372.081467pt;}
.y7e{bottom:372.089467pt;}
.y12b{bottom:372.107467pt;}
.yf4{bottom:372.195467pt;}
.y15f{bottom:372.221467pt;}
.y1b{bottom:386.667733pt;}
.y31{bottom:386.718400pt;}
.y55{bottom:388.065467pt;}
.yba{bottom:388.079467pt;}
.y7d{bottom:388.087467pt;}
.y12a{bottom:388.105467pt;}
.yf3{bottom:388.193467pt;}
.y15e{bottom:388.219467pt;}
.y1a{bottom:402.665733pt;}
.y30{bottom:402.716400pt;}
.y54{bottom:404.063467pt;}
.yb9{bottom:404.077467pt;}
.y7c{bottom:404.085467pt;}
.y129{bottom:404.103467pt;}
.yf2{bottom:404.191467pt;}
.y15d{bottom:404.217467pt;}
.y19{bottom:418.663733pt;}
.y2f{bottom:418.714400pt;}
.y53{bottom:420.061467pt;}
.yb8{bottom:420.075467pt;}
.y7b{bottom:420.083467pt;}
.y128{bottom:420.101467pt;}
.yf1{bottom:420.189467pt;}
.y15c{bottom:420.215467pt;}
.y18{bottom:434.661733pt;}
.y2e{bottom:434.712400pt;}
.y52{bottom:436.059467pt;}
.yb7{bottom:436.073467pt;}
.y7a{bottom:436.081467pt;}
.y127{bottom:436.099467pt;}
.yf0{bottom:436.187467pt;}
.y15b{bottom:436.213467pt;}
.y17{bottom:450.659733pt;}
.y2d{bottom:450.710400pt;}
.y51{bottom:452.057467pt;}
.yb6{bottom:452.071467pt;}
.y79{bottom:452.079467pt;}
.y126{bottom:452.097467pt;}
.yef{bottom:452.185467pt;}
.y15a{bottom:452.211467pt;}
.y16{bottom:466.657733pt;}
.y2c{bottom:466.708400pt;}
.y50{bottom:468.055467pt;}
.yb5{bottom:468.069467pt;}
.y78{bottom:468.077467pt;}
.y125{bottom:468.095467pt;}
.yee{bottom:468.183467pt;}
.y159{bottom:468.209467pt;}
.y15{bottom:482.655733pt;}
.y2b{bottom:482.706400pt;}
.y4f{bottom:484.053467pt;}
.yb4{bottom:484.067467pt;}
.y77{bottom:484.075467pt;}
.y124{bottom:484.093467pt;}
.yed{bottom:484.181467pt;}
.y158{bottom:484.207467pt;}
.y14{bottom:498.653733pt;}
.y2a{bottom:498.704400pt;}
.yb3{bottom:500.065467pt;}
.y76{bottom:500.073467pt;}
.y123{bottom:500.091467pt;}
.yec{bottom:500.179467pt;}
.y157{bottom:500.205467pt;}
.y13{bottom:514.651733pt;}
.y29{bottom:514.702400pt;}
.y4e{bottom:516.049467pt;}
.yb2{bottom:516.063467pt;}
.y75{bottom:516.071467pt;}
.y122{bottom:516.089467pt;}
.yeb{bottom:516.177467pt;}
.y156{bottom:516.203467pt;}
.y12{bottom:530.649733pt;}
.y28{bottom:530.700400pt;}
.yb1{bottom:532.061467pt;}
.y74{bottom:532.069467pt;}
.y121{bottom:532.087467pt;}
.yea{bottom:532.175467pt;}
.y155{bottom:532.201467pt;}
.y27{bottom:546.698400pt;}
.yb0{bottom:548.059467pt;}
.y73{bottom:548.067467pt;}
.y120{bottom:548.085467pt;}
.ye9{bottom:548.173467pt;}
.y154{bottom:548.199467pt;}
.y11{bottom:562.645733pt;}
.y26{bottom:562.696400pt;}
.y4d{bottom:564.043467pt;}
.yaf{bottom:564.057467pt;}
.y72{bottom:564.065467pt;}
.y11f{bottom:564.083467pt;}
.ye8{bottom:564.171467pt;}
.y153{bottom:564.197467pt;}
.y18a{bottom:580.035467pt;}
.y4c{bottom:580.041467pt;}
.yae{bottom:580.055467pt;}
.y71{bottom:580.063467pt;}
.y11e{bottom:580.081467pt;}
.ye7{bottom:580.169467pt;}
.y152{bottom:580.195467pt;}
.y189{bottom:596.033467pt;}
.y4b{bottom:596.039467pt;}
.yad{bottom:596.053467pt;}
.y70{bottom:596.061467pt;}
.y11d{bottom:596.079467pt;}
.ye6{bottom:596.167467pt;}
.y151{bottom:596.193467pt;}
.y188{bottom:612.031467pt;}
.yac{bottom:612.051467pt;}
.y6f{bottom:612.059467pt;}
.y11c{bottom:612.077467pt;}
.ye5{bottom:612.165467pt;}
.y150{bottom:612.191467pt;}
.y9{bottom:618.653733pt;}
.y4a{bottom:628.035467pt;}
.yab{bottom:628.049467pt;}
.y6e{bottom:628.057467pt;}
.y11b{bottom:628.075467pt;}
.ye4{bottom:628.163467pt;}
.y14f{bottom:628.189467pt;}
.y49{bottom:644.033467pt;}
.yaa{bottom:644.047467pt;}
.y6d{bottom:644.055467pt;}
.y11a{bottom:644.073467pt;}
.ye3{bottom:644.161467pt;}
.y14e{bottom:644.187467pt;}
.y8{bottom:647.984400pt;}
.y48{bottom:660.031467pt;}
.ya9{bottom:660.045467pt;}
.y6c{bottom:660.053467pt;}
.y119{bottom:660.071467pt;}
.ye2{bottom:660.159467pt;}
.y14d{bottom:660.185467pt;}
.y7{bottom:662.649733pt;}
.y47{bottom:676.037467pt;}
.ya8{bottom:676.043467pt;}
.y6b{bottom:676.051467pt;}
.y118{bottom:676.069467pt;}
.y176{bottom:676.073467pt;}
.ye1{bottom:676.157467pt;}
.y14c{bottom:676.183467pt;}
.y6{bottom:677.315067pt;}
.y5{bottom:691.980400pt;}
.y46{bottom:692.035467pt;}
.ya7{bottom:692.041467pt;}
.y6a{bottom:692.049467pt;}
.y117{bottom:692.067467pt;}
.y175{bottom:692.071467pt;}
.ye0{bottom:692.155467pt;}
.y14b{bottom:692.181467pt;}
.y4{bottom:706.645733pt;}
.y45{bottom:708.033467pt;}
.ya6{bottom:708.039467pt;}
.y116{bottom:708.065467pt;}
.y174{bottom:708.069467pt;}
.y187{bottom:708.107467pt;}
.ydf{bottom:708.153467pt;}
.y14a{bottom:708.179467pt;}
.y44{bottom:724.031467pt;}
.ya5{bottom:724.037467pt;}
.y69{bottom:724.045467pt;}
.y115{bottom:724.063467pt;}
.y173{bottom:724.067467pt;}
.y186{bottom:724.105467pt;}
.yde{bottom:724.151467pt;}
.y3{bottom:738.645733pt;}
.y43{bottom:740.031467pt;}
.ya4{bottom:740.035467pt;}
.y68{bottom:740.043467pt;}
.y114{bottom:740.061467pt;}
.y172{bottom:740.065467pt;}
.y185{bottom:740.103467pt;}
.ydd{bottom:740.149467pt;}
.y149{bottom:740.175467pt;}
.ya3{bottom:756.033467pt;}
.y113{bottom:756.059467pt;}
.y171{bottom:756.063467pt;}
.y148{bottom:756.173467pt;}
.y112{bottom:772.057467pt;}
.ya2{bottom:772.061467pt;}
.y184{bottom:772.099467pt;}
.ydc{bottom:772.145467pt;}
.y90{bottom:781.299467pt;}
.y111{bottom:788.055467pt;}
.ya1{bottom:788.059467pt;}
.ydb{bottom:788.143467pt;}
.y8f{bottom:795.699467pt;}
.y10{bottom:802.925067pt;}
.y110{bottom:804.053467pt;}
.ya0{bottom:804.057467pt;}
.yda{bottom:804.141467pt;}
.y147{bottom:804.167467pt;}
.y10f{bottom:820.051467pt;}
.y9f{bottom:820.055467pt;}
.y183{bottom:820.093467pt;}
.yd9{bottom:820.139467pt;}
.y146{bottom:820.165467pt;}
.yf{bottom:834.391733pt;}
.y10e{bottom:836.049467pt;}
.y9e{bottom:836.053467pt;}
.y182{bottom:836.091467pt;}
.yd8{bottom:836.137467pt;}
.y145{bottom:836.163467pt;}
.y10d{bottom:852.047467pt;}
.y9d{bottom:852.051467pt;}
.y181{bottom:852.089467pt;}
.yd7{bottom:852.135467pt;}
.ye{bottom:867.991733pt;}
.y10c{bottom:868.045467pt;}
.y9c{bottom:868.049467pt;}
.y180{bottom:868.087467pt;}
.yd6{bottom:868.133467pt;}
.y144{bottom:868.159467pt;}
.y10b{bottom:884.043467pt;}
.y9b{bottom:884.047467pt;}
.y17f{bottom:884.085467pt;}
.yd5{bottom:884.131467pt;}
.y143{bottom:884.157467pt;}
.yd{bottom:898.391733pt;}
.y10a{bottom:900.041467pt;}
.y9a{bottom:900.045467pt;}
.y17e{bottom:900.083467pt;}
.yd4{bottom:900.129467pt;}
.y142{bottom:900.155467pt;}
.y109{bottom:916.039467pt;}
.y99{bottom:916.043467pt;}
.y17d{bottom:916.081467pt;}
.yd3{bottom:916.127467pt;}
.y141{bottom:916.153467pt;}
.y108{bottom:932.037467pt;}
.y98{bottom:932.041467pt;}
.y17c{bottom:932.079467pt;}
.yd2{bottom:932.125467pt;}
.y140{bottom:932.151467pt;}
.y107{bottom:948.035467pt;}
.y97{bottom:948.039467pt;}
.y17b{bottom:948.077467pt;}
.yd1{bottom:948.123467pt;}
.y13f{bottom:948.149467pt;}
.y106{bottom:964.033467pt;}
.y96{bottom:964.037467pt;}
.y17a{bottom:964.075467pt;}
.yd0{bottom:964.121467pt;}
.y13e{bottom:964.147467pt;}
.y42{bottom:977.302800pt;}
.y95{bottom:980.035467pt;}
.y179{bottom:980.073467pt;}
.ycf{bottom:980.119467pt;}
.y13d{bottom:980.145467pt;}
.y94{bottom:996.033467pt;}
.y178{bottom:996.071467pt;}
.yce{bottom:996.117467pt;}
.y13c{bottom:996.143467pt;}
.y41{bottom:1005.302800pt;}
.y93{bottom:1012.031467pt;}
.y177{bottom:1012.069467pt;}
.ycd{bottom:1012.115467pt;}
.y13b{bottom:1012.141467pt;}
.y40{bottom:1022.636133pt;}
.y92{bottom:1050.327600pt;}
.y91{bottom:1062.327600pt;}
.h2{height:29.625000pt;}
.hf{height:33.328125pt;}
.h3{height:34.239583pt;}
.h12{height:34.313802pt;}
.he{height:35.179688pt;}
.hc{height:37.031250pt;}
.h4{height:39.777344pt;}
.h5{height:40.397135pt;}
.h10{height:41.377781pt;}
.ha{height:44.457031pt;}
.h9{height:45.149740pt;}
.hb{height:46.796875pt;}
.hd{height:47.775922pt;}
.h11{height:47.975922pt;}
.h8{height:51.476562pt;}
.h7{height:65.515625pt;}
.h6{height:85.546875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x3{left:68.029600pt;}
.x15{left:75.590533pt;}
.xa{left:82.033200pt;}
.xb{left:94.488133pt;}
.xf{left:124.517867pt;}
.x10{left:144.401867pt;}
.x7{left:272.887200pt;}
.x8{left:298.527200pt;}
.x6{left:312.567200pt;}
.x2{left:406.299200pt;}
.x4{left:417.667600pt;}
.xc{left:422.592667pt;}
.xd{left:425.202000pt;}
.xe{left:444.100667pt;}
.x11{left:481.949867pt;}
.x12{left:488.825867pt;}
.x9{left:511.188133pt;}
.x14{left:586.540667pt;}
.x13{left:650.028667pt;}
.x5{left:730.341200pt;}
}




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