
    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_d2e06a8b94d4715b9c65ad81.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_3896de976b8ac13d06c98a40.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.083496;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_e95b3346f054d8afa0b1d9bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_cdf4e547c917326681e6d78e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a4f01b5db6cc7c50b4620bb5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bf0537590b14cdcee7361eec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.052734;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_22edaee240e0327922bc6bba.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_99d3d0a22f82490aea5dce2f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.205566;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_07eab0ae30bd75712fe967a6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.128418;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_e5f0e440c2da5729d990f010.woff2')format("woff");}.fff{font-family:fff;line-height:1.128418;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_fad5b8d8e8713cf757e6eb12.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8900c49ca68cb3049e2b8afb.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d0c58215962ddadb5afefe0e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c7d9bb0c8e0b62b69b78cea5.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_00b6258d71a1c04d8b7a755b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_25bf30936a34704f1b1fc709.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.205566;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls27{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.342000px;}
.ls1b{letter-spacing:-0.337200px;}
.ls13{letter-spacing:-0.331200px;}
.ls24{letter-spacing:-0.324000px;}
.ls2f{letter-spacing:-0.306000px;}
.ls34{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.282000px;}
.ls30{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.234000px;}
.ls18{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.099600px;}
.ls26{letter-spacing:-0.093600px;}
.ls6{letter-spacing:-0.091200px;}
.ls37{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.054000px;}
.lsf{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls23{letter-spacing:0.030960px;}
.ls4{letter-spacing:0.031680px;}
.ls2b{letter-spacing:0.036000px;}
.ls32{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.090000px;}
.ls33{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.136800px;}
.lsb{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.175680px;}
.ls3{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.234000px;}
.ls8{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.234720px;}
.ls12{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.265800px;}
.ls35{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.297600px;}
.ls2{letter-spacing:0.331200px;}
.lse{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.396000px;}
.ls36{letter-spacing:0.414000px;}
.ls16{letter-spacing:0.450000px;}
.ls20{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.612000px;}
.ls31{letter-spacing:5.004000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1{word-spacing:-22.316640px;}
.ws6{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.296000px;}
.ws5{word-spacing:-19.152000px;}
.ws3{word-spacing:-19.008000px;}
.ws9{word-spacing:-18.360000px;}
.wsf{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.640000px;}
.wsb{word-spacing:-16.824960px;}
.ws33{word-spacing:-14.004000px;}
.ws2f{word-spacing:-13.986000px;}
.ws2e{word-spacing:-13.950000px;}
.ws27{word-spacing:-13.932000px;}
.ws22{word-spacing:-13.896000px;}
.ws29{word-spacing:-13.824000px;}
.ws26{word-spacing:-13.806000px;}
.ws31{word-spacing:-13.770000px;}
.ws23{word-spacing:-13.752000px;}
.ws25{word-spacing:-13.716000px;}
.ws2d{word-spacing:-13.554000px;}
.ws2a{word-spacing:-13.302000px;}
.wse{word-spacing:-13.266000px;}
.wsd{word-spacing:-13.194000px;}
.ws12{word-spacing:-13.140000px;}
.ws30{word-spacing:-13.068000px;}
.ws13{word-spacing:-13.032000px;}
.ws11{word-spacing:-13.014000px;}
.ws2c{word-spacing:-12.978000px;}
.ws32{word-spacing:-12.924000px;}
.ws1f{word-spacing:-12.834000px;}
.ws28{word-spacing:-12.744000px;}
.ws2b{word-spacing:-12.726000px;}
.ws24{word-spacing:-12.708000px;}
.ws20{word-spacing:-12.690000px;}
.ws1c{word-spacing:-11.923440px;}
.ws1d{word-spacing:-11.891640px;}
.ws1a{word-spacing:-11.762640px;}
.ws1e{word-spacing:-11.656800px;}
.ws19{word-spacing:-11.625840px;}
.ws21{word-spacing:-11.532240px;}
.ws1b{word-spacing:-11.526240px;}
.ws16{word-spacing:-11.343840px;}
.ws18{word-spacing:-11.288640px;}
.ws2{word-spacing:-10.576680px;}
.ws15{word-spacing:-9.288000px;}
.ws14{word-spacing:-8.676000px;}
.wsc{word-spacing:-8.568000px;}
.ws17{word-spacing:-7.287840px;}
.ws10{word-spacing:0.000000px;}
._1{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._2{width:1.716000px;}
._5{width:3.144000px;}
._a{width:4.452000px;}
._c{width:5.994000px;}
._7{width:7.182000px;}
._6{width:8.370000px;}
._8{width:10.152000px;}
._9{width:11.244000px;}
._2c{width:12.612000px;}
._d{width:15.012000px;}
._b{width:16.902000px;}
._16{width:18.090000px;}
._17{width:19.386000px;}
._f{width:21.018000px;}
._13{width:22.104000px;}
._14{width:23.286000px;}
._12{width:24.300000px;}
._18{width:25.974000px;}
._4{width:27.000000px;}
._25{width:28.620000px;}
._26{width:29.964000px;}
._10{width:31.122000px;}
._11{width:32.220000px;}
._15{width:33.372000px;}
._21{width:34.506000px;}
._22{width:35.910000px;}
._23{width:37.014000px;}
._2a{width:38.100000px;}
._e{width:39.312000px;}
._28{width:40.404000px;}
._1a{width:41.526000px;}
._19{width:42.822000px;}
._1d{width:44.766000px;}
._1e{width:46.098000px;}
._2b{width:47.556000px;}
._2d{width:50.652000px;}
._27{width:52.488000px;}
._1b{width:54.000000px;}
._1c{width:55.566000px;}
._30{width:57.942000px;}
._31{width:59.034000px;}
._1f{width:60.318000px;}
._20{width:61.452000px;}
._24{width:63.180000px;}
._2e{width:64.314000px;}
._29{width:67.608000px;}
._3{width:70.766640px;}
._2f{width:77.598000px;}
._32{width:83.160000px;}
.fc7{color:rgb(12,125,187);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fsd{font-size:30.240000px;}
.fs7{font-size:33.120000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y44{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y23{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y2a{bottom:3.600000px;}
.y1f{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y28{bottom:4.860000px;}
.ycb{bottom:6.105000px;}
.ycf{bottom:6.285000px;}
.yc7{bottom:6.300000px;}
.yb5{bottom:6.840000px;}
.yb0{bottom:7.020000px;}
.yc8{bottom:7.740000px;}
.y79{bottom:8.100000px;}
.y75{bottom:8.280000px;}
.y43{bottom:9.000000px;}
.ya2{bottom:9.165000px;}
.y98{bottom:9.180000px;}
.y9d{bottom:9.210000px;}
.y94{bottom:9.360000px;}
.yde{bottom:9.540000px;}
.ydb{bottom:9.720000px;}
.y99{bottom:10.440000px;}
.ya3{bottom:10.605000px;}
.y21{bottom:10.980000px;}
.y3c{bottom:11.010000px;}
.y9e{bottom:12.045000px;}
.y25{bottom:14.940000px;}
.y26{bottom:15.120000px;}
.y14{bottom:15.300000px;}
.y3e{bottom:16.200000px;}
.yf{bottom:19.980000px;}
.y1d{bottom:21.600000px;}
.yd1{bottom:24.465000px;}
.yca{bottom:24.510000px;}
.ycd{bottom:24.645000px;}
.yb2{bottom:24.660000px;}
.yb4{bottom:24.705000px;}
.yae{bottom:27.000000px;}
.yc5{bottom:28.440000px;}
.ydd{bottom:30.060000px;}
.y42{bottom:30.240000px;}
.yd9{bottom:32.400000px;}
.ya0{bottom:33.105000px;}
.y96{bottom:33.120000px;}
.y3b{bottom:34.050000px;}
.y9b{bottom:34.770000px;}
.y13{bottom:46.125000px;}
.y41{bottom:51.660000px;}
.y1c{bottom:53.640000px;}
.y3a{bottom:57.090000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y40{bottom:75.810000px;}
.y39{bottom:80.130000px;}
.ya{bottom:80.460000px;}
.y1b{bottom:84.780000px;}
.y9{bottom:91.440000px;}
.y38{bottom:103.170000px;}
.y83{bottom:109.260000px;}
.yd7{bottom:111.420000px;}
.y102{bottom:112.680000px;}
.yff{bottom:114.300000px;}
.y3d{bottom:115.020000px;}
.yac{bottom:116.820000px;}
.y1a{bottom:117.180000px;}
.yf7{bottom:124.380000px;}
.y37{bottom:126.030000px;}
.y8a{bottom:129.450000px;}
.y72{bottom:130.320000px;}
.yd6{bottom:134.460000px;}
.yfe{bottom:137.340000px;}
.yab{bottom:139.860000px;}
.y2c{bottom:140.760000px;}
.y19{bottom:143.280000px;}
.yf6{bottom:147.456000px;}
.y36{bottom:149.070000px;}
.y71{bottom:153.210000px;}
.yd5{bottom:157.530000px;}
.yfd{bottom:160.230000px;}
.yaa{bottom:162.930000px;}
.yf5{bottom:170.490000px;}
.y35{bottom:172.110000px;}
.y70{bottom:176.250000px;}
.y18{bottom:180.360000px;}
.yfc{bottom:183.270000px;}
.yd4{bottom:184.170000px;}
.ya9{bottom:185.970000px;}
.y77{bottom:190.125000px;}
.yf4{bottom:193.530000px;}
.yd3{bottom:194.805000px;}
.y34{bottom:195.150000px;}
.y6f{bottom:199.290000px;}
.ya8{bottom:208.830000px;}
.yf3{bottom:216.570000px;}
.y33{bottom:218.190000px;}
.y6e{bottom:222.330000px;}
.yfb{bottom:229.350000px;}
.ya7{bottom:231.870000px;}
.yd2{bottom:232.785000px;}
.yf2{bottom:239.430000px;}
.y32{bottom:241.230000px;}
.y6d{bottom:245.370000px;}
.yfa{bottom:252.390000px;}
.ya6{bottom:254.910000px;}
.yf1{bottom:262.470000px;}
.y31{bottom:264.135000px;}
.y6c{bottom:268.410000px;}
.yd0{bottom:270.765000px;}
.ya5{bottom:277.950000px;}
.yf0{bottom:285.510000px;}
.y30{bottom:287.175000px;}
.y6b{bottom:291.270000px;}
.ya4{bottom:300.990000px;}
.yef{bottom:308.550000px;}
.yce{bottom:308.565000px;}
.y2f{bottom:310.215000px;}
.y6a{bottom:314.310000px;}
.y9f{bottom:315.225000px;}
.yee{bottom:331.590000px;}
.y2e{bottom:333.255000px;}
.y69{bottom:337.350000px;}
.ya1{bottom:339.165000px;}
.ycc{bottom:346.545000px;}
.yed{bottom:354.630000px;}
.y2d{bottom:356.295000px;}
.y68{bottom:360.390000px;}
.y9a{bottom:361.665000px;}
.yec{bottom:377.490000px;}
.y67{bottom:383.430000px;}
.yc9{bottom:384.525000px;}
.y9c{bottom:387.225000px;}
.yeb{bottom:400.575000px;}
.y66{bottom:406.515000px;}
.y95{bottom:409.755000px;}
.yc4{bottom:422.535000px;}
.yea{bottom:423.615000px;}
.y65{bottom:429.375000px;}
.y97{bottom:433.695000px;}
.yc6{bottom:444.675000px;}
.ye9{bottom:446.655000px;}
.y64{bottom:452.415000px;}
.y93{bottom:457.275000px;}
.y63{bottom:475.455000px;}
.yc3{bottom:476.355000px;}
.y92{bottom:492.015000px;}
.ye8{bottom:492.555000px;}
.y62{bottom:498.495000px;}
.yc2{bottom:499.395000px;}
.y2b{bottom:509.115000px;}
.y101{bottom:513.795000px;}
.y91{bottom:515.055000px;}
.ye7{bottom:515.595000px;}
.y61{bottom:521.535000px;}
.yc1{bottom:522.435000px;}
.y29{bottom:524.415000px;}
.y89{bottom:529.275000px;}
.y100{bottom:536.835000px;}
.ye6{bottom:538.635000px;}
.y27{bottom:543.135000px;}
.y60{bottom:544.575000px;}
.yc0{bottom:545.295000px;}
.y90{bottom:549.615000px;}
.ye5{bottom:561.675000px;}
.y24{bottom:563.115000px;}
.y5f{bottom:567.435000px;}
.ybf{bottom:568.335000px;}
.y8f{bottom:569.775000px;}
.ye4{bottom:588.495000px;}
.y8e{bottom:589.935000px;}
.y5e{bottom:590.475000px;}
.ybe{bottom:591.375000px;}
.y22{bottom:593.175000px;}
.ye3{bottom:598.935000px;}
.y20{bottom:606.495000px;}
.y8d{bottom:610.275000px;}
.y5d{bottom:613.515000px;}
.ybd{bottom:614.415000px;}
.ye2{bottom:620.535000px;}
.y1e{bottom:629.535000px;}
.y8c{bottom:630.435000px;}
.y5c{bottom:636.555000px;}
.ye1{bottom:642.165000px;}
.y17{bottom:646.485000px;}
.y8b{bottom:650.625000px;}
.yf9{bottom:652.245000px;}
.y5b{bottom:659.625000px;}
.ybc{bottom:660.525000px;}
.y82{bottom:670.785000px;}
.yf8{bottom:675.105000px;}
.y5a{bottom:682.485000px;}
.ybb{bottom:683.385000px;}
.ye0{bottom:684.285000px;}
.y88{bottom:691.125000px;}
.yba{bottom:697.785000px;}
.y59{bottom:705.525000px;}
.y87{bottom:711.285000px;}
.ydf{bottom:726.225000px;}
.y58{bottom:728.565000px;}
.y86{bottom:731.445000px;}
.yb9{bottom:734.325000px;}
.y57{bottom:751.605000px;}
.y85{bottom:751.785000px;}
.ydc{bottom:768.345000px;}
.yb8{bottom:770.865000px;}
.y84{bottom:771.945000px;}
.y56{bottom:774.645000px;}
.y76{bottom:792.105000px;}
.y55{bottom:797.685000px;}
.yb7{bottom:807.405000px;}
.yd8{bottom:810.285000px;}
.y81{bottom:812.445000px;}
.y54{bottom:820.545000px;}
.y80{bottom:832.605000px;}
.yda{bottom:832.965000px;}
.y15{bottom:837.825000px;}
.y53{bottom:843.585000px;}
.yb6{bottom:844.125000px;}
.y12{bottom:852.405000px;}
.y7f{bottom:852.765000px;}
.y52{bottom:866.625000px;}
.y7e{bottom:872.925000px;}
.yb3{bottom:880.665000px;}
.y51{bottom:889.710000px;}
.y7d{bottom:893.310000px;}
.y50{bottom:912.750000px;}
.y7c{bottom:913.470000px;}
.y10{bottom:915.450000px;}
.yb1{bottom:917.250000px;}
.yd{bottom:929.130000px;}
.y7b{bottom:933.630000px;}
.y4f{bottom:935.790000px;}
.yad{bottom:953.790000px;}
.y7a{bottom:953.970000px;}
.y4e{bottom:958.650000px;}
.yaf{bottom:973.770000px;}
.y78{bottom:974.130000px;}
.y4d{bottom:981.690000px;}
.y74{bottom:995.370000px;}
.y4c{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y4b{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y4a{bottom:1050.810000px;}
.y3f{bottom:1065.210000px;}
.y49{bottom:1073.850000px;}
.y48{bottom:1096.710000px;}
.y47{bottom:1119.750000px;}
.y73{bottom:1123.530000px;}
.y46{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y45{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:10.022695px;}
.h1e{height:13.305000px;}
.hf{height:13.665000px;}
.h14{height:14.580000px;}
.h25{height:15.285000px;}
.h1a{height:16.950000px;}
.h43{height:17.805000px;}
.h48{height:18.525000px;}
.h23{height:18.705000px;}
.h33{height:19.065000px;}
.h35{height:19.080000px;}
.h39{height:19.110000px;}
.h30{height:19.245000px;}
.h37{height:19.260000px;}
.h34{height:19.282500px;}
.h22{height:19.965000px;}
.h50{height:20.505000px;}
.h4d{height:20.520000px;}
.h4f{height:20.550000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h3c{height:21.405000px;}
.h3f{height:21.441000px;}
.h3a{height:21.585000px;}
.h3d{height:22.665000px;}
.h41{height:22.845000px;}
.h1c{height:23.025000px;}
.h40{height:24.285000px;}
.h19{height:25.001719px;}
.h28{height:25.738500px;}
.h29{height:29.145586px;}
.h20{height:30.045000px;}
.h1f{height:33.588984px;}
.h2f{height:34.107539px;}
.h44{height:35.445000px;}
.h46{height:35.460000px;}
.h45{height:35.482500px;}
.h4b{height:36.705000px;}
.h49{height:36.741000px;}
.h4a{height:36.885000px;}
.h15{height:36.886641px;}
.h17{height:36.919688px;}
.h42{height:37.785000px;}
.h10{height:39.501211px;}
.h1b{height:40.472227px;}
.h47{height:40.665000px;}
.h2e{height:40.842773px;}
.h4e{height:40.860000px;}
.h2c{height:41.291016px;}
.h4c{height:43.200000px;}
.h31{height:43.976602px;}
.h3b{height:45.345000px;}
.h3e{height:47.001000px;}
.h18{height:48.761719px;}
.h27{height:49.227539px;}
.h21{height:50.132812px;}
.h9{height:51.539062px;}
.h1d{height:53.393555px;}
.hb{height:54.457031px;}
.h2b{height:55.054688px;}
.h2d{height:55.209375px;}
.h13{height:58.957031px;}
.h12{height:60.679688px;}
.h11{height:63.022500px;}
.h24{height:65.496094px;}
.h6{height:68.979727px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.he{height:78.412852px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h2a{height:93.810000px;}
.h8{height:108.030000px;}
.h36{height:120.240000px;}
.h38{height:140.430000px;}
.h16{height:191.340000px;}
.h32{height:201.090000px;}
.h26{height:368.353500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w21{width:53.820000px;}
.w22{width:54.000000px;}
.w27{width:60.645000px;}
.w26{width:60.681000px;}
.w24{width:60.825000px;}
.w19{width:66.945000px;}
.w1a{width:66.981000px;}
.w18{width:67.176000px;}
.w25{width:67.485000px;}
.w23{width:67.536000px;}
.w30{width:71.805000px;}
.w6{width:76.669500px;}
.w17{width:78.120000px;}
.w2e{width:79.725000px;}
.w2c{width:79.740000px;}
.w2f{width:79.761000px;}
.w2d{width:79.776000px;}
.wc{width:88.549500px;}
.w1b{width:91.245000px;}
.w1d{width:107.820000px;}
.wf{width:116.625000px;}
.w20{width:121.485000px;}
.w5{width:124.005000px;}
.w1f{width:128.181000px;}
.w1e{width:128.376000px;}
.w15{width:133.941000px;}
.w14{width:145.296000px;}
.we{width:148.521000px;}
.w2b{width:151.545000px;}
.w16{width:158.385000px;}
.w2a{width:159.495000px;}
.w29{width:159.510000px;}
.w12{width:185.595000px;}
.w1c{width:189.199500px;}
.w28{width:204.499500px;}
.w13{width:237.439500px;}
.w10{width:238.159500px;}
.w11{width:251.310000px;}
.wd{width:323.340000px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.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;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x2{left:12.049500px;}
.x4e{left:13.140000px;}
.x2c{left:14.209500px;}
.x1c{left:15.469500px;}
.x10{left:16.740000px;}
.x40{left:18.180000px;}
.x27{left:19.425000px;}
.x16{left:21.049500px;}
.x4c{left:22.860000px;}
.x1a{left:23.925000px;}
.x29{left:25.545000px;}
.x3e{left:26.670000px;}
.x41{left:27.900000px;}
.x3f{left:29.325000px;}
.x39{left:31.860000px;}
.x52{left:33.300000px;}
.x1d{left:35.625000px;}
.x37{left:37.425000px;}
.x7{left:39.780000px;}
.x35{left:41.760000px;}
.x48{left:43.365000px;}
.x2d{left:46.065000px;}
.x28{left:47.520000px;}
.x22{left:48.945000px;}
.x25{left:50.940000px;}
.x23{left:52.380000px;}
.x1f{left:54.900000px;}
.x3d{left:55.963500px;}
.x20{left:57.765000px;}
.x50{left:58.845000px;}
.x33{left:60.150000px;}
.x26{left:61.185000px;}
.x1e{left:63.525000px;}
.x2a{left:64.965000px;}
.x24{left:66.225000px;}
.x21{left:70.905000px;}
.x2b{left:72.750000px;}
.xd{left:73.785000px;}
.x43{left:76.123500px;}
.x31{left:78.690000px;}
.x42{left:81.703500px;}
.x34{left:84.403500px;}
.x32{left:85.843500px;}
.x2f{left:90.900000px;}
.x44{left:98.623500px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x18{left:146.370000px;}
.x3{left:157.005000px;}
.xa{left:176.805000px;}
.x17{left:196.605000px;}
.x13{left:211.170000px;}
.x12{left:263.910000px;}
.x45{left:297.255000px;}
.x4f{left:312.555000px;}
.xf{left:325.875000px;}
.x2e{left:346.215000px;}
.x49{left:351.075000px;}
.x53{left:392.295000px;}
.x46{left:405.075000px;}
.x3a{left:423.615000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x4a{left:472.620000px;}
.x36{left:490.800000px;}
.x19{left:519.960000px;}
.x47{left:533.460000px;}
.x54{left:551.820000px;}
.x3b{left:557.760000px;}
.x30{left:597.540000px;}
.x4b{left:600.960000px;}
.x38{left:624.750000px;}
.x51{left:631.590000px;}
.x6{left:661.650000px;}
.x1b{left:668.490000px;}
.xe{left:680.323500px;}
.x3c{left:691.890000px;}
.x55{left:711.330000px;}
.x4d{left:722.490000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.304000pt;}
.ls1b{letter-spacing:-0.299733pt;}
.ls13{letter-spacing:-0.294400pt;}
.ls24{letter-spacing:-0.288000pt;}
.ls2f{letter-spacing:-0.272000pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.250667pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.208000pt;}
.ls18{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.088533pt;}
.ls26{letter-spacing:-0.083200pt;}
.ls6{letter-spacing:-0.081067pt;}
.ls37{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.048000pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls23{letter-spacing:0.027520pt;}
.ls4{letter-spacing:0.028160pt;}
.ls2b{letter-spacing:0.032000pt;}
.ls32{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls33{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.121600pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.156160pt;}
.ls3{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.208000pt;}
.ls8{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.208640pt;}
.ls12{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.236267pt;}
.ls35{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.264533pt;}
.ls2{letter-spacing:0.294400pt;}
.lse{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.352000pt;}
.ls36{letter-spacing:0.368000pt;}
.ls16{letter-spacing:0.400000pt;}
.ls20{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.544000pt;}
.ls31{letter-spacing:4.448000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws6{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.152000pt;}
.ws5{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.896000pt;}
.ws9{word-spacing:-16.320000pt;}
.wsf{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.680000pt;}
.wsb{word-spacing:-14.955520pt;}
.ws33{word-spacing:-12.448000pt;}
.ws2f{word-spacing:-12.432000pt;}
.ws2e{word-spacing:-12.400000pt;}
.ws27{word-spacing:-12.384000pt;}
.ws22{word-spacing:-12.352000pt;}
.ws29{word-spacing:-12.288000pt;}
.ws26{word-spacing:-12.272000pt;}
.ws31{word-spacing:-12.240000pt;}
.ws23{word-spacing:-12.224000pt;}
.ws25{word-spacing:-12.192000pt;}
.ws2d{word-spacing:-12.048000pt;}
.ws2a{word-spacing:-11.824000pt;}
.wse{word-spacing:-11.792000pt;}
.wsd{word-spacing:-11.728000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws30{word-spacing:-11.616000pt;}
.ws13{word-spacing:-11.584000pt;}
.ws11{word-spacing:-11.568000pt;}
.ws2c{word-spacing:-11.536000pt;}
.ws32{word-spacing:-11.488000pt;}
.ws1f{word-spacing:-11.408000pt;}
.ws28{word-spacing:-11.328000pt;}
.ws2b{word-spacing:-11.312000pt;}
.ws24{word-spacing:-11.296000pt;}
.ws20{word-spacing:-11.280000pt;}
.ws1c{word-spacing:-10.598613pt;}
.ws1d{word-spacing:-10.570347pt;}
.ws1a{word-spacing:-10.455680pt;}
.ws1e{word-spacing:-10.361600pt;}
.ws19{word-spacing:-10.334080pt;}
.ws21{word-spacing:-10.250880pt;}
.ws1b{word-spacing:-10.245547pt;}
.ws16{word-spacing:-10.083413pt;}
.ws18{word-spacing:-10.034347pt;}
.ws2{word-spacing:-9.401493pt;}
.ws15{word-spacing:-8.256000pt;}
.ws14{word-spacing:-7.712000pt;}
.wsc{word-spacing:-7.616000pt;}
.ws17{word-spacing:-6.478080pt;}
.ws10{word-spacing:0.000000pt;}
._1{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._2{width:1.525333pt;}
._5{width:2.794667pt;}
._a{width:3.957333pt;}
._c{width:5.328000pt;}
._7{width:6.384000pt;}
._6{width:7.440000pt;}
._8{width:9.024000pt;}
._9{width:9.994667pt;}
._2c{width:11.210667pt;}
._d{width:13.344000pt;}
._b{width:15.024000pt;}
._16{width:16.080000pt;}
._17{width:17.232000pt;}
._f{width:18.682667pt;}
._13{width:19.648000pt;}
._14{width:20.698667pt;}
._12{width:21.600000pt;}
._18{width:23.088000pt;}
._4{width:24.000000pt;}
._25{width:25.440000pt;}
._26{width:26.634667pt;}
._10{width:27.664000pt;}
._11{width:28.640000pt;}
._15{width:29.664000pt;}
._21{width:30.672000pt;}
._22{width:31.920000pt;}
._23{width:32.901333pt;}
._2a{width:33.866667pt;}
._e{width:34.944000pt;}
._28{width:35.914667pt;}
._1a{width:36.912000pt;}
._19{width:38.064000pt;}
._1d{width:39.792000pt;}
._1e{width:40.976000pt;}
._2b{width:42.272000pt;}
._2d{width:45.024000pt;}
._27{width:46.656000pt;}
._1b{width:48.000000pt;}
._1c{width:49.392000pt;}
._30{width:51.504000pt;}
._31{width:52.474667pt;}
._1f{width:53.616000pt;}
._20{width:54.624000pt;}
._24{width:56.160000pt;}
._2e{width:57.168000pt;}
._29{width:60.096000pt;}
._3{width:62.903680pt;}
._2f{width:68.976000pt;}
._32{width:73.920000pt;}
.fs3{font-size:10.880000pt;}
.fsd{font-size:26.880000pt;}
.fs7{font-size:29.440000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y44{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y23{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y2a{bottom:3.200000pt;}
.y1f{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y28{bottom:4.320000pt;}
.ycb{bottom:5.426667pt;}
.ycf{bottom:5.586667pt;}
.yc7{bottom:5.600000pt;}
.yb5{bottom:6.080000pt;}
.yb0{bottom:6.240000pt;}
.yc8{bottom:6.880000pt;}
.y79{bottom:7.200000pt;}
.y75{bottom:7.360000pt;}
.y43{bottom:8.000000pt;}
.ya2{bottom:8.146667pt;}
.y98{bottom:8.160000pt;}
.y9d{bottom:8.186667pt;}
.y94{bottom:8.320000pt;}
.yde{bottom:8.480000pt;}
.ydb{bottom:8.640000pt;}
.y99{bottom:9.280000pt;}
.ya3{bottom:9.426667pt;}
.y21{bottom:9.760000pt;}
.y3c{bottom:9.786667pt;}
.y9e{bottom:10.706667pt;}
.y25{bottom:13.280000pt;}
.y26{bottom:13.440000pt;}
.y14{bottom:13.600000pt;}
.y3e{bottom:14.400000pt;}
.yf{bottom:17.760000pt;}
.y1d{bottom:19.200000pt;}
.yd1{bottom:21.746667pt;}
.yca{bottom:21.786667pt;}
.ycd{bottom:21.906667pt;}
.yb2{bottom:21.920000pt;}
.yb4{bottom:21.960000pt;}
.yae{bottom:24.000000pt;}
.yc5{bottom:25.280000pt;}
.ydd{bottom:26.720000pt;}
.y42{bottom:26.880000pt;}
.yd9{bottom:28.800000pt;}
.ya0{bottom:29.426667pt;}
.y96{bottom:29.440000pt;}
.y3b{bottom:30.266667pt;}
.y9b{bottom:30.906667pt;}
.y13{bottom:41.000000pt;}
.y41{bottom:45.920000pt;}
.y1c{bottom:47.680000pt;}
.y3a{bottom:50.746667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y40{bottom:67.386667pt;}
.y39{bottom:71.226667pt;}
.ya{bottom:71.520000pt;}
.y1b{bottom:75.360000pt;}
.y9{bottom:81.280000pt;}
.y38{bottom:91.706667pt;}
.y83{bottom:97.120000pt;}
.yd7{bottom:99.040000pt;}
.y102{bottom:100.160000pt;}
.yff{bottom:101.600000pt;}
.y3d{bottom:102.240000pt;}
.yac{bottom:103.840000pt;}
.y1a{bottom:104.160000pt;}
.yf7{bottom:110.560000pt;}
.y37{bottom:112.026667pt;}
.y8a{bottom:115.066667pt;}
.y72{bottom:115.840000pt;}
.yd6{bottom:119.520000pt;}
.yfe{bottom:122.080000pt;}
.yab{bottom:124.320000pt;}
.y2c{bottom:125.120000pt;}
.y19{bottom:127.360000pt;}
.yf6{bottom:131.072000pt;}
.y36{bottom:132.506667pt;}
.y71{bottom:136.186667pt;}
.yd5{bottom:140.026667pt;}
.yfd{bottom:142.426667pt;}
.yaa{bottom:144.826667pt;}
.yf5{bottom:151.546667pt;}
.y35{bottom:152.986667pt;}
.y70{bottom:156.666667pt;}
.y18{bottom:160.320000pt;}
.yfc{bottom:162.906667pt;}
.yd4{bottom:163.706667pt;}
.ya9{bottom:165.306667pt;}
.y77{bottom:169.000000pt;}
.yf4{bottom:172.026667pt;}
.yd3{bottom:173.160000pt;}
.y34{bottom:173.466667pt;}
.y6f{bottom:177.146667pt;}
.ya8{bottom:185.626667pt;}
.yf3{bottom:192.506667pt;}
.y33{bottom:193.946667pt;}
.y6e{bottom:197.626667pt;}
.yfb{bottom:203.866667pt;}
.ya7{bottom:206.106667pt;}
.yd2{bottom:206.920000pt;}
.yf2{bottom:212.826667pt;}
.y32{bottom:214.426667pt;}
.y6d{bottom:218.106667pt;}
.yfa{bottom:224.346667pt;}
.ya6{bottom:226.586667pt;}
.yf1{bottom:233.306667pt;}
.y31{bottom:234.786667pt;}
.y6c{bottom:238.586667pt;}
.yd0{bottom:240.680000pt;}
.ya5{bottom:247.066667pt;}
.yf0{bottom:253.786667pt;}
.y30{bottom:255.266667pt;}
.y6b{bottom:258.906667pt;}
.ya4{bottom:267.546667pt;}
.yef{bottom:274.266667pt;}
.yce{bottom:274.280000pt;}
.y2f{bottom:275.746667pt;}
.y6a{bottom:279.386667pt;}
.y9f{bottom:280.200000pt;}
.yee{bottom:294.746667pt;}
.y2e{bottom:296.226667pt;}
.y69{bottom:299.866667pt;}
.ya1{bottom:301.480000pt;}
.ycc{bottom:308.040000pt;}
.yed{bottom:315.226667pt;}
.y2d{bottom:316.706667pt;}
.y68{bottom:320.346667pt;}
.y9a{bottom:321.480000pt;}
.yec{bottom:335.546667pt;}
.y67{bottom:340.826667pt;}
.yc9{bottom:341.800000pt;}
.y9c{bottom:344.200000pt;}
.yeb{bottom:356.066667pt;}
.y66{bottom:361.346667pt;}
.y95{bottom:364.226667pt;}
.yc4{bottom:375.586667pt;}
.yea{bottom:376.546667pt;}
.y65{bottom:381.666667pt;}
.y97{bottom:385.506667pt;}
.yc6{bottom:395.266667pt;}
.ye9{bottom:397.026667pt;}
.y64{bottom:402.146667pt;}
.y93{bottom:406.466667pt;}
.y63{bottom:422.626667pt;}
.yc3{bottom:423.426667pt;}
.y92{bottom:437.346667pt;}
.ye8{bottom:437.826667pt;}
.y62{bottom:443.106667pt;}
.yc2{bottom:443.906667pt;}
.y2b{bottom:452.546667pt;}
.y101{bottom:456.706667pt;}
.y91{bottom:457.826667pt;}
.ye7{bottom:458.306667pt;}
.y61{bottom:463.586667pt;}
.yc1{bottom:464.386667pt;}
.y29{bottom:466.146667pt;}
.y89{bottom:470.466667pt;}
.y100{bottom:477.186667pt;}
.ye6{bottom:478.786667pt;}
.y27{bottom:482.786667pt;}
.y60{bottom:484.066667pt;}
.yc0{bottom:484.706667pt;}
.y90{bottom:488.546667pt;}
.ye5{bottom:499.266667pt;}
.y24{bottom:500.546667pt;}
.y5f{bottom:504.386667pt;}
.ybf{bottom:505.186667pt;}
.y8f{bottom:506.466667pt;}
.ye4{bottom:523.106667pt;}
.y8e{bottom:524.386667pt;}
.y5e{bottom:524.866667pt;}
.ybe{bottom:525.666667pt;}
.y22{bottom:527.266667pt;}
.ye3{bottom:532.386667pt;}
.y20{bottom:539.106667pt;}
.y8d{bottom:542.466667pt;}
.y5d{bottom:545.346667pt;}
.ybd{bottom:546.146667pt;}
.ye2{bottom:551.586667pt;}
.y1e{bottom:559.586667pt;}
.y8c{bottom:560.386667pt;}
.y5c{bottom:565.826667pt;}
.ye1{bottom:570.813333pt;}
.y17{bottom:574.653333pt;}
.y8b{bottom:578.333333pt;}
.yf9{bottom:579.773333pt;}
.y5b{bottom:586.333333pt;}
.ybc{bottom:587.133333pt;}
.y82{bottom:596.253333pt;}
.yf8{bottom:600.093333pt;}
.y5a{bottom:606.653333pt;}
.ybb{bottom:607.453333pt;}
.ye0{bottom:608.253333pt;}
.y88{bottom:614.333333pt;}
.yba{bottom:620.253333pt;}
.y59{bottom:627.133333pt;}
.y87{bottom:632.253333pt;}
.ydf{bottom:645.533333pt;}
.y58{bottom:647.613333pt;}
.y86{bottom:650.173333pt;}
.yb9{bottom:652.733333pt;}
.y57{bottom:668.093333pt;}
.y85{bottom:668.253333pt;}
.ydc{bottom:682.973333pt;}
.yb8{bottom:685.213333pt;}
.y84{bottom:686.173333pt;}
.y56{bottom:688.573333pt;}
.y76{bottom:704.093333pt;}
.y55{bottom:709.053333pt;}
.yb7{bottom:717.693333pt;}
.yd8{bottom:720.253333pt;}
.y81{bottom:722.173333pt;}
.y54{bottom:729.373333pt;}
.y80{bottom:740.093333pt;}
.yda{bottom:740.413333pt;}
.y15{bottom:744.733333pt;}
.y53{bottom:749.853333pt;}
.yb6{bottom:750.333333pt;}
.y12{bottom:757.693333pt;}
.y7f{bottom:758.013333pt;}
.y52{bottom:770.333333pt;}
.y7e{bottom:775.933333pt;}
.yb3{bottom:782.813333pt;}
.y51{bottom:790.853333pt;}
.y7d{bottom:794.053333pt;}
.y50{bottom:811.333333pt;}
.y7c{bottom:811.973333pt;}
.y10{bottom:813.733333pt;}
.yb1{bottom:815.333333pt;}
.yd{bottom:825.893333pt;}
.y7b{bottom:829.893333pt;}
.y4f{bottom:831.813333pt;}
.yad{bottom:847.813333pt;}
.y7a{bottom:847.973333pt;}
.y4e{bottom:852.133333pt;}
.yaf{bottom:865.573333pt;}
.y78{bottom:865.893333pt;}
.y4d{bottom:872.613333pt;}
.y74{bottom:884.773333pt;}
.y4c{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y4b{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y4a{bottom:934.053333pt;}
.y3f{bottom:946.853333pt;}
.y49{bottom:954.533333pt;}
.y48{bottom:974.853333pt;}
.y47{bottom:995.333333pt;}
.y73{bottom:998.693333pt;}
.y46{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y45{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:8.909062pt;}
.h1e{height:11.826667pt;}
.hf{height:12.146667pt;}
.h14{height:12.960000pt;}
.h25{height:13.586667pt;}
.h1a{height:15.066667pt;}
.h43{height:15.826667pt;}
.h48{height:16.466667pt;}
.h23{height:16.626667pt;}
.h33{height:16.946667pt;}
.h35{height:16.960000pt;}
.h39{height:16.986667pt;}
.h30{height:17.106667pt;}
.h37{height:17.120000pt;}
.h34{height:17.140000pt;}
.h22{height:17.746667pt;}
.h50{height:18.226667pt;}
.h4d{height:18.240000pt;}
.h4f{height:18.266667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h3c{height:19.026667pt;}
.h3f{height:19.058667pt;}
.h3a{height:19.186667pt;}
.h3d{height:20.146667pt;}
.h41{height:20.306667pt;}
.h1c{height:20.466667pt;}
.h40{height:21.586667pt;}
.h19{height:22.223750pt;}
.h28{height:22.878667pt;}
.h29{height:25.907188pt;}
.h20{height:26.706667pt;}
.h1f{height:29.856875pt;}
.h2f{height:30.317813pt;}
.h44{height:31.506667pt;}
.h46{height:31.520000pt;}
.h45{height:31.540000pt;}
.h4b{height:32.626667pt;}
.h49{height:32.658667pt;}
.h4a{height:32.786667pt;}
.h15{height:32.788125pt;}
.h17{height:32.817500pt;}
.h42{height:33.586667pt;}
.h10{height:35.112187pt;}
.h1b{height:35.975313pt;}
.h47{height:36.146667pt;}
.h2e{height:36.304688pt;}
.h4e{height:36.320000pt;}
.h2c{height:36.703125pt;}
.h4c{height:38.400000pt;}
.h31{height:39.090312pt;}
.h3b{height:40.306667pt;}
.h3e{height:41.778667pt;}
.h18{height:43.343750pt;}
.h27{height:43.757812pt;}
.h21{height:44.562500pt;}
.h9{height:45.812500pt;}
.h1d{height:47.460938pt;}
.hb{height:48.406250pt;}
.h2b{height:48.937500pt;}
.h2d{height:49.075000pt;}
.h13{height:52.406250pt;}
.h12{height:53.937500pt;}
.h11{height:56.020000pt;}
.h24{height:58.218750pt;}
.h6{height:61.315312pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.he{height:69.700313pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h2a{height:83.386667pt;}
.h8{height:96.026667pt;}
.h36{height:106.880000pt;}
.h38{height:124.826667pt;}
.h16{height:170.080000pt;}
.h32{height:178.746667pt;}
.h26{height:327.425333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w21{width:47.840000pt;}
.w22{width:48.000000pt;}
.w27{width:53.906667pt;}
.w26{width:53.938667pt;}
.w24{width:54.066667pt;}
.w19{width:59.506667pt;}
.w1a{width:59.538667pt;}
.w18{width:59.712000pt;}
.w25{width:59.986667pt;}
.w23{width:60.032000pt;}
.w30{width:63.826667pt;}
.w6{width:68.150667pt;}
.w17{width:69.440000pt;}
.w2e{width:70.866667pt;}
.w2c{width:70.880000pt;}
.w2f{width:70.898667pt;}
.w2d{width:70.912000pt;}
.wc{width:78.710667pt;}
.w1b{width:81.106667pt;}
.w1d{width:95.840000pt;}
.wf{width:103.666667pt;}
.w20{width:107.986667pt;}
.w5{width:110.226667pt;}
.w1f{width:113.938667pt;}
.w1e{width:114.112000pt;}
.w15{width:119.058667pt;}
.w14{width:129.152000pt;}
.we{width:132.018667pt;}
.w2b{width:134.706667pt;}
.w16{width:140.786667pt;}
.w2a{width:141.773333pt;}
.w29{width:141.786667pt;}
.w12{width:164.973333pt;}
.w1c{width:168.177333pt;}
.w28{width:181.777333pt;}
.w13{width:211.057333pt;}
.w10{width:211.697333pt;}
.w11{width:223.386667pt;}
.wd{width:287.413333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.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;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x2{left:10.710667pt;}
.x4e{left:11.680000pt;}
.x2c{left:12.630667pt;}
.x1c{left:13.750667pt;}
.x10{left:14.880000pt;}
.x40{left:16.160000pt;}
.x27{left:17.266667pt;}
.x16{left:18.710667pt;}
.x4c{left:20.320000pt;}
.x1a{left:21.266667pt;}
.x29{left:22.706667pt;}
.x3e{left:23.706667pt;}
.x41{left:24.800000pt;}
.x3f{left:26.066667pt;}
.x39{left:28.320000pt;}
.x52{left:29.600000pt;}
.x1d{left:31.666667pt;}
.x37{left:33.266667pt;}
.x7{left:35.360000pt;}
.x35{left:37.120000pt;}
.x48{left:38.546667pt;}
.x2d{left:40.946667pt;}
.x28{left:42.240000pt;}
.x22{left:43.506667pt;}
.x25{left:45.280000pt;}
.x23{left:46.560000pt;}
.x1f{left:48.800000pt;}
.x3d{left:49.745333pt;}
.x20{left:51.346667pt;}
.x50{left:52.306667pt;}
.x33{left:53.466667pt;}
.x26{left:54.386667pt;}
.x1e{left:56.466667pt;}
.x2a{left:57.746667pt;}
.x24{left:58.866667pt;}
.x21{left:63.026667pt;}
.x2b{left:64.666667pt;}
.xd{left:65.586667pt;}
.x43{left:67.665333pt;}
.x31{left:69.946667pt;}
.x42{left:72.625333pt;}
.x34{left:75.025333pt;}
.x32{left:76.305333pt;}
.x2f{left:80.800000pt;}
.x44{left:87.665333pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x18{left:130.106667pt;}
.x3{left:139.560000pt;}
.xa{left:157.160000pt;}
.x17{left:174.760000pt;}
.x13{left:187.706667pt;}
.x12{left:234.586667pt;}
.x45{left:264.226667pt;}
.x4f{left:277.826667pt;}
.xf{left:289.666667pt;}
.x2e{left:307.746667pt;}
.x49{left:312.066667pt;}
.x53{left:348.706667pt;}
.x46{left:360.066667pt;}
.x3a{left:376.546667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x4a{left:420.106667pt;}
.x36{left:436.266667pt;}
.x19{left:462.186667pt;}
.x47{left:474.186667pt;}
.x54{left:490.506667pt;}
.x3b{left:495.786667pt;}
.x30{left:531.146667pt;}
.x4b{left:534.186667pt;}
.x38{left:555.333333pt;}
.x51{left:561.413333pt;}
.x6{left:588.133333pt;}
.x1b{left:594.213333pt;}
.xe{left:604.732000pt;}
.x3c{left:615.013333pt;}
.x55{left:632.293333pt;}
.x4d{left:642.213333pt;}
}




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