
    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_87d8a76e2df4ea80a4b8ca1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_43b7db04e4ff0110ea954a05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_71441f65bb2d6ae5e90b8723.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_3fa706ce65f607489680b270.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2889a2a8b58ff715e7355684.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_f178bd6185a6ac822b9fcc80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_89d7a2c295419f3719c4fa6c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_cc2a179881cb034fa52dc191.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_f88a7b3c4024e12f6c0e0e68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.765000;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_ac315084ce1729d21fe7eea4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727000;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_e226d6d87e2cf7d8aaca6b0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_8d1505edec5f939022a15bd0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.989000;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_050193c4bee816434a1a7194.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_e226d6d87e2cf7d8aaca6b0a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_143c16dcba416c75c1e086cd.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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:-17.965200px;}
.v6{vertical-align:-4.372200px;}
.v3{vertical-align:-3.216000px;}
.v5{vertical-align:-2.165400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v7{vertical-align:4.368000px;}
.v1{vertical-align:17.982000px;}
.v8{vertical-align:41.472000px;}
.ls2c{letter-spacing:-4.752000px;}
.ls25{letter-spacing:-4.512000px;}
.ls28{letter-spacing:-3.552000px;}
.ls2f{letter-spacing:-2.784000px;}
.ls2b{letter-spacing:-1.824000px;}
.ls29{letter-spacing:-1.632000px;}
.ls1d{letter-spacing:-1.584000px;}
.ls2a{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.248000px;}
.ls2d{letter-spacing:-1.200000px;}
.ls24{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.450000px;}
.ls5{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.240000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls18{letter-spacing:-0.096000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003000px;}
.ls1{letter-spacing:0.005400px;}
.ls9{letter-spacing:0.006000px;}
.lsa{letter-spacing:0.085200px;}
.ls20{letter-spacing:0.096000px;}
.ls22{letter-spacing:0.192000px;}
.ls8{letter-spacing:0.195000px;}
.ls6{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.384000px;}
.ls3{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.576000px;}
.ls27{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.672000px;}
.ls21{letter-spacing:1.152000px;}
.ls17{letter-spacing:15.597600px;}
.ls12{letter-spacing:27.597000px;}
.ls15{letter-spacing:30.902400px;}
.ls19{letter-spacing:42.292800px;}
.ls11{letter-spacing:57.597600px;}
.ls16{letter-spacing:69.597600px;}
.ls13{letter-spacing:84.292800px;}
.lsd{letter-spacing:111.597600px;}
.lse{letter-spacing:132.292800px;}
.lsc{letter-spacing:138.292800px;}
.ls14{letter-spacing:181.440000px;}
.ls10{letter-spacing:202.752000px;}
.ls7{letter-spacing:275.456400px;}
.lsb{letter-spacing:348.528000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-361.872000px;}
.wsd{word-spacing:-54.000000px;}
.ws36{word-spacing:-18.546000px;}
.wsc{word-spacing:-15.282000px;}
.ws0{word-spacing:-15.012000px;}
.ws44{word-spacing:-14.496000px;}
.ws38{word-spacing:-14.016000px;}
.ws45{word-spacing:-13.968000px;}
.ws37{word-spacing:-13.920000px;}
.ws41{word-spacing:-13.824000px;}
.ws40{word-spacing:-13.728000px;}
.ws39{word-spacing:-13.632000px;}
.ws42{word-spacing:-13.440000px;}
.ws43{word-spacing:-12.480000px;}
.ws2{word-spacing:-10.508400px;}
.ws1c{word-spacing:-2.592000px;}
.ws8{word-spacing:-2.430000px;}
.ws35{word-spacing:-0.912000px;}
.ws3e{word-spacing:-0.672000px;}
.ws4b{word-spacing:-0.624000px;}
.ws48{word-spacing:-0.576000px;}
.wsb{word-spacing:-0.480000px;}
.ws7{word-spacing:-0.270000px;}
.ws46{word-spacing:-0.192000px;}
.ws3f{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws1b{word-spacing:0.054000px;}
.ws51{word-spacing:0.096000px;}
.wsa{word-spacing:0.144000px;}
.ws4a{word-spacing:0.240000px;}
.ws5{word-spacing:0.270000px;}
.ws3b{word-spacing:0.450000px;}
.ws3c{word-spacing:0.480000px;}
.ws1a{word-spacing:0.540000px;}
.ws47{word-spacing:0.864000px;}
.ws52{word-spacing:1.200000px;}
.ws53{word-spacing:1.248000px;}
.ws4e{word-spacing:1.440000px;}
.ws3d{word-spacing:1.584000px;}
.ws4d{word-spacing:1.632000px;}
.ws4f{word-spacing:1.824000px;}
.ws2b{word-spacing:2.400000px;}
.ws54{word-spacing:2.784000px;}
.ws2c{word-spacing:3.168000px;}
.ws4c{word-spacing:3.552000px;}
.ws6{word-spacing:4.104000px;}
.ws49{word-spacing:4.512000px;}
.ws50{word-spacing:4.752000px;}
.wse{word-spacing:5.292000px;}
.ws3a{word-spacing:6.426000px;}
.ws9{word-spacing:9.288000px;}
.wsf{word-spacing:10.206000px;}
.ws10{word-spacing:11.934000px;}
.ws25{word-spacing:37.752000px;}
.ws29{word-spacing:63.331200px;}
.ws26{word-spacing:66.720000px;}
.ws2a{word-spacing:72.624000px;}
.ws1e{word-spacing:98.781000px;}
.ws3{word-spacing:105.456000px;}
.ws28{word-spacing:108.989400px;}
.ws32{word-spacing:114.780000px;}
.ws31{word-spacing:126.780000px;}
.ws2e{word-spacing:130.080000px;}
.ws14{word-spacing:139.140000px;}
.ws15{word-spacing:139.147800px;}
.ws20{word-spacing:141.408000px;}
.ws16{word-spacing:163.812000px;}
.ws17{word-spacing:163.812600px;}
.ws21{word-spacing:168.096000px;}
.ws33{word-spacing:172.080000px;}
.ws27{word-spacing:194.496000px;}
.ws34{word-spacing:238.080000px;}
.ws2f{word-spacing:250.128000px;}
.ws18{word-spacing:265.776000px;}
.ws19{word-spacing:278.448000px;}
.ws24{word-spacing:290.832000px;}
.ws2d{word-spacing:361.008000px;}
.ws30{word-spacing:362.772000px;}
.ws13{word-spacing:520.123200px;}
.ws22{word-spacing:528.542400px;}
.ws1f{word-spacing:563.120400px;}
.ws23{word-spacing:589.879200px;}
.ws11{word-spacing:614.304000px;}
.ws1d{word-spacing:855.552000px;}
.ws1{word-spacing:1242.054000px;}
._19{margin-left:-348.675000px;}
._e{margin-left:-18.786600px;}
._25{margin-left:-14.239800px;}
._a{margin-left:-5.886000px;}
._11{margin-left:-4.816800px;}
._8{margin-left:-3.213000px;}
._5{margin-left:-1.647000px;}
._4{width:1.560600px;}
._7{width:2.727000px;}
._6{width:3.736800px;}
._3{width:4.924800px;}
._9{width:6.436800px;}
._1{width:7.792200px;}
._d{width:8.980200px;}
._2{width:10.292400px;}
._b{width:11.469600px;}
._10{width:12.776400px;}
._12{width:13.797000px;}
._14{width:16.038000px;}
._17{width:17.879400px;}
._c{width:19.472400px;}
._15{width:21.151800px;}
._0{width:23.371200px;}
._54{width:27.936000px;}
._50{width:28.967400px;}
._52{width:30.286800px;}
._13{width:31.822200px;}
._51{width:33.294600px;}
._53{width:35.706600px;}
._4e{width:54.624000px;}
._4d{width:56.231400px;}
._4f{width:59.911200px;}
._34{width:85.968000px;}
._40{width:124.800000px;}
._33{width:152.928000px;}
._4a{width:185.424000px;}
._41{width:225.360000px;}
._49{width:243.168000px;}
._46{width:251.424000px;}
._1b{width:273.120000px;}
._20{width:279.120000px;}
._1c{width:285.120000px;}
._1d{width:291.792000px;}
._4c{width:293.904000px;}
._1f{width:297.792000px;}
._22{width:303.792000px;}
._1e{width:310.608000px;}
._27{width:328.286400px;}
._48{width:331.248000px;}
._44{width:336.576000px;}
._47{width:347.280000px;}
._2b{width:371.047200px;}
._23{width:374.640000px;}
._28{width:379.022400px;}
._26{width:389.700000px;}
._42{width:392.592000px;}
._45{width:405.984000px;}
._4b{width:408.624000px;}
._31{width:418.960200px;}
._43{width:421.968000px;}
._35{width:423.552000px;}
._2e{width:429.758400px;}
._1a{width:441.312000px;}
._29{width:448.430400px;}
._32{width:479.520000px;}
._21{width:514.704000px;}
._2a{width:523.166400px;}
._39{width:527.616000px;}
._24{width:534.624000px;}
._30{width:560.455200px;}
._2d{width:563.150400px;}
._3a{width:570.288000px;}
._36{width:573.024000px;}
._3b{width:596.976000px;}
._38{width:613.008000px;}
._2c{width:629.829600px;}
._2f{width:645.758400px;}
._37{width:647.616000px;}
._3d{width:669.072000px;}
._18{width:671.040000px;}
._3c{width:682.320000px;}
._3f{width:693.072000px;}
._3e{width:714.336000px;}
._16{width:943.429800px;}
._f{width:1361.538600px;}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:17.301750px;}
.y3d{bottom:46.967550px;}
.y3e{bottom:47.167950px;}
.y9d{bottom:47.171700px;}
.y9c{bottom:47.916000px;}
.y37{bottom:59.074650px;}
.y3b{bottom:59.194650px;}
.y36{bottom:77.074650px;}
.y3a{bottom:77.194650px;}
.ycc{bottom:86.601000px;}
.y133{bottom:88.682400px;}
.y185{bottom:89.829000px;}
.y18c{bottom:89.973000px;}
.yef{bottom:92.283750px;}
.y9b{bottom:92.292750px;}
.y6d{bottom:92.295750px;}
.y143{bottom:92.300250px;}
.y35{bottom:95.074650px;}
.y39{bottom:95.194650px;}
.y11e{bottom:101.738400px;}
.ycb{bottom:103.101000px;}
.y132{bottom:105.182400px;}
.y184{bottom:106.329000px;}
.y18b{bottom:106.473000px;}
.y9a{bottom:111.044250px;}
.y6c{bottom:111.047250px;}
.y142{bottom:111.051750px;}
.y34{bottom:113.074650px;}
.y38{bottom:113.194650px;}
.y11d{bottom:118.238400px;}
.yca{bottom:119.601000px;}
.y183{bottom:122.829000px;}
.y18a{bottom:122.973000px;}
.y131{bottom:125.918400px;}
.yee{bottom:129.786750px;}
.y99{bottom:129.795750px;}
.y6b{bottom:129.798750px;}
.y11c{bottom:134.738400px;}
.y182{bottom:139.329000px;}
.y189{bottom:139.473000px;}
.yc9{bottom:140.337000px;}
.y130{bottom:146.654400px;}
.y141{bottom:148.529250px;}
.yed{bottom:148.538250px;}
.y98{bottom:148.547250px;}
.y6a{bottom:148.550250px;}
.y11b{bottom:155.474400px;}
.y181{bottom:155.829000px;}
.y188{bottom:155.973000px;}
.y2b{bottom:159.373050px;}
.yc8{bottom:161.073000px;}
.y140{bottom:167.280750px;}
.yec{bottom:167.289750px;}
.y97{bottom:167.298750px;}
.y69{bottom:167.301750px;}
.y12f{bottom:167.390400px;}
.y187{bottom:172.473000px;}
.y11a{bottom:176.210400px;}
.yc7{bottom:181.809000px;}
.y13f{bottom:186.032250px;}
.yeb{bottom:186.041250px;}
.y96{bottom:186.050250px;}
.y12e{bottom:188.126400px;}
.y180{bottom:188.829000px;}
.y186{bottom:188.973000px;}
.y119{bottom:196.946400px;}
.yc6{bottom:202.545000px;}
.y30{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.y13e{bottom:204.783750px;}
.yea{bottom:204.792750px;}
.y68{bottom:204.801750px;}
.y12d{bottom:208.862400px;}
.y118{bottom:217.682400px;}
.y2f{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.yc5{bottom:223.281000px;}
.y13d{bottom:223.535250px;}
.ye9{bottom:223.544250px;}
.y12c{bottom:229.598400px;}
.y2e{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y117{bottom:238.418400px;}
.y13c{bottom:242.286750px;}
.ye8{bottom:242.295750px;}
.y95{bottom:242.301750px;}
.yc4{bottom:244.558350px;}
.y12b{bottom:250.334400px;}
.y2d{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y116{bottom:259.154400px;}
.y67{bottom:261.044250px;}
.ye7{bottom:261.047250px;}
.y17f{bottom:261.293850px;}
.yc3{bottom:265.846350px;}
.y2c{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y12a{bottom:271.070400px;}
.y17e{bottom:277.793850px;}
.y13b{bottom:279.789750px;}
.y66{bottom:279.795750px;}
.ye6{bottom:279.798750px;}
.y115{bottom:279.890400px;}
.yc2{bottom:286.582350px;}
.y129{bottom:291.806400px;}
.y17d{bottom:294.293850px;}
.ybf{bottom:294.826350px;}
.y94{bottom:298.529250px;}
.y13a{bottom:298.541250px;}
.y65{bottom:298.547250px;}
.ye5{bottom:298.550250px;}
.y114{bottom:300.626400px;}
.yc1{bottom:303.082350px;}
.y17c{bottom:310.793850px;}
.y128{bottom:312.542400px;}
.y93{bottom:317.280750px;}
.ye4{bottom:317.285250px;}
.y139{bottom:317.292750px;}
.y64{bottom:317.298750px;}
.y15d{bottom:317.301750px;}
.y113{bottom:321.362400px;}
.yc0{bottom:323.818350px;}
.y33{bottom:325.473450px;}
.y127{bottom:333.278400px;}
.y92{bottom:336.032250px;}
.ye3{bottom:336.036750px;}
.y138{bottom:336.044250px;}
.y15c{bottom:336.045750px;}
.y63{bottom:336.050250px;}
.y112{bottom:342.098400px;}
.ybe{bottom:344.554350px;}
.y91{bottom:354.783750px;}
.y137{bottom:354.795750px;}
.y15b{bottom:354.797250px;}
.y62{bottom:354.801750px;}
.y126{bottom:355.107450px;}
.y111{bottom:362.834400px;}
.y90{bottom:373.535250px;}
.y17b{bottom:373.536750px;}
.ye2{bottom:373.539750px;}
.y15a{bottom:373.548750px;}
.y125{bottom:375.843450px;}
.y110{bottom:383.570400px;}
.y124{bottom:386.211450px;}
.ybd{bottom:392.246250px;}
.y8f{bottom:392.286750px;}
.y17a{bottom:392.288250px;}
.ye1{bottom:392.291250px;}
.y61{bottom:392.295750px;}
.y136{bottom:392.298750px;}
.y159{bottom:392.300250px;}
.y10f{bottom:404.306400px;}
.ybc{bottom:410.997750px;}
.y8e{bottom:411.038250px;}
.y179{bottom:411.039750px;}
.ye0{bottom:411.042750px;}
.y60{bottom:411.047250px;}
.y135{bottom:411.050250px;}
.y123{bottom:417.315450px;}
.y10e{bottom:425.042400px;}
.y2a{bottom:427.474800px;}
.ybb{bottom:429.749250px;}
.y8d{bottom:429.789750px;}
.y178{bottom:429.791250px;}
.ydf{bottom:429.794250px;}
.y158{bottom:429.795750px;}
.y5f{bottom:429.798750px;}
.y134{bottom:429.801750px;}
.y122{bottom:433.815450px;}
.y10d{bottom:445.778400px;}
.y29{bottom:446.968800px;}
.y8c{bottom:448.541250px;}
.y177{bottom:448.542750px;}
.yde{bottom:448.545750px;}
.y5e{bottom:448.550250px;}
.y28{bottom:461.964600px;}
.yba{bottom:467.252250px;}
.y5d{bottom:467.289750px;}
.y8b{bottom:467.292750px;}
.y176{bottom:467.294250px;}
.ydd{bottom:467.297250px;}
.y157{bottom:467.298750px;}
.y10c{bottom:467.607450px;}
.yb9{bottom:486.003750px;}
.y5c{bottom:486.041250px;}
.y8a{bottom:486.044250px;}
.y175{bottom:486.045750px;}
.ydc{bottom:486.048750px;}
.y156{bottom:486.050250px;}
.y10b{bottom:488.343450px;}
.y121{bottom:498.309450px;}
.yb8{bottom:504.755250px;}
.y155{bottom:504.791250px;}
.y5b{bottom:504.792750px;}
.y89{bottom:504.795750px;}
.y174{bottom:504.797250px;}
.ydb{bottom:504.800250px;}
.y10a{bottom:509.079450px;}
.y20{bottom:513.762450px;}
.y120{bottom:514.809450px;}
.yb7{bottom:523.506750px;}
.yda{bottom:523.538250px;}
.y154{bottom:523.542750px;}
.y5a{bottom:523.544250px;}
.y88{bottom:523.547250px;}
.y173{bottom:523.548750px;}
.y1f{bottom:528.760950px;}
.y109{bottom:529.815450px;}
.y1ae{bottom:535.065450px;}
.yb6{bottom:542.258250px;}
.yd9{bottom:542.289750px;}
.y153{bottom:542.294250px;}
.y59{bottom:542.295750px;}
.y87{bottom:542.298750px;}
.y172{bottom:542.300250px;}
.y1e{bottom:543.759450px;}
.y108{bottom:546.315450px;}
.y1ad{bottom:551.565450px;}
.y1d{bottom:558.757950px;}
.yb5{bottom:561.009750px;}
.yd8{bottom:561.041250px;}
.y58{bottom:561.047250px;}
.y86{bottom:561.050250px;}
.y171{bottom:561.051750px;}
.y1ac{bottom:568.065450px;}
.y1c{bottom:573.756450px;}
.yb4{bottom:579.761250px;}
.y85{bottom:579.779250px;}
.yd7{bottom:579.792750px;}
.y152{bottom:579.797250px;}
.y57{bottom:579.798750px;}
.y1ab{bottom:584.565450px;}
.y1b{bottom:588.754950px;}
.yd0{bottom:598.512750px;}
.y84{bottom:598.530750px;}
.y151{bottom:598.548750px;}
.y56{bottom:598.550250px;}
.y170{bottom:598.551750px;}
.y1aa{bottom:601.065450px;}
.y1a{bottom:603.753450px;}
.y107{bottom:608.366550px;}
.yb3{bottom:617.264250px;}
.y83{bottom:617.282250px;}
.y55{bottom:617.294250px;}
.yd6{bottom:617.295750px;}
.y150{bottom:617.300250px;}
.y1a9{bottom:617.565450px;}
.y19{bottom:618.751950px;}
.y106{bottom:624.866550px;}
.y18{bottom:633.750450px;}
.y1a8{bottom:634.065450px;}
.yb2{bottom:636.015750px;}
.y82{bottom:636.033750px;}
.y54{bottom:636.045750px;}
.yd5{bottom:636.047250px;}
.y14f{bottom:636.050250px;}
.y105{bottom:641.366550px;}
.y17{bottom:648.748950px;}
.y1a7{bottom:650.565450px;}
.yb1{bottom:654.767250px;}
.y81{bottom:654.785250px;}
.y14e{bottom:654.789750px;}
.y16f{bottom:654.794250px;}
.y53{bottom:654.797250px;}
.yd4{bottom:654.798750px;}
.y104{bottom:657.866550px;}
.y16{bottom:663.747450px;}
.y1a6{bottom:667.065450px;}
.yb0{bottom:673.518750px;}
.y80{bottom:673.536750px;}
.y14d{bottom:673.541250px;}
.y16e{bottom:673.545750px;}
.y52{bottom:673.548750px;}
.yd3{bottom:673.550250px;}
.y15{bottom:678.745950px;}
.y103{bottom:679.694850px;}
.y1a5{bottom:683.565450px;}
.yaf{bottom:692.270250px;}
.y7f{bottom:692.288250px;}
.y14c{bottom:692.292750px;}
.y16d{bottom:692.297250px;}
.y51{bottom:692.300250px;}
.yd2{bottom:692.301750px;}
.y14{bottom:693.744450px;}
.y1a4{bottom:700.065450px;}
.y102{bottom:701.523300px;}
.y13{bottom:708.742950px;}
.yae{bottom:711.021750px;}
.y7e{bottom:711.039750px;}
.y14b{bottom:711.044250px;}
.y16c{bottom:711.048750px;}
.y50{bottom:711.051750px;}
.y1a3{bottom:716.565450px;}
.y101{bottom:723.351600px;}
.y12{bottom:723.741450px;}
.ycf{bottom:729.773250px;}
.y7d{bottom:729.791250px;}
.y14a{bottom:729.795750px;}
.y16b{bottom:729.800250px;}
.yd1{bottom:729.801750px;}
.y1a2{bottom:733.065450px;}
.y11{bottom:738.739950px;}
.y100{bottom:745.180050px;}
.yad{bottom:748.524750px;}
.y7c{bottom:748.542750px;}
.y149{bottom:748.547250px;}
.y4f{bottom:748.548750px;}
.y16a{bottom:748.551750px;}
.y1a1{bottom:749.565450px;}
.y10{bottom:753.738450px;}
.y1a0{bottom:766.065450px;}
.yff{bottom:767.008350px;}
.yac{bottom:767.276250px;}
.y7b{bottom:767.294250px;}
.y148{bottom:767.298750px;}
.y4e{bottom:767.300250px;}
.yf{bottom:768.736950px;}
.y19f{bottom:782.565450px;}
.ye{bottom:783.735450px;}
.yab{bottom:786.027750px;}
.y169{bottom:786.035250px;}
.y4d{bottom:786.045750px;}
.yfe{bottom:788.836650px;}
.yd{bottom:798.733950px;}
.y19e{bottom:799.065450px;}
.yaa{bottom:804.779250px;}
.y147{bottom:804.785250px;}
.y168{bottom:804.786750px;}
.y4c{bottom:804.797250px;}
.yfd{bottom:810.665100px;}
.yc{bottom:813.732450px;}
.y19d{bottom:815.565450px;}
.ya9{bottom:823.530750px;}
.y146{bottom:823.536750px;}
.y167{bottom:823.538250px;}
.y4b{bottom:823.548750px;}
.yb{bottom:828.730950px;}
.y19c{bottom:832.065450px;}
.yfc{bottom:832.493850px;}
.ya8{bottom:842.282250px;}
.y145{bottom:842.288250px;}
.y166{bottom:842.289750px;}
.y4a{bottom:842.300250px;}
.ya{bottom:843.729450px;}
.y19b{bottom:848.565450px;}
.yfb{bottom:853.229850px;}
.y9{bottom:858.727950px;}
.yce{bottom:861.033750px;}
.y7a{bottom:861.039750px;}
.y165{bottom:861.041250px;}
.y49{bottom:861.044250px;}
.y19a{bottom:865.065450px;}
.y8{bottom:873.726450px;}
.yfa{bottom:875.058150px;}
.ya7{bottom:879.785250px;}
.y79{bottom:879.791250px;}
.y164{bottom:879.792750px;}
.y48{bottom:879.795750px;}
.y199{bottom:881.565450px;}
.y7{bottom:888.724950px;}
.yf9{bottom:896.886600px;}
.y198{bottom:898.065450px;}
.ya6{bottom:898.536750px;}
.y78{bottom:898.542750px;}
.y163{bottom:898.544250px;}
.y47{bottom:898.547250px;}
.y6{bottom:903.723450px;}
.y197{bottom:914.565450px;}
.ya5{bottom:917.288250px;}
.y77{bottom:917.294250px;}
.y162{bottom:917.295750px;}
.yf8{bottom:918.714900px;}
.y21{bottom:923.289300px;}
.y196{bottom:931.065450px;}
.ya4{bottom:936.039750px;}
.y76{bottom:936.045750px;}
.y161{bottom:936.047250px;}
.y46{bottom:936.050250px;}
.yf7{bottom:940.543200px;}
.y195{bottom:947.565450px;}
.ya3{bottom:954.791250px;}
.y45{bottom:954.794250px;}
.y75{bottom:954.797250px;}
.y160{bottom:954.798750px;}
.yf6{bottom:962.371650px;}
.y194{bottom:964.065450px;}
.ya2{bottom:973.542750px;}
.y44{bottom:973.545750px;}
.y74{bottom:973.548750px;}
.y15f{bottom:973.550250px;}
.y193{bottom:980.565450px;}
.y27{bottom:982.473300px;}
.yf5{bottom:984.199950px;}
.ya1{bottom:992.294250px;}
.y43{bottom:992.297250px;}
.y73{bottom:992.300250px;}
.y15e{bottom:992.301750px;}
.y192{bottom:997.065450px;}
.yf4{bottom:1006.028400px;}
.y72{bottom:1011.038250px;}
.ya0{bottom:1011.045750px;}
.y42{bottom:1011.048750px;}
.y144{bottom:1011.051750px;}
.y191{bottom:1013.565450px;}
.y32{bottom:1021.700700px;}
.yf3{bottom:1027.857450px;}
.y71{bottom:1029.789750px;}
.y9f{bottom:1029.797250px;}
.y41{bottom:1029.800250px;}
.y190{bottom:1030.065450px;}
.y31{bottom:1043.300700px;}
.y18f{bottom:1046.565450px;}
.y70{bottom:1048.541250px;}
.ycd{bottom:1048.548750px;}
.y40{bottom:1048.551750px;}
.yf2{bottom:1048.593450px;}
.y18e{bottom:1063.065450px;}
.y6f{bottom:1067.292750px;}
.y9e{bottom:1067.300250px;}
.yf1{bottom:1069.329450px;}
.y23{bottom:1074.058350px;}
.y18d{bottom:1079.565450px;}
.y26{bottom:1082.937000px;}
.y6e{bottom:1086.044250px;}
.y3f{bottom:1086.051750px;}
.yf0{bottom:1090.065450px;}
.y11f{bottom:1096.065450px;}
.y25{bottom:1097.937000px;}
.y22{bottom:1106.458350px;}
.y24{bottom:1112.937000px;}
.h9{height:27.519434px;}
.ha{height:27.537891px;}
.hf{height:34.320000px;}
.h2{height:34.945312px;}
.h1f{height:34.967644px;}
.h3{height:34.968750px;}
.h22{height:34.968844px;}
.h20{height:34.970044px;}
.h21{height:34.970644px;}
.he{height:35.616000px;}
.hd{height:36.336000px;}
.h1c{height:37.174444px;}
.h11{height:39.313477px;}
.h4{height:39.339844px;}
.h10{height:39.359077px;}
.h1b{height:42.290677px;}
.h7{height:44.520000px;}
.hc{height:45.519291px;}
.h8{height:45.519891px;}
.h24{height:45.525891px;}
.h13{height:45.531434px;}
.h16{height:45.531891px;}
.h26{height:45.537891px;}
.h15{height:45.543891px;}
.h19{height:45.549434px;}
.h14{height:45.549891px;}
.h18{height:45.555434px;}
.h25{height:45.561891px;}
.h17{height:45.567891px;}
.h1d{height:45.573891px;}
.h1e{height:45.585891px;}
.h1a{height:45.609891px;}
.h5{height:47.244141px;}
.h27{height:51.942000px;}
.hb{height:54.504000px;}
.h12{height:56.664000px;}
.h23{height:76.440750px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x13{left:89.559000px;}
.x19{left:91.601850px;}
.x29{left:94.101750px;}
.x27{left:95.853750px;}
.x18{left:103.034850px;}
.x14{left:107.559000px;}
.x2d{left:112.039350px;}
.x2b{left:116.291250px;}
.x10{left:139.339200px;}
.x28{left:159.897750px;}
.x9{left:220.656900px;}
.x2a{left:252.545850px;}
.xf{left:264.714600px;}
.x5{left:270.660900px;}
.x3{left:279.013800px;}
.x25{left:282.497850px;}
.x1b{left:284.189850px;}
.x7{left:290.004900px;}
.x4{left:296.185800px;}
.xe{left:307.614600px;}
.x1a{left:311.741850px;}
.xd{left:322.290600px;}
.x8{left:340.692900px;}
.x6{left:356.676900px;}
.xa{left:364.044900px;}
.x1d{left:368.789850px;}
.x1c{left:380.645850px;}
.x17{left:451.325100px;}
.x11{left:455.592300px;}
.xb{left:460.609650px;}
.x1e{left:466.577850px;}
.x1{left:469.770150px;}
.x15{left:474.097500px;}
.xc{left:480.643650px;}
.x26{left:487.837950px;}
.x16{left:492.094500px;}
.x2e{left:496.843350px;}
.x2c{left:501.095250px;}
.x20{left:561.029850px;}
.x1f{left:576.221850px;}
.x21{left:654.005850px;}
.x22{left:658.829850px;}
.x24{left:755.789850px;}
.x23{left:762.305850px;}
@media print{
.v2{vertical-align:-15.969067pt;}
.v6{vertical-align:-3.886400pt;}
.v3{vertical-align:-2.858667pt;}
.v5{vertical-align:-1.924800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v7{vertical-align:3.882667pt;}
.v1{vertical-align:15.984000pt;}
.v8{vertical-align:36.864000pt;}
.ls2c{letter-spacing:-4.224000pt;}
.ls25{letter-spacing:-4.010667pt;}
.ls28{letter-spacing:-3.157333pt;}
.ls2f{letter-spacing:-2.474667pt;}
.ls2b{letter-spacing:-1.621333pt;}
.ls29{letter-spacing:-1.450667pt;}
.ls1d{letter-spacing:-1.408000pt;}
.ls2a{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-1.109333pt;}
.ls2d{letter-spacing:-1.066667pt;}
.ls24{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.400000pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls18{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002667pt;}
.ls1{letter-spacing:0.004800pt;}
.ls9{letter-spacing:0.005333pt;}
.lsa{letter-spacing:0.075733pt;}
.ls20{letter-spacing:0.085333pt;}
.ls22{letter-spacing:0.170667pt;}
.ls8{letter-spacing:0.173333pt;}
.ls6{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.341333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.512000pt;}
.ls27{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.597333pt;}
.ls21{letter-spacing:1.024000pt;}
.ls17{letter-spacing:13.864533pt;}
.ls12{letter-spacing:24.530667pt;}
.ls15{letter-spacing:27.468800pt;}
.ls19{letter-spacing:37.593600pt;}
.ls11{letter-spacing:51.197867pt;}
.ls16{letter-spacing:61.864533pt;}
.ls13{letter-spacing:74.926933pt;}
.lsd{letter-spacing:99.197867pt;}
.lse{letter-spacing:117.593600pt;}
.lsc{letter-spacing:122.926933pt;}
.ls14{letter-spacing:161.280000pt;}
.ls10{letter-spacing:180.224000pt;}
.ls7{letter-spacing:244.850133pt;}
.lsb{letter-spacing:309.802667pt;}
.ws12{word-spacing:-321.664000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws36{word-spacing:-16.485333pt;}
.wsc{word-spacing:-13.584000pt;}
.ws0{word-spacing:-13.344000pt;}
.ws44{word-spacing:-12.885333pt;}
.ws38{word-spacing:-12.458667pt;}
.ws45{word-spacing:-12.416000pt;}
.ws37{word-spacing:-12.373333pt;}
.ws41{word-spacing:-12.288000pt;}
.ws40{word-spacing:-12.202667pt;}
.ws39{word-spacing:-12.117333pt;}
.ws42{word-spacing:-11.946667pt;}
.ws43{word-spacing:-11.093333pt;}
.ws2{word-spacing:-9.340800pt;}
.ws1c{word-spacing:-2.304000pt;}
.ws8{word-spacing:-2.160000pt;}
.ws35{word-spacing:-0.810667pt;}
.ws3e{word-spacing:-0.597333pt;}
.ws4b{word-spacing:-0.554667pt;}
.ws48{word-spacing:-0.512000pt;}
.wsb{word-spacing:-0.426667pt;}
.ws7{word-spacing:-0.240000pt;}
.ws46{word-spacing:-0.170667pt;}
.ws3f{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.048000pt;}
.ws51{word-spacing:0.085333pt;}
.wsa{word-spacing:0.128000pt;}
.ws4a{word-spacing:0.213333pt;}
.ws5{word-spacing:0.240000pt;}
.ws3b{word-spacing:0.400000pt;}
.ws3c{word-spacing:0.426667pt;}
.ws1a{word-spacing:0.480000pt;}
.ws47{word-spacing:0.768000pt;}
.ws52{word-spacing:1.066667pt;}
.ws53{word-spacing:1.109333pt;}
.ws4e{word-spacing:1.280000pt;}
.ws3d{word-spacing:1.408000pt;}
.ws4d{word-spacing:1.450667pt;}
.ws4f{word-spacing:1.621333pt;}
.ws2b{word-spacing:2.133333pt;}
.ws54{word-spacing:2.474667pt;}
.ws2c{word-spacing:2.816000pt;}
.ws4c{word-spacing:3.157333pt;}
.ws6{word-spacing:3.648000pt;}
.ws49{word-spacing:4.010667pt;}
.ws50{word-spacing:4.224000pt;}
.wse{word-spacing:4.704000pt;}
.ws3a{word-spacing:5.712000pt;}
.ws9{word-spacing:8.256000pt;}
.wsf{word-spacing:9.072000pt;}
.ws10{word-spacing:10.608000pt;}
.ws25{word-spacing:33.557333pt;}
.ws29{word-spacing:56.294400pt;}
.ws26{word-spacing:59.306667pt;}
.ws2a{word-spacing:64.554667pt;}
.ws1e{word-spacing:87.805333pt;}
.ws3{word-spacing:93.738667pt;}
.ws28{word-spacing:96.879467pt;}
.ws32{word-spacing:102.026667pt;}
.ws31{word-spacing:112.693333pt;}
.ws2e{word-spacing:115.626667pt;}
.ws14{word-spacing:123.680000pt;}
.ws15{word-spacing:123.686933pt;}
.ws20{word-spacing:125.696000pt;}
.ws16{word-spacing:145.610667pt;}
.ws17{word-spacing:145.611200pt;}
.ws21{word-spacing:149.418667pt;}
.ws33{word-spacing:152.960000pt;}
.ws27{word-spacing:172.885333pt;}
.ws34{word-spacing:211.626667pt;}
.ws2f{word-spacing:222.336000pt;}
.ws18{word-spacing:236.245333pt;}
.ws19{word-spacing:247.509333pt;}
.ws24{word-spacing:258.517333pt;}
.ws2d{word-spacing:320.896000pt;}
.ws30{word-spacing:322.464000pt;}
.ws13{word-spacing:462.331733pt;}
.ws22{word-spacing:469.815467pt;}
.ws1f{word-spacing:500.551467pt;}
.ws23{word-spacing:524.337067pt;}
.ws11{word-spacing:546.048000pt;}
.ws1d{word-spacing:760.490667pt;}
.ws1{word-spacing:1104.048000pt;}
._19{margin-left:-309.933333pt;}
._e{margin-left:-16.699200pt;}
._25{margin-left:-12.657600pt;}
._a{margin-left:-5.232000pt;}
._11{margin-left:-4.281600pt;}
._8{margin-left:-2.856000pt;}
._5{margin-left:-1.464000pt;}
._4{width:1.387200pt;}
._7{width:2.424000pt;}
._6{width:3.321600pt;}
._3{width:4.377600pt;}
._9{width:5.721600pt;}
._1{width:6.926400pt;}
._d{width:7.982400pt;}
._2{width:9.148800pt;}
._b{width:10.195200pt;}
._10{width:11.356800pt;}
._12{width:12.264000pt;}
._14{width:14.256000pt;}
._17{width:15.892800pt;}
._c{width:17.308800pt;}
._15{width:18.801600pt;}
._0{width:20.774400pt;}
._54{width:24.832000pt;}
._50{width:25.748800pt;}
._52{width:26.921600pt;}
._13{width:28.286400pt;}
._51{width:29.595200pt;}
._53{width:31.739200pt;}
._4e{width:48.554667pt;}
._4d{width:49.983467pt;}
._4f{width:53.254400pt;}
._34{width:76.416000pt;}
._40{width:110.933333pt;}
._33{width:135.936000pt;}
._4a{width:164.821333pt;}
._41{width:200.320000pt;}
._49{width:216.149333pt;}
._46{width:223.488000pt;}
._1b{width:242.773333pt;}
._20{width:248.106667pt;}
._1c{width:253.440000pt;}
._1d{width:259.370667pt;}
._4c{width:261.248000pt;}
._1f{width:264.704000pt;}
._22{width:270.037333pt;}
._1e{width:276.096000pt;}
._27{width:291.810133pt;}
._48{width:294.442667pt;}
._44{width:299.178667pt;}
._47{width:308.693333pt;}
._2b{width:329.819733pt;}
._23{width:333.013333pt;}
._28{width:336.908800pt;}
._26{width:346.400000pt;}
._42{width:348.970667pt;}
._45{width:360.874667pt;}
._4b{width:363.221333pt;}
._31{width:372.409067pt;}
._43{width:375.082667pt;}
._35{width:376.490667pt;}
._2e{width:382.007467pt;}
._1a{width:392.277333pt;}
._29{width:398.604800pt;}
._32{width:426.240000pt;}
._21{width:457.514667pt;}
._2a{width:465.036800pt;}
._39{width:468.992000pt;}
._24{width:475.221333pt;}
._30{width:498.182400pt;}
._2d{width:500.578133pt;}
._3a{width:506.922667pt;}
._36{width:509.354667pt;}
._3b{width:530.645333pt;}
._38{width:544.896000pt;}
._2c{width:559.848533pt;}
._2f{width:574.007467pt;}
._37{width:575.658667pt;}
._3d{width:594.730667pt;}
._18{width:596.480000pt;}
._3c{width:606.506667pt;}
._3f{width:616.064000pt;}
._3e{width:634.965333pt;}
._16{width:838.604267pt;}
._f{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:15.379333pt;}
.y3d{bottom:41.748933pt;}
.y3e{bottom:41.927067pt;}
.y9d{bottom:41.930400pt;}
.y9c{bottom:42.592000pt;}
.y37{bottom:52.510800pt;}
.y3b{bottom:52.617467pt;}
.y36{bottom:68.510800pt;}
.y3a{bottom:68.617467pt;}
.ycc{bottom:76.978667pt;}
.y133{bottom:78.828800pt;}
.y185{bottom:79.848000pt;}
.y18c{bottom:79.976000pt;}
.yef{bottom:82.030000pt;}
.y9b{bottom:82.038000pt;}
.y6d{bottom:82.040667pt;}
.y143{bottom:82.044667pt;}
.y35{bottom:84.510800pt;}
.y39{bottom:84.617467pt;}
.y11e{bottom:90.434133pt;}
.ycb{bottom:91.645333pt;}
.y132{bottom:93.495467pt;}
.y184{bottom:94.514667pt;}
.y18b{bottom:94.642667pt;}
.y9a{bottom:98.706000pt;}
.y6c{bottom:98.708667pt;}
.y142{bottom:98.712667pt;}
.y34{bottom:100.510800pt;}
.y38{bottom:100.617467pt;}
.y11d{bottom:105.100800pt;}
.yca{bottom:106.312000pt;}
.y183{bottom:109.181333pt;}
.y18a{bottom:109.309333pt;}
.y131{bottom:111.927467pt;}
.yee{bottom:115.366000pt;}
.y99{bottom:115.374000pt;}
.y6b{bottom:115.376667pt;}
.y11c{bottom:119.767467pt;}
.y182{bottom:123.848000pt;}
.y189{bottom:123.976000pt;}
.yc9{bottom:124.744000pt;}
.y130{bottom:130.359467pt;}
.y141{bottom:132.026000pt;}
.yed{bottom:132.034000pt;}
.y98{bottom:132.042000pt;}
.y6a{bottom:132.044667pt;}
.y11b{bottom:138.199467pt;}
.y181{bottom:138.514667pt;}
.y188{bottom:138.642667pt;}
.y2b{bottom:141.664933pt;}
.yc8{bottom:143.176000pt;}
.y140{bottom:148.694000pt;}
.yec{bottom:148.702000pt;}
.y97{bottom:148.710000pt;}
.y69{bottom:148.712667pt;}
.y12f{bottom:148.791467pt;}
.y187{bottom:153.309333pt;}
.y11a{bottom:156.631467pt;}
.yc7{bottom:161.608000pt;}
.y13f{bottom:165.362000pt;}
.yeb{bottom:165.370000pt;}
.y96{bottom:165.378000pt;}
.y12e{bottom:167.223467pt;}
.y180{bottom:167.848000pt;}
.y186{bottom:167.976000pt;}
.y119{bottom:175.063467pt;}
.yc6{bottom:180.040000pt;}
.y30{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.y13e{bottom:182.030000pt;}
.yea{bottom:182.038000pt;}
.y68{bottom:182.046000pt;}
.y12d{bottom:185.655467pt;}
.y118{bottom:193.495467pt;}
.y2f{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.yc5{bottom:198.472000pt;}
.y13d{bottom:198.698000pt;}
.ye9{bottom:198.706000pt;}
.y12c{bottom:204.087467pt;}
.y2e{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y117{bottom:211.927467pt;}
.y13c{bottom:215.366000pt;}
.ye8{bottom:215.374000pt;}
.y95{bottom:215.379333pt;}
.yc4{bottom:217.385200pt;}
.y12b{bottom:222.519467pt;}
.y2d{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y116{bottom:230.359467pt;}
.y67{bottom:232.039333pt;}
.ye7{bottom:232.042000pt;}
.y17f{bottom:232.261200pt;}
.yc3{bottom:236.307867pt;}
.y2c{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y12a{bottom:240.951467pt;}
.y17e{bottom:246.927867pt;}
.y13b{bottom:248.702000pt;}
.y66{bottom:248.707333pt;}
.ye6{bottom:248.710000pt;}
.y115{bottom:248.791467pt;}
.yc2{bottom:254.739867pt;}
.y129{bottom:259.383467pt;}
.y17d{bottom:261.594533pt;}
.ybf{bottom:262.067867pt;}
.y94{bottom:265.359333pt;}
.y13a{bottom:265.370000pt;}
.y65{bottom:265.375333pt;}
.ye5{bottom:265.378000pt;}
.y114{bottom:267.223467pt;}
.yc1{bottom:269.406533pt;}
.y17c{bottom:276.261200pt;}
.y128{bottom:277.815467pt;}
.y93{bottom:282.027333pt;}
.ye4{bottom:282.031333pt;}
.y139{bottom:282.038000pt;}
.y64{bottom:282.043333pt;}
.y15d{bottom:282.046000pt;}
.y113{bottom:285.655467pt;}
.yc0{bottom:287.838533pt;}
.y33{bottom:289.309733pt;}
.y127{bottom:296.247467pt;}
.y92{bottom:298.695333pt;}
.ye3{bottom:298.699333pt;}
.y138{bottom:298.706000pt;}
.y15c{bottom:298.707333pt;}
.y63{bottom:298.711333pt;}
.y112{bottom:304.087467pt;}
.ybe{bottom:306.270533pt;}
.y91{bottom:315.363333pt;}
.y137{bottom:315.374000pt;}
.y15b{bottom:315.375333pt;}
.y62{bottom:315.379333pt;}
.y126{bottom:315.651067pt;}
.y111{bottom:322.519467pt;}
.y90{bottom:332.031333pt;}
.y17b{bottom:332.032667pt;}
.ye2{bottom:332.035333pt;}
.y15a{bottom:332.043333pt;}
.y125{bottom:334.083067pt;}
.y110{bottom:340.951467pt;}
.y124{bottom:343.299067pt;}
.ybd{bottom:348.663333pt;}
.y8f{bottom:348.699333pt;}
.y17a{bottom:348.700667pt;}
.ye1{bottom:348.703333pt;}
.y61{bottom:348.707333pt;}
.y136{bottom:348.710000pt;}
.y159{bottom:348.711333pt;}
.y10f{bottom:359.383467pt;}
.ybc{bottom:365.331333pt;}
.y8e{bottom:365.367333pt;}
.y179{bottom:365.368667pt;}
.ye0{bottom:365.371333pt;}
.y60{bottom:365.375333pt;}
.y135{bottom:365.378000pt;}
.y123{bottom:370.947067pt;}
.y10e{bottom:377.815467pt;}
.y2a{bottom:379.977600pt;}
.ybb{bottom:381.999333pt;}
.y8d{bottom:382.035333pt;}
.y178{bottom:382.036667pt;}
.ydf{bottom:382.039333pt;}
.y158{bottom:382.040667pt;}
.y5f{bottom:382.043333pt;}
.y134{bottom:382.046000pt;}
.y122{bottom:385.613733pt;}
.y10d{bottom:396.247467pt;}
.y29{bottom:397.305600pt;}
.y8c{bottom:398.703333pt;}
.y177{bottom:398.704667pt;}
.yde{bottom:398.707333pt;}
.y5e{bottom:398.711333pt;}
.y28{bottom:410.635200pt;}
.yba{bottom:415.335333pt;}
.y5d{bottom:415.368667pt;}
.y8b{bottom:415.371333pt;}
.y176{bottom:415.372667pt;}
.ydd{bottom:415.375333pt;}
.y157{bottom:415.376667pt;}
.y10c{bottom:415.651067pt;}
.yb9{bottom:432.003333pt;}
.y5c{bottom:432.036667pt;}
.y8a{bottom:432.039333pt;}
.y175{bottom:432.040667pt;}
.ydc{bottom:432.043333pt;}
.y156{bottom:432.044667pt;}
.y10b{bottom:434.083067pt;}
.y121{bottom:442.941733pt;}
.yb8{bottom:448.671333pt;}
.y155{bottom:448.703333pt;}
.y5b{bottom:448.704667pt;}
.y89{bottom:448.707333pt;}
.y174{bottom:448.708667pt;}
.ydb{bottom:448.711333pt;}
.y10a{bottom:452.515067pt;}
.y20{bottom:456.677733pt;}
.y120{bottom:457.608400pt;}
.yb7{bottom:465.339333pt;}
.yda{bottom:465.367333pt;}
.y154{bottom:465.371333pt;}
.y5a{bottom:465.372667pt;}
.y88{bottom:465.375333pt;}
.y173{bottom:465.376667pt;}
.y1f{bottom:470.009733pt;}
.y109{bottom:470.947067pt;}
.y1ae{bottom:475.613733pt;}
.yb6{bottom:482.007333pt;}
.yd9{bottom:482.035333pt;}
.y153{bottom:482.039333pt;}
.y59{bottom:482.040667pt;}
.y87{bottom:482.043333pt;}
.y172{bottom:482.044667pt;}
.y1e{bottom:483.341733pt;}
.y108{bottom:485.613733pt;}
.y1ad{bottom:490.280400pt;}
.y1d{bottom:496.673733pt;}
.yb5{bottom:498.675333pt;}
.yd8{bottom:498.703333pt;}
.y58{bottom:498.708667pt;}
.y86{bottom:498.711333pt;}
.y171{bottom:498.712667pt;}
.y1ac{bottom:504.947067pt;}
.y1c{bottom:510.005733pt;}
.yb4{bottom:515.343333pt;}
.y85{bottom:515.359333pt;}
.yd7{bottom:515.371333pt;}
.y152{bottom:515.375333pt;}
.y57{bottom:515.376667pt;}
.y1ab{bottom:519.613733pt;}
.y1b{bottom:523.337733pt;}
.yd0{bottom:532.011333pt;}
.y84{bottom:532.027333pt;}
.y151{bottom:532.043333pt;}
.y56{bottom:532.044667pt;}
.y170{bottom:532.046000pt;}
.y1aa{bottom:534.280400pt;}
.y1a{bottom:536.669733pt;}
.y107{bottom:540.770267pt;}
.yb3{bottom:548.679333pt;}
.y83{bottom:548.695333pt;}
.y55{bottom:548.706000pt;}
.yd6{bottom:548.707333pt;}
.y150{bottom:548.711333pt;}
.y1a9{bottom:548.947067pt;}
.y19{bottom:550.001733pt;}
.y106{bottom:555.436933pt;}
.y18{bottom:563.333733pt;}
.y1a8{bottom:563.613733pt;}
.yb2{bottom:565.347333pt;}
.y82{bottom:565.363333pt;}
.y54{bottom:565.374000pt;}
.yd5{bottom:565.375333pt;}
.y14f{bottom:565.378000pt;}
.y105{bottom:570.103600pt;}
.y17{bottom:576.665733pt;}
.y1a7{bottom:578.280400pt;}
.yb1{bottom:582.015333pt;}
.y81{bottom:582.031333pt;}
.y14e{bottom:582.035333pt;}
.y16f{bottom:582.039333pt;}
.y53{bottom:582.042000pt;}
.yd4{bottom:582.043333pt;}
.y104{bottom:584.770267pt;}
.y16{bottom:589.997733pt;}
.y1a6{bottom:592.947067pt;}
.yb0{bottom:598.683333pt;}
.y80{bottom:598.699333pt;}
.y14d{bottom:598.703333pt;}
.y16e{bottom:598.707333pt;}
.y52{bottom:598.710000pt;}
.yd3{bottom:598.711333pt;}
.y15{bottom:603.329733pt;}
.y103{bottom:604.173200pt;}
.y1a5{bottom:607.613733pt;}
.yaf{bottom:615.351333pt;}
.y7f{bottom:615.367333pt;}
.y14c{bottom:615.371333pt;}
.y16d{bottom:615.375333pt;}
.y51{bottom:615.378000pt;}
.yd2{bottom:615.379333pt;}
.y14{bottom:616.661733pt;}
.y1a4{bottom:622.280400pt;}
.y102{bottom:623.576267pt;}
.y13{bottom:629.993733pt;}
.yae{bottom:632.019333pt;}
.y7e{bottom:632.035333pt;}
.y14b{bottom:632.039333pt;}
.y16c{bottom:632.043333pt;}
.y50{bottom:632.046000pt;}
.y1a3{bottom:636.947067pt;}
.y101{bottom:642.979200pt;}
.y12{bottom:643.325733pt;}
.ycf{bottom:648.687333pt;}
.y7d{bottom:648.703333pt;}
.y14a{bottom:648.707333pt;}
.y16b{bottom:648.711333pt;}
.yd1{bottom:648.712667pt;}
.y1a2{bottom:651.613733pt;}
.y11{bottom:656.657733pt;}
.y100{bottom:662.382267pt;}
.yad{bottom:665.355333pt;}
.y7c{bottom:665.371333pt;}
.y149{bottom:665.375333pt;}
.y4f{bottom:665.376667pt;}
.y16a{bottom:665.379333pt;}
.y1a1{bottom:666.280400pt;}
.y10{bottom:669.989733pt;}
.y1a0{bottom:680.947067pt;}
.yff{bottom:681.785200pt;}
.yac{bottom:682.023333pt;}
.y7b{bottom:682.039333pt;}
.y148{bottom:682.043333pt;}
.y4e{bottom:682.044667pt;}
.yf{bottom:683.321733pt;}
.y19f{bottom:695.613733pt;}
.ye{bottom:696.653733pt;}
.yab{bottom:698.691333pt;}
.y169{bottom:698.698000pt;}
.y4d{bottom:698.707333pt;}
.yfe{bottom:701.188133pt;}
.yd{bottom:709.985733pt;}
.y19e{bottom:710.280400pt;}
.yaa{bottom:715.359333pt;}
.y147{bottom:715.364667pt;}
.y168{bottom:715.366000pt;}
.y4c{bottom:715.375333pt;}
.yfd{bottom:720.591200pt;}
.yc{bottom:723.317733pt;}
.y19d{bottom:724.947067pt;}
.ya9{bottom:732.027333pt;}
.y146{bottom:732.032667pt;}
.y167{bottom:732.034000pt;}
.y4b{bottom:732.043333pt;}
.yb{bottom:736.649733pt;}
.y19c{bottom:739.613733pt;}
.yfc{bottom:739.994533pt;}
.ya8{bottom:748.695333pt;}
.y145{bottom:748.700667pt;}
.y166{bottom:748.702000pt;}
.y4a{bottom:748.711333pt;}
.ya{bottom:749.981733pt;}
.y19b{bottom:754.280400pt;}
.yfb{bottom:758.426533pt;}
.y9{bottom:763.313733pt;}
.yce{bottom:765.363333pt;}
.y7a{bottom:765.368667pt;}
.y165{bottom:765.370000pt;}
.y49{bottom:765.372667pt;}
.y19a{bottom:768.947067pt;}
.y8{bottom:776.645733pt;}
.yfa{bottom:777.829467pt;}
.ya7{bottom:782.031333pt;}
.y79{bottom:782.036667pt;}
.y164{bottom:782.038000pt;}
.y48{bottom:782.040667pt;}
.y199{bottom:783.613733pt;}
.y7{bottom:789.977733pt;}
.yf9{bottom:797.232533pt;}
.y198{bottom:798.280400pt;}
.ya6{bottom:798.699333pt;}
.y78{bottom:798.704667pt;}
.y163{bottom:798.706000pt;}
.y47{bottom:798.708667pt;}
.y6{bottom:803.309733pt;}
.y197{bottom:812.947067pt;}
.ya5{bottom:815.367333pt;}
.y77{bottom:815.372667pt;}
.y162{bottom:815.374000pt;}
.yf8{bottom:816.635467pt;}
.y21{bottom:820.701600pt;}
.y196{bottom:827.613733pt;}
.ya4{bottom:832.035333pt;}
.y76{bottom:832.040667pt;}
.y161{bottom:832.042000pt;}
.y46{bottom:832.044667pt;}
.yf7{bottom:836.038400pt;}
.y195{bottom:842.280400pt;}
.ya3{bottom:848.703333pt;}
.y45{bottom:848.706000pt;}
.y75{bottom:848.708667pt;}
.y160{bottom:848.710000pt;}
.yf6{bottom:855.441467pt;}
.y194{bottom:856.947067pt;}
.ya2{bottom:865.371333pt;}
.y44{bottom:865.374000pt;}
.y74{bottom:865.376667pt;}
.y15f{bottom:865.378000pt;}
.y193{bottom:871.613733pt;}
.y27{bottom:873.309600pt;}
.yf5{bottom:874.844400pt;}
.ya1{bottom:882.039333pt;}
.y43{bottom:882.042000pt;}
.y73{bottom:882.044667pt;}
.y15e{bottom:882.046000pt;}
.y192{bottom:886.280400pt;}
.yf4{bottom:894.247467pt;}
.y72{bottom:898.700667pt;}
.ya0{bottom:898.707333pt;}
.y42{bottom:898.710000pt;}
.y144{bottom:898.712667pt;}
.y191{bottom:900.947067pt;}
.y32{bottom:908.178400pt;}
.yf3{bottom:913.651067pt;}
.y71{bottom:915.368667pt;}
.y9f{bottom:915.375333pt;}
.y41{bottom:915.378000pt;}
.y190{bottom:915.613733pt;}
.y31{bottom:927.378400pt;}
.y18f{bottom:930.280400pt;}
.y70{bottom:932.036667pt;}
.ycd{bottom:932.043333pt;}
.y40{bottom:932.046000pt;}
.yf2{bottom:932.083067pt;}
.y18e{bottom:944.947067pt;}
.y6f{bottom:948.704667pt;}
.y9e{bottom:948.711333pt;}
.yf1{bottom:950.515067pt;}
.y23{bottom:954.718533pt;}
.y18d{bottom:959.613733pt;}
.y26{bottom:962.610667pt;}
.y6e{bottom:965.372667pt;}
.y3f{bottom:965.379333pt;}
.yf0{bottom:968.947067pt;}
.y11f{bottom:974.280400pt;}
.y25{bottom:975.944000pt;}
.y22{bottom:983.518533pt;}
.y24{bottom:989.277333pt;}
.h9{height:24.461719pt;}
.ha{height:24.478125pt;}
.hf{height:30.506667pt;}
.h2{height:31.062500pt;}
.h1f{height:31.082350pt;}
.h3{height:31.083333pt;}
.h22{height:31.083417pt;}
.h20{height:31.084483pt;}
.h21{height:31.085017pt;}
.he{height:31.658667pt;}
.hd{height:32.298667pt;}
.h1c{height:33.043950pt;}
.h11{height:34.945312pt;}
.h4{height:34.968750pt;}
.h10{height:34.985846pt;}
.h1b{height:37.591712pt;}
.h7{height:39.573333pt;}
.hc{height:40.461592pt;}
.h8{height:40.462125pt;}
.h24{height:40.467458pt;}
.h13{height:40.472385pt;}
.h16{height:40.472792pt;}
.h26{height:40.478125pt;}
.h15{height:40.483458pt;}
.h19{height:40.488385pt;}
.h14{height:40.488792pt;}
.h18{height:40.493719pt;}
.h25{height:40.499458pt;}
.h17{height:40.504792pt;}
.h1d{height:40.510125pt;}
.h1e{height:40.520792pt;}
.h1a{height:40.542125pt;}
.h5{height:41.994792pt;}
.h27{height:46.170667pt;}
.hb{height:48.448000pt;}
.h12{height:50.368000pt;}
.h23{height:67.947333pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x13{left:79.608000pt;}
.x19{left:81.423867pt;}
.x29{left:83.646000pt;}
.x27{left:85.203333pt;}
.x18{left:91.586533pt;}
.x14{left:95.608000pt;}
.x2d{left:99.590533pt;}
.x2b{left:103.370000pt;}
.x10{left:123.857067pt;}
.x28{left:142.131333pt;}
.x9{left:196.139467pt;}
.x2a{left:224.485200pt;}
.xf{left:235.301867pt;}
.x5{left:240.587467pt;}
.x3{left:248.012267pt;}
.x25{left:251.109200pt;}
.x1b{left:252.613200pt;}
.x7{left:257.782133pt;}
.x4{left:263.276267pt;}
.xe{left:273.435200pt;}
.x1a{left:277.103867pt;}
.xd{left:286.480533pt;}
.x8{left:302.838133pt;}
.x6{left:317.046133pt;}
.xa{left:323.595467pt;}
.x1d{left:327.813200pt;}
.x1c{left:338.351867pt;}
.x17{left:401.177867pt;}
.x11{left:404.970933pt;}
.xb{left:409.430800pt;}
.x1e{left:414.735867pt;}
.x1{left:417.573467pt;}
.x15{left:421.420000pt;}
.xc{left:427.238800pt;}
.x26{left:433.633733pt;}
.x16{left:437.417333pt;}
.x2e{left:441.638533pt;}
.x2c{left:445.418000pt;}
.x20{left:498.693200pt;}
.x1f{left:512.197200pt;}
.x21{left:581.338533pt;}
.x22{left:585.626533pt;}
.x24{left:671.813200pt;}
.x23{left:677.605200pt;}
}




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