
    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_fb6e363374b6a5752aafd9c6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_36eccf00de3b683245d673da.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_91c2f27c9fdec32a0c9cf59c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_c82f48d81afb339656f2e01e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_45fa82d8e7c2a6b618d5ad36.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_46965dc0a06c4c22aa84698e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.677246;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_3316bd1aa51e675c75a10d39.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_88248a3c8c6cdf8479dd6518.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0f37575e762ddb5abe303aa5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_b4b609f05bc13ad723e299d5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_36b31fee874d48c4cc5b11c2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.765137;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_eeaae974448da9aaa64f32f0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.750000;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_dfe5656557112e719a6d50f9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.750000;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_c9ad7131c2f8cddebb75fc45.woff')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_012f452ccf484b3b225b3e57.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4311b0631a6bbc37aa9c27d1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_6b9bec52aedf4a3fdf970dd8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.951172;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_0f8ae14a55c0418d6a59af93.woff')format("woff");}.ff12{font-family:ff12;line-height:0.750000;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_ad497aebfcddbe0c6462d870.woff')format("woff");}.ff13{font-family:ff13;line-height:0.750000;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_234ee8280a8cc56196296d27.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_ce66289cb6ca581ad80f68d8.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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:ff16;src:url('chunks/assets/font_34162f19e47fb6c074d79f40.woff')format("woff");}.ff16{font-family:ff16;line-height:0.857910;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:ff17;src:url('chunks/assets/font_d993409b129635609c2f7418.woff')format("woff");}.ff17{font-family:ff17;line-height:0.750000;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:ff18;src:url('chunks/assets/font_8e9462c056570cd69e49f1f5.woff')format("woff");}.ff18{font-family:ff18;line-height:0.750000;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:ff19;src:url('chunks/assets/font_9ee1848f9ecd7c512840d71b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269231,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288462,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.720000px;}
.v1{vertical-align:24.480000px;}
.ls26{letter-spacing:-0.747504px;}
.ls2b{letter-spacing:-0.675648px;}
.ls3a{letter-spacing:-0.626400px;}
.ls38{letter-spacing:-0.592992px;}
.lsf{letter-spacing:-0.417312px;}
.ls34{letter-spacing:-0.338688px;}
.lsd{letter-spacing:-0.241920px;}
.ls22{letter-spacing:-0.238464px;}
.ls35{letter-spacing:-0.223776px;}
.ls48{letter-spacing:-0.205344px;}
.ls17{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.175392px;}
.ls11{letter-spacing:-0.158976px;}
.ls15{letter-spacing:-0.125856px;}
.ls12{letter-spacing:-0.119232px;}
.ls16{letter-spacing:-0.086112px;}
.ls13{letter-spacing:-0.079488px;}
.ls14{letter-spacing:-0.059616px;}
.lsc{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.093600px;}
.ls23{letter-spacing:0.175392px;}
.ls0{letter-spacing:0.233856px;}
.ls1{letter-spacing:0.239040px;}
.ls10{letter-spacing:0.275616px;}
.ls2a{letter-spacing:0.334080px;}
.ls37{letter-spacing:0.388368px;}
.ls29{letter-spacing:0.430128px;}
.ls20{letter-spacing:0.434164px;}
.ls31{letter-spacing:0.435604px;}
.ls39{letter-spacing:0.522000px;}
.ls28{letter-spacing:0.609696px;}
.ls33{letter-spacing:0.610560px;}
.ls25{letter-spacing:0.651456px;}
.ls27{letter-spacing:0.659808px;}
.ls24{letter-spacing:0.663984px;}
.ls44{letter-spacing:0.864432px;}
.ls36{letter-spacing:0.989712px;}
.ls3f{letter-spacing:1.850256px;}
.ls3d{letter-spacing:2.185920px;}
.ls3c{letter-spacing:2.188512px;}
.ls3b{letter-spacing:2.188656px;}
.ls3e{letter-spacing:2.188800px;}
.ls6{letter-spacing:2.646720px;}
.ls40{letter-spacing:2.759760px;}
.ls41{letter-spacing:2.760480px;}
.lsa{letter-spacing:3.364704px;}
.lsb{letter-spacing:3.365280px;}
.ls30{letter-spacing:3.896876px;}
.ls4{letter-spacing:3.937680px;}
.ls5{letter-spacing:3.938400px;}
.ls32{letter-spacing:4.176441px;}
.ls2f{letter-spacing:4.734133px;}
.ls2e{letter-spacing:4.734144px;}
.ls2{letter-spacing:4.848624px;}
.ls3{letter-spacing:4.849920px;}
.ls1b{letter-spacing:5.052960px;}
.ls1e{letter-spacing:5.568752px;}
.ls1d{letter-spacing:5.571072px;}
.ls2c{letter-spacing:5.847604px;}
.ls8{letter-spacing:6.309072px;}
.ls9{letter-spacing:6.310080px;}
.ls2d{letter-spacing:6.405301px;}
.ls1f{letter-spacing:6.961628px;}
.ls18{letter-spacing:9.347328px;}
.ls45{letter-spacing:12.701808px;}
.ls21{letter-spacing:13.504337px;}
.ls19{letter-spacing:13.774032px;}
.ls42{letter-spacing:13.963680px;}
.ls1a{letter-spacing:14.585328px;}
.ls46{letter-spacing:16.529760px;}
.ls7{letter-spacing:23.969376px;}
.ls43{letter-spacing:26.354016px;}
.ls49{letter-spacing:43.583472px;}
.ls47{letter-spacing:76.583520px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.480512px;}
.ws5{word-spacing:-16.473888px;}
.ws2{word-spacing:-16.440768px;}
.ws8{word-spacing:-16.434144px;}
.ws1{word-spacing:-16.401024px;}
.ws7{word-spacing:-16.361280px;}
.ws0{word-spacing:-15.120000px;}
.ws13{word-spacing:-11.053872px;}
.wsb{word-spacing:-10.728144px;}
.wsf{word-spacing:-10.723968px;}
.wsc{word-spacing:-10.715616px;}
.ws10{word-spacing:-10.673856px;}
.ws16{word-spacing:-10.586160px;}
.ws11{word-spacing:-10.494288px;}
.ws14{word-spacing:-10.452528px;}
.wsa{word-spacing:-10.239552px;}
.ws15{word-spacing:-9.471168px;}
.ws17{word-spacing:-9.437760px;}
.wsd{word-spacing:-9.316656px;}
.ws12{word-spacing:-6.809472px;}
.wse{word-spacing:-0.063360px;}
.ws9{word-spacing:-0.047520px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-4.636800px;}
._e{margin-left:-3.510720px;}
._6{margin-left:-2.185920px;}
._1{margin-left:-1.062288px;}
._0{width:1.030032px;}
._7{width:2.062656px;}
._4{width:3.121344px;}
._3{width:4.122144px;}
._2{width:5.410944px;}
._c{width:6.417360px;}
._b{width:7.683840px;}
._5{width:9.273600px;}
._12{width:11.327040px;}
._11{width:12.453120px;}
._14{width:13.645440px;}
._15{width:14.785776px;}
._8{width:17.818560px;}
._d{width:19.607040px;}
._10{width:20.934144px;}
._f{width:22.073616px;}
._a{width:23.170752px;}
._9{width:24.177600px;}
._13{width:25.634880px;}
._18{width:27.092160px;}
._1b{width:28.220544px;}
._19{width:30.098880px;}
._1a{width:32.523840px;}
._16{width:823.625280px;}
.fc2{color:transparent;}
.fc3{color:rgb(180,180,180);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fsa{font-size:21.600000px;}
.fsb{font-size:24.000000px;}
.fs8{font-size:27.360000px;}
.fs5{font-size:33.120000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y80{bottom:1.966800px;}
.y81{bottom:1.966860px;}
.yb8{bottom:2.566650px;}
.y150{bottom:7.500000px;}
.y7d{bottom:87.840045px;}
.y14a{bottom:91.666800px;}
.yb4{bottom:101.386800px;}
.y7c{bottom:105.120045px;}
.y149{bottom:108.226800px;}
.y10c{bottom:112.906800px;}
.y7b{bottom:115.920045px;}
.yed{bottom:118.306800px;}
.yb3{bottom:120.466800px;}
.y148{bottom:124.426800px;}
.yb6{bottom:124.920000px;}
.y7a{bottom:127.080030px;}
.y10b{bottom:129.466800px;}
.yec{bottom:137.386800px;}
.yb2{bottom:139.186800px;}
.y147{bottom:140.986800px;}
.y10a{bottom:146.026800px;}
.y66{bottom:154.306800px;}
.yeb{bottom:156.466800px;}
.y146{bottom:157.546800px;}
.yb1{bottom:158.266800px;}
.y109{bottom:162.586800px;}
.y65{bottom:173.386800px;}
.y145{bottom:174.106800px;}
.yea{bottom:175.186800px;}
.yb0{bottom:177.346800px;}
.y108{bottom:178.786800px;}
.y33{bottom:189.586800px;}
.y144{bottom:190.666800px;}
.y64{bottom:192.466800px;}
.ye9{bottom:194.266800px;}
.y107{bottom:195.346800px;}
.yaf{bottom:196.426800px;}
.y143{bottom:207.226800px;}
.y32{bottom:208.666800px;}
.y63{bottom:211.186800px;}
.y106{bottom:211.906800px;}
.ye8{bottom:213.346800px;}
.yae{bottom:215.146800px;}
.y142{bottom:223.426800px;}
.y31{bottom:227.386800px;}
.y105{bottom:228.466800px;}
.y62{bottom:230.266800px;}
.ye7{bottom:232.426800px;}
.yad{bottom:234.226800px;}
.y141{bottom:239.986800px;}
.y104{bottom:245.026800px;}
.y30{bottom:246.466800px;}
.y61{bottom:249.346800px;}
.ye6{bottom:251.146800px;}
.yac{bottom:253.306800px;}
.y140{bottom:256.546800px;}
.y103{bottom:261.586800px;}
.y2f{bottom:265.546800px;}
.y60{bottom:268.066800px;}
.ye5{bottom:270.226800px;}
.yab{bottom:272.026800px;}
.y13f{bottom:273.106800px;}
.y102{bottom:277.786800px;}
.y76{bottom:283.906800px;}
.y2e{bottom:284.266800px;}
.y5f{bottom:287.146800px;}
.ye4{bottom:289.306800px;}
.y13e{bottom:289.666800px;}
.yaa{bottom:291.106800px;}
.y101{bottom:294.346800px;}
.y75{bottom:295.786800px;}
.y72{bottom:296.146800px;}
.y2d{bottom:303.346800px;}
.y5e{bottom:306.226800px;}
.ye3{bottom:308.026800px;}
.ya9{bottom:310.186800px;}
.y100{bottom:310.906800px;}
.y71{bottom:313.786800px;}
.y74{bottom:315.226800px;}
.y77{bottom:317.386800px;}
.y79{bottom:318.106800px;}
.y2c{bottom:322.426800px;}
.y5d{bottom:324.946800px;}
.y70{bottom:326.386800px;}
.y73{bottom:327.106800px;}
.yff{bottom:327.466800px;}
.ya8{bottom:328.906800px;}
.y13d{bottom:338.986800px;}
.y6f{bottom:340.426800px;}
.y2b{bottom:341.146800px;}
.y5c{bottom:344.026800px;}
.ye2{bottom:346.186800px;}
.ya7{bottom:347.986800px;}
.y13c{bottom:355.546800px;}
.y2a{bottom:360.226800px;}
.yfe{bottom:360.946800px;}
.y7f{bottom:363.000000px;}
.y5b{bottom:363.106800px;}
.ye1{bottom:364.906800px;}
.ya6{bottom:367.066800px;}
.y13b{bottom:372.106800px;}
.y6e{bottom:376.426800px;}
.y29{bottom:379.306800px;}
.yfd{bottom:379.666800px;}
.y5a{bottom:382.186800px;}
.ye0{bottom:383.986800px;}
.ya5{bottom:386.146800px;}
.y13a{bottom:388.666800px;}
.y7e{bottom:394.786845px;}
.y6d{bottom:396.946800px;}
.y28{bottom:398.386800px;}
.yfc{bottom:399.106800px;}
.y59{bottom:400.906800px;}
.ydf{bottom:403.066800px;}
.ya4{bottom:404.866800px;}
.y139{bottom:405.226800px;}
.y6c{bottom:411.706800px;}
.y27{bottom:417.106800px;}
.yfb{bottom:419.266800px;}
.y58{bottom:419.986800px;}
.y138{bottom:421.426800px;}
.yde{bottom:422.146800px;}
.ya3{bottom:423.946800px;}
.y6b{bottom:427.906800px;}
.y78{bottom:432.586845px;}
.y26{bottom:436.186800px;}
.y6a{bottom:437.266800px;}
.y137{bottom:437.986800px;}
.yfa{bottom:438.346800px;}
.y57{bottom:439.066800px;}
.ydd{bottom:440.866800px;}
.ya2{bottom:443.026800px;}
.y69{bottom:446.626800px;}
.y136{bottom:454.546800px;}
.y25{bottom:455.266800px;}
.y68{bottom:456.346800px;}
.yf9{bottom:457.426800px;}
.y56{bottom:457.786800px;}
.ydc{bottom:459.946800px;}
.ya1{bottom:461.746800px;}
.y67{bottom:465.706800px;}
.y135{bottom:471.106800px;}
.y24{bottom:473.986800px;}
.yf8{bottom:476.506800px;}
.y55{bottom:476.866800px;}
.ydb{bottom:479.026800px;}
.ya0{bottom:480.826800px;}
.y134{bottom:487.666800px;}
.y23{bottom:493.066800px;}
.yf7{bottom:495.226800px;}
.y54{bottom:495.946800px;}
.yda{bottom:497.746800px;}
.y9f{bottom:499.906800px;}
.y133{bottom:504.226800px;}
.y22{bottom:512.146800px;}
.yf6{bottom:514.306800px;}
.y53{bottom:514.666800px;}
.yd9{bottom:516.826800px;}
.y9e{bottom:518.986800px;}
.y132{bottom:520.426800px;}
.y21{bottom:530.866800px;}
.yf5{bottom:533.386800px;}
.y52{bottom:533.746800px;}
.yd8{bottom:535.906800px;}
.y131{bottom:536.986800px;}
.y9d{bottom:537.706800px;}
.y20{bottom:549.946800px;}
.yf4{bottom:552.106800px;}
.y51{bottom:552.826800px;}
.y130{bottom:553.546800px;}
.yd7{bottom:554.986800px;}
.y9c{bottom:556.786800px;}
.y1f{bottom:569.026800px;}
.y12f{bottom:570.106800px;}
.yf3{bottom:571.186800px;}
.y50{bottom:571.906800px;}
.yd6{bottom:573.706800px;}
.y9b{bottom:575.866800px;}
.y12e{bottom:586.666800px;}
.y1e{bottom:588.106800px;}
.yf2{bottom:590.266800px;}
.y4f{bottom:590.626800px;}
.yd5{bottom:592.786800px;}
.y9a{bottom:594.586800px;}
.y12d{bottom:603.226800px;}
.y1d{bottom:606.826800px;}
.yf1{bottom:608.986800px;}
.y4e{bottom:609.706800px;}
.yd4{bottom:611.866800px;}
.y99{bottom:613.666800px;}
.y12c{bottom:619.426800px;}
.y1c{bottom:628.066800px;}
.y4d{bottom:628.786800px;}
.yd3{bottom:630.586800px;}
.y98{bottom:632.746800px;}
.y12b{bottom:635.986800px;}
.y1b{bottom:647.146800px;}
.y4c{bottom:647.506800px;}
.yd2{bottom:649.666800px;}
.y97{bottom:651.466800px;}
.y12a{bottom:652.546800px;}
.y1a{bottom:666.226800px;}
.y4b{bottom:666.586800px;}
.yd1{bottom:668.746800px;}
.y129{bottom:669.106800px;}
.y96{bottom:670.546800px;}
.y19{bottom:684.946800px;}
.y4a{bottom:685.666800px;}
.yd0{bottom:687.466800px;}
.y95{bottom:689.626800px;}
.y128{bottom:702.226800px;}
.y18{bottom:704.026800px;}
.y49{bottom:704.746800px;}
.ycf{bottom:706.546800px;}
.y94{bottom:708.706800px;}
.y127{bottom:718.426800px;}
.y17{bottom:723.106800px;}
.y48{bottom:723.466800px;}
.yce{bottom:725.626800px;}
.y93{bottom:727.426800px;}
.y126{bottom:734.986800px;}
.y16{bottom:741.826800px;}
.y47{bottom:742.546800px;}
.ycd{bottom:744.706800px;}
.y92{bottom:746.506800px;}
.y125{bottom:751.546800px;}
.y15{bottom:760.906800px;}
.y46{bottom:761.626800px;}
.ycc{bottom:763.426800px;}
.y91{bottom:765.586800px;}
.y124{bottom:768.106800px;}
.y14{bottom:779.986800px;}
.y45{bottom:780.346800px;}
.ycb{bottom:782.506800px;}
.y90{bottom:784.306800px;}
.y123{bottom:784.666800px;}
.y13{bottom:799.066800px;}
.y44{bottom:799.426800px;}
.y122{bottom:801.226800px;}
.yca{bottom:801.586800px;}
.y8f{bottom:803.386800px;}
.y121{bottom:817.426800px;}
.y12{bottom:817.786800px;}
.y43{bottom:818.506800px;}
.yc9{bottom:820.306800px;}
.y8e{bottom:822.466800px;}
.y120{bottom:833.986800px;}
.y11{bottom:836.866800px;}
.y42{bottom:837.226800px;}
.yc8{bottom:839.386800px;}
.y8d{bottom:841.186800px;}
.y11f{bottom:850.546800px;}
.y14f{bottom:855.226800px;}
.y10{bottom:855.946800px;}
.y41{bottom:856.306800px;}
.yc7{bottom:858.466800px;}
.y8c{bottom:860.266800px;}
.y11e{bottom:867.106800px;}
.y14e{bottom:873.946800px;}
.yf{bottom:874.666800px;}
.y40{bottom:875.386800px;}
.yc6{bottom:877.186800px;}
.y8b{bottom:879.346800px;}
.y11d{bottom:883.666800px;}
.y14d{bottom:893.026800px;}
.ye{bottom:893.746800px;}
.y3f{bottom:894.466800px;}
.yf0{bottom:895.546800px;}
.yc5{bottom:896.266800px;}
.y8a{bottom:898.426800px;}
.y11c{bottom:900.226800px;}
.y14c{bottom:912.106800px;}
.yd{bottom:912.826800px;}
.y3e{bottom:913.186800px;}
.yef{bottom:914.626800px;}
.yc4{bottom:915.346800px;}
.y11b{bottom:916.426800px;}
.y89{bottom:917.146800px;}
.yee{bottom:929.746800px;}
.y14b{bottom:930.826800px;}
.yc{bottom:931.906800px;}
.y3d{bottom:932.266800px;}
.y11a{bottom:932.986800px;}
.yc3{bottom:934.426800px;}
.y88{bottom:936.226800px;}
.y119{bottom:949.546800px;}
.yb{bottom:950.626800px;}
.y3c{bottom:951.346800px;}
.yc2{bottom:953.146800px;}
.y87{bottom:953.866800px;}
.y118{bottom:966.106800px;}
.ya{bottom:969.706800px;}
.y3b{bottom:970.066800px;}
.y86{bottom:972.226800px;}
.y117{bottom:982.666800px;}
.y85{bottom:984.106800px;}
.y3a{bottom:989.146800px;}
.y9{bottom:990.946800px;}
.yc1{bottom:991.306800px;}
.y84{bottom:993.826800px;}
.yb5{bottom:994.186800px;}
.y116{bottom:999.226800px;}
.y39{bottom:1008.226800px;}
.y8{bottom:1010.026800px;}
.y83{bottom:1011.826800px;}
.y115{bottom:1015.426800px;}
.y38{bottom:1026.946800px;}
.yc0{bottom:1029.106800px;}
.y7{bottom:1029.466800px;}
.y114{bottom:1031.986800px;}
.y37{bottom:1046.026800px;}
.ybf{bottom:1048.186800px;}
.y113{bottom:1048.546800px;}
.y6{bottom:1050.706800px;}
.yb7{bottom:1059.000000px;}
.y36{bottom:1065.106800px;}
.ybe{bottom:1067.266800px;}
.y5{bottom:1074.826800px;}
.y112{bottom:1081.666800px;}
.y35{bottom:1084.186800px;}
.ybd{bottom:1085.986800px;}
.y111{bottom:1098.226800px;}
.y4{bottom:1098.946800px;}
.y34{bottom:1102.906800px;}
.ybc{bottom:1105.066800px;}
.y110{bottom:1114.426800px;}
.ybb{bottom:1124.146800px;}
.y10f{bottom:1130.986800px;}
.yba{bottom:1142.866800px;}
.y10e{bottom:1147.546800px;}
.yb9{bottom:1161.946800px;}
.y10d{bottom:1164.106800px;}
.y82{bottom:1172.026800px;}
.y3{bottom:1192.546800px;}
.y2{bottom:1209.826800px;}
.y1{bottom:1227.106800px;}
.h13{height:16.200000px;}
.h18{height:17.273438px;}
.he{height:20.520000px;}
.h8{height:22.074609px;}
.h12{height:22.527422px;}
.h16{height:22.527590px;}
.h10{height:23.994141px;}
.hb{height:31.320000px;}
.hc{height:31.585078px;}
.h2{height:40.989375px;}
.h9{height:43.560000px;}
.h7{height:44.893125px;}
.h14{height:45.360000px;}
.h6{height:46.025156px;}
.h11{height:46.500000px;}
.hd{height:47.520000px;}
.h3{height:47.988281px;}
.h17{height:48.796875px;}
.ha{height:54.000000px;}
.h4{height:56.604375px;}
.h5{height:56.662734px;}
.h15{height:129.960000px;}
.hf{height:135.360000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w4{width:12.000000px;}
.w3{width:13.500000px;}
.w5{width:165.600000px;}
.w2{width:181.440000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:9.087780px;}
.x2b{left:75.000000px;}
.x1c{left:85.408044px;}
.x9{left:89.007900px;}
.x2a{left:91.958100px;}
.x4{left:124.263024px;}
.x19{left:126.000000px;}
.xb{left:127.632927px;}
.x28{left:133.500000px;}
.x20{left:143.111544px;}
.xc{left:146.908001px;}
.x25{left:150.831996px;}
.x26{left:155.247900px;}
.x27{left:167.460000px;}
.x1{left:171.108744px;}
.x2{left:182.325768px;}
.x16{left:184.827900px;}
.x8{left:193.517880px;}
.x3{left:231.980316px;}
.xd{left:323.616912px;}
.x1d{left:329.337888px;}
.x1f{left:332.167956px;}
.x7{left:345.124104px;}
.x1b{left:346.500000px;}
.x5{left:351.494700px;}
.xe{left:358.287936px;}
.x17{left:363.687900px;}
.xf{left:396.913083px;}
.x21{left:406.632936px;}
.x10{left:416.787831px;}
.x18{left:422.067900px;}
.x6{left:447.133020px;}
.x22{left:478.513500px;}
.x11{left:494.833740px;}
.x1e{left:535.767900px;}
.x23{left:553.257670px;}
.x13{left:561.793098px;}
.xa{left:563.757900px;}
.x14{left:582.417642px;}
.x15{left:643.603740px;}
.x12{left:669.240060px;}
.x29{left:693.432780px;}
.x24{left:755.001420px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.640000pt;}
.v1{vertical-align:21.760000pt;}
.ls26{letter-spacing:-0.664448pt;}
.ls2b{letter-spacing:-0.600576pt;}
.ls3a{letter-spacing:-0.556800pt;}
.ls38{letter-spacing:-0.527104pt;}
.lsf{letter-spacing:-0.370944pt;}
.ls34{letter-spacing:-0.301056pt;}
.lsd{letter-spacing:-0.215040pt;}
.ls22{letter-spacing:-0.211968pt;}
.ls35{letter-spacing:-0.198912pt;}
.ls48{letter-spacing:-0.182528pt;}
.ls17{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.155904pt;}
.ls11{letter-spacing:-0.141312pt;}
.ls15{letter-spacing:-0.111872pt;}
.ls12{letter-spacing:-0.105984pt;}
.ls16{letter-spacing:-0.076544pt;}
.ls13{letter-spacing:-0.070656pt;}
.ls14{letter-spacing:-0.052992pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.083200pt;}
.ls23{letter-spacing:0.155904pt;}
.ls0{letter-spacing:0.207872pt;}
.ls1{letter-spacing:0.212480pt;}
.ls10{letter-spacing:0.244992pt;}
.ls2a{letter-spacing:0.296960pt;}
.ls37{letter-spacing:0.345216pt;}
.ls29{letter-spacing:0.382336pt;}
.ls20{letter-spacing:0.385924pt;}
.ls31{letter-spacing:0.387204pt;}
.ls39{letter-spacing:0.464000pt;}
.ls28{letter-spacing:0.541952pt;}
.ls33{letter-spacing:0.542720pt;}
.ls25{letter-spacing:0.579072pt;}
.ls27{letter-spacing:0.586496pt;}
.ls24{letter-spacing:0.590208pt;}
.ls44{letter-spacing:0.768384pt;}
.ls36{letter-spacing:0.879744pt;}
.ls3f{letter-spacing:1.644672pt;}
.ls3d{letter-spacing:1.943040pt;}
.ls3c{letter-spacing:1.945344pt;}
.ls3b{letter-spacing:1.945472pt;}
.ls3e{letter-spacing:1.945600pt;}
.ls6{letter-spacing:2.352640pt;}
.ls40{letter-spacing:2.453120pt;}
.ls41{letter-spacing:2.453760pt;}
.lsa{letter-spacing:2.990848pt;}
.lsb{letter-spacing:2.991360pt;}
.ls30{letter-spacing:3.463889pt;}
.ls4{letter-spacing:3.500160pt;}
.ls5{letter-spacing:3.500800pt;}
.ls32{letter-spacing:3.712392pt;}
.ls2f{letter-spacing:4.208118pt;}
.ls2e{letter-spacing:4.208128pt;}
.ls2{letter-spacing:4.309888pt;}
.ls3{letter-spacing:4.311040pt;}
.ls1b{letter-spacing:4.491520pt;}
.ls1e{letter-spacing:4.950002pt;}
.ls1d{letter-spacing:4.952064pt;}
.ls2c{letter-spacing:5.197870pt;}
.ls8{letter-spacing:5.608064pt;}
.ls9{letter-spacing:5.608960pt;}
.ls2d{letter-spacing:5.693601pt;}
.ls1f{letter-spacing:6.188114pt;}
.ls18{letter-spacing:8.308736pt;}
.ls45{letter-spacing:11.290496pt;}
.ls21{letter-spacing:12.003855pt;}
.ls19{letter-spacing:12.243584pt;}
.ls42{letter-spacing:12.412160pt;}
.ls1a{letter-spacing:12.964736pt;}
.ls46{letter-spacing:14.693120pt;}
.ls7{letter-spacing:21.306112pt;}
.ls43{letter-spacing:23.425792pt;}
.ls49{letter-spacing:38.740864pt;}
.ls47{letter-spacing:68.074240pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.649344pt;}
.ws5{word-spacing:-14.643456pt;}
.ws2{word-spacing:-14.614016pt;}
.ws8{word-spacing:-14.608128pt;}
.ws1{word-spacing:-14.578688pt;}
.ws7{word-spacing:-14.543360pt;}
.ws0{word-spacing:-13.440000pt;}
.ws13{word-spacing:-9.825664pt;}
.wsb{word-spacing:-9.536128pt;}
.wsf{word-spacing:-9.532416pt;}
.wsc{word-spacing:-9.524992pt;}
.ws10{word-spacing:-9.487872pt;}
.ws16{word-spacing:-9.409920pt;}
.ws11{word-spacing:-9.328256pt;}
.ws14{word-spacing:-9.291136pt;}
.wsa{word-spacing:-9.101824pt;}
.ws15{word-spacing:-8.418816pt;}
.ws17{word-spacing:-8.389120pt;}
.wsd{word-spacing:-8.281472pt;}
.ws12{word-spacing:-6.052864pt;}
.wse{word-spacing:-0.056320pt;}
.ws9{word-spacing:-0.042240pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-4.121600pt;}
._e{margin-left:-3.120640pt;}
._6{margin-left:-1.943040pt;}
._1{margin-left:-0.944256pt;}
._0{width:0.915584pt;}
._7{width:1.833472pt;}
._4{width:2.774528pt;}
._3{width:3.664128pt;}
._2{width:4.809728pt;}
._c{width:5.704320pt;}
._b{width:6.830080pt;}
._5{width:8.243200pt;}
._12{width:10.068480pt;}
._11{width:11.069440pt;}
._14{width:12.129280pt;}
._15{width:13.142912pt;}
._8{width:15.838720pt;}
._d{width:17.428480pt;}
._10{width:18.608128pt;}
._f{width:19.620992pt;}
._a{width:20.596224pt;}
._9{width:21.491200pt;}
._13{width:22.786560pt;}
._18{width:24.081920pt;}
._1b{width:25.084928pt;}
._19{width:26.754560pt;}
._1a{width:28.910080pt;}
._16{width:732.111360pt;}
.fsa{font-size:19.200000pt;}
.fsb{font-size:21.333333pt;}
.fs8{font-size:24.320000pt;}
.fs5{font-size:29.440000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:1.748267pt;}
.y81{bottom:1.748320pt;}
.yb8{bottom:2.281467pt;}
.y150{bottom:6.666667pt;}
.y7d{bottom:78.080040pt;}
.y14a{bottom:81.481600pt;}
.yb4{bottom:90.121600pt;}
.y7c{bottom:93.440040pt;}
.y149{bottom:96.201600pt;}
.y10c{bottom:100.361600pt;}
.y7b{bottom:103.040040pt;}
.yed{bottom:105.161600pt;}
.yb3{bottom:107.081600pt;}
.y148{bottom:110.601600pt;}
.yb6{bottom:111.040000pt;}
.y7a{bottom:112.960027pt;}
.y10b{bottom:115.081600pt;}
.yec{bottom:122.121600pt;}
.yb2{bottom:123.721600pt;}
.y147{bottom:125.321600pt;}
.y10a{bottom:129.801600pt;}
.y66{bottom:137.161600pt;}
.yeb{bottom:139.081600pt;}
.y146{bottom:140.041600pt;}
.yb1{bottom:140.681600pt;}
.y109{bottom:144.521600pt;}
.y65{bottom:154.121600pt;}
.y145{bottom:154.761600pt;}
.yea{bottom:155.721600pt;}
.yb0{bottom:157.641600pt;}
.y108{bottom:158.921600pt;}
.y33{bottom:168.521600pt;}
.y144{bottom:169.481600pt;}
.y64{bottom:171.081600pt;}
.ye9{bottom:172.681600pt;}
.y107{bottom:173.641600pt;}
.yaf{bottom:174.601600pt;}
.y143{bottom:184.201600pt;}
.y32{bottom:185.481600pt;}
.y63{bottom:187.721600pt;}
.y106{bottom:188.361600pt;}
.ye8{bottom:189.641600pt;}
.yae{bottom:191.241600pt;}
.y142{bottom:198.601600pt;}
.y31{bottom:202.121600pt;}
.y105{bottom:203.081600pt;}
.y62{bottom:204.681600pt;}
.ye7{bottom:206.601600pt;}
.yad{bottom:208.201600pt;}
.y141{bottom:213.321600pt;}
.y104{bottom:217.801600pt;}
.y30{bottom:219.081600pt;}
.y61{bottom:221.641600pt;}
.ye6{bottom:223.241600pt;}
.yac{bottom:225.161600pt;}
.y140{bottom:228.041600pt;}
.y103{bottom:232.521600pt;}
.y2f{bottom:236.041600pt;}
.y60{bottom:238.281600pt;}
.ye5{bottom:240.201600pt;}
.yab{bottom:241.801600pt;}
.y13f{bottom:242.761600pt;}
.y102{bottom:246.921600pt;}
.y76{bottom:252.361600pt;}
.y2e{bottom:252.681600pt;}
.y5f{bottom:255.241600pt;}
.ye4{bottom:257.161600pt;}
.y13e{bottom:257.481600pt;}
.yaa{bottom:258.761600pt;}
.y101{bottom:261.641600pt;}
.y75{bottom:262.921600pt;}
.y72{bottom:263.241600pt;}
.y2d{bottom:269.641600pt;}
.y5e{bottom:272.201600pt;}
.ye3{bottom:273.801600pt;}
.ya9{bottom:275.721600pt;}
.y100{bottom:276.361600pt;}
.y71{bottom:278.921600pt;}
.y74{bottom:280.201600pt;}
.y77{bottom:282.121600pt;}
.y79{bottom:282.761600pt;}
.y2c{bottom:286.601600pt;}
.y5d{bottom:288.841600pt;}
.y70{bottom:290.121600pt;}
.y73{bottom:290.761600pt;}
.yff{bottom:291.081600pt;}
.ya8{bottom:292.361600pt;}
.y13d{bottom:301.321600pt;}
.y6f{bottom:302.601600pt;}
.y2b{bottom:303.241600pt;}
.y5c{bottom:305.801600pt;}
.ye2{bottom:307.721600pt;}
.ya7{bottom:309.321600pt;}
.y13c{bottom:316.041600pt;}
.y2a{bottom:320.201600pt;}
.yfe{bottom:320.841600pt;}
.y7f{bottom:322.666667pt;}
.y5b{bottom:322.761600pt;}
.ye1{bottom:324.361600pt;}
.ya6{bottom:326.281600pt;}
.y13b{bottom:330.761600pt;}
.y6e{bottom:334.601600pt;}
.y29{bottom:337.161600pt;}
.yfd{bottom:337.481600pt;}
.y5a{bottom:339.721600pt;}
.ye0{bottom:341.321600pt;}
.ya5{bottom:343.241600pt;}
.y13a{bottom:345.481600pt;}
.y7e{bottom:350.921640pt;}
.y6d{bottom:352.841600pt;}
.y28{bottom:354.121600pt;}
.yfc{bottom:354.761600pt;}
.y59{bottom:356.361600pt;}
.ydf{bottom:358.281600pt;}
.ya4{bottom:359.881600pt;}
.y139{bottom:360.201600pt;}
.y6c{bottom:365.961600pt;}
.y27{bottom:370.761600pt;}
.yfb{bottom:372.681600pt;}
.y58{bottom:373.321600pt;}
.y138{bottom:374.601600pt;}
.yde{bottom:375.241600pt;}
.ya3{bottom:376.841600pt;}
.y6b{bottom:380.361600pt;}
.y78{bottom:384.521640pt;}
.y26{bottom:387.721600pt;}
.y6a{bottom:388.681600pt;}
.y137{bottom:389.321600pt;}
.yfa{bottom:389.641600pt;}
.y57{bottom:390.281600pt;}
.ydd{bottom:391.881600pt;}
.ya2{bottom:393.801600pt;}
.y69{bottom:397.001600pt;}
.y136{bottom:404.041600pt;}
.y25{bottom:404.681600pt;}
.y68{bottom:405.641600pt;}
.yf9{bottom:406.601600pt;}
.y56{bottom:406.921600pt;}
.ydc{bottom:408.841600pt;}
.ya1{bottom:410.441600pt;}
.y67{bottom:413.961600pt;}
.y135{bottom:418.761600pt;}
.y24{bottom:421.321600pt;}
.yf8{bottom:423.561600pt;}
.y55{bottom:423.881600pt;}
.ydb{bottom:425.801600pt;}
.ya0{bottom:427.401600pt;}
.y134{bottom:433.481600pt;}
.y23{bottom:438.281600pt;}
.yf7{bottom:440.201600pt;}
.y54{bottom:440.841600pt;}
.yda{bottom:442.441600pt;}
.y9f{bottom:444.361600pt;}
.y133{bottom:448.201600pt;}
.y22{bottom:455.241600pt;}
.yf6{bottom:457.161600pt;}
.y53{bottom:457.481600pt;}
.yd9{bottom:459.401600pt;}
.y9e{bottom:461.321600pt;}
.y132{bottom:462.601600pt;}
.y21{bottom:471.881600pt;}
.yf5{bottom:474.121600pt;}
.y52{bottom:474.441600pt;}
.yd8{bottom:476.361600pt;}
.y131{bottom:477.321600pt;}
.y9d{bottom:477.961600pt;}
.y20{bottom:488.841600pt;}
.yf4{bottom:490.761600pt;}
.y51{bottom:491.401600pt;}
.y130{bottom:492.041600pt;}
.yd7{bottom:493.321600pt;}
.y9c{bottom:494.921600pt;}
.y1f{bottom:505.801600pt;}
.y12f{bottom:506.761600pt;}
.yf3{bottom:507.721600pt;}
.y50{bottom:508.361600pt;}
.yd6{bottom:509.961600pt;}
.y9b{bottom:511.881600pt;}
.y12e{bottom:521.481600pt;}
.y1e{bottom:522.761600pt;}
.yf2{bottom:524.681600pt;}
.y4f{bottom:525.001600pt;}
.yd5{bottom:526.921600pt;}
.y9a{bottom:528.521600pt;}
.y12d{bottom:536.201600pt;}
.y1d{bottom:539.401600pt;}
.yf1{bottom:541.321600pt;}
.y4e{bottom:541.961600pt;}
.yd4{bottom:543.881600pt;}
.y99{bottom:545.481600pt;}
.y12c{bottom:550.601600pt;}
.y1c{bottom:558.281600pt;}
.y4d{bottom:558.921600pt;}
.yd3{bottom:560.521600pt;}
.y98{bottom:562.441600pt;}
.y12b{bottom:565.321600pt;}
.y1b{bottom:575.241600pt;}
.y4c{bottom:575.561600pt;}
.yd2{bottom:577.481600pt;}
.y97{bottom:579.081600pt;}
.y12a{bottom:580.041600pt;}
.y1a{bottom:592.201600pt;}
.y4b{bottom:592.521600pt;}
.yd1{bottom:594.441600pt;}
.y129{bottom:594.761600pt;}
.y96{bottom:596.041600pt;}
.y19{bottom:608.841600pt;}
.y4a{bottom:609.481600pt;}
.yd0{bottom:611.081600pt;}
.y95{bottom:613.001600pt;}
.y128{bottom:624.201600pt;}
.y18{bottom:625.801600pt;}
.y49{bottom:626.441600pt;}
.ycf{bottom:628.041600pt;}
.y94{bottom:629.961600pt;}
.y127{bottom:638.601600pt;}
.y17{bottom:642.761600pt;}
.y48{bottom:643.081600pt;}
.yce{bottom:645.001600pt;}
.y93{bottom:646.601600pt;}
.y126{bottom:653.321600pt;}
.y16{bottom:659.401600pt;}
.y47{bottom:660.041600pt;}
.ycd{bottom:661.961600pt;}
.y92{bottom:663.561600pt;}
.y125{bottom:668.041600pt;}
.y15{bottom:676.361600pt;}
.y46{bottom:677.001600pt;}
.ycc{bottom:678.601600pt;}
.y91{bottom:680.521600pt;}
.y124{bottom:682.761600pt;}
.y14{bottom:693.321600pt;}
.y45{bottom:693.641600pt;}
.ycb{bottom:695.561600pt;}
.y90{bottom:697.161600pt;}
.y123{bottom:697.481600pt;}
.y13{bottom:710.281600pt;}
.y44{bottom:710.601600pt;}
.y122{bottom:712.201600pt;}
.yca{bottom:712.521600pt;}
.y8f{bottom:714.121600pt;}
.y121{bottom:726.601600pt;}
.y12{bottom:726.921600pt;}
.y43{bottom:727.561600pt;}
.yc9{bottom:729.161600pt;}
.y8e{bottom:731.081600pt;}
.y120{bottom:741.321600pt;}
.y11{bottom:743.881600pt;}
.y42{bottom:744.201600pt;}
.yc8{bottom:746.121600pt;}
.y8d{bottom:747.721600pt;}
.y11f{bottom:756.041600pt;}
.y14f{bottom:760.201600pt;}
.y10{bottom:760.841600pt;}
.y41{bottom:761.161600pt;}
.yc7{bottom:763.081600pt;}
.y8c{bottom:764.681600pt;}
.y11e{bottom:770.761600pt;}
.y14e{bottom:776.841600pt;}
.yf{bottom:777.481600pt;}
.y40{bottom:778.121600pt;}
.yc6{bottom:779.721600pt;}
.y8b{bottom:781.641600pt;}
.y11d{bottom:785.481600pt;}
.y14d{bottom:793.801600pt;}
.ye{bottom:794.441600pt;}
.y3f{bottom:795.081600pt;}
.yf0{bottom:796.041600pt;}
.yc5{bottom:796.681600pt;}
.y8a{bottom:798.601600pt;}
.y11c{bottom:800.201600pt;}
.y14c{bottom:810.761600pt;}
.yd{bottom:811.401600pt;}
.y3e{bottom:811.721600pt;}
.yef{bottom:813.001600pt;}
.yc4{bottom:813.641600pt;}
.y11b{bottom:814.601600pt;}
.y89{bottom:815.241600pt;}
.yee{bottom:826.441600pt;}
.y14b{bottom:827.401600pt;}
.yc{bottom:828.361600pt;}
.y3d{bottom:828.681600pt;}
.y11a{bottom:829.321600pt;}
.yc3{bottom:830.601600pt;}
.y88{bottom:832.201600pt;}
.y119{bottom:844.041600pt;}
.yb{bottom:845.001600pt;}
.y3c{bottom:845.641600pt;}
.yc2{bottom:847.241600pt;}
.y87{bottom:847.881600pt;}
.y118{bottom:858.761600pt;}
.ya{bottom:861.961600pt;}
.y3b{bottom:862.281600pt;}
.y86{bottom:864.201600pt;}
.y117{bottom:873.481600pt;}
.y85{bottom:874.761600pt;}
.y3a{bottom:879.241600pt;}
.y9{bottom:880.841600pt;}
.yc1{bottom:881.161600pt;}
.y84{bottom:883.401600pt;}
.yb5{bottom:883.721600pt;}
.y116{bottom:888.201600pt;}
.y39{bottom:896.201600pt;}
.y8{bottom:897.801600pt;}
.y83{bottom:899.401600pt;}
.y115{bottom:902.601600pt;}
.y38{bottom:912.841600pt;}
.yc0{bottom:914.761600pt;}
.y7{bottom:915.081600pt;}
.y114{bottom:917.321600pt;}
.y37{bottom:929.801600pt;}
.ybf{bottom:931.721600pt;}
.y113{bottom:932.041600pt;}
.y6{bottom:933.961600pt;}
.yb7{bottom:941.333333pt;}
.y36{bottom:946.761600pt;}
.ybe{bottom:948.681600pt;}
.y5{bottom:955.401600pt;}
.y112{bottom:961.481600pt;}
.y35{bottom:963.721600pt;}
.ybd{bottom:965.321600pt;}
.y111{bottom:976.201600pt;}
.y4{bottom:976.841600pt;}
.y34{bottom:980.361600pt;}
.ybc{bottom:982.281600pt;}
.y110{bottom:990.601600pt;}
.ybb{bottom:999.241600pt;}
.y10f{bottom:1005.321600pt;}
.yba{bottom:1015.881600pt;}
.y10e{bottom:1020.041600pt;}
.yb9{bottom:1032.841600pt;}
.y10d{bottom:1034.761600pt;}
.y82{bottom:1041.801600pt;}
.y3{bottom:1060.041600pt;}
.y2{bottom:1075.401600pt;}
.y1{bottom:1090.761600pt;}
.h13{height:14.400000pt;}
.h18{height:15.354167pt;}
.he{height:18.240000pt;}
.h8{height:19.621875pt;}
.h12{height:20.024375pt;}
.h16{height:20.024524pt;}
.h10{height:21.328125pt;}
.hb{height:27.840000pt;}
.hc{height:28.075625pt;}
.h2{height:36.435000pt;}
.h9{height:38.720000pt;}
.h7{height:39.905000pt;}
.h14{height:40.320000pt;}
.h6{height:40.911250pt;}
.h11{height:41.333333pt;}
.hd{height:42.240000pt;}
.h3{height:42.656250pt;}
.h17{height:43.375000pt;}
.ha{height:48.000000pt;}
.h4{height:50.315000pt;}
.h5{height:50.366875pt;}
.h15{height:115.520000pt;}
.hf{height:120.320000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w4{width:10.666667pt;}
.w3{width:12.000000pt;}
.w5{width:147.200000pt;}
.w2{width:161.280000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:8.078027pt;}
.x2b{left:66.666667pt;}
.x1c{left:75.918261pt;}
.x9{left:79.118133pt;}
.x2a{left:81.740533pt;}
.x4{left:110.456021pt;}
.x19{left:112.000000pt;}
.xb{left:113.451491pt;}
.x28{left:118.666667pt;}
.x20{left:127.210261pt;}
.xc{left:130.584890pt;}
.x25{left:134.072885pt;}
.x26{left:137.998133pt;}
.x27{left:148.853333pt;}
.x1{left:152.096661pt;}
.x2{left:162.067349pt;}
.x16{left:164.291467pt;}
.x8{left:172.015893pt;}
.x3{left:206.204725pt;}
.xd{left:287.659477pt;}
.x1d{left:292.744789pt;}
.x1f{left:295.260405pt;}
.x7{left:306.776981pt;}
.x1b{left:308.000000pt;}
.x5{left:312.439733pt;}
.xe{left:318.478165pt;}
.x17{left:323.278133pt;}
.xf{left:352.811629pt;}
.x21{left:361.451498pt;}
.x10{left:370.478072pt;}
.x18{left:375.171467pt;}
.x6{left:397.451573pt;}
.x22{left:425.345333pt;}
.x11{left:439.852213pt;}
.x1e{left:476.238133pt;}
.x23{left:491.784595pt;}
.x13{left:499.371642pt;}
.xa{left:501.118133pt;}
.x14{left:517.704571pt;}
.x15{left:572.092213pt;}
.x12{left:594.880053pt;}
.x29{left:616.384693pt;}
.x24{left:671.112373pt;}
}




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