
    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_494e1265a0838a07f97df9ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_1a22dc47dd2e7975aa35abf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_61459b67b3acf2ae3359b4b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.887091;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_a0c9ae65b7fb9ef012413a9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f9d0067909272048533969d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_c43894f0279086c643f6bb99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_31db7658c5d262c3eaab6300.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_9e7f19f267ac49cfc12ad45e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;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_00c02d29d9895b20a7ea2887.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8e427f26c053e38139ba28bd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5e853eb0074c48ac5eb30f99.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f99cf22e4b7ff01a4df7c1fd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0b5a2246c8f2d417055ae44c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.674000;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_7f916c41c8928e8d8f5c79d9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.704000;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_40c2b2d586155664d44d90a6.woff2')format("woff");}.fff{font-family:fff;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9d9d201513b4fdb0604b7840.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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_34284de36daee6a6c9158549.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v7{vertical-align:-17.718000px;}
.v3{vertical-align:-14.766000px;}
.v1{vertical-align:-13.290000px;}
.va{vertical-align:-2.670000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.766000px;}
.v2{vertical-align:19.530000px;}
.v4{vertical-align:21.696000px;}
.v9{vertical-align:26.040000px;}
.v5{vertical-align:31.206000px;}
.v6{vertical-align:46.392000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000300px;}
.ls1c{letter-spacing:0.000374px;}
.ls2e{letter-spacing:0.002218px;}
.ls30{letter-spacing:0.003292px;}
.ls5{letter-spacing:0.003607px;}
.ls38{letter-spacing:0.004200px;}
.ls13{letter-spacing:0.005039px;}
.ls0{letter-spacing:1.344163px;}
.ls6{letter-spacing:1.493039px;}
.ls8{letter-spacing:1.499039px;}
.ls2c{letter-spacing:1.790218px;}
.lse{letter-spacing:2.174747px;}
.ls11{letter-spacing:2.988600px;}
.ls21{letter-spacing:2.994600px;}
.lsf{letter-spacing:4.360446px;}
.ls27{letter-spacing:5.232192px;}
.ls36{letter-spacing:5.976866px;}
.ls35{letter-spacing:5.986110px;}
.ls18{letter-spacing:8.010289px;}
.ls25{letter-spacing:8.339970px;}
.ls22{letter-spacing:8.345970px;}
.ls32{letter-spacing:8.968110px;}
.ls29{letter-spacing:13.270183px;}
.ls3{letter-spacing:15.224947px;}
.ls28{letter-spacing:15.924326px;}
.lsd{letter-spacing:16.602583px;}
.ls1a{letter-spacing:16.604400px;}
.ls2{letter-spacing:17.179200px;}
.ls1{letter-spacing:17.935200px;}
.ls39{letter-spacing:19.589447px;}
.ls10{letter-spacing:19.596600px;}
.ls17{letter-spacing:19.904383px;}
.ls23{letter-spacing:19.905292px;}
.ls1b{letter-spacing:19.906200px;}
.ls1e{letter-spacing:19.908300px;}
.ls37{letter-spacing:19.910383px;}
.ls9{letter-spacing:20.058600px;}
.ls1f{letter-spacing:21.401039px;}
.ls12{letter-spacing:22.890600px;}
.ls33{letter-spacing:22.893980px;}
.ls1d{letter-spacing:22.896600px;}
.lsa{letter-spacing:23.172600px;}
.lsc{letter-spacing:24.268446px;}
.lsb{letter-spacing:24.389039px;}
.ls20{letter-spacing:24.947970px;}
.ls34{letter-spacing:25.582110px;}
.ls15{letter-spacing:25.884600px;}
.ls19{letter-spacing:27.912289px;}
.ls26{letter-spacing:28.253970px;}
.ls31{letter-spacing:28.751050px;}
.ls2b{letter-spacing:29.870383px;}
.ls2f{letter-spacing:29.885700px;}
.ls2d{letter-spacing:29.891700px;}
.ls14{letter-spacing:29.892583px;}
.ls7{letter-spacing:31.320600px;}
.ls24{letter-spacing:32.118289px;}
.ls2a{letter-spacing:36.514838px;}
.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;}
}
.ws83{word-spacing:-30.007351px;}
.ws82{word-spacing:-25.002115px;}
.ws18{word-spacing:-21.934896px;}
.ws1e{word-spacing:-16.737168px;}
.ws9{word-spacing:-15.063552px;}
.ws34{word-spacing:-11.715984px;}
.wsa{word-spacing:-10.042368px;}
.ws5e{word-spacing:-6.814418px;}
.ws84{word-spacing:-6.754643px;}
.ws6{word-spacing:-2.582323px;}
.ws56{word-spacing:-2.386679px;}
.ws50{word-spacing:-1.972595px;}
.ws78{word-spacing:-1.853044px;}
.ws9e{word-spacing:-1.374839px;}
.ws45{word-spacing:-1.135736px;}
.ws12{word-spacing:-0.914573px;}
.ws2c{word-spacing:-0.896634px;}
.ws13{word-spacing:-0.860774px;}
.ws29{word-spacing:-0.836858px;}
.wsb0{word-spacing:-0.657532px;}
.ws5c{word-spacing:-0.358654px;}
.ws71{word-spacing:-0.215194px;}
.ws3b{word-spacing:-0.179327px;}
.wsf{word-spacing:-0.161395px;}
.ws6f{word-spacing:-0.143462px;}
.ws67{word-spacing:-0.133211px;}
.ws39{word-spacing:-0.119551px;}
.wsd{word-spacing:-0.107597px;}
.ws66{word-spacing:-0.081925px;}
.ws27{word-spacing:0.000000px;}
.ws98{word-spacing:0.179327px;}
.ws41{word-spacing:0.298878px;}
.wsb1{word-spacing:0.537980px;}
.ws7{word-spacing:0.591782px;}
.ws4f{word-spacing:0.597756px;}
.ws24{word-spacing:0.896634px;}
.ws25{word-spacing:0.919475px;}
.ws5b{word-spacing:1.075961px;}
.ws5a{word-spacing:1.135736px;}
.ws46{word-spacing:1.195512px;}
.ws2d{word-spacing:1.434614px;}
.ws15{word-spacing:1.452557px;}
.ws28{word-spacing:1.733492px;}
.ws0{word-spacing:2.272433px;}
.ws99{word-spacing:2.749678px;}
.ws14{word-spacing:2.958912px;}
.wsc{word-spacing:3.012710px;}
.ws57{word-spacing:3.048556px;}
.ws6b{word-spacing:3.108190px;}
.ws26{word-spacing:3.108331px;}
.ws65{word-spacing:3.111838px;}
.ws44{word-spacing:3.112159px;}
.ws6a{word-spacing:3.164524px;}
.ws63{word-spacing:3.165715px;}
.ws9c{word-spacing:3.166196px;}
.ws43{word-spacing:3.166327px;}
.ws6c{word-spacing:3.166549px;}
.ws62{word-spacing:3.166565px;}
.ws7a{word-spacing:3.166598px;}
.ws9b{word-spacing:3.166613px;}
.ws54{word-spacing:3.166789px;}
.ws8b{word-spacing:3.167249px;}
.ws89{word-spacing:3.167532px;}
.ws53{word-spacing:3.167695px;}
.ws87{word-spacing:3.167978px;}
.ws51{word-spacing:3.168007px;}
.ws21{word-spacing:3.168107px;}
.ws74{word-spacing:3.168656px;}
.ws61{word-spacing:3.168847px;}
.ws8d{word-spacing:3.169229px;}
.ws7f{word-spacing:3.170156px;}
.ws8c{word-spacing:3.170317px;}
.ws79{word-spacing:3.170524px;}
.ws8f{word-spacing:3.171008px;}
.ws76{word-spacing:3.171310px;}
.ws73{word-spacing:3.171774px;}
.ws75{word-spacing:3.172118px;}
.ws90{word-spacing:3.172188px;}
.ws72{word-spacing:3.172406px;}
.ws59{word-spacing:3.172549px;}
.wsa0{word-spacing:3.172565px;}
.ws69{word-spacing:3.172940px;}
.ws9a{word-spacing:3.173029px;}
.ws77{word-spacing:3.174973px;}
.ws64{word-spacing:3.225550px;}
.ws1{word-spacing:3.299635px;}
.ws11{word-spacing:3.335501px;}
.ws40{word-spacing:3.407209px;}
.ws3f{word-spacing:3.448633px;}
.ws42{word-spacing:3.466985px;}
.ws3{word-spacing:3.536743px;}
.ws8a{word-spacing:3.590621px;}
.ws7e{word-spacing:3.647677px;}
.ws16{word-spacing:3.819686px;}
.ws5{word-spacing:3.981082px;}
.wsab{word-spacing:4.064741px;}
.ws94{word-spacing:4.303843px;}
.ws92{word-spacing:4.363619px;}
.ws95{word-spacing:4.423394px;}
.ws8e{word-spacing:4.602721px;}
.ws7d{word-spacing:4.603964px;}
.ws52{word-spacing:4.662497px;}
.ws88{word-spacing:4.780957px;}
.ws30{word-spacing:4.782048px;}
.ws47{word-spacing:4.841824px;}
.ws2{word-spacing:4.949453px;}
.ws8{word-spacing:5.541235px;}
.ws93{word-spacing:5.559131px;}
.ws4d{word-spacing:5.618906px;}
.ws91{word-spacing:5.678682px;}
.ws36{word-spacing:5.977560px;}
.ws97{word-spacing:6.037336px;}
.ws4{word-spacing:6.079219px;}
.ws31{word-spacing:6.097111px;}
.ws4c{word-spacing:6.156887px;}
.wsa8{word-spacing:6.216662px;}
.ws4b{word-spacing:6.217424px;}
.wsaa{word-spacing:6.276438px;}
.ws1a{word-spacing:6.455808px;}
.ws2e{word-spacing:6.742733px;}
.ws5d{word-spacing:6.754643px;}
.ws86{word-spacing:6.810298px;}
.ws20{word-spacing:6.814418px;}
.ws35{word-spacing:6.814464px;}
.ws81{word-spacing:6.815894px;}
.ws6d{word-spacing:7.173072px;}
.ws7b{word-spacing:7.333184px;}
.ws7c{word-spacing:7.352399px;}
.ws49{word-spacing:7.471950px;}
.ws5f{word-spacing:7.591501px;}
.ws9d{word-spacing:7.651277px;}
.wsad{word-spacing:7.770828px;}
.ws3a{word-spacing:7.875868px;}
.ws68{word-spacing:7.881268px;}
.ws85{word-spacing:7.881473px;}
.ws55{word-spacing:7.881868px;}
.ws60{word-spacing:7.884514px;}
.wse{word-spacing:7.890192px;}
.wsa9{word-spacing:8.009930px;}
.wsaf{word-spacing:8.069706px;}
.ws1c{word-spacing:8.091257px;}
.ws80{word-spacing:8.177334px;}
.ws37{word-spacing:8.428360px;}
.ws17{word-spacing:8.446349px;}
.ws96{word-spacing:8.488135px;}
.wsae{word-spacing:8.521409px;}
.ws19{word-spacing:8.715341px;}
.ws2f{word-spacing:9.254333px;}
.ws2a{word-spacing:9.384769px;}
.ws70{word-spacing:9.530508px;}
.wsa6{word-spacing:9.564096px;}
.wsa4{word-spacing:9.623872px;}
.wsa3{word-spacing:9.743423px;}
.ws1b{word-spacing:9.791309px;}
.wsa7{word-spacing:9.804415px;}
.wsac{word-spacing:9.804457px;}
.ws10{word-spacing:11.041987px;}
.ws1f{word-spacing:11.058486px;}
.ws58{word-spacing:11.175868px;}
.ws6e{word-spacing:11.178514px;}
.ws32{word-spacing:11.357364px;}
.wsa5{word-spacing:11.476915px;}
.ws3c{word-spacing:11.536691px;}
.ws3d{word-spacing:11.590188px;}
.ws3e{word-spacing:11.596804px;}
.wsa2{word-spacing:11.716018px;}
.ws1d{word-spacing:11.775793px;}
.ws22{word-spacing:12.313774px;}
.ws48{word-spacing:13.155415px;}
.ws2b{word-spacing:13.329959px;}
.wsb{word-spacing:13.567987px;}
.ws9f{word-spacing:14.585246px;}
.wsa1{word-spacing:14.645022px;}
.ws4a{word-spacing:15.519868px;}
.ws33{word-spacing:15.601432px;}
.ws38{word-spacing:16.446514px;}
.ws23{word-spacing:16.677392px;}
.ws4e{word-spacing:29.110717px;}
._1{margin-left:-8.056807px;}
._19{margin-left:-6.671002px;}
._0{margin-left:-5.267912px;}
._5{margin-left:-3.586560px;}
._3{margin-left:-2.582310px;}
._6{margin-left:-1.434618px;}
._7{width:1.391209px;}
._2{width:2.582310px;}
._15{width:3.909313px;}
._1d{width:5.174230px;}
._1a{width:8.031114px;}
._12{width:9.290573px;}
._17{width:10.487768px;}
._1e{width:13.706395px;}
._b{width:16.391856px;}
._d{width:17.533948px;}
._1b{width:19.043335px;}
._1f{width:20.435708px;}
._a{width:21.764590px;}
._9{width:23.263789px;}
._c{width:25.267296px;}
._e{width:26.289479px;}
._14{width:28.259749px;}
._11{width:29.369438px;}
._10{width:30.676842px;}
._16{width:31.920194px;}
._8{width:32.932145px;}
._24{width:34.218714px;}
._18{width:35.944758px;}
._1c{width:37.223912px;}
._20{width:39.050110px;}
._4{width:41.523545px;}
._21{width:43.004150px;}
._23{width:44.883649px;}
._22{width:46.646928px;}
._13{width:50.295073px;}
._f{width:51.635017px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs6{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:63.168000px;}
.ye2{bottom:108.000000px;}
.y6d{bottom:108.727500px;}
.y144{bottom:119.185500px;}
.ye1{bottom:125.932500px;}
.y6c{bottom:126.660000px;}
.y17e{bottom:132.022500px;}
.y27{bottom:133.710000px;}
.y143{bottom:137.118000px;}
.y137{bottom:137.910000px;}
.y120{bottom:143.865000px;}
.y1a9{bottom:148.299000px;}
.ya2{bottom:148.368000px;}
.ye0{bottom:152.832000px;}
.y6b{bottom:153.559500px;}
.y136{bottom:155.842500px;}
.y4b{bottom:159.616500px;}
.y102{bottom:161.830500px;}
.y142{bottom:164.017500px;}
.y1a8{bottom:166.231500px;}
.y17d{bottom:167.887500px;}
.y18f{bottom:169.210500px;}
.y26{bottom:169.575000px;}
.y161{bottom:170.797500px;}
.y135{bottom:173.775000px;}
.y4a{bottom:177.549000px;}
.y11f{bottom:178.591500px;}
.ydf{bottom:179.731500px;}
.y6a{bottom:180.459000px;}
.y18e{bottom:187.143000px;}
.y160{bottom:188.730000px;}
.y141{bottom:190.917000px;}
.ya1{bottom:193.200000px;}
.y17c{bottom:194.787000px;}
.y25{bottom:196.474500px;}
.y101{bottom:197.697000px;}
.yba{bottom:197.764500px;}
.y69{bottom:198.391500px;}
.y134{bottom:201.369000px;}
.y1a7{bottom:202.098000px;}
.yde{bottom:206.629500px;}
.y15f{bottom:206.662500px;}
.y17b{bottom:212.719500px;}
.y49{bottom:213.415500px;}
.y18d{bottom:214.041000px;}
.yb9{bottom:215.697000px;}
.y68{bottom:216.324000px;}
.y1a6{bottom:220.030500px;}
.y24{bottom:223.372500px;}
.y11e{bottom:223.423500px;}
.ydd{bottom:224.563500px;}
.y140{bottom:226.782000px;}
.ya0{bottom:229.065000px;}
.y89{bottom:231.138000px;}
.y18c{bottom:231.975000px;}
.y67{bottom:234.256500px;}
.y1a5{bottom:237.963000px;}
.y15e{bottom:239.410500px;}
.y17a{bottom:240.313500px;}
.y23{bottom:241.306500px;}
.ydc{bottom:242.496000px;}
.y100{bottom:242.529000px;}
.yb8{bottom:242.596500px;}
.y133{bottom:243.223500px;}
.y48{bottom:249.280500px;}
.y18b{bottom:249.907500px;}
.y11d{bottom:251.017500px;}
.y66{bottom:252.190500px;}
.y22{bottom:259.239000px;}
.y132{bottom:261.156000px;}
.y13f{bottom:262.647000px;}
.y47{bottom:267.213000px;}
.y18a{bottom:267.840000px;}
.ydb{bottom:269.395500px;}
.yff{bottom:269.427000px;}
.y1a4{bottom:273.828000px;}
.y9f{bottom:273.897000px;}
.y21{bottom:277.171500px;}
.yb7{bottom:278.461500px;}
.y131{bottom:279.088500px;}
.y65{bottom:279.784500px;}
.y88{bottom:280.581000px;}
.y179{bottom:282.168000px;}
.yda{bottom:287.328000px;}
.y15d{bottom:288.852000px;}
.y11c{bottom:289.555500px;}
.y1a3{bottom:291.762000px;}
.y46{bottom:294.112500px;}
.y189{bottom:294.739500px;}
.y20{bottom:295.104000px;}
.y130{bottom:297.021000px;}
.y87{bottom:298.513500px;}
.y178{bottom:300.100500px;}
.y9e{bottom:301.491000px;}
.yfe{bottom:305.293500px;}
.y11b{bottom:307.489500px;}
.y188{bottom:312.672000px;}
.y1f{bottom:313.036500px;}
.yd9{bottom:314.226000px;}
.yb6{bottom:314.328000px;}
.y12f{bottom:314.955000px;}
.y15c{bottom:315.751500px;}
.y86{bottom:316.446000px;}
.y177{bottom:318.033000px;}
.y64{bottom:321.637500px;}
.y45{bottom:321.706500px;}
.y1a2{bottom:327.627000px;}
.y187{bottom:330.604500px;}
.y1e{bottom:330.969000px;}
.y12e{bottom:332.887500px;}
.y15b{bottom:333.684000px;}
.y85{bottom:334.378500px;}
.y176{bottom:335.967000px;}
.y63{bottom:339.571500px;}
.yd8{bottom:341.125500px;}
.y11a{bottom:342.214500px;}
.y9d{bottom:343.345500px;}
.y1a1{bottom:345.559500px;}
.y1d{bottom:348.903000px;}
.yfd{bottom:350.125500px;}
.yb5{bottom:350.193000px;}
.y15a{bottom:351.616500px;}
.y175{bottom:353.899500px;}
.y62{bottom:357.504000px;}
.y9c{bottom:361.278000px;}
.y44{bottom:363.561000px;}
.y12d{bottom:365.634000px;}
.yd7{bottom:368.025000px;}
.y159{bottom:369.549000px;}
.y84{bottom:370.243500px;}
.y174{bottom:371.832000px;}
.y61{bottom:375.436500px;}
.y1c{bottom:375.801000px;}
.yb4{bottom:377.092500px;}
.yfc{bottom:377.719500px;}
.y1a0{bottom:381.424500px;}
.y43{bottom:381.493500px;}
.yd6{bottom:385.957500px;}
.y119{bottom:387.046500px;}
.y158{bottom:387.481500px;}
.y9b{bottom:388.177500px;}
.y186{bottom:393.369000px;}
.y1b{bottom:393.735000px;}
.y19f{bottom:399.358500px;}
.y42{bottom:399.426000px;}
.yb3{bottom:404.686500px;}
.y13e{bottom:406.110000px;}
.y60{bottom:411.301500px;}
.y1a{bottom:411.667500px;}
.yd5{bottom:413.551500px;}
.y118{bottom:414.640500px;}
.y83{bottom:415.075500px;}
.y41{bottom:417.358500px;}
.yfb{bottom:419.574000px;}
.y185{bottom:429.234000px;}
.y12c{bottom:433.008000px;}
.y82{bottom:433.009500px;}
.y19e{bottom:435.223500px;}
.y40{bottom:435.291000px;}
.yfa{bottom:437.506500px;}
.y173{bottom:441.280500px;}
.y9a{bottom:441.975000px;}
.y19{bottom:444.414000px;}
.yb2{bottom:446.541000px;}
.y184{bottom:447.168000px;}
.y12b{bottom:450.942000px;}
.y19d{bottom:453.156000px;}
.y117{bottom:453.180000px;}
.yd4{bottom:454.729500px;}
.yf9{bottom:455.439000px;}
.y5f{bottom:456.133500px;}
.y157{bottom:456.930000px;}
.y172{bottom:459.213000px;}
.y81{bottom:459.907500px;}
.y3f{bottom:462.885000px;}
.yb1{bottom:464.473500px;}
.y12a{bottom:468.874500px;}
.y19c{bottom:471.088500px;}
.y116{bottom:471.112500px;}
.yf8{bottom:473.371500px;}
.y5e{bottom:474.066000px;}
.y171{bottom:477.145500px;}
.y80{bottom:477.840000px;}
.yd3{bottom:481.629000px;}
.y156{bottom:483.829500px;}
.y99{bottom:486.807000px;}
.yf7{bottom:491.304000px;}
.yb0{bottom:491.373000px;}
.y5d{bottom:492.000000px;}
.y18{bottom:493.855500px;}
.y170{bottom:495.078000px;}
.y7f{bottom:495.774000px;}
.y115{bottom:498.706500px;}
.yd2{bottom:499.561500px;}
.y155{bottom:501.762000px;}
.y19b{bottom:503.835000px;}
.y3e{bottom:504.739500px;}
.yaf{bottom:509.305500px;}
.y5c{bottom:509.932500px;}
.y17{bottom:510.294000px;}
.y98{bottom:513.706500px;}
.yf6{bottom:518.203500px;}
.y154{bottom:519.694500px;}
.y16f{bottom:521.977500px;}
.y3d{bottom:522.672000px;}
.y7e{bottom:523.368000px;}
.yd1{bottom:526.461000px;}
.y16{bottom:526.732500px;}
.yae{bottom:527.238000px;}
.y183{bottom:527.865000px;}
.y97{bottom:531.639000px;}
.yf5{bottom:536.136000px;}
.y5b{bottom:537.526500px;}
.y153{bottom:537.627000px;}
.y16e{bottom:539.910000px;}
.y114{bottom:540.232500px;}
.y3c{bottom:540.606000px;}
.y15{bottom:543.171000px;}
.y96{bottom:549.571500px;}
.y13d{bottom:550.266000px;}
.y19a{bottom:553.278000px;}
.yd0{bottom:553.360500px;}
.yf4{bottom:554.068500px;}
.yad{bottom:554.832000px;}
.y152{bottom:555.561000px;}
.y16d{bottom:557.842500px;}
.y113{bottom:558.166500px;}
.y129{bottom:558.538500px;}
.y14{bottom:559.609500px;}
.y182{bottom:560.611500px;}
.y7d{bottom:565.221000px;}
.y199{bottom:571.210500px;}
.ycf{bottom:571.293000px;}
.y16c{bottom:575.776500px;}
.y13{bottom:576.048000px;}
.y112{bottom:576.099000px;}
.y3b{bottom:576.471000px;}
.y95{bottom:577.165500px;}
.y5a{bottom:579.381000px;}
.y151{bottom:582.459000px;}
.y7c{bottom:583.155000px;}
.yf3{bottom:586.815000px;}
.y13c{bottom:592.120500px;}
.y12{bottom:592.486500px;}
.yac{bottom:593.697000px;}
.y16b{bottom:593.709000px;}
.y128{bottom:594.403500px;}
.y59{bottom:597.313500px;}
.y198{bottom:598.110000px;}
.yce{bottom:598.192500px;}
.y150{bottom:600.393000px;}
.y111{bottom:602.997000px;}
.y11{bottom:608.925000px;}
.y7b{bottom:610.053000px;}
.yab{bottom:611.629500px;}
.y58{bottom:615.246000px;}
.y197{bottom:616.042500px;}
.ycd{bottom:616.125000px;}
.y94{bottom:619.020000px;}
.y110{bottom:620.931000px;}
.y3a{bottom:621.303000px;}
.y10{bottom:625.362000px;}
.y14f{bottom:627.291000px;}
.y7a{bottom:627.987000px;}
.y127{bottom:630.268500px;}
.y57{bottom:633.178500px;}
.yf2{bottom:636.258000px;}
.y93{bottom:636.952500px;}
.yaa{bottom:639.223500px;}
.y39{bottom:639.235500px;}
.yf{bottom:641.800500px;}
.y196{bottom:642.942000px;}
.ycc{bottom:643.024500px;}
.y79{bottom:645.919500px;}
.y10f{bottom:647.829000px;}
.y56{bottom:651.111000px;}
.yf1{bottom:654.190500px;}
.y92{bottom:654.885000px;}
.y38{bottom:657.168000px;}
.ye{bottom:658.239000px;}
.y195{bottom:660.874500px;}
.y16a{bottom:663.157500px;}
.y10e{bottom:665.763000px;}
.y126{bottom:666.135000px;}
.ycb{bottom:669.922500px;}
.y78{bottom:672.817500px;}
.yd{bottom:674.677500px;}
.y37{bottom:675.100500px;}
.ya9{bottom:678.090000px;}
.y194{bottom:678.807000px;}
.yf0{bottom:681.090000px;}
.y91{bottom:681.784500px;}
.y55{bottom:683.857500px;}
.y77{bottom:690.751500px;}
.yc{bottom:691.116000px;}
.y10d{bottom:692.661000px;}
.y125{bottom:693.729000px;}
.y14e{bottom:696.739500px;}
.y90{bottom:699.717000px;}
.y36{bottom:702.694500px;}
.yca{bottom:703.435500px;}
.ya8{bottom:705.684000px;}
.yb{bottom:707.554500px;}
.y76{bottom:708.684000px;}
.y10c{bottom:710.593500px;}
.yef{bottom:716.955000px;}
.y8f{bottom:717.649500px;}
.y14d{bottom:723.639000px;}
.ya{bottom:723.993000px;}
.y181{bottom:726.616500px;}
.y54{bottom:733.300500px;}
.y75{bottom:735.583500px;}
.y10b{bottom:738.189000px;}
.y9{bottom:740.431500px;}
.y14c{bottom:741.571500px;}
.y35{bottom:744.549000px;}
.yc9{bottom:748.267500px;}
.y193{bottom:750.538500px;}
.yee{bottom:752.820000px;}
.y8e{bottom:753.516000px;}
.y8{bottom:756.870000px;}
.y14b{bottom:759.504000px;}
.y53{bottom:760.200000px;}
.y169{bottom:761.787000px;}
.y34{bottom:762.481500px;}
.yc8{bottom:766.200000px;}
.y124{bottom:771.448500px;}
.y10a{bottom:779.715000px;}
.yed{bottom:779.719500px;}
.y33{bottom:780.414000px;}
.y7{bottom:781.527000px;}
.yc7{bottom:784.132500px;}
.y14a{bottom:786.403500px;}
.ya7{bottom:790.075500px;}
.y52{bottom:796.065000px;}
.y109{bottom:797.647500px;}
.yec{bottom:797.652000px;}
.y74{bottom:798.348000px;}
.y13b{bottom:799.042500px;}
.y149{bottom:804.336000px;}
.y32{bottom:807.313500px;}
.yc6{bottom:811.032000px;}
.y192{bottom:813.303000px;}
.y51{bottom:813.997500px;}
.y168{bottom:815.586000px;}
.y8d{bottom:816.280500px;}
.y6{bottom:820.381500px;}
.y108{bottom:824.547000px;}
.y31{bottom:825.246000px;}
.y148{bottom:831.235500px;}
.ya6{bottom:831.930000px;}
.y167{bottom:833.518500px;}
.y73{bottom:834.213000px;}
.y180{bottom:834.907500px;}
.yc5{bottom:837.931500px;}
.y191{bottom:840.201000px;}
.y13a{bottom:840.897000px;}
.y107{bottom:842.479500px;}
.y147{bottom:849.168000px;}
.y50{bottom:849.862500px;}
.y30{bottom:852.145500px;}
.yc4{bottom:855.864000px;}
.y139{bottom:858.829500px;}
.y106{bottom:860.412000px;}
.y166{bottom:861.112500px;}
.y5{bottom:864.508500px;}
.yeb{bottom:867.100500px;}
.yc3{bottom:873.796500px;}
.y190{bottom:876.067500px;}
.ya5{bottom:876.762000px;}
.y72{bottom:879.045000px;}
.y2f{bottom:879.739500px;}
.yea{bottom:885.033000px;}
.y4f{bottom:885.729000px;}
.y4{bottom:890.809500px;}
.yc2{bottom:891.729000px;}
.y146{bottom:894.000000px;}
.ya4{bottom:894.694500px;}
.y105{bottom:895.138500px;}
.y165{bottom:902.967000px;}
.y138{bottom:903.661500px;}
.y123{bottom:905.944500px;}
.ye9{bottom:911.932500px;}
.ya3{bottom:912.627000px;}
.y71{bottom:914.910000px;}
.y3{bottom:917.110500px;}
.yc1{bottom:919.323000px;}
.y145{bottom:920.899500px;}
.y2e{bottom:921.594000px;}
.ye8{bottom:929.865000px;}
.y122{bottom:932.842500px;}
.y164{bottom:938.832000px;}
.y8c{bottom:939.526500px;}
.y104{bottom:939.970500px;}
.y2d{bottom:948.493500px;}
.ye7{bottom:956.764500px;}
.y8b{bottom:957.459000px;}
.y70{bottom:959.742000px;}
.yc0{bottom:960.502500px;}
.y2c{bottom:966.426000px;}
.y2{bottom:969.414000px;}
.ye6{bottom:974.697000px;}
.y8a{bottom:975.393000px;}
.y6f{bottom:977.674500px;}
.ybf{bottom:978.435000px;}
.y163{bottom:983.664000px;}
.y2b{bottom:984.358500px;}
.y121{bottom:987.336000px;}
.ye5{bottom:992.629500px;}
.y4e{bottom:993.325500px;}
.ybe{bottom:996.367500px;}
.y162{bottom:1001.596500px;}
.y1{bottom:1002.291000px;}
.y6e{bottom:1005.268500px;}
.ye4{bottom:1010.563500px;}
.y4d{bottom:1011.258000px;}
.ybd{bottom:1014.300000px;}
.y103{bottom:1019.529000px;}
.y2a{bottom:1029.190500px;}
.ybc{bottom:1032.232500px;}
.ye3{bottom:1037.461500px;}
.y17f{bottom:1038.157500px;}
.y4c{bottom:1047.123000px;}
.ybb{bottom:1064.979000px;}
.y29{bottom:1065.055500px;}
.h4{height:35.865450px;}
.h5{height:37.658880px;}
.h6{height:40.348800px;}
.h10{height:41.484266px;}
.h9{height:44.831700px;}
.he{height:44.837700px;}
.h7{height:46.429200px;}
.h3{height:49.716243px;}
.h2{height:49.781453px;}
.hb{height:53.078100px;}
.hc{height:53.084100px;}
.ha{height:53.798400px;}
.hf{height:61.905450px;}
.h8{height:64.557900px;}
.hd{height:68.807850px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:106.251000px;}
.xa{left:108.000000px;}
.x1{left:126.531000px;}
.x1a{left:128.055000px;}
.x1b{left:130.416000px;}
.x11{left:143.611500px;}
.x9{left:145.360500px;}
.x2{left:157.437000px;}
.x8{left:165.534000px;}
.x5{left:336.753000px;}
.x4{left:367.911000px;}
.x13{left:368.944500px;}
.x15{left:373.167000px;}
.x3{left:385.816500px;}
.xf{left:390.060000px;}
.x6{left:400.807500px;}
.x12{left:404.479500px;}
.xc{left:405.964500px;}
.xe{left:409.678500px;}
.x14{left:411.756000px;}
.x10{left:413.049000px;}
.x16{left:417.414000px;}
.x19{left:419.307000px;}
.x17{left:426.706500px;}
.x7{left:428.563500px;}
.x18{left:451.528500px;}
.xb{left:455.263500px;}
@media print{
.v7{vertical-align:-15.749333pt;}
.v3{vertical-align:-13.125333pt;}
.v1{vertical-align:-11.813333pt;}
.va{vertical-align:-2.373333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:13.125333pt;}
.v2{vertical-align:17.360000pt;}
.v4{vertical-align:19.285333pt;}
.v9{vertical-align:23.146667pt;}
.v5{vertical-align:27.738667pt;}
.v6{vertical-align:41.237333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000267pt;}
.ls1c{letter-spacing:0.000333pt;}
.ls2e{letter-spacing:0.001971pt;}
.ls30{letter-spacing:0.002926pt;}
.ls5{letter-spacing:0.003206pt;}
.ls38{letter-spacing:0.003733pt;}
.ls13{letter-spacing:0.004479pt;}
.ls0{letter-spacing:1.194812pt;}
.ls6{letter-spacing:1.327146pt;}
.ls8{letter-spacing:1.332479pt;}
.ls2c{letter-spacing:1.591305pt;}
.lse{letter-spacing:1.933108pt;}
.ls11{letter-spacing:2.656533pt;}
.ls21{letter-spacing:2.661867pt;}
.lsf{letter-spacing:3.875952pt;}
.ls27{letter-spacing:4.650837pt;}
.ls36{letter-spacing:5.312770pt;}
.ls35{letter-spacing:5.320987pt;}
.ls18{letter-spacing:7.120257pt;}
.ls25{letter-spacing:7.413307pt;}
.ls22{letter-spacing:7.418640pt;}
.ls32{letter-spacing:7.971653pt;}
.ls29{letter-spacing:11.795718pt;}
.ls3{letter-spacing:13.533286pt;}
.ls28{letter-spacing:14.154957pt;}
.lsd{letter-spacing:14.757852pt;}
.ls1a{letter-spacing:14.759467pt;}
.ls2{letter-spacing:15.270400pt;}
.ls1{letter-spacing:15.942400pt;}
.ls39{letter-spacing:17.412842pt;}
.ls10{letter-spacing:17.419200pt;}
.ls17{letter-spacing:17.692785pt;}
.ls23{letter-spacing:17.693593pt;}
.ls1b{letter-spacing:17.694400pt;}
.ls1e{letter-spacing:17.696267pt;}
.ls37{letter-spacing:17.698118pt;}
.ls9{letter-spacing:17.829867pt;}
.ls1f{letter-spacing:19.023146pt;}
.ls12{letter-spacing:20.347200pt;}
.ls33{letter-spacing:20.350205pt;}
.ls1d{letter-spacing:20.352533pt;}
.lsa{letter-spacing:20.597867pt;}
.lsc{letter-spacing:21.571952pt;}
.lsb{letter-spacing:21.679146pt;}
.ls20{letter-spacing:22.175973pt;}
.ls34{letter-spacing:22.739653pt;}
.ls15{letter-spacing:23.008533pt;}
.ls19{letter-spacing:24.810924pt;}
.ls26{letter-spacing:25.114640pt;}
.ls31{letter-spacing:25.556489pt;}
.ls2b{letter-spacing:26.551452pt;}
.ls2f{letter-spacing:26.565067pt;}
.ls2d{letter-spacing:26.570400pt;}
.ls14{letter-spacing:26.571185pt;}
.ls7{letter-spacing:27.840533pt;}
.ls24{letter-spacing:28.549590pt;}
.ls2a{letter-spacing:32.457634pt;}
.ws83{word-spacing:-26.673201pt;}
.ws82{word-spacing:-22.224102pt;}
.ws18{word-spacing:-19.497685pt;}
.ws1e{word-spacing:-14.877483pt;}
.ws9{word-spacing:-13.389824pt;}
.ws34{word-spacing:-10.414208pt;}
.wsa{word-spacing:-8.926549pt;}
.ws5e{word-spacing:-6.057261pt;}
.ws84{word-spacing:-6.004127pt;}
.ws6{word-spacing:-2.295398pt;}
.ws56{word-spacing:-2.121493pt;}
.ws50{word-spacing:-1.753418pt;}
.ws78{word-spacing:-1.647150pt;}
.ws9e{word-spacing:-1.222079pt;}
.ws45{word-spacing:-1.009543pt;}
.ws12{word-spacing:-0.812954pt;}
.ws2c{word-spacing:-0.797008pt;}
.ws13{word-spacing:-0.765133pt;}
.ws29{word-spacing:-0.743874pt;}
.wsb0{word-spacing:-0.584473pt;}
.ws5c{word-spacing:-0.318803pt;}
.ws71{word-spacing:-0.191283pt;}
.ws3b{word-spacing:-0.159402pt;}
.wsf{word-spacing:-0.143462pt;}
.ws6f{word-spacing:-0.127522pt;}
.ws67{word-spacing:-0.118410pt;}
.ws39{word-spacing:-0.106268pt;}
.wsd{word-spacing:-0.095642pt;}
.ws66{word-spacing:-0.072822pt;}
.ws27{word-spacing:0.000000pt;}
.ws98{word-spacing:0.159402pt;}
.ws41{word-spacing:0.265669pt;}
.wsb1{word-spacing:0.478205pt;}
.ws7{word-spacing:0.526029pt;}
.ws4f{word-spacing:0.531339pt;}
.ws24{word-spacing:0.797008pt;}
.ws25{word-spacing:0.817311pt;}
.ws5b{word-spacing:0.956410pt;}
.ws5a{word-spacing:1.009543pt;}
.ws46{word-spacing:1.062677pt;}
.ws2d{word-spacing:1.275213pt;}
.ws15{word-spacing:1.291162pt;}
.ws28{word-spacing:1.540882pt;}
.ws0{word-spacing:2.019940pt;}
.ws99{word-spacing:2.444158pt;}
.ws14{word-spacing:2.630144pt;}
.wsc{word-spacing:2.677965pt;}
.ws57{word-spacing:2.709827pt;}
.ws6b{word-spacing:2.762835pt;}
.ws26{word-spacing:2.762961pt;}
.ws65{word-spacing:2.766078pt;}
.ws44{word-spacing:2.766364pt;}
.ws6a{word-spacing:2.812910pt;}
.ws63{word-spacing:2.813969pt;}
.ws9c{word-spacing:2.814397pt;}
.ws43{word-spacing:2.814513pt;}
.ws6c{word-spacing:2.814710pt;}
.ws62{word-spacing:2.814724pt;}
.ws7a{word-spacing:2.814754pt;}
.ws9b{word-spacing:2.814767pt;}
.ws54{word-spacing:2.814924pt;}
.ws8b{word-spacing:2.815332pt;}
.ws89{word-spacing:2.815584pt;}
.ws53{word-spacing:2.815729pt;}
.ws87{word-spacing:2.815981pt;}
.ws51{word-spacing:2.816006pt;}
.ws21{word-spacing:2.816095pt;}
.ws74{word-spacing:2.816583pt;}
.ws61{word-spacing:2.816753pt;}
.ws8d{word-spacing:2.817092pt;}
.ws7f{word-spacing:2.817917pt;}
.ws8c{word-spacing:2.818060pt;}
.ws79{word-spacing:2.818243pt;}
.ws8f{word-spacing:2.818674pt;}
.ws76{word-spacing:2.818942pt;}
.ws73{word-spacing:2.819355pt;}
.ws75{word-spacing:2.819661pt;}
.ws90{word-spacing:2.819723pt;}
.ws72{word-spacing:2.819917pt;}
.ws59{word-spacing:2.820044pt;}
.wsa0{word-spacing:2.820058pt;}
.ws69{word-spacing:2.820391pt;}
.ws9a{word-spacing:2.820470pt;}
.ws77{word-spacing:2.822198pt;}
.ws64{word-spacing:2.867155pt;}
.ws1{word-spacing:2.933009pt;}
.ws11{word-spacing:2.964890pt;}
.ws40{word-spacing:3.028630pt;}
.ws3f{word-spacing:3.065452pt;}
.ws42{word-spacing:3.081764pt;}
.ws3{word-spacing:3.143772pt;}
.ws8a{word-spacing:3.191663pt;}
.ws7e{word-spacing:3.242380pt;}
.ws16{word-spacing:3.395277pt;}
.ws5{word-spacing:3.538739pt;}
.wsab{word-spacing:3.613103pt;}
.ws94{word-spacing:3.825638pt;}
.ws92{word-spacing:3.878772pt;}
.ws95{word-spacing:3.931906pt;}
.ws8e{word-spacing:4.091308pt;}
.ws7d{word-spacing:4.092413pt;}
.ws52{word-spacing:4.144442pt;}
.ws88{word-spacing:4.249740pt;}
.ws30{word-spacing:4.250709pt;}
.ws47{word-spacing:4.303843pt;}
.ws2{word-spacing:4.399514pt;}
.ws8{word-spacing:4.925542pt;}
.ws93{word-spacing:4.941450pt;}
.ws4d{word-spacing:4.994583pt;}
.ws91{word-spacing:5.047717pt;}
.ws36{word-spacing:5.313387pt;}
.ws97{word-spacing:5.366521pt;}
.ws4{word-spacing:5.403750pt;}
.ws31{word-spacing:5.419654pt;}
.ws4c{word-spacing:5.472788pt;}
.wsa8{word-spacing:5.525922pt;}
.ws4b{word-spacing:5.526599pt;}
.wsaa{word-spacing:5.579056pt;}
.ws1a{word-spacing:5.738496pt;}
.ws2e{word-spacing:5.993540pt;}
.ws5d{word-spacing:6.004127pt;}
.ws86{word-spacing:6.053598pt;}
.ws20{word-spacing:6.057261pt;}
.ws35{word-spacing:6.057301pt;}
.ws81{word-spacing:6.058573pt;}
.ws6d{word-spacing:6.376064pt;}
.ws7b{word-spacing:6.518386pt;}
.ws7c{word-spacing:6.535466pt;}
.ws49{word-spacing:6.641733pt;}
.ws5f{word-spacing:6.748001pt;}
.ws9d{word-spacing:6.801135pt;}
.wsad{word-spacing:6.907403pt;}
.ws3a{word-spacing:7.000771pt;}
.ws68{word-spacing:7.005571pt;}
.ws85{word-spacing:7.005754pt;}
.ws55{word-spacing:7.006105pt;}
.ws60{word-spacing:7.008457pt;}
.wse{word-spacing:7.013504pt;}
.wsa9{word-spacing:7.119938pt;}
.wsaf{word-spacing:7.173072pt;}
.ws1c{word-spacing:7.192228pt;}
.ws80{word-spacing:7.268741pt;}
.ws37{word-spacing:7.491875pt;}
.ws17{word-spacing:7.507866pt;}
.ws96{word-spacing:7.545009pt;}
.wsae{word-spacing:7.574586pt;}
.ws19{word-spacing:7.746970pt;}
.ws2f{word-spacing:8.226074pt;}
.ws2a{word-spacing:8.342017pt;}
.ws70{word-spacing:8.471563pt;}
.wsa6{word-spacing:8.501419pt;}
.wsa4{word-spacing:8.554553pt;}
.wsa3{word-spacing:8.660820pt;}
.ws1b{word-spacing:8.703386pt;}
.wsa7{word-spacing:8.715036pt;}
.wsac{word-spacing:8.715073pt;}
.ws10{word-spacing:9.815100pt;}
.ws1f{word-spacing:9.829765pt;}
.ws58{word-spacing:9.934105pt;}
.ws6e{word-spacing:9.936457pt;}
.ws32{word-spacing:10.095435pt;}
.wsa5{word-spacing:10.201702pt;}
.ws3c{word-spacing:10.254836pt;}
.ws3d{word-spacing:10.302389pt;}
.ws3e{word-spacing:10.308270pt;}
.wsa2{word-spacing:10.414238pt;}
.ws1d{word-spacing:10.467372pt;}
.ws22{word-spacing:10.945577pt;}
.ws48{word-spacing:11.693702pt;}
.ws2b{word-spacing:11.848852pt;}
.wsb{word-spacing:12.060433pt;}
.ws9f{word-spacing:12.964663pt;}
.wsa1{word-spacing:13.017797pt;}
.ws4a{word-spacing:13.795438pt;}
.ws33{word-spacing:13.867939pt;}
.ws38{word-spacing:14.619123pt;}
.ws23{word-spacing:14.824349pt;}
.ws4e{word-spacing:25.876193pt;}
._1{margin-left:-7.161606pt;}
._19{margin-left:-5.929779pt;}
._0{margin-left:-4.682589pt;}
._5{margin-left:-3.188053pt;}
._3{margin-left:-2.295387pt;}
._6{margin-left:-1.275216pt;}
._7{width:1.236630pt;}
._2{width:2.295387pt;}
._15{width:3.474945pt;}
._1d{width:4.599315pt;}
._1a{width:7.138768pt;}
._12{width:8.258287pt;}
._17{width:9.322461pt;}
._1e{width:12.183462pt;}
._b{width:14.570539pt;}
._d{width:15.585731pt;}
._1b{width:16.927409pt;}
._1f{width:18.165074pt;}
._a{width:19.346302pt;}
._9{width:20.678924pt;}
._c{width:22.459819pt;}
._e{width:23.368426pt;}
._14{width:25.119777pt;}
._11{width:26.106167pt;}
._10{width:27.268304pt;}
._16{width:28.373506pt;}
._8{width:29.273018pt;}
._24{width:30.416635pt;}
._18{width:31.950896pt;}
._1c{width:33.087922pt;}
._20{width:34.711209pt;}
._4{width:36.909818pt;}
._21{width:38.225911pt;}
._23{width:39.896577pt;}
._22{width:41.463936pt;}
._13{width:44.706732pt;}
._f{width:45.897793pt;}
.fs8{font-size:26.566933pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs6{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:56.149333pt;}
.ye2{bottom:96.000000pt;}
.y6d{bottom:96.646667pt;}
.y144{bottom:105.942667pt;}
.ye1{bottom:111.940000pt;}
.y6c{bottom:112.586667pt;}
.y17e{bottom:117.353333pt;}
.y27{bottom:118.853333pt;}
.y143{bottom:121.882667pt;}
.y137{bottom:122.586667pt;}
.y120{bottom:127.880000pt;}
.y1a9{bottom:131.821333pt;}
.ya2{bottom:131.882667pt;}
.ye0{bottom:135.850667pt;}
.y6b{bottom:136.497333pt;}
.y136{bottom:138.526667pt;}
.y4b{bottom:141.881333pt;}
.y102{bottom:143.849333pt;}
.y142{bottom:145.793333pt;}
.y1a8{bottom:147.761333pt;}
.y17d{bottom:149.233333pt;}
.y18f{bottom:150.409333pt;}
.y26{bottom:150.733333pt;}
.y161{bottom:151.820000pt;}
.y135{bottom:154.466667pt;}
.y4a{bottom:157.821333pt;}
.y11f{bottom:158.748000pt;}
.ydf{bottom:159.761333pt;}
.y6a{bottom:160.408000pt;}
.y18e{bottom:166.349333pt;}
.y160{bottom:167.760000pt;}
.y141{bottom:169.704000pt;}
.ya1{bottom:171.733333pt;}
.y17c{bottom:173.144000pt;}
.y25{bottom:174.644000pt;}
.y101{bottom:175.730667pt;}
.yba{bottom:175.790667pt;}
.y69{bottom:176.348000pt;}
.y134{bottom:178.994667pt;}
.y1a7{bottom:179.642667pt;}
.yde{bottom:183.670667pt;}
.y15f{bottom:183.700000pt;}
.y17b{bottom:189.084000pt;}
.y49{bottom:189.702667pt;}
.y18d{bottom:190.258667pt;}
.yb9{bottom:191.730667pt;}
.y68{bottom:192.288000pt;}
.y1a6{bottom:195.582667pt;}
.y24{bottom:198.553333pt;}
.y11e{bottom:198.598667pt;}
.ydd{bottom:199.612000pt;}
.y140{bottom:201.584000pt;}
.ya0{bottom:203.613333pt;}
.y89{bottom:205.456000pt;}
.y18c{bottom:206.200000pt;}
.y67{bottom:208.228000pt;}
.y1a5{bottom:211.522667pt;}
.y15e{bottom:212.809333pt;}
.y17a{bottom:213.612000pt;}
.y23{bottom:214.494667pt;}
.ydc{bottom:215.552000pt;}
.y100{bottom:215.581333pt;}
.yb8{bottom:215.641333pt;}
.y133{bottom:216.198667pt;}
.y48{bottom:221.582667pt;}
.y18b{bottom:222.140000pt;}
.y11d{bottom:223.126667pt;}
.y66{bottom:224.169333pt;}
.y22{bottom:230.434667pt;}
.y132{bottom:232.138667pt;}
.y13f{bottom:233.464000pt;}
.y47{bottom:237.522667pt;}
.y18a{bottom:238.080000pt;}
.ydb{bottom:239.462667pt;}
.yff{bottom:239.490667pt;}
.y1a4{bottom:243.402667pt;}
.y9f{bottom:243.464000pt;}
.y21{bottom:246.374667pt;}
.yb7{bottom:247.521333pt;}
.y131{bottom:248.078667pt;}
.y65{bottom:248.697333pt;}
.y88{bottom:249.405333pt;}
.y179{bottom:250.816000pt;}
.yda{bottom:255.402667pt;}
.y15d{bottom:256.757333pt;}
.y11c{bottom:257.382667pt;}
.y1a3{bottom:259.344000pt;}
.y46{bottom:261.433333pt;}
.y189{bottom:261.990667pt;}
.y20{bottom:262.314667pt;}
.y130{bottom:264.018667pt;}
.y87{bottom:265.345333pt;}
.y178{bottom:266.756000pt;}
.y9e{bottom:267.992000pt;}
.yfe{bottom:271.372000pt;}
.y11b{bottom:273.324000pt;}
.y188{bottom:277.930667pt;}
.y1f{bottom:278.254667pt;}
.yd9{bottom:279.312000pt;}
.yb6{bottom:279.402667pt;}
.y12f{bottom:279.960000pt;}
.y15c{bottom:280.668000pt;}
.y86{bottom:281.285333pt;}
.y177{bottom:282.696000pt;}
.y64{bottom:285.900000pt;}
.y45{bottom:285.961333pt;}
.y1a2{bottom:291.224000pt;}
.y187{bottom:293.870667pt;}
.y1e{bottom:294.194667pt;}
.y12e{bottom:295.900000pt;}
.y15b{bottom:296.608000pt;}
.y85{bottom:297.225333pt;}
.y176{bottom:298.637333pt;}
.y63{bottom:301.841333pt;}
.yd8{bottom:303.222667pt;}
.y11a{bottom:304.190667pt;}
.y9d{bottom:305.196000pt;}
.y1a1{bottom:307.164000pt;}
.y1d{bottom:310.136000pt;}
.yfd{bottom:311.222667pt;}
.yb5{bottom:311.282667pt;}
.y15a{bottom:312.548000pt;}
.y175{bottom:314.577333pt;}
.y62{bottom:317.781333pt;}
.y9c{bottom:321.136000pt;}
.y44{bottom:323.165333pt;}
.y12d{bottom:325.008000pt;}
.yd7{bottom:327.133333pt;}
.y159{bottom:328.488000pt;}
.y84{bottom:329.105333pt;}
.y174{bottom:330.517333pt;}
.y61{bottom:333.721333pt;}
.y1c{bottom:334.045333pt;}
.yb4{bottom:335.193333pt;}
.yfc{bottom:335.750667pt;}
.y1a0{bottom:339.044000pt;}
.y43{bottom:339.105333pt;}
.yd6{bottom:343.073333pt;}
.y119{bottom:344.041333pt;}
.y158{bottom:344.428000pt;}
.y9b{bottom:345.046667pt;}
.y186{bottom:349.661333pt;}
.y1b{bottom:349.986667pt;}
.y19f{bottom:354.985333pt;}
.y42{bottom:355.045333pt;}
.yb3{bottom:359.721333pt;}
.y13e{bottom:360.986667pt;}
.y60{bottom:365.601333pt;}
.y1a{bottom:365.926667pt;}
.yd5{bottom:367.601333pt;}
.y118{bottom:368.569333pt;}
.y83{bottom:368.956000pt;}
.y41{bottom:370.985333pt;}
.yfb{bottom:372.954667pt;}
.y185{bottom:381.541333pt;}
.y12c{bottom:384.896000pt;}
.y82{bottom:384.897333pt;}
.y19e{bottom:386.865333pt;}
.y40{bottom:386.925333pt;}
.yfa{bottom:388.894667pt;}
.y173{bottom:392.249333pt;}
.y9a{bottom:392.866667pt;}
.y19{bottom:395.034667pt;}
.yb2{bottom:396.925333pt;}
.y184{bottom:397.482667pt;}
.y12b{bottom:400.837333pt;}
.y19d{bottom:402.805333pt;}
.y117{bottom:402.826667pt;}
.yd4{bottom:404.204000pt;}
.yf9{bottom:404.834667pt;}
.y5f{bottom:405.452000pt;}
.y157{bottom:406.160000pt;}
.y172{bottom:408.189333pt;}
.y81{bottom:408.806667pt;}
.y3f{bottom:411.453333pt;}
.yb1{bottom:412.865333pt;}
.y12a{bottom:416.777333pt;}
.y19c{bottom:418.745333pt;}
.y116{bottom:418.766667pt;}
.yf8{bottom:420.774667pt;}
.y5e{bottom:421.392000pt;}
.y171{bottom:424.129333pt;}
.y80{bottom:424.746667pt;}
.yd3{bottom:428.114667pt;}
.y156{bottom:430.070667pt;}
.y99{bottom:432.717333pt;}
.yf7{bottom:436.714667pt;}
.yb0{bottom:436.776000pt;}
.y5d{bottom:437.333333pt;}
.y18{bottom:438.982667pt;}
.y170{bottom:440.069333pt;}
.y7f{bottom:440.688000pt;}
.y115{bottom:443.294667pt;}
.yd2{bottom:444.054667pt;}
.y155{bottom:446.010667pt;}
.y19b{bottom:447.853333pt;}
.y3e{bottom:448.657333pt;}
.yaf{bottom:452.716000pt;}
.y5c{bottom:453.273333pt;}
.y17{bottom:453.594667pt;}
.y98{bottom:456.628000pt;}
.yf6{bottom:460.625333pt;}
.y154{bottom:461.950667pt;}
.y16f{bottom:463.980000pt;}
.y3d{bottom:464.597333pt;}
.y7e{bottom:465.216000pt;}
.yd1{bottom:467.965333pt;}
.y16{bottom:468.206667pt;}
.yae{bottom:468.656000pt;}
.y183{bottom:469.213333pt;}
.y97{bottom:472.568000pt;}
.yf5{bottom:476.565333pt;}
.y5b{bottom:477.801333pt;}
.y153{bottom:477.890667pt;}
.y16e{bottom:479.920000pt;}
.y114{bottom:480.206667pt;}
.y3c{bottom:480.538667pt;}
.y15{bottom:482.818667pt;}
.y96{bottom:488.508000pt;}
.y13d{bottom:489.125333pt;}
.y19a{bottom:491.802667pt;}
.yd0{bottom:491.876000pt;}
.yf4{bottom:492.505333pt;}
.yad{bottom:493.184000pt;}
.y152{bottom:493.832000pt;}
.y16d{bottom:495.860000pt;}
.y113{bottom:496.148000pt;}
.y129{bottom:496.478667pt;}
.y14{bottom:497.430667pt;}
.y182{bottom:498.321333pt;}
.y7d{bottom:502.418667pt;}
.y199{bottom:507.742667pt;}
.ycf{bottom:507.816000pt;}
.y16c{bottom:511.801333pt;}
.y13{bottom:512.042667pt;}
.y112{bottom:512.088000pt;}
.y3b{bottom:512.418667pt;}
.y95{bottom:513.036000pt;}
.y5a{bottom:515.005333pt;}
.y151{bottom:517.741333pt;}
.y7c{bottom:518.360000pt;}
.yf3{bottom:521.613333pt;}
.y13c{bottom:526.329333pt;}
.y12{bottom:526.654667pt;}
.yac{bottom:527.730667pt;}
.y16b{bottom:527.741333pt;}
.y128{bottom:528.358667pt;}
.y59{bottom:530.945333pt;}
.y198{bottom:531.653333pt;}
.yce{bottom:531.726667pt;}
.y150{bottom:533.682667pt;}
.y111{bottom:535.997333pt;}
.y11{bottom:541.266667pt;}
.y7b{bottom:542.269333pt;}
.yab{bottom:543.670667pt;}
.y58{bottom:546.885333pt;}
.y197{bottom:547.593333pt;}
.ycd{bottom:547.666667pt;}
.y94{bottom:550.240000pt;}
.y110{bottom:551.938667pt;}
.y3a{bottom:552.269333pt;}
.y10{bottom:555.877333pt;}
.y14f{bottom:557.592000pt;}
.y7a{bottom:558.210667pt;}
.y127{bottom:560.238667pt;}
.y57{bottom:562.825333pt;}
.yf2{bottom:565.562667pt;}
.y93{bottom:566.180000pt;}
.yaa{bottom:568.198667pt;}
.y39{bottom:568.209333pt;}
.yf{bottom:570.489333pt;}
.y196{bottom:571.504000pt;}
.ycc{bottom:571.577333pt;}
.y79{bottom:574.150667pt;}
.y10f{bottom:575.848000pt;}
.y56{bottom:578.765333pt;}
.yf1{bottom:581.502667pt;}
.y92{bottom:582.120000pt;}
.y38{bottom:584.149333pt;}
.ye{bottom:585.101333pt;}
.y195{bottom:587.444000pt;}
.y16a{bottom:589.473333pt;}
.y10e{bottom:591.789333pt;}
.y126{bottom:592.120000pt;}
.ycb{bottom:595.486667pt;}
.y78{bottom:598.060000pt;}
.yd{bottom:599.713333pt;}
.y37{bottom:600.089333pt;}
.ya9{bottom:602.746667pt;}
.y194{bottom:603.384000pt;}
.yf0{bottom:605.413333pt;}
.y91{bottom:606.030667pt;}
.y55{bottom:607.873333pt;}
.y77{bottom:614.001333pt;}
.yc{bottom:614.325333pt;}
.y10d{bottom:615.698667pt;}
.y125{bottom:616.648000pt;}
.y14e{bottom:619.324000pt;}
.y90{bottom:621.970667pt;}
.y36{bottom:624.617333pt;}
.yca{bottom:625.276000pt;}
.ya8{bottom:627.274667pt;}
.yb{bottom:628.937333pt;}
.y76{bottom:629.941333pt;}
.y10c{bottom:631.638667pt;}
.yef{bottom:637.293333pt;}
.y8f{bottom:637.910667pt;}
.y14d{bottom:643.234667pt;}
.ya{bottom:643.549333pt;}
.y181{bottom:645.881333pt;}
.y54{bottom:651.822667pt;}
.y75{bottom:653.852000pt;}
.y10b{bottom:656.168000pt;}
.y9{bottom:658.161333pt;}
.y14c{bottom:659.174667pt;}
.y35{bottom:661.821333pt;}
.yc9{bottom:665.126667pt;}
.y193{bottom:667.145333pt;}
.yee{bottom:669.173333pt;}
.y8e{bottom:669.792000pt;}
.y8{bottom:672.773333pt;}
.y14b{bottom:675.114667pt;}
.y53{bottom:675.733333pt;}
.y169{bottom:677.144000pt;}
.y34{bottom:677.761333pt;}
.yc8{bottom:681.066667pt;}
.y124{bottom:685.732000pt;}
.y10a{bottom:693.080000pt;}
.yed{bottom:693.084000pt;}
.y33{bottom:693.701333pt;}
.y7{bottom:694.690667pt;}
.yc7{bottom:697.006667pt;}
.y14a{bottom:699.025333pt;}
.ya7{bottom:702.289333pt;}
.y52{bottom:707.613333pt;}
.y109{bottom:709.020000pt;}
.yec{bottom:709.024000pt;}
.y74{bottom:709.642667pt;}
.y13b{bottom:710.260000pt;}
.y149{bottom:714.965333pt;}
.y32{bottom:717.612000pt;}
.yc6{bottom:720.917333pt;}
.y192{bottom:722.936000pt;}
.y51{bottom:723.553333pt;}
.y168{bottom:724.965333pt;}
.y8d{bottom:725.582667pt;}
.y6{bottom:729.228000pt;}
.y108{bottom:732.930667pt;}
.y31{bottom:733.552000pt;}
.y148{bottom:738.876000pt;}
.ya6{bottom:739.493333pt;}
.y167{bottom:740.905333pt;}
.y73{bottom:741.522667pt;}
.y180{bottom:742.140000pt;}
.yc5{bottom:744.828000pt;}
.y191{bottom:746.845333pt;}
.y13a{bottom:747.464000pt;}
.y107{bottom:748.870667pt;}
.y147{bottom:754.816000pt;}
.y50{bottom:755.433333pt;}
.y30{bottom:757.462667pt;}
.yc4{bottom:760.768000pt;}
.y139{bottom:763.404000pt;}
.y106{bottom:764.810667pt;}
.y166{bottom:765.433333pt;}
.y5{bottom:768.452000pt;}
.yeb{bottom:770.756000pt;}
.yc3{bottom:776.708000pt;}
.y190{bottom:778.726667pt;}
.ya5{bottom:779.344000pt;}
.y72{bottom:781.373333pt;}
.y2f{bottom:781.990667pt;}
.yea{bottom:786.696000pt;}
.y4f{bottom:787.314667pt;}
.y4{bottom:791.830667pt;}
.yc2{bottom:792.648000pt;}
.y146{bottom:794.666667pt;}
.ya4{bottom:795.284000pt;}
.y105{bottom:795.678667pt;}
.y165{bottom:802.637333pt;}
.y138{bottom:803.254667pt;}
.y123{bottom:805.284000pt;}
.ye9{bottom:810.606667pt;}
.ya3{bottom:811.224000pt;}
.y71{bottom:813.253333pt;}
.y3{bottom:815.209333pt;}
.yc1{bottom:817.176000pt;}
.y145{bottom:818.577333pt;}
.y2e{bottom:819.194667pt;}
.ye8{bottom:826.546667pt;}
.y122{bottom:829.193333pt;}
.y164{bottom:834.517333pt;}
.y8c{bottom:835.134667pt;}
.y104{bottom:835.529333pt;}
.y2d{bottom:843.105333pt;}
.ye7{bottom:850.457333pt;}
.y8b{bottom:851.074667pt;}
.y70{bottom:853.104000pt;}
.yc0{bottom:853.780000pt;}
.y2c{bottom:859.045333pt;}
.y2{bottom:861.701333pt;}
.ye6{bottom:866.397333pt;}
.y8a{bottom:867.016000pt;}
.y6f{bottom:869.044000pt;}
.ybf{bottom:869.720000pt;}
.y163{bottom:874.368000pt;}
.y2b{bottom:874.985333pt;}
.y121{bottom:877.632000pt;}
.ye5{bottom:882.337333pt;}
.y4e{bottom:882.956000pt;}
.ybe{bottom:885.660000pt;}
.y162{bottom:890.308000pt;}
.y1{bottom:890.925333pt;}
.y6e{bottom:893.572000pt;}
.ye4{bottom:898.278667pt;}
.y4d{bottom:898.896000pt;}
.ybd{bottom:901.600000pt;}
.y103{bottom:906.248000pt;}
.y2a{bottom:914.836000pt;}
.ybc{bottom:917.540000pt;}
.ye3{bottom:922.188000pt;}
.y17f{bottom:922.806667pt;}
.y4c{bottom:930.776000pt;}
.ybb{bottom:946.648000pt;}
.y29{bottom:946.716000pt;}
.h4{height:31.880400pt;}
.h5{height:33.474560pt;}
.h6{height:35.865600pt;}
.h10{height:36.874903pt;}
.h9{height:39.850400pt;}
.he{height:39.855733pt;}
.h7{height:41.270400pt;}
.h3{height:44.192216pt;}
.h2{height:44.250180pt;}
.hb{height:47.180533pt;}
.hc{height:47.185867pt;}
.ha{height:47.820800pt;}
.hf{height:55.027067pt;}
.h8{height:57.384800pt;}
.hd{height:61.162533pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:94.445333pt;}
.xa{left:96.000000pt;}
.x1{left:112.472000pt;}
.x1a{left:113.826667pt;}
.x1b{left:115.925333pt;}
.x11{left:127.654667pt;}
.x9{left:129.209333pt;}
.x2{left:139.944000pt;}
.x8{left:147.141333pt;}
.x5{left:299.336000pt;}
.x4{left:327.032000pt;}
.x13{left:327.950667pt;}
.x15{left:331.704000pt;}
.x3{left:342.948000pt;}
.xf{left:346.720000pt;}
.x6{left:356.273333pt;}
.x12{left:359.537333pt;}
.xc{left:360.857333pt;}
.xe{left:364.158667pt;}
.x14{left:366.005333pt;}
.x10{left:367.154667pt;}
.x16{left:371.034667pt;}
.x19{left:372.717333pt;}
.x17{left:379.294667pt;}
.x7{left:380.945333pt;}
.x18{left:401.358667pt;}
.xb{left:404.678667pt;}
}




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