
    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_15d6007a5cc4a8221970a504.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f99d84eebda889bc583eda3b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_643975b921d32563816c28ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8899bc7b72f027278dd610c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_89d0e9328ab034cbb719df73.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_b7888fa190942e0861f9fa92.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c52a3d916f3cb28b2c671f2a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_460eddd8f352d5a977b4b83b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bf8c5433e2724e80eca2a0ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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_ebe0b794981d3d59dfdcdd3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_53de30ad8287f2b12712c3fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_b0edff0ebf5797af27a028ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715820;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_090e2ddcf4659732f6a1e7bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6f3bfc7fe41ab1367e903758.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091309;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_da6f117b3598188077405ef7.woff2')format("woff");}.fff{font-family:fff;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_db5aed55f367f68e0934e2c3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.926270;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_7b5d2bc417610a4608e84df1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.926270;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);}
.v0{vertical-align:0.000000px;}
.ls2e{letter-spacing:-2.407682px;}
.ls61{letter-spacing:-1.944002px;}
.ls49{letter-spacing:-1.792801px;}
.ls2c{letter-spacing:-1.774081px;}
.ls1b{letter-spacing:-1.520641px;}
.ls2d{letter-spacing:-1.457281px;}
.ls2a{letter-spacing:-1.393921px;}
.ls37{letter-spacing:-1.203841px;}
.ls2b{letter-spacing:-1.140481px;}
.ls5d{letter-spacing:-1.075681px;}
.ls28{letter-spacing:-1.013761px;}
.ls1a{letter-spacing:-0.950401px;}
.ls2f{letter-spacing:-0.887041px;}
.ls19{letter-spacing:-0.823681px;}
.ls18{letter-spacing:-0.760321px;}
.ls26{letter-spacing:-0.696961px;}
.ls31{letter-spacing:-0.633601px;}
.ls5f{letter-spacing:-0.594000px;}
.ls25{letter-spacing:-0.570240px;}
.ls32{letter-spacing:-0.506880px;}
.ls5e{letter-spacing:-0.486000px;}
.ls46{letter-spacing:-0.478080px;}
.ls29{letter-spacing:-0.443520px;}
.ls27{letter-spacing:-0.380160px;}
.ls11{letter-spacing:-0.298800px;}
.ls47{letter-spacing:-0.239040px;}
.ls62{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.179280px;}
.ls14{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.119520px;}
.ls17{letter-spacing:-0.063360px;}
.lsf{letter-spacing:-0.059760px;}
.ls16{letter-spacing:-0.054000px;}
.lsc{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001140px;}
.ls55{letter-spacing:0.054000px;}
.ls3f{letter-spacing:0.058920px;}
.ls48{letter-spacing:0.059760px;}
.ls34{letter-spacing:0.099660px;}
.ls5a{letter-spacing:0.107930px;}
.lsb{letter-spacing:0.108000px;}
.ls57{letter-spacing:0.124860px;}
.ls5{letter-spacing:0.144000px;}
.ls60{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.191520px;}
.ls4{letter-spacing:0.216000px;}
.ls56{letter-spacing:0.232860px;}
.ls3c{letter-spacing:0.237420px;}
.ls2{letter-spacing:0.239040px;}
.ls53{letter-spacing:0.243060px;}
.ls10{letter-spacing:0.252720px;}
.ls15{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.282420px;}
.ls40{letter-spacing:0.299280px;}
.ls58{letter-spacing:0.306000px;}
.ls51{letter-spacing:0.321780px;}
.ls45{letter-spacing:0.333060px;}
.ls54{letter-spacing:0.400560px;}
.ls41{letter-spacing:0.406200px;}
.ls4b{letter-spacing:0.445560px;}
.ls44{letter-spacing:0.462420px;}
.ls3d{letter-spacing:0.507420px;}
.ls4a{letter-spacing:0.535980px;}
.ls4d{letter-spacing:0.563700px;}
.ls1d{letter-spacing:0.567060px;}
.ls12{letter-spacing:0.597600px;}
.ls1{letter-spacing:0.602220px;}
.ls3e{letter-spacing:0.655501px;}
.ls3b{letter-spacing:0.666721px;}
.ls4f{letter-spacing:0.687601px;}
.ls4e{letter-spacing:0.779221px;}
.ls4c{letter-spacing:0.824221px;}
.ls59{letter-spacing:0.922501px;}
.ls52{letter-spacing:1.053061px;}
.ls1e{letter-spacing:1.077781px;}
.ls39{letter-spacing:1.120561px;}
.ls50{letter-spacing:1.126201px;}
.ls3a{letter-spacing:1.131781px;}
.ls43{letter-spacing:1.137421px;}
.ls42{letter-spacing:1.227421px;}
.ls8{letter-spacing:1.393921px;}
.ls7{letter-spacing:2.091422px;}
.ls23{letter-spacing:2.534702px;}
.ls5c{letter-spacing:2.748962px;}
.ls6{letter-spacing:2.777702px;}
.ls9{letter-spacing:2.850782px;}
.ls20{letter-spacing:3.294063px;}
.ls5b{letter-spacing:3.466083px;}
.ls1c{letter-spacing:3.615783px;}
.ls36{letter-spacing:3.991563px;}
.ls38{letter-spacing:4.689064px;}
.ls24{letter-spacing:6.145925px;}
.lsa{letter-spacing:6.462065px;}
.ls35{letter-spacing:6.837785px;}
.ls33{letter-spacing:6.843425px;}
.ls22{letter-spacing:8.300287px;}
.ls1f{letter-spacing:9.757208px;}
.ls21{letter-spacing:12.609070px;}
.ls30{letter-spacing:16.220293px;}
.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;}
}
.ws1e{word-spacing:-47.520038px;}
.ws2{word-spacing:-44.820036px;}
.wsa{word-spacing:-40.716033px;}
.ws8{word-spacing:-40.500032px;}
.ws4{word-spacing:-19.459456px;}
.ws21{word-spacing:-17.614094px;}
.ws27{word-spacing:-17.233934px;}
.ws6{word-spacing:-17.210894px;}
.ws20{word-spacing:-17.170574px;}
.ws1f{word-spacing:-16.917134px;}
.ws2d{word-spacing:-16.853773px;}
.ws26{word-spacing:-16.727053px;}
.ws2f{word-spacing:-16.673053px;}
.ws24{word-spacing:-16.663693px;}
.ws1{word-spacing:-16.613293px;}
.ws3{word-spacing:-16.553533px;}
.ws0{word-spacing:-16.493773px;}
.ws22{word-spacing:-16.473613px;}
.ws2c{word-spacing:-16.410253px;}
.ws2e{word-spacing:-16.374253px;}
.ws5{word-spacing:-16.314493px;}
.ws7{word-spacing:-16.272013px;}
.ws23{word-spacing:-16.220173px;}
.ws9{word-spacing:-15.228012px;}
.ws25{word-spacing:-15.206412px;}
.ws34{word-spacing:-15.174012px;}
.ws32{word-spacing:-15.120012px;}
.ws33{word-spacing:-15.012012px;}
.ws30{word-spacing:-14.820492px;}
.ws36{word-spacing:-14.796012px;}
.ws31{word-spacing:-14.526012px;}
.wsf{word-spacing:-14.446092px;}
.wsd{word-spacing:-14.382732px;}
.wse{word-spacing:-13.685771px;}
.wsc{word-spacing:-13.622411px;}
.ws10{word-spacing:-13.495691px;}
.ws35{word-spacing:-13.068010px;}
.wsb{word-spacing:-12.312010px;}
.ws15{word-spacing:-0.810001px;}
.ws38{word-spacing:-0.358560px;}
.ws16{word-spacing:-0.239040px;}
.ws13{word-spacing:-0.108000px;}
.ws18{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.054000px;}
.ws11{word-spacing:0.000000px;}
.ws17{word-spacing:0.108000px;}
.ws37{word-spacing:0.119520px;}
.ws1a{word-spacing:0.216000px;}
.ws19{word-spacing:0.288000px;}
.ws3b{word-spacing:0.324000px;}
.ws3a{word-spacing:0.358560px;}
.ws14{word-spacing:0.702001px;}
.ws2a{word-spacing:0.760321px;}
.ws1b{word-spacing:0.823681px;}
.ws39{word-spacing:0.836641px;}
.ws1c{word-spacing:1.457281px;}
.ws29{word-spacing:3.674883px;}
.ws28{word-spacing:4.371843px;}
.ws1d{word-spacing:5.829125px;}
.ws2b{word-spacing:6.526085px;}
._a{margin-left:-6.260159px;}
._b{margin-left:-4.356710px;}
._9{margin-left:-2.382367px;}
._1{margin-left:-1.325581px;}
._0{width:1.253521px;}
._2{width:2.827435px;}
._3{width:4.627269px;}
._4{width:6.446593px;}
._5{width:8.079217px;}
._8{width:9.136432px;}
._f{width:10.207293px;}
._7{width:11.271992px;}
._6{width:12.290691px;}
._c{width:13.610921px;}
._10{width:15.125661px;}
._e{width:18.637420px;}
._11{width:20.144214px;}
._19{width:21.308228px;}
._15{width:22.602334px;}
._13{width:24.227233px;}
._18{width:25.405713px;}
._14{width:26.669387px;}
._d{width:27.809347px;}
._17{width:29.514925px;}
._12{width:30.598270px;}
._1a{width:31.803273px;}
._1b{width:35.360834px;}
._16{width:37.359035px;}
._1c{width:42.324278px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(232,44,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000029px;}
.fs6{font-size:48.240039px;}
.fs2{font-size:54.000043px;}
.fs0{font-size:59.760048px;}
.fs5{font-size:63.360051px;}
.fs1{font-size:72.000058px;}
.fs3{font-size:84.240067px;}
.fs4{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y1dd{bottom:3.060387px;}
.y9e{bottom:4.320076px;}
.y3d{bottom:4.320077px;}
.y39{bottom:20.520084px;}
.y3f{bottom:23.580078px;}
.y5{bottom:29.700087px;}
.y3e{bottom:73.800000px;}
.y9f{bottom:73.980000px;}
.y4{bottom:78.660000px;}
.ya0{bottom:81.720065px;}
.y40{bottom:81.900066px;}
.y38{bottom:84.960000px;}
.y3{bottom:89.100071px;}
.y3b{bottom:89.460072px;}
.y3a{bottom:90.180072px;}
.y9d{bottom:90.360000px;}
.y3c{bottom:91.620000px;}
.y6{bottom:92.880074px;}
.y2{bottom:110.160088px;}
.y9c{bottom:156.596675px;}
.y77{bottom:157.045626px;}
.y10e{bottom:157.492326px;}
.yd7{bottom:158.414677px;}
.y178{bottom:158.572627px;}
.y143{bottom:160.892529px;}
.y1ac{bottom:168.840135px;}
.y37{bottom:168.843420px;}
.y9b{bottom:173.897839px;}
.y76{bottom:174.501440px;}
.y10d{bottom:175.676541px;}
.yd6{bottom:176.060391px;}
.y177{bottom:176.756841px;}
.y142{bottom:179.076743px;}
.y1ab{bottom:186.097649px;}
.y36{bottom:187.027635px;}
.y9a{bottom:191.543553px;}
.y75{bottom:192.147154px;}
.y10c{bottom:193.671005px;}
.yd5{bottom:193.880405px;}
.y176{bottom:194.941056px;}
.y141{bottom:197.071208px;}
.y1c6{bottom:203.040547px;}
.y1aa{bottom:203.203063px;}
.y35{bottom:205.022099px;}
.y99{bottom:209.189267px;}
.y74{bottom:209.967168px;}
.yd4{bottom:211.526119px;}
.y10b{bottom:211.855219px;}
.y175{bottom:212.935520px;}
.y140{bottom:215.255422px;}
.y1a9{bottom:220.488776px;}
.y34{bottom:223.016563px;}
.y98{bottom:226.645081px;}
.y73{bottom:227.612882px;}
.yd3{bottom:229.346133px;}
.y174{bottom:231.119735px;}
.y13f{bottom:233.249887px;}
.y10a{bottom:234.237187px;}
.y1a8{bottom:237.774490px;}
.y33{bottom:241.200778px;}
.y97{bottom:244.290795px;}
.y72{bottom:245.432896px;}
.yd2{bottom:246.991848px;}
.y173{bottom:249.114199px;}
.y13e{bottom:251.434101px;}
.y109{bottom:252.422902px;}
.y1a7{bottom:255.060204px;}
.y32{bottom:259.195242px;}
.y96{bottom:261.936510px;}
.y71{bottom:263.078610px;}
.yd1{bottom:264.811862px;}
.y172{bottom:267.298414px;}
.y13d{bottom:269.618316px;}
.y108{bottom:270.607116px;}
.y1a6{bottom:272.334218px;}
.y31{bottom:277.379457px;}
.y95{bottom:279.392324px;}
.y70{bottom:280.898625px;}
.yd0{bottom:282.457576px;}
.y171{bottom:285.725929px;}
.y13c{bottom:287.612780px;}
.y1a5{bottom:289.620232px;}
.y107{bottom:292.925784px;}
.y30{bottom:294.659471px;}
.y94{bottom:297.038038px;}
.y6f{bottom:298.545689px;}
.ycf{bottom:300.277590px;}
.y170{bottom:304.084593px;}
.y13b{bottom:305.796995px;}
.y1a4{bottom:306.714545px;}
.y2f{bottom:309.097447px;}
.y106{bottom:310.571498px;}
.y93{bottom:314.683752px;}
.y6e{bottom:316.365703px;}
.yce{bottom:318.272055px;}
.y16f{bottom:322.268808px;}
.y13a{bottom:323.981209px;}
.y1a3{bottom:324.000259px;}
.y2e{bottom:327.281662px;}
.y105{bottom:328.217213px;}
.y92{bottom:332.139566px;}
.y6d{bottom:334.011417px;}
.ycd{bottom:336.092069px;}
.y16e{bottom:340.453022px;}
.y1a2{bottom:341.454573px;}
.y139{bottom:341.975674px;}
.y2d{bottom:345.465876px;}
.y104{bottom:345.673027px;}
.y91{bottom:349.785280px;}
.y6c{bottom:351.831431px;}
.ycc{bottom:354.086533px;}
.y1a1{bottom:358.740287px;}
.y16d{bottom:358.811687px;}
.y138{bottom:360.159888px;}
.y103{bottom:363.318741px;}
.y2c{bottom:363.460341px;}
.y1e4{bottom:364.471792px;}
.y90{bottom:367.430994px;}
.y6b{bottom:369.477146px;}
.ycb{bottom:372.080998px;}
.y1a0{bottom:375.840301px;}
.y16c{bottom:376.995902px;}
.y137{bottom:378.154353px;}
.y102{bottom:380.964455px;}
.y2b{bottom:381.454805px;}
.y1e3{bottom:381.577505px;}
.y8f{bottom:384.886808px;}
.y6a{bottom:387.297160px;}
.yca{bottom:390.075462px;}
.y19f{bottom:393.120314px;}
.y16b{bottom:395.354566px;}
.y136{bottom:396.338567px;}
.y101{bottom:398.420269px;}
.y1e2{bottom:398.863219px;}
.y2a{bottom:399.639020px;}
.y8e{bottom:402.533872px;}
.y69{bottom:405.117174px;}
.yc9{bottom:408.069926px;}
.y19e{bottom:410.208328px;}
.y16a{bottom:413.538781px;}
.y135{bottom:414.522782px;}
.y100{bottom:416.065983px;}
.y1e1{bottom:416.148933px;}
.y29{bottom:417.633484px;}
.y8d{bottom:420.179586px;}
.y68{bottom:422.762888px;}
.yc8{bottom:425.889941px;}
.y19d{bottom:427.674642px;}
.y169{bottom:431.897446px;}
.y134{bottom:432.517246px;}
.y1e0{bottom:433.434647px;}
.yff{bottom:433.711697px;}
.y28{bottom:435.817699px;}
.y8c{bottom:437.635400px;}
.y67{bottom:440.582902px;}
.yc7{bottom:443.884405px;}
.y19c{bottom:444.780356px;}
.y168{bottom:450.081660px;}
.y133{bottom:450.701461px;}
.y1df{bottom:450.720361px;}
.yfe{bottom:451.167511px;}
.y27{bottom:453.810663px;}
.y8b{bottom:455.281114px;}
.y66{bottom:458.228617px;}
.yc6{bottom:461.878870px;}
.y19b{bottom:462.048370px;}
.y1de{bottom:467.640374px;}
.y167{bottom:468.440325px;}
.y132{bottom:468.695925px;}
.yfd{bottom:468.813225px;}
.y26{bottom:471.805127px;}
.y8a{bottom:472.926828px;}
.y65{bottom:476.048631px;}
.y19a{bottom:479.334083px;}
.yc5{bottom:479.873334px;}
.y1c5{bottom:480.240000px;}
.yfc{bottom:486.458939px;}
.y166{bottom:486.626039px;}
.y131{bottom:486.880140px;}
.y25{bottom:489.989342px;}
.y89{bottom:490.572542px;}
.y64{bottom:493.694345px;}
.y199{bottom:496.619797px;}
.yc4{bottom:497.693348px;}
.y1dc{bottom:498.771999px;}
.y1d0{bottom:500.760401px;}
.yfb{bottom:503.914753px;}
.y165{bottom:504.983204px;}
.y130{bottom:505.064354px;}
.y24{bottom:507.983806px;}
.y88{bottom:508.028356px;}
.y63{bottom:511.514359px;}
.y1db{bottom:514.256211px;}
.yc3{bottom:515.687813px;}
.y1cf{bottom:516.240413px;}
.yfa{bottom:521.560467px;}
.y12f{bottom:523.058818px;}
.y23{bottom:526.168021px;}
.y164{bottom:527.301872px;}
.y62{bottom:529.160073px;}
.y1da{bottom:529.740424px;}
.y87{bottom:530.347024px;}
.y1ce{bottom:532.080426px;}
.y198{bottom:532.420176px;}
.yc2{bottom:533.680777px;}
.yf9{bottom:539.206181px;}
.y12e{bottom:541.243033px;}
.y22{bottom:544.162485px;}
.y1d9{bottom:545.220436px;}
.y163{bottom:545.487586px;}
.y61{bottom:546.980088px;}
.y86{bottom:548.531239px;}
.y197{bottom:550.414640px;}
.yc1{bottom:551.675241px;}
.yf8{bottom:556.851895px;}
.y12d{bottom:559.427248px;}
.y1cd{bottom:560.700449px;}
.y1d8{bottom:561.052049px;}
.y21{bottom:562.156950px;}
.y162{bottom:563.671801px;}
.y60{bottom:564.625802px;}
.y85{bottom:566.525703px;}
.y196{bottom:568.598855px;}
.yc0{bottom:569.669706px;}
.yf7{bottom:574.307709px;}
.y1cc{bottom:576.360461px;}
.y1d7{bottom:576.712061px;}
.y12c{bottom:577.421712px;}
.y20{bottom:580.341164px;}
.y5f{bottom:582.445816px;}
.y161{bottom:586.528969px;}
.ybf{bottom:587.489720px;}
.y84{bottom:589.018671px;}
.y195{bottom:591.091823px;}
.yf6{bottom:591.953424px;}
.y1d6{bottom:592.196274px;}
.y12b{bottom:595.605926px;}
.y1cb{bottom:596.340477px;}
.y1f{bottom:598.335629px;}
.y5e{bottom:600.091530px;}
.y160{bottom:605.060584px;}
.ybe{bottom:605.484184px;}
.y83{bottom:606.474485px;}
.yf5{bottom:609.600488px;}
.y1ca{bottom:611.820489px;}
.y1d5{bottom:612.176290px;}
.y12a{bottom:613.600391px;}
.y194{bottom:613.774691px;}
.y1e{bottom:616.519843px;}
.y5d{bottom:617.911544px;}
.ybd{bottom:623.478649px;}
.y15f{bottom:623.593549px;}
.y82{bottom:624.120199px;}
.yf4{bottom:627.054952px;}
.y1c9{bottom:627.292102px;}
.y129{bottom:631.784605px;}
.y193{bottom:631.958906px;}
.y1d4{bottom:632.156306px;}
.y1d{bottom:634.514308px;}
.y5c{bottom:635.558608px;}
.ybc{bottom:641.473113px;}
.y81{bottom:641.765913px;}
.y15e{bottom:641.952214px;}
.y1c8{bottom:643.316315px;}
.yf3{bottom:644.702016px;}
.y1d3{bottom:647.816318px;}
.y192{bottom:649.953370px;}
.y128{bottom:649.968820px;}
.y1c{bottom:652.508772px;}
.y5b{bottom:653.378623px;}
.y80{bottom:659.221727px;}
.ybb{bottom:659.293127px;}
.y15d{bottom:660.485178px;}
.yf2{bottom:662.347730px;}
.y1d2{bottom:663.300531px;}
.y1c7{bottom:667.440534px;}
.y127{bottom:667.963284px;}
.y1b{bottom:670.692987px;}
.y5a{bottom:671.024337px;}
.y191{bottom:672.446338px;}
.y7f{bottom:676.867441px;}
.yba{bottom:677.287592px;}
.y1d1{bottom:678.780543px;}
.y15c{bottom:679.018143px;}
.yf1{bottom:679.803544px;}
.y126{bottom:686.147499px;}
.y1a{bottom:688.687451px;}
.y59{bottom:688.844351px;}
.y7e{bottom:694.513156px;}
.y190{bottom:695.129206px;}
.yb9{bottom:695.282056px;}
.y15b{bottom:697.376808px;}
.yf0{bottom:697.449258px;}
.y125{bottom:704.141963px;}
.y58{bottom:706.490065px;}
.y19{bottom:706.871665px;}
.y1c4{bottom:707.220566px;}
.y7d{bottom:712.158870px;}
.yb8{bottom:713.276521px;}
.y18f{bottom:713.313421px;}
.yef{bottom:715.094972px;}
.y15a{bottom:715.909773px;}
.y1c3{bottom:721.260577px;}
.y124{bottom:722.326178px;}
.y57{bottom:724.310079px;}
.y18{bottom:724.866130px;}
.y7c{bottom:729.614684px;}
.yb7{bottom:730.922235px;}
.y18e{bottom:731.497635px;}
.yee{bottom:732.550786px;}
.y1c2{bottom:732.776386px;}
.y159{bottom:734.442738px;}
.y123{bottom:740.510392px;}
.y56{bottom:741.955794px;}
.y17{bottom:742.860594px;}
.y7b{bottom:747.260398px;}
.yb6{bottom:748.742249px;}
.y18d{bottom:749.492100px;}
.yed{bottom:750.196500px;}
.y1c1{bottom:750.240600px;}
.y158{bottom:752.801402px;}
.y122{bottom:758.504857px;}
.y55{bottom:759.775808px;}
.y7a{bottom:764.906112px;}
.yb5{bottom:766.387963px;}
.y1c0{bottom:767.330714px;}
.y18c{bottom:767.676314px;}
.yec{bottom:767.842214px;}
.y16{bottom:768.960615px;}
.y157{bottom:771.334367px;}
.y121{bottom:776.689071px;}
.y54{bottom:777.421522px;}
.y79{bottom:782.361926px;}
.yb4{bottom:784.207977px;}
.y1bf{bottom:784.616428px;}
.yeb{bottom:785.298028px;}
.y18b{bottom:785.860529px;}
.y156{bottom:789.867332px;}
.y120{bottom:794.873286px;}
.y15{bottom:797.040638px;}
.y53{bottom:799.740190px;}
.y78{bottom:800.007640px;}
.yb3{bottom:801.853691px;}
.y1be{bottom:802.080642px;}
.yea{bottom:802.943742px;}
.y18a{bottom:803.854993px;}
.y155{bottom:808.398947px;}
.y11f{bottom:812.867750px;}
.y52{bottom:817.200204px;}
.y14{bottom:817.740654px;}
.y1bd{bottom:818.996455px;}
.yb2{bottom:819.673706px;}
.ye9{bottom:820.589456px;}
.y189{bottom:822.039208px;}
.y154{bottom:826.757611px;}
.y11e{bottom:831.051965px;}
.y51{bottom:831.622715px;}
.y1bc{bottom:836.460669px;}
.yb1{bottom:837.319420px;}
.ye8{bottom:838.045270px;}
.y188{bottom:840.033672px;}
.y153{bottom:845.290576px;}
.y11d{bottom:849.046429px;}
.y13{bottom:849.776480px;}
.y50{bottom:849.806930px;}
.y1bb{bottom:853.550183px;}
.yb0{bottom:855.139434px;}
.ye7{bottom:855.690985px;}
.y187{bottom:858.217887px;}
.y152{bottom:863.823541px;}
.y12{bottom:864.896492px;}
.y11c{bottom:867.230644px;}
.y4f{bottom:867.991144px;}
.y1ba{bottom:870.836497px;}
.yaf{bottom:872.785148px;}
.ye6{bottom:873.336699px;}
.y186{bottom:876.402101px;}
.y11{bottom:880.380704px;}
.y151{bottom:882.182206px;}
.y11b{bottom:885.414858px;}
.y4e{bottom:885.985609px;}
.y1b9{bottom:888.300711px;}
.yae{bottom:890.605162px;}
.ye5{bottom:890.792513px;}
.y185{bottom:894.396566px;}
.y10{bottom:897.120718px;}
.y150{bottom:900.715171px;}
.y11a{bottom:903.409323px;}
.y4d{bottom:903.978573px;}
.y1b8{bottom:905.567974px;}
.yad{bottom:908.250877px;}
.ye4{bottom:908.438227px;}
.y184{bottom:912.580780px;}
.y14f{bottom:919.248135px;}
.y119{bottom:921.593537px;}
.y4c{bottom:922.162788px;}
.y1b7{bottom:922.675038px;}
.yac{bottom:926.070891px;}
.ye3{bottom:926.085291px;}
.y183{bottom:930.575244px;}
.yf{bottom:931.159045px;}
.y14e{bottom:937.781100px;}
.y118{bottom:939.588002px;}
.y1b6{bottom:939.780752px;}
.y4b{bottom:940.157252px;}
.yab{bottom:943.890905px;}
.ye2{bottom:943.905305px;}
.y182{bottom:948.759459px;}
.y14d{bottom:956.139765px;}
.y1b5{bottom:957.056266px;}
.y117{bottom:957.772216px;}
.y4a{bottom:958.341467px;}
.ye{bottom:958.689167px;}
.yaa{bottom:961.537969px;}
.ye1{bottom:961.551019px;}
.y181{bottom:966.943674px;}
.y1b4{bottom:974.520780px;}
.y14c{bottom:974.672730px;}
.y116{bottom:975.956431px;}
.y49{bottom:976.335931px;}
.ya9{bottom:979.357983px;}
.ye0{bottom:979.371033px;}
.y180{bottom:984.938138px;}
.yd{bottom:986.220789px;}
.y1b3{bottom:991.620793px;}
.y14b{bottom:993.205695px;}
.y115{bottom:993.950895px;}
.y48{bottom:994.330395px;}
.ya8{bottom:997.003698px;}
.ydf{bottom:997.016748px;}
.y17f{bottom:1003.122352px;}
.y1b2{bottom:1008.889407px;}
.y14a{bottom:1011.564359px;}
.y114{bottom:1012.135110px;}
.y47{bottom:1012.514610px;}
.ya7{bottom:1014.823712px;}
.yde{bottom:1014.836762px;}
.y17e{bottom:1021.306567px;}
.yc{bottom:1023.829419px;}
.y1b1{bottom:1025.995121px;}
.y149{bottom:1030.095974px;}
.y113{bottom:1030.319324px;}
.y46{bottom:1030.509074px;}
.ya6{bottom:1032.469426px;}
.ydd{bottom:1032.482476px;}
.yb{bottom:1040.935133px;}
.y1b0{bottom:1043.280835px;}
.y17d{bottom:1043.799535px;}
.y148{bottom:1048.281689px;}
.y112{bottom:1048.313789px;}
.y45{bottom:1048.693289px;}
.ya5{bottom:1050.289440px;}
.ydc{bottom:1050.302490px;}
.ya{bottom:1058.220847px;}
.y1af{bottom:1060.550948px;}
.y147{bottom:1066.465903px;}
.y17c{bottom:1066.482403px;}
.y111{bottom:1066.498003px;}
.y44{bottom:1066.687753px;}
.ya4{bottom:1067.935154px;}
.ydb{bottom:1067.948204px;}
.y9{bottom:1076.940862px;}
.y1ae{bottom:1078.015162px;}
.y146{bottom:1084.458868px;}
.y17b{bottom:1084.476868px;}
.y110{bottom:1084.492468px;}
.y43{bottom:1084.682218px;}
.ya3{bottom:1085.755169px;}
.yda{bottom:1085.768219px;}
.y1ad{bottom:1095.300876px;}
.y145{bottom:1102.644582px;}
.y17a{bottom:1102.661082px;}
.y10f{bottom:1102.676682px;}
.y42{bottom:1102.866432px;}
.ya2{bottom:1103.400883px;}
.yd9{bottom:1103.413933px;}
.y8{bottom:1104.295183px;}
.y144{bottom:1120.828797px;}
.y179{bottom:1120.845297px;}
.y41{bottom:1120.860897px;}
.ya1{bottom:1121.220897px;}
.yd8{bottom:1121.233947px;}
.y7{bottom:1121.400897px;}
.y1{bottom:1206.360965px;}
.h13{height:29.700000px;}
.h24{height:31.904322px;}
.h12{height:33.121404px;}
.h11{height:33.494792px;}
.h14{height:35.998596px;}
.h18{height:36.000000px;}
.h7{height:39.313508px;}
.h2{height:41.493549px;}
.h5{height:42.120000px;}
.h8{height:43.506949px;}
.h15{height:46.127849px;}
.hf{height:46.406287px;}
.h26{height:47.223671px;}
.he{height:47.566444px;}
.hd{height:47.856484px;}
.h4{height:48.761758px;}
.h3{height:49.992227px;}
.h19{height:52.260862px;}
.h6{height:52.418011px;}
.hc{height:52.699261px;}
.h9{height:52.961175px;}
.h23{height:52.977975px;}
.h20{height:52.979175px;}
.h1b{height:52.983975px;}
.h1c{height:52.985175px;}
.h1e{height:53.000775px;}
.h22{height:53.003175px;}
.h1f{height:53.006775px;}
.h1a{height:53.009175px;}
.h21{height:53.012175px;}
.h1d{height:53.051175px;}
.h16{height:55.409107px;}
.h10{height:55.811295px;}
.h17{height:56.151607px;}
.ha{height:61.658135px;}
.hb{height:83.743309px;}
.h25{height:215.280000px;}
.h0{height:1262.879850px;}
.h1{height:1263.000000px;}
.w6{width:27.000000px;}
.w4{width:27.180000px;}
.w2{width:246.780000px;}
.w9{width:252.538560px;}
.w8{width:255.240000px;}
.w7{width:257.220000px;}
.w5{width:264.060000px;}
.w3{width:303.840000px;}
.wa{width:478.440000px;}
.w0{width:892.979850px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:8.100270px;}
.xd{left:10.800073px;}
.x5{left:13.680468px;}
.x1b{left:18.000475px;}
.x11{left:22.320471px;}
.x18{left:27.360474px;}
.x1f{left:77.040000px;}
.xc{left:80.100000px;}
.x7{left:84.959453px;}
.x21{left:87.151195px;}
.xe{left:90.900073px;}
.x9{left:106.200760px;}
.x20{left:108.360087px;}
.x1d{left:116.991694px;}
.x13{left:138.060905px;}
.xa{left:169.873666px;}
.x23{left:329.580000px;}
.x22{left:337.680270px;}
.x2{left:432.900781px;}
.x16{left:439.560000px;}
.xf{left:446.400792px;}
.x14{left:457.217916px;}
.xb{left:463.856336px;}
.x15{left:478.443278px;}
.x8{left:500.401210px;}
.x17{left:564.660000px;}
.x10{left:567.000000px;}
.x4{left:571.140000px;}
.x1e{left:572.940458px;}
.x1a{left:575.820000px;}
.x19{left:631.800505px;}
.x6{left:632.880506px;}
.x12{left:637.380510px;}
.x1c{left:641.880514px;}
.x1{left:705.780565px;}
.x3{left:780.841060px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-2.140162pt;}
.ls61{letter-spacing:-1.728001pt;}
.ls49{letter-spacing:-1.593601pt;}
.ls2c{letter-spacing:-1.576961pt;}
.ls1b{letter-spacing:-1.351681pt;}
.ls2d{letter-spacing:-1.295361pt;}
.ls2a{letter-spacing:-1.239041pt;}
.ls37{letter-spacing:-1.070081pt;}
.ls2b{letter-spacing:-1.013761pt;}
.ls5d{letter-spacing:-0.956161pt;}
.ls28{letter-spacing:-0.901121pt;}
.ls1a{letter-spacing:-0.844801pt;}
.ls2f{letter-spacing:-0.788481pt;}
.ls19{letter-spacing:-0.732161pt;}
.ls18{letter-spacing:-0.675841pt;}
.ls26{letter-spacing:-0.619520pt;}
.ls31{letter-spacing:-0.563200pt;}
.ls5f{letter-spacing:-0.528000pt;}
.ls25{letter-spacing:-0.506880pt;}
.ls32{letter-spacing:-0.450560pt;}
.ls5e{letter-spacing:-0.432000pt;}
.ls46{letter-spacing:-0.424960pt;}
.ls29{letter-spacing:-0.394240pt;}
.ls27{letter-spacing:-0.337920pt;}
.ls11{letter-spacing:-0.265600pt;}
.ls47{letter-spacing:-0.212480pt;}
.ls62{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.159360pt;}
.ls14{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.106240pt;}
.ls17{letter-spacing:-0.056320pt;}
.lsf{letter-spacing:-0.053120pt;}
.ls16{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001013pt;}
.ls55{letter-spacing:0.048000pt;}
.ls3f{letter-spacing:0.052373pt;}
.ls48{letter-spacing:0.053120pt;}
.ls34{letter-spacing:0.088587pt;}
.ls5a{letter-spacing:0.095938pt;}
.lsb{letter-spacing:0.096000pt;}
.ls57{letter-spacing:0.110987pt;}
.ls5{letter-spacing:0.128000pt;}
.ls60{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.170240pt;}
.ls4{letter-spacing:0.192000pt;}
.ls56{letter-spacing:0.206987pt;}
.ls3c{letter-spacing:0.211040pt;}
.ls2{letter-spacing:0.212480pt;}
.ls53{letter-spacing:0.216054pt;}
.ls10{letter-spacing:0.224640pt;}
.ls15{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.251040pt;}
.ls40{letter-spacing:0.266027pt;}
.ls58{letter-spacing:0.272000pt;}
.ls51{letter-spacing:0.286027pt;}
.ls45{letter-spacing:0.296054pt;}
.ls54{letter-spacing:0.356054pt;}
.ls41{letter-spacing:0.361067pt;}
.ls4b{letter-spacing:0.396054pt;}
.ls44{letter-spacing:0.411040pt;}
.ls3d{letter-spacing:0.451040pt;}
.ls4a{letter-spacing:0.476427pt;}
.ls4d{letter-spacing:0.501067pt;}
.ls1d{letter-spacing:0.504054pt;}
.ls12{letter-spacing:0.531200pt;}
.ls1{letter-spacing:0.535307pt;}
.ls3e{letter-spacing:0.582667pt;}
.ls3b{letter-spacing:0.592640pt;}
.ls4f{letter-spacing:0.611200pt;}
.ls4e{letter-spacing:0.692641pt;}
.ls4c{letter-spacing:0.732641pt;}
.ls59{letter-spacing:0.820001pt;}
.ls52{letter-spacing:0.936054pt;}
.ls1e{letter-spacing:0.958027pt;}
.ls39{letter-spacing:0.996054pt;}
.ls50{letter-spacing:1.001067pt;}
.ls3a{letter-spacing:1.006027pt;}
.ls43{letter-spacing:1.011041pt;}
.ls42{letter-spacing:1.091041pt;}
.ls8{letter-spacing:1.239041pt;}
.ls7{letter-spacing:1.859041pt;}
.ls23{letter-spacing:2.253068pt;}
.ls5c{letter-spacing:2.443522pt;}
.ls6{letter-spacing:2.469069pt;}
.ls9{letter-spacing:2.534029pt;}
.ls20{letter-spacing:2.928056pt;}
.ls5b{letter-spacing:3.080962pt;}
.ls1c{letter-spacing:3.214029pt;}
.ls36{letter-spacing:3.548056pt;}
.ls38{letter-spacing:4.168057pt;}
.ls24{letter-spacing:5.463044pt;}
.lsa{letter-spacing:5.744058pt;}
.ls35{letter-spacing:6.078032pt;}
.ls33{letter-spacing:6.083045pt;}
.ls22{letter-spacing:7.378033pt;}
.ls1f{letter-spacing:8.673074pt;}
.ls21{letter-spacing:11.208062pt;}
.ls30{letter-spacing:14.418038pt;}
.ws1e{word-spacing:-42.240034pt;}
.ws2{word-spacing:-39.840032pt;}
.wsa{word-spacing:-36.192029pt;}
.ws8{word-spacing:-36.000029pt;}
.ws4{word-spacing:-17.297294pt;}
.ws21{word-spacing:-15.656973pt;}
.ws27{word-spacing:-15.319052pt;}
.ws6{word-spacing:-15.298572pt;}
.ws20{word-spacing:-15.262732pt;}
.ws1f{word-spacing:-15.037452pt;}
.ws2d{word-spacing:-14.981132pt;}
.ws26{word-spacing:-14.868492pt;}
.ws2f{word-spacing:-14.820492pt;}
.ws24{word-spacing:-14.812172pt;}
.ws1{word-spacing:-14.767372pt;}
.ws3{word-spacing:-14.714252pt;}
.ws0{word-spacing:-14.661132pt;}
.ws22{word-spacing:-14.643212pt;}
.ws2c{word-spacing:-14.586892pt;}
.ws2e{word-spacing:-14.554892pt;}
.ws5{word-spacing:-14.501772pt;}
.ws7{word-spacing:-14.464012pt;}
.ws23{word-spacing:-14.417932pt;}
.ws9{word-spacing:-13.536011pt;}
.ws25{word-spacing:-13.516811pt;}
.ws34{word-spacing:-13.488011pt;}
.ws32{word-spacing:-13.440011pt;}
.ws33{word-spacing:-13.344011pt;}
.ws30{word-spacing:-13.173771pt;}
.ws36{word-spacing:-13.152011pt;}
.ws31{word-spacing:-12.912010pt;}
.wsf{word-spacing:-12.840970pt;}
.wsd{word-spacing:-12.784650pt;}
.wse{word-spacing:-12.165130pt;}
.wsc{word-spacing:-12.108810pt;}
.ws10{word-spacing:-11.996170pt;}
.ws35{word-spacing:-11.616009pt;}
.wsb{word-spacing:-10.944009pt;}
.ws15{word-spacing:-0.720001pt;}
.ws38{word-spacing:-0.318720pt;}
.ws16{word-spacing:-0.212480pt;}
.ws13{word-spacing:-0.096000pt;}
.ws18{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.048000pt;}
.ws11{word-spacing:0.000000pt;}
.ws17{word-spacing:0.096000pt;}
.ws37{word-spacing:0.106240pt;}
.ws1a{word-spacing:0.192000pt;}
.ws19{word-spacing:0.256000pt;}
.ws3b{word-spacing:0.288000pt;}
.ws3a{word-spacing:0.318720pt;}
.ws14{word-spacing:0.624000pt;}
.ws2a{word-spacing:0.675841pt;}
.ws1b{word-spacing:0.732161pt;}
.ws39{word-spacing:0.743681pt;}
.ws1c{word-spacing:1.295361pt;}
.ws29{word-spacing:3.266563pt;}
.ws28{word-spacing:3.886083pt;}
.ws1d{word-spacing:5.181444pt;}
.ws2b{word-spacing:5.800965pt;}
._a{margin-left:-5.564586pt;}
._b{margin-left:-3.872631pt;}
._9{margin-left:-2.117660pt;}
._1{margin-left:-1.178294pt;}
._0{width:1.114241pt;}
._2{width:2.513275pt;}
._3{width:4.113128pt;}
._4{width:5.730305pt;}
._5{width:7.181526pt;}
._8{width:8.121273pt;}
._f{width:9.073150pt;}
._7{width:10.019548pt;}
._6{width:10.925059pt;}
._c{width:12.098596pt;}
._10{width:13.445032pt;}
._e{width:16.566595pt;}
._11{width:17.905968pt;}
._19{width:18.940647pt;}
._15{width:20.090964pt;}
._13{width:21.535318pt;}
._18{width:22.582856pt;}
._14{width:23.706122pt;}
._d{width:24.719420pt;}
._17{width:26.235489pt;}
._12{width:27.198463pt;}
._1a{width:28.269576pt;}
._1b{width:31.431853pt;}
._16{width:33.208031pt;}
._1c{width:37.621581pt;}
.fs7{font-size:32.000026pt;}
.fs6{font-size:42.880034pt;}
.fs2{font-size:48.000038pt;}
.fs0{font-size:53.120042pt;}
.fs5{font-size:56.320045pt;}
.fs1{font-size:64.000051pt;}
.fs3{font-size:74.880060pt;}
.fs4{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y1dd{bottom:2.720344pt;}
.y9e{bottom:3.840067pt;}
.y3d{bottom:3.840068pt;}
.y39{bottom:18.240075pt;}
.y3f{bottom:20.960069pt;}
.y5{bottom:26.400077pt;}
.y3e{bottom:65.600000pt;}
.y9f{bottom:65.760000pt;}
.y4{bottom:69.920000pt;}
.ya0{bottom:72.640058pt;}
.y40{bottom:72.800058pt;}
.y38{bottom:75.520000pt;}
.y3{bottom:79.200063pt;}
.y3b{bottom:79.520064pt;}
.y3a{bottom:80.160064pt;}
.y9d{bottom:80.320000pt;}
.y3c{bottom:81.440000pt;}
.y6{bottom:82.560066pt;}
.y2{bottom:97.920078pt;}
.y9c{bottom:139.197045pt;}
.y77{bottom:139.596112pt;}
.y10e{bottom:139.993179pt;}
.yd7{bottom:140.813046pt;}
.y178{bottom:140.953446pt;}
.y143{bottom:143.015581pt;}
.y1ac{bottom:150.080120pt;}
.y37{bottom:150.083040pt;}
.y9b{bottom:154.575857pt;}
.y76{bottom:155.112391pt;}
.y10d{bottom:156.156925pt;}
.yd6{bottom:156.498125pt;}
.y177{bottom:157.117192pt;}
.y142{bottom:159.179327pt;}
.y1ab{bottom:165.420132pt;}
.y36{bottom:166.246786pt;}
.y9a{bottom:170.260936pt;}
.y75{bottom:170.797470pt;}
.y10c{bottom:172.152004pt;}
.yd5{bottom:172.338138pt;}
.y176{bottom:173.280939pt;}
.y141{bottom:175.174407pt;}
.y1c6{bottom:180.480486pt;}
.y1aa{bottom:180.624944pt;}
.y35{bottom:182.241866pt;}
.y99{bottom:185.946015pt;}
.y74{bottom:186.637483pt;}
.yd4{bottom:188.023217pt;}
.y10b{bottom:188.315751pt;}
.y175{bottom:189.276018pt;}
.y140{bottom:191.338153pt;}
.y1a9{bottom:195.990023pt;}
.y34{bottom:198.236945pt;}
.y98{bottom:201.462295pt;}
.y73{bottom:202.322562pt;}
.yd3{bottom:203.863230pt;}
.y174{bottom:205.439764pt;}
.y13f{bottom:207.333233pt;}
.y10a{bottom:208.210833pt;}
.y1a8{bottom:211.355102pt;}
.y33{bottom:214.400692pt;}
.y97{bottom:217.147374pt;}
.y72{bottom:218.162575pt;}
.yd2{bottom:219.548309pt;}
.y173{bottom:221.434844pt;}
.y13e{bottom:223.496979pt;}
.y109{bottom:224.375913pt;}
.y1a7{bottom:226.720181pt;}
.y32{bottom:230.395771pt;}
.y96{bottom:232.832453pt;}
.y71{bottom:233.847654pt;}
.yd1{bottom:235.388322pt;}
.y172{bottom:237.598590pt;}
.y13d{bottom:239.660725pt;}
.y108{bottom:240.539659pt;}
.y1a6{bottom:242.074860pt;}
.y31{bottom:246.559517pt;}
.y95{bottom:248.348732pt;}
.y70{bottom:249.687666pt;}
.yd0{bottom:251.073401pt;}
.y171{bottom:253.978603pt;}
.y13c{bottom:255.655805pt;}
.y1a5{bottom:257.440206pt;}
.y107{bottom:260.378475pt;}
.y30{bottom:261.919530pt;}
.y94{bottom:264.033811pt;}
.y6f{bottom:265.373946pt;}
.ycf{bottom:266.913414pt;}
.y170{bottom:270.297416pt;}
.y13b{bottom:271.819551pt;}
.y1a4{bottom:272.635151pt;}
.y2f{bottom:274.753286pt;}
.y106{bottom:276.063554pt;}
.y93{bottom:279.718890pt;}
.y6e{bottom:281.213958pt;}
.yce{bottom:282.908493pt;}
.y16f{bottom:286.461163pt;}
.y13a{bottom:287.983297pt;}
.y1a3{bottom:288.000230pt;}
.y2e{bottom:290.917033pt;}
.y105{bottom:291.748633pt;}
.y92{bottom:295.235170pt;}
.y6d{bottom:296.899038pt;}
.ycd{bottom:298.748506pt;}
.y16e{bottom:302.624909pt;}
.y1a2{bottom:303.515176pt;}
.y139{bottom:303.978377pt;}
.y2d{bottom:307.080779pt;}
.y104{bottom:307.264912pt;}
.y91{bottom:310.920249pt;}
.y6c{bottom:312.739050pt;}
.ycc{bottom:314.743585pt;}
.y1a1{bottom:318.880255pt;}
.y16d{bottom:318.943722pt;}
.y138{bottom:320.142123pt;}
.y103{bottom:322.949992pt;}
.y2c{bottom:323.075858pt;}
.y1e4{bottom:323.974926pt;}
.y90{bottom:326.605328pt;}
.y6b{bottom:328.424129pt;}
.ycb{bottom:330.738665pt;}
.y1a0{bottom:334.080267pt;}
.y16c{bottom:335.107468pt;}
.y137{bottom:336.137202pt;}
.y102{bottom:338.635071pt;}
.y2b{bottom:339.070938pt;}
.y1e3{bottom:339.180005pt;}
.y8f{bottom:342.121607pt;}
.y6a{bottom:344.264142pt;}
.yca{bottom:346.733744pt;}
.y19f{bottom:349.440280pt;}
.y16b{bottom:351.426281pt;}
.y136{bottom:352.300949pt;}
.y101{bottom:354.151350pt;}
.y1e2{bottom:354.545084pt;}
.y2a{bottom:355.234684pt;}
.y8e{bottom:357.807886pt;}
.y69{bottom:360.104155pt;}
.yc9{bottom:362.728824pt;}
.y19e{bottom:364.629625pt;}
.y16a{bottom:367.590027pt;}
.y135{bottom:368.464695pt;}
.y100{bottom:369.836429pt;}
.y1e1{bottom:369.910163pt;}
.y29{bottom:371.229764pt;}
.y8d{bottom:373.492965pt;}
.y68{bottom:375.789234pt;}
.yc8{bottom:378.568836pt;}
.y19d{bottom:380.155237pt;}
.y169{bottom:383.908840pt;}
.y134{bottom:384.459774pt;}
.y1e0{bottom:385.275242pt;}
.yff{bottom:385.521508pt;}
.y28{bottom:387.393510pt;}
.y8c{bottom:389.009245pt;}
.y67{bottom:391.629247pt;}
.yc7{bottom:394.563916pt;}
.y19c{bottom:395.360316pt;}
.y168{bottom:400.072587pt;}
.y133{bottom:400.623520pt;}
.y1df{bottom:400.640321pt;}
.yfe{bottom:401.037787pt;}
.y27{bottom:403.387256pt;}
.y8b{bottom:404.694324pt;}
.y66{bottom:407.314326pt;}
.yc6{bottom:410.558995pt;}
.y19b{bottom:410.709662pt;}
.y1de{bottom:415.680333pt;}
.y167{bottom:416.391400pt;}
.y132{bottom:416.618600pt;}
.yfd{bottom:416.722867pt;}
.y26{bottom:419.382336pt;}
.y8a{bottom:420.379403pt;}
.y65{bottom:423.154339pt;}
.y19a{bottom:426.074741pt;}
.yc5{bottom:426.554075pt;}
.y1c5{bottom:426.880000pt;}
.yfc{bottom:432.407946pt;}
.y166{bottom:432.556479pt;}
.y131{bottom:432.782346pt;}
.y25{bottom:435.546082pt;}
.y89{bottom:436.064482pt;}
.y64{bottom:438.839418pt;}
.y199{bottom:441.439820pt;}
.yc4{bottom:442.394087pt;}
.y1dc{bottom:443.352888pt;}
.y1d0{bottom:445.120356pt;}
.yfb{bottom:447.924225pt;}
.y165{bottom:448.873959pt;}
.y130{bottom:448.946092pt;}
.y24{bottom:451.541161pt;}
.y88{bottom:451.580761pt;}
.y63{bottom:454.679430pt;}
.y1db{bottom:457.116632pt;}
.yc3{bottom:458.389167pt;}
.y1cf{bottom:458.880367pt;}
.yfa{bottom:463.609304pt;}
.y12f{bottom:464.941172pt;}
.y23{bottom:467.704907pt;}
.y164{bottom:468.712775pt;}
.y62{bottom:470.364510pt;}
.y1da{bottom:470.880377pt;}
.y87{bottom:471.419577pt;}
.y1ce{bottom:472.960378pt;}
.y198{bottom:473.262379pt;}
.yc2{bottom:474.382913pt;}
.yf9{bottom:479.294383pt;}
.y12e{bottom:481.104918pt;}
.y22{bottom:483.699987pt;}
.y1d9{bottom:484.640388pt;}
.y163{bottom:484.877855pt;}
.y61{bottom:486.204522pt;}
.y86{bottom:487.583323pt;}
.y197{bottom:489.257458pt;}
.yc1{bottom:490.377992pt;}
.yf8{bottom:494.979463pt;}
.y12d{bottom:497.268664pt;}
.y1cd{bottom:498.400399pt;}
.y1d8{bottom:498.712932pt;}
.y21{bottom:499.695066pt;}
.y162{bottom:501.041601pt;}
.y60{bottom:501.889602pt;}
.y85{bottom:503.578403pt;}
.y196{bottom:505.421204pt;}
.yc0{bottom:506.373072pt;}
.yf7{bottom:510.495742pt;}
.y1cc{bottom:512.320410pt;}
.y1d7{bottom:512.632943pt;}
.y12c{bottom:513.263744pt;}
.y20{bottom:515.858813pt;}
.y5f{bottom:517.729614pt;}
.y161{bottom:521.359084pt;}
.ybf{bottom:522.213084pt;}
.y84{bottom:523.572152pt;}
.y195{bottom:525.414954pt;}
.yf6{bottom:526.180821pt;}
.y1d6{bottom:526.396688pt;}
.y12b{bottom:529.427490pt;}
.y1cb{bottom:530.080424pt;}
.y1f{bottom:531.853892pt;}
.y5e{bottom:533.414693pt;}
.y160{bottom:537.831630pt;}
.ybe{bottom:538.208164pt;}
.y83{bottom:539.088431pt;}
.yf5{bottom:541.867100pt;}
.y1ca{bottom:543.840435pt;}
.y1d5{bottom:544.156702pt;}
.y12a{bottom:545.422570pt;}
.y194{bottom:545.577503pt;}
.y1e{bottom:548.017638pt;}
.y5d{bottom:549.254706pt;}
.ybd{bottom:554.203243pt;}
.y15f{bottom:554.305377pt;}
.y82{bottom:554.773510pt;}
.yf4{bottom:557.382179pt;}
.y1c9{bottom:557.592979pt;}
.y129{bottom:561.586316pt;}
.y193{bottom:561.741249pt;}
.y1d4{bottom:561.916716pt;}
.y1d{bottom:564.012718pt;}
.y5c{bottom:564.940985pt;}
.ybc{bottom:570.198323pt;}
.y81{bottom:570.458590pt;}
.y15e{bottom:570.624190pt;}
.y1c8{bottom:571.836724pt;}
.yf3{bottom:573.068458pt;}
.y1d3{bottom:575.836727pt;}
.y192{bottom:577.736329pt;}
.y128{bottom:577.750062pt;}
.y1c{bottom:580.007797pt;}
.y5b{bottom:580.780998pt;}
.y80{bottom:585.974869pt;}
.ybb{bottom:586.038335pt;}
.y15d{bottom:587.097936pt;}
.yf2{bottom:588.753538pt;}
.y1d2{bottom:589.600472pt;}
.y1c7{bottom:593.280475pt;}
.y127{bottom:593.745142pt;}
.y1b{bottom:596.171544pt;}
.y5a{bottom:596.466077pt;}
.y191{bottom:597.730078pt;}
.y7f{bottom:601.659948pt;}
.yba{bottom:602.033415pt;}
.y1d1{bottom:603.360483pt;}
.y15c{bottom:603.571683pt;}
.yf1{bottom:604.269817pt;}
.y126{bottom:609.908888pt;}
.y1a{bottom:612.166623pt;}
.y59{bottom:612.306090pt;}
.y7e{bottom:617.345027pt;}
.y190{bottom:617.892628pt;}
.yb9{bottom:618.028494pt;}
.y15b{bottom:619.890496pt;}
.yf0{bottom:619.954896pt;}
.y125{bottom:625.903967pt;}
.y58{bottom:627.991169pt;}
.y19{bottom:628.330369pt;}
.y1c4{bottom:628.640503pt;}
.y7d{bottom:633.030106pt;}
.yb8{bottom:634.023574pt;}
.y18f{bottom:634.056374pt;}
.yef{bottom:635.639975pt;}
.y15a{bottom:636.364242pt;}
.y1c3{bottom:641.120513pt;}
.y124{bottom:642.067714pt;}
.y57{bottom:643.831182pt;}
.y18{bottom:644.325449pt;}
.y7c{bottom:648.546386pt;}
.yb7{bottom:649.708653pt;}
.y18e{bottom:650.220120pt;}
.yee{bottom:651.156254pt;}
.y1c2{bottom:651.356788pt;}
.y159{bottom:652.837989pt;}
.y123{bottom:658.231460pt;}
.y56{bottom:659.516261pt;}
.y17{bottom:660.320528pt;}
.y7b{bottom:664.231465pt;}
.yb6{bottom:665.548666pt;}
.y18d{bottom:666.215200pt;}
.yed{bottom:666.841333pt;}
.y1c1{bottom:666.880534pt;}
.y158{bottom:669.156802pt;}
.y122{bottom:674.226539pt;}
.y55{bottom:675.356274pt;}
.y7a{bottom:679.916544pt;}
.yb5{bottom:681.233745pt;}
.y1c0{bottom:682.071746pt;}
.y18c{bottom:682.378946pt;}
.yec{bottom:682.526413pt;}
.y16{bottom:683.520547pt;}
.y157{bottom:685.630549pt;}
.y121{bottom:690.390286pt;}
.y54{bottom:691.041353pt;}
.y79{bottom:695.432823pt;}
.yb4{bottom:697.073758pt;}
.y1bf{bottom:697.436825pt;}
.yeb{bottom:698.042692pt;}
.y18b{bottom:698.542692pt;}
.y156{bottom:702.104295pt;}
.y120{bottom:706.554032pt;}
.y15{bottom:708.480567pt;}
.y53{bottom:710.880169pt;}
.y78{bottom:711.117902pt;}
.yb3{bottom:712.758837pt;}
.y1be{bottom:712.960570pt;}
.yea{bottom:713.727771pt;}
.y18a{bottom:714.537772pt;}
.y155{bottom:718.576842pt;}
.y11f{bottom:722.549111pt;}
.y52{bottom:726.400181pt;}
.y14{bottom:726.880582pt;}
.y1bd{bottom:727.996849pt;}
.yb2{bottom:728.598850pt;}
.ye9{bottom:729.412850pt;}
.y189{bottom:730.701518pt;}
.y154{bottom:734.895655pt;}
.y11e{bottom:738.712858pt;}
.y51{bottom:739.220191pt;}
.y1bc{bottom:743.520595pt;}
.yb1{bottom:744.283929pt;}
.ye8{bottom:744.929129pt;}
.y188{bottom:746.696597pt;}
.y153{bottom:751.369401pt;}
.y11d{bottom:754.707937pt;}
.y13{bottom:755.356871pt;}
.y50{bottom:755.383938pt;}
.y1bb{bottom:758.711274pt;}
.yb0{bottom:760.123941pt;}
.ye7{bottom:760.614208pt;}
.y187{bottom:762.860344pt;}
.y152{bottom:767.843148pt;}
.y12{bottom:768.796882pt;}
.y11c{bottom:770.871683pt;}
.y4f{bottom:771.547684pt;}
.y1ba{bottom:774.076886pt;}
.yaf{bottom:775.809021pt;}
.ye6{bottom:776.299288pt;}
.y186{bottom:779.024090pt;}
.y11{bottom:782.560626pt;}
.y151{bottom:784.161961pt;}
.y11b{bottom:787.035430pt;}
.y4e{bottom:787.542763pt;}
.y1b9{bottom:789.600632pt;}
.yae{bottom:791.649033pt;}
.ye5{bottom:791.815567pt;}
.y185{bottom:795.019169pt;}
.y10{bottom:797.440638pt;}
.y150{bottom:800.635707pt;}
.y11a{bottom:803.030509pt;}
.y4d{bottom:803.536509pt;}
.y1b8{bottom:804.949311pt;}
.yad{bottom:807.334113pt;}
.ye4{bottom:807.500646pt;}
.y184{bottom:811.182916pt;}
.y14f{bottom:817.109454pt;}
.y119{bottom:819.194255pt;}
.y4c{bottom:819.700256pt;}
.y1b7{bottom:820.155589pt;}
.yac{bottom:823.174125pt;}
.ye3{bottom:823.186925pt;}
.y183{bottom:827.177995pt;}
.yf{bottom:827.696929pt;}
.y14e{bottom:833.583200pt;}
.y118{bottom:835.189335pt;}
.y1b6{bottom:835.360668pt;}
.y4b{bottom:835.695335pt;}
.yab{bottom:839.014138pt;}
.ye2{bottom:839.026938pt;}
.y182{bottom:843.341741pt;}
.y14d{bottom:849.902013pt;}
.y1b5{bottom:850.716681pt;}
.y117{bottom:851.353081pt;}
.y4a{bottom:851.859081pt;}
.ye{bottom:852.168148pt;}
.yaa{bottom:854.700417pt;}
.ye1{bottom:854.712017pt;}
.y181{bottom:859.505488pt;}
.y1b4{bottom:866.240693pt;}
.y14c{bottom:866.375760pt;}
.y116{bottom:867.516827pt;}
.y49{bottom:867.854161pt;}
.ya9{bottom:870.540430pt;}
.ye0{bottom:870.552030pt;}
.y180{bottom:875.500567pt;}
.yd{bottom:876.640701pt;}
.y1b3{bottom:881.440705pt;}
.y14b{bottom:882.849506pt;}
.y115{bottom:883.511907pt;}
.y48{bottom:883.849240pt;}
.ya8{bottom:886.225509pt;}
.ydf{bottom:886.237109pt;}
.y17f{bottom:891.664313pt;}
.y1b2{bottom:896.790584pt;}
.y14a{bottom:899.168319pt;}
.y114{bottom:899.675653pt;}
.y47{bottom:900.012987pt;}
.ya7{bottom:902.065522pt;}
.yde{bottom:902.077122pt;}
.y17e{bottom:907.828060pt;}
.yc{bottom:910.070595pt;}
.y1b1{bottom:911.995663pt;}
.y149{bottom:915.640866pt;}
.y113{bottom:915.839399pt;}
.y46{bottom:916.008066pt;}
.ya6{bottom:917.750601pt;}
.ydd{bottom:917.762201pt;}
.yb{bottom:925.275674pt;}
.y1b0{bottom:927.360742pt;}
.y17d{bottom:927.821809pt;}
.y148{bottom:931.805945pt;}
.y112{bottom:931.834479pt;}
.y45{bottom:932.171812pt;}
.ya5{bottom:933.590614pt;}
.ydc{bottom:933.602214pt;}
.ya{bottom:940.640753pt;}
.y1af{bottom:942.711954pt;}
.y147{bottom:947.969692pt;}
.y17c{bottom:947.984358pt;}
.y111{bottom:947.998225pt;}
.y44{bottom:948.166892pt;}
.ya4{bottom:949.275693pt;}
.ydb{bottom:949.287293pt;}
.y9{bottom:957.280766pt;}
.y1ae{bottom:958.235700pt;}
.y146{bottom:963.963438pt;}
.y17b{bottom:963.979438pt;}
.y110{bottom:963.993305pt;}
.y43{bottom:964.161971pt;}
.ya3{bottom:965.115705pt;}
.yda{bottom:965.127305pt;}
.y1ad{bottom:973.600779pt;}
.y145{bottom:980.128517pt;}
.y17a{bottom:980.143184pt;}
.y10f{bottom:980.157051pt;}
.y42{bottom:980.325718pt;}
.ya2{bottom:980.800785pt;}
.yd9{bottom:980.812385pt;}
.y8{bottom:981.595719pt;}
.y144{bottom:996.292264pt;}
.y179{bottom:996.306930pt;}
.y41{bottom:996.320797pt;}
.ya1{bottom:996.640797pt;}
.yd8{bottom:996.652397pt;}
.y7{bottom:996.800797pt;}
.y1{bottom:1072.320858pt;}
.h13{height:26.400000pt;}
.h24{height:28.359398pt;}
.h12{height:29.441248pt;}
.h11{height:29.773149pt;}
.h14{height:31.998752pt;}
.h18{height:32.000000pt;}
.h7{height:34.945340pt;}
.h2{height:36.883155pt;}
.h5{height:37.440000pt;}
.h8{height:38.672843pt;}
.h15{height:41.002533pt;}
.hf{height:41.250033pt;}
.h26{height:41.976596pt;}
.he{height:42.281284pt;}
.hd{height:42.539097pt;}
.h4{height:43.343785pt;}
.h3{height:44.437536pt;}
.h19{height:46.454100pt;}
.h6{height:46.593787pt;}
.hc{height:46.843787pt;}
.h9{height:47.076600pt;}
.h23{height:47.091534pt;}
.h20{height:47.092600pt;}
.h1b{height:47.096867pt;}
.h1c{height:47.097934pt;}
.h1e{height:47.111800pt;}
.h22{height:47.113934pt;}
.h1f{height:47.117134pt;}
.h1a{height:47.119267pt;}
.h21{height:47.121934pt;}
.h1d{height:47.156600pt;}
.h16{height:49.252539pt;}
.h10{height:49.610040pt;}
.h17{height:49.912540pt;}
.ha{height:54.807231pt;}
.hb{height:74.438497pt;}
.h25{height:191.360000pt;}
.h0{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.w6{width:24.000000pt;}
.w4{width:24.160000pt;}
.w2{width:219.360000pt;}
.w9{width:224.478720pt;}
.w8{width:226.880000pt;}
.w7{width:228.640000pt;}
.w5{width:234.720000pt;}
.w3{width:270.080000pt;}
.wa{width:425.280000pt;}
.w0{width:793.759867pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:7.200240pt;}
.xd{left:9.600065pt;}
.x5{left:12.160416pt;}
.x1b{left:16.000422pt;}
.x11{left:19.840419pt;}
.x18{left:24.320421pt;}
.x1f{left:68.480000pt;}
.xc{left:71.200000pt;}
.x7{left:75.519514pt;}
.x21{left:77.467729pt;}
.xe{left:80.800065pt;}
.x9{left:94.400676pt;}
.x20{left:96.320077pt;}
.x1d{left:103.992617pt;}
.x13{left:122.720805pt;}
.xa{left:150.998814pt;}
.x23{left:292.960000pt;}
.x22{left:300.160240pt;}
.x2{left:384.800695pt;}
.x16{left:390.720000pt;}
.xf{left:396.800704pt;}
.x14{left:406.415925pt;}
.xb{left:412.316743pt;}
.x15{left:425.282914pt;}
.x8{left:444.801076pt;}
.x17{left:501.920000pt;}
.x10{left:504.000000pt;}
.x4{left:507.680000pt;}
.x1e{left:509.280407pt;}
.x1a{left:511.840000pt;}
.x19{left:561.600449pt;}
.x6{left:562.560450pt;}
.x12{left:566.560453pt;}
.x1c{left:570.560456pt;}
.x1{left:627.360502pt;}
.x3{left:694.080942pt;}
}




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