
    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_f83a92eee9744bb1bd305613.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_05d334afd5809d05295c8fec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_7297052ae58286c5da9e6be1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_1c1eb6317308930a9d525213.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_1250e6064dd969d08ba65d5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908691;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_3ffa80205fd0cbdb4393f0bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.702148;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_a57ce98e68ef50b54266b02c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2181cdbca6628ce0df50bcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_615e04387ea4c745742e9fbd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.842773;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_a0f0608ee2cab2acf2093821.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
.m1{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);}
.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);}
.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:-27.360000px;}
.v4{vertical-align:-12.052800px;}
.v3{vertical-align:-2.151360px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v5{vertical-align:22.320000px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:40.320000px;}
.v7{vertical-align:46.074960px;}
.ls26{letter-spacing:-8.064000px;}
.ls27{letter-spacing:-5.112000px;}
.ls2c{letter-spacing:-4.422240px;}
.ls6a{letter-spacing:-4.158000px;}
.ls4e{letter-spacing:-4.123440px;}
.ls4b{letter-spacing:-3.525840px;}
.ls5c{letter-spacing:-1.195200px;}
.ls33{letter-spacing:-0.776880px;}
.ls22{letter-spacing:-0.758160px;}
.ls2f{letter-spacing:-0.597600px;}
.ls6b{letter-spacing:-0.594000px;}
.ls6c{letter-spacing:-0.540000px;}
.ls4d{letter-spacing:-0.537840px;}
.ls31{letter-spacing:-0.478080px;}
.ls68{letter-spacing:-0.378000px;}
.ls2d{letter-spacing:-0.358560px;}
.ls28{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.239040px;}
.ls67{letter-spacing:-0.216000px;}
.ls69{letter-spacing:-0.144720px;}
.ls25{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.119520px;}
.ls6e{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.059760px;}
.ls24{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.059760px;}
.ls56{letter-spacing:0.065736px;}
.ls32{letter-spacing:0.072000px;}
.ls57{letter-spacing:0.077688px;}
.ls52{letter-spacing:0.095040px;}
.ls64{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.119520px;}
.ls29{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.149400px;}
.ls12{letter-spacing:0.161352px;}
.ls63{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.167328px;}
.ls9{letter-spacing:0.179280px;}
.ls6d{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.239040px;}
.ls11{letter-spacing:0.274896px;}
.ls30{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.336960px;}
.ls2{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.378000px;}
.ls4c{letter-spacing:0.792000px;}
.ls58{letter-spacing:0.890424px;}
.ls18{letter-spacing:0.896400px;}
.ls3a{letter-spacing:1.613520px;}
.ls19{letter-spacing:2.031840px;}
.ls3c{letter-spacing:2.091600px;}
.ls4f{letter-spacing:2.109528px;}
.ls17{letter-spacing:2.270880px;}
.lse{letter-spacing:2.312712px;}
.ls7{letter-spacing:2.330640px;}
.ls3b{letter-spacing:2.336616px;}
.ls1d{letter-spacing:2.460960px;}
.ls21{letter-spacing:2.509920px;}
.ls54{letter-spacing:2.662560px;}
.ls53{letter-spacing:2.796480px;}
.ls45{letter-spacing:3.047760px;}
.ls59{letter-spacing:3.089592px;}
.ls60{letter-spacing:3.137400px;}
.ls1{letter-spacing:3.764880px;}
.ls65{letter-spacing:3.780000px;}
.ls3d{letter-spacing:4.268160px;}
.ls1a{letter-spacing:4.428216px;}
.lsb{letter-spacing:4.482000px;}
.ls10{letter-spacing:4.541760px;}
.ls3e{letter-spacing:4.665600px;}
.lsd{letter-spacing:5.199120px;}
.ls50{letter-spacing:5.211072px;}
.ls4{letter-spacing:5.916240px;}
.lsc{letter-spacing:5.934168px;}
.ls35{letter-spacing:6.633360px;}
.ls49{letter-spacing:6.687144px;}
.ls5{letter-spacing:8.127360px;}
.lsf{letter-spacing:9.531720px;}
.ls5b{letter-spacing:10.278720px;}
.ls5e{letter-spacing:11.718000px;}
.ls40{letter-spacing:12.967920px;}
.ls34{letter-spacing:13.147200px;}
.ls5f{letter-spacing:15.678000px;}
.ls36{letter-spacing:16.015680px;}
.ls3f{letter-spacing:16.140960px;}
.ls1c{letter-spacing:16.553520px;}
.ls14{letter-spacing:17.270640px;}
.ls1b{letter-spacing:18.645120px;}
.ls13{letter-spacing:18.824400px;}
.ls39{letter-spacing:18.884160px;}
.ls5a{letter-spacing:19.601280px;}
.ls42{letter-spacing:20.108160px;}
.ls44{letter-spacing:20.505600px;}
.ls66{letter-spacing:26.483760px;}
.ls1e{letter-spacing:36.300960px;}
.ls15{letter-spacing:36.752400px;}
.ls1f{letter-spacing:38.903760px;}
.ls61{letter-spacing:41.958000px;}
.ls62{letter-spacing:50.266080px;}
.ls43{letter-spacing:77.052960px;}
.ls38{letter-spacing:77.927040px;}
.ls37{letter-spacing:77.980824px;}
.ls55{letter-spacing:142.766640px;}
.ls51{letter-spacing:146.352240px;}
.ls46{letter-spacing:185.196240px;}
.ls41{letter-spacing:205.212960px;}
.ls48{letter-spacing:256.489920px;}
.ls47{letter-spacing:290.314080px;}
.ls20{letter-spacing:514.951920px;}
.ls16{letter-spacing:573.277680px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws57{word-spacing:-46.074959px;}
.ws8a{word-spacing:-28.944000px;}
.ws85{word-spacing:-28.799280px;}
.ws11{word-spacing:-24.382080px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.301840px;}
.ws58{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.ws4{word-spacing:-15.298560px;}
.ws8{word-spacing:-15.179040px;}
.wsa{word-spacing:-15.059520px;}
.ws9{word-spacing:-14.999760px;}
.ws7{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.880240px;}
.wsd{word-spacing:-14.820480px;}
.wse{word-spacing:-14.700960px;}
.wsb{word-spacing:-14.581440px;}
.wsf{word-spacing:-14.461920px;}
.ws13{word-spacing:-14.163120px;}
.ws86{word-spacing:-13.878000px;}
.ws74{word-spacing:-13.744800px;}
.ws89{word-spacing:-13.608000px;}
.ws87{word-spacing:-13.500000px;}
.ws8b{word-spacing:-13.284000px;}
.ws88{word-spacing:-13.122000px;}
.ws59{word-spacing:-10.816560px;}
.ws6{word-spacing:-10.517760px;}
.ws3{word-spacing:-9.936000px;}
.ws7b{word-spacing:-5.497920px;}
.ws4c{word-spacing:-4.176000px;}
.ws3b{word-spacing:-3.764880px;}
.ws54{word-spacing:-3.645360px;}
.ws83{word-spacing:-3.346560px;}
.ws97{word-spacing:-3.078000px;}
.ws77{word-spacing:-3.047760px;}
.ws4b{word-spacing:-2.808720px;}
.ws6d{word-spacing:-2.748960px;}
.ws78{word-spacing:-2.629440px;}
.ws4f{word-spacing:-2.330640px;}
.ws96{word-spacing:-2.106000px;}
.ws50{word-spacing:-2.091600px;}
.ws79{word-spacing:-1.912320px;}
.ws43{word-spacing:-1.613520px;}
.ws19{word-spacing:-1.440000px;}
.ws48{word-spacing:-1.374480px;}
.ws15{word-spacing:-1.263600px;}
.ws42{word-spacing:-1.195200px;}
.wsa1{word-spacing:-0.918000px;}
.ws32{word-spacing:-0.896400px;}
.ws5e{word-spacing:-0.792000px;}
.ws20{word-spacing:-0.657360px;}
.wsb4{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.505440px;}
.ws21{word-spacing:-0.478080px;}
.ws34{word-spacing:-0.358560px;}
.wsa2{word-spacing:-0.324000px;}
.ws47{word-spacing:-0.298800px;}
.ws40{word-spacing:-0.239040px;}
.wsaa{word-spacing:-0.216000px;}
.ws1f{word-spacing:-0.179280px;}
.ws8e{word-spacing:-0.162000px;}
.ws1b{word-spacing:-0.144000px;}
.ws31{word-spacing:-0.119520px;}
.ws4d{word-spacing:-0.072000px;}
.ws33{word-spacing:-0.059760px;}
.ws16{word-spacing:0.000000px;}
.ws1d{word-spacing:0.059760px;}
.ws17{word-spacing:0.144000px;}
.ws95{word-spacing:0.144720px;}
.wsa4{word-spacing:0.216000px;}
.ws3e{word-spacing:0.239040px;}
.ws1a{word-spacing:0.288000px;}
.ws70{word-spacing:0.298800px;}
.ws64{word-spacing:0.358560px;}
.wsa9{word-spacing:0.378000px;}
.ws4e{word-spacing:0.418320px;}
.ws7d{word-spacing:0.478080px;}
.ws38{word-spacing:0.537840px;}
.ws8c{word-spacing:0.540000px;}
.ws3d{word-spacing:0.597600px;}
.wsab{word-spacing:0.702000px;}
.ws52{word-spacing:0.776880px;}
.ws8d{word-spacing:0.810000px;}
.wsa7{word-spacing:0.918000px;}
.ws51{word-spacing:0.956160px;}
.ws8f{word-spacing:1.134000px;}
.ws66{word-spacing:1.254960px;}
.ws68{word-spacing:1.494000px;}
.wsa8{word-spacing:1.512000px;}
.ws67{word-spacing:1.673280px;}
.ws39{word-spacing:1.972080px;}
.ws2c{word-spacing:2.211120px;}
.ws3a{word-spacing:2.390400px;}
.ws41{word-spacing:2.569680px;}
.ws2e{word-spacing:2.689200px;}
.ws76{word-spacing:2.808720px;}
.ws69{word-spacing:2.928240px;}
.ws5c{word-spacing:2.988000px;}
.ws6a{word-spacing:3.107520px;}
.ws91{word-spacing:3.294000px;}
.wsb3{word-spacing:3.402000px;}
.ws1c{word-spacing:3.406320px;}
.wsb5{word-spacing:3.456000px;}
.ws7f{word-spacing:3.645360px;}
.ws18{word-spacing:3.672000px;}
.wsa6{word-spacing:3.996000px;}
.ws1e{word-spacing:4.003920px;}
.ws2b{word-spacing:4.123440px;}
.wsae{word-spacing:4.158000px;}
.wsa5{word-spacing:4.320000px;}
.ws37{word-spacing:4.362480px;}
.ws35{word-spacing:4.541760px;}
.wsa3{word-spacing:4.698000px;}
.ws2d{word-spacing:4.840560px;}
.ws92{word-spacing:4.860000px;}
.ws36{word-spacing:5.079600px;}
.ws3f{word-spacing:5.258880px;}
.ws90{word-spacing:5.454000px;}
.ws3c{word-spacing:5.557680px;}
.ws25{word-spacing:5.796720px;}
.ws73{word-spacing:5.976000px;}
.ws72{word-spacing:6.274800px;}
.ws75{word-spacing:6.513840px;}
.ws5d{word-spacing:6.693120px;}
.ws49{word-spacing:7.051680px;}
.ws9a{word-spacing:7.236000px;}
.ws56{word-spacing:7.290720px;}
.ws4a{word-spacing:7.470000px;}
.ws26{word-spacing:7.768800px;}
.ws28{word-spacing:7.888320px;}
.ws9b{word-spacing:7.938000px;}
.ws84{word-spacing:8.007840px;}
.ws27{word-spacing:8.187120px;}
.ws98{word-spacing:8.424000px;}
.ws9c{word-spacing:8.478000px;}
.ws29{word-spacing:8.485920px;}
.ws24{word-spacing:8.605440px;}
.ws2a{word-spacing:8.724960px;}
.ws46{word-spacing:8.904240px;}
.ws9d{word-spacing:9.180000px;}
.ws23{word-spacing:9.203040px;}
.ws99{word-spacing:9.396000px;}
.ws22{word-spacing:9.442080px;}
.ws9f{word-spacing:9.450000px;}
.ws7a{word-spacing:9.501840px;}
.ws45{word-spacing:9.621360px;}
.wsa0{word-spacing:9.774000px;}
.ws44{word-spacing:9.800640px;}
.ws30{word-spacing:9.920160px;}
.ws9e{word-spacing:10.152000px;}
.ws82{word-spacing:10.517760px;}
.ws93{word-spacing:11.340000px;}
.ws5a{word-spacing:12.071520px;}
.ws94{word-spacing:12.096000px;}
.ws2f{word-spacing:12.788640px;}
.ws5b{word-spacing:13.027680px;}
.ws6f{word-spacing:13.505760px;}
.ws6b{word-spacing:13.744800px;}
.ws6e{word-spacing:13.924080px;}
.ws6c{word-spacing:14.222880px;}
.ws53{word-spacing:15.179040px;}
.ws60{word-spacing:15.896160px;}
.ws61{word-spacing:16.254720px;}
.ws7e{word-spacing:16.374240px;}
.ws7c{word-spacing:17.330400px;}
.ws5f{word-spacing:17.808480px;}
.wsb1{word-spacing:17.820000px;}
.wsaf{word-spacing:17.982000px;}
.wsb2{word-spacing:18.306000px;}
.ws65{word-spacing:18.525600px;}
.wsb0{word-spacing:18.792000px;}
.wsb6{word-spacing:19.440000px;}
.ws81{word-spacing:19.481760px;}
.ws80{word-spacing:19.661040px;}
.wsb7{word-spacing:19.980000px;}
.ws55{word-spacing:20.198880px;}
.ws63{word-spacing:22.170960px;}
.ws71{word-spacing:24.322320px;}
.ws62{word-spacing:77.568480px;}
.wsac{word-spacing:170.424000px;}
.wsad{word-spacing:172.098000px;}
._7{margin-left:-9.504000px;}
._4{margin-left:-7.632001px;}
._2{margin-left:-5.453856px;}
._3{margin-left:-3.888000px;}
._9{margin-left:-2.497393px;}
._1{margin-left:-1.314144px;}
._0{width:1.128816px;}
._6{width:2.591997px;}
._a{width:3.763153px;}
._8{width:5.202144px;}
._14{width:6.986017px;}
._5{width:8.352001px;}
._10{width:9.560449px;}
._1c{width:11.116511px;}
._15{width:13.613329px;}
._1d{width:15.329376px;}
._13{width:18.419328px;}
._20{width:20.273905px;}
._12{width:22.172112px;}
._11{width:23.388916px;}
._1b{width:24.680880px;}
._19{width:28.401840px;}
._18{width:30.183553px;}
._1e{width:42.637393px;}
._1a{width:122.746464px;}
._1f{width:171.090721px;}
._17{width:201.749760px;}
._16{width:225.660384px;}
._d{width:471.777180px;}
._b{width:482.360940px;}
._c{width:800.889120px;}
._e{width:1347.426600px;}
._f{width:1963.776360px;}
.fc3{color:rgb(54,95,145);}
.fc2{color:transparent;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y86{bottom:3.240000px;}
.y52{bottom:6.600001px;}
.yc2{bottom:6.660000px;}
.ybd{bottom:6.840000px;}
.y54{bottom:22.500000px;}
.y55{bottom:42.000000px;}
.y104{bottom:87.326460px;}
.ya5{bottom:87.804000px;}
.yca{bottom:91.788840px;}
.y103{bottom:104.612040px;}
.ya4{bottom:105.089580px;}
.y34{bottom:107.705520px;}
.yc9{bottom:109.074420px;}
.y102{bottom:121.897620px;}
.y33{bottom:124.991100px;}
.yc8{bottom:126.360000px;}
.y56{bottom:130.500000px;}
.y101{bottom:139.183200px;}
.y32{bottom:142.276680px;}
.y50{bottom:143.439120px;}
.yc7{bottom:148.680000px;}
.y100{bottom:156.468780px;}
.y31{bottom:159.382980px;}
.y4f{bottom:160.724700px;}
.yff{bottom:173.575080px;}
.y30{bottom:176.668560px;}
.y4e{bottom:178.010280px;}
.y85{bottom:179.100000px;}
.yc5{bottom:180.540000px;}
.yc6{bottom:187.380000px;}
.yc4{bottom:187.387560px;}
.y80{bottom:189.360000px;}
.yfe{bottom:190.860660px;}
.y2f{bottom:193.954140px;}
.y4d{bottom:195.475140px;}
.y7f{bottom:199.434780px;}
.yc1{bottom:205.020000px;}
.yfd{bottom:208.146240px;}
.y84{bottom:208.620915px;}
.y2e{bottom:211.239720px;}
.yc0{bottom:211.673340px;}
.yc3{bottom:211.680000px;}
.y4c{bottom:212.941260px;}
.yfc{bottom:225.431820px;}
.y2d{bottom:228.525300px;}
.y7e{bottom:229.140000px;}
.ybf{bottom:229.320000px;}
.y83{bottom:234.907560px;}
.ybe{bottom:236.160000px;}
.y7d{bottom:239.214060px;}
.y4a{bottom:239.353200px;}
.y4b{bottom:239.937840px;}
.yfb{bottom:242.717400px;}
.y2c{bottom:245.631600px;}
.ybc{bottom:253.800000px;}
.yfa{bottom:260.002980px;}
.ybb{bottom:260.640000px;}
.y82{bottom:261.187020px;}
.y2b{bottom:262.917180px;}
.y49{bottom:265.991220px;}
.y7c{bottom:268.740000px;}
.yf9{bottom:277.109280px;}
.y7b{bottom:278.819640px;}
.y2a{bottom:280.202760px;}
.y48{bottom:283.276800px;}
.y81{bottom:287.287200px;}
.yba{bottom:287.427600px;}
.yf8{bottom:294.394860px;}
.y29{bottom:297.488340px;}
.y47{bottom:300.562380px;}
.yf7{bottom:311.680440px;}
.y7a{bottom:313.555140px;}
.y28{bottom:314.773920px;}
.yb9{bottom:315.141300px;}
.y46{bottom:317.847960px;}
.yf6{bottom:328.966020px;}
.y79{bottom:330.909120px;}
.y27{bottom:332.059500px;}
.yb8{bottom:332.426880px;}
.y45{bottom:334.954260px;}
.ya3{bottom:336.211380px;}
.yf5{bottom:346.251600px;}
.y78{bottom:348.553260px;}
.y26{bottom:349.165800px;}
.y44{bottom:352.239840px;}
.ya2{bottom:353.496960px;}
.yb7{bottom:358.706340px;}
.yf4{bottom:363.537180px;}
.y77{bottom:365.838840px;}
.y25{bottom:366.451380px;}
.y43{bottom:369.704700px;}
.ya1{bottom:370.603260px;}
.yb6{bottom:375.991920px;}
.yf3{bottom:380.643480px;}
.y76{bottom:383.303700px;}
.y24{bottom:383.736960px;}
.y42{bottom:387.348840px;}
.ya0{bottom:387.888840px;}
.yb5{bottom:393.277500px;}
.yf2{bottom:397.929060px;}
.y75{bottom:400.768560px;}
.y23{bottom:401.022540px;}
.y9f{bottom:405.174420px;}
.yb4{bottom:410.383800px;}
.y40{bottom:413.807580px;}
.y41{bottom:414.345420px;}
.yf1{bottom:415.214640px;}
.y74{bottom:418.054140px;}
.y22{bottom:418.308120px;}
.y9e{bottom:422.460000px;}
.yb3{bottom:427.669380px;}
.yf0{bottom:432.500220px;}
.y73{bottom:435.339720px;}
.y21{bottom:435.593700px;}
.y3f{bottom:440.266320px;}
.yb2{bottom:444.954960px;}
.y9d{bottom:445.680540px;}
.yef{bottom:449.785800px;}
.y72{bottom:452.446020px;}
.y20{bottom:452.700000px;}
.yb1{bottom:462.240540px;}
.y3e{bottom:466.545780px;}
.yee{bottom:466.892100px;}
.y71{bottom:469.731600px;}
.y9c{bottom:471.960000px;}
.y1f{bottom:475.200000px;}
.yb0{bottom:479.526120px;}
.yed{bottom:484.177680px;}
.y70{bottom:487.017180px;}
.y3d{bottom:489.583260px;}
.y9b{bottom:498.240000px;}
.yec{bottom:501.463260px;}
.y6f{bottom:504.302760px;}
.yaf{bottom:505.626300px;}
.y1e{bottom:508.577400px;}
.yeb{bottom:518.748840px;}
.y6e{bottom:521.588340px;}
.y9a{bottom:525.594960px;}
.y1d{bottom:525.862980px;}
.yae{bottom:528.663780px;}
.yea{bottom:536.034420px;}
.y6d{bottom:538.873920px;}
.y1c{bottom:543.148560px;}
.y99{bottom:553.308660px;}
.ye9{bottom:553.320000px;}
.y6c{bottom:555.980220px;}
.y1b{bottom:560.434140px;}
.y6b{bottom:573.265800px;}
.ye8{bottom:575.640000px;}
.y1a{bottom:577.540440px;}
.y98{bottom:579.588120px;}
.y6a{bottom:590.551380px;}
.y19{bottom:594.826020px;}
.y97{bottom:596.873700px;}
.y69{bottom:607.836960px;}
.ye7{bottom:608.951880px;}
.y18{bottom:612.111600px;}
.y96{bottom:613.980000px;}
.y68{bottom:625.122540px;}
.ye6{bottom:626.237460px;}
.y17{bottom:629.397180px;}
.y95{bottom:636.480000px;}
.y11e{bottom:641.334060px;}
.y67{bottom:642.408120px;}
.ye5{bottom:643.523040px;}
.y16{bottom:646.682760px;}
.y11d{bottom:656.995500px;}
.y66{bottom:659.514420px;}
.ye4{bottom:660.808620px;}
.y15{bottom:663.968340px;}
.y94{bottom:665.412300px;}
.y11c{bottom:672.655500px;}
.y65{bottom:676.800000px;}
.ye3{bottom:678.094200px;}
.y14{bottom:681.074640px;}
.y93{bottom:682.697880px;}
.y3c{bottom:686.328120px;}
.y11b{bottom:688.140000px;}
.ye2{bottom:695.379780px;}
.y13{bottom:698.360220px;}
.y64{bottom:699.300000px;}
.y92{bottom:699.983460px;}
.y3b{bottom:703.613700px;}
.y11a{bottom:703.800000px;}
.ye1{bottom:712.486080px;}
.y12{bottom:715.645800px;}
.y91{bottom:717.269040px;}
.y3a{bottom:720.720000px;}
.yad{bottom:720.896760px;}
.y119{bottom:723.774060px;}
.y63{bottom:728.234280px;}
.ye0{bottom:729.771660px;}
.y11{bottom:732.931380px;}
.y90{bottom:734.554620px;}
.y118{bottom:739.440000px;}
.y39{bottom:743.220000px;}
.yac{bottom:743.934240px;}
.y62{bottom:745.519860px;}
.ydf{bottom:747.057240px;}
.y10{bottom:750.216960px;}
.y117{bottom:755.100000px;}
.y8f{bottom:760.654800px;}
.yde{bottom:764.342820px;}
.yf{bottom:767.502540px;}
.y61{bottom:768.557340px;}
.y116{bottom:770.760000px;}
.y38{bottom:772.920000px;}
.y8e{bottom:777.940380px;}
.ydd{bottom:781.628400px;}
.ye{bottom:784.608840px;}
.y115{bottom:790.746120px;}
.y37{bottom:793.620000px;}
.y8d{bottom:796.480920px;}
.ydc{bottom:798.734700px;}
.yd{bottom:801.894420px;}
.y114{bottom:806.400000px;}
.ydb{bottom:816.020280px;}
.yc{bottom:819.180000px;}
.y113{bottom:822.060000px;}
.y36{bottom:826.976880px;}
.yda{bottom:833.305860px;}
.y112{bottom:837.544500px;}
.yb{bottom:841.680000px;}
.y35{bottom:844.262460px;}
.yd9{bottom:850.591440px;}
.y111{bottom:857.694060px;}
.yd8{bottom:867.877020px;}
.y110{bottom:873.355500px;}
.yd7{bottom:885.162600px;}
.ya{bottom:887.220000px;}
.y10f{bottom:888.840000px;}
.y9{bottom:901.080000px;}
.yd6{bottom:902.268900px;}
.y10e{bottom:904.500000px;}
.yd5{bottom:919.554480px;}
.y10d{bottom:920.160000px;}
.y8{bottom:921.780000px;}
.y60{bottom:930.013920px;}
.yd4{bottom:936.840060px;}
.y10c{bottom:940.134060px;}
.y7{bottom:942.480000px;}
.y5f{bottom:947.299500px;}
.yd3{bottom:954.125640px;}
.y10b{bottom:955.795500px;}
.y6{bottom:963.180000px;}
.y5e{bottom:964.405800px;}
.y8c{bottom:969.276960px;}
.yd2{bottom:971.411220px;}
.y10a{bottom:971.455500px;}
.y5d{bottom:981.691380px;}
.y5{bottom:983.880000px;}
.y8b{bottom:986.562540px;}
.y109{bottom:986.940000px;}
.yd1{bottom:988.696800px;}
.y5c{bottom:998.976960px;}
.y108{bottom:1002.600000px;}
.y8a{bottom:1003.848120px;}
.y4{bottom:1004.580000px;}
.yd0{bottom:1005.803100px;}
.yab{bottom:1006.549560px;}
.y5b{bottom:1016.262540px;}
.y89{bottom:1021.133700px;}
.y107{bottom:1022.574060px;}
.ycf{bottom:1023.088680px;}
.yaa{bottom:1023.835140px;}
.y5a{bottom:1033.548120px;}
.y88{bottom:1038.240000px;}
.y3{bottom:1039.332600px;}
.yce{bottom:1040.374260px;}
.ya9{bottom:1041.283260px;}
.y59{bottom:1050.833700px;}
.y106{bottom:1053.900000px;}
.ycd{bottom:1057.659840px;}
.ya8{bottom:1058.748120px;}
.y87{bottom:1060.740000px;}
.y2{bottom:1063.446300px;}
.y58{bottom:1067.940000px;}
.y105{bottom:1069.560000px;}
.ycc{bottom:1075.841820px;}
.ya7{bottom:1076.033700px;}
.y1{bottom:1087.560000px;}
.y57{bottom:1090.440000px;}
.ycb{bottom:1093.127400px;}
.ya6{bottom:1093.140000px;}
.y53{bottom:1131.000000px;}
.y51{bottom:1150.500000px;}
.ha{height:15.000000px;}
.h17{height:24.300000px;}
.h16{height:24.480000px;}
.h18{height:24.481500px;}
.h4{height:33.518320px;}
.h1b{height:37.496028px;}
.h19{height:37.520508px;}
.h1a{height:37.544268px;}
.h13{height:40.501406px;}
.h15{height:41.165733px;}
.h6{height:41.522695px;}
.h8{height:41.756133px;}
.h14{height:41.823093px;}
.hd{height:42.199653px;}
.hb{height:43.804688px;}
.h7{height:48.796875px;}
.h5{height:49.992188px;}
.h3{height:50.027344px;}
.h9{height:51.686184px;}
.h1{height:57.092344px;}
.h2{height:60.878320px;}
.hf{height:81.842695px;}
.he{height:87.837573px;}
.h11{height:87.857013px;}
.h10{height:87.859893px;}
.h12{height:131.220000px;}
.hc{height:951.000000px;}
.h0{height:1188.000000px;}
.w3{width:13.500000px;}
.w4{width:52.380000px;}
.w5{width:89.820000px;}
.w2{width:721.439955px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:8.399999px;}
.x2e{left:15.480000px;}
.x2d{left:22.860000px;}
.x17{left:44.250000px;}
.xb{left:84.960000px;}
.x2b{left:97.486020px;}
.x2{left:98.821800px;}
.x29{left:102.057660px;}
.x32{left:107.100000px;}
.x1{left:108.720000px;}
.x2c{left:142.560000px;}
.x1a{left:162.532980px;}
.xc{left:188.100000px;}
.x1c{left:192.596760px;}
.x31{left:199.620000px;}
.x2f{left:205.200000px;}
.x16{left:207.530312px;}
.x5{left:210.780000px;}
.x4{left:232.020000px;}
.x6{left:233.100000px;}
.x3{left:237.417660px;}
.x8{left:242.640000px;}
.x1b{left:244.260000px;}
.x1d{left:246.600000px;}
.xa{left:283.320000px;}
.x9{left:302.400000px;}
.x7{left:353.340000px;}
.x1f{left:381.600000px;}
.x1e{left:408.240720px;}
.x19{left:426.604320px;}
.x2a{left:427.674960px;}
.x28{left:438.118020px;}
.xd{left:457.007220px;}
.xe{left:464.580000px;}
.x10{left:471.060000px;}
.x25{left:498.982860px;}
.x21{left:521.109000px;}
.x24{left:526.860000px;}
.x23{left:535.320000px;}
.x22{left:537.303960px;}
.x14{left:562.836420px;}
.x30{left:571.140000px;}
.x12{left:577.253520px;}
.x26{left:585.007380px;}
.x20{left:592.020000px;}
.xf{left:613.620000px;}
.x13{left:616.680180px;}
.x15{left:630.723240px;}
.x11{left:808.031700px;}
.x27{left:836.190000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-10.713600pt;}
.v3{vertical-align:-1.912320pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v5{vertical-align:19.840000pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:35.840000pt;}
.v7{vertical-align:40.955520pt;}
.ls26{letter-spacing:-7.168000pt;}
.ls27{letter-spacing:-4.544000pt;}
.ls2c{letter-spacing:-3.930880pt;}
.ls6a{letter-spacing:-3.696000pt;}
.ls4e{letter-spacing:-3.665280pt;}
.ls4b{letter-spacing:-3.134080pt;}
.ls5c{letter-spacing:-1.062400pt;}
.ls33{letter-spacing:-0.690560pt;}
.ls22{letter-spacing:-0.673920pt;}
.ls2f{letter-spacing:-0.531200pt;}
.ls6b{letter-spacing:-0.528000pt;}
.ls6c{letter-spacing:-0.480000pt;}
.ls4d{letter-spacing:-0.478080pt;}
.ls31{letter-spacing:-0.424960pt;}
.ls68{letter-spacing:-0.336000pt;}
.ls2d{letter-spacing:-0.318720pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.212480pt;}
.ls67{letter-spacing:-0.192000pt;}
.ls69{letter-spacing:-0.128640pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.106240pt;}
.ls6e{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.053120pt;}
.ls24{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053120pt;}
.ls56{letter-spacing:0.058432pt;}
.ls32{letter-spacing:0.064000pt;}
.ls57{letter-spacing:0.069056pt;}
.ls52{letter-spacing:0.084480pt;}
.ls64{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106240pt;}
.ls29{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.132800pt;}
.ls12{letter-spacing:0.143424pt;}
.ls63{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.148736pt;}
.ls9{letter-spacing:0.159360pt;}
.ls6d{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.212480pt;}
.ls11{letter-spacing:0.244352pt;}
.ls30{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.299520pt;}
.ls2{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.336000pt;}
.ls4c{letter-spacing:0.704000pt;}
.ls58{letter-spacing:0.791488pt;}
.ls18{letter-spacing:0.796800pt;}
.ls3a{letter-spacing:1.434240pt;}
.ls19{letter-spacing:1.806080pt;}
.ls3c{letter-spacing:1.859200pt;}
.ls4f{letter-spacing:1.875136pt;}
.ls17{letter-spacing:2.018560pt;}
.lse{letter-spacing:2.055744pt;}
.ls7{letter-spacing:2.071680pt;}
.ls3b{letter-spacing:2.076992pt;}
.ls1d{letter-spacing:2.187520pt;}
.ls21{letter-spacing:2.231040pt;}
.ls54{letter-spacing:2.366720pt;}
.ls53{letter-spacing:2.485760pt;}
.ls45{letter-spacing:2.709120pt;}
.ls59{letter-spacing:2.746304pt;}
.ls60{letter-spacing:2.788800pt;}
.ls1{letter-spacing:3.346560pt;}
.ls65{letter-spacing:3.360000pt;}
.ls3d{letter-spacing:3.793920pt;}
.ls1a{letter-spacing:3.936192pt;}
.lsb{letter-spacing:3.984000pt;}
.ls10{letter-spacing:4.037120pt;}
.ls3e{letter-spacing:4.147200pt;}
.lsd{letter-spacing:4.621440pt;}
.ls50{letter-spacing:4.632064pt;}
.ls4{letter-spacing:5.258880pt;}
.lsc{letter-spacing:5.274816pt;}
.ls35{letter-spacing:5.896320pt;}
.ls49{letter-spacing:5.944128pt;}
.ls5{letter-spacing:7.224320pt;}
.lsf{letter-spacing:8.472640pt;}
.ls5b{letter-spacing:9.136640pt;}
.ls5e{letter-spacing:10.416000pt;}
.ls40{letter-spacing:11.527040pt;}
.ls34{letter-spacing:11.686400pt;}
.ls5f{letter-spacing:13.936000pt;}
.ls36{letter-spacing:14.236160pt;}
.ls3f{letter-spacing:14.347520pt;}
.ls1c{letter-spacing:14.714240pt;}
.ls14{letter-spacing:15.351680pt;}
.ls1b{letter-spacing:16.573440pt;}
.ls13{letter-spacing:16.732800pt;}
.ls39{letter-spacing:16.785920pt;}
.ls5a{letter-spacing:17.423360pt;}
.ls42{letter-spacing:17.873920pt;}
.ls44{letter-spacing:18.227200pt;}
.ls66{letter-spacing:23.541120pt;}
.ls1e{letter-spacing:32.267520pt;}
.ls15{letter-spacing:32.668800pt;}
.ls1f{letter-spacing:34.581120pt;}
.ls61{letter-spacing:37.296000pt;}
.ls62{letter-spacing:44.680960pt;}
.ls43{letter-spacing:68.491520pt;}
.ls38{letter-spacing:69.268480pt;}
.ls37{letter-spacing:69.316288pt;}
.ls55{letter-spacing:126.903680pt;}
.ls51{letter-spacing:130.090880pt;}
.ls46{letter-spacing:164.618880pt;}
.ls41{letter-spacing:182.411520pt;}
.ls48{letter-spacing:227.991040pt;}
.ls47{letter-spacing:258.056960pt;}
.ls20{letter-spacing:457.735040pt;}
.ls16{letter-spacing:509.580160pt;}
.ws12{word-spacing:-53.120000pt;}
.ws57{word-spacing:-40.955519pt;}
.ws8a{word-spacing:-25.728000pt;}
.ws85{word-spacing:-25.599360pt;}
.ws11{word-spacing:-21.672960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.046080pt;}
.ws58{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.598720pt;}
.ws8{word-spacing:-13.492480pt;}
.wsa{word-spacing:-13.386240pt;}
.ws9{word-spacing:-13.333120pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.226880pt;}
.wsd{word-spacing:-13.173760pt;}
.wse{word-spacing:-13.067520pt;}
.wsb{word-spacing:-12.961280pt;}
.wsf{word-spacing:-12.855040pt;}
.ws13{word-spacing:-12.589440pt;}
.ws86{word-spacing:-12.336000pt;}
.ws74{word-spacing:-12.217600pt;}
.ws89{word-spacing:-12.096000pt;}
.ws87{word-spacing:-12.000000pt;}
.ws8b{word-spacing:-11.808000pt;}
.ws88{word-spacing:-11.664000pt;}
.ws59{word-spacing:-9.614720pt;}
.ws6{word-spacing:-9.349120pt;}
.ws3{word-spacing:-8.832000pt;}
.ws7b{word-spacing:-4.887040pt;}
.ws4c{word-spacing:-3.712000pt;}
.ws3b{word-spacing:-3.346560pt;}
.ws54{word-spacing:-3.240320pt;}
.ws83{word-spacing:-2.974720pt;}
.ws97{word-spacing:-2.736000pt;}
.ws77{word-spacing:-2.709120pt;}
.ws4b{word-spacing:-2.496640pt;}
.ws6d{word-spacing:-2.443520pt;}
.ws78{word-spacing:-2.337280pt;}
.ws4f{word-spacing:-2.071680pt;}
.ws96{word-spacing:-1.872000pt;}
.ws50{word-spacing:-1.859200pt;}
.ws79{word-spacing:-1.699840pt;}
.ws43{word-spacing:-1.434240pt;}
.ws19{word-spacing:-1.280000pt;}
.ws48{word-spacing:-1.221760pt;}
.ws15{word-spacing:-1.123200pt;}
.ws42{word-spacing:-1.062400pt;}
.wsa1{word-spacing:-0.816000pt;}
.ws32{word-spacing:-0.796800pt;}
.ws5e{word-spacing:-0.704000pt;}
.ws20{word-spacing:-0.584320pt;}
.wsb4{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.449280pt;}
.ws21{word-spacing:-0.424960pt;}
.ws34{word-spacing:-0.318720pt;}
.wsa2{word-spacing:-0.288000pt;}
.ws47{word-spacing:-0.265600pt;}
.ws40{word-spacing:-0.212480pt;}
.wsaa{word-spacing:-0.192000pt;}
.ws1f{word-spacing:-0.159360pt;}
.ws8e{word-spacing:-0.144000pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws31{word-spacing:-0.106240pt;}
.ws4d{word-spacing:-0.064000pt;}
.ws33{word-spacing:-0.053120pt;}
.ws16{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.053120pt;}
.ws17{word-spacing:0.128000pt;}
.ws95{word-spacing:0.128640pt;}
.wsa4{word-spacing:0.192000pt;}
.ws3e{word-spacing:0.212480pt;}
.ws1a{word-spacing:0.256000pt;}
.ws70{word-spacing:0.265600pt;}
.ws64{word-spacing:0.318720pt;}
.wsa9{word-spacing:0.336000pt;}
.ws4e{word-spacing:0.371840pt;}
.ws7d{word-spacing:0.424960pt;}
.ws38{word-spacing:0.478080pt;}
.ws8c{word-spacing:0.480000pt;}
.ws3d{word-spacing:0.531200pt;}
.wsab{word-spacing:0.624000pt;}
.ws52{word-spacing:0.690560pt;}
.ws8d{word-spacing:0.720000pt;}
.wsa7{word-spacing:0.816000pt;}
.ws51{word-spacing:0.849920pt;}
.ws8f{word-spacing:1.008000pt;}
.ws66{word-spacing:1.115520pt;}
.ws68{word-spacing:1.328000pt;}
.wsa8{word-spacing:1.344000pt;}
.ws67{word-spacing:1.487360pt;}
.ws39{word-spacing:1.752960pt;}
.ws2c{word-spacing:1.965440pt;}
.ws3a{word-spacing:2.124800pt;}
.ws41{word-spacing:2.284160pt;}
.ws2e{word-spacing:2.390400pt;}
.ws76{word-spacing:2.496640pt;}
.ws69{word-spacing:2.602880pt;}
.ws5c{word-spacing:2.656000pt;}
.ws6a{word-spacing:2.762240pt;}
.ws91{word-spacing:2.928000pt;}
.wsb3{word-spacing:3.024000pt;}
.ws1c{word-spacing:3.027840pt;}
.wsb5{word-spacing:3.072000pt;}
.ws7f{word-spacing:3.240320pt;}
.ws18{word-spacing:3.264000pt;}
.wsa6{word-spacing:3.552000pt;}
.ws1e{word-spacing:3.559040pt;}
.ws2b{word-spacing:3.665280pt;}
.wsae{word-spacing:3.696000pt;}
.wsa5{word-spacing:3.840000pt;}
.ws37{word-spacing:3.877760pt;}
.ws35{word-spacing:4.037120pt;}
.wsa3{word-spacing:4.176000pt;}
.ws2d{word-spacing:4.302720pt;}
.ws92{word-spacing:4.320000pt;}
.ws36{word-spacing:4.515200pt;}
.ws3f{word-spacing:4.674560pt;}
.ws90{word-spacing:4.848000pt;}
.ws3c{word-spacing:4.940160pt;}
.ws25{word-spacing:5.152640pt;}
.ws73{word-spacing:5.312000pt;}
.ws72{word-spacing:5.577600pt;}
.ws75{word-spacing:5.790080pt;}
.ws5d{word-spacing:5.949440pt;}
.ws49{word-spacing:6.268160pt;}
.ws9a{word-spacing:6.432000pt;}
.ws56{word-spacing:6.480640pt;}
.ws4a{word-spacing:6.640000pt;}
.ws26{word-spacing:6.905600pt;}
.ws28{word-spacing:7.011840pt;}
.ws9b{word-spacing:7.056000pt;}
.ws84{word-spacing:7.118080pt;}
.ws27{word-spacing:7.277440pt;}
.ws98{word-spacing:7.488000pt;}
.ws9c{word-spacing:7.536000pt;}
.ws29{word-spacing:7.543040pt;}
.ws24{word-spacing:7.649280pt;}
.ws2a{word-spacing:7.755520pt;}
.ws46{word-spacing:7.914880pt;}
.ws9d{word-spacing:8.160000pt;}
.ws23{word-spacing:8.180480pt;}
.ws99{word-spacing:8.352000pt;}
.ws22{word-spacing:8.392960pt;}
.ws9f{word-spacing:8.400000pt;}
.ws7a{word-spacing:8.446080pt;}
.ws45{word-spacing:8.552320pt;}
.wsa0{word-spacing:8.688000pt;}
.ws44{word-spacing:8.711680pt;}
.ws30{word-spacing:8.817920pt;}
.ws9e{word-spacing:9.024000pt;}
.ws82{word-spacing:9.349120pt;}
.ws93{word-spacing:10.080000pt;}
.ws5a{word-spacing:10.730240pt;}
.ws94{word-spacing:10.752000pt;}
.ws2f{word-spacing:11.367680pt;}
.ws5b{word-spacing:11.580160pt;}
.ws6f{word-spacing:12.005120pt;}
.ws6b{word-spacing:12.217600pt;}
.ws6e{word-spacing:12.376960pt;}
.ws6c{word-spacing:12.642560pt;}
.ws53{word-spacing:13.492480pt;}
.ws60{word-spacing:14.129920pt;}
.ws61{word-spacing:14.448640pt;}
.ws7e{word-spacing:14.554880pt;}
.ws7c{word-spacing:15.404800pt;}
.ws5f{word-spacing:15.829760pt;}
.wsb1{word-spacing:15.840000pt;}
.wsaf{word-spacing:15.984000pt;}
.wsb2{word-spacing:16.272000pt;}
.ws65{word-spacing:16.467200pt;}
.wsb0{word-spacing:16.704000pt;}
.wsb6{word-spacing:17.280000pt;}
.ws81{word-spacing:17.317120pt;}
.ws80{word-spacing:17.476480pt;}
.wsb7{word-spacing:17.760000pt;}
.ws55{word-spacing:17.954560pt;}
.ws63{word-spacing:19.707520pt;}
.ws71{word-spacing:21.619840pt;}
.ws62{word-spacing:68.949760pt;}
.wsac{word-spacing:151.488000pt;}
.wsad{word-spacing:152.976000pt;}
._7{margin-left:-8.448000pt;}
._4{margin-left:-6.784001pt;}
._2{margin-left:-4.847872pt;}
._3{margin-left:-3.456000pt;}
._9{margin-left:-2.219905pt;}
._1{margin-left:-1.168128pt;}
._0{width:1.003392pt;}
._6{width:2.303997pt;}
._a{width:3.345025pt;}
._8{width:4.624128pt;}
._14{width:6.209793pt;}
._5{width:7.424001pt;}
._10{width:8.498176pt;}
._1c{width:9.881344pt;}
._15{width:12.100737pt;}
._1d{width:13.626112pt;}
._13{width:16.372736pt;}
._20{width:18.021249pt;}
._12{width:19.708544pt;}
._11{width:20.790147pt;}
._1b{width:21.938560pt;}
._19{width:25.246080pt;}
._18{width:26.829825pt;}
._1e{width:37.899905pt;}
._1a{width:109.107968pt;}
._1f{width:152.080641pt;}
._17{width:179.333120pt;}
._16{width:200.587008pt;}
._d{width:419.357493pt;}
._b{width:428.765280pt;}
._c{width:711.901440pt;}
._e{width:1197.712533pt;}
._f{width:1745.578987pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:2.880000pt;}
.y52{bottom:5.866668pt;}
.yc2{bottom:5.920000pt;}
.ybd{bottom:6.080000pt;}
.y54{bottom:20.000000pt;}
.y55{bottom:37.333333pt;}
.y104{bottom:77.623520pt;}
.ya5{bottom:78.048000pt;}
.yca{bottom:81.590080pt;}
.y103{bottom:92.988480pt;}
.ya4{bottom:93.412960pt;}
.y34{bottom:95.738240pt;}
.yc9{bottom:96.955040pt;}
.y102{bottom:108.353440pt;}
.y33{bottom:111.103200pt;}
.yc8{bottom:112.320000pt;}
.y56{bottom:116.000000pt;}
.y101{bottom:123.718400pt;}
.y32{bottom:126.468160pt;}
.y50{bottom:127.501440pt;}
.yc7{bottom:132.160000pt;}
.y100{bottom:139.083360pt;}
.y31{bottom:141.673760pt;}
.y4f{bottom:142.866400pt;}
.yff{bottom:154.288960pt;}
.y30{bottom:157.038720pt;}
.y4e{bottom:158.231360pt;}
.y85{bottom:159.200000pt;}
.yc5{bottom:160.480000pt;}
.yc6{bottom:166.560000pt;}
.yc4{bottom:166.566720pt;}
.y80{bottom:168.320000pt;}
.yfe{bottom:169.653920pt;}
.y2f{bottom:172.403680pt;}
.y4d{bottom:173.755680pt;}
.y7f{bottom:177.275360pt;}
.yc1{bottom:182.240000pt;}
.yfd{bottom:185.018880pt;}
.y84{bottom:185.440813pt;}
.y2e{bottom:187.768640pt;}
.yc0{bottom:188.154080pt;}
.yc3{bottom:188.160000pt;}
.y4c{bottom:189.281120pt;}
.yfc{bottom:200.383840pt;}
.y2d{bottom:203.133600pt;}
.y7e{bottom:203.680000pt;}
.ybf{bottom:203.840000pt;}
.y83{bottom:208.806720pt;}
.ybe{bottom:209.920000pt;}
.y7d{bottom:212.634720pt;}
.y4a{bottom:212.758400pt;}
.y4b{bottom:213.278080pt;}
.yfb{bottom:215.748800pt;}
.y2c{bottom:218.339200pt;}
.ybc{bottom:225.600000pt;}
.yfa{bottom:231.113760pt;}
.ybb{bottom:231.680000pt;}
.y82{bottom:232.166240pt;}
.y2b{bottom:233.704160pt;}
.y49{bottom:236.436640pt;}
.y7c{bottom:238.880000pt;}
.yf9{bottom:246.319360pt;}
.y7b{bottom:247.839680pt;}
.y2a{bottom:249.069120pt;}
.y48{bottom:251.801600pt;}
.y81{bottom:255.366400pt;}
.yba{bottom:255.491200pt;}
.yf8{bottom:261.684320pt;}
.y29{bottom:264.434080pt;}
.y47{bottom:267.166560pt;}
.yf7{bottom:277.049280pt;}
.y7a{bottom:278.715680pt;}
.y28{bottom:279.799040pt;}
.yb9{bottom:280.125600pt;}
.y46{bottom:282.531520pt;}
.yf6{bottom:292.414240pt;}
.y79{bottom:294.141440pt;}
.y27{bottom:295.164000pt;}
.yb8{bottom:295.490560pt;}
.y45{bottom:297.737120pt;}
.ya3{bottom:298.854560pt;}
.yf5{bottom:307.779200pt;}
.y78{bottom:309.825120pt;}
.y26{bottom:310.369600pt;}
.y44{bottom:313.102080pt;}
.ya2{bottom:314.219520pt;}
.yb7{bottom:318.850080pt;}
.yf4{bottom:323.144160pt;}
.y77{bottom:325.190080pt;}
.y25{bottom:325.734560pt;}
.y43{bottom:328.626400pt;}
.ya1{bottom:329.425120pt;}
.yb6{bottom:334.215040pt;}
.yf3{bottom:338.349760pt;}
.y76{bottom:340.714400pt;}
.y24{bottom:341.099520pt;}
.y42{bottom:344.310080pt;}
.ya0{bottom:344.790080pt;}
.yb5{bottom:349.580000pt;}
.yf2{bottom:353.714720pt;}
.y75{bottom:356.238720pt;}
.y23{bottom:356.464480pt;}
.y9f{bottom:360.155040pt;}
.yb4{bottom:364.785600pt;}
.y40{bottom:367.828960pt;}
.y41{bottom:368.307040pt;}
.yf1{bottom:369.079680pt;}
.y74{bottom:371.603680pt;}
.y22{bottom:371.829440pt;}
.y9e{bottom:375.520000pt;}
.yb3{bottom:380.150560pt;}
.yf0{bottom:384.444640pt;}
.y73{bottom:386.968640pt;}
.y21{bottom:387.194400pt;}
.y3f{bottom:391.347840pt;}
.yb2{bottom:395.515520pt;}
.y9d{bottom:396.160480pt;}
.yef{bottom:399.809600pt;}
.y72{bottom:402.174240pt;}
.y20{bottom:402.400000pt;}
.yb1{bottom:410.880480pt;}
.y3e{bottom:414.707360pt;}
.yee{bottom:415.015200pt;}
.y71{bottom:417.539200pt;}
.y9c{bottom:419.520000pt;}
.y1f{bottom:422.400000pt;}
.yb0{bottom:426.245440pt;}
.yed{bottom:430.380160pt;}
.y70{bottom:432.904160pt;}
.y3d{bottom:435.185120pt;}
.y9b{bottom:442.880000pt;}
.yec{bottom:445.745120pt;}
.y6f{bottom:448.269120pt;}
.yaf{bottom:449.445600pt;}
.y1e{bottom:452.068800pt;}
.yeb{bottom:461.110080pt;}
.y6e{bottom:463.634080pt;}
.y9a{bottom:467.195520pt;}
.y1d{bottom:467.433760pt;}
.yae{bottom:469.923360pt;}
.yea{bottom:476.475040pt;}
.y6d{bottom:478.999040pt;}
.y1c{bottom:482.798720pt;}
.y99{bottom:491.829920pt;}
.ye9{bottom:491.840000pt;}
.y6c{bottom:494.204640pt;}
.y1b{bottom:498.163680pt;}
.y6b{bottom:509.569600pt;}
.ye8{bottom:511.680000pt;}
.y1a{bottom:513.369280pt;}
.y98{bottom:515.189440pt;}
.y6a{bottom:524.934560pt;}
.y19{bottom:528.734240pt;}
.y97{bottom:530.554400pt;}
.y69{bottom:540.299520pt;}
.ye7{bottom:541.290560pt;}
.y18{bottom:544.099200pt;}
.y96{bottom:545.760000pt;}
.y68{bottom:555.664480pt;}
.ye6{bottom:556.655520pt;}
.y17{bottom:559.464160pt;}
.y95{bottom:565.760000pt;}
.y11e{bottom:570.074720pt;}
.y67{bottom:571.029440pt;}
.ye5{bottom:572.020480pt;}
.y16{bottom:574.829120pt;}
.y11d{bottom:583.996000pt;}
.y66{bottom:586.235040pt;}
.ye4{bottom:587.385440pt;}
.y15{bottom:590.194080pt;}
.y94{bottom:591.477600pt;}
.y11c{bottom:597.916000pt;}
.y65{bottom:601.600000pt;}
.ye3{bottom:602.750400pt;}
.y14{bottom:605.399680pt;}
.y93{bottom:606.842560pt;}
.y3c{bottom:610.069440pt;}
.y11b{bottom:611.680000pt;}
.ye2{bottom:618.115360pt;}
.y13{bottom:620.764640pt;}
.y64{bottom:621.600000pt;}
.y92{bottom:622.207520pt;}
.y3b{bottom:625.434400pt;}
.y11a{bottom:625.600000pt;}
.ye1{bottom:633.320960pt;}
.y12{bottom:636.129600pt;}
.y91{bottom:637.572480pt;}
.y3a{bottom:640.640000pt;}
.yad{bottom:640.797120pt;}
.y119{bottom:643.354720pt;}
.y63{bottom:647.319360pt;}
.ye0{bottom:648.685920pt;}
.y11{bottom:651.494560pt;}
.y90{bottom:652.937440pt;}
.y118{bottom:657.280000pt;}
.y39{bottom:660.640000pt;}
.yac{bottom:661.274880pt;}
.y62{bottom:662.684320pt;}
.ydf{bottom:664.050880pt;}
.y10{bottom:666.859520pt;}
.y117{bottom:671.200000pt;}
.y8f{bottom:676.137600pt;}
.yde{bottom:679.415840pt;}
.yf{bottom:682.224480pt;}
.y61{bottom:683.162080pt;}
.y116{bottom:685.120000pt;}
.y38{bottom:687.040000pt;}
.y8e{bottom:691.502560pt;}
.ydd{bottom:694.780800pt;}
.ye{bottom:697.430080pt;}
.y115{bottom:702.885440pt;}
.y37{bottom:705.440000pt;}
.y8d{bottom:707.983040pt;}
.ydc{bottom:709.986400pt;}
.yd{bottom:712.795040pt;}
.y114{bottom:716.800000pt;}
.ydb{bottom:725.351360pt;}
.yc{bottom:728.160000pt;}
.y113{bottom:730.720000pt;}
.y36{bottom:735.090560pt;}
.yda{bottom:740.716320pt;}
.y112{bottom:744.484000pt;}
.yb{bottom:748.160000pt;}
.y35{bottom:750.455520pt;}
.yd9{bottom:756.081280pt;}
.y111{bottom:762.394720pt;}
.yd8{bottom:771.446240pt;}
.y110{bottom:776.316000pt;}
.yd7{bottom:786.811200pt;}
.ya{bottom:788.640000pt;}
.y10f{bottom:790.080000pt;}
.y9{bottom:800.960000pt;}
.yd6{bottom:802.016800pt;}
.y10e{bottom:804.000000pt;}
.yd5{bottom:817.381760pt;}
.y10d{bottom:817.920000pt;}
.y8{bottom:819.360000pt;}
.y60{bottom:826.679040pt;}
.yd4{bottom:832.746720pt;}
.y10c{bottom:835.674720pt;}
.y7{bottom:837.760000pt;}
.y5f{bottom:842.044000pt;}
.yd3{bottom:848.111680pt;}
.y10b{bottom:849.596000pt;}
.y6{bottom:856.160000pt;}
.y5e{bottom:857.249600pt;}
.y8c{bottom:861.579520pt;}
.yd2{bottom:863.476640pt;}
.y10a{bottom:863.516000pt;}
.y5d{bottom:872.614560pt;}
.y5{bottom:874.560000pt;}
.y8b{bottom:876.944480pt;}
.y109{bottom:877.280000pt;}
.yd1{bottom:878.841600pt;}
.y5c{bottom:887.979520pt;}
.y108{bottom:891.200000pt;}
.y8a{bottom:892.309440pt;}
.y4{bottom:892.960000pt;}
.yd0{bottom:894.047200pt;}
.yab{bottom:894.710720pt;}
.y5b{bottom:903.344480pt;}
.y89{bottom:907.674400pt;}
.y107{bottom:908.954720pt;}
.ycf{bottom:909.412160pt;}
.yaa{bottom:910.075680pt;}
.y5a{bottom:918.709440pt;}
.y88{bottom:922.880000pt;}
.y3{bottom:923.851200pt;}
.yce{bottom:924.777120pt;}
.ya9{bottom:925.585120pt;}
.y59{bottom:934.074400pt;}
.y106{bottom:936.800000pt;}
.ycd{bottom:940.142080pt;}
.ya8{bottom:941.109440pt;}
.y87{bottom:942.880000pt;}
.y2{bottom:945.285600pt;}
.y58{bottom:949.280000pt;}
.y105{bottom:950.720000pt;}
.ycc{bottom:956.303840pt;}
.ya7{bottom:956.474400pt;}
.y1{bottom:966.720000pt;}
.y57{bottom:969.280000pt;}
.ycb{bottom:971.668800pt;}
.ya6{bottom:971.680000pt;}
.y53{bottom:1005.333333pt;}
.y51{bottom:1022.666667pt;}
.ha{height:13.333333pt;}
.h17{height:21.600000pt;}
.h16{height:21.760000pt;}
.h18{height:21.761333pt;}
.h4{height:29.794062pt;}
.h1b{height:33.329802pt;}
.h19{height:33.351562pt;}
.h1a{height:33.372683pt;}
.h13{height:36.001250pt;}
.h15{height:36.591762pt;}
.h6{height:36.909063pt;}
.h8{height:37.116563pt;}
.h14{height:37.176083pt;}
.hd{height:37.510803pt;}
.hb{height:38.937500pt;}
.h7{height:43.375000pt;}
.h5{height:44.437500pt;}
.h3{height:44.468750pt;}
.h9{height:45.943275pt;}
.h1{height:50.748750pt;}
.h2{height:54.114063pt;}
.hf{height:72.749063pt;}
.he{height:78.077843pt;}
.h11{height:78.095122pt;}
.h10{height:78.097682pt;}
.h12{height:116.640000pt;}
.hc{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w3{width:12.000000pt;}
.w4{width:46.560000pt;}
.w5{width:79.840000pt;}
.w2{width:641.279960pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:7.466666pt;}
.x2e{left:13.760000pt;}
.x2d{left:20.320000pt;}
.x17{left:39.333333pt;}
.xb{left:75.520000pt;}
.x2b{left:86.654240pt;}
.x2{left:87.841600pt;}
.x29{left:90.717920pt;}
.x32{left:95.200000pt;}
.x1{left:96.640000pt;}
.x2c{left:126.720000pt;}
.x1a{left:144.473760pt;}
.xc{left:167.200000pt;}
.x1c{left:171.197120pt;}
.x31{left:177.440000pt;}
.x2f{left:182.400000pt;}
.x16{left:184.471388pt;}
.x5{left:187.360000pt;}
.x4{left:206.240000pt;}
.x6{left:207.200000pt;}
.x3{left:211.037920pt;}
.x8{left:215.680000pt;}
.x1b{left:217.120000pt;}
.x1d{left:219.200000pt;}
.xa{left:251.840000pt;}
.x9{left:268.800000pt;}
.x7{left:314.080000pt;}
.x1f{left:339.200000pt;}
.x1e{left:362.880640pt;}
.x19{left:379.203840pt;}
.x2a{left:380.155520pt;}
.x28{left:389.438240pt;}
.xd{left:406.228640pt;}
.xe{left:412.960000pt;}
.x10{left:418.720000pt;}
.x25{left:443.540320pt;}
.x21{left:463.208000pt;}
.x24{left:468.320000pt;}
.x23{left:475.840000pt;}
.x22{left:477.603520pt;}
.x14{left:500.299040pt;}
.x30{left:507.680000pt;}
.x12{left:513.114240pt;}
.x26{left:520.006560pt;}
.x20{left:526.240000pt;}
.xf{left:545.440000pt;}
.x13{left:548.160160pt;}
.x15{left:560.642880pt;}
.x11{left:718.250400pt;}
.x27{left:743.280000pt;}
}




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