
    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_ca8ca80aa820c821e234bbf4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_55d632c5848b76f2d16dec1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_e29adb95b3afe46c4c59dc80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_989b45a0d95748458a388d95.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_95f175e14a3b5325c04ba789.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_15571d35099c18d0d113a616.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_9b5c384f1e2996823885dd57.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b26133c029d241ca36107d71.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cd91a7c5e96318e99ab59bca.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_3395c7ea967fdf936119053e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_4e4b8a4d86597363468b9e7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_3e9912713bd1a5635d24e0c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-78.000000px;}
.v1{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.120000px;}
.v4{vertical-align:27.000000px;}
.ls3d{letter-spacing:-1.632000px;}
.ls44{letter-spacing:-1.500000px;}
.ls35{letter-spacing:-0.840000px;}
.ls11{letter-spacing:-0.690000px;}
.ls15{letter-spacing:-0.642000px;}
.ls1e{letter-spacing:-0.636000px;}
.ls20{letter-spacing:-0.630000px;}
.ls3b{letter-spacing:-0.618000px;}
.ls32{letter-spacing:-0.588000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.498000px;}
.ls16{letter-spacing:-0.462000px;}
.ls2b{letter-spacing:-0.454200px;}
.ls2c{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.306000px;}
.ls29{letter-spacing:-0.300000px;}
.ls7{letter-spacing:-0.282000px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.150000px;}
.ls48{letter-spacing:-0.138000px;}
.ls9{letter-spacing:-0.132000px;}
.ls28{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.114000px;}
.ls33{letter-spacing:-0.070200px;}
.ls0{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.084000px;}
.ls25{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.132000px;}
.ls17{letter-spacing:0.168000px;}
.ls38{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.240000px;}
.ls3f{letter-spacing:0.252000px;}
.ls23{letter-spacing:0.300000px;}
.ls39{letter-spacing:0.312000px;}
.ls1a{letter-spacing:0.354000px;}
.ls8{letter-spacing:0.390000px;}
.ls18{letter-spacing:0.414000px;}
.ls4{letter-spacing:0.450000px;}
.ls2d{letter-spacing:0.510000px;}
.ls3{letter-spacing:0.558000px;}
.ls12{letter-spacing:0.570000px;}
.ls2{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.582000px;}
.ls26{letter-spacing:0.678000px;}
.ls2f{letter-spacing:0.690000px;}
.ls34{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.750000px;}
.lse{letter-spacing:0.804000px;}
.ls5{letter-spacing:0.930000px;}
.ls1{letter-spacing:0.936000px;}
.ls14{letter-spacing:0.984000px;}
.ls43{letter-spacing:1.002000px;}
.ls40{letter-spacing:1.038000px;}
.ls2a{letter-spacing:1.206000px;}
.lsd{letter-spacing:1.368000px;}
.ls27{letter-spacing:1.500000px;}
.ls42{letter-spacing:1.572000px;}
.ls10{letter-spacing:1.632000px;}
.ls2e{letter-spacing:1.644000px;}
.ls3e{letter-spacing:1.752000px;}
.ls41{letter-spacing:1.812000px;}
.ls21{letter-spacing:2.070000px;}
.ls36{letter-spacing:2.130000px;}
.ls47{letter-spacing:2.304000px;}
.ls1c{letter-spacing:3.084000px;}
.ls30{letter-spacing:4.584000px;}
.lsb{letter-spacing:6.060000px;}
.ls46{letter-spacing:6.204000px;}
.ls3a{letter-spacing:9.144000px;}
.ls1b{letter-spacing:13.584000px;}
.ls31{letter-spacing:198.150000px;}
.ls3c{letter-spacing:846.102000px;}
.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;}
}
.ws2b{word-spacing:-35.040000px;}
.ws2c{word-spacing:-16.860000px;}
.ws2a{word-spacing:-16.680000px;}
.ws16{word-spacing:-16.416000px;}
.ws1{word-spacing:-16.272000px;}
.ws32{word-spacing:-15.918000px;}
.wsd{word-spacing:-15.768000px;}
.ws29{word-spacing:-15.498000px;}
.ws17{word-spacing:-15.486000px;}
.wsa{word-spacing:-15.330000px;}
.ws6{word-spacing:-15.306000px;}
.wsc{word-spacing:-15.270000px;}
.ws15{word-spacing:-15.084000px;}
.ws10{word-spacing:-15.048000px;}
.ws4{word-spacing:-14.916000px;}
.ws7{word-spacing:-14.802000px;}
.wsf{word-spacing:-14.784000px;}
.ws33{word-spacing:-14.778000px;}
.ws8{word-spacing:-14.766000px;}
.ws2{word-spacing:-14.736000px;}
.ws3{word-spacing:-14.634000px;}
.ws12{word-spacing:-14.610000px;}
.wse{word-spacing:-14.454000px;}
.wsb{word-spacing:-14.418000px;}
.ws1f{word-spacing:-14.328000px;}
.ws31{word-spacing:-14.298000px;}
.ws14{word-spacing:-14.286000px;}
.ws11{word-spacing:-14.280000px;}
.ws9{word-spacing:-14.274000px;}
.ws13{word-spacing:-13.560000px;}
.ws18{word-spacing:-13.260000px;}
.ws23{word-spacing:-12.720000px;}
.ws24{word-spacing:-12.237900px;}
.ws25{word-spacing:-12.204000px;}
.ws5{word-spacing:-9.492000px;}
.ws0{word-spacing:0.000000px;}
.ws30{word-spacing:60.781200px;}
.ws2e{word-spacing:60.858000px;}
.ws1e{word-spacing:66.504000px;}
.ws22{word-spacing:66.548850px;}
.ws1b{word-spacing:66.668850px;}
.ws28{word-spacing:66.684000px;}
.ws1c{word-spacing:110.822700px;}
.ws20{word-spacing:121.128000px;}
.ws26{word-spacing:121.728000px;}
.ws19{word-spacing:122.148000px;}
.ws1d{word-spacing:875.022000px;}
.ws2d{word-spacing:893.394000px;}
.ws2f{word-spacing:894.642000px;}
.ws21{word-spacing:909.942000px;}
.ws27{word-spacing:912.162000px;}
.ws1a{word-spacing:913.602000px;}
._4{margin-left:-6.276000px;}
._16{margin-left:-3.870000px;}
._2{margin-left:-2.868000px;}
._1{margin-left:-1.080000px;}
._0{width:1.296000px;}
._e{width:2.622000px;}
._3{width:3.624000px;}
._18{width:4.644000px;}
._a{width:5.898000px;}
._b{width:7.194000px;}
._c{width:8.448000px;}
._d{width:9.612000px;}
._14{width:11.022000px;}
._13{width:12.036000px;}
._17{width:13.266000px;}
._28{width:15.918000px;}
._f{width:16.938000px;}
._1e{width:18.084000px;}
._11{width:19.098000px;}
._10{width:20.922000px;}
._44{width:22.026000px;}
._1a{width:23.034000px;}
._1b{width:24.090000px;}
._1d{width:25.278000px;}
._1c{width:26.382000px;}
._33{width:27.486000px;}
._9{width:28.512000px;}
._42{width:29.658000px;}
._30{width:31.350000px;}
._47{width:33.882000px;}
._34{width:35.598000px;}
._35{width:36.870000px;}
._2f{width:48.198000px;}
._41{width:49.920000px;}
._40{width:51.660000px;}
._4d{width:53.616000px;}
._4e{width:54.672000px;}
._4f{width:56.130000px;}
._43{width:57.774000px;}
._31{width:60.018000px;}
._32{width:61.572000px;}
._2a{width:70.446000px;}
._6{width:72.462000px;}
._15{width:73.464000px;}
._3e{width:76.254000px;}
._3f{width:77.688000px;}
._36{width:81.576000px;}
._37{width:82.632000px;}
._4c{width:84.090000px;}
._38{width:85.092000px;}
._3a{width:87.078000px;}
._39{width:88.308000px;}
._3b{width:89.814000px;}
._2b{width:92.928000px;}
._2c{width:94.338000px;}
._2e{width:96.564000px;}
._49{width:111.996000px;}
._48{width:113.124000px;}
._3c{width:143.022000px;}
._3d{width:144.654000px;}
._45{width:146.382000px;}
._46{width:147.534000px;}
._29{width:150.066000px;}
._24{width:164.492700px;}
._4b{width:170.280000px;}
._4a{width:171.294000px;}
._1f{width:174.696000px;}
._21{width:176.052000px;}
._7{width:194.304000px;}
._2d{width:195.966000px;}
._22{width:198.150000px;}
._19{width:201.234000px;}
._8{width:205.272000px;}
._12{width:259.734000px;}
._25{width:473.824950px;}
._26{width:493.842000px;}
._27{width:495.666000px;}
._20{width:496.806000px;}
._5{width:848.178000px;}
._23{width:2750.730000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:54.150000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:4.485000px;}
.yd9{bottom:4.500000px;}
.yf4{bottom:4.530000px;}
.yfb{bottom:4.545000px;}
.yf0{bottom:6.000000px;}
.y118{bottom:6.375000px;}
.y151{bottom:17.295000px;}
.y111{bottom:17.325000px;}
.y13b{bottom:17.400000px;}
.y17f{bottom:17.475000px;}
.y16d{bottom:17.550000px;}
.y191{bottom:17.655000px;}
.yee{bottom:27.750000px;}
.y116{bottom:28.875000px;}
.y14f{bottom:44.550000px;}
.y10f{bottom:46.080000px;}
.y139{bottom:46.170000px;}
.y16b{bottom:46.350000px;}
.y17d{bottom:47.370000px;}
.y18f{bottom:47.550000px;}
.y147{bottom:47.775000px;}
.y177{bottom:64.950000px;}
.y187{bottom:65.100000px;}
.y14e{bottom:70.725000px;}
.y10e{bottom:72.255000px;}
.y138{bottom:72.375000px;}
.y16a{bottom:72.525000px;}
.y148{bottom:88.320000px;}
.y107{bottom:89.850000px;}
.y130{bottom:89.925000px;}
.y160{bottom:90.075000px;}
.y178{bottom:98.475000px;}
.y110{bottom:101.025000px;}
.y17e{bottom:103.725000px;}
.y188{bottom:106.905000px;}
.y12e{bottom:113.662500px;}
.y9e{bottom:114.037500px;}
.y161{bottom:114.825000px;}
.yd2{bottom:115.537500px;}
.y108{bottom:115.950000px;}
.y15e{bottom:117.412500px;}
.yc0{bottom:120.787500px;}
.y131{bottom:121.275000px;}
.y84{bottom:122.662500px;}
.y145{bottom:123.037500px;}
.yea{bottom:125.287500px;}
.y1b0{bottom:126.412500px;}
.y75{bottom:127.162500px;}
.y149{bottom:128.850000px;}
.y179{bottom:132.030000px;}
.y150{bottom:133.545000px;}
.y162{bottom:139.530000px;}
.y37{bottom:139.912500px;}
.y13a{bottom:141.900000px;}
.y109{bottom:142.050000px;}
.y12d{bottom:144.037500px;}
.y9d{bottom:144.412500px;}
.yd1{bottom:145.912500px;}
.y5b{bottom:147.412500px;}
.y15d{bottom:147.787500px;}
.y189{bottom:148.695000px;}
.y190{bottom:149.400000px;}
.ybb{bottom:150.780000px;}
.y175{bottom:151.155000px;}
.y132{bottom:152.625000px;}
.y83{bottom:152.670000px;}
.yb4{bottom:153.045000px;}
.y144{bottom:153.420000px;}
.ye9{bottom:155.295000px;}
.y1af{bottom:156.795000px;}
.y105{bottom:157.170000px;}
.y74{bottom:157.530000px;}
.y163{bottom:164.250000px;}
.y16c{bottom:165.600000px;}
.y10a{bottom:168.195000px;}
.y14a{bottom:169.395000px;}
.y36{bottom:170.295000px;}
.y12c{bottom:174.405000px;}
.y9c{bottom:174.780000px;}
.yd0{bottom:175.920000px;}
.y5a{bottom:177.780000px;}
.y15c{bottom:178.155000px;}
.yba{bottom:181.155000px;}
.y82{bottom:183.045000px;}
.y143{bottom:183.420000px;}
.y133{bottom:183.975000px;}
.yb3{bottom:184.575000px;}
.ye8{bottom:185.700000px;}
.y1ae{bottom:186.825000px;}
.y104{bottom:187.575000px;}
.y73{bottom:187.950000px;}
.y164{bottom:188.970000px;}
.y18a{bottom:190.470000px;}
.y17{bottom:191.325000px;}
.y10b{bottom:194.280000px;}
.y17a{bottom:199.155000px;}
.y35{bottom:200.325000px;}
.y12b{bottom:204.450000px;}
.y9b{bottom:204.825000px;}
.ycf{bottom:206.325000px;}
.y59{bottom:207.825000px;}
.y15b{bottom:208.200000px;}
.y14b{bottom:209.895000px;}
.yb9{bottom:211.575000px;}
.y81{bottom:213.075000px;}
.y165{bottom:213.675000px;}
.y142{bottom:213.825000px;}
.y134{bottom:215.325000px;}
.ye7{bottom:215.700000px;}
.y1ad{bottom:217.200000px;}
.yb2{bottom:217.575000px;}
.y72{bottom:217.950000px;}
.y10c{bottom:220.425000px;}
.y34{bottom:230.700000px;}
.y18b{bottom:232.230000px;}
.y17b{bottom:232.725000px;}
.y12a{bottom:234.825000px;}
.y16{bottom:235.200000px;}
.yce{bottom:236.700000px;}
.y58{bottom:238.200000px;}
.y166{bottom:238.425000px;}
.y15a{bottom:238.575000px;}
.yb8{bottom:241.575000px;}
.y80{bottom:243.450000px;}
.y9a{bottom:245.325000px;}
.yb1{bottom:246.075000px;}
.y10d{bottom:246.525000px;}
.y135{bottom:246.720000px;}
.y1ac{bottom:247.200000px;}
.y103{bottom:247.950000px;}
.y71{bottom:248.325000px;}
.y14c{bottom:250.425000px;}
.y33{bottom:260.700000px;}
.y167{bottom:263.145000px;}
.y17c{bottom:266.250000px;}
.ycd{bottom:266.700000px;}
.y129{bottom:267.825000px;}
.y57{bottom:268.200000px;}
.y159{bottom:268.575000px;}
.yb7{bottom:271.950000px;}
.y7f{bottom:273.450000px;}
.y18c{bottom:274.005000px;}
.yb0{bottom:274.575000px;}
.ye6{bottom:276.075000px;}
.y141{bottom:276.450000px;}
.y1ab{bottom:277.575000px;}
.y136{bottom:278.070000px;}
.y70{bottom:278.325000px;}
.y15{bottom:279.075000px;}
.y128{bottom:287.325000px;}
.y168{bottom:287.850000px;}
.y14d{bottom:290.970000px;}
.y32{bottom:291.075000px;}
.y140{bottom:293.325000px;}
.y146{bottom:294.375000px;}
.ycc{bottom:297.075000px;}
.y56{bottom:298.575000px;}
.y102{bottom:300.825000px;}
.y99{bottom:301.950000px;}
.y7e{bottom:303.855000px;}
.yaf{bottom:304.620000px;}
.y12f{bottom:304.875000px;}
.y1aa{bottom:307.995000px;}
.y6f{bottom:308.745000px;}
.y137{bottom:309.405000px;}
.ye5{bottom:309.495000px;}
.y169{bottom:312.570000px;}
.y18d{bottom:315.825000px;}
.y31{bottom:321.120000px;}
.y101{bottom:321.495000px;}
.y14{bottom:322.995000px;}
.ycb{bottom:327.120000px;}
.y55{bottom:328.995000px;}
.y158{bottom:331.620000px;}
.y98{bottom:332.370000px;}
.y174{bottom:333.120000px;}
.y7d{bottom:334.245000px;}
.yae{bottom:334.995000px;}
.y1a9{bottom:337.995000px;}
.y6e{bottom:338.745000px;}
.ye4{bottom:339.870000px;}
.y100{bottom:342.120000px;}
.y157{bottom:348.495000px;}
.y15f{bottom:348.750000px;}
.y30{bottom:351.495000px;}
.y173{bottom:352.995000px;}
.yca{bottom:357.495000px;}
.y18e{bottom:357.600000px;}
.y54{bottom:358.995000px;}
.y106{bottom:359.625000px;}
.y97{bottom:362.370000px;}
.y7c{bottom:364.245000px;}
.yad{bottom:364.995000px;}
.y13{bottom:366.870000px;}
.y172{bottom:367.245000px;}
.y176{bottom:367.500000px;}
.y192{bottom:367.995000px;}
.y1a8{bottom:368.370000px;}
.y6d{bottom:369.120000px;}
.ye3{bottom:369.870000px;}
.y2f{bottom:381.870000px;}
.y53{bottom:389.370000px;}
.y185{bottom:391.995000px;}
.y96{bottom:392.745000px;}
.y7b{bottom:394.620000px;}
.yac{bottom:395.370000px;}
.yc9{bottom:397.620000px;}
.y1a7{bottom:398.370000px;}
.y6c{bottom:399.495000px;}
.ye2{bottom:409.995000px;}
.y12{bottom:411.120000px;}
.y2e{bottom:411.870000px;}
.y184{bottom:412.620000px;}
.y52{bottom:419.370000px;}
.y95{bottom:423.150000px;}
.y7a{bottom:424.650000px;}
.yab{bottom:425.400000px;}
.y1a6{bottom:428.775000px;}
.y6b{bottom:429.525000px;}
.y183{bottom:433.275000px;}
.yc8{bottom:438.150000px;}
.y2d{bottom:442.275000px;}
.y51{bottom:449.775000px;}
.ye1{bottom:451.650000px;}
.y94{bottom:453.150000px;}
.y182{bottom:454.275000px;}
.y11{bottom:455.025000px;}
.yaa{bottom:455.775000px;}
.yc7{bottom:458.025000px;}
.y1a5{bottom:458.775000px;}
.y6a{bottom:459.900000px;}
.y186{bottom:468.750000px;}
.ye0{bottom:471.525000px;}
.yc6{bottom:476.400000px;}
.y50{bottom:479.775000px;}
.y2c{bottom:482.400000px;}
.y93{bottom:483.525000px;}
.y79{bottom:485.025000px;}
.ya9{bottom:486.150000px;}
.y1a4{bottom:489.150000px;}
.y69{bottom:489.900000px;}
.y10{bottom:498.900000px;}
.yc5{bottom:499.275000px;}
.ydf{bottom:504.900000px;}
.y4f{bottom:510.150000px;}
.y92{bottom:513.525000px;}
.ya8{bottom:516.150000px;}
.y1a3{bottom:519.525000px;}
.y68{bottom:520.275000px;}
.y2b{bottom:524.775000px;}
.y78{bottom:525.525000px;}
.yde{bottom:528.900000px;}
.y4e{bottom:540.570000px;}
.yf{bottom:542.820000px;}
.y91{bottom:543.945000px;}
.ya7{bottom:546.570000px;}
.y1a2{bottom:549.570000px;}
.y67{bottom:550.320000px;}
.ydd{bottom:552.945000px;}
.y77{bottom:554.070000px;}
.y2a{bottom:566.820000px;}
.y4d{bottom:570.570000px;}
.y90{bottom:573.945000px;}
.ya6{bottom:576.570000px;}
.ydc{bottom:576.945000px;}
.y1a1{bottom:579.945000px;}
.y66{bottom:580.695000px;}
.y76{bottom:582.570000px;}
.ye{bottom:586.695000px;}
.y29{bottom:597.195000px;}
.y4c{bottom:600.945000px;}
.y8f{bottom:604.320000px;}
.ya5{bottom:606.945000px;}
.y1a0{bottom:609.945000px;}
.y65{bottom:611.070000px;}
.y13f{bottom:624.570000px;}
.ydb{bottom:624.945000px;}
.y28{bottom:627.195000px;}
.yd{bottom:630.945000px;}
.y8e{bottom:634.695000px;}
.ya4{bottom:636.945000px;}
.y19f{bottom:640.320000px;}
.y64{bottom:641.070000px;}
.y13e{bottom:642.945000px;}
.yff{bottom:645.570000px;}
.yda{bottom:648.945000px;}
.y1b3{bottom:650.445000px;}
.y127{bottom:653.445000px;}
.y27{bottom:657.570000px;}
.y4b{bottom:661.350000px;}
.yfe{bottom:663.975000px;}
.y8d{bottom:664.725000px;}
.ya3{bottom:667.350000px;}
.y19e{bottom:670.350000px;}
.y63{bottom:671.475000px;}
.y171{bottom:672.225000px;}
.yd8{bottom:673.725000px;}
.yc{bottom:674.850000px;}
.y13d{bottom:676.350000px;}
.y1b2{bottom:680.850000px;}
.y126{bottom:686.850000px;}
.y26{bottom:687.975000px;}
.y170{bottom:689.475000px;}
.y4a{bottom:691.350000px;}
.y8c{bottom:695.100000px;}
.yfd{bottom:696.975000px;}
.ya2{bottom:697.725000px;}
.y1b1{bottom:700.350000px;}
.y156{bottom:700.725000px;}
.y62{bottom:701.475000px;}
.y13c{bottom:703.350000px;}
.y125{bottom:704.850000px;}
.y16f{bottom:706.725000px;}
.yd7{bottom:716.475000px;}
.y25{bottom:717.975000px;}
.yb{bottom:718.725000px;}
.y155{bottom:719.100000px;}
.y49{bottom:721.725000px;}
.y8b{bottom:725.100000px;}
.y124{bottom:725.850000px;}
.ya1{bottom:727.725000px;}
.y19d{bottom:731.100000px;}
.y61{bottom:731.850000px;}
.y16e{bottom:733.350000px;}
.yfc{bottom:735.975000px;}
.y123{bottom:746.475000px;}
.y24{bottom:748.350000px;}
.y48{bottom:751.725000px;}
.y154{bottom:752.475000px;}
.y8a{bottom:755.475000px;}
.ya0{bottom:758.100000px;}
.y19c{bottom:761.100000px;}
.y60{bottom:761.850000px;}
.ya{bottom:762.600000px;}
.y122{bottom:764.100000px;}
.y153{bottom:770.475000px;}
.yfa{bottom:772.725000px;}
.y23{bottom:778.380000px;}
.y47{bottom:782.130000px;}
.y121{bottom:784.380000px;}
.y89{bottom:785.505000px;}
.y9f{bottom:789.630000px;}
.y152{bottom:791.130000px;}
.y19b{bottom:791.520000px;}
.y5f{bottom:792.255000px;}
.yf9{bottom:792.630000px;}
.yc2{bottom:795.630000px;}
.y120{bottom:804.255000px;}
.y9{bottom:806.505000px;}
.y22{bottom:808.755000px;}
.y46{bottom:812.505000px;}
.yf8{bottom:812.880000px;}
.y88{bottom:815.880000px;}
.y19a{bottom:821.505000px;}
.y5e{bottom:822.255000px;}
.yc1{bottom:824.130000px;}
.y11f{bottom:824.505000px;}
.yb6{bottom:826.005000px;}
.yf7{bottom:833.130000px;}
.y21{bottom:838.755000px;}
.y45{bottom:842.505000px;}
.y11e{bottom:844.755000px;}
.y87{bottom:846.255000px;}
.y8{bottom:850.380000px;}
.y199{bottom:851.880000px;}
.y5d{bottom:852.630000px;}
.yf6{bottom:853.005000px;}
.yb5{bottom:854.505000px;}
.y11d{bottom:864.630000px;}
.y181{bottom:866.130000px;}
.y20{bottom:869.130000px;}
.y3e{bottom:869.505000px;}
.y44{bottom:872.880000px;}
.yf5{bottom:873.255000px;}
.ybf{bottom:876.255000px;}
.y198{bottom:881.880000px;}
.y5c{bottom:883.005000px;}
.y180{bottom:884.505000px;}
.y11b{bottom:884.895000px;}
.y86{bottom:886.380000px;}
.yf3{bottom:893.520000px;}
.y7{bottom:894.630000px;}
.y1f{bottom:899.550000px;}
.y43{bottom:902.925000px;}
.y11a{bottom:905.175000px;}
.ybe{bottom:906.675000px;}
.y197{bottom:912.300000px;}
.y3d{bottom:913.050000px;}
.yf2{bottom:913.800000px;}
.y85{bottom:914.925000px;}
.y119{bottom:925.425000px;}
.y1e{bottom:929.550000px;}
.y42{bottom:933.300000px;}
.yf1{bottom:933.675000px;}
.yd6{bottom:936.675000px;}
.y6{bottom:938.550000px;}
.y196{bottom:942.675000px;}
.y3c{bottom:943.425000px;}
.y115{bottom:946.050000px;}
.ybd{bottom:946.800000px;}
.yc4{bottom:949.425000px;}
.yed{bottom:954.675000px;}
.y1d{bottom:959.925000px;}
.y41{bottom:963.300000px;}
.yd5{bottom:967.050000px;}
.y117{bottom:968.550000px;}
.y195{bottom:972.675000px;}
.y3b{bottom:973.425000px;}
.ybc{bottom:975.300000px;}
.yef{bottom:976.425000px;}
.yc3{bottom:976.800000px;}
.y5{bottom:980.175000px;}
.y1c{bottom:989.925000px;}
.y40{bottom:993.675000px;}
.y114{bottom:998.175000px;}
.y194{bottom:1003.050000px;}
.y3a{bottom:1003.800000px;}
.yec{bottom:1006.050000px;}
.yd4{bottom:1007.175000px;}
.y113{bottom:1016.580000px;}
.y1b{bottom:1020.330000px;}
.y4{bottom:1021.830000px;}
.y3f{bottom:1024.080000px;}
.yeb{bottom:1024.455000px;}
.y193{bottom:1032.705000px;}
.y39{bottom:1033.830000px;}
.y112{bottom:1034.580000px;}
.yd3{bottom:1035.705000px;}
.y1a{bottom:1062.705000px;}
.y3{bottom:1063.080000px;}
.y38{bottom:1064.205000px;}
.y19{bottom:1095.330000px;}
.y2{bottom:1098.330000px;}
.y18{bottom:1115.955000px;}
.y1{bottom:1118.205000px;}
.h14{height:19.875000px;}
.h16{height:19.912500px;}
.h13{height:20.250000px;}
.h15{height:20.272500px;}
.h1b{height:20.287500px;}
.h12{height:21.750000px;}
.hf{height:23.985000px;}
.hd{height:24.000000px;}
.he{height:24.037500px;}
.h11{height:43.500000px;}
.h1a{height:44.250000px;}
.hb{height:52.470703px;}
.h19{height:53.709961px;}
.h18{height:53.859155px;}
.h6{height:57.717773px;}
.hc{height:59.677734px;}
.ha{height:61.435547px;}
.h1f{height:62.578125px;}
.h1{height:65.645508px;}
.h5{height:67.579102px;}
.h8{height:68.554688px;}
.h9{height:68.707031px;}
.h7{height:68.835938px;}
.h3{height:71.613281px;}
.h4{height:73.722656px;}
.h2{height:74.004654px;}
.h10{height:74.953125px;}
.h20{height:75.093750px;}
.h17{height:267.000000px;}
.h21{height:286.875000px;}
.h1d{height:311.250000px;}
.h1c{height:330.000000px;}
.h1e{height:333.000000px;}
.h22{height:378.000000px;}
.h0{height:1188.000000px;}
.w12{width:44.250000px;}
.w9{width:79.537500px;}
.wd{width:86.662500px;}
.w3{width:93.037500px;}
.w6{width:93.787500px;}
.w4{width:94.537500px;}
.w5{width:101.662500px;}
.wc{width:135.450000px;}
.w2{width:138.450000px;}
.wb{width:163.950000px;}
.w10{width:166.200000px;}
.w8{width:178.200000px;}
.wa{width:195.075000px;}
.w7{width:218.745000px;}
.w13{width:231.495000px;}
.w11{width:248.730000px;}
.we{width:326.745000px;}
.w18{width:648.000000px;}
.w14{width:687.375000px;}
.w17{width:693.000000px;}
.w15{width:697.875000px;}
.w16{width:702.750000px;}
.wf{width:706.500000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x41{left:2.625000px;}
.x15{left:8.250000px;}
.x2e{left:20.250000px;}
.x3e{left:22.125000px;}
.x2a{left:27.375000px;}
.x39{left:33.075000px;}
.x26{left:39.750000px;}
.x28{left:41.250000px;}
.x34{left:43.125000px;}
.x4a{left:44.325000px;}
.x38{left:48.450000px;}
.x24{left:49.500000px;}
.x4d{left:51.855000px;}
.x30{left:52.875000px;}
.x46{left:55.305000px;}
.x1a{left:57.030000px;}
.x18{left:60.405000px;}
.x2f{left:61.500000px;}
.x20{left:64.155000px;}
.x29{left:66.375000px;}
.x31{left:67.485000px;}
.x1c{left:72.405000px;}
.x2b{left:74.625000px;}
.x17{left:76.170000px;}
.x1f{left:78.420000px;}
.x44{left:79.905000px;}
.x3c{left:84.780000px;}
.x21{left:86.670000px;}
.x2c{left:88.920000px;}
.x4b{left:91.050000px;}
.x22{left:93.420000px;}
.x4e{left:94.545000px;}
.x2d{left:97.530000px;}
.x40{left:101.655000px;}
.x1{left:108.037486px;}
.xd{left:109.537486px;}
.x45{left:112.500000px;}
.x43{left:115.950000px;}
.x42{left:124.155000px;}
.x3{left:126.037486px;}
.x12{left:135.074986px;}
.x58{left:144.074986px;}
.x2{left:162.074986px;}
.x36{left:163.155000px;}
.x54{left:176.475000px;}
.x52{left:187.725000px;}
.x9{left:189.074986px;}
.x8{left:206.324986px;}
.x4c{left:209.445000px;}
.x47{left:211.275000px;}
.x4f{left:213.195000px;}
.x11{left:216.074986px;}
.x16{left:246.495000px;}
.x32{left:271.995000px;}
.x3b{left:274.245000px;}
.x55{left:301.695000px;}
.x48{left:320.970000px;}
.x53{left:324.225000px;}
.x23{left:326.775000px;}
.x50{left:328.575000px;}
.x3a{left:330.600000px;}
.xc{left:339.149986px;}
.x1e{left:340.275000px;}
.x6{left:347.774986px;}
.xb{left:355.274986px;}
.x4{left:373.274986px;}
.x5{left:390.524986px;}
.x33{left:407.445000px;}
.xa{left:408.569986px;}
.x10{left:416.069986px;}
.x57{left:420.944986px;}
.x56{left:423.194986px;}
.xe{left:427.694986px;}
.xf{left:431.444986px;}
.x14{left:434.444986px;}
.x7{left:459.194986px;}
.x35{left:494.100000px;}
.x25{left:504.975000px;}
.x3d{left:522.975000px;}
.x19{left:528.600000px;}
.x3f{left:567.225000px;}
.x27{left:584.520000px;}
.x1b{left:623.145000px;}
.x1d{left:717.675000px;}
.x51{left:801.329986px;}
.x49{left:806.204986px;}
.x13{left:810.344986px;}
.x37{left:814.829986px;}
@media print{
.v3{vertical-align:-69.333333pt;}
.v1{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.773333pt;}
.v4{vertical-align:24.000000pt;}
.ls3d{letter-spacing:-1.450667pt;}
.ls44{letter-spacing:-1.333333pt;}
.ls35{letter-spacing:-0.746667pt;}
.ls11{letter-spacing:-0.613333pt;}
.ls15{letter-spacing:-0.570667pt;}
.ls1e{letter-spacing:-0.565333pt;}
.ls20{letter-spacing:-0.560000pt;}
.ls3b{letter-spacing:-0.549333pt;}
.ls32{letter-spacing:-0.522667pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.442667pt;}
.ls16{letter-spacing:-0.410667pt;}
.ls2b{letter-spacing:-0.403733pt;}
.ls2c{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.272000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls7{letter-spacing:-0.250667pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.133333pt;}
.ls48{letter-spacing:-0.122667pt;}
.ls9{letter-spacing:-0.117333pt;}
.ls28{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls33{letter-spacing:-0.062400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.074667pt;}
.ls25{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls17{letter-spacing:0.149333pt;}
.ls38{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls3f{letter-spacing:0.224000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls39{letter-spacing:0.277333pt;}
.ls1a{letter-spacing:0.314667pt;}
.ls8{letter-spacing:0.346667pt;}
.ls18{letter-spacing:0.368000pt;}
.ls4{letter-spacing:0.400000pt;}
.ls2d{letter-spacing:0.453333pt;}
.ls3{letter-spacing:0.496000pt;}
.ls12{letter-spacing:0.506667pt;}
.ls2{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.517333pt;}
.ls26{letter-spacing:0.602667pt;}
.ls2f{letter-spacing:0.613333pt;}
.ls34{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.666667pt;}
.lse{letter-spacing:0.714667pt;}
.ls5{letter-spacing:0.826667pt;}
.ls1{letter-spacing:0.832000pt;}
.ls14{letter-spacing:0.874667pt;}
.ls43{letter-spacing:0.890667pt;}
.ls40{letter-spacing:0.922667pt;}
.ls2a{letter-spacing:1.072000pt;}
.lsd{letter-spacing:1.216000pt;}
.ls27{letter-spacing:1.333333pt;}
.ls42{letter-spacing:1.397333pt;}
.ls10{letter-spacing:1.450667pt;}
.ls2e{letter-spacing:1.461333pt;}
.ls3e{letter-spacing:1.557333pt;}
.ls41{letter-spacing:1.610667pt;}
.ls21{letter-spacing:1.840000pt;}
.ls36{letter-spacing:1.893333pt;}
.ls47{letter-spacing:2.048000pt;}
.ls1c{letter-spacing:2.741333pt;}
.ls30{letter-spacing:4.074667pt;}
.lsb{letter-spacing:5.386667pt;}
.ls46{letter-spacing:5.514667pt;}
.ls3a{letter-spacing:8.128000pt;}
.ls1b{letter-spacing:12.074667pt;}
.ls31{letter-spacing:176.133333pt;}
.ls3c{letter-spacing:752.090667pt;}
.ws2b{word-spacing:-31.146667pt;}
.ws2c{word-spacing:-14.986667pt;}
.ws2a{word-spacing:-14.826667pt;}
.ws16{word-spacing:-14.592000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws32{word-spacing:-14.149333pt;}
.wsd{word-spacing:-14.016000pt;}
.ws29{word-spacing:-13.776000pt;}
.ws17{word-spacing:-13.765333pt;}
.wsa{word-spacing:-13.626667pt;}
.ws6{word-spacing:-13.605333pt;}
.wsc{word-spacing:-13.573333pt;}
.ws15{word-spacing:-13.408000pt;}
.ws10{word-spacing:-13.376000pt;}
.ws4{word-spacing:-13.258667pt;}
.ws7{word-spacing:-13.157333pt;}
.wsf{word-spacing:-13.141333pt;}
.ws33{word-spacing:-13.136000pt;}
.ws8{word-spacing:-13.125333pt;}
.ws2{word-spacing:-13.098667pt;}
.ws3{word-spacing:-13.008000pt;}
.ws12{word-spacing:-12.986667pt;}
.wse{word-spacing:-12.848000pt;}
.wsb{word-spacing:-12.816000pt;}
.ws1f{word-spacing:-12.736000pt;}
.ws31{word-spacing:-12.709333pt;}
.ws14{word-spacing:-12.698667pt;}
.ws11{word-spacing:-12.693333pt;}
.ws9{word-spacing:-12.688000pt;}
.ws13{word-spacing:-12.053333pt;}
.ws18{word-spacing:-11.786667pt;}
.ws23{word-spacing:-11.306667pt;}
.ws24{word-spacing:-10.878133pt;}
.ws25{word-spacing:-10.848000pt;}
.ws5{word-spacing:-8.437333pt;}
.ws0{word-spacing:0.000000pt;}
.ws30{word-spacing:54.027733pt;}
.ws2e{word-spacing:54.096000pt;}
.ws1e{word-spacing:59.114667pt;}
.ws22{word-spacing:59.154533pt;}
.ws1b{word-spacing:59.261200pt;}
.ws28{word-spacing:59.274667pt;}
.ws1c{word-spacing:98.509067pt;}
.ws20{word-spacing:107.669333pt;}
.ws26{word-spacing:108.202667pt;}
.ws19{word-spacing:108.576000pt;}
.ws1d{word-spacing:777.797333pt;}
.ws2d{word-spacing:794.128000pt;}
.ws2f{word-spacing:795.237333pt;}
.ws21{word-spacing:808.837333pt;}
.ws27{word-spacing:810.810667pt;}
.ws1a{word-spacing:812.090667pt;}
._4{margin-left:-5.578667pt;}
._16{margin-left:-3.440000pt;}
._2{margin-left:-2.549333pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.152000pt;}
._e{width:2.330667pt;}
._3{width:3.221333pt;}
._18{width:4.128000pt;}
._a{width:5.242667pt;}
._b{width:6.394667pt;}
._c{width:7.509333pt;}
._d{width:8.544000pt;}
._14{width:9.797333pt;}
._13{width:10.698667pt;}
._17{width:11.792000pt;}
._28{width:14.149333pt;}
._f{width:15.056000pt;}
._1e{width:16.074667pt;}
._11{width:16.976000pt;}
._10{width:18.597333pt;}
._44{width:19.578667pt;}
._1a{width:20.474667pt;}
._1b{width:21.413333pt;}
._1d{width:22.469333pt;}
._1c{width:23.450667pt;}
._33{width:24.432000pt;}
._9{width:25.344000pt;}
._42{width:26.362667pt;}
._30{width:27.866667pt;}
._47{width:30.117333pt;}
._34{width:31.642667pt;}
._35{width:32.773333pt;}
._2f{width:42.842667pt;}
._41{width:44.373333pt;}
._40{width:45.920000pt;}
._4d{width:47.658667pt;}
._4e{width:48.597333pt;}
._4f{width:49.893333pt;}
._43{width:51.354667pt;}
._31{width:53.349333pt;}
._32{width:54.730667pt;}
._2a{width:62.618667pt;}
._6{width:64.410667pt;}
._15{width:65.301333pt;}
._3e{width:67.781333pt;}
._3f{width:69.056000pt;}
._36{width:72.512000pt;}
._37{width:73.450667pt;}
._4c{width:74.746667pt;}
._38{width:75.637333pt;}
._3a{width:77.402667pt;}
._39{width:78.496000pt;}
._3b{width:79.834667pt;}
._2b{width:82.602667pt;}
._2c{width:83.856000pt;}
._2e{width:85.834667pt;}
._49{width:99.552000pt;}
._48{width:100.554667pt;}
._3c{width:127.130667pt;}
._3d{width:128.581333pt;}
._45{width:130.117333pt;}
._46{width:131.141333pt;}
._29{width:133.392000pt;}
._24{width:146.215733pt;}
._4b{width:151.360000pt;}
._4a{width:152.261333pt;}
._1f{width:155.285333pt;}
._21{width:156.490667pt;}
._7{width:172.714667pt;}
._2d{width:174.192000pt;}
._22{width:176.133333pt;}
._19{width:178.874667pt;}
._8{width:182.464000pt;}
._12{width:230.874667pt;}
._25{width:421.177733pt;}
._26{width:438.970667pt;}
._27{width:440.592000pt;}
._20{width:441.605333pt;}
._5{width:753.936000pt;}
._23{width:2445.093333pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:48.133333pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:3.986667pt;}
.yd9{bottom:4.000000pt;}
.yf4{bottom:4.026667pt;}
.yfb{bottom:4.040000pt;}
.yf0{bottom:5.333333pt;}
.y118{bottom:5.666667pt;}
.y151{bottom:15.373333pt;}
.y111{bottom:15.400000pt;}
.y13b{bottom:15.466667pt;}
.y17f{bottom:15.533333pt;}
.y16d{bottom:15.600000pt;}
.y191{bottom:15.693333pt;}
.yee{bottom:24.666667pt;}
.y116{bottom:25.666667pt;}
.y14f{bottom:39.600000pt;}
.y10f{bottom:40.960000pt;}
.y139{bottom:41.040000pt;}
.y16b{bottom:41.200000pt;}
.y17d{bottom:42.106667pt;}
.y18f{bottom:42.266667pt;}
.y147{bottom:42.466667pt;}
.y177{bottom:57.733333pt;}
.y187{bottom:57.866667pt;}
.y14e{bottom:62.866667pt;}
.y10e{bottom:64.226667pt;}
.y138{bottom:64.333333pt;}
.y16a{bottom:64.466667pt;}
.y148{bottom:78.506667pt;}
.y107{bottom:79.866667pt;}
.y130{bottom:79.933333pt;}
.y160{bottom:80.066667pt;}
.y178{bottom:87.533333pt;}
.y110{bottom:89.800000pt;}
.y17e{bottom:92.200000pt;}
.y188{bottom:95.026667pt;}
.y12e{bottom:101.033333pt;}
.y9e{bottom:101.366667pt;}
.y161{bottom:102.066667pt;}
.yd2{bottom:102.700000pt;}
.y108{bottom:103.066667pt;}
.y15e{bottom:104.366667pt;}
.yc0{bottom:107.366667pt;}
.y131{bottom:107.800000pt;}
.y84{bottom:109.033333pt;}
.y145{bottom:109.366667pt;}
.yea{bottom:111.366667pt;}
.y1b0{bottom:112.366667pt;}
.y75{bottom:113.033333pt;}
.y149{bottom:114.533333pt;}
.y179{bottom:117.360000pt;}
.y150{bottom:118.706667pt;}
.y162{bottom:124.026667pt;}
.y37{bottom:124.366667pt;}
.y13a{bottom:126.133333pt;}
.y109{bottom:126.266667pt;}
.y12d{bottom:128.033333pt;}
.y9d{bottom:128.366667pt;}
.yd1{bottom:129.700000pt;}
.y5b{bottom:131.033333pt;}
.y15d{bottom:131.366667pt;}
.y189{bottom:132.173333pt;}
.y190{bottom:132.800000pt;}
.ybb{bottom:134.026667pt;}
.y175{bottom:134.360000pt;}
.y132{bottom:135.666667pt;}
.y83{bottom:135.706667pt;}
.yb4{bottom:136.040000pt;}
.y144{bottom:136.373333pt;}
.ye9{bottom:138.040000pt;}
.y1af{bottom:139.373333pt;}
.y105{bottom:139.706667pt;}
.y74{bottom:140.026667pt;}
.y163{bottom:146.000000pt;}
.y16c{bottom:147.200000pt;}
.y10a{bottom:149.506667pt;}
.y14a{bottom:150.573333pt;}
.y36{bottom:151.373333pt;}
.y12c{bottom:155.026667pt;}
.y9c{bottom:155.360000pt;}
.yd0{bottom:156.373333pt;}
.y5a{bottom:158.026667pt;}
.y15c{bottom:158.360000pt;}
.yba{bottom:161.026667pt;}
.y82{bottom:162.706667pt;}
.y143{bottom:163.040000pt;}
.y133{bottom:163.533333pt;}
.yb3{bottom:164.066667pt;}
.ye8{bottom:165.066667pt;}
.y1ae{bottom:166.066667pt;}
.y104{bottom:166.733333pt;}
.y73{bottom:167.066667pt;}
.y164{bottom:167.973333pt;}
.y18a{bottom:169.306667pt;}
.y17{bottom:170.066667pt;}
.y10b{bottom:172.693333pt;}
.y17a{bottom:177.026667pt;}
.y35{bottom:178.066667pt;}
.y12b{bottom:181.733333pt;}
.y9b{bottom:182.066667pt;}
.ycf{bottom:183.400000pt;}
.y59{bottom:184.733333pt;}
.y15b{bottom:185.066667pt;}
.y14b{bottom:186.573333pt;}
.yb9{bottom:188.066667pt;}
.y81{bottom:189.400000pt;}
.y165{bottom:189.933333pt;}
.y142{bottom:190.066667pt;}
.y134{bottom:191.400000pt;}
.ye7{bottom:191.733333pt;}
.y1ad{bottom:193.066667pt;}
.yb2{bottom:193.400000pt;}
.y72{bottom:193.733333pt;}
.y10c{bottom:195.933333pt;}
.y34{bottom:205.066667pt;}
.y18b{bottom:206.426667pt;}
.y17b{bottom:206.866667pt;}
.y12a{bottom:208.733333pt;}
.y16{bottom:209.066667pt;}
.yce{bottom:210.400000pt;}
.y58{bottom:211.733333pt;}
.y166{bottom:211.933333pt;}
.y15a{bottom:212.066667pt;}
.yb8{bottom:214.733333pt;}
.y80{bottom:216.400000pt;}
.y9a{bottom:218.066667pt;}
.yb1{bottom:218.733333pt;}
.y10d{bottom:219.133333pt;}
.y135{bottom:219.306667pt;}
.y1ac{bottom:219.733333pt;}
.y103{bottom:220.400000pt;}
.y71{bottom:220.733333pt;}
.y14c{bottom:222.600000pt;}
.y33{bottom:231.733333pt;}
.y167{bottom:233.906667pt;}
.y17c{bottom:236.666667pt;}
.ycd{bottom:237.066667pt;}
.y129{bottom:238.066667pt;}
.y57{bottom:238.400000pt;}
.y159{bottom:238.733333pt;}
.yb7{bottom:241.733333pt;}
.y7f{bottom:243.066667pt;}
.y18c{bottom:243.560000pt;}
.yb0{bottom:244.066667pt;}
.ye6{bottom:245.400000pt;}
.y141{bottom:245.733333pt;}
.y1ab{bottom:246.733333pt;}
.y136{bottom:247.173333pt;}
.y70{bottom:247.400000pt;}
.y15{bottom:248.066667pt;}
.y128{bottom:255.400000pt;}
.y168{bottom:255.866667pt;}
.y14d{bottom:258.640000pt;}
.y32{bottom:258.733333pt;}
.y140{bottom:260.733333pt;}
.y146{bottom:261.666667pt;}
.ycc{bottom:264.066667pt;}
.y56{bottom:265.400000pt;}
.y102{bottom:267.400000pt;}
.y99{bottom:268.400000pt;}
.y7e{bottom:270.093333pt;}
.yaf{bottom:270.773333pt;}
.y12f{bottom:271.000000pt;}
.y1aa{bottom:273.773333pt;}
.y6f{bottom:274.440000pt;}
.y137{bottom:275.026667pt;}
.ye5{bottom:275.106667pt;}
.y169{bottom:277.840000pt;}
.y18d{bottom:280.733333pt;}
.y31{bottom:285.440000pt;}
.y101{bottom:285.773333pt;}
.y14{bottom:287.106667pt;}
.ycb{bottom:290.773333pt;}
.y55{bottom:292.440000pt;}
.y158{bottom:294.773333pt;}
.y98{bottom:295.440000pt;}
.y174{bottom:296.106667pt;}
.y7d{bottom:297.106667pt;}
.yae{bottom:297.773333pt;}
.y1a9{bottom:300.440000pt;}
.y6e{bottom:301.106667pt;}
.ye4{bottom:302.106667pt;}
.y100{bottom:304.106667pt;}
.y157{bottom:309.773333pt;}
.y15f{bottom:310.000000pt;}
.y30{bottom:312.440000pt;}
.y173{bottom:313.773333pt;}
.yca{bottom:317.773333pt;}
.y18e{bottom:317.866667pt;}
.y54{bottom:319.106667pt;}
.y106{bottom:319.666667pt;}
.y97{bottom:322.106667pt;}
.y7c{bottom:323.773333pt;}
.yad{bottom:324.440000pt;}
.y13{bottom:326.106667pt;}
.y172{bottom:326.440000pt;}
.y176{bottom:326.666667pt;}
.y192{bottom:327.106667pt;}
.y1a8{bottom:327.440000pt;}
.y6d{bottom:328.106667pt;}
.ye3{bottom:328.773333pt;}
.y2f{bottom:339.440000pt;}
.y53{bottom:346.106667pt;}
.y185{bottom:348.440000pt;}
.y96{bottom:349.106667pt;}
.y7b{bottom:350.773333pt;}
.yac{bottom:351.440000pt;}
.yc9{bottom:353.440000pt;}
.y1a7{bottom:354.106667pt;}
.y6c{bottom:355.106667pt;}
.ye2{bottom:364.440000pt;}
.y12{bottom:365.440000pt;}
.y2e{bottom:366.106667pt;}
.y184{bottom:366.773333pt;}
.y52{bottom:372.773333pt;}
.y95{bottom:376.133333pt;}
.y7a{bottom:377.466667pt;}
.yab{bottom:378.133333pt;}
.y1a6{bottom:381.133333pt;}
.y6b{bottom:381.800000pt;}
.y183{bottom:385.133333pt;}
.yc8{bottom:389.466667pt;}
.y2d{bottom:393.133333pt;}
.y51{bottom:399.800000pt;}
.ye1{bottom:401.466667pt;}
.y94{bottom:402.800000pt;}
.y182{bottom:403.800000pt;}
.y11{bottom:404.466667pt;}
.yaa{bottom:405.133333pt;}
.yc7{bottom:407.133333pt;}
.y1a5{bottom:407.800000pt;}
.y6a{bottom:408.800000pt;}
.y186{bottom:416.666667pt;}
.ye0{bottom:419.133333pt;}
.yc6{bottom:423.466667pt;}
.y50{bottom:426.466667pt;}
.y2c{bottom:428.800000pt;}
.y93{bottom:429.800000pt;}
.y79{bottom:431.133333pt;}
.ya9{bottom:432.133333pt;}
.y1a4{bottom:434.800000pt;}
.y69{bottom:435.466667pt;}
.y10{bottom:443.466667pt;}
.yc5{bottom:443.800000pt;}
.ydf{bottom:448.800000pt;}
.y4f{bottom:453.466667pt;}
.y92{bottom:456.466667pt;}
.ya8{bottom:458.800000pt;}
.y1a3{bottom:461.800000pt;}
.y68{bottom:462.466667pt;}
.y2b{bottom:466.466667pt;}
.y78{bottom:467.133333pt;}
.yde{bottom:470.133333pt;}
.y4e{bottom:480.506667pt;}
.yf{bottom:482.506667pt;}
.y91{bottom:483.506667pt;}
.ya7{bottom:485.840000pt;}
.y1a2{bottom:488.506667pt;}
.y67{bottom:489.173333pt;}
.ydd{bottom:491.506667pt;}
.y77{bottom:492.506667pt;}
.y2a{bottom:503.840000pt;}
.y4d{bottom:507.173333pt;}
.y90{bottom:510.173333pt;}
.ya6{bottom:512.506667pt;}
.ydc{bottom:512.840000pt;}
.y1a1{bottom:515.506667pt;}
.y66{bottom:516.173333pt;}
.y76{bottom:517.840000pt;}
.ye{bottom:521.506667pt;}
.y29{bottom:530.840000pt;}
.y4c{bottom:534.173333pt;}
.y8f{bottom:537.173333pt;}
.ya5{bottom:539.506667pt;}
.y1a0{bottom:542.173333pt;}
.y65{bottom:543.173333pt;}
.y13f{bottom:555.173333pt;}
.ydb{bottom:555.506667pt;}
.y28{bottom:557.506667pt;}
.yd{bottom:560.840000pt;}
.y8e{bottom:564.173333pt;}
.ya4{bottom:566.173333pt;}
.y19f{bottom:569.173333pt;}
.y64{bottom:569.840000pt;}
.y13e{bottom:571.506667pt;}
.yff{bottom:573.840000pt;}
.yda{bottom:576.840000pt;}
.y1b3{bottom:578.173333pt;}
.y127{bottom:580.840000pt;}
.y27{bottom:584.506667pt;}
.y4b{bottom:587.866667pt;}
.yfe{bottom:590.200000pt;}
.y8d{bottom:590.866667pt;}
.ya3{bottom:593.200000pt;}
.y19e{bottom:595.866667pt;}
.y63{bottom:596.866667pt;}
.y171{bottom:597.533333pt;}
.yd8{bottom:598.866667pt;}
.yc{bottom:599.866667pt;}
.y13d{bottom:601.200000pt;}
.y1b2{bottom:605.200000pt;}
.y126{bottom:610.533333pt;}
.y26{bottom:611.533333pt;}
.y170{bottom:612.866667pt;}
.y4a{bottom:614.533333pt;}
.y8c{bottom:617.866667pt;}
.yfd{bottom:619.533333pt;}
.ya2{bottom:620.200000pt;}
.y1b1{bottom:622.533333pt;}
.y156{bottom:622.866667pt;}
.y62{bottom:623.533333pt;}
.y13c{bottom:625.200000pt;}
.y125{bottom:626.533333pt;}
.y16f{bottom:628.200000pt;}
.yd7{bottom:636.866667pt;}
.y25{bottom:638.200000pt;}
.yb{bottom:638.866667pt;}
.y155{bottom:639.200000pt;}
.y49{bottom:641.533333pt;}
.y8b{bottom:644.533333pt;}
.y124{bottom:645.200000pt;}
.ya1{bottom:646.866667pt;}
.y19d{bottom:649.866667pt;}
.y61{bottom:650.533333pt;}
.y16e{bottom:651.866667pt;}
.yfc{bottom:654.200000pt;}
.y123{bottom:663.533333pt;}
.y24{bottom:665.200000pt;}
.y48{bottom:668.200000pt;}
.y154{bottom:668.866667pt;}
.y8a{bottom:671.533333pt;}
.ya0{bottom:673.866667pt;}
.y19c{bottom:676.533333pt;}
.y60{bottom:677.200000pt;}
.ya{bottom:677.866667pt;}
.y122{bottom:679.200000pt;}
.y153{bottom:684.866667pt;}
.yfa{bottom:686.866667pt;}
.y23{bottom:691.893333pt;}
.y47{bottom:695.226667pt;}
.y121{bottom:697.226667pt;}
.y89{bottom:698.226667pt;}
.y9f{bottom:701.893333pt;}
.y152{bottom:703.226667pt;}
.y19b{bottom:703.573333pt;}
.y5f{bottom:704.226667pt;}
.yf9{bottom:704.560000pt;}
.yc2{bottom:707.226667pt;}
.y120{bottom:714.893333pt;}
.y9{bottom:716.893333pt;}
.y22{bottom:718.893333pt;}
.y46{bottom:722.226667pt;}
.yf8{bottom:722.560000pt;}
.y88{bottom:725.226667pt;}
.y19a{bottom:730.226667pt;}
.y5e{bottom:730.893333pt;}
.yc1{bottom:732.560000pt;}
.y11f{bottom:732.893333pt;}
.yb6{bottom:734.226667pt;}
.yf7{bottom:740.560000pt;}
.y21{bottom:745.560000pt;}
.y45{bottom:748.893333pt;}
.y11e{bottom:750.893333pt;}
.y87{bottom:752.226667pt;}
.y8{bottom:755.893333pt;}
.y199{bottom:757.226667pt;}
.y5d{bottom:757.893333pt;}
.yf6{bottom:758.226667pt;}
.yb5{bottom:759.560000pt;}
.y11d{bottom:768.560000pt;}
.y181{bottom:769.893333pt;}
.y20{bottom:772.560000pt;}
.y3e{bottom:772.893333pt;}
.y44{bottom:775.893333pt;}
.yf5{bottom:776.226667pt;}
.ybf{bottom:778.893333pt;}
.y198{bottom:783.893333pt;}
.y5c{bottom:784.893333pt;}
.y180{bottom:786.226667pt;}
.y11b{bottom:786.573333pt;}
.y86{bottom:787.893333pt;}
.yf3{bottom:794.240000pt;}
.y7{bottom:795.226667pt;}
.y1f{bottom:799.600000pt;}
.y43{bottom:802.600000pt;}
.y11a{bottom:804.600000pt;}
.ybe{bottom:805.933333pt;}
.y197{bottom:810.933333pt;}
.y3d{bottom:811.600000pt;}
.yf2{bottom:812.266667pt;}
.y85{bottom:813.266667pt;}
.y119{bottom:822.600000pt;}
.y1e{bottom:826.266667pt;}
.y42{bottom:829.600000pt;}
.yf1{bottom:829.933333pt;}
.yd6{bottom:832.600000pt;}
.y6{bottom:834.266667pt;}
.y196{bottom:837.933333pt;}
.y3c{bottom:838.600000pt;}
.y115{bottom:840.933333pt;}
.ybd{bottom:841.600000pt;}
.yc4{bottom:843.933333pt;}
.yed{bottom:848.600000pt;}
.y1d{bottom:853.266667pt;}
.y41{bottom:856.266667pt;}
.yd5{bottom:859.600000pt;}
.y117{bottom:860.933333pt;}
.y195{bottom:864.600000pt;}
.y3b{bottom:865.266667pt;}
.ybc{bottom:866.933333pt;}
.yef{bottom:867.933333pt;}
.yc3{bottom:868.266667pt;}
.y5{bottom:871.266667pt;}
.y1c{bottom:879.933333pt;}
.y40{bottom:883.266667pt;}
.y114{bottom:887.266667pt;}
.y194{bottom:891.600000pt;}
.y3a{bottom:892.266667pt;}
.yec{bottom:894.266667pt;}
.yd4{bottom:895.266667pt;}
.y113{bottom:903.626667pt;}
.y1b{bottom:906.960000pt;}
.y4{bottom:908.293333pt;}
.y3f{bottom:910.293333pt;}
.yeb{bottom:910.626667pt;}
.y193{bottom:917.960000pt;}
.y39{bottom:918.960000pt;}
.y112{bottom:919.626667pt;}
.yd3{bottom:920.626667pt;}
.y1a{bottom:944.626667pt;}
.y3{bottom:944.960000pt;}
.y38{bottom:945.960000pt;}
.y19{bottom:973.626667pt;}
.y2{bottom:976.293333pt;}
.y18{bottom:991.960000pt;}
.y1{bottom:993.960000pt;}
.h14{height:17.666667pt;}
.h16{height:17.700000pt;}
.h13{height:18.000000pt;}
.h15{height:18.020000pt;}
.h1b{height:18.033333pt;}
.h12{height:19.333333pt;}
.hf{height:21.320000pt;}
.hd{height:21.333333pt;}
.he{height:21.366667pt;}
.h11{height:38.666667pt;}
.h1a{height:39.333333pt;}
.hb{height:46.640625pt;}
.h19{height:47.742188pt;}
.h18{height:47.874805pt;}
.h6{height:51.304688pt;}
.hc{height:53.046875pt;}
.ha{height:54.609375pt;}
.h1f{height:55.625000pt;}
.h1{height:58.351562pt;}
.h5{height:60.070312pt;}
.h8{height:60.937500pt;}
.h9{height:61.072917pt;}
.h7{height:61.187500pt;}
.h3{height:63.656250pt;}
.h4{height:65.531250pt;}
.h2{height:65.781915pt;}
.h10{height:66.625000pt;}
.h20{height:66.750000pt;}
.h17{height:237.333333pt;}
.h21{height:255.000000pt;}
.h1d{height:276.666667pt;}
.h1c{height:293.333333pt;}
.h1e{height:296.000000pt;}
.h22{height:336.000000pt;}
.h0{height:1056.000000pt;}
.w12{width:39.333333pt;}
.w9{width:70.700000pt;}
.wd{width:77.033333pt;}
.w3{width:82.700000pt;}
.w6{width:83.366667pt;}
.w4{width:84.033333pt;}
.w5{width:90.366667pt;}
.wc{width:120.400000pt;}
.w2{width:123.066667pt;}
.wb{width:145.733333pt;}
.w10{width:147.733333pt;}
.w8{width:158.400000pt;}
.wa{width:173.400000pt;}
.w7{width:194.440000pt;}
.w13{width:205.773333pt;}
.w11{width:221.093333pt;}
.we{width:290.440000pt;}
.w18{width:576.000000pt;}
.w14{width:611.000000pt;}
.w17{width:616.000000pt;}
.w15{width:620.333333pt;}
.w16{width:624.666667pt;}
.wf{width:628.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x41{left:2.333333pt;}
.x15{left:7.333333pt;}
.x2e{left:18.000000pt;}
.x3e{left:19.666667pt;}
.x2a{left:24.333333pt;}
.x39{left:29.400000pt;}
.x26{left:35.333333pt;}
.x28{left:36.666667pt;}
.x34{left:38.333333pt;}
.x4a{left:39.400000pt;}
.x38{left:43.066667pt;}
.x24{left:44.000000pt;}
.x4d{left:46.093333pt;}
.x30{left:47.000000pt;}
.x46{left:49.160000pt;}
.x1a{left:50.693333pt;}
.x18{left:53.693333pt;}
.x2f{left:54.666667pt;}
.x20{left:57.026667pt;}
.x29{left:59.000000pt;}
.x31{left:59.986667pt;}
.x1c{left:64.360000pt;}
.x2b{left:66.333333pt;}
.x17{left:67.706667pt;}
.x1f{left:69.706667pt;}
.x44{left:71.026667pt;}
.x3c{left:75.360000pt;}
.x21{left:77.040000pt;}
.x2c{left:79.040000pt;}
.x4b{left:80.933333pt;}
.x22{left:83.040000pt;}
.x4e{left:84.040000pt;}
.x2d{left:86.693333pt;}
.x40{left:90.360000pt;}
.x1{left:96.033321pt;}
.xd{left:97.366655pt;}
.x45{left:100.000000pt;}
.x43{left:103.066667pt;}
.x42{left:110.360000pt;}
.x3{left:112.033321pt;}
.x12{left:120.066655pt;}
.x58{left:128.066655pt;}
.x2{left:144.066655pt;}
.x36{left:145.026667pt;}
.x54{left:156.866667pt;}
.x52{left:166.866667pt;}
.x9{left:168.066655pt;}
.x8{left:183.399988pt;}
.x4c{left:186.173333pt;}
.x47{left:187.800000pt;}
.x4f{left:189.506667pt;}
.x11{left:192.066655pt;}
.x16{left:219.106667pt;}
.x32{left:241.773333pt;}
.x3b{left:243.773333pt;}
.x55{left:268.173333pt;}
.x48{left:285.306667pt;}
.x53{left:288.200000pt;}
.x23{left:290.466667pt;}
.x50{left:292.066667pt;}
.x3a{left:293.866667pt;}
.xc{left:301.466655pt;}
.x1e{left:302.466667pt;}
.x6{left:309.133321pt;}
.xb{left:315.799988pt;}
.x4{left:331.799988pt;}
.x5{left:347.133321pt;}
.x33{left:362.173333pt;}
.xa{left:363.173321pt;}
.x10{left:369.839988pt;}
.x57{left:374.173321pt;}
.x56{left:376.173321pt;}
.xe{left:380.173321pt;}
.xf{left:383.506655pt;}
.x14{left:386.173321pt;}
.x7{left:408.173321pt;}
.x35{left:439.200000pt;}
.x25{left:448.866667pt;}
.x3d{left:464.866667pt;}
.x19{left:469.866667pt;}
.x3f{left:504.200000pt;}
.x27{left:519.573333pt;}
.x1b{left:553.906667pt;}
.x1d{left:637.933333pt;}
.x51{left:712.293321pt;}
.x49{left:716.626655pt;}
.x13{left:720.306655pt;}
.x37{left:724.293321pt;}
}




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