
    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_03de410560a7110cadba9016.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984863;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_859425118eb9f73e83936f61.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979004;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_e5e454ccdd5efc19c6066955.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_edcf67bd8c6b0b12af46d809.woff')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_a2bc8b0600fc97f0b29ff8c2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.926000;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_14a63d6ab8aa436de05a0525.woff')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_50db84195b775d24f19172fe.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_db2b5f9bc1bfe2176dcdb45d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_a54e74755af4988032ef0170.woff')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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_78f7c688ecd4e3c703190712.woff')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_193080cfbf9060bfa2f163d5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.499448;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_521512b408ce0111a20c9390.woff')format("woff");}.ffc{font-family:ffc;line-height:0.920898;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_dc0da60204feebb257680a0d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.761719;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_6e033df4383d075d01f2786f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.920898;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_076acdf3b902be1a627b257b.woff')format("woff");}.fff{font-family:fff;line-height:0.712000;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_e1c09ca97dfb53ed53f79afd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_4bbbb9a9c90a34f3f7798dec.woff')format("woff");}.ff11{font-family:ff11;line-height:0.698000;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_a6e7ff63fe29f3f44797d1c4.woff')format("woff");}.ff12{font-family:ff12;line-height:0.912000;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_77de8253dbe4bbdac52e86c3.woff')format("woff");}.ff13{font-family:ff13;line-height:0.912000;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_34339a76f0a9e845f13fcc34.woff')format("woff");}.ff14{font-family:ff14;line-height:0.912000;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_a99e726b2c04d92bb4dfe692.woff')format("woff");}.ff15{font-family:ff15;line-height:0.979980;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_ab3e6245f45cb10bffcf9950.woff')format("woff");}.ff16{font-family:ff16;line-height:0.757812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9b425b2ef36fae42d3d7281c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ec95036c2c7d3d1bf8ab3ef7.woff')format("woff");}.ff18{font-family:ff18;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_99e40b96e95600cb093c9aa2.woff')format("woff");}.ff19{font-family:ff19;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_af31f9330150a47d984f13db.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f9a8b017984cb56f948f5ba2.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.757812;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;}
.m3{transform:matrix(0.046513,-0.245635,0.245635,0.046513,0,0);-ms-transform:matrix(0.046513,-0.245635,0.245635,0.046513,0,0);-webkit-transform:matrix(0.046513,-0.245635,0.245635,0.046513,0,0);}
.m4{transform:matrix(0.206697,0.140628,-0.140628,0.206697,0,0);-ms-transform:matrix(0.206697,0.140628,-0.140628,0.206697,0,0);-webkit-transform:matrix(0.206697,0.140628,-0.140628,0.206697,0,0);}
.m2{transform:matrix(0.244824,0.050610,-0.050610,0.244824,0,0);-ms-transform:matrix(0.244824,0.050610,-0.050610,0.244824,0,0);-webkit-transform:matrix(0.244824,0.050610,-0.050610,0.244824,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);}
.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);}
.va{vertical-align:-60.000000px;}
.vd{vertical-align:-44.709000px;}
.v5{vertical-align:-23.107200px;}
.v2{vertical-align:-19.418400px;}
.v3{vertical-align:-16.683600px;}
.vb{vertical-align:-3.950400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.608000px;}
.v4{vertical-align:8.341800px;}
.v8{vertical-align:10.482000px;}
.v1{vertical-align:24.903600px;}
.v9{vertical-align:31.230000px;}
.v7{vertical-align:125.220000px;}
.ve{vertical-align:181.464000px;}
.vc{vertical-align:253.102200px;}
.ls2{letter-spacing:-43.200000px;}
.ls5{letter-spacing:-7.080000px;}
.ls19{letter-spacing:-0.069600px;}
.lsf{letter-spacing:-0.039600px;}
.ls14{letter-spacing:-0.026400px;}
.ls13{letter-spacing:-0.005227px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.005227px;}
.ls15{letter-spacing:0.013200px;}
.ls10{letter-spacing:0.019200px;}
.ls11{letter-spacing:0.026400px;}
.ls6{letter-spacing:0.028800px;}
.ls18{letter-spacing:0.034800px;}
.ls9{letter-spacing:0.036600px;}
.lse{letter-spacing:0.039600px;}
.ls4{letter-spacing:0.048000px;}
.ls1b{letter-spacing:0.063600px;}
.ls1a{letter-spacing:0.069600px;}
.ls8{letter-spacing:0.073200px;}
.lsc{letter-spacing:0.099600px;}
.ls0{letter-spacing:0.104400px;}
.ls16{letter-spacing:30.333600px;}
.ls17{letter-spacing:32.973600px;}
.lsb{letter-spacing:40.020000px;}
.lsa{letter-spacing:69.000000px;}
.ls7{letter-spacing:75.100320px;}
.ls3{letter-spacing:140.813100px;}
.lsd{letter-spacing:223.573680px;}
.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;}
}
.ws11{word-spacing:-153.252000px;}
.ws12{word-spacing:-152.400000px;}
.ws13{word-spacing:-110.127600px;}
.ws16{word-spacing:-110.048400px;}
.wse{word-spacing:-108.775200px;}
.wsf{word-spacing:-108.738600px;}
.ws36{word-spacing:-101.748000px;}
.ws2f{word-spacing:-95.075999px;}
.ws14{word-spacing:-90.882000px;}
.ws15{word-spacing:-88.392000px;}
.ws10{word-spacing:-83.400000px;}
.ws27{word-spacing:-75.060000px;}
.ws30{word-spacing:-71.724000px;}
.ws1a{word-spacing:-71.280000px;}
.ws1c{word-spacing:-69.669600px;}
.ws1b{word-spacing:-67.029600px;}
.ws2a{word-spacing:-65.052000px;}
.ws28{word-spacing:-63.384000px;}
.ws6{word-spacing:-59.640000px;}
.ws0{word-spacing:-56.712000px;}
.wsa{word-spacing:-48.372000px;}
.wsb{word-spacing:-45.036000px;}
.wsd{word-spacing:-40.032000px;}
.ws17{word-spacing:-39.230400px;}
.ws18{word-spacing:-39.217200px;}
.ws1d{word-spacing:-39.204000px;}
.ws19{word-spacing:-36.696000px;}
.ws1e{word-spacing:-31.692000px;}
.ws2c{word-spacing:-0.417600px;}
.ws21{word-spacing:-0.348000px;}
.ws2d{word-spacing:-0.312000px;}
.ws1{word-spacing:-0.189540px;}
.wsc{word-spacing:-0.162000px;}
.ws33{word-spacing:-0.139578px;}
.ws34{word-spacing:-0.081200px;}
.ws31{word-spacing:-0.049887px;}
.ws20{word-spacing:-0.022372px;}
.ws1f{word-spacing:-0.000022px;}
.ws2{word-spacing:0.000000px;}
.ws32{word-spacing:18.518293px;}
.ws4{word-spacing:209.175600px;}
.ws7{word-spacing:221.696400px;}
.ws9{word-spacing:512.196600px;}
.ws8{word-spacing:1199.585400px;}
.ws25{word-spacing:1562.912400px;}
.ws22{word-spacing:1909.059600px;}
.ws5{word-spacing:2025.422400px;}
.ws2b{word-spacing:2370.356400px;}
.ws24{word-spacing:2381.233200px;}
.ws3{word-spacing:2469.785400px;}
.ws35{word-spacing:2711.844000px;}
.ws29{word-spacing:2739.199800px;}
.ws26{word-spacing:2904.091800px;}
.ws23{word-spacing:3408.265200px;}
.ws2e{word-spacing:5995.968600px;}
._d{margin-left:-9912.800040px;}
._1d{margin-left:-4435.007400px;}
._10{margin-left:-92.574000px;}
._6{margin-left:-31.293600px;}
._1a{margin-left:-30.090000px;}
._11{margin-left:-27.310200px;}
._1b{margin-left:-22.136400px;}
._8{margin-left:-21.039120px;}
._1c{margin-left:-17.452200px;}
._1e{margin-left:-15.984000px;}
._9{margin-left:-13.142880px;}
._18{margin-left:-10.032600px;}
._16{margin-left:-8.805600px;}
._3{margin-left:-7.412400px;}
._5{margin-left:-6.240000px;}
._7{margin-left:-4.648800px;}
._4{margin-left:-3.057600px;}
._0{margin-left:-1.096200px;}
._12{width:1.096200px;}
._13{width:2.983800px;}
._15{width:4.101600px;}
._17{width:5.206800px;}
._19{width:6.307800px;}
._2{width:7.569000px;}
._1f{width:10.664431px;}
._1{width:14.929200px;}
._f{width:24.624000px;}
._b{width:30.672000px;}
._c{width:37.152000px;}
._a{width:43.200000px;}
._e{width:49.248000px;}
._14{width:1555.558980px;}
.fca{color:rgb(0,162,255);}
.fc9{color:rgb(216,175,205);}
.fc7{color:rgb(199,169,220);}
.fc8{color:rgb(171,250,219);}
.fc5{color:rgb(238,34,12);}
.fc4{color:transparent;}
.fcb{color:rgb(255,255,255);}
.fc6{color:rgb(72,72,72);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(94,94,94);}
.fs20{font-size:0.022372px;}
.fs29{font-size:11.520960px;}
.fs1c{font-size:26.133295px;}
.fs23{font-size:41.662056px;}
.fs22{font-size:49.639638px;}
.fs2f{font-size:49.887357px;}
.fs21{font-size:68.323140px;}
.fs30{font-size:80.668917px;}
.fs32{font-size:81.199634px;}
.fs1b{font-size:96.000000px;}
.fse{font-size:108.000000px;}
.fs1e{font-size:114.000000px;}
.fs13{font-size:132.000000px;}
.fs11{font-size:138.000000px;}
.fs31{font-size:139.578455px;}
.fsb{font-size:144.000000px;}
.fs12{font-size:156.000000px;}
.fsd{font-size:162.000000px;}
.fsc{font-size:174.000000px;}
.fsf{font-size:177.120000px;}
.fs3{font-size:189.540000px;}
.fs1f{font-size:192.000000px;}
.fs27{font-size:198.000000px;}
.fs2{font-size:204.000000px;}
.fs2d{font-size:216.000000px;}
.fs26{font-size:228.000000px;}
.fs10{font-size:234.000000px;}
.fsa{font-size:240.000000px;}
.fs2c{font-size:246.000000px;}
.fs2e{font-size:258.000000px;}
.fs1d{font-size:264.000000px;}
.fs5{font-size:270.000000px;}
.fs15{font-size:300.000000px;}
.fs19{font-size:306.000000px;}
.fs1{font-size:312.000000px;}
.fs28{font-size:318.000000px;}
.fs6{font-size:332.100000px;}
.fs2b{font-size:341.999997px;}
.fs25{font-size:342.000000px;}
.fs2a{font-size:342.000001px;}
.fs24{font-size:348.000000px;}
.fs14{font-size:366.000000px;}
.fs7{font-size:390.000000px;}
.fs17{font-size:396.000000px;}
.fs8{font-size:414.000000px;}
.fs4{font-size:432.000000px;}
.fs1a{font-size:487.080000px;}
.fs18{font-size:498.000000px;}
.fs16{font-size:516.000000px;}
.fs0{font-size:522.000000px;}
.fs9{font-size:834.000000px;}
.ye5{bottom:-59.788086px;}
.ye4{bottom:-49.372572px;}
.ydf{bottom:-40.343301px;}
.ye2{bottom:-35.583978px;}
.yde{bottom:-23.262516px;}
.ye1{bottom:-23.174069px;}
.y10f{bottom:-8.983086px;}
.y10e{bottom:-6.102846px;}
.y0{bottom:0.000000px;}
.ydc{bottom:0.114819px;}
.ydb{bottom:0.120412px;}
.y133{bottom:2.626500px;}
.y13e{bottom:2.626950px;}
.y7a{bottom:3.200550px;}
.y5a{bottom:5.525400px;}
.y137{bottom:10.483500px;}
.y142{bottom:10.483650px;}
.y70{bottom:11.685900px;}
.yc7{bottom:15.787050px;}
.yd3{bottom:15.787065px;}
.ycf{bottom:15.787200px;}
.y6e{bottom:16.613700px;}
.y6b{bottom:17.301000px;}
.y76{bottom:17.301750px;}
.y7d{bottom:18.211200px;}
.y140{bottom:18.326850px;}
.y135{bottom:18.327000px;}
.y78{bottom:21.208500px;}
.y13b{bottom:21.648810px;}
.y5e{bottom:22.721700px;}
.yc3{bottom:22.806600px;}
.yc1{bottom:22.806750px;}
.y6f{bottom:26.469150px;}
.y28{bottom:27.626955px;}
.y4f{bottom:29.409030px;}
.y131{bottom:32.675700px;}
.y13c{bottom:32.675745px;}
.y51{bottom:38.818350px;}
.y55{bottom:39.175350px;}
.y5c{bottom:40.108350px;}
.y6d{bottom:41.455350px;}
.y6{bottom:42.548805px;}
.y84{bottom:43.501680px;}
.y12c{bottom:44.286525px;}
.y86{bottom:44.421870px;}
.y88{bottom:45.322485px;}
.yd8{bottom:46.108980px;}
.yd2{bottom:50.468685px;}
.yc6{bottom:50.468700px;}
.y6a{bottom:54.801000px;}
.y75{bottom:54.801750px;}
.y7c{bottom:55.711200px;}
.y138{bottom:59.642025px;}
.y71{bottom:60.785100px;}
.y53{bottom:67.633650px;}
.y92{bottom:67.633800px;}
.yc{bottom:71.802825px;}
.y10c{bottom:74.107350px;}
.y12f{bottom:74.924745px;}
.ydd{bottom:76.479585px;}
.y43{bottom:79.539600px;}
.y83{bottom:81.001680px;}
.y11d{bottom:81.120150px;}
.y85{bottom:81.921870px;}
.y87{bottom:82.822485px;}
.y48{bottom:90.002865px;}
.y95{bottom:90.882150px;}
.y9b{bottom:100.767000px;}
.y5{bottom:101.048805px;}
.yd9{bottom:101.363430px;}
.yd1{bottom:105.005565px;}
.y12d{bottom:119.983695px;}
.yb1{bottom:120.792585px;}
.y42{bottom:123.039600px;}
.y27{bottom:123.951690px;}
.ya5{bottom:132.000000px;}
.y9a{bottom:135.448650px;}
.y139{bottom:138.709905px;}
.y11c{bottom:139.620150px;}
.y47{bottom:147.002865px;}
.yb{bottom:154.302900px;}
.yb0{bottom:155.474250px;}
.y100{bottom:159.406050px;}
.y41{bottom:166.539600px;}
.y4{bottom:186.855450px;}
.y11b{bottom:198.120150px;}
.y18{bottom:203.933250px;}
.y13d{bottom:204.789600px;}
.y40{bottom:210.039600px;}
.y9e{bottom:210.707100px;}
.y141{bottom:213.329850px;}
.yd0{bottom:217.278000px;}
.y23{bottom:220.756200px;}
.y13f{bottom:220.922400px;}
.y4a{bottom:227.984100px;}
.ye3{bottom:229.120950px;}
.yaf{bottom:233.065050px;}
.y9d{bottom:245.388750px;}
.y3f{bottom:253.539600px;}
.yff{bottom:258.406050px;}
.yf8{bottom:258.986700px;}
.y11a{bottom:259.941300px;}
.y26{bottom:261.035100px;}
.yfa{bottom:261.653850px;}
.y54{bottom:263.937600px;}
.yfc{bottom:264.321000px;}
.y3{bottom:267.125550px;}
.yae{bottom:267.746700px;}
.y82{bottom:272.770350px;}
.y49{bottom:281.984100px;}
.y63{bottom:286.407300px;}
.y93{bottom:294.662250px;}
.y3e{bottom:299.660100px;}
.y29{bottom:305.385450px;}
.ye9{bottom:308.486700px;}
.y81{bottom:310.270350px;}
.y108{bottom:311.153850px;}
.y109{bottom:313.821000px;}
.yef{bottom:315.285000px;}
.y25{bottom:320.385450px;}
.y22{bottom:321.189150px;}
.y106{bottom:321.632250px;}
.ya1{bottom:322.147200px;}
.yf2{bottom:326.220900px;}
.yce{bottom:327.837900px;}
.y50{bottom:328.258500px;}
.y17{bottom:329.933250px;}
.y24{bottom:335.385450px;}
.y101{bottom:340.500000px;}
.yad{bottom:343.624950px;}
.y103{bottom:345.000000px;}
.y80{bottom:347.770350px;}
.y21{bottom:350.385450px;}
.ya2{bottom:354.000000px;}
.y1c{bottom:354.662400px;}
.ya0{bottom:356.828850px;}
.y1b{bottom:357.629100px;}
.yf7{bottom:357.986700px;}
.y90{bottom:358.983150px;}
.yf9{bottom:360.653850px;}
.yfb{bottom:363.321000px;}
.y52{bottom:364.532550px;}
.y1d{bottom:365.385450px;}
.y1f{bottom:368.470800px;}
.y20{bottom:368.674950px;}
.y2a{bottom:370.358400px;}
.y1e{bottom:370.760400px;}
.y10a{bottom:378.195450px;}
.yac{bottom:378.306600px;}
.yed{bottom:378.560550px;}
.y7f{bottom:385.415400px;}
.y3d{bottom:386.660100px;}
.y10{bottom:394.365150px;}
.y91{bottom:395.257200px;}
.y62{bottom:404.907300px;}
.y96{bottom:414.000000px;}
.y3c{bottom:430.160100px;}
.y13a{bottom:431.981550px;}
.ycd{bottom:438.397800px;}
.yb6{bottom:440.944500px;}
.yab{bottom:454.184850px;}
.y16{bottom:455.933250px;}
.yf{bottom:469.139250px;}
.yc4{bottom:470.904600px;}
.y3b{bottom:473.660100px;}
.yb5{bottom:475.626150px;}
.y14{bottom:476.096400px;}
.yaa{bottom:488.866500px;}
.y115{bottom:489.212250px;}
.y98{bottom:493.711350px;}
.y3a{bottom:517.160100px;}
.y61{bottom:531.214800px;}
.y44{bottom:542.456100px;}
.y111{bottom:548.203200px;}
.y2f{bottom:568.818150px;}
.y97{bottom:578.520900px;}
.y15{bottom:581.933250px;}
.y104{bottom:586.035300px;}
.y102{bottom:587.868150px;}
.y10d{bottom:588.114600px;}
.yd4{bottom:588.505200px;}
.ya4{bottom:588.725850px;}
.y8b{bottom:589.591650px;}
.y13{bottom:594.596400px;}
.yb3{bottom:604.292250px;}
.y10b{bottom:606.339150px;}
.y2e{bottom:621.535800px;}
.ya3{bottom:623.407500px;}
.y124{bottom:624.611700px;}
.ye{bottom:637.365150px;}
.yb2{bottom:638.973900px;}
.yee{bottom:641.004150px;}
.y60{bottom:641.907300px;}
.y119{bottom:642.026700px;}
.yb4{bottom:649.500000px;}
.y7b{bottom:649.904850px;}
.y107{bottom:654.189450px;}
.yec{bottom:655.177050px;}
.y68{bottom:656.045250px;}
.yf6{bottom:667.332150px;}
.y8a{bottom:668.115900px;}
.y123{bottom:681.320550px;}
.yf5{bottom:684.015750px;}
.ya7{bottom:700.166100px;}
.y89{bottom:705.615900px;}
.ycc{bottom:705.819150px;}
.yd{bottom:712.139250px;}
.ya9{bottom:721.606200px;}
.y113{bottom:730.834650px;}
.ya6{bottom:734.847750px;}
.y4e{bottom:740.459100px;}
.y5d{bottom:749.816100px;}
.ya8{bottom:756.287850px;}
.y122{bottom:756.798450px;}
.y2d{bottom:759.960600px;}
.y114{bottom:761.236800px;}
.y65{bottom:798.691650px;}
.y1a{bottom:801.948750px;}
.y59{bottom:806.887950px;}
.y19{bottom:809.611800px;}
.y5b{bottom:810.521250px;}
.ycb{bottom:816.379050px;}
.y12e{bottom:841.225050px;}
.yd6{bottom:858.544950px;}
.y110{bottom:864.541200px;}
.y105{bottom:867.000000px;}
.y9f{bottom:888.000000px;}
.y77{bottom:922.755900px;}
.y66{bottom:923.642400px;}
.yca{bottom:926.938800px;}
.ye8{bottom:928.368150px;}
.y5f{bottom:930.170100px;}
.yea{bottom:931.035300px;}
.y4c{bottom:931.186200px;}
.yf3{bottom:932.499300px;}
.yf0{bottom:937.833750px;}
.y46{bottom:943.572150px;}
.ye0{bottom:944.056950px;}
.yc2{bottom:969.714300px;}
.y79{bottom:970.439400px;}
.y67{bottom:971.693550px;}
.y4b{bottom:982.186200px;}
.yda{bottom:991.052100px;}
.ya{bottom:992.533500px;}
.y45{bottom:997.572150px;}
.y7e{bottom:1047.573600px;}
.yd5{bottom:1074.657450px;}
.y9{bottom:1075.033500px;}
.y37{bottom:1082.717100px;}
.ybf{bottom:1090.444500px;}
.y9c{bottom:1110.000000px;}
.y11e{bottom:1115.787000px;}
.yfe{bottom:1117.500000px;}
.y64{bottom:1118.966100px;}
.y12b{bottom:1123.754100px;}
.ybe{bottom:1125.126150px;}
.y36{bottom:1132.217100px;}
.y12{bottom:1159.803000px;}
.y35{bottom:1181.717100px;}
.y57{bottom:1183.812900px;}
.y12a{bottom:1188.254100px;}
.yfd{bottom:1188.632250px;}
.yc9{bottom:1194.360150px;}
.yeb{bottom:1203.632250px;}
.yf4{bottom:1203.693450px;}
.ybd{bottom:1210.147200px;}
.y34{bottom:1231.217100px;}
.y118{bottom:1231.408650px;}
.y11{bottom:1242.303000px;}
.ybc{bottom:1244.828850px;}
.y129{bottom:1252.754100px;}
.y11f{bottom:1256.784900px;}
.ye7{bottom:1276.906050px;}
.y33{bottom:1280.717100px;}
.y121{bottom:1285.739850px;}
.y56{bottom:1302.312900px;}
.yc8{bottom:1304.920050px;}
.y128{bottom:1317.254100px;}
.ybb{bottom:1320.707100px;}
.y32{bottom:1330.217100px;}
.y99{bottom:1330.500000px;}
.y117{bottom:1331.378550px;}
.y2{bottom:1332.552150px;}
.yf1{bottom:1333.367400px;}
.y130{bottom:1337.587800px;}
.yba{bottom:1355.388750px;}
.y7{bottom:1365.378300px;}
.ye6{bottom:1375.906050px;}
.y112{bottom:1376.744550px;}
.y31{bottom:1379.717100px;}
.y127{bottom:1381.754100px;}
.y6c{bottom:1387.335150px;}
.y94{bottom:1387.500000px;}
.yc5{bottom:1415.479950px;}
.y8{bottom:1418.420850px;}
.y30{bottom:1429.419750px;}
.y116{bottom:1430.378550px;}
.yb9{bottom:1431.267000px;}
.y126{bottom:1446.254100px;}
.y2c{bottom:1455.104250px;}
.yc0{bottom:1455.575400px;}
.y120{bottom:1456.689900px;}
.yb8{bottom:1465.948650px;}
.yb7{bottom:1478.382150px;}
.y1{bottom:1482.552150px;}
.y69{bottom:1488.235500px;}
.y74{bottom:1488.264750px;}
.y58{bottom:1493.103450px;}
.y73{bottom:1501.900500px;}
.y2b{bottom:1505.505000px;}
.y8d{bottom:1505.536500px;}
.y8f{bottom:1505.566500px;}
.y125{bottom:1510.753500px;}
.y4d{bottom:1516.153500px;}
.y132{bottom:1520.728500px;}
.y136{bottom:1529.269500px;}
.y134{bottom:1536.861000px;}
.y39{bottom:1537.536000px;}
.y38{bottom:1539.231000px;}
.y72{bottom:1539.400500px;}
.y8c{bottom:1543.036500px;}
.y8e{bottom:1543.066500px;}
.yd7{bottom:1547.569500px;}
.h46{height:0.016354px;}
.h61{height:8.421822px;}
.h2d{height:19.383044px;}
.h6a{height:20.598690px;}
.h4d{height:30.454963px;}
.h6e{height:35.038620px;}
.h4b{height:36.286575px;}
.h69{height:37.415517px;}
.h23{height:46.500000px;}
.h48{height:49.944215px;}
.h2f{height:58.108695px;}
.h6c{height:60.495240px;}
.h6b{height:60.501688px;}
.h6f{height:60.899725px;}
.h2e{height:65.124795px;}
.h29{height:72.000000px;}
.h2c{height:74.145450px;}
.h27{height:74.213010px;}
.h42{height:76.180305px;}
.h14{height:78.948000px;}
.h37{height:85.500000px;}
.h2a{height:94.102290px;}
.h30{height:96.043440px;}
.h2b{height:99.000000px;}
.h43{height:100.349205px;}
.h6d{height:104.683841px;}
.h15{height:105.264000px;}
.h36{height:107.783203px;}
.h10{height:108.000000px;}
.h45{height:112.080300px;}
.h49{height:112.080375px;}
.h12{height:118.422000px;}
.h32{height:123.000000px;}
.h1a{height:125.290608px;}
.h11{height:127.194000px;}
.h20{height:128.108640px;}
.h16{height:129.474720px;}
.h1c{height:130.066410px;}
.h24{height:130.500000px;}
.h18{height:130.985635px;}
.h25{height:132.782595px;}
.h4{height:138.553740px;}
.h44{height:140.352000px;}
.h19{height:148.070718px;}
.h54{height:148.500000px;}
.h3{height:149.124000px;}
.h66{height:157.896000px;}
.h35{height:165.000000px;}
.h53{height:171.000000px;}
.h17{height:171.054000px;}
.h65{height:179.826000px;}
.hd{height:180.000000px;}
.hc{height:180.334800px;}
.hf{height:181.608000px;}
.h3f{height:186.000000px;}
.he{height:188.341800px;}
.h4c{height:190.184250px;}
.h67{height:193.500000px;}
.h6{height:197.370000px;}
.h31{height:198.000000px;}
.h52{height:202.500000px;}
.h13{height:204.168000px;}
.h5e{height:208.823850px;}
.h1e{height:223.172550px;}
.h1d{height:225.000000px;}
.h26{height:229.500000px;}
.h2{height:234.000000px;}
.h5f{height:234.307617px;}
.h7{height:242.765100px;}
.h63{height:250.001997px;}
.h50{height:250.002000px;}
.h47{height:260.278500px;}
.h4e{height:261.000000px;}
.h4a{height:262.253850px;}
.h68{height:271.726950px;}
.h21{height:273.603516px;}
.h1b{height:274.500000px;}
.h38{height:276.000000px;}
.h4f{height:282.337200px;}
.h8{height:285.090000px;}
.h60{height:297.474300px;}
.h3e{height:298.500000px;}
.h9{height:302.634000px;}
.h55{height:319.500000px;}
.h5{height:324.000000px;}
.h28{height:336.532324px;}
.h22{height:373.500000px;}
.h5d{height:376.500000px;}
.hb{height:381.582000px;}
.h59{height:385.500000px;}
.h1f{height:387.000000px;}
.h64{height:387.710550px;}
.h1{height:391.500000px;}
.h3d{height:408.000000px;}
.h57{height:420.000000px;}
.h62{height:442.464000px;}
.h51{height:503.104200px;}
.h41{height:505.500000px;}
.h3c{height:519.000000px;}
.h34{height:526.500000px;}
.ha{height:609.654000px;}
.h33{height:610.500000px;}
.h58{height:648.000000px;}
.h56{height:649.500000px;}
.h39{height:654.000000px;}
.h40{height:669.000000px;}
.h5c{height:705.000000px;}
.h5b{height:718.500000px;}
.h5a{height:720.000000px;}
.h3a{height:765.000000px;}
.h3b{height:786.000000px;}
.h0{height:1620.000000px;}
.w1a{width:108.000000px;}
.w8{width:126.591600px;}
.w2e{width:142.228380px;}
.w2c{width:147.831960px;}
.w2d{width:154.701150px;}
.w16{width:200.880600px;}
.w17{width:201.206700px;}
.w1d{width:208.310250px;}
.w9{width:220.607850px;}
.w1b{width:232.298550px;}
.w1c{width:248.198100px;}
.wb{width:252.411900px;}
.w18{width:266.985450px;}
.w2b{width:271.726950px;}
.wc{width:282.125400px;}
.wa{width:286.821900px;}
.w29{width:294.936600px;}
.w7{width:300.549000px;}
.w6{width:312.512400px;}
.wd{width:313.778850px;}
.w4{width:315.777900px;}
.w5{width:339.381150px;}
.w19{width:375.353100px;}
.w2a{width:390.109800px;}
.w14{width:476.544900px;}
.w13{width:531.226800px;}
.w28{width:560.921250px;}
.w3{width:574.068150px;}
.w1{width:577.525950px;}
.w2{width:619.363800px;}
.w25{width:672.000000px;}
.w23{width:693.000000px;}
.w20{width:739.500000px;}
.w15{width:744.678000px;}
.w27{width:759.000000px;}
.w21{width:967.500000px;}
.w1f{width:1021.500000px;}
.w22{width:1153.500000px;}
.w24{width:1167.000000px;}
.we{width:1183.500000px;}
.wf{width:1197.000000px;}
.w10{width:1203.000000px;}
.w26{width:1381.500000px;}
.w12{width:1416.000000px;}
.w11{width:1428.000000px;}
.w1e{width:1476.000000px;}
.w0{width:2880.000000px;}
.x8e{left:-2.886750px;}
.x97{left:-1.560000px;}
.x0{left:0.000000px;}
.x64{left:2.656200px;}
.x69{left:6.060750px;}
.xb9{left:8.583000px;}
.xbb{left:10.273500px;}
.x67{left:12.267600px;}
.x35{left:15.514500px;}
.x31{left:17.990100px;}
.x45{left:19.497600px;}
.x3e{left:21.754950px;}
.x33{left:22.891200px;}
.x4a{left:26.880000px;}
.x6d{left:29.576100px;}
.xa4{left:31.875810px;}
.xb2{left:36.872070px;}
.xa6{left:38.598930px;}
.x43{left:41.372850px;}
.x1{left:43.527615px;}
.x2{left:44.938380px;}
.x3{left:47.666010px;}
.xb4{left:49.155840px;}
.x49{left:50.752500px;}
.xa7{left:52.350930px;}
.xac{left:57.685815px;}
.x2c{left:62.137950px;}
.x1f{left:63.268890px;}
.x42{left:65.886900px;}
.xb7{left:67.669500px;}
.x3d{left:69.015150px;}
.x2f{left:75.280155px;}
.x29{left:78.423540px;}
.x40{left:80.776500px;}
.xa8{left:83.046915px;}
.xa5{left:91.396665px;}
.x21{left:96.999405px;}
.x1d{left:99.330780px;}
.x38{left:104.789055px;}
.x4e{left:108.979500px;}
.x41{left:110.556000px;}
.x91{left:126.186450px;}
.xc0{left:128.624955px;}
.xc1{left:131.325300px;}
.x75{left:139.643970px;}
.x3c{left:148.353540px;}
.xa9{left:198.757050px;}
.x32{left:239.407800px;}
.x6e{left:244.956750px;}
.x30{left:251.209500px;}
.x34{left:252.842250px;}
.x99{left:307.717800px;}
.xbd{left:315.948600px;}
.xab{left:329.665800px;}
.xc{left:339.798450px;}
.x4{left:354.325050px;}
.xbe{left:375.409200px;}
.xbf{left:377.222250px;}
.x71{left:418.488000px;}
.x90{left:448.500000px;}
.x7e{left:451.061250px;}
.x39{left:479.693100px;}
.x3b{left:509.690850px;}
.x79{left:515.787300px;}
.x3a{left:524.691000px;}
.xad{left:532.873050px;}
.x5c{left:546.373650px;}
.x72{left:551.811600px;}
.xae{left:557.739600px;}
.xa2{left:567.415350px;}
.x87{left:574.686450px;}
.x5b{left:593.633850px;}
.xaf{left:602.355150px;}
.xa1{left:612.338550px;}
.x93{left:634.500000px;}
.x7c{left:638.143950px;}
.x1e{left:640.153950px;}
.xb3{left:648.895050px;}
.x8f{left:732.000000px;}
.x86{left:734.400600px;}
.x7f{left:737.536950px;}
.x83{left:750.945900px;}
.x78{left:753.431850px;}
.x6b{left:797.066100px;}
.x63{left:807.000000px;}
.x65{left:810.000000px;}
.xb0{left:817.557750px;}
.x36{left:849.991350px;}
.xf{left:867.271200px;}
.x12{left:872.253000px;}
.x10{left:883.896150px;}
.x57{left:886.267950px;}
.xe{left:900.381750px;}
.xb1{left:903.807300px;}
.x37{left:925.340550px;}
.x2e{left:961.706250px;}
.xb5{left:979.461150px;}
.x14{left:982.740450px;}
.x13{left:1019.144850px;}
.x4f{left:1021.212900px;}
.x11{left:1023.616500px;}
.x15{left:1034.876550px;}
.x7b{left:1050.932700px;}
.xa3{left:1066.315200px;}
.x81{left:1074.854250px;}
.x95{left:1092.000000px;}
.x88{left:1094.582550px;}
.x44{left:1107.071250px;}
.x1c{left:1108.269150px;}
.x85{left:1109.888400px;}
.x9a{left:1112.747550px;}
.x5d{left:1124.715750px;}
.x5a{left:1126.319250px;}
.x2b{left:1130.318100px;}
.x2a{left:1151.237250px;}
.x2d{left:1152.966000px;}
.x3f{left:1157.543850px;}
.x80{left:1210.172250px;}
.x89{left:1218.880500px;}
.x22{left:1262.274150px;}
.x77{left:1282.613250px;}
.x8d{left:1285.500000px;}
.x76{left:1297.969950px;}
.x56{left:1314.045600px;}
.x9b{left:1373.082450px;}
.x55{left:1374.647700px;}
.x9c{left:1401.213000px;}
.x6c{left:1440.484650px;}
.x66{left:1452.000000px;}
.xaa{left:1460.682000px;}
.x68{left:1464.000000px;}
.x6a{left:1470.060750px;}
.x6f{left:1516.794000px;}
.x17{left:1550.457000px;}
.x9{left:1560.945000px;}
.x1a{left:1562.346000px;}
.x98{left:1570.074000px;}
.x8c{left:1582.684500px;}
.x74{left:1585.480500px;}
.x6{left:1600.314000px;}
.x19{left:1613.020500px;}
.x8{left:1618.350000px;}
.x47{left:1621.603500px;}
.x27{left:1627.363500px;}
.xa{left:1628.445000px;}
.x46{left:1633.149000px;}
.x18{left:1642.216500px;}
.x1b{left:1658.020500px;}
.x16{left:1660.986000px;}
.x5{left:1679.781000px;}
.x61{left:1708.326000px;}
.x92{left:1726.500000px;}
.x60{left:1729.245000px;}
.x62{left:1730.974500px;}
.xb{left:1793.397000px;}
.x70{left:1799.580000px;}
.x54{left:1803.618000px;}
.x7{left:1809.057000px;}
.x53{left:1830.310500px;}
.x20{left:1839.169500px;}
.x82{left:1864.920000px;}
.xd{left:1873.372500px;}
.x7a{left:1912.143000px;}
.xb6{left:1923.801000px;}
.x23{left:1933.860000px;}
.x73{left:1954.045500px;}
.xba{left:1982.647500px;}
.xb8{left:1985.748000px;}
.xbc{left:1988.448000px;}
.x28{left:2051.574000px;}
.x48{left:2071.989000px;}
.x5f{left:2098.869000px;}
.x96{left:2121.000000px;}
.x5e{left:2122.741500px;}
.x25{left:2124.988500px;}
.x8a{left:2196.033000px;}
.x94{left:2208.000000px;}
.x7d{left:2210.485500px;}
.x84{left:2227.687500px;}
.x8b{left:2251.384500px;}
.x24{left:2260.737000px;}
.x9e{left:2323.521000px;}
.x9d{left:2330.278500px;}
.x50{left:2363.034000px;}
.x26{left:2382.046500px;}
.x51{left:2389.789500px;}
.x4d{left:2400.481500px;}
.x4c{left:2405.275500px;}
.x52{left:2414.886000px;}
.x4b{left:2420.047500px;}
.x58{left:2427.000000px;}
.x9f{left:2495.754000px;}
.xa0{left:2504.037000px;}
.x59{left:2509.461000px;}
@media print{
.va{vertical-align:-53.333333pt;}
.vd{vertical-align:-39.741333pt;}
.v5{vertical-align:-20.539733pt;}
.v2{vertical-align:-17.260800pt;}
.v3{vertical-align:-14.829867pt;}
.vb{vertical-align:-3.511467pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.429333pt;}
.v4{vertical-align:7.414933pt;}
.v8{vertical-align:9.317333pt;}
.v1{vertical-align:22.136533pt;}
.v9{vertical-align:27.760000pt;}
.v7{vertical-align:111.306667pt;}
.ve{vertical-align:161.301333pt;}
.vc{vertical-align:224.979733pt;}
.ls2{letter-spacing:-38.400000pt;}
.ls5{letter-spacing:-6.293333pt;}
.ls19{letter-spacing:-0.061867pt;}
.lsf{letter-spacing:-0.035200pt;}
.ls14{letter-spacing:-0.023467pt;}
.ls13{letter-spacing:-0.004646pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.004646pt;}
.ls15{letter-spacing:0.011733pt;}
.ls10{letter-spacing:0.017067pt;}
.ls11{letter-spacing:0.023467pt;}
.ls6{letter-spacing:0.025600pt;}
.ls18{letter-spacing:0.030933pt;}
.ls9{letter-spacing:0.032533pt;}
.lse{letter-spacing:0.035200pt;}
.ls4{letter-spacing:0.042667pt;}
.ls1b{letter-spacing:0.056533pt;}
.ls1a{letter-spacing:0.061867pt;}
.ls8{letter-spacing:0.065067pt;}
.lsc{letter-spacing:0.088533pt;}
.ls0{letter-spacing:0.092800pt;}
.ls16{letter-spacing:26.963200pt;}
.ls17{letter-spacing:29.309867pt;}
.lsb{letter-spacing:35.573333pt;}
.lsa{letter-spacing:61.333333pt;}
.ls7{letter-spacing:66.755840pt;}
.ls3{letter-spacing:125.167200pt;}
.lsd{letter-spacing:198.732160pt;}
.ws11{word-spacing:-136.224000pt;}
.ws12{word-spacing:-135.466667pt;}
.ws13{word-spacing:-97.891200pt;}
.ws16{word-spacing:-97.820800pt;}
.wse{word-spacing:-96.689067pt;}
.wsf{word-spacing:-96.656533pt;}
.ws36{word-spacing:-90.442667pt;}
.ws2f{word-spacing:-84.511999pt;}
.ws14{word-spacing:-80.784000pt;}
.ws15{word-spacing:-78.570667pt;}
.ws10{word-spacing:-74.133333pt;}
.ws27{word-spacing:-66.720000pt;}
.ws30{word-spacing:-63.754667pt;}
.ws1a{word-spacing:-63.360000pt;}
.ws1c{word-spacing:-61.928533pt;}
.ws1b{word-spacing:-59.581867pt;}
.ws2a{word-spacing:-57.824000pt;}
.ws28{word-spacing:-56.341333pt;}
.ws6{word-spacing:-53.013333pt;}
.ws0{word-spacing:-50.410667pt;}
.wsa{word-spacing:-42.997333pt;}
.wsb{word-spacing:-40.032000pt;}
.wsd{word-spacing:-35.584000pt;}
.ws17{word-spacing:-34.871467pt;}
.ws18{word-spacing:-34.859733pt;}
.ws1d{word-spacing:-34.848000pt;}
.ws19{word-spacing:-32.618667pt;}
.ws1e{word-spacing:-28.170667pt;}
.ws2c{word-spacing:-0.371200pt;}
.ws21{word-spacing:-0.309333pt;}
.ws2d{word-spacing:-0.277333pt;}
.ws1{word-spacing:-0.168480pt;}
.wsc{word-spacing:-0.144000pt;}
.ws33{word-spacing:-0.124070pt;}
.ws34{word-spacing:-0.072177pt;}
.ws31{word-spacing:-0.044344pt;}
.ws20{word-spacing:-0.019886pt;}
.ws1f{word-spacing:-0.000020pt;}
.ws2{word-spacing:0.000000pt;}
.ws32{word-spacing:16.460705pt;}
.ws4{word-spacing:185.933867pt;}
.ws7{word-spacing:197.063467pt;}
.ws9{word-spacing:455.285867pt;}
.ws8{word-spacing:1066.298133pt;}
.ws25{word-spacing:1389.255467pt;}
.ws22{word-spacing:1696.941867pt;}
.ws5{word-spacing:1800.375467pt;}
.ws2b{word-spacing:2106.983467pt;}
.ws24{word-spacing:2116.651733pt;}
.ws3{word-spacing:2195.364800pt;}
.ws35{word-spacing:2410.528000pt;}
.ws29{word-spacing:2434.844267pt;}
.ws26{word-spacing:2581.414933pt;}
.ws23{word-spacing:3029.569067pt;}
.ws2e{word-spacing:5329.749867pt;}
._d{margin-left:-8811.377813pt;}
._1d{margin-left:-3942.228800pt;}
._10{margin-left:-82.288000pt;}
._6{margin-left:-27.816533pt;}
._1a{margin-left:-26.746667pt;}
._11{margin-left:-24.275733pt;}
._1b{margin-left:-19.676800pt;}
._8{margin-left:-18.701440pt;}
._1c{margin-left:-15.513067pt;}
._1e{margin-left:-14.208000pt;}
._9{margin-left:-11.682560pt;}
._18{margin-left:-8.917867pt;}
._16{margin-left:-7.827200pt;}
._3{margin-left:-6.588800pt;}
._5{margin-left:-5.546667pt;}
._7{margin-left:-4.132267pt;}
._4{margin-left:-2.717867pt;}
._0{margin-left:-0.974400pt;}
._12{width:0.974400pt;}
._13{width:2.652267pt;}
._15{width:3.645867pt;}
._17{width:4.628267pt;}
._19{width:5.606933pt;}
._2{width:6.728000pt;}
._1f{width:9.479494pt;}
._1{width:13.270400pt;}
._f{width:21.888000pt;}
._b{width:27.264000pt;}
._c{width:33.024000pt;}
._a{width:38.400000pt;}
._e{width:43.776000pt;}
._14{width:1382.719093pt;}
.fs20{font-size:0.019886pt;}
.fs29{font-size:10.240853pt;}
.fs1c{font-size:23.229596pt;}
.fs23{font-size:37.032939pt;}
.fs22{font-size:44.124123pt;}
.fs2f{font-size:44.344317pt;}
.fs21{font-size:60.731680pt;}
.fs30{font-size:71.705704pt;}
.fs32{font-size:72.177452pt;}
.fs1b{font-size:85.333333pt;}
.fse{font-size:96.000000pt;}
.fs1e{font-size:101.333333pt;}
.fs13{font-size:117.333333pt;}
.fs11{font-size:122.666667pt;}
.fs31{font-size:124.069738pt;}
.fsb{font-size:128.000000pt;}
.fs12{font-size:138.666667pt;}
.fsd{font-size:144.000000pt;}
.fsc{font-size:154.666667pt;}
.fsf{font-size:157.440000pt;}
.fs3{font-size:168.480000pt;}
.fs1f{font-size:170.666667pt;}
.fs27{font-size:176.000000pt;}
.fs2{font-size:181.333333pt;}
.fs2d{font-size:192.000000pt;}
.fs26{font-size:202.666667pt;}
.fs10{font-size:208.000000pt;}
.fsa{font-size:213.333333pt;}
.fs2c{font-size:218.666667pt;}
.fs2e{font-size:229.333333pt;}
.fs1d{font-size:234.666667pt;}
.fs5{font-size:240.000000pt;}
.fs15{font-size:266.666667pt;}
.fs19{font-size:272.000000pt;}
.fs1{font-size:277.333333pt;}
.fs28{font-size:282.666667pt;}
.fs6{font-size:295.200000pt;}
.fs2b{font-size:303.999997pt;}
.fs25{font-size:304.000000pt;}
.fs2a{font-size:304.000001pt;}
.fs24{font-size:309.333333pt;}
.fs14{font-size:325.333333pt;}
.fs7{font-size:346.666667pt;}
.fs17{font-size:352.000000pt;}
.fs8{font-size:368.000000pt;}
.fs4{font-size:384.000000pt;}
.fs1a{font-size:432.960000pt;}
.fs18{font-size:442.666667pt;}
.fs16{font-size:458.666667pt;}
.fs0{font-size:464.000000pt;}
.fs9{font-size:741.333333pt;}
.ye5{bottom:-53.144965pt;}
.ye4{bottom:-43.886731pt;}
.ydf{bottom:-35.860712pt;}
.ye2{bottom:-31.630203pt;}
.yde{bottom:-20.677792pt;}
.ye1{bottom:-20.599172pt;}
.y10f{bottom:-7.984965pt;}
.y10e{bottom:-5.424752pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:0.102061pt;}
.ydb{bottom:0.107032pt;}
.y133{bottom:2.334667pt;}
.y13e{bottom:2.335067pt;}
.y7a{bottom:2.844933pt;}
.y5a{bottom:4.911467pt;}
.y137{bottom:9.318667pt;}
.y142{bottom:9.318800pt;}
.y70{bottom:10.387467pt;}
.yc7{bottom:14.032933pt;}
.yd3{bottom:14.032947pt;}
.ycf{bottom:14.033067pt;}
.y6e{bottom:14.767733pt;}
.y6b{bottom:15.378667pt;}
.y76{bottom:15.379333pt;}
.y7d{bottom:16.187733pt;}
.y140{bottom:16.290533pt;}
.y135{bottom:16.290667pt;}
.y78{bottom:18.852000pt;}
.y13b{bottom:19.243387pt;}
.y5e{bottom:20.197067pt;}
.yc3{bottom:20.272533pt;}
.yc1{bottom:20.272667pt;}
.y6f{bottom:23.528133pt;}
.y28{bottom:24.557293pt;}
.y4f{bottom:26.141360pt;}
.y131{bottom:29.045067pt;}
.y13c{bottom:29.045107pt;}
.y51{bottom:34.505200pt;}
.y55{bottom:34.822533pt;}
.y5c{bottom:35.651867pt;}
.y6d{bottom:36.849200pt;}
.y6{bottom:37.821160pt;}
.y84{bottom:38.668160pt;}
.y12c{bottom:39.365800pt;}
.y86{bottom:39.486107pt;}
.y88{bottom:40.286653pt;}
.yd8{bottom:40.985760pt;}
.yd2{bottom:44.861053pt;}
.yc6{bottom:44.861067pt;}
.y6a{bottom:48.712000pt;}
.y75{bottom:48.712667pt;}
.y7c{bottom:49.521067pt;}
.y138{bottom:53.015133pt;}
.y71{bottom:54.031200pt;}
.y53{bottom:60.118800pt;}
.y92{bottom:60.118933pt;}
.yc{bottom:63.824733pt;}
.y10c{bottom:65.873200pt;}
.y12f{bottom:66.599773pt;}
.ydd{bottom:67.981853pt;}
.y43{bottom:70.701867pt;}
.y83{bottom:72.001493pt;}
.y11d{bottom:72.106800pt;}
.y85{bottom:72.819440pt;}
.y87{bottom:73.619987pt;}
.y48{bottom:80.002547pt;}
.y95{bottom:80.784133pt;}
.y9b{bottom:89.570667pt;}
.y5{bottom:89.821160pt;}
.yd9{bottom:90.100827pt;}
.yd1{bottom:93.338280pt;}
.y12d{bottom:106.652173pt;}
.yb1{bottom:107.371187pt;}
.y42{bottom:109.368533pt;}
.y27{bottom:110.179280pt;}
.ya5{bottom:117.333333pt;}
.y9a{bottom:120.398800pt;}
.y139{bottom:123.297693pt;}
.y11c{bottom:124.106800pt;}
.y47{bottom:130.669213pt;}
.yb{bottom:137.158133pt;}
.yb0{bottom:138.199333pt;}
.y100{bottom:141.694267pt;}
.y41{bottom:148.035200pt;}
.y4{bottom:166.093733pt;}
.y11b{bottom:176.106800pt;}
.y18{bottom:181.274000pt;}
.y13d{bottom:182.035200pt;}
.y40{bottom:186.701867pt;}
.y9e{bottom:187.295200pt;}
.y141{bottom:189.626533pt;}
.yd0{bottom:193.136000pt;}
.y23{bottom:196.227733pt;}
.y13f{bottom:196.375467pt;}
.y4a{bottom:202.652533pt;}
.ye3{bottom:203.663067pt;}
.yaf{bottom:207.168933pt;}
.y9d{bottom:218.123333pt;}
.y3f{bottom:225.368533pt;}
.yff{bottom:229.694267pt;}
.yf8{bottom:230.210400pt;}
.y11a{bottom:231.058933pt;}
.y26{bottom:232.031200pt;}
.yfa{bottom:232.581200pt;}
.y54{bottom:234.611200pt;}
.yfc{bottom:234.952000pt;}
.y3{bottom:237.444933pt;}
.yae{bottom:237.997067pt;}
.y82{bottom:242.462533pt;}
.y49{bottom:250.652533pt;}
.y63{bottom:254.584267pt;}
.y93{bottom:261.922000pt;}
.y3e{bottom:266.364533pt;}
.y29{bottom:271.453733pt;}
.ye9{bottom:274.210400pt;}
.y81{bottom:275.795867pt;}
.y108{bottom:276.581200pt;}
.y109{bottom:278.952000pt;}
.yef{bottom:280.253333pt;}
.y25{bottom:284.787067pt;}
.y22{bottom:285.501467pt;}
.y106{bottom:285.895333pt;}
.ya1{bottom:286.353067pt;}
.yf2{bottom:289.974133pt;}
.yce{bottom:291.411467pt;}
.y50{bottom:291.785333pt;}
.y17{bottom:293.274000pt;}
.y24{bottom:298.120400pt;}
.y101{bottom:302.666667pt;}
.yad{bottom:305.444400pt;}
.y103{bottom:306.666667pt;}
.y80{bottom:309.129200pt;}
.y21{bottom:311.453733pt;}
.ya2{bottom:314.666667pt;}
.y1c{bottom:315.255467pt;}
.ya0{bottom:317.181200pt;}
.y1b{bottom:317.892533pt;}
.yf7{bottom:318.210400pt;}
.y90{bottom:319.096133pt;}
.yf9{bottom:320.581200pt;}
.yfb{bottom:322.952000pt;}
.y52{bottom:324.028933pt;}
.y1d{bottom:324.787067pt;}
.y1f{bottom:327.529600pt;}
.y20{bottom:327.711067pt;}
.y2a{bottom:329.207467pt;}
.y1e{bottom:329.564800pt;}
.y10a{bottom:336.173733pt;}
.yac{bottom:336.272533pt;}
.yed{bottom:336.498267pt;}
.y7f{bottom:342.591467pt;}
.y3d{bottom:343.697867pt;}
.y10{bottom:350.546800pt;}
.y91{bottom:351.339733pt;}
.y62{bottom:359.917600pt;}
.y96{bottom:368.000000pt;}
.y3c{bottom:382.364533pt;}
.y13a{bottom:383.983600pt;}
.ycd{bottom:389.686933pt;}
.yb6{bottom:391.950667pt;}
.yab{bottom:403.719867pt;}
.y16{bottom:405.274000pt;}
.yf{bottom:417.012667pt;}
.yc4{bottom:418.581867pt;}
.y3b{bottom:421.031200pt;}
.yb5{bottom:422.778800pt;}
.y14{bottom:423.196800pt;}
.yaa{bottom:434.548000pt;}
.y115{bottom:434.855333pt;}
.y98{bottom:438.854533pt;}
.y3a{bottom:459.697867pt;}
.y61{bottom:472.190933pt;}
.y44{bottom:482.183200pt;}
.y111{bottom:487.291733pt;}
.y2f{bottom:505.616133pt;}
.y97{bottom:514.240800pt;}
.y15{bottom:517.274000pt;}
.y104{bottom:520.920267pt;}
.y102{bottom:522.549467pt;}
.y10d{bottom:522.768533pt;}
.yd4{bottom:523.115733pt;}
.ya4{bottom:523.311867pt;}
.y8b{bottom:524.081467pt;}
.y13{bottom:528.530133pt;}
.yb3{bottom:537.148667pt;}
.y10b{bottom:538.968133pt;}
.y2e{bottom:552.476267pt;}
.ya3{bottom:554.140000pt;}
.y124{bottom:555.210400pt;}
.ye{bottom:566.546800pt;}
.yb2{bottom:567.976800pt;}
.yee{bottom:569.781467pt;}
.y60{bottom:570.584267pt;}
.y119{bottom:570.690400pt;}
.yb4{bottom:577.333333pt;}
.y7b{bottom:577.693200pt;}
.y107{bottom:581.501733pt;}
.yec{bottom:582.379600pt;}
.y68{bottom:583.151333pt;}
.yf6{bottom:593.184133pt;}
.y8a{bottom:593.880800pt;}
.y123{bottom:605.618267pt;}
.yf5{bottom:608.014000pt;}
.ya7{bottom:622.369867pt;}
.y89{bottom:627.214133pt;}
.ycc{bottom:627.394800pt;}
.yd{bottom:633.012667pt;}
.ya9{bottom:641.427733pt;}
.y113{bottom:649.630800pt;}
.ya6{bottom:653.198000pt;}
.y4e{bottom:658.185867pt;}
.y5d{bottom:666.503200pt;}
.ya8{bottom:672.255867pt;}
.y122{bottom:672.709733pt;}
.y2d{bottom:675.520533pt;}
.y114{bottom:676.654933pt;}
.y65{bottom:709.948133pt;}
.y1a{bottom:712.843333pt;}
.y59{bottom:717.233733pt;}
.y19{bottom:719.654933pt;}
.y5b{bottom:720.463333pt;}
.ycb{bottom:725.670267pt;}
.y12e{bottom:747.755600pt;}
.yd6{bottom:763.151067pt;}
.y110{bottom:768.481067pt;}
.y105{bottom:770.666667pt;}
.y9f{bottom:789.333333pt;}
.y77{bottom:820.227467pt;}
.y66{bottom:821.015467pt;}
.yca{bottom:823.945600pt;}
.ye8{bottom:825.216133pt;}
.y5f{bottom:826.817867pt;}
.yea{bottom:827.586933pt;}
.y4c{bottom:827.721067pt;}
.yf3{bottom:828.888267pt;}
.yf0{bottom:833.630000pt;}
.y46{bottom:838.730800pt;}
.ye0{bottom:839.161733pt;}
.yc2{bottom:861.968267pt;}
.y79{bottom:862.612800pt;}
.y67{bottom:863.727600pt;}
.y4b{bottom:873.054400pt;}
.yda{bottom:880.935200pt;}
.ya{bottom:882.252000pt;}
.y45{bottom:886.730800pt;}
.y7e{bottom:931.176533pt;}
.yd5{bottom:955.251067pt;}
.y9{bottom:955.585333pt;}
.y37{bottom:962.415200pt;}
.ybf{bottom:969.284000pt;}
.y9c{bottom:986.666667pt;}
.y11e{bottom:991.810667pt;}
.yfe{bottom:993.333333pt;}
.y64{bottom:994.636533pt;}
.y12b{bottom:998.892533pt;}
.ybe{bottom:1000.112133pt;}
.y36{bottom:1006.415200pt;}
.y12{bottom:1030.936000pt;}
.y35{bottom:1050.415200pt;}
.y57{bottom:1052.278133pt;}
.y12a{bottom:1056.225867pt;}
.yfd{bottom:1056.562000pt;}
.yc9{bottom:1061.653467pt;}
.yeb{bottom:1069.895333pt;}
.yf4{bottom:1069.949733pt;}
.ybd{bottom:1075.686400pt;}
.y34{bottom:1094.415200pt;}
.y118{bottom:1094.585467pt;}
.y11{bottom:1104.269333pt;}
.ybc{bottom:1106.514533pt;}
.y129{bottom:1113.559200pt;}
.y11f{bottom:1117.142133pt;}
.ye7{bottom:1135.027600pt;}
.y33{bottom:1138.415200pt;}
.y121{bottom:1142.879867pt;}
.y56{bottom:1157.611467pt;}
.yc8{bottom:1159.928933pt;}
.y128{bottom:1170.892533pt;}
.ybb{bottom:1173.961867pt;}
.y32{bottom:1182.415200pt;}
.y99{bottom:1182.666667pt;}
.y117{bottom:1183.447600pt;}
.y2{bottom:1184.490800pt;}
.yf1{bottom:1185.215467pt;}
.y130{bottom:1188.966933pt;}
.yba{bottom:1204.790000pt;}
.y7{bottom:1213.669600pt;}
.ye6{bottom:1223.027600pt;}
.y112{bottom:1223.772933pt;}
.y31{bottom:1226.415200pt;}
.y127{bottom:1228.225867pt;}
.y6c{bottom:1233.186800pt;}
.y94{bottom:1233.333333pt;}
.yc5{bottom:1258.204400pt;}
.y8{bottom:1260.818533pt;}
.y30{bottom:1270.595333pt;}
.y116{bottom:1271.447600pt;}
.yb9{bottom:1272.237333pt;}
.y126{bottom:1285.559200pt;}
.y2c{bottom:1293.426000pt;}
.yc0{bottom:1293.844800pt;}
.y120{bottom:1294.835467pt;}
.yb8{bottom:1303.065467pt;}
.yb7{bottom:1314.117467pt;}
.y1{bottom:1317.824133pt;}
.y69{bottom:1322.876000pt;}
.y74{bottom:1322.902000pt;}
.y58{bottom:1327.203067pt;}
.y73{bottom:1335.022667pt;}
.y2b{bottom:1338.226667pt;}
.y8d{bottom:1338.254667pt;}
.y8f{bottom:1338.281333pt;}
.y125{bottom:1342.892000pt;}
.y4d{bottom:1347.692000pt;}
.y132{bottom:1351.758667pt;}
.y136{bottom:1359.350667pt;}
.y134{bottom:1366.098667pt;}
.y39{bottom:1366.698667pt;}
.y38{bottom:1368.205333pt;}
.y72{bottom:1368.356000pt;}
.y8c{bottom:1371.588000pt;}
.y8e{bottom:1371.614667pt;}
.yd7{bottom:1375.617333pt;}
.h46{height:0.014537pt;}
.h61{height:7.486064pt;}
.h2d{height:17.229373pt;}
.h6a{height:18.309947pt;}
.h4d{height:27.071078pt;}
.h6e{height:31.145440pt;}
.h4b{height:32.254734pt;}
.h69{height:33.258238pt;}
.h23{height:41.333333pt;}
.h48{height:44.394858pt;}
.h2f{height:51.652173pt;}
.h6c{height:53.773547pt;}
.h6b{height:53.779278pt;}
.h6f{height:54.133089pt;}
.h2e{height:57.888707pt;}
.h29{height:64.000000pt;}
.h2c{height:65.907067pt;}
.h27{height:65.967120pt;}
.h42{height:67.715827pt;}
.h14{height:70.176000pt;}
.h37{height:76.000000pt;}
.h2a{height:83.646480pt;}
.h30{height:85.371947pt;}
.h2b{height:88.000000pt;}
.h43{height:89.199293pt;}
.h6d{height:93.052304pt;}
.h15{height:93.568000pt;}
.h36{height:95.807292pt;}
.h10{height:96.000000pt;}
.h45{height:99.626933pt;}
.h49{height:99.627000pt;}
.h12{height:105.264000pt;}
.h32{height:109.333333pt;}
.h1a{height:111.369429pt;}
.h11{height:113.061333pt;}
.h20{height:113.874347pt;}
.h16{height:115.088640pt;}
.h1c{height:115.614587pt;}
.h24{height:116.000000pt;}
.h18{height:116.431676pt;}
.h25{height:118.028973pt;}
.h4{height:123.158880pt;}
.h44{height:124.757333pt;}
.h19{height:131.618416pt;}
.h54{height:132.000000pt;}
.h3{height:132.554667pt;}
.h66{height:140.352000pt;}
.h35{height:146.666667pt;}
.h53{height:152.000000pt;}
.h17{height:152.048000pt;}
.h65{height:159.845333pt;}
.hd{height:160.000000pt;}
.hc{height:160.297600pt;}
.hf{height:161.429333pt;}
.h3f{height:165.333333pt;}
.he{height:167.414933pt;}
.h4c{height:169.052667pt;}
.h67{height:172.000000pt;}
.h6{height:175.440000pt;}
.h31{height:176.000000pt;}
.h52{height:180.000000pt;}
.h13{height:181.482667pt;}
.h5e{height:185.621200pt;}
.h1e{height:198.375600pt;}
.h1d{height:200.000000pt;}
.h26{height:204.000000pt;}
.h2{height:208.000000pt;}
.h5f{height:208.273438pt;}
.h7{height:215.791200pt;}
.h63{height:222.223998pt;}
.h50{height:222.224000pt;}
.h47{height:231.358667pt;}
.h4e{height:232.000000pt;}
.h4a{height:233.114533pt;}
.h68{height:241.535067pt;}
.h21{height:243.203125pt;}
.h1b{height:244.000000pt;}
.h38{height:245.333333pt;}
.h4f{height:250.966400pt;}
.h8{height:253.413333pt;}
.h60{height:264.421600pt;}
.h3e{height:265.333333pt;}
.h9{height:269.008000pt;}
.h55{height:284.000000pt;}
.h5{height:288.000000pt;}
.h28{height:299.139844pt;}
.h22{height:332.000000pt;}
.h5d{height:334.666667pt;}
.hb{height:339.184000pt;}
.h59{height:342.666667pt;}
.h1f{height:344.000000pt;}
.h64{height:344.631600pt;}
.h1{height:348.000000pt;}
.h3d{height:362.666667pt;}
.h57{height:373.333333pt;}
.h62{height:393.301333pt;}
.h51{height:447.203733pt;}
.h41{height:449.333333pt;}
.h3c{height:461.333333pt;}
.h34{height:468.000000pt;}
.ha{height:541.914667pt;}
.h33{height:542.666667pt;}
.h58{height:576.000000pt;}
.h56{height:577.333333pt;}
.h39{height:581.333333pt;}
.h40{height:594.666667pt;}
.h5c{height:626.666667pt;}
.h5b{height:638.666667pt;}
.h5a{height:640.000000pt;}
.h3a{height:680.000000pt;}
.h3b{height:698.666667pt;}
.h0{height:1440.000000pt;}
.w1a{width:96.000000pt;}
.w8{width:112.525867pt;}
.w2e{width:126.425227pt;}
.w2c{width:131.406187pt;}
.w2d{width:137.512133pt;}
.w16{width:178.560533pt;}
.w17{width:178.850400pt;}
.w1d{width:185.164667pt;}
.w9{width:196.095867pt;}
.w1b{width:206.487600pt;}
.w1c{width:220.620533pt;}
.wb{width:224.366133pt;}
.w18{width:237.320400pt;}
.w2b{width:241.535067pt;}
.wc{width:250.778133pt;}
.wa{width:254.952800pt;}
.w29{width:262.165867pt;}
.w7{width:267.154667pt;}
.w6{width:277.788800pt;}
.wd{width:278.914533pt;}
.w4{width:280.691467pt;}
.w5{width:301.672133pt;}
.w19{width:333.647200pt;}
.w2a{width:346.764267pt;}
.w14{width:423.595467pt;}
.w13{width:472.201600pt;}
.w28{width:498.596667pt;}
.w3{width:510.282800pt;}
.w1{width:513.356400pt;}
.w2{width:550.545600pt;}
.w25{width:597.333333pt;}
.w23{width:616.000000pt;}
.w20{width:657.333333pt;}
.w15{width:661.936000pt;}
.w27{width:674.666667pt;}
.w21{width:860.000000pt;}
.w1f{width:908.000000pt;}
.w22{width:1025.333333pt;}
.w24{width:1037.333333pt;}
.we{width:1052.000000pt;}
.wf{width:1064.000000pt;}
.w10{width:1069.333333pt;}
.w26{width:1228.000000pt;}
.w12{width:1258.666667pt;}
.w11{width:1269.333333pt;}
.w1e{width:1312.000000pt;}
.w0{width:2560.000000pt;}
.x8e{left:-2.566000pt;}
.x97{left:-1.386667pt;}
.x0{left:0.000000pt;}
.x64{left:2.361067pt;}
.x69{left:5.387333pt;}
.xb9{left:7.629333pt;}
.xbb{left:9.132000pt;}
.x67{left:10.904533pt;}
.x35{left:13.790667pt;}
.x31{left:15.991200pt;}
.x45{left:17.331200pt;}
.x3e{left:19.337733pt;}
.x33{left:20.347733pt;}
.x4a{left:23.893333pt;}
.x6d{left:26.289867pt;}
.xa4{left:28.334053pt;}
.xb2{left:32.775173pt;}
.xa6{left:34.310160pt;}
.x43{left:36.775867pt;}
.x1{left:38.691213pt;}
.x2{left:39.945227pt;}
.x3{left:42.369787pt;}
.xb4{left:43.694080pt;}
.x49{left:45.113333pt;}
.xa7{left:46.534160pt;}
.xac{left:51.276280pt;}
.x2c{left:55.233733pt;}
.x1f{left:56.239013pt;}
.x42{left:58.566133pt;}
.xb7{left:60.150667pt;}
.x3d{left:61.346800pt;}
.x2f{left:66.915693pt;}
.x29{left:69.709813pt;}
.x40{left:71.801333pt;}
.xa8{left:73.819480pt;}
.xa5{left:81.241480pt;}
.x21{left:86.221693pt;}
.x1d{left:88.294027pt;}
.x38{left:93.145827pt;}
.x4e{left:96.870667pt;}
.x41{left:98.272000pt;}
.x91{left:112.165733pt;}
.xc0{left:114.333293pt;}
.xc1{left:116.733600pt;}
.x75{left:124.127973pt;}
.x3c{left:131.869813pt;}
.xa9{left:176.672933pt;}
.x32{left:212.806933pt;}
.x6e{left:217.739333pt;}
.x30{left:223.297333pt;}
.x34{left:224.748667pt;}
.x99{left:273.526933pt;}
.xbd{left:280.843200pt;}
.xab{left:293.036267pt;}
.xc{left:302.043067pt;}
.x4{left:314.955600pt;}
.xbe{left:333.697067pt;}
.xbf{left:335.308667pt;}
.x71{left:371.989333pt;}
.x90{left:398.666667pt;}
.x7e{left:400.943333pt;}
.x39{left:426.393867pt;}
.x3b{left:453.058533pt;}
.x79{left:458.477600pt;}
.x3a{left:466.392000pt;}
.xad{left:473.664933pt;}
.x5c{left:485.665467pt;}
.x72{left:490.499200pt;}
.xae{left:495.768533pt;}
.xa2{left:504.369200pt;}
.x87{left:510.832400pt;}
.x5b{left:527.674533pt;}
.xaf{left:535.426800pt;}
.xa1{left:544.300933pt;}
.x93{left:564.000000pt;}
.x7c{left:567.239067pt;}
.x1e{left:569.025733pt;}
.xb3{left:576.795600pt;}
.x8f{left:650.666667pt;}
.x86{left:652.800533pt;}
.x7f{left:655.588400pt;}
.x83{left:667.507467pt;}
.x78{left:669.717200pt;}
.x6b{left:708.503200pt;}
.x63{left:717.333333pt;}
.x65{left:720.000000pt;}
.xb0{left:726.718000pt;}
.x36{left:755.547867pt;}
.xf{left:770.907733pt;}
.x12{left:775.336000pt;}
.x10{left:785.685467pt;}
.x57{left:787.793733pt;}
.xe{left:800.339333pt;}
.xb1{left:803.384267pt;}
.x37{left:822.524933pt;}
.x2e{left:854.850000pt;}
.xb5{left:870.632133pt;}
.x14{left:873.547067pt;}
.x13{left:905.906533pt;}
.x4f{left:907.744800pt;}
.x11{left:909.881333pt;}
.x15{left:919.890267pt;}
.x7b{left:934.162400pt;}
.xa3{left:947.835733pt;}
.x81{left:955.426000pt;}
.x95{left:970.666667pt;}
.x88{left:972.962267pt;}
.x44{left:984.063333pt;}
.x1c{left:985.128133pt;}
.x85{left:986.567467pt;}
.x9a{left:989.108933pt;}
.x5d{left:999.747333pt;}
.x5a{left:1001.172667pt;}
.x2b{left:1004.727200pt;}
.x2a{left:1023.322000pt;}
.x2d{left:1024.858667pt;}
.x3f{left:1028.927867pt;}
.x80{left:1075.708667pt;}
.x89{left:1083.449333pt;}
.x22{left:1122.021467pt;}
.x77{left:1140.100667pt;}
.x8d{left:1142.666667pt;}
.x76{left:1153.751067pt;}
.x56{left:1168.040533pt;}
.x9b{left:1220.517733pt;}
.x55{left:1221.909067pt;}
.x9c{left:1245.522667pt;}
.x6c{left:1280.430800pt;}
.x66{left:1290.666667pt;}
.xaa{left:1298.384000pt;}
.x68{left:1301.333333pt;}
.x6a{left:1306.720667pt;}
.x6f{left:1348.261333pt;}
.x17{left:1378.184000pt;}
.x9{left:1387.506667pt;}
.x1a{left:1388.752000pt;}
.x98{left:1395.621333pt;}
.x8c{left:1406.830667pt;}
.x74{left:1409.316000pt;}
.x6{left:1422.501333pt;}
.x19{left:1433.796000pt;}
.x8{left:1438.533333pt;}
.x47{left:1441.425333pt;}
.x27{left:1446.545333pt;}
.xa{left:1447.506667pt;}
.x46{left:1451.688000pt;}
.x18{left:1459.748000pt;}
.x1b{left:1473.796000pt;}
.x16{left:1476.432000pt;}
.x5{left:1493.138667pt;}
.x61{left:1518.512000pt;}
.x92{left:1534.666667pt;}
.x60{left:1537.106667pt;}
.x62{left:1538.644000pt;}
.xb{left:1594.130667pt;}
.x70{left:1599.626667pt;}
.x54{left:1603.216000pt;}
.x7{left:1608.050667pt;}
.x53{left:1626.942667pt;}
.x20{left:1634.817333pt;}
.x82{left:1657.706667pt;}
.xd{left:1665.220000pt;}
.x7a{left:1699.682667pt;}
.xb6{left:1710.045333pt;}
.x23{left:1718.986667pt;}
.x73{left:1736.929333pt;}
.xba{left:1762.353333pt;}
.xb8{left:1765.109333pt;}
.xbc{left:1767.509333pt;}
.x28{left:1823.621333pt;}
.x48{left:1841.768000pt;}
.x5f{left:1865.661333pt;}
.x96{left:1885.333333pt;}
.x5e{left:1886.881333pt;}
.x25{left:1888.878667pt;}
.x8a{left:1952.029333pt;}
.x94{left:1962.666667pt;}
.x7d{left:1964.876000pt;}
.x84{left:1980.166667pt;}
.x8b{left:2001.230667pt;}
.x24{left:2009.544000pt;}
.x9e{left:2065.352000pt;}
.x9d{left:2071.358667pt;}
.x50{left:2100.474667pt;}
.x26{left:2117.374667pt;}
.x51{left:2124.257333pt;}
.x4d{left:2133.761333pt;}
.x4c{left:2138.022667pt;}
.x52{left:2146.565333pt;}
.x4b{left:2151.153333pt;}
.x58{left:2157.333333pt;}
.x9f{left:2218.448000pt;}
.xa0{left:2225.810667pt;}
.x59{left:2230.632000pt;}
}




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