
    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_5ace830c8ade7a9450098203.woff')format("woff");}.ff1{font-family:ff1;line-height:0.744000;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_a29498326da92b10e65c3f8e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_cfee344b24742a4829ce94ee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_b9ebef93c1638d9cb7c50d78.woff')format("woff");}.ff4{font-family:ff4;line-height:0.996000;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_4e7bc7fedbb918c7b0513c6c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_ebfd683f84bd23c5311b01a1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8670873bc94982649177869.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0a8e7b58dce6e53a66ee8e41.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_e930b905e7410fbfdf4a697c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.692871;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_ea92f7f41c6b038ec7bf5726.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_dff3304b448636ab16f693a4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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_1e00c1481fb1eae20e75407e.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dff3304b448636ab16f693a4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.677246;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_b9db66361e052e7d37342ecd.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5ccfd87ecf69132e17a60476.woff')format("woff");}.fff{font-family:fff;line-height:0.708008;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_432ea05adcf6fa235f453592.woff')format("woff");}.ff10{font-family:ff10;line-height:0.933594;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_233f5a3b791c9199adb3fdf0.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0d6b16bd3095377c9e2120ce.woff')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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_0ece354858e8e9ff01ab0830.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_fb3c55bdad8d4893f4c02335.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_75e615ac40cef82ed66a0812.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_2a2285bcdef3d49be95c140c.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_2e2807a0c717bc1f79666057.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_aa2df2e7400e85c504acefd2.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_edc9637974c36448ad1bcfdb.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_fa234a1cdda773b0386cda01.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_50063a0e3f1432f236412763.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_b9db66361e052e7d37342ecd.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_4e1d48e31f32bb0246932f36.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_a173522bc885dd0af4089e1d.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.893066;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:ff1f;src:url('chunks/assets/font_2e2807a0c717bc1f79666057.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_7242b24d148ec4c738d099af.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_a57591bcf7b642e38cad7b28.woff')format("woff");}.ff21{font-family:ff21;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;}
.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);}
.v5{vertical-align:-27.360000px;}
.v4{vertical-align:-24.480000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.480000px;}
.v1{vertical-align:27.360000px;}
.ls21{letter-spacing:-0.459648px;}
.ls24{letter-spacing:-0.417312px;}
.ls30{letter-spacing:-0.381024px;}
.lse{letter-spacing:-0.338688px;}
.ls22{letter-spacing:-0.320544px;}
.ls15{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.260064px;}
.ls10{letter-spacing:-0.241920px;}
.ls6{letter-spacing:-0.238464px;}
.ls12{letter-spacing:-0.223776px;}
.ls9{letter-spacing:-0.198720px;}
.ls23{letter-spacing:-0.175392px;}
.ls2b{letter-spacing:-0.165600px;}
.lsb{letter-spacing:-0.158976px;}
.ls14{letter-spacing:-0.157248px;}
.ls13{letter-spacing:-0.145152px;}
.ls29{letter-spacing:-0.125856px;}
.ls27{letter-spacing:-0.120960px;}
.ls7{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.086112px;}
.lsa{letter-spacing:-0.079488px;}
.lsd{letter-spacing:-0.059616px;}
.ls18{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.042336px;}
.ls11{letter-spacing:0.058320px;}
.ls1e{letter-spacing:0.116928px;}
.ls1b{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.131472px;}
.ls2c{letter-spacing:0.160416px;}
.ls4{letter-spacing:0.186624px;}
.ls3b{letter-spacing:0.192096px;}
.ls16{letter-spacing:0.200160px;}
.ls34{letter-spacing:0.200304px;}
.ls38{letter-spacing:0.200448px;}
.ls2{letter-spacing:0.203184px;}
.ls8{letter-spacing:0.237600px;}
.ls1d{letter-spacing:0.242208px;}
.ls17{letter-spacing:0.275616px;}
.ls35{letter-spacing:0.279360px;}
.ls33{letter-spacing:0.279648px;}
.ls2d{letter-spacing:0.298080px;}
.ls2a{letter-spacing:0.308160px;}
.ls36{letter-spacing:0.318240px;}
.ls37{letter-spacing:0.359136px;}
.ls1a{letter-spacing:0.440352px;}
.ls2e{letter-spacing:0.442656px;}
.ls28{letter-spacing:0.448992px;}
.ls1f{letter-spacing:0.565920px;}
.ls31{letter-spacing:0.710640px;}
.ls3a{letter-spacing:0.719280px;}
.ls20{letter-spacing:0.720576px;}
.ls39{letter-spacing:0.722304px;}
.ls25{letter-spacing:0.836640px;}
.ls2f{letter-spacing:1.180800px;}
.ls32{letter-spacing:1.326240px;}
.ls0{letter-spacing:4.200000px;}
.ls19{letter-spacing:21.781440px;}
.ls26{letter-spacing:204.120000px;}
.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;}
}
.ws1f{word-spacing:-21.239136px;}
.wse{word-spacing:-21.155616px;}
.ws10{word-spacing:-21.122208px;}
.ws1a{word-spacing:-21.080448px;}
.ws20{word-spacing:-21.072096px;}
.ws3{word-spacing:-19.626624px;}
.ws21{word-spacing:-18.414720px;}
.ws11{word-spacing:-18.014400px;}
.ws12{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.985600px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.480512px;}
.ws8{word-spacing:-16.473888px;}
.ws5{word-spacing:-16.440768px;}
.ws18{word-spacing:-16.401024px;}
.ws19{word-spacing:-16.394400px;}
.ws1d{word-spacing:-16.361280px;}
.wsd{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.974848px;}
.ws1e{word-spacing:-14.962752px;}
.ws13{word-spacing:-14.944608px;}
.ws16{word-spacing:-14.896224px;}
.ws15{word-spacing:-14.878080px;}
.wsa{word-spacing:-14.859936px;}
.ws17{word-spacing:-14.799456px;}
.wsb{word-spacing:-14.781312px;}
.ws0{word-spacing:-4.200000px;}
.ws2{word-spacing:-1.188000px;}
.ws1b{word-spacing:-0.769824px;}
.ws1c{word-spacing:-0.758160px;}
.ws4{word-spacing:-0.285120px;}
.wsc{word-spacing:-0.097200px;}
.ws9{word-spacing:-0.038880px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-204.120000px;}
._3{margin-left:-4.831200px;}
._0{margin-left:-2.318400px;}
._1{margin-left:-1.062600px;}
._2{width:1.005000px;}
._5{width:846.000000px;}
.fc8{color:rgb(33,37,41);}
.fc7{color:rgb(53,60,63);}
.fca{color:rgb(102,0,0);}
.fc4{color:rgb(209,52,56);}
.fc9{color:rgb(35,31,32);}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(25,25,25);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(9,74,123);}
.fc0{color:rgb(232,37,56);}
.fsa{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:47.520000px;}
.fse{font-size:54.720000px;}
.fsc{font-size:60.480000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fsd{font-size:83.520000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:119.520000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:57.600000px;}
.y2f{bottom:77.040000px;}
.yb0{bottom:104.400000px;}
.y15f{bottom:104.760000px;}
.y81{bottom:106.920000px;}
.y58{bottom:109.080000px;}
.ye2{bottom:109.800000px;}
.y9f{bottom:110.880000px;}
.y2d{bottom:111.240000px;}
.y107{bottom:114.120000px;}
.y133{bottom:114.480000px;}
.yef{bottom:114.840000px;}
.yaf{bottom:121.680000px;}
.ye1{bottom:122.040000px;}
.y157{bottom:122.760000px;}
.y15e{bottom:123.840000px;}
.yc1{bottom:127.080000px;}
.y2c{bottom:128.520000px;}
.y80{bottom:130.680000px;}
.y1bf{bottom:131.760000px;}
.y57{bottom:132.840000px;}
.y9e{bottom:134.640000px;}
.y106{bottom:136.080000px;}
.yee{bottom:138.600000px;}
.yae{bottom:138.960000px;}
.yc0{bottom:139.320000px;}
.y14e{bottom:140.040000px;}
.ya{bottom:142.884000px;}
.y11d{bottom:144.360000px;}
.y2b{bottom:145.800000px;}
.y156{bottom:146.520000px;}
.y104{bottom:149.040000px;}
.y15d{bottom:149.760000px;}
.y7f{bottom:154.440000px;}
.y105{bottom:154.800000px;}
.yad{bottom:156.240000px;}
.y56{bottom:156.600000px;}
.y9d{bottom:158.400000px;}
.y15c{bottom:161.640000px;}
.yed{bottom:162.360000px;}
.y9{bottom:162.684000px;}
.y1be{bottom:162.720000px;}
.y2a{bottom:163.080000px;}
.y14d{bottom:163.800000px;}
.y1a5{bottom:165.960000px;}
.ybf{bottom:170.280000px;}
.y103{bottom:172.800000px;}
.yac{bottom:173.520000px;}
.y7e{bottom:178.560000px;}
.y29{bottom:180.360000px;}
.y8{bottom:182.484000px;}
.y9c{bottom:182.520000px;}
.ye0{bottom:184.320000px;}
.yec{bottom:186.480000px;}
.y14c{bottom:187.560000px;}
.yab{bottom:190.800000px;}
.y1bd{bottom:193.680000px;}
.ybe{bottom:194.040000px;}
.y161{bottom:196.200000px;}
.y102{bottom:196.560000px;}
.y1a4{bottom:196.920000px;}
.y28{bottom:197.640000px;}
.y7d{bottom:202.320000px;}
.y55{bottom:204.120000px;}
.y9b{bottom:206.280000px;}
.yaa{bottom:208.080000px;}
.y160{bottom:208.440000px;}
.yeb{bottom:209.520000px;}
.y188{bottom:210.240000px;}
.y14b{bottom:211.320000px;}
.y27{bottom:214.560000px;}
.ybd{bottom:217.800000px;}
.y101{bottom:220.680000px;}
.y1bc{bottom:224.640000px;}
.ya9{bottom:225.360000px;}
.y7c{bottom:226.080000px;}
.y54{bottom:227.880000px;}
.y1a3{bottom:228.240000px;}
.y9a{bottom:230.040000px;}
.yea{bottom:231.480000px;}
.ydf{bottom:231.840000px;}
.y187{bottom:234.000000px;}
.y14a{bottom:235.080000px;}
.y26{bottom:237.240000px;}
.ybc{bottom:241.560000px;}
.ya8{bottom:242.640000px;}
.y100{bottom:244.440000px;}
.y7{bottom:246.438000px;}
.y130{bottom:248.040000px;}
.y7b{bottom:249.840000px;}
.y53{bottom:251.640000px;}
.y99{bottom:253.800000px;}
.yde{bottom:255.600000px;}
.y1bb{bottom:255.960000px;}
.y186{bottom:257.760000px;}
.y25{bottom:258.120000px;}
.y149{bottom:259.200000px;}
.ya7{bottom:259.560000px;}
.y12f{bottom:259.920000px;}
.ybb{bottom:265.320000px;}
.y6{bottom:266.238000px;}
.yff{bottom:268.200000px;}
.y7a{bottom:273.600000px;}
.y52{bottom:275.760000px;}
.ya6{bottom:276.840000px;}
.y98{bottom:277.560000px;}
.ydd{bottom:279.720000px;}
.y24{bottom:280.800000px;}
.y166{bottom:281.160000px;}
.y185{bottom:281.520000px;}
.y148{bottom:282.960000px;}
.y5{bottom:286.038000px;}
.y1ba{bottom:286.920000px;}
.yba{bottom:289.080000px;}
.y12e{bottom:290.160000px;}
.yfe{bottom:291.960000px;}
.y23{bottom:293.040000px;}
.ya5{bottom:294.120000px;}
.y79{bottom:297.360000px;}
.y51{bottom:299.520000px;}
.y97{bottom:301.320000px;}
.y165{bottom:302.760000px;}
.ydc{bottom:303.480000px;}
.y184{bottom:305.280000px;}
.y147{bottom:306.720000px;}
.ya4{bottom:311.400000px;}
.yb9{bottom:312.840000px;}
.y155{bottom:313.200000px;}
.y12d{bottom:313.920000px;}
.yfd{bottom:315.720000px;}
.y1b9{bottom:317.880000px;}
.y78{bottom:321.120000px;}
.y50{bottom:323.280000px;}
.y164{bottom:324.720000px;}
.y96{bottom:325.080000px;}
.ydb{bottom:327.240000px;}
.ya3{bottom:328.680000px;}
.y183{bottom:329.040000px;}
.y146{bottom:330.480000px;}
.y154{bottom:335.880000px;}
.yb8{bottom:336.600000px;}
.y12c{bottom:338.040000px;}
.yfc{bottom:339.480000px;}
.y77{bottom:344.880000px;}
.y22{bottom:345.240000px;}
.ya2{bottom:345.960000px;}
.y163{bottom:346.680000px;}
.y4f{bottom:347.040000px;}
.y95{bottom:348.840000px;}
.yda{bottom:351.000000px;}
.y1a2{bottom:352.440000px;}
.y153{bottom:352.800000px;}
.y145{bottom:354.240000px;}
.yb7{bottom:360.720000px;}
.y12b{bottom:361.800000px;}
.yfb{bottom:363.240000px;}
.y162{bottom:368.280000px;}
.ya1{bottom:368.640000px;}
.y76{bottom:369.000000px;}
.y4e{bottom:370.800000px;}
.y94{bottom:372.960000px;}
.yd9{bottom:374.760000px;}
.y182{bottom:376.920000px;}
.y144{bottom:378.000000px;}
.y1b8{bottom:380.160000px;}
.ya0{bottom:380.880000px;}
.yb6{bottom:382.320000px;}
.y1a1{bottom:383.400000px;}
.y21{bottom:384.840000px;}
.y12a{bottom:385.560000px;}
.y15a{bottom:385.920000px;}
.yfa{bottom:387.000000px;}
.y75{bottom:392.760000px;}
.y132{bottom:394.200000px;}
.y4d{bottom:394.560000px;}
.y93{bottom:396.720000px;}
.y159{bottom:398.160000px;}
.yd8{bottom:398.520000px;}
.yb5{bottom:399.600000px;}
.y181{bottom:400.680000px;}
.y143{bottom:401.760000px;}
.y20{bottom:406.800000px;}
.y129{bottom:409.320000px;}
.yf9{bottom:410.760000px;}
.y1b7{bottom:411.120000px;}
.y131{bottom:414.360000px;}
.y74{bottom:416.520000px;}
.y4c{bottom:418.320000px;}
.y92{bottom:420.480000px;}
.yb4{bottom:421.560000px;}
.yd7{bottom:422.280000px;}
.y180{bottom:424.440000px;}
.y142{bottom:425.520000px;}
.y1f{bottom:428.760000px;}
.y128{bottom:433.080000px;}
.yf8{bottom:434.880000px;}
.y73{bottom:440.280000px;}
.y4b{bottom:442.080000px;}
.yb3{bottom:443.160000px;}
.y91{bottom:444.240000px;}
.y1a0{bottom:445.320000px;}
.yd6{bottom:446.040000px;}
.y17f{bottom:448.200000px;}
.y141{bottom:449.640000px;}
.y1e{bottom:450.360000px;}
.y127{bottom:456.840000px;}
.yf7{bottom:458.640000px;}
.y72{bottom:464.040000px;}
.yb2{bottom:465.120000px;}
.y4a{bottom:466.200000px;}
.y90{bottom:468.000000px;}
.yd5{bottom:470.160000px;}
.y17e{bottom:471.960000px;}
.y1d{bottom:472.320000px;}
.y1b6{bottom:473.040000px;}
.y140{bottom:473.400000px;}
.y19f{bottom:476.280000px;}
.y126{bottom:480.600000px;}
.yf6{bottom:481.680000px;}
.yb1{bottom:483.480000px;}
.y71{bottom:487.800000px;}
.y49{bottom:489.960000px;}
.y8f{bottom:491.760000px;}
.yd4{bottom:493.920000px;}
.y1c{bottom:494.280000px;}
.y17d{bottom:495.720000px;}
.y13f{bottom:497.160000px;}
.yf5{bottom:503.640000px;}
.y125{bottom:504.360000px;}
.y19e{bottom:507.600000px;}
.y70{bottom:511.560000px;}
.y48{bottom:513.720000px;}
.y8e{bottom:515.520000px;}
.y1b{bottom:515.880000px;}
.yd3{bottom:517.680000px;}
.y17c{bottom:519.480000px;}
.y13e{bottom:520.920000px;}
.yf4{bottom:525.600000px;}
.y124{bottom:528.480000px;}
.y6f{bottom:535.320000px;}
.y47{bottom:537.480000px;}
.y1a{bottom:537.840000px;}
.y19d{bottom:538.560000px;}
.y8d{bottom:539.280000px;}
.yd2{bottom:541.440000px;}
.y17b{bottom:543.240000px;}
.y13d{bottom:544.680000px;}
.yf3{bottom:547.200000px;}
.y123{bottom:552.240000px;}
.y4{bottom:556.344000px;}
.y6e{bottom:559.080000px;}
.y19{bottom:559.440000px;}
.y46{bottom:561.240000px;}
.y8c{bottom:563.040000px;}
.yd1{bottom:565.200000px;}
.y1b5{bottom:566.280000px;}
.y17a{bottom:567.360000px;}
.y13c{bottom:568.440000px;}
.yf2{bottom:569.160000px;}
.y19c{bottom:569.520000px;}
.y152{bottom:574.200000px;}
.y122{bottom:576.000000px;}
.y18{bottom:581.400000px;}
.ye9{bottom:582.480000px;}
.y6d{bottom:583.200000px;}
.y45{bottom:585.000000px;}
.y8b{bottom:587.160000px;}
.yd0{bottom:588.960000px;}
.yf1{bottom:590.760000px;}
.y179{bottom:591.120000px;}
.y13b{bottom:592.200000px;}
.y11c{bottom:592.920000px;}
.y1b4{bottom:597.240000px;}
.y151{bottom:597.960000px;}
.y121{bottom:599.760000px;}
.y19b{bottom:600.480000px;}
.y17{bottom:603.360000px;}
.ye8{bottom:606.240000px;}
.y6c{bottom:606.960000px;}
.y15b{bottom:608.400000px;}
.y44{bottom:608.760000px;}
.yf0{bottom:609.840000px;}
.y8a{bottom:610.920000px;}
.ycf{bottom:612.720000px;}
.y178{bottom:614.880000px;}
.y13a{bottom:615.960000px;}
.y11b{bottom:616.680000px;}
.y150{bottom:620.640000px;}
.y120{bottom:623.160000px;}
.y16{bottom:624.960000px;}
.y3{bottom:628.212000px;}
.y1b3{bottom:628.560000px;}
.ye7{bottom:630.000000px;}
.y6b{bottom:630.720000px;}
.y19a{bottom:631.800000px;}
.y43{bottom:632.520000px;}
.y89{bottom:634.680000px;}
.yce{bottom:636.480000px;}
.y14f{bottom:637.920000px;}
.y177{bottom:638.640000px;}
.y139{bottom:639.720000px;}
.y11a{bottom:640.440000px;}
.y11f{bottom:644.760000px;}
.y15{bottom:646.920000px;}
.ye6{bottom:650.160000px;}
.y6a{bottom:654.480000px;}
.y42{bottom:656.280000px;}
.y88{bottom:658.440000px;}
.y1b2{bottom:659.520000px;}
.ycd{bottom:660.240000px;}
.y176{bottom:662.400000px;}
.y199{bottom:662.760000px;}
.y11e{bottom:663.480000px;}
.y138{bottom:663.840000px;}
.y119{bottom:664.200000px;}
.y2{bottom:671.412000px;}
.y69{bottom:678.240000px;}
.y41{bottom:680.400000px;}
.y87{bottom:682.200000px;}
.ycc{bottom:684.360000px;}
.y175{bottom:686.160000px;}
.y137{bottom:687.600000px;}
.y118{bottom:688.320000px;}
.y14{bottom:690.120000px;}
.y1b1{bottom:690.480000px;}
.y198{bottom:693.720000px;}
.y68{bottom:702.000000px;}
.y40{bottom:704.160000px;}
.y86{bottom:705.960000px;}
.ycb{bottom:708.120000px;}
.y174{bottom:709.920000px;}
.y136{bottom:710.280000px;}
.y13{bottom:711.360000px;}
.y117{bottom:712.080000px;}
.y1b0{bottom:721.440000px;}
.y197{bottom:724.680000px;}
.y67{bottom:725.760000px;}
.y3f{bottom:727.920000px;}
.y85{bottom:729.720000px;}
.y135{bottom:730.080000px;}
.yca{bottom:731.880000px;}
.y173{bottom:733.680000px;}
.y116{bottom:735.840000px;}
.y1{bottom:740.532000px;}
.y12{bottom:743.040000px;}
.y134{bottom:747.360000px;}
.y66{bottom:749.520000px;}
.y158{bottom:750.960000px;}
.y3e{bottom:751.680000px;}
.y1af{bottom:752.760000px;}
.y84{bottom:753.480000px;}
.yc9{bottom:755.640000px;}
.y196{bottom:756.000000px;}
.y172{bottom:757.440000px;}
.y115{bottom:759.600000px;}
.y65{bottom:773.640000px;}
.y3d{bottom:775.440000px;}
.y83{bottom:777.600000px;}
.yc8{bottom:779.400000px;}
.y171{bottom:781.560000px;}
.y114{bottom:783.360000px;}
.y1ae{bottom:783.720000px;}
.y195{bottom:786.960000px;}
.y11{bottom:787.680000px;}
.y18e{bottom:797.400000px;}
.y64{bottom:798.840000px;}
.y3c{bottom:799.200000px;}
.y82{bottom:801.360000px;}
.yc7{bottom:803.160000px;}
.y170{bottom:805.320000px;}
.y113{bottom:807.120000px;}
.y10{bottom:812.520000px;}
.y1ad{bottom:814.680000px;}
.y194{bottom:817.920000px;}
.y18d{bottom:821.160000px;}
.y3b{bottom:822.960000px;}
.y63{bottom:825.120000px;}
.yc6{bottom:826.920000px;}
.y16f{bottom:829.080000px;}
.y112{bottom:830.880000px;}
.yf{bottom:834.120000px;}
.y18c{bottom:844.920000px;}
.y1ac{bottom:845.640000px;}
.y3a{bottom:846.720000px;}
.y62{bottom:848.880000px;}
.yc5{bottom:850.680000px;}
.y16e{bottom:852.840000px;}
.y111{bottom:854.640000px;}
.ye{bottom:861.480000px;}
.y18b{bottom:868.680000px;}
.y39{bottom:870.840000px;}
.y61{bottom:872.640000px;}
.yc4{bottom:874.800000px;}
.y16d{bottom:876.600000px;}
.y1ab{bottom:876.960000px;}
.y110{bottom:878.760000px;}
.y193{bottom:880.200000px;}
.y18a{bottom:892.440000px;}
.y38{bottom:894.600000px;}
.y60{bottom:896.400000px;}
.yc3{bottom:898.560000px;}
.y16c{bottom:900.360000px;}
.yd{bottom:901.080000px;}
.y10f{bottom:902.520000px;}
.y1aa{bottom:907.920000px;}
.y192{bottom:911.160000px;}
.y189{bottom:917.640000px;}
.y37{bottom:918.360000px;}
.y5f{bottom:920.160000px;}
.yc2{bottom:921.600000px;}
.y16b{bottom:924.120000px;}
.y10e{bottom:926.280000px;}
.y1a9{bottom:938.880000px;}
.yc{bottom:940.680000px;}
.y36{bottom:942.120000px;}
.y5e{bottom:943.920000px;}
.y16a{bottom:947.880000px;}
.y10d{bottom:950.040000px;}
.y35{bottom:965.880000px;}
.y5d{bottom:968.040000px;}
.yb{bottom:968.760000px;}
.y1a8{bottom:969.840000px;}
.y169{bottom:972.000000px;}
.y191{bottom:973.080000px;}
.y10c{bottom:975.240000px;}
.y34{bottom:989.640000px;}
.y5c{bottom:991.800000px;}
.y168{bottom:995.760000px;}
.y10b{bottom:1000.440000px;}
.y1a7{bottom:1001.160000px;}
.ye5{bottom:1003.680000px;}
.y190{bottom:1004.400000px;}
.y33{bottom:1013.400000px;}
.y5b{bottom:1015.560000px;}
.y167{bottom:1019.520000px;}
.y10a{bottom:1020.960000px;}
.ye4{bottom:1027.440000px;}
.y1a6{bottom:1032.120000px;}
.y18f{bottom:1035.360000px;}
.y32{bottom:1036.800000px;}
.y5a{bottom:1039.320000px;}
.y109{bottom:1042.560000px;}
.ye3{bottom:1047.600000px;}
.y31{bottom:1060.560000px;}
.y59{bottom:1063.080000px;}
.y108{bottom:1064.520000px;}
.y2e{bottom:1118.520000px;}
.ha{height:20.155078px;}
.h15{height:23.994141px;}
.hb{height:26.995781px;}
.h18{height:28.220625px;}
.h14{height:31.672266px;}
.hd{height:41.993438px;}
.hc{height:43.410938px;}
.h5{height:44.149219px;}
.h10{height:44.893125px;}
.h13{height:45.992813px;}
.h7{height:46.025156px;}
.h11{height:48.796875px;}
.h17{height:49.992188px;}
.h4{height:50.688000px;}
.he{height:51.679688px;}
.h8{height:52.662656px;}
.h16{height:56.563594px;}
.h12{height:56.593125px;}
.hf{height:56.604375px;}
.h9{height:56.662734px;}
.h1{height:60.984000px;}
.h6{height:81.002813px;}
.h3{height:82.944000px;}
.h2{height:110.592000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x18{left:110.526840px;}
.x1c{left:135.000000px;}
.x1d{left:153.786636px;}
.x6{left:162.000000px;}
.x9{left:168.253416px;}
.x11{left:173.263176px;}
.x7{left:175.007808px;}
.xc{left:193.535172px;}
.xd{left:216.000000px;}
.x19{left:247.262688px;}
.xf{left:250.778304px;}
.x1a{left:296.257320px;}
.x1b{left:306.259272px;}
.x3{left:324.000000px;}
.xa{left:329.532732px;}
.xb{left:332.745120px;}
.x14{left:340.246548px;}
.x16{left:350.771472px;}
.x12{left:382.504320px;}
.xe{left:450.000000px;}
.x5{left:454.500000px;}
.x4{left:459.000000px;}
.x2{left:582.479640px;}
.x17{left:752.399640px;}
.x10{left:770.220000px;}
.x13{left:772.380000px;}
.x15{left:787.680000px;}
.x8{left:810.000000px;}
@media print{
.v5{vertical-align:-24.320000pt;}
.v4{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.760000pt;}
.v1{vertical-align:24.320000pt;}
.ls21{letter-spacing:-0.408576pt;}
.ls24{letter-spacing:-0.370944pt;}
.ls30{letter-spacing:-0.338688pt;}
.lse{letter-spacing:-0.301056pt;}
.ls22{letter-spacing:-0.284928pt;}
.ls15{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.231168pt;}
.ls10{letter-spacing:-0.215040pt;}
.ls6{letter-spacing:-0.211968pt;}
.ls12{letter-spacing:-0.198912pt;}
.ls9{letter-spacing:-0.176640pt;}
.ls23{letter-spacing:-0.155904pt;}
.ls2b{letter-spacing:-0.147200pt;}
.lsb{letter-spacing:-0.141312pt;}
.ls14{letter-spacing:-0.139776pt;}
.ls13{letter-spacing:-0.129024pt;}
.ls29{letter-spacing:-0.111872pt;}
.ls27{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.076544pt;}
.lsa{letter-spacing:-0.070656pt;}
.lsd{letter-spacing:-0.052992pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.037632pt;}
.ls11{letter-spacing:0.051840pt;}
.ls1e{letter-spacing:0.103936pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.116864pt;}
.ls2c{letter-spacing:0.142592pt;}
.ls4{letter-spacing:0.165888pt;}
.ls3b{letter-spacing:0.170752pt;}
.ls16{letter-spacing:0.177920pt;}
.ls34{letter-spacing:0.178048pt;}
.ls38{letter-spacing:0.178176pt;}
.ls2{letter-spacing:0.180608pt;}
.ls8{letter-spacing:0.211200pt;}
.ls1d{letter-spacing:0.215296pt;}
.ls17{letter-spacing:0.244992pt;}
.ls35{letter-spacing:0.248320pt;}
.ls33{letter-spacing:0.248576pt;}
.ls2d{letter-spacing:0.264960pt;}
.ls2a{letter-spacing:0.273920pt;}
.ls36{letter-spacing:0.282880pt;}
.ls37{letter-spacing:0.319232pt;}
.ls1a{letter-spacing:0.391424pt;}
.ls2e{letter-spacing:0.393472pt;}
.ls28{letter-spacing:0.399104pt;}
.ls1f{letter-spacing:0.503040pt;}
.ls31{letter-spacing:0.631680pt;}
.ls3a{letter-spacing:0.639360pt;}
.ls20{letter-spacing:0.640512pt;}
.ls39{letter-spacing:0.642048pt;}
.ls25{letter-spacing:0.743680pt;}
.ls2f{letter-spacing:1.049600pt;}
.ls32{letter-spacing:1.178880pt;}
.ls0{letter-spacing:3.733333pt;}
.ls19{letter-spacing:19.361280pt;}
.ls26{letter-spacing:181.440000pt;}
.ws1f{word-spacing:-18.879232pt;}
.wse{word-spacing:-18.804992pt;}
.ws10{word-spacing:-18.775296pt;}
.ws1a{word-spacing:-18.738176pt;}
.ws20{word-spacing:-18.730752pt;}
.ws3{word-spacing:-17.445888pt;}
.ws21{word-spacing:-16.368640pt;}
.ws11{word-spacing:-16.012800pt;}
.ws12{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.987200pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.649344pt;}
.ws8{word-spacing:-14.643456pt;}
.ws5{word-spacing:-14.614016pt;}
.ws18{word-spacing:-14.578688pt;}
.ws19{word-spacing:-14.572800pt;}
.ws1d{word-spacing:-14.543360pt;}
.wsd{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.310976pt;}
.ws1e{word-spacing:-13.300224pt;}
.ws13{word-spacing:-13.284096pt;}
.ws16{word-spacing:-13.241088pt;}
.ws15{word-spacing:-13.224960pt;}
.wsa{word-spacing:-13.208832pt;}
.ws17{word-spacing:-13.155072pt;}
.wsb{word-spacing:-13.138944pt;}
.ws0{word-spacing:-3.733333pt;}
.ws2{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-0.684288pt;}
.ws1c{word-spacing:-0.673920pt;}
.ws4{word-spacing:-0.253440pt;}
.wsc{word-spacing:-0.086400pt;}
.ws9{word-spacing:-0.034560pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-181.440000pt;}
._3{margin-left:-4.294400pt;}
._0{margin-left:-2.060800pt;}
._1{margin-left:-0.944533pt;}
._2{width:0.893333pt;}
._5{width:752.000000pt;}
.fsa{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:42.240000pt;}
.fse{font-size:48.640000pt;}
.fsc{font-size:53.760000pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fsd{font-size:74.240000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:106.240000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:51.200000pt;}
.y2f{bottom:68.480000pt;}
.yb0{bottom:92.800000pt;}
.y15f{bottom:93.120000pt;}
.y81{bottom:95.040000pt;}
.y58{bottom:96.960000pt;}
.ye2{bottom:97.600000pt;}
.y9f{bottom:98.560000pt;}
.y2d{bottom:98.880000pt;}
.y107{bottom:101.440000pt;}
.y133{bottom:101.760000pt;}
.yef{bottom:102.080000pt;}
.yaf{bottom:108.160000pt;}
.ye1{bottom:108.480000pt;}
.y157{bottom:109.120000pt;}
.y15e{bottom:110.080000pt;}
.yc1{bottom:112.960000pt;}
.y2c{bottom:114.240000pt;}
.y80{bottom:116.160000pt;}
.y1bf{bottom:117.120000pt;}
.y57{bottom:118.080000pt;}
.y9e{bottom:119.680000pt;}
.y106{bottom:120.960000pt;}
.yee{bottom:123.200000pt;}
.yae{bottom:123.520000pt;}
.yc0{bottom:123.840000pt;}
.y14e{bottom:124.480000pt;}
.ya{bottom:127.008000pt;}
.y11d{bottom:128.320000pt;}
.y2b{bottom:129.600000pt;}
.y156{bottom:130.240000pt;}
.y104{bottom:132.480000pt;}
.y15d{bottom:133.120000pt;}
.y7f{bottom:137.280000pt;}
.y105{bottom:137.600000pt;}
.yad{bottom:138.880000pt;}
.y56{bottom:139.200000pt;}
.y9d{bottom:140.800000pt;}
.y15c{bottom:143.680000pt;}
.yed{bottom:144.320000pt;}
.y9{bottom:144.608000pt;}
.y1be{bottom:144.640000pt;}
.y2a{bottom:144.960000pt;}
.y14d{bottom:145.600000pt;}
.y1a5{bottom:147.520000pt;}
.ybf{bottom:151.360000pt;}
.y103{bottom:153.600000pt;}
.yac{bottom:154.240000pt;}
.y7e{bottom:158.720000pt;}
.y29{bottom:160.320000pt;}
.y8{bottom:162.208000pt;}
.y9c{bottom:162.240000pt;}
.ye0{bottom:163.840000pt;}
.yec{bottom:165.760000pt;}
.y14c{bottom:166.720000pt;}
.yab{bottom:169.600000pt;}
.y1bd{bottom:172.160000pt;}
.ybe{bottom:172.480000pt;}
.y161{bottom:174.400000pt;}
.y102{bottom:174.720000pt;}
.y1a4{bottom:175.040000pt;}
.y28{bottom:175.680000pt;}
.y7d{bottom:179.840000pt;}
.y55{bottom:181.440000pt;}
.y9b{bottom:183.360000pt;}
.yaa{bottom:184.960000pt;}
.y160{bottom:185.280000pt;}
.yeb{bottom:186.240000pt;}
.y188{bottom:186.880000pt;}
.y14b{bottom:187.840000pt;}
.y27{bottom:190.720000pt;}
.ybd{bottom:193.600000pt;}
.y101{bottom:196.160000pt;}
.y1bc{bottom:199.680000pt;}
.ya9{bottom:200.320000pt;}
.y7c{bottom:200.960000pt;}
.y54{bottom:202.560000pt;}
.y1a3{bottom:202.880000pt;}
.y9a{bottom:204.480000pt;}
.yea{bottom:205.760000pt;}
.ydf{bottom:206.080000pt;}
.y187{bottom:208.000000pt;}
.y14a{bottom:208.960000pt;}
.y26{bottom:210.880000pt;}
.ybc{bottom:214.720000pt;}
.ya8{bottom:215.680000pt;}
.y100{bottom:217.280000pt;}
.y7{bottom:219.056000pt;}
.y130{bottom:220.480000pt;}
.y7b{bottom:222.080000pt;}
.y53{bottom:223.680000pt;}
.y99{bottom:225.600000pt;}
.yde{bottom:227.200000pt;}
.y1bb{bottom:227.520000pt;}
.y186{bottom:229.120000pt;}
.y25{bottom:229.440000pt;}
.y149{bottom:230.400000pt;}
.ya7{bottom:230.720000pt;}
.y12f{bottom:231.040000pt;}
.ybb{bottom:235.840000pt;}
.y6{bottom:236.656000pt;}
.yff{bottom:238.400000pt;}
.y7a{bottom:243.200000pt;}
.y52{bottom:245.120000pt;}
.ya6{bottom:246.080000pt;}
.y98{bottom:246.720000pt;}
.ydd{bottom:248.640000pt;}
.y24{bottom:249.600000pt;}
.y166{bottom:249.920000pt;}
.y185{bottom:250.240000pt;}
.y148{bottom:251.520000pt;}
.y5{bottom:254.256000pt;}
.y1ba{bottom:255.040000pt;}
.yba{bottom:256.960000pt;}
.y12e{bottom:257.920000pt;}
.yfe{bottom:259.520000pt;}
.y23{bottom:260.480000pt;}
.ya5{bottom:261.440000pt;}
.y79{bottom:264.320000pt;}
.y51{bottom:266.240000pt;}
.y97{bottom:267.840000pt;}
.y165{bottom:269.120000pt;}
.ydc{bottom:269.760000pt;}
.y184{bottom:271.360000pt;}
.y147{bottom:272.640000pt;}
.ya4{bottom:276.800000pt;}
.yb9{bottom:278.080000pt;}
.y155{bottom:278.400000pt;}
.y12d{bottom:279.040000pt;}
.yfd{bottom:280.640000pt;}
.y1b9{bottom:282.560000pt;}
.y78{bottom:285.440000pt;}
.y50{bottom:287.360000pt;}
.y164{bottom:288.640000pt;}
.y96{bottom:288.960000pt;}
.ydb{bottom:290.880000pt;}
.ya3{bottom:292.160000pt;}
.y183{bottom:292.480000pt;}
.y146{bottom:293.760000pt;}
.y154{bottom:298.560000pt;}
.yb8{bottom:299.200000pt;}
.y12c{bottom:300.480000pt;}
.yfc{bottom:301.760000pt;}
.y77{bottom:306.560000pt;}
.y22{bottom:306.880000pt;}
.ya2{bottom:307.520000pt;}
.y163{bottom:308.160000pt;}
.y4f{bottom:308.480000pt;}
.y95{bottom:310.080000pt;}
.yda{bottom:312.000000pt;}
.y1a2{bottom:313.280000pt;}
.y153{bottom:313.600000pt;}
.y145{bottom:314.880000pt;}
.yb7{bottom:320.640000pt;}
.y12b{bottom:321.600000pt;}
.yfb{bottom:322.880000pt;}
.y162{bottom:327.360000pt;}
.ya1{bottom:327.680000pt;}
.y76{bottom:328.000000pt;}
.y4e{bottom:329.600000pt;}
.y94{bottom:331.520000pt;}
.yd9{bottom:333.120000pt;}
.y182{bottom:335.040000pt;}
.y144{bottom:336.000000pt;}
.y1b8{bottom:337.920000pt;}
.ya0{bottom:338.560000pt;}
.yb6{bottom:339.840000pt;}
.y1a1{bottom:340.800000pt;}
.y21{bottom:342.080000pt;}
.y12a{bottom:342.720000pt;}
.y15a{bottom:343.040000pt;}
.yfa{bottom:344.000000pt;}
.y75{bottom:349.120000pt;}
.y132{bottom:350.400000pt;}
.y4d{bottom:350.720000pt;}
.y93{bottom:352.640000pt;}
.y159{bottom:353.920000pt;}
.yd8{bottom:354.240000pt;}
.yb5{bottom:355.200000pt;}
.y181{bottom:356.160000pt;}
.y143{bottom:357.120000pt;}
.y20{bottom:361.600000pt;}
.y129{bottom:363.840000pt;}
.yf9{bottom:365.120000pt;}
.y1b7{bottom:365.440000pt;}
.y131{bottom:368.320000pt;}
.y74{bottom:370.240000pt;}
.y4c{bottom:371.840000pt;}
.y92{bottom:373.760000pt;}
.yb4{bottom:374.720000pt;}
.yd7{bottom:375.360000pt;}
.y180{bottom:377.280000pt;}
.y142{bottom:378.240000pt;}
.y1f{bottom:381.120000pt;}
.y128{bottom:384.960000pt;}
.yf8{bottom:386.560000pt;}
.y73{bottom:391.360000pt;}
.y4b{bottom:392.960000pt;}
.yb3{bottom:393.920000pt;}
.y91{bottom:394.880000pt;}
.y1a0{bottom:395.840000pt;}
.yd6{bottom:396.480000pt;}
.y17f{bottom:398.400000pt;}
.y141{bottom:399.680000pt;}
.y1e{bottom:400.320000pt;}
.y127{bottom:406.080000pt;}
.yf7{bottom:407.680000pt;}
.y72{bottom:412.480000pt;}
.yb2{bottom:413.440000pt;}
.y4a{bottom:414.400000pt;}
.y90{bottom:416.000000pt;}
.yd5{bottom:417.920000pt;}
.y17e{bottom:419.520000pt;}
.y1d{bottom:419.840000pt;}
.y1b6{bottom:420.480000pt;}
.y140{bottom:420.800000pt;}
.y19f{bottom:423.360000pt;}
.y126{bottom:427.200000pt;}
.yf6{bottom:428.160000pt;}
.yb1{bottom:429.760000pt;}
.y71{bottom:433.600000pt;}
.y49{bottom:435.520000pt;}
.y8f{bottom:437.120000pt;}
.yd4{bottom:439.040000pt;}
.y1c{bottom:439.360000pt;}
.y17d{bottom:440.640000pt;}
.y13f{bottom:441.920000pt;}
.yf5{bottom:447.680000pt;}
.y125{bottom:448.320000pt;}
.y19e{bottom:451.200000pt;}
.y70{bottom:454.720000pt;}
.y48{bottom:456.640000pt;}
.y8e{bottom:458.240000pt;}
.y1b{bottom:458.560000pt;}
.yd3{bottom:460.160000pt;}
.y17c{bottom:461.760000pt;}
.y13e{bottom:463.040000pt;}
.yf4{bottom:467.200000pt;}
.y124{bottom:469.760000pt;}
.y6f{bottom:475.840000pt;}
.y47{bottom:477.760000pt;}
.y1a{bottom:478.080000pt;}
.y19d{bottom:478.720000pt;}
.y8d{bottom:479.360000pt;}
.yd2{bottom:481.280000pt;}
.y17b{bottom:482.880000pt;}
.y13d{bottom:484.160000pt;}
.yf3{bottom:486.400000pt;}
.y123{bottom:490.880000pt;}
.y4{bottom:494.528000pt;}
.y6e{bottom:496.960000pt;}
.y19{bottom:497.280000pt;}
.y46{bottom:498.880000pt;}
.y8c{bottom:500.480000pt;}
.yd1{bottom:502.400000pt;}
.y1b5{bottom:503.360000pt;}
.y17a{bottom:504.320000pt;}
.y13c{bottom:505.280000pt;}
.yf2{bottom:505.920000pt;}
.y19c{bottom:506.240000pt;}
.y152{bottom:510.400000pt;}
.y122{bottom:512.000000pt;}
.y18{bottom:516.800000pt;}
.ye9{bottom:517.760000pt;}
.y6d{bottom:518.400000pt;}
.y45{bottom:520.000000pt;}
.y8b{bottom:521.920000pt;}
.yd0{bottom:523.520000pt;}
.yf1{bottom:525.120000pt;}
.y179{bottom:525.440000pt;}
.y13b{bottom:526.400000pt;}
.y11c{bottom:527.040000pt;}
.y1b4{bottom:530.880000pt;}
.y151{bottom:531.520000pt;}
.y121{bottom:533.120000pt;}
.y19b{bottom:533.760000pt;}
.y17{bottom:536.320000pt;}
.ye8{bottom:538.880000pt;}
.y6c{bottom:539.520000pt;}
.y15b{bottom:540.800000pt;}
.y44{bottom:541.120000pt;}
.yf0{bottom:542.080000pt;}
.y8a{bottom:543.040000pt;}
.ycf{bottom:544.640000pt;}
.y178{bottom:546.560000pt;}
.y13a{bottom:547.520000pt;}
.y11b{bottom:548.160000pt;}
.y150{bottom:551.680000pt;}
.y120{bottom:553.920000pt;}
.y16{bottom:555.520000pt;}
.y3{bottom:558.410667pt;}
.y1b3{bottom:558.720000pt;}
.ye7{bottom:560.000000pt;}
.y6b{bottom:560.640000pt;}
.y19a{bottom:561.600000pt;}
.y43{bottom:562.240000pt;}
.y89{bottom:564.160000pt;}
.yce{bottom:565.760000pt;}
.y14f{bottom:567.040000pt;}
.y177{bottom:567.680000pt;}
.y139{bottom:568.640000pt;}
.y11a{bottom:569.280000pt;}
.y11f{bottom:573.120000pt;}
.y15{bottom:575.040000pt;}
.ye6{bottom:577.920000pt;}
.y6a{bottom:581.760000pt;}
.y42{bottom:583.360000pt;}
.y88{bottom:585.280000pt;}
.y1b2{bottom:586.240000pt;}
.ycd{bottom:586.880000pt;}
.y176{bottom:588.800000pt;}
.y199{bottom:589.120000pt;}
.y11e{bottom:589.760000pt;}
.y138{bottom:590.080000pt;}
.y119{bottom:590.400000pt;}
.y2{bottom:596.810667pt;}
.y69{bottom:602.880000pt;}
.y41{bottom:604.800000pt;}
.y87{bottom:606.400000pt;}
.ycc{bottom:608.320000pt;}
.y175{bottom:609.920000pt;}
.y137{bottom:611.200000pt;}
.y118{bottom:611.840000pt;}
.y14{bottom:613.440000pt;}
.y1b1{bottom:613.760000pt;}
.y198{bottom:616.640000pt;}
.y68{bottom:624.000000pt;}
.y40{bottom:625.920000pt;}
.y86{bottom:627.520000pt;}
.ycb{bottom:629.440000pt;}
.y174{bottom:631.040000pt;}
.y136{bottom:631.360000pt;}
.y13{bottom:632.320000pt;}
.y117{bottom:632.960000pt;}
.y1b0{bottom:641.280000pt;}
.y197{bottom:644.160000pt;}
.y67{bottom:645.120000pt;}
.y3f{bottom:647.040000pt;}
.y85{bottom:648.640000pt;}
.y135{bottom:648.960000pt;}
.yca{bottom:650.560000pt;}
.y173{bottom:652.160000pt;}
.y116{bottom:654.080000pt;}
.y1{bottom:658.250667pt;}
.y12{bottom:660.480000pt;}
.y134{bottom:664.320000pt;}
.y66{bottom:666.240000pt;}
.y158{bottom:667.520000pt;}
.y3e{bottom:668.160000pt;}
.y1af{bottom:669.120000pt;}
.y84{bottom:669.760000pt;}
.yc9{bottom:671.680000pt;}
.y196{bottom:672.000000pt;}
.y172{bottom:673.280000pt;}
.y115{bottom:675.200000pt;}
.y65{bottom:687.680000pt;}
.y3d{bottom:689.280000pt;}
.y83{bottom:691.200000pt;}
.yc8{bottom:692.800000pt;}
.y171{bottom:694.720000pt;}
.y114{bottom:696.320000pt;}
.y1ae{bottom:696.640000pt;}
.y195{bottom:699.520000pt;}
.y11{bottom:700.160000pt;}
.y18e{bottom:708.800000pt;}
.y64{bottom:710.080000pt;}
.y3c{bottom:710.400000pt;}
.y82{bottom:712.320000pt;}
.yc7{bottom:713.920000pt;}
.y170{bottom:715.840000pt;}
.y113{bottom:717.440000pt;}
.y10{bottom:722.240000pt;}
.y1ad{bottom:724.160000pt;}
.y194{bottom:727.040000pt;}
.y18d{bottom:729.920000pt;}
.y3b{bottom:731.520000pt;}
.y63{bottom:733.440000pt;}
.yc6{bottom:735.040000pt;}
.y16f{bottom:736.960000pt;}
.y112{bottom:738.560000pt;}
.yf{bottom:741.440000pt;}
.y18c{bottom:751.040000pt;}
.y1ac{bottom:751.680000pt;}
.y3a{bottom:752.640000pt;}
.y62{bottom:754.560000pt;}
.yc5{bottom:756.160000pt;}
.y16e{bottom:758.080000pt;}
.y111{bottom:759.680000pt;}
.ye{bottom:765.760000pt;}
.y18b{bottom:772.160000pt;}
.y39{bottom:774.080000pt;}
.y61{bottom:775.680000pt;}
.yc4{bottom:777.600000pt;}
.y16d{bottom:779.200000pt;}
.y1ab{bottom:779.520000pt;}
.y110{bottom:781.120000pt;}
.y193{bottom:782.400000pt;}
.y18a{bottom:793.280000pt;}
.y38{bottom:795.200000pt;}
.y60{bottom:796.800000pt;}
.yc3{bottom:798.720000pt;}
.y16c{bottom:800.320000pt;}
.yd{bottom:800.960000pt;}
.y10f{bottom:802.240000pt;}
.y1aa{bottom:807.040000pt;}
.y192{bottom:809.920000pt;}
.y189{bottom:815.680000pt;}
.y37{bottom:816.320000pt;}
.y5f{bottom:817.920000pt;}
.yc2{bottom:819.200000pt;}
.y16b{bottom:821.440000pt;}
.y10e{bottom:823.360000pt;}
.y1a9{bottom:834.560000pt;}
.yc{bottom:836.160000pt;}
.y36{bottom:837.440000pt;}
.y5e{bottom:839.040000pt;}
.y16a{bottom:842.560000pt;}
.y10d{bottom:844.480000pt;}
.y35{bottom:858.560000pt;}
.y5d{bottom:860.480000pt;}
.yb{bottom:861.120000pt;}
.y1a8{bottom:862.080000pt;}
.y169{bottom:864.000000pt;}
.y191{bottom:864.960000pt;}
.y10c{bottom:866.880000pt;}
.y34{bottom:879.680000pt;}
.y5c{bottom:881.600000pt;}
.y168{bottom:885.120000pt;}
.y10b{bottom:889.280000pt;}
.y1a7{bottom:889.920000pt;}
.ye5{bottom:892.160000pt;}
.y190{bottom:892.800000pt;}
.y33{bottom:900.800000pt;}
.y5b{bottom:902.720000pt;}
.y167{bottom:906.240000pt;}
.y10a{bottom:907.520000pt;}
.ye4{bottom:913.280000pt;}
.y1a6{bottom:917.440000pt;}
.y18f{bottom:920.320000pt;}
.y32{bottom:921.600000pt;}
.y5a{bottom:923.840000pt;}
.y109{bottom:926.720000pt;}
.ye3{bottom:931.200000pt;}
.y31{bottom:942.720000pt;}
.y59{bottom:944.960000pt;}
.y108{bottom:946.240000pt;}
.y2e{bottom:994.240000pt;}
.ha{height:17.915625pt;}
.h15{height:21.328125pt;}
.hb{height:23.996250pt;}
.h18{height:25.085000pt;}
.h14{height:28.153125pt;}
.hd{height:37.327500pt;}
.hc{height:38.587500pt;}
.h5{height:39.243750pt;}
.h10{height:39.905000pt;}
.h13{height:40.882500pt;}
.h7{height:40.911250pt;}
.h11{height:43.375000pt;}
.h17{height:44.437500pt;}
.h4{height:45.056000pt;}
.he{height:45.937500pt;}
.h8{height:46.811250pt;}
.h16{height:50.278750pt;}
.h12{height:50.305000pt;}
.hf{height:50.315000pt;}
.h9{height:50.366875pt;}
.h1{height:54.208000pt;}
.h6{height:72.002500pt;}
.h3{height:73.728000pt;}
.h2{height:98.304000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x18{left:98.246080pt;}
.x1c{left:120.000000pt;}
.x1d{left:136.699232pt;}
.x6{left:144.000000pt;}
.x9{left:149.558592pt;}
.x11{left:154.011712pt;}
.x7{left:155.562496pt;}
.xc{left:172.031264pt;}
.xd{left:192.000000pt;}
.x19{left:219.789056pt;}
.xf{left:222.914048pt;}
.x1a{left:263.339840pt;}
.x1b{left:272.230464pt;}
.x3{left:288.000000pt;}
.xa{left:292.917984pt;}
.xb{left:295.773440pt;}
.x14{left:302.441376pt;}
.x16{left:311.796864pt;}
.x12{left:340.003840pt;}
.xe{left:400.000000pt;}
.x5{left:404.000000pt;}
.x4{left:408.000000pt;}
.x2{left:517.759680pt;}
.x17{left:668.799680pt;}
.x10{left:684.640000pt;}
.x13{left:686.560000pt;}
.x15{left:700.160000pt;}
.x8{left:720.000000pt;}
}




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