
    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_dc51ce80067f0cedd38eb8e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_b6f49f134e6603c224d5d87b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_ff0c89a36f3c22830a372ece.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_86d0751f152ff437dddcd3fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_00789a02ef809bc931dd650b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.723000;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_4559dfe195fcb1d623e1a754.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_111a6dc1a4e355e8466bc1d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_78dc23fe4ab72150d3929b8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.882324;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_5b0ffc2c692a7b371bc3b341.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.082000;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_80988ba0d67ef66f0e974a8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_56a036a8006042c53feb1d69.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926000;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_3b6cffcf9767c2c2bd359cc9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049805;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_ea3b07b3e0a3bee1a30e8bc5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_8dce31795dfa879196f20fb8.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_807ab80a27a63e7ef45976fa.woff2')format("woff");}.fff{font-family:fff;line-height:1.106000;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_2c34eb505e4674fe948ff7c8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.051758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c95bbd16f9e7db3f3b9c82d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1fa04418b68311bd8f6e8d68.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_654ee84aefe369af1b921c70.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_feba4c67d361bc8537aeb83f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5f060877ab2347711d01409f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a9968af85089e7816ab80c68.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_64af8d67e7026bbb04662635.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.722656;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:ff18;src:url('chunks/assets/font_dde0ab6d26f8e6592cbe8bda.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.808105;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:ff19;src:url('chunks/assets/font_d015ea9e32b566a0cd5daae4.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.706055;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;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.290880px;}
.ls38{letter-spacing:-1.082592px;}
.ls1c{letter-spacing:-0.985824px;}
.ls18{letter-spacing:-0.937440px;}
.ls1b{letter-spacing:-0.919296px;}
.ls1a{letter-spacing:-0.901152px;}
.ls1d{letter-spacing:-0.858816px;}
.ls17{letter-spacing:-0.840672px;}
.ls29{letter-spacing:-0.834624px;}
.ls16{letter-spacing:-0.822528px;}
.ls25{letter-spacing:-0.801504px;}
.ls19{letter-spacing:-0.780192px;}
.ls1e{letter-spacing:-0.762048px;}
.ls22{letter-spacing:-0.761760px;}
.ls27{letter-spacing:-0.755136px;}
.ls15{letter-spacing:-0.743904px;}
.ls37{letter-spacing:-0.735264px;}
.ls24{letter-spacing:-0.722016px;}
.ls1f{letter-spacing:-0.719712px;}
.ls26{letter-spacing:-0.715392px;}
.ls23{letter-spacing:-0.682272px;}
.ls2c{letter-spacing:-0.675648px;}
.ls36{letter-spacing:-0.669024px;}
.ls28{letter-spacing:-0.662400px;}
.ls11{letter-spacing:-0.633600px;}
.ls10{letter-spacing:-0.604800px;}
.lsf{letter-spacing:-0.597600px;}
.ls13{letter-spacing:-0.476064px;}
.ls20{letter-spacing:-0.334080px;}
.ls21{letter-spacing:-0.325728px;}
.ls14{letter-spacing:-0.309024px;}
.lse{letter-spacing:-0.266112px;}
.ls35{letter-spacing:-0.242208px;}
.ls12{letter-spacing:-0.225504px;}
.lsb{letter-spacing:-0.059616px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.133056px;}
.lsd{letter-spacing:0.156816px;}
.ls3{letter-spacing:0.171072px;}
.ls4{letter-spacing:0.266112px;}
.ls1{letter-spacing:0.285120px;}
.ls8{letter-spacing:0.302400px;}
.lsc{letter-spacing:0.346896px;}
.ls2d{letter-spacing:1.073088px;}
.ls3e{letter-spacing:1.179072px;}
.ls2e{letter-spacing:1.324800px;}
.ls40{letter-spacing:1.391040px;}
.ls3d{letter-spacing:1.523520px;}
.ls7{letter-spacing:1.814400px;}
.ls6{letter-spacing:1.820448px;}
.ls5{letter-spacing:2.401056px;}
.ls3f{letter-spacing:2.517120px;}
.ls9{letter-spacing:2.848320px;}
.ls31{letter-spacing:3.179520px;}
.lsa{letter-spacing:3.643200px;}
.ls2a{letter-spacing:4.901760px;}
.ls32{letter-spacing:5.100480px;}
.ls3c{letter-spacing:6.756480px;}
.ls3a{letter-spacing:6.888960px;}
.ls3b{letter-spacing:7.187040px;}
.ls2b{letter-spacing:8.280000px;}
.ls2f{letter-spacing:9.671040px;}
.ls30{letter-spacing:12.188160px;}
.ls41{letter-spacing:12.519360px;}
.ls42{letter-spacing:12.585600px;}
.ls34{letter-spacing:17.478720px;}
.ls33{letter-spacing:18.083520px;}
.ls39{letter-spacing:53.985600px;}
.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;}
}
.wsf{word-spacing:-20.016000px;}
.ws23{word-spacing:-19.411200px;}
.ws1a{word-spacing:-18.414720px;}
.ws1b{word-spacing:-17.745696px;}
.ws21{word-spacing:-17.652960px;}
.ws6{word-spacing:-17.402400px;}
.ws12{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.547328px;}
.ws15{word-spacing:-15.884352px;}
.ws18{word-spacing:-15.877728px;}
.ws22{word-spacing:-15.844608px;}
.ws17{word-spacing:-15.837984px;}
.ws13{word-spacing:-15.804864px;}
.ws14{word-spacing:-15.798240px;}
.ws11{word-spacing:-15.758496px;}
.ws16{word-spacing:-15.725376px;}
.ws9{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.113228px;}
.wse{word-spacing:-14.376096px;}
.ws20{word-spacing:-14.357952px;}
.ws1f{word-spacing:-14.339808px;}
.ws1e{word-spacing:-14.297472px;}
.wsa{word-spacing:-14.279328px;}
.wsd{word-spacing:-14.261184px;}
.wsc{word-spacing:-14.218848px;}
.ws1c{word-spacing:-14.200704px;}
.wsb{word-spacing:-14.182560px;}
.ws10{word-spacing:-14.134176px;}
.ws1d{word-spacing:-14.037408px;}
.ws3{word-spacing:-13.476672px;}
.ws2{word-spacing:-13.367376px;}
.ws4{word-spacing:-13.210560px;}
.ws7{word-spacing:-0.072000px;}
.ws19{word-spacing:-0.066240px;}
.ws24{word-spacing:-0.041760px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.561600px;}
._c{margin-left:-4.239360px;}
._b{margin-left:-3.113280px;}
._f{margin-left:-2.069823px;}
._9{margin-left:-1.059840px;}
._5{width:1.698879px;}
._8{width:3.669579px;}
._a{width:4.759031px;}
._3{width:6.727561px;}
._6{width:7.950754px;}
._11{width:9.406080px;}
._e{width:10.929600px;}
._10{width:12.303663px;}
._2{width:13.794897px;}
._15{width:15.384417px;}
._12{width:17.553600px;}
._d{width:18.613440px;}
._4{width:24.158059px;}
._13{width:25.568640px;}
._1{width:29.152764px;}
._7{width:46.549285px;}
._0{width:845.197156px;}
._14{width:847.408320px;}
.fc4{color:transparent;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc3{color:rgb(56,56,56);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:33.977580px;}
.fs3{font-size:38.831520px;}
.fse{font-size:41.760000px;}
.fs6{font-size:42.714672px;}
.fs7{font-size:43.685460px;}
.fsa{font-size:47.520000px;}
.fs2{font-size:48.539400px;}
.fs1{font-size:53.393340px;}
.fs5{font-size:54.364128px;}
.fs9{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:67.955160px;}
.fsd{font-size:69.960708px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307155px;}
.y1e{bottom:3.780000px;}
.y48{bottom:3.960000px;}
.y22{bottom:4.260000px;}
.y45{bottom:4.500000px;}
.y134{bottom:8.095680px;}
.y12f{bottom:8.153520px;}
.yfc{bottom:8.269200px;}
.y14d{bottom:8.391360px;}
.ye0{bottom:8.394960px;}
.y127{bottom:8.640000px;}
.y13f{bottom:8.692800px;}
.yef{bottom:8.747760px;}
.y139{bottom:8.750640px;}
.y145{bottom:8.931360px;}
.yf4{bottom:9.173520px;}
.ydd{bottom:9.180000px;}
.ye4{bottom:9.477840px;}
.y12b{bottom:20.751360px;}
.y133{bottom:25.377840px;}
.y12e{bottom:25.435680px;}
.yfb{bottom:25.551360px;}
.y14c{bottom:25.673520px;}
.ye1{bottom:25.680000px;}
.y13e{bottom:25.974960px;}
.yee{bottom:26.029920px;}
.y138{bottom:26.032800px;}
.ydf{bottom:26.040000px;}
.y144{bottom:26.213520px;}
.ye5{bottom:26.400000px;}
.yf3{bottom:26.455680px;}
.ye3{bottom:26.760000px;}
.y12a{bottom:38.033520px;}
.y131{bottom:42.300000px;}
.y132{bottom:42.660000px;}
.y12d{bottom:42.717840px;}
.yfa{bottom:42.833520px;}
.yed{bottom:42.949200px;}
.y14b{bottom:42.955680px;}
.y13c{bottom:43.260000px;}
.y137{bottom:43.314960px;}
.y143{bottom:43.495680px;}
.y13d{bottom:43.620000px;}
.yf2{bottom:43.737840px;}
.y47{bottom:49.818900px;}
.y21{bottom:51.318900px;}
.y1c{bottom:51.755135px;}
.y46{bottom:52.340340px;}
.y20{bottom:58.458900px;}
.y129{bottom:59.640000px;}
.y12c{bottom:60.000000px;}
.yf9{bottom:60.115680px;}
.yec{bottom:60.231360px;}
.y14a{bottom:60.237840px;}
.y13a{bottom:60.600000px;}
.yf5{bottom:60.660000px;}
.y142{bottom:60.777840px;}
.y136{bottom:60.960000px;}
.yf1{bottom:61.020000px;}
.ye9{bottom:64.915680px;}
.y1b{bottom:65.516055px;}
.y148{bottom:77.160000px;}
.yf8{bottom:77.397840px;}
.yeb{bottom:77.513520px;}
.y149{bottom:77.520000px;}
.y146{bottom:77.700000px;}
.y141{bottom:78.060000px;}
.y1a{bottom:79.276975px;}
.ye8{bottom:82.197840px;}
.ye6{bottom:91.818900px;}
.y19{bottom:93.037895px;}
.yfd{bottom:94.320000px;}
.yf7{bottom:94.680000px;}
.yea{bottom:99.120000px;}
.ye7{bottom:99.480000px;}
.y6e{bottom:99.864660px;}
.yad{bottom:100.234740px;}
.y8e{bottom:100.954740px;}
.y44{bottom:101.706420px;}
.y1ad{bottom:101.987940px;}
.y18{bottom:104.796565px;}
.y16b{bottom:108.530580px;}
.y118{bottom:108.924420px;}
.y6d{bottom:118.941780px;}
.yac{bottom:119.311860px;}
.y1ac{bottom:119.988660px;}
.y8d{bottom:120.031860px;}
.y43{bottom:120.783540px;}
.y17{bottom:127.076149px;}
.y16a{bottom:127.607700px;}
.y117{bottom:128.001540px;}
.y181{bottom:130.810980px;}
.y1ab{bottom:137.989380px;}
.y6c{bottom:138.018900px;}
.yab{bottom:138.024660px;}
.y8c{bottom:138.744660px;}
.y42{bottom:139.860660px;}
.y169{bottom:146.320500px;}
.y116{bottom:147.078660px;}
.y180{bottom:148.811700px;}
.y140{bottom:150.318900px;}
.y1aa{bottom:155.990100px;}
.yaa{bottom:157.101780px;}
.y8b{bottom:157.821780px;}
.y41{bottom:158.937780px;}
.yc2{bottom:162.569460px;}
.y168{bottom:165.397620px;}
.y115{bottom:165.791460px;}
.y17f{bottom:166.812420px;}
.y1a9{bottom:173.990820px;}
.y6b{bottom:175.458900px;}
.ya9{bottom:176.178900px;}
.y8a{bottom:176.898900px;}
.y40{bottom:177.650580px;}
.yc1{bottom:181.646580px;}
.y167{bottom:184.474740px;}
.y17e{bottom:184.813140px;}
.y114{bottom:184.868580px;}
.y16{bottom:191.803439px;}
.y1a8{bottom:191.991540px;}
.y3f{bottom:196.727700px;}
.yc0{bottom:200.359380px;}
.y15{bottom:202.118062px;}
.y17d{bottom:202.813860px;}
.y166{bottom:203.551860px;}
.y113{bottom:203.945700px;}
.ye2{bottom:208.818900px;}
.y1a7{bottom:209.992260px;}
.y14{bottom:211.583245px;}
.y6a{bottom:212.609460px;}
.ya8{bottom:213.618900px;}
.y89{bottom:213.978900px;}
.y3e{bottom:215.804820px;}
.ybf{bottom:219.436500px;}
.y13{bottom:220.174718px;}
.y17c{bottom:220.814580px;}
.y165{bottom:222.264660px;}
.y112{bottom:223.022820px;}
.y1a6{bottom:227.992980px;}
.y12{bottom:228.778327px;}
.y69{bottom:231.322260px;}
.y88{bottom:233.778900px;}
.y3d{bottom:234.517620px;}
.y11{bottom:237.381936px;}
.ybe{bottom:238.513620px;}
.y17b{bottom:238.815300px;}
.y164{bottom:241.341780px;}
.y111{bottom:241.735620px;}
.y10{bottom:245.973410px;}
.y1a5{bottom:245.993700px;}
.y13b{bottom:246.318900px;}
.y1bf{bottom:247.457460px;}
.y68{bottom:250.399380px;}
.ya7{bottom:250.721940px;}
.y3c{bottom:253.594740px;}
.yde{bottom:253.818900px;}
.yf{bottom:254.577018px;}
.y17a{bottom:256.816020px;}
.ybd{bottom:257.226420px;}
.y163{bottom:260.418900px;}
.y110{bottom:260.812740px;}
.y1a4{bottom:263.994420px;}
.ya6{bottom:269.434740px;}
.y67{bottom:269.476500px;}
.y87{bottom:270.913620px;}
.ye{bottom:272.269629px;}
.y3b{bottom:272.671860px;}
.y179{bottom:274.816740px;}
.y1be{bottom:275.178900px;}
.ybc{bottom:276.303540px;}
.y10f{bottom:279.889860px;}
.y1a3{bottom:281.995140px;}
.y66{bottom:288.189300px;}
.ya5{bottom:288.511860px;}
.y86{bottom:289.626420px;}
.y3a{bottom:291.384660px;}
.y178{bottom:292.817460px;}
.y1bd{bottom:294.256020px;}
.ybb{bottom:295.380660px;}
.ydc{bottom:297.318900px;}
.y162{bottom:298.218900px;}
.y10e{bottom:298.602660px;}
.y1a2{bottom:299.995860px;}
.y65{bottom:307.266420px;}
.ya4{bottom:307.588980px;}
.y135{bottom:307.818900px;}
.y85{bottom:308.703540px;}
.y39{bottom:310.461780px;}
.y177{bottom:310.818180px;}
.y1bc{bottom:313.333140px;}
.yba{bottom:314.093460px;}
.y10d{bottom:317.679780px;}
.y1a1{bottom:317.996580px;}
.ya3{bottom:326.301780px;}
.y64{bottom:326.343540px;}
.y84{bottom:327.780660px;}
.y176{bottom:328.818900px;}
.y38{bottom:329.538900px;}
.yb9{bottom:333.170580px;}
.y1a0{bottom:335.997300px;}
.y10c{bottom:336.756900px;}
.ydb{bottom:338.176740px;}
.y1bb{bottom:341.436180px;}
.ya2{bottom:345.378900px;}
.y63{bottom:345.420660px;}
.y83{bottom:346.493460px;}
.y161{bottom:346.864260px;}
.yb8{bottom:352.247700px;}
.y19f{bottom:353.998020px;}
.yda{bottom:355.458900px;}
.y10b{bottom:355.469700px;}
.y1ba{bottom:360.513300px;}
.y62{bottom:364.133460px;}
.y175{bottom:364.818900px;}
.y82{bottom:365.570580px;}
.y160{bottom:365.941380px;}
.y37{bottom:367.338900px;}
.yb7{bottom:371.324820px;}
.y19e{bottom:371.998740px;}
.y1b9{bottom:379.226100px;}
.yd9{bottom:381.810180px;}
.ya1{bottom:382.818900px;}
.y61{bottom:383.210580px;}
.y81{bottom:384.647700px;}
.y15f{bottom:384.654180px;}
.y130{bottom:387.318900px;}
.y19d{bottom:389.999460px;}
.yb6{bottom:390.037620px;}
.y10a{bottom:392.547540px;}
.yd8{bottom:400.887300px;}
.y174{bottom:400.925460px;}
.y60{bottom:402.287700px;}
.y80{bottom:403.724820px;}
.y15e{bottom:403.731300px;}
.y1b8{bottom:407.311860px;}
.y19c{bottom:408.000180px;}
.yd{bottom:408.774557px;}
.yb5{bottom:409.114740px;}
.y36{bottom:415.569540px;}
.y173{bottom:419.638260px;}
.yd7{bottom:419.964420px;}
.ya0{bottom:419.965860px;}
.y5f{bottom:421.000500px;}
.y7f{bottom:422.437620px;}
.y15d{bottom:422.808420px;}
.y19b{bottom:426.000900px;}
.y1b7{bottom:426.388980px;}
.yb4{bottom:428.191860px;}
.y109{bottom:428.548980px;}
.y35{bottom:432.851700px;}
.y172{bottom:438.715380px;}
.yd6{bottom:439.041540px;}
.y9f{bottom:439.042980px;}
.y5e{bottom:440.077620px;}
.y7e{bottom:441.514740px;}
.y15c{bottom:441.521220px;}
.y19a{bottom:444.001620px;}
.y1b6{bottom:445.101780px;}
.yb3{bottom:446.904660px;}
.y108{bottom:447.626100px;}
.y128{bottom:448.818900px;}
.y34{bottom:450.133860px;}
.y9e{bottom:457.755780px;}
.y171{bottom:457.792500px;}
.yd5{bottom:458.118660px;}
.y5d{bottom:459.154740px;}
.y7d{bottom:460.591860px;}
.y15b{bottom:460.598340px;}
.y199{bottom:462.002340px;}
.yb2{bottom:465.981780px;}
.y107{bottom:466.703220px;}
.y1b5{bottom:473.187540px;}
.y33{bottom:476.412420px;}
.yd4{bottom:476.831460px;}
.y9d{bottom:476.832900px;}
.y170{bottom:476.869620px;}
.y5c{bottom:477.867540px;}
.y7c{bottom:479.304660px;}
.y15a{bottom:479.675460px;}
.y198{bottom:480.003060px;}
.yb1{bottom:485.058900px;}
.y106{bottom:485.416020px;}
.y1b4{bottom:492.264660px;}
.y32{bottom:493.694580px;}
.y16f{bottom:495.582420px;}
.yd3{bottom:495.908580px;}
.y9c{bottom:495.910020px;}
.y5b{bottom:496.944660px;}
.y197{bottom:498.003780px;}
.y7b{bottom:498.381780px;}
.y159{bottom:498.752580px;}
.y105{bottom:504.493140px;}
.y31{bottom:510.976740px;}
.y1b3{bottom:510.977460px;}
.y9b{bottom:514.622820px;}
.y16e{bottom:514.659540px;}
.yd2{bottom:514.985700px;}
.y196{bottom:516.004500px;}
.y5a{bottom:516.021780px;}
.y7a{bottom:517.458900px;}
.yb0{bottom:522.858900px;}
.y126{bottom:526.818900px;}
.y30{bottom:528.258900px;}
.y104{bottom:532.214580px;}
.yd1{bottom:533.698500px;}
.y9a{bottom:533.699940px;}
.y16d{bottom:533.736660px;}
.y195{bottom:534.005220px;}
.y59{bottom:535.098900px;}
.y158{bottom:535.466100px;}
.y1b2{bottom:539.063220px;}
.y103{bottom:551.291700px;}
.y194{bottom:552.005940px;}
.y16c{bottom:552.449460px;}
.y99{bottom:552.777060px;}
.y79{bottom:554.898900px;}
.y1b1{bottom:558.140340px;}
.y2f{bottom:563.898900px;}
.y125{bottom:567.138900px;}
.y193{bottom:570.006660px;}
.yd0{bottom:570.776340px;}
.y157{bottom:571.467540px;}
.yaf{bottom:571.526580px;}
.y98{bottom:571.854180px;}
.y58{bottom:572.178900px;}
.y1b0{bottom:577.217460px;}
.y102{bottom:579.377460px;}
.y2e{bottom:586.218900px;}
.y192{bottom:588.007380px;}
.y156{bottom:590.544660px;}
.y97{bottom:590.566980px;}
.yae{bottom:590.603700px;}
.yc{bottom:591.440454px;}
.y78{bottom:591.650580px;}
.y124{bottom:593.816340px;}
.y101{bottom:598.454580px;}
.y1af{bottom:604.938900px;}
.y191{bottom:606.008100px;}
.ycf{bottom:606.777780px;}
.y57{bottom:609.316500px;}
.y155{bottom:609.621780px;}
.y96{bottom:609.644100px;}
.y77{bottom:610.727700px;}
.y123{bottom:612.893460px;}
.y2d{bottom:616.089540px;}
.yb{bottom:617.967236px;}
.y190{bottom:624.008820px;}
.yce{bottom:625.854900px;}
.y100{bottom:626.176020px;}
.y56{bottom:628.393620px;}
.y95{bottom:628.721220px;}
.y76{bottom:629.804820px;}
.y122{bottom:631.606260px;}
.ya{bottom:631.728156px;}
.y2c{bottom:633.371700px;}
.y154{bottom:637.343220px;}
.y18f{bottom:642.009540px;}
.y1ae{bottom:642.018900px;}
.ycd{bottom:644.932020px;}
.yff{bottom:645.253140px;}
.y94{bottom:647.434020px;}
.y55{bottom:647.470740px;}
.y75{bottom:648.881940px;}
.y121{bottom:650.683380px;}
.y153{bottom:656.420340px;}
.y9{bottom:658.521905px;}
.y2b{bottom:659.650260px;}
.y18e{bottom:660.010260px;}
.ycc{bottom:663.644820px;}
.y93{bottom:666.511140px;}
.y54{bottom:666.547860px;}
.y74{bottom:667.594740px;}
.y120{bottom:669.760500px;}
.y8{bottom:672.282825px;}
.yfe{bottom:673.338900px;}
.y2a{bottom:676.932420px;}
.y18d{bottom:678.010980px;}
.ycb{bottom:682.721940px;}
.y152{bottom:684.141780px;}
.y53{bottom:685.260660px;}
.y92{bottom:685.588260px;}
.y7{bottom:686.043745px;}
.y73{bottom:686.671860px;}
.y29{bottom:694.214580px;}
.y18c{bottom:696.011700px;}
.yf6{bottom:697.818900px;}
.y6{bottom:699.804665px;}
.yca{bottom:701.799060px;}
.y52{bottom:704.337780px;}
.y91{bottom:705.741780px;}
.y72{bottom:705.748980px;}
.y11f{bottom:706.838340px;}
.y28{bottom:711.496740px;}
.y151{bottom:712.227540px;}
.y18b{bottom:714.012420px;}
.yc9{bottom:720.511860px;}
.y51{bottom:723.414900px;}
.y90{bottom:724.818900px;}
.y71{bottom:724.826100px;}
.y27{bottom:728.778900px;}
.y150{bottom:731.304660px;}
.y18a{bottom:732.013140px;}
.yc8{bottom:739.588980px;}
.y50{bottom:742.127700px;}
.y11e{bottom:742.475460px;}
.y70{bottom:743.538900px;}
.y189{bottom:750.013860px;}
.y14f{bottom:750.381780px;}
.yc7{bottom:758.666100px;}
.y4f{bottom:761.204820px;}
.y11d{bottom:761.552580px;}
.y8f{bottom:761.898900px;}
.y5{bottom:763.925212px;}
.y26{bottom:765.146820px;}
.y188{bottom:768.014580px;}
.y14e{bottom:769.458900px;}
.yc6{bottom:777.378900px;}
.y4e{bottom:780.281940px;}
.y11c{bottom:780.629700px;}
.y6f{bottom:780.978900px;}
.y4{bottom:784.336030px;}
.y187{bottom:786.015300px;}
.y25{bottom:791.058900px;}
.y147{bottom:793.818900px;}
.y4d{bottom:798.994740px;}
.y11b{bottom:799.706820px;}
.y186{bottom:804.016020px;}
.y3{bottom:808.411572px;}
.yf0{bottom:810.318900px;}
.yc5{bottom:814.818900px;}
.y4c{bottom:818.071860px;}
.y11a{bottom:818.419620px;}
.y185{bottom:822.016740px;}
.y2{bottom:832.499249px;}
.y24{bottom:833.898900px;}
.yc4{bottom:834.258900px;}
.y4b{bottom:837.148980px;}
.y119{bottom:837.496740px;}
.y184{bottom:840.017460px;}
.y4a{bottom:856.226100px;}
.y183{bottom:858.018180px;}
.yc3{bottom:872.418900px;}
.y23{bottom:873.498900px;}
.y49{bottom:874.938900px;}
.y182{bottom:876.018900px;}
.y1f{bottom:894.018900px;}
.y1d{bottom:909.318900px;}
.h10{height:19.500000px;}
.h1c{height:28.500000px;}
.h7{height:28.774156px;}
.h9{height:28.890651px;}
.ha{height:31.055508px;}
.h13{height:34.737120px;}
.h8{height:35.967695px;}
.hb{height:36.113314px;}
.h5{height:39.564465px;}
.hd{height:39.928510px;}
.h1d{height:40.989375px;}
.h22{height:41.993438px;}
.h14{height:43.061760px;}
.h6{height:44.365012px;}
.h1b{height:44.893125px;}
.h1e{height:45.000000px;}
.h27{height:46.629085px;}
.h15{height:47.988281px;}
.h11{height:48.421440px;}
.hc{height:49.688813px;}
.h18{height:50.439375px;}
.h4{height:50.558639px;}
.h12{height:55.243125px;}
.h1a{height:55.372500px;}
.h28{height:56.286349px;}
.h17{height:61.053120px;}
.h23{height:61.500000px;}
.h3{height:62.111016px;}
.h16{height:62.856000px;}
.h24{height:63.000000px;}
.h19{height:65.592000px;}
.h20{height:79.500000px;}
.h26{height:96.000000px;}
.h25{height:97.500000px;}
.h21{height:114.000000px;}
.h1f{height:118.500000px;}
.he{height:1020.518400px;}
.hf{height:1020.750000px;}
.h2{height:1021.620887px;}
.h0{height:1022.235000px;}
.h1{height:1022.250000px;}
.w4{width:18.000000px;}
.w6{width:84.400500px;}
.w9{width:85.500000px;}
.wc{width:93.000000px;}
.wa{width:108.000000px;}
.w7{width:118.500000px;}
.w8{width:352.500000px;}
.wb{width:355.500000px;}
.w5{width:468.000000px;}
.w3{width:552.000000px;}
.w1{width:722.250000px;}
.w0{width:722.355000px;}
.w2{width:722.361150px;}
.x0{left:0.000000px;}
.x6{left:8.280000px;}
.x3{left:37.836462px;}
.x1{left:44.716922px;}
.x7{left:84.880650px;}
.x5{left:85.960650px;}
.x9{left:110.366490px;}
.xd{left:111.880650px;}
.xf{left:114.688650px;}
.x2{left:120.389847px;}
.x10{left:131.661930px;}
.x13{left:135.885450px;}
.xa{left:171.460650px;}
.x14{left:190.960650px;}
.x11{left:201.460650px;}
.xb{left:251.688600px;}
.x8{left:298.993500px;}
.x4{left:354.301215px;}
.x16{left:384.760650px;}
.x17{left:393.509400px;}
.x15{left:544.960650px;}
.x12{left:552.460650px;}
.xe{left:619.960650px;}
.xc{left:637.960650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.258560pt;}
.ls38{letter-spacing:-0.962304pt;}
.ls1c{letter-spacing:-0.876288pt;}
.ls18{letter-spacing:-0.833280pt;}
.ls1b{letter-spacing:-0.817152pt;}
.ls1a{letter-spacing:-0.801024pt;}
.ls1d{letter-spacing:-0.763392pt;}
.ls17{letter-spacing:-0.747264pt;}
.ls29{letter-spacing:-0.741888pt;}
.ls16{letter-spacing:-0.731136pt;}
.ls25{letter-spacing:-0.712448pt;}
.ls19{letter-spacing:-0.693504pt;}
.ls1e{letter-spacing:-0.677376pt;}
.ls22{letter-spacing:-0.677120pt;}
.ls27{letter-spacing:-0.671232pt;}
.ls15{letter-spacing:-0.661248pt;}
.ls37{letter-spacing:-0.653568pt;}
.ls24{letter-spacing:-0.641792pt;}
.ls1f{letter-spacing:-0.639744pt;}
.ls26{letter-spacing:-0.635904pt;}
.ls23{letter-spacing:-0.606464pt;}
.ls2c{letter-spacing:-0.600576pt;}
.ls36{letter-spacing:-0.594688pt;}
.ls28{letter-spacing:-0.588800pt;}
.ls11{letter-spacing:-0.563200pt;}
.ls10{letter-spacing:-0.537600pt;}
.lsf{letter-spacing:-0.531200pt;}
.ls13{letter-spacing:-0.423168pt;}
.ls20{letter-spacing:-0.296960pt;}
.ls21{letter-spacing:-0.289536pt;}
.ls14{letter-spacing:-0.274688pt;}
.lse{letter-spacing:-0.236544pt;}
.ls35{letter-spacing:-0.215296pt;}
.ls12{letter-spacing:-0.200448pt;}
.lsb{letter-spacing:-0.052992pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.118272pt;}
.lsd{letter-spacing:0.139392pt;}
.ls3{letter-spacing:0.152064pt;}
.ls4{letter-spacing:0.236544pt;}
.ls1{letter-spacing:0.253440pt;}
.ls8{letter-spacing:0.268800pt;}
.lsc{letter-spacing:0.308352pt;}
.ls2d{letter-spacing:0.953856pt;}
.ls3e{letter-spacing:1.048064pt;}
.ls2e{letter-spacing:1.177600pt;}
.ls40{letter-spacing:1.236480pt;}
.ls3d{letter-spacing:1.354240pt;}
.ls7{letter-spacing:1.612800pt;}
.ls6{letter-spacing:1.618176pt;}
.ls5{letter-spacing:2.134272pt;}
.ls3f{letter-spacing:2.237440pt;}
.ls9{letter-spacing:2.531840pt;}
.ls31{letter-spacing:2.826240pt;}
.lsa{letter-spacing:3.238400pt;}
.ls2a{letter-spacing:4.357120pt;}
.ls32{letter-spacing:4.533760pt;}
.ls3c{letter-spacing:6.005760pt;}
.ls3a{letter-spacing:6.123520pt;}
.ls3b{letter-spacing:6.388480pt;}
.ls2b{letter-spacing:7.360000pt;}
.ls2f{letter-spacing:8.596480pt;}
.ls30{letter-spacing:10.833920pt;}
.ls41{letter-spacing:11.128320pt;}
.ls42{letter-spacing:11.187200pt;}
.ls34{letter-spacing:15.536640pt;}
.ls33{letter-spacing:16.074240pt;}
.ls39{letter-spacing:47.987200pt;}
.wsf{word-spacing:-17.792000pt;}
.ws23{word-spacing:-17.254400pt;}
.ws1a{word-spacing:-16.368640pt;}
.ws1b{word-spacing:-15.773952pt;}
.ws21{word-spacing:-15.691520pt;}
.ws6{word-spacing:-15.468800pt;}
.ws12{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.708736pt;}
.ws15{word-spacing:-14.119424pt;}
.ws18{word-spacing:-14.113536pt;}
.ws22{word-spacing:-14.084096pt;}
.ws17{word-spacing:-14.078208pt;}
.ws13{word-spacing:-14.048768pt;}
.ws14{word-spacing:-14.042880pt;}
.ws11{word-spacing:-14.007552pt;}
.ws16{word-spacing:-13.978112pt;}
.ws9{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.433980pt;}
.wse{word-spacing:-12.778752pt;}
.ws20{word-spacing:-12.762624pt;}
.ws1f{word-spacing:-12.746496pt;}
.ws1e{word-spacing:-12.708864pt;}
.wsa{word-spacing:-12.692736pt;}
.wsd{word-spacing:-12.676608pt;}
.wsc{word-spacing:-12.638976pt;}
.ws1c{word-spacing:-12.622848pt;}
.wsb{word-spacing:-12.606720pt;}
.ws10{word-spacing:-12.563712pt;}
.ws1d{word-spacing:-12.477696pt;}
.ws3{word-spacing:-11.979264pt;}
.ws2{word-spacing:-11.882112pt;}
.ws4{word-spacing:-11.742720pt;}
.ws7{word-spacing:-0.064000pt;}
.ws19{word-spacing:-0.058880pt;}
.ws24{word-spacing:-0.037120pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.499200pt;}
._c{margin-left:-3.768320pt;}
._b{margin-left:-2.767360pt;}
._f{margin-left:-1.839843pt;}
._9{margin-left:-0.942080pt;}
._5{width:1.510115pt;}
._8{width:3.261848pt;}
._a{width:4.230250pt;}
._3{width:5.980054pt;}
._6{width:7.067337pt;}
._11{width:8.360960pt;}
._e{width:9.715200pt;}
._10{width:10.936589pt;}
._2{width:12.262131pt;}
._15{width:13.675037pt;}
._12{width:15.603200pt;}
._d{width:16.545280pt;}
._4{width:21.473831pt;}
._13{width:22.727680pt;}
._1{width:25.913568pt;}
._7{width:41.377142pt;}
._0{width:751.286361pt;}
._14{width:753.251840pt;}
.fs4{font-size:30.202293pt;}
.fs3{font-size:34.516907pt;}
.fse{font-size:37.120000pt;}
.fs6{font-size:37.968597pt;}
.fs7{font-size:38.831520pt;}
.fsa{font-size:42.240000pt;}
.fs2{font-size:43.146133pt;}
.fs1{font-size:47.460747pt;}
.fs5{font-size:48.323669pt;}
.fs9{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:60.404587pt;}
.fsd{font-size:62.187296pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273027pt;}
.y1e{bottom:3.360000pt;}
.y48{bottom:3.520000pt;}
.y22{bottom:3.786667pt;}
.y45{bottom:4.000000pt;}
.y134{bottom:7.196160pt;}
.y12f{bottom:7.247573pt;}
.yfc{bottom:7.350400pt;}
.y14d{bottom:7.458987pt;}
.ye0{bottom:7.462187pt;}
.y127{bottom:7.680000pt;}
.y13f{bottom:7.726933pt;}
.yef{bottom:7.775787pt;}
.y139{bottom:7.778347pt;}
.y145{bottom:7.938987pt;}
.yf4{bottom:8.154240pt;}
.ydd{bottom:8.160000pt;}
.ye4{bottom:8.424747pt;}
.y12b{bottom:18.445653pt;}
.y133{bottom:22.558080pt;}
.y12e{bottom:22.609493pt;}
.yfb{bottom:22.712320pt;}
.y14c{bottom:22.820907pt;}
.ye1{bottom:22.826667pt;}
.y13e{bottom:23.088853pt;}
.yee{bottom:23.137707pt;}
.y138{bottom:23.140267pt;}
.ydf{bottom:23.146667pt;}
.y144{bottom:23.300907pt;}
.ye5{bottom:23.466667pt;}
.yf3{bottom:23.516160pt;}
.ye3{bottom:23.786667pt;}
.y12a{bottom:33.807573pt;}
.y131{bottom:37.600000pt;}
.y132{bottom:37.920000pt;}
.y12d{bottom:37.971413pt;}
.yfa{bottom:38.074240pt;}
.yed{bottom:38.177067pt;}
.y14b{bottom:38.182827pt;}
.y13c{bottom:38.453333pt;}
.y137{bottom:38.502187pt;}
.y143{bottom:38.662827pt;}
.y13d{bottom:38.773333pt;}
.yf2{bottom:38.878080pt;}
.y47{bottom:44.283467pt;}
.y21{bottom:45.616800pt;}
.y1c{bottom:46.004565pt;}
.y46{bottom:46.524747pt;}
.y20{bottom:51.963467pt;}
.y129{bottom:53.013333pt;}
.y12c{bottom:53.333333pt;}
.yf9{bottom:53.436160pt;}
.yec{bottom:53.538987pt;}
.y14a{bottom:53.544747pt;}
.y13a{bottom:53.866667pt;}
.yf5{bottom:53.920000pt;}
.y142{bottom:54.024747pt;}
.y136{bottom:54.186667pt;}
.yf1{bottom:54.240000pt;}
.ye9{bottom:57.702827pt;}
.y1b{bottom:58.236493pt;}
.y148{bottom:68.586667pt;}
.yf8{bottom:68.798080pt;}
.yeb{bottom:68.900907pt;}
.y149{bottom:68.906667pt;}
.y146{bottom:69.066667pt;}
.y141{bottom:69.386667pt;}
.y1a{bottom:70.468422pt;}
.ye8{bottom:73.064747pt;}
.ye6{bottom:81.616800pt;}
.y19{bottom:82.700351pt;}
.yfd{bottom:83.840000pt;}
.yf7{bottom:84.160000pt;}
.yea{bottom:88.106667pt;}
.ye7{bottom:88.426667pt;}
.y6e{bottom:88.768587pt;}
.yad{bottom:89.097547pt;}
.y8e{bottom:89.737547pt;}
.y44{bottom:90.405707pt;}
.y1ad{bottom:90.655947pt;}
.y18{bottom:93.152502pt;}
.y16b{bottom:96.471627pt;}
.y118{bottom:96.821707pt;}
.y6d{bottom:105.726027pt;}
.yac{bottom:106.054987pt;}
.y1ac{bottom:106.656587pt;}
.y8d{bottom:106.694987pt;}
.y43{bottom:107.363147pt;}
.y17{bottom:112.956577pt;}
.y16a{bottom:113.429067pt;}
.y117{bottom:113.779147pt;}
.y181{bottom:116.276427pt;}
.y1ab{bottom:122.657227pt;}
.y6c{bottom:122.683467pt;}
.yab{bottom:122.688587pt;}
.y8c{bottom:123.328587pt;}
.y42{bottom:124.320587pt;}
.y169{bottom:130.062667pt;}
.y116{bottom:130.736587pt;}
.y180{bottom:132.277067pt;}
.y140{bottom:133.616800pt;}
.y1aa{bottom:138.657867pt;}
.yaa{bottom:139.646027pt;}
.y8b{bottom:140.286027pt;}
.y41{bottom:141.278027pt;}
.yc2{bottom:144.506187pt;}
.y168{bottom:147.020107pt;}
.y115{bottom:147.370187pt;}
.y17f{bottom:148.277707pt;}
.y1a9{bottom:154.658507pt;}
.y6b{bottom:155.963467pt;}
.ya9{bottom:156.603467pt;}
.y8a{bottom:157.243467pt;}
.y40{bottom:157.911627pt;}
.yc1{bottom:161.463627pt;}
.y167{bottom:163.977547pt;}
.y17e{bottom:164.278347pt;}
.y114{bottom:164.327627pt;}
.y16{bottom:170.491946pt;}
.y1a8{bottom:170.659147pt;}
.y3f{bottom:174.869067pt;}
.yc0{bottom:178.097227pt;}
.y15{bottom:179.660499pt;}
.y17d{bottom:180.278987pt;}
.y166{bottom:180.934987pt;}
.y113{bottom:181.285067pt;}
.ye2{bottom:185.616800pt;}
.y1a7{bottom:186.659787pt;}
.y14{bottom:188.073995pt;}
.y6a{bottom:188.986187pt;}
.ya8{bottom:189.883467pt;}
.y89{bottom:190.203467pt;}
.y3e{bottom:191.826507pt;}
.ybf{bottom:195.054667pt;}
.y13{bottom:195.710861pt;}
.y17c{bottom:196.279627pt;}
.y165{bottom:197.568587pt;}
.y112{bottom:198.242507pt;}
.y1a6{bottom:202.660427pt;}
.y12{bottom:203.358513pt;}
.y69{bottom:205.619787pt;}
.y88{bottom:207.803467pt;}
.y3d{bottom:208.460107pt;}
.y11{bottom:211.006165pt;}
.ybe{bottom:212.012107pt;}
.y17b{bottom:212.280267pt;}
.y164{bottom:214.526027pt;}
.y111{bottom:214.876107pt;}
.y10{bottom:218.643031pt;}
.y1a5{bottom:218.661067pt;}
.y13b{bottom:218.950133pt;}
.y1bf{bottom:219.962187pt;}
.y68{bottom:222.577227pt;}
.ya7{bottom:222.863947pt;}
.y3c{bottom:225.417547pt;}
.yde{bottom:225.616800pt;}
.yf{bottom:226.290683pt;}
.y17a{bottom:228.280907pt;}
.ybd{bottom:228.645707pt;}
.y163{bottom:231.483467pt;}
.y110{bottom:231.833547pt;}
.y1a4{bottom:234.661707pt;}
.ya6{bottom:239.497547pt;}
.y67{bottom:239.534667pt;}
.y87{bottom:240.812107pt;}
.ye{bottom:242.017448pt;}
.y3b{bottom:242.374987pt;}
.y179{bottom:244.281547pt;}
.y1be{bottom:244.603467pt;}
.ybc{bottom:245.603147pt;}
.y10f{bottom:248.790987pt;}
.y1a3{bottom:250.662347pt;}
.y66{bottom:256.168267pt;}
.ya5{bottom:256.454987pt;}
.y86{bottom:257.445707pt;}
.y3a{bottom:259.008587pt;}
.y178{bottom:260.282187pt;}
.y1bd{bottom:261.560907pt;}
.ybb{bottom:262.560587pt;}
.ydc{bottom:264.283467pt;}
.y162{bottom:265.083467pt;}
.y10e{bottom:265.424587pt;}
.y1a2{bottom:266.662987pt;}
.y65{bottom:273.125707pt;}
.ya4{bottom:273.412427pt;}
.y135{bottom:273.616800pt;}
.y85{bottom:274.403147pt;}
.y39{bottom:275.966027pt;}
.y177{bottom:276.282827pt;}
.y1bc{bottom:278.518347pt;}
.yba{bottom:279.194187pt;}
.y10d{bottom:282.382027pt;}
.y1a1{bottom:282.663627pt;}
.ya3{bottom:290.046027pt;}
.y64{bottom:290.083147pt;}
.y84{bottom:291.360587pt;}
.y176{bottom:292.283467pt;}
.y38{bottom:292.923467pt;}
.yb9{bottom:296.151627pt;}
.y1a0{bottom:298.664267pt;}
.y10c{bottom:299.339467pt;}
.ydb{bottom:300.601547pt;}
.y1bb{bottom:303.498827pt;}
.ya2{bottom:307.003467pt;}
.y63{bottom:307.040587pt;}
.y83{bottom:307.994187pt;}
.y161{bottom:308.323787pt;}
.yb8{bottom:313.109067pt;}
.y19f{bottom:314.664907pt;}
.yda{bottom:315.963467pt;}
.y10b{bottom:315.973067pt;}
.y1ba{bottom:320.456267pt;}
.y62{bottom:323.674187pt;}
.y175{bottom:324.283467pt;}
.y82{bottom:324.951627pt;}
.y160{bottom:325.281227pt;}
.y37{bottom:326.523467pt;}
.yb7{bottom:330.066507pt;}
.y19e{bottom:330.665547pt;}
.y1b9{bottom:337.089867pt;}
.yd9{bottom:339.386827pt;}
.ya1{bottom:340.283467pt;}
.y61{bottom:340.631627pt;}
.y81{bottom:341.909067pt;}
.y15f{bottom:341.914827pt;}
.y130{bottom:344.283467pt;}
.y19d{bottom:346.666187pt;}
.yb6{bottom:346.700107pt;}
.y10a{bottom:348.931147pt;}
.yd8{bottom:356.344267pt;}
.y174{bottom:356.378187pt;}
.y60{bottom:357.589067pt;}
.y80{bottom:358.866507pt;}
.y15e{bottom:358.872267pt;}
.y1b8{bottom:362.054987pt;}
.y19c{bottom:362.666827pt;}
.yd{bottom:363.355162pt;}
.yb5{bottom:363.657547pt;}
.y36{bottom:369.395147pt;}
.y173{bottom:373.011787pt;}
.yd7{bottom:373.301707pt;}
.ya0{bottom:373.302987pt;}
.y5f{bottom:374.222667pt;}
.y7f{bottom:375.500107pt;}
.y15d{bottom:375.829707pt;}
.y19b{bottom:378.667467pt;}
.y1b7{bottom:379.012427pt;}
.yb4{bottom:380.614987pt;}
.y109{bottom:380.932427pt;}
.y35{bottom:384.757067pt;}
.y172{bottom:389.969227pt;}
.yd6{bottom:390.259147pt;}
.y9f{bottom:390.260427pt;}
.y5e{bottom:391.180107pt;}
.y7e{bottom:392.457547pt;}
.y15c{bottom:392.463307pt;}
.y19a{bottom:394.668107pt;}
.y1b6{bottom:395.646027pt;}
.yb3{bottom:397.248587pt;}
.y108{bottom:397.889867pt;}
.y128{bottom:398.950133pt;}
.y34{bottom:400.118987pt;}
.y9e{bottom:406.894027pt;}
.y171{bottom:406.926667pt;}
.yd5{bottom:407.216587pt;}
.y5d{bottom:408.137547pt;}
.y7d{bottom:409.414987pt;}
.y15b{bottom:409.420747pt;}
.y199{bottom:410.668747pt;}
.yb2{bottom:414.206027pt;}
.y107{bottom:414.847307pt;}
.y1b5{bottom:420.611147pt;}
.y33{bottom:423.477707pt;}
.yd4{bottom:423.850187pt;}
.y9d{bottom:423.851467pt;}
.y170{bottom:423.884107pt;}
.y5c{bottom:424.771147pt;}
.y7c{bottom:426.048587pt;}
.y15a{bottom:426.378187pt;}
.y198{bottom:426.669387pt;}
.yb1{bottom:431.163467pt;}
.y106{bottom:431.480907pt;}
.y1b4{bottom:437.568587pt;}
.y32{bottom:438.839627pt;}
.y16f{bottom:440.517707pt;}
.yd3{bottom:440.807627pt;}
.y9c{bottom:440.808907pt;}
.y5b{bottom:441.728587pt;}
.y197{bottom:442.670027pt;}
.y7b{bottom:443.006027pt;}
.y159{bottom:443.335627pt;}
.y105{bottom:448.438347pt;}
.y31{bottom:454.201547pt;}
.y1b3{bottom:454.202187pt;}
.y9b{bottom:457.442507pt;}
.y16e{bottom:457.475147pt;}
.yd2{bottom:457.765067pt;}
.y196{bottom:458.670667pt;}
.y5a{bottom:458.686027pt;}
.y7a{bottom:459.963467pt;}
.yb0{bottom:464.763467pt;}
.y126{bottom:468.283467pt;}
.y30{bottom:469.563467pt;}
.y104{bottom:473.079627pt;}
.yd1{bottom:474.398667pt;}
.y9a{bottom:474.399947pt;}
.y16d{bottom:474.432587pt;}
.y195{bottom:474.671307pt;}
.y59{bottom:475.643467pt;}
.y158{bottom:475.969867pt;}
.y1b2{bottom:479.167307pt;}
.y103{bottom:490.037067pt;}
.y194{bottom:490.671947pt;}
.y16c{bottom:491.066187pt;}
.y99{bottom:491.357387pt;}
.y79{bottom:493.243467pt;}
.y1b1{bottom:496.124747pt;}
.y2f{bottom:501.243467pt;}
.y125{bottom:504.123467pt;}
.y193{bottom:506.672587pt;}
.yd0{bottom:507.356747pt;}
.y157{bottom:507.971147pt;}
.yaf{bottom:508.023627pt;}
.y98{bottom:508.314827pt;}
.y58{bottom:508.603467pt;}
.y1b0{bottom:513.082187pt;}
.y102{bottom:515.002187pt;}
.y2e{bottom:521.083467pt;}
.y192{bottom:522.673227pt;}
.y156{bottom:524.928587pt;}
.y97{bottom:524.948427pt;}
.yae{bottom:524.981067pt;}
.yc{bottom:525.724848pt;}
.y78{bottom:525.911627pt;}
.y124{bottom:527.836747pt;}
.y101{bottom:531.959627pt;}
.y1af{bottom:537.723467pt;}
.y191{bottom:538.673867pt;}
.ycf{bottom:539.358027pt;}
.y57{bottom:541.614667pt;}
.y155{bottom:541.886027pt;}
.y96{bottom:541.905867pt;}
.y77{bottom:542.869067pt;}
.y123{bottom:544.794187pt;}
.y2d{bottom:547.635147pt;}
.yb{bottom:549.304210pt;}
.y190{bottom:554.674507pt;}
.yce{bottom:556.315467pt;}
.y100{bottom:556.600907pt;}
.y56{bottom:558.572107pt;}
.y95{bottom:558.863307pt;}
.y76{bottom:559.826507pt;}
.y122{bottom:561.427787pt;}
.ya{bottom:561.536139pt;}
.y2c{bottom:562.997067pt;}
.y154{bottom:566.527307pt;}
.y18f{bottom:570.675147pt;}
.y1ae{bottom:570.683467pt;}
.ycd{bottom:573.272907pt;}
.yff{bottom:573.558347pt;}
.y94{bottom:575.496907pt;}
.y55{bottom:575.529547pt;}
.y75{bottom:576.783947pt;}
.y121{bottom:578.385227pt;}
.y153{bottom:583.484747pt;}
.y9{bottom:585.352804pt;}
.y2b{bottom:586.355787pt;}
.y18e{bottom:586.675787pt;}
.ycc{bottom:589.906507pt;}
.y93{bottom:592.454347pt;}
.y54{bottom:592.486987pt;}
.y74{bottom:593.417547pt;}
.y120{bottom:595.342667pt;}
.y8{bottom:597.584733pt;}
.yfe{bottom:598.523467pt;}
.y2a{bottom:601.717707pt;}
.y18d{bottom:602.676427pt;}
.ycb{bottom:606.863947pt;}
.y152{bottom:608.126027pt;}
.y53{bottom:609.120587pt;}
.y92{bottom:609.411787pt;}
.y7{bottom:609.816662pt;}
.y73{bottom:610.374987pt;}
.y29{bottom:617.079627pt;}
.y18c{bottom:618.677067pt;}
.yf6{bottom:620.283467pt;}
.y6{bottom:622.048591pt;}
.yca{bottom:623.821387pt;}
.y52{bottom:626.078027pt;}
.y91{bottom:627.326027pt;}
.y72{bottom:627.332427pt;}
.y11f{bottom:628.300747pt;}
.y28{bottom:632.441547pt;}
.y151{bottom:633.091147pt;}
.y18b{bottom:634.677707pt;}
.yc9{bottom:640.454987pt;}
.y51{bottom:643.035467pt;}
.y90{bottom:644.283467pt;}
.y71{bottom:644.289867pt;}
.y27{bottom:647.803467pt;}
.y150{bottom:650.048587pt;}
.y18a{bottom:650.678347pt;}
.yc8{bottom:657.412427pt;}
.y50{bottom:659.669067pt;}
.y11e{bottom:659.978187pt;}
.y70{bottom:660.923467pt;}
.y189{bottom:666.678987pt;}
.y14f{bottom:667.006027pt;}
.yc7{bottom:674.369867pt;}
.y4f{bottom:676.626507pt;}
.y11d{bottom:676.935627pt;}
.y8f{bottom:677.243467pt;}
.y5{bottom:679.044633pt;}
.y26{bottom:680.130507pt;}
.y188{bottom:682.679627pt;}
.y14e{bottom:683.963467pt;}
.yc6{bottom:691.003467pt;}
.y4e{bottom:693.583947pt;}
.y11c{bottom:693.893067pt;}
.y6f{bottom:694.203467pt;}
.y4{bottom:697.187582pt;}
.y187{bottom:698.680267pt;}
.y25{bottom:703.163467pt;}
.y147{bottom:705.616800pt;}
.y4d{bottom:710.217547pt;}
.y11b{bottom:710.850507pt;}
.y186{bottom:714.680907pt;}
.y3{bottom:718.588064pt;}
.yf0{bottom:720.283467pt;}
.yc5{bottom:724.283467pt;}
.y4c{bottom:727.174987pt;}
.y11a{bottom:727.484107pt;}
.y185{bottom:730.681547pt;}
.y2{bottom:739.999333pt;}
.y24{bottom:741.243467pt;}
.yc4{bottom:741.563467pt;}
.y4b{bottom:744.132427pt;}
.y119{bottom:744.441547pt;}
.y184{bottom:746.682187pt;}
.y4a{bottom:761.089867pt;}
.y183{bottom:762.682827pt;}
.yc3{bottom:775.483467pt;}
.y23{bottom:776.443467pt;}
.y49{bottom:777.723467pt;}
.y182{bottom:778.683467pt;}
.y1f{bottom:794.683467pt;}
.y1d{bottom:808.283467pt;}
.h10{height:17.333333pt;}
.h1c{height:25.333333pt;}
.h7{height:25.577028pt;}
.h9{height:25.680579pt;}
.ha{height:27.604896pt;}
.h13{height:30.877440pt;}
.h8{height:31.971285pt;}
.hb{height:32.100723pt;}
.h5{height:35.168413pt;}
.hd{height:35.492009pt;}
.h1d{height:36.435000pt;}
.h22{height:37.327500pt;}
.h14{height:38.277120pt;}
.h6{height:39.435566pt;}
.h1b{height:39.905000pt;}
.h1e{height:40.000000pt;}
.h27{height:41.448076pt;}
.h15{height:42.656250pt;}
.h11{height:43.041280pt;}
.hc{height:44.167834pt;}
.h18{height:44.835000pt;}
.h4{height:44.941012pt;}
.h12{height:49.105000pt;}
.h1a{height:49.220000pt;}
.h28{height:50.032310pt;}
.h17{height:54.269440pt;}
.h23{height:54.666667pt;}
.h3{height:55.209792pt;}
.h16{height:55.872000pt;}
.h24{height:56.000000pt;}
.h19{height:58.304000pt;}
.h20{height:70.666667pt;}
.h26{height:85.333333pt;}
.h25{height:86.666667pt;}
.h21{height:101.333333pt;}
.h1f{height:105.333333pt;}
.he{height:907.127467pt;}
.hf{height:907.333333pt;}
.h2{height:908.107455pt;}
.h0{height:908.653333pt;}
.h1{height:908.666667pt;}
.w4{width:16.000000pt;}
.w6{width:75.022667pt;}
.w9{width:76.000000pt;}
.wc{width:82.666667pt;}
.wa{width:96.000000pt;}
.w7{width:105.333333pt;}
.w8{width:313.333333pt;}
.wb{width:316.000000pt;}
.w5{width:416.000000pt;}
.w3{width:490.666667pt;}
.w1{width:642.000000pt;}
.w0{width:642.093333pt;}
.w2{width:642.098800pt;}
.x0{left:0.000000pt;}
.x6{left:7.360000pt;}
.x3{left:33.632411pt;}
.x1{left:39.748375pt;}
.x7{left:75.449467pt;}
.x5{left:76.409467pt;}
.x9{left:98.103547pt;}
.xd{left:99.449467pt;}
.xf{left:101.945467pt;}
.x2{left:107.013197pt;}
.x10{left:117.032827pt;}
.x13{left:120.787067pt;}
.xa{left:152.409467pt;}
.x14{left:169.742800pt;}
.x11{left:179.076133pt;}
.xb{left:223.723200pt;}
.x8{left:265.772000pt;}
.x4{left:314.934414pt;}
.x16{left:342.009467pt;}
.x17{left:349.786133pt;}
.x15{left:484.409467pt;}
.x12{left:491.076133pt;}
.xe{left:551.076133pt;}
.xc{left:567.076133pt;}
}




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