
    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_0a9c7513922978e4347bed4a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_17db671aa45bdefd9f72e135.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0238926ba7101e5b32512de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_a1c493cafc005e1c7b003985.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb6321ed27a82a5c222574b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_83faf39574cd00699623d57f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_52fb8f789a3de0df25ef03b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_af8c242321d686f4e6d50a23.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_76aba3041246732a377e631b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_6dc02b3116d05ce894680261.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875488;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_2025eacfea1a42db4af22e9b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.749512;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);}
.m2{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);}
.v5{vertical-align:-139.680000px;}
.v6{vertical-align:-35.280000px;}
.v7{vertical-align:-29.520000px;}
.v2{vertical-align:-8.460000px;}
.v1{vertical-align:-3.300000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.360000px;}
.v4{vertical-align:129.720000px;}
.ls48{letter-spacing:-1.728000px;}
.ls47{letter-spacing:-1.224000px;}
.ls10{letter-spacing:-1.188000px;}
.ls26{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.319800px;}
.ls7{letter-spacing:-0.306600px;}
.ls3c{letter-spacing:-0.295800px;}
.ls3{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.234600px;}
.ls16{letter-spacing:-0.223800px;}
.ls2b{letter-spacing:-0.187800px;}
.ls2{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.086400px;}
.lsa{letter-spacing:-0.037440px;}
.ls41{letter-spacing:-0.036000px;}
.ls3f{letter-spacing:-0.004032px;}
.ls14{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000006px;}
.ls27{letter-spacing:0.026460px;}
.ls9{letter-spacing:0.037440px;}
.ls3e{letter-spacing:0.046680px;}
.ls11{letter-spacing:0.051840px;}
.ls18{letter-spacing:0.057600px;}
.ls17{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.090600px;}
.ls35{letter-spacing:0.092400px;}
.ls37{letter-spacing:0.094800px;}
.ls6{letter-spacing:0.106800px;}
.ls32{letter-spacing:0.134400px;}
.ls19{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.147600px;}
.ls20{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.181200px;}
.ls30{letter-spacing:0.216000px;}
.ls46{letter-spacing:0.232200px;}
.ls38{letter-spacing:0.234600px;}
.ls15{letter-spacing:0.247800px;}
.ls3a{letter-spacing:0.250800px;}
.ls43{letter-spacing:0.252000px;}
.ls2f{letter-spacing:0.280200px;}
.lsc{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.297600px;}
.ls2d{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.394800px;}
.ls25{letter-spacing:0.441600px;}
.ls1a{letter-spacing:0.864000px;}
.ls24{letter-spacing:0.984000px;}
.ls44{letter-spacing:29.736000px;}
.ls42{letter-spacing:29.952000px;}
.ls12{letter-spacing:40.320000px;}
.ls23{letter-spacing:56.304000px;}
.lsf{letter-spacing:62.021376px;}
.lse{letter-spacing:62.101440px;}
.ls29{letter-spacing:65.865600px;}
.ls28{letter-spacing:65.916000px;}
.ls2a{letter-spacing:68.426496px;}
.ls5{letter-spacing:68.506560px;}
.ls1d{letter-spacing:85.824000px;}
.ls1f{letter-spacing:85.944000px;}
.ls1c{letter-spacing:86.544000px;}
.ls1e{letter-spacing:86.664000px;}
.ls1b{letter-spacing:86.712000px;}
.ls22{letter-spacing:98.821440px;}
.ls13{letter-spacing:111.537600px;}
.ls1{letter-spacing:111.588000px;}
.ls4{letter-spacing:115.872000px;}
.ls33{letter-spacing:116.064000px;}
.ls2e{letter-spacing:119.853600px;}
.ls2c{letter-spacing:119.877600px;}
.ls3b{letter-spacing:119.916000px;}
.ls45{letter-spacing:124.137600px;}
.ls40{letter-spacing:124.188000px;}
.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;}
}
.ws51{word-spacing:-86.400006px;}
.ws37{word-spacing:-86.400000px;}
.ws4c{word-spacing:-50.080032px;}
.ws1{word-spacing:-50.040000px;}
.wsc{word-spacing:-43.434720px;}
.ws24{word-spacing:-40.072032px;}
.ws4{word-spacing:-40.032000px;}
.ws28{word-spacing:-39.888000px;}
.ws4e{word-spacing:-36.776880px;}
.wse{word-spacing:-36.669312px;}
.ws1a{word-spacing:-36.629280px;}
.ws6f{word-spacing:-35.028000px;}
.wsb{word-spacing:-33.533520px;}
.ws4d{word-spacing:-33.466752px;}
.ws9{word-spacing:-33.426720px;}
.ws1d{word-spacing:-30.064032px;}
.ws20{word-spacing:-30.024000px;}
.ws69{word-spacing:-29.736000px;}
.ws46{word-spacing:-26.661312px;}
.ws11{word-spacing:-26.621280px;}
.ws6b{word-spacing:-25.060032px;}
.ws14{word-spacing:-23.418720px;}
.ws47{word-spacing:-20.016000px;}
.wsa{word-spacing:-2.575680px;}
.ws13{word-spacing:-1.936800px;}
.ws2d{word-spacing:-1.728000px;}
.ws59{word-spacing:-1.586880px;}
.ws3d{word-spacing:-1.404000px;}
.ws55{word-spacing:-1.147200px;}
.ws48{word-spacing:-1.127760px;}
.ws8{word-spacing:-1.040400px;}
.ws3c{word-spacing:-0.991440px;}
.ws63{word-spacing:-0.960720px;}
.ws6e{word-spacing:-0.900000px;}
.ws3b{word-spacing:-0.851040px;}
.ws40{word-spacing:-0.804960px;}
.ws19{word-spacing:-0.792960px;}
.ws15{word-spacing:-0.792000px;}
.ws57{word-spacing:-0.727200px;}
.ws35{word-spacing:-0.720000px;}
.ws39{word-spacing:-0.684000px;}
.ws1c{word-spacing:-0.632880px;}
.ws52{word-spacing:-0.552000px;}
.ws41{word-spacing:-0.540000px;}
.ws56{word-spacing:-0.506880px;}
.ws23{word-spacing:-0.432000px;}
.ws3f{word-spacing:-0.396000px;}
.ws21{word-spacing:-0.334800px;}
.ws4f{word-spacing:-0.333360px;}
.wsd{word-spacing:-0.226800px;}
.ws5f{word-spacing:-0.194400px;}
.ws17{word-spacing:-0.187200px;}
.ws50{word-spacing:-0.156240px;}
.ws54{word-spacing:-0.146880px;}
.ws30{word-spacing:-0.131904px;}
.ws32{word-spacing:-0.131760px;}
.ws26{word-spacing:-0.108000px;}
.ws2a{word-spacing:-0.068256px;}
.ws38{word-spacing:-0.000029px;}
.ws0{word-spacing:0.000000px;}
.ws62{word-spacing:0.030000px;}
.ws6a{word-spacing:0.084000px;}
.ws22{word-spacing:0.106320px;}
.ws68{word-spacing:0.108000px;}
.ws3a{word-spacing:0.120000px;}
.ws44{word-spacing:0.144000px;}
.ws6{word-spacing:0.156000px;}
.ws53{word-spacing:0.167971px;}
.ws10{word-spacing:0.173520px;}
.ws3{word-spacing:0.180000px;}
.ws3e{word-spacing:0.202320px;}
.ws16{word-spacing:0.252000px;}
.ws2b{word-spacing:0.324000px;}
.ws2c{word-spacing:0.432000px;}
.ws27{word-spacing:0.552000px;}
.ws5{word-spacing:0.612000px;}
.ws60{word-spacing:0.627360px;}
.ws66{word-spacing:0.648000px;}
.ws29{word-spacing:0.756000px;}
.ws2e{word-spacing:0.864000px;}
.ws2{word-spacing:0.876000px;}
.ws61{word-spacing:0.877680px;}
.ws7{word-spacing:0.984000px;}
.ws43{word-spacing:1.044000px;}
.ws6d{word-spacing:1.152000px;}
.ws12{word-spacing:1.178640px;}
.ws6c{word-spacing:1.272000px;}
.ws36{word-spacing:1.280256px;}
.ws31{word-spacing:1.359600px;}
.wsf{word-spacing:1.368000px;}
.ws49{word-spacing:1.434960px;}
.ws34{word-spacing:1.549680px;}
.ws33{word-spacing:1.561920px;}
.ws65{word-spacing:1.657344px;}
.ws5a{word-spacing:1.809120px;}
.ws5c{word-spacing:1.950480px;}
.ws4a{word-spacing:2.209440px;}
.ws4b{word-spacing:2.260800px;}
.ws42{word-spacing:2.280000px;}
.ws67{word-spacing:2.352000px;}
.ws5d{word-spacing:2.434080px;}
.ws5e{word-spacing:2.527440px;}
.ws64{word-spacing:2.790432px;}
.ws5b{word-spacing:2.874720px;}
.ws2f{word-spacing:39.944160px;}
.ws58{word-spacing:42.104160px;}
.ws1e{word-spacing:546.432000px;}
.ws25{word-spacing:572.084352px;}
.ws18{word-spacing:719.027136px;}
.ws45{word-spacing:897.886800px;}
.ws1b{word-spacing:980.313600px;}
.ws1f{word-spacing:1887.672000px;}
._8{margin-left:-410.865600px;}
._12{margin-left:-13.993200px;}
._11{margin-left:-8.064000px;}
._18{margin-left:-6.141600px;}
._17{margin-left:-4.999680px;}
._15{margin-left:-3.727440px;}
._2{margin-left:-2.439360px;}
._1{margin-left:-1.045440px;}
._0{width:1.045440px;}
._4{width:2.056320px;}
._3{width:3.056400px;}
._f{width:4.248480px;}
._16{width:17.434560px;}
._a{width:21.502320px;}
._7{width:28.292400px;}
._6{width:31.906080px;}
._10{width:32.990400px;}
._5{width:38.960400px;}
._19{width:40.008480px;}
._c{width:41.304000px;}
._13{width:42.829440px;}
._1b{width:51.240000px;}
._d{width:254.736000px;}
._9{width:463.512000px;}
._b{width:521.668800px;}
._1a{width:588.220320px;}
._e{width:744.072000px;}
._14{width:996.239040px;}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(45,92,185);}
.fc7{color:rgb(192,0,0);}
.fc5{color:rgb(80,76,75);}
.fc3{color:rgb(255,153,0);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(153,204,255);}
.fca{color:rgb(0,77,102);}
.fc6{color:rgb(228,108,10);}
.fc1{color:transparent;}
.fc0{color:rgb(23,55,94);}
.fsc{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fsb{font-size:72.000000px;}
.fs17{font-size:79.920000px;}
.fsa{font-size:84.240000px;}
.fsd{font-size:84.384000px;}
.fs1a{font-size:90.144000px;}
.fs9{font-size:95.760000px;}
.fs13{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fs1{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs1b{font-size:126.000000px;}
.fs7{font-size:131.760000px;}
.fs8{font-size:131.904000px;}
.fs5{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs6{font-size:156.240000px;}
.fs12{font-size:167.760000px;}
.fs18{font-size:167.904000px;}
.fs0{font-size:174.240000px;}
.fs4{font-size:180.000000px;}
.fs15{font-size:180.144000px;}
.fs16{font-size:192.240000px;}
.fs11{font-size:192.384000px;}
.fs19{font-size:228.384000px;}
.fs14{font-size:419.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:13.608000px;}
.y45{bottom:43.200000px;}
.y5e{bottom:47.916000px;}
.y9f{bottom:49.176000px;}
.yeb{bottom:49.320000px;}
.yab{bottom:53.280000px;}
.yc6{bottom:54.216000px;}
.y94{bottom:55.008000px;}
.y2f{bottom:58.140000px;}
.yb3{bottom:61.560000px;}
.yba{bottom:61.776000px;}
.y98{bottom:62.640000px;}
.y86{bottom:63.900000px;}
.y9e{bottom:70.776000px;}
.y71{bottom:76.320000px;}
.yea{bottom:81.720000px;}
.y9c{bottom:82.800000px;}
.yd6{bottom:84.960000px;}
.y1e{bottom:90.180000px;}
.y44{bottom:90.720000px;}
.y5d{bottom:91.116000px;}
.y8a{bottom:91.725000px;}
.y8c{bottom:91.770000px;}
.y39{bottom:93.132000px;}
.yaa{bottom:93.600000px;}
.y2e{bottom:94.140000px;}
.yb9{bottom:97.776000px;}
.y7c{bottom:102.960000px;}
.yb2{bottom:103.170000px;}
.y97{bottom:105.840000px;}
.y85{bottom:107.100000px;}
.y7{bottom:108.504000px;}
.yb0{bottom:111.348000px;}
.yb4{bottom:114.630000px;}
.y70{bottom:115.920000px;}
.yd5{bottom:117.360000px;}
.y1d{bottom:118.980000px;}
.yb1{bottom:119.700000px;}
.ye9{bottom:120.600000px;}
.yc9{bottom:122.868000px;}
.ydf{bottom:126.000000px;}
.y4b{bottom:126.396000px;}
.y38{bottom:127.548000px;}
.y2d{bottom:130.140000px;}
.y43{bottom:130.320000px;}
.ya9{bottom:133.200000px;}
.y7b{bottom:138.960000px;}
.y6{bottom:140.904000px;}
.yb8{bottom:141.012000px;}
.y5c{bottom:142.992000px;}
.y96{bottom:149.040000px;}
.yd4{bottom:149.760000px;}
.y84{bottom:150.300000px;}
.y4e{bottom:152.130000px;}
.y6f{bottom:155.520000px;}
.yde{bottom:158.400000px;}
.ye8{bottom:160.200000px;}
.y2c{bottom:166.170000px;}
.y4a{bottom:169.590000px;}
.y37{bottom:170.745000px;}
.ya8{bottom:172.830000px;}
.yc5{bottom:175.170000px;}
.yb7{bottom:177.015000px;}
.y42{bottom:177.870000px;}
.y8f{bottom:178.170000px;}
.y7a{bottom:182.190000px;}
.y93{bottom:183.990000px;}
.y99{bottom:185.070000px;}
.yd3{bottom:188.670000px;}
.y95{bottom:192.270000px;}
.y5b{bottom:194.835000px;}
.ydd{bottom:198.030000px;}
.yc4{bottom:198.750000px;}
.yb5{bottom:200.700000px;}
.ye7{bottom:202.710000px;}
.y6e{bottom:204.150000px;}
.y8e{bottom:206.970000px;}
.ya7{bottom:212.430000px;}
.yb6{bottom:213.015000px;}
.y41{bottom:217.470000px;}
.y22{bottom:219.675000px;}
.yd2{bottom:221.070000px;}
.y79{bottom:225.390000px;}
.y4d{bottom:227.160000px;}
.yc3{bottom:234.750000px;}
.ye6{bottom:235.110000px;}
.y5a{bottom:238.035000px;}
.ydc{bottom:240.510000px;}
.y8d{bottom:241.200000px;}
.y92{bottom:248.040000px;}
.yd1{bottom:253.470000px;}
.y6d{bottom:254.910000px;}
.y17{bottom:257.070000px;}
.ya6{bottom:259.950000px;}
.y40{bottom:264.990000px;}
.y78{bottom:268.590000px;}
.y4c{bottom:270.390000px;}
.y5{bottom:271.260000px;}
.yc2{bottom:271.470000px;}
.ydb{bottom:272.910000px;}
.ye5{bottom:274.710000px;}
.yc7{bottom:275.295000px;}
.y66{bottom:275.790000px;}
.yd0{bottom:285.870000px;}
.y50{bottom:286.740000px;}
.y91{bottom:287.820000px;}
.y20{bottom:288.795000px;}
.y59{bottom:289.905000px;}
.y2a{bottom:291.780000px;}
.y28{bottom:299.370000px;}
.ya5{bottom:299.550000px;}
.y16{bottom:300.270000px;}
.y6c{bottom:303.510000px;}
.y21{bottom:304.455000px;}
.y77{bottom:304.590000px;}
.y4{bottom:307.260000px;}
.y3f{bottom:312.510000px;}
.y83{bottom:313.230000px;}
.ye4{bottom:317.235000px;}
.yc1{bottom:318.315000px;}
.y65{bottom:323.355000px;}
.ycf{bottom:324.795000px;}
.y4f{bottom:329.940000px;}
.y58{bottom:333.105000px;}
.y31{bottom:334.410000px;}
.y33{bottom:335.055000px;}
.y1b{bottom:335.625000px;}
.y3{bottom:343.290000px;}
.y1f{bottom:343.770000px;}
.y15{bottom:344.235000px;}
.ya4{bottom:347.115000px;}
.y76{bottom:349.095000px;}
.y6b{bottom:354.315000px;}
.yc0{bottom:355.035000px;}
.y8b{bottom:356.400000px;}
.y82{bottom:356.475000px;}
.ye3{bottom:356.835000px;}
.yce{bottom:357.195000px;}
.y9b{bottom:360.075000px;}
.y3e{bottom:360.615000px;}
.y30{bottom:366.840000px;}
.y32{bottom:367.455000px;}
.y64{bottom:370.875000px;}
.yaf{bottom:381.315000px;}
.y57{bottom:385.125000px;}
.yda{bottom:387.435000px;}
.ycd{bottom:389.595000px;}
.y2b{bottom:391.470000px;}
.y14{bottom:391.755000px;}
.y81{bottom:392.475000px;}
.y29{bottom:393.870000px;}
.ya3{bottom:395.175000px;}
.y89{bottom:396.180000px;}
.ye2{bottom:399.315000px;}
.y75{bottom:399.675000px;}
.ybf{bottom:401.835000px;}
.y6a{bottom:402.915000px;}
.y3d{bottom:411.915000px;}
.y63{bottom:418.395000px;}
.y90{bottom:419.370000px;}
.yae{bottom:424.515000px;}
.yd9{bottom:426.315000px;}
.y80{bottom:428.475000px;}
.ycc{bottom:429.195000px;}
.y1c{bottom:430.635000px;}
.y13{bottom:431.355000px;}
.ye1{bottom:431.715000px;}
.y49{bottom:431.895000px;}
.y74{bottom:435.675000px;}
.y56{bottom:436.830000px;}
.ya2{bottom:438.375000px;}
.ybe{bottom:438.555000px;}
.y9a{bottom:439.275000px;}
.y34{bottom:441.000000px;}
.y1a{bottom:443.235000px;}
.yd{bottom:447.015000px;}
.y2{bottom:447.150000px;}
.y69{bottom:452.955000px;}
.yd8{bottom:458.715000px;}
.y3c{bottom:459.435000px;}
.y26{bottom:461.775000px;}
.y62{bottom:465.945000px;}
.y24{bottom:466.350000px;}
.yad{bottom:467.745000px;}
.ye0{bottom:469.545000px;}
.y7f{bottom:471.705000px;}
.y48{bottom:475.095000px;}
.y12{bottom:478.905000px;}
.y55{bottom:480.030000px;}
.y46{bottom:480.060000px;}
.ybd{bottom:485.385000px;}
.yd7{bottom:497.625000px;}
.yc{bottom:498.885000px;}
.y1{bottom:499.395000px;}
.yec{bottom:499.965000px;}
.y68{bottom:502.305000px;}
.ycb{bottom:504.105000px;}
.y3b{bottom:506.985000px;}
.yac{bottom:510.945000px;}
.y61{bottom:513.465000px;}
.y73{bottom:514.905000px;}
.y7e{bottom:516.165000px;}
.y11{bottom:518.505000px;}
.ybc{bottom:522.105000px;}
.y25{bottom:523.875000px;}
.y88{bottom:527.685000px;}
.y54{bottom:532.590000px;}
.y23{bottom:535.935000px;}
.yca{bottom:536.505000px;}
.y36{bottom:539.430000px;}
.y47{bottom:542.415000px;}
.yb{bottom:550.725000px;}
.y67{bottom:554.145000px;}
.y3a{bottom:554.505000px;}
.y72{bottom:558.105000px;}
.y7d{bottom:559.365000px;}
.y60{bottom:560.985000px;}
.y10{bottom:566.025000px;}
.ybb{bottom:568.905000px;}
.y53{bottom:568.950000px;}
.y87{bottom:572.505000px;}
.y35{bottom:575.430000px;}
.ya{bottom:602.565000px;}
.yf{bottom:605.625000px;}
.y27{bottom:607.065000px;}
.y5f{bottom:608.550000px;}
.y19{bottom:608.580000px;}
.y52{bottom:611.100000px;}
.y18{bottom:684.750000px;}
.ya0{bottom:686.805000px;}
.yc8{bottom:690.735000px;}
.y9d{bottom:693.075000px;}
.ya1{bottom:744.195000px;}
.y9{bottom:747.075000px;}
.y51{bottom:749.955000px;}
.ye{bottom:752.835000px;}
.he{height:62.327813px;}
.h4{height:66.082500px;}
.hd{height:75.093750px;}
.h17{height:80.140430px;}
.h19{height:87.818555px;}
.hc{height:87.859687px;}
.h18{height:87.914531px;}
.h27{height:94.017375px;}
.h1a{height:95.976562px;}
.h21{height:96.072539px;}
.hb{height:99.874688px;}
.h1d{height:100.024875px;}
.h25{height:106.171875px;}
.h3{height:112.640625px;}
.h11{height:112.790813px;}
.ha{height:118.120781px;}
.h13{height:118.249875px;}
.h2{height:125.406562px;}
.h10{height:125.556750px;}
.h15{height:129.093750px;}
.h28{height:131.414062px;}
.h8{height:137.421562px;}
.h9{height:137.571750px;}
.h6{height:150.187500px;}
.h14{height:150.337688px;}
.h7{height:162.953438px;}
.hf{height:167.781562px;}
.h16{height:174.968437px;}
.h24{height:175.118625px;}
.h1{height:181.726875px;}
.h5{height:187.734375px;}
.h1f{height:187.884563px;}
.h20{height:200.500313px;}
.h1b{height:201.600000px;}
.h26{height:204.742688px;}
.h22{height:226.800000px;}
.h12{height:242.510813px;}
.h23{height:252.000000px;}
.h1c{height:403.200000px;}
.h1e{height:437.796563px;}
.h0{height:810.000000px;}
.w5{width:155.340000px;}
.w2{width:229.680000px;}
.w3{width:268.740000px;}
.w4{width:295.920000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3c{left:9.900000px;}
.x48{left:10.950000px;}
.x8{left:27.827984px;}
.x10{left:117.071984px;}
.xa{left:125.567984px;}
.x1{left:132.587984px;}
.x23{left:135.611984px;}
.x20{left:138.239984px;}
.x1b{left:143.603984px;}
.x22{left:156.494984px;}
.x39{left:157.574984px;}
.x9{left:159.584984px;}
.x3b{left:162.360000px;}
.xc{left:166.064984px;}
.xe{left:168.119984px;}
.x4a{left:171.464984px;}
.x44{left:172.904984px;}
.x28{left:176.609984px;}
.xd{left:179.609984px;}
.x46{left:190.409984px;}
.x37{left:195.089984px;}
.x43{left:202.829984px;}
.x4b{left:211.964984px;}
.x2a{left:213.449984px;}
.x36{left:223.274984px;}
.x38{left:233.609984px;}
.x35{left:247.394984px;}
.x2c{left:248.609984px;}
.x47{left:250.740000px;}
.x4f{left:255.629984px;}
.x30{left:265.469984px;}
.x31{left:279.539984px;}
.x29{left:300.809984px;}
.x2{left:311.909984px;}
.x50{left:315.749984px;}
.x13{left:318.884984px;}
.x4{left:325.949984px;}
.x4e{left:338.219984px;}
.x1d{left:360.749984px;}
.x12{left:378.644984px;}
.x42{left:386.609984px;}
.x3d{left:392.040000px;}
.x24{left:395.129984px;}
.x7{left:406.619984px;}
.x1c{left:415.904984px;}
.x3{left:429.299984px;}
.x17{left:433.364984px;}
.x5{left:448.379984px;}
.x6{left:453.239984px;}
.x2d{left:481.499984px;}
.x3a{left:500.864984px;}
.x18{left:517.064984px;}
.x15{left:546.509984px;}
.x16{left:548.249984px;}
.x4d{left:575.249984px;}
.x21{left:576.389984px;}
.x45{left:579.314984px;}
.x34{left:600.299984px;}
.x49{left:618.944984px;}
.x40{left:631.874984px;}
.x19{left:652.349984px;}
.x3e{left:660.780000px;}
.x11{left:662.609984px;}
.x27{left:690.629984px;}
.x26{left:699.629984px;}
.xf{left:741.449984px;}
.x2e{left:756.179984px;}
.x14{left:770.114984px;}
.x2f{left:788.039984px;}
.x32{left:794.189984px;}
.x41{left:797.579984px;}
.x3f{left:798.914984px;}
.x33{left:801.029984px;}
.x1f{left:870.869984px;}
.x4c{left:912.209984px;}
.x25{left:930.749984px;}
.x1e{left:948.854984px;}
.x1a{left:968.939984px;}
.x2b{left:990.254984px;}
.xb{left:994.754984px;}
@media print{
.v5{vertical-align:-124.160000pt;}
.v6{vertical-align:-31.360000pt;}
.v7{vertical-align:-26.240000pt;}
.v2{vertical-align:-7.520000pt;}
.v1{vertical-align:-2.933333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.986667pt;}
.v4{vertical-align:115.306667pt;}
.ls48{letter-spacing:-1.536000pt;}
.ls47{letter-spacing:-1.088000pt;}
.ls10{letter-spacing:-1.056000pt;}
.ls26{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.284267pt;}
.ls7{letter-spacing:-0.272533pt;}
.ls3c{letter-spacing:-0.262933pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.208533pt;}
.ls16{letter-spacing:-0.198933pt;}
.ls2b{letter-spacing:-0.166933pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.076800pt;}
.lsa{letter-spacing:-0.033280pt;}
.ls41{letter-spacing:-0.032000pt;}
.ls3f{letter-spacing:-0.003584pt;}
.ls14{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000005pt;}
.ls27{letter-spacing:0.023520pt;}
.ls9{letter-spacing:0.033280pt;}
.ls3e{letter-spacing:0.041493pt;}
.ls11{letter-spacing:0.046080pt;}
.ls18{letter-spacing:0.051200pt;}
.ls17{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.080533pt;}
.ls35{letter-spacing:0.082133pt;}
.ls37{letter-spacing:0.084267pt;}
.ls6{letter-spacing:0.094933pt;}
.ls32{letter-spacing:0.119467pt;}
.ls19{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.131200pt;}
.ls20{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.161067pt;}
.ls30{letter-spacing:0.192000pt;}
.ls46{letter-spacing:0.206400pt;}
.ls38{letter-spacing:0.208533pt;}
.ls15{letter-spacing:0.220267pt;}
.ls3a{letter-spacing:0.222933pt;}
.ls43{letter-spacing:0.224000pt;}
.ls2f{letter-spacing:0.249067pt;}
.lsc{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.264533pt;}
.ls2d{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.350933pt;}
.ls25{letter-spacing:0.392533pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.874667pt;}
.ls44{letter-spacing:26.432000pt;}
.ls42{letter-spacing:26.624000pt;}
.ls12{letter-spacing:35.840000pt;}
.ls23{letter-spacing:50.048000pt;}
.lsf{letter-spacing:55.130112pt;}
.lse{letter-spacing:55.201280pt;}
.ls29{letter-spacing:58.547200pt;}
.ls28{letter-spacing:58.592000pt;}
.ls2a{letter-spacing:60.823552pt;}
.ls5{letter-spacing:60.894720pt;}
.ls1d{letter-spacing:76.288000pt;}
.ls1f{letter-spacing:76.394667pt;}
.ls1c{letter-spacing:76.928000pt;}
.ls1e{letter-spacing:77.034667pt;}
.ls1b{letter-spacing:77.077333pt;}
.ls22{letter-spacing:87.841280pt;}
.ls13{letter-spacing:99.144533pt;}
.ls1{letter-spacing:99.189333pt;}
.ls4{letter-spacing:102.997333pt;}
.ls33{letter-spacing:103.168000pt;}
.ls2e{letter-spacing:106.536533pt;}
.ls2c{letter-spacing:106.557867pt;}
.ls3b{letter-spacing:106.592000pt;}
.ls45{letter-spacing:110.344533pt;}
.ls40{letter-spacing:110.389333pt;}
.ws51{word-spacing:-76.800005pt;}
.ws37{word-spacing:-76.800000pt;}
.ws4c{word-spacing:-44.515584pt;}
.ws1{word-spacing:-44.480000pt;}
.wsc{word-spacing:-38.608640pt;}
.ws24{word-spacing:-35.619584pt;}
.ws4{word-spacing:-35.584000pt;}
.ws28{word-spacing:-35.456000pt;}
.ws4e{word-spacing:-32.690560pt;}
.wse{word-spacing:-32.594944pt;}
.ws1a{word-spacing:-32.559360pt;}
.ws6f{word-spacing:-31.136000pt;}
.wsb{word-spacing:-29.807573pt;}
.ws4d{word-spacing:-29.748224pt;}
.ws9{word-spacing:-29.712640pt;}
.ws1d{word-spacing:-26.723584pt;}
.ws20{word-spacing:-26.688000pt;}
.ws69{word-spacing:-26.432000pt;}
.ws46{word-spacing:-23.698944pt;}
.ws11{word-spacing:-23.663360pt;}
.ws6b{word-spacing:-22.275584pt;}
.ws14{word-spacing:-20.816640pt;}
.ws47{word-spacing:-17.792000pt;}
.wsa{word-spacing:-2.289493pt;}
.ws13{word-spacing:-1.721600pt;}
.ws2d{word-spacing:-1.536000pt;}
.ws59{word-spacing:-1.410560pt;}
.ws3d{word-spacing:-1.248000pt;}
.ws55{word-spacing:-1.019733pt;}
.ws48{word-spacing:-1.002453pt;}
.ws8{word-spacing:-0.924800pt;}
.ws3c{word-spacing:-0.881280pt;}
.ws63{word-spacing:-0.853973pt;}
.ws6e{word-spacing:-0.800000pt;}
.ws3b{word-spacing:-0.756480pt;}
.ws40{word-spacing:-0.715520pt;}
.ws19{word-spacing:-0.704853pt;}
.ws15{word-spacing:-0.704000pt;}
.ws57{word-spacing:-0.646400pt;}
.ws35{word-spacing:-0.640000pt;}
.ws39{word-spacing:-0.608000pt;}
.ws1c{word-spacing:-0.562560pt;}
.ws52{word-spacing:-0.490667pt;}
.ws41{word-spacing:-0.480000pt;}
.ws56{word-spacing:-0.450560pt;}
.ws23{word-spacing:-0.384000pt;}
.ws3f{word-spacing:-0.352000pt;}
.ws21{word-spacing:-0.297600pt;}
.ws4f{word-spacing:-0.296320pt;}
.wsd{word-spacing:-0.201600pt;}
.ws5f{word-spacing:-0.172800pt;}
.ws17{word-spacing:-0.166400pt;}
.ws50{word-spacing:-0.138880pt;}
.ws54{word-spacing:-0.130560pt;}
.ws30{word-spacing:-0.117248pt;}
.ws32{word-spacing:-0.117120pt;}
.ws26{word-spacing:-0.096000pt;}
.ws2a{word-spacing:-0.060672pt;}
.ws38{word-spacing:-0.000025pt;}
.ws0{word-spacing:0.000000pt;}
.ws62{word-spacing:0.026667pt;}
.ws6a{word-spacing:0.074667pt;}
.ws22{word-spacing:0.094507pt;}
.ws68{word-spacing:0.096000pt;}
.ws3a{word-spacing:0.106667pt;}
.ws44{word-spacing:0.128000pt;}
.ws6{word-spacing:0.138667pt;}
.ws53{word-spacing:0.149308pt;}
.ws10{word-spacing:0.154240pt;}
.ws3{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.179840pt;}
.ws16{word-spacing:0.224000pt;}
.ws2b{word-spacing:0.288000pt;}
.ws2c{word-spacing:0.384000pt;}
.ws27{word-spacing:0.490667pt;}
.ws5{word-spacing:0.544000pt;}
.ws60{word-spacing:0.557653pt;}
.ws66{word-spacing:0.576000pt;}
.ws29{word-spacing:0.672000pt;}
.ws2e{word-spacing:0.768000pt;}
.ws2{word-spacing:0.778667pt;}
.ws61{word-spacing:0.780160pt;}
.ws7{word-spacing:0.874667pt;}
.ws43{word-spacing:0.928000pt;}
.ws6d{word-spacing:1.024000pt;}
.ws12{word-spacing:1.047680pt;}
.ws6c{word-spacing:1.130667pt;}
.ws36{word-spacing:1.138005pt;}
.ws31{word-spacing:1.208533pt;}
.wsf{word-spacing:1.216000pt;}
.ws49{word-spacing:1.275520pt;}
.ws34{word-spacing:1.377493pt;}
.ws33{word-spacing:1.388373pt;}
.ws65{word-spacing:1.473195pt;}
.ws5a{word-spacing:1.608107pt;}
.ws5c{word-spacing:1.733760pt;}
.ws4a{word-spacing:1.963947pt;}
.ws4b{word-spacing:2.009600pt;}
.ws42{word-spacing:2.026667pt;}
.ws67{word-spacing:2.090667pt;}
.ws5d{word-spacing:2.163627pt;}
.ws5e{word-spacing:2.246613pt;}
.ws64{word-spacing:2.480384pt;}
.ws5b{word-spacing:2.555307pt;}
.ws2f{word-spacing:35.505920pt;}
.ws58{word-spacing:37.425920pt;}
.ws1e{word-spacing:485.717333pt;}
.ws25{word-spacing:508.519424pt;}
.ws18{word-spacing:639.135232pt;}
.ws45{word-spacing:798.121600pt;}
.ws1b{word-spacing:871.389867pt;}
.ws1f{word-spacing:1677.930667pt;}
._8{margin-left:-365.213867pt;}
._12{margin-left:-12.438400pt;}
._11{margin-left:-7.168000pt;}
._18{margin-left:-5.459200pt;}
._17{margin-left:-4.444160pt;}
._15{margin-left:-3.313280pt;}
._2{margin-left:-2.168320pt;}
._1{margin-left:-0.929280pt;}
._0{width:0.929280pt;}
._4{width:1.827840pt;}
._3{width:2.716800pt;}
._f{width:3.776427pt;}
._16{width:15.497387pt;}
._a{width:19.113173pt;}
._7{width:25.148800pt;}
._6{width:28.360960pt;}
._10{width:29.324800pt;}
._5{width:34.631467pt;}
._19{width:35.563093pt;}
._c{width:36.714667pt;}
._13{width:38.070613pt;}
._1b{width:45.546667pt;}
._d{width:226.432000pt;}
._9{width:412.010667pt;}
._b{width:463.705600pt;}
._1a{width:522.862507pt;}
._e{width:661.397333pt;}
._14{width:885.545813pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fsb{font-size:64.000000pt;}
.fs17{font-size:71.040000pt;}
.fsa{font-size:74.880000pt;}
.fsd{font-size:75.008000pt;}
.fs1a{font-size:80.128000pt;}
.fs9{font-size:85.120000pt;}
.fs13{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fs1{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs1b{font-size:112.000000pt;}
.fs7{font-size:117.120000pt;}
.fs8{font-size:117.248000pt;}
.fs5{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs6{font-size:138.880000pt;}
.fs12{font-size:149.120000pt;}
.fs18{font-size:149.248000pt;}
.fs0{font-size:154.880000pt;}
.fs4{font-size:160.000000pt;}
.fs15{font-size:160.128000pt;}
.fs16{font-size:170.880000pt;}
.fs11{font-size:171.008000pt;}
.fs19{font-size:203.008000pt;}
.fs14{font-size:373.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:12.096000pt;}
.y45{bottom:38.400000pt;}
.y5e{bottom:42.592000pt;}
.y9f{bottom:43.712000pt;}
.yeb{bottom:43.840000pt;}
.yab{bottom:47.360000pt;}
.yc6{bottom:48.192000pt;}
.y94{bottom:48.896000pt;}
.y2f{bottom:51.680000pt;}
.yb3{bottom:54.720000pt;}
.yba{bottom:54.912000pt;}
.y98{bottom:55.680000pt;}
.y86{bottom:56.800000pt;}
.y9e{bottom:62.912000pt;}
.y71{bottom:67.840000pt;}
.yea{bottom:72.640000pt;}
.y9c{bottom:73.600000pt;}
.yd6{bottom:75.520000pt;}
.y1e{bottom:80.160000pt;}
.y44{bottom:80.640000pt;}
.y5d{bottom:80.992000pt;}
.y8a{bottom:81.533333pt;}
.y8c{bottom:81.573333pt;}
.y39{bottom:82.784000pt;}
.yaa{bottom:83.200000pt;}
.y2e{bottom:83.680000pt;}
.yb9{bottom:86.912000pt;}
.y7c{bottom:91.520000pt;}
.yb2{bottom:91.706667pt;}
.y97{bottom:94.080000pt;}
.y85{bottom:95.200000pt;}
.y7{bottom:96.448000pt;}
.yb0{bottom:98.976000pt;}
.yb4{bottom:101.893333pt;}
.y70{bottom:103.040000pt;}
.yd5{bottom:104.320000pt;}
.y1d{bottom:105.760000pt;}
.yb1{bottom:106.400000pt;}
.ye9{bottom:107.200000pt;}
.yc9{bottom:109.216000pt;}
.ydf{bottom:112.000000pt;}
.y4b{bottom:112.352000pt;}
.y38{bottom:113.376000pt;}
.y2d{bottom:115.680000pt;}
.y43{bottom:115.840000pt;}
.ya9{bottom:118.400000pt;}
.y7b{bottom:123.520000pt;}
.y6{bottom:125.248000pt;}
.yb8{bottom:125.344000pt;}
.y5c{bottom:127.104000pt;}
.y96{bottom:132.480000pt;}
.yd4{bottom:133.120000pt;}
.y84{bottom:133.600000pt;}
.y4e{bottom:135.226667pt;}
.y6f{bottom:138.240000pt;}
.yde{bottom:140.800000pt;}
.ye8{bottom:142.400000pt;}
.y2c{bottom:147.706667pt;}
.y4a{bottom:150.746667pt;}
.y37{bottom:151.773333pt;}
.ya8{bottom:153.626667pt;}
.yc5{bottom:155.706667pt;}
.yb7{bottom:157.346667pt;}
.y42{bottom:158.106667pt;}
.y8f{bottom:158.373333pt;}
.y7a{bottom:161.946667pt;}
.y93{bottom:163.546667pt;}
.y99{bottom:164.506667pt;}
.yd3{bottom:167.706667pt;}
.y95{bottom:170.906667pt;}
.y5b{bottom:173.186667pt;}
.ydd{bottom:176.026667pt;}
.yc4{bottom:176.666667pt;}
.yb5{bottom:178.400000pt;}
.ye7{bottom:180.186667pt;}
.y6e{bottom:181.466667pt;}
.y8e{bottom:183.973333pt;}
.ya7{bottom:188.826667pt;}
.yb6{bottom:189.346667pt;}
.y41{bottom:193.306667pt;}
.y22{bottom:195.266667pt;}
.yd2{bottom:196.506667pt;}
.y79{bottom:200.346667pt;}
.y4d{bottom:201.920000pt;}
.yc3{bottom:208.666667pt;}
.ye6{bottom:208.986667pt;}
.y5a{bottom:211.586667pt;}
.ydc{bottom:213.786667pt;}
.y8d{bottom:214.400000pt;}
.y92{bottom:220.480000pt;}
.yd1{bottom:225.306667pt;}
.y6d{bottom:226.586667pt;}
.y17{bottom:228.506667pt;}
.ya6{bottom:231.066667pt;}
.y40{bottom:235.546667pt;}
.y78{bottom:238.746667pt;}
.y4c{bottom:240.346667pt;}
.y5{bottom:241.120000pt;}
.yc2{bottom:241.306667pt;}
.ydb{bottom:242.586667pt;}
.ye5{bottom:244.186667pt;}
.yc7{bottom:244.706667pt;}
.y66{bottom:245.146667pt;}
.yd0{bottom:254.106667pt;}
.y50{bottom:254.880000pt;}
.y91{bottom:255.840000pt;}
.y20{bottom:256.706667pt;}
.y59{bottom:257.693333pt;}
.y2a{bottom:259.360000pt;}
.y28{bottom:266.106667pt;}
.ya5{bottom:266.266667pt;}
.y16{bottom:266.906667pt;}
.y6c{bottom:269.786667pt;}
.y21{bottom:270.626667pt;}
.y77{bottom:270.746667pt;}
.y4{bottom:273.120000pt;}
.y3f{bottom:277.786667pt;}
.y83{bottom:278.426667pt;}
.ye4{bottom:281.986667pt;}
.yc1{bottom:282.946667pt;}
.y65{bottom:287.426667pt;}
.ycf{bottom:288.706667pt;}
.y4f{bottom:293.280000pt;}
.y58{bottom:296.093333pt;}
.y31{bottom:297.253333pt;}
.y33{bottom:297.826667pt;}
.y1b{bottom:298.333333pt;}
.y3{bottom:305.146667pt;}
.y1f{bottom:305.573333pt;}
.y15{bottom:305.986667pt;}
.ya4{bottom:308.546667pt;}
.y76{bottom:310.306667pt;}
.y6b{bottom:314.946667pt;}
.yc0{bottom:315.586667pt;}
.y8b{bottom:316.800000pt;}
.y82{bottom:316.866667pt;}
.ye3{bottom:317.186667pt;}
.yce{bottom:317.506667pt;}
.y9b{bottom:320.066667pt;}
.y3e{bottom:320.546667pt;}
.y30{bottom:326.080000pt;}
.y32{bottom:326.626667pt;}
.y64{bottom:329.666667pt;}
.yaf{bottom:338.946667pt;}
.y57{bottom:342.333333pt;}
.yda{bottom:344.386667pt;}
.ycd{bottom:346.306667pt;}
.y2b{bottom:347.973333pt;}
.y14{bottom:348.226667pt;}
.y81{bottom:348.866667pt;}
.y29{bottom:350.106667pt;}
.ya3{bottom:351.266667pt;}
.y89{bottom:352.160000pt;}
.ye2{bottom:354.946667pt;}
.y75{bottom:355.266667pt;}
.ybf{bottom:357.186667pt;}
.y6a{bottom:358.146667pt;}
.y3d{bottom:366.146667pt;}
.y63{bottom:371.906667pt;}
.y90{bottom:372.773333pt;}
.yae{bottom:377.346667pt;}
.yd9{bottom:378.946667pt;}
.y80{bottom:380.866667pt;}
.ycc{bottom:381.506667pt;}
.y1c{bottom:382.786667pt;}
.y13{bottom:383.426667pt;}
.ye1{bottom:383.746667pt;}
.y49{bottom:383.906667pt;}
.y74{bottom:387.266667pt;}
.y56{bottom:388.293333pt;}
.ya2{bottom:389.666667pt;}
.ybe{bottom:389.826667pt;}
.y9a{bottom:390.466667pt;}
.y34{bottom:392.000000pt;}
.y1a{bottom:393.986667pt;}
.yd{bottom:397.346667pt;}
.y2{bottom:397.466667pt;}
.y69{bottom:402.626667pt;}
.yd8{bottom:407.746667pt;}
.y3c{bottom:408.386667pt;}
.y26{bottom:410.466667pt;}
.y62{bottom:414.173333pt;}
.y24{bottom:414.533333pt;}
.yad{bottom:415.773333pt;}
.ye0{bottom:417.373333pt;}
.y7f{bottom:419.293333pt;}
.y48{bottom:422.306667pt;}
.y12{bottom:425.693333pt;}
.y55{bottom:426.693333pt;}
.y46{bottom:426.720000pt;}
.ybd{bottom:431.453333pt;}
.yd7{bottom:442.333333pt;}
.yc{bottom:443.453333pt;}
.y1{bottom:443.906667pt;}
.yec{bottom:444.413333pt;}
.y68{bottom:446.493333pt;}
.ycb{bottom:448.093333pt;}
.y3b{bottom:450.653333pt;}
.yac{bottom:454.173333pt;}
.y61{bottom:456.413333pt;}
.y73{bottom:457.693333pt;}
.y7e{bottom:458.813333pt;}
.y11{bottom:460.893333pt;}
.ybc{bottom:464.093333pt;}
.y25{bottom:465.666667pt;}
.y88{bottom:469.053333pt;}
.y54{bottom:473.413333pt;}
.y23{bottom:476.386667pt;}
.yca{bottom:476.893333pt;}
.y36{bottom:479.493333pt;}
.y47{bottom:482.146667pt;}
.yb{bottom:489.533333pt;}
.y67{bottom:492.573333pt;}
.y3a{bottom:492.893333pt;}
.y72{bottom:496.093333pt;}
.y7d{bottom:497.213333pt;}
.y60{bottom:498.653333pt;}
.y10{bottom:503.133333pt;}
.ybb{bottom:505.693333pt;}
.y53{bottom:505.733333pt;}
.y87{bottom:508.893333pt;}
.y35{bottom:511.493333pt;}
.ya{bottom:535.613333pt;}
.yf{bottom:538.333333pt;}
.y27{bottom:539.613333pt;}
.y5f{bottom:540.933333pt;}
.y19{bottom:540.960000pt;}
.y52{bottom:543.200000pt;}
.y18{bottom:608.666667pt;}
.ya0{bottom:610.493333pt;}
.yc8{bottom:613.986667pt;}
.y9d{bottom:616.066667pt;}
.ya1{bottom:661.506667pt;}
.y9{bottom:664.066667pt;}
.y51{bottom:666.626667pt;}
.ye{bottom:669.186667pt;}
.he{height:55.402500pt;}
.h4{height:58.740000pt;}
.hd{height:66.750000pt;}
.h17{height:71.235937pt;}
.h19{height:78.060937pt;}
.hc{height:78.097500pt;}
.h18{height:78.146250pt;}
.h27{height:83.571000pt;}
.h1a{height:85.312500pt;}
.h21{height:85.397813pt;}
.hb{height:88.777500pt;}
.h1d{height:88.911000pt;}
.h25{height:94.375000pt;}
.h3{height:100.125000pt;}
.h11{height:100.258500pt;}
.ha{height:104.996250pt;}
.h13{height:105.111000pt;}
.h2{height:111.472500pt;}
.h10{height:111.606000pt;}
.h15{height:114.750000pt;}
.h28{height:116.812500pt;}
.h8{height:122.152500pt;}
.h9{height:122.286000pt;}
.h6{height:133.500000pt;}
.h14{height:133.633500pt;}
.h7{height:144.847500pt;}
.hf{height:149.139167pt;}
.h16{height:155.527500pt;}
.h24{height:155.661000pt;}
.h1{height:161.535000pt;}
.h5{height:166.875000pt;}
.h1f{height:167.008500pt;}
.h20{height:178.222500pt;}
.h1b{height:179.200000pt;}
.h26{height:181.993500pt;}
.h22{height:201.600000pt;}
.h12{height:215.565167pt;}
.h23{height:224.000000pt;}
.h1c{height:358.400000pt;}
.h1e{height:389.152500pt;}
.h0{height:720.000000pt;}
.w5{width:138.080000pt;}
.w2{width:204.160000pt;}
.w3{width:238.880000pt;}
.w4{width:263.040000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:8.800000pt;}
.x48{left:9.733333pt;}
.x8{left:24.735986pt;}
.x10{left:104.063986pt;}
.xa{left:111.615986pt;}
.x1{left:117.855986pt;}
.x23{left:120.543986pt;}
.x20{left:122.879986pt;}
.x1b{left:127.647986pt;}
.x22{left:139.106652pt;}
.x39{left:140.066652pt;}
.x9{left:141.853319pt;}
.x3b{left:144.320000pt;}
.xc{left:147.613319pt;}
.xe{left:149.439986pt;}
.x4a{left:152.413319pt;}
.x44{left:153.693319pt;}
.x28{left:156.986652pt;}
.xd{left:159.653319pt;}
.x46{left:169.253319pt;}
.x37{left:173.413319pt;}
.x43{left:180.293319pt;}
.x4b{left:188.413319pt;}
.x2a{left:189.733319pt;}
.x36{left:198.466652pt;}
.x38{left:207.653319pt;}
.x35{left:219.906652pt;}
.x2c{left:220.986652pt;}
.x47{left:222.880000pt;}
.x4f{left:227.226652pt;}
.x30{left:235.973319pt;}
.x31{left:248.479986pt;}
.x29{left:267.386652pt;}
.x2{left:277.253319pt;}
.x50{left:280.666652pt;}
.x13{left:283.453319pt;}
.x4{left:289.733319pt;}
.x4e{left:300.639986pt;}
.x1d{left:320.666652pt;}
.x12{left:336.573319pt;}
.x42{left:343.653319pt;}
.x3d{left:348.480000pt;}
.x24{left:351.226652pt;}
.x7{left:361.439986pt;}
.x1c{left:369.693319pt;}
.x3{left:381.599986pt;}
.x17{left:385.213319pt;}
.x5{left:398.559986pt;}
.x6{left:402.879986pt;}
.x2d{left:427.999986pt;}
.x3a{left:445.213319pt;}
.x18{left:459.613319pt;}
.x15{left:485.786652pt;}
.x16{left:487.333319pt;}
.x4d{left:511.333319pt;}
.x21{left:512.346652pt;}
.x45{left:514.946652pt;}
.x34{left:533.599986pt;}
.x49{left:550.173319pt;}
.x40{left:561.666652pt;}
.x19{left:579.866652pt;}
.x3e{left:587.360000pt;}
.x11{left:588.986652pt;}
.x27{left:613.893319pt;}
.x26{left:621.893319pt;}
.xf{left:659.066652pt;}
.x2e{left:672.159986pt;}
.x14{left:684.546652pt;}
.x2f{left:700.479986pt;}
.x32{left:705.946652pt;}
.x41{left:708.959986pt;}
.x3f{left:710.146652pt;}
.x33{left:712.026652pt;}
.x1f{left:774.106652pt;}
.x4c{left:810.853319pt;}
.x25{left:827.333319pt;}
.x1e{left:843.426652pt;}
.x1a{left:861.279986pt;}
.x2b{left:880.226652pt;}
.xb{left:884.226652pt;}
}




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