
    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_8c47b09713f4578a9f5f4257.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9b2ca2bda3f70a2c2d756e4a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d349640109b69294e076c0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_77687b991adcc42895dd2858.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.714000;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_4f6b0e0fdd4873580d704ae4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_3492ebe2ceb2ee2225ecae3e.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_1442dc57694dfb2491b173a5.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_b2f6d2945a101093206c9c01.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_caa8585991b20a416dbea953.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_322fad9de19b6bba9651fe52.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.049000;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_f70f1a83bfdda97980095f60.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cbdc23c08bc6adf3931beadb.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_7100d49fd66ce7af080e7ca8.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5320f09b41e0dee90f598325.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_200dd9226e590bec4cc2c273.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;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_6b4c46b50c1e4de9b992aee2.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.399000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.321860px;}
.v3{vertical-align:-8.639040px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:13.680480px;}
.vc{vertical-align:15.121860px;}
.v7{vertical-align:17.280480px;}
.v1{vertical-align:21.600000px;}
.v4{vertical-align:24.478140px;}
.vb{vertical-align:30.960960px;}
.v6{vertical-align:40.319280px;}
.v8{vertical-align:65.519580px;}
.v5{vertical-align:84.238800px;}
.va{vertical-align:112.319580px;}
.v9{vertical-align:125.280540px;}
.ls8{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.002267px;}
.lsb{letter-spacing:0.003052px;}
.ls9{letter-spacing:0.014944px;}
.ls24{letter-spacing:0.041844px;}
.ls6{letter-spacing:0.114995px;}
.ls15{letter-spacing:0.351120px;}
.ls16{letter-spacing:0.352076px;}
.lse{letter-spacing:0.354172px;}
.lsf{letter-spacing:2.110796px;}
.ls23{letter-spacing:2.113136px;}
.ls0{letter-spacing:2.830316px;}
.ls1{letter-spacing:2.832656px;}
.lsd{letter-spacing:3.552236px;}
.lsc{letter-spacing:10.431600px;}
.ls17{letter-spacing:10.749896px;}
.ls14{letter-spacing:12.152420px;}
.ls11{letter-spacing:12.871940px;}
.ls18{letter-spacing:13.315132px;}
.ls1c{letter-spacing:14.031600px;}
.ls1a{letter-spacing:14.034772px;}
.ls13{letter-spacing:14.686134px;}
.ls12{letter-spacing:14.688474px;}
.ls1d{letter-spacing:14.754172px;}
.ls29{letter-spacing:16.192972px;}
.ls10{letter-spacing:18.354172px;}
.ls28{letter-spacing:18.431165px;}
.lsa{letter-spacing:19.792972px;}
.ls19{letter-spacing:19.927771px;}
.ls27{letter-spacing:21.552236px;}
.ls1b{letter-spacing:22.991276px;}
.ls1f{letter-spacing:23.710796px;}
.ls1e{letter-spacing:24.430316px;}
.ls4{letter-spacing:24.886192px;}
.ls5{letter-spacing:25.152236px;}
.ls2{letter-spacing:25.605712px;}
.ls21{letter-spacing:25.871756px;}
.ls22{letter-spacing:26.591276px;}
.ls20{letter-spacing:26.593616px;}
.ls7{letter-spacing:29.474096px;}
.ls3{letter-spacing:29.925232px;}
.ls2a{letter-spacing:51.043782px;}
.ls25{letter-spacing:51.046182px;}
.ls2b{letter-spacing:989.282092px;}
.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;}
}
.wsc3{word-spacing:-29.887920px;}
.ws25{word-spacing:-20.921550px;}
.ws3f{word-spacing:-12.972850px;}
.wsc2{word-spacing:-11.609885px;}
.wscb{word-spacing:-10.890365px;}
.ws27{word-spacing:-8.731745px;}
.ws4a{word-spacing:-8.729405px;}
.ws0{word-spacing:-8.696906px;}
.wsd2{word-spacing:-8.693440px;}
.wscc{word-spacing:-7.681416px;}
.ws11{word-spacing:-7.483599px;}
.ws96{word-spacing:-7.254456px;}
.ws44{word-spacing:-6.055427px;}
.wsb5{word-spacing:-5.767606px;}
.ws62{word-spacing:-5.287564px;}
.ws9c{word-spacing:-4.373978px;}
.wsc0{word-spacing:-1.424777px;}
.wsca{word-spacing:-1.422377px;}
.ws78{word-spacing:-0.411851px;}
.ws26{word-spacing:-0.059776px;}
.wse3{word-spacing:-0.053798px;}
.ws3d{word-spacing:0.000000px;}
.ws4f{word-spacing:7.937603px;}
.ws5d{word-spacing:8.931288px;}
.ws59{word-spacing:8.931407px;}
.ws68{word-spacing:8.931885px;}
.ws83{word-spacing:8.932005px;}
.ws75{word-spacing:8.932304px;}
.ws6a{word-spacing:8.932782px;}
.ws4d{word-spacing:8.932902px;}
.ws98{word-spacing:8.933015px;}
.ws2{word-spacing:9.247596px;}
.ws84{word-spacing:9.300224px;}
.wsb0{word-spacing:9.398376px;}
.wsd0{word-spacing:9.398436px;}
.wsa6{word-spacing:9.400767px;}
.ws5{word-spacing:9.406858px;}
.ws5e{word-spacing:9.651347px;}
.ws80{word-spacing:9.651407px;}
.ws3e{word-spacing:9.652304px;}
.ws60{word-spacing:9.652423px;}
.wsd4{word-spacing:9.652722px;}
.ws87{word-spacing:9.653021px;}
.ws4{word-spacing:9.656244px;}
.ws99{word-spacing:9.688767px;}
.ws61{word-spacing:10.019806px;}
.ws76{word-spacing:10.076722px;}
.ws42{word-spacing:10.371945px;}
.wsc1{word-spacing:10.371948px;}
.ws40{word-spacing:10.373582px;}
.ws7d{word-spacing:10.412712px;}
.ws16{word-spacing:12.357997px;}
.ws7c{word-spacing:12.747676px;}
.ws89{word-spacing:13.251109px;}
.ws8c{word-spacing:13.251182px;}
.ws7a{word-spacing:13.255352px;}
.ws7b{word-spacing:13.467291px;}
.ws79{word-spacing:13.467364px;}
.ws81{word-spacing:13.720289px;}
.wsf8{word-spacing:14.853651px;}
.wsab{word-spacing:14.908154px;}
.wsd8{word-spacing:15.159392px;}
.wsb6{word-spacing:15.160229px;}
.ws37{word-spacing:15.160707px;}
.ws1f{word-spacing:15.160827px;}
.ws17{word-spacing:15.269499px;}
.ws14{word-spacing:15.411885px;}
.ws56{word-spacing:15.878735px;}
.ws38{word-spacing:15.879751px;}
.wsbb{word-spacing:16.133260px;}
.wsf6{word-spacing:16.294154px;}
.ws77{word-spacing:16.347198px;}
.wsa{word-spacing:16.400190px;}
.ws13{word-spacing:16.443616px;}
.ws2c{word-spacing:16.443736px;}
.ws48{word-spacing:16.444154px;}
.wsc8{word-spacing:16.499686px;}
.wsb7{word-spacing:16.600647px;}
.wsdc{word-spacing:16.707646px;}
.wsdd{word-spacing:16.709619px;}
.wsc7{word-spacing:16.887452px;}
.ws2a{word-spacing:17.066002px;}
.ws86{word-spacing:17.165051px;}
.wsba{word-spacing:17.165469px;}
.ws49{word-spacing:17.165589px;}
.wsc6{word-spacing:17.165837px;}
.ws3c{word-spacing:17.320229px;}
.ws64{word-spacing:17.399253px;}
.wse2{word-spacing:17.522154px;}
.wsf4{word-spacing:17.733527px;}
.wse4{word-spacing:17.733688px;}
.wsf1{word-spacing:17.733742px;}
.wsef{word-spacing:17.757898px;}
.ws10{word-spacing:17.840424px;}
.wsa3{word-spacing:17.884573px;}
.ws20{word-spacing:17.884632px;}
.ws63{word-spacing:17.940224px;}
.ws2d{word-spacing:18.039691px;}
.wsc5{word-spacing:18.039751px;}
.wsda{word-spacing:18.118416px;}
.ws3a{word-spacing:18.148543px;}
.ws6b{word-spacing:18.292244px;}
.wsbf{word-spacing:18.292304px;}
.wsd6{word-spacing:18.292662px;}
.wse1{word-spacing:18.427256px;}
.wsc{word-spacing:18.428170px;}
.ws57{word-spacing:18.429489px;}
.ws18{word-spacing:18.429609px;}
.wse6{word-spacing:18.452756px;}
.wsed{word-spacing:18.453187px;}
.wsee{word-spacing:18.453617px;}
.wsea{word-spacing:18.453725px;}
.wsf5{word-spacing:18.454639px;}
.wsdf{word-spacing:18.506779px;}
.ws1c{word-spacing:18.507975px;}
.ws34{word-spacing:18.508154px;}
.ws41{word-spacing:18.546949px;}
.wsc9{word-spacing:18.604214px;}
.ws2e{word-spacing:18.604692px;}
.wsb2{word-spacing:18.605111px;}
.ws36{word-spacing:18.659746px;}
.ws74{word-spacing:18.759213px;}
.wsb9{word-spacing:18.760707px;}
.wsa4{word-spacing:18.838296px;}
.ws7f{word-spacing:18.839372px;}
.wsd7{word-spacing:18.867467px;}
.wsad{word-spacing:18.868065px;}
.ws53{word-spacing:18.868184px;}
.ws6d{word-spacing:19.048827px;}
.ws43{word-spacing:19.148114px;}
.wse8{word-spacing:19.172739px;}
.wse7{word-spacing:19.174622px;}
.wsb{word-spacing:19.198669px;}
.wsaa{word-spacing:19.226182px;}
.wsb4{word-spacing:19.227258px;}
.wsac{word-spacing:19.323616px;}
.wsbe{word-spacing:19.323915px;}
.ws67{word-spacing:19.324214px;}
.wsa2{word-spacing:19.379268px;}
.ws29{word-spacing:19.478735px;}
.ws3b{word-spacing:19.480229px;}
.ws39{word-spacing:19.557878px;}
.wse0{word-spacing:19.681617px;}
.ws82{word-spacing:19.732782px;}
.wsd1{word-spacing:19.732843px;}
.ws54{word-spacing:19.768827px;}
.wsf2{word-spacing:19.892721px;}
.wse9{word-spacing:19.894174px;}
.ws23{word-spacing:19.947198px;}
.wsd3{word-spacing:20.043736px;}
.ws97{word-spacing:20.044154px;}
.ws55{word-spacing:20.044632px;}
.ws70{word-spacing:20.045051px;}
.ws6f{word-spacing:20.045469px;}
.wsbc{word-spacing:20.200647px;}
.ws5f{word-spacing:20.200707px;}
.ws95{word-spacing:20.313098px;}
.ws9f{word-spacing:20.488767px;}
.wsd{word-spacing:20.586719px;}
.wse5{word-spacing:20.613672px;}
.wsf7{word-spacing:20.614156px;}
.wsa0{word-spacing:20.666600px;}
.ws1a{word-spacing:20.706172px;}
.ws88{word-spacing:20.764632px;}
.ws8b{word-spacing:20.765469px;}
.ws69{word-spacing:20.765589px;}
.wsce{word-spacing:20.919273px;}
.wsa5{word-spacing:20.920169px;}
.ws19{word-spacing:21.027646px;}
.ws22{word-spacing:21.029559px;}
.wscd{word-spacing:21.171825px;}
.ws51{word-spacing:21.207691px;}
.ws8d{word-spacing:21.208289px;}
.ws8a{word-spacing:21.208408px;}
.ws5b{word-spacing:21.307636px;}
.ws47{word-spacing:21.307756px;}
.ws4b{word-spacing:21.386122px;}
.ws8{word-spacing:21.436355px;}
.wscf{word-spacing:21.483676px;}
.ws66{word-spacing:21.484991px;}
.ws72{word-spacing:21.485170px;}
.ws2b{word-spacing:21.639691px;}
.ws30{word-spacing:21.640707px;}
.ws65{word-spacing:21.654005px;}
.ws9b{word-spacing:21.734247px;}
.ws94{word-spacing:21.747945px;}
.ws50{word-spacing:21.891347px;}
.ws1b{word-spacing:21.927810px;}
.wsf{word-spacing:21.932644px;}
.ws33{word-spacing:22.029609px;}
.wseb{word-spacing:22.052776px;}
.ws52{word-spacing:22.107975px;}
.ws35{word-spacing:22.108154px;}
.ws15{word-spacing:22.204692px;}
.wsa9{word-spacing:22.205111px;}
.ws90{word-spacing:22.359213px;}
.ws31{word-spacing:22.438475px;}
.wsa1{word-spacing:22.468065px;}
.wsaf{word-spacing:22.611407px;}
.ws85{word-spacing:22.648827px;}
.ws6{word-spacing:22.652734px;}
.ws93{word-spacing:22.749131px;}
.wsec{word-spacing:22.773726px;}
.ws71{word-spacing:22.923616px;}
.ws21{word-spacing:22.924214px;}
.ws46{word-spacing:22.981180px;}
.ws2f{word-spacing:23.188603px;}
.wsa8{word-spacing:23.189499px;}
.wse{word-spacing:23.467186px;}
.ws9{word-spacing:23.512484px;}
.wsae{word-spacing:23.547198px;}
.ws92{word-spacing:23.587786px;}
.ws9d{word-spacing:23.644334px;}
.ws73{word-spacing:23.644632px;}
.ws1e{word-spacing:23.799332px;}
.ws4c{word-spacing:23.800647px;}
.ws91{word-spacing:24.051407px;}
.wsa7{word-spacing:24.088886px;}
.wsf3{word-spacing:24.213261px;}
.ws1{word-spacing:24.419746px;}
.ws45{word-spacing:24.420104px;}
.ws3{word-spacing:24.420702px;}
.ws9a{word-spacing:24.520229px;}
.wsb1{word-spacing:24.520289px;}
.ws8f{word-spacing:24.808289px;}
.wsd9{word-spacing:25.238794px;}
.wsb3{word-spacing:25.239691px;}
.ws24{word-spacing:25.239751px;}
.ws32{word-spacing:25.239810px;}
.ws4e{word-spacing:25.527870px;}
.wsf0{word-spacing:25.654248px;}
.wsb8{word-spacing:25.959392px;}
.ws1d{word-spacing:26.349011px;}
.ws58{word-spacing:26.466052px;}
.ws7{word-spacing:26.476877px;}
.ws28{word-spacing:26.523915px;}
.ws5c{word-spacing:27.243736px;}
.wsde{word-spacing:28.199312px;}
.ws5a{word-spacing:30.179267px;}
.ws8e{word-spacing:30.180762px;}
.wsd5{word-spacing:36.095418px;}
.ws12{word-spacing:36.814701px;}
.wsdb{word-spacing:36.815777px;}
.ws9e{word-spacing:40.981061px;}
.ws6e{word-spacing:87.976257px;}
.ws7e{word-spacing:101.092303px;}
.ws6c{word-spacing:218.344257px;}
.wsbd{word-spacing:337.209871px;}
.wsc4{word-spacing:1078.504437px;}
._24{margin-left:-29.964137px;}
._a{margin-left:-28.052110px;}
._26{margin-left:-25.962140px;}
._b{margin-left:-23.078379px;}
._25{margin-left:-6.350591px;}
._2{margin-left:-5.325733px;}
._9{margin-left:-3.588798px;}
._0{margin-left:-2.207967px;}
._6{margin-left:-1.047512px;}
._1{width:1.293113px;}
._c{width:3.067379px;}
._18{width:4.301359px;}
._27{width:7.436973px;}
._3{width:9.365291px;}
._1e{width:10.423642px;}
._15{width:13.625820px;}
._16{width:14.758789px;}
._14{width:16.680480px;}
._f{width:17.840277px;}
._11{width:19.504941px;}
._10{width:21.168467px;}
._8{width:23.097546px;}
._5{width:24.231123px;}
._4{width:25.920478px;}
._1a{width:26.968073px;}
._d{width:28.138138px;}
._e{width:29.570198px;}
._1f{width:30.580146px;}
._13{width:32.241998px;}
._7{width:33.600791px;}
._20{width:35.381554px;}
._21{width:36.624912px;}
._17{width:37.859970px;}
._22{width:38.898047px;}
._19{width:40.294622px;}
._12{width:41.662851px;}
._1d{width:43.376274px;}
._23{width:45.111893px;}
._1b{width:47.038119px;}
._1c{width:64.112082px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:19.337040px;}
.fs4{font-size:35.865480px;}
.fs3{font-size:41.843100px;}
.fs6{font-size:47.820660px;}
.fs5{font-size:53.798280px;}
.fs7{font-size:54.143700px;}
.fs2{font-size:59.775840px;}
.fs9{font-size:67.693200px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:11.158500px;}
.yc6{bottom:13.951500px;}
.y5c{bottom:23.325000px;}
.ybf{bottom:29.163000px;}
.y5d{bottom:32.268000px;}
.y65{bottom:35.532000px;}
.y77{bottom:39.036000px;}
.yc0{bottom:40.344000px;}
.ya7{bottom:54.828000px;}
.y78{bottom:72.715500px;}
.ya8{bottom:82.987500px;}
.y5e{bottom:87.499500px;}
.yc1{bottom:103.152000px;}
.ye3{bottom:105.660240px;}
.y76{bottom:105.660450px;}
.y79{bottom:106.353000px;}
.ya6{bottom:106.740450px;}
.ybd{bottom:108.360600px;}
.ya9{bottom:111.187500px;}
.y119{bottom:112.681500px;}
.y36{bottom:119.880600px;}
.ye2{bottom:122.760240px;}
.y75{bottom:122.760450px;}
.y5a{bottom:123.480000px;}
.ya5{bottom:123.840450px;}
.ybc{bottom:125.640450px;}
.y118{bottom:128.341800px;}
.yc7{bottom:135.588000px;}
.y35{bottom:136.980600px;}
.yaa{bottom:139.347000px;}
.y7a{bottom:140.032500px;}
.y74{bottom:140.040300px;}
.y59{bottom:140.580000px;}
.ya4{bottom:141.120300px;}
.y64{bottom:141.804000px;}
.y6b{bottom:141.805500px;}
.y5f{bottom:142.731000px;}
.ybb{bottom:142.740450px;}
.y117{bottom:144.181500px;}
.y34{bottom:154.261050px;}
.y58{bottom:157.860450px;}
.ya3{bottom:158.220300px;}
.y116{bottom:159.841800px;}
.yba{bottom:160.020300px;}
.ye1{bottom:161.279790px;}
.yc2{bottom:165.909000px;}
.yab{bottom:167.547000px;}
.y73{bottom:169.560450px;}
.y33{bottom:171.361050px;}
.y7b{bottom:173.710500px;}
.y57{bottom:174.960450px;}
.ya2{bottom:175.500150px;}
.y115{bottom:175.501500px;}
.yb9{bottom:177.120300px;}
.y32{bottom:188.640900px;}
.y114{bottom:191.161800px;}
.y56{bottom:192.240300px;}
.ya1{bottom:192.600150px;}
.yb8{bottom:194.400150px;}
.yac{bottom:195.706500px;}
.y60{bottom:197.962500px;}
.y31{bottom:205.740900px;}
.y113{bottom:206.821500px;}
.y7c{bottom:207.388500px;}
.y55{bottom:209.340300px;}
.ya0{bottom:209.880000px;}
.ye0{bottom:210.240090px;}
.yb7{bottom:211.500150px;}
.y72{bottom:216.180000px;}
.y83{bottom:217.743000px;}
.y112{bottom:222.481200px;}
.y30{bottom:223.020750px;}
.yad{bottom:223.866000px;}
.y54{bottom:226.620150px;}
.y9f{bottom:226.980000px;}
.ydf{bottom:227.519940px;}
.yc3{bottom:228.666000px;}
.yb6{bottom:228.780000px;}
.y71{bottom:233.460450px;}
.y82{bottom:233.695500px;}
.y111{bottom:238.321500px;}
.y2f{bottom:240.120750px;}
.y7d{bottom:241.068000px;}
.y53{bottom:243.720150px;}
.y9e{bottom:244.260450px;}
.yde{bottom:244.619940px;}
.y81{bottom:249.609000px;}
.y70{bottom:250.560450px;}
.yae{bottom:252.066000px;}
.y61{bottom:253.194000px;}
.y110{bottom:253.981200px;}
.y2e{bottom:257.400600px;}
.y9d{bottom:261.360450px;}
.ydd{bottom:261.899790px;}
.yb0{bottom:265.480500px;}
.y80{bottom:265.521000px;}
.yb5{bottom:267.120300px;}
.y6f{bottom:267.840300px;}
.y10f{bottom:269.641500px;}
.y2d{bottom:274.500600px;}
.y7e{bottom:274.747500px;}
.y9c{bottom:278.460450px;}
.ydc{bottom:278.999790px;}
.yaf{bottom:280.225500px;}
.y68{bottom:281.434500px;}
.y52{bottom:282.240300px;}
.y6e{bottom:284.940300px;}
.y10e{bottom:285.301200px;}
.yc4{bottom:291.423000px;}
.y2c{bottom:291.780450px;}
.y9b{bottom:295.740300px;}
.ydb{bottom:296.279640px;}
.y67{bottom:297.346500px;}
.y7f{bottom:297.387000px;}
.y10d{bottom:300.961500px;}
.y62{bottom:308.385000px;}
.y2b{bottom:308.880450px;}
.y1{bottom:310.500000px;}
.y66{bottom:311.689500px;}
.y9a{bottom:312.840300px;}
.yda{bottom:313.379640px;}
.yb4{bottom:316.800150px;}
.y10c{bottom:316.801200px;}
.y2a{bottom:326.160900px;}
.y99{bottom:330.120150px;}
.yd9{bottom:330.660090px;}
.y51{bottom:331.920150px;}
.y10b{bottom:332.461500px;}
.yb3{bottom:334.080000px;}
.y6d{bottom:335.880000px;}
.y29{bottom:343.260900px;}
.y98{bottom:347.220150px;}
.yd8{bottom:347.760090px;}
.y10a{bottom:348.121200px;}
.y50{bottom:349.020150px;}
.yb2{bottom:351.180000px;}
.y6c{bottom:352.980000px;}
.yc5{bottom:354.180000px;}
.y28{bottom:360.540750px;}
.y97{bottom:364.500000px;}
.yd7{bottom:365.039940px;}
.y109{bottom:365.761500px;}
.y4f{bottom:366.300000px;}
.y27{bottom:377.640750px;}
.y6a{bottom:380.061000px;}
.y108{bottom:381.421200px;}
.y96{bottom:381.600000px;}
.yd6{bottom:382.139940px;}
.y4e{bottom:383.400000px;}
.y26{bottom:394.920600px;}
.y107{bottom:397.080900px;}
.y95{bottom:398.879850px;}
.yd5{bottom:399.239940px;}
.y4d{bottom:400.679850px;}
.yb1{bottom:404.280000px;}
.y25{bottom:412.020600px;}
.y106{bottom:412.741200px;}
.y94{bottom:415.979850px;}
.yd4{bottom:416.519790px;}
.y4c{bottom:417.779850px;}
.y105{bottom:428.400900px;}
.y24{bottom:429.120600px;}
.y93{bottom:433.260300px;}
.y4b{bottom:435.060300px;}
.yd1{bottom:443.160000px;}
.y104{bottom:444.241200px;}
.y23{bottom:446.400450px;}
.yd3{bottom:448.919790px;}
.y92{bottom:450.360300px;}
.y4a{bottom:452.160300px;}
.yd2{bottom:453.419790px;}
.yd0{bottom:453.420195px;}
.y103{bottom:459.900900px;}
.y22{bottom:463.500450px;}
.y91{bottom:467.640150px;}
.y49{bottom:469.440150px;}
.y102{bottom:475.560600px;}
.y21{bottom:480.780300px;}
.y90{bottom:484.740150px;}
.y48{bottom:486.540150px;}
.y101{bottom:491.220900px;}
.ycf{bottom:495.359895px;}
.y20{bottom:497.880300px;}
.y8f{bottom:502.020000px;}
.y47{bottom:503.820000px;}
.y100{bottom:506.880600px;}
.yce{bottom:512.459895px;}
.y1f{bottom:515.160150px;}
.y8e{bottom:519.120000px;}
.y46{bottom:520.920000px;}
.yff{bottom:522.540900px;}
.y1e{bottom:532.260150px;}
.y8d{bottom:536.399850px;}
.y45{bottom:538.199850px;}
.yfe{bottom:538.380600px;}
.ycc{bottom:541.080000px;}
.y1d{bottom:549.540600px;}
.ycb{bottom:551.339850px;}
.ycd{bottom:551.340345px;}
.y8c{bottom:553.499850px;}
.yfd{bottom:554.040900px;}
.y44{bottom:555.299850px;}
.y1c{bottom:566.640600px;}
.yfc{bottom:569.700600px;}
.y8b{bottom:570.779700px;}
.y43{bottom:572.579700px;}
.y1b{bottom:583.920450px;}
.yfb{bottom:585.360300px;}
.y8a{bottom:587.879700px;}
.y42{bottom:589.679700px;}
.yca{bottom:592.379550px;}
.y1a{bottom:601.020450px;}
.yfa{bottom:601.020600px;}
.y89{bottom:604.979700px;}
.y41{bottom:606.959550px;}
.yc9{bottom:609.479550px;}
.yf9{bottom:616.680300px;}
.y19{bottom:618.300300px;}
.y88{bottom:622.260150px;}
.y40{bottom:624.060150px;}
.yf8{bottom:632.520600px;}
.y18{bottom:635.400300px;}
.y87{bottom:639.360150px;}
.y3f{bottom:641.340000px;}
.yf7{bottom:648.180300px;}
.y17{bottom:652.680150px;}
.y86{bottom:656.640000px;}
.y3e{bottom:658.440000px;}
.yc8{bottom:659.160000px;}
.yf6{bottom:663.840600px;}
.y16{bottom:669.780150px;}
.y85{bottom:673.740000px;}
.y3d{bottom:675.540000px;}
.yf5{bottom:679.500300px;}
.ybe{bottom:686.260500px;}
.y15{bottom:687.060600px;}
.y84{bottom:691.019850px;}
.y3c{bottom:692.819850px;}
.yf4{bottom:695.160600px;}
.y14{bottom:704.160600px;}
.y3b{bottom:709.919850px;}
.yf3{bottom:710.820300px;}
.y13{bottom:721.440450px;}
.yf2{bottom:726.660600px;}
.y12{bottom:738.540450px;}
.yf1{bottom:742.320300px;}
.y69{bottom:743.940000px;}
.y3a{bottom:748.440000px;}
.yf0{bottom:757.980000px;}
.y5b{bottom:771.021000px;}
.yef{bottom:773.640300px;}
.y11{bottom:777.060600px;}
.y12d{bottom:781.200750px;}
.yee{bottom:789.300000px;}
.y12c{bottom:796.861050px;}
.y39{bottom:798.119850px;}
.yed{bottom:804.960300px;}
.y12b{bottom:812.520750px;}
.yec{bottom:820.800000px;}
.y10{bottom:826.740450px;}
.y12a{bottom:828.180450px;}
.y129{bottom:843.840750px;}
.y38{bottom:851.040000px;}
.yf{bottom:856.620300px;}
.y128{bottom:859.500450px;}
.ye{bottom:872.280000px;}
.y127{bottom:875.340750px;}
.yd{bottom:887.940300px;}
.y126{bottom:891.000450px;}
.yc{bottom:903.600000px;}
.y125{bottom:906.660150px;}
.yb{bottom:919.440300px;}
.yeb{bottom:920.879850px;}
.y124{bottom:922.320450px;}
.ya{bottom:935.100000px;}
.yea{bottom:937.979850px;}
.y123{bottom:937.980150px;}
.y9{bottom:950.759700px;}
.y122{bottom:953.640450px;}
.ye9{bottom:955.259700px;}
.y8{bottom:966.420000px;}
.y121{bottom:969.480150px;}
.y120{bottom:985.140450px;}
.ye8{bottom:993.600000px;}
.y7{bottom:996.299850px;}
.y11f{bottom:1000.800150px;}
.y11e{bottom:1016.459850px;}
.y6{bottom:1017.719895px;}
.y11d{bottom:1032.120150px;}
.y5{bottom:1033.379655px;}
.ye7{bottom:1043.459700px;}
.y11c{bottom:1047.959850px;}
.y4{bottom:1049.040000px;}
.y3{bottom:1059.119850px;}
.ye6{bottom:1060.559700px;}
.y11b{bottom:1063.620150px;}
.ye5{bottom:1077.840150px;}
.y11a{bottom:1079.279850px;}
.y2{bottom:1094.940000px;}
.ye4{bottom:1094.940150px;}
.y37{bottom:1133.820000px;}
.hc{height:20.167928px;}
.h4{height:23.850544px;}
.h6{height:34.143951px;}
.h7{height:37.658796px;}
.h5{height:40.348710px;}
.h8{height:44.831880px;}
.h2{height:50.211840px;}
.h3{height:50.639111px;}
.h9{height:51.358631px;}
.h12{height:51.360971px;}
.hd{height:53.517251px;}
.h18{height:54.026850px;}
.h17{height:54.029190px;}
.hb{height:56.470187px;}
.h16{height:59.953740px;}
.h14{height:62.343285px;}
.h15{height:62.831880px;}
.hf{height:70.601892px;}
.h10{height:86.629834px;}
.h1{height:117.773438px;}
.h11{height:143.701905px;}
.h13{height:144.421485px;}
.ha{height:338.800500px;}
.he{height:423.583500px;}
.h0{height:1188.000000px;}
.w1{width:609.600000px;}
.w2{width:762.150000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:48.000000px;}
.x16{left:57.165000px;}
.x13{left:62.401500px;}
.x14{left:70.338000px;}
.x27{left:71.974500px;}
.x17{left:78.556500px;}
.xc{left:80.999850px;}
.x1c{left:83.159700px;}
.x2{left:87.659700px;}
.x25{left:94.387500px;}
.xb{left:95.939850px;}
.x1b{left:100.311000px;}
.x1e{left:106.559850px;}
.x33{left:108.540300px;}
.x6{left:133.019850px;}
.x12{left:145.068000px;}
.x11{left:157.140000px;}
.x22{left:158.220000px;}
.x23{left:159.840000px;}
.x9{left:163.259850px;}
.x20{left:165.420000px;}
.x4{left:169.739910px;}
.x8{left:176.939850px;}
.x7{left:181.979850px;}
.x3{left:185.579700px;}
.x1a{left:208.440000px;}
.x28{left:209.700000px;}
.xe{left:214.020000px;}
.x35{left:254.697300px;}
.x32{left:255.780000px;}
.x5{left:268.199790px;}
.x24{left:290.700000px;}
.x15{left:293.721000px;}
.x10{left:320.399505px;}
.x2c{left:347.581065px;}
.xf{left:350.821200px;}
.x31{left:353.700000px;}
.x26{left:356.949000px;}
.x29{left:369.720000px;}
.xa{left:383.759850px;}
.x30{left:387.359850px;}
.x2d{left:426.420000px;}
.x1d{left:428.399850px;}
.x2a{left:441.180000px;}
.x1f{left:499.419000px;}
.x2e{left:503.459685px;}
.x2f{left:514.259700px;}
.x21{left:516.178500px;}
.x2b{left:520.740405px;}
.x19{left:524.961000px;}
.x18{left:551.025000px;}
.x34{left:725.937900px;}
.xd{left:835.740000px;}
@media print{
.v2{vertical-align:-19.841653pt;}
.v3{vertical-align:-7.679147pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:12.160427pt;}
.vc{vertical-align:13.441653pt;}
.v7{vertical-align:15.360427pt;}
.v1{vertical-align:19.200000pt;}
.v4{vertical-align:21.758347pt;}
.vb{vertical-align:27.520853pt;}
.v6{vertical-align:35.839360pt;}
.v8{vertical-align:58.239627pt;}
.v5{vertical-align:74.878933pt;}
.va{vertical-align:99.839627pt;}
.v9{vertical-align:111.360480pt;}
.ls8{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.002015pt;}
.lsb{letter-spacing:0.002713pt;}
.ls9{letter-spacing:0.013284pt;}
.ls24{letter-spacing:0.037194pt;}
.ls6{letter-spacing:0.102218pt;}
.ls15{letter-spacing:0.312107pt;}
.ls16{letter-spacing:0.312956pt;}
.lse{letter-spacing:0.314820pt;}
.lsf{letter-spacing:1.876263pt;}
.ls23{letter-spacing:1.878343pt;}
.ls0{letter-spacing:2.515837pt;}
.ls1{letter-spacing:2.517917pt;}
.lsd{letter-spacing:3.157543pt;}
.lsc{letter-spacing:9.272533pt;}
.ls17{letter-spacing:9.555463pt;}
.ls14{letter-spacing:10.802151pt;}
.ls11{letter-spacing:11.441724pt;}
.ls18{letter-spacing:11.835673pt;}
.ls1c{letter-spacing:12.472533pt;}
.ls1a{letter-spacing:12.475353pt;}
.ls13{letter-spacing:13.054342pt;}
.ls12{letter-spacing:13.056422pt;}
.ls1d{letter-spacing:13.114820pt;}
.ls29{letter-spacing:14.393753pt;}
.ls10{letter-spacing:16.314820pt;}
.ls28{letter-spacing:16.383258pt;}
.lsa{letter-spacing:17.593753pt;}
.ls19{letter-spacing:17.713574pt;}
.ls27{letter-spacing:19.157543pt;}
.ls1b{letter-spacing:20.436690pt;}
.ls1f{letter-spacing:21.076263pt;}
.ls1e{letter-spacing:21.715837pt;}
.ls4{letter-spacing:22.121059pt;}
.ls5{letter-spacing:22.357543pt;}
.ls2{letter-spacing:22.760633pt;}
.ls21{letter-spacing:22.997117pt;}
.ls22{letter-spacing:23.636690pt;}
.ls20{letter-spacing:23.638770pt;}
.ls7{letter-spacing:26.199197pt;}
.ls3{letter-spacing:26.600206pt;}
.ls2a{letter-spacing:45.372250pt;}
.ls25{letter-spacing:45.374384pt;}
.ls2b{letter-spacing:879.361860pt;}
.wsc3{word-spacing:-26.567040pt;}
.ws25{word-spacing:-18.596933pt;}
.ws3f{word-spacing:-11.531423pt;}
.wsc2{word-spacing:-10.319898pt;}
.wscb{word-spacing:-9.680324pt;}
.ws27{word-spacing:-7.761551pt;}
.ws4a{word-spacing:-7.759471pt;}
.ws0{word-spacing:-7.730583pt;}
.wsd2{word-spacing:-7.727502pt;}
.wscc{word-spacing:-6.827925pt;}
.ws11{word-spacing:-6.652088pt;}
.ws96{word-spacing:-6.448405pt;}
.ws44{word-spacing:-5.382602pt;}
.wsb5{word-spacing:-5.126761pt;}
.ws62{word-spacing:-4.700057pt;}
.ws9c{word-spacing:-3.887980pt;}
.wsc0{word-spacing:-1.266468pt;}
.wsca{word-spacing:-1.264335pt;}
.ws78{word-spacing:-0.366090pt;}
.ws26{word-spacing:-0.053134pt;}
.wse3{word-spacing:-0.047821pt;}
.ws3d{word-spacing:0.000000pt;}
.ws4f{word-spacing:7.055647pt;}
.ws5d{word-spacing:7.938922pt;}
.ws59{word-spacing:7.939029pt;}
.ws68{word-spacing:7.939454pt;}
.ws83{word-spacing:7.939560pt;}
.ws75{word-spacing:7.939826pt;}
.ws6a{word-spacing:7.940251pt;}
.ws4d{word-spacing:7.940357pt;}
.ws98{word-spacing:7.940458pt;}
.ws2{word-spacing:8.220085pt;}
.ws84{word-spacing:8.266866pt;}
.wsb0{word-spacing:8.354112pt;}
.wsd0{word-spacing:8.354165pt;}
.wsa6{word-spacing:8.356237pt;}
.ws5{word-spacing:8.361651pt;}
.ws5e{word-spacing:8.578975pt;}
.ws80{word-spacing:8.579029pt;}
.ws3e{word-spacing:8.579826pt;}
.ws60{word-spacing:8.579932pt;}
.wsd4{word-spacing:8.580198pt;}
.ws87{word-spacing:8.580463pt;}
.ws4{word-spacing:8.583328pt;}
.ws99{word-spacing:8.612237pt;}
.ws61{word-spacing:8.906494pt;}
.ws76{word-spacing:8.957086pt;}
.ws42{word-spacing:9.219507pt;}
.wsc1{word-spacing:9.219510pt;}
.ws40{word-spacing:9.220962pt;}
.ws7d{word-spacing:9.255744pt;}
.ws16{word-spacing:10.984887pt;}
.ws7c{word-spacing:11.331268pt;}
.ws89{word-spacing:11.778763pt;}
.ws8c{word-spacing:11.778829pt;}
.ws7a{word-spacing:11.782535pt;}
.ws7b{word-spacing:11.970926pt;}
.ws79{word-spacing:11.970990pt;}
.ws81{word-spacing:12.195812pt;}
.wsf8{word-spacing:13.203246pt;}
.wsab{word-spacing:13.251693pt;}
.wsd8{word-spacing:13.475015pt;}
.wsb6{word-spacing:13.475759pt;}
.ws37{word-spacing:13.476184pt;}
.ws1f{word-spacing:13.476290pt;}
.ws17{word-spacing:13.572888pt;}
.ws14{word-spacing:13.699454pt;}
.ws56{word-spacing:14.114431pt;}
.ws38{word-spacing:14.115334pt;}
.wsbb{word-spacing:14.340676pt;}
.wsf6{word-spacing:14.483692pt;}
.ws77{word-spacing:14.530843pt;}
.wsa{word-spacing:14.577947pt;}
.ws13{word-spacing:14.616548pt;}
.ws2c{word-spacing:14.616654pt;}
.ws48{word-spacing:14.617026pt;}
.wsc8{word-spacing:14.666388pt;}
.wsb7{word-spacing:14.756131pt;}
.wsdc{word-spacing:14.851241pt;}
.wsdd{word-spacing:14.852994pt;}
.wsc7{word-spacing:15.011068pt;}
.ws2a{word-spacing:15.169780pt;}
.ws86{word-spacing:15.257823pt;}
.wsba{word-spacing:15.258195pt;}
.ws49{word-spacing:15.258301pt;}
.wsc6{word-spacing:15.258522pt;}
.ws3c{word-spacing:15.395759pt;}
.ws64{word-spacing:15.466002pt;}
.wse2{word-spacing:15.575248pt;}
.wsf4{word-spacing:15.763135pt;}
.wse4{word-spacing:15.763279pt;}
.wsf1{word-spacing:15.763326pt;}
.wsef{word-spacing:15.784798pt;}
.ws10{word-spacing:15.858155pt;}
.wsa3{word-spacing:15.897398pt;}
.ws20{word-spacing:15.897451pt;}
.ws63{word-spacing:15.946866pt;}
.ws2d{word-spacing:16.035281pt;}
.wsc5{word-spacing:16.035334pt;}
.wsda{word-spacing:16.105258pt;}
.ws3a{word-spacing:16.132038pt;}
.ws6b{word-spacing:16.259772pt;}
.wsbf{word-spacing:16.259825pt;}
.wsd6{word-spacing:16.260144pt;}
.wse1{word-spacing:16.379783pt;}
.wsc{word-spacing:16.380596pt;}
.ws57{word-spacing:16.381768pt;}
.ws18{word-spacing:16.381874pt;}
.wse6{word-spacing:16.402450pt;}
.wsed{word-spacing:16.402833pt;}
.wsee{word-spacing:16.403215pt;}
.wsea{word-spacing:16.403311pt;}
.wsf5{word-spacing:16.404124pt;}
.wsdf{word-spacing:16.450471pt;}
.ws1c{word-spacing:16.451533pt;}
.ws34{word-spacing:16.451693pt;}
.ws41{word-spacing:16.486177pt;}
.wsc9{word-spacing:16.537079pt;}
.ws2e{word-spacing:16.537504pt;}
.wsb2{word-spacing:16.537876pt;}
.ws36{word-spacing:16.586441pt;}
.ws74{word-spacing:16.674856pt;}
.wsb9{word-spacing:16.676184pt;}
.wsa4{word-spacing:16.745152pt;}
.ws7f{word-spacing:16.746109pt;}
.wsd7{word-spacing:16.771082pt;}
.wsad{word-spacing:16.771613pt;}
.ws53{word-spacing:16.771719pt;}
.ws6d{word-spacing:16.932290pt;}
.ws43{word-spacing:17.020546pt;}
.wse8{word-spacing:17.042434pt;}
.wse7{word-spacing:17.044108pt;}
.wsb{word-spacing:17.065484pt;}
.wsaa{word-spacing:17.089939pt;}
.wsb4{word-spacing:17.090896pt;}
.wsac{word-spacing:17.176548pt;}
.wsbe{word-spacing:17.176813pt;}
.ws67{word-spacing:17.177079pt;}
.wsa2{word-spacing:17.226016pt;}
.ws29{word-spacing:17.314431pt;}
.ws3b{word-spacing:17.315759pt;}
.ws39{word-spacing:17.384780pt;}
.wse0{word-spacing:17.494770pt;}
.ws82{word-spacing:17.540251pt;}
.wsd1{word-spacing:17.540305pt;}
.ws54{word-spacing:17.572290pt;}
.wsf2{word-spacing:17.682419pt;}
.wse9{word-spacing:17.683710pt;}
.ws23{word-spacing:17.730842pt;}
.wsd3{word-spacing:17.816654pt;}
.ws97{word-spacing:17.817026pt;}
.ws55{word-spacing:17.817451pt;}
.ws70{word-spacing:17.817823pt;}
.ws6f{word-spacing:17.818195pt;}
.wsbc{word-spacing:17.956131pt;}
.ws5f{word-spacing:17.956184pt;}
.ws95{word-spacing:18.056087pt;}
.ws9f{word-spacing:18.212237pt;}
.wsd{word-spacing:18.299306pt;}
.wse5{word-spacing:18.323264pt;}
.wsf7{word-spacing:18.323694pt;}
.wsa0{word-spacing:18.370311pt;}
.ws1a{word-spacing:18.405486pt;}
.ws88{word-spacing:18.457451pt;}
.ws8b{word-spacing:18.458195pt;}
.ws69{word-spacing:18.458301pt;}
.wsce{word-spacing:18.594909pt;}
.wsa5{word-spacing:18.595706pt;}
.ws19{word-spacing:18.691241pt;}
.ws22{word-spacing:18.692941pt;}
.wscd{word-spacing:18.819400pt;}
.ws51{word-spacing:18.851281pt;}
.ws8d{word-spacing:18.851812pt;}
.ws8a{word-spacing:18.851918pt;}
.ws5b{word-spacing:18.940121pt;}
.ws47{word-spacing:18.940227pt;}
.ws4b{word-spacing:19.009886pt;}
.ws8{word-spacing:19.054538pt;}
.wscf{word-spacing:19.096601pt;}
.ws66{word-spacing:19.097770pt;}
.ws72{word-spacing:19.097929pt;}
.ws2b{word-spacing:19.235281pt;}
.ws30{word-spacing:19.236184pt;}
.ws65{word-spacing:19.248004pt;}
.ws9b{word-spacing:19.319330pt;}
.ws94{word-spacing:19.331507pt;}
.ws50{word-spacing:19.458975pt;}
.ws1b{word-spacing:19.491387pt;}
.wsf{word-spacing:19.495684pt;}
.ws33{word-spacing:19.581874pt;}
.wseb{word-spacing:19.602467pt;}
.ws52{word-spacing:19.651533pt;}
.ws35{word-spacing:19.651693pt;}
.ws15{word-spacing:19.737504pt;}
.wsa9{word-spacing:19.737876pt;}
.ws90{word-spacing:19.874856pt;}
.ws31{word-spacing:19.945312pt;}
.wsa1{word-spacing:19.971613pt;}
.wsaf{word-spacing:20.099028pt;}
.ws85{word-spacing:20.132290pt;}
.ws6{word-spacing:20.135764pt;}
.ws93{word-spacing:20.221449pt;}
.wsec{word-spacing:20.243312pt;}
.ws71{word-spacing:20.376548pt;}
.ws21{word-spacing:20.377079pt;}
.ws46{word-spacing:20.427716pt;}
.ws2f{word-spacing:20.612091pt;}
.wsa8{word-spacing:20.612888pt;}
.wse{word-spacing:20.859721pt;}
.ws9{word-spacing:20.899986pt;}
.wsae{word-spacing:20.930842pt;}
.ws92{word-spacing:20.966921pt;}
.ws9d{word-spacing:21.017185pt;}
.ws73{word-spacing:21.017451pt;}
.ws1e{word-spacing:21.154962pt;}
.ws4c{word-spacing:21.156131pt;}
.ws91{word-spacing:21.379028pt;}
.wsa7{word-spacing:21.412343pt;}
.wsf3{word-spacing:21.522899pt;}
.ws1{word-spacing:21.706441pt;}
.ws45{word-spacing:21.706759pt;}
.ws3{word-spacing:21.707291pt;}
.ws9a{word-spacing:21.795759pt;}
.wsb1{word-spacing:21.795812pt;}
.ws8f{word-spacing:22.051812pt;}
.wsd9{word-spacing:22.434484pt;}
.wsb3{word-spacing:22.435281pt;}
.ws24{word-spacing:22.435334pt;}
.ws32{word-spacing:22.435387pt;}
.ws4e{word-spacing:22.691440pt;}
.wsf0{word-spacing:22.803776pt;}
.wsb8{word-spacing:23.075015pt;}
.ws1d{word-spacing:23.421343pt;}
.ws58{word-spacing:23.525380pt;}
.ws7{word-spacing:23.535002pt;}
.ws28{word-spacing:23.576813pt;}
.ws5c{word-spacing:24.216654pt;}
.wsde{word-spacing:25.066055pt;}
.ws5a{word-spacing:26.826016pt;}
.ws8e{word-spacing:26.827344pt;}
.wsd5{word-spacing:32.084816pt;}
.ws12{word-spacing:32.724179pt;}
.wsdb{word-spacing:32.725135pt;}
.ws9e{word-spacing:36.427609pt;}
.ws6e{word-spacing:78.201117pt;}
.ws7e{word-spacing:89.859825pt;}
.ws6c{word-spacing:194.083784pt;}
.wsbd{word-spacing:299.742108pt;}
.wsc4{word-spacing:958.670611pt;}
._24{margin-left:-26.634789pt;}
._a{margin-left:-24.935209pt;}
._26{margin-left:-23.077457pt;}
._b{margin-left:-20.514115pt;}
._25{margin-left:-5.644970pt;}
._2{margin-left:-4.733985pt;}
._9{margin-left:-3.190042pt;}
._0{margin-left:-1.962637pt;}
._6{margin-left:-0.931122pt;}
._1{width:1.149434pt;}
._c{width:2.726559pt;}
._18{width:3.823430pt;}
._27{width:6.610643pt;}
._3{width:8.324703pt;}
._1e{width:9.265459pt;}
._15{width:12.111840pt;}
._16{width:13.118923pt;}
._14{width:14.827094pt;}
._f{width:15.858024pt;}
._11{width:17.337725pt;}
._10{width:18.816415pt;}
._8{width:20.531152pt;}
._5{width:21.538776pt;}
._4{width:23.040425pt;}
._1a{width:23.971621pt;}
._d{width:25.011679pt;}
._e{width:26.284620pt;}
._1f{width:27.182352pt;}
._13{width:28.659554pt;}
._7{width:29.867370pt;}
._20{width:31.450271pt;}
._21{width:32.555477pt;}
._17{width:33.653307pt;}
._22{width:34.576041pt;}
._19{width:35.817441pt;}
._12{width:37.033645pt;}
._1d{width:38.556688pt;}
._23{width:40.099461pt;}
._1b{width:41.811661pt;}
._1c{width:56.988517pt;}
.fs8{font-size:17.188480pt;}
.fs4{font-size:31.880427pt;}
.fs3{font-size:37.193867pt;}
.fs6{font-size:42.507253pt;}
.fs5{font-size:47.820693pt;}
.fs7{font-size:48.127733pt;}
.fs2{font-size:53.134080pt;}
.fs9{font-size:60.171733pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:9.918667pt;}
.yc6{bottom:12.401333pt;}
.y5c{bottom:20.733333pt;}
.ybf{bottom:25.922667pt;}
.y5d{bottom:28.682667pt;}
.y65{bottom:31.584000pt;}
.y77{bottom:34.698667pt;}
.yc0{bottom:35.861333pt;}
.ya7{bottom:48.736000pt;}
.y78{bottom:64.636000pt;}
.ya8{bottom:73.766667pt;}
.y5e{bottom:77.777333pt;}
.yc1{bottom:91.690667pt;}
.ye3{bottom:93.920213pt;}
.y76{bottom:93.920400pt;}
.y79{bottom:94.536000pt;}
.ya6{bottom:94.880400pt;}
.ybd{bottom:96.320533pt;}
.ya9{bottom:98.833333pt;}
.y119{bottom:100.161333pt;}
.y36{bottom:106.560533pt;}
.ye2{bottom:109.120213pt;}
.y75{bottom:109.120400pt;}
.y5a{bottom:109.760000pt;}
.ya5{bottom:110.080400pt;}
.ybc{bottom:111.680400pt;}
.y118{bottom:114.081600pt;}
.yc7{bottom:120.522667pt;}
.y35{bottom:121.760533pt;}
.yaa{bottom:123.864000pt;}
.y7a{bottom:124.473333pt;}
.y74{bottom:124.480267pt;}
.y59{bottom:124.960000pt;}
.ya4{bottom:125.440267pt;}
.y64{bottom:126.048000pt;}
.y6b{bottom:126.049333pt;}
.y5f{bottom:126.872000pt;}
.ybb{bottom:126.880400pt;}
.y117{bottom:128.161333pt;}
.y34{bottom:137.120933pt;}
.y58{bottom:140.320400pt;}
.ya3{bottom:140.640267pt;}
.y116{bottom:142.081600pt;}
.yba{bottom:142.240267pt;}
.ye1{bottom:143.359813pt;}
.yc2{bottom:147.474667pt;}
.yab{bottom:148.930667pt;}
.y73{bottom:150.720400pt;}
.y33{bottom:152.320933pt;}
.y7b{bottom:154.409333pt;}
.y57{bottom:155.520400pt;}
.ya2{bottom:156.000133pt;}
.y115{bottom:156.001333pt;}
.yb9{bottom:157.440267pt;}
.y32{bottom:167.680800pt;}
.y114{bottom:169.921600pt;}
.y56{bottom:170.880267pt;}
.ya1{bottom:171.200133pt;}
.yb8{bottom:172.800133pt;}
.yac{bottom:173.961333pt;}
.y60{bottom:175.966667pt;}
.y31{bottom:182.880800pt;}
.y113{bottom:183.841333pt;}
.y7c{bottom:184.345333pt;}
.y55{bottom:186.080267pt;}
.ya0{bottom:186.560000pt;}
.ye0{bottom:186.880080pt;}
.yb7{bottom:188.000133pt;}
.y72{bottom:192.160000pt;}
.y83{bottom:193.549333pt;}
.y112{bottom:197.761067pt;}
.y30{bottom:198.240667pt;}
.yad{bottom:198.992000pt;}
.y54{bottom:201.440133pt;}
.y9f{bottom:201.760000pt;}
.ydf{bottom:202.239947pt;}
.yc3{bottom:203.258667pt;}
.yb6{bottom:203.360000pt;}
.y71{bottom:207.520400pt;}
.y82{bottom:207.729333pt;}
.y111{bottom:211.841333pt;}
.y2f{bottom:213.440667pt;}
.y7d{bottom:214.282667pt;}
.y53{bottom:216.640133pt;}
.y9e{bottom:217.120400pt;}
.yde{bottom:217.439947pt;}
.y81{bottom:221.874667pt;}
.y70{bottom:222.720400pt;}
.yae{bottom:224.058667pt;}
.y61{bottom:225.061333pt;}
.y110{bottom:225.761067pt;}
.y2e{bottom:228.800533pt;}
.y9d{bottom:232.320400pt;}
.ydd{bottom:232.799813pt;}
.yb0{bottom:235.982667pt;}
.y80{bottom:236.018667pt;}
.yb5{bottom:237.440267pt;}
.y6f{bottom:238.080267pt;}
.y10f{bottom:239.681333pt;}
.y2d{bottom:244.000533pt;}
.y7e{bottom:244.220000pt;}
.y9c{bottom:247.520400pt;}
.ydc{bottom:247.999813pt;}
.yaf{bottom:249.089333pt;}
.y68{bottom:250.164000pt;}
.y52{bottom:250.880267pt;}
.y6e{bottom:253.280267pt;}
.y10e{bottom:253.601067pt;}
.yc4{bottom:259.042667pt;}
.y2c{bottom:259.360400pt;}
.y9b{bottom:262.880267pt;}
.ydb{bottom:263.359680pt;}
.y67{bottom:264.308000pt;}
.y7f{bottom:264.344000pt;}
.y10d{bottom:267.521333pt;}
.y62{bottom:274.120000pt;}
.y2b{bottom:274.560400pt;}
.y1{bottom:276.000000pt;}
.y66{bottom:277.057333pt;}
.y9a{bottom:278.080267pt;}
.yda{bottom:278.559680pt;}
.yb4{bottom:281.600133pt;}
.y10c{bottom:281.601067pt;}
.y2a{bottom:289.920800pt;}
.y99{bottom:293.440133pt;}
.yd9{bottom:293.920080pt;}
.y51{bottom:295.040133pt;}
.y10b{bottom:295.521333pt;}
.yb3{bottom:296.960000pt;}
.y6d{bottom:298.560000pt;}
.y29{bottom:305.120800pt;}
.y98{bottom:308.640133pt;}
.yd8{bottom:309.120080pt;}
.y10a{bottom:309.441067pt;}
.y50{bottom:310.240133pt;}
.yb2{bottom:312.160000pt;}
.y6c{bottom:313.760000pt;}
.yc5{bottom:314.826667pt;}
.y28{bottom:320.480667pt;}
.y97{bottom:324.000000pt;}
.yd7{bottom:324.479947pt;}
.y109{bottom:325.121333pt;}
.y4f{bottom:325.600000pt;}
.y27{bottom:335.680667pt;}
.y6a{bottom:337.832000pt;}
.y108{bottom:339.041067pt;}
.y96{bottom:339.200000pt;}
.yd6{bottom:339.679947pt;}
.y4e{bottom:340.800000pt;}
.y26{bottom:351.040533pt;}
.y107{bottom:352.960800pt;}
.y95{bottom:354.559867pt;}
.yd5{bottom:354.879947pt;}
.y4d{bottom:356.159867pt;}
.yb1{bottom:359.360000pt;}
.y25{bottom:366.240533pt;}
.y106{bottom:366.881067pt;}
.y94{bottom:369.759867pt;}
.yd4{bottom:370.239813pt;}
.y4c{bottom:371.359867pt;}
.y105{bottom:380.800800pt;}
.y24{bottom:381.440533pt;}
.y93{bottom:385.120267pt;}
.y4b{bottom:386.720267pt;}
.yd1{bottom:393.920000pt;}
.y104{bottom:394.881067pt;}
.y23{bottom:396.800400pt;}
.yd3{bottom:399.039813pt;}
.y92{bottom:400.320267pt;}
.y4a{bottom:401.920267pt;}
.yd2{bottom:403.039813pt;}
.yd0{bottom:403.040173pt;}
.y103{bottom:408.800800pt;}
.y22{bottom:412.000400pt;}
.y91{bottom:415.680133pt;}
.y49{bottom:417.280133pt;}
.y102{bottom:422.720533pt;}
.y21{bottom:427.360267pt;}
.y90{bottom:430.880133pt;}
.y48{bottom:432.480133pt;}
.y101{bottom:436.640800pt;}
.ycf{bottom:440.319907pt;}
.y20{bottom:442.560267pt;}
.y8f{bottom:446.240000pt;}
.y47{bottom:447.840000pt;}
.y100{bottom:450.560533pt;}
.yce{bottom:455.519907pt;}
.y1f{bottom:457.920133pt;}
.y8e{bottom:461.440000pt;}
.y46{bottom:463.040000pt;}
.yff{bottom:464.480800pt;}
.y1e{bottom:473.120133pt;}
.y8d{bottom:476.799867pt;}
.y45{bottom:478.399867pt;}
.yfe{bottom:478.560533pt;}
.ycc{bottom:480.960000pt;}
.y1d{bottom:488.480533pt;}
.ycb{bottom:490.079867pt;}
.ycd{bottom:490.080307pt;}
.y8c{bottom:491.999867pt;}
.yfd{bottom:492.480800pt;}
.y44{bottom:493.599867pt;}
.y1c{bottom:503.680533pt;}
.yfc{bottom:506.400533pt;}
.y8b{bottom:507.359733pt;}
.y43{bottom:508.959733pt;}
.y1b{bottom:519.040400pt;}
.yfb{bottom:520.320267pt;}
.y8a{bottom:522.559733pt;}
.y42{bottom:524.159733pt;}
.yca{bottom:526.559600pt;}
.y1a{bottom:534.240400pt;}
.yfa{bottom:534.240533pt;}
.y89{bottom:537.759733pt;}
.y41{bottom:539.519600pt;}
.yc9{bottom:541.759600pt;}
.yf9{bottom:548.160267pt;}
.y19{bottom:549.600267pt;}
.y88{bottom:553.120133pt;}
.y40{bottom:554.720133pt;}
.yf8{bottom:562.240533pt;}
.y18{bottom:564.800267pt;}
.y87{bottom:568.320133pt;}
.y3f{bottom:570.080000pt;}
.yf7{bottom:576.160267pt;}
.y17{bottom:580.160133pt;}
.y86{bottom:583.680000pt;}
.y3e{bottom:585.280000pt;}
.yc8{bottom:585.920000pt;}
.yf6{bottom:590.080533pt;}
.y16{bottom:595.360133pt;}
.y85{bottom:598.880000pt;}
.y3d{bottom:600.480000pt;}
.yf5{bottom:604.000267pt;}
.ybe{bottom:610.009333pt;}
.y15{bottom:610.720533pt;}
.y84{bottom:614.239867pt;}
.y3c{bottom:615.839867pt;}
.yf4{bottom:617.920533pt;}
.y14{bottom:625.920533pt;}
.y3b{bottom:631.039867pt;}
.yf3{bottom:631.840267pt;}
.y13{bottom:641.280400pt;}
.yf2{bottom:645.920533pt;}
.y12{bottom:656.480400pt;}
.yf1{bottom:659.840267pt;}
.y69{bottom:661.280000pt;}
.y3a{bottom:665.280000pt;}
.yf0{bottom:673.760000pt;}
.y5b{bottom:685.352000pt;}
.yef{bottom:687.680267pt;}
.y11{bottom:690.720533pt;}
.y12d{bottom:694.400667pt;}
.yee{bottom:701.600000pt;}
.y12c{bottom:708.320933pt;}
.y39{bottom:709.439867pt;}
.yed{bottom:715.520267pt;}
.y12b{bottom:722.240667pt;}
.yec{bottom:729.600000pt;}
.y10{bottom:734.880400pt;}
.y12a{bottom:736.160400pt;}
.y129{bottom:750.080667pt;}
.y38{bottom:756.480000pt;}
.yf{bottom:761.440267pt;}
.y128{bottom:764.000400pt;}
.ye{bottom:775.360000pt;}
.y127{bottom:778.080667pt;}
.yd{bottom:789.280267pt;}
.y126{bottom:792.000400pt;}
.yc{bottom:803.200000pt;}
.y125{bottom:805.920133pt;}
.yb{bottom:817.280267pt;}
.yeb{bottom:818.559867pt;}
.y124{bottom:819.840400pt;}
.ya{bottom:831.200000pt;}
.yea{bottom:833.759867pt;}
.y123{bottom:833.760133pt;}
.y9{bottom:845.119733pt;}
.y122{bottom:847.680400pt;}
.ye9{bottom:849.119733pt;}
.y8{bottom:859.040000pt;}
.y121{bottom:861.760133pt;}
.y120{bottom:875.680400pt;}
.ye8{bottom:883.200000pt;}
.y7{bottom:885.599867pt;}
.y11f{bottom:889.600133pt;}
.y11e{bottom:903.519867pt;}
.y6{bottom:904.639907pt;}
.y11d{bottom:917.440133pt;}
.y5{bottom:918.559693pt;}
.ye7{bottom:927.519733pt;}
.y11c{bottom:931.519867pt;}
.y4{bottom:932.480000pt;}
.y3{bottom:941.439867pt;}
.ye6{bottom:942.719733pt;}
.y11b{bottom:945.440133pt;}
.ye5{bottom:958.080133pt;}
.y11a{bottom:959.359867pt;}
.y2{bottom:973.280000pt;}
.ye4{bottom:973.280133pt;}
.y37{bottom:1007.840000pt;}
.hc{height:17.927048pt;}
.h4{height:21.200484pt;}
.h6{height:30.350179pt;}
.h7{height:33.474485pt;}
.h5{height:35.865520pt;}
.h8{height:39.850560pt;}
.h2{height:44.632747pt;}
.h3{height:45.012543pt;}
.h9{height:45.652117pt;}
.h12{height:45.654197pt;}
.hd{height:47.570890pt;}
.h18{height:48.023867pt;}
.h17{height:48.025947pt;}
.hb{height:50.195722pt;}
.h16{height:53.292213pt;}
.h14{height:55.416253pt;}
.h15{height:55.850560pt;}
.hf{height:62.757237pt;}
.h10{height:77.004297pt;}
.h1{height:104.687500pt;}
.h11{height:127.735027pt;}
.h13{height:128.374653pt;}
.ha{height:301.156000pt;}
.he{height:376.518667pt;}
.h0{height:1056.000000pt;}
.w1{width:541.866667pt;}
.w2{width:677.466667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:42.666667pt;}
.x16{left:50.813333pt;}
.x13{left:55.468000pt;}
.x14{left:62.522667pt;}
.x27{left:63.977333pt;}
.x17{left:69.828000pt;}
.xc{left:71.999867pt;}
.x1c{left:73.919733pt;}
.x2{left:77.919733pt;}
.x25{left:83.900000pt;}
.xb{left:85.279867pt;}
.x1b{left:89.165333pt;}
.x1e{left:94.719867pt;}
.x33{left:96.480267pt;}
.x6{left:118.239867pt;}
.x12{left:128.949333pt;}
.x11{left:139.680000pt;}
.x22{left:140.640000pt;}
.x23{left:142.080000pt;}
.x9{left:145.119867pt;}
.x20{left:147.040000pt;}
.x4{left:150.879920pt;}
.x8{left:157.279867pt;}
.x7{left:161.759867pt;}
.x3{left:164.959733pt;}
.x1a{left:185.280000pt;}
.x28{left:186.400000pt;}
.xe{left:190.240000pt;}
.x35{left:226.397600pt;}
.x32{left:227.360000pt;}
.x5{left:238.399813pt;}
.x24{left:258.400000pt;}
.x15{left:261.085333pt;}
.x10{left:284.799560pt;}
.x2c{left:308.960947pt;}
.xf{left:311.841067pt;}
.x31{left:314.400000pt;}
.x26{left:317.288000pt;}
.x29{left:328.640000pt;}
.xa{left:341.119867pt;}
.x30{left:344.319867pt;}
.x2d{left:379.040000pt;}
.x1d{left:380.799867pt;}
.x2a{left:392.160000pt;}
.x1f{left:443.928000pt;}
.x2e{left:447.519720pt;}
.x2f{left:457.119733pt;}
.x21{left:458.825333pt;}
.x2b{left:462.880360pt;}
.x19{left:466.632000pt;}
.x18{left:489.800000pt;}
.x34{left:645.278133pt;}
.xd{left:742.880000pt;}
}




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