
    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_69126446048afd2a7bb74c10.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a2c7d1722dd1683477be282.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_025f6d72e0917ec0cba35f8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_ce54e0ab2f202a6739f27ad9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_0066bfe2001f410c198db66f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_92bee27e45c7b271e582a8a5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3d6eefa5d944ffa686e64a10.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9c1f14e80e5d7bb473cf0241.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_305625fa27e9add3c2454238.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_7a0b2732f3413ed35b0e9297.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.046000;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_6ffcc01914736d3c9e485032.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.676000;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_43828bc6eb05e3e4089e894d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fa372d36f4d9248c6dbbd267.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v1{vertical-align:-10.758000px;}
.v5{vertical-align:-7.746000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:10.758000px;}
.v9{vertical-align:20.718000px;}
.v4{vertical-align:23.790000px;}
.v2{vertical-align:26.034000px;}
.v3{vertical-align:31.536000px;}
.v7{vertical-align:37.770000px;}
.v6{vertical-align:48.528000px;}
.ls1{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000141px;}
.ls1b{letter-spacing:0.001114px;}
.ls4{letter-spacing:0.001473px;}
.ls19{letter-spacing:0.003056px;}
.lsb{letter-spacing:0.004200px;}
.ls1f{letter-spacing:0.006141px;}
.ls18{letter-spacing:1.945021px;}
.ls8{letter-spacing:1.951021px;}
.lsd{letter-spacing:2.984915px;}
.ls1c{letter-spacing:2.986834px;}
.ls23{letter-spacing:2.987542px;}
.lsa{letter-spacing:2.988482px;}
.ls9{letter-spacing:2.990915px;}
.ls22{letter-spacing:3.698367px;}
.lsf{letter-spacing:15.937473px;}
.lse{letter-spacing:15.938759px;}
.ls15{letter-spacing:19.919518px;}
.ls7{letter-spacing:19.921473px;}
.ls32{letter-spacing:19.925518px;}
.ls20{letter-spacing:22.910915px;}
.ls27{letter-spacing:22.913542px;}
.ls1e{letter-spacing:23.113473px;}
.ls33{letter-spacing:23.411073px;}
.ls0{letter-spacing:23.413974px;}
.ls6{letter-spacing:23.541160px;}
.ls25{letter-spacing:24.161518px;}
.ls1d{letter-spacing:25.510834px;}
.ls26{letter-spacing:25.892915px;}
.ls10{letter-spacing:26.402915px;}
.ls16{letter-spacing:26.437473px;}
.ls17{letter-spacing:26.647473px;}
.ls5{letter-spacing:27.742099px;}
.ls24{letter-spacing:27.860367px;}
.ls1a{letter-spacing:31.579473px;}
.ls3{letter-spacing:35.117578px;}
.ls2{letter-spacing:35.865600px;}
.lsc{letter-spacing:36.666482px;}
.ls2c{letter-spacing:87.422915px;}
.ls2a{letter-spacing:95.516915px;}
.ls31{letter-spacing:96.380915px;}
.ls30{letter-spacing:109.082915px;}
.ls2d{letter-spacing:123.398915px;}
.ls29{letter-spacing:129.014915px;}
.ls2e{letter-spacing:140.168915px;}
.ls2f{letter-spacing:158.516915px;}
.ls21{letter-spacing:158.669518px;}
.ls12{letter-spacing:164.336915px;}
.ls2b{letter-spacing:175.286915px;}
.ls13{letter-spacing:511.916915px;}
.ls14{letter-spacing:644.972915px;}
.ls11{letter-spacing:652.849114px;}
.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;}
}
.ws31{word-spacing:-71.731200px;}
.ws22{word-spacing:-33.498470px;}
.ws1d{word-spacing:-32.278875px;}
.ws23{word-spacing:-24.747264px;}
.ws1f{word-spacing:-23.671296px;}
.ws1{word-spacing:-22.416000px;}
.ws5{word-spacing:-19.510886px;}
.wsb3{word-spacing:-17.932800px;}
.ws21{word-spacing:-10.903142px;}
.ws33{word-spacing:-7.563673px;}
.wsa7{word-spacing:-7.531776px;}
.wsc5{word-spacing:-3.873485px;}
.wsf5{word-spacing:-3.801754px;}
.wsbd{word-spacing:-3.658291px;}
.ws4a{word-spacing:-3.586560px;}
.wscd{word-spacing:-3.578077px;}
.ws4b{word-spacing:-3.572077px;}
.ws50{word-spacing:-3.514829px;}
.ws7c{word-spacing:-3.443098px;}
.wsea{word-spacing:-3.227904px;}
.ws3f{word-spacing:-2.869248px;}
.wsc3{word-spacing:-2.438861px;}
.wsc2{word-spacing:-2.295398px;}
.ws37{word-spacing:-2.223667px;}
.ws5d{word-spacing:-2.080205px;}
.ws67{word-spacing:-2.008474px;}
.wse9{word-spacing:-1.793280px;}
.ws7d{word-spacing:-1.721549px;}
.wse8{word-spacing:-1.649818px;}
.ws5e{word-spacing:-1.434624px;}
.ws8{word-spacing:-1.291162px;}
.wsf3{word-spacing:-1.219430px;}
.ws99{word-spacing:-1.075968px;}
.ws77{word-spacing:-0.932506px;}
.ws3d{word-spacing:-0.860774px;}
.wsd7{word-spacing:-0.573850px;}
.ws2f{word-spacing:-0.502118px;}
.ws8c{word-spacing:-0.430387px;}
.ws59{word-spacing:-0.358656px;}
.wse1{word-spacing:-0.286925px;}
.ws32{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.071731px;}
.ws38{word-spacing:-0.047821px;}
.ws6{word-spacing:0.000000px;}
.wsb7{word-spacing:0.071731px;}
.ws39{word-spacing:0.215194px;}
.wsde{word-spacing:0.286925px;}
.ws68{word-spacing:0.358656px;}
.wsdb{word-spacing:0.394664px;}
.ws48{word-spacing:0.430387px;}
.ws5c{word-spacing:0.502118px;}
.ws55{word-spacing:0.573850px;}
.ws14{word-spacing:0.645581px;}
.wsdf{word-spacing:0.717312px;}
.ws5b{word-spacing:0.789043px;}
.ws76{word-spacing:0.860774px;}
.ws91{word-spacing:0.932506px;}
.ws29{word-spacing:1.004237px;}
.ws9d{word-spacing:1.075968px;}
.ws3e{word-spacing:1.147699px;}
.ws47{word-spacing:1.362893px;}
.ws13{word-spacing:1.506355px;}
.wsd9{word-spacing:1.578086px;}
.ws4f{word-spacing:1.649818px;}
.ws9{word-spacing:1.721549px;}
.ws53{word-spacing:1.793280px;}
.wsda{word-spacing:1.865011px;}
.ws2b{word-spacing:1.936742px;}
.ws44{word-spacing:2.008474px;}
.ws6c{word-spacing:2.151936px;}
.ws97{word-spacing:2.295398px;}
.ws8d{word-spacing:2.438861px;}
.wsb0{word-spacing:2.510592px;}
.ws36{word-spacing:2.582323px;}
.ws8f{word-spacing:2.654054px;}
.ws5a{word-spacing:2.725786px;}
.ws61{word-spacing:2.797517px;}
.ws1b{word-spacing:2.869248px;}
.ws89{word-spacing:2.940979px;}
.wsab{word-spacing:3.012710px;}
.ws92{word-spacing:3.084442px;}
.ws46{word-spacing:3.227904px;}
.ws5f{word-spacing:3.299635px;}
.wsc6{word-spacing:3.371366px;}
.ws41{word-spacing:3.443098px;}
.ws2a{word-spacing:3.514829px;}
.wsaf{word-spacing:3.586560px;}
.ws2d{word-spacing:3.658291px;}
.ws6d{word-spacing:3.730022px;}
.wsd6{word-spacing:3.801754px;}
.ws2{word-spacing:3.873485px;}
.wsf4{word-spacing:3.904234px;}
.wsf{word-spacing:3.945216px;}
.ws6f{word-spacing:4.016947px;}
.ws16{word-spacing:4.088678px;}
.wsa2{word-spacing:4.160410px;}
.ws85{word-spacing:4.232141px;}
.ws6b{word-spacing:4.303872px;}
.ws69{word-spacing:4.375603px;}
.wsb4{word-spacing:4.419972px;}
.ws27{word-spacing:4.447334px;}
.ws0{word-spacing:4.483200px;}
.ws2c{word-spacing:4.519066px;}
.ws90{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.ws58{word-spacing:4.662528px;}
.wsd8{word-spacing:4.734259px;}
.ws3c{word-spacing:4.805990px;}
.wsa0{word-spacing:4.877722px;}
.ws12{word-spacing:4.949453px;}
.ws54{word-spacing:5.021184px;}
.ws35{word-spacing:5.164646px;}
.wsa9{word-spacing:5.236378px;}
.ws6e{word-spacing:5.308109px;}
.ws63{word-spacing:5.379825px;}
.wsf7{word-spacing:5.379840px;}
.ws1c{word-spacing:5.451571px;}
.ws79{word-spacing:5.523302px;}
.ws7f{word-spacing:5.595034px;}
.ws7b{word-spacing:5.738496px;}
.ws9e{word-spacing:5.881958px;}
.ws60{word-spacing:5.953690px;}
.wsac{word-spacing:6.025421px;}
.ws7a{word-spacing:6.097152px;}
.ws17{word-spacing:6.168883px;}
.wsbc{word-spacing:6.240614px;}
.ws78{word-spacing:6.312346px;}
.wsb8{word-spacing:6.384077px;}
.ws4{word-spacing:6.455775px;}
.ws9a{word-spacing:6.455808px;}
.ws57{word-spacing:6.527539px;}
.wsbb{word-spacing:6.599270px;}
.ws94{word-spacing:6.671002px;}
.ws1a{word-spacing:6.814464px;}
.ws82{word-spacing:6.884277px;}
.ws80{word-spacing:6.886195px;}
.ws75{word-spacing:6.957926px;}
.wsb6{word-spacing:7.029658px;}
.ws7e{word-spacing:7.101389px;}
.ws28{word-spacing:7.173120px;}
.ws4e{word-spacing:7.244851px;}
.ws3a{word-spacing:7.388314px;}
.wsc1{word-spacing:7.460045px;}
.ws88{word-spacing:7.531776px;}
.ws73{word-spacing:7.746970px;}
.wsa1{word-spacing:7.818701px;}
.wsaa{word-spacing:7.890432px;}
.wsd5{word-spacing:7.962163px;}
.ws8a{word-spacing:8.177357px;}
.wsa3{word-spacing:8.249088px;}
.wse0{word-spacing:8.320819px;}
.ws30{word-spacing:8.392550px;}
.ws8e{word-spacing:8.464282px;}
.wsf8{word-spacing:8.536013px;}
.ws3b{word-spacing:8.607744px;}
.wsa4{word-spacing:8.679475px;}
.ws43{word-spacing:8.751206px;}
.wsae{word-spacing:8.894669px;}
.ws26{word-spacing:8.966400px;}
.wsee{word-spacing:9.038131px;}
.ws66{word-spacing:9.109862px;}
.ws45{word-spacing:9.181594px;}
.ws19{word-spacing:9.253325px;}
.ws84{word-spacing:9.325056px;}
.ws70{word-spacing:9.396787px;}
.wse5{word-spacing:9.611981px;}
.ws71{word-spacing:9.683712px;}
.ws9c{word-spacing:9.755443px;}
.wsa5{word-spacing:10.042368px;}
.ws72{word-spacing:10.114099px;}
.wsb1{word-spacing:10.257562px;}
.ws15{word-spacing:10.329293px;}
.wsd{word-spacing:10.401024px;}
.ws95{word-spacing:10.544486px;}
.ws74{word-spacing:10.616218px;}
.ws9b{word-spacing:10.759680px;}
.ws56{word-spacing:10.831411px;}
.wsa8{word-spacing:10.974874px;}
.ws98{word-spacing:11.118336px;}
.ws65{word-spacing:11.190067px;}
.ws86{word-spacing:11.261798px;}
.ws42{word-spacing:11.333530px;}
.wsb5{word-spacing:11.372162px;}
.ws18{word-spacing:11.476992px;}
.ws25{word-spacing:11.548723px;}
.wsef{word-spacing:11.602552px;}
.wseb{word-spacing:11.615186px;}
.wsc0{word-spacing:11.620454px;}
.wse6{word-spacing:11.625433px;}
.ws8b{word-spacing:11.692186px;}
.wsb{word-spacing:11.695811px;}
.ws4d{word-spacing:11.763917px;}
.wsec{word-spacing:11.835648px;}
.wsa6{word-spacing:12.050842px;}
.ws40{word-spacing:12.122573px;}
.wsb2{word-spacing:12.337766px;}
.ws62{word-spacing:12.481229px;}
.ws96{word-spacing:12.624691px;}
.wsbe{word-spacing:12.768154px;}
.wsdd{word-spacing:12.839885px;}
.ws93{word-spacing:13.485466px;}
.ws6a{word-spacing:13.700659px;}
.wse2{word-spacing:13.915853px;}
.wse7{word-spacing:14.274509px;}
.wsed{word-spacing:14.489702px;}
.ws2e{word-spacing:14.704896px;}
.ws9f{word-spacing:14.776627px;}
.wse3{word-spacing:14.848358px;}
.ws87{word-spacing:15.063552px;}
.wsbf{word-spacing:15.278746px;}
.wsf0{word-spacing:15.422208px;}
.wsf9{word-spacing:15.493939px;}
.ws64{word-spacing:15.996058px;}
.ws20{word-spacing:16.354714px;}
.wse4{word-spacing:17.287219px;}
.wsf6{word-spacing:18.291456px;}
.wsf1{word-spacing:18.721843px;}
.wsfa{word-spacing:18.865306px;}
.ws49{word-spacing:18.903729px;}
.wsad{word-spacing:18.937037px;}
.wsf2{word-spacing:20.228198px;}
.wsc4{word-spacing:22.868076px;}
.ws7{word-spacing:23.312640px;}
.wsba{word-spacing:23.328140px;}
.ws81{word-spacing:26.303007px;}
.wsc7{word-spacing:26.356616px;}
.ws83{word-spacing:36.869837px;}
.ws1e{word-spacing:42.572467px;}
.ws11{word-spacing:49.315200px;}
.wscb{word-spacing:52.220314px;}
.wsd3{word-spacing:65.777510px;}
.wsdc{word-spacing:69.937725px;}
.wsd4{word-spacing:74.670010px;}
.wsc9{word-spacing:74.672076px;}
.ws24{word-spacing:83.925075px;}
.wsd0{word-spacing:90.739968px;}
.wsce{word-spacing:100.854067px;}
.wscf{word-spacing:101.682349px;}
.wsd2{word-spacing:112.308010px;}
.wsca{word-spacing:113.191834px;}
.wsd1{word-spacing:127.416010px;}
.wscc{word-spacing:136.803540px;}
.ws51{word-spacing:138.882010px;}
.ws4c{word-spacing:158.737405px;}
.wsc{word-spacing:414.316368px;}
.wse{word-spacing:421.080620px;}
.wsa{word-spacing:475.811526px;}
.ws10{word-spacing:514.610932px;}
.ws52{word-spacing:601.572010px;}
.wsc8{word-spacing:1039.528550px;}
.wsb9{word-spacing:1246.204963px;}
._2b{margin-left:-37.802342px;}
._23{margin-left:-35.865600px;}
._26{margin-left:-33.928858px;}
._59{margin-left:-32.207309px;}
._5b{margin-left:-27.257856px;}
._25{margin-left:-12.481229px;}
._7{margin-left:-10.687883px;}
._5a{margin-left:-7.818701px;}
._e{margin-left:-6.742733px;}
._12{margin-left:-5.523302px;}
._1{margin-left:-4.519066px;}
._3c{margin-left:-3.227904px;}
._0{margin-left:-2.223667px;}
._d{margin-left:-1.219430px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._47{width:4.519066px;}
._4b{width:12.194304px;}
._57{width:15.565670px;}
._3e{width:16.928563px;}
._3d{width:18.363187px;}
._39{width:19.941274px;}
._2e{width:21.017242px;}
._5d{width:22.021478px;}
._29{width:23.456102px;}
._58{width:24.460339px;}
._37{width:25.679770px;}
._3a{width:27.074797px;}
._38{width:28.692480px;}
._1e{width:29.983642px;}
._5{width:31.561728px;}
._1d{width:33.283277px;}
._4a{width:34.430976px;}
._24{width:35.937331px;}
._4{width:37.443582px;}
._1c{width:38.760688px;}
._3f{width:41.388902px;}
._4c{width:42.464870px;}
._48{width:43.469107px;}
._2f{width:44.473344px;}
._3b{width:45.549312px;}
._35{width:47.127398px;}
._30{width:49.207603px;}
._2d{width:51.646464px;}
._4e{width:53.009357px;}
._55{width:54.587443px;}
._5c{width:56.380723px;}
._31{width:58.478317px;}
._56{width:63.912499px;}
._20{width:64.988467px;}
._8{width:72.000735px;}
._2c{width:73.022362px;}
._f{width:76.096587px;}
._28{width:80.338944px;}
._c{width:84.058750px;}
._54{width:87.708104px;}
._46{width:96.836850px;}
._52{width:100.413295px;}
._41{width:103.938509px;}
._4f{width:105.825107px;}
._27{width:107.309875px;}
._36{width:116.203950px;}
._10{width:119.242904px;}
._53{width:126.458893px;}
._42{width:132.128870px;}
._2a{width:143.175475px;}
._9{width:155.108504px;}
._44{width:171.334145px;}
._51{width:173.948160px;}
._16{width:185.012154px;}
._15{width:202.353715px;}
._b{width:218.203267px;}
._50{width:250.509433px;}
._13{width:253.569792px;}
._40{width:303.638170px;}
._43{width:310.811290px;}
._11{width:336.710383px;}
._19{width:390.432922px;}
._a{width:445.655729px;}
._18{width:472.941191px;}
._1a{width:529.106721px;}
._4d{width:575.134504px;}
._45{width:650.386790px;}
._1b{width:707.413094px;}
._17{width:725.148090px;}
._49{width:734.247802px;}
._6{width:769.365802px;}
._14{width:1241.953997px;}
._21{width:1268.351078px;}
._32{width:1334.989363px;}
._22{width:1627.939584px;}
._33{width:2030.495078px;}
._1f{width:2118.150605px;}
._34{width:2135.653018px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y51{bottom:110.311500px;}
.y134{bottom:112.866000px;}
.yc9{bottom:114.370500px;}
.y1d7{bottom:117.787500px;}
.y184{bottom:121.285500px;}
.y159{bottom:124.477500px;}
.y123{bottom:127.179000px;}
.y50{bottom:131.980500px;}
.yee{bottom:132.613500px;}
.y77{bottom:133.959000px;}
.y133{bottom:134.535000px;}
.yc8{bottom:136.038000px;}
.y9e{bottom:139.276500px;}
.y1d6{bottom:139.455000px;}
.y183{bottom:142.954500px;}
.y10c{bottom:144.133500px;}
.y122{bottom:148.848000px;}
.yc{bottom:151.408500px;}
.y16b{bottom:152.115000px;}
.y4f{bottom:153.649500px;}
.yed{bottom:154.282500px;}
.y76{bottom:155.628000px;}
.y158{bottom:155.829000px;}
.y132{bottom:156.204000px;}
.yc7{bottom:157.707000px;}
.y9d{bottom:160.945500px;}
.y1d5{bottom:161.124000px;}
.y1b2{bottom:162.054000px;}
.y182{bottom:164.623500px;}
.y10b{bottom:165.802500px;}
.y121{bottom:170.515500px;}
.yb{bottom:173.077500px;}
.y16a{bottom:173.784000px;}
.y4e{bottom:175.318500px;}
.yec{bottom:175.951500px;}
.y75{bottom:177.297000px;}
.y157{bottom:177.498000px;}
.y131{bottom:177.871500px;}
.yc6{bottom:179.376000px;}
.y9c{bottom:182.614500px;}
.y1d4{bottom:182.793000px;}
.y181{bottom:186.292500px;}
.y10a{bottom:187.470000px;}
.y120{bottom:192.184500px;}
.y169{bottom:195.453000px;}
.yeb{bottom:197.620500px;}
.y1b1{bottom:198.666000px;}
.y74{bottom:198.966000px;}
.y156{bottom:199.167000px;}
.y130{bottom:199.540500px;}
.yc5{bottom:201.045000px;}
.y9b{bottom:204.283500px;}
.y1d3{bottom:204.462000px;}
.y180{bottom:207.961500px;}
.y109{bottom:209.139000px;}
.y4d{bottom:213.624000px;}
.y11f{bottom:213.853500px;}
.y168{bottom:217.122000px;}
.yea{bottom:219.289500px;}
.y1b0{bottom:220.335000px;}
.y73{bottom:220.635000px;}
.y155{bottom:220.836000px;}
.y12f{bottom:221.209500px;}
.yc4{bottom:222.714000px;}
.y9a{bottom:225.951000px;}
.y1d2{bottom:226.131000px;}
.y17f{bottom:229.630500px;}
.y108{bottom:230.808000px;}
.y4c{bottom:235.293000px;}
.y11e{bottom:235.522500px;}
.y167{bottom:238.791000px;}
.ye9{bottom:240.957000px;}
.y1af{bottom:242.004000px;}
.y72{bottom:242.304000px;}
.y154{bottom:242.505000px;}
.yc3{bottom:244.383000px;}
.y99{bottom:247.620000px;}
.y17e{bottom:251.298000px;}
.y107{bottom:252.477000px;}
.y12e{bottom:254.460000px;}
.y4b{bottom:256.960500px;}
.y11d{bottom:257.191500px;}
.y1d1{bottom:259.755000px;}
.y166{bottom:260.460000px;}
.ye8{bottom:262.626000px;}
.y1ae{bottom:263.673000px;}
.y71{bottom:263.971500px;}
.y153{bottom:264.174000px;}
.yc2{bottom:266.050500px;}
.y98{bottom:269.289000px;}
.y17d{bottom:272.967000px;}
.y106{bottom:274.146000px;}
.y4a{bottom:278.629500px;}
.y11c{bottom:278.860500px;}
.y1d0{bottom:281.424000px;}
.ye7{bottom:284.295000px;}
.y70{bottom:285.640500px;}
.y152{bottom:285.841500px;}
.yc1{bottom:287.719500px;}
.y97{bottom:290.958000px;}
.y17c{bottom:294.636000px;}
.y105{bottom:295.815000px;}
.y1ad{bottom:300.285000px;}
.y49{bottom:300.298500px;}
.y11b{bottom:300.528000px;}
.y1cf{bottom:303.093000px;}
.ye6{bottom:305.964000px;}
.y12d{bottom:306.453000px;}
.y151{bottom:307.510500px;}
.yc0{bottom:309.388500px;}
.y6f{bottom:310.797000px;}
.y96{bottom:312.627000px;}
.y17b{bottom:316.305000px;}
.y104{bottom:317.482500px;}
.y1ac{bottom:321.954000px;}
.y11a{bottom:322.197000px;}
.y6e{bottom:323.097000px;}
.y1ce{bottom:324.762000px;}
.ye5{bottom:327.633000px;}
.y12c{bottom:328.120500px;}
.y150{bottom:329.179500px;}
.ybf{bottom:331.057500px;}
.y17a{bottom:337.974000px;}
.y103{bottom:339.151500px;}
.y48{bottom:342.973500px;}
.y1ab{bottom:343.623000px;}
.y119{bottom:343.866000px;}
.y95{bottom:345.877500px;}
.y1cd{bottom:346.429500px;}
.ye4{bottom:349.302000px;}
.y14f{bottom:350.848500px;}
.ybe{bottom:352.726500px;}
.y179{bottom:359.643000px;}
.y47{bottom:364.641000px;}
.y118{bottom:365.535000px;}
.ye3{bottom:370.969500px;}
.y6d{bottom:371.842500px;}
.y102{bottom:372.402000px;}
.y14e{bottom:372.517500px;}
.y12b{bottom:373.227000px;}
.ybd{bottom:374.395500px;}
.y1cc{bottom:380.055000px;}
.y1aa{bottom:380.235000px;}
.y178{bottom:381.310500px;}
.y46{bottom:386.310000px;}
.y117{bottom:387.204000px;}
.ye2{bottom:392.638500px;}
.y6c{bottom:393.510000px;}
.y14d{bottom:394.186500px;}
.y12a{bottom:394.896000px;}
.ybc{bottom:396.063000px;}
.y94{bottom:397.869000px;}
.y1cb{bottom:401.724000px;}
.y1a9{bottom:401.904000px;}
.y177{bottom:402.979500px;}
.y45{bottom:407.979000px;}
.y116{bottom:408.873000px;}
.ye1{bottom:414.307500px;}
.y6b{bottom:415.179000px;}
.y14c{bottom:415.854000px;}
.ybb{bottom:417.732000px;}
.y93{bottom:419.538000px;}
.y1ca{bottom:423.391500px;}
.y1a8{bottom:423.573000px;}
.y101{bottom:424.395000px;}
.y176{bottom:424.648500px;}
.y44{bottom:429.648000px;}
.y129{bottom:430.387500px;}
.y115{bottom:430.540500px;}
.ye0{bottom:435.976500px;}
.y6a{bottom:436.848000px;}
.y14b{bottom:437.523000px;}
.yba{bottom:439.401000px;}
.y92{bottom:441.207000px;}
.y1c9{bottom:445.060500px;}
.y100{bottom:446.064000px;}
.y175{bottom:446.317500px;}
.ydf{bottom:457.645500px;}
.y69{bottom:458.517000px;}
.y14a{bottom:459.192000px;}
.y1a7{bottom:460.185000px;}
.yb9{bottom:461.070000px;}
.y91{bottom:462.876000px;}
.yff{bottom:467.731500px;}
.y174{bottom:467.986500px;}
.y114{bottom:475.447500px;}
.y1c8{bottom:478.686000px;}
.yde{bottom:479.314500px;}
.y68{bottom:480.186000px;}
.y149{bottom:480.861000px;}
.y1a6{bottom:481.854000px;}
.yb8{bottom:482.739000px;}
.y90{bottom:484.545000px;}
.ya{bottom:488.589000px;}
.yfe{bottom:489.400500px;}
.y173{bottom:489.654000px;}
.y113{bottom:497.116500px;}
.y1c7{bottom:500.355000px;}
.ydd{bottom:500.982000px;}
.y67{bottom:501.855000px;}
.y148{bottom:502.530000px;}
.y1a5{bottom:503.523000px;}
.yb7{bottom:504.406500px;}
.y8f{bottom:506.212500px;}
.yfd{bottom:511.069500px;}
.y172{bottom:511.323000px;}
.y112{bottom:518.785500px;}
.ydc{bottom:522.651000px;}
.y66{bottom:523.522500px;}
.y147{bottom:524.197500px;}
.yb6{bottom:526.075500px;}
.y8e{bottom:527.881500px;}
.yfc{bottom:532.738500px;}
.y171{bottom:532.992000px;}
.y1c6{bottom:533.979000px;}
.y9{bottom:534.915000px;}
.y1a4{bottom:540.135000px;}
.ydb{bottom:544.320000px;}
.y65{bottom:545.191500px;}
.yb5{bottom:547.744500px;}
.y8d{bottom:549.550500px;}
.yfb{bottom:554.407500px;}
.y1c5{bottom:555.648000px;}
.y146{bottom:558.604500px;}
.y1a3{bottom:561.804000px;}
.y190{bottom:565.590000px;}
.yda{bottom:565.989000px;}
.y170{bottom:566.242500px;}
.y64{bottom:566.860500px;}
.y8{bottom:567.792000px;}
.y145{bottom:570.906000px;}
.y8c{bottom:571.219500px;}
.yfa{bottom:576.076500px;}
.y1c4{bottom:577.317000px;}
.yb4{bottom:580.995000px;}
.y1a2{bottom:583.473000px;}
.y18f{bottom:587.259000px;}
.y63{bottom:588.529500px;}
.y8b{bottom:592.888500px;}
.y42{bottom:598.791000px;}
.yd9{bottom:599.239500px;}
.y7{bottom:600.669000px;}
.y1a1{bottom:605.142000px;}
.y18e{bottom:608.928000px;}
.yf9{bottom:609.325500px;}
.y1c3{bottom:610.941000px;}
.y144{bottom:612.147000px;}
.y8a{bottom:614.557500px;}
.y16f{bottom:620.563500px;}
.yb3{bottom:627.757500px;}
.y62{bottom:629.625000px;}
.y18d{bottom:630.597000px;}
.y1c2{bottom:632.610000px;}
.y6{bottom:633.544500px;}
.y143{bottom:633.816000px;}
.y89{bottom:636.225000px;}
.y41{bottom:638.019000px;}
.y1a0{bottom:641.754000px;}
.y1f{bottom:641.901000px;}
.y16e{bottom:642.232500px;}
.yd8{bottom:646.000500px;}
.yb2{bottom:649.426500px;}
.y61{bottom:651.294000px;}
.y18c{bottom:652.264500px;}
.y1c1{bottom:654.279000px;}
.yf8{bottom:656.088000px;}
.y88{bottom:657.894000px;}
.y19f{bottom:663.423000px;}
.y1e{bottom:663.568500px;}
.y16d{bottom:663.901500px;}
.yd7{bottom:667.669500px;}
.y142{bottom:669.219000px;}
.yb1{bottom:671.094000px;}
.y60{bottom:672.963000px;}
.y18b{bottom:673.933500px;}
.y40{bottom:677.247000px;}
.yf7{bottom:677.757000px;}
.y87{bottom:679.563000px;}
.y141{bottom:681.520500px;}
.y19e{bottom:685.092000px;}
.y16c{bottom:685.570500px;}
.y1d{bottom:685.836000px;}
.y1c0{bottom:687.903000px;}
.yd6{bottom:689.338500px;}
.yb0{bottom:692.763000px;}
.y18a{bottom:695.602500px;}
.y3f{bottom:698.916000px;}
.yf6{bottom:699.426000px;}
.y86{bottom:701.232000px;}
.y19d{bottom:706.761000px;}
.y1c{bottom:708.102000px;}
.y5f{bottom:709.575000px;}
.yd5{bottom:711.007500px;}
.yaf{bottom:714.432000px;}
.y128{bottom:717.229500px;}
.y189{bottom:717.271500px;}
.yf5{bottom:721.095000px;}
.y1bf{bottom:721.527000px;}
.y140{bottom:721.765500px;}
.y85{bottom:722.901000px;}
.y5{bottom:723.208500px;}
.y19c{bottom:728.430000px;}
.y1b{bottom:730.368000px;}
.y5e{bottom:731.244000px;}
.yd4{bottom:732.676500px;}
.yae{bottom:736.101000px;}
.y3e{bottom:738.144000px;}
.y127{bottom:738.898500px;}
.y188{bottom:738.940500px;}
.y111{bottom:739.027500px;}
.yf4{bottom:742.764000px;}
.y1be{bottom:743.196000px;}
.y13f{bottom:743.434500px;}
.y84{bottom:744.568500px;}
.y19b{bottom:750.099000px;}
.y4{bottom:750.108000px;}
.y1a{bottom:752.635500px;}
.y5d{bottom:752.913000px;}
.yd3{bottom:754.345500px;}
.yad{bottom:757.770000px;}
.y3d{bottom:759.811500px;}
.y187{bottom:760.609500px;}
.yf3{bottom:764.431500px;}
.y1bd{bottom:764.865000px;}
.y13e{bottom:765.103500px;}
.y83{bottom:766.237500px;}
.y19{bottom:774.901500px;}
.yd2{bottom:776.013000px;}
.y165{bottom:779.254500px;}
.yac{bottom:779.439000px;}
.y3c{bottom:781.480500px;}
.y186{bottom:782.277000px;}
.yf2{bottom:786.100500px;}
.y1bc{bottom:786.534000px;}
.y19a{bottom:786.711000px;}
.y82{bottom:787.906500px;}
.y5c{bottom:789.525000px;}
.y110{bottom:791.020500px;}
.y126{bottom:793.219500px;}
.y13d{bottom:794.644500px;}
.y31{bottom:794.929500px;}
.y18{bottom:796.570500px;}
.yd1{bottom:797.682000px;}
.y164{bottom:800.923500px;}
.yab{bottom:801.106500px;}
.y3b{bottom:803.149500px;}
.yf1{bottom:807.769500px;}
.y199{bottom:808.380000px;}
.y81{bottom:809.575500px;}
.y5b{bottom:811.194000px;}
.y10f{bottom:812.688000px;}
.y125{bottom:814.888500px;}
.y30{bottom:816.598500px;}
.y17{bottom:818.836500px;}
.y1bb{bottom:820.158000px;}
.y185{bottom:821.704500px;}
.y163{bottom:822.591000px;}
.yaa{bottom:822.775500px;}
.y13c{bottom:822.922500px;}
.y3a{bottom:824.818500px;}
.yf0{bottom:829.438500px;}
.y198{bottom:830.049000px;}
.yd0{bottom:830.932500px;}
.y80{bottom:831.244500px;}
.y5a{bottom:832.863000px;}
.y10e{bottom:834.357000px;}
.y2f{bottom:838.267500px;}
.y16{bottom:840.505500px;}
.y1ba{bottom:841.827000px;}
.y24{bottom:842.896500px;}
.y162{bottom:844.260000px;}
.ya9{bottom:844.444500px;}
.y13b{bottom:844.591500px;}
.y39{bottom:846.487500px;}
.y124{bottom:850.380000px;}
.y197{bottom:851.716500px;}
.y10d{bottom:856.026000px;}
.y2e{bottom:859.936500px;}
.yef{bottom:862.689000px;}
.y15{bottom:862.771500px;}
.y1b9{bottom:863.496000px;}
.y23{bottom:864.565500px;}
.ya8{bottom:866.113500px;}
.y13a{bottom:866.260500px;}
.y38{bottom:868.156500px;}
.y59{bottom:869.475000px;}
.y7f{bottom:870.672000px;}
.y196{bottom:873.385500px;}
.ycf{bottom:877.695000px;}
.y2d{bottom:881.605500px;}
.y14{bottom:884.440500px;}
.y22{bottom:886.234500px;}
.ya7{bottom:887.782500px;}
.y139{bottom:887.929500px;}
.y37{bottom:889.824000px;}
.y58{bottom:891.144000px;}
.y195{bottom:895.054500px;}
.y1b8{bottom:897.120000px;}
.yce{bottom:899.364000px;}
.y2c{bottom:903.274500px;}
.y161{bottom:903.886500px;}
.y13{bottom:906.706500px;}
.y21{bottom:907.902000px;}
.y43{bottom:908.740500px;}
.ya6{bottom:909.450000px;}
.y138{bottom:909.597000px;}
.y36{bottom:911.493000px;}
.y1b7{bottom:918.789000px;}
.ycd{bottom:921.033000px;}
.y2b{bottom:924.942000px;}
.y7e{bottom:924.993000px;}
.y160{bottom:925.555500px;}
.y57{bottom:927.757500px;}
.y12{bottom:928.974000px;}
.y20{bottom:929.571000px;}
.ya5{bottom:931.119000px;}
.y137{bottom:931.266000px;}
.y194{bottom:931.668000px;}
.y35{bottom:933.162000px;}
.ycc{bottom:942.700500px;}
.y2a{bottom:946.611000px;}
.y7d{bottom:946.662000px;}
.y15f{bottom:947.821500px;}
.y56{bottom:949.426500px;}
.y11{bottom:951.240000px;}
.y1b6{bottom:952.414500px;}
.ya4{bottom:952.788000px;}
.y136{bottom:952.935000px;}
.y193{bottom:953.335500px;}
.y34{bottom:954.831000px;}
.ycb{bottom:964.369500px;}
.y29{bottom:968.280000px;}
.y15e{bottom:969.490500px;}
.y55{bottom:971.094000px;}
.y10{bottom:972.909000px;}
.y1b5{bottom:974.082000px;}
.ya3{bottom:974.457000px;}
.y192{bottom:975.004500px;}
.y33{bottom:976.500000px;}
.yca{bottom:986.038500px;}
.y28{bottom:989.949000px;}
.y15d{bottom:991.159500px;}
.y135{bottom:992.362500px;}
.yf{bottom:994.578000px;}
.y1b4{bottom:995.751000px;}
.ya2{bottom:996.126000px;}
.y191{bottom:996.673500px;}
.y7c{bottom:1006.288500px;}
.y54{bottom:1007.707500px;}
.y27{bottom:1011.618000px;}
.y15c{bottom:1012.828500px;}
.y32{bottom:1015.728000px;}
.ye{bottom:1016.844000px;}
.y1b3{bottom:1017.420000px;}
.ya1{bottom:1017.795000px;}
.y7b{bottom:1027.956000px;}
.y53{bottom:1029.376500px;}
.y26{bottom:1033.287000px;}
.y15b{bottom:1035.094500px;}
.ya0{bottom:1039.462500px;}
.y52{bottom:1044.861000px;}
.y7a{bottom:1049.625000px;}
.y3{bottom:1051.044000px;}
.y25{bottom:1054.954500px;}
.y15a{bottom:1056.763500px;}
.y9f{bottom:1061.131500px;}
.y79{bottom:1071.294000px;}
.y2{bottom:1072.713000px;}
.y78{bottom:1093.560000px;}
.y1{bottom:1094.382000px;}
.yd{bottom:1142.382000px;}
.hc{height:44.831700px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.h9{height:60.171908px;}
.h6{height:60.177908px;}
.h7{height:64.197470px;}
.h3{height:64.557900px;}
.h4{height:77.469300px;}
.h8{height:78.536400px;}
.ha{height:102.326400px;}
.hb{height:102.998400px;}
.hd{height:103.004400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.x7{left:111.945000px;}
.x1c{left:116.967000px;}
.x10{left:119.580000px;}
.x8{left:130.431000px;}
.x11{left:134.338500px;}
.xe{left:135.690000px;}
.x20{left:137.542500px;}
.x21{left:144.093000px;}
.x1f{left:146.322000px;}
.x13{left:151.897500px;}
.x1e{left:155.101500px;}
.x12{left:174.724500px;}
.xa{left:180.432000px;}
.x3{left:218.566500px;}
.xc{left:221.271000px;}
.x4{left:227.973000px;}
.x1{left:232.443000px;}
.x18{left:237.271500px;}
.x2{left:251.863500px;}
.xb{left:259.918500px;}
.x17{left:271.371000px;}
.x9{left:288.540000px;}
.x15{left:293.649000px;}
.x1d{left:294.762000px;}
.x1a{left:316.317000px;}
.xf{left:332.026500px;}
.x1b{left:395.205000px;}
.x5{left:399.048000px;}
.x16{left:400.720500px;}
.x6{left:409.500000px;}
.x19{left:515.233500px;}
.x14{left:699.379500px;}
@media print{
.v1{vertical-align:-9.562667pt;}
.v5{vertical-align:-6.885333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:9.562667pt;}
.v9{vertical-align:18.416000pt;}
.v4{vertical-align:21.146667pt;}
.v2{vertical-align:23.141333pt;}
.v3{vertical-align:28.032000pt;}
.v7{vertical-align:33.573333pt;}
.v6{vertical-align:43.136000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000125pt;}
.ls1b{letter-spacing:0.000990pt;}
.ls4{letter-spacing:0.001309pt;}
.ls19{letter-spacing:0.002717pt;}
.lsb{letter-spacing:0.003733pt;}
.ls1f{letter-spacing:0.005459pt;}
.ls18{letter-spacing:1.728908pt;}
.ls8{letter-spacing:1.734241pt;}
.lsd{letter-spacing:2.653258pt;}
.ls1c{letter-spacing:2.654964pt;}
.ls23{letter-spacing:2.655593pt;}
.lsa{letter-spacing:2.656428pt;}
.ls9{letter-spacing:2.658591pt;}
.ls22{letter-spacing:3.287437pt;}
.lsf{letter-spacing:14.166642pt;}
.lse{letter-spacing:14.167786pt;}
.ls15{letter-spacing:17.706238pt;}
.ls7{letter-spacing:17.707976pt;}
.ls32{letter-spacing:17.711572pt;}
.ls20{letter-spacing:20.365258pt;}
.ls27{letter-spacing:20.367593pt;}
.ls1e{letter-spacing:20.545309pt;}
.ls33{letter-spacing:20.809842pt;}
.ls0{letter-spacing:20.812421pt;}
.ls6{letter-spacing:20.925476pt;}
.ls25{letter-spacing:21.476905pt;}
.ls1d{letter-spacing:22.676297pt;}
.ls26{letter-spacing:23.015925pt;}
.ls10{letter-spacing:23.469258pt;}
.ls16{letter-spacing:23.499976pt;}
.ls17{letter-spacing:23.686642pt;}
.ls5{letter-spacing:24.659643pt;}
.ls24{letter-spacing:24.764770pt;}
.ls1a{letter-spacing:28.070642pt;}
.ls3{letter-spacing:31.215625pt;}
.ls2{letter-spacing:31.880533pt;}
.lsc{letter-spacing:32.592428pt;}
.ls2c{letter-spacing:77.709258pt;}
.ls2a{letter-spacing:84.903925pt;}
.ls31{letter-spacing:85.671925pt;}
.ls30{letter-spacing:96.962591pt;}
.ls2d{letter-spacing:109.687925pt;}
.ls29{letter-spacing:114.679925pt;}
.ls2e{letter-spacing:124.594591pt;}
.ls2f{letter-spacing:140.903925pt;}
.ls21{letter-spacing:141.039572pt;}
.ls12{letter-spacing:146.077258pt;}
.ls2b{letter-spacing:155.810591pt;}
.ls13{letter-spacing:455.037258pt;}
.ls14{letter-spacing:573.309258pt;}
.ls11{letter-spacing:580.310323pt;}
.ws31{word-spacing:-63.761067pt;}
.ws22{word-spacing:-29.776418pt;}
.ws1d{word-spacing:-28.692333pt;}
.ws23{word-spacing:-21.997568pt;}
.ws1f{word-spacing:-21.041152pt;}
.ws1{word-spacing:-19.925333pt;}
.ws5{word-spacing:-17.343010pt;}
.wsb3{word-spacing:-15.940267pt;}
.ws21{word-spacing:-9.691682pt;}
.ws33{word-spacing:-6.723265pt;}
.wsa7{word-spacing:-6.694912pt;}
.wsc5{word-spacing:-3.443098pt;}
.wsf5{word-spacing:-3.379337pt;}
.wsbd{word-spacing:-3.251814pt;}
.ws4a{word-spacing:-3.188053pt;}
.wscd{word-spacing:-3.180513pt;}
.ws4b{word-spacing:-3.175180pt;}
.ws50{word-spacing:-3.124292pt;}
.ws7c{word-spacing:-3.060531pt;}
.wsea{word-spacing:-2.869248pt;}
.ws3f{word-spacing:-2.550443pt;}
.wsc3{word-spacing:-2.167876pt;}
.wsc2{word-spacing:-2.040354pt;}
.ws37{word-spacing:-1.976593pt;}
.ws5d{word-spacing:-1.849071pt;}
.ws67{word-spacing:-1.785310pt;}
.wse9{word-spacing:-1.594027pt;}
.ws7d{word-spacing:-1.530266pt;}
.wse8{word-spacing:-1.466505pt;}
.ws5e{word-spacing:-1.275221pt;}
.ws8{word-spacing:-1.147699pt;}
.wsf3{word-spacing:-1.083938pt;}
.ws99{word-spacing:-0.956416pt;}
.ws77{word-spacing:-0.828894pt;}
.ws3d{word-spacing:-0.765133pt;}
.wsd7{word-spacing:-0.510089pt;}
.ws2f{word-spacing:-0.446327pt;}
.ws8c{word-spacing:-0.382566pt;}
.ws59{word-spacing:-0.318805pt;}
.wse1{word-spacing:-0.255044pt;}
.ws32{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.063761pt;}
.ws38{word-spacing:-0.042507pt;}
.ws6{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.063761pt;}
.ws39{word-spacing:0.191283pt;}
.wsde{word-spacing:0.255044pt;}
.ws68{word-spacing:0.318805pt;}
.wsdb{word-spacing:0.350812pt;}
.ws48{word-spacing:0.382566pt;}
.ws5c{word-spacing:0.446327pt;}
.ws55{word-spacing:0.510089pt;}
.ws14{word-spacing:0.573850pt;}
.wsdf{word-spacing:0.637611pt;}
.ws5b{word-spacing:0.701372pt;}
.ws76{word-spacing:0.765133pt;}
.ws91{word-spacing:0.828894pt;}
.ws29{word-spacing:0.892655pt;}
.ws9d{word-spacing:0.956416pt;}
.ws3e{word-spacing:1.020177pt;}
.ws47{word-spacing:1.211460pt;}
.ws13{word-spacing:1.338982pt;}
.wsd9{word-spacing:1.402743pt;}
.ws4f{word-spacing:1.466505pt;}
.ws9{word-spacing:1.530266pt;}
.ws53{word-spacing:1.594027pt;}
.wsda{word-spacing:1.657788pt;}
.ws2b{word-spacing:1.721549pt;}
.ws44{word-spacing:1.785310pt;}
.ws6c{word-spacing:1.912832pt;}
.ws97{word-spacing:2.040354pt;}
.ws8d{word-spacing:2.167876pt;}
.wsb0{word-spacing:2.231637pt;}
.ws36{word-spacing:2.295398pt;}
.ws8f{word-spacing:2.359159pt;}
.ws5a{word-spacing:2.422921pt;}
.ws61{word-spacing:2.486682pt;}
.ws1b{word-spacing:2.550443pt;}
.ws89{word-spacing:2.614204pt;}
.wsab{word-spacing:2.677965pt;}
.ws92{word-spacing:2.741726pt;}
.ws46{word-spacing:2.869248pt;}
.ws5f{word-spacing:2.933009pt;}
.wsc6{word-spacing:2.996770pt;}
.ws41{word-spacing:3.060531pt;}
.ws2a{word-spacing:3.124292pt;}
.wsaf{word-spacing:3.188053pt;}
.ws2d{word-spacing:3.251814pt;}
.ws6d{word-spacing:3.315575pt;}
.wsd6{word-spacing:3.379337pt;}
.ws2{word-spacing:3.443098pt;}
.wsf4{word-spacing:3.470430pt;}
.wsf{word-spacing:3.506859pt;}
.ws6f{word-spacing:3.570620pt;}
.ws16{word-spacing:3.634381pt;}
.wsa2{word-spacing:3.698142pt;}
.ws85{word-spacing:3.761903pt;}
.ws6b{word-spacing:3.825664pt;}
.ws69{word-spacing:3.889425pt;}
.wsb4{word-spacing:3.928864pt;}
.ws27{word-spacing:3.953186pt;}
.ws0{word-spacing:3.985067pt;}
.ws2c{word-spacing:4.016947pt;}
.ws90{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.ws58{word-spacing:4.144469pt;}
.wsd8{word-spacing:4.208230pt;}
.ws3c{word-spacing:4.271991pt;}
.wsa0{word-spacing:4.335753pt;}
.ws12{word-spacing:4.399514pt;}
.ws54{word-spacing:4.463275pt;}
.ws35{word-spacing:4.590797pt;}
.wsa9{word-spacing:4.654558pt;}
.ws6e{word-spacing:4.718319pt;}
.ws63{word-spacing:4.782067pt;}
.wsf7{word-spacing:4.782080pt;}
.ws1c{word-spacing:4.845841pt;}
.ws79{word-spacing:4.909602pt;}
.ws7f{word-spacing:4.973363pt;}
.ws7b{word-spacing:5.100885pt;}
.ws9e{word-spacing:5.228407pt;}
.ws60{word-spacing:5.292169pt;}
.wsac{word-spacing:5.355930pt;}
.ws7a{word-spacing:5.419691pt;}
.ws17{word-spacing:5.483452pt;}
.wsbc{word-spacing:5.547213pt;}
.ws78{word-spacing:5.610974pt;}
.wsb8{word-spacing:5.674735pt;}
.ws4{word-spacing:5.738467pt;}
.ws9a{word-spacing:5.738496pt;}
.ws57{word-spacing:5.802257pt;}
.wsbb{word-spacing:5.866018pt;}
.ws94{word-spacing:5.929779pt;}
.ws1a{word-spacing:6.057301pt;}
.ws82{word-spacing:6.119357pt;}
.ws80{word-spacing:6.121062pt;}
.ws75{word-spacing:6.184823pt;}
.wsb6{word-spacing:6.248585pt;}
.ws7e{word-spacing:6.312346pt;}
.ws28{word-spacing:6.376107pt;}
.ws4e{word-spacing:6.439868pt;}
.ws3a{word-spacing:6.567390pt;}
.wsc1{word-spacing:6.631151pt;}
.ws88{word-spacing:6.694912pt;}
.ws73{word-spacing:6.886195pt;}
.wsa1{word-spacing:6.949956pt;}
.wsaa{word-spacing:7.013717pt;}
.wsd5{word-spacing:7.077478pt;}
.ws8a{word-spacing:7.268762pt;}
.wsa3{word-spacing:7.332523pt;}
.wse0{word-spacing:7.396284pt;}
.ws30{word-spacing:7.460045pt;}
.ws8e{word-spacing:7.523806pt;}
.wsf8{word-spacing:7.587567pt;}
.ws3b{word-spacing:7.651328pt;}
.wsa4{word-spacing:7.715089pt;}
.ws43{word-spacing:7.778850pt;}
.wsae{word-spacing:7.906372pt;}
.ws26{word-spacing:7.970133pt;}
.wsee{word-spacing:8.033894pt;}
.ws66{word-spacing:8.097655pt;}
.ws45{word-spacing:8.161417pt;}
.ws19{word-spacing:8.225178pt;}
.ws84{word-spacing:8.288939pt;}
.ws70{word-spacing:8.352700pt;}
.wse5{word-spacing:8.543983pt;}
.ws71{word-spacing:8.607744pt;}
.ws9c{word-spacing:8.671505pt;}
.wsa5{word-spacing:8.926549pt;}
.ws72{word-spacing:8.990310pt;}
.wsb1{word-spacing:9.117833pt;}
.ws15{word-spacing:9.181594pt;}
.wsd{word-spacing:9.245355pt;}
.ws95{word-spacing:9.372877pt;}
.ws74{word-spacing:9.436638pt;}
.ws9b{word-spacing:9.564160pt;}
.ws56{word-spacing:9.627921pt;}
.wsa8{word-spacing:9.755443pt;}
.ws98{word-spacing:9.882965pt;}
.ws65{word-spacing:9.946726pt;}
.ws86{word-spacing:10.010487pt;}
.ws42{word-spacing:10.074249pt;}
.wsb5{word-spacing:10.108588pt;}
.ws18{word-spacing:10.201771pt;}
.ws25{word-spacing:10.265532pt;}
.wsef{word-spacing:10.313380pt;}
.wseb{word-spacing:10.324610pt;}
.wsc0{word-spacing:10.329293pt;}
.wse6{word-spacing:10.333718pt;}
.ws8b{word-spacing:10.393054pt;}
.wsb{word-spacing:10.396276pt;}
.ws4d{word-spacing:10.456815pt;}
.wsec{word-spacing:10.520576pt;}
.wsa6{word-spacing:10.711859pt;}
.ws40{word-spacing:10.775620pt;}
.wsb2{word-spacing:10.966903pt;}
.ws62{word-spacing:11.094426pt;}
.ws96{word-spacing:11.221948pt;}
.wsbe{word-spacing:11.349470pt;}
.wsdd{word-spacing:11.413231pt;}
.ws93{word-spacing:11.987081pt;}
.ws6a{word-spacing:12.178364pt;}
.wse2{word-spacing:12.369647pt;}
.wse7{word-spacing:12.688452pt;}
.wsed{word-spacing:12.879735pt;}
.ws2e{word-spacing:13.071019pt;}
.ws9f{word-spacing:13.134780pt;}
.wse3{word-spacing:13.198541pt;}
.ws87{word-spacing:13.389824pt;}
.wsbf{word-spacing:13.581107pt;}
.wsf0{word-spacing:13.708629pt;}
.wsf9{word-spacing:13.772390pt;}
.ws64{word-spacing:14.218718pt;}
.ws20{word-spacing:14.537523pt;}
.wse4{word-spacing:15.366417pt;}
.wsf6{word-spacing:16.259072pt;}
.wsf1{word-spacing:16.641638pt;}
.wsfa{word-spacing:16.769161pt;}
.ws49{word-spacing:16.803315pt;}
.wsad{word-spacing:16.832922pt;}
.wsf2{word-spacing:17.980621pt;}
.wsc4{word-spacing:20.327179pt;}
.ws7{word-spacing:20.722347pt;}
.wsba{word-spacing:20.736125pt;}
.ws81{word-spacing:23.380451pt;}
.wsc7{word-spacing:23.428103pt;}
.ws83{word-spacing:32.773188pt;}
.ws1e{word-spacing:37.842193pt;}
.ws11{word-spacing:43.835733pt;}
.wscb{word-spacing:46.418057pt;}
.wsd3{word-spacing:58.468898pt;}
.wsdc{word-spacing:62.166867pt;}
.wsd4{word-spacing:66.373342pt;}
.wsc9{word-spacing:66.375179pt;}
.ws24{word-spacing:74.600067pt;}
.wsd0{word-spacing:80.657749pt;}
.wsce{word-spacing:89.648060pt;}
.wscf{word-spacing:90.384311pt;}
.wsd2{word-spacing:99.829342pt;}
.wsca{word-spacing:100.614963pt;}
.wsd1{word-spacing:113.258675pt;}
.wscc{word-spacing:121.603147pt;}
.ws51{word-spacing:123.450675pt;}
.ws4c{word-spacing:141.099916pt;}
.wsc{word-spacing:368.281216pt;}
.wse{word-spacing:374.293885pt;}
.wsa{word-spacing:422.943578pt;}
.ws10{word-spacing:457.431939pt;}
.ws52{word-spacing:534.730675pt;}
.wsc8{word-spacing:924.025378pt;}
.wsb9{word-spacing:1107.737745pt;}
._2b{margin-left:-33.602082pt;}
._23{margin-left:-31.880533pt;}
._26{margin-left:-30.158985pt;}
._59{margin-left:-28.628719pt;}
._5b{margin-left:-24.229205pt;}
._25{margin-left:-11.094426pt;}
._7{margin-left:-9.500340pt;}
._5a{margin-left:-6.949956pt;}
._e{margin-left:-5.993540pt;}
._12{margin-left:-4.909602pt;}
._1{margin-left:-4.016947pt;}
._3c{margin-left:-2.869248pt;}
._0{margin-left:-1.976593pt;}
._d{margin-left:-1.083938pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._47{width:4.016947pt;}
._4b{width:10.839381pt;}
._57{width:13.836151pt;}
._3e{width:15.047612pt;}
._3d{width:16.322833pt;}
._39{width:17.725577pt;}
._2e{width:18.681993pt;}
._5d{width:19.574647pt;}
._29{width:20.849869pt;}
._58{width:21.742524pt;}
._37{width:22.826462pt;}
._3a{width:24.066487pt;}
._38{width:25.504427pt;}
._1e{width:26.652126pt;}
._5{width:28.054869pt;}
._1d{width:29.585135pt;}
._4a{width:30.605312pt;}
._24{width:31.944294pt;}
._4{width:33.283184pt;}
._1c{width:34.453945pt;}
._3f{width:36.790135pt;}
._4c{width:37.746551pt;}
._48{width:38.639206pt;}
._2f{width:39.531861pt;}
._3b{width:40.488277pt;}
._35{width:41.891021pt;}
._30{width:43.740092pt;}
._2d{width:45.907968pt;}
._4e{width:47.119428pt;}
._55{width:48.522172pt;}
._5c{width:50.116198pt;}
._31{width:51.980727pt;}
._56{width:56.811110pt;}
._20{width:57.767526pt;}
._8{width:64.000654pt;}
._2c{width:64.908766pt;}
._f{width:67.641411pt;}
._28{width:71.412395pt;}
._c{width:74.718889pt;}
._54{width:77.962759pt;}
._46{width:86.077200pt;}
._52{width:89.256262pt;}
._41{width:92.389786pt;}
._4f{width:94.066761pt;}
._27{width:95.386556pt;}
._36{width:103.292400pt;}
._10{width:105.993692pt;}
._53{width:112.407905pt;}
._42{width:117.447885pt;}
._2a{width:127.267089pt;}
._9{width:137.874225pt;}
._44{width:152.297018pt;}
._51{width:154.620587pt;}
._16{width:164.455248pt;}
._15{width:179.869969pt;}
._b{width:193.958460pt;}
._50{width:222.675052pt;}
._13{width:225.395371pt;}
._40{width:269.900595pt;}
._43{width:276.276702pt;}
._11{width:299.298118pt;}
._19{width:347.051486pt;}
._a{width:396.138426pt;}
._18{width:420.392170pt;}
._1a{width:470.317085pt;}
._4d{width:511.230671pt;}
._45{width:578.121591pt;}
._1b{width:628.811639pt;}
._17{width:644.576080pt;}
._49{width:652.664713pt;}
._6{width:683.880713pt;}
._14{width:1103.959108pt;}
._21{width:1127.423181pt;}
._32{width:1186.657212pt;}
._22{width:1447.057408pt;}
._33{width:1804.884514pt;}
._1f{width:1882.800538pt;}
._34{width:1898.358238pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:98.054667pt;}
.y134{bottom:100.325333pt;}
.yc9{bottom:101.662667pt;}
.y1d7{bottom:104.700000pt;}
.y184{bottom:107.809333pt;}
.y159{bottom:110.646667pt;}
.y123{bottom:113.048000pt;}
.y50{bottom:117.316000pt;}
.yee{bottom:117.878667pt;}
.y77{bottom:119.074667pt;}
.y133{bottom:119.586667pt;}
.yc8{bottom:120.922667pt;}
.y9e{bottom:123.801333pt;}
.y1d6{bottom:123.960000pt;}
.y183{bottom:127.070667pt;}
.y10c{bottom:128.118667pt;}
.y122{bottom:132.309333pt;}
.yc{bottom:134.585333pt;}
.y16b{bottom:135.213333pt;}
.y4f{bottom:136.577333pt;}
.yed{bottom:137.140000pt;}
.y76{bottom:138.336000pt;}
.y158{bottom:138.514667pt;}
.y132{bottom:138.848000pt;}
.yc7{bottom:140.184000pt;}
.y9d{bottom:143.062667pt;}
.y1d5{bottom:143.221333pt;}
.y1b2{bottom:144.048000pt;}
.y182{bottom:146.332000pt;}
.y10b{bottom:147.380000pt;}
.y121{bottom:151.569333pt;}
.yb{bottom:153.846667pt;}
.y16a{bottom:154.474667pt;}
.y4e{bottom:155.838667pt;}
.yec{bottom:156.401333pt;}
.y75{bottom:157.597333pt;}
.y157{bottom:157.776000pt;}
.y131{bottom:158.108000pt;}
.yc6{bottom:159.445333pt;}
.y9c{bottom:162.324000pt;}
.y1d4{bottom:162.482667pt;}
.y181{bottom:165.593333pt;}
.y10a{bottom:166.640000pt;}
.y120{bottom:170.830667pt;}
.y169{bottom:173.736000pt;}
.yeb{bottom:175.662667pt;}
.y1b1{bottom:176.592000pt;}
.y74{bottom:176.858667pt;}
.y156{bottom:177.037333pt;}
.y130{bottom:177.369333pt;}
.yc5{bottom:178.706667pt;}
.y9b{bottom:181.585333pt;}
.y1d3{bottom:181.744000pt;}
.y180{bottom:184.854667pt;}
.y109{bottom:185.901333pt;}
.y4d{bottom:189.888000pt;}
.y11f{bottom:190.092000pt;}
.y168{bottom:192.997333pt;}
.yea{bottom:194.924000pt;}
.y1b0{bottom:195.853333pt;}
.y73{bottom:196.120000pt;}
.y155{bottom:196.298667pt;}
.y12f{bottom:196.630667pt;}
.yc4{bottom:197.968000pt;}
.y9a{bottom:200.845333pt;}
.y1d2{bottom:201.005333pt;}
.y17f{bottom:204.116000pt;}
.y108{bottom:205.162667pt;}
.y4c{bottom:209.149333pt;}
.y11e{bottom:209.353333pt;}
.y167{bottom:212.258667pt;}
.ye9{bottom:214.184000pt;}
.y1af{bottom:215.114667pt;}
.y72{bottom:215.381333pt;}
.y154{bottom:215.560000pt;}
.yc3{bottom:217.229333pt;}
.y99{bottom:220.106667pt;}
.y17e{bottom:223.376000pt;}
.y107{bottom:224.424000pt;}
.y12e{bottom:226.186667pt;}
.y4b{bottom:228.409333pt;}
.y11d{bottom:228.614667pt;}
.y1d1{bottom:230.893333pt;}
.y166{bottom:231.520000pt;}
.ye8{bottom:233.445333pt;}
.y1ae{bottom:234.376000pt;}
.y71{bottom:234.641333pt;}
.y153{bottom:234.821333pt;}
.yc2{bottom:236.489333pt;}
.y98{bottom:239.368000pt;}
.y17d{bottom:242.637333pt;}
.y106{bottom:243.685333pt;}
.y4a{bottom:247.670667pt;}
.y11c{bottom:247.876000pt;}
.y1d0{bottom:250.154667pt;}
.ye7{bottom:252.706667pt;}
.y70{bottom:253.902667pt;}
.y152{bottom:254.081333pt;}
.yc1{bottom:255.750667pt;}
.y97{bottom:258.629333pt;}
.y17c{bottom:261.898667pt;}
.y105{bottom:262.946667pt;}
.y1ad{bottom:266.920000pt;}
.y49{bottom:266.932000pt;}
.y11b{bottom:267.136000pt;}
.y1cf{bottom:269.416000pt;}
.ye6{bottom:271.968000pt;}
.y12d{bottom:272.402667pt;}
.y151{bottom:273.342667pt;}
.yc0{bottom:275.012000pt;}
.y6f{bottom:276.264000pt;}
.y96{bottom:277.890667pt;}
.y17b{bottom:281.160000pt;}
.y104{bottom:282.206667pt;}
.y1ac{bottom:286.181333pt;}
.y11a{bottom:286.397333pt;}
.y6e{bottom:287.197333pt;}
.y1ce{bottom:288.677333pt;}
.ye5{bottom:291.229333pt;}
.y12c{bottom:291.662667pt;}
.y150{bottom:292.604000pt;}
.ybf{bottom:294.273333pt;}
.y17a{bottom:300.421333pt;}
.y103{bottom:301.468000pt;}
.y48{bottom:304.865333pt;}
.y1ab{bottom:305.442667pt;}
.y119{bottom:305.658667pt;}
.y95{bottom:307.446667pt;}
.y1cd{bottom:307.937333pt;}
.ye4{bottom:310.490667pt;}
.y14f{bottom:311.865333pt;}
.ybe{bottom:313.534667pt;}
.y179{bottom:319.682667pt;}
.y47{bottom:324.125333pt;}
.y118{bottom:324.920000pt;}
.ye3{bottom:329.750667pt;}
.y6d{bottom:330.526667pt;}
.y102{bottom:331.024000pt;}
.y14e{bottom:331.126667pt;}
.y12b{bottom:331.757333pt;}
.ybd{bottom:332.796000pt;}
.y1cc{bottom:337.826667pt;}
.y1aa{bottom:337.986667pt;}
.y178{bottom:338.942667pt;}
.y46{bottom:343.386667pt;}
.y117{bottom:344.181333pt;}
.ye2{bottom:349.012000pt;}
.y6c{bottom:349.786667pt;}
.y14d{bottom:350.388000pt;}
.y12a{bottom:351.018667pt;}
.ybc{bottom:352.056000pt;}
.y94{bottom:353.661333pt;}
.y1cb{bottom:357.088000pt;}
.y1a9{bottom:357.248000pt;}
.y177{bottom:358.204000pt;}
.y45{bottom:362.648000pt;}
.y116{bottom:363.442667pt;}
.ye1{bottom:368.273333pt;}
.y6b{bottom:369.048000pt;}
.y14c{bottom:369.648000pt;}
.ybb{bottom:371.317333pt;}
.y93{bottom:372.922667pt;}
.y1ca{bottom:376.348000pt;}
.y1a8{bottom:376.509333pt;}
.y101{bottom:377.240000pt;}
.y176{bottom:377.465333pt;}
.y44{bottom:381.909333pt;}
.y129{bottom:382.566667pt;}
.y115{bottom:382.702667pt;}
.ye0{bottom:387.534667pt;}
.y6a{bottom:388.309333pt;}
.y14b{bottom:388.909333pt;}
.yba{bottom:390.578667pt;}
.y92{bottom:392.184000pt;}
.y1c9{bottom:395.609333pt;}
.y100{bottom:396.501333pt;}
.y175{bottom:396.726667pt;}
.ydf{bottom:406.796000pt;}
.y69{bottom:407.570667pt;}
.y14a{bottom:408.170667pt;}
.y1a7{bottom:409.053333pt;}
.yb9{bottom:409.840000pt;}
.y91{bottom:411.445333pt;}
.yff{bottom:415.761333pt;}
.y174{bottom:415.988000pt;}
.y114{bottom:422.620000pt;}
.y1c8{bottom:425.498667pt;}
.yde{bottom:426.057333pt;}
.y68{bottom:426.832000pt;}
.y149{bottom:427.432000pt;}
.y1a6{bottom:428.314667pt;}
.yb8{bottom:429.101333pt;}
.y90{bottom:430.706667pt;}
.ya{bottom:434.301333pt;}
.yfe{bottom:435.022667pt;}
.y173{bottom:435.248000pt;}
.y113{bottom:441.881333pt;}
.y1c7{bottom:444.760000pt;}
.ydd{bottom:445.317333pt;}
.y67{bottom:446.093333pt;}
.y148{bottom:446.693333pt;}
.y1a5{bottom:447.576000pt;}
.yb7{bottom:448.361333pt;}
.y8f{bottom:449.966667pt;}
.yfd{bottom:454.284000pt;}
.y172{bottom:454.509333pt;}
.y112{bottom:461.142667pt;}
.ydc{bottom:464.578667pt;}
.y66{bottom:465.353333pt;}
.y147{bottom:465.953333pt;}
.yb6{bottom:467.622667pt;}
.y8e{bottom:469.228000pt;}
.yfc{bottom:473.545333pt;}
.y171{bottom:473.770667pt;}
.y1c6{bottom:474.648000pt;}
.y9{bottom:475.480000pt;}
.y1a4{bottom:480.120000pt;}
.ydb{bottom:483.840000pt;}
.y65{bottom:484.614667pt;}
.yb5{bottom:486.884000pt;}
.y8d{bottom:488.489333pt;}
.yfb{bottom:492.806667pt;}
.y1c5{bottom:493.909333pt;}
.y146{bottom:496.537333pt;}
.y1a3{bottom:499.381333pt;}
.y190{bottom:502.746667pt;}
.yda{bottom:503.101333pt;}
.y170{bottom:503.326667pt;}
.y64{bottom:503.876000pt;}
.y8{bottom:504.704000pt;}
.y145{bottom:507.472000pt;}
.y8c{bottom:507.750667pt;}
.yfa{bottom:512.068000pt;}
.y1c4{bottom:513.170667pt;}
.yb4{bottom:516.440000pt;}
.y1a2{bottom:518.642667pt;}
.y18f{bottom:522.008000pt;}
.y63{bottom:523.137333pt;}
.y8b{bottom:527.012000pt;}
.y42{bottom:532.258667pt;}
.yd9{bottom:532.657333pt;}
.y7{bottom:533.928000pt;}
.y1a1{bottom:537.904000pt;}
.y18e{bottom:541.269333pt;}
.yf9{bottom:541.622667pt;}
.y1c3{bottom:543.058667pt;}
.y144{bottom:544.130667pt;}
.y8a{bottom:546.273333pt;}
.y16f{bottom:551.612000pt;}
.yb3{bottom:558.006667pt;}
.y62{bottom:559.666667pt;}
.y18d{bottom:560.530667pt;}
.y1c2{bottom:562.320000pt;}
.y6{bottom:563.150667pt;}
.y143{bottom:563.392000pt;}
.y89{bottom:565.533333pt;}
.y41{bottom:567.128000pt;}
.y1a0{bottom:570.448000pt;}
.y1f{bottom:570.578667pt;}
.y16e{bottom:570.873333pt;}
.yd8{bottom:574.222667pt;}
.yb2{bottom:577.268000pt;}
.y61{bottom:578.928000pt;}
.y18c{bottom:579.790667pt;}
.y1c1{bottom:581.581333pt;}
.yf8{bottom:583.189333pt;}
.y88{bottom:584.794667pt;}
.y19f{bottom:589.709333pt;}
.y1e{bottom:589.838667pt;}
.y16d{bottom:590.134667pt;}
.yd7{bottom:593.484000pt;}
.y142{bottom:594.861333pt;}
.yb1{bottom:596.528000pt;}
.y60{bottom:598.189333pt;}
.y18b{bottom:599.052000pt;}
.y40{bottom:601.997333pt;}
.yf7{bottom:602.450667pt;}
.y87{bottom:604.056000pt;}
.y141{bottom:605.796000pt;}
.y19e{bottom:608.970667pt;}
.y16c{bottom:609.396000pt;}
.y1d{bottom:609.632000pt;}
.y1c0{bottom:611.469333pt;}
.yd6{bottom:612.745333pt;}
.yb0{bottom:615.789333pt;}
.y18a{bottom:618.313333pt;}
.y3f{bottom:621.258667pt;}
.yf6{bottom:621.712000pt;}
.y86{bottom:623.317333pt;}
.y19d{bottom:628.232000pt;}
.y1c{bottom:629.424000pt;}
.y5f{bottom:630.733333pt;}
.yd5{bottom:632.006667pt;}
.yaf{bottom:635.050667pt;}
.y128{bottom:637.537333pt;}
.y189{bottom:637.574667pt;}
.yf5{bottom:640.973333pt;}
.y1bf{bottom:641.357333pt;}
.y140{bottom:641.569333pt;}
.y85{bottom:642.578667pt;}
.y5{bottom:642.852000pt;}
.y19c{bottom:647.493333pt;}
.y1b{bottom:649.216000pt;}
.y5e{bottom:649.994667pt;}
.yd4{bottom:651.268000pt;}
.yae{bottom:654.312000pt;}
.y3e{bottom:656.128000pt;}
.y127{bottom:656.798667pt;}
.y188{bottom:656.836000pt;}
.y111{bottom:656.913333pt;}
.yf4{bottom:660.234667pt;}
.y1be{bottom:660.618667pt;}
.y13f{bottom:660.830667pt;}
.y84{bottom:661.838667pt;}
.y19b{bottom:666.754667pt;}
.y4{bottom:666.762667pt;}
.y1a{bottom:669.009333pt;}
.y5d{bottom:669.256000pt;}
.yd3{bottom:670.529333pt;}
.yad{bottom:673.573333pt;}
.y3d{bottom:675.388000pt;}
.y187{bottom:676.097333pt;}
.yf3{bottom:679.494667pt;}
.y1bd{bottom:679.880000pt;}
.y13e{bottom:680.092000pt;}
.y83{bottom:681.100000pt;}
.y19{bottom:688.801333pt;}
.yd2{bottom:689.789333pt;}
.y165{bottom:692.670667pt;}
.yac{bottom:692.834667pt;}
.y3c{bottom:694.649333pt;}
.y186{bottom:695.357333pt;}
.yf2{bottom:698.756000pt;}
.y1bc{bottom:699.141333pt;}
.y19a{bottom:699.298667pt;}
.y82{bottom:700.361333pt;}
.y5c{bottom:701.800000pt;}
.y110{bottom:703.129333pt;}
.y126{bottom:705.084000pt;}
.y13d{bottom:706.350667pt;}
.y31{bottom:706.604000pt;}
.y18{bottom:708.062667pt;}
.yd1{bottom:709.050667pt;}
.y164{bottom:711.932000pt;}
.yab{bottom:712.094667pt;}
.y3b{bottom:713.910667pt;}
.yf1{bottom:718.017333pt;}
.y199{bottom:718.560000pt;}
.y81{bottom:719.622667pt;}
.y5b{bottom:721.061333pt;}
.y10f{bottom:722.389333pt;}
.y125{bottom:724.345333pt;}
.y30{bottom:725.865333pt;}
.y17{bottom:727.854667pt;}
.y1bb{bottom:729.029333pt;}
.y185{bottom:730.404000pt;}
.y163{bottom:731.192000pt;}
.yaa{bottom:731.356000pt;}
.y13c{bottom:731.486667pt;}
.y3a{bottom:733.172000pt;}
.yf0{bottom:737.278667pt;}
.y198{bottom:737.821333pt;}
.yd0{bottom:738.606667pt;}
.y80{bottom:738.884000pt;}
.y5a{bottom:740.322667pt;}
.y10e{bottom:741.650667pt;}
.y2f{bottom:745.126667pt;}
.y16{bottom:747.116000pt;}
.y1ba{bottom:748.290667pt;}
.y24{bottom:749.241333pt;}
.y162{bottom:750.453333pt;}
.ya9{bottom:750.617333pt;}
.y13b{bottom:750.748000pt;}
.y39{bottom:752.433333pt;}
.y124{bottom:755.893333pt;}
.y197{bottom:757.081333pt;}
.y10d{bottom:760.912000pt;}
.y2e{bottom:764.388000pt;}
.yef{bottom:766.834667pt;}
.y15{bottom:766.908000pt;}
.y1b9{bottom:767.552000pt;}
.y23{bottom:768.502667pt;}
.ya8{bottom:769.878667pt;}
.y13a{bottom:770.009333pt;}
.y38{bottom:771.694667pt;}
.y59{bottom:772.866667pt;}
.y7f{bottom:773.930667pt;}
.y196{bottom:776.342667pt;}
.ycf{bottom:780.173333pt;}
.y2d{bottom:783.649333pt;}
.y14{bottom:786.169333pt;}
.y22{bottom:787.764000pt;}
.ya7{bottom:789.140000pt;}
.y139{bottom:789.270667pt;}
.y37{bottom:790.954667pt;}
.y58{bottom:792.128000pt;}
.y195{bottom:795.604000pt;}
.y1b8{bottom:797.440000pt;}
.yce{bottom:799.434667pt;}
.y2c{bottom:802.910667pt;}
.y161{bottom:803.454667pt;}
.y13{bottom:805.961333pt;}
.y21{bottom:807.024000pt;}
.y43{bottom:807.769333pt;}
.ya6{bottom:808.400000pt;}
.y138{bottom:808.530667pt;}
.y36{bottom:810.216000pt;}
.y1b7{bottom:816.701333pt;}
.ycd{bottom:818.696000pt;}
.y2b{bottom:822.170667pt;}
.y7e{bottom:822.216000pt;}
.y160{bottom:822.716000pt;}
.y57{bottom:824.673333pt;}
.y12{bottom:825.754667pt;}
.y20{bottom:826.285333pt;}
.ya5{bottom:827.661333pt;}
.y137{bottom:827.792000pt;}
.y194{bottom:828.149333pt;}
.y35{bottom:829.477333pt;}
.ycc{bottom:837.956000pt;}
.y2a{bottom:841.432000pt;}
.y7d{bottom:841.477333pt;}
.y15f{bottom:842.508000pt;}
.y56{bottom:843.934667pt;}
.y11{bottom:845.546667pt;}
.y1b6{bottom:846.590667pt;}
.ya4{bottom:846.922667pt;}
.y136{bottom:847.053333pt;}
.y193{bottom:847.409333pt;}
.y34{bottom:848.738667pt;}
.ycb{bottom:857.217333pt;}
.y29{bottom:860.693333pt;}
.y15e{bottom:861.769333pt;}
.y55{bottom:863.194667pt;}
.y10{bottom:864.808000pt;}
.y1b5{bottom:865.850667pt;}
.ya3{bottom:866.184000pt;}
.y192{bottom:866.670667pt;}
.y33{bottom:868.000000pt;}
.yca{bottom:876.478667pt;}
.y28{bottom:879.954667pt;}
.y15d{bottom:881.030667pt;}
.y135{bottom:882.100000pt;}
.yf{bottom:884.069333pt;}
.y1b4{bottom:885.112000pt;}
.ya2{bottom:885.445333pt;}
.y191{bottom:885.932000pt;}
.y7c{bottom:894.478667pt;}
.y54{bottom:895.740000pt;}
.y27{bottom:899.216000pt;}
.y15c{bottom:900.292000pt;}
.y32{bottom:902.869333pt;}
.ye{bottom:903.861333pt;}
.y1b3{bottom:904.373333pt;}
.ya1{bottom:904.706667pt;}
.y7b{bottom:913.738667pt;}
.y53{bottom:915.001333pt;}
.y26{bottom:918.477333pt;}
.y15b{bottom:920.084000pt;}
.ya0{bottom:923.966667pt;}
.y52{bottom:928.765333pt;}
.y7a{bottom:933.000000pt;}
.y3{bottom:934.261333pt;}
.y25{bottom:937.737333pt;}
.y15a{bottom:939.345333pt;}
.y9f{bottom:943.228000pt;}
.y79{bottom:952.261333pt;}
.y2{bottom:953.522667pt;}
.y78{bottom:972.053333pt;}
.y1{bottom:972.784000pt;}
.yd{bottom:1015.450667pt;}
.hc{height:39.850400pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.h9{height:53.486141pt;}
.h6{height:53.491474pt;}
.h7{height:57.064418pt;}
.h3{height:57.384800pt;}
.h4{height:68.861600pt;}
.h8{height:69.810133pt;}
.ha{height:90.956800pt;}
.hb{height:91.554133pt;}
.hd{height:91.559467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.x7{left:99.506667pt;}
.x1c{left:103.970667pt;}
.x10{left:106.293333pt;}
.x8{left:115.938667pt;}
.x11{left:119.412000pt;}
.xe{left:120.613333pt;}
.x20{left:122.260000pt;}
.x21{left:128.082667pt;}
.x1f{left:130.064000pt;}
.x13{left:135.020000pt;}
.x1e{left:137.868000pt;}
.x12{left:155.310667pt;}
.xa{left:160.384000pt;}
.x3{left:194.281333pt;}
.xc{left:196.685333pt;}
.x4{left:202.642667pt;}
.x1{left:206.616000pt;}
.x18{left:210.908000pt;}
.x2{left:223.878667pt;}
.xb{left:231.038667pt;}
.x17{left:241.218667pt;}
.x9{left:256.480000pt;}
.x15{left:261.021333pt;}
.x1d{left:262.010667pt;}
.x1a{left:281.170667pt;}
.xf{left:295.134667pt;}
.x1b{left:351.293333pt;}
.x5{left:354.709333pt;}
.x16{left:356.196000pt;}
.x6{left:364.000000pt;}
.x19{left:457.985333pt;}
.x14{left:621.670667pt;}
}




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