
    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_72988a21b8a0a37e7063e01b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f94d0a9ff334fddc3e2186f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77c94811c08ec74faec6063f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_04b5c6ce34b399cdae8c5906.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_2d373f03321b23a53cf37d3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875977;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_fa874d46b9baef9ac5aa4417.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4079f05bd2e1d1bbb981d632.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2d0dd1ed91ea86d9695285dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_91f6cad2e001c3874c0dc177.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_72988a21b8a0a37e7063e01b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_30beb08b890a2bf1127daa52.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_91f6cad2e001c3874c0dc177.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_72988a21b8a0a37e7063e01b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8b752daa8a527ce6400bfb79.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;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_30beb08b890a2bf1127daa52.woff2')format("woff");}.fff{font-family:fff;line-height:1.095703;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_91f6cad2e001c3874c0dc177.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bd0835173d9eae8f62905927.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_28d5b465af3a22496cb35b80.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.758000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.478200px;}
.v3{vertical-align:18.675000px;}
.ls51{letter-spacing:-1.539000px;}
.ls57{letter-spacing:-1.368000px;}
.ls37{letter-spacing:-1.311000px;}
.ls56{letter-spacing:-1.254000px;}
.ls58{letter-spacing:-1.140000px;}
.ls13{letter-spacing:-1.026000px;}
.ls47{letter-spacing:-0.969000px;}
.ls15{letter-spacing:-0.912000px;}
.ls36{letter-spacing:-0.855000px;}
.ls14{letter-spacing:-0.741000px;}
.ls16{letter-spacing:-0.684000px;}
.ls2c{letter-spacing:-0.627000px;}
.ls9{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.570000px;}
.ls2f{letter-spacing:-0.513000px;}
.lsc{letter-spacing:-0.510000px;}
.ls45{letter-spacing:-0.456000px;}
.ls12{letter-spacing:-0.408000px;}
.ls33{letter-spacing:-0.399000px;}
.ls2e{letter-spacing:-0.342000px;}
.ls11{letter-spacing:-0.306000px;}
.ls30{letter-spacing:-0.285000px;}
.ls46{letter-spacing:-0.228000px;}
.lse{letter-spacing:-0.204000px;}
.ls43{letter-spacing:-0.171000px;}
.lsd{letter-spacing:-0.153000px;}
.ls2b{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.114000px;}
.ls2d{letter-spacing:-0.057000px;}
.lsb{letter-spacing:-0.051000px;}
.ls8{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.000600px;}
.ls38{letter-spacing:0.057000px;}
.ls3d{letter-spacing:0.091200px;}
.ls27{letter-spacing:0.114000px;}
.ls5{letter-spacing:0.153000px;}
.ls25{letter-spacing:0.171000px;}
.ls10{letter-spacing:0.204000px;}
.ls1f{letter-spacing:0.228000px;}
.ls1c{letter-spacing:0.285000px;}
.ls4{letter-spacing:0.306000px;}
.ls31{letter-spacing:0.342000px;}
.lsa{letter-spacing:0.357000px;}
.ls49{letter-spacing:0.399000px;}
.ls2{letter-spacing:0.408000px;}
.ls44{letter-spacing:0.456000px;}
.ls3{letter-spacing:0.510000px;}
.ls6{letter-spacing:0.513000px;}
.ls1d{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.612000px;}
.ls1a{letter-spacing:0.627000px;}
.ls41{letter-spacing:0.684000px;}
.ls4c{letter-spacing:0.741000px;}
.ls26{letter-spacing:0.798000px;}
.ls34{letter-spacing:0.855000px;}
.ls50{letter-spacing:0.912000px;}
.ls29{letter-spacing:0.969000px;}
.ls24{letter-spacing:1.026000px;}
.ls21{letter-spacing:1.083000px;}
.ls1e{letter-spacing:1.140000px;}
.ls28{letter-spacing:1.254000px;}
.ls1{letter-spacing:1.275000px;}
.ls3a{letter-spacing:1.311000px;}
.ls2a{letter-spacing:1.368000px;}
.ls19{letter-spacing:1.425000px;}
.ls7{letter-spacing:1.482000px;}
.ls48{letter-spacing:1.539000px;}
.ls3b{letter-spacing:1.596000px;}
.ls20{letter-spacing:1.653000px;}
.ls39{letter-spacing:1.710000px;}
.ls55{letter-spacing:1.767000px;}
.lsf{letter-spacing:1.785000px;}
.ls52{letter-spacing:1.881000px;}
.ls35{letter-spacing:1.938000px;}
.ls1b{letter-spacing:1.995000px;}
.ls42{letter-spacing:2.052000px;}
.ls54{letter-spacing:2.166000px;}
.ls18{letter-spacing:2.223000px;}
.ls59{letter-spacing:2.450994px;}
.ls4a{letter-spacing:2.508000px;}
.ls53{letter-spacing:2.679000px;}
.ls23{letter-spacing:2.793000px;}
.ls5a{letter-spacing:2.906994px;}
.ls40{letter-spacing:3.021000px;}
.ls22{letter-spacing:3.420000px;}
.ls3c{letter-spacing:4.104000px;}
.ls4e{letter-spacing:7.239000px;}
.ls4b{letter-spacing:7.980000px;}
.ls4d{letter-spacing:8.384700px;}
.ls3e{letter-spacing:21.774000px;}
.ls4f{letter-spacing:56.047200px;}
.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;}
}
.ws3{word-spacing:-15.000000px;}
.ws72{word-spacing:-14.535000px;}
.ws1d{word-spacing:-14.250000px;}
.ws51{word-spacing:-14.136000px;}
.ws42{word-spacing:-13.680000px;}
.ws0{word-spacing:-12.750000px;}
.ws1{word-spacing:-12.342000px;}
.ws1c{word-spacing:-12.000000px;}
.ws41{word-spacing:-9.975000px;}
.ws4a{word-spacing:-4.104000px;}
.ws31{word-spacing:-3.420000px;}
.ws4d{word-spacing:-3.021000px;}
.ws1f{word-spacing:-2.976000px;}
.ws70{word-spacing:-2.906994px;}
.ws32{word-spacing:-2.793000px;}
.ws66{word-spacing:-2.679000px;}
.ws54{word-spacing:-2.508000px;}
.ws6f{word-spacing:-2.450994px;}
.ws20{word-spacing:-2.223000px;}
.ws68{word-spacing:-2.166000px;}
.ws43{word-spacing:-2.052000px;}
.ws28{word-spacing:-1.995000px;}
.ws3a{word-spacing:-1.938000px;}
.ws57{word-spacing:-1.881000px;}
.wsd{word-spacing:-1.785000px;}
.ws69{word-spacing:-1.767000px;}
.ws44{word-spacing:-1.710000px;}
.ws2f{word-spacing:-1.653000px;}
.ws49{word-spacing:-1.596000px;}
.ws52{word-spacing:-1.539000px;}
.ws1b{word-spacing:-1.482000px;}
.ws22{word-spacing:-1.425000px;}
.ws3c{word-spacing:-1.368000px;}
.ws47{word-spacing:-1.311000px;}
.ws9{word-spacing:-1.275000px;}
.ws39{word-spacing:-1.254000px;}
.ws2c{word-spacing:-1.140000px;}
.ws30{word-spacing:-1.083000px;}
.ws34{word-spacing:-1.026000px;}
.ws3b{word-spacing:-0.969000px;}
.ws55{word-spacing:-0.912000px;}
.ws38{word-spacing:-0.855000px;}
.ws36{word-spacing:-0.798000px;}
.ws71{word-spacing:-0.741000px;}
.ws4f{word-spacing:-0.684000px;}
.ws24{word-spacing:-0.627000px;}
.ws6{word-spacing:-0.612000px;}
.ws2b{word-spacing:-0.570000px;}
.ws16{word-spacing:-0.513000px;}
.ws10{word-spacing:-0.510000px;}
.ws46{word-spacing:-0.456000px;}
.wsf{word-spacing:-0.408000px;}
.ws53{word-spacing:-0.399000px;}
.ws7{word-spacing:-0.357000px;}
.ws2a{word-spacing:-0.342000px;}
.ws11{word-spacing:-0.306000px;}
.ws29{word-spacing:-0.285000px;}
.ws2e{word-spacing:-0.228000px;}
.wse{word-spacing:-0.204000px;}
.ws35{word-spacing:-0.171000px;}
.ws12{word-spacing:-0.153000px;}
.ws37{word-spacing:-0.114000px;}
.ws2{word-spacing:-0.060000px;}
.ws40{word-spacing:-0.057000px;}
.ws6b{word-spacing:-0.054000px;}
.ws1e{word-spacing:-0.048000px;}
.ws50{word-spacing:-0.039900px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.051000px;}
.ws23{word-spacing:0.057000px;}
.ws2d{word-spacing:0.114000px;}
.wsb{word-spacing:0.153000px;}
.ws45{word-spacing:0.171000px;}
.wsc{word-spacing:0.204000px;}
.ws4b{word-spacing:0.228000px;}
.ws27{word-spacing:0.285000px;}
.ws13{word-spacing:0.306000px;}
.ws25{word-spacing:0.342000px;}
.ws33{word-spacing:0.399000px;}
.ws14{word-spacing:0.408000px;}
.ws48{word-spacing:0.456000px;}
.wsa{word-spacing:0.510000px;}
.ws26{word-spacing:0.513000px;}
.ws1a{word-spacing:0.570000px;}
.ws5{word-spacing:0.612000px;}
.ws21{word-spacing:0.627000px;}
.ws19{word-spacing:0.684000px;}
.ws17{word-spacing:0.741000px;}
.ws3d{word-spacing:0.855000px;}
.ws18{word-spacing:0.912000px;}
.ws4e{word-spacing:0.969000px;}
.ws15{word-spacing:1.026000px;}
.ws6e{word-spacing:1.140000px;}
.ws67{word-spacing:1.254000px;}
.ws3e{word-spacing:1.311000px;}
.ws6d{word-spacing:1.368000px;}
.ws56{word-spacing:1.539000px;}
.ws4c{word-spacing:21.774000px;}
.ws62{word-spacing:77.004000px;}
.ws59{word-spacing:87.858000px;}
.ws5e{word-spacing:95.850000px;}
.ws5c{word-spacing:96.827400px;}
.ws5d{word-spacing:137.700000px;}
.ws5a{word-spacing:138.726000px;}
.ws5b{word-spacing:139.703400px;}
.ws61{word-spacing:161.406000px;}
.ws63{word-spacing:176.958000px;}
.ws64{word-spacing:186.462000px;}
.ws58{word-spacing:201.204000px;}
.ws65{word-spacing:212.058000px;}
.ws6c{word-spacing:268.218000px;}
.ws6a{word-spacing:275.724000px;}
.ws60{word-spacing:386.154000px;}
.ws5f{word-spacing:388.152000px;}
.ws3f{word-spacing:769.604400px;}
._15{margin-left:-40.992000px;}
._12{margin-left:-14.250000px;}
._c{margin-left:-7.265700px;}
._0{margin-left:-6.206400px;}
._9{margin-left:-4.952100px;}
._2{margin-left:-3.794400px;}
._1{margin-left:-1.867200px;}
._3{width:1.800300px;}
._6{width:3.401700px;}
._5{width:4.733400px;}
._7{width:5.823600px;}
._4{width:6.946200px;}
._8{width:8.358900px;}
._a{width:9.368400px;}
._b{width:10.550700px;}
._d{width:12.369000px;}
._11{width:28.358400px;}
._10{width:47.318400px;}
._1e{width:68.904000px;}
._38{width:71.808000px;}
._29{width:104.058000px;}
._1d{width:109.350000px;}
._30{width:115.452000px;}
._20{width:117.126000px;}
._25{width:118.723200px;}
._1a{width:121.747200px;}
._1f{width:124.632000px;}
._1c{width:125.928000px;}
._37{width:135.162000px;}
._28{width:141.588000px;}
._19{width:148.500000px;}
._1b{width:151.200000px;}
._24{width:157.140000px;}
._13{width:165.132000px;}
._17{width:171.774000px;}
._27{width:172.962000px;}
._18{width:178.794000px;}
._26{width:187.141200px;}
._e{width:196.251000px;}
._f{width:207.024000px;}
._16{width:212.436000px;}
._2e{width:225.558000px;}
._14{width:227.718000px;}
._2a{width:230.148000px;}
._2b{width:244.256400px;}
._2f{width:296.730000px;}
._2c{width:305.023200px;}
._36{width:307.584000px;}
._2d{width:333.558000px;}
._23{width:401.652000px;}
._21{width:408.618000px;}
._33{width:426.037200px;}
._34{width:430.164000px;}
._32{width:443.880000px;}
._22{width:462.132000px;}
._35{width:481.286100px;}
._31{width:498.150000px;}
.fc1{color:rgb(237,28,36);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:49.102650px;}
.y2{bottom:49.551450px;}
.y2f{bottom:61.883100px;}
.y33{bottom:63.502650px;}
.y1{bottom:63.951450px;}
.y151{bottom:106.771800px;}
.y16f{bottom:112.537650px;}
.y89{bottom:112.553400px;}
.yba{bottom:112.578150px;}
.y116{bottom:112.580400px;}
.yfe{bottom:112.589400px;}
.y6a{bottom:112.663650px;}
.y20{bottom:113.444400px;}
.y150{bottom:122.971800px;}
.y88{bottom:130.551150px;}
.yb9{bottom:130.575900px;}
.y115{bottom:130.578150px;}
.yfd{bottom:130.587150px;}
.y16e{bottom:130.605150px;}
.y69{bottom:130.661400px;}
.y1f{bottom:142.244400px;}
.y87{bottom:148.548900px;}
.yb8{bottom:148.573650px;}
.y114{bottom:148.575900px;}
.yfc{bottom:148.584900px;}
.y16d{bottom:148.602900px;}
.y68{bottom:148.659150px;}
.y1e{bottom:156.644400px;}
.y86{bottom:166.546650px;}
.y113{bottom:166.573650px;}
.yfb{bottom:166.582650px;}
.y16c{bottom:166.600650px;}
.y67{bottom:166.656900px;}
.y85{bottom:184.544400px;}
.yb7{bottom:184.569150px;}
.y112{bottom:184.571400px;}
.yfa{bottom:184.580400px;}
.y16b{bottom:184.598400px;}
.y66{bottom:184.654650px;}
.y29{bottom:200.985450px;}
.y2e{bottom:200.999700px;}
.y84{bottom:202.542150px;}
.yb6{bottom:202.566900px;}
.y111{bottom:202.569150px;}
.yf9{bottom:202.578150px;}
.y16a{bottom:202.596150px;}
.y65{bottom:202.652400px;}
.y28{bottom:218.983200px;}
.y2d{bottom:218.997450px;}
.y83{bottom:220.539900px;}
.yb5{bottom:220.564650px;}
.y110{bottom:220.566900px;}
.yf8{bottom:220.575900px;}
.y169{bottom:220.593900px;}
.y187{bottom:220.595400px;}
.y64{bottom:220.650150px;}
.y27{bottom:236.980950px;}
.y2c{bottom:236.995200px;}
.y82{bottom:238.537650px;}
.yb4{bottom:238.562400px;}
.y10f{bottom:238.564650px;}
.yf7{bottom:238.573650px;}
.y168{bottom:238.591650px;}
.y186{bottom:238.593150px;}
.y63{bottom:238.647900px;}
.y2b{bottom:254.992950px;}
.y81{bottom:256.535400px;}
.yb3{bottom:256.560150px;}
.y10e{bottom:256.562400px;}
.yf6{bottom:256.571400px;}
.y167{bottom:256.589400px;}
.y185{bottom:256.590900px;}
.y62{bottom:256.645650px;}
.y26{bottom:272.976450px;}
.y2a{bottom:272.990700px;}
.yb2{bottom:274.557900px;}
.y10d{bottom:274.560150px;}
.yf5{bottom:274.569150px;}
.y166{bottom:274.587150px;}
.y184{bottom:274.588650px;}
.y61{bottom:274.643400px;}
.yb1{bottom:292.555650px;}
.y10c{bottom:292.557900px;}
.yf4{bottom:292.566900px;}
.y165{bottom:292.584900px;}
.y183{bottom:292.586400px;}
.y60{bottom:292.641150px;}
.y80{bottom:301.402800px;}
.yb0{bottom:310.553400px;}
.y10b{bottom:310.555650px;}
.yf3{bottom:310.564650px;}
.y164{bottom:310.582650px;}
.y5f{bottom:310.638900px;}
.y7f{bottom:317.602800px;}
.yaf{bottom:328.551150px;}
.y10a{bottom:328.553400px;}
.yf2{bottom:328.562400px;}
.y163{bottom:328.580400px;}
.y182{bottom:328.581900px;}
.y5e{bottom:328.636650px;}
.ye5{bottom:342.561900px;}
.y1c{bottom:346.510950px;}
.yae{bottom:346.548900px;}
.y109{bottom:346.551150px;}
.yf1{bottom:346.560150px;}
.y162{bottom:346.578150px;}
.y5d{bottom:346.634400px;}
.ye4{bottom:358.761900px;}
.y1b{bottom:363.009450px;}
.yad{bottom:364.546650px;}
.y108{bottom:364.548900px;}
.yf0{bottom:364.557900px;}
.y161{bottom:364.575900px;}
.y5c{bottom:364.632150px;}
.ye3{bottom:374.961900px;}
.yac{bottom:382.544400px;}
.y107{bottom:382.546650px;}
.yef{bottom:382.555650px;}
.y160{bottom:382.573650px;}
.y181{bottom:382.575150px;}
.y5b{bottom:382.629900px;}
.ye2{bottom:391.161900px;}
.y1d{bottom:396.006450px;}
.yab{bottom:400.542150px;}
.y106{bottom:400.544400px;}
.yee{bottom:400.553400px;}
.y15f{bottom:400.571400px;}
.y180{bottom:400.572900px;}
.y5a{bottom:400.627650px;}
.y1a{bottom:412.504950px;}
.yaa{bottom:418.539900px;}
.y105{bottom:418.542150px;}
.yc1{bottom:418.548900px;}
.yed{bottom:418.551150px;}
.y15e{bottom:418.569150px;}
.y17f{bottom:418.570650px;}
.y59{bottom:418.625400px;}
.y19{bottom:429.003450px;}
.y104{bottom:436.539900px;}
.yc0{bottom:436.546650px;}
.yec{bottom:436.548900px;}
.y15d{bottom:436.566900px;}
.y17e{bottom:436.568400px;}
.y58{bottom:436.623150px;}
.y18{bottom:445.501950px;}
.y103{bottom:454.537650px;}
.ya9{bottom:454.539900px;}
.ybf{bottom:454.544400px;}
.yeb{bottom:454.546650px;}
.y14f{bottom:454.553400px;}
.y17d{bottom:454.566150px;}
.y13e{bottom:454.573650px;}
.y57{bottom:454.620900px;}
.y17{bottom:462.000450px;}
.ya8{bottom:472.537650px;}
.ybe{bottom:472.542150px;}
.yea{bottom:472.544400px;}
.y14e{bottom:472.551150px;}
.y15c{bottom:472.562400px;}
.y17c{bottom:472.563900px;}
.y13d{bottom:472.571400px;}
.y102{bottom:472.601400px;}
.y56{bottom:472.618650px;}
.y16{bottom:478.498950px;}
.ybd{bottom:490.539900px;}
.ye9{bottom:490.542150px;}
.ya7{bottom:490.544400px;}
.y14d{bottom:490.548900px;}
.y17b{bottom:490.561650px;}
.y13c{bottom:490.569150px;}
.y101{bottom:490.599150px;}
.y55{bottom:490.616400px;}
.y15{bottom:494.997450px;}
.ybc{bottom:508.537650px;}
.ye8{bottom:508.539900px;}
.ya6{bottom:508.542150px;}
.y14c{bottom:508.546650px;}
.y17a{bottom:508.559400px;}
.y13b{bottom:508.566900px;}
.y54{bottom:508.614150px;}
.y14{bottom:511.495950px;}
.ye7{bottom:526.537650px;}
.ya5{bottom:526.539900px;}
.ye1{bottom:526.542150px;}
.y14b{bottom:526.544400px;}
.y15b{bottom:526.555650px;}
.y179{bottom:526.557150px;}
.y13a{bottom:526.564650px;}
.y100{bottom:526.594650px;}
.y53{bottom:526.611900px;}
.y13{bottom:527.994450px;}
.y12{bottom:544.492950px;}
.ye6{bottom:544.535400px;}
.ya4{bottom:544.537650px;}
.ye0{bottom:544.539900px;}
.y14a{bottom:544.542150px;}
.y7e{bottom:544.548900px;}
.y15a{bottom:544.553400px;}
.y178{bottom:544.554900px;}
.y139{bottom:544.562400px;}
.yff{bottom:544.592400px;}
.y52{bottom:544.609650px;}
.y11{bottom:560.991450px;}
.ya3{bottom:562.535400px;}
.ydf{bottom:562.537650px;}
.y149{bottom:562.539900px;}
.y7d{bottom:562.546650px;}
.y159{bottom:562.551150px;}
.y177{bottom:562.552650px;}
.y138{bottom:562.560150px;}
.y51{bottom:562.607400px;}
.y10{bottom:578.994450px;}
.y148{bottom:580.537650px;}
.yde{bottom:580.542150px;}
.y7c{bottom:580.544400px;}
.y158{bottom:580.548900px;}
.y176{bottom:580.550400px;}
.y50{bottom:580.605150px;}
.ya2{bottom:593.629650px;}
.yf{bottom:595.492950px;}
.y147{bottom:598.535400px;}
.ydd{bottom:598.539900px;}
.y7b{bottom:598.542150px;}
.y157{bottom:598.546650px;}
.y175{bottom:598.548150px;}
.y137{bottom:598.555650px;}
.y4f{bottom:598.602900px;}
.y12e{bottom:606.171450px;}
.ye{bottom:611.991450px;}
.y7a{bottom:616.539900px;}
.y156{bottom:616.544400px;}
.y174{bottom:616.545900px;}
.y136{bottom:616.553400px;}
.y4e{bottom:616.600650px;}
.ya1{bottom:616.728900px;}
.y12d{bottom:627.528450px;}
.yd{bottom:628.489950px;}
.ydc{bottom:634.535400px;}
.y79{bottom:634.537650px;}
.y155{bottom:634.542150px;}
.y173{bottom:634.543650px;}
.y135{bottom:634.551150px;}
.y4d{bottom:634.598400px;}
.ya0{bottom:634.726650px;}
.y146{bottom:642.171600px;}
.yc{bottom:644.988450px;}
.y12c{bottom:648.885450px;}
.y78{bottom:652.535400px;}
.y154{bottom:652.539900px;}
.y172{bottom:652.541400px;}
.y134{bottom:652.548900px;}
.y4c{bottom:652.596150px;}
.y9f{bottom:652.724400px;}
.yb{bottom:661.486950px;}
.y145{bottom:663.528600px;}
.y12b{bottom:670.242450px;}
.ydb{bottom:670.535400px;}
.y153{bottom:670.537650px;}
.y171{bottom:670.539150px;}
.y133{bottom:670.546650px;}
.y4b{bottom:670.593900px;}
.y9e{bottom:670.722150px;}
.ya{bottom:677.985450px;}
.y144{bottom:684.885600px;}
.y152{bottom:688.535400px;}
.y170{bottom:688.536900px;}
.yda{bottom:688.537650px;}
.y132{bottom:688.544400px;}
.y4a{bottom:688.591650px;}
.y9d{bottom:688.719900px;}
.y12a{bottom:692.148600px;}
.y9{bottom:694.483950px;}
.y77{bottom:694.943850px;}
.y143{bottom:706.242600px;}
.yd9{bottom:706.537650px;}
.y131{bottom:706.542150px;}
.y8f{bottom:706.589400px;}
.y9c{bottom:706.717650px;}
.y129{bottom:708.348600px;}
.y8{bottom:710.982450px;}
.y76{bottom:711.143850px;}
.y130{bottom:724.539900px;}
.yd8{bottom:724.575900px;}
.y49{bottom:724.587150px;}
.y9b{bottom:724.715400px;}
.y75{bottom:727.343850px;}
.y7{bottom:727.480950px;}
.y142{bottom:728.138400px;}
.y48{bottom:742.584900px;}
.y74{bottom:743.543850px;}
.y6{bottom:743.979450px;}
.y141{bottom:744.338400px;}
.y128{bottom:750.171600px;}
.y5{bottom:760.477950px;}
.y12f{bottom:760.535400px;}
.yd7{bottom:760.571400px;}
.y47{bottom:760.582650px;}
.y9a{bottom:760.710900px;}
.y189{bottom:770.961900px;}
.y127{bottom:771.528600px;}
.y4{bottom:776.976450px;}
.yd6{bottom:778.569150px;}
.y46{bottom:778.580400px;}
.y188{bottom:787.161900px;}
.y126{bottom:792.885600px;}
.yd5{bottom:796.566900px;}
.y8e{bottom:796.578150px;}
.y140{bottom:810.150900px;}
.y3{bottom:812.976450px;}
.y125{bottom:814.242600px;}
.yd4{bottom:814.564650px;}
.y45{bottom:814.575900px;}
.y99{bottom:814.704150px;}
.y13f{bottom:826.350900px;}
.yd3{bottom:832.562400px;}
.y8d{bottom:832.573650px;}
.y98{bottom:832.701900px;}
.y124{bottom:836.144100px;}
.yd2{bottom:850.560150px;}
.y8c{bottom:850.571400px;}
.y97{bottom:850.699650px;}
.y123{bottom:852.344100px;}
.y19d{bottom:868.539900px;}
.yd1{bottom:868.557900px;}
.y44{bottom:868.569150px;}
.y96{bottom:868.697400px;}
.y25{bottom:873.290700px;}
.y19c{bottom:886.537650px;}
.yd0{bottom:886.555650px;}
.y43{bottom:886.566900px;}
.y95{bottom:886.695150px;}
.y122{bottom:897.528600px;}
.y19b{bottom:904.535400px;}
.ycf{bottom:904.553400px;}
.y42{bottom:904.564650px;}
.y94{bottom:904.692900px;}
.y24{bottom:908.686200px;}
.y121{bottom:918.885600px;}
.yce{bottom:922.551150px;}
.y41{bottom:922.562400px;}
.y93{bottom:922.690650px;}
.y120{bottom:940.242600px;}
.ycd{bottom:940.548900px;}
.y40{bottom:940.560150px;}
.y92{bottom:940.688400px;}
.y23{bottom:949.490700px;}
.ycc{bottom:958.546650px;}
.y3f{bottom:958.557900px;}
.y91{bottom:958.686150px;}
.y11f{bottom:962.148600px;}
.ycb{bottom:976.544400px;}
.y3e{bottom:976.555650px;}
.y90{bottom:976.683900px;}
.y22{bottom:978.290700px;}
.y11e{bottom:978.348600px;}
.y191{bottom:987.045900px;}
.yca{bottom:994.542150px;}
.y3d{bottom:994.553400px;}
.y73{bottom:994.681650px;}
.y190{bottom:1003.544400px;}
.y21{bottom:1010.690700px;}
.yc9{bottom:1012.539900px;}
.y3c{bottom:1012.551150px;}
.y72{bottom:1012.679400px;}
.y19a{bottom:1015.720650px;}
.y18f{bottom:1020.042900px;}
.y11d{bottom:1023.857100px;}
.yc8{bottom:1030.537650px;}
.y3b{bottom:1030.548900px;}
.y71{bottom:1030.677150px;}
.y199{bottom:1032.219150px;}
.y18e{bottom:1036.541400px;}
.y11c{bottom:1045.214100px;}
.y3a{bottom:1048.546650px;}
.yc7{bottom:1048.555650px;}
.y70{bottom:1048.674900px;}
.y198{bottom:1048.717650px;}
.y18d{bottom:1053.039900px;}
.y197{bottom:1065.216150px;}
.y39{bottom:1066.544400px;}
.yc6{bottom:1066.553400px;}
.y11b{bottom:1066.571100px;}
.y6f{bottom:1066.672650px;}
.y18c{bottom:1069.538400px;}
.y196{bottom:1081.714650px;}
.y38{bottom:1084.542150px;}
.yc5{bottom:1084.551150px;}
.y6e{bottom:1084.670400px;}
.y18b{bottom:1086.036900px;}
.y11a{bottom:1087.928100px;}
.y32{bottom:1098.190200px;}
.y195{bottom:1098.213150px;}
.y18a{bottom:1102.535400px;}
.y37{bottom:1102.539900px;}
.yc4{bottom:1102.548900px;}
.y6d{bottom:1102.668150px;}
.y119{bottom:1109.069100px;}
.y194{bottom:1114.711650px;}
.y36{bottom:1120.537650px;}
.yc3{bottom:1120.546650px;}
.y6c{bottom:1120.665900px;}
.y31{bottom:1129.690200px;}
.y118{bottom:1130.961900px;}
.y193{bottom:1131.210150px;}
.y35{bottom:1138.535400px;}
.yc2{bottom:1138.544400px;}
.y6b{bottom:1138.663650px;}
.ybb{bottom:1142.391600px;}
.y117{bottom:1147.161900px;}
.y192{bottom:1147.708650px;}
.y30{bottom:1149.190200px;}
.y8b{bottom:1181.618550px;}
.y8a{bottom:1195.118550px;}
.h2{height:33.328125px;}
.h3{height:38.519531px;}
.hc{height:40.634766px;}
.h7{height:42.234375px;}
.h4{height:44.749512px;}
.h5{height:44.874023px;}
.h6{height:45.446777px;}
.h12{height:47.381836px;}
.hf{height:47.513672px;}
.h13{height:48.120117px;}
.hb{height:50.014160px;}
.h11{height:50.135320px;}
.he{height:50.153320px;}
.ha{height:50.793457px;}
.h10{height:52.646484px;}
.hd{height:52.792969px;}
.h9{height:57.911133px;}
.h8{height:96.240234px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x15{left:-555.028050px;}
.x0{left:0.000000px;}
.x3{left:63.779550px;}
.xa{left:76.533300px;}
.x2a{left:99.785550px;}
.x23{left:125.007750px;}
.x1e{left:203.636400px;}
.x20{left:205.795200px;}
.x1b{left:223.274850px;}
.x22{left:237.911700px;}
.x21{left:241.597200px;}
.x24{left:251.794350px;}
.x1c{left:255.904350px;}
.x1a{left:259.589850px;}
.x1d{left:262.532850px;}
.x27{left:265.903500px;}
.x25{left:271.936350px;}
.x1{left:274.930650px;}
.x19{left:281.355150px;}
.x1f{left:299.580900px;}
.x7{left:306.998100px;}
.x28{left:325.022550px;}
.x29{left:330.152550px;}
.x8{left:335.843100px;}
.x6{left:351.638100px;}
.x4{left:457.086600px;}
.x10{left:461.625150px;}
.xf{left:464.986650px;}
.x12{left:466.092600px;}
.x26{left:467.726850px;}
.x5{left:469.847550px;}
.x18{left:485.594550px;}
.x14{left:490.013700px;}
.x2b{left:493.097550px;}
.xd{left:510.370350px;}
.xb{left:530.795850px;}
.x13{left:541.090350px;}
.x11{left:555.091050px;}
.x2{left:575.086650px;}
.xe{left:578.990850px;}
.xc{left:583.108350px;}
.x17{left:659.858250px;}
.x16{left:731.282250px;}
.x9{left:814.133850px;}
@media print{
.v2{vertical-align:-17.562667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.758400pt;}
.v3{vertical-align:16.600000pt;}
.ls51{letter-spacing:-1.368000pt;}
.ls57{letter-spacing:-1.216000pt;}
.ls37{letter-spacing:-1.165333pt;}
.ls56{letter-spacing:-1.114667pt;}
.ls58{letter-spacing:-1.013333pt;}
.ls13{letter-spacing:-0.912000pt;}
.ls47{letter-spacing:-0.861333pt;}
.ls15{letter-spacing:-0.810667pt;}
.ls36{letter-spacing:-0.760000pt;}
.ls14{letter-spacing:-0.658667pt;}
.ls16{letter-spacing:-0.608000pt;}
.ls2c{letter-spacing:-0.557333pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.506667pt;}
.ls2f{letter-spacing:-0.456000pt;}
.lsc{letter-spacing:-0.453333pt;}
.ls45{letter-spacing:-0.405333pt;}
.ls12{letter-spacing:-0.362667pt;}
.ls33{letter-spacing:-0.354667pt;}
.ls2e{letter-spacing:-0.304000pt;}
.ls11{letter-spacing:-0.272000pt;}
.ls30{letter-spacing:-0.253333pt;}
.ls46{letter-spacing:-0.202667pt;}
.lse{letter-spacing:-0.181333pt;}
.ls43{letter-spacing:-0.152000pt;}
.lsd{letter-spacing:-0.136000pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.101333pt;}
.ls2d{letter-spacing:-0.050667pt;}
.lsb{letter-spacing:-0.045333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.000533pt;}
.ls38{letter-spacing:0.050667pt;}
.ls3d{letter-spacing:0.081067pt;}
.ls27{letter-spacing:0.101333pt;}
.ls5{letter-spacing:0.136000pt;}
.ls25{letter-spacing:0.152000pt;}
.ls10{letter-spacing:0.181333pt;}
.ls1f{letter-spacing:0.202667pt;}
.ls1c{letter-spacing:0.253333pt;}
.ls4{letter-spacing:0.272000pt;}
.ls31{letter-spacing:0.304000pt;}
.lsa{letter-spacing:0.317333pt;}
.ls49{letter-spacing:0.354667pt;}
.ls2{letter-spacing:0.362667pt;}
.ls44{letter-spacing:0.405333pt;}
.ls3{letter-spacing:0.453333pt;}
.ls6{letter-spacing:0.456000pt;}
.ls1d{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.544000pt;}
.ls1a{letter-spacing:0.557333pt;}
.ls41{letter-spacing:0.608000pt;}
.ls4c{letter-spacing:0.658667pt;}
.ls26{letter-spacing:0.709333pt;}
.ls34{letter-spacing:0.760000pt;}
.ls50{letter-spacing:0.810667pt;}
.ls29{letter-spacing:0.861333pt;}
.ls24{letter-spacing:0.912000pt;}
.ls21{letter-spacing:0.962667pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls28{letter-spacing:1.114667pt;}
.ls1{letter-spacing:1.133333pt;}
.ls3a{letter-spacing:1.165333pt;}
.ls2a{letter-spacing:1.216000pt;}
.ls19{letter-spacing:1.266667pt;}
.ls7{letter-spacing:1.317333pt;}
.ls48{letter-spacing:1.368000pt;}
.ls3b{letter-spacing:1.418667pt;}
.ls20{letter-spacing:1.469333pt;}
.ls39{letter-spacing:1.520000pt;}
.ls55{letter-spacing:1.570667pt;}
.lsf{letter-spacing:1.586667pt;}
.ls52{letter-spacing:1.672000pt;}
.ls35{letter-spacing:1.722667pt;}
.ls1b{letter-spacing:1.773333pt;}
.ls42{letter-spacing:1.824000pt;}
.ls54{letter-spacing:1.925333pt;}
.ls18{letter-spacing:1.976000pt;}
.ls59{letter-spacing:2.178662pt;}
.ls4a{letter-spacing:2.229333pt;}
.ls53{letter-spacing:2.381333pt;}
.ls23{letter-spacing:2.482667pt;}
.ls5a{letter-spacing:2.583995pt;}
.ls40{letter-spacing:2.685333pt;}
.ls22{letter-spacing:3.040000pt;}
.ls3c{letter-spacing:3.648000pt;}
.ls4e{letter-spacing:6.434667pt;}
.ls4b{letter-spacing:7.093333pt;}
.ls4d{letter-spacing:7.453067pt;}
.ls3e{letter-spacing:19.354667pt;}
.ls4f{letter-spacing:49.819733pt;}
.ws3{word-spacing:-13.333333pt;}
.ws72{word-spacing:-12.920000pt;}
.ws1d{word-spacing:-12.666667pt;}
.ws51{word-spacing:-12.565333pt;}
.ws42{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws1{word-spacing:-10.970667pt;}
.ws1c{word-spacing:-10.666667pt;}
.ws41{word-spacing:-8.866667pt;}
.ws4a{word-spacing:-3.648000pt;}
.ws31{word-spacing:-3.040000pt;}
.ws4d{word-spacing:-2.685333pt;}
.ws1f{word-spacing:-2.645333pt;}
.ws70{word-spacing:-2.583995pt;}
.ws32{word-spacing:-2.482667pt;}
.ws66{word-spacing:-2.381333pt;}
.ws54{word-spacing:-2.229333pt;}
.ws6f{word-spacing:-2.178662pt;}
.ws20{word-spacing:-1.976000pt;}
.ws68{word-spacing:-1.925333pt;}
.ws43{word-spacing:-1.824000pt;}
.ws28{word-spacing:-1.773333pt;}
.ws3a{word-spacing:-1.722667pt;}
.ws57{word-spacing:-1.672000pt;}
.wsd{word-spacing:-1.586667pt;}
.ws69{word-spacing:-1.570667pt;}
.ws44{word-spacing:-1.520000pt;}
.ws2f{word-spacing:-1.469333pt;}
.ws49{word-spacing:-1.418667pt;}
.ws52{word-spacing:-1.368000pt;}
.ws1b{word-spacing:-1.317333pt;}
.ws22{word-spacing:-1.266667pt;}
.ws3c{word-spacing:-1.216000pt;}
.ws47{word-spacing:-1.165333pt;}
.ws9{word-spacing:-1.133333pt;}
.ws39{word-spacing:-1.114667pt;}
.ws2c{word-spacing:-1.013333pt;}
.ws30{word-spacing:-0.962667pt;}
.ws34{word-spacing:-0.912000pt;}
.ws3b{word-spacing:-0.861333pt;}
.ws55{word-spacing:-0.810667pt;}
.ws38{word-spacing:-0.760000pt;}
.ws36{word-spacing:-0.709333pt;}
.ws71{word-spacing:-0.658667pt;}
.ws4f{word-spacing:-0.608000pt;}
.ws24{word-spacing:-0.557333pt;}
.ws6{word-spacing:-0.544000pt;}
.ws2b{word-spacing:-0.506667pt;}
.ws16{word-spacing:-0.456000pt;}
.ws10{word-spacing:-0.453333pt;}
.ws46{word-spacing:-0.405333pt;}
.wsf{word-spacing:-0.362667pt;}
.ws53{word-spacing:-0.354667pt;}
.ws7{word-spacing:-0.317333pt;}
.ws2a{word-spacing:-0.304000pt;}
.ws11{word-spacing:-0.272000pt;}
.ws29{word-spacing:-0.253333pt;}
.ws2e{word-spacing:-0.202667pt;}
.wse{word-spacing:-0.181333pt;}
.ws35{word-spacing:-0.152000pt;}
.ws12{word-spacing:-0.136000pt;}
.ws37{word-spacing:-0.101333pt;}
.ws2{word-spacing:-0.053333pt;}
.ws40{word-spacing:-0.050667pt;}
.ws6b{word-spacing:-0.048000pt;}
.ws1e{word-spacing:-0.042667pt;}
.ws50{word-spacing:-0.035467pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.045333pt;}
.ws23{word-spacing:0.050667pt;}
.ws2d{word-spacing:0.101333pt;}
.wsb{word-spacing:0.136000pt;}
.ws45{word-spacing:0.152000pt;}
.wsc{word-spacing:0.181333pt;}
.ws4b{word-spacing:0.202667pt;}
.ws27{word-spacing:0.253333pt;}
.ws13{word-spacing:0.272000pt;}
.ws25{word-spacing:0.304000pt;}
.ws33{word-spacing:0.354667pt;}
.ws14{word-spacing:0.362667pt;}
.ws48{word-spacing:0.405333pt;}
.wsa{word-spacing:0.453333pt;}
.ws26{word-spacing:0.456000pt;}
.ws1a{word-spacing:0.506667pt;}
.ws5{word-spacing:0.544000pt;}
.ws21{word-spacing:0.557333pt;}
.ws19{word-spacing:0.608000pt;}
.ws17{word-spacing:0.658667pt;}
.ws3d{word-spacing:0.760000pt;}
.ws18{word-spacing:0.810667pt;}
.ws4e{word-spacing:0.861333pt;}
.ws15{word-spacing:0.912000pt;}
.ws6e{word-spacing:1.013333pt;}
.ws67{word-spacing:1.114667pt;}
.ws3e{word-spacing:1.165333pt;}
.ws6d{word-spacing:1.216000pt;}
.ws56{word-spacing:1.368000pt;}
.ws4c{word-spacing:19.354667pt;}
.ws62{word-spacing:68.448000pt;}
.ws59{word-spacing:78.096000pt;}
.ws5e{word-spacing:85.200000pt;}
.ws5c{word-spacing:86.068800pt;}
.ws5d{word-spacing:122.400000pt;}
.ws5a{word-spacing:123.312000pt;}
.ws5b{word-spacing:124.180800pt;}
.ws61{word-spacing:143.472000pt;}
.ws63{word-spacing:157.296000pt;}
.ws64{word-spacing:165.744000pt;}
.ws58{word-spacing:178.848000pt;}
.ws65{word-spacing:188.496000pt;}
.ws6c{word-spacing:238.416000pt;}
.ws6a{word-spacing:245.088000pt;}
.ws60{word-spacing:343.248000pt;}
.ws5f{word-spacing:345.024000pt;}
.ws3f{word-spacing:684.092800pt;}
._15{margin-left:-36.437333pt;}
._12{margin-left:-12.666667pt;}
._c{margin-left:-6.458400pt;}
._0{margin-left:-5.516800pt;}
._9{margin-left:-4.401867pt;}
._2{margin-left:-3.372800pt;}
._1{margin-left:-1.659733pt;}
._3{width:1.600267pt;}
._6{width:3.023733pt;}
._5{width:4.207467pt;}
._7{width:5.176533pt;}
._4{width:6.174400pt;}
._8{width:7.430133pt;}
._a{width:8.327467pt;}
._b{width:9.378400pt;}
._d{width:10.994667pt;}
._11{width:25.207467pt;}
._10{width:42.060800pt;}
._1e{width:61.248000pt;}
._38{width:63.829333pt;}
._29{width:92.496000pt;}
._1d{width:97.200000pt;}
._30{width:102.624000pt;}
._20{width:104.112000pt;}
._25{width:105.531733pt;}
._1a{width:108.219733pt;}
._1f{width:110.784000pt;}
._1c{width:111.936000pt;}
._37{width:120.144000pt;}
._28{width:125.856000pt;}
._19{width:132.000000pt;}
._1b{width:134.400000pt;}
._24{width:139.680000pt;}
._13{width:146.784000pt;}
._17{width:152.688000pt;}
._27{width:153.744000pt;}
._18{width:158.928000pt;}
._26{width:166.347733pt;}
._e{width:174.445333pt;}
._f{width:184.021333pt;}
._16{width:188.832000pt;}
._2e{width:200.496000pt;}
._14{width:202.416000pt;}
._2a{width:204.576000pt;}
._2b{width:217.116800pt;}
._2f{width:263.760000pt;}
._2c{width:271.131733pt;}
._36{width:273.408000pt;}
._2d{width:296.496000pt;}
._23{width:357.024000pt;}
._21{width:363.216000pt;}
._33{width:378.699733pt;}
._34{width:382.368000pt;}
._32{width:394.560000pt;}
._22{width:410.784000pt;}
._35{width:427.809867pt;}
._31{width:442.800000pt;}
.fs7{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:43.646800pt;}
.y2{bottom:44.045733pt;}
.y2f{bottom:55.007200pt;}
.y33{bottom:56.446800pt;}
.y1{bottom:56.845733pt;}
.y151{bottom:94.908267pt;}
.y16f{bottom:100.033467pt;}
.y89{bottom:100.047467pt;}
.yba{bottom:100.069467pt;}
.y116{bottom:100.071467pt;}
.yfe{bottom:100.079467pt;}
.y6a{bottom:100.145467pt;}
.y20{bottom:100.839467pt;}
.y150{bottom:109.308267pt;}
.y88{bottom:116.045467pt;}
.yb9{bottom:116.067467pt;}
.y115{bottom:116.069467pt;}
.yfd{bottom:116.077467pt;}
.y16e{bottom:116.093467pt;}
.y69{bottom:116.143467pt;}
.y1f{bottom:126.439467pt;}
.y87{bottom:132.043467pt;}
.yb8{bottom:132.065467pt;}
.y114{bottom:132.067467pt;}
.yfc{bottom:132.075467pt;}
.y16d{bottom:132.091467pt;}
.y68{bottom:132.141467pt;}
.y1e{bottom:139.239467pt;}
.y86{bottom:148.041467pt;}
.y113{bottom:148.065467pt;}
.yfb{bottom:148.073467pt;}
.y16c{bottom:148.089467pt;}
.y67{bottom:148.139467pt;}
.y85{bottom:164.039467pt;}
.yb7{bottom:164.061467pt;}
.y112{bottom:164.063467pt;}
.yfa{bottom:164.071467pt;}
.y16b{bottom:164.087467pt;}
.y66{bottom:164.137467pt;}
.y29{bottom:178.653733pt;}
.y2e{bottom:178.666400pt;}
.y84{bottom:180.037467pt;}
.yb6{bottom:180.059467pt;}
.y111{bottom:180.061467pt;}
.yf9{bottom:180.069467pt;}
.y16a{bottom:180.085467pt;}
.y65{bottom:180.135467pt;}
.y28{bottom:194.651733pt;}
.y2d{bottom:194.664400pt;}
.y83{bottom:196.035467pt;}
.yb5{bottom:196.057467pt;}
.y110{bottom:196.059467pt;}
.yf8{bottom:196.067467pt;}
.y169{bottom:196.083467pt;}
.y187{bottom:196.084800pt;}
.y64{bottom:196.133467pt;}
.y27{bottom:210.649733pt;}
.y2c{bottom:210.662400pt;}
.y82{bottom:212.033467pt;}
.yb4{bottom:212.055467pt;}
.y10f{bottom:212.057467pt;}
.yf7{bottom:212.065467pt;}
.y168{bottom:212.081467pt;}
.y186{bottom:212.082800pt;}
.y63{bottom:212.131467pt;}
.y2b{bottom:226.660400pt;}
.y81{bottom:228.031467pt;}
.yb3{bottom:228.053467pt;}
.y10e{bottom:228.055467pt;}
.yf6{bottom:228.063467pt;}
.y167{bottom:228.079467pt;}
.y185{bottom:228.080800pt;}
.y62{bottom:228.129467pt;}
.y26{bottom:242.645733pt;}
.y2a{bottom:242.658400pt;}
.yb2{bottom:244.051467pt;}
.y10d{bottom:244.053467pt;}
.yf5{bottom:244.061467pt;}
.y166{bottom:244.077467pt;}
.y184{bottom:244.078800pt;}
.y61{bottom:244.127467pt;}
.yb1{bottom:260.049467pt;}
.y10c{bottom:260.051467pt;}
.yf4{bottom:260.059467pt;}
.y165{bottom:260.075467pt;}
.y183{bottom:260.076800pt;}
.y60{bottom:260.125467pt;}
.y80{bottom:267.913600pt;}
.yb0{bottom:276.047467pt;}
.y10b{bottom:276.049467pt;}
.yf3{bottom:276.057467pt;}
.y164{bottom:276.073467pt;}
.y5f{bottom:276.123467pt;}
.y7f{bottom:282.313600pt;}
.yaf{bottom:292.045467pt;}
.y10a{bottom:292.047467pt;}
.yf2{bottom:292.055467pt;}
.y163{bottom:292.071467pt;}
.y182{bottom:292.072800pt;}
.y5e{bottom:292.121467pt;}
.ye5{bottom:304.499467pt;}
.y1c{bottom:308.009733pt;}
.yae{bottom:308.043467pt;}
.y109{bottom:308.045467pt;}
.yf1{bottom:308.053467pt;}
.y162{bottom:308.069467pt;}
.y5d{bottom:308.119467pt;}
.ye4{bottom:318.899467pt;}
.y1b{bottom:322.675067pt;}
.yad{bottom:324.041467pt;}
.y108{bottom:324.043467pt;}
.yf0{bottom:324.051467pt;}
.y161{bottom:324.067467pt;}
.y5c{bottom:324.117467pt;}
.ye3{bottom:333.299467pt;}
.yac{bottom:340.039467pt;}
.y107{bottom:340.041467pt;}
.yef{bottom:340.049467pt;}
.y160{bottom:340.065467pt;}
.y181{bottom:340.066800pt;}
.y5b{bottom:340.115467pt;}
.ye2{bottom:347.699467pt;}
.y1d{bottom:352.005733pt;}
.yab{bottom:356.037467pt;}
.y106{bottom:356.039467pt;}
.yee{bottom:356.047467pt;}
.y15f{bottom:356.063467pt;}
.y180{bottom:356.064800pt;}
.y5a{bottom:356.113467pt;}
.y1a{bottom:366.671067pt;}
.yaa{bottom:372.035467pt;}
.y105{bottom:372.037467pt;}
.yc1{bottom:372.043467pt;}
.yed{bottom:372.045467pt;}
.y15e{bottom:372.061467pt;}
.y17f{bottom:372.062800pt;}
.y59{bottom:372.111467pt;}
.y19{bottom:381.336400pt;}
.y104{bottom:388.035467pt;}
.yc0{bottom:388.041467pt;}
.yec{bottom:388.043467pt;}
.y15d{bottom:388.059467pt;}
.y17e{bottom:388.060800pt;}
.y58{bottom:388.109467pt;}
.y18{bottom:396.001733pt;}
.y103{bottom:404.033467pt;}
.ya9{bottom:404.035467pt;}
.ybf{bottom:404.039467pt;}
.yeb{bottom:404.041467pt;}
.y14f{bottom:404.047467pt;}
.y17d{bottom:404.058800pt;}
.y13e{bottom:404.065467pt;}
.y57{bottom:404.107467pt;}
.y17{bottom:410.667067pt;}
.ya8{bottom:420.033467pt;}
.ybe{bottom:420.037467pt;}
.yea{bottom:420.039467pt;}
.y14e{bottom:420.045467pt;}
.y15c{bottom:420.055467pt;}
.y17c{bottom:420.056800pt;}
.y13d{bottom:420.063467pt;}
.y102{bottom:420.090133pt;}
.y56{bottom:420.105467pt;}
.y16{bottom:425.332400pt;}
.ybd{bottom:436.035467pt;}
.ye9{bottom:436.037467pt;}
.ya7{bottom:436.039467pt;}
.y14d{bottom:436.043467pt;}
.y17b{bottom:436.054800pt;}
.y13c{bottom:436.061467pt;}
.y101{bottom:436.088133pt;}
.y55{bottom:436.103467pt;}
.y15{bottom:439.997733pt;}
.ybc{bottom:452.033467pt;}
.ye8{bottom:452.035467pt;}
.ya6{bottom:452.037467pt;}
.y14c{bottom:452.041467pt;}
.y17a{bottom:452.052800pt;}
.y13b{bottom:452.059467pt;}
.y54{bottom:452.101467pt;}
.y14{bottom:454.663067pt;}
.ye7{bottom:468.033467pt;}
.ya5{bottom:468.035467pt;}
.ye1{bottom:468.037467pt;}
.y14b{bottom:468.039467pt;}
.y15b{bottom:468.049467pt;}
.y179{bottom:468.050800pt;}
.y13a{bottom:468.057467pt;}
.y100{bottom:468.084133pt;}
.y53{bottom:468.099467pt;}
.y13{bottom:469.328400pt;}
.y12{bottom:483.993733pt;}
.ye6{bottom:484.031467pt;}
.ya4{bottom:484.033467pt;}
.ye0{bottom:484.035467pt;}
.y14a{bottom:484.037467pt;}
.y7e{bottom:484.043467pt;}
.y15a{bottom:484.047467pt;}
.y178{bottom:484.048800pt;}
.y139{bottom:484.055467pt;}
.yff{bottom:484.082133pt;}
.y52{bottom:484.097467pt;}
.y11{bottom:498.659067pt;}
.ya3{bottom:500.031467pt;}
.ydf{bottom:500.033467pt;}
.y149{bottom:500.035467pt;}
.y7d{bottom:500.041467pt;}
.y159{bottom:500.045467pt;}
.y177{bottom:500.046800pt;}
.y138{bottom:500.053467pt;}
.y51{bottom:500.095467pt;}
.y10{bottom:514.661733pt;}
.y148{bottom:516.033467pt;}
.yde{bottom:516.037467pt;}
.y7c{bottom:516.039467pt;}
.y158{bottom:516.043467pt;}
.y176{bottom:516.044800pt;}
.y50{bottom:516.093467pt;}
.ya2{bottom:527.670800pt;}
.yf{bottom:529.327067pt;}
.y147{bottom:532.031467pt;}
.ydd{bottom:532.035467pt;}
.y7b{bottom:532.037467pt;}
.y157{bottom:532.041467pt;}
.y175{bottom:532.042800pt;}
.y137{bottom:532.049467pt;}
.y4f{bottom:532.091467pt;}
.y12e{bottom:538.819067pt;}
.ye{bottom:543.992400pt;}
.y7a{bottom:548.035467pt;}
.y156{bottom:548.039467pt;}
.y174{bottom:548.040800pt;}
.y136{bottom:548.047467pt;}
.y4e{bottom:548.089467pt;}
.ya1{bottom:548.203467pt;}
.y12d{bottom:557.803067pt;}
.yd{bottom:558.657733pt;}
.ydc{bottom:564.031467pt;}
.y79{bottom:564.033467pt;}
.y155{bottom:564.037467pt;}
.y173{bottom:564.038800pt;}
.y135{bottom:564.045467pt;}
.y4d{bottom:564.087467pt;}
.ya0{bottom:564.201467pt;}
.y146{bottom:570.819200pt;}
.yc{bottom:573.323067pt;}
.y12c{bottom:576.787067pt;}
.y78{bottom:580.031467pt;}
.y154{bottom:580.035467pt;}
.y172{bottom:580.036800pt;}
.y134{bottom:580.043467pt;}
.y4c{bottom:580.085467pt;}
.y9f{bottom:580.199467pt;}
.yb{bottom:587.988400pt;}
.y145{bottom:589.803200pt;}
.y12b{bottom:595.771067pt;}
.ydb{bottom:596.031467pt;}
.y153{bottom:596.033467pt;}
.y171{bottom:596.034800pt;}
.y133{bottom:596.041467pt;}
.y4b{bottom:596.083467pt;}
.y9e{bottom:596.197467pt;}
.ya{bottom:602.653733pt;}
.y144{bottom:608.787200pt;}
.y152{bottom:612.031467pt;}
.y170{bottom:612.032800pt;}
.yda{bottom:612.033467pt;}
.y132{bottom:612.039467pt;}
.y4a{bottom:612.081467pt;}
.y9d{bottom:612.195467pt;}
.y12a{bottom:615.243200pt;}
.y9{bottom:617.319067pt;}
.y77{bottom:617.727867pt;}
.y143{bottom:627.771200pt;}
.yd9{bottom:628.033467pt;}
.y131{bottom:628.037467pt;}
.y8f{bottom:628.079467pt;}
.y9c{bottom:628.193467pt;}
.y129{bottom:629.643200pt;}
.y8{bottom:631.984400pt;}
.y76{bottom:632.127867pt;}
.y130{bottom:644.035467pt;}
.yd8{bottom:644.067467pt;}
.y49{bottom:644.077467pt;}
.y9b{bottom:644.191467pt;}
.y75{bottom:646.527867pt;}
.y7{bottom:646.649733pt;}
.y142{bottom:647.234133pt;}
.y48{bottom:660.075467pt;}
.y74{bottom:660.927867pt;}
.y6{bottom:661.315067pt;}
.y141{bottom:661.634133pt;}
.y128{bottom:666.819200pt;}
.y5{bottom:675.980400pt;}
.y12f{bottom:676.031467pt;}
.yd7{bottom:676.063467pt;}
.y47{bottom:676.073467pt;}
.y9a{bottom:676.187467pt;}
.y189{bottom:685.299467pt;}
.y127{bottom:685.803200pt;}
.y4{bottom:690.645733pt;}
.yd6{bottom:692.061467pt;}
.y46{bottom:692.071467pt;}
.y188{bottom:699.699467pt;}
.y126{bottom:704.787200pt;}
.yd5{bottom:708.059467pt;}
.y8e{bottom:708.069467pt;}
.y140{bottom:720.134133pt;}
.y3{bottom:722.645733pt;}
.y125{bottom:723.771200pt;}
.yd4{bottom:724.057467pt;}
.y45{bottom:724.067467pt;}
.y99{bottom:724.181467pt;}
.y13f{bottom:734.534133pt;}
.yd3{bottom:740.055467pt;}
.y8d{bottom:740.065467pt;}
.y98{bottom:740.179467pt;}
.y124{bottom:743.239200pt;}
.yd2{bottom:756.053467pt;}
.y8c{bottom:756.063467pt;}
.y97{bottom:756.177467pt;}
.y123{bottom:757.639200pt;}
.y19d{bottom:772.035467pt;}
.yd1{bottom:772.051467pt;}
.y44{bottom:772.061467pt;}
.y96{bottom:772.175467pt;}
.y25{bottom:776.258400pt;}
.y19c{bottom:788.033467pt;}
.yd0{bottom:788.049467pt;}
.y43{bottom:788.059467pt;}
.y95{bottom:788.173467pt;}
.y122{bottom:797.803200pt;}
.y19b{bottom:804.031467pt;}
.ycf{bottom:804.047467pt;}
.y42{bottom:804.057467pt;}
.y94{bottom:804.171467pt;}
.y24{bottom:807.721067pt;}
.y121{bottom:816.787200pt;}
.yce{bottom:820.045467pt;}
.y41{bottom:820.055467pt;}
.y93{bottom:820.169467pt;}
.y120{bottom:835.771200pt;}
.ycd{bottom:836.043467pt;}
.y40{bottom:836.053467pt;}
.y92{bottom:836.167467pt;}
.y23{bottom:843.991733pt;}
.ycc{bottom:852.041467pt;}
.y3f{bottom:852.051467pt;}
.y91{bottom:852.165467pt;}
.y11f{bottom:855.243200pt;}
.ycb{bottom:868.039467pt;}
.y3e{bottom:868.049467pt;}
.y90{bottom:868.163467pt;}
.y22{bottom:869.591733pt;}
.y11e{bottom:869.643200pt;}
.y191{bottom:877.374133pt;}
.yca{bottom:884.037467pt;}
.y3d{bottom:884.047467pt;}
.y73{bottom:884.161467pt;}
.y190{bottom:892.039467pt;}
.y21{bottom:898.391733pt;}
.yc9{bottom:900.035467pt;}
.y3c{bottom:900.045467pt;}
.y72{bottom:900.159467pt;}
.y19a{bottom:902.862800pt;}
.y18f{bottom:906.704800pt;}
.y11d{bottom:910.095200pt;}
.yc8{bottom:916.033467pt;}
.y3b{bottom:916.043467pt;}
.y71{bottom:916.157467pt;}
.y199{bottom:917.528133pt;}
.y18e{bottom:921.370133pt;}
.y11c{bottom:929.079200pt;}
.y3a{bottom:932.041467pt;}
.yc7{bottom:932.049467pt;}
.y70{bottom:932.155467pt;}
.y198{bottom:932.193467pt;}
.y18d{bottom:936.035467pt;}
.y197{bottom:946.858800pt;}
.y39{bottom:948.039467pt;}
.yc6{bottom:948.047467pt;}
.y11b{bottom:948.063200pt;}
.y6f{bottom:948.153467pt;}
.y18c{bottom:950.700800pt;}
.y196{bottom:961.524133pt;}
.y38{bottom:964.037467pt;}
.yc5{bottom:964.045467pt;}
.y6e{bottom:964.151467pt;}
.y18b{bottom:965.366133pt;}
.y11a{bottom:967.047200pt;}
.y32{bottom:976.169067pt;}
.y195{bottom:976.189467pt;}
.y18a{bottom:980.031467pt;}
.y37{bottom:980.035467pt;}
.yc4{bottom:980.043467pt;}
.y6d{bottom:980.149467pt;}
.y119{bottom:985.839200pt;}
.y194{bottom:990.854800pt;}
.y36{bottom:996.033467pt;}
.yc3{bottom:996.041467pt;}
.y6c{bottom:996.147467pt;}
.y31{bottom:1004.169067pt;}
.y118{bottom:1005.299467pt;}
.y193{bottom:1005.520133pt;}
.y35{bottom:1012.031467pt;}
.yc2{bottom:1012.039467pt;}
.y6b{bottom:1012.145467pt;}
.ybb{bottom:1015.459200pt;}
.y117{bottom:1019.699467pt;}
.y192{bottom:1020.185467pt;}
.y30{bottom:1021.502400pt;}
.y8b{bottom:1050.327600pt;}
.y8a{bottom:1062.327600pt;}
.h2{height:29.625000pt;}
.h3{height:34.239583pt;}
.hc{height:36.119792pt;}
.h7{height:37.541667pt;}
.h4{height:39.777344pt;}
.h5{height:39.888021pt;}
.h6{height:40.397135pt;}
.h12{height:42.117188pt;}
.hf{height:42.234375pt;}
.h13{height:42.773438pt;}
.hb{height:44.457031pt;}
.h11{height:44.564729pt;}
.he{height:44.580729pt;}
.ha{height:45.149740pt;}
.h10{height:46.796875pt;}
.hd{height:46.927083pt;}
.h9{height:51.476562pt;}
.h8{height:85.546875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x15{left:-493.358267pt;}
.x0{left:0.000000pt;}
.x3{left:56.692933pt;}
.xa{left:68.029600pt;}
.x2a{left:88.698267pt;}
.x23{left:111.118000pt;}
.x1e{left:181.010133pt;}
.x20{left:182.929067pt;}
.x1b{left:198.466533pt;}
.x22{left:211.477067pt;}
.x21{left:214.753067pt;}
.x24{left:223.817200pt;}
.x1c{left:227.470533pt;}
.x1a{left:230.746533pt;}
.x1d{left:233.362533pt;}
.x27{left:236.358667pt;}
.x25{left:241.721200pt;}
.x1{left:244.382800pt;}
.x19{left:250.093467pt;}
.x1f{left:266.294133pt;}
.x7{left:272.887200pt;}
.x28{left:288.908933pt;}
.x29{left:293.468933pt;}
.x8{left:298.527200pt;}
.x6{left:312.567200pt;}
.x4{left:406.299200pt;}
.x10{left:410.333467pt;}
.xf{left:413.321467pt;}
.x12{left:414.304533pt;}
.x26{left:415.757200pt;}
.x5{left:417.642267pt;}
.x18{left:431.639600pt;}
.x14{left:435.567733pt;}
.x2b{left:438.308933pt;}
.xd{left:453.662533pt;}
.xb{left:471.818533pt;}
.x13{left:480.969200pt;}
.x11{left:493.414267pt;}
.x2{left:511.188133pt;}
.xe{left:514.658533pt;}
.xc{left:518.318533pt;}
.x17{left:586.540667pt;}
.x16{left:650.028667pt;}
.x9{left:723.674533pt;}
}




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