
    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_7d80d6ce28d9b6e699216512.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_67b2f5eb40dca7fae6aad1b9.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_6f6d88e32107a2b61ae7ab91.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_40960af25aea7b9f8ffcefd6.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_12f21195e1707e76fc4761c7.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_0f96fb6a59660d3f6d9a8bfd.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_4285e6064de1a2a50fb8a236.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_183b6073e28b1de7b241969b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ce8ed01729b18dd498fbdb0f.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_5ed68df2e242b4364c43af55.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_d997ec9bf23004901b0d9c5c.woff2')format("woff");}.fff{font-family:fff;line-height:0.952148;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_b7e8b1c5a6ef771902d86cea.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_069f8aafb5c8addc3f3c8737.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_872c00071b8c79167a3c0294.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cfe7c75c519b9bdbed679843.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.770996;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);}
.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);}
.v2{vertical-align:-23.760000px;}
.v5{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.331200px;}
.ls17{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.306000px;}
.ls24{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.234000px;}
.ls11{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.099600px;}
.ls7{letter-spacing:-0.091200px;}
.ls13{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.031680px;}
.ls2{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.054000px;}
.ls2b{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.090000px;}
.ls29{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.198000px;}
.ls1e{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.234000px;}
.ls9{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.234720px;}
.ls2c{letter-spacing:0.252000px;}
.ls14{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.331200px;}
.lsa{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.450000px;}
.lsf{letter-spacing:0.486000px;}
.ls1b{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.558000px;}
.ls3{letter-spacing:0.756000px;}
.ls18{letter-spacing:1.386000px;}
.ls20{letter-spacing:3.546000px;}
.ls1f{letter-spacing:10.746000px;}
.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;}
}
.ws1{word-spacing:-22.316640px;}
.wsa{word-spacing:-18.954000px;}
.ws9{word-spacing:-18.468000px;}
.ws3{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws5{word-spacing:-16.824960px;}
.ws27{word-spacing:-14.040000px;}
.ws26{word-spacing:-14.004000px;}
.ws1d{word-spacing:-13.950000px;}
.ws24{word-spacing:-13.932000px;}
.ws1f{word-spacing:-13.896000px;}
.ws28{word-spacing:-13.806000px;}
.ws19{word-spacing:-13.770000px;}
.ws22{word-spacing:-13.752000px;}
.ws18{word-spacing:-13.716000px;}
.ws20{word-spacing:-13.464000px;}
.ws1c{word-spacing:-13.410000px;}
.ws23{word-spacing:-13.302000px;}
.ws29{word-spacing:-13.266000px;}
.ws1b{word-spacing:-13.230000px;}
.wse{word-spacing:-13.194000px;}
.ws15{word-spacing:-13.104000px;}
.ws1e{word-spacing:-13.068000px;}
.wsc{word-spacing:-13.032000px;}
.ws6{word-spacing:-13.014000px;}
.ws7{word-spacing:-12.978000px;}
.ws13{word-spacing:-12.960000px;}
.ws11{word-spacing:-12.924000px;}
.ws16{word-spacing:-12.906000px;}
.ws14{word-spacing:-12.834000px;}
.wsd{word-spacing:-12.798000px;}
.ws17{word-spacing:-12.780000px;}
.ws25{word-spacing:-12.744000px;}
.ws1a{word-spacing:-12.726000px;}
.ws21{word-spacing:-12.708000px;}
.ws12{word-spacing:-12.690000px;}
.wsf{word-spacing:-11.526240px;}
.ws2{word-spacing:-10.576680px;}
.ws10{word-spacing:-7.287840px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._3{width:1.168560px;}
._4{width:2.520000px;}
._5{width:3.523440px;}
._a{width:5.430000px;}
._1a{width:6.469440px;}
._13{width:7.842000px;}
._6{width:9.612000px;}
._7{width:10.687440px;}
._d{width:11.776560px;}
._14{width:14.742000px;}
._19{width:15.841440px;}
._8{width:16.848000px;}
._9{width:17.874000px;}
._16{width:18.884880px;}
._10{width:19.980000px;}
._11{width:21.438000px;}
._e{width:23.220000px;}
._f{width:24.354000px;}
._b{width:26.352000px;}
._c{width:27.667440px;}
._1b{width:28.708560px;}
._20{width:30.439440px;}
._1d{width:32.076000px;}
._15{width:33.534000px;}
._24{width:34.555440px;}
._12{width:35.640000px;}
._18{width:37.260000px;}
._1e{width:38.772000px;}
._1c{width:39.924000px;}
._27{width:41.184000px;}
._17{width:42.336000px;}
._21{width:43.524000px;}
._22{width:45.306000px;}
._2f{width:48.265200px;}
._1f{width:49.464000px;}
._26{width:55.080000px;}
._28{width:57.510000px;}
._29{width:59.346000px;}
._2b{width:60.510000px;}
._2a{width:61.776000px;}
._2e{width:62.814000px;}
._30{width:65.934000px;}
._31{width:67.590000px;}
._32{width:69.012000px;}
._2{width:77.285280px;}
._2c{width:85.104000px;}
._2d{width:86.346000px;}
._25{width:127.710000px;}
._23{width:1112.526000px;}
.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;}
.fse{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y43{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1f{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y25{bottom:3.600000px;}
.y1b{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y23{bottom:4.860000px;}
.y9b{bottom:7.740000px;}
.y92{bottom:7.920000px;}
.y42{bottom:9.000000px;}
.y7c{bottom:9.540000px;}
.y83{bottom:9.705000px;}
.y7d{bottom:9.720000px;}
.yc1{bottom:10.800000px;}
.y3b{bottom:10.965000px;}
.y1d{bottom:10.980000px;}
.yc7{bottom:11.010000px;}
.y21{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y3d{bottom:16.185000px;}
.yf{bottom:19.980000px;}
.y19{bottom:21.060000px;}
.y98{bottom:27.720000px;}
.y95{bottom:27.900000px;}
.y86{bottom:30.045000px;}
.y90{bottom:30.060000px;}
.y82{bottom:30.090000px;}
.y41{bottom:30.240000px;}
.y7a{bottom:32.400000px;}
.yb6{bottom:33.840000px;}
.y3a{bottom:34.005000px;}
.yb9{bottom:34.020000px;}
.yb0{bottom:34.050000px;}
.yb2{bottom:34.740000px;}
.yab{bottom:36.165000px;}
.ybf{bottom:36.180000px;}
.y13{bottom:45.765000px;}
.y97{bottom:47.700000px;}
.y9d{bottom:47.730000px;}
.y9a{bottom:47.880000px;}
.y94{bottom:47.925000px;}
.y85{bottom:50.565000px;}
.y7f{bottom:50.580000px;}
.y81{bottom:50.610000px;}
.y40{bottom:51.660000px;}
.y18{bottom:51.840000px;}
.yc4{bottom:56.880000px;}
.yc6{bottom:56.910000px;}
.yb5{bottom:56.925000px;}
.y39{bottom:57.045000px;}
.yb8{bottom:57.060000px;}
.yaf{bottom:57.090000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y3f{bottom:75.810000px;}
.y38{bottom:80.085000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y37{bottom:103.125000px;}
.yf9{bottom:113.760000px;}
.yd3{bottom:115.560000px;}
.ye5{bottom:116.640000px;}
.y78{bottom:124.020000px;}
.y8e{bottom:125.280000px;}
.y36{bottom:125.985000px;}
.yae{bottom:129.240000px;}
.y71{bottom:130.320000px;}
.yf8{bottom:136.800000px;}
.yd2{bottom:138.600000px;}
.y77{bottom:147.096000px;}
.y8d{bottom:148.356000px;}
.y35{bottom:149.025000px;}
.y70{bottom:153.210000px;}
.y3c{bottom:155.025000px;}
.yf7{bottom:159.870000px;}
.yd1{bottom:161.670000px;}
.y76{bottom:170.130000px;}
.y8c{bottom:171.210000px;}
.y34{bottom:172.065000px;}
.y6f{bottom:176.250000px;}
.y27{bottom:180.765000px;}
.yf6{bottom:182.910000px;}
.yd0{bottom:184.710000px;}
.y75{bottom:192.990000px;}
.y8b{bottom:194.250000px;}
.y33{bottom:195.105000px;}
.y6e{bottom:199.290000px;}
.yad{bottom:199.485000px;}
.yf5{bottom:205.950000px;}
.ycf{bottom:207.750000px;}
.y74{bottom:216.030000px;}
.y8a{bottom:217.290000px;}
.y32{bottom:218.190000px;}
.y6d{bottom:222.330000px;}
.yf4{bottom:228.810000px;}
.yce{bottom:230.790000px;}
.y73{bottom:239.070000px;}
.y89{bottom:240.330000px;}
.y31{bottom:241.230000px;}
.y6c{bottom:245.370000px;}
.yf3{bottom:251.850000px;}
.ycd{bottom:253.650000px;}
.y88{bottom:263.370000px;}
.y30{bottom:264.090000px;}
.y6b{bottom:268.410000px;}
.yaa{bottom:269.685000px;}
.yf2{bottom:274.890000px;}
.ycc{bottom:276.690000px;}
.y87{bottom:286.410000px;}
.y2f{bottom:287.130000px;}
.y6a{bottom:291.270000px;}
.yac{bottom:294.885000px;}
.yf1{bottom:297.930000px;}
.ycb{bottom:299.730000px;}
.y84{bottom:300.645000px;}
.y2e{bottom:310.170000px;}
.y69{bottom:314.310000px;}
.yf0{bottom:320.970000px;}
.yca{bottom:322.770000px;}
.ya9{bottom:331.050000px;}
.y2d{bottom:333.210000px;}
.y68{bottom:337.350000px;}
.yef{bottom:343.830000px;}
.yc9{bottom:345.810000px;}
.ya8{bottom:354.090000px;}
.y2c{bottom:356.250000px;}
.y67{bottom:360.390000px;}
.y80{bottom:363.105000px;}
.yee{bottom:366.870000px;}
.yc8{bottom:368.670000px;}
.ya7{bottom:377.130000px;}
.y2b{bottom:379.110000px;}
.yc5{bottom:383.085000px;}
.y66{bottom:383.430000px;}
.yed{bottom:389.910000px;}
.ya6{bottom:400.215000px;}
.y2a{bottom:402.150000px;}
.y65{bottom:406.515000px;}
.yec{bottom:412.995000px;}
.ya5{bottom:423.255000px;}
.y29{bottom:425.190000px;}
.y7e{bottom:425.595000px;}
.y64{bottom:429.375000px;}
.yeb{bottom:436.035000px;}
.ya4{bottom:446.295000px;}
.y28{bottom:448.230000px;}
.y63{bottom:452.415000px;}
.yc3{bottom:453.315000px;}
.yea{bottom:459.075000px;}
.ya3{bottom:469.155000px;}
.y62{bottom:475.455000px;}
.ye9{bottom:481.935000px;}
.y79{bottom:488.055000px;}
.ya2{bottom:492.195000px;}
.y61{bottom:498.495000px;}
.ye8{bottom:504.975000px;}
.y7b{bottom:510.915000px;}
.ya1{bottom:515.235000px;}
.y60{bottom:521.535000px;}
.yc2{bottom:523.335000px;}
.ye7{bottom:528.015000px;}
.ye4{bottom:533.235000px;}
.ya0{bottom:538.275000px;}
.y5f{bottom:544.575000px;}
.ye3{bottom:556.275000px;}
.y9f{bottom:561.315000px;}
.y5e{bottom:567.435000px;}
.ye6{bottom:574.095000px;}
.ye2{bottom:579.315000px;}
.y9e{bottom:584.355000px;}
.y5d{bottom:590.475000px;}
.ybe{bottom:593.535000px;}
.y9c{bottom:598.575000px;}
.ye1{bottom:602.355000px;}
.y5c{bottom:613.515000px;}
.yc0{bottom:618.915000px;}
.ye0{bottom:625.215000px;}
.y5b{bottom:636.555000px;}
.y26{bottom:641.085000px;}
.ydf{bottom:648.285000px;}
.ybd{bottom:655.125000px;}
.y24{bottom:656.385000px;}
.y5a{bottom:659.625000px;}
.yde{bottom:671.325000px;}
.y22{bottom:675.105000px;}
.ybc{bottom:677.985000px;}
.y59{bottom:682.485000px;}
.ydd{bottom:694.365000px;}
.y20{bottom:695.085000px;}
.ybb{bottom:701.025000px;}
.y58{bottom:705.525000px;}
.yba{bottom:713.805000px;}
.ydc{bottom:717.405000px;}
.y99{bottom:720.465000px;}
.y1e{bottom:725.145000px;}
.y57{bottom:728.565000px;}
.y1c{bottom:738.465000px;}
.ydb{bottom:740.265000px;}
.y56{bottom:751.605000px;}
.y1a{bottom:761.505000px;}
.yda{bottom:763.305000px;}
.y55{bottom:774.645000px;}
.yd9{bottom:777.705000px;}
.y17{bottom:778.425000px;}
.y96{bottom:781.485000px;}
.yb7{bottom:783.645000px;}
.y54{bottom:797.685000px;}
.y53{bottom:820.545000px;}
.y15{bottom:839.805000px;}
.y93{bottom:842.325000px;}
.y52{bottom:843.585000px;}
.yd8{bottom:847.905000px;}
.yb4{bottom:853.485000px;}
.y12{bottom:854.385000px;}
.y51{bottom:866.625000px;}
.y50{bottom:889.710000px;}
.y8f{bottom:903.390000px;}
.y4f{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.yd7{bottom:917.970000px;}
.yb1{bottom:923.190000px;}
.y91{bottom:925.530000px;}
.yd{bottom:929.130000px;}
.y4e{bottom:935.790000px;}
.yb3{bottom:946.950000px;}
.y4d{bottom:958.650000px;}
.y4c{bottom:981.690000px;}
.yd6{bottom:988.170000px;}
.y4b{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y4a{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y49{bottom:1050.810000px;}
.yd4{bottom:1058.370000px;}
.y3e{bottom:1065.210000px;}
.y48{bottom:1073.850000px;}
.yd5{bottom:1083.570000px;}
.y47{bottom:1096.710000px;}
.y46{bottom:1119.750000px;}
.y45{bottom:1142.820000px;}
.y72{bottom:1146.600000px;}
.y1{bottom:1171.080000px;}
.y44{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1c{height:13.320000px;}
.h10{height:13.665000px;}
.h14{height:14.580000px;}
.h23{height:15.300000px;}
.h18{height:16.920000px;}
.h21{height:18.720000px;}
.h35{height:19.965000px;}
.h20{height:19.980000px;}
.h30{height:20.325000px;}
.h31{height:20.505000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h42{height:22.890000px;}
.h3b{height:23.025000px;}
.h1a{height:23.040000px;}
.h17{height:25.001719px;}
.h27{height:25.725000px;}
.h2d{height:27.246094px;}
.h28{height:29.145586px;}
.h1e{height:30.060000px;}
.h11{height:32.670352px;}
.h1d{height:33.588984px;}
.h2f{height:36.509766px;}
.h15{height:36.886641px;}
.h19{height:40.472227px;}
.h24{height:40.842773px;}
.h1b{height:40.869141px;}
.h2b{height:41.291016px;}
.h34{height:42.105000px;}
.h26{height:42.366094px;}
.h2e{height:43.185000px;}
.h3e{height:46.785000px;}
.h3a{height:48.225000px;}
.h41{height:48.270000px;}
.h13{height:48.761719px;}
.h22{height:50.100469px;}
.h1f{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h2a{height:55.054688px;}
.h2c{height:55.209375px;}
.h6{height:57.051211px;}
.h37{height:59.760000px;}
.h39{height:59.790000px;}
.h38{height:59.940000px;}
.h36{height:59.962500px;}
.h12{height:61.042500px;}
.h32{height:61.365000px;}
.h16{height:61.380000px;}
.h33{height:61.401000px;}
.he{height:64.853086px;}
.hf{height:68.360471px;}
.h43{height:68.925000px;}
.h45{height:68.940000px;}
.h44{height:68.961000px;}
.h3f{height:68.962500px;}
.h3c{height:69.105000px;}
.h40{height:69.120000px;}
.h3d{height:69.156000px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h29{height:93.810000px;}
.h8{height:108.030000px;}
.h25{height:460.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w29{width:75.636000px;}
.w6{width:76.669500px;}
.w1c{width:87.681000px;}
.w31{width:89.085000px;}
.w23{width:92.376000px;}
.wf{width:94.500000px;}
.w16{width:94.521000px;}
.w10{width:94.536000px;}
.wd{width:95.421000px;}
.w1a{width:95.976000px;}
.w2b{width:101.181000px;}
.w2a{width:101.325000px;}
.w30{width:101.376000px;}
.w32{width:107.481000px;}
.w1b{width:107.985000px;}
.w11{width:108.021000px;}
.w14{width:110.181000px;}
.w21{width:111.081000px;}
.w33{width:114.645000px;}
.w2e{width:114.681000px;}
.w24{width:114.825000px;}
.w25{width:118.065000px;}
.w13{width:119.329500px;}
.w2c{width:121.485000px;}
.w1f{width:121.521000px;}
.w5{width:124.005000px;}
.w1e{width:126.889500px;}
.w27{width:126.921000px;}
.wc{width:127.429500px;}
.w20{width:133.189500px;}
.w1d{width:134.985000px;}
.w26{width:148.489500px;}
.w2d{width:153.529500px;}
.w12{width:155.145000px;}
.w17{width:161.985000px;}
.w18{width:248.419500px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.w28{width:399.675000px;}
.w2f{width:412.815000px;}
.w19{width:426.675000px;}
.w22{width:433.335000px;}
.w15{width:445.575000px;}
.we{width:452.235000px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x56{left:3.589500px;}
.x39{left:5.389500px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x42{left:9.349500px;}
.x5{left:10.789500px;}
.x22{left:12.045000px;}
.x45{left:13.500000px;}
.x54{left:14.580000px;}
.x2d{left:15.649500px;}
.x12{left:16.740000px;}
.x29{left:18.210000px;}
.x36{left:19.245000px;}
.x2{left:21.049500px;}
.x2a{left:22.665000px;}
.x48{left:23.745000px;}
.x28{left:25.369500px;}
.x49{left:26.805000px;}
.x21{left:28.245000px;}
.x37{left:29.505000px;}
.x1d{left:31.140000px;}
.x23{left:32.220000px;}
.x18{left:33.289500px;}
.x3a{left:34.365000px;}
.x24{left:35.625000px;}
.x46{left:36.885000px;}
.x2b{left:38.145000px;}
.x7{left:39.780000px;}
.x44{left:40.890000px;}
.x2e{left:42.465000px;}
.x43{left:43.770000px;}
.x25{left:45.705000px;}
.x1a{left:47.550000px;}
.x3b{left:50.220000px;}
.x30{left:55.110000px;}
.x26{left:57.060000px;}
.x2c{left:59.400000px;}
.x55{left:60.660000px;}
.x50{left:63.390000px;}
.x47{left:67.500000px;}
.xf{left:73.785000px;}
.x27{left:77.580000px;}
.x38{left:81.000000px;}
.x3c{left:89.983500px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x13{left:105.300000px;}
.x1{left:108.036000px;}
.x52{left:115.590000px;}
.x59{left:122.250000px;}
.x3e{left:129.090000px;}
.x4c{left:132.510000px;}
.x32{left:138.630000px;}
.x1c{left:151.230000px;}
.x3{left:157.005000px;}
.xc{left:159.283500px;}
.xa{left:176.805000px;}
.x2f{left:227.385000px;}
.x15{left:230.430000px;}
.x19{left:235.485000px;}
.x4a{left:242.145000px;}
.x4f{left:256.545000px;}
.x57{left:261.585000px;}
.x14{left:263.910000px;}
.x11{left:325.875000px;}
.x1b{left:330.915000px;}
.x31{left:337.575000px;}
.xd{left:338.638500px;}
.x4b{left:353.235000px;}
.x3d{left:356.475000px;}
.x58{left:376.275000px;}
.x51{left:383.475000px;}
.x1e{left:425.415000px;}
.x33{left:432.075000px;}
.x4d{left:445.620000px;}
.x3f{left:452.460000px;}
.x16{left:453.855000px;}
.xe{left:457.860000px;}
.x53{left:459.120000px;}
.x17{left:462.705000px;}
.x5a{left:477.660000px;}
.x1f{left:519.960000px;}
.x34{left:526.620000px;}
.x40{left:560.460000px;}
.x5b{left:566.760000px;}
.x35{left:621.150000px;}
.x20{left:627.990000px;}
.x41{left:648.150000px;}
.x6{left:661.650000px;}
.x4e{left:668.490000px;}
.x5c{left:674.250000px;}
.x10{left:680.323500px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v5{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.294400pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.272000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.208000pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.088533pt;}
.ls7{letter-spacing:-0.081067pt;}
.ls13{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.028160pt;}
.ls2{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.048000pt;}
.ls2b{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.080000pt;}
.ls29{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.176000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.208000pt;}
.ls9{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.208640pt;}
.ls2c{letter-spacing:0.224000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.294400pt;}
.lsa{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.400000pt;}
.lsf{letter-spacing:0.432000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.496000pt;}
.ls3{letter-spacing:0.672000pt;}
.ls18{letter-spacing:1.232000pt;}
.ls20{letter-spacing:3.152000pt;}
.ls1f{letter-spacing:9.552000pt;}
.ws1{word-spacing:-19.837013pt;}
.wsa{word-spacing:-16.848000pt;}
.ws9{word-spacing:-16.416000pt;}
.ws3{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws5{word-spacing:-14.955520pt;}
.ws27{word-spacing:-12.480000pt;}
.ws26{word-spacing:-12.448000pt;}
.ws1d{word-spacing:-12.400000pt;}
.ws24{word-spacing:-12.384000pt;}
.ws1f{word-spacing:-12.352000pt;}
.ws28{word-spacing:-12.272000pt;}
.ws19{word-spacing:-12.240000pt;}
.ws22{word-spacing:-12.224000pt;}
.ws18{word-spacing:-12.192000pt;}
.ws20{word-spacing:-11.968000pt;}
.ws1c{word-spacing:-11.920000pt;}
.ws23{word-spacing:-11.824000pt;}
.ws29{word-spacing:-11.792000pt;}
.ws1b{word-spacing:-11.760000pt;}
.wse{word-spacing:-11.728000pt;}
.ws15{word-spacing:-11.648000pt;}
.ws1e{word-spacing:-11.616000pt;}
.wsc{word-spacing:-11.584000pt;}
.ws6{word-spacing:-11.568000pt;}
.ws7{word-spacing:-11.536000pt;}
.ws13{word-spacing:-11.520000pt;}
.ws11{word-spacing:-11.488000pt;}
.ws16{word-spacing:-11.472000pt;}
.ws14{word-spacing:-11.408000pt;}
.wsd{word-spacing:-11.376000pt;}
.ws17{word-spacing:-11.360000pt;}
.ws25{word-spacing:-11.328000pt;}
.ws1a{word-spacing:-11.312000pt;}
.ws21{word-spacing:-11.296000pt;}
.ws12{word-spacing:-11.280000pt;}
.wsf{word-spacing:-10.245547pt;}
.ws2{word-spacing:-9.401493pt;}
.ws10{word-spacing:-6.478080pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.038720pt;}
._4{width:2.240000pt;}
._5{width:3.131947pt;}
._a{width:4.826667pt;}
._1a{width:5.750613pt;}
._13{width:6.970667pt;}
._6{width:8.544000pt;}
._7{width:9.499947pt;}
._d{width:10.468053pt;}
._14{width:13.104000pt;}
._19{width:14.081280pt;}
._8{width:14.976000pt;}
._9{width:15.888000pt;}
._16{width:16.786560pt;}
._10{width:17.760000pt;}
._11{width:19.056000pt;}
._e{width:20.640000pt;}
._f{width:21.648000pt;}
._b{width:23.424000pt;}
._c{width:24.593280pt;}
._1b{width:25.518720pt;}
._20{width:27.057280pt;}
._1d{width:28.512000pt;}
._15{width:29.808000pt;}
._24{width:30.715947pt;}
._12{width:31.680000pt;}
._18{width:33.120000pt;}
._1e{width:34.464000pt;}
._1c{width:35.488000pt;}
._27{width:36.608000pt;}
._17{width:37.632000pt;}
._21{width:38.688000pt;}
._22{width:40.272000pt;}
._2f{width:42.902400pt;}
._1f{width:43.968000pt;}
._26{width:48.960000pt;}
._28{width:51.120000pt;}
._29{width:52.752000pt;}
._2b{width:53.786667pt;}
._2a{width:54.912000pt;}
._2e{width:55.834667pt;}
._30{width:58.608000pt;}
._31{width:60.080000pt;}
._32{width:61.344000pt;}
._2{width:68.698027pt;}
._2c{width:75.648000pt;}
._2d{width:76.752000pt;}
._25{width:113.520000pt;}
._23{width:988.912000pt;}
.fs3{font-size:10.880000pt;}
.fse{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y43{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1f{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y25{bottom:3.200000pt;}
.y1b{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y23{bottom:4.320000pt;}
.y9b{bottom:6.880000pt;}
.y92{bottom:7.040000pt;}
.y42{bottom:8.000000pt;}
.y7c{bottom:8.480000pt;}
.y83{bottom:8.626667pt;}
.y7d{bottom:8.640000pt;}
.yc1{bottom:9.600000pt;}
.y3b{bottom:9.746667pt;}
.y1d{bottom:9.760000pt;}
.yc7{bottom:9.786667pt;}
.y21{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y3d{bottom:14.386667pt;}
.yf{bottom:17.760000pt;}
.y19{bottom:18.720000pt;}
.y98{bottom:24.640000pt;}
.y95{bottom:24.800000pt;}
.y86{bottom:26.706667pt;}
.y90{bottom:26.720000pt;}
.y82{bottom:26.746667pt;}
.y41{bottom:26.880000pt;}
.y7a{bottom:28.800000pt;}
.yb6{bottom:30.080000pt;}
.y3a{bottom:30.226667pt;}
.yb9{bottom:30.240000pt;}
.yb0{bottom:30.266667pt;}
.yb2{bottom:30.880000pt;}
.yab{bottom:32.146667pt;}
.ybf{bottom:32.160000pt;}
.y13{bottom:40.680000pt;}
.y97{bottom:42.400000pt;}
.y9d{bottom:42.426667pt;}
.y9a{bottom:42.560000pt;}
.y94{bottom:42.600000pt;}
.y85{bottom:44.946667pt;}
.y7f{bottom:44.960000pt;}
.y81{bottom:44.986667pt;}
.y40{bottom:45.920000pt;}
.y18{bottom:46.080000pt;}
.yc4{bottom:50.560000pt;}
.yc6{bottom:50.586667pt;}
.yb5{bottom:50.600000pt;}
.y39{bottom:50.706667pt;}
.yb8{bottom:50.720000pt;}
.yaf{bottom:50.746667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y3f{bottom:67.386667pt;}
.y38{bottom:71.186667pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y37{bottom:91.666667pt;}
.yf9{bottom:101.120000pt;}
.yd3{bottom:102.720000pt;}
.ye5{bottom:103.680000pt;}
.y78{bottom:110.240000pt;}
.y8e{bottom:111.360000pt;}
.y36{bottom:111.986667pt;}
.yae{bottom:114.880000pt;}
.y71{bottom:115.840000pt;}
.yf8{bottom:121.600000pt;}
.yd2{bottom:123.200000pt;}
.y77{bottom:130.752000pt;}
.y8d{bottom:131.872000pt;}
.y35{bottom:132.466667pt;}
.y70{bottom:136.186667pt;}
.y3c{bottom:137.800000pt;}
.yf7{bottom:142.106667pt;}
.yd1{bottom:143.706667pt;}
.y76{bottom:151.226667pt;}
.y8c{bottom:152.186667pt;}
.y34{bottom:152.946667pt;}
.y6f{bottom:156.666667pt;}
.y27{bottom:160.680000pt;}
.yf6{bottom:162.586667pt;}
.yd0{bottom:164.186667pt;}
.y75{bottom:171.546667pt;}
.y8b{bottom:172.666667pt;}
.y33{bottom:173.426667pt;}
.y6e{bottom:177.146667pt;}
.yad{bottom:177.320000pt;}
.yf5{bottom:183.066667pt;}
.ycf{bottom:184.666667pt;}
.y74{bottom:192.026667pt;}
.y8a{bottom:193.146667pt;}
.y32{bottom:193.946667pt;}
.y6d{bottom:197.626667pt;}
.yf4{bottom:203.386667pt;}
.yce{bottom:205.146667pt;}
.y73{bottom:212.506667pt;}
.y89{bottom:213.626667pt;}
.y31{bottom:214.426667pt;}
.y6c{bottom:218.106667pt;}
.yf3{bottom:223.866667pt;}
.ycd{bottom:225.466667pt;}
.y88{bottom:234.106667pt;}
.y30{bottom:234.746667pt;}
.y6b{bottom:238.586667pt;}
.yaa{bottom:239.720000pt;}
.yf2{bottom:244.346667pt;}
.ycc{bottom:245.946667pt;}
.y87{bottom:254.586667pt;}
.y2f{bottom:255.226667pt;}
.y6a{bottom:258.906667pt;}
.yac{bottom:262.120000pt;}
.yf1{bottom:264.826667pt;}
.ycb{bottom:266.426667pt;}
.y84{bottom:267.240000pt;}
.y2e{bottom:275.706667pt;}
.y69{bottom:279.386667pt;}
.yf0{bottom:285.306667pt;}
.yca{bottom:286.906667pt;}
.ya9{bottom:294.266667pt;}
.y2d{bottom:296.186667pt;}
.y68{bottom:299.866667pt;}
.yef{bottom:305.626667pt;}
.yc9{bottom:307.386667pt;}
.ya8{bottom:314.746667pt;}
.y2c{bottom:316.666667pt;}
.y67{bottom:320.346667pt;}
.y80{bottom:322.760000pt;}
.yee{bottom:326.106667pt;}
.yc8{bottom:327.706667pt;}
.ya7{bottom:335.226667pt;}
.y2b{bottom:336.986667pt;}
.yc5{bottom:340.520000pt;}
.y66{bottom:340.826667pt;}
.yed{bottom:346.586667pt;}
.ya6{bottom:355.746667pt;}
.y2a{bottom:357.466667pt;}
.y65{bottom:361.346667pt;}
.yec{bottom:367.106667pt;}
.ya5{bottom:376.226667pt;}
.y29{bottom:377.946667pt;}
.y7e{bottom:378.306667pt;}
.y64{bottom:381.666667pt;}
.yeb{bottom:387.586667pt;}
.ya4{bottom:396.706667pt;}
.y28{bottom:398.426667pt;}
.y63{bottom:402.146667pt;}
.yc3{bottom:402.946667pt;}
.yea{bottom:408.066667pt;}
.ya3{bottom:417.026667pt;}
.y62{bottom:422.626667pt;}
.ye9{bottom:428.386667pt;}
.y79{bottom:433.826667pt;}
.ya2{bottom:437.506667pt;}
.y61{bottom:443.106667pt;}
.ye8{bottom:448.866667pt;}
.y7b{bottom:454.146667pt;}
.ya1{bottom:457.986667pt;}
.y60{bottom:463.586667pt;}
.yc2{bottom:465.186667pt;}
.ye7{bottom:469.346667pt;}
.ye4{bottom:473.986667pt;}
.ya0{bottom:478.466667pt;}
.y5f{bottom:484.066667pt;}
.ye3{bottom:494.466667pt;}
.y9f{bottom:498.946667pt;}
.y5e{bottom:504.386667pt;}
.ye6{bottom:510.306667pt;}
.ye2{bottom:514.946667pt;}
.y9e{bottom:519.426667pt;}
.y5d{bottom:524.866667pt;}
.ybe{bottom:527.586667pt;}
.y9c{bottom:532.066667pt;}
.ye1{bottom:535.426667pt;}
.y5c{bottom:545.346667pt;}
.yc0{bottom:550.146667pt;}
.ye0{bottom:555.746667pt;}
.y5b{bottom:565.826667pt;}
.y26{bottom:569.853333pt;}
.ydf{bottom:576.253333pt;}
.ybd{bottom:582.333333pt;}
.y24{bottom:583.453333pt;}
.y5a{bottom:586.333333pt;}
.yde{bottom:596.733333pt;}
.y22{bottom:600.093333pt;}
.ybc{bottom:602.653333pt;}
.y59{bottom:606.653333pt;}
.ydd{bottom:617.213333pt;}
.y20{bottom:617.853333pt;}
.ybb{bottom:623.133333pt;}
.y58{bottom:627.133333pt;}
.yba{bottom:634.493333pt;}
.ydc{bottom:637.693333pt;}
.y99{bottom:640.413333pt;}
.y1e{bottom:644.573333pt;}
.y57{bottom:647.613333pt;}
.y1c{bottom:656.413333pt;}
.ydb{bottom:658.013333pt;}
.y56{bottom:668.093333pt;}
.y1a{bottom:676.893333pt;}
.yda{bottom:678.493333pt;}
.y55{bottom:688.573333pt;}
.yd9{bottom:691.293333pt;}
.y17{bottom:691.933333pt;}
.y96{bottom:694.653333pt;}
.yb7{bottom:696.573333pt;}
.y54{bottom:709.053333pt;}
.y53{bottom:729.373333pt;}
.y15{bottom:746.493333pt;}
.y93{bottom:748.733333pt;}
.y52{bottom:749.853333pt;}
.yd8{bottom:753.693333pt;}
.yb4{bottom:758.653333pt;}
.y12{bottom:759.453333pt;}
.y51{bottom:770.333333pt;}
.y50{bottom:790.853333pt;}
.y8f{bottom:803.013333pt;}
.y4f{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.yd7{bottom:815.973333pt;}
.yb1{bottom:820.613333pt;}
.y91{bottom:822.693333pt;}
.yd{bottom:825.893333pt;}
.y4e{bottom:831.813333pt;}
.yb3{bottom:841.733333pt;}
.y4d{bottom:852.133333pt;}
.y4c{bottom:872.613333pt;}
.yd6{bottom:878.373333pt;}
.y4b{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y4a{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y49{bottom:934.053333pt;}
.yd4{bottom:940.773333pt;}
.y3e{bottom:946.853333pt;}
.y48{bottom:954.533333pt;}
.yd5{bottom:963.173333pt;}
.y47{bottom:974.853333pt;}
.y46{bottom:995.333333pt;}
.y45{bottom:1015.840000pt;}
.y72{bottom:1019.200000pt;}
.y1{bottom:1040.960000pt;}
.y44{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1c{height:11.840000pt;}
.h10{height:12.146667pt;}
.h14{height:12.960000pt;}
.h23{height:13.600000pt;}
.h18{height:15.040000pt;}
.h21{height:16.640000pt;}
.h35{height:17.746667pt;}
.h20{height:17.760000pt;}
.h30{height:18.066667pt;}
.h31{height:18.226667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h42{height:20.346667pt;}
.h3b{height:20.466667pt;}
.h1a{height:20.480000pt;}
.h17{height:22.223750pt;}
.h27{height:22.866667pt;}
.h2d{height:24.218750pt;}
.h28{height:25.907187pt;}
.h1e{height:26.720000pt;}
.h11{height:29.040312pt;}
.h1d{height:29.856875pt;}
.h2f{height:32.453125pt;}
.h15{height:32.788125pt;}
.h19{height:35.975313pt;}
.h24{height:36.304688pt;}
.h1b{height:36.328125pt;}
.h2b{height:36.703125pt;}
.h34{height:37.426667pt;}
.h26{height:37.658750pt;}
.h2e{height:38.386667pt;}
.h3e{height:41.586667pt;}
.h3a{height:42.866667pt;}
.h41{height:42.906667pt;}
.h13{height:43.343750pt;}
.h22{height:44.533750pt;}
.h1f{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h2a{height:48.937500pt;}
.h2c{height:49.075000pt;}
.h6{height:50.712187pt;}
.h37{height:53.120000pt;}
.h39{height:53.146667pt;}
.h38{height:53.280000pt;}
.h36{height:53.300000pt;}
.h12{height:54.260000pt;}
.h32{height:54.546667pt;}
.h16{height:54.560000pt;}
.h33{height:54.578667pt;}
.he{height:57.647187pt;}
.hf{height:60.764863pt;}
.h43{height:61.266667pt;}
.h45{height:61.280000pt;}
.h44{height:61.298667pt;}
.h3f{height:61.300000pt;}
.h3c{height:61.426667pt;}
.h40{height:61.440000pt;}
.h3d{height:61.472000pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h29{height:83.386667pt;}
.h8{height:96.026667pt;}
.h25{height:409.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w29{width:67.232000pt;}
.w6{width:68.150667pt;}
.w1c{width:77.938667pt;}
.w31{width:79.186667pt;}
.w23{width:82.112000pt;}
.wf{width:84.000000pt;}
.w16{width:84.018667pt;}
.w10{width:84.032000pt;}
.wd{width:84.818667pt;}
.w1a{width:85.312000pt;}
.w2b{width:89.938667pt;}
.w2a{width:90.066667pt;}
.w30{width:90.112000pt;}
.w32{width:95.538667pt;}
.w1b{width:95.986667pt;}
.w11{width:96.018667pt;}
.w14{width:97.938667pt;}
.w21{width:98.738667pt;}
.w33{width:101.906667pt;}
.w2e{width:101.938667pt;}
.w24{width:102.066667pt;}
.w25{width:104.946667pt;}
.w13{width:106.070667pt;}
.w2c{width:107.986667pt;}
.w1f{width:108.018667pt;}
.w5{width:110.226667pt;}
.w1e{width:112.790667pt;}
.w27{width:112.818667pt;}
.wc{width:113.270667pt;}
.w20{width:118.390667pt;}
.w1d{width:119.986667pt;}
.w26{width:131.990667pt;}
.w2d{width:136.470667pt;}
.w12{width:137.906667pt;}
.w17{width:143.986667pt;}
.w18{width:220.817333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.w28{width:355.266667pt;}
.w2f{width:366.946667pt;}
.w19{width:379.266667pt;}
.w22{width:385.186667pt;}
.w15{width:396.066667pt;}
.we{width:401.986667pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x56{left:3.190667pt;}
.x39{left:4.790667pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x42{left:8.310667pt;}
.x5{left:9.590667pt;}
.x22{left:10.706667pt;}
.x45{left:12.000000pt;}
.x54{left:12.960000pt;}
.x2d{left:13.910667pt;}
.x12{left:14.880000pt;}
.x29{left:16.186667pt;}
.x36{left:17.106667pt;}
.x2{left:18.710667pt;}
.x2a{left:20.146667pt;}
.x48{left:21.106667pt;}
.x28{left:22.550667pt;}
.x49{left:23.826667pt;}
.x21{left:25.106667pt;}
.x37{left:26.226667pt;}
.x1d{left:27.680000pt;}
.x23{left:28.640000pt;}
.x18{left:29.590667pt;}
.x3a{left:30.546667pt;}
.x24{left:31.666667pt;}
.x46{left:32.786667pt;}
.x2b{left:33.906667pt;}
.x7{left:35.360000pt;}
.x44{left:36.346667pt;}
.x2e{left:37.746667pt;}
.x43{left:38.906667pt;}
.x25{left:40.626667pt;}
.x1a{left:42.266667pt;}
.x3b{left:44.640000pt;}
.x30{left:48.986667pt;}
.x26{left:50.720000pt;}
.x2c{left:52.800000pt;}
.x55{left:53.920000pt;}
.x50{left:56.346667pt;}
.x47{left:60.000000pt;}
.xf{left:65.586667pt;}
.x27{left:68.960000pt;}
.x38{left:72.000000pt;}
.x3c{left:79.985333pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x13{left:93.600000pt;}
.x1{left:96.032000pt;}
.x52{left:102.746667pt;}
.x59{left:108.666667pt;}
.x3e{left:114.746667pt;}
.x4c{left:117.786667pt;}
.x32{left:123.226667pt;}
.x1c{left:134.426667pt;}
.x3{left:139.560000pt;}
.xc{left:141.585333pt;}
.xa{left:157.160000pt;}
.x2f{left:202.120000pt;}
.x15{left:204.826667pt;}
.x19{left:209.320000pt;}
.x4a{left:215.240000pt;}
.x4f{left:228.040000pt;}
.x57{left:232.520000pt;}
.x14{left:234.586667pt;}
.x11{left:289.666667pt;}
.x1b{left:294.146667pt;}
.x31{left:300.066667pt;}
.xd{left:301.012000pt;}
.x4b{left:313.986667pt;}
.x3d{left:316.866667pt;}
.x58{left:334.466667pt;}
.x51{left:340.866667pt;}
.x1e{left:378.146667pt;}
.x33{left:384.066667pt;}
.x4d{left:396.106667pt;}
.x3f{left:402.186667pt;}
.x16{left:403.426667pt;}
.xe{left:406.986667pt;}
.x53{left:408.106667pt;}
.x17{left:411.293333pt;}
.x5a{left:424.586667pt;}
.x1f{left:462.186667pt;}
.x34{left:468.106667pt;}
.x40{left:498.186667pt;}
.x5b{left:503.786667pt;}
.x35{left:552.133333pt;}
.x20{left:558.213333pt;}
.x41{left:576.133333pt;}
.x6{left:588.133333pt;}
.x4e{left:594.213333pt;}
.x5c{left:599.333333pt;}
.x10{left:604.732000pt;}
}




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