
    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_b6eb95f121af1bfbca6c9c52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_9a3e8bd19fbad4dd55f5c5d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_6fd9a34d454006e41e8baaaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_d008c106ab36f0b5ac8fd588.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_d4e1962a472c3071efa9c5fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.930000;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_fa93898168c5393b6a1ce08e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_2f31836a96258ebe6e31e394.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026000;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_420d6f82a0f1988fe57242af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_a28badf96f9a7537ee4c1e3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_2f31836a96258ebe6e31e394.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.026000;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_09e59ef508397b866c30e890.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_abdb41c2d80208e3db27e5dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.930000;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_fa93898168c5393b6a1ce08e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_2f31836a96258ebe6e31e394.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.026000;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_fefef8f2fbd0fb871031e68a.woff2')format("woff");}.fff{font-family:fff;line-height:0.930000;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_fa93898168c5393b6a1ce08e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;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_2f31836a96258ebe6e31e394.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.026000;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_0643962e83c21d0ebf0f1440.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.844727;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212503,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225001,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.227502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227502,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.234999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234999,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:26.976000px;}
.v2{vertical-align:53.952000px;}
.ls1d{letter-spacing:-3.147417px;}
.lsd{letter-spacing:-3.115703px;}
.ls19{letter-spacing:-2.447991px;}
.lsa{letter-spacing:-2.423324px;}
.ls1c{letter-spacing:-1.998360px;}
.lsc{letter-spacing:-1.978224px;}
.ls20{letter-spacing:-1.698606px;}
.ls10{letter-spacing:-1.681490px;}
.ls2b{letter-spacing:-1.296000px;}
.ls1f{letter-spacing:-1.248975px;}
.lsf{letter-spacing:-1.236390px;}
.ls13{letter-spacing:-1.134000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.999180px;}
.lse{letter-spacing:-0.989112px;}
.ls12{letter-spacing:-0.882000px;}
.ls3{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.649467px;}
.ls5{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.642923px;}
.ls1a{letter-spacing:-0.599508px;}
.ls4{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.593467px;}
.ls6{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.499590px;}
.ls9{letter-spacing:-0.494556px;}
.ls27{letter-spacing:-0.483624px;}
.ls2a{letter-spacing:-0.482766px;}
.ls16{letter-spacing:-0.481134px;}
.ls15{letter-spacing:-0.465096px;}
.ls28{letter-spacing:-0.451380px;}
.ls29{letter-spacing:-0.450582px;}
.ls14{letter-spacing:-0.449058px;}
.ls22{letter-spacing:-0.442200px;}
.ls21{letter-spacing:-0.431466px;}
.ls17{letter-spacing:-0.384906px;}
.ls2{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.211953px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.154486px;}
.ls23{letter-spacing:0.154759px;}
.ls26{letter-spacing:0.193106px;}
.ls24{letter-spacing:0.193450px;}
.ls11{letter-spacing:0.205284px;}
.ls0{letter-spacing:170.976000px;}
.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;}
}
.ws25{word-spacing:-16.536000px;}
.ws4b{word-spacing:-15.264000px;}
.ws44{word-spacing:-13.419000px;}
.ws24{word-spacing:-13.041000px;}
.ws1{word-spacing:-12.285000px;}
.ws57{word-spacing:-11.826000px;}
.ws4d{word-spacing:-11.232000px;}
.ws4c{word-spacing:-11.178000px;}
.ws4f{word-spacing:-10.530000px;}
.ws0{word-spacing:-10.512000px;}
.wsc{word-spacing:-9.936000px;}
.ws8{word-spacing:-9.360000px;}
.ws2{word-spacing:-9.126000px;}
.ws29{word-spacing:-0.256605px;}
.ws42{word-spacing:-0.241812px;}
.ws49{word-spacing:-0.241383px;}
.ws3b{word-spacing:-0.205284px;}
.ws41{word-spacing:-0.193449px;}
.ws48{word-spacing:-0.193107px;}
.ws51{word-spacing:-0.154759px;}
.ws54{word-spacing:-0.154486px;}
.ws3f{word-spacing:-0.054811px;}
.ws45{word-spacing:-0.054713px;}
.ws4e{word-spacing:-0.054000px;}
.ws40{word-spacing:-0.048362px;}
.ws46{word-spacing:-0.048277px;}
.ws1b{word-spacing:-0.031793px;}
.ws43{word-spacing:-0.029017px;}
.ws4a{word-spacing:-0.028966px;}
.ws2a{word-spacing:-0.028868px;}
.ws1c{word-spacing:0.000000px;}
.ws22{word-spacing:0.211953px;}
.ws28{word-spacing:0.346415px;}
.ws1d{word-spacing:0.378000px;}
.ws36{word-spacing:0.388319px;}
.ws26{word-spacing:0.418586px;}
.ws3c{word-spacing:0.431466px;}
.ws3d{word-spacing:0.442200px;}
.ws10{word-spacing:0.445100px;}
.ws39{word-spacing:0.449058px;}
.ws52{word-spacing:0.450582px;}
.ws50{word-spacing:0.451380px;}
.ws3a{word-spacing:0.481134px;}
.ws53{word-spacing:0.482766px;}
.ws23{word-spacing:0.494556px;}
.ws21{word-spacing:0.576000px;}
.wsf{word-spacing:0.593467px;}
.ws1f{word-spacing:0.594000px;}
.ws20{word-spacing:0.648000px;}
.ws1e{word-spacing:0.756000px;}
.ws37{word-spacing:0.882000px;}
.ws56{word-spacing:1.080000px;}
.ws38{word-spacing:1.134000px;}
.ws55{word-spacing:1.296000px;}
.ws1a{word-spacing:1.632035px;}
.ws35{word-spacing:1.648647px;}
.ws2f{word-spacing:41.865642px;}
.ws34{word-spacing:49.309533px;}
.ws2c{word-spacing:49.359492px;}
.ws30{word-spacing:54.405351px;}
.ws19{word-spacing:54.598982px;}
.ws11{word-spacing:55.785917px;}
.ws2d{word-spacing:56.598551px;}
.ws2e{word-spacing:58.202235px;}
.ws12{word-spacing:58.407064px;}
.ws32{word-spacing:59.701005px;}
.ws14{word-spacing:59.791820px;}
.ws15{word-spacing:60.489144px;}
.ws3{word-spacing:60.720000px;}
.ws33{word-spacing:60.800103px;}
.ws31{word-spacing:61.499529px;}
.ws4{word-spacing:61.824000px;}
.ws13{word-spacing:62.808612px;}
.ws16{word-spacing:65.034114px;}
.ws17{word-spacing:65.924315px;}
.ws27{word-spacing:68.754049px;}
.ws18{word-spacing:71.216064px;}
.ws9{word-spacing:92.961600px;}
.wsd{word-spacing:109.224000px;}
.wsb{word-spacing:118.512000px;}
.wse{word-spacing:119.976000px;}
.ws5{word-spacing:129.936000px;}
.wsa{word-spacing:134.376000px;}
.ws47{word-spacing:139.664204px;}
.ws6{word-spacing:141.360000px;}
.ws7{word-spacing:149.136000px;}
.ws3e{word-spacing:198.382565px;}
.ws2b{word-spacing:1547.330148px;}
._3b{margin-left:-1577.255589px;}
._38{margin-left:-757.353029px;}
._37{margin-left:-261.929350px;}
._4{margin-left:-13.797000px;}
._12{margin-left:-12.789000px;}
._36{margin-left:-10.379700px;}
._19{margin-left:-5.986500px;}
._6{margin-left:-4.088700px;}
._d{margin-left:-2.667300px;}
._0{margin-left:-1.536000px;}
._2{width:1.481700px;}
._10{width:2.537400px;}
._15{width:3.761100px;}
._11{width:5.298300px;}
._9{width:6.526800px;}
._7{width:7.868700px;}
._8{width:8.971200px;}
._a{width:9.976800px;}
._1{width:11.049000px;}
._3{width:12.791400px;}
._14{width:14.949900px;}
._13{width:16.115400px;}
._18{width:17.472600px;}
._31{width:18.739800px;}
._33{width:19.983900px;}
._32{width:21.054600px;}
._35{width:22.705200px;}
._e{width:23.801400px;}
._f{width:25.085400px;}
._c{width:26.214300px;}
._30{width:27.262800px;}
._34{width:28.860300px;}
._5{width:30.560100px;}
._16{width:33.572700px;}
._17{width:34.655100px;}
._b{width:40.149900px;}
._1b{width:62.400000px;}
._3a{width:64.760636px;}
._2f{width:70.990839px;}
._2a{width:129.312000px;}
._29{width:130.368000px;}
._28{width:137.630400px;}
._2b{width:144.576000px;}
._1d{width:151.296000px;}
._1e{width:156.240000px;}
._20{width:159.072000px;}
._1f{width:160.128000px;}
._21{width:161.856000px;}
._22{width:164.208000px;}
._26{width:167.664000px;}
._1c{width:174.096000px;}
._2e{width:183.168000px;}
._24{width:190.992000px;}
._3c{width:194.280751px;}
._3d{width:197.982337px;}
._23{width:201.072000px;}
._27{width:207.744000px;}
._2c{width:212.880000px;}
._25{width:217.296000px;}
._2d{width:220.656000px;}
._1a{width:222.164700px;}
._39{width:567.305099px;}
.fc2{color:transparent;}
.fc1{color:rgb(175,47,95);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:28.867800px;}
.fs1e{font-size:28.966200px;}
.fs19{font-size:29.017200px;}
.fsa{font-size:31.792800px;}
.fsf{font-size:38.490600px;}
.fs1d{font-size:38.621400px;}
.fs18{font-size:38.689800px;}
.fs14{font-size:40.200000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:42.390600px;}
.fs13{font-size:43.146600px;}
.fsc{font-size:44.905800px;}
.fs6{font-size:45.000000px;}
.fs1a{font-size:45.058200px;}
.fs16{font-size:45.138000px;}
.fsd{font-size:46.509600px;}
.fs3{font-size:48.000000px;}
.fse{font-size:48.113400px;}
.fs1c{font-size:48.276600px;}
.fs15{font-size:48.362400px;}
.fs9{font-size:49.455600px;}
.fs12{font-size:49.959000px;}
.fs10{font-size:51.321000px;}
.fs2{font-size:54.000000px;}
.fs1b{font-size:54.713400px;}
.fs17{font-size:54.810600px;}
.fsb{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs20{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.fs1f{font-size:132.000000px;}
.y74{bottom:-15.020550px;}
.y134{bottom:-13.487250px;}
.y158{bottom:-13.265250px;}
.y18a{bottom:-12.309300px;}
.y0{bottom:0.000000px;}
.y144{bottom:1.900650px;}
.y183{bottom:2.987850px;}
.y1{bottom:37.647600px;}
.yaa{bottom:61.499850px;}
.yd3{bottom:61.653600px;}
.y1ac{bottom:62.270100px;}
.yf7{bottom:62.308200px;}
.y1c5{bottom:62.716500px;}
.y11b{bottom:62.787000px;}
.y35{bottom:65.323950px;}
.y4b{bottom:65.502150px;}
.y173{bottom:65.971950px;}
.y1ab{bottom:78.024600px;}
.y143{bottom:81.922500px;}
.y4a{bottom:82.432350px;}
.ya9{bottom:82.494600px;}
.yf6{bottom:83.302950px;}
.y119{bottom:83.939400px;}
.y34{bottom:86.318700px;}
.y149{bottom:92.997600px;}
.y1aa{bottom:93.779100px;}
.y118{bottom:100.440900px;}
.ya8{bottom:103.489350px;}
.yf5{bottom:104.297700px;}
.y33{bottom:107.313450px;}
.y1a9{bottom:109.533600px;}
.y148{bottom:114.438150px;}
.y49{bottom:114.748350px;}
.y117{bottom:116.942400px;}
.ya7{bottom:124.484100px;}
.y1a8{bottom:125.288100px;}
.yf4{bottom:125.292450px;}
.y32{bottom:128.308200px;}
.y11d{bottom:133.366500px;}
.y147{bottom:135.878700px;}
.y12f{bottom:137.050200px;}
.y1a7{bottom:141.042600px;}
.y64{bottom:142.259850px;}
.y63{bottom:142.260000px;}
.ya6{bottom:145.478850px;}
.y12b{bottom:145.492309px;}
.yf3{bottom:146.287200px;}
.y31{bottom:149.302950px;}
.y1a6{bottom:156.797100px;}
.y146{bottom:157.319250px;}
.ya5{bottom:166.473600px;}
.yf2{bottom:167.281950px;}
.y12a{bottom:169.707761px;}
.y30{bottom:170.297700px;}
.y61{bottom:170.744250px;}
.y62{bottom:170.748000px;}
.y1a5{bottom:172.551600px;}
.y145{bottom:178.759800px;}
.y155{bottom:180.085247px;}
.ya4{bottom:187.468350px;}
.yf1{bottom:188.276700px;}
.y1a4{bottom:188.306100px;}
.y156{bottom:188.466000px;}
.y154{bottom:190.560510px;}
.y2f{bottom:191.292450px;}
.y129{bottom:193.923214px;}
.y60{bottom:194.984250px;}
.y5f{bottom:195.005250px;}
.y14f{bottom:200.437284px;}
.ya3{bottom:208.463100px;}
.yf0{bottom:209.271450px;}
.y2e{bottom:212.287200px;}
.y1a3{bottom:214.686000px;}
.y5e{bottom:214.985250px;}
.y128{bottom:218.138667px;}
.y14e{bottom:221.392601px;}
.y14a{bottom:223.291350px;}
.ya2{bottom:229.457850px;}
.yef{bottom:230.266200px;}
.y2d{bottom:233.281950px;}
.y5d{bottom:234.965250px;}
.y14d{bottom:242.347917px;}
.y127{bottom:242.354119px;}
.y151{bottom:245.512200px;}
.ya1{bottom:250.452600px;}
.yee{bottom:251.260950px;}
.y2c{bottom:254.276700px;}
.y5c{bottom:254.945250px;}
.y182{bottom:256.107750px;}
.y1a2{bottom:258.207000px;}
.y150{bottom:259.214850px;}
.y14c{bottom:263.303233px;}
.y126{bottom:266.569572px;}
.y181{bottom:269.786100px;}
.y132{bottom:269.907300px;}
.ya0{bottom:271.447350px;}
.yed{bottom:272.255700px;}
.y5b{bottom:274.925250px;}
.y1a1{bottom:279.201750px;}
.y14b{bottom:284.258550px;}
.y2b{bottom:285.905100px;}
.y153{bottom:286.994837px;}
.y11e{bottom:289.419150px;}
.y9f{bottom:292.442100px;}
.y5a{bottom:293.165250px;}
.yec{bottom:293.250450px;}
.y157{bottom:293.956485px;}
.y152{bottom:297.470100px;}
.y13b{bottom:297.845850px;}
.y125{bottom:297.880141px;}
.y1a0{bottom:300.196500px;}
.y59{bottom:305.165250px;}
.y2a{bottom:306.906600px;}
.y12e{bottom:308.890274px;}
.y9e{bottom:313.436850px;}
.yeb{bottom:314.245200px;}
.y124{bottom:315.763876px;}
.y19f{bottom:321.191250px;}
.y12d{bottom:322.517587px;}
.y172{bottom:322.540350px;}
.y58{bottom:323.405250px;}
.y123{bottom:333.647611px;}
.y9d{bottom:334.431600px;}
.yd2{bottom:334.699350px;}
.yea{bottom:335.239950px;}
.y12c{bottom:336.144900px;}
.y19d{bottom:337.686000px;}
.y171{bottom:339.786600px;}
.y19e{bottom:342.186000px;}
.y57{bottom:343.385250px;}
.y1ad{bottom:351.339000px;}
.y122{bottom:351.531345px;}
.y29{bottom:354.599400px;}
.y9c{bottom:355.426350px;}
.yd1{bottom:355.694100px;}
.ye9{bottom:356.234700px;}
.y1c4{bottom:360.549300px;}
.y19c{bottom:363.196500px;}
.y56{bottom:363.365250px;}
.y121{bottom:369.415080px;}
.y28{bottom:375.594150px;}
.y180{bottom:375.898500px;}
.y9b{bottom:376.421100px;}
.yd0{bottom:376.688850px;}
.ye8{bottom:377.229450px;}
.y1c3{bottom:379.449300px;}
.y55{bottom:383.345250px;}
.y19b{bottom:384.191250px;}
.y120{bottom:387.298815px;}
.y131{bottom:388.279837px;}
.y178{bottom:388.918852px;}
.y1bd{bottom:391.974000px;}
.y27{bottom:396.588900px;}
.y9a{bottom:397.415850px;}
.ycf{bottom:397.683600px;}
.ye7{bottom:398.224200px;}
.y1c2{bottom:398.349300px;}
.y130{bottom:400.308150px;}
.y199{bottom:400.686000px;}
.y54{bottom:403.325250px;}
.y11f{bottom:405.182550px;}
.y19a{bottom:405.186000px;}
.y1bc{bottom:406.972500px;}
.y177{bottom:409.521714px;}
.y133{bottom:411.206843px;}
.y1c1{bottom:417.249300px;}
.y26{bottom:417.583650px;}
.y99{bottom:418.410600px;}
.yce{bottom:418.678350px;}
.ye6{bottom:419.218950px;}
.y1bb{bottom:421.971000px;}
.y53{bottom:423.305250px;}
.y198{bottom:426.196500px;}
.y176{bottom:430.124576px;}
.y1c0{bottom:436.149300px;}
.y1ba{bottom:436.969500px;}
.y25{bottom:438.578400px;}
.y98{bottom:439.405350px;}
.ycd{bottom:439.673100px;}
.y11a{bottom:439.861200px;}
.ye5{bottom:440.213700px;}
.y52{bottom:443.285250px;}
.y197{bottom:447.191250px;}
.y175{bottom:450.727438px;}
.y1bf{bottom:455.049300px;}
.y24{bottom:459.573150px;}
.y97{bottom:460.400100px;}
.ycc{bottom:460.667850px;}
.ye4{bottom:461.208450px;}
.y50{bottom:461.405250px;}
.y4e{bottom:461.417250px;}
.y195{bottom:463.686000px;}
.y4d{bottom:468.173250px;}
.y196{bottom:468.186000px;}
.y174{bottom:471.330300px;}
.y1be{bottom:473.949300px;}
.y187{bottom:474.013997px;}
.y51{bottom:474.905250px;}
.y4f{bottom:474.917250px;}
.y188{bottom:477.141450px;}
.y23{bottom:480.567900px;}
.y96{bottom:481.394850px;}
.ycb{bottom:481.662600px;}
.ye3{bottom:482.203200px;}
.y116{bottom:483.129750px;}
.y186{bottom:484.470741px;}
.y194{bottom:489.222750px;}
.y17f{bottom:491.719135px;}
.y4c{bottom:492.059550px;}
.y22{bottom:501.562650px;}
.y95{bottom:502.389600px;}
.yca{bottom:502.657350px;}
.ye2{bottom:503.197950px;}
.y115{bottom:504.124500px;}
.y193{bottom:510.217500px;}
.y17e{bottom:512.321997px;}
.y48{bottom:516.264150px;}
.y21{bottom:522.557400px;}
.y94{bottom:523.384350px;}
.yc9{bottom:523.652100px;}
.ye1{bottom:524.192700px;}
.y114{bottom:525.119250px;}
.y192{bottom:531.212250px;}
.y47{bottom:531.262650px;}
.y17d{bottom:532.924859px;}
.y20{bottom:543.552150px;}
.y93{bottom:544.379100px;}
.yc8{bottom:544.646850px;}
.ye0{bottom:545.187450px;}
.y113{bottom:546.114000px;}
.y46{bottom:546.261150px;}
.y191{bottom:552.207000px;}
.y17c{bottom:553.527721px;}
.y1f{bottom:564.546900px;}
.y92{bottom:565.373850px;}
.yc7{bottom:565.641600px;}
.ydf{bottom:566.182200px;}
.y112{bottom:567.108750px;}
.y190{bottom:573.201750px;}
.y17b{bottom:574.130583px;}
.y45{bottom:583.865550px;}
.y1e{bottom:585.541650px;}
.y91{bottom:586.368600px;}
.yc6{bottom:586.636350px;}
.yde{bottom:587.176950px;}
.y111{bottom:588.103500px;}
.y185{bottom:589.984406px;}
.y18f{bottom:594.196500px;}
.y17a{bottom:594.733445px;}
.y184{bottom:600.441150px;}
.y43{bottom:601.394100px;}
.y189{bottom:604.869264px;}
.y1d{bottom:606.536400px;}
.y90{bottom:607.363350px;}
.yc5{bottom:607.631100px;}
.ydd{bottom:608.171700px;}
.y110{bottom:609.098250px;}
.y18e{bottom:615.191250px;}
.y179{bottom:615.336307px;}
.y42{bottom:616.392600px;}
.y1c{bottom:627.531150px;}
.y8f{bottom:628.358100px;}
.yc4{bottom:628.625850px;}
.ydc{bottom:629.166450px;}
.y10f{bottom:630.093000px;}
.y41{bottom:631.391100px;}
.y18c{bottom:631.686000px;}
.y170{bottom:631.917600px;}
.y18d{bottom:636.186000px;}
.y40{bottom:646.389600px;}
.y1b{bottom:648.525900px;}
.y16f{bottom:649.163850px;}
.y8e{bottom:649.352850px;}
.yc3{bottom:649.620600px;}
.ydb{bottom:650.161200px;}
.y10e{bottom:661.721400px;}
.y73{bottom:662.316000px;}
.y70{bottom:667.306650px;}
.y18b{bottom:667.815900px;}
.y1a{bottom:669.520650px;}
.y8d{bottom:670.347600px;}
.yc2{bottom:670.615350px;}
.yda{bottom:671.155950px;}
.y69{bottom:676.592090px;}
.y10d{bottom:682.722900px;}
.y19{bottom:690.515400px;}
.y8c{bottom:691.342350px;}
.yc1{bottom:691.610100px;}
.yd9{bottom:692.150700px;}
.y68{bottom:700.087080px;}
.y18{bottom:711.510150px;}
.y8b{bottom:712.337100px;}
.y16e{bottom:712.447350px;}
.yc0{bottom:712.604850px;}
.yd8{bottom:713.145450px;}
.y67{bottom:723.582070px;}
.y1af{bottom:732.040350px;}
.y17{bottom:732.504900px;}
.y8a{bottom:733.331850px;}
.y16d{bottom:733.442100px;}
.y10c{bottom:733.510200px;}
.ybf{bottom:733.599600px;}
.yd7{bottom:734.140200px;}
.y66{bottom:747.077060px;}
.y1ae{bottom:749.286600px;}
.y16{bottom:753.499650px;}
.y89{bottom:754.326600px;}
.y16c{bottom:754.436850px;}
.y10b{bottom:754.504950px;}
.ybe{bottom:754.594350px;}
.yd6{bottom:755.134950px;}
.y71{bottom:770.093400px;}
.y65{bottom:770.572050px;}
.y15{bottom:774.494400px;}
.y88{bottom:775.321350px;}
.y16b{bottom:775.431600px;}
.y10a{bottom:775.499700px;}
.ybd{bottom:775.589100px;}
.yd5{bottom:776.129700px;}
.y6f{bottom:784.671637px;}
.y1b9{bottom:794.983050px;}
.y14{bottom:795.489150px;}
.y87{bottom:796.316100px;}
.y16a{bottom:796.426350px;}
.y109{bottom:796.494450px;}
.ybc{bottom:796.583850px;}
.yd4{bottom:797.124450px;}
.y1b3{bottom:799.706100px;}
.y1ca{bottom:801.218100px;}
.y1b8{bottom:806.533050px;}
.y6e{bottom:810.635880px;}
.y1c9{bottom:812.768100px;}
.y1b2{bottom:814.704600px;}
.y13{bottom:816.483900px;}
.y86{bottom:817.310850px;}
.y169{bottom:817.421100px;}
.y108{bottom:817.489200px;}
.ybb{bottom:817.578600px;}
.y1b7{bottom:818.083050px;}
.y13a{bottom:822.052500px;}
.y1c8{bottom:824.318100px;}
.y13c{bottom:827.368500px;}
.y1b6{bottom:829.633050px;}
.y1b1{bottom:829.703100px;}
.y1c7{bottom:835.868100px;}
.y6d{bottom:836.600122px;}
.y12{bottom:837.478650px;}
.y85{bottom:838.305600px;}
.y168{bottom:838.415850px;}
.y107{bottom:838.483950px;}
.yba{bottom:838.573350px;}
.y1b5{bottom:841.183050px;}
.y1b0{bottom:844.701600px;}
.y1c6{bottom:847.418100px;}
.y142{bottom:850.935000px;}
.y139{bottom:851.593488px;}
.y1b4{bottom:852.733050px;}
.y11{bottom:858.473400px;}
.y84{bottom:859.300350px;}
.y167{bottom:859.410600px;}
.y106{bottom:859.478700px;}
.yb9{bottom:859.568100px;}
.y6c{bottom:862.564365px;}
.y10{bottom:879.468150px;}
.y83{bottom:880.295100px;}
.y166{bottom:880.405350px;}
.y105{bottom:880.473450px;}
.yb8{bottom:880.562850px;}
.y6b{bottom:888.528607px;}
.yf{bottom:900.462900px;}
.y82{bottom:901.289850px;}
.y165{bottom:901.400100px;}
.y104{bottom:901.468200px;}
.yb7{bottom:901.557600px;}
.y72{bottom:903.203147px;}
.y138{bottom:905.524228px;}
.y6a{bottom:914.492850px;}
.ye{bottom:921.457650px;}
.y81{bottom:922.284600px;}
.y164{bottom:922.394850px;}
.y103{bottom:922.462950px;}
.yb6{bottom:922.552350px;}
.y44{bottom:929.955900px;}
.yd{bottom:942.452400px;}
.y80{bottom:943.279350px;}
.y163{bottom:943.389600px;}
.y102{bottom:943.457700px;}
.yb5{bottom:943.547100px;}
.y137{bottom:959.454969px;}
.yc{bottom:963.447150px;}
.y7f{bottom:964.274100px;}
.y3f{bottom:964.318200px;}
.y162{bottom:964.384350px;}
.y101{bottom:964.452450px;}
.yb4{bottom:964.541850px;}
.yb{bottom:984.441900px;}
.y7e{bottom:985.268850px;}
.y3e{bottom:985.312950px;}
.y161{bottom:985.379100px;}
.y100{bottom:985.447200px;}
.yb3{bottom:985.536600px;}
.ya{bottom:1005.436650px;}
.y7d{bottom:1006.263600px;}
.y3d{bottom:1006.307700px;}
.y160{bottom:1006.373850px;}
.yff{bottom:1006.441950px;}
.yb2{bottom:1006.531350px;}
.y136{bottom:1013.385709px;}
.y9{bottom:1026.431400px;}
.y7c{bottom:1027.258350px;}
.y3c{bottom:1027.302450px;}
.y15f{bottom:1027.368600px;}
.yfe{bottom:1027.436700px;}
.yb1{bottom:1027.526100px;}
.y8{bottom:1047.426150px;}
.y7b{bottom:1048.253100px;}
.y3b{bottom:1048.297200px;}
.y15e{bottom:1048.363350px;}
.yfd{bottom:1048.431450px;}
.yb0{bottom:1048.520850px;}
.y141{bottom:1055.772498px;}
.y140{bottom:1065.760935px;}
.y135{bottom:1067.316450px;}
.y7{bottom:1068.420900px;}
.y7a{bottom:1069.247850px;}
.y3a{bottom:1069.291950px;}
.y15d{bottom:1069.358100px;}
.yfc{bottom:1069.426200px;}
.yaf{bottom:1069.515600px;}
.y13f{bottom:1081.088765px;}
.y6{bottom:1089.415650px;}
.y79{bottom:1090.242600px;}
.y39{bottom:1090.286700px;}
.y15c{bottom:1090.352850px;}
.yfb{bottom:1090.420950px;}
.yae{bottom:1090.510350px;}
.y13e{bottom:1092.447108px;}
.y13d{bottom:1103.805450px;}
.y5{bottom:1110.410400px;}
.y78{bottom:1111.237350px;}
.y38{bottom:1111.281450px;}
.y15b{bottom:1111.347600px;}
.yfa{bottom:1111.415700px;}
.yad{bottom:1111.505100px;}
.y77{bottom:1132.232100px;}
.y37{bottom:1132.276200px;}
.y15a{bottom:1132.342350px;}
.yf9{bottom:1132.410450px;}
.yac{bottom:1132.499850px;}
.y11c{bottom:1135.980600px;}
.y4{bottom:1139.914350px;}
.y76{bottom:1153.226850px;}
.y36{bottom:1153.270950px;}
.y159{bottom:1153.337100px;}
.yf8{bottom:1153.405200px;}
.yab{bottom:1153.494600px;}
.y3{bottom:1154.914350px;}
.y2{bottom:1193.811000px;}
.y75{bottom:1200.561000px;}
.h1c{height:23.238579px;}
.h2d{height:23.317791px;}
.h26{height:23.358846px;}
.h12{height:25.593204px;}
.h1a{height:27.751723px;}
.h2c{height:27.846029px;}
.h25{height:27.895346px;}
.h20{height:28.984200px;}
.hf{height:30.563623px;}
.h1f{height:31.108699px;}
.h17{height:32.377082px;}
.ha{height:32.445000px;}
.h27{height:32.486962px;}
.h23{height:32.544498px;}
.h18{height:33.533422px;}
.h31{height:33.810000px;}
.hd{height:34.080000px;}
.h14{height:34.608000px;}
.h2a{height:34.807429px;}
.h22{height:34.869290px;}
.h19{height:34.978442px;}
.h2b{height:35.097088px;}
.h10{height:35.657488px;}
.h1d{height:36.020439px;}
.h1b{height:37.002441px;}
.h4{height:38.340000px;}
.h5{height:38.640000px;}
.h8{height:38.934000px;}
.h29{height:39.448361px;}
.h24{height:39.518443px;}
.h15{height:41.097000px;}
.h13{height:43.260000px;}
.h30{height:43.470000px;}
.h9{height:44.730000px;}
.h2{height:48.300000px;}
.h6{height:50.715000px;}
.h2f{height:51.912000px;}
.h7{height:56.238000px;}
.he{height:58.080000px;}
.hb{height:65.616000px;}
.h3{height:69.216000px;}
.hc{height:92.592000px;}
.h2e{height:106.260000px;}
.h21{height:233.914500px;}
.h28{height:251.692500px;}
.h11{height:263.799000px;}
.h16{height:299.853000px;}
.h1e{height:309.820500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:395.898000px;}
.w4{width:416.664000px;}
.w6{width:435.454500px;}
.w5{width:440.206500px;}
.w3{width:529.248000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:8.538000px;}
.x41{left:13.128750px;}
.x3b{left:27.000000px;}
.x38{left:30.742050px;}
.x39{left:37.149292px;}
.x40{left:39.684000px;}
.x42{left:42.727800px;}
.x4e{left:44.673000px;}
.x4d{left:47.710500px;}
.x3a{left:49.963775px;}
.x26{left:54.000000px;}
.x2{left:59.527500px;}
.x4a{left:64.543650px;}
.x3d{left:68.262300px;}
.x53{left:75.980250px;}
.x32{left:77.889329px;}
.x3e{left:80.253600px;}
.x31{left:86.303979px;}
.x45{left:92.517300px;}
.x44{left:95.821050px;}
.x47{left:101.441773px;}
.x4f{left:102.715500px;}
.x46{left:105.417150px;}
.x30{left:108.831300px;}
.x5c{left:110.864700px;}
.x5b{left:145.305750px;}
.x5e{left:150.280950px;}
.x59{left:172.999650px;}
.x51{left:182.274501px;}
.x50{left:186.242850px;}
.x5a{left:190.639650px;}
.x25{left:219.586050px;}
.x52{left:222.546966px;}
.x49{left:224.252871px;}
.x48{left:225.519962px;}
.x3f{left:254.692950px;}
.x55{left:271.952550px;}
.x4c{left:276.776400px;}
.x54{left:327.030639px;}
.x2b{left:337.606500px;}
.x2e{left:340.630968px;}
.x4b{left:341.696474px;}
.x2f{left:345.713204px;}
.x29{left:351.893550px;}
.x35{left:362.277900px;}
.x37{left:363.919650px;}
.x43{left:418.456650px;}
.x34{left:439.606950px;}
.x24{left:448.795500px;}
.x1f{left:451.811559px;}
.x1e{left:454.852050px;}
.x3{left:458.223000px;}
.x4{left:461.410200px;}
.x1c{left:464.417400px;}
.x12{left:465.672900px;}
.x20{left:468.586500px;}
.x21{left:470.601900px;}
.xe{left:478.965300px;}
.xd{left:484.494300px;}
.x10{left:485.793900px;}
.x14{left:486.808500px;}
.xf{left:488.119500px;}
.x11{left:491.824500px;}
.x13{left:494.640300px;}
.x56{left:496.504500px;}
.x23{left:499.125150px;}
.x57{left:500.883000px;}
.x2c{left:502.528500px;}
.x60{left:509.385750px;}
.x58{left:522.144750px;}
.x5d{left:543.668550px;}
.x5f{left:545.344500px;}
.x6{left:552.974100px;}
.x19{left:560.422050px;}
.x15{left:561.434250px;}
.x5{left:577.473000px;}
.x33{left:598.951800px;}
.x7{left:608.959500px;}
.x16{left:610.756950px;}
.x1d{left:612.578250px;}
.x2a{left:634.066500px;}
.x8{left:654.810300px;}
.x9{left:657.591900px;}
.x36{left:706.898415px;}
.x1a{left:707.904450px;}
.x28{left:709.285200px;}
.x17{left:711.618000px;}
.x22{left:727.783384px;}
.xa{left:755.358300px;}
.x1b{left:757.260600px;}
.x18{left:760.788450px;}
.xb{left:801.209100px;}
.xc{left:803.990700px;}
.x1{left:824.273550px;}
.x2d{left:840.135000px;}
.x27{left:845.574750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:23.978667pt;}
.v2{vertical-align:47.957333pt;}
.ls1d{letter-spacing:-2.797704pt;}
.lsd{letter-spacing:-2.769514pt;}
.ls19{letter-spacing:-2.175992pt;}
.lsa{letter-spacing:-2.154066pt;}
.ls1c{letter-spacing:-1.776320pt;}
.lsc{letter-spacing:-1.758421pt;}
.ls20{letter-spacing:-1.509872pt;}
.ls10{letter-spacing:-1.494658pt;}
.ls2b{letter-spacing:-1.152000pt;}
.ls1f{letter-spacing:-1.110200pt;}
.lsf{letter-spacing:-1.099013pt;}
.ls13{letter-spacing:-1.008000pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.888160pt;}
.lse{letter-spacing:-0.879211pt;}
.ls12{letter-spacing:-0.784000pt;}
.ls3{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.577304pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.571487pt;}
.ls1a{letter-spacing:-0.532896pt;}
.ls4{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.527526pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.444080pt;}
.ls9{letter-spacing:-0.439605pt;}
.ls27{letter-spacing:-0.429888pt;}
.ls2a{letter-spacing:-0.429125pt;}
.ls16{letter-spacing:-0.427675pt;}
.ls15{letter-spacing:-0.413419pt;}
.ls28{letter-spacing:-0.401227pt;}
.ls29{letter-spacing:-0.400517pt;}
.ls14{letter-spacing:-0.399163pt;}
.ls22{letter-spacing:-0.393067pt;}
.ls21{letter-spacing:-0.383525pt;}
.ls17{letter-spacing:-0.342139pt;}
.ls2{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.188403pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.137321pt;}
.ls23{letter-spacing:0.137564pt;}
.ls26{letter-spacing:0.171650pt;}
.ls24{letter-spacing:0.171955pt;}
.ls11{letter-spacing:0.182475pt;}
.ls0{letter-spacing:151.978667pt;}
.ws25{word-spacing:-14.698667pt;}
.ws4b{word-spacing:-13.568000pt;}
.ws44{word-spacing:-11.928000pt;}
.ws24{word-spacing:-11.592000pt;}
.ws1{word-spacing:-10.920000pt;}
.ws57{word-spacing:-10.512000pt;}
.ws4d{word-spacing:-9.984000pt;}
.ws4c{word-spacing:-9.936000pt;}
.ws4f{word-spacing:-9.360000pt;}
.ws0{word-spacing:-9.344000pt;}
.wsc{word-spacing:-8.832000pt;}
.ws8{word-spacing:-8.320000pt;}
.ws2{word-spacing:-8.112000pt;}
.ws29{word-spacing:-0.228093pt;}
.ws42{word-spacing:-0.214944pt;}
.ws49{word-spacing:-0.214563pt;}
.ws3b{word-spacing:-0.182475pt;}
.ws41{word-spacing:-0.171955pt;}
.ws48{word-spacing:-0.171651pt;}
.ws51{word-spacing:-0.137564pt;}
.ws54{word-spacing:-0.137321pt;}
.ws3f{word-spacing:-0.048721pt;}
.ws45{word-spacing:-0.048634pt;}
.ws4e{word-spacing:-0.048000pt;}
.ws40{word-spacing:-0.042989pt;}
.ws46{word-spacing:-0.042913pt;}
.ws1b{word-spacing:-0.028260pt;}
.ws43{word-spacing:-0.025793pt;}
.ws4a{word-spacing:-0.025748pt;}
.ws2a{word-spacing:-0.025660pt;}
.ws1c{word-spacing:0.000000pt;}
.ws22{word-spacing:0.188403pt;}
.ws28{word-spacing:0.307925pt;}
.ws1d{word-spacing:0.336000pt;}
.ws36{word-spacing:0.345173pt;}
.ws26{word-spacing:0.372077pt;}
.ws3c{word-spacing:0.383525pt;}
.ws3d{word-spacing:0.393067pt;}
.ws10{word-spacing:0.395645pt;}
.ws39{word-spacing:0.399163pt;}
.ws52{word-spacing:0.400517pt;}
.ws50{word-spacing:0.401227pt;}
.ws3a{word-spacing:0.427675pt;}
.ws53{word-spacing:0.429125pt;}
.ws23{word-spacing:0.439605pt;}
.ws21{word-spacing:0.512000pt;}
.wsf{word-spacing:0.527526pt;}
.ws1f{word-spacing:0.528000pt;}
.ws20{word-spacing:0.576000pt;}
.ws1e{word-spacing:0.672000pt;}
.ws37{word-spacing:0.784000pt;}
.ws56{word-spacing:0.960000pt;}
.ws38{word-spacing:1.008000pt;}
.ws55{word-spacing:1.152000pt;}
.ws1a{word-spacing:1.450698pt;}
.ws35{word-spacing:1.465464pt;}
.ws2f{word-spacing:37.213904pt;}
.ws34{word-spacing:43.830696pt;}
.ws2c{word-spacing:43.875104pt;}
.ws30{word-spacing:48.360312pt;}
.ws19{word-spacing:48.532429pt;}
.ws11{word-spacing:49.587482pt;}
.ws2d{word-spacing:50.309823pt;}
.ws2e{word-spacing:51.735320pt;}
.ws12{word-spacing:51.917390pt;}
.ws32{word-spacing:53.067560pt;}
.ws14{word-spacing:53.148285pt;}
.ws15{word-spacing:53.768128pt;}
.ws3{word-spacing:53.973333pt;}
.ws33{word-spacing:54.044536pt;}
.ws31{word-spacing:54.666248pt;}
.ws4{word-spacing:54.954667pt;}
.ws13{word-spacing:55.829877pt;}
.ws16{word-spacing:57.808101pt;}
.ws17{word-spacing:58.599391pt;}
.ws27{word-spacing:61.114710pt;}
.ws18{word-spacing:63.303168pt;}
.ws9{word-spacing:82.632533pt;}
.wsd{word-spacing:97.088000pt;}
.wsb{word-spacing:105.344000pt;}
.wse{word-spacing:106.645333pt;}
.ws5{word-spacing:115.498667pt;}
.wsa{word-spacing:119.445333pt;}
.ws47{word-spacing:124.145959pt;}
.ws6{word-spacing:125.653333pt;}
.ws7{word-spacing:132.565333pt;}
.ws3e{word-spacing:176.340058pt;}
.ws2b{word-spacing:1375.404576pt;}
._3b{margin-left:-1402.004968pt;}
._38{margin-left:-673.202693pt;}
._37{margin-left:-232.826089pt;}
._4{margin-left:-12.264000pt;}
._12{margin-left:-11.368000pt;}
._36{margin-left:-9.226400pt;}
._19{margin-left:-5.321333pt;}
._6{margin-left:-3.634400pt;}
._d{margin-left:-2.370933pt;}
._0{margin-left:-1.365333pt;}
._2{width:1.317067pt;}
._10{width:2.255467pt;}
._15{width:3.343200pt;}
._11{width:4.709600pt;}
._9{width:5.801600pt;}
._7{width:6.994400pt;}
._8{width:7.974400pt;}
._a{width:8.868267pt;}
._1{width:9.821333pt;}
._3{width:11.370133pt;}
._14{width:13.288800pt;}
._13{width:14.324800pt;}
._18{width:15.531200pt;}
._31{width:16.657600pt;}
._33{width:17.763467pt;}
._32{width:18.715200pt;}
._35{width:20.182400pt;}
._e{width:21.156800pt;}
._f{width:22.298133pt;}
._c{width:23.301600pt;}
._30{width:24.233600pt;}
._34{width:25.653600pt;}
._5{width:27.164533pt;}
._16{width:29.842400pt;}
._17{width:30.804533pt;}
._b{width:35.688800pt;}
._1b{width:55.466667pt;}
._3a{width:57.565010pt;}
._2f{width:63.102968pt;}
._2a{width:114.944000pt;}
._29{width:115.882667pt;}
._28{width:122.338133pt;}
._2b{width:128.512000pt;}
._1d{width:134.485333pt;}
._1e{width:138.880000pt;}
._20{width:141.397333pt;}
._1f{width:142.336000pt;}
._21{width:143.872000pt;}
._22{width:145.962667pt;}
._26{width:149.034667pt;}
._1c{width:154.752000pt;}
._2e{width:162.816000pt;}
._24{width:169.770667pt;}
._3c{width:172.694001pt;}
._3d{width:175.984299pt;}
._23{width:178.730667pt;}
._27{width:184.661333pt;}
._2c{width:189.226667pt;}
._25{width:193.152000pt;}
._2d{width:196.138667pt;}
._1a{width:197.479733pt;}
._39{width:504.271199pt;}
.fs11{font-size:25.660267pt;}
.fs1e{font-size:25.747733pt;}
.fs19{font-size:25.793067pt;}
.fsa{font-size:28.260267pt;}
.fsf{font-size:34.213867pt;}
.fs1d{font-size:34.330133pt;}
.fs18{font-size:34.390933pt;}
.fs14{font-size:35.733333pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:37.680533pt;}
.fs13{font-size:38.352533pt;}
.fsc{font-size:39.916267pt;}
.fs6{font-size:40.000000pt;}
.fs1a{font-size:40.051733pt;}
.fs16{font-size:40.122667pt;}
.fsd{font-size:41.341867pt;}
.fs3{font-size:42.666667pt;}
.fse{font-size:42.767467pt;}
.fs1c{font-size:42.912533pt;}
.fs15{font-size:42.988800pt;}
.fs9{font-size:43.960533pt;}
.fs12{font-size:44.408000pt;}
.fs10{font-size:45.618667pt;}
.fs2{font-size:48.000000pt;}
.fs1b{font-size:48.634133pt;}
.fs17{font-size:48.720533pt;}
.fsb{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs20{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.fs1f{font-size:117.333333pt;}
.y74{bottom:-13.351600pt;}
.y134{bottom:-11.988667pt;}
.y158{bottom:-11.791333pt;}
.y18a{bottom:-10.941600pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:1.689467pt;}
.y183{bottom:2.655867pt;}
.y1{bottom:33.464533pt;}
.yaa{bottom:54.666533pt;}
.yd3{bottom:54.803200pt;}
.y1ac{bottom:55.351200pt;}
.yf7{bottom:55.385067pt;}
.y1c5{bottom:55.748000pt;}
.y11b{bottom:55.810667pt;}
.y35{bottom:58.065733pt;}
.y4b{bottom:58.224133pt;}
.y173{bottom:58.641733pt;}
.y1ab{bottom:69.355200pt;}
.y143{bottom:72.820000pt;}
.y4a{bottom:73.273200pt;}
.ya9{bottom:73.328533pt;}
.yf6{bottom:74.047067pt;}
.y119{bottom:74.612800pt;}
.y34{bottom:76.727733pt;}
.y149{bottom:82.664533pt;}
.y1aa{bottom:83.359200pt;}
.y118{bottom:89.280800pt;}
.ya8{bottom:91.990533pt;}
.yf5{bottom:92.709067pt;}
.y33{bottom:95.389733pt;}
.y1a9{bottom:97.363200pt;}
.y148{bottom:101.722800pt;}
.y49{bottom:101.998533pt;}
.y117{bottom:103.948800pt;}
.ya7{bottom:110.652533pt;}
.y1a8{bottom:111.367200pt;}
.yf4{bottom:111.371067pt;}
.y32{bottom:114.051733pt;}
.y11d{bottom:118.548000pt;}
.y147{bottom:120.781067pt;}
.y12f{bottom:121.822400pt;}
.y1a7{bottom:125.371200pt;}
.y64{bottom:126.453200pt;}
.y63{bottom:126.453333pt;}
.ya6{bottom:129.314533pt;}
.y12b{bottom:129.326497pt;}
.yf3{bottom:130.033067pt;}
.y31{bottom:132.713733pt;}
.y1a6{bottom:139.375200pt;}
.y146{bottom:139.839333pt;}
.ya5{bottom:147.976533pt;}
.yf2{bottom:148.695067pt;}
.y12a{bottom:150.851343pt;}
.y30{bottom:151.375733pt;}
.y61{bottom:151.772667pt;}
.y62{bottom:151.776000pt;}
.y1a5{bottom:153.379200pt;}
.y145{bottom:158.897600pt;}
.y155{bottom:160.075775pt;}
.ya4{bottom:166.638533pt;}
.yf1{bottom:167.357067pt;}
.y1a4{bottom:167.383200pt;}
.y156{bottom:167.525333pt;}
.y154{bottom:169.387120pt;}
.y2f{bottom:170.037733pt;}
.y129{bottom:172.376190pt;}
.y60{bottom:173.319333pt;}
.y5f{bottom:173.338000pt;}
.y14f{bottom:178.166475pt;}
.ya3{bottom:185.300533pt;}
.yf0{bottom:186.019067pt;}
.y2e{bottom:188.699733pt;}
.y1a3{bottom:190.832000pt;}
.y5e{bottom:191.098000pt;}
.y128{bottom:193.901037pt;}
.y14e{bottom:196.793423pt;}
.y14a{bottom:198.481200pt;}
.ya2{bottom:203.962533pt;}
.yef{bottom:204.681067pt;}
.y2d{bottom:207.361733pt;}
.y5d{bottom:208.858000pt;}
.y14d{bottom:215.420371pt;}
.y127{bottom:215.425884pt;}
.y151{bottom:218.233067pt;}
.ya1{bottom:222.624533pt;}
.yee{bottom:223.343067pt;}
.y2c{bottom:226.023733pt;}
.y5c{bottom:226.618000pt;}
.y182{bottom:227.651333pt;}
.y1a2{bottom:229.517333pt;}
.y150{bottom:230.413200pt;}
.y14c{bottom:234.047319pt;}
.y126{bottom:236.950731pt;}
.y181{bottom:239.809867pt;}
.y132{bottom:239.917600pt;}
.ya0{bottom:241.286533pt;}
.yed{bottom:242.005067pt;}
.y5b{bottom:244.378000pt;}
.y1a1{bottom:248.179333pt;}
.y14b{bottom:252.674267pt;}
.y2b{bottom:254.137867pt;}
.y153{bottom:255.106521pt;}
.y11e{bottom:257.261467pt;}
.y9f{bottom:259.948533pt;}
.y5a{bottom:260.591333pt;}
.yec{bottom:260.667067pt;}
.y157{bottom:261.294653pt;}
.y152{bottom:264.417867pt;}
.y13b{bottom:264.751867pt;}
.y125{bottom:264.782347pt;}
.y1a0{bottom:266.841333pt;}
.y59{bottom:271.258000pt;}
.y2a{bottom:272.805867pt;}
.y12e{bottom:274.569133pt;}
.y9e{bottom:278.610533pt;}
.yeb{bottom:279.329067pt;}
.y124{bottom:280.679001pt;}
.y19f{bottom:285.503333pt;}
.y12d{bottom:286.682300pt;}
.y172{bottom:286.702533pt;}
.y58{bottom:287.471333pt;}
.y123{bottom:296.575654pt;}
.y9d{bottom:297.272533pt;}
.yd2{bottom:297.510533pt;}
.yea{bottom:297.991067pt;}
.y12c{bottom:298.795467pt;}
.y19d{bottom:300.165333pt;}
.y171{bottom:302.032533pt;}
.y19e{bottom:304.165333pt;}
.y57{bottom:305.231333pt;}
.y1ad{bottom:312.301333pt;}
.y122{bottom:312.472307pt;}
.y29{bottom:315.199467pt;}
.y9c{bottom:315.934533pt;}
.yd1{bottom:316.172533pt;}
.ye9{bottom:316.653067pt;}
.y1c4{bottom:320.488267pt;}
.y19c{bottom:322.841333pt;}
.y56{bottom:322.991333pt;}
.y121{bottom:328.368960pt;}
.y28{bottom:333.861467pt;}
.y180{bottom:334.132000pt;}
.y9b{bottom:334.596533pt;}
.yd0{bottom:334.834533pt;}
.ye8{bottom:335.315067pt;}
.y1c3{bottom:337.288267pt;}
.y55{bottom:340.751333pt;}
.y19b{bottom:341.503333pt;}
.y120{bottom:344.265613pt;}
.y131{bottom:345.137633pt;}
.y178{bottom:345.705646pt;}
.y1bd{bottom:348.421333pt;}
.y27{bottom:352.523467pt;}
.y9a{bottom:353.258533pt;}
.ycf{bottom:353.496533pt;}
.ye7{bottom:353.977067pt;}
.y1c2{bottom:354.088267pt;}
.y130{bottom:355.829467pt;}
.y199{bottom:356.165333pt;}
.y54{bottom:358.511333pt;}
.y11f{bottom:360.162267pt;}
.y19a{bottom:360.165333pt;}
.y1bc{bottom:361.753333pt;}
.y177{bottom:364.019301pt;}
.y133{bottom:365.517194pt;}
.y1c1{bottom:370.888267pt;}
.y26{bottom:371.185467pt;}
.y99{bottom:371.920533pt;}
.yce{bottom:372.158533pt;}
.ye6{bottom:372.639067pt;}
.y1bb{bottom:375.085333pt;}
.y53{bottom:376.271333pt;}
.y198{bottom:378.841333pt;}
.y176{bottom:382.332957pt;}
.y1c0{bottom:387.688267pt;}
.y1ba{bottom:388.417333pt;}
.y25{bottom:389.847467pt;}
.y98{bottom:390.582533pt;}
.ycd{bottom:390.820533pt;}
.y11a{bottom:390.987733pt;}
.ye5{bottom:391.301067pt;}
.y52{bottom:394.031333pt;}
.y197{bottom:397.503333pt;}
.y175{bottom:400.646612pt;}
.y1bf{bottom:404.488267pt;}
.y24{bottom:408.509467pt;}
.y97{bottom:409.244533pt;}
.ycc{bottom:409.482533pt;}
.ye4{bottom:409.963067pt;}
.y50{bottom:410.138000pt;}
.y4e{bottom:410.148667pt;}
.y195{bottom:412.165333pt;}
.y4d{bottom:416.154000pt;}
.y196{bottom:416.165333pt;}
.y174{bottom:418.960267pt;}
.y1be{bottom:421.288267pt;}
.y187{bottom:421.345775pt;}
.y51{bottom:422.138000pt;}
.y4f{bottom:422.148667pt;}
.y188{bottom:424.125733pt;}
.y23{bottom:427.171467pt;}
.y96{bottom:427.906533pt;}
.ycb{bottom:428.144533pt;}
.ye3{bottom:428.625067pt;}
.y116{bottom:429.448667pt;}
.y186{bottom:430.640659pt;}
.y194{bottom:434.864667pt;}
.y17f{bottom:437.083676pt;}
.y4c{bottom:437.386267pt;}
.y22{bottom:445.833467pt;}
.y95{bottom:446.568533pt;}
.yca{bottom:446.806533pt;}
.ye2{bottom:447.287067pt;}
.y115{bottom:448.110667pt;}
.y193{bottom:453.526667pt;}
.y17e{bottom:455.397331pt;}
.y48{bottom:458.901467pt;}
.y21{bottom:464.495467pt;}
.y94{bottom:465.230533pt;}
.yc9{bottom:465.468533pt;}
.ye1{bottom:465.949067pt;}
.y114{bottom:466.772667pt;}
.y192{bottom:472.188667pt;}
.y47{bottom:472.233467pt;}
.y17d{bottom:473.710986pt;}
.y20{bottom:483.157467pt;}
.y93{bottom:483.892533pt;}
.yc8{bottom:484.130533pt;}
.ye0{bottom:484.611067pt;}
.y113{bottom:485.434667pt;}
.y46{bottom:485.565467pt;}
.y191{bottom:490.850667pt;}
.y17c{bottom:492.024641pt;}
.y1f{bottom:501.819467pt;}
.y92{bottom:502.554533pt;}
.yc7{bottom:502.792533pt;}
.ydf{bottom:503.273067pt;}
.y112{bottom:504.096667pt;}
.y190{bottom:509.512667pt;}
.y17b{bottom:510.338296pt;}
.y45{bottom:518.991600pt;}
.y1e{bottom:520.481467pt;}
.y91{bottom:521.216533pt;}
.yc6{bottom:521.454533pt;}
.yde{bottom:521.935067pt;}
.y111{bottom:522.758667pt;}
.y185{bottom:524.430583pt;}
.y18f{bottom:528.174667pt;}
.y17a{bottom:528.651951pt;}
.y184{bottom:533.725467pt;}
.y43{bottom:534.572533pt;}
.y189{bottom:537.661568pt;}
.y1d{bottom:539.143467pt;}
.y90{bottom:539.878533pt;}
.yc5{bottom:540.116533pt;}
.ydd{bottom:540.597067pt;}
.y110{bottom:541.420667pt;}
.y18e{bottom:546.836667pt;}
.y179{bottom:546.965606pt;}
.y42{bottom:547.904533pt;}
.y1c{bottom:557.805467pt;}
.y8f{bottom:558.540533pt;}
.yc4{bottom:558.778533pt;}
.ydc{bottom:559.259067pt;}
.y10f{bottom:560.082667pt;}
.y41{bottom:561.236533pt;}
.y18c{bottom:561.498667pt;}
.y170{bottom:561.704533pt;}
.y18d{bottom:565.498667pt;}
.y40{bottom:574.568533pt;}
.y1b{bottom:576.467467pt;}
.y16f{bottom:577.034533pt;}
.y8e{bottom:577.202533pt;}
.yc3{bottom:577.440533pt;}
.ydb{bottom:577.921067pt;}
.y10e{bottom:588.196800pt;}
.y73{bottom:588.725333pt;}
.y70{bottom:593.161467pt;}
.y18b{bottom:593.614133pt;}
.y1a{bottom:595.129467pt;}
.y8d{bottom:595.864533pt;}
.yc2{bottom:596.102533pt;}
.yda{bottom:596.583067pt;}
.y69{bottom:601.415191pt;}
.y10d{bottom:606.864800pt;}
.y19{bottom:613.791467pt;}
.y8c{bottom:614.526533pt;}
.yc1{bottom:614.764533pt;}
.yd9{bottom:615.245067pt;}
.y68{bottom:622.299627pt;}
.y18{bottom:632.453467pt;}
.y8b{bottom:633.188533pt;}
.y16e{bottom:633.286533pt;}
.yc0{bottom:633.426533pt;}
.yd8{bottom:633.907067pt;}
.y67{bottom:643.184062pt;}
.y1af{bottom:650.702533pt;}
.y17{bottom:651.115467pt;}
.y8a{bottom:651.850533pt;}
.y16d{bottom:651.948533pt;}
.y10c{bottom:652.009067pt;}
.ybf{bottom:652.088533pt;}
.yd7{bottom:652.569067pt;}
.y66{bottom:664.068498pt;}
.y1ae{bottom:666.032533pt;}
.y16{bottom:669.777467pt;}
.y89{bottom:670.512533pt;}
.y16c{bottom:670.610533pt;}
.y10b{bottom:670.671067pt;}
.ybe{bottom:670.750533pt;}
.yd6{bottom:671.231067pt;}
.y71{bottom:684.527467pt;}
.y65{bottom:684.952933pt;}
.y15{bottom:688.439467pt;}
.y88{bottom:689.174533pt;}
.y16b{bottom:689.272533pt;}
.y10a{bottom:689.333067pt;}
.ybd{bottom:689.412533pt;}
.yd5{bottom:689.893067pt;}
.y6f{bottom:697.485900pt;}
.y1b9{bottom:706.651600pt;}
.y14{bottom:707.101467pt;}
.y87{bottom:707.836533pt;}
.y16a{bottom:707.934533pt;}
.y109{bottom:707.995067pt;}
.ybc{bottom:708.074533pt;}
.yd4{bottom:708.555067pt;}
.y1b3{bottom:710.849867pt;}
.y1ca{bottom:712.193867pt;}
.y1b8{bottom:716.918267pt;}
.y6e{bottom:720.565227pt;}
.y1c9{bottom:722.460533pt;}
.y1b2{bottom:724.181867pt;}
.y13{bottom:725.763467pt;}
.y86{bottom:726.498533pt;}
.y169{bottom:726.596533pt;}
.y108{bottom:726.657067pt;}
.ybb{bottom:726.736533pt;}
.y1b7{bottom:727.184933pt;}
.y13a{bottom:730.713333pt;}
.y1c8{bottom:732.727200pt;}
.y13c{bottom:735.438667pt;}
.y1b6{bottom:737.451600pt;}
.y1b1{bottom:737.513867pt;}
.y1c7{bottom:742.993867pt;}
.y6d{bottom:743.644553pt;}
.y12{bottom:744.425467pt;}
.y85{bottom:745.160533pt;}
.y168{bottom:745.258533pt;}
.y107{bottom:745.319067pt;}
.yba{bottom:745.398533pt;}
.y1b5{bottom:747.718267pt;}
.y1b0{bottom:750.845867pt;}
.y1c6{bottom:753.260533pt;}
.y142{bottom:756.386667pt;}
.y139{bottom:756.971989pt;}
.y1b4{bottom:757.984933pt;}
.y11{bottom:763.087467pt;}
.y84{bottom:763.822533pt;}
.y167{bottom:763.920533pt;}
.y106{bottom:763.981067pt;}
.yb9{bottom:764.060533pt;}
.y6c{bottom:766.723880pt;}
.y10{bottom:781.749467pt;}
.y83{bottom:782.484533pt;}
.y166{bottom:782.582533pt;}
.y105{bottom:782.643067pt;}
.yb8{bottom:782.722533pt;}
.y6b{bottom:789.803207pt;}
.yf{bottom:800.411467pt;}
.y82{bottom:801.146533pt;}
.y165{bottom:801.244533pt;}
.y104{bottom:801.305067pt;}
.yb7{bottom:801.384533pt;}
.y72{bottom:802.847242pt;}
.y138{bottom:804.910425pt;}
.y6a{bottom:812.882533pt;}
.ye{bottom:819.073467pt;}
.y81{bottom:819.808533pt;}
.y164{bottom:819.906533pt;}
.y103{bottom:819.967067pt;}
.yb6{bottom:820.046533pt;}
.y44{bottom:826.627467pt;}
.yd{bottom:837.735467pt;}
.y80{bottom:838.470533pt;}
.y163{bottom:838.568533pt;}
.y102{bottom:838.629067pt;}
.yb5{bottom:838.708533pt;}
.y137{bottom:852.848861pt;}
.yc{bottom:856.397467pt;}
.y7f{bottom:857.132533pt;}
.y3f{bottom:857.171733pt;}
.y162{bottom:857.230533pt;}
.y101{bottom:857.291067pt;}
.yb4{bottom:857.370533pt;}
.yb{bottom:875.059467pt;}
.y7e{bottom:875.794533pt;}
.y3e{bottom:875.833733pt;}
.y161{bottom:875.892533pt;}
.y100{bottom:875.953067pt;}
.yb3{bottom:876.032533pt;}
.ya{bottom:893.721467pt;}
.y7d{bottom:894.456533pt;}
.y3d{bottom:894.495733pt;}
.y160{bottom:894.554533pt;}
.yff{bottom:894.615067pt;}
.yb2{bottom:894.694533pt;}
.y136{bottom:900.787297pt;}
.y9{bottom:912.383467pt;}
.y7c{bottom:913.118533pt;}
.y3c{bottom:913.157733pt;}
.y15f{bottom:913.216533pt;}
.yfe{bottom:913.277067pt;}
.yb1{bottom:913.356533pt;}
.y8{bottom:931.045467pt;}
.y7b{bottom:931.780533pt;}
.y3b{bottom:931.819733pt;}
.y15e{bottom:931.878533pt;}
.yfd{bottom:931.939067pt;}
.yb0{bottom:932.018533pt;}
.y141{bottom:938.464442pt;}
.y140{bottom:947.343054pt;}
.y135{bottom:948.725733pt;}
.y7{bottom:949.707467pt;}
.y7a{bottom:950.442533pt;}
.y3a{bottom:950.481733pt;}
.y15d{bottom:950.540533pt;}
.yfc{bottom:950.601067pt;}
.yaf{bottom:950.680533pt;}
.y13f{bottom:960.967791pt;}
.y6{bottom:968.369467pt;}
.y79{bottom:969.104533pt;}
.y39{bottom:969.143733pt;}
.y15c{bottom:969.202533pt;}
.yfb{bottom:969.263067pt;}
.yae{bottom:969.342533pt;}
.y13e{bottom:971.064096pt;}
.y13d{bottom:981.160400pt;}
.y5{bottom:987.031467pt;}
.y78{bottom:987.766533pt;}
.y38{bottom:987.805733pt;}
.y15b{bottom:987.864533pt;}
.yfa{bottom:987.925067pt;}
.yad{bottom:988.004533pt;}
.y77{bottom:1006.428533pt;}
.y37{bottom:1006.467733pt;}
.y15a{bottom:1006.526533pt;}
.yf9{bottom:1006.587067pt;}
.yac{bottom:1006.666533pt;}
.y11c{bottom:1009.760533pt;}
.y4{bottom:1013.257200pt;}
.y76{bottom:1025.090533pt;}
.y36{bottom:1025.129733pt;}
.y159{bottom:1025.188533pt;}
.yf8{bottom:1025.249067pt;}
.yab{bottom:1025.328533pt;}
.y3{bottom:1026.590533pt;}
.y2{bottom:1061.165333pt;}
.y75{bottom:1067.165333pt;}
.h1c{height:20.656515pt;}
.h2d{height:20.726925pt;}
.h26{height:20.763419pt;}
.h12{height:22.749515pt;}
.h1a{height:24.668198pt;}
.h2c{height:24.752026pt;}
.h25{height:24.795863pt;}
.h20{height:25.763733pt;}
.hf{height:27.167665pt;}
.h1f{height:27.652177pt;}
.h17{height:28.779628pt;}
.ha{height:28.840000pt;}
.h27{height:28.877300pt;}
.h23{height:28.928443pt;}
.h18{height:29.807486pt;}
.h31{height:30.053333pt;}
.hd{height:30.293333pt;}
.h14{height:30.762667pt;}
.h2a{height:30.939937pt;}
.h22{height:30.994925pt;}
.h19{height:31.091948pt;}
.h2b{height:31.197412pt;}
.h10{height:31.695545pt;}
.h1d{height:32.018168pt;}
.h1b{height:32.891059pt;}
.h4{height:34.080000pt;}
.h5{height:34.346667pt;}
.h8{height:34.608000pt;}
.h29{height:35.065210pt;}
.h24{height:35.127505pt;}
.h15{height:36.530667pt;}
.h13{height:38.453333pt;}
.h30{height:38.640000pt;}
.h9{height:39.760000pt;}
.h2{height:42.933333pt;}
.h6{height:45.080000pt;}
.h2f{height:46.144000pt;}
.h7{height:49.989333pt;}
.he{height:51.626667pt;}
.hb{height:58.325333pt;}
.h3{height:61.525333pt;}
.hc{height:82.304000pt;}
.h2e{height:94.453333pt;}
.h21{height:207.924000pt;}
.h28{height:223.726667pt;}
.h11{height:234.488000pt;}
.h16{height:266.536000pt;}
.h1e{height:275.396000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:351.909333pt;}
.w4{width:370.368000pt;}
.w6{width:387.070667pt;}
.w5{width:391.294667pt;}
.w3{width:470.442667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:7.589333pt;}
.x41{left:11.670000pt;}
.x3b{left:24.000000pt;}
.x38{left:27.326267pt;}
.x39{left:33.021593pt;}
.x40{left:35.274667pt;}
.x42{left:37.980267pt;}
.x4e{left:39.709333pt;}
.x4d{left:42.409333pt;}
.x3a{left:44.412245pt;}
.x26{left:48.000000pt;}
.x2{left:52.913333pt;}
.x4a{left:57.372133pt;}
.x3d{left:60.677600pt;}
.x53{left:67.538000pt;}
.x32{left:69.234959pt;}
.x3e{left:71.336533pt;}
.x31{left:76.714648pt;}
.x45{left:82.237600pt;}
.x44{left:85.174267pt;}
.x47{left:90.170465pt;}
.x4f{left:91.302667pt;}
.x46{left:93.704133pt;}
.x30{left:96.738933pt;}
.x5c{left:98.546400pt;}
.x5b{left:129.160667pt;}
.x5e{left:133.583067pt;}
.x59{left:153.777467pt;}
.x51{left:162.021779pt;}
.x50{left:165.549200pt;}
.x5a{left:169.457467pt;}
.x25{left:195.187600pt;}
.x52{left:197.819525pt;}
.x49{left:199.335885pt;}
.x48{left:200.462188pt;}
.x3f{left:226.393733pt;}
.x55{left:241.735600pt;}
.x4c{left:246.023467pt;}
.x54{left:290.693901pt;}
.x2b{left:300.094667pt;}
.x2e{left:302.783082pt;}
.x4b{left:303.730199pt;}
.x2f{left:307.300626pt;}
.x29{left:312.794267pt;}
.x35{left:322.024800pt;}
.x37{left:323.484133pt;}
.x43{left:371.961467pt;}
.x34{left:390.761733pt;}
.x24{left:398.929333pt;}
.x1f{left:401.610275pt;}
.x1e{left:404.312933pt;}
.x3{left:407.309333pt;}
.x4{left:410.142400pt;}
.x1c{left:412.815467pt;}
.x12{left:413.931467pt;}
.x20{left:416.521333pt;}
.x21{left:418.312800pt;}
.xe{left:425.746933pt;}
.xd{left:430.661600pt;}
.x10{left:431.816800pt;}
.x14{left:432.718667pt;}
.xf{left:433.884000pt;}
.x11{left:437.177333pt;}
.x13{left:439.680267pt;}
.x56{left:441.337333pt;}
.x23{left:443.666800pt;}
.x57{left:445.229333pt;}
.x2c{left:446.692000pt;}
.x60{left:452.787333pt;}
.x58{left:464.128667pt;}
.x5d{left:483.260933pt;}
.x5f{left:484.750667pt;}
.x6{left:491.532533pt;}
.x19{left:498.152933pt;}
.x15{left:499.052667pt;}
.x5{left:513.309333pt;}
.x33{left:532.401600pt;}
.x7{left:541.297333pt;}
.x16{left:542.895067pt;}
.x1d{left:544.514000pt;}
.x2a{left:563.614667pt;}
.x8{left:582.053600pt;}
.x9{left:584.526133pt;}
.x36{left:628.354147pt;}
.x1a{left:629.248400pt;}
.x28{left:630.475733pt;}
.x17{left:632.549333pt;}
.x22{left:646.918563pt;}
.xa{left:671.429600pt;}
.x1b{left:673.120533pt;}
.x18{left:676.256400pt;}
.xb{left:712.185867pt;}
.xc{left:714.658400pt;}
.x1{left:732.687600pt;}
.x2d{left:746.786667pt;}
.x27{left:751.622000pt;}
}




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