
    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_6d6a9fe794b00018f11b538b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9521f65e63e53e34d494e553.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921000;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_6f3bb84f0b0f3ad82ee71ca5.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_d96d914febf194ccace12320.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.877000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_486a7e095aae3dd607792158.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7dadb65ed46e5db1ba478f76.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_1b309a7f83fa86b5ea60ebc2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.697000;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_0246ea6b7bc86887669dee17.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a9eb7c37a8e5c4f38a86a9bb.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_9fdccc7620c0220179a3f5dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c0c7430003d53fe486b58ead.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.545000;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_2ecf44e2f4ddb8ffef1f327e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.429000;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_26ee2f34e309b22e621a10e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.773000;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_f790ae8d791aff23afaf7976.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cdfbcf4f45fc00c7c7e7674b.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d5fbb04e24809638e9de025d.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f336aaf7b0a2a7da210e9a7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666000;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:ff12;src:url('chunks/assets/font_3da7f1f65c25c933100e4d51.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9eaf3a678f08bf4e1d5f3c19.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.111000;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);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-16.878000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.572000px;}
.va{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v9{vertical-align:31.476000px;}
.v8{vertical-align:40.440000px;}
.v5{vertical-align:71.730000px;}
.v7{vertical-align:84.288000px;}
.vb{vertical-align:125.286000px;}
.ls8{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000141px;}
.ls21{letter-spacing:0.000300px;}
.lsd{letter-spacing:0.000538px;}
.lsc{letter-spacing:0.000564px;}
.lsa{letter-spacing:0.002338px;}
.ls1c{letter-spacing:0.002481px;}
.ls23{letter-spacing:0.002646px;}
.ls11{letter-spacing:0.002685px;}
.ls19{letter-spacing:0.002823px;}
.ls2a{letter-spacing:0.003056px;}
.ls16{letter-spacing:0.004893px;}
.ls2b{letter-spacing:0.006141px;}
.ls15{letter-spacing:2.984525px;}
.ls1a{letter-spacing:2.986340px;}
.ls1b{letter-spacing:2.988042px;}
.ls7{letter-spacing:2.988532px;}
.ls27{letter-spacing:2.989409px;}
.ls1{letter-spacing:2.994042px;}
.ls18{letter-spacing:7.173181px;}
.ls2c{letter-spacing:9.758915px;}
.ls2e{letter-spacing:9.764915px;}
.lsb{letter-spacing:9.958200px;}
.ls10{letter-spacing:9.964200px;}
.ls13{letter-spacing:10.416538px;}
.ls14{letter-spacing:10.420200px;}
.ls28{letter-spacing:12.950525px;}
.ls1d{letter-spacing:16.124525px;}
.ls22{letter-spacing:16.602300px;}
.ls17{letter-spacing:16.602538px;}
.ls1e{letter-spacing:18.828042px;}
.ls25{letter-spacing:19.542300px;}
.ls24{letter-spacing:19.590042px;}
.ls26{letter-spacing:19.594038px;}
.ls12{letter-spacing:19.596042px;}
.ls2{letter-spacing:19.922338px;}
.ls29{letter-spacing:21.816538px;}
.lsf{letter-spacing:22.051409px;}
.ls1f{letter-spacing:27.068481px;}
.ls9{letter-spacing:27.752525px;}
.ls2f{letter-spacing:29.708525px;}
.ls20{letter-spacing:30.058340px;}
.lse{letter-spacing:54.452525px;}
.ls3{letter-spacing:74.722038px;}
.ls5{letter-spacing:137.044340px;}
.ls6{letter-spacing:145.392042px;}
.ls0{letter-spacing:156.744300px;}
.ls4{letter-spacing:173.744481px;}
.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;}
}
.wse{word-spacing:-38.937826px;}
.ws81{word-spacing:-29.015076px;}
.ws7f{word-spacing:-16.605662px;}
.wsbc{word-spacing:-16.273350px;}
.wsc6{word-spacing:-14.111859px;}
.ws8a{word-spacing:-6.682912px;}
.ws79{word-spacing:-6.660445px;}
.ws92{word-spacing:-6.643262px;}
.wsa5{word-spacing:-6.637262px;}
.ws23{word-spacing:-6.623136px;}
.wsa6{word-spacing:-6.619959px;}
.ws7e{word-spacing:-6.203271px;}
.wsc4{word-spacing:-4.350029px;}
.ws55{word-spacing:-3.036600px;}
.ws1d{word-spacing:-2.677947px;}
.wsd5{word-spacing:-2.379069px;}
.ws96{word-spacing:-2.319293px;}
.ws39{word-spacing:-2.139966px;}
.ws1a{word-spacing:-2.080191px;}
.wsde{word-spacing:-1.869785px;}
.wsb6{word-spacing:-1.661762px;}
.ws8f{word-spacing:-1.601986px;}
.ws1c{word-spacing:-1.542210px;}
.ws17{word-spacing:-0.944454px;}
.ws34{word-spacing:-0.824903px;}
.ws5e{word-spacing:-0.765128px;}
.ws21{word-spacing:-0.705352px;}
.wsc1{word-spacing:-0.683835px;}
.ws1f{word-spacing:-0.645576px;}
.wsad{word-spacing:-0.406474px;}
.wsbf{word-spacing:-0.167372px;}
.ws15{word-spacing:-0.148723px;}
.ws28{word-spacing:-0.107596px;}
.wsd4{word-spacing:-0.071731px;}
.wsa4{word-spacing:-0.059776px;}
.wsdc{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws11{word-spacing:-0.035866px;}
.ws13{word-spacing:0.000000px;}
.ws6d{word-spacing:0.011955px;}
.ws53{word-spacing:0.071731px;}
.wsd6{word-spacing:0.090859px;}
.ws3e{word-spacing:0.191282px;}
.wse3{word-spacing:0.282142px;}
.wse8{word-spacing:0.425603px;}
.ws38{word-spacing:0.430384px;}
.ws72{word-spacing:0.609711px;}
.ws7a{word-spacing:0.669487px;}
.wsd0{word-spacing:0.729262px;}
.wsb7{word-spacing:0.789038px;}
.wsc7{word-spacing:0.848814px;}
.wsd7{word-spacing:0.903809px;}
.ws4c{word-spacing:0.942066px;}
.ws5c{word-spacing:0.968365px;}
.ws22{word-spacing:1.028140px;}
.wsc9{word-spacing:1.133348px;}
.ws5d{word-spacing:1.147692px;}
.wsda{word-spacing:1.190733px;}
.ws43{word-spacing:1.207467px;}
.wscf{word-spacing:1.267243px;}
.ws1e{word-spacing:1.386794px;}
.ws6a{word-spacing:1.446570px;}
.wsdd{word-spacing:1.477657px;}
.wsd2{word-spacing:1.506345px;}
.wsa9{word-spacing:1.566121px;}
.ws94{word-spacing:1.625896px;}
.ws8{word-spacing:1.630092px;}
.ws63{word-spacing:1.685672px;}
.wsbd{word-spacing:1.745448px;}
.wsc3{word-spacing:1.850657px;}
.ws35{word-spacing:1.864999px;}
.ws82{word-spacing:1.924774px;}
.wse0{word-spacing:1.955863px;}
.wsd1{word-spacing:1.984550px;}
.ws51{word-spacing:2.044326px;}
.ws91{word-spacing:2.104101px;}
.ws67{word-spacing:2.163877px;}
.wsc2{word-spacing:2.281043px;}
.wsaa{word-spacing:2.283428px;}
.ws3c{word-spacing:2.343204px;}
.ws5f{word-spacing:2.462755px;}
.wscb{word-spacing:2.522530px;}
.ws8e{word-spacing:2.642082px;}
.ws73{word-spacing:2.701857px;}
.ws2f{word-spacing:2.761633px;}
.ws10{word-spacing:2.816633px;}
.wsce{word-spacing:2.821408px;}
.wsee{word-spacing:2.830242px;}
.ws9b{word-spacing:2.881184px;}
.ws93{word-spacing:2.927570px;}
.ws6c{word-spacing:2.940960px;}
.ws2d{word-spacing:3.000735px;}
.ws75{word-spacing:3.046172px;}
.wsae{word-spacing:3.060511px;}
.ws2b{word-spacing:3.120286px;}
.ws71{word-spacing:3.180062px;}
.ws33{word-spacing:3.237455px;}
.ws2c{word-spacing:3.239838px;}
.ws4{word-spacing:3.299613px;}
.ws6{word-spacing:3.359389px;}
.wsac{word-spacing:3.419164px;}
.wsd{word-spacing:3.513036px;}
.wsc0{word-spacing:3.538716px;}
.ws59{word-spacing:3.572199px;}
.ws2a{word-spacing:3.658267px;}
.ws36{word-spacing:3.718042px;}
.ws74{word-spacing:3.777818px;}
.ws2e{word-spacing:3.837594px;}
.ws3a{word-spacing:3.957145px;}
.wsca{word-spacing:4.016920px;}
.ws9f{word-spacing:4.076696px;}
.ws7b{word-spacing:4.136472px;}
.wsb5{word-spacing:4.196247px;}
.ws4d{word-spacing:4.241687px;}
.wse9{word-spacing:4.299072px;}
.ws4a{word-spacing:4.375574px;}
.ws4e{word-spacing:4.385149px;}
.ws90{word-spacing:4.435350px;}
.wsb{word-spacing:4.481407px;}
.ws40{word-spacing:4.554901px;}
.wseb{word-spacing:4.633816px;}
.wsa{word-spacing:4.642802px;}
.ws76{word-spacing:4.672073px;}
.ws27{word-spacing:4.674452px;}
.ws37{word-spacing:4.734228px;}
.wsb1{word-spacing:4.794003px;}
.wsb8{word-spacing:4.815534px;}
.ws5b{word-spacing:4.853779px;}
.ws6b{word-spacing:4.973330px;}
.wse1{word-spacing:5.016381px;}
.ws58{word-spacing:5.033106px;}
.wsa2{word-spacing:5.054637px;}
.ws6f{word-spacing:5.092881px;}
.ws49{word-spacing:5.152657px;}
.ws48{word-spacing:5.212432px;}
.wsed{word-spacing:5.255484px;}
.wsab{word-spacing:5.331984px;}
.ws99{word-spacing:5.391759px;}
.ws42{word-spacing:5.571086px;}
.ws30{word-spacing:5.630862px;}
.ws3d{word-spacing:5.750413px;}
.wsc{word-spacing:5.772568px;}
.ws83{word-spacing:5.810188px;}
.wsb0{word-spacing:5.869964px;}
.ws26{word-spacing:5.929740px;}
.ws3f{word-spacing:5.989515px;}
.wsec{word-spacing:6.020614px;}
.ws7c{word-spacing:6.049291px;}
.ws6e{word-spacing:6.109066px;}
.ws20{word-spacing:6.150892px;}
.wsc5{word-spacing:6.345794px;}
.ws88{word-spacing:6.348169px;}
.ws4b{word-spacing:6.393614px;}
.wsb3{word-spacing:6.407944px;}
.wsbb{word-spacing:6.441435px;}
.ws41{word-spacing:6.467720px;}
.wsb2{word-spacing:6.527496px;}
.ws1b{word-spacing:6.647047px;}
.ws45{word-spacing:6.706822px;}
.ws46{word-spacing:6.766598px;}
.wsbe{word-spacing:6.826374px;}
.wsaf{word-spacing:6.945925px;}
.ws29{word-spacing:7.005700px;}
.ws98{word-spacing:7.065476px;}
.ws60{word-spacing:7.125252px;}
.ws9d{word-spacing:7.244803px;}
.ws31{word-spacing:7.350026px;}
.wscc{word-spacing:7.364354px;}
.ws19{word-spacing:7.483905px;}
.wsb9{word-spacing:7.541309px;}
.ws9c{word-spacing:7.543681px;}
.ws70{word-spacing:7.723008px;}
.ws7d{word-spacing:7.782783px;}
.ws77{word-spacing:7.828232px;}
.wsd3{word-spacing:7.842559px;}
.ws78{word-spacing:7.876053px;}
.ws3b{word-spacing:7.902334px;}
.ws25{word-spacing:7.962110px;}
.ws24{word-spacing:8.141437px;}
.ws18{word-spacing:8.201212px;}
.wse6{word-spacing:8.268182px;}
.ws62{word-spacing:8.320764px;}
.ws9e{word-spacing:8.380539px;}
.ws47{word-spacing:8.440315px;}
.ws50{word-spacing:8.500090px;}
.ws44{word-spacing:8.559866px;}
.ws32{word-spacing:8.593362px;}
.ws9a{word-spacing:8.619642px;}
.ws57{word-spacing:8.679417px;}
.wscd{word-spacing:8.739193px;}
.ws9{word-spacing:8.839077px;}
.ws8d{word-spacing:9.217398px;}
.ws4f{word-spacing:9.277173px;}
.ws7{word-spacing:9.323263px;}
.ws69{word-spacing:9.396724px;}
.wsba{word-spacing:9.454133px;}
.wsa0{word-spacing:9.635827px;}
.wsd8{word-spacing:9.798441px;}
.ws64{word-spacing:9.874929px;}
.ws68{word-spacing:10.114032px;}
.wse5{word-spacing:10.276647px;}
.wsa1{word-spacing:10.353134px;}
.ws86{word-spacing:10.461892px;}
.ws85{word-spacing:10.471723px;}
.ws87{word-spacing:10.472685px;}
.wsb4{word-spacing:10.532461px;}
.wsa8{word-spacing:11.010666px;}
.ws52{word-spacing:11.608422px;}
.wsc8{word-spacing:11.701701px;}
.ws66{word-spacing:12.325729px;}
.ws8c{word-spacing:12.684382px;}
.ws5a{word-spacing:12.744158px;}
.wsa3{word-spacing:12.859444px;}
.wsa7{word-spacing:12.863709px;}
.ws80{word-spacing:12.905208px;}
.ws8b{word-spacing:12.983260px;}
.ws54{word-spacing:13.162587px;}
.wsdf{word-spacing:13.963615px;}
.ws16{word-spacing:15.613824px;}
.wse4{word-spacing:15.924260px;}
.wsdb{word-spacing:16.785031px;}
.ws12{word-spacing:18.315290px;}
.ws84{word-spacing:19.553207px;}
.wsea{word-spacing:19.654267px;}
.wse2{word-spacing:20.371576px;}
.ws3{word-spacing:21.280114px;}
.ws2{word-spacing:21.339889px;}
.ws61{word-spacing:22.834279px;}
.wse7{word-spacing:23.336453px;}
.ws89{word-spacing:24.647207px;}
.wsd9{word-spacing:24.818891px;}
.ws56{word-spacing:26.827469px;}
.ws95{word-spacing:27.635208px;}
.ws0{word-spacing:36.668802px;}
.ws97{word-spacing:37.661208px;}
.ws1{word-spacing:38.631358px;}
.ws65{word-spacing:49.207733px;}
.ws14{word-spacing:80.625869px;}
.wsf{word-spacing:109.427207px;}
._5{margin-left:-30.533340px;}
._1{margin-left:-6.507421px;}
._3{margin-left:-4.961375px;}
._0{margin-left:-3.202064px;}
._2{margin-left:-1.554166px;}
._4{width:1.554166px;}
._b{width:2.989064px;}
._23{width:4.443098px;}
._26{width:9.081974px;}
._7{width:10.379054px;}
._f{width:14.047266px;}
._e{width:15.661207px;}
._20{width:17.095822px;}
._18{width:18.243555px;}
._1d{width:19.359155px;}
._6{width:20.913940px;}
._1e{width:22.595177px;}
._22{width:24.208755px;}
._13{width:25.352994px;}
._8{width:26.699989px;}
._10{width:27.734213px;}
._24{width:28.871615px;}
._14{width:29.947576px;}
._9{width:31.800842px;}
._11{width:33.414560px;}
._a{width:35.010782px;}
._15{width:36.821770px;}
._d{width:39.332345px;}
._c{width:40.946286px;}
._16{width:42.022247px;}
._17{width:45.286108px;}
._12{width:47.246753px;}
._21{width:48.368490px;}
._25{width:49.673524px;}
._1f{width:52.096212px;}
._1b{width:54.395126px;}
._19{width:56.427943px;}
._1c{width:68.741940px;}
._1a{width:81.367102px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.fs7{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:34.774500px;}
.y94{bottom:48.970500px;}
.y2b{bottom:48.972000px;}
.y2a{bottom:63.168000px;}
.yaf{bottom:108.000000px;}
.ycf{bottom:111.057000px;}
.y4f{bottom:111.322500px;}
.y76{bottom:111.817500px;}
.y29{bottom:112.219500px;}
.y12b{bottom:113.775000px;}
.y93{bottom:116.722500px;}
.yf2{bottom:123.648000px;}
.yae{bottom:125.932500px;}
.y28{bottom:126.477000px;}
.yce{bottom:128.989500px;}
.y4e{bottom:129.255000px;}
.y75{bottom:129.750000px;}
.y12a{bottom:131.709000px;}
.y92{bottom:134.655000px;}
.y27{bottom:140.733000px;}
.yf1{bottom:141.580500px;}
.yad{bottom:143.865000px;}
.ycd{bottom:146.923500px;}
.y4d{bottom:147.187500px;}
.y74{bottom:147.684000px;}
.y129{bottom:149.641500px;}
.y91{bottom:152.587500px;}
.y26{bottom:154.989000px;}
.yf0{bottom:159.513000px;}
.yac{bottom:161.797500px;}
.y108{bottom:161.799000px;}
.ycc{bottom:164.856000px;}
.y4c{bottom:165.120000px;}
.y73{bottom:165.616500px;}
.y128{bottom:167.574000px;}
.y25{bottom:169.246500px;}
.y90{bottom:170.520000px;}
.yef{bottom:177.447000px;}
.ycb{bottom:182.788500px;}
.y4b{bottom:183.054000px;}
.y24{bottom:183.502500px;}
.y127{bottom:185.506500px;}
.y8f{bottom:188.452500px;}
.ya9{bottom:188.511000px;}
.yee{bottom:195.379500px;}
.y23{bottom:197.758500px;}
.y72{bottom:198.348000px;}
.y107{bottom:198.709500px;}
.ya8{bottom:198.760500px;}
.yca{bottom:200.721000px;}
.y4a{bottom:200.986500px;}
.y126{bottom:203.439000px;}
.y8e{bottom:206.385000px;}
.y22{bottom:212.016000px;}
.y106{bottom:212.905500px;}
.yab{bottom:213.135000px;}
.yed{bottom:213.312000px;}
.yc9{bottom:218.653500px;}
.yaa{bottom:220.752000px;}
.y125{bottom:221.371500px;}
.y8d{bottom:224.319000px;}
.y21{bottom:226.272000px;}
.y105{bottom:227.103000px;}
.yec{bottom:231.244500px;}
.yc8{bottom:236.586000px;}
.y49{bottom:238.362000px;}
.y124{bottom:239.305500px;}
.y20{bottom:240.529500px;}
.ya7{bottom:240.861000px;}
.y104{bottom:241.299000px;}
.y71{bottom:241.788000px;}
.y8c{bottom:242.251500px;}
.yeb{bottom:249.177000px;}
.y48{bottom:252.559500px;}
.yc7{bottom:254.520000px;}
.y1f{bottom:254.785500px;}
.y103{bottom:255.496500px;}
.y123{bottom:257.238000px;}
.ya6{bottom:258.793500px;}
.y70{bottom:259.722000px;}
.y8b{bottom:260.184000px;}
.y47{bottom:266.755500px;}
.yea{bottom:267.111000px;}
.y1e{bottom:269.041500px;}
.yc6{bottom:272.452500px;}
.y122{bottom:275.170500px;}
.ya5{bottom:276.726000px;}
.y6f{bottom:277.654500px;}
.y8a{bottom:278.116500px;}
.y1d{bottom:283.299000px;}
.ye9{bottom:285.043500px;}
.yc5{bottom:290.385000px;}
.y121{bottom:293.103000px;}
.ya4{bottom:294.658500px;}
.y6e{bottom:295.587000px;}
.y89{bottom:296.049000px;}
.ye8{bottom:302.976000px;}
.yc4{bottom:308.317500px;}
.y120{bottom:311.035500px;}
.ya3{bottom:312.591000px;}
.y6d{bottom:313.519500px;}
.y88{bottom:313.983000px;}
.ye7{bottom:320.908500px;}
.y1c{bottom:321.577500px;}
.yc3{bottom:326.250000px;}
.y11f{bottom:328.968000px;}
.ya2{bottom:330.525000px;}
.y6c{bottom:331.452000px;}
.y87{bottom:331.915500px;}
.ye6{bottom:338.841000px;}
.y1b{bottom:342.499500px;}
.yc2{bottom:344.182500px;}
.y11e{bottom:346.902000px;}
.y6b{bottom:349.386000px;}
.y86{bottom:349.848000px;}
.ye5{bottom:356.773500px;}
.ya1{bottom:358.108500px;}
.yc1{bottom:362.116500px;}
.y1a{bottom:363.421500px;}
.y11d{bottom:364.834500px;}
.y6a{bottom:367.318500px;}
.ye4{bottom:374.707500px;}
.y85{bottom:377.431500px;}
.yc0{bottom:380.049000px;}
.y11c{bottom:382.767000px;}
.y19{bottom:384.342000px;}
.ye3{bottom:392.640000px;}
.ya0{bottom:396.255000px;}
.ybf{bottom:397.981500px;}
.y11b{bottom:400.699500px;}
.y18{bottom:405.264000px;}
.y69{bottom:405.276000px;}
.ye2{bottom:410.572500px;}
.y9f{bottom:414.187500px;}
.ybe{bottom:415.914000px;}
.y84{bottom:416.275500px;}
.y14c{bottom:416.671500px;}
.y11a{bottom:418.632000px;}
.y68{bottom:419.472000px;}
.y17{bottom:426.186000px;}
.ye1{bottom:428.505000px;}
.y9e{bottom:432.120000px;}
.y67{bottom:433.669500px;}
.ybd{bottom:433.846500px;}
.y83{bottom:434.208000px;}
.y14b{bottom:435.088500px;}
.y119{bottom:436.564500px;}
.ye0{bottom:446.437500px;}
.y14a{bottom:446.560500px;}
.y66{bottom:447.865500px;}
.y9d{bottom:450.052500px;}
.ybc{bottom:451.779000px;}
.y82{bottom:452.140500px;}
.y118{bottom:454.498500px;}
.y16{bottom:458.020500px;}
.y65{bottom:462.063000px;}
.ydf{bottom:464.370000px;}
.y149{bottom:464.976000px;}
.y9c{bottom:467.986500px;}
.ybb{bottom:469.713000px;}
.y81{bottom:470.074500px;}
.y117{bottom:472.431000px;}
.y148{bottom:476.448000px;}
.yde{bottom:482.304000px;}
.y9b{bottom:485.919000px;}
.yba{bottom:487.645500px;}
.y80{bottom:488.007000px;}
.y147{bottom:494.863500px;}
.ydd{bottom:500.236500px;}
.y15{bottom:501.462000px;}
.y9a{bottom:503.851500px;}
.y116{bottom:505.162500px;}
.yb9{bottom:505.578000px;}
.y7f{bottom:505.939500px;}
.y146{bottom:506.335500px;}
.y14{bottom:517.900500px;}
.ydc{bottom:518.169000px;}
.yb8{bottom:523.510500px;}
.y7e{bottom:523.872000px;}
.y145{bottom:524.752500px;}
.y13{bottom:534.337500px;}
.y99{bottom:540.417000px;}
.y144{bottom:540.442500px;}
.yb7{bottom:541.443000px;}
.y7d{bottom:541.804500px;}
.y115{bottom:548.604000px;}
.y12{bottom:550.776000px;}
.ydb{bottom:550.900500px;}
.y143{bottom:551.914500px;}
.y102{bottom:554.371500px;}
.y98{bottom:554.614500px;}
.y7c{bottom:559.738500px;}
.y114{bottom:566.536500px;}
.y11{bottom:567.214500px;}
.y97{bottom:568.810500px;}
.yb6{bottom:569.028000px;}
.y142{bottom:570.331500px;}
.y101{bottom:572.304000px;}
.y7b{bottom:577.671000px;}
.y141{bottom:581.803500px;}
.y96{bottom:583.008000px;}
.y10{bottom:583.653000px;}
.y113{bottom:584.469000px;}
.y100{bottom:590.236500px;}
.yda{bottom:594.342000px;}
.y7a{bottom:595.603500px;}
.y95{bottom:597.204000px;}
.yf{bottom:600.091500px;}
.y140{bottom:600.219000px;}
.y112{bottom:602.401500px;}
.yb5{bottom:607.872000px;}
.yff{bottom:608.169000px;}
.y46{bottom:611.005500px;}
.y13f{bottom:611.691000px;}
.yd9{bottom:612.274500px;}
.y79{bottom:613.536000px;}
.y111{bottom:620.334000px;}
.yb4{bottom:625.804500px;}
.yfe{bottom:626.101500px;}
.y45{bottom:628.938000px;}
.y13e{bottom:630.106500px;}
.yd8{bottom:630.207000px;}
.y110{bottom:638.266500px;}
.y13d{bottom:641.578500px;}
.yb3{bottom:643.737000px;}
.yfd{bottom:644.034000px;}
.y44{bottom:646.870500px;}
.yd7{bottom:648.139500px;}
.ye{bottom:649.867500px;}
.y13c{bottom:655.776000px;}
.y10f{bottom:656.200500px;}
.yb2{bottom:661.669500px;}
.yfc{bottom:661.968000px;}
.y43{bottom:664.804500px;}
.yd6{bottom:666.072000px;}
.y78{bottom:668.164500px;}
.yd{bottom:670.789500px;}
.y10e{bottom:674.133000px;}
.y13b{bottom:674.191500px;}
.yb1{bottom:679.602000px;}
.yfb{bottom:679.900500px;}
.y77{bottom:682.362000px;}
.y42{bottom:682.737000px;}
.yd5{bottom:684.004500px;}
.y13a{bottom:685.663500px;}
.y10d{bottom:692.065500px;}
.yb0{bottom:697.534500px;}
.yfa{bottom:697.833000px;}
.y139{bottom:699.859500px;}
.y41{bottom:700.669500px;}
.yd4{bottom:701.938500px;}
.y10c{bottom:709.998000px;}
.yc{bottom:712.632000px;}
.y64{bottom:715.468500px;}
.yf9{bottom:715.765500px;}
.y138{bottom:718.276500px;}
.y40{bottom:718.602000px;}
.yd3{bottom:719.871000px;}
.y10b{bottom:727.930500px;}
.y137{bottom:729.748500px;}
.y63{bottom:733.401000px;}
.yf8{bottom:733.698000px;}
.y3f{bottom:736.534500px;}
.yd2{bottom:737.803500px;}
.y136{bottom:748.164000px;}
.y62{bottom:751.333500px;}
.y3e{bottom:754.467000px;}
.yb{bottom:754.474500px;}
.y135{bottom:759.636000px;}
.y61{bottom:769.266000px;}
.y3d{bottom:772.401000px;}
.y134{bottom:773.833500px;}
.ya{bottom:775.396500px;}
.y10a{bottom:782.559000px;}
.yf7{bottom:784.140000px;}
.y60{bottom:787.198500px;}
.y3c{bottom:790.333500px;}
.y133{bottom:792.249000px;}
.yd1{bottom:792.432000px;}
.y109{bottom:796.756500px;}
.yf6{bottom:798.337500px;}
.y132{bottom:803.721000px;}
.y5f{bottom:805.132500px;}
.yd0{bottom:806.629500px;}
.y3b{bottom:808.266000px;}
.yf5{bottom:812.533500px;}
.y9{bottom:817.240500px;}
.y131{bottom:822.136500px;}
.y5e{bottom:823.065000px;}
.y3a{bottom:826.198500px;}
.yf4{bottom:826.731000px;}
.y8{bottom:838.161000px;}
.yf3{bottom:840.927000px;}
.y5d{bottom:840.997500px;}
.y39{bottom:844.131000px;}
.y130{bottom:846.913500px;}
.y5c{bottom:858.930000px;}
.y7{bottom:859.083000px;}
.y38{bottom:862.063500px;}
.y5b{bottom:876.862500px;}
.y37{bottom:879.997500px;}
.y12f{bottom:890.353500px;}
.y6{bottom:892.474500px;}
.y5a{bottom:894.795000px;}
.y36{bottom:897.930000px;}
.y12e{bottom:908.287500px;}
.y5{bottom:910.407000px;}
.y59{bottom:912.729000px;}
.y35{bottom:915.862500px;}
.y12d{bottom:926.220000px;}
.y4{bottom:928.339500px;}
.y58{bottom:930.661500px;}
.y34{bottom:933.795000px;}
.y57{bottom:948.594000px;}
.y33{bottom:951.727500px;}
.y12c{bottom:958.951500px;}
.y3{bottom:961.216500px;}
.y56{bottom:966.526500px;}
.y32{bottom:969.661500px;}
.y55{bottom:984.459000px;}
.y31{bottom:987.594000px;}
.y54{bottom:1002.391500px;}
.y30{bottom:1005.526500px;}
.y2{bottom:1011.358500px;}
.y53{bottom:1020.325500px;}
.y2f{bottom:1023.459000px;}
.y52{bottom:1038.258000px;}
.y2e{bottom:1041.391500px;}
.y1{bottom:1044.235500px;}
.y51{bottom:1056.190500px;}
.y50{bottom:1074.123000px;}
.y2d{bottom:1092.055500px;}
.h10{height:19.905275px;}
.h8{height:24.245146px;}
.h9{height:35.865450px;}
.h6{height:40.348800px;}
.hd{height:41.723369px;}
.h3{height:42.799330px;}
.h7{height:44.831700px;}
.h4{height:50.268632px;}
.h5{height:50.274632px;}
.h2{height:53.798400px;}
.hc{height:55.397700px;}
.hb{height:55.403700px;}
.h1{height:77.469300px;}
.he{height:86.679024px;}
.ha{height:116.561700px;}
.hf{height:127.677024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x16{left:119.158500px;}
.x15{left:124.638000px;}
.x1a{left:126.994500px;}
.x1b{left:130.416000px;}
.x27{left:136.851000px;}
.x12{left:145.360500px;}
.x14{left:163.803000px;}
.x11{left:166.095000px;}
.x9{left:170.391000px;}
.x2{left:181.522500px;}
.x18{left:217.935000px;}
.x4{left:240.703500px;}
.x8{left:254.392500px;}
.xa{left:255.534000px;}
.x7{left:267.240000px;}
.x24{left:270.993000px;}
.x1d{left:278.610000px;}
.xd{left:280.707000px;}
.x1e{left:304.987500px;}
.x10{left:337.785000px;}
.x23{left:355.146000px;}
.x5{left:361.375500px;}
.x25{left:379.917000px;}
.x6{left:385.006500px;}
.x19{left:386.844000px;}
.x3{left:392.416500px;}
.x13{left:397.018500px;}
.x1f{left:403.809000px;}
.x26{left:411.798000px;}
.xf{left:430.357500px;}
.xe{left:447.160500px;}
.x28{left:452.649000px;}
.x17{left:455.824500px;}
.x20{left:461.794500px;}
.xb{left:495.343500px;}
.x21{left:506.565000px;}
.xc{left:570.312000px;}
.x1c{left:673.858500px;}
.x22{left:790.905000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.397333pt;}
.va{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v9{vertical-align:27.978667pt;}
.v8{vertical-align:35.946667pt;}
.v5{vertical-align:63.760000pt;}
.v7{vertical-align:74.922667pt;}
.vb{vertical-align:111.365333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000125pt;}
.ls21{letter-spacing:0.000267pt;}
.lsd{letter-spacing:0.000479pt;}
.lsc{letter-spacing:0.000501pt;}
.lsa{letter-spacing:0.002079pt;}
.ls1c{letter-spacing:0.002205pt;}
.ls23{letter-spacing:0.002352pt;}
.ls11{letter-spacing:0.002387pt;}
.ls19{letter-spacing:0.002509pt;}
.ls2a{letter-spacing:0.002717pt;}
.ls16{letter-spacing:0.004349pt;}
.ls2b{letter-spacing:0.005459pt;}
.ls15{letter-spacing:2.652911pt;}
.ls1a{letter-spacing:2.654524pt;}
.ls1b{letter-spacing:2.656037pt;}
.ls7{letter-spacing:2.656473pt;}
.ls27{letter-spacing:2.657253pt;}
.ls1{letter-spacing:2.661371pt;}
.ls18{letter-spacing:6.376161pt;}
.ls2c{letter-spacing:8.674591pt;}
.ls2e{letter-spacing:8.679925pt;}
.lsb{letter-spacing:8.851733pt;}
.ls10{letter-spacing:8.857067pt;}
.ls13{letter-spacing:9.259145pt;}
.ls14{letter-spacing:9.262400pt;}
.ls28{letter-spacing:11.511578pt;}
.ls1d{letter-spacing:14.332911pt;}
.ls22{letter-spacing:14.757600pt;}
.ls17{letter-spacing:14.757812pt;}
.ls1e{letter-spacing:16.736037pt;}
.ls25{letter-spacing:17.370933pt;}
.ls24{letter-spacing:17.413371pt;}
.ls26{letter-spacing:17.416923pt;}
.ls12{letter-spacing:17.418704pt;}
.ls2{letter-spacing:17.708745pt;}
.ls29{letter-spacing:19.392479pt;}
.lsf{letter-spacing:19.601253pt;}
.ls1f{letter-spacing:24.060872pt;}
.ls9{letter-spacing:24.668911pt;}
.ls2f{letter-spacing:26.407578pt;}
.ls20{letter-spacing:26.718524pt;}
.lse{letter-spacing:48.402245pt;}
.ls3{letter-spacing:66.419590pt;}
.ls5{letter-spacing:121.817191pt;}
.ls6{letter-spacing:129.237371pt;}
.ls0{letter-spacing:139.328267pt;}
.ls4{letter-spacing:154.439538pt;}
.wse{word-spacing:-34.611401pt;}
.ws81{word-spacing:-25.791179pt;}
.ws7f{word-spacing:-14.760588pt;}
.wsbc{word-spacing:-14.465200pt;}
.wsc6{word-spacing:-12.543875pt;}
.ws8a{word-spacing:-5.940366pt;}
.ws79{word-spacing:-5.920395pt;}
.ws92{word-spacing:-5.905121pt;}
.wsa5{word-spacing:-5.899788pt;}
.ws23{word-spacing:-5.887232pt;}
.wsa6{word-spacing:-5.884408pt;}
.ws7e{word-spacing:-5.514019pt;}
.wsc4{word-spacing:-3.866692pt;}
.ws55{word-spacing:-2.699200pt;}
.ws1d{word-spacing:-2.380397pt;}
.wsd5{word-spacing:-2.114728pt;}
.ws96{word-spacing:-2.061594pt;}
.ws39{word-spacing:-1.902192pt;}
.ws1a{word-spacing:-1.849059pt;}
.wsde{word-spacing:-1.662032pt;}
.wsb6{word-spacing:-1.477121pt;}
.ws8f{word-spacing:-1.423988pt;}
.ws1c{word-spacing:-1.370854pt;}
.ws17{word-spacing:-0.839515pt;}
.ws34{word-spacing:-0.733247pt;}
.ws5e{word-spacing:-0.680113pt;}
.ws21{word-spacing:-0.626980pt;}
.wsc1{word-spacing:-0.607853pt;}
.ws1f{word-spacing:-0.573846pt;}
.wsad{word-spacing:-0.361310pt;}
.wsbf{word-spacing:-0.148775pt;}
.ws15{word-spacing:-0.132198pt;}
.ws28{word-spacing:-0.095641pt;}
.wsd4{word-spacing:-0.063761pt;}
.wsa4{word-spacing:-0.053134pt;}
.wsdc{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws11{word-spacing:-0.031881pt;}
.ws13{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.010627pt;}
.ws53{word-spacing:0.063761pt;}
.wsd6{word-spacing:0.080764pt;}
.ws3e{word-spacing:0.170028pt;}
.wse3{word-spacing:0.250792pt;}
.wse8{word-spacing:0.378314pt;}
.ws38{word-spacing:0.382564pt;}
.ws72{word-spacing:0.541965pt;}
.ws7a{word-spacing:0.595099pt;}
.wsd0{word-spacing:0.648233pt;}
.wsb7{word-spacing:0.701367pt;}
.wsc7{word-spacing:0.754501pt;}
.wsd7{word-spacing:0.803386pt;}
.ws4c{word-spacing:0.837392pt;}
.ws5c{word-spacing:0.860769pt;}
.ws22{word-spacing:0.913903pt;}
.wsc9{word-spacing:1.007421pt;}
.ws5d{word-spacing:1.020170pt;}
.wsda{word-spacing:1.058429pt;}
.ws43{word-spacing:1.073304pt;}
.wscf{word-spacing:1.126438pt;}
.ws1e{word-spacing:1.232706pt;}
.ws6a{word-spacing:1.285840pt;}
.wsdd{word-spacing:1.313472pt;}
.wsd2{word-spacing:1.338973pt;}
.wsa9{word-spacing:1.392107pt;}
.ws94{word-spacing:1.445241pt;}
.ws8{word-spacing:1.448970pt;}
.ws63{word-spacing:1.498375pt;}
.wsbd{word-spacing:1.551509pt;}
.wsc3{word-spacing:1.645029pt;}
.ws35{word-spacing:1.657777pt;}
.ws82{word-spacing:1.710911pt;}
.wse0{word-spacing:1.738544pt;}
.wsd1{word-spacing:1.764044pt;}
.ws51{word-spacing:1.817178pt;}
.ws91{word-spacing:1.870312pt;}
.ws67{word-spacing:1.923446pt;}
.wsc2{word-spacing:2.027593pt;}
.wsaa{word-spacing:2.029714pt;}
.ws3c{word-spacing:2.082848pt;}
.ws5f{word-spacing:2.189115pt;}
.wscb{word-spacing:2.242249pt;}
.ws8e{word-spacing:2.348517pt;}
.ws73{word-spacing:2.401651pt;}
.ws2f{word-spacing:2.454785pt;}
.ws10{word-spacing:2.503674pt;}
.wsce{word-spacing:2.507919pt;}
.wsee{word-spacing:2.515771pt;}
.ws9b{word-spacing:2.561052pt;}
.ws93{word-spacing:2.602285pt;}
.ws6c{word-spacing:2.614186pt;}
.ws2d{word-spacing:2.667320pt;}
.ws75{word-spacing:2.707709pt;}
.wsae{word-spacing:2.720454pt;}
.ws2b{word-spacing:2.773588pt;}
.ws71{word-spacing:2.826722pt;}
.ws33{word-spacing:2.877737pt;}
.ws2c{word-spacing:2.879856pt;}
.ws4{word-spacing:2.932989pt;}
.ws6{word-spacing:2.986123pt;}
.wsac{word-spacing:3.039257pt;}
.wsd{word-spacing:3.122698pt;}
.wsc0{word-spacing:3.145525pt;}
.ws59{word-spacing:3.175288pt;}
.ws2a{word-spacing:3.251793pt;}
.ws36{word-spacing:3.304927pt;}
.ws74{word-spacing:3.358060pt;}
.ws2e{word-spacing:3.411194pt;}
.ws3a{word-spacing:3.517462pt;}
.wsca{word-spacing:3.570596pt;}
.ws9f{word-spacing:3.623730pt;}
.ws7b{word-spacing:3.676864pt;}
.wsb5{word-spacing:3.729997pt;}
.ws4d{word-spacing:3.770389pt;}
.wse9{word-spacing:3.821397pt;}
.ws4a{word-spacing:3.889399pt;}
.ws4e{word-spacing:3.897910pt;}
.ws90{word-spacing:3.942533pt;}
.wsb{word-spacing:3.983473pt;}
.ws40{word-spacing:4.048801pt;}
.wseb{word-spacing:4.118948pt;}
.wsa{word-spacing:4.126935pt;}
.ws76{word-spacing:4.152953pt;}
.ws27{word-spacing:4.155068pt;}
.ws37{word-spacing:4.208202pt;}
.wsb1{word-spacing:4.261336pt;}
.wsb8{word-spacing:4.280475pt;}
.ws5b{word-spacing:4.314470pt;}
.ws6b{word-spacing:4.420738pt;}
.wse1{word-spacing:4.459005pt;}
.ws58{word-spacing:4.473872pt;}
.wsa2{word-spacing:4.493011pt;}
.ws6f{word-spacing:4.527005pt;}
.ws49{word-spacing:4.580139pt;}
.ws48{word-spacing:4.633273pt;}
.wsed{word-spacing:4.671541pt;}
.wsab{word-spacing:4.739541pt;}
.ws99{word-spacing:4.792675pt;}
.ws42{word-spacing:4.952076pt;}
.ws30{word-spacing:5.005210pt;}
.ws3d{word-spacing:5.111478pt;}
.wsc{word-spacing:5.131172pt;}
.ws83{word-spacing:5.164612pt;}
.wsb0{word-spacing:5.217746pt;}
.ws26{word-spacing:5.270880pt;}
.ws3f{word-spacing:5.324013pt;}
.wsec{word-spacing:5.351656pt;}
.ws7c{word-spacing:5.377147pt;}
.ws6e{word-spacing:5.430281pt;}
.ws20{word-spacing:5.467459pt;}
.wsc5{word-spacing:5.640705pt;}
.ws88{word-spacing:5.642817pt;}
.ws4b{word-spacing:5.683213pt;}
.wsb3{word-spacing:5.695951pt;}
.wsbb{word-spacing:5.725720pt;}
.ws41{word-spacing:5.749084pt;}
.wsb2{word-spacing:5.802218pt;}
.ws1b{word-spacing:5.908486pt;}
.ws45{word-spacing:5.961620pt;}
.ws46{word-spacing:6.014754pt;}
.wsbe{word-spacing:6.067888pt;}
.wsaf{word-spacing:6.174155pt;}
.ws29{word-spacing:6.227289pt;}
.ws98{word-spacing:6.280423pt;}
.ws60{word-spacing:6.333557pt;}
.ws9d{word-spacing:6.439825pt;}
.ws31{word-spacing:6.533357pt;}
.wscc{word-spacing:6.546092pt;}
.ws19{word-spacing:6.652360pt;}
.wsb9{word-spacing:6.703385pt;}
.ws9c{word-spacing:6.705494pt;}
.ws70{word-spacing:6.864896pt;}
.ws7d{word-spacing:6.918029pt;}
.ws77{word-spacing:6.958429pt;}
.wsd3{word-spacing:6.971163pt;}
.ws78{word-spacing:7.000936pt;}
.ws3b{word-spacing:7.024297pt;}
.ws25{word-spacing:7.077431pt;}
.ws24{word-spacing:7.236833pt;}
.ws18{word-spacing:7.289967pt;}
.wse6{word-spacing:7.349495pt;}
.ws62{word-spacing:7.396234pt;}
.ws9e{word-spacing:7.449368pt;}
.ws47{word-spacing:7.502502pt;}
.ws50{word-spacing:7.555636pt;}
.ws44{word-spacing:7.608770pt;}
.ws32{word-spacing:7.638544pt;}
.ws9a{word-spacing:7.661904pt;}
.ws57{word-spacing:7.715037pt;}
.wscd{word-spacing:7.768171pt;}
.ws9{word-spacing:7.856957pt;}
.ws8d{word-spacing:8.193242pt;}
.ws4f{word-spacing:8.246376pt;}
.ws7{word-spacing:8.287345pt;}
.ws69{word-spacing:8.352644pt;}
.wsba{word-spacing:8.403673pt;}
.wsa0{word-spacing:8.565179pt;}
.wsd8{word-spacing:8.709725pt;}
.ws64{word-spacing:8.777715pt;}
.ws68{word-spacing:8.990250pt;}
.wse5{word-spacing:9.134797pt;}
.wsa1{word-spacing:9.202786pt;}
.ws86{word-spacing:9.299459pt;}
.ws85{word-spacing:9.308198pt;}
.ws87{word-spacing:9.309053pt;}
.wsb4{word-spacing:9.362187pt;}
.wsa8{word-spacing:9.787258pt;}
.ws52{word-spacing:10.318597pt;}
.wsc8{word-spacing:10.401512pt;}
.ws66{word-spacing:10.956203pt;}
.ws8c{word-spacing:11.275007pt;}
.ws5a{word-spacing:11.328140pt;}
.wsa3{word-spacing:11.430617pt;}
.wsa7{word-spacing:11.434408pt;}
.ws80{word-spacing:11.471296pt;}
.ws8b{word-spacing:11.540676pt;}
.ws54{word-spacing:11.700077pt;}
.wsdf{word-spacing:12.412102pt;}
.ws16{word-spacing:13.878954pt;}
.wse4{word-spacing:14.154898pt;}
.wsdb{word-spacing:14.920027pt;}
.ws12{word-spacing:16.280258pt;}
.ws84{word-spacing:17.380628pt;}
.wsea{word-spacing:17.470459pt;}
.wse2{word-spacing:18.108067pt;}
.ws3{word-spacing:18.915657pt;}
.ws2{word-spacing:18.968790pt;}
.ws61{word-spacing:20.297137pt;}
.wse7{word-spacing:20.743514pt;}
.ws89{word-spacing:21.908628pt;}
.wsd9{word-spacing:22.061237pt;}
.ws56{word-spacing:23.846639pt;}
.ws95{word-spacing:24.564629pt;}
.ws0{word-spacing:32.594491pt;}
.ws97{word-spacing:33.476629pt;}
.ws1{word-spacing:34.338985pt;}
.ws65{word-spacing:43.740207pt;}
.ws14{word-spacing:71.667439pt;}
.wsf{word-spacing:97.268628pt;}
._5{margin-left:-27.140746pt;}
._1{margin-left:-5.784374pt;}
._3{margin-left:-4.410111pt;}
._0{margin-left:-2.846279pt;}
._2{margin-left:-1.381481pt;}
._4{width:1.381481pt;}
._b{width:2.656945pt;}
._23{width:3.949421pt;}
._26{width:8.072865pt;}
._7{width:9.225826pt;}
._f{width:12.486459pt;}
._e{width:13.921073pt;}
._20{width:15.196286pt;}
._18{width:16.216493pt;}
._1d{width:17.208138pt;}
._6{width:18.590169pt;}
._1e{width:20.084602pt;}
._22{width:21.518893pt;}
._13{width:22.535995pt;}
._8{width:23.733324pt;}
._10{width:24.652634pt;}
._24{width:25.663658pt;}
._14{width:26.620067pt;}
._9{width:28.267415pt;}
._11{width:29.701831pt;}
._a{width:31.120695pt;}
._15{width:32.730462pt;}
._d{width:34.962084pt;}
._c{width:36.396699pt;}
._16{width:37.353108pt;}
._17{width:40.254318pt;}
._12{width:41.997114pt;}
._21{width:42.994214pt;}
._25{width:44.154243pt;}
._1f{width:46.307744pt;}
._1b{width:48.351223pt;}
._19{width:50.158172pt;}
._1c{width:61.103947pt;}
._1a{width:72.326313pt;}
.fs8{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.fs7{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:30.910667pt;}
.y94{bottom:43.529333pt;}
.y2b{bottom:43.530667pt;}
.y2a{bottom:56.149333pt;}
.yaf{bottom:96.000000pt;}
.ycf{bottom:98.717333pt;}
.y4f{bottom:98.953333pt;}
.y76{bottom:99.393333pt;}
.y29{bottom:99.750667pt;}
.y12b{bottom:101.133333pt;}
.y93{bottom:103.753333pt;}
.yf2{bottom:109.909333pt;}
.yae{bottom:111.940000pt;}
.y28{bottom:112.424000pt;}
.yce{bottom:114.657333pt;}
.y4e{bottom:114.893333pt;}
.y75{bottom:115.333333pt;}
.y12a{bottom:117.074667pt;}
.y92{bottom:119.693333pt;}
.y27{bottom:125.096000pt;}
.yf1{bottom:125.849333pt;}
.yad{bottom:127.880000pt;}
.ycd{bottom:130.598667pt;}
.y4d{bottom:130.833333pt;}
.y74{bottom:131.274667pt;}
.y129{bottom:133.014667pt;}
.y91{bottom:135.633333pt;}
.y26{bottom:137.768000pt;}
.yf0{bottom:141.789333pt;}
.yac{bottom:143.820000pt;}
.y108{bottom:143.821333pt;}
.ycc{bottom:146.538667pt;}
.y4c{bottom:146.773333pt;}
.y73{bottom:147.214667pt;}
.y128{bottom:148.954667pt;}
.y25{bottom:150.441333pt;}
.y90{bottom:151.573333pt;}
.yef{bottom:157.730667pt;}
.ycb{bottom:162.478667pt;}
.y4b{bottom:162.714667pt;}
.y24{bottom:163.113333pt;}
.y127{bottom:164.894667pt;}
.y8f{bottom:167.513333pt;}
.ya9{bottom:167.565333pt;}
.yee{bottom:173.670667pt;}
.y23{bottom:175.785333pt;}
.y72{bottom:176.309333pt;}
.y107{bottom:176.630667pt;}
.ya8{bottom:176.676000pt;}
.yca{bottom:178.418667pt;}
.y4a{bottom:178.654667pt;}
.y126{bottom:180.834667pt;}
.y8e{bottom:183.453333pt;}
.y22{bottom:188.458667pt;}
.y106{bottom:189.249333pt;}
.yab{bottom:189.453333pt;}
.yed{bottom:189.610667pt;}
.yc9{bottom:194.358667pt;}
.yaa{bottom:196.224000pt;}
.y125{bottom:196.774667pt;}
.y8d{bottom:199.394667pt;}
.y21{bottom:201.130667pt;}
.y105{bottom:201.869333pt;}
.yec{bottom:205.550667pt;}
.yc8{bottom:210.298667pt;}
.y49{bottom:211.877333pt;}
.y124{bottom:212.716000pt;}
.y20{bottom:213.804000pt;}
.ya7{bottom:214.098667pt;}
.y104{bottom:214.488000pt;}
.y71{bottom:214.922667pt;}
.y8c{bottom:215.334667pt;}
.yeb{bottom:221.490667pt;}
.y48{bottom:224.497333pt;}
.yc7{bottom:226.240000pt;}
.y1f{bottom:226.476000pt;}
.y103{bottom:227.108000pt;}
.y123{bottom:228.656000pt;}
.ya6{bottom:230.038667pt;}
.y70{bottom:230.864000pt;}
.y8b{bottom:231.274667pt;}
.y47{bottom:237.116000pt;}
.yea{bottom:237.432000pt;}
.y1e{bottom:239.148000pt;}
.yc6{bottom:242.180000pt;}
.y122{bottom:244.596000pt;}
.ya5{bottom:245.978667pt;}
.y6f{bottom:246.804000pt;}
.y8a{bottom:247.214667pt;}
.y1d{bottom:251.821333pt;}
.ye9{bottom:253.372000pt;}
.yc5{bottom:258.120000pt;}
.y121{bottom:260.536000pt;}
.ya4{bottom:261.918667pt;}
.y6e{bottom:262.744000pt;}
.y89{bottom:263.154667pt;}
.ye8{bottom:269.312000pt;}
.yc4{bottom:274.060000pt;}
.y120{bottom:276.476000pt;}
.ya3{bottom:277.858667pt;}
.y6d{bottom:278.684000pt;}
.y88{bottom:279.096000pt;}
.ye7{bottom:285.252000pt;}
.y1c{bottom:285.846667pt;}
.yc3{bottom:290.000000pt;}
.y11f{bottom:292.416000pt;}
.ya2{bottom:293.800000pt;}
.y6c{bottom:294.624000pt;}
.y87{bottom:295.036000pt;}
.ye6{bottom:301.192000pt;}
.y1b{bottom:304.444000pt;}
.yc2{bottom:305.940000pt;}
.y11e{bottom:308.357333pt;}
.y6b{bottom:310.565333pt;}
.y86{bottom:310.976000pt;}
.ye5{bottom:317.132000pt;}
.ya1{bottom:318.318667pt;}
.yc1{bottom:321.881333pt;}
.y1a{bottom:323.041333pt;}
.y11d{bottom:324.297333pt;}
.y6a{bottom:326.505333pt;}
.ye4{bottom:333.073333pt;}
.y85{bottom:335.494667pt;}
.yc0{bottom:337.821333pt;}
.y11c{bottom:340.237333pt;}
.y19{bottom:341.637333pt;}
.ye3{bottom:349.013333pt;}
.ya0{bottom:352.226667pt;}
.ybf{bottom:353.761333pt;}
.y11b{bottom:356.177333pt;}
.y18{bottom:360.234667pt;}
.y69{bottom:360.245333pt;}
.ye2{bottom:364.953333pt;}
.y9f{bottom:368.166667pt;}
.ybe{bottom:369.701333pt;}
.y84{bottom:370.022667pt;}
.y14c{bottom:370.374667pt;}
.y11a{bottom:372.117333pt;}
.y68{bottom:372.864000pt;}
.y17{bottom:378.832000pt;}
.ye1{bottom:380.893333pt;}
.y9e{bottom:384.106667pt;}
.y67{bottom:385.484000pt;}
.ybd{bottom:385.641333pt;}
.y83{bottom:385.962667pt;}
.y14b{bottom:386.745333pt;}
.y119{bottom:388.057333pt;}
.ye0{bottom:396.833333pt;}
.y14a{bottom:396.942667pt;}
.y66{bottom:398.102667pt;}
.y9d{bottom:400.046667pt;}
.ybc{bottom:401.581333pt;}
.y82{bottom:401.902667pt;}
.y118{bottom:403.998667pt;}
.y16{bottom:407.129333pt;}
.y65{bottom:410.722667pt;}
.ydf{bottom:412.773333pt;}
.y149{bottom:413.312000pt;}
.y9c{bottom:415.988000pt;}
.ybb{bottom:417.522667pt;}
.y81{bottom:417.844000pt;}
.y117{bottom:419.938667pt;}
.y148{bottom:423.509333pt;}
.yde{bottom:428.714667pt;}
.y9b{bottom:431.928000pt;}
.yba{bottom:433.462667pt;}
.y80{bottom:433.784000pt;}
.y147{bottom:439.878667pt;}
.ydd{bottom:444.654667pt;}
.y15{bottom:445.744000pt;}
.y9a{bottom:447.868000pt;}
.y116{bottom:449.033333pt;}
.yb9{bottom:449.402667pt;}
.y7f{bottom:449.724000pt;}
.y146{bottom:450.076000pt;}
.y14{bottom:460.356000pt;}
.ydc{bottom:460.594667pt;}
.yb8{bottom:465.342667pt;}
.y7e{bottom:465.664000pt;}
.y145{bottom:466.446667pt;}
.y13{bottom:474.966667pt;}
.y99{bottom:480.370667pt;}
.y144{bottom:480.393333pt;}
.yb7{bottom:481.282667pt;}
.y7d{bottom:481.604000pt;}
.y115{bottom:487.648000pt;}
.y12{bottom:489.578667pt;}
.ydb{bottom:489.689333pt;}
.y143{bottom:490.590667pt;}
.y102{bottom:492.774667pt;}
.y98{bottom:492.990667pt;}
.y7c{bottom:497.545333pt;}
.y114{bottom:503.588000pt;}
.y11{bottom:504.190667pt;}
.y97{bottom:505.609333pt;}
.yb6{bottom:505.802667pt;}
.y142{bottom:506.961333pt;}
.y101{bottom:508.714667pt;}
.y7b{bottom:513.485333pt;}
.y141{bottom:517.158667pt;}
.y96{bottom:518.229333pt;}
.y10{bottom:518.802667pt;}
.y113{bottom:519.528000pt;}
.y100{bottom:524.654667pt;}
.yda{bottom:528.304000pt;}
.y7a{bottom:529.425333pt;}
.y95{bottom:530.848000pt;}
.yf{bottom:533.414667pt;}
.y140{bottom:533.528000pt;}
.y112{bottom:535.468000pt;}
.yb5{bottom:540.330667pt;}
.yff{bottom:540.594667pt;}
.y46{bottom:543.116000pt;}
.y13f{bottom:543.725333pt;}
.yd9{bottom:544.244000pt;}
.y79{bottom:545.365333pt;}
.y111{bottom:551.408000pt;}
.yb4{bottom:556.270667pt;}
.yfe{bottom:556.534667pt;}
.y45{bottom:559.056000pt;}
.y13e{bottom:560.094667pt;}
.yd8{bottom:560.184000pt;}
.y110{bottom:567.348000pt;}
.y13d{bottom:570.292000pt;}
.yb3{bottom:572.210667pt;}
.yfd{bottom:572.474667pt;}
.y44{bottom:574.996000pt;}
.yd7{bottom:576.124000pt;}
.ye{bottom:577.660000pt;}
.y13c{bottom:582.912000pt;}
.y10f{bottom:583.289333pt;}
.yb2{bottom:588.150667pt;}
.yfc{bottom:588.416000pt;}
.y43{bottom:590.937333pt;}
.yd6{bottom:592.064000pt;}
.y78{bottom:593.924000pt;}
.yd{bottom:596.257333pt;}
.y10e{bottom:599.229333pt;}
.y13b{bottom:599.281333pt;}
.yb1{bottom:604.090667pt;}
.yfb{bottom:604.356000pt;}
.y77{bottom:606.544000pt;}
.y42{bottom:606.877333pt;}
.yd5{bottom:608.004000pt;}
.y13a{bottom:609.478667pt;}
.y10d{bottom:615.169333pt;}
.yb0{bottom:620.030667pt;}
.yfa{bottom:620.296000pt;}
.y139{bottom:622.097333pt;}
.y41{bottom:622.817333pt;}
.yd4{bottom:623.945333pt;}
.y10c{bottom:631.109333pt;}
.yc{bottom:633.450667pt;}
.y64{bottom:635.972000pt;}
.yf9{bottom:636.236000pt;}
.y138{bottom:638.468000pt;}
.y40{bottom:638.757333pt;}
.yd3{bottom:639.885333pt;}
.y10b{bottom:647.049333pt;}
.y137{bottom:648.665333pt;}
.y63{bottom:651.912000pt;}
.yf8{bottom:652.176000pt;}
.y3f{bottom:654.697333pt;}
.yd2{bottom:655.825333pt;}
.y136{bottom:665.034667pt;}
.y62{bottom:667.852000pt;}
.y3e{bottom:670.637333pt;}
.yb{bottom:670.644000pt;}
.y135{bottom:675.232000pt;}
.y61{bottom:683.792000pt;}
.y3d{bottom:686.578667pt;}
.y134{bottom:687.852000pt;}
.ya{bottom:689.241333pt;}
.y10a{bottom:695.608000pt;}
.yf7{bottom:697.013333pt;}
.y60{bottom:699.732000pt;}
.y3c{bottom:702.518667pt;}
.y133{bottom:704.221333pt;}
.yd1{bottom:704.384000pt;}
.y109{bottom:708.228000pt;}
.yf6{bottom:709.633333pt;}
.y132{bottom:714.418667pt;}
.y5f{bottom:715.673333pt;}
.yd0{bottom:717.004000pt;}
.y3b{bottom:718.458667pt;}
.yf5{bottom:722.252000pt;}
.y9{bottom:726.436000pt;}
.y131{bottom:730.788000pt;}
.y5e{bottom:731.613333pt;}
.y3a{bottom:734.398667pt;}
.yf4{bottom:734.872000pt;}
.y8{bottom:745.032000pt;}
.yf3{bottom:747.490667pt;}
.y5d{bottom:747.553333pt;}
.y39{bottom:750.338667pt;}
.y130{bottom:752.812000pt;}
.y5c{bottom:763.493333pt;}
.y7{bottom:763.629333pt;}
.y38{bottom:766.278667pt;}
.y5b{bottom:779.433333pt;}
.y37{bottom:782.220000pt;}
.y12f{bottom:791.425333pt;}
.y6{bottom:793.310667pt;}
.y5a{bottom:795.373333pt;}
.y36{bottom:798.160000pt;}
.y12e{bottom:807.366667pt;}
.y5{bottom:809.250667pt;}
.y59{bottom:811.314667pt;}
.y35{bottom:814.100000pt;}
.y12d{bottom:823.306667pt;}
.y4{bottom:825.190667pt;}
.y58{bottom:827.254667pt;}
.y34{bottom:830.040000pt;}
.y57{bottom:843.194667pt;}
.y33{bottom:845.980000pt;}
.y12c{bottom:852.401333pt;}
.y3{bottom:854.414667pt;}
.y56{bottom:859.134667pt;}
.y32{bottom:861.921333pt;}
.y55{bottom:875.074667pt;}
.y31{bottom:877.861333pt;}
.y54{bottom:891.014667pt;}
.y30{bottom:893.801333pt;}
.y2{bottom:898.985333pt;}
.y53{bottom:906.956000pt;}
.y2f{bottom:909.741333pt;}
.y52{bottom:922.896000pt;}
.y2e{bottom:925.681333pt;}
.y1{bottom:928.209333pt;}
.y51{bottom:938.836000pt;}
.y50{bottom:954.776000pt;}
.y2d{bottom:970.716000pt;}
.h10{height:17.693578pt;}
.h8{height:21.551241pt;}
.h9{height:31.880400pt;}
.h6{height:35.865600pt;}
.hd{height:37.087439pt;}
.h3{height:38.043849pt;}
.h7{height:39.850400pt;}
.h4{height:44.683229pt;}
.h5{height:44.688562pt;}
.h2{height:47.820800pt;}
.hc{height:49.242400pt;}
.hb{height:49.247733pt;}
.h1{height:68.861600pt;}
.he{height:77.048021pt;}
.ha{height:103.610400pt;}
.hf{height:113.490688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x16{left:105.918667pt;}
.x15{left:110.789333pt;}
.x1a{left:112.884000pt;}
.x1b{left:115.925333pt;}
.x27{left:121.645333pt;}
.x12{left:129.209333pt;}
.x14{left:145.602667pt;}
.x11{left:147.640000pt;}
.x9{left:151.458667pt;}
.x2{left:161.353333pt;}
.x18{left:193.720000pt;}
.x4{left:213.958667pt;}
.x8{left:226.126667pt;}
.xa{left:227.141333pt;}
.x7{left:237.546667pt;}
.x24{left:240.882667pt;}
.x1d{left:247.653333pt;}
.xd{left:249.517333pt;}
.x1e{left:271.100000pt;}
.x10{left:300.253333pt;}
.x23{left:315.685333pt;}
.x5{left:321.222667pt;}
.x25{left:337.704000pt;}
.x6{left:342.228000pt;}
.x19{left:343.861333pt;}
.x3{left:348.814667pt;}
.x13{left:352.905333pt;}
.x1f{left:358.941333pt;}
.x26{left:366.042667pt;}
.xf{left:382.540000pt;}
.xe{left:397.476000pt;}
.x28{left:402.354667pt;}
.x17{left:405.177333pt;}
.x20{left:410.484000pt;}
.xb{left:440.305333pt;}
.x21{left:450.280000pt;}
.xc{left:506.944000pt;}
.x1c{left:598.985333pt;}
.x22{left:703.026667pt;}
}




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