
    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_58214b8698ccd918e4c022a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_252af9afe30be2e546277cac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_005685ebca8c14c0eac947cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943848;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_f9ff67bfba44dd65de0565e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_c987bf070a3328e16ef6a609.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_ce6e0bcef3a818c73a666783.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_b8766620578510b8749f8ede.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_06fdd30507d943601d255133.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_286e64239d68a5cd63d916a8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4a3c83070bd8436deff607a5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9bd7e5fb0b20f52093307a62.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fa3b45b7ee9219d695807a16.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_5778ca6d5407e2e5cf6d5271.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ebf9b505b826356d2df4904c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fbcc99931cd25e63010b5cc5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.973633;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258625,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);}
.v8{vertical-align:-18.000000px;}
.v5{vertical-align:-15.120000px;}
.v7{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.ls27{letter-spacing:-1.728000px;}
.ls20{letter-spacing:-0.654000px;}
.ls34{letter-spacing:-0.486000px;}
.ls10{letter-spacing:-0.331200px;}
.ls6{letter-spacing:-0.326400px;}
.ls16{letter-spacing:-0.306000px;}
.lsf{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.234000px;}
.ls2e{letter-spacing:-0.198000px;}
.ls31{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.119400px;}
.ls19{letter-spacing:-0.093600px;}
.ls5{letter-spacing:-0.091200px;}
.ls28{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.057600px;}
.ls12{letter-spacing:-0.054000px;}
.lsa{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.011520px;}
.ls2{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.040320px;}
.ls14{letter-spacing:0.056160px;}
.ls32{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.081600px;}
.ls1c{letter-spacing:0.118800px;}
.ls3{letter-spacing:0.151680px;}
.ls2f{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.177600px;}
.ls30{letter-spacing:0.198000px;}
.ls24{letter-spacing:0.199200px;}
.ls1b{letter-spacing:0.223800px;}
.ls2b{letter-spacing:0.234000px;}
.ls23{letter-spacing:0.252000px;}
.ls1a{letter-spacing:0.265800px;}
.ls33{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.297360px;}
.ls26{letter-spacing:0.297600px;}
.ls22{letter-spacing:0.308141px;}
.ls0{letter-spacing:0.329040px;}
.ls18{letter-spacing:0.330000px;}
.ls13{letter-spacing:0.342000px;}
.ls8{letter-spacing:0.511800px;}
.ls1d{letter-spacing:0.515400px;}
.ls21{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.558000px;}
.ls29{letter-spacing:0.684000px;}
.lse{letter-spacing:1.008000px;}
.ls1{letter-spacing:7.866000px;}
.ls2d{letter-spacing:9.504000px;}
.ls2a{letter-spacing:12.186000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-54.342000px;}
.ws3{word-spacing:-25.414560px;}
.ws5{word-spacing:-25.352760px;}
.ws1{word-spacing:-22.316640px;}
.wsd{word-spacing:-18.468000px;}
.wsc{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.824960px;}
.ws26{word-spacing:-13.986000px;}
.ws1f{word-spacing:-13.950000px;}
.ws23{word-spacing:-13.914000px;}
.ws22{word-spacing:-13.878000px;}
.ws25{word-spacing:-13.788000px;}
.ws21{word-spacing:-13.716000px;}
.ws20{word-spacing:-13.518000px;}
.ws10{word-spacing:-13.356000px;}
.ws19{word-spacing:-13.266000px;}
.ws27{word-spacing:-13.230000px;}
.ws6{word-spacing:-13.014000px;}
.ws11{word-spacing:-12.960000px;}
.ws1e{word-spacing:-12.924000px;}
.ws24{word-spacing:-12.834000px;}
.wsa{word-spacing:-12.744000px;}
.ws4{word-spacing:-12.065760px;}
.ws1c{word-spacing:-11.923440px;}
.ws16{word-spacing:-11.891640px;}
.ws17{word-spacing:-11.849640px;}
.ws18{word-spacing:-11.744640px;}
.ws2{word-spacing:-11.739360px;}
.ws1b{word-spacing:-11.666160px;}
.ws14{word-spacing:-11.637360px;}
.ws13{word-spacing:-11.625840px;}
.ws15{word-spacing:-11.532240px;}
.ws1a{word-spacing:-11.299440px;}
.ws1d{word-spacing:-11.286000px;}
.wsb{word-spacing:-9.684000px;}
.ws9{word-spacing:-8.964000px;}
.ws8{word-spacing:-8.676000px;}
.wse{word-spacing:0.000000px;}
.ws12{word-spacing:1031.598000px;}
._4{margin-left:-4.536000px;}
._2{margin-left:-3.456000px;}
._6{margin-left:-2.431440px;}
._0{margin-left:-1.263600px;}
._1{width:1.013520px;}
._3{width:2.154480px;}
._5{width:3.240000px;}
._b{width:4.926480px;}
._e{width:6.333600px;}
._8{width:7.632000px;}
._7{width:8.640000px;}
._d{width:10.570800px;}
._c{width:11.826000px;}
._1b{width:14.202000px;}
._13{width:15.282000px;}
._a{width:16.308000px;}
._9{width:17.496000px;}
._1a{width:18.522000px;}
._19{width:20.088000px;}
._11{width:22.086000px;}
._12{width:23.166000px;}
._1c{width:24.678000px;}
._18{width:26.136000px;}
._f{width:27.756000px;}
._10{width:29.106000px;}
._22{width:30.240000px;}
._1d{width:31.698000px;}
._1f{width:33.210000px;}
._25{width:34.560000px;}
._2a{width:35.766000px;}
._29{width:37.368000px;}
._2b{width:40.068000px;}
._14{width:41.202000px;}
._15{width:42.258000px;}
._24{width:43.518000px;}
._2e{width:45.364800px;}
._2d{width:46.368000px;}
._17{width:51.267600px;}
._16{width:52.272000px;}
._23{width:56.700000px;}
._27{width:58.590000px;}
._21{width:61.128000px;}
._20{width:62.154000px;}
._26{width:63.216000px;}
._28{width:70.146000px;}
._2c{width:80.208000px;}
._1e{width:549.378000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fsd{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs5{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:74.880000px;}
.fs9{font-size:75.893905px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y3b{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y15{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y10{bottom:3.240000px;}
.y1e{bottom:3.420000px;}
.y25{bottom:3.780000px;}
.y27{bottom:3.960000px;}
.y4{bottom:4.132500px;}
.y1a{bottom:4.140000px;}
.yc6{bottom:4.320000px;}
.ycc{bottom:4.365000px;}
.y3{bottom:4.492500px;}
.y23{bottom:4.860000px;}
.y97{bottom:6.840000px;}
.y9f{bottom:8.100000px;}
.ya1{bottom:8.460000px;}
.y3a{bottom:9.000000px;}
.ya9{bottom:9.540000px;}
.y1c{bottom:10.800000px;}
.y33{bottom:10.980000px;}
.y96{bottom:12.780000px;}
.y20{bottom:14.760000px;}
.y21{bottom:14.940000px;}
.y18{bottom:15.120000px;}
.y13{bottom:15.300000px;}
.y35{bottom:16.200000px;}
.ybf{bottom:19.080000px;}
.yd1{bottom:19.260000px;}
.ye{bottom:20.160000px;}
.yca{bottom:25.920000px;}
.y39{bottom:30.240000px;}
.y95{bottom:30.600000px;}
.y32{bottom:34.020000px;}
.yba{bottom:40.860000px;}
.yc9{bottom:41.040000px;}
.y17{bottom:45.765000px;}
.y12{bottom:45.900000px;}
.y38{bottom:51.660000px;}
.yb9{bottom:55.980000px;}
.y31{bottom:57.060000px;}
.y5{bottom:58.356000px;}
.yb8{bottom:70.920000px;}
.y2{bottom:74.563500px;}
.y37{bottom:75.810000px;}
.y30{bottom:80.100000px;}
.ya{bottom:80.490000px;}
.yb7{bottom:85.860000px;}
.y9{bottom:91.470000px;}
.yb6{bottom:100.980000px;}
.yc8{bottom:101.025000px;}
.y2f{bottom:102.960000px;}
.yb2{bottom:115.056000px;}
.yb5{bottom:115.920000px;}
.ye2{bottom:116.676000px;}
.y84{bottom:119.196000px;}
.yd9{bottom:119.556000px;}
.yd7{bottom:121.356000px;}
.y2e{bottom:126.030000px;}
.ydb{bottom:126.576000px;}
.y69{bottom:130.356000px;}
.yb1{bottom:138.096000px;}
.ye1{bottom:139.536000px;}
.y83{bottom:142.056000px;}
.yd8{bottom:142.596000px;}
.y2d{bottom:149.070000px;}
.yda{bottom:149.616000px;}
.y68{bottom:153.210000px;}
.yb0{bottom:161.130000px;}
.ye0{bottom:162.570000px;}
.y82{bottom:165.090000px;}
.y2c{bottom:172.110000px;}
.y67{bottom:176.250000px;}
.yaf{bottom:183.990000px;}
.ydf{bottom:185.610000px;}
.y81{bottom:188.130000px;}
.y2b{bottom:195.150000px;}
.y66{bottom:199.290000px;}
.yae{bottom:207.030000px;}
.yde{bottom:208.650000px;}
.y80{bottom:211.170000px;}
.y2a{bottom:218.190000px;}
.y65{bottom:222.330000px;}
.yad{bottom:230.070000px;}
.ydd{bottom:231.690000px;}
.y7f{bottom:234.210000px;}
.y29{bottom:241.050000px;}
.y64{bottom:245.370000px;}
.yac{bottom:253.110000px;}
.ydc{bottom:254.730000px;}
.y7e{bottom:257.250000px;}
.y63{bottom:268.455000px;}
.yab{bottom:276.195000px;}
.y7d{bottom:280.155000px;}
.y62{bottom:291.315000px;}
.y7c{bottom:303.195000px;}
.y61{bottom:314.355000px;}
.yaa{bottom:322.095000px;}
.y7b{bottom:326.235000px;}
.ya8{bottom:336.495000px;}
.y60{bottom:337.395000px;}
.y7a{bottom:349.275000px;}
.ya7{bottom:359.355000px;}
.y5f{bottom:360.435000px;}
.y79{bottom:379.515000px;}
.y5e{bottom:383.475000px;}
.ya6{bottom:399.855000px;}
.y34{bottom:402.915000px;}
.y5d{bottom:406.515000px;}
.y78{bottom:410.295000px;}
.ya5{bottom:420.015000px;}
.y28{bottom:428.655000px;}
.y5c{bottom:429.375000px;}
.y77{bottom:433.335000px;}
.ya4{bottom:440.175000px;}
.y5b{bottom:452.415000px;}
.y76{bottom:456.375000px;}
.ya3{bottom:460.515000px;}
.y5a{bottom:475.455000px;}
.y75{bottom:479.415000px;}
.ya2{bottom:480.675000px;}
.y59{bottom:498.495000px;}
.ya0{bottom:500.835000px;}
.y74{bottom:502.275000px;}
.y58{bottom:521.535000px;}
.y9e{bottom:522.435000px;}
.y73{bottom:525.315000px;}
.y57{bottom:544.575000px;}
.y72{bottom:548.355000px;}
.y9d{bottom:554.865000px;}
.y56{bottom:567.465000px;}
.y9c{bottom:577.905000px;}
.y71{bottom:580.965000px;}
.y55{bottom:590.505000px;}
.y9b{bottom:600.765000px;}
.yd6{bottom:607.605000px;}
.y70{bottom:612.825000px;}
.y54{bottom:613.545000px;}
.y9a{bottom:615.165000px;}
.yd5{bottom:630.645000px;}
.y99{bottom:635.145000px;}
.y6f{bottom:635.865000px;}
.y53{bottom:636.585000px;}
.yd4{bottom:653.685000px;}
.y98{bottom:654.045000px;}
.y6e{bottom:658.905000px;}
.y52{bottom:659.625000px;}
.y94{bottom:674.025000px;}
.yd3{bottom:676.725000px;}
.y26{bottom:681.765000px;}
.y51{bottom:682.485000px;}
.y24{bottom:697.065000px;}
.y6d{bottom:704.805000px;}
.y50{bottom:705.525000px;}
.y22{bottom:715.965000px;}
.yd2{bottom:722.805000px;}
.y6c{bottom:727.845000px;}
.y4f{bottom:728.565000px;}
.y1f{bottom:735.945000px;}
.yc7{bottom:737.025000px;}
.y6b{bottom:750.885000px;}
.y4e{bottom:751.605000px;}
.yd0{bottom:754.305000px;}
.y1d{bottom:765.825000px;}
.y6a{bottom:774.105000px;}
.y4d{bottom:774.645000px;}
.y93{bottom:779.145000px;}
.y1b{bottom:779.325000px;}
.ycf{bottom:785.445000px;}
.y4c{bottom:797.685000px;}
.yce{bottom:801.465000px;}
.y19{bottom:802.185000px;}
.ycd{bottom:817.665000px;}
.y16{bottom:819.285000px;}
.y4b{bottom:820.545000px;}
.y92{bottom:825.225000px;}
.ycb{bottom:833.685000px;}
.y4a{bottom:843.630000px;}
.y91{bottom:848.310000px;}
.yc5{bottom:851.010000px;}
.y49{bottom:866.670000px;}
.y90{bottom:871.350000px;}
.yc4{bottom:879.270000px;}
.y14{bottom:880.530000px;}
.y48{bottom:889.710000px;}
.y8f{bottom:894.210000px;}
.y11{bottom:895.110000px;}
.yc3{bottom:902.310000px;}
.y47{bottom:912.750000px;}
.y8e{bottom:917.250000px;}
.yc2{bottom:925.350000px;}
.y46{bottom:935.790000px;}
.y8d{bottom:940.290000px;}
.yc1{bottom:948.210000px;}
.yf{bottom:956.310000px;}
.y45{bottom:958.650000px;}
.yb4{bottom:962.610000px;}
.y8c{bottom:963.330000px;}
.yd{bottom:969.810000px;}
.yc0{bottom:979.890000px;}
.y44{bottom:981.690000px;}
.y8b{bottom:986.370000px;}
.y43{bottom:1004.730000px;}
.y8a{bottom:1009.410000px;}
.ybe{bottom:1011.030000px;}
.yc{bottom:1013.370000px;}
.y42{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y89{bottom:1032.270000px;}
.ybd{bottom:1042.170000px;}
.y8{bottom:1046.850000px;}
.y41{bottom:1050.810000px;}
.y88{bottom:1055.310000px;}
.ybc{bottom:1058.190000px;}
.y36{bottom:1065.210000px;}
.y40{bottom:1073.850000px;}
.ybb{bottom:1074.390000px;}
.y87{bottom:1078.350000px;}
.yb3{bottom:1091.670000px;}
.y3f{bottom:1096.710000px;}
.y86{bottom:1101.390000px;}
.y3e{bottom:1119.750000px;}
.y85{bottom:1134.000000px;}
.y3d{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3c{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h10{height:13.485000px;}
.h1c{height:13.500000px;}
.h15{height:14.565000px;}
.h36{height:14.925000px;}
.h3c{height:14.940000px;}
.h39{height:15.105000px;}
.h3d{height:15.120000px;}
.h3b{height:15.142500px;}
.h23{height:15.300000px;}
.h18{height:17.100000px;}
.h32{height:17.640000px;}
.h21{height:18.900000px;}
.h33{height:19.065000px;}
.h34{height:19.425000px;}
.h20{height:19.980000px;}
.h35{height:20.505000px;}
.h3{height:20.692500px;}
.h5{height:20.880000px;}
.h1a{height:22.860000px;}
.h27{height:25.725000px;}
.h28{height:29.145586px;}
.h38{height:29.865000px;}
.h1e{height:29.880000px;}
.h3e{height:30.060000px;}
.h11{height:32.670352px;}
.h1d{height:33.588984px;}
.h30{height:36.509766px;}
.h16{height:36.886641px;}
.h19{height:40.472227px;}
.h2d{height:40.816406px;}
.h24{height:40.842773px;}
.hd{height:40.845000px;}
.h1b{height:40.869141px;}
.h2b{height:41.291016px;}
.h2f{height:41.400000px;}
.h26{height:42.366094px;}
.h3f{height:42.486094px;}
.h2e{height:45.509766px;}
.h13{height:48.761719px;}
.h22{height:50.100469px;}
.h1f{height:50.132812px;}
.h14{height:51.398851px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h2a{height:55.054688px;}
.h2c{height:55.209375px;}
.h6{height:57.051211px;}
.h31{height:60.269766px;}
.h12{height:61.185000px;}
.h17{height:61.222500px;}
.he{height:64.853086px;}
.hf{height:68.360471px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.h7{height:84.898125px;}
.h29{height:93.810000px;}
.h8{height:108.030000px;}
.h3a{height:111.802500px;}
.h37{height:126.705000px;}
.h25{height:253.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:29.520000px;}
.w1e{width:29.865000px;}
.w1d{width:30.945000px;}
.w1f{width:31.350000px;}
.w1c{width:33.645000px;}
.w25{width:33.681000px;}
.w26{width:33.690000px;}
.w23{width:33.825000px;}
.w27{width:33.840000px;}
.w2c{width:34.740000px;}
.w18{width:35.805000px;}
.w16{width:36.345000px;}
.w1b{width:37.245000px;}
.w1a{width:37.641000px;}
.w15{width:37.836000px;}
.w17{width:38.505000px;}
.w19{width:39.945000px;}
.w24{width:40.485000px;}
.w2b{width:40.521000px;}
.w22{width:40.536000px;}
.w2{width:45.529500px;}
.w6{width:76.669500px;}
.wd{width:94.665000px;}
.w14{width:108.000000px;}
.wf{width:108.216000px;}
.w28{width:110.194500px;}
.w2a{width:114.660000px;}
.wc{width:114.694500px;}
.we{width:114.861000px;}
.w21{width:114.874500px;}
.w12{width:121.534500px;}
.w5{width:124.005000px;}
.w10{width:128.325000px;}
.w29{width:139.701000px;}
.w13{width:141.681000px;}
.w11{width:229.200000px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.410000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:2.865000px;}
.x41{left:3.960000px;}
.x1d{left:5.070000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x4c{left:9.165000px;}
.x5{left:10.789500px;}
.x2{left:12.049500px;}
.x3d{left:13.140000px;}
.x23{left:14.250000px;}
.x1a{left:15.298500px;}
.x13{left:16.740000px;}
.x49{left:17.805000px;}
.x48{left:18.900000px;}
.x4a{left:19.965000px;}
.x65{left:21.780000px;}
.x51{left:22.860000px;}
.x44{left:23.940000px;}
.x42{left:25.740000px;}
.x40{left:27.165000px;}
.x3f{left:29.145000px;}
.x2a{left:30.405000px;}
.x29{left:31.845000px;}
.x24{left:33.658500px;}
.x4e{left:34.770000px;}
.x45{left:35.854500px;}
.x25{left:37.785000px;}
.x7{left:39.780000px;}
.x28{left:42.300000px;}
.x1f{left:49.140000px;}
.x26{left:50.580000px;}
.x19{left:54.001500px;}
.x21{left:57.405000px;}
.x3b{left:60.694500px;}
.x47{left:63.705000px;}
.x2d{left:67.845000px;}
.x3c{left:70.725000px;}
.x4f{left:72.720000px;}
.x10{left:73.785000px;}
.x2f{left:77.220000px;}
.x60{left:78.514500px;}
.x27{left:79.950000px;}
.x4d{left:81.000000px;}
.x46{left:85.534500px;}
.x4b{left:87.480000px;}
.x50{left:88.740000px;}
.x3e{left:94.680000px;}
.x43{left:95.940000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x14{left:105.300000px;}
.x1{left:108.036000px;}
.x52{left:111.808500px;}
.x2b{left:115.228500px;}
.x3{left:157.005000px;}
.x61{left:164.205000px;}
.x1b{left:168.705000px;}
.x2c{left:175.545000px;}
.xa{left:176.805000px;}
.xd{left:185.068500px;}
.xe{left:196.408500px;}
.x16{left:211.170000px;}
.x15{left:263.910000px;}
.x62{left:303.915000px;}
.x53{left:310.575000px;}
.x2e{left:317.235000px;}
.x12{left:325.875000px;}
.xc{left:368.338500px;}
.x1e{left:378.255000px;}
.x54{left:418.575000px;}
.x30{left:425.235000px;}
.x17{left:453.855000px;}
.xf{left:457.860000px;}
.x55{left:459.120000px;}
.x18{left:462.705000px;}
.x20{left:486.480000px;}
.x56{left:492.960000px;}
.x31{left:499.440000px;}
.x57{left:526.620000px;}
.x32{left:537.960000px;}
.x63{left:560.460000px;}
.x58{left:567.120000px;}
.x33{left:573.780000px;}
.x59{left:600.960000px;}
.x34{left:613.740000px;}
.x22{left:614.820000px;}
.x5a{left:634.650000px;}
.x64{left:641.490000px;}
.x35{left:651.390000px;}
.x6{left:661.650000px;}
.x5b{left:675.150000px;}
.x11{left:680.323500px;}
.x36{left:688.650000px;}
.x5c{left:708.990000px;}
.x37{left:722.310000px;}
.x5d{left:742.650000px;}
.x38{left:753.270000px;}
.x5e{left:776.490000px;}
.x39{left:783.150000px;}
.x5f{left:810.180000px;}
.x3a{left:814.500000px;}
@media print{
.v8{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.440000pt;}
.v7{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.ls27{letter-spacing:-1.536000pt;}
.ls20{letter-spacing:-0.581333pt;}
.ls34{letter-spacing:-0.432000pt;}
.ls10{letter-spacing:-0.294400pt;}
.ls6{letter-spacing:-0.290133pt;}
.ls16{letter-spacing:-0.272000pt;}
.lsf{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.208000pt;}
.ls2e{letter-spacing:-0.176000pt;}
.ls31{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.106133pt;}
.ls19{letter-spacing:-0.083200pt;}
.ls5{letter-spacing:-0.081067pt;}
.ls28{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.051200pt;}
.ls12{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.010240pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.035840pt;}
.ls14{letter-spacing:0.049920pt;}
.ls32{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.072533pt;}
.ls1c{letter-spacing:0.105600pt;}
.ls3{letter-spacing:0.134827pt;}
.ls2f{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.157867pt;}
.ls30{letter-spacing:0.176000pt;}
.ls24{letter-spacing:0.177067pt;}
.ls1b{letter-spacing:0.198933pt;}
.ls2b{letter-spacing:0.208000pt;}
.ls23{letter-spacing:0.224000pt;}
.ls1a{letter-spacing:0.236267pt;}
.ls33{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.264320pt;}
.ls26{letter-spacing:0.264533pt;}
.ls22{letter-spacing:0.273903pt;}
.ls0{letter-spacing:0.292480pt;}
.ls18{letter-spacing:0.293333pt;}
.ls13{letter-spacing:0.304000pt;}
.ls8{letter-spacing:0.454933pt;}
.ls1d{letter-spacing:0.458133pt;}
.ls21{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.496000pt;}
.ls29{letter-spacing:0.608000pt;}
.lse{letter-spacing:0.896000pt;}
.ls1{letter-spacing:6.992000pt;}
.ls2d{letter-spacing:8.448000pt;}
.ls2a{letter-spacing:10.832000pt;}
.wsf{word-spacing:-48.304000pt;}
.ws3{word-spacing:-22.590720pt;}
.ws5{word-spacing:-22.535787pt;}
.ws1{word-spacing:-19.837013pt;}
.wsd{word-spacing:-16.416000pt;}
.wsc{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.955520pt;}
.ws26{word-spacing:-12.432000pt;}
.ws1f{word-spacing:-12.400000pt;}
.ws23{word-spacing:-12.368000pt;}
.ws22{word-spacing:-12.336000pt;}
.ws25{word-spacing:-12.256000pt;}
.ws21{word-spacing:-12.192000pt;}
.ws20{word-spacing:-12.016000pt;}
.ws10{word-spacing:-11.872000pt;}
.ws19{word-spacing:-11.792000pt;}
.ws27{word-spacing:-11.760000pt;}
.ws6{word-spacing:-11.568000pt;}
.ws11{word-spacing:-11.520000pt;}
.ws1e{word-spacing:-11.488000pt;}
.ws24{word-spacing:-11.408000pt;}
.wsa{word-spacing:-11.328000pt;}
.ws4{word-spacing:-10.725120pt;}
.ws1c{word-spacing:-10.598613pt;}
.ws16{word-spacing:-10.570347pt;}
.ws17{word-spacing:-10.533013pt;}
.ws18{word-spacing:-10.439680pt;}
.ws2{word-spacing:-10.434987pt;}
.ws1b{word-spacing:-10.369920pt;}
.ws14{word-spacing:-10.344320pt;}
.ws13{word-spacing:-10.334080pt;}
.ws15{word-spacing:-10.250880pt;}
.ws1a{word-spacing:-10.043947pt;}
.ws1d{word-spacing:-10.032000pt;}
.wsb{word-spacing:-8.608000pt;}
.ws9{word-spacing:-7.968000pt;}
.ws8{word-spacing:-7.712000pt;}
.wse{word-spacing:0.000000pt;}
.ws12{word-spacing:916.976000pt;}
._4{margin-left:-4.032000pt;}
._2{margin-left:-3.072000pt;}
._6{margin-left:-2.161280pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.900907pt;}
._3{width:1.915093pt;}
._5{width:2.880000pt;}
._b{width:4.379093pt;}
._e{width:5.629867pt;}
._8{width:6.784000pt;}
._7{width:7.680000pt;}
._d{width:9.396267pt;}
._c{width:10.512000pt;}
._1b{width:12.624000pt;}
._13{width:13.584000pt;}
._a{width:14.496000pt;}
._9{width:15.552000pt;}
._1a{width:16.464000pt;}
._19{width:17.856000pt;}
._11{width:19.632000pt;}
._12{width:20.592000pt;}
._1c{width:21.936000pt;}
._18{width:23.232000pt;}
._f{width:24.672000pt;}
._10{width:25.872000pt;}
._22{width:26.880000pt;}
._1d{width:28.176000pt;}
._1f{width:29.520000pt;}
._25{width:30.720000pt;}
._2a{width:31.792000pt;}
._29{width:33.216000pt;}
._2b{width:35.616000pt;}
._14{width:36.624000pt;}
._15{width:37.562667pt;}
._24{width:38.682667pt;}
._2e{width:40.324267pt;}
._2d{width:41.216000pt;}
._17{width:45.571200pt;}
._16{width:46.464000pt;}
._23{width:50.400000pt;}
._27{width:52.080000pt;}
._21{width:54.336000pt;}
._20{width:55.248000pt;}
._26{width:56.192000pt;}
._28{width:62.352000pt;}
._2c{width:71.296000pt;}
._1e{width:488.336000pt;}
.fs3{font-size:10.880000pt;}
.fsd{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:66.560000pt;}
.fs9{font-size:67.461249pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y3b{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y10{bottom:2.880000pt;}
.y1e{bottom:3.040000pt;}
.y25{bottom:3.360000pt;}
.y27{bottom:3.520000pt;}
.y4{bottom:3.673333pt;}
.y1a{bottom:3.680000pt;}
.yc6{bottom:3.840000pt;}
.ycc{bottom:3.880000pt;}
.y3{bottom:3.993333pt;}
.y23{bottom:4.320000pt;}
.y97{bottom:6.080000pt;}
.y9f{bottom:7.200000pt;}
.ya1{bottom:7.520000pt;}
.y3a{bottom:8.000000pt;}
.ya9{bottom:8.480000pt;}
.y1c{bottom:9.600000pt;}
.y33{bottom:9.760000pt;}
.y96{bottom:11.360000pt;}
.y20{bottom:13.120000pt;}
.y21{bottom:13.280000pt;}
.y18{bottom:13.440000pt;}
.y13{bottom:13.600000pt;}
.y35{bottom:14.400000pt;}
.ybf{bottom:16.960000pt;}
.yd1{bottom:17.120000pt;}
.ye{bottom:17.920000pt;}
.yca{bottom:23.040000pt;}
.y39{bottom:26.880000pt;}
.y95{bottom:27.200000pt;}
.y32{bottom:30.240000pt;}
.yba{bottom:36.320000pt;}
.yc9{bottom:36.480000pt;}
.y17{bottom:40.680000pt;}
.y12{bottom:40.800000pt;}
.y38{bottom:45.920000pt;}
.yb9{bottom:49.760000pt;}
.y31{bottom:50.720000pt;}
.y5{bottom:51.872000pt;}
.yb8{bottom:63.040000pt;}
.y2{bottom:66.278667pt;}
.y37{bottom:67.386667pt;}
.y30{bottom:71.200000pt;}
.ya{bottom:71.546667pt;}
.yb7{bottom:76.320000pt;}
.y9{bottom:81.306667pt;}
.yb6{bottom:89.760000pt;}
.yc8{bottom:89.800000pt;}
.y2f{bottom:91.520000pt;}
.yb2{bottom:102.272000pt;}
.yb5{bottom:103.040000pt;}
.ye2{bottom:103.712000pt;}
.y84{bottom:105.952000pt;}
.yd9{bottom:106.272000pt;}
.yd7{bottom:107.872000pt;}
.y2e{bottom:112.026667pt;}
.ydb{bottom:112.512000pt;}
.y69{bottom:115.872000pt;}
.yb1{bottom:122.752000pt;}
.ye1{bottom:124.032000pt;}
.y83{bottom:126.272000pt;}
.yd8{bottom:126.752000pt;}
.y2d{bottom:132.506667pt;}
.yda{bottom:132.992000pt;}
.y68{bottom:136.186667pt;}
.yb0{bottom:143.226667pt;}
.ye0{bottom:144.506667pt;}
.y82{bottom:146.746667pt;}
.y2c{bottom:152.986667pt;}
.y67{bottom:156.666667pt;}
.yaf{bottom:163.546667pt;}
.ydf{bottom:164.986667pt;}
.y81{bottom:167.226667pt;}
.y2b{bottom:173.466667pt;}
.y66{bottom:177.146667pt;}
.yae{bottom:184.026667pt;}
.yde{bottom:185.466667pt;}
.y80{bottom:187.706667pt;}
.y2a{bottom:193.946667pt;}
.y65{bottom:197.626667pt;}
.yad{bottom:204.506667pt;}
.ydd{bottom:205.946667pt;}
.y7f{bottom:208.186667pt;}
.y29{bottom:214.266667pt;}
.y64{bottom:218.106667pt;}
.yac{bottom:224.986667pt;}
.ydc{bottom:226.426667pt;}
.y7e{bottom:228.666667pt;}
.y63{bottom:238.626667pt;}
.yab{bottom:245.506667pt;}
.y7d{bottom:249.026667pt;}
.y62{bottom:258.946667pt;}
.y7c{bottom:269.506667pt;}
.y61{bottom:279.426667pt;}
.yaa{bottom:286.306667pt;}
.y7b{bottom:289.986667pt;}
.ya8{bottom:299.106667pt;}
.y60{bottom:299.906667pt;}
.y7a{bottom:310.466667pt;}
.ya7{bottom:319.426667pt;}
.y5f{bottom:320.386667pt;}
.y79{bottom:337.346667pt;}
.y5e{bottom:340.866667pt;}
.ya6{bottom:355.426667pt;}
.y34{bottom:358.146667pt;}
.y5d{bottom:361.346667pt;}
.y78{bottom:364.706667pt;}
.ya5{bottom:373.346667pt;}
.y28{bottom:381.026667pt;}
.y5c{bottom:381.666667pt;}
.y77{bottom:385.186667pt;}
.ya4{bottom:391.266667pt;}
.y5b{bottom:402.146667pt;}
.y76{bottom:405.666667pt;}
.ya3{bottom:409.346667pt;}
.y5a{bottom:422.626667pt;}
.y75{bottom:426.146667pt;}
.ya2{bottom:427.266667pt;}
.y59{bottom:443.106667pt;}
.ya0{bottom:445.186667pt;}
.y74{bottom:446.466667pt;}
.y58{bottom:463.586667pt;}
.y9e{bottom:464.386667pt;}
.y73{bottom:466.946667pt;}
.y57{bottom:484.066667pt;}
.y72{bottom:487.426667pt;}
.y9d{bottom:493.213333pt;}
.y56{bottom:504.413333pt;}
.y9c{bottom:513.693333pt;}
.y71{bottom:516.413333pt;}
.y55{bottom:524.893333pt;}
.y9b{bottom:534.013333pt;}
.yd6{bottom:540.093333pt;}
.y70{bottom:544.733333pt;}
.y54{bottom:545.373333pt;}
.y9a{bottom:546.813333pt;}
.yd5{bottom:560.573333pt;}
.y99{bottom:564.573333pt;}
.y6f{bottom:565.213333pt;}
.y53{bottom:565.853333pt;}
.yd4{bottom:581.053333pt;}
.y98{bottom:581.373333pt;}
.y6e{bottom:585.693333pt;}
.y52{bottom:586.333333pt;}
.y94{bottom:599.133333pt;}
.yd3{bottom:601.533333pt;}
.y26{bottom:606.013333pt;}
.y51{bottom:606.653333pt;}
.y24{bottom:619.613333pt;}
.y6d{bottom:626.493333pt;}
.y50{bottom:627.133333pt;}
.y22{bottom:636.413333pt;}
.yd2{bottom:642.493333pt;}
.y6c{bottom:646.973333pt;}
.y4f{bottom:647.613333pt;}
.y1f{bottom:654.173333pt;}
.yc7{bottom:655.133333pt;}
.y6b{bottom:667.453333pt;}
.y4e{bottom:668.093333pt;}
.yd0{bottom:670.493333pt;}
.y1d{bottom:680.733333pt;}
.y6a{bottom:688.093333pt;}
.y4d{bottom:688.573333pt;}
.y93{bottom:692.573333pt;}
.y1b{bottom:692.733333pt;}
.ycf{bottom:698.173333pt;}
.y4c{bottom:709.053333pt;}
.yce{bottom:712.413333pt;}
.y19{bottom:713.053333pt;}
.ycd{bottom:726.813333pt;}
.y16{bottom:728.253333pt;}
.y4b{bottom:729.373333pt;}
.y92{bottom:733.533333pt;}
.ycb{bottom:741.053333pt;}
.y4a{bottom:749.893333pt;}
.y91{bottom:754.053333pt;}
.yc5{bottom:756.453333pt;}
.y49{bottom:770.373333pt;}
.y90{bottom:774.533333pt;}
.yc4{bottom:781.573333pt;}
.y14{bottom:782.693333pt;}
.y48{bottom:790.853333pt;}
.y8f{bottom:794.853333pt;}
.y11{bottom:795.653333pt;}
.yc3{bottom:802.053333pt;}
.y47{bottom:811.333333pt;}
.y8e{bottom:815.333333pt;}
.yc2{bottom:822.533333pt;}
.y46{bottom:831.813333pt;}
.y8d{bottom:835.813333pt;}
.yc1{bottom:842.853333pt;}
.yf{bottom:850.053333pt;}
.y45{bottom:852.133333pt;}
.yb4{bottom:855.653333pt;}
.y8c{bottom:856.293333pt;}
.yd{bottom:862.053333pt;}
.yc0{bottom:871.013333pt;}
.y44{bottom:872.613333pt;}
.y8b{bottom:876.773333pt;}
.y43{bottom:893.093333pt;}
.y8a{bottom:897.253333pt;}
.ybe{bottom:898.693333pt;}
.yc{bottom:900.773333pt;}
.y42{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y89{bottom:917.573333pt;}
.ybd{bottom:926.373333pt;}
.y8{bottom:930.533333pt;}
.y41{bottom:934.053333pt;}
.y88{bottom:938.053333pt;}
.ybc{bottom:940.613333pt;}
.y36{bottom:946.853333pt;}
.y40{bottom:954.533333pt;}
.ybb{bottom:955.013333pt;}
.y87{bottom:958.533333pt;}
.yb3{bottom:970.373333pt;}
.y3f{bottom:974.853333pt;}
.y86{bottom:979.013333pt;}
.y3e{bottom:995.333333pt;}
.y85{bottom:1008.000000pt;}
.y3d{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3c{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h10{height:11.986667pt;}
.h1c{height:12.000000pt;}
.h15{height:12.946667pt;}
.h36{height:13.266667pt;}
.h3c{height:13.280000pt;}
.h39{height:13.426667pt;}
.h3d{height:13.440000pt;}
.h3b{height:13.460000pt;}
.h23{height:13.600000pt;}
.h18{height:15.200000pt;}
.h32{height:15.680000pt;}
.h21{height:16.800000pt;}
.h33{height:16.946667pt;}
.h34{height:17.266667pt;}
.h20{height:17.760000pt;}
.h35{height:18.226667pt;}
.h3{height:18.393333pt;}
.h5{height:18.560000pt;}
.h1a{height:20.320000pt;}
.h27{height:22.866667pt;}
.h28{height:25.907188pt;}
.h38{height:26.546667pt;}
.h1e{height:26.560000pt;}
.h3e{height:26.720000pt;}
.h11{height:29.040312pt;}
.h1d{height:29.856875pt;}
.h30{height:32.453125pt;}
.h16{height:32.788125pt;}
.h19{height:35.975313pt;}
.h2d{height:36.281250pt;}
.h24{height:36.304688pt;}
.hd{height:36.306667pt;}
.h1b{height:36.328125pt;}
.h2b{height:36.703125pt;}
.h2f{height:36.800000pt;}
.h26{height:37.658750pt;}
.h3f{height:37.765417pt;}
.h2e{height:40.453125pt;}
.h13{height:43.343750pt;}
.h22{height:44.533750pt;}
.h1f{height:44.562500pt;}
.h14{height:45.687867pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h2a{height:48.937500pt;}
.h2c{height:49.075000pt;}
.h6{height:50.712187pt;}
.h31{height:53.573125pt;}
.h12{height:54.386667pt;}
.h17{height:54.420000pt;}
.he{height:57.647187pt;}
.hf{height:60.764863pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.h7{height:75.465000pt;}
.h29{height:83.386667pt;}
.h8{height:96.026667pt;}
.h3a{height:99.380000pt;}
.h37{height:112.626667pt;}
.h25{height:224.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:26.240000pt;}
.w1e{width:26.546667pt;}
.w1d{width:27.506667pt;}
.w1f{width:27.866667pt;}
.w1c{width:29.906667pt;}
.w25{width:29.938667pt;}
.w26{width:29.946667pt;}
.w23{width:30.066667pt;}
.w27{width:30.080000pt;}
.w2c{width:30.880000pt;}
.w18{width:31.826667pt;}
.w16{width:32.306667pt;}
.w1b{width:33.106667pt;}
.w1a{width:33.458667pt;}
.w15{width:33.632000pt;}
.w17{width:34.226667pt;}
.w19{width:35.506667pt;}
.w24{width:35.986667pt;}
.w2b{width:36.018667pt;}
.w22{width:36.032000pt;}
.w2{width:40.470667pt;}
.w6{width:68.150667pt;}
.wd{width:84.146667pt;}
.w14{width:96.000000pt;}
.wf{width:96.192000pt;}
.w28{width:97.950667pt;}
.w2a{width:101.920000pt;}
.wc{width:101.950667pt;}
.we{width:102.098667pt;}
.w21{width:102.110667pt;}
.w12{width:108.030667pt;}
.w5{width:110.226667pt;}
.w10{width:114.066667pt;}
.w29{width:124.178667pt;}
.w13{width:125.938667pt;}
.w11{width:203.733333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.920000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:2.546667pt;}
.x41{left:3.520000pt;}
.x1d{left:4.506667pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x4c{left:8.146667pt;}
.x5{left:9.590667pt;}
.x2{left:10.710667pt;}
.x3d{left:11.680000pt;}
.x23{left:12.666667pt;}
.x1a{left:13.598667pt;}
.x13{left:14.880000pt;}
.x49{left:15.826667pt;}
.x48{left:16.800000pt;}
.x4a{left:17.746667pt;}
.x65{left:19.360000pt;}
.x51{left:20.320000pt;}
.x44{left:21.280000pt;}
.x42{left:22.880000pt;}
.x40{left:24.146667pt;}
.x3f{left:25.906667pt;}
.x2a{left:27.026667pt;}
.x29{left:28.306667pt;}
.x24{left:29.918667pt;}
.x4e{left:30.906667pt;}
.x45{left:31.870667pt;}
.x25{left:33.586667pt;}
.x7{left:35.360000pt;}
.x28{left:37.600000pt;}
.x1f{left:43.680000pt;}
.x26{left:44.960000pt;}
.x19{left:48.001333pt;}
.x21{left:51.026667pt;}
.x3b{left:53.950667pt;}
.x47{left:56.626667pt;}
.x2d{left:60.306667pt;}
.x3c{left:62.866667pt;}
.x4f{left:64.640000pt;}
.x10{left:65.586667pt;}
.x2f{left:68.640000pt;}
.x60{left:69.790667pt;}
.x27{left:71.066667pt;}
.x4d{left:72.000000pt;}
.x46{left:76.030667pt;}
.x4b{left:77.760000pt;}
.x50{left:78.880000pt;}
.x3e{left:84.160000pt;}
.x43{left:85.280000pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x14{left:93.600000pt;}
.x1{left:96.032000pt;}
.x52{left:99.385333pt;}
.x2b{left:102.425333pt;}
.x3{left:139.560000pt;}
.x61{left:145.960000pt;}
.x1b{left:149.960000pt;}
.x2c{left:156.040000pt;}
.xa{left:157.160000pt;}
.xd{left:164.505333pt;}
.xe{left:174.585333pt;}
.x16{left:187.706667pt;}
.x15{left:234.586667pt;}
.x62{left:270.146667pt;}
.x53{left:276.066667pt;}
.x2e{left:281.986667pt;}
.x12{left:289.666667pt;}
.xc{left:327.412000pt;}
.x1e{left:336.226667pt;}
.x54{left:372.066667pt;}
.x30{left:377.986667pt;}
.x17{left:403.426667pt;}
.xf{left:406.986667pt;}
.x55{left:408.106667pt;}
.x18{left:411.293333pt;}
.x20{left:432.426667pt;}
.x56{left:438.186667pt;}
.x31{left:443.946667pt;}
.x57{left:468.106667pt;}
.x32{left:478.186667pt;}
.x63{left:498.186667pt;}
.x58{left:504.106667pt;}
.x33{left:510.026667pt;}
.x59{left:534.186667pt;}
.x34{left:545.546667pt;}
.x22{left:546.506667pt;}
.x5a{left:564.133333pt;}
.x64{left:570.213333pt;}
.x35{left:579.013333pt;}
.x6{left:588.133333pt;}
.x5b{left:600.133333pt;}
.x11{left:604.732000pt;}
.x36{left:612.133333pt;}
.x5c{left:630.213333pt;}
.x37{left:642.053333pt;}
.x5d{left:660.133333pt;}
.x38{left:669.573333pt;}
.x5e{left:690.213333pt;}
.x39{left:696.133333pt;}
.x5f{left:720.160000pt;}
.x3a{left:724.000000pt;}
}




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