
    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_ee6ad8f6e6ce1c8e925d8aad.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_504254484f738c0e885f35a6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_e6a68811227086b2b7a8f230.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_2ea085969090c9cd653207c1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_8e818eb4735da1ac738b5736.woff')format("woff");}.ff5{font-family:ff5;line-height:0.828000;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_82e0471629d05f591101a02b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.939000;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_1503925d123634bd21542b70.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_03ebfe43070ffbeffd2503cc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_756fa3053f83c397aed4fa02.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_f89719e07bc2353e73f91dbf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.947266;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_3de11ec692b7782d1454cdc1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944336;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_f13c998b2314ef0e80df6b24.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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_6ca02274f5ebaa2ea7bb5838.woff')format("woff");}.ffd{font-family:ffd;line-height:0.899902;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.544000px;}
.v1{vertical-align:177.600000px;}
.ls49{letter-spacing:-9.840000px;}
.ls1c{letter-spacing:-2.808000px;}
.ls36{letter-spacing:-2.736000px;}
.ls37{letter-spacing:-1.152000px;}
.ls30{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.936000px;}
.ls35{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.336000px;}
.ls9{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.288000px;}
.ls3b{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.042600px;}
.lsb{letter-spacing:0.072000px;}
.ls43{letter-spacing:0.086400px;}
.ls25{letter-spacing:0.136800px;}
.ls21{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.252000px;}
.ls2c{letter-spacing:0.288000px;}
.ls4b{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.459000px;}
.lsf{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.756000px;}
.ls1f{letter-spacing:0.792000px;}
.ls22{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.936000px;}
.ls28{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.224000px;}
.ls2f{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.584000px;}
.ls40{letter-spacing:1.728000px;}
.ls3e{letter-spacing:1.944000px;}
.ls44{letter-spacing:2.376000px;}
.ls3c{letter-spacing:2.433600px;}
.ls48{letter-spacing:2.928000px;}
.ls1{letter-spacing:4.260000px;}
.ls39{letter-spacing:4.384800px;}
.ls42{letter-spacing:4.428000px;}
.ls3{letter-spacing:4.560000px;}
.ls47{letter-spacing:4.752000px;}
.ls26{letter-spacing:5.227200px;}
.ls41{letter-spacing:5.392800px;}
.ls0{letter-spacing:8.436000px;}
.ls46{letter-spacing:8.460000px;}
.ls33{letter-spacing:8.784000px;}
.ls45{letter-spacing:8.928000px;}
.lse{letter-spacing:8.964000px;}
.lsd{letter-spacing:8.985600px;}
.ls38{letter-spacing:9.432000px;}
.ls34{letter-spacing:10.368000px;}
.ls2{letter-spacing:10.740000px;}
.ls2a{letter-spacing:10.800000px;}
.ls3f{letter-spacing:11.376000px;}
.ls32{letter-spacing:13.795500px;}
.ls3a{letter-spacing:13.796100px;}
.ls4{letter-spacing:16.771654px;}
.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;}
}
.ws14{word-spacing:-20.880000px;}
.ws30{word-spacing:-20.448000px;}
.ws56{word-spacing:-20.376000px;}
.wsf{word-spacing:-20.232000px;}
.ws4d{word-spacing:-20.160000px;}
.ws31{word-spacing:-19.872000px;}
.ws4f{word-spacing:-19.512000px;}
.ws3f{word-spacing:-19.224000px;}
.ws26{word-spacing:-18.864000px;}
.ws57{word-spacing:-18.432000px;}
.ws38{word-spacing:-18.360000px;}
.ws32{word-spacing:-18.288000px;}
.ws3e{word-spacing:-18.216000px;}
.ws11{word-spacing:-18.144000px;}
.ws3c{word-spacing:-18.000000px;}
.ws47{word-spacing:-17.856000px;}
.ws12{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.712000px;}
.ws27{word-spacing:-17.640000px;}
.ws4c{word-spacing:-17.568000px;}
.ws3d{word-spacing:-17.496000px;}
.ws10{word-spacing:-17.424000px;}
.ws3b{word-spacing:-17.352000px;}
.ws39{word-spacing:-17.280000px;}
.ws37{word-spacing:-17.136000px;}
.ws46{word-spacing:-17.064000px;}
.ws2f{word-spacing:-16.992000px;}
.ws2{word-spacing:-16.860000px;}
.ws40{word-spacing:-16.848000px;}
.ws1{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.162400px;}
.ws33{word-spacing:-13.728000px;}
.ws4e{word-spacing:-13.658400px;}
.ws5c{word-spacing:-13.488000px;}
.ws44{word-spacing:-11.856000px;}
.ws52{word-spacing:-11.376000px;}
.ws43{word-spacing:-10.800000px;}
.ws4b{word-spacing:-9.432000px;}
.wse{word-spacing:-8.496000px;}
.ws59{word-spacing:-8.460000px;}
.ws5e{word-spacing:-7.824000px;}
.ws5{word-spacing:-4.860000px;}
.ws5f{word-spacing:-2.352000px;}
.ws54{word-spacing:-1.944000px;}
.ws55{word-spacing:-1.728000px;}
.ws21{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.224000px;}
.ws22{word-spacing:-1.152000px;}
.ws2b{word-spacing:-1.080000px;}
.ws34{word-spacing:-1.008000px;}
.ws53{word-spacing:-0.936000px;}
.ws2a{word-spacing:-0.864000px;}
.ws28{word-spacing:-0.792000px;}
.ws20{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.504000px;}
.wsd{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.360000px;}
.ws60{word-spacing:-0.300000px;}
.ws41{word-spacing:-0.288000px;}
.ws36{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.216000px;}
.ws29{word-spacing:-0.144000px;}
.wsc{word-spacing:-0.072000px;}
.ws61{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws25{word-spacing:0.072000px;}
.ws2d{word-spacing:0.144000px;}
.ws35{word-spacing:0.216000px;}
.ws51{word-spacing:0.240000px;}
.ws2e{word-spacing:0.288000px;}
.ws4{word-spacing:0.300000px;}
.ws5d{word-spacing:0.336000px;}
.ws1c{word-spacing:0.360000px;}
.ws17{word-spacing:0.432000px;}
.ws19{word-spacing:0.504000px;}
.ws1d{word-spacing:0.576000px;}
.ws18{word-spacing:0.648000px;}
.ws1a{word-spacing:0.720000px;}
.ws1b{word-spacing:0.792000px;}
.ws48{word-spacing:0.864000px;}
.ws42{word-spacing:1.008000px;}
.ws50{word-spacing:1.080000px;}
.ws4a{word-spacing:1.152000px;}
.ws5a{word-spacing:1.440000px;}
.ws8{word-spacing:1.800000px;}
.ws2c{word-spacing:2.088000px;}
.ws9{word-spacing:2.400000px;}
.ws49{word-spacing:2.736000px;}
.ws24{word-spacing:2.808000px;}
.ws15{word-spacing:4.200000px;}
.ws58{word-spacing:5.112000px;}
.ws3a{word-spacing:5.400000px;}
.ws5b{word-spacing:9.840000px;}
.ws45{word-spacing:10.800000px;}
.ws7{word-spacing:73.140000px;}
.ws0{word-spacing:146.196000px;}
._13{margin-left:-948.820800px;}
._6{margin-left:-68.880000px;}
._1d{margin-left:-19.713600px;}
._1b{margin-left:-17.814600px;}
._15{margin-left:-13.944000px;}
._a{margin-left:-12.114000px;}
._1a{margin-left:-10.719000px;}
._1c{margin-left:-9.567000px;}
._14{margin-left:-8.289600px;}
._10{margin-left:-6.607200px;}
._12{margin-left:-5.077200px;}
._9{margin-left:-4.008000px;}
._5{margin-left:-2.124000px;}
._c{margin-left:-1.045800px;}
._f{width:1.022400px;}
._4{width:2.124000px;}
._3{width:3.642000px;}
._0{width:4.806000px;}
._2{width:6.096000px;}
._b{width:7.536000px;}
._8{width:8.910000px;}
._e{width:9.979200px;}
._d{width:11.124000px;}
._19{width:12.592800px;}
._16{width:13.596000px;}
._18{width:16.207200px;}
._1e{width:17.395200px;}
._1{width:19.458000px;}
._17{width:21.888000px;}
._7{width:29.280000px;}
._11{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:419.376600px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y22{bottom:117.000000px;}
.y14a{bottom:118.122000px;}
.yef{bottom:119.664000px;}
.y125{bottom:119.850000px;}
.y68{bottom:121.207500px;}
.y21{bottom:132.000000px;}
.yee{bottom:134.808000px;}
.y124{bottom:134.850000px;}
.y45{bottom:136.207500px;}
.y149{bottom:136.872000px;}
.yb0{bottom:139.500000px;}
.y67{bottom:143.707500px;}
.y20{bottom:147.000000px;}
.y123{bottom:149.850000px;}
.yed{bottom:149.964000px;}
.y7c{bottom:151.207500px;}
.y148{bottom:155.622000px;}
.yaf{bottom:158.707500px;}
.y8d{bottom:160.236000px;}
.y1f{bottom:162.000000px;}
.y122{bottom:164.850000px;}
.yec{bottom:165.108000px;}
.yc8{bottom:169.500000px;}
.y44{bottom:174.144000px;}
.y147{bottom:174.372000px;}
.y121{bottom:179.850000px;}
.yeb{bottom:180.252000px;}
.y1e{bottom:181.207500px;}
.y66{bottom:181.764000px;}
.y8c{bottom:182.736000px;}
.y7b{bottom:184.500000px;}
.y146{bottom:193.122000px;}
.y120{bottom:194.850000px;}
.yea{bottom:195.396000px;}
.y43{bottom:196.950000px;}
.yae{bottom:201.030000px;}
.y1d{bottom:203.707500px;}
.y65{bottom:204.408000px;}
.y8b{bottom:205.236000px;}
.y7a{bottom:207.000000px;}
.y11f{bottom:209.850000px;}
.ye9{bottom:210.540000px;}
.y145{bottom:211.872000px;}
.y42{bottom:219.756000px;}
.yad{bottom:223.530000px;}
.y11e{bottom:224.850000px;}
.ye8{bottom:225.684000px;}
.y64{bottom:227.052000px;}
.y8a{bottom:227.736000px;}
.y79{bottom:229.500000px;}
.y144{bottom:230.622000px;}
.y11d{bottom:239.850000px;}
.ye7{bottom:240.840000px;}
.y1c{bottom:242.528550px;}
.y41{bottom:242.562000px;}
.yc7{bottom:242.676000px;}
.yac{bottom:246.174000px;}
.y143{bottom:249.372000px;}
.y63{bottom:249.696000px;}
.y89{bottom:250.236000px;}
.y78{bottom:252.000000px;}
.y11c{bottom:254.850000px;}
.ye6{bottom:255.984000px;}
.y1b{bottom:264.722550px;}
.y40{bottom:265.368000px;}
.yc6{bottom:265.482000px;}
.y142{bottom:268.122000px;}
.yab{bottom:268.818000px;}
.y11b{bottom:269.850000px;}
.ye5{bottom:271.128000px;}
.y62{bottom:272.340000px;}
.y88{bottom:272.736000px;}
.y77{bottom:274.500000px;}
.y11a{bottom:284.850000px;}
.ye4{bottom:286.272000px;}
.y141{bottom:286.872000px;}
.y1a{bottom:286.916550px;}
.y3f{bottom:288.174000px;}
.yc5{bottom:288.288000px;}
.yaa{bottom:291.462000px;}
.y61{bottom:294.984000px;}
.y87{bottom:295.380000px;}
.y76{bottom:297.000000px;}
.y119{bottom:299.850000px;}
.ye3{bottom:301.416000px;}
.y140{bottom:305.622000px;}
.y19{bottom:309.110550px;}
.y3e{bottom:310.980000px;}
.yc4{bottom:311.094000px;}
.ya9{bottom:314.106000px;}
.y118{bottom:314.850000px;}
.ye2{bottom:316.572000px;}
.y60{bottom:317.628000px;}
.y86{bottom:318.024000px;}
.y75{bottom:319.500000px;}
.y13f{bottom:324.372000px;}
.y117{bottom:329.850000px;}
.y18{bottom:331.304550px;}
.yc3{bottom:333.744000px;}
.y3d{bottom:333.786000px;}
.ya8{bottom:336.762000px;}
.ye1{bottom:338.100000px;}
.y5f{bottom:340.272000px;}
.y85{bottom:340.668000px;}
.y74{bottom:342.000000px;}
.y13e{bottom:343.122000px;}
.y116{bottom:344.850000px;}
.y17{bottom:353.498550px;}
.yc2{bottom:356.550000px;}
.y3c{bottom:356.592000px;}
.ya7{bottom:359.406000px;}
.y115{bottom:359.850000px;}
.y13d{bottom:361.872000px;}
.y5e{bottom:362.916000px;}
.y84{bottom:363.312000px;}
.y73{bottom:364.500000px;}
.y114{bottom:374.850000px;}
.y16{bottom:375.692550px;}
.yc1{bottom:379.356000px;}
.y3b{bottom:379.398000px;}
.y13c{bottom:380.622000px;}
.ya6{bottom:382.050000px;}
.ye0{bottom:383.538000px;}
.y5d{bottom:385.560000px;}
.y83{bottom:385.956000px;}
.y72{bottom:387.000000px;}
.y113{bottom:389.850000px;}
.y15{bottom:397.886550px;}
.y13b{bottom:399.372000px;}
.yc0{bottom:402.162000px;}
.y3a{bottom:402.204000px;}
.y112{bottom:404.850000px;}
.ya5{bottom:404.856000px;}
.ydf{bottom:406.182000px;}
.y5c{bottom:408.204000px;}
.y82{bottom:408.636000px;}
.y71{bottom:409.500000px;}
.y13a{bottom:418.122000px;}
.y111{bottom:419.850000px;}
.y14{bottom:420.080550px;}
.ybf{bottom:424.968000px;}
.y39{bottom:425.010000px;}
.ya4{bottom:427.662000px;}
.yde{bottom:428.826000px;}
.y5b{bottom:430.848000px;}
.y81{bottom:431.280000px;}
.y70{bottom:432.000000px;}
.y110{bottom:434.850000px;}
.y139{bottom:436.872000px;}
.y13{bottom:442.274550px;}
.ybe{bottom:447.774000px;}
.y38{bottom:447.816000px;}
.y10f{bottom:449.850000px;}
.ya3{bottom:450.468000px;}
.ydd{bottom:451.470000px;}
.y5a{bottom:453.492000px;}
.y80{bottom:453.924000px;}
.y6f{bottom:454.500000px;}
.y138{bottom:455.622000px;}
.y12{bottom:464.522550px;}
.y10e{bottom:464.850000px;}
.ybd{bottom:470.580000px;}
.y37{bottom:470.622000px;}
.ya2{bottom:473.274000px;}
.ydc{bottom:474.114000px;}
.y137{bottom:474.372000px;}
.y59{bottom:476.136000px;}
.y7f{bottom:476.568000px;}
.y6e{bottom:477.000000px;}
.y10d{bottom:479.994000px;}
.y11{bottom:486.716550px;}
.ybc{bottom:493.386000px;}
.y36{bottom:493.428000px;}
.y10c{bottom:495.138000px;}
.ya1{bottom:496.080000px;}
.ydb{bottom:496.758000px;}
.y58{bottom:498.780000px;}
.y7e{bottom:499.212000px;}
.y6d{bottom:499.500000px;}
.y10{bottom:508.910550px;}
.y10b{bottom:510.282000px;}
.ybb{bottom:516.192000px;}
.y35{bottom:516.234000px;}
.ya0{bottom:518.886000px;}
.yda{bottom:519.402000px;}
.y57{bottom:521.424000px;}
.y7d{bottom:521.856000px;}
.y6c{bottom:522.000000px;}
.y15a{bottom:522.750000px;}
.y10a{bottom:525.426000px;}
.yf{bottom:531.104550px;}
.yba{bottom:538.998000px;}
.y34{bottom:539.040000px;}
.y109{bottom:540.570000px;}
.y159{bottom:541.500000px;}
.y9f{bottom:541.692000px;}
.yd9{bottom:542.046000px;}
.y56{bottom:544.068000px;}
.y6b{bottom:544.500000px;}
.ye{bottom:553.298550px;}
.y108{bottom:555.714000px;}
.y136{bottom:559.500000px;}
.y158{bottom:560.250000px;}
.yb9{bottom:561.804000px;}
.y33{bottom:561.846000px;}
.y9e{bottom:564.498000px;}
.yd8{bottom:564.690000px;}
.y55{bottom:566.712000px;}
.y6a{bottom:567.000000px;}
.y107{bottom:570.858000px;}
.y135{bottom:574.500000px;}
.yd{bottom:575.492550px;}
.y157{bottom:579.000000px;}
.yb8{bottom:584.610000px;}
.y32{bottom:584.652000px;}
.y106{bottom:586.002000px;}
.y9d{bottom:587.142000px;}
.yd7{bottom:587.334000px;}
.y54{bottom:589.356000px;}
.y69{bottom:589.500000px;}
.yc{bottom:597.686550px;}
.y105{bottom:601.146000px;}
.y134{bottom:604.500000px;}
.yb7{bottom:607.416000px;}
.y31{bottom:607.458000px;}
.y156{bottom:608.250000px;}
.y9c{bottom:609.786000px;}
.yd6{bottom:609.978000px;}
.y53{bottom:612.000000px;}
.y104{bottom:616.290000px;}
.y133{bottom:619.500000px;}
.y9{bottom:619.868550px;}
.yb{bottom:619.880550px;}
.yb6{bottom:630.222000px;}
.y30{bottom:630.264000px;}
.y103{bottom:631.434000px;}
.y9b{bottom:632.430000px;}
.yd5{bottom:632.622000px;}
.y52{bottom:634.500000px;}
.ya{bottom:642.074550px;}
.y102{bottom:646.578000px;}
.y132{bottom:649.500000px;}
.yb5{bottom:653.028000px;}
.y2f{bottom:653.070000px;}
.y9a{bottom:655.074000px;}
.yd4{bottom:655.266000px;}
.y51{bottom:657.000000px;}
.y101{bottom:661.722000px;}
.y131{bottom:664.500000px;}
.y155{bottom:668.250000px;}
.yb4{bottom:675.834000px;}
.y2e{bottom:675.876000px;}
.y100{bottom:676.866000px;}
.y99{bottom:677.718000px;}
.yd3{bottom:677.910000px;}
.y50{bottom:679.500000px;}
.y154{bottom:687.000000px;}
.yff{bottom:692.010000px;}
.y130{bottom:694.500000px;}
.yb3{bottom:698.640000px;}
.y2d{bottom:698.682000px;}
.y98{bottom:700.362000px;}
.yd2{bottom:700.554000px;}
.y4f{bottom:702.000000px;}
.y153{bottom:705.750000px;}
.yfe{bottom:707.154000px;}
.y8{bottom:708.968550px;}
.y12f{bottom:709.500000px;}
.yb2{bottom:721.446000px;}
.y2c{bottom:721.488000px;}
.yfd{bottom:722.298000px;}
.y97{bottom:723.006000px;}
.yd1{bottom:723.198000px;}
.y4e{bottom:724.500000px;}
.y7{bottom:727.718550px;}
.y12e{bottom:739.500000px;}
.y152{bottom:743.250000px;}
.yb1{bottom:744.252000px;}
.y2b{bottom:744.294000px;}
.y96{bottom:745.698000px;}
.yd0{bottom:745.842000px;}
.y4d{bottom:747.000000px;}
.yfc{bottom:752.598000px;}
.y12d{bottom:754.500000px;}
.y151{bottom:762.000000px;}
.y2a{bottom:767.058000px;}
.yfb{bottom:767.742000px;}
.y95{bottom:768.342000px;}
.ycf{bottom:768.486000px;}
.y4c{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.y150{bottom:780.750000px;}
.yfa{bottom:782.886000px;}
.y12c{bottom:784.500000px;}
.y29{bottom:789.864000px;}
.y94{bottom:790.986000px;}
.yce{bottom:791.130000px;}
.y4b{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.yf9{bottom:798.030000px;}
.y12b{bottom:799.500000px;}
.y28{bottom:812.670000px;}
.yf8{bottom:813.174000px;}
.y93{bottom:813.630000px;}
.ycd{bottom:813.774000px;}
.y4a{bottom:814.500000px;}
.y14f{bottom:818.250000px;}
.yf7{bottom:828.330000px;}
.y12a{bottom:829.500000px;}
.y27{bottom:835.476000px;}
.y92{bottom:836.274000px;}
.ycc{bottom:836.418000px;}
.y49{bottom:837.000000px;}
.yf6{bottom:843.474000px;}
.y129{bottom:844.500000px;}
.y14e{bottom:855.750000px;}
.y26{bottom:858.282000px;}
.yf5{bottom:858.618000px;}
.y91{bottom:858.918000px;}
.ycb{bottom:859.062000px;}
.y4{bottom:859.500000px;}
.yf4{bottom:873.762000px;}
.y128{bottom:874.500000px;}
.y25{bottom:881.088000px;}
.y90{bottom:881.562000px;}
.yca{bottom:881.706000px;}
.y48{bottom:882.000000px;}
.yf3{bottom:888.906000px;}
.y3{bottom:889.500000px;}
.y14d{bottom:893.250000px;}
.y24{bottom:903.894000px;}
.yf2{bottom:904.062000px;}
.y8f{bottom:904.206000px;}
.yc9{bottom:904.350000px;}
.y47{bottom:904.500000px;}
.y14c{bottom:912.000000px;}
.yf1{bottom:919.206000px;}
.y127{bottom:919.500000px;}
.y23{bottom:926.700000px;}
.y8e{bottom:926.850000px;}
.y46{bottom:927.000000px;}
.y14b{bottom:930.750000px;}
.yf0{bottom:934.350000px;}
.y126{bottom:934.500000px;}
.hd{height:24.630908px;}
.h8{height:30.313623px;}
.h14{height:39.072000px;}
.h9{height:40.757812px;}
.ha{height:41.396484px;}
.h3{height:49.200000px;}
.h1{height:50.947266px;}
.hc{height:51.222656px;}
.h4{height:61.136719px;}
.hb{height:61.304719px;}
.hf{height:66.099703px;}
.h7{height:66.315703px;}
.h6{height:66.339703px;}
.h11{height:66.363703px;}
.h10{height:66.411703px;}
.h12{height:66.507703px;}
.he{height:66.555703px;}
.h13{height:67.179703px;}
.h2{height:101.894531px;}
.h5{height:293.563620px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x4{left:82.387350px;}
.x6{left:112.500000px;}
.x3{left:114.049950px;}
.x7{left:127.379400px;}
.x2{left:135.000000px;}
.x8{left:180.525000px;}
.x5{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.928000pt;}
.v1{vertical-align:157.866667pt;}
.ls49{letter-spacing:-8.746667pt;}
.ls1c{letter-spacing:-2.496000pt;}
.ls36{letter-spacing:-2.432000pt;}
.ls37{letter-spacing:-1.024000pt;}
.ls30{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.832000pt;}
.ls35{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.298667pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls3b{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.037867pt;}
.lsb{letter-spacing:0.064000pt;}
.ls43{letter-spacing:0.076800pt;}
.ls25{letter-spacing:0.121600pt;}
.ls21{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.224000pt;}
.ls2c{letter-spacing:0.256000pt;}
.ls4b{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.408000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.672000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.832000pt;}
.ls28{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.088000pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.408000pt;}
.ls40{letter-spacing:1.536000pt;}
.ls3e{letter-spacing:1.728000pt;}
.ls44{letter-spacing:2.112000pt;}
.ls3c{letter-spacing:2.163200pt;}
.ls48{letter-spacing:2.602667pt;}
.ls1{letter-spacing:3.786667pt;}
.ls39{letter-spacing:3.897600pt;}
.ls42{letter-spacing:3.936000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls47{letter-spacing:4.224000pt;}
.ls26{letter-spacing:4.646400pt;}
.ls41{letter-spacing:4.793600pt;}
.ls0{letter-spacing:7.498667pt;}
.ls46{letter-spacing:7.520000pt;}
.ls33{letter-spacing:7.808000pt;}
.ls45{letter-spacing:7.936000pt;}
.lse{letter-spacing:7.968000pt;}
.lsd{letter-spacing:7.987200pt;}
.ls38{letter-spacing:8.384000pt;}
.ls34{letter-spacing:9.216000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls2a{letter-spacing:9.600000pt;}
.ls3f{letter-spacing:10.112000pt;}
.ls32{letter-spacing:12.262667pt;}
.ls3a{letter-spacing:12.263200pt;}
.ls4{letter-spacing:14.908137pt;}
.ws14{word-spacing:-18.560000pt;}
.ws30{word-spacing:-18.176000pt;}
.ws56{word-spacing:-18.112000pt;}
.wsf{word-spacing:-17.984000pt;}
.ws4d{word-spacing:-17.920000pt;}
.ws31{word-spacing:-17.664000pt;}
.ws4f{word-spacing:-17.344000pt;}
.ws3f{word-spacing:-17.088000pt;}
.ws26{word-spacing:-16.768000pt;}
.ws57{word-spacing:-16.384000pt;}
.ws38{word-spacing:-16.320000pt;}
.ws32{word-spacing:-16.256000pt;}
.ws3e{word-spacing:-16.192000pt;}
.ws11{word-spacing:-16.128000pt;}
.ws3c{word-spacing:-16.000000pt;}
.ws47{word-spacing:-15.872000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.744000pt;}
.ws27{word-spacing:-15.680000pt;}
.ws4c{word-spacing:-15.616000pt;}
.ws3d{word-spacing:-15.552000pt;}
.ws10{word-spacing:-15.488000pt;}
.ws3b{word-spacing:-15.424000pt;}
.ws39{word-spacing:-15.360000pt;}
.ws37{word-spacing:-15.232000pt;}
.ws46{word-spacing:-15.168000pt;}
.ws2f{word-spacing:-15.104000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws40{word-spacing:-14.976000pt;}
.ws1{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.588800pt;}
.ws33{word-spacing:-12.202667pt;}
.ws4e{word-spacing:-12.140800pt;}
.ws5c{word-spacing:-11.989333pt;}
.ws44{word-spacing:-10.538667pt;}
.ws52{word-spacing:-10.112000pt;}
.ws43{word-spacing:-9.600000pt;}
.ws4b{word-spacing:-8.384000pt;}
.wse{word-spacing:-7.552000pt;}
.ws59{word-spacing:-7.520000pt;}
.ws5e{word-spacing:-6.954667pt;}
.ws5{word-spacing:-4.320000pt;}
.ws5f{word-spacing:-2.090667pt;}
.ws54{word-spacing:-1.728000pt;}
.ws55{word-spacing:-1.536000pt;}
.ws21{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.088000pt;}
.ws22{word-spacing:-1.024000pt;}
.ws2b{word-spacing:-0.960000pt;}
.ws34{word-spacing:-0.896000pt;}
.ws53{word-spacing:-0.832000pt;}
.ws2a{word-spacing:-0.768000pt;}
.ws28{word-spacing:-0.704000pt;}
.ws20{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.448000pt;}
.wsd{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.320000pt;}
.ws60{word-spacing:-0.266667pt;}
.ws41{word-spacing:-0.256000pt;}
.ws36{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.192000pt;}
.ws29{word-spacing:-0.128000pt;}
.wsc{word-spacing:-0.064000pt;}
.ws61{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws25{word-spacing:0.064000pt;}
.ws2d{word-spacing:0.128000pt;}
.ws35{word-spacing:0.192000pt;}
.ws51{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.256000pt;}
.ws4{word-spacing:0.266667pt;}
.ws5d{word-spacing:0.298667pt;}
.ws1c{word-spacing:0.320000pt;}
.ws17{word-spacing:0.384000pt;}
.ws19{word-spacing:0.448000pt;}
.ws1d{word-spacing:0.512000pt;}
.ws18{word-spacing:0.576000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.704000pt;}
.ws48{word-spacing:0.768000pt;}
.ws42{word-spacing:0.896000pt;}
.ws50{word-spacing:0.960000pt;}
.ws4a{word-spacing:1.024000pt;}
.ws5a{word-spacing:1.280000pt;}
.ws8{word-spacing:1.600000pt;}
.ws2c{word-spacing:1.856000pt;}
.ws9{word-spacing:2.133333pt;}
.ws49{word-spacing:2.432000pt;}
.ws24{word-spacing:2.496000pt;}
.ws15{word-spacing:3.733333pt;}
.ws58{word-spacing:4.544000pt;}
.ws3a{word-spacing:4.800000pt;}
.ws5b{word-spacing:8.746667pt;}
.ws45{word-spacing:9.600000pt;}
.ws7{word-spacing:65.013333pt;}
.ws0{word-spacing:129.952000pt;}
._13{margin-left:-843.396267pt;}
._6{margin-left:-61.226667pt;}
._1d{margin-left:-17.523200pt;}
._1b{margin-left:-15.835200pt;}
._15{margin-left:-12.394667pt;}
._a{margin-left:-10.768000pt;}
._1a{margin-left:-9.528000pt;}
._1c{margin-left:-8.504000pt;}
._14{margin-left:-7.368533pt;}
._10{margin-left:-5.873067pt;}
._12{margin-left:-4.513067pt;}
._9{margin-left:-3.562667pt;}
._5{margin-left:-1.888000pt;}
._c{margin-left:-0.929600pt;}
._f{width:0.908800pt;}
._4{width:1.888000pt;}
._3{width:3.237333pt;}
._0{width:4.272000pt;}
._2{width:5.418667pt;}
._b{width:6.698667pt;}
._8{width:7.920000pt;}
._e{width:8.870400pt;}
._d{width:9.888000pt;}
._19{width:11.193600pt;}
._16{width:12.085333pt;}
._18{width:14.406400pt;}
._1e{width:15.462400pt;}
._1{width:17.296000pt;}
._17{width:19.456000pt;}
._7{width:26.026667pt;}
._11{width:28.129867pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:372.779200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y22{bottom:104.000000pt;}
.y14a{bottom:104.997333pt;}
.yef{bottom:106.368000pt;}
.y125{bottom:106.533333pt;}
.y68{bottom:107.740000pt;}
.y21{bottom:117.333333pt;}
.yee{bottom:119.829333pt;}
.y124{bottom:119.866667pt;}
.y45{bottom:121.073333pt;}
.y149{bottom:121.664000pt;}
.yb0{bottom:124.000000pt;}
.y67{bottom:127.740000pt;}
.y20{bottom:130.666667pt;}
.y123{bottom:133.200000pt;}
.yed{bottom:133.301333pt;}
.y7c{bottom:134.406667pt;}
.y148{bottom:138.330667pt;}
.yaf{bottom:141.073333pt;}
.y8d{bottom:142.432000pt;}
.y1f{bottom:144.000000pt;}
.y122{bottom:146.533333pt;}
.yec{bottom:146.762667pt;}
.yc8{bottom:150.666667pt;}
.y44{bottom:154.794667pt;}
.y147{bottom:154.997333pt;}
.y121{bottom:159.866667pt;}
.yeb{bottom:160.224000pt;}
.y1e{bottom:161.073333pt;}
.y66{bottom:161.568000pt;}
.y8c{bottom:162.432000pt;}
.y7b{bottom:164.000000pt;}
.y146{bottom:171.664000pt;}
.y120{bottom:173.200000pt;}
.yea{bottom:173.685333pt;}
.y43{bottom:175.066667pt;}
.yae{bottom:178.693333pt;}
.y1d{bottom:181.073333pt;}
.y65{bottom:181.696000pt;}
.y8b{bottom:182.432000pt;}
.y7a{bottom:184.000000pt;}
.y11f{bottom:186.533333pt;}
.ye9{bottom:187.146667pt;}
.y145{bottom:188.330667pt;}
.y42{bottom:195.338667pt;}
.yad{bottom:198.693333pt;}
.y11e{bottom:199.866667pt;}
.ye8{bottom:200.608000pt;}
.y64{bottom:201.824000pt;}
.y8a{bottom:202.432000pt;}
.y79{bottom:204.000000pt;}
.y144{bottom:204.997333pt;}
.y11d{bottom:213.200000pt;}
.ye7{bottom:214.080000pt;}
.y1c{bottom:215.580933pt;}
.y41{bottom:215.610667pt;}
.yc7{bottom:215.712000pt;}
.yac{bottom:218.821333pt;}
.y143{bottom:221.664000pt;}
.y63{bottom:221.952000pt;}
.y89{bottom:222.432000pt;}
.y78{bottom:224.000000pt;}
.y11c{bottom:226.533333pt;}
.ye6{bottom:227.541333pt;}
.y1b{bottom:235.308933pt;}
.y40{bottom:235.882667pt;}
.yc6{bottom:235.984000pt;}
.y142{bottom:238.330667pt;}
.yab{bottom:238.949333pt;}
.y11b{bottom:239.866667pt;}
.ye5{bottom:241.002667pt;}
.y62{bottom:242.080000pt;}
.y88{bottom:242.432000pt;}
.y77{bottom:244.000000pt;}
.y11a{bottom:253.200000pt;}
.ye4{bottom:254.464000pt;}
.y141{bottom:254.997333pt;}
.y1a{bottom:255.036933pt;}
.y3f{bottom:256.154667pt;}
.yc5{bottom:256.256000pt;}
.yaa{bottom:259.077333pt;}
.y61{bottom:262.208000pt;}
.y87{bottom:262.560000pt;}
.y76{bottom:264.000000pt;}
.y119{bottom:266.533333pt;}
.ye3{bottom:267.925333pt;}
.y140{bottom:271.664000pt;}
.y19{bottom:274.764933pt;}
.y3e{bottom:276.426667pt;}
.yc4{bottom:276.528000pt;}
.ya9{bottom:279.205333pt;}
.y118{bottom:279.866667pt;}
.ye2{bottom:281.397333pt;}
.y60{bottom:282.336000pt;}
.y86{bottom:282.688000pt;}
.y75{bottom:284.000000pt;}
.y13f{bottom:288.330667pt;}
.y117{bottom:293.200000pt;}
.y18{bottom:294.492933pt;}
.yc3{bottom:296.661333pt;}
.y3d{bottom:296.698667pt;}
.ya8{bottom:299.344000pt;}
.ye1{bottom:300.533333pt;}
.y5f{bottom:302.464000pt;}
.y85{bottom:302.816000pt;}
.y74{bottom:304.000000pt;}
.y13e{bottom:304.997333pt;}
.y116{bottom:306.533333pt;}
.y17{bottom:314.220933pt;}
.yc2{bottom:316.933333pt;}
.y3c{bottom:316.970667pt;}
.ya7{bottom:319.472000pt;}
.y115{bottom:319.866667pt;}
.y13d{bottom:321.664000pt;}
.y5e{bottom:322.592000pt;}
.y84{bottom:322.944000pt;}
.y73{bottom:324.000000pt;}
.y114{bottom:333.200000pt;}
.y16{bottom:333.948933pt;}
.yc1{bottom:337.205333pt;}
.y3b{bottom:337.242667pt;}
.y13c{bottom:338.330667pt;}
.ya6{bottom:339.600000pt;}
.ye0{bottom:340.922667pt;}
.y5d{bottom:342.720000pt;}
.y83{bottom:343.072000pt;}
.y72{bottom:344.000000pt;}
.y113{bottom:346.533333pt;}
.y15{bottom:353.676933pt;}
.y13b{bottom:354.997333pt;}
.yc0{bottom:357.477333pt;}
.y3a{bottom:357.514667pt;}
.y112{bottom:359.866667pt;}
.ya5{bottom:359.872000pt;}
.ydf{bottom:361.050667pt;}
.y5c{bottom:362.848000pt;}
.y82{bottom:363.232000pt;}
.y71{bottom:364.000000pt;}
.y13a{bottom:371.664000pt;}
.y111{bottom:373.200000pt;}
.y14{bottom:373.404933pt;}
.ybf{bottom:377.749333pt;}
.y39{bottom:377.786667pt;}
.ya4{bottom:380.144000pt;}
.yde{bottom:381.178667pt;}
.y5b{bottom:382.976000pt;}
.y81{bottom:383.360000pt;}
.y70{bottom:384.000000pt;}
.y110{bottom:386.533333pt;}
.y139{bottom:388.330667pt;}
.y13{bottom:393.132933pt;}
.ybe{bottom:398.021333pt;}
.y38{bottom:398.058667pt;}
.y10f{bottom:399.866667pt;}
.ya3{bottom:400.416000pt;}
.ydd{bottom:401.306667pt;}
.y5a{bottom:403.104000pt;}
.y80{bottom:403.488000pt;}
.y6f{bottom:404.000000pt;}
.y138{bottom:404.997333pt;}
.y12{bottom:412.908933pt;}
.y10e{bottom:413.200000pt;}
.ybd{bottom:418.293333pt;}
.y37{bottom:418.330667pt;}
.ya2{bottom:420.688000pt;}
.ydc{bottom:421.434667pt;}
.y137{bottom:421.664000pt;}
.y59{bottom:423.232000pt;}
.y7f{bottom:423.616000pt;}
.y6e{bottom:424.000000pt;}
.y10d{bottom:426.661333pt;}
.y11{bottom:432.636933pt;}
.ybc{bottom:438.565333pt;}
.y36{bottom:438.602667pt;}
.y10c{bottom:440.122667pt;}
.ya1{bottom:440.960000pt;}
.ydb{bottom:441.562667pt;}
.y58{bottom:443.360000pt;}
.y7e{bottom:443.744000pt;}
.y6d{bottom:444.000000pt;}
.y10{bottom:452.364933pt;}
.y10b{bottom:453.584000pt;}
.ybb{bottom:458.837333pt;}
.y35{bottom:458.874667pt;}
.ya0{bottom:461.232000pt;}
.yda{bottom:461.690667pt;}
.y57{bottom:463.488000pt;}
.y7d{bottom:463.872000pt;}
.y6c{bottom:464.000000pt;}
.y15a{bottom:464.666667pt;}
.y10a{bottom:467.045333pt;}
.yf{bottom:472.092933pt;}
.yba{bottom:479.109333pt;}
.y34{bottom:479.146667pt;}
.y109{bottom:480.506667pt;}
.y159{bottom:481.333333pt;}
.y9f{bottom:481.504000pt;}
.yd9{bottom:481.818667pt;}
.y56{bottom:483.616000pt;}
.y6b{bottom:484.000000pt;}
.ye{bottom:491.820933pt;}
.y108{bottom:493.968000pt;}
.y136{bottom:497.333333pt;}
.y158{bottom:498.000000pt;}
.yb9{bottom:499.381333pt;}
.y33{bottom:499.418667pt;}
.y9e{bottom:501.776000pt;}
.yd8{bottom:501.946667pt;}
.y55{bottom:503.744000pt;}
.y6a{bottom:504.000000pt;}
.y107{bottom:507.429333pt;}
.y135{bottom:510.666667pt;}
.yd{bottom:511.548933pt;}
.y157{bottom:514.666667pt;}
.yb8{bottom:519.653333pt;}
.y32{bottom:519.690667pt;}
.y106{bottom:520.890667pt;}
.y9d{bottom:521.904000pt;}
.yd7{bottom:522.074667pt;}
.y54{bottom:523.872000pt;}
.y69{bottom:524.000000pt;}
.yc{bottom:531.276933pt;}
.y105{bottom:534.352000pt;}
.y134{bottom:537.333333pt;}
.yb7{bottom:539.925333pt;}
.y31{bottom:539.962667pt;}
.y156{bottom:540.666667pt;}
.y9c{bottom:542.032000pt;}
.yd6{bottom:542.202667pt;}
.y53{bottom:544.000000pt;}
.y104{bottom:547.813333pt;}
.y133{bottom:550.666667pt;}
.y9{bottom:550.994267pt;}
.yb{bottom:551.004933pt;}
.yb6{bottom:560.197333pt;}
.y30{bottom:560.234667pt;}
.y103{bottom:561.274667pt;}
.y9b{bottom:562.160000pt;}
.yd5{bottom:562.330667pt;}
.y52{bottom:564.000000pt;}
.ya{bottom:570.732933pt;}
.y102{bottom:574.736000pt;}
.y132{bottom:577.333333pt;}
.yb5{bottom:580.469333pt;}
.y2f{bottom:580.506667pt;}
.y9a{bottom:582.288000pt;}
.yd4{bottom:582.458667pt;}
.y51{bottom:584.000000pt;}
.y101{bottom:588.197333pt;}
.y131{bottom:590.666667pt;}
.y155{bottom:594.000000pt;}
.yb4{bottom:600.741333pt;}
.y2e{bottom:600.778667pt;}
.y100{bottom:601.658667pt;}
.y99{bottom:602.416000pt;}
.yd3{bottom:602.586667pt;}
.y50{bottom:604.000000pt;}
.y154{bottom:610.666667pt;}
.yff{bottom:615.120000pt;}
.y130{bottom:617.333333pt;}
.yb3{bottom:621.013333pt;}
.y2d{bottom:621.050667pt;}
.y98{bottom:622.544000pt;}
.yd2{bottom:622.714667pt;}
.y4f{bottom:624.000000pt;}
.y153{bottom:627.333333pt;}
.yfe{bottom:628.581333pt;}
.y8{bottom:630.194267pt;}
.y12f{bottom:630.666667pt;}
.yb2{bottom:641.285333pt;}
.y2c{bottom:641.322667pt;}
.yfd{bottom:642.042667pt;}
.y97{bottom:642.672000pt;}
.yd1{bottom:642.842667pt;}
.y4e{bottom:644.000000pt;}
.y7{bottom:646.860933pt;}
.y12e{bottom:657.333333pt;}
.y152{bottom:660.666667pt;}
.yb1{bottom:661.557333pt;}
.y2b{bottom:661.594667pt;}
.y96{bottom:662.842667pt;}
.yd0{bottom:662.970667pt;}
.y4d{bottom:664.000000pt;}
.yfc{bottom:668.976000pt;}
.y12d{bottom:670.666667pt;}
.y151{bottom:677.333333pt;}
.y2a{bottom:681.829333pt;}
.yfb{bottom:682.437333pt;}
.y95{bottom:682.970667pt;}
.ycf{bottom:683.098667pt;}
.y4c{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.y150{bottom:694.000000pt;}
.yfa{bottom:695.898667pt;}
.y12c{bottom:697.333333pt;}
.y29{bottom:702.101333pt;}
.y94{bottom:703.098667pt;}
.yce{bottom:703.226667pt;}
.y4b{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.yf9{bottom:709.360000pt;}
.y12b{bottom:710.666667pt;}
.y28{bottom:722.373333pt;}
.yf8{bottom:722.821333pt;}
.y93{bottom:723.226667pt;}
.ycd{bottom:723.354667pt;}
.y4a{bottom:724.000000pt;}
.y14f{bottom:727.333333pt;}
.yf7{bottom:736.293333pt;}
.y12a{bottom:737.333333pt;}
.y27{bottom:742.645333pt;}
.y92{bottom:743.354667pt;}
.ycc{bottom:743.482667pt;}
.y49{bottom:744.000000pt;}
.yf6{bottom:749.754667pt;}
.y129{bottom:750.666667pt;}
.y14e{bottom:760.666667pt;}
.y26{bottom:762.917333pt;}
.yf5{bottom:763.216000pt;}
.y91{bottom:763.482667pt;}
.ycb{bottom:763.610667pt;}
.y4{bottom:764.000000pt;}
.yf4{bottom:776.677333pt;}
.y128{bottom:777.333333pt;}
.y25{bottom:783.189333pt;}
.y90{bottom:783.610667pt;}
.yca{bottom:783.738667pt;}
.y48{bottom:784.000000pt;}
.yf3{bottom:790.138667pt;}
.y3{bottom:790.666667pt;}
.y14d{bottom:794.000000pt;}
.y24{bottom:803.461333pt;}
.yf2{bottom:803.610667pt;}
.y8f{bottom:803.738667pt;}
.yc9{bottom:803.866667pt;}
.y47{bottom:804.000000pt;}
.y14c{bottom:810.666667pt;}
.yf1{bottom:817.072000pt;}
.y127{bottom:817.333333pt;}
.y23{bottom:823.733333pt;}
.y8e{bottom:823.866667pt;}
.y46{bottom:824.000000pt;}
.y14b{bottom:827.333333pt;}
.yf0{bottom:830.533333pt;}
.y126{bottom:830.666667pt;}
.hd{height:21.894141pt;}
.h8{height:26.945443pt;}
.h14{height:34.730667pt;}
.h9{height:36.229167pt;}
.ha{height:36.796875pt;}
.h3{height:43.733333pt;}
.h1{height:45.286458pt;}
.hc{height:45.531250pt;}
.h4{height:54.343750pt;}
.hb{height:54.493083pt;}
.hf{height:58.755292pt;}
.h7{height:58.947292pt;}
.h6{height:58.968625pt;}
.h11{height:58.989958pt;}
.h10{height:59.032625pt;}
.h12{height:59.117958pt;}
.he{height:59.160625pt;}
.h13{height:59.715292pt;}
.h2{height:90.572917pt;}
.h5{height:260.945440pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x4{left:73.233200pt;}
.x6{left:100.000000pt;}
.x3{left:101.377733pt;}
.x7{left:113.226133pt;}
.x2{left:120.000000pt;}
.x8{left:160.466667pt;}
.x5{left:556.250000pt;}
}




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