
    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_2172e8cadac13dfaee5c349d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_f0505c19cb3ef526dac40a35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_92f505211d0afe7f5ace18d2.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_38ebadf0f7e29139156f6462.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_e583762a04dbefbd33eb0f9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.623000;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_9b8485a272be02cb1c95466e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9ede52b99660678558cceaf6.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_d84695aed8437c1dc8ae76ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6af659050667d3b55f87dbc1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d809c0d8e1d788615ee7967f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_154a44313c0f3a9545b989be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.625000;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_94e37b8933c34c61dfe8e188.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_b4d697b67831773d62d0fa5b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.414000;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_c66a6348a7f575a64a5d765f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.684000px;}
.v8{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.v6{vertical-align:48.528000px;}
.v7{vertical-align:53.802000px;}
.v5{vertical-align:102.324000px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.002598px;}
.ls31{letter-spacing:0.003679px;}
.ls2a{letter-spacing:0.007511px;}
.ls35{letter-spacing:0.010441px;}
.ls3c{letter-spacing:0.017837px;}
.ls16{letter-spacing:0.018040px;}
.ls37{letter-spacing:0.018445px;}
.lsc{letter-spacing:0.018741px;}
.ls38{letter-spacing:0.022773px;}
.ls2f{letter-spacing:0.032277px;}
.ls17{letter-spacing:1.936742px;}
.ls28{letter-spacing:2.008474px;}
.lsf{letter-spacing:2.510592px;}
.ls8{letter-spacing:2.582323px;}
.lsb{letter-spacing:2.984915px;}
.ls24{letter-spacing:2.988792px;}
.ls0{letter-spacing:2.990915px;}
.ls13{letter-spacing:3.227904px;}
.ls4e{letter-spacing:4.877722px;}
.ls47{letter-spacing:5.523302px;}
.ls26{letter-spacing:6.097152px;}
.ls11{letter-spacing:6.676180px;}
.ls4d{letter-spacing:7.388314px;}
.ls25{letter-spacing:8.679475px;}
.ls36{letter-spacing:11.950404px;}
.ls33{letter-spacing:11.952545px;}
.ls19{letter-spacing:11.979110px;}
.ls4b{letter-spacing:14.059315px;}
.ls1c{letter-spacing:15.852595px;}
.ls22{letter-spacing:15.924326px;}
.ls43{letter-spacing:16.641638px;}
.ls20{letter-spacing:17.358950px;}
.ls1b{letter-spacing:17.430682px;}
.ls21{letter-spacing:18.506650px;}
.ls46{letter-spacing:18.793574px;}
.ls34{letter-spacing:18.926915px;}
.ls42{letter-spacing:19.223962px;}
.ls52{letter-spacing:19.869542px;}
.ls6{letter-spacing:19.941274px;}
.ls3b{letter-spacing:20.443392px;}
.lse{letter-spacing:20.586854px;}
.ls27{letter-spacing:20.802048px;}
.ls1{letter-spacing:20.880017px;}
.ls45{letter-spacing:21.375898px;}
.ls7{letter-spacing:21.519360px;}
.ls44{letter-spacing:21.662822px;}
.ls4f{letter-spacing:21.806285px;}
.ls40{letter-spacing:21.878016px;}
.ls4{letter-spacing:22.308403px;}
.ls18{letter-spacing:22.523597px;}
.ls3d{letter-spacing:22.910915px;}
.ls3a{letter-spacing:23.025715px;}
.ls5{letter-spacing:23.097446px;}
.ls51{letter-spacing:23.169178px;}
.ls14{letter-spacing:23.384371px;}
.ls15{letter-spacing:23.456102px;}
.ls10{letter-spacing:23.527834px;}
.ls4c{letter-spacing:23.599565px;}
.ls30{letter-spacing:23.814758px;}
.ls3f{letter-spacing:24.388608px;}
.ls1f{letter-spacing:24.818995px;}
.ls50{letter-spacing:25.249382px;}
.ls2c{letter-spacing:25.392845px;}
.ls2b{letter-spacing:25.966694px;}
.ls49{letter-spacing:26.402915px;}
.ls32{letter-spacing:27.079544px;}
.ls1e{letter-spacing:27.257856px;}
.ls1a{letter-spacing:27.473050px;}
.ls2e{letter-spacing:27.688243px;}
.ls48{letter-spacing:28.046899px;}
.ls3e{letter-spacing:28.190362px;}
.ls29{letter-spacing:28.262093px;}
.ls2d{letter-spacing:28.764211px;}
.ls2{letter-spacing:29.389115px;}
.ls39{letter-spacing:30.700954px;}
.ls41{letter-spacing:34.072320px;}
.ls1d{letter-spacing:35.148288px;}
.ls12{letter-spacing:35.786915px;}
.lsa{letter-spacing:36.798106px;}
.ls9{letter-spacing:36.869837px;}
.ls4a{letter-spacing:38.447923px;}
.lsd{letter-spacing:39.830915px;}
.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;}
}
.ws3f{word-spacing:-45.664082px;}
.wsa3{word-spacing:-25.794540px;}
.ws17{word-spacing:-19.510886px;}
.ws92{word-spacing:-18.621420px;}
.wsa1{word-spacing:-5.451571px;}
.ws29{word-spacing:-3.730022px;}
.ws55{word-spacing:-3.658291px;}
.ws56{word-spacing:-3.586560px;}
.ws5f{word-spacing:-3.514829px;}
.ws9d{word-spacing:-3.478963px;}
.wsa5{word-spacing:-3.156173px;}
.ws9e{word-spacing:-3.084442px;}
.ws8f{word-spacing:-2.940979px;}
.ws3d{word-spacing:-2.438861px;}
.ws54{word-spacing:-2.151936px;}
.ws58{word-spacing:-1.793280px;}
.ws86{word-spacing:-1.578086px;}
.wsa9{word-spacing:-1.506355px;}
.ws1e{word-spacing:-1.362893px;}
.ws6a{word-spacing:-0.932506px;}
.wsbb{word-spacing:-0.573850px;}
.wsad{word-spacing:-0.358656px;}
.ws64{word-spacing:-0.251059px;}
.ws65{word-spacing:-0.215194px;}
.ws2{word-spacing:-0.123975px;}
.wsb5{word-spacing:-0.071731px;}
.ws40{word-spacing:-0.047821px;}
.ws22{word-spacing:0.000000px;}
.wsbe{word-spacing:0.143462px;}
.ws3e{word-spacing:0.215194px;}
.wsa0{word-spacing:0.358656px;}
.ws4b{word-spacing:0.430387px;}
.ws60{word-spacing:0.502118px;}
.ws7b{word-spacing:0.573850px;}
.wsb{word-spacing:0.602182px;}
.ws70{word-spacing:0.645581px;}
.wse{word-spacing:0.798546px;}
.ws96{word-spacing:0.860774px;}
.ws5c{word-spacing:0.932506px;}
.wsc0{word-spacing:1.004237px;}
.ws6b{word-spacing:1.075968px;}
.ws89{word-spacing:1.219430px;}
.ws38{word-spacing:1.291162px;}
.ws62{word-spacing:1.434624px;}
.ws79{word-spacing:1.578086px;}
.ws61{word-spacing:1.613952px;}
.ws1f{word-spacing:1.793280px;}
.ws78{word-spacing:1.829146px;}
.ws2e{word-spacing:2.008474px;}
.ws2a{word-spacing:2.151936px;}
.ws45{word-spacing:2.438861px;}
.ws1a{word-spacing:2.510592px;}
.wsa{word-spacing:2.696730px;}
.ws63{word-spacing:2.725786px;}
.ws2d{word-spacing:2.797517px;}
.ws30{word-spacing:2.940979px;}
.ws26{word-spacing:3.156173px;}
.wsa2{word-spacing:3.227904px;}
.ws5e{word-spacing:3.371366px;}
.ws9f{word-spacing:3.407232px;}
.ws76{word-spacing:3.443098px;}
.ws85{word-spacing:3.514829px;}
.ws4{word-spacing:3.613094px;}
.ws32{word-spacing:3.658291px;}
.ws5d{word-spacing:3.730022px;}
.ws5{word-spacing:3.744003px;}
.ws21{word-spacing:3.873485px;}
.ws75{word-spacing:3.896884px;}
.ws73{word-spacing:3.904057px;}
.ws74{word-spacing:3.932749px;}
.ws46{word-spacing:3.945216px;}
.wsa8{word-spacing:3.981082px;}
.ws4c{word-spacing:4.016947px;}
.ws6f{word-spacing:4.088678px;}
.ws9{word-spacing:4.136731px;}
.ws8{word-spacing:4.202185px;}
.ws19{word-spacing:4.303872px;}
.ws67{word-spacing:4.375603px;}
.ws8a{word-spacing:4.447334px;}
.ws52{word-spacing:4.483200px;}
.wsaa{word-spacing:4.554931px;}
.wsa7{word-spacing:4.626662px;}
.ws3{word-spacing:4.648169px;}
.ws72{word-spacing:4.805990px;}
.ws8e{word-spacing:4.877722px;}
.ws7c{word-spacing:4.913587px;}
.ws7a{word-spacing:4.949453px;}
.wsac{word-spacing:5.021184px;}
.ws66{word-spacing:5.057050px;}
.ws2c{word-spacing:5.092915px;}
.ws5a{word-spacing:5.164646px;}
.ws20{word-spacing:5.236378px;}
.wsc7{word-spacing:5.308109px;}
.ws3c{word-spacing:5.379825px;}
.ws2f{word-spacing:5.451571px;}
.ws69{word-spacing:5.523302px;}
.ws84{word-spacing:5.738496px;}
.wsc3{word-spacing:5.810227px;}
.ws59{word-spacing:5.989555px;}
.ws6c{word-spacing:6.025421px;}
.ws8d{word-spacing:6.097152px;}
.ws57{word-spacing:6.240614px;}
.ws7f{word-spacing:6.312346px;}
.ws68{word-spacing:6.348211px;}
.ws31{word-spacing:6.384077px;}
.ws3b{word-spacing:6.455775px;}
.wsb0{word-spacing:6.599270px;}
.ws95{word-spacing:6.671002px;}
.ws3a{word-spacing:6.742733px;}
.ws27{word-spacing:6.957926px;}
.ws8c{word-spacing:6.993792px;}
.wsab{word-spacing:7.029658px;}
.ws82{word-spacing:7.101389px;}
.ws10{word-spacing:7.213097px;}
.ws98{word-spacing:7.316582px;}
.ws94{word-spacing:7.603507px;}
.ws44{word-spacing:7.675238px;}
.ws49{word-spacing:7.818701px;}
.ws24{word-spacing:7.962163px;}
.ws36{word-spacing:8.105626px;}
.ws13{word-spacing:8.129461px;}
.ws37{word-spacing:8.249088px;}
.ws15{word-spacing:8.464282px;}
.ws11{word-spacing:8.522189px;}
.wsae{word-spacing:8.536013px;}
.ws7e{word-spacing:8.607744px;}
.ws4a{word-spacing:8.679475px;}
.ws93{word-spacing:8.715341px;}
.ws6{word-spacing:8.718553px;}
.ws71{word-spacing:8.751206px;}
.ws48{word-spacing:8.822938px;}
.ws28{word-spacing:8.966400px;}
.wsaf{word-spacing:9.038131px;}
.ws5b{word-spacing:9.181594px;}
.wsd{word-spacing:9.242190px;}
.ws1d{word-spacing:9.253325px;}
.ws1c{word-spacing:9.325056px;}
.ws4f{word-spacing:9.396787px;}
.ws4e{word-spacing:9.468518px;}
.wsa4{word-spacing:9.540250px;}
.ws34{word-spacing:9.611981px;}
.ws77{word-spacing:9.755443px;}
.ws9c{word-spacing:9.827174px;}
.ws7d{word-spacing:9.863040px;}
.ws35{word-spacing:10.042368px;}
.ws12{word-spacing:10.093099px;}
.ws6d{word-spacing:10.114099px;}
.ws39{word-spacing:10.257562px;}
.wsc8{word-spacing:10.472755px;}
.ws87{word-spacing:10.831411px;}
.ws97{word-spacing:10.974874px;}
.wsf{word-spacing:11.009464px;}
.ws83{word-spacing:11.118336px;}
.ws4d{word-spacing:11.190067px;}
.wsc{word-spacing:11.205828px;}
.ws51{word-spacing:11.476992px;}
.ws6e{word-spacing:11.763917px;}
.ws2b{word-spacing:11.979110px;}
.ws88{word-spacing:12.337766px;}
.ws91{word-spacing:12.409498px;}
.wsc1{word-spacing:12.552960px;}
.ws8b{word-spacing:12.624691px;}
.ws23{word-spacing:12.768154px;}
.ws33{word-spacing:12.983347px;}
.ws50{word-spacing:13.270272px;}
.wsc6{word-spacing:13.413734px;}
.ws16{word-spacing:13.700659px;}
.wsb9{word-spacing:13.772390px;}
.ws42{word-spacing:13.844122px;}
.wsbd{word-spacing:14.202778px;}
.ws90{word-spacing:14.238643px;}
.ws7{word-spacing:14.347648px;}
.ws25{word-spacing:14.633165px;}
.ws9a{word-spacing:14.776627px;}
.wsbc{word-spacing:14.848358px;}
.ws41{word-spacing:15.278746px;}
.ws1b{word-spacing:15.422208px;}
.wsa6{word-spacing:15.637402px;}
.ws99{word-spacing:17.036160px;}
.ws43{word-spacing:17.358950px;}
.ws14{word-spacing:17.896934px;}
.ws9b{word-spacing:18.937037px;}
.wsb6{word-spacing:20.515123px;}
.wsbf{word-spacing:21.591091px;}
.wsb4{word-spacing:22.451866px;}
.wsb7{word-spacing:23.456102px;}
.ws47{word-spacing:23.518271px;}
.wsb3{word-spacing:24.818995px;}
.wsb2{word-spacing:25.034189px;}
.ws81{word-spacing:26.348084px;}
.wsc5{word-spacing:26.397082px;}
.wsc2{word-spacing:26.468813px;}
.wsba{word-spacing:26.540544px;}
.wsb1{word-spacing:27.473050px;}
.wsc9{word-spacing:28.477286px;}
.wsb8{word-spacing:28.907674px;}
.wsc4{word-spacing:31.561728px;}
.ws1{word-spacing:35.456850px;}
.ws0{word-spacing:37.316475px;}
.ws18{word-spacing:83.925075px;}
.ws53{word-spacing:271.359130px;}
.ws80{word-spacing:797.738084px;}
._1d{margin-left:-28.176035px;}
._37{margin-left:-26.789188px;}
._22{margin-left:-8.215638px;}
._3{margin-left:-6.972253px;}
._6{margin-left:-5.301823px;}
._30{margin-left:-4.232141px;}
._1{margin-left:-3.223350px;}
._4{margin-left:-1.832729px;}
._5{width:1.832729px;}
._a{width:3.730912px;}
._20{width:4.880334px;}
._2{width:6.446700px;}
._16{width:17.378718px;}
._18{width:19.335142px;}
._3c{width:20.510569px;}
._3d{width:21.867176px;}
._38{width:22.978172px;}
._3a{width:25.212546px;}
._b{width:28.145478px;}
._11{width:29.481523px;}
._8{width:30.829117px;}
._1f{width:32.350771px;}
._17{width:33.537919px;}
._f{width:35.650406px;}
._14{width:36.726374px;}
._19{width:38.734848px;}
._e{width:41.240886px;}
._1e{width:42.647782px;}
._1a{width:44.154137px;}
._21{width:45.184370px;}
._15{width:46.338355px;}
._d{width:48.240040px;}
._0{width:49.466025px;}
._c{width:50.923679px;}
._9{width:51.970952px;}
._3b{width:53.474639px;}
._39{width:56.380723px;}
._12{width:58.030541px;}
._7{width:61.200051px;}
._13{width:64.130305px;}
._10{width:65.705779px;}
._2a{width:71.731200px;}
._1c{width:96.836850px;}
._1b{width:116.203950px;}
._2c{width:137.652173px;}
._31{width:153.146112px;}
._32{width:234.489293px;}
._36{width:280.971110px;}
._34{width:295.676006px;}
._35{width:303.351245px;}
._28{width:310.883021px;}
._26{width:330.393907px;}
._2e{width:335.128166px;}
._2b{width:374.072427px;}
._25{width:378.206335px;}
._24{width:385.913856px;}
._33{width:397.677773px;}
._2d{width:481.563828px;}
._2f{width:509.761356px;}
._27{width:515.603866px;}
._29{width:629.943398px;}
._23{width:765.510812px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs6{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y25{bottom:63.168000px;}
.y9e{bottom:103.516500px;}
.y78{bottom:108.000000px;}
.y52{bottom:110.676000px;}
.y9d{bottom:115.818000px;}
.y24{bottom:125.160000px;}
.y77{bottom:129.669000px;}
.y51{bottom:132.343500px;}
.y107{bottom:138.694500px;}
.ybd{bottom:141.489000px;}
.yc7{bottom:143.526000px;}
.y9c{bottom:146.380500px;}
.y23{bottom:146.829000px;}
.y76{bottom:151.338000px;}
.y50{bottom:154.012500px;}
.y106{bottom:160.363500px;}
.ybc{bottom:163.158000px;}
.y9b{bottom:168.049500px;}
.y22{bottom:168.496500px;}
.yab{bottom:173.007000px;}
.y4f{bottom:175.681500px;}
.ybb{bottom:184.825500px;}
.y75{bottom:186.076500px;}
.y9a{bottom:189.718500px;}
.y21{bottom:190.165500px;}
.yaa{bottom:194.674500px;}
.y105{bottom:196.977000px;}
.y4e{bottom:197.350500px;}
.yba{bottom:206.494500px;}
.y74{bottom:207.745500px;}
.ye7{bottom:208.558500px;}
.y20{bottom:211.834500px;}
.ya9{bottom:216.343500px;}
.y104{bottom:218.646000px;}
.y4d{bottom:219.019500px;}
.y99{bottom:225.580500px;}
.y73{bottom:229.414500px;}
.ye6{bottom:230.227500px;}
.y1f{bottom:233.503500px;}
.ya8{bottom:238.012500px;}
.y4c{bottom:240.688500px;}
.yb9{bottom:243.108000px;}
.y98{bottom:247.249500px;}
.y72{bottom:251.083500px;}
.ye5{bottom:251.896500px;}
.y1e{bottom:255.172500px;}
.y103{bottom:255.258000px;}
.ya7{bottom:259.681500px;}
.y4b{bottom:262.356000px;}
.yb8{bottom:264.777000px;}
.y97{bottom:268.918500px;}
.ye4{bottom:273.564000px;}
.y1d{bottom:276.841500px;}
.y102{bottom:276.927000px;}
.ya6{bottom:281.350500px;}
.y4a{bottom:284.025000px;}
.y71{bottom:285.822000px;}
.yb7{bottom:286.444500px;}
.y1c{bottom:298.509000px;}
.y96{bottom:304.782000px;}
.y49{bottom:305.694000px;}
.y70{bottom:307.491000px;}
.yb6{bottom:308.113500px;}
.ye3{bottom:310.419000px;}
.y101{bottom:313.539000px;}
.ya5{bottom:320.317500px;}
.y95{bottom:326.451000px;}
.y48{bottom:327.363000px;}
.y6f{bottom:329.160000px;}
.ye2{bottom:332.086500px;}
.y100{bottom:335.208000px;}
.y1b{bottom:337.936500px;}
.yb5{bottom:344.727000px;}
.y94{bottom:348.118500px;}
.y47{bottom:349.032000px;}
.y6e{bottom:350.827500px;}
.ye1{bottom:353.755500px;}
.yb4{bottom:366.396000px;}
.y93{bottom:369.787500px;}
.yff{bottom:371.821500px;}
.y6d{bottom:372.496500px;}
.y46{bottom:382.282500px;}
.yb3{bottom:388.063500px;}
.ye0{bottom:393.183000px;}
.yfe{bottom:393.489000px;}
.y6c{bottom:394.165500px;}
.y1a{bottom:397.837500px;}
.y92{bottom:407.886000px;}
.yfd{bottom:415.158000px;}
.y6b{bottom:415.834500px;}
.y19{bottom:419.506500px;}
.y45{bottom:426.939000px;}
.yb2{bottom:429.160500px;}
.y91{bottom:429.553500px;}
.y6a{bottom:437.503500px;}
.y18{bottom:441.174000px;}
.yb1{bottom:450.828000px;}
.y90{bottom:451.222500px;}
.yfc{bottom:451.771500px;}
.ydf{bottom:452.535000px;}
.y69{bottom:459.172500px;}
.y11d{bottom:467.412000px;}
.yb0{bottom:472.497000px;}
.y8f{bottom:472.891500px;}
.yfb{bottom:473.440500px;}
.yde{bottom:474.204000px;}
.y17{bottom:480.775500px;}
.y44{bottom:486.840000px;}
.y11c{bottom:489.081000px;}
.y68{bottom:492.772500px;}
.yaf{bottom:494.166000px;}
.y8e{bottom:494.560500px;}
.ydd{bottom:495.873000px;}
.y16{bottom:501.100500px;}
.y43{bottom:508.509000px;}
.yfa{bottom:510.052500px;}
.y67{bottom:514.441500px;}
.yae{bottom:515.835000px;}
.y15{bottom:521.424000px;}
.y11b{bottom:525.694500px;}
.y8d{bottom:527.811000px;}
.yc6{bottom:528.606000px;}
.y42{bottom:530.176500px;}
.yf9{bottom:531.721500px;}
.ydc{bottom:532.726500px;}
.y66{bottom:536.110500px;}
.y14{bottom:541.747500px;}
.y11a{bottom:547.363500px;}
.yc5{bottom:550.275000px;}
.y41{bottom:551.845500px;}
.ydb{bottom:554.395500px;}
.yad{bottom:557.728500px;}
.y65{bottom:557.779500px;}
.y13{bottom:562.071000px;}
.yf8{bottom:568.333500px;}
.yc4{bottom:571.944000px;}
.y40{bottom:573.514500px;}
.yda{bottom:576.064500px;}
.y8c{bottom:579.415500px;}
.y64{bottom:579.448500px;}
.y12{bottom:582.394500px;}
.y119{bottom:583.975500px;}
.yf7{bottom:590.002500px;}
.yc3{bottom:593.611500px;}
.y3f{bottom:595.183500px;}
.yd9{bottom:597.733500px;}
.y8b{bottom:601.084500px;}
.y63{bottom:601.117500px;}
.y11{bottom:602.719500px;}
.y118{bottom:605.644500px;}
.y3e{bottom:616.852500px;}
.y8a{bottom:622.753500px;}
.y62{bottom:622.785000px;}
.y10{bottom:623.043000px;}
.yf6{bottom:626.616000px;}
.yd8{bottom:633.285000px;}
.yc2{bottom:634.708500px;}
.y3d{bottom:638.521500px;}
.y117{bottom:642.256500px;}
.yf{bottom:643.366500px;}
.y89{bottom:644.422500px;}
.yf5{bottom:648.283500px;}
.yd7{bottom:654.954000px;}
.y61{bottom:656.035500px;}
.y3c{bottom:660.189000px;}
.ye{bottom:663.690000px;}
.y116{bottom:663.925500px;}
.yf4{bottom:669.952500px;}
.yc1{bottom:676.302000px;}
.yd6{bottom:676.623000px;}
.y3b{bottom:681.858000px;}
.yd{bottom:684.013500px;}
.y88{bottom:696.507000px;}
.yd5{bottom:698.292000px;}
.y115{bottom:700.539000px;}
.y3a{bottom:703.527000px;}
.yc{bottom:704.338500px;}
.yf3{bottom:706.566000px;}
.y60{bottom:707.061000px;}
.y87{bottom:718.632000px;}
.y114{bottom:722.206500px;}
.yb{bottom:724.662000px;}
.y39{bottom:725.196000px;}
.yf2{bottom:728.235000px;}
.y5f{bottom:728.728500px;}
.yd4{bottom:733.843500px;}
.y86{bottom:740.755500px;}
.ya{bottom:744.985500px;}
.y38{bottom:746.865000px;}
.yf1{bottom:749.902500px;}
.y5e{bottom:750.397500px;}
.yd3{bottom:755.512500px;}
.y113{bottom:758.820000px;}
.y9{bottom:765.309000px;}
.y37{bottom:768.534000px;}
.y85{bottom:771.865500px;}
.yd2{bottom:777.181500px;}
.y112{bottom:780.489000px;}
.y8{bottom:785.632500px;}
.yf0{bottom:786.516000px;}
.y36{bottom:790.201500px;}
.y84{bottom:799.434000px;}
.y5d{bottom:800.235000px;}
.yef{bottom:808.185000px;}
.y35{bottom:811.870500px;}
.yd1{bottom:814.035000px;}
.y7{bottom:815.974500px;}
.y111{bottom:817.101000px;}
.y83{bottom:821.103000px;}
.y5c{bottom:821.904000px;}
.y34{bottom:833.539500px;}
.yd0{bottom:835.704000px;}
.y110{bottom:838.770000px;}
.y82{bottom:842.772000px;}
.y5b{bottom:843.573000px;}
.yee{bottom:844.797000px;}
.y33{bottom:855.208500px;}
.ycf{bottom:857.373000px;}
.y10f{bottom:860.439000px;}
.y81{bottom:864.441000px;}
.y5a{bottom:865.240500px;}
.yed{bottom:866.466000px;}
.y32{bottom:876.877500px;}
.y6{bottom:882.669000px;}
.y59{bottom:886.909500px;}
.yec{bottom:888.135000px;}
.yce{bottom:896.799000px;}
.y10e{bottom:897.051000px;}
.y31{bottom:898.546500px;}
.y58{bottom:908.578500px;}
.y5{bottom:915.505500px;}
.y10d{bottom:918.720000px;}
.y30{bottom:920.214000px;}
.yeb{bottom:927.562500px;}
.y80{bottom:927.688500px;}
.ya4{bottom:932.850000px;}
.y4{bottom:936.466500px;}
.y57{bottom:939.232500px;}
.y10c{bottom:940.389000px;}
.y2f{bottom:941.883000px;}
.yc0{bottom:943.315500px;}
.y7f{bottom:949.357500px;}
.ycd{bottom:956.152500px;}
.y56{bottom:962.317500px;}
.y2e{bottom:963.552000px;}
.ybf{bottom:964.984500px;}
.y7e{bottom:971.026500px;}
.y10b{bottom:977.001000px;}
.ya3{bottom:977.506500px;}
.ycc{bottom:977.821500px;}
.y55{bottom:983.986500px;}
.y2d{bottom:985.221000px;}
.yea{bottom:987.462000px;}
.y3{bottom:989.704500px;}
.y7d{bottom:992.695500px;}
.ybe{bottom:998.235000px;}
.y10a{bottom:998.670000px;}
.ycb{bottom:999.489000px;}
.y54{bottom:1005.655500px;}
.y2c{bottom:1006.890000px;}
.ye9{bottom:1009.131000px;}
.y7c{bottom:1014.364500px;}
.yac{bottom:1019.902500px;}
.y2{bottom:1027.063500px;}
.y53{bottom:1027.324500px;}
.y2b{bottom:1028.557500px;}
.ye8{bottom:1030.800000px;}
.y109{bottom:1035.283500px;}
.y7b{bottom:1036.032000px;}
.yca{bottom:1036.344000px;}
.ya2{bottom:1036.651500px;}
.y2a{bottom:1050.226500px;}
.y108{bottom:1056.952500px;}
.y7a{bottom:1057.701000px;}
.yc9{bottom:1058.011500px;}
.ya1{bottom:1058.320500px;}
.y1{bottom:1064.424000px;}
.y29{bottom:1071.895500px;}
.y79{bottom:1079.370000px;}
.yc8{bottom:1079.680500px;}
.ya0{bottom:1079.989500px;}
.y28{bottom:1093.564500px;}
.y9f{bottom:1101.658500px;}
.y27{bottom:1115.233500px;}
.y26{bottom:1136.902500px;}
.h4{height:33.187496px;}
.h5{height:40.385488px;}
.h6{height:45.687311px;}
.h7{height:49.090950px;}
.h8{height:53.798400px;}
.he{height:53.802000px;}
.ha{height:64.557900px;}
.hc{height:66.476400px;}
.hb{height:66.482400px;}
.h3{height:76.067700px;}
.h9{height:77.469300px;}
.h2{height:87.030450px;}
.hd{height:102.326400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.000000px;}
.x12{left:111.892500px;}
.x16{left:116.779500px;}
.x1{left:123.640500px;}
.x15{left:129.460500px;}
.xb{left:134.338500px;}
.x17{left:144.093000px;}
.x13{left:146.835000px;}
.x9{left:151.897500px;}
.xc{left:159.922500px;}
.x5{left:172.452000px;}
.x14{left:174.801000px;}
.x8{left:176.443500px;}
.xd{left:189.697500px;}
.x6{left:351.957000px;}
.xe{left:358.824000px;}
.xf{left:373.035000px;}
.x3{left:382.068000px;}
.x4{left:395.382000px;}
.x7{left:410.455500px;}
.x10{left:435.439500px;}
.x18{left:437.677500px;}
.xa{left:442.066500px;}
.x11{left:513.574500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.274667pt;}
.v8{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.v6{vertical-align:43.136000pt;}
.v7{vertical-align:47.824000pt;}
.v5{vertical-align:90.954667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.002309pt;}
.ls31{letter-spacing:0.003270pt;}
.ls2a{letter-spacing:0.006676pt;}
.ls35{letter-spacing:0.009281pt;}
.ls3c{letter-spacing:0.015855pt;}
.ls16{letter-spacing:0.016036pt;}
.ls37{letter-spacing:0.016396pt;}
.lsc{letter-spacing:0.016659pt;}
.ls38{letter-spacing:0.020243pt;}
.ls2f{letter-spacing:0.028691pt;}
.ls17{letter-spacing:1.721549pt;}
.ls28{letter-spacing:1.785310pt;}
.lsf{letter-spacing:2.231637pt;}
.ls8{letter-spacing:2.295398pt;}
.lsb{letter-spacing:2.653258pt;}
.ls24{letter-spacing:2.656704pt;}
.ls0{letter-spacing:2.658591pt;}
.ls13{letter-spacing:2.869248pt;}
.ls4e{letter-spacing:4.335753pt;}
.ls47{letter-spacing:4.909602pt;}
.ls26{letter-spacing:5.419691pt;}
.ls11{letter-spacing:5.934383pt;}
.ls4d{letter-spacing:6.567390pt;}
.ls25{letter-spacing:7.715089pt;}
.ls36{letter-spacing:10.622582pt;}
.ls33{letter-spacing:10.624485pt;}
.ls19{letter-spacing:10.648098pt;}
.ls4b{letter-spacing:12.497169pt;}
.ls1c{letter-spacing:14.091196pt;}
.ls22{letter-spacing:14.154957pt;}
.ls43{letter-spacing:14.792567pt;}
.ls20{letter-spacing:15.430178pt;}
.ls1b{letter-spacing:15.493939pt;}
.ls21{letter-spacing:16.450355pt;}
.ls46{letter-spacing:16.705399pt;}
.ls34{letter-spacing:16.823925pt;}
.ls42{letter-spacing:17.087966pt;}
.ls52{letter-spacing:17.661815pt;}
.ls6{letter-spacing:17.725577pt;}
.ls3b{letter-spacing:18.171904pt;}
.lse{letter-spacing:18.299426pt;}
.ls27{letter-spacing:18.490709pt;}
.ls1{letter-spacing:18.560015pt;}
.ls45{letter-spacing:19.000798pt;}
.ls7{letter-spacing:19.128320pt;}
.ls44{letter-spacing:19.255842pt;}
.ls4f{letter-spacing:19.383364pt;}
.ls40{letter-spacing:19.447125pt;}
.ls4{letter-spacing:19.829692pt;}
.ls18{letter-spacing:20.020975pt;}
.ls3d{letter-spacing:20.365258pt;}
.ls3a{letter-spacing:20.467302pt;}
.ls5{letter-spacing:20.531063pt;}
.ls51{letter-spacing:20.594825pt;}
.ls14{letter-spacing:20.786108pt;}
.ls15{letter-spacing:20.849869pt;}
.ls10{letter-spacing:20.913630pt;}
.ls4c{letter-spacing:20.977391pt;}
.ls30{letter-spacing:21.168674pt;}
.ls3f{letter-spacing:21.678763pt;}
.ls1f{letter-spacing:22.061329pt;}
.ls50{letter-spacing:22.443895pt;}
.ls2c{letter-spacing:22.571418pt;}
.ls2b{letter-spacing:23.081506pt;}
.ls49{letter-spacing:23.469258pt;}
.ls32{letter-spacing:24.070705pt;}
.ls1e{letter-spacing:24.229205pt;}
.ls1a{letter-spacing:24.420489pt;}
.ls2e{letter-spacing:24.611772pt;}
.ls48{letter-spacing:24.930577pt;}
.ls3e{letter-spacing:25.058099pt;}
.ls29{letter-spacing:25.121860pt;}
.ls2d{letter-spacing:25.568188pt;}
.ls2{letter-spacing:26.123658pt;}
.ls39{letter-spacing:27.289737pt;}
.ls41{letter-spacing:30.286507pt;}
.ls1d{letter-spacing:31.242923pt;}
.ls12{letter-spacing:31.810591pt;}
.lsa{letter-spacing:32.709427pt;}
.ls9{letter-spacing:32.773188pt;}
.ls4a{letter-spacing:34.175932pt;}
.lsd{letter-spacing:35.405258pt;}
.ws3f{word-spacing:-40.590295pt;}
.wsa3{word-spacing:-22.928480pt;}
.ws17{word-spacing:-17.343010pt;}
.ws92{word-spacing:-16.552373pt;}
.wsa1{word-spacing:-4.845841pt;}
.ws29{word-spacing:-3.315575pt;}
.ws55{word-spacing:-3.251814pt;}
.ws56{word-spacing:-3.188053pt;}
.ws5f{word-spacing:-3.124292pt;}
.ws9d{word-spacing:-3.092412pt;}
.wsa5{word-spacing:-2.805487pt;}
.ws9e{word-spacing:-2.741726pt;}
.ws8f{word-spacing:-2.614204pt;}
.ws3d{word-spacing:-2.167876pt;}
.ws54{word-spacing:-1.912832pt;}
.ws58{word-spacing:-1.594027pt;}
.ws86{word-spacing:-1.402743pt;}
.wsa9{word-spacing:-1.338982pt;}
.ws1e{word-spacing:-1.211460pt;}
.ws6a{word-spacing:-0.828894pt;}
.wsbb{word-spacing:-0.510089pt;}
.wsad{word-spacing:-0.318805pt;}
.ws64{word-spacing:-0.223164pt;}
.ws65{word-spacing:-0.191283pt;}
.ws2{word-spacing:-0.110200pt;}
.wsb5{word-spacing:-0.063761pt;}
.ws40{word-spacing:-0.042507pt;}
.ws22{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.127522pt;}
.ws3e{word-spacing:0.191283pt;}
.wsa0{word-spacing:0.318805pt;}
.ws4b{word-spacing:0.382566pt;}
.ws60{word-spacing:0.446327pt;}
.ws7b{word-spacing:0.510089pt;}
.wsb{word-spacing:0.535273pt;}
.ws70{word-spacing:0.573850pt;}
.wse{word-spacing:0.709819pt;}
.ws96{word-spacing:0.765133pt;}
.ws5c{word-spacing:0.828894pt;}
.wsc0{word-spacing:0.892655pt;}
.ws6b{word-spacing:0.956416pt;}
.ws89{word-spacing:1.083938pt;}
.ws38{word-spacing:1.147699pt;}
.ws62{word-spacing:1.275221pt;}
.ws79{word-spacing:1.402743pt;}
.ws61{word-spacing:1.434624pt;}
.ws1f{word-spacing:1.594027pt;}
.ws78{word-spacing:1.625907pt;}
.ws2e{word-spacing:1.785310pt;}
.ws2a{word-spacing:1.912832pt;}
.ws45{word-spacing:2.167876pt;}
.ws1a{word-spacing:2.231637pt;}
.wsa{word-spacing:2.397093pt;}
.ws63{word-spacing:2.422921pt;}
.ws2d{word-spacing:2.486682pt;}
.ws30{word-spacing:2.614204pt;}
.ws26{word-spacing:2.805487pt;}
.wsa2{word-spacing:2.869248pt;}
.ws5e{word-spacing:2.996770pt;}
.ws9f{word-spacing:3.028651pt;}
.ws76{word-spacing:3.060531pt;}
.ws85{word-spacing:3.124292pt;}
.ws4{word-spacing:3.211639pt;}
.ws32{word-spacing:3.251814pt;}
.ws5d{word-spacing:3.315575pt;}
.ws5{word-spacing:3.328003pt;}
.ws21{word-spacing:3.443098pt;}
.ws75{word-spacing:3.463897pt;}
.ws73{word-spacing:3.470273pt;}
.ws74{word-spacing:3.495777pt;}
.ws46{word-spacing:3.506859pt;}
.wsa8{word-spacing:3.538739pt;}
.ws4c{word-spacing:3.570620pt;}
.ws6f{word-spacing:3.634381pt;}
.ws9{word-spacing:3.677094pt;}
.ws8{word-spacing:3.735276pt;}
.ws19{word-spacing:3.825664pt;}
.ws67{word-spacing:3.889425pt;}
.ws8a{word-spacing:3.953186pt;}
.ws52{word-spacing:3.985067pt;}
.wsaa{word-spacing:4.048828pt;}
.wsa7{word-spacing:4.112589pt;}
.ws3{word-spacing:4.131706pt;}
.ws72{word-spacing:4.271991pt;}
.ws8e{word-spacing:4.335753pt;}
.ws7c{word-spacing:4.367633pt;}
.ws7a{word-spacing:4.399514pt;}
.wsac{word-spacing:4.463275pt;}
.ws66{word-spacing:4.495155pt;}
.ws2c{word-spacing:4.527036pt;}
.ws5a{word-spacing:4.590797pt;}
.ws20{word-spacing:4.654558pt;}
.wsc7{word-spacing:4.718319pt;}
.ws3c{word-spacing:4.782067pt;}
.ws2f{word-spacing:4.845841pt;}
.ws69{word-spacing:4.909602pt;}
.ws84{word-spacing:5.100885pt;}
.wsc3{word-spacing:5.164646pt;}
.ws59{word-spacing:5.324049pt;}
.ws6c{word-spacing:5.355930pt;}
.ws8d{word-spacing:5.419691pt;}
.ws57{word-spacing:5.547213pt;}
.ws7f{word-spacing:5.610974pt;}
.ws68{word-spacing:5.642854pt;}
.ws31{word-spacing:5.674735pt;}
.ws3b{word-spacing:5.738467pt;}
.wsb0{word-spacing:5.866018pt;}
.ws95{word-spacing:5.929779pt;}
.ws3a{word-spacing:5.993540pt;}
.ws27{word-spacing:6.184823pt;}
.ws8c{word-spacing:6.216704pt;}
.wsab{word-spacing:6.248585pt;}
.ws82{word-spacing:6.312346pt;}
.ws10{word-spacing:6.411642pt;}
.ws98{word-spacing:6.503629pt;}
.ws94{word-spacing:6.758673pt;}
.ws44{word-spacing:6.822434pt;}
.ws49{word-spacing:6.949956pt;}
.ws24{word-spacing:7.077478pt;}
.ws36{word-spacing:7.205001pt;}
.ws13{word-spacing:7.226188pt;}
.ws37{word-spacing:7.332523pt;}
.ws15{word-spacing:7.523806pt;}
.ws11{word-spacing:7.575279pt;}
.wsae{word-spacing:7.587567pt;}
.ws7e{word-spacing:7.651328pt;}
.ws4a{word-spacing:7.715089pt;}
.ws93{word-spacing:7.746970pt;}
.ws6{word-spacing:7.749825pt;}
.ws71{word-spacing:7.778850pt;}
.ws48{word-spacing:7.842611pt;}
.ws28{word-spacing:7.970133pt;}
.wsaf{word-spacing:8.033894pt;}
.ws5b{word-spacing:8.161417pt;}
.wsd{word-spacing:8.215280pt;}
.ws1d{word-spacing:8.225178pt;}
.ws1c{word-spacing:8.288939pt;}
.ws4f{word-spacing:8.352700pt;}
.ws4e{word-spacing:8.416461pt;}
.wsa4{word-spacing:8.480222pt;}
.ws34{word-spacing:8.543983pt;}
.ws77{word-spacing:8.671505pt;}
.ws9c{word-spacing:8.735266pt;}
.ws7d{word-spacing:8.767147pt;}
.ws35{word-spacing:8.926549pt;}
.ws12{word-spacing:8.971644pt;}
.ws6d{word-spacing:8.990310pt;}
.ws39{word-spacing:9.117833pt;}
.wsc8{word-spacing:9.309116pt;}
.ws87{word-spacing:9.627921pt;}
.ws97{word-spacing:9.755443pt;}
.wsf{word-spacing:9.786190pt;}
.ws83{word-spacing:9.882965pt;}
.ws4d{word-spacing:9.946726pt;}
.wsc{word-spacing:9.960736pt;}
.ws51{word-spacing:10.201771pt;}
.ws6e{word-spacing:10.456815pt;}
.ws2b{word-spacing:10.648098pt;}
.ws88{word-spacing:10.966903pt;}
.ws91{word-spacing:11.030665pt;}
.wsc1{word-spacing:11.158187pt;}
.ws8b{word-spacing:11.221948pt;}
.ws23{word-spacing:11.349470pt;}
.ws33{word-spacing:11.540753pt;}
.ws50{word-spacing:11.795797pt;}
.wsc6{word-spacing:11.923319pt;}
.ws16{word-spacing:12.178364pt;}
.wsb9{word-spacing:12.242125pt;}
.ws42{word-spacing:12.305886pt;}
.wsbd{word-spacing:12.624691pt;}
.ws90{word-spacing:12.656572pt;}
.ws7{word-spacing:12.753465pt;}
.ws25{word-spacing:13.007258pt;}
.ws9a{word-spacing:13.134780pt;}
.wsbc{word-spacing:13.198541pt;}
.ws41{word-spacing:13.581107pt;}
.ws1b{word-spacing:13.708629pt;}
.wsa6{word-spacing:13.899913pt;}
.ws99{word-spacing:15.143253pt;}
.ws43{word-spacing:15.430178pt;}
.ws14{word-spacing:15.908386pt;}
.ws9b{word-spacing:16.832922pt;}
.wsb6{word-spacing:18.235665pt;}
.wsbf{word-spacing:19.192081pt;}
.wsb4{word-spacing:19.957214pt;}
.wsb7{word-spacing:20.849869pt;}
.ws47{word-spacing:20.905130pt;}
.wsb3{word-spacing:22.061329pt;}
.wsb2{word-spacing:22.252612pt;}
.ws81{word-spacing:23.420519pt;}
.wsc5{word-spacing:23.464073pt;}
.wsc2{word-spacing:23.527834pt;}
.wsba{word-spacing:23.591595pt;}
.wsb1{word-spacing:24.420489pt;}
.wsc9{word-spacing:25.313143pt;}
.wsb8{word-spacing:25.695710pt;}
.wsc4{word-spacing:28.054869pt;}
.ws1{word-spacing:31.517200pt;}
.ws0{word-spacing:33.170200pt;}
.ws18{word-spacing:74.600067pt;}
.ws53{word-spacing:241.208115pt;}
.ws80{word-spacing:709.100519pt;}
._1d{margin-left:-25.045364pt;}
._37{margin-left:-23.812612pt;}
._22{margin-left:-7.302789pt;}
._3{margin-left:-6.197558pt;}
._6{margin-left:-4.712731pt;}
._30{margin-left:-3.761903pt;}
._1{margin-left:-2.865200pt;}
._4{margin-left:-1.629092pt;}
._5{width:1.629092pt;}
._a{width:3.316366pt;}
._20{width:4.338075pt;}
._2{width:5.730400pt;}
._16{width:15.447749pt;}
._18{width:17.186793pt;}
._3c{width:18.231617pt;}
._3d{width:19.437490pt;}
._38{width:20.425042pt;}
._3a{width:22.411152pt;}
._b{width:25.018203pt;}
._11{width:26.205798pt;}
._8{width:27.403659pt;}
._1f{width:28.756241pt;}
._17{width:29.811484pt;}
._f{width:31.689250pt;}
._14{width:32.645666pt;}
._19{width:34.430976pt;}
._e{width:36.658565pt;}
._1e{width:37.909139pt;}
._1a{width:39.248122pt;}
._21{width:40.163884pt;}
._15{width:41.189649pt;}
._d{width:42.880036pt;}
._0{width:43.969800pt;}
._c{width:45.265492pt;}
._9{width:46.196402pt;}
._3b{width:47.533012pt;}
._39{width:50.116198pt;}
._12{width:51.582703pt;}
._7{width:54.400045pt;}
._13{width:57.004716pt;}
._10{width:58.405137pt;}
._2a{width:63.761067pt;}
._1c{width:86.077200pt;}
._1b{width:103.292400pt;}
._2c{width:122.357487pt;}
._31{width:136.129877pt;}
._32{width:208.434927pt;}
._36{width:249.752098pt;}
._34{width:262.823117pt;}
._35{width:269.645551pt;}
._28{width:276.340463pt;}
._26{width:293.683473pt;}
._2e{width:297.891703pt;}
._2b{width:332.508824pt;}
._25{width:336.183409pt;}
._24{width:343.034539pt;}
._33{width:353.491354pt;}
._2d{width:428.056736pt;}
._2f{width:453.121205pt;}
._27{width:458.314547pt;}
._29{width:559.949687pt;}
._23{width:680.454055pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs6{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:56.149333pt;}
.y9e{bottom:92.014667pt;}
.y78{bottom:96.000000pt;}
.y52{bottom:98.378667pt;}
.y9d{bottom:102.949333pt;}
.y24{bottom:111.253333pt;}
.y77{bottom:115.261333pt;}
.y51{bottom:117.638667pt;}
.y107{bottom:123.284000pt;}
.ybd{bottom:125.768000pt;}
.yc7{bottom:127.578667pt;}
.y9c{bottom:130.116000pt;}
.y23{bottom:130.514667pt;}
.y76{bottom:134.522667pt;}
.y50{bottom:136.900000pt;}
.y106{bottom:142.545333pt;}
.ybc{bottom:145.029333pt;}
.y9b{bottom:149.377333pt;}
.y22{bottom:149.774667pt;}
.yab{bottom:153.784000pt;}
.y4f{bottom:156.161333pt;}
.ybb{bottom:164.289333pt;}
.y75{bottom:165.401333pt;}
.y9a{bottom:168.638667pt;}
.y21{bottom:169.036000pt;}
.yaa{bottom:173.044000pt;}
.y105{bottom:175.090667pt;}
.y4e{bottom:175.422667pt;}
.yba{bottom:183.550667pt;}
.y74{bottom:184.662667pt;}
.ye7{bottom:185.385333pt;}
.y20{bottom:188.297333pt;}
.ya9{bottom:192.305333pt;}
.y104{bottom:194.352000pt;}
.y4d{bottom:194.684000pt;}
.y99{bottom:200.516000pt;}
.y73{bottom:203.924000pt;}
.ye6{bottom:204.646667pt;}
.y1f{bottom:207.558667pt;}
.ya8{bottom:211.566667pt;}
.y4c{bottom:213.945333pt;}
.yb9{bottom:216.096000pt;}
.y98{bottom:219.777333pt;}
.y72{bottom:223.185333pt;}
.ye5{bottom:223.908000pt;}
.y1e{bottom:226.820000pt;}
.y103{bottom:226.896000pt;}
.ya7{bottom:230.828000pt;}
.y4b{bottom:233.205333pt;}
.yb8{bottom:235.357333pt;}
.y97{bottom:239.038667pt;}
.ye4{bottom:243.168000pt;}
.y1d{bottom:246.081333pt;}
.y102{bottom:246.157333pt;}
.ya6{bottom:250.089333pt;}
.y4a{bottom:252.466667pt;}
.y71{bottom:254.064000pt;}
.yb7{bottom:254.617333pt;}
.y1c{bottom:265.341333pt;}
.y96{bottom:270.917333pt;}
.y49{bottom:271.728000pt;}
.y70{bottom:273.325333pt;}
.yb6{bottom:273.878667pt;}
.ye3{bottom:275.928000pt;}
.y101{bottom:278.701333pt;}
.ya5{bottom:284.726667pt;}
.y95{bottom:290.178667pt;}
.y48{bottom:290.989333pt;}
.y6f{bottom:292.586667pt;}
.ye2{bottom:295.188000pt;}
.y100{bottom:297.962667pt;}
.y1b{bottom:300.388000pt;}
.yb5{bottom:306.424000pt;}
.y94{bottom:309.438667pt;}
.y47{bottom:310.250667pt;}
.y6e{bottom:311.846667pt;}
.ye1{bottom:314.449333pt;}
.yb4{bottom:325.685333pt;}
.y93{bottom:328.700000pt;}
.yff{bottom:330.508000pt;}
.y6d{bottom:331.108000pt;}
.y46{bottom:339.806667pt;}
.yb3{bottom:344.945333pt;}
.ye0{bottom:349.496000pt;}
.yfe{bottom:349.768000pt;}
.y6c{bottom:350.369333pt;}
.y1a{bottom:353.633333pt;}
.y92{bottom:362.565333pt;}
.yfd{bottom:369.029333pt;}
.y6b{bottom:369.630667pt;}
.y19{bottom:372.894667pt;}
.y45{bottom:379.501333pt;}
.yb2{bottom:381.476000pt;}
.y91{bottom:381.825333pt;}
.y6a{bottom:388.892000pt;}
.y18{bottom:392.154667pt;}
.yb1{bottom:400.736000pt;}
.y90{bottom:401.086667pt;}
.yfc{bottom:401.574667pt;}
.ydf{bottom:402.253333pt;}
.y69{bottom:408.153333pt;}
.y11d{bottom:415.477333pt;}
.yb0{bottom:419.997333pt;}
.y8f{bottom:420.348000pt;}
.yfb{bottom:420.836000pt;}
.yde{bottom:421.514667pt;}
.y17{bottom:427.356000pt;}
.y44{bottom:432.746667pt;}
.y11c{bottom:434.738667pt;}
.y68{bottom:438.020000pt;}
.yaf{bottom:439.258667pt;}
.y8e{bottom:439.609333pt;}
.ydd{bottom:440.776000pt;}
.y16{bottom:445.422667pt;}
.y43{bottom:452.008000pt;}
.yfa{bottom:453.380000pt;}
.y67{bottom:457.281333pt;}
.yae{bottom:458.520000pt;}
.y15{bottom:463.488000pt;}
.y11b{bottom:467.284000pt;}
.y8d{bottom:469.165333pt;}
.yc6{bottom:469.872000pt;}
.y42{bottom:471.268000pt;}
.yf9{bottom:472.641333pt;}
.ydc{bottom:473.534667pt;}
.y66{bottom:476.542667pt;}
.y14{bottom:481.553333pt;}
.y11a{bottom:486.545333pt;}
.yc5{bottom:489.133333pt;}
.y41{bottom:490.529333pt;}
.ydb{bottom:492.796000pt;}
.yad{bottom:495.758667pt;}
.y65{bottom:495.804000pt;}
.y13{bottom:499.618667pt;}
.yf8{bottom:505.185333pt;}
.yc4{bottom:508.394667pt;}
.y40{bottom:509.790667pt;}
.yda{bottom:512.057333pt;}
.y8c{bottom:515.036000pt;}
.y64{bottom:515.065333pt;}
.y12{bottom:517.684000pt;}
.y119{bottom:519.089333pt;}
.yf7{bottom:524.446667pt;}
.yc3{bottom:527.654667pt;}
.y3f{bottom:529.052000pt;}
.yd9{bottom:531.318667pt;}
.y8b{bottom:534.297333pt;}
.y63{bottom:534.326667pt;}
.y11{bottom:535.750667pt;}
.y118{bottom:538.350667pt;}
.y3e{bottom:548.313333pt;}
.y8a{bottom:553.558667pt;}
.y62{bottom:553.586667pt;}
.y10{bottom:553.816000pt;}
.yf6{bottom:556.992000pt;}
.yd8{bottom:562.920000pt;}
.yc2{bottom:564.185333pt;}
.y3d{bottom:567.574667pt;}
.y117{bottom:570.894667pt;}
.yf{bottom:571.881333pt;}
.y89{bottom:572.820000pt;}
.yf5{bottom:576.252000pt;}
.yd7{bottom:582.181333pt;}
.y61{bottom:583.142667pt;}
.y3c{bottom:586.834667pt;}
.ye{bottom:589.946667pt;}
.y116{bottom:590.156000pt;}
.yf4{bottom:595.513333pt;}
.yc1{bottom:601.157333pt;}
.yd6{bottom:601.442667pt;}
.y3b{bottom:606.096000pt;}
.yd{bottom:608.012000pt;}
.y88{bottom:619.117333pt;}
.yd5{bottom:620.704000pt;}
.y115{bottom:622.701333pt;}
.y3a{bottom:625.357333pt;}
.yc{bottom:626.078667pt;}
.yf3{bottom:628.058667pt;}
.y60{bottom:628.498667pt;}
.y87{bottom:638.784000pt;}
.y114{bottom:641.961333pt;}
.yb{bottom:644.144000pt;}
.y39{bottom:644.618667pt;}
.yf2{bottom:647.320000pt;}
.y5f{bottom:647.758667pt;}
.yd4{bottom:652.305333pt;}
.y86{bottom:658.449333pt;}
.ya{bottom:662.209333pt;}
.y38{bottom:663.880000pt;}
.yf1{bottom:666.580000pt;}
.y5e{bottom:667.020000pt;}
.yd3{bottom:671.566667pt;}
.y113{bottom:674.506667pt;}
.y9{bottom:680.274667pt;}
.y37{bottom:683.141333pt;}
.y85{bottom:686.102667pt;}
.yd2{bottom:690.828000pt;}
.y112{bottom:693.768000pt;}
.y8{bottom:698.340000pt;}
.yf0{bottom:699.125333pt;}
.y36{bottom:702.401333pt;}
.y84{bottom:710.608000pt;}
.y5d{bottom:711.320000pt;}
.yef{bottom:718.386667pt;}
.y35{bottom:721.662667pt;}
.yd1{bottom:723.586667pt;}
.y7{bottom:725.310667pt;}
.y111{bottom:726.312000pt;}
.y83{bottom:729.869333pt;}
.y5c{bottom:730.581333pt;}
.y34{bottom:740.924000pt;}
.yd0{bottom:742.848000pt;}
.y110{bottom:745.573333pt;}
.y82{bottom:749.130667pt;}
.y5b{bottom:749.842667pt;}
.yee{bottom:750.930667pt;}
.y33{bottom:760.185333pt;}
.ycf{bottom:762.109333pt;}
.y10f{bottom:764.834667pt;}
.y81{bottom:768.392000pt;}
.y5a{bottom:769.102667pt;}
.yed{bottom:770.192000pt;}
.y32{bottom:779.446667pt;}
.y6{bottom:784.594667pt;}
.y59{bottom:788.364000pt;}
.yec{bottom:789.453333pt;}
.yce{bottom:797.154667pt;}
.y10e{bottom:797.378667pt;}
.y31{bottom:798.708000pt;}
.y58{bottom:807.625333pt;}
.y5{bottom:813.782667pt;}
.y10d{bottom:816.640000pt;}
.y30{bottom:817.968000pt;}
.yeb{bottom:824.500000pt;}
.y80{bottom:824.612000pt;}
.ya4{bottom:829.200000pt;}
.y4{bottom:832.414667pt;}
.y57{bottom:834.873333pt;}
.y10c{bottom:835.901333pt;}
.y2f{bottom:837.229333pt;}
.yc0{bottom:838.502667pt;}
.y7f{bottom:843.873333pt;}
.ycd{bottom:849.913333pt;}
.y56{bottom:855.393333pt;}
.y2e{bottom:856.490667pt;}
.ybf{bottom:857.764000pt;}
.y7e{bottom:863.134667pt;}
.y10b{bottom:868.445333pt;}
.ya3{bottom:868.894667pt;}
.ycc{bottom:869.174667pt;}
.y55{bottom:874.654667pt;}
.y2d{bottom:875.752000pt;}
.yea{bottom:877.744000pt;}
.y3{bottom:879.737333pt;}
.y7d{bottom:882.396000pt;}
.ybe{bottom:887.320000pt;}
.y10a{bottom:887.706667pt;}
.ycb{bottom:888.434667pt;}
.y54{bottom:893.916000pt;}
.y2c{bottom:895.013333pt;}
.ye9{bottom:897.005333pt;}
.y7c{bottom:901.657333pt;}
.yac{bottom:906.580000pt;}
.y2{bottom:912.945333pt;}
.y53{bottom:913.177333pt;}
.y2b{bottom:914.273333pt;}
.ye8{bottom:916.266667pt;}
.y109{bottom:920.252000pt;}
.y7b{bottom:920.917333pt;}
.yca{bottom:921.194667pt;}
.ya2{bottom:921.468000pt;}
.y2a{bottom:933.534667pt;}
.y108{bottom:939.513333pt;}
.y7a{bottom:940.178667pt;}
.yc9{bottom:940.454667pt;}
.ya1{bottom:940.729333pt;}
.y1{bottom:946.154667pt;}
.y29{bottom:952.796000pt;}
.y79{bottom:959.440000pt;}
.yc8{bottom:959.716000pt;}
.ya0{bottom:959.990667pt;}
.y28{bottom:972.057333pt;}
.y9f{bottom:979.252000pt;}
.y27{bottom:991.318667pt;}
.y26{bottom:1010.580000pt;}
.h4{height:29.499997pt;}
.h5{height:35.898212pt;}
.h6{height:40.610943pt;}
.h7{height:43.636400pt;}
.h8{height:47.820800pt;}
.he{height:47.824000pt;}
.ha{height:57.384800pt;}
.hc{height:59.090133pt;}
.hb{height:59.095467pt;}
.h3{height:67.615733pt;}
.h9{height:68.861600pt;}
.h2{height:77.360400pt;}
.hd{height:90.956800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.000000pt;}
.x12{left:99.460000pt;}
.x16{left:103.804000pt;}
.x1{left:109.902667pt;}
.x15{left:115.076000pt;}
.xb{left:119.412000pt;}
.x17{left:128.082667pt;}
.x13{left:130.520000pt;}
.x9{left:135.020000pt;}
.xc{left:142.153333pt;}
.x5{left:153.290667pt;}
.x14{left:155.378667pt;}
.x8{left:156.838667pt;}
.xd{left:168.620000pt;}
.x6{left:312.850667pt;}
.xe{left:318.954667pt;}
.xf{left:331.586667pt;}
.x3{left:339.616000pt;}
.x4{left:351.450667pt;}
.x7{left:364.849333pt;}
.x10{left:387.057333pt;}
.x18{left:389.046667pt;}
.xa{left:392.948000pt;}
.x11{left:456.510667pt;}
}




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