
    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_a0c418f8ece528d21bcef8ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1724583085750030321866e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ec6da8d718e5d0ac7ee45494.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f546c3081beec3318a8f71cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_63c297fd45eadae8d600a86b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_ea09f6a5c7d9a3f9a2a3537f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_29f8258f7e764c708d562d05.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_94f603eaae8aec7666e485dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b906d192fda2de9d52a4aad2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c5c780c9fadbc58d385d6fce.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f1cb93435e868d500b703ab2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.213673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213673,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244737,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246263,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246917,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.270723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270723,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.119754px;}
.v6{vertical-align:-19.553466px;}
.v4{vertical-align:-17.848386px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.239868px;}
.v3{vertical-align:33.119754px;}
.v1{vertical-align:38.879880px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.066240px;}
.ls2{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.358560px;}
.ls3{letter-spacing:12.597124px;}
.lsa{letter-spacing:16.557367px;}
.lsb{letter-spacing:16.557553px;}
.ls1{letter-spacing:21.236310px;}
.ls7{letter-spacing:32.144022px;}
.ls9{letter-spacing:32.396230px;}
.ls6{letter-spacing:33.261472px;}
.ls5{letter-spacing:219.351868px;}
.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;}
}
.wsf{word-spacing:-66.570804px;}
.wse{word-spacing:-60.518916px;}
.ws1d{word-spacing:-60.118560px;}
.ws1c{word-spacing:-59.760000px;}
.ws1e{word-spacing:-21.060000px;}
.ws14{word-spacing:-19.553684px;}
.ws4{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.848420px;}
.wsb{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.298560px;}
.ws10{word-spacing:-15.129729px;}
.ws7{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws13{word-spacing:-11.406315px;}
.ws19{word-spacing:-10.620000px;}
.ws11{word-spacing:-10.411578px;}
.ws22{word-spacing:-2.278021px;}
.ws23{word-spacing:-2.172330px;}
.ws1f{word-spacing:-0.471874px;}
.ws16{word-spacing:-0.219023px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.152660px;}
.ws3{word-spacing:0.235271px;}
.ws1{word-spacing:0.284423px;}
.ws17{word-spacing:0.293107px;}
.ws20{word-spacing:0.294553px;}
.ws21{word-spacing:0.439219px;}
.ws12{word-spacing:0.611579px;}
.wsc{word-spacing:2.520455px;}
.wsa{word-spacing:4.114995px;}
.ws6{word-spacing:4.937383px;}
.ws1b{word-spacing:6.407406px;}
.ws15{word-spacing:6.411263px;}
.ws9{word-spacing:11.882260px;}
.wsd{word-spacing:14.039550px;}
.ws1a{word-spacing:46.771915px;}
._2a{margin-left:-715.663923px;}
._2b{margin-left:-709.790581px;}
._2e{margin-left:-705.010092px;}
._29{margin-left:-665.964737px;}
._31{margin-left:-660.034722px;}
._2c{margin-left:-658.500328px;}
._26{margin-left:-588.018432px;}
._33{margin-left:-581.880612px;}
._2d{margin-left:-580.517534px;}
._30{margin-left:-550.679820px;}
._28{margin-left:-546.821234px;}
._32{margin-left:-534.624860px;}
._3a{margin-left:-499.648627px;}
._24{margin-left:-495.930177px;}
._25{margin-left:-494.112640px;}
._36{margin-left:-486.320079px;}
._34{margin-left:-466.467518px;}
._27{margin-left:-465.032189px;}
._38{margin-left:-450.272551px;}
._3b{margin-left:-391.505526px;}
._2f{margin-left:-211.720681px;}
._39{margin-left:-127.963335px;}
._3d{margin-left:-123.728537px;}
._37{margin-left:-114.028945px;}
._35{margin-left:-107.061885px;}
._3c{margin-left:-95.853537px;}
._23{margin-left:-47.536121px;}
._3e{margin-left:-38.008535px;}
._40{margin-left:-36.562562px;}
._3f{margin-left:-34.774142px;}
._44{margin-left:-3.510720px;}
._15{margin-left:-2.016000px;}
._1{margin-left:-1.015920px;}
._0{width:1.075680px;}
._5{width:2.302560px;}
._3{width:4.174560px;}
._2{width:5.232960px;}
._7{width:6.712560px;}
._6{width:7.816320px;}
._a{width:9.229680px;}
._9{width:10.333440px;}
._11{width:11.525760px;}
._14{width:13.491360px;}
._d{width:14.506560px;}
._c{width:16.324715px;}
._8{width:18.083520px;}
._b{width:19.540800px;}
._4{width:21.064320px;}
._17{width:22.190400px;}
._e{width:24.036658px;}
._19{width:25.245652px;}
._16{width:26.683307px;}
._1a{width:27.813348px;}
._1e{width:29.150172px;}
._12{width:30.669120px;}
._13{width:31.751280px;}
._41{width:33.261472px;}
._10{width:34.754218px;}
._f{width:35.796240px;}
._1d{width:39.327417px;}
._1f{width:40.577393px;}
._18{width:41.672465px;}
._1b{width:44.712000px;}
._1c{width:46.198080px;}
._20{width:47.619360px;}
._42{width:53.792658px;}
._45{width:59.307158px;}
._22{width:63.319002px;}
._21{width:66.097407px;}
._43{width:75.182400px;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.646312px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:42.480000px;}
.fsf{font-size:45.625260px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:60.518916px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fsc{font-size:66.570804px;}
.fse{font-size:71.393682px;}
.fs0{font-size:72.000000px;}
.fs12{font-size:72.822858px;}
.fs10{font-size:78.214734px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:0.000029px;}
.y47{bottom:3.240003px;}
.y12b{bottom:3.419976px;}
.y14e{bottom:3.419993px;}
.y128{bottom:3.420007px;}
.y122{bottom:3.420011px;}
.y12e{bottom:3.420039px;}
.y11f{bottom:3.420041px;}
.y12c{bottom:3.779961px;}
.y14a{bottom:3.779979px;}
.y15c{bottom:3.779985px;}
.y129{bottom:3.779992px;}
.y123{bottom:3.779996px;}
.y165{bottom:3.779999px;}
.y12f{bottom:3.780024px;}
.y120{bottom:3.780025px;}
.y11c{bottom:4.320035px;}
.y11d{bottom:4.680020px;}
.y131{bottom:4.859976px;}
.y153{bottom:4.859981px;}
.y10a{bottom:4.859997px;}
.y110{bottom:5.039988px;}
.y132{bottom:5.219961px;}
.y125{bottom:5.219963px;}
.y10b{bottom:5.219982px;}
.y116{bottom:5.220000px;}
.y113{bottom:5.220006px;}
.y10d{bottom:5.220008px;}
.y154{bottom:5.220021px;}
.y111{bottom:5.400019px;}
.y114{bottom:5.579991px;}
.y10e{bottom:5.579994px;}
.y117{bottom:5.580009px;}
.y126{bottom:5.580040px;}
.ye3{bottom:6.129471px;}
.yeb{bottom:6.129474px;}
.ydf{bottom:6.129475px;}
.yd6{bottom:6.129504px;}
.ye7{bottom:6.129515px;}
.y144{bottom:6.480006px;}
.yda{bottom:6.697932px;}
.y107{bottom:7.019998px;}
.yd1{bottom:7.224789px;}
.y108{bottom:7.379983px;}
.y102{bottom:7.560003px;}
.y104{bottom:7.739988px;}
.y11a{bottom:7.739997px;}
.y105{bottom:8.100018px;}
.yf1{bottom:9.282827px;}
.yf6{bottom:10.591567px;}
.ye4{bottom:10.591569px;}
.yec{bottom:10.591570px;}
.ye0{bottom:10.591572px;}
.yd7{bottom:10.591600px;}
.ye8{bottom:10.591611px;}
.yd3{bottom:11.385448px;}
.ydb{bottom:11.586299px;}
.y146{bottom:12.420007px;}
.y16a{bottom:12.420014px;}
.yf2{bottom:13.834279px;}
.y151{bottom:15.660009px;}
.y142{bottom:15.840006px;}
.y15b{bottom:20.880022px;}
.y164{bottom:21.059982px;}
.y149{bottom:21.060008px;}
.y145{bottom:21.060023px;}
.y141{bottom:33.119989px;}
.yd2{bottom:35.309346px;}
.y15a{bottom:38.160006px;}
.y148{bottom:38.339991px;}
.y163{bottom:38.340012px;}
.yd4{bottom:39.470028px;}
.y169{bottom:46.799988px;}
.y159{bottom:55.439990px;}
.y162{bottom:55.440003px;}
.y168{bottom:64.080017px;}
.y5{bottom:66.525004px;}
.y161{bottom:72.719987px;}
.y158{bottom:72.720018px;}
.y167{bottom:81.360000px;}
.y157{bottom:90.000001px;}
.y160{bottom:90.000015px;}
.y4{bottom:97.125005px;}
.y156{bottom:107.279985px;}
.y15f{bottom:107.279999px;}
.y166{bottom:115.920013px;}
.y15e{bottom:124.559982px;}
.y21{bottom:139.264499px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y46{bottom:277.380022px;}
.y45{bottom:278.459994px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y14d{bottom:297.360013px;}
.y14c{bottom:298.440011px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yd0{bottom:320.760021px;}
.y43{bottom:322.740000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yb9{bottom:336.240000px;}
.y42{bottom:340.019984px;}
.y115{bottom:340.200021px;}
.y6e{bottom:341.280002px;}
.yf{bottom:348.133500px;}
.y174{bottom:351.719988px;}
.y192{bottom:353.339991px;}
.yb8{bottom:355.139987px;}
.y41{bottom:358.019984px;}
.y6d{bottom:360.360003px;}
.y112{bottom:360.900019px;}
.y40{bottom:366.300018px;}
.y173{bottom:370.619997px;}
.y191{bottom:372.419993px;}
.yb7{bottom:374.039996px;}
.y6c{bottom:379.259990px;}
.y10f{bottom:381.780019px;}
.ye{bottom:386.785499px;}
.y172{bottom:389.699998px;}
.y190{bottom:391.319979px;}
.yb6{bottom:393.119997px;}
.y6b{bottom:398.340013px;}
.ycf{bottom:399.959994px;}
.y10c{bottom:402.480019px;}
.y3f{bottom:404.100007px;}
.yd{bottom:408.044999px;}
.y171{bottom:408.600007px;}
.y147{bottom:409.140019px;}
.y18f{bottom:410.399981px;}
.yc8{bottom:412.020006px;}
.y6a{bottom:417.239978px;}
.yce{bottom:419.039995px;}
.y3e{bottom:422.999972px;}
.y109{bottom:423.360019px;}
.y15d{bottom:424.620010px;}
.y170{bottom:427.499972px;}
.y18e{bottom:429.299989px;}
.yb5{bottom:431.100007px;}
.y69{bottom:436.139986px;}
.y93{bottom:437.940004px;}
.y3d{bottom:442.079973px;}
.y106{bottom:443.700018px;}
.y16f{bottom:446.579973px;}
.y18d{bottom:448.199998px;}
.yb4{bottom:449.999972px;}
.y68{bottom:455.219988px;}
.y92{bottom:456.839969px;}
.y140{bottom:461.700018px;}
.y16e{bottom:465.479982px;}
.y18c{bottom:467.280002px;}
.y103{bottom:468.000018px;}
.yb3{bottom:468.899981px;}
.y67{bottom:474.119997px;}
.y91{bottom:475.919970px;}
.y3c{bottom:480.600007px;}
.y16d{bottom:484.559985px;}
.y18b{bottom:486.180010px;}
.yb2{bottom:487.979982px;}
.y66{bottom:493.199998px;}
.y90{bottom:494.819979px;}
.y101{bottom:494.820016px;}
.y143{bottom:496.980016px;}
.yc{bottom:502.864502px;}
.y16c{bottom:503.459994px;}
.y18a{bottom:505.259966px;}
.yb1{bottom:506.879991px;}
.y65{bottom:512.100007px;}
.y8f{bottom:513.899980px;}
.yb{bottom:520.864502px;}
.y189{bottom:524.159974px;}
.yc7{bottom:525.600007px;}
.yb0{bottom:525.959994px;}
.ycc{bottom:530.999972px;}
.y8e{bottom:532.799989px;}
.y100{bottom:538.379991px;}
.ya{bottom:538.864499px;}
.y3b{bottom:542.699998px;}
.y188{bottom:543.059985px;}
.y13f{bottom:543.600007px;}
.y16b{bottom:543.780002px;}
.yaf{bottom:544.860003px;}
.y64{bottom:550.079973px;}
.y8d{bottom:551.699998px;}
.y9{bottom:556.864499px;}
.y187{bottom:562.139986px;}
.y155{bottom:563.400008px;}
.yae{bottom:563.759966px;}
.yc6{bottom:565.559985px;}
.y63{bottom:568.979982px;}
.y8c{bottom:570.780002px;}
.yff{bottom:576.719988px;}
.y186{bottom:581.039995px;}
.y13e{bottom:581.940004px;}
.yc5{bottom:584.459994px;}
.y3a{bottom:585.179964px;}
.y62{bottom:588.059985px;}
.y8b{bottom:589.679964px;}
.yfe{bottom:595.619997px;}
.y185{bottom:600.119997px;}
.y13d{bottom:601.020006px;}
.yad{bottom:601.739978px;}
.yc4{bottom:603.539995px;}
.y39{bottom:604.799989px;}
.y61{bottom:606.959994px;}
.y8a{bottom:608.759966px;}
.y184{bottom:619.020006px;}
.y13c{bottom:619.919970px;}
.yac{bottom:620.819979px;}
.yc3{bottom:622.440004px;}
.y60{bottom:625.860003px;}
.y89{bottom:627.659974px;}
.yfd{bottom:636.119997px;}
.y183{bottom:638.100007px;}
.y13b{bottom:638.819979px;}
.yab{bottom:639.719988px;}
.yc2{bottom:641.520006px;}
.y5f{bottom:644.940004px;}
.y8{bottom:645.510000px;}
.y88{bottom:646.559985px;}
.y38{bottom:647.819979px;}
.y182{bottom:656.999972px;}
.y13a{bottom:657.899980px;}
.yaa{bottom:658.799989px;}
.yc1{bottom:660.419970px;}
.y5e{bottom:663.839969px;}
.y87{bottom:665.639986px;}
.y7{bottom:666.771000px;}
.y37{bottom:667.979982px;}
.y181{bottom:675.899980px;}
.y139{bottom:676.799989px;}
.yc0{bottom:679.319979px;}
.y5d{bottom:682.919970px;}
.y86{bottom:684.539995px;}
.y150{bottom:684.900005px;}
.y36{bottom:687.059985px;}
.y180{bottom:694.979982px;}
.ya9{bottom:696.599963px;}
.yfc{bottom:697.499972px;}
.ybf{bottom:698.399980px;}
.y5c{bottom:701.819979px;}
.y85{bottom:703.619997px;}
.y35{bottom:705.959994px;}
.y152{bottom:706.500004px;}
.y17f{bottom:713.879991px;}
.y138{bottom:714.780002px;}
.ya8{bottom:715.679964px;}
.yfb{bottom:716.399980px;}
.ybe{bottom:717.299989px;}
.ycb{bottom:720.719988px;}
.y84{bottom:722.520006px;}
.y34{bottom:724.860003px;}
.y6{bottom:726.298500px;}
.y17e{bottom:732.959994px;}
.y137{bottom:733.860003px;}
.ya7{bottom:734.579973px;}
.yfa{bottom:735.479982px;}
.ybd{bottom:736.379991px;}
.y5b{bottom:739.799989px;}
.y83{bottom:741.419970px;}
.y33{bottom:743.940004px;}
.y14f{bottom:750.240006px;}
.y17d{bottom:751.860003px;}
.y3{bottom:752.599495px;}
.y136{bottom:752.759966px;}
.ya6{bottom:753.659974px;}
.yf9{bottom:754.379991px;}
.y5a{bottom:758.699998px;}
.y82{bottom:760.499972px;}
.y32{bottom:762.839969px;}
.y17c{bottom:770.760012px;}
.y135{bottom:771.659974px;}
.ya5{bottom:772.559939px;}
.ybc{bottom:773.999972px;}
.y59{bottom:777.780001px;}
.y81{bottom:779.400027px;}
.y31{bottom:781.920015px;}
.y17b{bottom:789.839968px;}
.y134{bottom:790.740023px;}
.ya4{bottom:791.459994px;}
.yf8{bottom:792.359957px;}
.y58{bottom:796.679964px;}
.ycd{bottom:798.479982px;}
.y30{bottom:800.819979px;}
.yf5{bottom:807.120011px;}
.y14b{bottom:807.839997px;}
.y17a{bottom:808.740023px;}
.y133{bottom:809.639986px;}
.ya3{bottom:810.539949px;}
.ybb{bottom:812.879946px;}
.y57{bottom:815.760012px;}
.y80{bottom:817.379946px;}
.yf7{bottom:817.740023px;}
.y2f{bottom:819.719942px;}
.y179{bottom:827.819979px;}
.ya2{bottom:829.440004px;}
.y56{bottom:834.659974px;}
.y7f{bottom:836.459994px;}
.y2e{bottom:838.799990px;}
.yf4{bottom:839.519961px;}
.y130{bottom:846.000009px;}
.y178{bottom:846.719942px;}
.ya1{bottom:848.519961px;}
.y55{bottom:853.559939px;}
.yf0{bottom:854.280009px;}
.y7e{bottom:855.359957px;}
.y2d{bottom:857.699954px;}
.y177{bottom:865.619997px;}
.y12d{bottom:866.160009px;}
.ya0{bottom:867.420015px;}
.yf3{bottom:867.959994px;}
.yca{bottom:872.639986px;}
.y7d{bottom:874.260012px;}
.y2c{bottom:876.780001px;}
.y2{bottom:879.369000px;}
.y12a{bottom:883.440009px;}
.y176{bottom:884.699954px;}
.y9f{bottom:886.319979px;}
.yef{bottom:890.459994px;}
.y54{bottom:891.539949px;}
.y7c{bottom:893.339968px;}
.y2b{bottom:896.399936px;}
.y127{bottom:900.720008px;}
.y9e{bottom:905.399936px;}
.yee{bottom:909.359957px;}
.y53{bottom:910.619997px;}
.y7b{bottom:912.240023px;}
.y124{bottom:918.000008px;}
.yea{bottom:924.120008px;}
.y9d{bottom:924.299990px;}
.y175{bottom:925.019961px;}
.y52{bottom:929.519961px;}
.y7a{bottom:931.319979px;}
.yed{bottom:934.740023px;}
.y121{bottom:938.880007px;}
.y51{bottom:948.420015px;}
.y79{bottom:950.219942px;}
.ye6{bottom:952.380007px;}
.y2a{bottom:954.719942px;}
.y11e{bottom:956.160007px;}
.y9c{bottom:962.280001px;}
.ye9{bottom:962.999972px;}
.y1{bottom:966.726000px;}
.y50{bottom:967.499972px;}
.yba{bottom:969.119997px;}
.y11b{bottom:973.440006px;}
.ye2{bottom:980.460006px;}
.y9b{bottom:981.179964px;}
.y29{bottom:983.699954px;}
.y4f{bottom:986.399936px;}
.y78{bottom:988.199954px;}
.ye5{bottom:991.080020px;}
.y119{bottom:993.420006px;}
.y9a{bottom:1000.260012px;}
.y4e{bottom:1005.479982px;}
.y77{bottom:1007.100007px;}
.ye1{bottom:1012.859957px;}
.y27{bottom:1013.940004px;}
.y99{bottom:1019.159974px;}
.y28{bottom:1023.660003px;}
.yc9{bottom:1024.379946px;}
.y76{bottom:1026.179964px;}
.yde{bottom:1027.620006px;}
.y98{bottom:1038.239931px;}
.y4d{bottom:1043.280001px;}
.y118{bottom:1044.719942px;}
.y75{bottom:1045.080019px;}
.y97{bottom:1057.139986px;}
.y26{bottom:1058.039949px;}
.ydd{bottom:1060.019961px;}
.y4c{bottom:1062.359956px;}
.y74{bottom:1063.979982px;}
.yd9{bottom:1074.780004px;}
.y96{bottom:1076.039949px;}
.y4b{bottom:1081.260012px;}
.y73{bottom:1083.059939px;}
.ydc{bottom:1085.399936px;}
.y25{bottom:1089.179964px;}
.y95{bottom:1095.119997px;}
.y4a{bottom:1100.339968px;}
.y72{bottom:1101.959994px;}
.yd5{bottom:1105.740003px;}
.yd8{bottom:1113.299989px;}
.y49{bottom:1119.239931px;}
.y71{bottom:1121.039949px;}
.y94{bottom:1133.639986px;}
.y48{bottom:1138.139986px;}
.y24{bottom:1138.319979px;}
.y70{bottom:1139.940004px;}
.y23{bottom:1155.420015px;}
.y6f{bottom:1177.559939px;}
.y44{bottom:1177.739931px;}
.h14{height:17.099999px;}
.h31{height:17.279998px;}
.h32{height:17.280000px;}
.h30{height:19.080000px;}
.h33{height:20.160000px;}
.h2b{height:20.339999px;}
.h2e{height:20.699998px;}
.h2d{height:20.700000px;}
.h2c{height:20.880000px;}
.h35{height:23.220000px;}
.h2a{height:24.300000px;}
.h28{height:25.380000px;}
.h29{height:26.099998px;}
.h2f{height:26.100000px;}
.h1c{height:28.440000px;}
.h1d{height:28.916531px;}
.h25{height:29.495391px;}
.h21{height:31.140000px;}
.h22{height:31.679258px;}
.h24{height:32.040000px;}
.h7{height:32.130000px;}
.he{height:33.518320px;}
.h36{height:34.559999px;}
.hd{height:37.520508px;}
.ha{height:40.501406px;}
.h13{height:41.522695px;}
.h3a{height:41.939998px;}
.h19{height:42.050009px;}
.h15{height:44.893125px;}
.h17{height:45.743790px;}
.h6{height:45.900000px;}
.h11{height:46.025156px;}
.h1b{height:46.222502px;}
.h1a{height:46.255007px;}
.h3{height:48.195000px;}
.h1e{height:49.571199px;}
.h1f{height:49.606059px;}
.hf{height:49.992188px;}
.h12{height:50.027344px;}
.h18{height:50.318166px;}
.h26{height:50.563527px;}
.h27{height:50.599085px;}
.h37{height:51.839999px;}
.h23{height:54.307301px;}
.h2{height:55.080000px;}
.h16{height:56.159998px;}
.h10{height:57.092344px;}
.h20{height:58.265024px;}
.h34{height:58.499998px;}
.hb{height:73.195312px;}
.hc{height:76.400388px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h3b{height:120.779997px;}
.h3c{height:138.059997px;}
.h38{height:892.980000px;}
.h39{height:893.250000px;}
.h0{height:1262.833500px;}
.h9{height:1262.879971px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:15.120000px;}
.w7{width:22.499998px;}
.w6{width:22.500000px;}
.wa{width:37.799998px;}
.wc{width:43.379998px;}
.w2a{width:43.919998px;}
.wd{width:45.359999px;}
.w25{width:45.899999px;}
.w28{width:46.260000px;}
.w26{width:50.939998px;}
.w1d{width:51.119998px;}
.wb{width:51.839999px;}
.w1c{width:53.819998px;}
.w27{width:53.999999px;}
.w1e{width:54.000000px;}
.w10{width:54.539998px;}
.w24{width:58.859999px;}
.w9{width:60.299998px;}
.wf{width:61.199999px;}
.w18{width:61.919999px;}
.w1f{width:63.000000px;}
.w35{width:63.539998px;}
.w29{width:63.899999px;}
.we{width:64.079998px;}
.w23{width:64.619999px;}
.w19{width:64.979999px;}
.w17{width:65.879998px;}
.w1a{width:66.059999px;}
.w36{width:66.779998px;}
.w33{width:69.839998px;}
.w39{width:70.019998px;}
.w1b{width:71.099998px;}
.w32{width:76.679999px;}
.w12{width:81.539999px;}
.w13{width:82.619997px;}
.w38{width:85.499998px;}
.w2d{width:89.099998px;}
.w15{width:90.539999px;}
.w34{width:91.439999px;}
.w14{width:91.619999px;}
.w37{width:91.979997px;}
.w16{width:92.699997px;}
.w31{width:95.399997px;}
.w11{width:113.759997px;}
.w21{width:152.639997px;}
.w22{width:163.259995px;}
.w20{width:170.819996px;}
.w2f{width:223.199995px;}
.w2e{width:243.539994px;}
.w30{width:248.759994px;}
.w8{width:396.719991px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979981px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.w2b{width:1262.880000px;}
.w2c{width:1263.000000px;}
.x0{left:0.000000px;}
.x19{left:2.442372px;}
.x23{left:4.152509px;}
.x46{left:6.300007px;}
.x42{left:7.560004px;}
.x43{left:9.540004px;}
.x41{left:10.799998px;}
.x2b{left:12.420008px;}
.x44{left:14.580004px;}
.x38{left:15.659995px;}
.x29{left:16.740009px;}
.x45{left:17.819998px;}
.x18{left:19.914753px;}
.x32{left:21.420008px;}
.x27{left:22.500000px;}
.x2f{left:23.940010px;}
.x26{left:25.920002px;}
.x33{left:27.719994px;}
.x30{left:28.799981px;}
.x1b{left:30.048977px;}
.x34{left:32.580011px;}
.x35{left:33.840000px;}
.x1f{left:35.891368px;}
.x20{left:38.403005px;}
.x2e{left:40.500003px;}
.x31{left:43.019992px;}
.x1d{left:45.155018px;}
.x22{left:47.195155px;}
.x17{left:53.356495px;}
.x21{left:56.701970px;}
.x55{left:66.240009px;}
.x58{left:70.919989px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x25{left:161.999997px;}
.x40{left:167.939996px;}
.x5{left:170.099991px;}
.x8{left:191.339997px;}
.x9{left:199.620003px;}
.x16{left:202.139995px;}
.x4{left:203.484001px;}
.x37{left:221.939996px;}
.x5f{left:224.099991px;}
.x47{left:234.359995px;}
.x36{left:236.519989px;}
.xe{left:241.199994px;}
.x14{left:258.625063px;}
.x1a{left:276.479988px;}
.xb{left:283.139992px;}
.x39{left:286.019994px;}
.x1c{left:293.040002px;}
.x1e{left:297.179992px;}
.x4a{left:299.699994px;}
.x13{left:310.903278px;}
.x12{left:315.494922px;}
.x11{left:319.035448px;}
.x10{left:325.618640px;}
.x53{left:329.939993px;}
.x24{left:343.799996px;}
.x3a{left:351.899992px;}
.x6{left:355.679992px;}
.x28{left:357.299992px;}
.x4b{left:359.279992px;}
.x7{left:362.519989px;}
.x15{left:376.015948px;}
.xf{left:377.896854px;}
.x48{left:405.899991px;}
.x3b{left:413.819991px;}
.x54{left:419.759991px;}
.x2a{left:439.919989px;}
.x3{left:454.959000px;}
.x4c{left:457.559989px;}
.x3c{left:478.799990px;}
.x50{left:486.719970px;}
.x4d{left:512.279988px;}
.x59{left:516.059988px;}
.x2c{left:531.539988px;}
.x3d{left:544.859988px;}
.x49{left:559.259988px;}
.x52{left:571.500000px;}
.x5a{left:593.459987px;}
.x3e{left:615.959987px;}
.x2d{left:622.079987px;}
.x4e{left:623.879986px;}
.xc{left:637.740006px;}
.x56{left:664.199985px;}
.x3f{left:669.779985px;}
.x4f{left:678.599985px;}
.xd{left:700.379985px;}
.xa{left:707.759983px;}
.x5b{left:756.359983px;}
.x5c{left:820.619982px;}
.x57{left:888.299981px;}
.x5d{left:980.999978px;}
.x5e{left:1067.219976px;}
.x51{left:1125.719975px;}
@media print{
.v2{vertical-align:-29.439781pt;}
.v6{vertical-align:-17.380859pt;}
.v4{vertical-align:-15.865232pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.879883pt;}
.v3{vertical-align:29.439781pt;}
.v1{vertical-align:34.559893pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.058880pt;}
.ls2{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.318720pt;}
.ls3{letter-spacing:11.197444pt;}
.lsa{letter-spacing:14.717660pt;}
.lsb{letter-spacing:14.717825pt;}
.ls1{letter-spacing:18.876720pt;}
.ls7{letter-spacing:28.572464pt;}
.ls9{letter-spacing:28.796649pt;}
.ls6{letter-spacing:29.565753pt;}
.ls5{letter-spacing:194.979438pt;}
.wsf{word-spacing:-59.174048pt;}
.wse{word-spacing:-53.794592pt;}
.ws1d{word-spacing:-53.438720pt;}
.ws1c{word-spacing:-53.120000pt;}
.ws1e{word-spacing:-18.720000pt;}
.ws14{word-spacing:-17.381052pt;}
.ws4{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.865263pt;}
.wsb{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.598720pt;}
.ws10{word-spacing:-13.448648pt;}
.ws7{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws13{word-spacing:-10.138947pt;}
.ws19{word-spacing:-9.440000pt;}
.ws11{word-spacing:-9.254736pt;}
.ws22{word-spacing:-2.024907pt;}
.ws23{word-spacing:-1.930960pt;}
.ws1f{word-spacing:-0.419443pt;}
.ws16{word-spacing:-0.194687pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.135698pt;}
.ws3{word-spacing:0.209130pt;}
.ws1{word-spacing:0.252821pt;}
.ws17{word-spacing:0.260539pt;}
.ws20{word-spacing:0.261824pt;}
.ws21{word-spacing:0.390417pt;}
.ws12{word-spacing:0.543626pt;}
.wsc{word-spacing:2.240404pt;}
.wsa{word-spacing:3.657773pt;}
.ws6{word-spacing:4.388785pt;}
.ws1b{word-spacing:5.695472pt;}
.ws15{word-spacing:5.698900pt;}
.ws9{word-spacing:10.562009pt;}
.wsd{word-spacing:12.479600pt;}
.ws1a{word-spacing:41.575036pt;}
._2a{margin-left:-636.145709pt;}
._2b{margin-left:-630.924961pt;}
._2e{margin-left:-626.675637pt;}
._29{margin-left:-591.968655pt;}
._31{margin-left:-586.697531pt;}
._2c{margin-left:-585.333624pt;}
._26{margin-left:-522.683051pt;}
._33{margin-left:-517.227210pt;}
._2d{margin-left:-516.015585pt;}
._30{margin-left:-489.493174pt;}
._28{margin-left:-486.063319pt;}
._32{margin-left:-475.222098pt;}
._3a{margin-left:-444.132113pt;}
._24{margin-left:-440.826824pt;}
._25{margin-left:-439.211236pt;}
._36{margin-left:-432.284515pt;}
._34{margin-left:-414.637793pt;}
._27{margin-left:-413.361945pt;}
._38{margin-left:-400.242268pt;}
._3b{margin-left:-348.004912pt;}
._2f{margin-left:-188.196160pt;}
._39{margin-left:-113.745187pt;}
._3d{margin-left:-109.980922pt;}
._37{margin-left:-101.359062pt;}
._35{margin-left:-95.166120pt;}
._3c{margin-left:-85.203144pt;}
._23{margin-left:-42.254330pt;}
._3e{margin-left:-33.785365pt;}
._40{margin-left:-32.500055pt;}
._3f{margin-left:-30.910348pt;}
._44{margin-left:-3.120640pt;}
._15{margin-left:-1.792000pt;}
._1{margin-left:-0.903040pt;}
._0{width:0.956160pt;}
._5{width:2.046720pt;}
._3{width:3.710720pt;}
._2{width:4.651520pt;}
._7{width:5.966720pt;}
._6{width:6.947840pt;}
._a{width:8.204160pt;}
._9{width:9.185280pt;}
._11{width:10.245120pt;}
._14{width:11.992320pt;}
._d{width:12.894720pt;}
._c{width:14.510858pt;}
._8{width:16.074240pt;}
._b{width:17.369600pt;}
._4{width:18.723840pt;}
._17{width:19.724800pt;}
._e{width:21.365919pt;}
._19{width:22.440579pt;}
._16{width:23.718495pt;}
._1a{width:24.722976pt;}
._1e{width:25.911264pt;}
._12{width:27.261440pt;}
._13{width:28.223360pt;}
._41{width:29.565753pt;}
._10{width:30.892638pt;}
._f{width:31.818880pt;}
._1d{width:34.957704pt;}
._1f{width:36.068794pt;}
._18{width:37.042191pt;}
._1b{width:39.744000pt;}
._1c{width:41.064960pt;}
._20{width:42.328320pt;}
._42{width:47.815696pt;}
._45{width:52.717474pt;}
._22{width:56.283557pt;}
._21{width:58.753251pt;}
._43{width:66.828800pt;}
.fsd{font-size:37.018944pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:37.760000pt;}
.fsf{font-size:40.555787pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:53.794592pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fsc{font-size:59.174048pt;}
.fse{font-size:63.461051pt;}
.fs0{font-size:64.000000pt;}
.fs12{font-size:64.731429pt;}
.fs10{font-size:69.524208pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.000025pt;}
.y47{bottom:2.880003pt;}
.y12b{bottom:3.039979pt;}
.y14e{bottom:3.039993pt;}
.y128{bottom:3.040007pt;}
.y122{bottom:3.040009pt;}
.y12e{bottom:3.040035pt;}
.y11f{bottom:3.040036pt;}
.y12c{bottom:3.359965pt;}
.y14a{bottom:3.359981pt;}
.y15c{bottom:3.359987pt;}
.y129{bottom:3.359993pt;}
.y123{bottom:3.359996pt;}
.y165{bottom:3.359999pt;}
.y12f{bottom:3.360021pt;}
.y120{bottom:3.360023pt;}
.y11c{bottom:3.840031pt;}
.y11d{bottom:4.160017pt;}
.y131{bottom:4.319979pt;}
.y153{bottom:4.319983pt;}
.y10a{bottom:4.319997pt;}
.y110{bottom:4.479989pt;}
.y132{bottom:4.639965pt;}
.y125{bottom:4.639967pt;}
.y10b{bottom:4.639984pt;}
.y116{bottom:4.640000pt;}
.y113{bottom:4.640005pt;}
.y10d{bottom:4.640007pt;}
.y154{bottom:4.640019pt;}
.y111{bottom:4.800017pt;}
.y114{bottom:4.959992pt;}
.y10e{bottom:4.959995pt;}
.y117{bottom:4.960008pt;}
.y126{bottom:4.960036pt;}
.ye3{bottom:5.448419pt;}
.yeb{bottom:5.448421pt;}
.ydf{bottom:5.448423pt;}
.yd6{bottom:5.448448pt;}
.ye7{bottom:5.448457pt;}
.y144{bottom:5.760005pt;}
.yda{bottom:5.953717pt;}
.y107{bottom:6.239999pt;}
.yd1{bottom:6.422035pt;}
.y108{bottom:6.559985pt;}
.y102{bottom:6.720003pt;}
.y104{bottom:6.879989pt;}
.y11a{bottom:6.879997pt;}
.y105{bottom:7.200016pt;}
.yf1{bottom:8.251401pt;}
.yf6{bottom:9.414727pt;}
.ye4{bottom:9.414728pt;}
.yec{bottom:9.414729pt;}
.ye0{bottom:9.414731pt;}
.yd7{bottom:9.414756pt;}
.ye8{bottom:9.414765pt;}
.yd3{bottom:10.120399pt;}
.ydb{bottom:10.298932pt;}
.y146{bottom:11.040007pt;}
.y16a{bottom:11.040012pt;}
.yf2{bottom:12.297137pt;}
.y151{bottom:13.920008pt;}
.y142{bottom:14.080005pt;}
.y15b{bottom:18.560020pt;}
.y164{bottom:18.719984pt;}
.y149{bottom:18.720007pt;}
.y145{bottom:18.720020pt;}
.y141{bottom:29.439991pt;}
.yd2{bottom:31.386085pt;}
.y15a{bottom:33.920005pt;}
.y148{bottom:34.079992pt;}
.y163{bottom:34.080011pt;}
.yd4{bottom:35.084469pt;}
.y169{bottom:41.599989pt;}
.y159{bottom:49.279991pt;}
.y162{bottom:49.280003pt;}
.y168{bottom:56.960015pt;}
.y5{bottom:59.133337pt;}
.y161{bottom:64.639988pt;}
.y158{bottom:64.640016pt;}
.y167{bottom:72.320000pt;}
.y157{bottom:80.000001pt;}
.y160{bottom:80.000013pt;}
.y4{bottom:86.333337pt;}
.y156{bottom:95.359987pt;}
.y15f{bottom:95.359999pt;}
.y166{bottom:103.040012pt;}
.y15e{bottom:110.719984pt;}
.y21{bottom:123.790666pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y46{bottom:246.560020pt;}
.y45{bottom:247.519995pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y14d{bottom:264.320012pt;}
.y14c{bottom:265.280009pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yd0{bottom:285.120019pt;}
.y43{bottom:286.880000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yb9{bottom:298.880000pt;}
.y42{bottom:302.239985pt;}
.y115{bottom:302.400019pt;}
.y6e{bottom:303.360001pt;}
.yf{bottom:309.452000pt;}
.y174{bottom:312.639989pt;}
.y192{bottom:314.079992pt;}
.yb8{bottom:315.679988pt;}
.y41{bottom:318.239985pt;}
.y6d{bottom:320.320003pt;}
.y112{bottom:320.800017pt;}
.y40{bottom:325.600016pt;}
.y173{bottom:329.439997pt;}
.y191{bottom:331.039993pt;}
.yb7{bottom:332.479996pt;}
.y6c{bottom:337.119991pt;}
.y10f{bottom:339.360017pt;}
.ye{bottom:343.809333pt;}
.y172{bottom:346.399999pt;}
.y190{bottom:347.839981pt;}
.yb6{bottom:349.439997pt;}
.y6b{bottom:354.080012pt;}
.ycf{bottom:355.519995pt;}
.y10c{bottom:357.760017pt;}
.y3f{bottom:359.200007pt;}
.yd{bottom:362.706666pt;}
.y171{bottom:363.200007pt;}
.y147{bottom:363.680017pt;}
.y18f{bottom:364.799983pt;}
.yc8{bottom:366.240005pt;}
.y6a{bottom:370.879980pt;}
.yce{bottom:372.479996pt;}
.y3e{bottom:375.999975pt;}
.y109{bottom:376.320017pt;}
.y15d{bottom:377.440009pt;}
.y170{bottom:379.999975pt;}
.y18e{bottom:381.599991pt;}
.yb5{bottom:383.200007pt;}
.y69{bottom:387.679988pt;}
.y93{bottom:389.280004pt;}
.y3d{bottom:392.959976pt;}
.y106{bottom:394.400016pt;}
.y16f{bottom:396.959976pt;}
.y18d{bottom:398.399999pt;}
.yb4{bottom:399.999975pt;}
.y68{bottom:404.639989pt;}
.y92{bottom:406.079972pt;}
.y140{bottom:410.400016pt;}
.y16e{bottom:413.759984pt;}
.y18c{bottom:415.360001pt;}
.y103{bottom:416.000016pt;}
.yb3{bottom:416.799983pt;}
.y67{bottom:421.439997pt;}
.y91{bottom:423.039973pt;}
.y3c{bottom:427.200007pt;}
.y16d{bottom:430.719987pt;}
.y18b{bottom:432.160009pt;}
.yb2{bottom:433.759984pt;}
.y66{bottom:438.399999pt;}
.y90{bottom:439.839981pt;}
.y101{bottom:439.840015pt;}
.y143{bottom:441.760015pt;}
.yc{bottom:446.990669pt;}
.y16c{bottom:447.519995pt;}
.y18a{bottom:449.119969pt;}
.yb1{bottom:450.559992pt;}
.y65{bottom:455.200007pt;}
.y8f{bottom:456.799983pt;}
.yb{bottom:462.990669pt;}
.y189{bottom:465.919977pt;}
.yc7{bottom:467.200007pt;}
.yb0{bottom:467.519995pt;}
.ycc{bottom:471.999975pt;}
.y8e{bottom:473.599991pt;}
.y100{bottom:478.559992pt;}
.ya{bottom:478.990666pt;}
.y3b{bottom:482.399999pt;}
.y188{bottom:482.719987pt;}
.y13f{bottom:483.200007pt;}
.y16b{bottom:483.360001pt;}
.yaf{bottom:484.320003pt;}
.y64{bottom:488.959976pt;}
.y8d{bottom:490.399999pt;}
.y9{bottom:494.990666pt;}
.y187{bottom:499.679988pt;}
.y155{bottom:500.800007pt;}
.yae{bottom:501.119969pt;}
.yc6{bottom:502.719987pt;}
.y63{bottom:505.759984pt;}
.y8c{bottom:507.360001pt;}
.yff{bottom:512.639989pt;}
.y186{bottom:516.479996pt;}
.y13e{bottom:517.280004pt;}
.yc5{bottom:519.519995pt;}
.y3a{bottom:520.159968pt;}
.y62{bottom:522.719987pt;}
.y8b{bottom:524.159968pt;}
.yfe{bottom:529.439997pt;}
.y185{bottom:533.439997pt;}
.y13d{bottom:534.240005pt;}
.yad{bottom:534.879980pt;}
.yc4{bottom:536.479996pt;}
.y39{bottom:537.599991pt;}
.y61{bottom:539.519995pt;}
.y8a{bottom:541.119969pt;}
.y184{bottom:550.240005pt;}
.y13c{bottom:551.039973pt;}
.yac{bottom:551.839981pt;}
.yc3{bottom:553.280004pt;}
.y60{bottom:556.320003pt;}
.y89{bottom:557.919977pt;}
.yfd{bottom:565.439997pt;}
.y183{bottom:567.200007pt;}
.y13b{bottom:567.839981pt;}
.yab{bottom:568.639989pt;}
.yc2{bottom:570.240005pt;}
.y5f{bottom:573.280004pt;}
.y8{bottom:573.786667pt;}
.y88{bottom:574.719987pt;}
.y38{bottom:575.839981pt;}
.y182{bottom:583.999975pt;}
.y13a{bottom:584.799983pt;}
.yaa{bottom:585.599991pt;}
.yc1{bottom:587.039973pt;}
.y5e{bottom:590.079972pt;}
.y87{bottom:591.679988pt;}
.y7{bottom:592.685334pt;}
.y37{bottom:593.759984pt;}
.y181{bottom:600.799983pt;}
.y139{bottom:601.599991pt;}
.yc0{bottom:603.839981pt;}
.y5d{bottom:607.039973pt;}
.y86{bottom:608.479996pt;}
.y150{bottom:608.800004pt;}
.y36{bottom:610.719987pt;}
.y180{bottom:617.759984pt;}
.ya9{bottom:619.199967pt;}
.yfc{bottom:619.999975pt;}
.ybf{bottom:620.799983pt;}
.y5c{bottom:623.839981pt;}
.y85{bottom:625.439997pt;}
.y35{bottom:627.519995pt;}
.y152{bottom:628.000004pt;}
.y17f{bottom:634.559992pt;}
.y138{bottom:635.360001pt;}
.ya8{bottom:636.159968pt;}
.yfb{bottom:636.799983pt;}
.ybe{bottom:637.599991pt;}
.ycb{bottom:640.639989pt;}
.y84{bottom:642.240005pt;}
.y34{bottom:644.320003pt;}
.y6{bottom:645.598667pt;}
.y17e{bottom:651.519995pt;}
.y137{bottom:652.320003pt;}
.ya7{bottom:652.959976pt;}
.yfa{bottom:653.759984pt;}
.ybd{bottom:654.559992pt;}
.y5b{bottom:657.599991pt;}
.y83{bottom:659.039973pt;}
.y33{bottom:661.280004pt;}
.y14f{bottom:666.880005pt;}
.y17d{bottom:668.320003pt;}
.y3{bottom:668.977329pt;}
.y136{bottom:669.119969pt;}
.ya6{bottom:669.919977pt;}
.yf9{bottom:670.559992pt;}
.y5a{bottom:674.399999pt;}
.y82{bottom:675.999975pt;}
.y32{bottom:678.079972pt;}
.y17c{bottom:685.120011pt;}
.y135{bottom:685.919977pt;}
.ya5{bottom:686.719945pt;}
.ybc{bottom:687.999975pt;}
.y59{bottom:691.360001pt;}
.y81{bottom:692.800024pt;}
.y31{bottom:695.040013pt;}
.y17b{bottom:702.079972pt;}
.y134{bottom:702.880020pt;}
.ya4{bottom:703.519995pt;}
.yf8{bottom:704.319961pt;}
.y58{bottom:708.159968pt;}
.ycd{bottom:709.759984pt;}
.y30{bottom:711.839981pt;}
.yf5{bottom:717.440009pt;}
.y14b{bottom:718.079997pt;}
.y17a{bottom:718.880020pt;}
.y133{bottom:719.679988pt;}
.ya3{bottom:720.479955pt;}
.ybb{bottom:722.559952pt;}
.y57{bottom:725.120011pt;}
.y80{bottom:726.559952pt;}
.yf7{bottom:726.880020pt;}
.y2f{bottom:728.639948pt;}
.y179{bottom:735.839981pt;}
.ya2{bottom:737.280004pt;}
.y56{bottom:741.919977pt;}
.y7f{bottom:743.519995pt;}
.y2e{bottom:745.599991pt;}
.yf4{bottom:746.239965pt;}
.y130{bottom:752.000008pt;}
.y178{bottom:752.639948pt;}
.ya1{bottom:754.239965pt;}
.y55{bottom:758.719945pt;}
.yf0{bottom:759.360008pt;}
.y7e{bottom:760.319961pt;}
.y2d{bottom:762.399959pt;}
.y177{bottom:769.439997pt;}
.y12d{bottom:769.920008pt;}
.ya0{bottom:771.040013pt;}
.yf3{bottom:771.519995pt;}
.yca{bottom:775.679988pt;}
.y7d{bottom:777.120011pt;}
.y2c{bottom:779.360001pt;}
.y2{bottom:781.661334pt;}
.y12a{bottom:785.280008pt;}
.y176{bottom:786.399959pt;}
.y9f{bottom:787.839981pt;}
.yef{bottom:791.519995pt;}
.y54{bottom:792.479955pt;}
.y7c{bottom:794.079972pt;}
.y2b{bottom:796.799943pt;}
.y127{bottom:800.640007pt;}
.y9e{bottom:804.799943pt;}
.yee{bottom:808.319961pt;}
.y53{bottom:809.439997pt;}
.y7b{bottom:810.880020pt;}
.y124{bottom:816.000007pt;}
.yea{bottom:821.440007pt;}
.y9d{bottom:821.599991pt;}
.y175{bottom:822.239965pt;}
.y52{bottom:826.239965pt;}
.y7a{bottom:827.839981pt;}
.yed{bottom:830.880020pt;}
.y121{bottom:834.560007pt;}
.y51{bottom:843.040013pt;}
.y79{bottom:844.639948pt;}
.ye6{bottom:846.560007pt;}
.y2a{bottom:848.639948pt;}
.y11e{bottom:849.920007pt;}
.y9c{bottom:855.360001pt;}
.ye9{bottom:855.999975pt;}
.y1{bottom:859.312000pt;}
.y50{bottom:859.999975pt;}
.yba{bottom:861.439997pt;}
.y11b{bottom:865.280005pt;}
.ye2{bottom:871.520005pt;}
.y9b{bottom:872.159968pt;}
.y29{bottom:874.399959pt;}
.y4f{bottom:876.799943pt;}
.y78{bottom:878.399959pt;}
.ye5{bottom:880.960017pt;}
.y119{bottom:883.040005pt;}
.y9a{bottom:889.120011pt;}
.y4e{bottom:893.759984pt;}
.y77{bottom:895.200007pt;}
.ye1{bottom:900.319961pt;}
.y27{bottom:901.280004pt;}
.y99{bottom:905.919977pt;}
.y28{bottom:909.920003pt;}
.yc9{bottom:910.559952pt;}
.y76{bottom:912.159968pt;}
.yde{bottom:913.440005pt;}
.y98{bottom:922.879939pt;}
.y4d{bottom:927.360001pt;}
.y118{bottom:928.639948pt;}
.y75{bottom:928.960017pt;}
.y97{bottom:939.679988pt;}
.y26{bottom:940.479955pt;}
.ydd{bottom:942.239965pt;}
.y4c{bottom:944.319961pt;}
.y74{bottom:945.759984pt;}
.yd9{bottom:955.360004pt;}
.y96{bottom:956.479955pt;}
.y4b{bottom:961.120011pt;}
.y73{bottom:962.719945pt;}
.ydc{bottom:964.799943pt;}
.y25{bottom:968.159968pt;}
.y95{bottom:973.439997pt;}
.y4a{bottom:978.079972pt;}
.y72{bottom:979.519995pt;}
.yd5{bottom:982.880003pt;}
.yd8{bottom:989.599991pt;}
.y49{bottom:994.879939pt;}
.y71{bottom:996.479955pt;}
.y94{bottom:1007.679988pt;}
.y48{bottom:1011.679988pt;}
.y24{bottom:1011.839981pt;}
.y70{bottom:1013.280004pt;}
.y23{bottom:1027.040013pt;}
.y6f{bottom:1046.719945pt;}
.y44{bottom:1046.879939pt;}
.h14{height:15.199999pt;}
.h31{height:15.359999pt;}
.h32{height:15.360000pt;}
.h30{height:16.960000pt;}
.h33{height:17.920000pt;}
.h2b{height:18.079999pt;}
.h2e{height:18.399999pt;}
.h2d{height:18.400000pt;}
.h2c{height:18.560000pt;}
.h35{height:20.640000pt;}
.h2a{height:21.600000pt;}
.h28{height:22.560000pt;}
.h29{height:23.199999pt;}
.h2f{height:23.200000pt;}
.h1c{height:25.280000pt;}
.h1d{height:25.703583pt;}
.h25{height:26.218125pt;}
.h21{height:27.680000pt;}
.h22{height:28.159340pt;}
.h24{height:28.480000pt;}
.h7{height:28.560000pt;}
.he{height:29.794062pt;}
.h36{height:30.719999pt;}
.hd{height:33.351562pt;}
.ha{height:36.001250pt;}
.h13{height:36.909063pt;}
.h3a{height:37.279999pt;}
.h19{height:37.377785pt;}
.h15{height:39.905000pt;}
.h17{height:40.661147pt;}
.h6{height:40.800000pt;}
.h11{height:40.911250pt;}
.h1b{height:41.086668pt;}
.h1a{height:41.115562pt;}
.h3{height:42.840000pt;}
.h1e{height:44.063288pt;}
.h1f{height:44.094275pt;}
.hf{height:44.437500pt;}
.h12{height:44.468750pt;}
.h18{height:44.727259pt;}
.h26{height:44.945358pt;}
.h27{height:44.976965pt;}
.h37{height:46.079999pt;}
.h23{height:48.273156pt;}
.h2{height:48.960000pt;}
.h16{height:49.919999pt;}
.h10{height:50.748750pt;}
.h20{height:51.791133pt;}
.h34{height:51.999999pt;}
.hb{height:65.062500pt;}
.hc{height:67.911456pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h3b{height:107.359997pt;}
.h3c{height:122.719997pt;}
.h38{height:793.760000pt;}
.h39{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h9{height:1122.559975pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:13.440000pt;}
.w7{width:19.999999pt;}
.w6{width:20.000000pt;}
.wa{width:33.599999pt;}
.wc{width:38.559999pt;}
.w2a{width:39.039999pt;}
.wd{width:40.319999pt;}
.w25{width:40.799999pt;}
.w28{width:41.120000pt;}
.w26{width:45.279999pt;}
.w1d{width:45.439999pt;}
.wb{width:46.079999pt;}
.w1c{width:47.839999pt;}
.w27{width:47.999999pt;}
.w1e{width:48.000000pt;}
.w10{width:48.479999pt;}
.w24{width:52.319999pt;}
.w9{width:53.599999pt;}
.wf{width:54.399999pt;}
.w18{width:55.039999pt;}
.w1f{width:56.000000pt;}
.w35{width:56.479999pt;}
.w29{width:56.799999pt;}
.we{width:56.959999pt;}
.w23{width:57.439999pt;}
.w19{width:57.759999pt;}
.w17{width:58.559999pt;}
.w1a{width:58.719999pt;}
.w36{width:59.359999pt;}
.w33{width:62.079999pt;}
.w39{width:62.239999pt;}
.w1b{width:63.199999pt;}
.w32{width:68.159999pt;}
.w12{width:72.479999pt;}
.w13{width:73.439997pt;}
.w38{width:75.999999pt;}
.w2d{width:79.199999pt;}
.w15{width:80.479999pt;}
.w34{width:81.279999pt;}
.w14{width:81.439999pt;}
.w37{width:81.759997pt;}
.w16{width:82.399997pt;}
.w31{width:84.799997pt;}
.w11{width:101.119997pt;}
.w21{width:135.679997pt;}
.w22{width:145.119996pt;}
.w20{width:151.839996pt;}
.w2f{width:198.399996pt;}
.w2e{width:216.479995pt;}
.w30{width:221.119995pt;}
.w8{width:352.639992pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759983pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2b{width:1122.560000pt;}
.w2c{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x19{left:2.170997pt;}
.x23{left:3.691119pt;}
.x46{left:5.600007pt;}
.x42{left:6.720004pt;}
.x43{left:8.480004pt;}
.x41{left:9.599999pt;}
.x2b{left:11.040007pt;}
.x44{left:12.960004pt;}
.x38{left:13.919996pt;}
.x29{left:14.880008pt;}
.x45{left:15.839999pt;}
.x18{left:17.702003pt;}
.x32{left:19.040007pt;}
.x27{left:20.000000pt;}
.x2f{left:21.280009pt;}
.x26{left:23.040001pt;}
.x33{left:24.639995pt;}
.x30{left:25.599983pt;}
.x1b{left:26.710201pt;}
.x34{left:28.960009pt;}
.x35{left:30.080000pt;}
.x1f{left:31.903439pt;}
.x20{left:34.136004pt;}
.x2e{left:36.000003pt;}
.x31{left:38.239993pt;}
.x1d{left:40.137793pt;}
.x22{left:41.951249pt;}
.x17{left:47.427996pt;}
.x21{left:50.401751pt;}
.x55{left:58.880008pt;}
.x58{left:63.039991pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x25{left:143.999997pt;}
.x40{left:149.279996pt;}
.x5{left:151.199992pt;}
.x8{left:170.079997pt;}
.x9{left:177.440003pt;}
.x16{left:179.679996pt;}
.x4{left:180.874667pt;}
.x37{left:197.279996pt;}
.x5f{left:199.199992pt;}
.x47{left:208.319996pt;}
.x36{left:210.239991pt;}
.xe{left:214.399995pt;}
.x14{left:229.888945pt;}
.x1a{left:245.759989pt;}
.xb{left:251.679993pt;}
.x39{left:254.239995pt;}
.x1c{left:260.480001pt;}
.x1e{left:264.159993pt;}
.x4a{left:266.399995pt;}
.x13{left:276.358469pt;}
.x12{left:280.439931pt;}
.x11{left:283.587065pt;}
.x10{left:289.438791pt;}
.x53{left:293.279993pt;}
.x24{left:305.599996pt;}
.x3a{left:312.799993pt;}
.x6{left:316.159993pt;}
.x28{left:317.599993pt;}
.x4b{left:319.359993pt;}
.x7{left:322.239991pt;}
.x15{left:334.236399pt;}
.xf{left:335.908315pt;}
.x48{left:360.799992pt;}
.x3b{left:367.839992pt;}
.x54{left:373.119992pt;}
.x2a{left:391.039991pt;}
.x3{left:404.408000pt;}
.x4c{left:406.719991pt;}
.x3c{left:425.599991pt;}
.x50{left:432.639973pt;}
.x4d{left:455.359989pt;}
.x59{left:458.719989pt;}
.x2c{left:472.479989pt;}
.x3d{left:484.319989pt;}
.x49{left:497.119989pt;}
.x52{left:508.000000pt;}
.x5a{left:527.519988pt;}
.x3e{left:547.519988pt;}
.x2d{left:552.959988pt;}
.x4e{left:554.559988pt;}
.xc{left:566.880005pt;}
.x56{left:590.399987pt;}
.x3f{left:595.359987pt;}
.x4f{left:603.199987pt;}
.xd{left:622.559987pt;}
.xa{left:629.119985pt;}
.x5b{left:672.319985pt;}
.x5c{left:729.439984pt;}
.x57{left:789.599983pt;}
.x5d{left:871.999980pt;}
.x5e{left:948.639979pt;}
.x51{left:1000.639977pt;}
}




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