
    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_5859a0e9e6aa57e9ff012a80.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_27c16501e2be4a6b3e3d08e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.875000;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_a2b6cfdcad35983d3cfa6d71.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_3b20e0817985a00514af0dbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_a3a071befc61b794cdec2011.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_39c8b52969e5160d523acadc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_9a9f2f4d44ff144066c8474e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_98f2cf32b158549a46dac1db.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_257031377a50c2139bb4bd54.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918000;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_c3bf3bdf71bcf3f249c7510a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.918000;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_490042e888249e738ab0a1f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_9f82c4275bba815ff0323cae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.902000;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_6eb5995989e9a71a57c830ab.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_955acf1d060018c9da9f5620.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.924000;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_fc0c2260dfe8860ede14b744.woff2')format("woff");}.fff{font-family:fff;line-height:0.887000;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_1312e8bbd68782111fecdf83.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.753000;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_d2e157869fcf41e0c4935ea3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.482000;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_16c6664b7244b0ffa14b6a0c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ff95c0098f6da494820e2dff.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_397092fdcb153ce2326d0d75.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_db69d2753fbe580c31dae9df.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6ec6f6579d3adf380f32645f.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.v2{vertical-align:-21.690000px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.758000px;}
.v5{vertical-align:17.730000px;}
.v4{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001571px;}
.ls7{letter-spacing:0.005484px;}
.ls19{letter-spacing:0.006204px;}
.ls20{letter-spacing:0.006492px;}
.lsf{letter-spacing:0.007227px;}
.ls1b{letter-spacing:0.007494px;}
.ls1f{letter-spacing:0.010245px;}
.ls1d{letter-spacing:0.010790px;}
.ls14{letter-spacing:0.010915px;}
.ls11{letter-spacing:0.012184px;}
.ls16{letter-spacing:0.017956px;}
.lsa{letter-spacing:1.936742px;}
.lse{letter-spacing:2.984915px;}
.ls12{letter-spacing:2.990915px;}
.ls3{letter-spacing:2.992226px;}
.ls2{letter-spacing:2.992894px;}
.ls9{letter-spacing:4.016947px;}
.ls10{letter-spacing:15.924326px;}
.lsd{letter-spacing:15.996058px;}
.lsc{letter-spacing:16.354714px;}
.ls17{letter-spacing:16.641638px;}
.ls27{letter-spacing:17.287219px;}
.ls8{letter-spacing:17.574144px;}
.ls18{letter-spacing:18.004531px;}
.ls23{letter-spacing:18.196379px;}
.ls1e{letter-spacing:18.578381px;}
.ls15{letter-spacing:18.924960px;}
.lsb{letter-spacing:19.941274px;}
.ls22{letter-spacing:21.600018px;}
.ls26{letter-spacing:21.665473px;}
.ls13{letter-spacing:21.685488px;}
.ls24{letter-spacing:21.730927px;}
.ls25{letter-spacing:23.456102px;}
.ls5{letter-spacing:25.669488px;}
.ls21{letter-spacing:29.149488px;}
.ls1c{letter-spacing:31.098960px;}
.ls1a{letter-spacing:33.859488px;}
.ls0{letter-spacing:142.978178px;}
.ls1{letter-spacing:146.301701px;}
.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;}
}
.wsa7{word-spacing:-47.600824px;}
.wsa0{word-spacing:-45.664082px;}
.ws106{word-spacing:-42.637126px;}
.ws15{word-spacing:-35.112422px;}
.wse8{word-spacing:-32.544027px;}
.wsf0{word-spacing:-24.506202px;}
.ws144{word-spacing:-21.117665px;}
.ws141{word-spacing:-20.687278px;}
.ws13a{word-spacing:-19.475021px;}
.ws13c{word-spacing:-19.331558px;}
.ws11d{word-spacing:-19.188096px;}
.ws166{word-spacing:-19.044634px;}
.ws4c{word-spacing:-18.972902px;}
.ws95{word-spacing:-18.965729px;}
.wsbe{word-spacing:-18.685978px;}
.ws134{word-spacing:-18.542515px;}
.wsab{word-spacing:-18.470784px;}
.ws15e{word-spacing:-18.327322px;}
.ws77{word-spacing:-18.104955px;}
.ws47{word-spacing:-17.896934px;}
.ws12c{word-spacing:-17.825203px;}
.ws135{word-spacing:-17.610010px;}
.wsa3{word-spacing:-17.538278px;}
.wsc8{word-spacing:-17.251354px;}
.ws145{word-spacing:-17.244180px;}
.ws160{word-spacing:-17.179622px;}
.wsb7{word-spacing:-17.107891px;}
.ws5a{word-spacing:-17.036160px;}
.ws59{word-spacing:-16.964429px;}
.ws155{word-spacing:-16.820966px;}
.ws7b{word-spacing:-16.749235px;}
.ws49{word-spacing:-16.605773px;}
.ws131{word-spacing:-16.534042px;}
.ws96{word-spacing:-16.462310px;}
.ws6b{word-spacing:-16.318848px;}
.ws137{word-spacing:-16.175386px;}
.ws125{word-spacing:-16.103654px;}
.ws74{word-spacing:-15.960192px;}
.ws48{word-spacing:-15.888461px;}
.ws78{word-spacing:-15.744998px;}
.ws9b{word-spacing:-15.673267px;}
.wsc1{word-spacing:-15.601536px;}
.ws98{word-spacing:-15.529805px;}
.ws3b{word-spacing:-15.458074px;}
.ws42{word-spacing:-15.242880px;}
.wse4{word-spacing:-15.198558px;}
.wsbf{word-spacing:-15.171149px;}
.ws111{word-spacing:-15.099418px;}
.ws73{word-spacing:-15.027686px;}
.ws12f{word-spacing:-14.955955px;}
.ws21{word-spacing:-14.884224px;}
.wsd{word-spacing:-14.871285px;}
.ws152{word-spacing:-14.812493px;}
.ws9c{word-spacing:-14.740762px;}
.ws9{word-spacing:-14.740376px;}
.ws10c{word-spacing:-14.669030px;}
.ws14a{word-spacing:-14.597299px;}
.ws15d{word-spacing:-14.525568px;}
.ws150{word-spacing:-14.453837px;}
.ws3a{word-spacing:-14.382106px;}
.wscd{word-spacing:-14.347648px;}
.wsf1{word-spacing:-14.282194px;}
.ws112{word-spacing:-14.166912px;}
.ws6d{word-spacing:-14.095181px;}
.ws140{word-spacing:-14.088008px;}
.wsd2{word-spacing:-14.085830px;}
.ws127{word-spacing:-14.016276px;}
.ws4b{word-spacing:-13.951718px;}
.wsb0{word-spacing:-13.879987px;}
.ws149{word-spacing:-13.808256px;}
.ws91{word-spacing:-13.736525px;}
.wsf9{word-spacing:-13.693102px;}
.ws58{word-spacing:-13.664794px;}
.ws54{word-spacing:-13.521331px;}
.ws97{word-spacing:-13.449600px;}
.ws16{word-spacing:-13.442427px;}
.ws34{word-spacing:-13.377869px;}
.ws156{word-spacing:-13.306138px;}
.ws10d{word-spacing:-13.234406px;}
.ws6{word-spacing:-13.169466px;}
.ws4f{word-spacing:-13.162675px;}
.ws46{word-spacing:-13.090944px;}
.ws5c{word-spacing:-12.947482px;}
.ws2e{word-spacing:-12.875750px;}
.wsb9{word-spacing:-12.732288px;}
.wse{word-spacing:-12.645829px;}
.ws14d{word-spacing:-12.588826px;}
.ws7c{word-spacing:-12.517094px;}
.ws13d{word-spacing:-12.445363px;}
.ws79{word-spacing:-12.438190px;}
.ws2d{word-spacing:-12.373632px;}
.wsad{word-spacing:-12.301901px;}
.ws55{word-spacing:-12.230170px;}
.ws53{word-spacing:-12.158438px;}
.ws13e{word-spacing:-12.086707px;}
.wsd4{word-spacing:-12.056737px;}
.ws37{word-spacing:-12.014976px;}
.ws27{word-spacing:-11.943245px;}
.ws13b{word-spacing:-11.871514px;}
.ws3d{word-spacing:-11.799782px;}
.ws17{word-spacing:-11.728051px;}
.ws67{word-spacing:-11.656320px;}
.ws10{word-spacing:-11.598555px;}
.ws136{word-spacing:-11.584589px;}
.ws8b{word-spacing:-11.577416px;}
.wse6{word-spacing:-11.533101px;}
.ws60{word-spacing:-11.512858px;}
.ws68{word-spacing:-11.441126px;}
.ws4a{word-spacing:-11.369395px;}
.ws8e{word-spacing:-11.362222px;}
.ws28{word-spacing:-11.297664px;}
.ws84{word-spacing:-11.225933px;}
.ws14b{word-spacing:-11.154202px;}
.ws10b{word-spacing:-11.082470px;}
.ws7f{word-spacing:-11.075297px;}
.wsd1{word-spacing:-11.074918px;}
.ws57{word-spacing:-11.010739px;}
.ws56{word-spacing:-10.939008px;}
.ws12{word-spacing:-10.878555px;}
.ws7a{word-spacing:-10.867277px;}
.wsb{word-spacing:-10.813100px;}
.ws31{word-spacing:-10.795546px;}
.ws83{word-spacing:-10.723814px;}
.ws8{word-spacing:-10.682191px;}
.ws126{word-spacing:-10.652083px;}
.ws147{word-spacing:-10.644910px;}
.ws133{word-spacing:-10.580352px;}
.ws148{word-spacing:-10.573179px;}
.wscc{word-spacing:-10.551282px;}
.ws1f{word-spacing:-10.365158px;}
.ws2c{word-spacing:-10.293427px;}
.wsfa{word-spacing:-10.224009px;}
.wsf6{word-spacing:-10.158554px;}
.ws9f{word-spacing:-10.149965px;}
.wse1{word-spacing:-10.093099px;}
.ws8c{word-spacing:-10.078234px;}
.wsf5{word-spacing:-10.027645px;}
.ws36{word-spacing:-10.006502px;}
.ws99{word-spacing:-9.999329px;}
.ws157{word-spacing:-9.934771px;}
.wsf7{word-spacing:-9.896736px;}
.ws8f{word-spacing:-9.863040px;}
.wsf3{word-spacing:-9.831281px;}
.ws14f{word-spacing:-9.719578px;}
.wsd3{word-spacing:-9.700372px;}
.ws38{word-spacing:-9.647846px;}
.ws5b{word-spacing:-9.576115px;}
.ws10e{word-spacing:-9.504384px;}
.wsbb{word-spacing:-9.432653px;}
.ws142{word-spacing:-9.425480px;}
.wsfe{word-spacing:-9.217459px;}
.ws4{word-spacing:-9.176735px;}
.ws20{word-spacing:-9.145728px;}
.ws7e{word-spacing:-9.073997px;}
.ws40{word-spacing:-9.002266px;}
.wscf{word-spacing:-8.980371px;}
.ws7d{word-spacing:-8.930534px;}
.ws14e{word-spacing:-8.858803px;}
.ws110{word-spacing:-8.787072px;}
.ws3c{word-spacing:-8.715341px;}
.wsba{word-spacing:-8.500147px;}
.ws154{word-spacing:-8.356685px;}
.ws24{word-spacing:-8.284954px;}
.ws2f{word-spacing:-8.213222px;}
.ws6e{word-spacing:-8.141491px;}
.ws12a{word-spacing:-8.062587px;}
.ws80{word-spacing:-7.998029px;}
.ws61{word-spacing:-7.926298px;}
.wse2{word-spacing:-7.867643px;}
.ws22{word-spacing:-7.854566px;}
.wsf{word-spacing:-7.736734px;}
.ws1d{word-spacing:-7.711104px;}
.wsdf{word-spacing:-7.671279px;}
.wsc7{word-spacing:-7.639373px;}
.ws39{word-spacing:-7.567642px;}
.ws113{word-spacing:-7.495910px;}
.ws23{word-spacing:-7.424179px;}
.ws81{word-spacing:-7.417006px;}
.ws82{word-spacing:-7.352448px;}
.wsa{word-spacing:-7.344006px;}
.ws14{word-spacing:-7.280717px;}
.ws76{word-spacing:-7.273544px;}
.wsc2{word-spacing:-7.208986px;}
.ws9a{word-spacing:-7.201812px;}
.ws6a{word-spacing:-7.137254px;}
.wsf8{word-spacing:-7.082188px;}
.ws12b{word-spacing:-7.065523px;}
.ws64{word-spacing:-6.993792px;}
.wse5{word-spacing:-6.951279px;}
.ws63{word-spacing:-6.922061px;}
.wseb{word-spacing:-6.885824px;}
.ws75{word-spacing:-6.850330px;}
.ws11{word-spacing:-6.820369px;}
.ws3f{word-spacing:-6.778598px;}
.ws35{word-spacing:-6.706867px;}
.ws52{word-spacing:-6.635136px;}
.wsb6{word-spacing:-6.563405px;}
.ws2b{word-spacing:-6.491674px;}
.ws13f{word-spacing:-6.484500px;}
.ws15b{word-spacing:-6.419942px;}
.ws123{word-spacing:-6.412769px;}
.wsde{word-spacing:-6.362187px;}
.ws7{word-spacing:-6.296733px;}
.ws25{word-spacing:-6.276480px;}
.wsa5{word-spacing:-6.133018px;}
.wsf4{word-spacing:-6.100369px;}
.wsb1{word-spacing:-6.061286px;}
.wsd9{word-spacing:-6.034914px;}
.wsbc{word-spacing:-5.917824px;}
.wsdc{word-spacing:-5.904005px;}
.ws71{word-spacing:-5.846093px;}
.wsd7{word-spacing:-5.838550px;}
.ws11e{word-spacing:-5.774362px;}
.wsd5{word-spacing:-5.773096px;}
.ws88{word-spacing:-5.630899px;}
.wsf2{word-spacing:-5.576732px;}
.ws51{word-spacing:-5.559168px;}
.ws50{word-spacing:-5.487437px;}
.ws6f{word-spacing:-5.415706px;}
.ws139{word-spacing:-5.343974px;}
.ws165{word-spacing:-5.272243px;}
.wse3{word-spacing:-5.249459px;}
.ws33{word-spacing:-5.200512px;}
.ws122{word-spacing:-5.128781px;}
.ws85{word-spacing:-5.057050px;}
.ws5e{word-spacing:-4.913587px;}
.wsec{word-spacing:-4.856731px;}
.ws26{word-spacing:-4.841856px;}
.ws8d{word-spacing:-4.834683px;}
.wscb{word-spacing:-4.791277px;}
.ws124{word-spacing:-4.770125px;}
.wsbd{word-spacing:-4.626662px;}
.ws132{word-spacing:-4.554931px;}
.ws70{word-spacing:-4.483200px;}
.wsa6{word-spacing:-4.411469px;}
.wsd0{word-spacing:-4.398549px;}
.ws3e{word-spacing:-4.268006px;}
.wsfb{word-spacing:-4.267640px;}
.ws65{word-spacing:-4.196275px;}
.wsed{word-spacing:-4.136731px;}
.ws146{word-spacing:-3.981082px;}
.ws69{word-spacing:-3.909350px;}
.wsce{word-spacing:-3.874912px;}
.ws10f{word-spacing:-3.837619px;}
.wsea{word-spacing:-3.744003px;}
.ws15a{word-spacing:-3.694157px;}
.ws6c{word-spacing:-3.622426px;}
.wsfc{word-spacing:-3.613094px;}
.wsc{word-spacing:-3.547639px;}
.wsc0{word-spacing:-3.407232px;}
.wsda{word-spacing:-3.351276px;}
.wsaf{word-spacing:-3.263770px;}
.wsdd{word-spacing:-3.220366px;}
.ws10a{word-spacing:-3.192038px;}
.wse0{word-spacing:-3.154912px;}
.ws5d{word-spacing:-3.120307px;}
.ws5f{word-spacing:-2.976845px;}
.ws153{word-spacing:-2.905114px;}
.ws8a{word-spacing:-2.833382px;}
.wsdb{word-spacing:-2.827639px;}
.ws143{word-spacing:-2.761651px;}
.ws129{word-spacing:-2.689920px;}
.ws138{word-spacing:-2.546458px;}
.ws90{word-spacing:-2.474726px;}
.ws30{word-spacing:-2.402995px;}
.ws29{word-spacing:-2.259533px;}
.ws14c{word-spacing:-2.187802px;}
.ws1e{word-spacing:-2.044339px;}
.ws9d{word-spacing:-2.037166px;}
.ws89{word-spacing:-1.829146px;}
.ws9e{word-spacing:-1.757414px;}
.ws72{word-spacing:-1.685683px;}
.wsca{word-spacing:-1.649456px;}
.wsb8{word-spacing:-1.542221px;}
.ws43{word-spacing:-1.470490px;}
.ws66{word-spacing:-1.327027px;}
.ws32{word-spacing:-1.183565px;}
.ws4e{word-spacing:-1.111834px;}
.ws4d{word-spacing:-0.896640px;}
.ws2a{word-spacing:-0.824909px;}
.ws121{word-spacing:-0.753178px;}
.ws41{word-spacing:-0.609715px;}
.ws5{word-spacing:-0.602182px;}
.ws13{word-spacing:-0.387348px;}
.ws1{word-spacing:-0.123975px;}
.ws151{word-spacing:-0.107597px;}
.ws158{word-spacing:-0.071731px;}
.ws11f{word-spacing:-0.035866px;}
.ws1b{word-spacing:0.000000px;}
.ws120{word-spacing:0.681446px;}
.ws103{word-spacing:14.465467px;}
.ws104{word-spacing:14.530921px;}
.wsa1{word-spacing:15.852595px;}
.ws19{word-spacing:16.737168px;}
.wsee{word-spacing:18.130924px;}
.ws167{word-spacing:18.291456px;}
.ws18{word-spacing:19.845499px;}
.ws161{word-spacing:20.443392px;}
.wsef{word-spacing:21.403654px;}
.wsa9{word-spacing:21.632957px;}
.wsb2{word-spacing:21.638957px;}
.wsac{word-spacing:22.358957px;}
.ws93{word-spacing:23.170928px;}
.wsa4{word-spacing:23.282957px;}
.ws109{word-spacing:24.173414px;}
.ws86{word-spacing:24.872748px;}
.ws15f{word-spacing:25.034189px;}
.wsa8{word-spacing:25.622957px;}
.ws163{word-spacing:25.679770px;}
.ws164{word-spacing:25.823232px;}
.ws1a{word-spacing:26.480591px;}
.ws2{word-spacing:27.200395px;}
.ws3{word-spacing:27.286472px;}
.wsae{word-spacing:29.102957px;}
.ws162{word-spacing:29.338061px;}
.ws15c{word-spacing:29.911910px;}
.ws159{word-spacing:30.844416px;}
.wsc3{word-spacing:31.389573px;}
.ws62{word-spacing:31.418178px;}
.ws45{word-spacing:31.504255px;}
.wse7{word-spacing:32.269118px;}
.wsfd{word-spacing:32.596391px;}
.wsb5{word-spacing:34.238957px;}
.wsb4{word-spacing:36.410957px;}
.ws44{word-spacing:36.978679px;}
.ws130{word-spacing:37.081972px;}
.ws0{word-spacing:38.060325px;}
.wsd8{word-spacing:42.218217px;}
.wsd6{word-spacing:42.610945px;}
.wse9{word-spacing:46.800039px;}
.wsc9{word-spacing:50.989133px;}
.wsc6{word-spacing:59.364741px;}
.ws92{word-spacing:71.672787px;}
.wsc4{word-spacing:88.336973px;}
.wsc5{word-spacing:88.408704px;}
.ws1c{word-spacing:111.349207px;}
.ws11b{word-spacing:112.830639px;}
.ws100{word-spacing:120.750646px;}
.ws116{word-spacing:159.827042px;}
.ws101{word-spacing:167.747049px;}
.ws12e{word-spacing:210.423448px;}
.ws11a{word-spacing:210.488903px;}
.ws118{word-spacing:216.981999px;}
.ws107{word-spacing:218.343455px;}
.ws119{word-spacing:236.867106px;}
.ws11c{word-spacing:243.019839px;}
.ws108{word-spacing:250.939845px;}
.ws114{word-spacing:308.081711px;}
.wsff{word-spacing:316.001718px;}
.ws128{word-spacing:496.067322px;}
.ws12d{word-spacing:523.558254px;}
.ws105{word-spacing:600.991046px;}
.wsb3{word-spacing:612.734957px;}
.ws115{word-spacing:638.496532px;}
.ws102{word-spacing:640.787443px;}
.ws117{word-spacing:698.387491px;}
.wsaa{word-spacing:711.116957px;}
.ws87{word-spacing:716.487091px;}
.ws94{word-spacing:837.478516px;}
.wsa2{word-spacing:980.738957px;}
._1{margin-left:-9.422100px;}
._1e{margin-left:-8.005180px;}
._23{margin-left:-6.527539px;}
._7{margin-left:-5.432732px;}
._f{margin-left:-4.397084px;}
._0{margin-left:-3.099375px;}
._5{margin-left:-1.767274px;}
._e{width:1.109426px;}
._4{width:2.238007px;}
._3{width:3.347325px;}
._42{width:9.755443px;}
._44{width:17.592992px;}
._b{width:18.861383px;}
._1c{width:20.375584px;}
._1f{width:22.655987px;}
._15{width:23.781300px;}
._d{width:25.738703px;}
._8{width:27.556387px;}
._a{width:29.258206px;}
._c{width:31.203072px;}
._47{width:32.269693px;}
._20{width:33.272466px;}
._14{width:35.057717px;}
._12{width:36.843831px;}
._21{width:38.184931px;}
._10{width:39.294358px;}
._16{width:41.030246px;}
._9{width:42.480035px;}
._11{width:44.186419px;}
._17{width:45.979699px;}
._13{width:47.709895px;}
._7f{width:48.743758px;}
._1d{width:49.911176px;}
._2{width:50.953725px;}
._46{width:52.166186px;}
._25{width:53.439744px;}
._24{width:55.461651px;}
._45{width:56.679915px;}
._22{width:58.042808px;}
._6{width:59.629141px;}
._5f{width:61.146368px;}
._19{width:62.705336px;}
._18{width:64.629811px;}
._72{width:66.136166px;}
._53{width:70.883915px;}
._27{width:72.592568px;}
._43{width:80.697600px;}
._2e{width:89.149165px;}
._1b{width:94.684920px;}
._40{width:95.956444px;}
._54{width:98.770991px;}
._65{width:104.596451px;}
._41{width:106.690998px;}
._1a{width:111.452500px;}
._49{width:119.862835px;}
._4a{width:124.493359px;}
._51{width:127.251149px;}
._61{width:139.811026px;}
._36{width:146.160122px;}
._38{width:150.021943px;}
._4c{width:151.065907px;}
._78{width:154.214339px;}
._34{width:157.748888px;}
._3a{width:162.851045px;}
._3f{width:165.272865px;}
._4d{width:167.681540px;}
._2f{width:173.912872px;}
._3e{width:175.811056px;}
._6a{width:177.905603px;}
._31{width:179.149240px;}
._48{width:187.735484px;}
._75{width:194.989253px;}
._58{width:202.058350px;}
._66{width:203.563806px;}
._30{width:206.901991px;}
._7a{width:211.094387px;}
._39{width:222.742004px;}
._33{width:226.996553px;}
._28{width:229.826765px;}
._74{width:232.363830px;}
._62{width:235.047469px;}
._6b{width:236.880197px;}
._79{width:243.032930px;}
._5a{width:250.952936px;}
._56{width:256.323515px;}
._7c{width:259.854762px;}
._7b{width:269.411134px;}
._69{width:278.447170px;}
._64{width:285.709329px;}
._3d{width:291.341726px;}
._3b{width:294.218427px;}
._4f{width:296.967168px;}
._4e{width:306.794342px;}
._4b{width:308.228966px;}
._32{width:311.436289px;}
._71{width:318.240265px;}
._6d{width:325.832999px;}
._73{width:328.582092px;}
._50{width:332.330650px;}
._6c{width:337.418463px;}
._5d{width:342.065740px;}
._29{width:349.115750px;}
._5c{width:350.443928px;}
._76{width:357.721015px;}
._5b{width:362.029393px;}
._6e{width:368.574853px;}
._2c{width:373.198909px;}
._60{width:383.367592px;}
._7d{width:385.277402px;}
._2b{width:418.623283px;}
._55{width:434.618544px;}
._67{width:440.444003px;}
._77{width:452.291286px;}
._7e{width:479.782218px;}
._6f{width:500.150225px;}
._3c{width:513.098609px;}
._2a{width:519.881732px;}
._52{width:526.007479px;}
._5e{width:535.102981px;}
._35{width:536.138629px;}
._37{width:552.895006px;}
._2d{width:559.618909px;}
._59{width:593.018676px;}
._70{width:594.655041px;}
._26{width:612.369254px;}
._57{width:629.607797px;}
._68{width:639.360533px;}
._63{width:727.920607px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y20{bottom:61.467000px;}
.y68{bottom:106.299000px;}
.y17b{bottom:108.171000px;}
.y1d7{bottom:111.109500px;}
.y1f{bottom:111.723000px;}
.y1c8{bottom:113.338500px;}
.ya1{bottom:119.719500px;}
.yea{bottom:121.012500px;}
.y1e{bottom:124.308000px;}
.y196{bottom:125.662500px;}
.y46{bottom:125.887500px;}
.yb4{bottom:128.410500px;}
.y67{bottom:133.189500px;}
.y17a{bottom:135.061500px;}
.y1d6{bottom:138.000000px;}
.y1c7{bottom:140.230500px;}
.yd1{bottom:144.042000px;}
.ya0{bottom:146.610000px;}
.y1d{bottom:147.664500px;}
.ye9{bottom:147.903000px;}
.y195{bottom:152.553000px;}
.y45{bottom:152.778000px;}
.y1d9{bottom:154.266000px;}
.yb3{bottom:155.301000px;}
.y66{bottom:160.081500px;}
.y179{bottom:161.953500px;}
.y10a{bottom:162.400500px;}
.y1d5{bottom:164.890500px;}
.y1c{bottom:165.729000px;}
.y1ec{bottom:166.813500px;}
.y1c6{bottom:167.121000px;}
.yd0{bottom:170.932500px;}
.y9f{bottom:173.500500px;}
.y194{bottom:179.443500px;}
.y44{bottom:179.668500px;}
.y1d8{bottom:181.156500px;}
.yb2{bottom:182.191500px;}
.y1b{bottom:183.795000px;}
.ye8{bottom:186.373500px;}
.y65{bottom:186.972000px;}
.y178{bottom:188.844000px;}
.y109{bottom:189.291000px;}
.y1d4{bottom:191.781000px;}
.y1eb{bottom:193.705500px;}
.y1c5{bottom:194.011500px;}
.ycf{bottom:197.823000px;}
.y152{bottom:200.464500px;}
.y43{bottom:206.559000px;}
.y81{bottom:208.047000px;}
.y9e{bottom:211.971000px;}
.y177{bottom:215.734500px;}
.y108{bottom:216.181500px;}
.y1d3{bottom:218.673000px;}
.y1ea{bottom:220.596000px;}
.y1c4{bottom:220.902000px;}
.y1a{bottom:224.218500px;}
.yce{bottom:224.713500px;}
.y64{bottom:225.441000px;}
.y151{bottom:227.355000px;}
.y193{bottom:230.437500px;}
.y42{bottom:233.451000px;}
.y80{bottom:234.939000px;}
.ye7{bottom:238.351500px;}
.yb1{bottom:240.996000px;}
.y176{bottom:242.625000px;}
.y107{bottom:243.072000px;}
.y1d2{bottom:245.563500px;}
.y1c3{bottom:247.794000px;}
.y192{bottom:250.761000px;}
.y19{bottom:251.110500px;}
.y150{bottom:254.245500px;}
.y41{bottom:260.341500px;}
.y7f{bottom:261.829500px;}
.y1e9{bottom:262.431000px;}
.yb0{bottom:262.665000px;}
.y9d{bottom:263.106000px;}
.ycd{bottom:263.184000px;}
.ye6{bottom:265.242000px;}
.y175{bottom:269.517000px;}
.y106{bottom:269.964000px;}
.y1d1{bottom:272.454000px;}
.y1c2{bottom:274.684500px;}
.y18{bottom:278.001000px;}
.y191{bottom:281.674500px;}
.y63{bottom:282.964500px;}
.y40{bottom:287.232000px;}
.y7e{bottom:288.720000px;}
.y1e8{bottom:289.321500px;}
.ye5{bottom:292.132500px;}
.y14f{bottom:292.714500px;}
.yaf{bottom:293.317500px;}
.y174{bottom:296.407500px;}
.y105{bottom:296.854500px;}
.y1d0{bottom:299.344500px;}
.y1c1{bottom:301.575000px;}
.y190{bottom:301.998000px;}
.y62{bottom:309.855000px;}
.y3f{bottom:314.122500px;}
.yae{bottom:314.985000px;}
.y7d{bottom:315.610500px;}
.y1e7{bottom:316.212000px;}
.ye4{bottom:319.023000px;}
.y18f{bottom:322.321500px;}
.y17{bottom:322.824000px;}
.y173{bottom:323.298000px;}
.y104{bottom:323.745000px;}
.y1cf{bottom:326.236500px;}
.y1c0{bottom:328.465500px;}
.y9c{bottom:330.922500px;}
.ycc{bottom:332.241000px;}
.yad{bottom:336.654000px;}
.y61{bottom:336.745500px;}
.y3e{bottom:341.014500px;}
.y7c{bottom:342.502500px;}
.ye3{bottom:345.915000px;}
.y16{bottom:348.046500px;}
.y139{bottom:349.624500px;}
.y172{bottom:350.188500px;}
.y103{bottom:350.635500px;}
.y18e{bottom:351.628500px;}
.y1ce{bottom:353.127000px;}
.y14e{bottom:354.364500px;}
.y1bf{bottom:355.356000px;}
.y9b{bottom:357.814500px;}
.y1e6{bottom:358.047000px;}
.ycb{bottom:361.548000px;}
.y60{bottom:363.637500px;}
.yac{bottom:367.306500px;}
.y3d{bottom:367.905000px;}
.y7b{bottom:369.393000px;}
.y138{bottom:369.948000px;}
.y18d{bottom:371.952000px;}
.ye2{bottom:372.805500px;}
.y15{bottom:373.267500px;}
.y14d{bottom:374.689500px;}
.y171{bottom:377.080500px;}
.y102{bottom:377.527500px;}
.y1cd{bottom:380.017500px;}
.yca{bottom:381.871500px;}
.y1be{bottom:382.248000px;}
.y9a{bottom:384.705000px;}
.y1e5{bottom:384.937500px;}
.y137{bottom:390.273000px;}
.y5f{bottom:390.528000px;}
.y18c{bottom:392.277000px;}
.y3c{bottom:394.795500px;}
.y14c{bottom:395.013000px;}
.y7a{bottom:396.283500px;}
.y14{bottom:398.490000px;}
.ye1{bottom:399.696000px;}
.yc9{bottom:402.196500px;}
.y170{bottom:403.971000px;}
.y101{bottom:404.418000px;}
.y1cc{bottom:406.908000px;}
.y1bd{bottom:409.138500px;}
.yab{bottom:409.936500px;}
.y136{bottom:410.596500px;}
.y99{bottom:411.595500px;}
.y1e4{bottom:411.829500px;}
.y18b{bottom:412.600500px;}
.y14b{bottom:415.336500px;}
.y5e{bottom:417.418500px;}
.y3b{bottom:421.686000px;}
.yc8{bottom:422.520000px;}
.y79{bottom:423.174000px;}
.y13{bottom:423.711000px;}
.ye0{bottom:426.586500px;}
.y16f{bottom:430.861500px;}
.y135{bottom:430.920000px;}
.y100{bottom:431.308500px;}
.y18a{bottom:432.924000px;}
.y1cb{bottom:433.800000px;}
.y14a{bottom:435.660000px;}
.y1bc{bottom:436.029000px;}
.y98{bottom:438.486000px;}
.yc7{bottom:442.843500px;}
.y5d{bottom:444.309000px;}
.y1af{bottom:445.863000px;}
.y3a{bottom:448.578000px;}
.y12{bottom:448.933500px;}
.y78{bottom:450.066000px;}
.y134{bottom:451.243500px;}
.y189{bottom:453.247500px;}
.y1e3{bottom:453.663000px;}
.y149{bottom:455.983500px;}
.y16e{bottom:457.752000px;}
.yff{bottom:458.199000px;}
.y127{bottom:459.862500px;}
.y1bb{bottom:462.919500px;}
.yc6{bottom:463.167000px;}
.y97{bottom:465.378000px;}
.ydf{bottom:465.532500px;}
.y5c{bottom:471.199500px;}
.y133{bottom:471.567000px;}
.y1ca{bottom:472.269000px;}
.y1ae{bottom:472.753500px;}
.y188{bottom:473.571000px;}
.y11{bottom:474.154500px;}
.y39{bottom:475.468500px;}
.y148{bottom:476.308500px;}
.y77{bottom:476.956500px;}
.y126{bottom:480.186000px;}
.y1e2{bottom:480.555000px;}
.yc5{bottom:483.490500px;}
.y16d{bottom:484.642500px;}
.yfe{bottom:485.091000px;}
.y132{bottom:491.892000px;}
.y96{bottom:492.268500px;}
.y187{bottom:493.894500px;}
.y147{bottom:496.632000px;}
.y5b{bottom:498.091500px;}
.y10{bottom:499.377000px;}
.y1ad{bottom:499.645500px;}
.y125{bottom:500.509500px;}
.y1ba{bottom:501.390000px;}
.y38{bottom:502.359000px;}
.yc4{bottom:503.814000px;}
.y76{bottom:503.847000px;}
.y1e1{bottom:507.445500px;}
.y16c{bottom:511.534500px;}
.yfd{bottom:511.981500px;}
.y131{bottom:512.215500px;}
.y186{bottom:514.219500px;}
.y146{bottom:516.955500px;}
.y95{bottom:519.159000px;}
.yde{bottom:519.313500px;}
.y124{bottom:520.833000px;}
.yc3{bottom:524.139000px;}
.yf{bottom:524.598000px;}
.y5a{bottom:524.982000px;}
.y1ac{bottom:526.536000px;}
.y37{bottom:529.249500px;}
.y75{bottom:530.737500px;}
.y130{bottom:532.539000px;}
.y185{bottom:534.543000px;}
.y145{bottom:537.279000px;}
.y16b{bottom:538.425000px;}
.yfc{bottom:538.872000px;}
.y123{bottom:541.156500px;}
.y94{bottom:546.049500px;}
.ydd{bottom:546.205500px;}
.y1e0{bottom:549.280500px;}
.ye{bottom:549.820500px;}
.y59{bottom:551.872500px;}
.y1b9{bottom:552.525000px;}
.y12f{bottom:552.862500px;}
.y1ab{bottom:553.426500px;}
.yc2{bottom:553.444500px;}
.y184{bottom:554.866500px;}
.y36{bottom:556.140000px;}
.y144{bottom:557.602500px;}
.y74{bottom:557.628000px;}
.yaa{bottom:557.629500px;}
.y122{bottom:561.481500px;}
.y16a{bottom:565.315500px;}
.y93{bottom:572.941500px;}
.y12e{bottom:573.186000px;}
.yc1{bottom:573.768000px;}
.yd{bottom:575.041500px;}
.y183{bottom:575.190000px;}
.y1df{bottom:576.171000px;}
.yfb{bottom:577.341000px;}
.y143{bottom:577.927500px;}
.y58{bottom:578.763000px;}
.y1aa{bottom:580.317000px;}
.y121{bottom:581.805000px;}
.y35{bottom:583.032000px;}
.y73{bottom:584.520000px;}
.ydc{bottom:584.674500px;}
.y12d{bottom:593.509500px;}
.yc0{bottom:594.093000px;}
.y182{bottom:595.513500px;}
.y19b{bottom:596.098500px;}
.y142{bottom:598.251000px;}
.yc{bottom:600.264000px;}
.y120{bottom:602.128500px;}
.y57{bottom:605.655000px;}
.y1a9{bottom:607.209000px;}
.y34{bottom:609.922500px;}
.y72{bottom:611.410500px;}
.y12c{bottom:613.834500px;}
.ybf{bottom:614.416500px;}
.y181{bottom:615.838500px;}
.y169{bottom:616.309500px;}
.y1de{bottom:618.006000px;}
.y141{bottom:618.574500px;}
.y1b8{bottom:620.343000px;}
.y11f{bottom:622.452000px;}
.yb{bottom:625.485000px;}
.yfa{bottom:628.477500px;}
.y56{bottom:632.545500px;}
.y1a8{bottom:634.099500px;}
.y12b{bottom:634.158000px;}
.ybe{bottom:634.740000px;}
.y168{bottom:636.633000px;}
.ydb{bottom:636.652500px;}
.y33{bottom:636.813000px;}
.y71{bottom:638.301000px;}
.y140{bottom:638.898000px;}
.y11e{bottom:642.775500px;}
.y1dd{bottom:644.896500px;}
.y180{bottom:645.144000px;}
.y1b7{bottom:647.233500px;}
.ya{bottom:650.707500px;}
.y12a{bottom:654.481500px;}
.y19a{bottom:654.567000px;}
.y13f{bottom:659.221500px;}
.y55{bottom:659.436000px;}
.y1f9{bottom:660.520500px;}
.y1a7{bottom:660.990000px;}
.y11d{bottom:663.100500px;}
.yda{bottom:663.543000px;}
.y32{bottom:663.703500px;}
.ybd{bottom:664.047000px;}
.y70{bottom:665.191500px;}
.y17f{bottom:665.467500px;}
.y167{bottom:667.546500px;}
.y92{bottom:669.879000px;}
.y1dc{bottom:671.787000px;}
.y1b6{bottom:674.124000px;}
.y129{bottom:674.805000px;}
.y9{bottom:675.928500px;}
.y13e{bottom:679.546500px;}
.y199{bottom:681.457500px;}
.y11c{bottom:683.424000px;}
.y54{bottom:686.326500px;}
.y1f8{bottom:687.411000px;}
.y166{bottom:687.870000px;}
.y1a6{bottom:687.880500px;}
.y31{bottom:690.595500px;}
.ya9{bottom:692.083500px;}
.y128{bottom:693.667500px;}
.y17e{bottom:694.423500px;}
.yf9{bottom:696.294000px;}
.y91{bottom:696.771000px;}
.y13d{bottom:699.870000px;}
.y1b5{bottom:701.014500px;}
.y8{bottom:701.151000px;}
.yd9{bottom:702.013500px;}
.y6f{bottom:703.662000px;}
.y11b{bottom:703.747500px;}
.ybc{bottom:705.736500px;}
.y165{bottom:708.195000px;}
.y198{bottom:708.349500px;}
.y53{bottom:713.218500px;}
.y1a5{bottom:714.772500px;}
.y1db{bottom:716.433000px;}
.y30{bottom:717.486000px;}
.ya8{bottom:718.974000px;}
.y13c{bottom:720.193500px;}
.y11a{bottom:722.608500px;}
.yf8{bottom:723.186000px;}
.y90{bottom:723.661500px;}
.y1b4{bottom:727.906500px;}
.y1f7{bottom:729.246000px;}
.y197{bottom:735.240000px;}
.y17d{bottom:736.113000px;}
.y7{bottom:736.452000px;}
.y119{bottom:736.771500px;}
.y164{bottom:737.500500px;}
.y52{bottom:740.109000px;}
.y13b{bottom:740.517000px;}
.y1a4{bottom:741.663000px;}
.y2f{bottom:744.376500px;}
.ya7{bottom:745.864500px;}
.yf7{bottom:750.076500px;}
.y8f{bottom:750.552000px;}
.y1f6{bottom:756.136500px;}
.y163{bottom:757.824000px;}
.y13a{bottom:759.378000px;}
.yd8{bottom:760.482000px;}
.y6e{bottom:762.130500px;}
.y118{bottom:763.663500px;}
.y51{bottom:766.999500px;}
.y1a3{bottom:768.553500px;}
.y2e{bottom:771.267000px;}
.ya6{bottom:772.755000px;}
.y1da{bottom:774.987000px;}
.yf6{bottom:776.967000px;}
.y8e{bottom:777.442500px;}
.y162{bottom:778.149000px;}
.y1b3{bottom:778.900500px;}
.y1f5{bottom:783.027000px;}
.yd7{bottom:787.372500px;}
.y6d{bottom:789.021000px;}
.y117{bottom:790.554000px;}
.y2d{bottom:798.159000px;}
.y161{bottom:798.472500px;}
.y1b2{bottom:799.224000px;}
.ya5{bottom:799.647000px;}
.yf5{bottom:803.857500px;}
.y8d{bottom:804.333000px;}
.y50{bottom:805.468500px;}
.yd5{bottom:815.065500px;}
.y6c{bottom:815.913000px;}
.y116{bottom:817.444500px;}
.y160{bottom:818.796000px;}
.y1a2{bottom:819.547500px;}
.y1f4{bottom:824.862000px;}
.y2c{bottom:825.049500px;}
.ya4{bottom:826.537500px;}
.y6{bottom:826.861500px;}
.y1b1{bottom:830.137500px;}
.yf4{bottom:830.748000px;}
.y8c{bottom:831.225000px;}
.yd6{bottom:831.388500px;}
.yd2{bottom:835.821000px;}
.y17c{bottom:838.116000px;}
.y15f{bottom:839.119500px;}
.y1a1{bottom:839.871000px;}
.y6b{bottom:842.803500px;}
.y115{bottom:844.335000px;}
.y1b0{bottom:850.461000px;}
.y1f3{bottom:851.752500px;}
.y2b{bottom:851.940000px;}
.yd4{bottom:852.858000px;}
.ya3{bottom:853.428000px;}
.y4f{bottom:856.605000px;}
.yf3{bottom:857.640000px;}
.y8b{bottom:858.115500px;}
.yd3{bottom:858.237000px;}
.y15e{bottom:859.443000px;}
.y6a{bottom:869.694000px;}
.y1a0{bottom:870.784500px;}
.y114{bottom:871.225500px;}
.y5{bottom:871.306500px;}
.y1f2{bottom:878.644500px;}
.y2a{bottom:878.830500px;}
.y15d{bottom:879.768000px;}
.ybb{bottom:880.318500px;}
.yf2{bottom:884.530500px;}
.y8a{bottom:885.006000px;}
.y19f{bottom:891.108000px;}
.ya2{bottom:891.897000px;}
.y69{bottom:896.584500px;}
.y15c{bottom:900.091500px;}
.y4{bottom:904.689000px;}
.y29{bottom:905.722500px;}
.yba{bottom:907.210500px;}
.yf1{bottom:911.421000px;}
.y19e{bottom:911.431500px;}
.y89{bottom:911.896500px;}
.y15b{bottom:920.415000px;}
.y1f1{bottom:920.479500px;}
.y4e{bottom:923.476500px;}
.y113{bottom:930.031500px;}
.y19d{bottom:931.756500px;}
.y28{bottom:932.613000px;}
.yb9{bottom:934.101000px;}
.yf0{bottom:938.311500px;}
.y88{bottom:938.788500px;}
.y15a{bottom:940.738500px;}
.y1f0{bottom:947.370000px;}
.y4d{bottom:950.367000px;}
.y27{bottom:959.503500px;}
.y112{bottom:960.682500px;}
.yb8{bottom:960.991500px;}
.y159{bottom:961.062000px;}
.y3{bottom:964.402500px;}
.yef{bottom:965.203500px;}
.y87{bottom:965.679000px;}
.y1ef{bottom:974.260500px;}
.y4c{bottom:977.257500px;}
.y158{bottom:981.385500px;}
.y111{bottom:982.351500px;}
.y26{bottom:986.394000px;}
.yb7{bottom:987.882000px;}
.yee{bottom:992.094000px;}
.y86{bottom:992.569500px;}
.y157{bottom:1001.710500px;}
.y110{bottom:1004.020500px;}
.y4b{bottom:1004.148000px;}
.y2{bottom:1010.766000px;}
.y25{bottom:1013.284500px;}
.yb6{bottom:1014.772500px;}
.y1ee{bottom:1016.095500px;}
.yed{bottom:1018.984500px;}
.y85{bottom:1019.460000px;}
.y156{bottom:1022.034000px;}
.y10f{bottom:1025.689500px;}
.y1c9{bottom:1026.352500px;}
.y4a{bottom:1031.040000px;}
.y24{bottom:1040.176500px;}
.y155{bottom:1042.357500px;}
.y1ed{bottom:1042.986000px;}
.yec{bottom:1045.875000px;}
.y84{bottom:1046.352000px;}
.y10e{bottom:1047.357000px;}
.y19c{bottom:1051.339500px;}
.yb5{bottom:1053.243000px;}
.y1{bottom:1057.129500px;}
.y49{bottom:1057.930500px;}
.y23{bottom:1067.067000px;}
.y10d{bottom:1069.026000px;}
.y154{bottom:1071.664500px;}
.yeb{bottom:1072.767000px;}
.y83{bottom:1073.242500px;}
.y48{bottom:1084.821000px;}
.y22{bottom:1093.957500px;}
.y10c{bottom:1099.678500px;}
.y82{bottom:1100.133000px;}
.y153{bottom:1100.619000px;}
.y47{bottom:1111.711500px;}
.y21{bottom:1138.602000px;}
.y10b{bottom:1142.308500px;}
.hf{height:0.000000px;}
.h8{height:29.499174px;}
.he{height:32.661470px;}
.h9{height:44.891476px;}
.h5{height:45.883675px;}
.hc{height:46.145493px;}
.h6{height:49.156405px;}
.hd{height:50.929152px;}
.h7{height:53.870131px;}
.hb{height:60.426194px;}
.h10{height:61.416699px;}
.h11{height:71.600131px;}
.ha{height:72.407972px;}
.h4{height:73.854238px;}
.h3{height:76.127476px;}
.h2{height:87.402375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:106.299000px;}
.x1a{left:113.977500px;}
.x35{left:115.077000px;}
.x21{left:120.459000px;}
.x1{left:121.749000px;}
.x1f{left:123.307500px;}
.xc{left:126.489000px;}
.x27{left:130.705500px;}
.xa{left:132.637500px;}
.x36{left:142.386000px;}
.x4{left:143.494500px;}
.x9{left:150.196500px;}
.x2{left:160.549500px;}
.x20{left:166.920000px;}
.x8{left:174.603000px;}
.x2b{left:188.616000px;}
.x25{left:191.961000px;}
.x34{left:202.978500px;}
.x1e{left:205.914000px;}
.xe{left:208.644000px;}
.xf{left:215.070000px;}
.x11{left:218.187000px;}
.x2d{left:247.962000px;}
.x1b{left:266.422500px;}
.x10{left:273.015000px;}
.x22{left:274.401000px;}
.x19{left:280.491000px;}
.x1c{left:283.788000px;}
.x18{left:305.085000px;}
.x3{left:361.755000px;}
.x2f{left:367.149000px;}
.x32{left:370.587000px;}
.x12{left:372.490500px;}
.x30{left:381.270000px;}
.x29{left:384.949500px;}
.x6{left:386.430000px;}
.x5{left:390.120000px;}
.x2c{left:399.070500px;}
.x33{left:403.240500px;}
.x7{left:410.724000px;}
.x2a{left:417.603000px;}
.x24{left:429.690000px;}
.x1d{left:437.679000px;}
.xd{left:442.068000px;}
.x23{left:443.958000px;}
.x2e{left:447.328500px;}
.x31{left:450.768000px;}
.x28{left:465.129000px;}
.x14{left:472.362000px;}
.x15{left:475.035000px;}
.x13{left:479.635500px;}
.x16{left:501.253500px;}
.x17{left:509.524500px;}
.x26{left:519.091500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.562667pt;}
.v5{vertical-align:15.760000pt;}
.v4{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.001396pt;}
.ls7{letter-spacing:0.004874pt;}
.ls19{letter-spacing:0.005514pt;}
.ls20{letter-spacing:0.005770pt;}
.lsf{letter-spacing:0.006424pt;}
.ls1b{letter-spacing:0.006661pt;}
.ls1f{letter-spacing:0.009107pt;}
.ls1d{letter-spacing:0.009591pt;}
.ls14{letter-spacing:0.009702pt;}
.ls11{letter-spacing:0.010831pt;}
.ls16{letter-spacing:0.015961pt;}
.lsa{letter-spacing:1.721549pt;}
.lse{letter-spacing:2.653258pt;}
.ls12{letter-spacing:2.658591pt;}
.ls3{letter-spacing:2.659757pt;}
.ls2{letter-spacing:2.660350pt;}
.ls9{letter-spacing:3.570620pt;}
.ls10{letter-spacing:14.154957pt;}
.lsd{letter-spacing:14.218718pt;}
.lsc{letter-spacing:14.537523pt;}
.ls17{letter-spacing:14.792567pt;}
.ls27{letter-spacing:15.366417pt;}
.ls8{letter-spacing:15.621461pt;}
.ls18{letter-spacing:16.004028pt;}
.ls23{letter-spacing:16.174559pt;}
.ls1e{letter-spacing:16.514116pt;}
.ls15{letter-spacing:16.822187pt;}
.lsb{letter-spacing:17.725577pt;}
.ls22{letter-spacing:19.200016pt;}
.ls26{letter-spacing:19.258198pt;}
.ls13{letter-spacing:19.275989pt;}
.ls24{letter-spacing:19.316380pt;}
.ls25{letter-spacing:20.849869pt;}
.ls5{letter-spacing:22.817323pt;}
.ls21{letter-spacing:25.910656pt;}
.ls1c{letter-spacing:27.643520pt;}
.ls1a{letter-spacing:30.097323pt;}
.ls0{letter-spacing:127.091713pt;}
.ls1{letter-spacing:130.045956pt;}
.wsa7{word-spacing:-42.311844pt;}
.wsa0{word-spacing:-40.590295pt;}
.ws106{word-spacing:-37.899668pt;}
.ws15{word-spacing:-31.211042pt;}
.wse8{word-spacing:-28.928024pt;}
.wsf0{word-spacing:-21.783291pt;}
.ws144{word-spacing:-18.771258pt;}
.ws141{word-spacing:-18.388692pt;}
.ws13a{word-spacing:-17.311130pt;}
.ws13c{word-spacing:-17.183607pt;}
.ws11d{word-spacing:-17.056085pt;}
.ws166{word-spacing:-16.928563pt;}
.ws4c{word-spacing:-16.864802pt;}
.ws95{word-spacing:-16.858426pt;}
.wsbe{word-spacing:-16.609758pt;}
.ws134{word-spacing:-16.482236pt;}
.wsab{word-spacing:-16.418475pt;}
.ws15e{word-spacing:-16.290953pt;}
.ws77{word-spacing:-16.093293pt;}
.ws47{word-spacing:-15.908386pt;}
.ws12c{word-spacing:-15.844625pt;}
.ws135{word-spacing:-15.653342pt;}
.wsa3{word-spacing:-15.589581pt;}
.wsc8{word-spacing:-15.334537pt;}
.ws145{word-spacing:-15.328160pt;}
.ws160{word-spacing:-15.270775pt;}
.wsb7{word-spacing:-15.207014pt;}
.ws5a{word-spacing:-15.143253pt;}
.ws59{word-spacing:-15.079492pt;}
.ws155{word-spacing:-14.951970pt;}
.ws7b{word-spacing:-14.888209pt;}
.ws49{word-spacing:-14.760687pt;}
.ws131{word-spacing:-14.696926pt;}
.ws96{word-spacing:-14.633165pt;}
.ws6b{word-spacing:-14.505643pt;}
.ws137{word-spacing:-14.378121pt;}
.ws125{word-spacing:-14.314359pt;}
.ws74{word-spacing:-14.186837pt;}
.ws48{word-spacing:-14.123076pt;}
.ws78{word-spacing:-13.995554pt;}
.ws9b{word-spacing:-13.931793pt;}
.wsc1{word-spacing:-13.868032pt;}
.ws98{word-spacing:-13.804271pt;}
.ws3b{word-spacing:-13.740510pt;}
.ws42{word-spacing:-13.549227pt;}
.wse4{word-spacing:-13.509829pt;}
.wsbf{word-spacing:-13.485466pt;}
.ws111{word-spacing:-13.421705pt;}
.ws73{word-spacing:-13.357943pt;}
.ws12f{word-spacing:-13.294182pt;}
.ws21{word-spacing:-13.230421pt;}
.wsd{word-spacing:-13.218920pt;}
.ws152{word-spacing:-13.166660pt;}
.ws9c{word-spacing:-13.102899pt;}
.ws9{word-spacing:-13.102556pt;}
.ws10c{word-spacing:-13.039138pt;}
.ws14a{word-spacing:-12.975377pt;}
.ws15d{word-spacing:-12.911616pt;}
.ws150{word-spacing:-12.847855pt;}
.ws3a{word-spacing:-12.784094pt;}
.wscd{word-spacing:-12.753465pt;}
.wsf1{word-spacing:-12.695283pt;}
.ws112{word-spacing:-12.592811pt;}
.ws6d{word-spacing:-12.529050pt;}
.ws140{word-spacing:-12.522673pt;}
.wsd2{word-spacing:-12.520738pt;}
.ws127{word-spacing:-12.458912pt;}
.ws4b{word-spacing:-12.401527pt;}
.wsb0{word-spacing:-12.337766pt;}
.ws149{word-spacing:-12.274005pt;}
.ws91{word-spacing:-12.210244pt;}
.wsf9{word-spacing:-12.171647pt;}
.ws58{word-spacing:-12.146483pt;}
.ws54{word-spacing:-12.018961pt;}
.ws97{word-spacing:-11.955200pt;}
.ws16{word-spacing:-11.948824pt;}
.ws34{word-spacing:-11.891439pt;}
.ws156{word-spacing:-11.827678pt;}
.ws10d{word-spacing:-11.763917pt;}
.ws6{word-spacing:-11.706192pt;}
.ws4f{word-spacing:-11.700156pt;}
.ws46{word-spacing:-11.636395pt;}
.ws5c{word-spacing:-11.508873pt;}
.ws2e{word-spacing:-11.445111pt;}
.wsb9{word-spacing:-11.317589pt;}
.wse{word-spacing:-11.240737pt;}
.ws14d{word-spacing:-11.190067pt;}
.ws7c{word-spacing:-11.126306pt;}
.ws13d{word-spacing:-11.062545pt;}
.ws79{word-spacing:-11.056169pt;}
.ws2d{word-spacing:-10.998784pt;}
.wsad{word-spacing:-10.935023pt;}
.ws55{word-spacing:-10.871262pt;}
.ws53{word-spacing:-10.807501pt;}
.ws13e{word-spacing:-10.743740pt;}
.wsd4{word-spacing:-10.717100pt;}
.ws37{word-spacing:-10.679979pt;}
.ws27{word-spacing:-10.616218pt;}
.ws13b{word-spacing:-10.552457pt;}
.ws3d{word-spacing:-10.488695pt;}
.ws17{word-spacing:-10.424934pt;}
.ws67{word-spacing:-10.361173pt;}
.ws10{word-spacing:-10.309827pt;}
.ws136{word-spacing:-10.297412pt;}
.ws8b{word-spacing:-10.291036pt;}
.wse6{word-spacing:-10.251645pt;}
.ws60{word-spacing:-10.233651pt;}
.ws68{word-spacing:-10.169890pt;}
.ws4a{word-spacing:-10.106129pt;}
.ws8e{word-spacing:-10.099753pt;}
.ws28{word-spacing:-10.042368pt;}
.ws84{word-spacing:-9.978607pt;}
.ws14b{word-spacing:-9.914846pt;}
.ws10b{word-spacing:-9.851085pt;}
.ws7f{word-spacing:-9.844709pt;}
.wsd1{word-spacing:-9.844372pt;}
.ws57{word-spacing:-9.787324pt;}
.ws56{word-spacing:-9.723563pt;}
.ws12{word-spacing:-9.669826pt;}
.ws7a{word-spacing:-9.659802pt;}
.wsb{word-spacing:-9.611644pt;}
.ws31{word-spacing:-9.596041pt;}
.ws83{word-spacing:-9.532279pt;}
.ws8{word-spacing:-9.495281pt;}
.ws126{word-spacing:-9.468518pt;}
.ws147{word-spacing:-9.462142pt;}
.ws133{word-spacing:-9.404757pt;}
.ws148{word-spacing:-9.398381pt;}
.wscc{word-spacing:-9.378917pt;}
.ws1f{word-spacing:-9.213474pt;}
.ws2c{word-spacing:-9.149713pt;}
.wsfa{word-spacing:-9.088008pt;}
.wsf6{word-spacing:-9.029826pt;}
.ws9f{word-spacing:-9.022191pt;}
.wse1{word-spacing:-8.971644pt;}
.ws8c{word-spacing:-8.958430pt;}
.wsf5{word-spacing:-8.913462pt;}
.ws36{word-spacing:-8.894669pt;}
.ws99{word-spacing:-8.888293pt;}
.ws157{word-spacing:-8.830908pt;}
.wsf7{word-spacing:-8.797098pt;}
.ws8f{word-spacing:-8.767147pt;}
.wsf3{word-spacing:-8.738916pt;}
.ws14f{word-spacing:-8.639625pt;}
.wsd3{word-spacing:-8.622553pt;}
.ws38{word-spacing:-8.575863pt;}
.ws5b{word-spacing:-8.512102pt;}
.ws10e{word-spacing:-8.448341pt;}
.wsbb{word-spacing:-8.384580pt;}
.ws142{word-spacing:-8.378204pt;}
.wsfe{word-spacing:-8.193297pt;}
.ws4{word-spacing:-8.157098pt;}
.ws20{word-spacing:-8.129536pt;}
.ws7e{word-spacing:-8.065775pt;}
.ws40{word-spacing:-8.002014pt;}
.wscf{word-spacing:-7.982552pt;}
.ws7d{word-spacing:-7.938253pt;}
.ws14e{word-spacing:-7.874492pt;}
.ws110{word-spacing:-7.810731pt;}
.ws3c{word-spacing:-7.746970pt;}
.wsba{word-spacing:-7.555686pt;}
.ws154{word-spacing:-7.428164pt;}
.ws24{word-spacing:-7.364403pt;}
.ws2f{word-spacing:-7.300642pt;}
.ws6e{word-spacing:-7.236881pt;}
.ws12a{word-spacing:-7.166744pt;}
.ws80{word-spacing:-7.109359pt;}
.ws61{word-spacing:-7.045598pt;}
.wse2{word-spacing:-6.993460pt;}
.ws22{word-spacing:-6.981837pt;}
.wsf{word-spacing:-6.877097pt;}
.ws1d{word-spacing:-6.854315pt;}
.wsdf{word-spacing:-6.818915pt;}
.wsc7{word-spacing:-6.790554pt;}
.ws39{word-spacing:-6.726793pt;}
.ws113{word-spacing:-6.663031pt;}
.ws23{word-spacing:-6.599270pt;}
.ws81{word-spacing:-6.592894pt;}
.ws82{word-spacing:-6.535509pt;}
.wsa{word-spacing:-6.528005pt;}
.ws14{word-spacing:-6.471748pt;}
.ws76{word-spacing:-6.465372pt;}
.wsc2{word-spacing:-6.407987pt;}
.ws9a{word-spacing:-6.401611pt;}
.ws6a{word-spacing:-6.344226pt;}
.wsf8{word-spacing:-6.295278pt;}
.ws12b{word-spacing:-6.280465pt;}
.ws64{word-spacing:-6.216704pt;}
.wse5{word-spacing:-6.178914pt;}
.ws63{word-spacing:-6.152943pt;}
.wseb{word-spacing:-6.120732pt;}
.ws75{word-spacing:-6.089182pt;}
.ws11{word-spacing:-6.062551pt;}
.ws3f{word-spacing:-6.025421pt;}
.ws35{word-spacing:-5.961660pt;}
.ws52{word-spacing:-5.897899pt;}
.wsb6{word-spacing:-5.834138pt;}
.ws2b{word-spacing:-5.770377pt;}
.ws13f{word-spacing:-5.764000pt;}
.ws15b{word-spacing:-5.706615pt;}
.ws123{word-spacing:-5.700239pt;}
.wsde{word-spacing:-5.655277pt;}
.ws7{word-spacing:-5.597096pt;}
.ws25{word-spacing:-5.579093pt;}
.wsa5{word-spacing:-5.451571pt;}
.wsf4{word-spacing:-5.422550pt;}
.wsb1{word-spacing:-5.387810pt;}
.wsd9{word-spacing:-5.364368pt;}
.wsbc{word-spacing:-5.260288pt;}
.wsdc{word-spacing:-5.248004pt;}
.ws71{word-spacing:-5.196527pt;}
.wsd7{word-spacing:-5.189823pt;}
.ws11e{word-spacing:-5.132766pt;}
.wsd5{word-spacing:-5.131641pt;}
.ws88{word-spacing:-5.005244pt;}
.wsf2{word-spacing:-4.957095pt;}
.ws51{word-spacing:-4.941483pt;}
.ws50{word-spacing:-4.877722pt;}
.ws6f{word-spacing:-4.813961pt;}
.ws139{word-spacing:-4.750199pt;}
.ws165{word-spacing:-4.686438pt;}
.wse3{word-spacing:-4.666186pt;}
.ws33{word-spacing:-4.622677pt;}
.ws122{word-spacing:-4.558916pt;}
.ws85{word-spacing:-4.495155pt;}
.ws5e{word-spacing:-4.367633pt;}
.wsec{word-spacing:-4.317095pt;}
.ws26{word-spacing:-4.303872pt;}
.ws8d{word-spacing:-4.297496pt;}
.wscb{word-spacing:-4.258913pt;}
.ws124{word-spacing:-4.240111pt;}
.wsbd{word-spacing:-4.112589pt;}
.ws132{word-spacing:-4.048828pt;}
.ws70{word-spacing:-3.985067pt;}
.wsa6{word-spacing:-3.921306pt;}
.wsd0{word-spacing:-3.909821pt;}
.ws3e{word-spacing:-3.793783pt;}
.wsfb{word-spacing:-3.793458pt;}
.ws65{word-spacing:-3.730022pt;}
.wsed{word-spacing:-3.677094pt;}
.ws146{word-spacing:-3.538739pt;}
.ws69{word-spacing:-3.474978pt;}
.wsce{word-spacing:-3.444367pt;}
.ws10f{word-spacing:-3.411217pt;}
.wsea{word-spacing:-3.328003pt;}
.ws15a{word-spacing:-3.283695pt;}
.ws6c{word-spacing:-3.219934pt;}
.wsfc{word-spacing:-3.211639pt;}
.wsc{word-spacing:-3.153457pt;}
.wsc0{word-spacing:-3.028651pt;}
.wsda{word-spacing:-2.978912pt;}
.wsaf{word-spacing:-2.901129pt;}
.wsdd{word-spacing:-2.862548pt;}
.ws10a{word-spacing:-2.837367pt;}
.wse0{word-spacing:-2.804366pt;}
.ws5d{word-spacing:-2.773606pt;}
.ws5f{word-spacing:-2.646084pt;}
.ws153{word-spacing:-2.582323pt;}
.ws8a{word-spacing:-2.518562pt;}
.wsdb{word-spacing:-2.513457pt;}
.ws143{word-spacing:-2.454801pt;}
.ws129{word-spacing:-2.391040pt;}
.ws138{word-spacing:-2.263518pt;}
.ws90{word-spacing:-2.199757pt;}
.ws30{word-spacing:-2.135996pt;}
.ws29{word-spacing:-2.008474pt;}
.ws14c{word-spacing:-1.944713pt;}
.ws1e{word-spacing:-1.817190pt;}
.ws9d{word-spacing:-1.810814pt;}
.ws89{word-spacing:-1.625907pt;}
.ws9e{word-spacing:-1.562146pt;}
.ws72{word-spacing:-1.498385pt;}
.wsca{word-spacing:-1.466183pt;}
.wsb8{word-spacing:-1.370863pt;}
.ws43{word-spacing:-1.307102pt;}
.ws66{word-spacing:-1.179580pt;}
.ws32{word-spacing:-1.052058pt;}
.ws4e{word-spacing:-0.988297pt;}
.ws4d{word-spacing:-0.797013pt;}
.ws2a{word-spacing:-0.733252pt;}
.ws121{word-spacing:-0.669491pt;}
.ws41{word-spacing:-0.541969pt;}
.ws5{word-spacing:-0.535273pt;}
.ws13{word-spacing:-0.344310pt;}
.ws1{word-spacing:-0.110200pt;}
.ws151{word-spacing:-0.095642pt;}
.ws158{word-spacing:-0.063761pt;}
.ws11f{word-spacing:-0.031881pt;}
.ws1b{word-spacing:0.000000pt;}
.ws120{word-spacing:0.605730pt;}
.ws103{word-spacing:12.858193pt;}
.ws104{word-spacing:12.916374pt;}
.wsa1{word-spacing:14.091196pt;}
.ws19{word-spacing:14.877483pt;}
.wsee{word-spacing:16.116377pt;}
.ws167{word-spacing:16.259072pt;}
.ws18{word-spacing:17.640444pt;}
.ws161{word-spacing:18.171904pt;}
.wsef{word-spacing:19.025470pt;}
.wsa9{word-spacing:19.229295pt;}
.wsb2{word-spacing:19.234628pt;}
.wsac{word-spacing:19.874628pt;}
.ws93{word-spacing:20.596381pt;}
.wsa4{word-spacing:20.695961pt;}
.ws109{word-spacing:21.487479pt;}
.ws86{word-spacing:22.109109pt;}
.ws15f{word-spacing:22.252612pt;}
.wsa8{word-spacing:22.775961pt;}
.ws163{word-spacing:22.826462pt;}
.ws164{word-spacing:22.953984pt;}
.ws1a{word-spacing:23.538303pt;}
.ws2{word-spacing:24.178129pt;}
.ws3{word-spacing:24.254642pt;}
.wsae{word-spacing:25.869295pt;}
.ws162{word-spacing:26.078276pt;}
.ws15c{word-spacing:26.588365pt;}
.ws159{word-spacing:27.417259pt;}
.wsc3{word-spacing:27.901843pt;}
.ws62{word-spacing:27.927269pt;}
.ws45{word-spacing:28.003782pt;}
.wse7{word-spacing:28.683660pt;}
.wsfd{word-spacing:28.974570pt;}
.wsb5{word-spacing:30.434628pt;}
.wsb4{word-spacing:32.365295pt;}
.ws44{word-spacing:32.869937pt;}
.ws130{word-spacing:32.961753pt;}
.ws0{word-spacing:33.831400pt;}
.wsd8{word-spacing:37.527304pt;}
.wsd6{word-spacing:37.876395pt;}
.wse9{word-spacing:41.600035pt;}
.wsc9{word-spacing:45.323674pt;}
.wsc6{word-spacing:52.768659pt;}
.ws92{word-spacing:63.709144pt;}
.wsc4{word-spacing:78.521754pt;}
.wsc5{word-spacing:78.585515pt;}
.ws1c{word-spacing:98.977073pt;}
.ws11b{word-spacing:100.293902pt;}
.ws100{word-spacing:107.333908pt;}
.ws116{word-spacing:142.068482pt;}
.ws101{word-spacing:149.108488pt;}
.ws12e{word-spacing:187.043065pt;}
.ws11a{word-spacing:187.101247pt;}
.ws118{word-spacing:192.872888pt;}
.ws107{word-spacing:194.083071pt;}
.ws119{word-spacing:210.548539pt;}
.ws11c{word-spacing:216.017635pt;}
.ws108{word-spacing:223.057640pt;}
.ws114{word-spacing:273.850410pt;}
.wsff{word-spacing:280.890416pt;}
.ws128{word-spacing:440.948731pt;}
.ws12d{word-spacing:465.385115pt;}
.ws105{word-spacing:534.214263pt;}
.wsb3{word-spacing:544.653295pt;}
.ws115{word-spacing:567.552473pt;}
.ws102{word-spacing:569.588838pt;}
.ws117{word-spacing:620.788881pt;}
.wsaa{word-spacing:632.103961pt;}
.ws87{word-spacing:636.877414pt;}
.ws94{word-spacing:744.425348pt;}
.wsa2{word-spacing:871.767961pt;}
._1{margin-left:-8.375200pt;}
._1e{margin-left:-7.115715pt;}
._23{margin-left:-5.802257pt;}
._7{margin-left:-4.829095pt;}
._f{margin-left:-3.908519pt;}
._0{margin-left:-2.755000pt;}
._5{margin-left:-1.570910pt;}
._e{width:0.986157pt;}
._4{width:1.989340pt;}
._3{width:2.975400pt;}
._42{width:8.671505pt;}
._44{width:15.638215pt;}
._b{width:16.765674pt;}
._1c{width:18.111630pt;}
._1f{width:20.138655pt;}
._15{width:21.138933pt;}
._d{width:22.878847pt;}
._8{width:24.494566pt;}
._a{width:26.007294pt;}
._c{width:27.736064pt;}
._47{width:28.684172pt;}
._20{width:29.575525pt;}
._14{width:31.162415pt;}
._12{width:32.750072pt;}
._21{width:33.942161pt;}
._10{width:34.928318pt;}
._16{width:36.471330pt;}
._9{width:37.760031pt;}
._11{width:39.276817pt;}
._17{width:40.870844pt;}
._13{width:42.408796pt;}
._7f{width:43.327785pt;}
._1d{width:44.365490pt;}
._2{width:45.292200pt;}
._46{width:46.369943pt;}
._25{width:47.501995pt;}
._24{width:49.299245pt;}
._45{width:50.382147pt;}
._22{width:51.593607pt;}
._6{width:53.003681pt;}
._5f{width:54.352327pt;}
._19{width:55.738076pt;}
._18{width:57.448721pt;}
._72{width:58.787703pt;}
._53{width:63.007925pt;}
._27{width:64.526727pt;}
._43{width:71.731200pt;}
._2e{width:79.243702pt;}
._1b{width:84.164373pt;}
._40{width:85.294617pt;}
._54{width:87.796437pt;}
._65{width:92.974623pt;}
._41{width:94.836443pt;}
._1a{width:99.068889pt;}
._49{width:106.544742pt;}
._4a{width:110.660764pt;}
._51{width:113.112132pt;}
._61{width:124.276467pt;}
._36{width:129.920108pt;}
._38{width:133.352838pt;}
._4c{width:134.280806pt;}
._78{width:137.079413pt;}
._34{width:140.221234pt;}
._3a{width:144.756484pt;}
._3f{width:146.909213pt;}
._4d{width:149.050258pt;}
._2f{width:154.589220pt;}
._3e{width:156.276494pt;}
._6a{width:158.138314pt;}
._31{width:159.243769pt;}
._48{width:166.875986pt;}
._75{width:173.323781pt;}
._58{width:179.607422pt;}
._66{width:180.945605pt;}
._30{width:183.912881pt;}
._7a{width:187.639455pt;}
._39{width:197.992892pt;}
._33{width:201.774714pt;}
._28{width:204.290458pt;}
._74{width:206.545627pt;}
._62{width:208.931083pt;}
._6b{width:210.560175pt;}
._79{width:216.029271pt;}
._5a{width:223.069277pt;}
._56{width:227.843125pt;}
._7c{width:230.982011pt;}
._7b{width:239.476563pt;}
._69{width:247.508596pt;}
._64{width:253.963848pt;}
._3d{width:258.970423pt;}
._3b{width:261.527491pt;}
._4f{width:263.970816pt;}
._4e{width:272.706082pt;}
._4b{width:273.981303pt;}
._32{width:276.832257pt;}
._71{width:282.880236pt;}
._6d{width:289.629332pt;}
._73{width:292.072971pt;}
._50{width:295.405022pt;}
._6c{width:299.927523pt;}
._5d{width:304.058435pt;}
._29{width:310.325111pt;}
._5c{width:311.505714pt;}
._76{width:317.974236pt;}
._5b{width:321.803905pt;}
._6e{width:327.622091pt;}
._2c{width:331.732363pt;}
._60{width:340.771193pt;}
._7d{width:342.468802pt;}
._2b{width:372.109585pt;}
._55{width:386.327595pt;}
._67{width:391.505781pt;}
._77{width:402.036699pt;}
._7e{width:426.473083pt;}
._6f{width:444.577978pt;}
._3c{width:456.087653pt;}
._2a{width:462.117095pt;}
._52{width:467.562204pt;}
._5e{width:475.647094pt;}
._35{width:476.567670pt;}
._37{width:491.462228pt;}
._2d{width:497.439030pt;}
._59{width:527.127712pt;}
._70{width:528.582259pt;}
._26{width:544.328226pt;}
._57{width:559.651375pt;}
._68{width:568.320474pt;}
._63{width:647.040539pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:54.637333pt;}
.y68{bottom:94.488000pt;}
.y17b{bottom:96.152000pt;}
.y1d7{bottom:98.764000pt;}
.y1f{bottom:99.309333pt;}
.y1c8{bottom:100.745333pt;}
.ya1{bottom:106.417333pt;}
.yea{bottom:107.566667pt;}
.y1e{bottom:110.496000pt;}
.y196{bottom:111.700000pt;}
.y46{bottom:111.900000pt;}
.yb4{bottom:114.142667pt;}
.y67{bottom:118.390667pt;}
.y17a{bottom:120.054667pt;}
.y1d6{bottom:122.666667pt;}
.y1c7{bottom:124.649333pt;}
.yd1{bottom:128.037333pt;}
.ya0{bottom:130.320000pt;}
.y1d{bottom:131.257333pt;}
.ye9{bottom:131.469333pt;}
.y195{bottom:135.602667pt;}
.y45{bottom:135.802667pt;}
.y1d9{bottom:137.125333pt;}
.yb3{bottom:138.045333pt;}
.y66{bottom:142.294667pt;}
.y179{bottom:143.958667pt;}
.y10a{bottom:144.356000pt;}
.y1d5{bottom:146.569333pt;}
.y1c{bottom:147.314667pt;}
.y1ec{bottom:148.278667pt;}
.y1c6{bottom:148.552000pt;}
.yd0{bottom:151.940000pt;}
.y9f{bottom:154.222667pt;}
.y194{bottom:159.505333pt;}
.y44{bottom:159.705333pt;}
.y1d8{bottom:161.028000pt;}
.yb2{bottom:161.948000pt;}
.y1b{bottom:163.373333pt;}
.ye8{bottom:165.665333pt;}
.y65{bottom:166.197333pt;}
.y178{bottom:167.861333pt;}
.y109{bottom:168.258667pt;}
.y1d4{bottom:170.472000pt;}
.y1eb{bottom:172.182667pt;}
.y1c5{bottom:172.454667pt;}
.ycf{bottom:175.842667pt;}
.y152{bottom:178.190667pt;}
.y43{bottom:183.608000pt;}
.y81{bottom:184.930667pt;}
.y9e{bottom:188.418667pt;}
.y177{bottom:191.764000pt;}
.y108{bottom:192.161333pt;}
.y1d3{bottom:194.376000pt;}
.y1ea{bottom:196.085333pt;}
.y1c4{bottom:196.357333pt;}
.y1a{bottom:199.305333pt;}
.yce{bottom:199.745333pt;}
.y64{bottom:200.392000pt;}
.y151{bottom:202.093333pt;}
.y193{bottom:204.833333pt;}
.y42{bottom:207.512000pt;}
.y80{bottom:208.834667pt;}
.ye7{bottom:211.868000pt;}
.yb1{bottom:214.218667pt;}
.y176{bottom:215.666667pt;}
.y107{bottom:216.064000pt;}
.y1d2{bottom:218.278667pt;}
.y1c3{bottom:220.261333pt;}
.y192{bottom:222.898667pt;}
.y19{bottom:223.209333pt;}
.y150{bottom:225.996000pt;}
.y41{bottom:231.414667pt;}
.y7f{bottom:232.737333pt;}
.y1e9{bottom:233.272000pt;}
.yb0{bottom:233.480000pt;}
.y9d{bottom:233.872000pt;}
.ycd{bottom:233.941333pt;}
.ye6{bottom:235.770667pt;}
.y175{bottom:239.570667pt;}
.y106{bottom:239.968000pt;}
.y1d1{bottom:242.181333pt;}
.y1c2{bottom:244.164000pt;}
.y18{bottom:247.112000pt;}
.y191{bottom:250.377333pt;}
.y63{bottom:251.524000pt;}
.y40{bottom:255.317333pt;}
.y7e{bottom:256.640000pt;}
.y1e8{bottom:257.174667pt;}
.ye5{bottom:259.673333pt;}
.y14f{bottom:260.190667pt;}
.yaf{bottom:260.726667pt;}
.y174{bottom:263.473333pt;}
.y105{bottom:263.870667pt;}
.y1d0{bottom:266.084000pt;}
.y1c1{bottom:268.066667pt;}
.y190{bottom:268.442667pt;}
.y62{bottom:275.426667pt;}
.y3f{bottom:279.220000pt;}
.yae{bottom:279.986667pt;}
.y7d{bottom:280.542667pt;}
.y1e7{bottom:281.077333pt;}
.ye4{bottom:283.576000pt;}
.y18f{bottom:286.508000pt;}
.y17{bottom:286.954667pt;}
.y173{bottom:287.376000pt;}
.y104{bottom:287.773333pt;}
.y1cf{bottom:289.988000pt;}
.y1c0{bottom:291.969333pt;}
.y9c{bottom:294.153333pt;}
.ycc{bottom:295.325333pt;}
.yad{bottom:299.248000pt;}
.y61{bottom:299.329333pt;}
.y3e{bottom:303.124000pt;}
.y7c{bottom:304.446667pt;}
.ye3{bottom:307.480000pt;}
.y16{bottom:309.374667pt;}
.y139{bottom:310.777333pt;}
.y172{bottom:311.278667pt;}
.y103{bottom:311.676000pt;}
.y18e{bottom:312.558667pt;}
.y1ce{bottom:313.890667pt;}
.y14e{bottom:314.990667pt;}
.y1bf{bottom:315.872000pt;}
.y9b{bottom:318.057333pt;}
.y1e6{bottom:318.264000pt;}
.ycb{bottom:321.376000pt;}
.y60{bottom:323.233333pt;}
.yac{bottom:326.494667pt;}
.y3d{bottom:327.026667pt;}
.y7b{bottom:328.349333pt;}
.y138{bottom:328.842667pt;}
.y18d{bottom:330.624000pt;}
.ye2{bottom:331.382667pt;}
.y15{bottom:331.793333pt;}
.y14d{bottom:333.057333pt;}
.y171{bottom:335.182667pt;}
.y102{bottom:335.580000pt;}
.y1cd{bottom:337.793333pt;}
.yca{bottom:339.441333pt;}
.y1be{bottom:339.776000pt;}
.y9a{bottom:341.960000pt;}
.y1e5{bottom:342.166667pt;}
.y137{bottom:346.909333pt;}
.y5f{bottom:347.136000pt;}
.y18c{bottom:348.690667pt;}
.y3c{bottom:350.929333pt;}
.y14c{bottom:351.122667pt;}
.y7a{bottom:352.252000pt;}
.y14{bottom:354.213333pt;}
.ye1{bottom:355.285333pt;}
.yc9{bottom:357.508000pt;}
.y170{bottom:359.085333pt;}
.y101{bottom:359.482667pt;}
.y1cc{bottom:361.696000pt;}
.y1bd{bottom:363.678667pt;}
.yab{bottom:364.388000pt;}
.y136{bottom:364.974667pt;}
.y99{bottom:365.862667pt;}
.y1e4{bottom:366.070667pt;}
.y18b{bottom:366.756000pt;}
.y14b{bottom:369.188000pt;}
.y5e{bottom:371.038667pt;}
.y3b{bottom:374.832000pt;}
.yc8{bottom:375.573333pt;}
.y79{bottom:376.154667pt;}
.y13{bottom:376.632000pt;}
.ye0{bottom:379.188000pt;}
.y16f{bottom:382.988000pt;}
.y135{bottom:383.040000pt;}
.y100{bottom:383.385333pt;}
.y18a{bottom:384.821333pt;}
.y1cb{bottom:385.600000pt;}
.y14a{bottom:387.253333pt;}
.y1bc{bottom:387.581333pt;}
.y98{bottom:389.765333pt;}
.yc7{bottom:393.638667pt;}
.y5d{bottom:394.941333pt;}
.y1af{bottom:396.322667pt;}
.y3a{bottom:398.736000pt;}
.y12{bottom:399.052000pt;}
.y78{bottom:400.058667pt;}
.y134{bottom:401.105333pt;}
.y189{bottom:402.886667pt;}
.y1e3{bottom:403.256000pt;}
.y149{bottom:405.318667pt;}
.y16e{bottom:406.890667pt;}
.yff{bottom:407.288000pt;}
.y127{bottom:408.766667pt;}
.y1bb{bottom:411.484000pt;}
.yc6{bottom:411.704000pt;}
.y97{bottom:413.669333pt;}
.ydf{bottom:413.806667pt;}
.y5c{bottom:418.844000pt;}
.y133{bottom:419.170667pt;}
.y1ca{bottom:419.794667pt;}
.y1ae{bottom:420.225333pt;}
.y188{bottom:420.952000pt;}
.y11{bottom:421.470667pt;}
.y39{bottom:422.638667pt;}
.y148{bottom:423.385333pt;}
.y77{bottom:423.961333pt;}
.y126{bottom:426.832000pt;}
.y1e2{bottom:427.160000pt;}
.yc5{bottom:429.769333pt;}
.y16d{bottom:430.793333pt;}
.yfe{bottom:431.192000pt;}
.y132{bottom:437.237333pt;}
.y96{bottom:437.572000pt;}
.y187{bottom:439.017333pt;}
.y147{bottom:441.450667pt;}
.y5b{bottom:442.748000pt;}
.y10{bottom:443.890667pt;}
.y1ad{bottom:444.129333pt;}
.y125{bottom:444.897333pt;}
.y1ba{bottom:445.680000pt;}
.y38{bottom:446.541333pt;}
.yc4{bottom:447.834667pt;}
.y76{bottom:447.864000pt;}
.y1e1{bottom:451.062667pt;}
.y16c{bottom:454.697333pt;}
.yfd{bottom:455.094667pt;}
.y131{bottom:455.302667pt;}
.y186{bottom:457.084000pt;}
.y146{bottom:459.516000pt;}
.y95{bottom:461.474667pt;}
.yde{bottom:461.612000pt;}
.y124{bottom:462.962667pt;}
.yc3{bottom:465.901333pt;}
.yf{bottom:466.309333pt;}
.y5a{bottom:466.650667pt;}
.y1ac{bottom:468.032000pt;}
.y37{bottom:470.444000pt;}
.y75{bottom:471.766667pt;}
.y130{bottom:473.368000pt;}
.y185{bottom:475.149333pt;}
.y145{bottom:477.581333pt;}
.y16b{bottom:478.600000pt;}
.yfc{bottom:478.997333pt;}
.y123{bottom:481.028000pt;}
.y94{bottom:485.377333pt;}
.ydd{bottom:485.516000pt;}
.y1e0{bottom:488.249333pt;}
.ye{bottom:488.729333pt;}
.y59{bottom:490.553333pt;}
.y1b9{bottom:491.133333pt;}
.y12f{bottom:491.433333pt;}
.y1ab{bottom:491.934667pt;}
.yc2{bottom:491.950667pt;}
.y184{bottom:493.214667pt;}
.y36{bottom:494.346667pt;}
.y144{bottom:495.646667pt;}
.y74{bottom:495.669333pt;}
.yaa{bottom:495.670667pt;}
.y122{bottom:499.094667pt;}
.y16a{bottom:502.502667pt;}
.y93{bottom:509.281333pt;}
.y12e{bottom:509.498667pt;}
.yc1{bottom:510.016000pt;}
.yd{bottom:511.148000pt;}
.y183{bottom:511.280000pt;}
.y1df{bottom:512.152000pt;}
.yfb{bottom:513.192000pt;}
.y143{bottom:513.713333pt;}
.y58{bottom:514.456000pt;}
.y1aa{bottom:515.837333pt;}
.y121{bottom:517.160000pt;}
.y35{bottom:518.250667pt;}
.y73{bottom:519.573333pt;}
.ydc{bottom:519.710667pt;}
.y12d{bottom:527.564000pt;}
.yc0{bottom:528.082667pt;}
.y182{bottom:529.345333pt;}
.y19b{bottom:529.865333pt;}
.y142{bottom:531.778667pt;}
.yc{bottom:533.568000pt;}
.y120{bottom:535.225333pt;}
.y57{bottom:538.360000pt;}
.y1a9{bottom:539.741333pt;}
.y34{bottom:542.153333pt;}
.y72{bottom:543.476000pt;}
.y12c{bottom:545.630667pt;}
.ybf{bottom:546.148000pt;}
.y181{bottom:547.412000pt;}
.y169{bottom:547.830667pt;}
.y1de{bottom:549.338667pt;}
.y141{bottom:549.844000pt;}
.y1b8{bottom:551.416000pt;}
.y11f{bottom:553.290667pt;}
.yb{bottom:555.986667pt;}
.yfa{bottom:558.646667pt;}
.y56{bottom:562.262667pt;}
.y1a8{bottom:563.644000pt;}
.y12b{bottom:563.696000pt;}
.ybe{bottom:564.213333pt;}
.y168{bottom:565.896000pt;}
.ydb{bottom:565.913333pt;}
.y33{bottom:566.056000pt;}
.y71{bottom:567.378667pt;}
.y140{bottom:567.909333pt;}
.y11e{bottom:571.356000pt;}
.y1dd{bottom:573.241333pt;}
.y180{bottom:573.461333pt;}
.y1b7{bottom:575.318667pt;}
.ya{bottom:578.406667pt;}
.y12a{bottom:581.761333pt;}
.y19a{bottom:581.837333pt;}
.y13f{bottom:585.974667pt;}
.y55{bottom:586.165333pt;}
.y1f9{bottom:587.129333pt;}
.y1a7{bottom:587.546667pt;}
.y11d{bottom:589.422667pt;}
.yda{bottom:589.816000pt;}
.y32{bottom:589.958667pt;}
.ybd{bottom:590.264000pt;}
.y70{bottom:591.281333pt;}
.y17f{bottom:591.526667pt;}
.y167{bottom:593.374667pt;}
.y92{bottom:595.448000pt;}
.y1dc{bottom:597.144000pt;}
.y1b6{bottom:599.221333pt;}
.y129{bottom:599.826667pt;}
.y9{bottom:600.825333pt;}
.y13e{bottom:604.041333pt;}
.y199{bottom:605.740000pt;}
.y11c{bottom:607.488000pt;}
.y54{bottom:610.068000pt;}
.y1f8{bottom:611.032000pt;}
.y166{bottom:611.440000pt;}
.y1a6{bottom:611.449333pt;}
.y31{bottom:613.862667pt;}
.ya9{bottom:615.185333pt;}
.y128{bottom:616.593333pt;}
.y17e{bottom:617.265333pt;}
.yf9{bottom:618.928000pt;}
.y91{bottom:619.352000pt;}
.y13d{bottom:622.106667pt;}
.y1b5{bottom:623.124000pt;}
.y8{bottom:623.245333pt;}
.yd9{bottom:624.012000pt;}
.y6f{bottom:625.477333pt;}
.y11b{bottom:625.553333pt;}
.ybc{bottom:627.321333pt;}
.y165{bottom:629.506667pt;}
.y198{bottom:629.644000pt;}
.y53{bottom:633.972000pt;}
.y1a5{bottom:635.353333pt;}
.y1db{bottom:636.829333pt;}
.y30{bottom:637.765333pt;}
.ya8{bottom:639.088000pt;}
.y13c{bottom:640.172000pt;}
.y11a{bottom:642.318667pt;}
.yf8{bottom:642.832000pt;}
.y90{bottom:643.254667pt;}
.y1b4{bottom:647.028000pt;}
.y1f7{bottom:648.218667pt;}
.y197{bottom:653.546667pt;}
.y17d{bottom:654.322667pt;}
.y7{bottom:654.624000pt;}
.y119{bottom:654.908000pt;}
.y164{bottom:655.556000pt;}
.y52{bottom:657.874667pt;}
.y13b{bottom:658.237333pt;}
.y1a4{bottom:659.256000pt;}
.y2f{bottom:661.668000pt;}
.ya7{bottom:662.990667pt;}
.yf7{bottom:666.734667pt;}
.y8f{bottom:667.157333pt;}
.y1f6{bottom:672.121333pt;}
.y163{bottom:673.621333pt;}
.y13a{bottom:675.002667pt;}
.yd8{bottom:675.984000pt;}
.y6e{bottom:677.449333pt;}
.y118{bottom:678.812000pt;}
.y51{bottom:681.777333pt;}
.y1a3{bottom:683.158667pt;}
.y2e{bottom:685.570667pt;}
.ya6{bottom:686.893333pt;}
.y1da{bottom:688.877333pt;}
.yf6{bottom:690.637333pt;}
.y8e{bottom:691.060000pt;}
.y162{bottom:691.688000pt;}
.y1b3{bottom:692.356000pt;}
.y1f5{bottom:696.024000pt;}
.yd7{bottom:699.886667pt;}
.y6d{bottom:701.352000pt;}
.y117{bottom:702.714667pt;}
.y2d{bottom:709.474667pt;}
.y161{bottom:709.753333pt;}
.y1b2{bottom:710.421333pt;}
.ya5{bottom:710.797333pt;}
.yf5{bottom:714.540000pt;}
.y8d{bottom:714.962667pt;}
.y50{bottom:715.972000pt;}
.yd5{bottom:724.502667pt;}
.y6c{bottom:725.256000pt;}
.y116{bottom:726.617333pt;}
.y160{bottom:727.818667pt;}
.y1a2{bottom:728.486667pt;}
.y1f4{bottom:733.210667pt;}
.y2c{bottom:733.377333pt;}
.ya4{bottom:734.700000pt;}
.y6{bottom:734.988000pt;}
.y1b1{bottom:737.900000pt;}
.yf4{bottom:738.442667pt;}
.y8c{bottom:738.866667pt;}
.yd6{bottom:739.012000pt;}
.yd2{bottom:742.952000pt;}
.y17c{bottom:744.992000pt;}
.y15f{bottom:745.884000pt;}
.y1a1{bottom:746.552000pt;}
.y6b{bottom:749.158667pt;}
.y115{bottom:750.520000pt;}
.y1b0{bottom:755.965333pt;}
.y1f3{bottom:757.113333pt;}
.y2b{bottom:757.280000pt;}
.yd4{bottom:758.096000pt;}
.ya3{bottom:758.602667pt;}
.y4f{bottom:761.426667pt;}
.yf3{bottom:762.346667pt;}
.y8b{bottom:762.769333pt;}
.yd3{bottom:762.877333pt;}
.y15e{bottom:763.949333pt;}
.y6a{bottom:773.061333pt;}
.y1a0{bottom:774.030667pt;}
.y114{bottom:774.422667pt;}
.y5{bottom:774.494667pt;}
.y1f2{bottom:781.017333pt;}
.y2a{bottom:781.182667pt;}
.y15d{bottom:782.016000pt;}
.ybb{bottom:782.505333pt;}
.yf2{bottom:786.249333pt;}
.y8a{bottom:786.672000pt;}
.y19f{bottom:792.096000pt;}
.ya2{bottom:792.797333pt;}
.y69{bottom:796.964000pt;}
.y15c{bottom:800.081333pt;}
.y4{bottom:804.168000pt;}
.y29{bottom:805.086667pt;}
.yba{bottom:806.409333pt;}
.yf1{bottom:810.152000pt;}
.y19e{bottom:810.161333pt;}
.y89{bottom:810.574667pt;}
.y15b{bottom:818.146667pt;}
.y1f1{bottom:818.204000pt;}
.y4e{bottom:820.868000pt;}
.y113{bottom:826.694667pt;}
.y19d{bottom:828.228000pt;}
.y28{bottom:828.989333pt;}
.yb9{bottom:830.312000pt;}
.yf0{bottom:834.054667pt;}
.y88{bottom:834.478667pt;}
.y15a{bottom:836.212000pt;}
.y1f0{bottom:842.106667pt;}
.y4d{bottom:844.770667pt;}
.y27{bottom:852.892000pt;}
.y112{bottom:853.940000pt;}
.yb8{bottom:854.214667pt;}
.y159{bottom:854.277333pt;}
.y3{bottom:857.246667pt;}
.yef{bottom:857.958667pt;}
.y87{bottom:858.381333pt;}
.y1ef{bottom:866.009333pt;}
.y4c{bottom:868.673333pt;}
.y158{bottom:872.342667pt;}
.y111{bottom:873.201333pt;}
.y26{bottom:876.794667pt;}
.yb7{bottom:878.117333pt;}
.yee{bottom:881.861333pt;}
.y86{bottom:882.284000pt;}
.y157{bottom:890.409333pt;}
.y110{bottom:892.462667pt;}
.y4b{bottom:892.576000pt;}
.y2{bottom:898.458667pt;}
.y25{bottom:900.697333pt;}
.yb6{bottom:902.020000pt;}
.y1ee{bottom:903.196000pt;}
.yed{bottom:905.764000pt;}
.y85{bottom:906.186667pt;}
.y156{bottom:908.474667pt;}
.y10f{bottom:911.724000pt;}
.y1c9{bottom:912.313333pt;}
.y4a{bottom:916.480000pt;}
.y24{bottom:924.601333pt;}
.y155{bottom:926.540000pt;}
.y1ed{bottom:927.098667pt;}
.yec{bottom:929.666667pt;}
.y84{bottom:930.090667pt;}
.y10e{bottom:930.984000pt;}
.y19c{bottom:934.524000pt;}
.yb5{bottom:936.216000pt;}
.y1{bottom:939.670667pt;}
.y49{bottom:940.382667pt;}
.y23{bottom:948.504000pt;}
.y10d{bottom:950.245333pt;}
.y154{bottom:952.590667pt;}
.yeb{bottom:953.570667pt;}
.y83{bottom:953.993333pt;}
.y48{bottom:964.285333pt;}
.y22{bottom:972.406667pt;}
.y10c{bottom:977.492000pt;}
.y82{bottom:977.896000pt;}
.y153{bottom:978.328000pt;}
.y47{bottom:988.188000pt;}
.y21{bottom:1012.090667pt;}
.y10b{bottom:1015.385333pt;}
.hf{height:0.000000pt;}
.h8{height:26.221488pt;}
.he{height:29.032418pt;}
.h9{height:39.903534pt;}
.h5{height:40.785489pt;}
.hc{height:41.018216pt;}
.h6{height:43.694582pt;}
.hd{height:45.270357pt;}
.h7{height:47.884561pt;}
.hb{height:53.712173pt;}
.h10{height:54.592621pt;}
.h11{height:63.644561pt;}
.ha{height:64.362642pt;}
.h4{height:65.648211pt;}
.h3{height:67.668867pt;}
.h2{height:77.691000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:94.488000pt;}
.x1a{left:101.313333pt;}
.x35{left:102.290667pt;}
.x21{left:107.074667pt;}
.x1{left:108.221333pt;}
.x1f{left:109.606667pt;}
.xc{left:112.434667pt;}
.x27{left:116.182667pt;}
.xa{left:117.900000pt;}
.x36{left:126.565333pt;}
.x4{left:127.550667pt;}
.x9{left:133.508000pt;}
.x2{left:142.710667pt;}
.x20{left:148.373333pt;}
.x8{left:155.202667pt;}
.x2b{left:167.658667pt;}
.x25{left:170.632000pt;}
.x34{left:180.425333pt;}
.x1e{left:183.034667pt;}
.xe{left:185.461333pt;}
.xf{left:191.173333pt;}
.x11{left:193.944000pt;}
.x2d{left:220.410667pt;}
.x1b{left:236.820000pt;}
.x10{left:242.680000pt;}
.x22{left:243.912000pt;}
.x19{left:249.325333pt;}
.x1c{left:252.256000pt;}
.x18{left:271.186667pt;}
.x3{left:321.560000pt;}
.x2f{left:326.354667pt;}
.x32{left:329.410667pt;}
.x12{left:331.102667pt;}
.x30{left:338.906667pt;}
.x29{left:342.177333pt;}
.x6{left:343.493333pt;}
.x5{left:346.773333pt;}
.x2c{left:354.729333pt;}
.x33{left:358.436000pt;}
.x7{left:365.088000pt;}
.x2a{left:371.202667pt;}
.x24{left:381.946667pt;}
.x1d{left:389.048000pt;}
.xd{left:392.949333pt;}
.x23{left:394.629333pt;}
.x2e{left:397.625333pt;}
.x31{left:400.682667pt;}
.x28{left:413.448000pt;}
.x14{left:419.877333pt;}
.x15{left:422.253333pt;}
.x13{left:426.342667pt;}
.x16{left:445.558667pt;}
.x17{left:452.910667pt;}
.x26{left:461.414667pt;}
}




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