
    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_7f69ccab5e1296b2c5149365.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_17681ae9396be042acdbf6e5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.891113;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_d128a49b69ac87b0b07bdfe9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926000;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_d78a8eda3f741a00c2e581b8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_0e6c65ea0f03be512c00f3a7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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_e16e9906bbe6f070c3e85a43.woff')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_b995ae39e558a8adf3d012d3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_64960c1b89b7a41d5acbc47e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.681641;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_08e8f83e9bc04e8054a26349.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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_371bc46813f0f7f7de00878f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.689000;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_7d05929d55695b80d552ff9c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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_62a3ad195b78fec15be06b55.woff')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_9e75f687c920da85446d182d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_b9e709182588a7590f2cb875.woff')format("woff");}.ffe{font-family:ffe;line-height:0.451000;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_aea8c9babaed348d387450dd.woff')format("woff");}.fff{font-family:fff;line-height:0.689000;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_fa927956e733da4fb68b417a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.940918;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_fcdcceb4f9265a8a395917ae.woff')format("woff");}.ff11{font-family:ff11;line-height:0.694000;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_b9e709182588a7590f2cb875.woff')format("woff");}.ff12{font-family:ff12;line-height:0.451000;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_edfed4b28a0bcc76fd848603.woff')format("woff");}.ff13{font-family:ff13;line-height:0.427000;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_c458ad3a949f862f8ccdc600.woff')format("woff");}.ff14{font-family:ff14;line-height:0.704000;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_a91b680967ef78f3f12660d8.woff')format("woff");}.ff15{font-family:ff15;line-height:0.738000;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_8f58985c1b1177cc77c146b2.woff')format("woff");}.ff16{font-family:ff16;line-height:0.940918;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_9ce4b444e56e782e0d1d91cf.woff')format("woff");}.ff17{font-family:ff17;line-height:0.910000;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_827679ff2d7758365b8b6d84.woff')format("woff");}.ff18{font-family:ff18;line-height:0.704000;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_30ced2110197c767a3aaa5dd.woff')format("woff");}.ff19{font-family:ff19;line-height:0.427000;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:ff1a;src:url('chunks/assets/font_99acfe27f533f5821bfff8fc.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.664000;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:ff1b;src:url('chunks/assets/font_cb624d365fd9a766ad3e01e3.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.705000;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:ff1c;src:url('chunks/assets/font_81d8dffa1469fe3833f3be74.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.848145;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:ff1d;src:url('chunks/assets/font_085f58737b424dbf31235a46.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e7acfe175a4de302cb59b9ae.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.747000;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:ff1f;src:url('chunks/assets/font_17fcb9a99d72dbe36ab63a12.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.798340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.v3{vertical-align:-32.270400px;}
.v7{vertical-align:-15.810000px;}
.v8{vertical-align:-13.930272px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.551600px;}
.v9{vertical-align:34.344600px;}
.v1{vertical-align:38.626200px;}
.v6{vertical-align:62.164800px;}
.v4{vertical-align:145.584000px;}
.v5{vertical-align:223.668000px;}
.ls2{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000210px;}
.lse{letter-spacing:0.010830px;}
.ls5{letter-spacing:0.032430px;}
.ls19{letter-spacing:0.042000px;}
.ls1{letter-spacing:0.051600px;}
.ls7{letter-spacing:0.064860px;}
.ls11{letter-spacing:0.082979px;}
.lsb{letter-spacing:0.117331px;}
.ls13{letter-spacing:0.117677px;}
.ls15{letter-spacing:0.129115px;}
.ls14{letter-spacing:0.135571px;}
.ls8{letter-spacing:0.154587px;}
.lsf{letter-spacing:0.176187px;}
.ls9{letter-spacing:7.833357px;}
.lsa{letter-spacing:29.949299px;}
.lsd{letter-spacing:59.941292px;}
.ls10{letter-spacing:70.548231px;}
.lsc{letter-spacing:70.569831px;}
.ls17{letter-spacing:80.753400px;}
.ls3{letter-spacing:83.301000px;}
.ls12{letter-spacing:85.753292px;}
.ls1a{letter-spacing:98.056800px;}
.ls6{letter-spacing:104.653292px;}
.ls16{letter-spacing:113.282160px;}
.ls4{letter-spacing:113.283000px;}
.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;}
}
.wsc{word-spacing:-105.000000px;}
.ws8{word-spacing:-52.500000px;}
.ws1{word-spacing:-46.704000px;}
.ws7{word-spacing:-45.000000px;}
.wsa{word-spacing:-41.400000px;}
.ws2{word-spacing:-36.000000px;}
.ws9{word-spacing:-32.200005px;}
.ws6{word-spacing:-0.344307px;}
.ws4{word-spacing:-0.286205px;}
.wsb{word-spacing:-0.270000px;}
.ws5{word-spacing:-0.215192px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:70.005987px;}
._e{margin-left:-29.400000px;}
._0{margin-left:-25.872000px;}
._8{margin-left:-23.520000px;}
._7{margin-left:-19.427400px;}
._d{margin-left:-18.316800px;}
._c{margin-left:-16.524000px;}
._2{margin-left:-15.120000px;}
._10{margin-left:-13.200000px;}
._1{margin-left:-8.683200px;}
._f{margin-left:-6.208680px;}
._6{margin-left:-5.108400px;}
._3{margin-left:-3.456000px;}
._4{margin-left:-1.440000px;}
._5{width:1.152000px;}
._9{width:4.669656px;}
._b{width:7.747084px;}
._a{width:10.524991px;}
.fcc{color:rgb(226,33,70);}
.fca{color:rgb(205,89,26);}
.fc7{color:rgb(255,139,37);}
.fc3{color:rgb(196,194,119);}
.fc9{color:rgb(255,147,0);}
.fc2{color:rgb(255,252,121);}
.fc4{color:transparent;}
.fc1{color:rgb(255,252,102);}
.fcb{color:rgb(146,146,146);}
.fc8{color:rgb(255,255,255);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(213,213,213);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:0.000006px;}
.fs13{font-size:128.800020px;}
.fs14{font-size:139.999980px;}
.fs5{font-size:144.000000px;}
.fsf{font-size:150.634080px;}
.fs15{font-size:165.600000px;}
.fs6{font-size:168.000000px;}
.fs11{font-size:174.000000px;}
.fs16{font-size:178.200000px;}
.fs10{font-size:180.000000px;}
.fs4{font-size:192.000000px;}
.fs12{font-size:193.200000px;}
.fsc{font-size:210.000000px;}
.fse{font-size:215.192160px;}
.fs3{font-size:216.000000px;}
.fs2{font-size:240.000000px;}
.fsa{font-size:256.080000px;}
.fs7{font-size:258.000000px;}
.fs17{font-size:270.000000px;}
.fsb{font-size:304.500000px;}
.fs1{font-size:312.000000px;}
.fs18{font-size:348.000000px;}
.fs9{font-size:371.316000px;}
.fs8{font-size:420.000000px;}
.fs0{font-size:470.400000px;}
.y0{bottom:0.000000px;}
.y50{bottom:0.713250px;}
.y18{bottom:4.816410px;}
.y40{bottom:6.316500px;}
.y41{bottom:8.122191px;}
.y88{bottom:8.418855px;}
.y58{bottom:8.612250px;}
.y53{bottom:9.528000px;}
.y4f{bottom:14.013450px;}
.y3a{bottom:16.073370px;}
.y3e{bottom:19.283100px;}
.y22{bottom:19.283175px;}
.y2b{bottom:19.283205px;}
.y30{bottom:19.283250px;}
.y9{bottom:22.144515px;}
.y35{bottom:22.354320px;}
.y74{bottom:22.497000px;}
.y70{bottom:22.497150px;}
.y26{bottom:22.848105px;}
.y17{bottom:22.947690px;}
.y67{bottom:23.299500px;}
.y69{bottom:23.300550px;}
.y8a{bottom:23.863050px;}
.y5b{bottom:24.103950px;}
.y15{bottom:25.710900px;}
.y1c{bottom:25.710960px;}
.y2e{bottom:25.711050px;}
.y72{bottom:25.979700px;}
.y37{bottom:26.112090px;}
.y28{bottom:26.112135px;}
.y24{bottom:26.112150px;}
.y92{bottom:26.255250px;}
.y7d{bottom:26.255400px;}
.y7f{bottom:28.121400px;}
.y7a{bottom:31.604100px;}
.y77{bottom:32.859600px;}
.y59{bottom:36.319695px;}
.y46{bottom:37.789125px;}
.y2a{bottom:38.385135px;}
.y81{bottom:38.663100px;}
.y1f{bottom:38.933790px;}
.y8f{bottom:40.094400px;}
.y10{bottom:40.437150px;}
.y56{bottom:45.515850px;}
.y25{bottom:45.859110px;}
.y34{bottom:46.268985px;}
.y8c{bottom:48.430050px;}
.y52{bottom:49.500000px;}
.y4d{bottom:50.917050px;}
.y44{bottom:52.441404px;}
.y21{bottom:55.886175px;}
.y9d{bottom:56.242650px;}
.y39{bottom:56.573370px;}
.y57{bottom:68.611650px;}
.y32{bottom:68.707260px;}
.y86{bottom:70.175715px;}
.y4e{bottom:74.012850px;}
.y1b{bottom:75.864810px;}
.y14{bottom:75.864900px;}
.y2d{bottom:75.865500px;}
.y91{bottom:77.255250px;}
.y7c{bottom:77.255400px;}
.y45{bottom:78.289125px;}
.y82{bottom:86.241285px;}
.y8e{bottom:91.094400px;}
.y1d{bottom:91.609185px;}
.y76{bottom:92.859600px;}
.y87{bottom:99.998115px;}
.y49{bottom:110.604150px;}
.y13{bottom:126.018750px;}
.y1a{bottom:126.018810px;}
.y55{bottom:127.500000px;}
.y19{bottom:130.179990px;}
.y4b{bottom:133.500000px;}
.y43{bottom:134.671869px;}
.y85{bottom:141.635715px;}
.y20{bottom:145.696875px;}
.y27{bottom:146.982015px;}
.y36{bottom:146.982060px;}
.y1e{bottom:153.638715px;}
.y33{bottom:173.094150px;}
.y12{bottom:176.172600px;}
.y84{bottom:189.635715px;}
.y6d{bottom:213.024450px;}
.y42{bottom:216.902409px;}
.y8d{bottom:224.263050px;}
.y75{bottom:228.756000px;}
.y90{bottom:231.182550px;}
.y71{bottom:242.303550px;}
.y83{bottom:261.095715px;}
.y5d{bottom:263.919450px;}
.y6c{bottom:273.024450px;}
.y65{bottom:293.679000px;}
.y9a{bottom:294.060450px;}
.y3b{bottom:305.836800px;}
.y3d{bottom:338.113650px;}
.y3f{bottom:360.055800px;}
.y6f{bottom:367.489050px;}
.y7{bottom:403.609950px;}
.y64{bottom:409.338600px;}
.y73{bottom:413.376600px;}
.y68{bottom:419.161350px;}
.y99{bottom:425.265300px;}
.y51{bottom:452.672700px;}
.y5a{bottom:500.122350px;}
.y54{bottom:515.272950px;}
.y11{bottom:522.431250px;}
.y6{bottom:529.609950px;}
.y4a{bottom:533.084250px;}
.y4c{bottom:533.684250px;}
.y63{bottom:548.679000px;}
.y98{bottom:556.470150px;}
.y48{bottom:561.035400px;}
.yb{bottom:592.332600px;}
.y5{bottom:592.609950px;}
.ya{bottom:650.832600px;}
.y29{bottom:655.725750px;}
.y62{bottom:664.338600px;}
.y97{bottom:687.675000px;}
.y6b{bottom:776.333700px;}
.y4{bottom:783.162750px;}
.y5c{bottom:783.494100px;}
.y61{bottom:803.679000px;}
.y2f{bottom:813.769650px;}
.y96{bottom:827.466150px;}
.y6a{bottom:836.333700px;}
.y80{bottom:852.531000px;}
.y3{bottom:857.635350px;}
.y89{bottom:869.417550px;}
.y60{bottom:919.338600px;}
.y95{bottom:950.084850px;}
.y23{bottom:959.965500px;}
.y6e{bottom:968.370450px;}
.y31{bottom:986.077650px;}
.y8b{bottom:1051.236900px;}
.y5f{bottom:1054.726500px;}
.y7b{bottom:1064.132100px;}
.y94{bottom:1081.289700px;}
.y2{bottom:1083.922050px;}
.y7e{bottom:1086.910950px;}
.y5e{bottom:1138.767450px;}
.y3c{bottom:1185.680400px;}
.y1{bottom:1218.922050px;}
.y93{bottom:1221.080700px;}
.y79{bottom:1279.959600px;}
.yf{bottom:1281.102000px;}
.yc{bottom:1329.563400px;}
.ye{bottom:1348.612050px;}
.y9c{bottom:1351.256550px;}
.yd{bottom:1399.612050px;}
.y2c{bottom:1427.310000px;}
.y38{bottom:1485.689100px;}
.y78{bottom:1490.141550px;}
.y47{bottom:1496.141550px;}
.y9b{bottom:1513.479000px;}
.y66{bottom:1517.580000px;}
.y16{bottom:1536.952500px;}
.y8{bottom:1547.283000px;}
.h20{height:0.000004px;}
.hd{height:36.000000px;}
.h1b{height:37.500000px;}
.h26{height:49.500000px;}
.h16{height:60.433590px;}
.h23{height:66.429629px;}
.h33{height:69.420405px;}
.h36{height:69.629520px;}
.h37{height:71.255865px;}
.h35{height:73.586430px;}
.h45{height:74.167815px;}
.h18{height:75.464865px;}
.h2d{height:75.916995px;}
.h12{height:76.242240px;}
.h14{height:82.078125px;}
.h39{height:82.352310px;}
.h11{height:87.108030px;}
.h40{height:89.069820px;}
.h41{height:90.476145px;}
.h3c{height:92.552565px;}
.h10{height:97.036530px;}
.h9{height:99.984375px;}
.h2a{height:104.540052px;}
.h8{height:104.620710px;}
.h43{height:114.982031px;}
.h6{height:116.064000px;}
.h38{height:116.648438px;}
.h34{height:117.925781px;}
.h7{height:119.952000px;}
.h2e{height:121.992188px;}
.h13{height:122.808000px;}
.h46{height:123.730664px;}
.h3f{height:124.980469px;}
.h28{height:127.500000px;}
.h3e{height:129.068280px;}
.h32{height:130.000547px;}
.h15{height:130.125000px;}
.h17{height:132.232035px;}
.h21{height:132.900000px;}
.hb{height:133.312500px;}
.h1f{height:133.500000px;}
.h3a{height:134.145703px;}
.h5{height:140.352000px;}
.h3d{height:142.324219px;}
.h49{height:142.907430px;}
.h25{height:145.685092px;}
.h30{height:145.810547px;}
.h2c{height:146.976245px;}
.h2b{height:149.343359px;}
.h4{height:149.976562px;}
.h3b{height:153.808200px;}
.h27{height:154.077587px;}
.h47{height:154.817550px;}
.h4a{height:162.656250px;}
.h3{height:166.640625px;}
.h24{height:166.704852px;}
.hc{height:174.855469px;}
.h4c{height:178.139700px;}
.h1d{height:179.440650px;}
.he{height:182.385900px;}
.h48{height:197.640000px;}
.h31{height:206.370117px;}
.h2{height:210.082031px;}
.h1e{height:211.425293px;}
.hf{height:225.222600px;}
.ha{height:232.539900px;}
.h4b{height:241.628906px;}
.h1a{height:251.653617px;}
.h1c{height:273.269550px;}
.h2f{height:276.378000px;}
.h44{height:284.625000px;}
.h19{height:291.621094px;}
.h42{height:309.843600px;}
.h29{height:323.689029px;}
.h1{height:326.615625px;}
.h22{height:328.208052px;}
.h0{height:1620.000000px;}
.w23{width:55.958115px;}
.w18{width:79.095120px;}
.wd{width:241.371150px;}
.w9{width:253.819650px;}
.w14{width:306.000000px;}
.w19{width:306.726600px;}
.w10{width:309.380850px;}
.wb{width:327.363300px;}
.w17{width:330.123000px;}
.w12{width:335.354400px;}
.w2b{width:336.248100px;}
.w1f{width:339.788700px;}
.w11{width:364.775850px;}
.w1{width:376.253700px;}
.w22{width:396.123450px;}
.w16{width:415.500000px;}
.w7{width:438.060000px;}
.w15{width:450.000000px;}
.w3{width:456.447150px;}
.w28{width:489.942150px;}
.wa{width:514.323600px;}
.w1a{width:535.580700px;}
.wc{width:559.077150px;}
.w1c{width:581.939550px;}
.w1b{width:603.108450px;}
.w24{width:653.199900px;}
.w2a{width:701.039550px;}
.w25{width:737.962050px;}
.w21{width:759.813300px;}
.w1d{width:781.416750px;}
.w29{width:800.131650px;}
.w20{width:808.559700px;}
.w13{width:833.141250px;}
.w6{width:834.901950px;}
.w27{width:927.753450px;}
.we{width:941.396850px;}
.w8{width:979.218000px;}
.w26{width:982.503300px;}
.wf{width:1027.100400px;}
.w1e{width:1029.671850px;}
.w2{width:1088.940900px;}
.w4{width:1640.685000px;}
.w5{width:1668.330000px;}
.w0{width:2880.000000px;}
.x41{left:-1.768200px;}
.x0{left:0.000000px;}
.x4e{left:8.852250px;}
.x1e{left:9.966750px;}
.x2c{left:12.232500px;}
.x11{left:13.289055px;}
.x3a{left:14.535000px;}
.x20{left:21.726000px;}
.x47{left:24.104010px;}
.x2e{left:25.366425px;}
.x15{left:29.793000px;}
.x43{left:31.880445px;}
.x37{left:36.224340px;}
.x10{left:42.184500px;}
.x66{left:48.239550px;}
.x56{left:50.601300px;}
.x23{left:52.197900px;}
.x4a{left:63.458550px;}
.x5d{left:65.125290px;}
.x65{left:66.400050px;}
.x13{left:67.485300px;}
.x63{left:68.801850px;}
.x57{left:76.922610px;}
.x46{left:82.239330px;}
.x8{left:85.043025px;}
.x60{left:90.801900px;}
.x53{left:92.184810px;}
.x58{left:100.983030px;}
.x4b{left:103.958550px;}
.x5e{left:106.489095px;}
.x4c{left:113.932290px;}
.x5c{left:129.412260px;}
.x69{left:130.945500px;}
.x42{left:149.631000px;}
.x32{left:153.491100px;}
.x1a{left:161.186550px;}
.x3d{left:174.931350px;}
.x59{left:176.456370px;}
.x1d{left:188.366550px;}
.x19{left:191.186550px;}
.x26{left:195.263100px;}
.x6a{left:228.889350px;}
.x3e{left:239.040150px;}
.x3c{left:241.788750px;}
.x3f{left:277.099350px;}
.x2d{left:303.944100px;}
.x38{left:308.507100px;}
.x48{left:329.604600px;}
.x45{left:346.533750px;}
.x1{left:374.349600px;}
.x21{left:440.589750px;}
.x5{left:446.124000px;}
.x29{left:453.855750px;}
.x28{left:468.323100px;}
.x5b{left:501.152250px;}
.x27{left:510.190500px;}
.x5a{left:547.447200px;}
.x44{left:623.455800px;}
.x12{left:626.472120px;}
.x49{left:643.886700px;}
.x50{left:646.077450px;}
.x2{left:683.135700px;}
.x14{left:697.691100px;}
.xf{left:743.455800px;}
.x34{left:746.092500px;}
.x4{left:780.811500px;}
.x2b{left:903.182250px;}
.x6{left:907.668450px;}
.x2f{left:921.868350px;}
.x51{left:926.266650px;}
.x7{left:945.716250px;}
.x5f{left:948.748350px;}
.x61{left:976.123200px;}
.x1c{left:1020.750000px;}
.x64{left:1052.134350px;}
.x1b{left:1065.581850px;}
.x17{left:1127.615550px;}
.x30{left:1135.253850px;}
.x1f{left:1144.380150px;}
.x62{left:1168.965600px;}
.x18{left:1189.290600px;}
.x22{left:1199.367750px;}
.x16{left:1203.112950px;}
.xc{left:1216.715400px;}
.x6b{left:1235.844750px;}
.x3{left:1242.098100px;}
.x2a{left:1251.565500px;}
.x6c{left:1271.875950px;}
.x4d{left:1282.500000px;}
.x36{left:1328.910600px;}
.x55{left:1421.069100px;}
.x31{left:1473.456900px;}
.x52{left:1587.000000px;}
.x25{left:1600.108500px;}
.x39{left:1673.668500px;}
.x40{left:1697.578500px;}
.x54{left:1698.954000px;}
.xd{left:1759.240500px;}
.xa{left:1777.189500px;}
.xe{left:1801.618500px;}
.xb{left:1816.237500px;}
.x35{left:1866.991500px;}
.x68{left:1935.234000px;}
.x4f{left:2084.302500px;}
.x67{left:2097.388500px;}
.x33{left:2197.527000px;}
.x9{left:2213.085000px;}
.x3b{left:2219.349000px;}
.x24{left:2272.732500px;}
@media print{
.v3{vertical-align:-28.684800pt;}
.v7{vertical-align:-14.053333pt;}
.v8{vertical-align:-12.382464pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.045867pt;}
.v9{vertical-align:30.528533pt;}
.v1{vertical-align:34.334400pt;}
.v6{vertical-align:55.257600pt;}
.v4{vertical-align:129.408000pt;}
.v5{vertical-align:198.816000pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000187pt;}
.lse{letter-spacing:0.009627pt;}
.ls5{letter-spacing:0.028827pt;}
.ls19{letter-spacing:0.037333pt;}
.ls1{letter-spacing:0.045867pt;}
.ls7{letter-spacing:0.057654pt;}
.ls11{letter-spacing:0.073759pt;}
.lsb{letter-spacing:0.104294pt;}
.ls13{letter-spacing:0.104602pt;}
.ls15{letter-spacing:0.114769pt;}
.ls14{letter-spacing:0.120507pt;}
.ls8{letter-spacing:0.137411pt;}
.lsf{letter-spacing:0.156611pt;}
.ls9{letter-spacing:6.962984pt;}
.lsa{letter-spacing:26.621599pt;}
.lsd{letter-spacing:53.281148pt;}
.ls10{letter-spacing:62.709539pt;}
.lsc{letter-spacing:62.728739pt;}
.ls17{letter-spacing:71.780800pt;}
.ls3{letter-spacing:74.045333pt;}
.ls12{letter-spacing:76.225148pt;}
.ls1a{letter-spacing:87.161600pt;}
.ls6{letter-spacing:93.025148pt;}
.ls16{letter-spacing:100.695253pt;}
.ls4{letter-spacing:100.696000pt;}
.wsc{word-spacing:-93.333333pt;}
.ws8{word-spacing:-46.666667pt;}
.ws1{word-spacing:-41.514667pt;}
.ws7{word-spacing:-40.000000pt;}
.wsa{word-spacing:-36.800000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws9{word-spacing:-28.622227pt;}
.ws6{word-spacing:-0.306051pt;}
.ws4{word-spacing:-0.254404pt;}
.wsb{word-spacing:-0.240000pt;}
.ws5{word-spacing:-0.191282pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:62.227544pt;}
._e{margin-left:-26.133333pt;}
._0{margin-left:-22.997333pt;}
._8{margin-left:-20.906667pt;}
._7{margin-left:-17.268800pt;}
._d{margin-left:-16.281600pt;}
._c{margin-left:-14.688000pt;}
._2{margin-left:-13.440000pt;}
._10{margin-left:-11.733333pt;}
._1{margin-left:-7.718400pt;}
._f{margin-left:-5.518827pt;}
._6{margin-left:-4.540800pt;}
._3{margin-left:-3.072000pt;}
._4{margin-left:-1.280000pt;}
._5{width:1.024000pt;}
._9{width:4.150806pt;}
._b{width:6.886297pt;}
._a{width:9.355548pt;}
.fsd{font-size:0.000005pt;}
.fs13{font-size:114.488907pt;}
.fs14{font-size:124.444427pt;}
.fs5{font-size:128.000000pt;}
.fsf{font-size:133.896960pt;}
.fs15{font-size:147.200000pt;}
.fs6{font-size:149.333333pt;}
.fs11{font-size:154.666667pt;}
.fs16{font-size:158.400000pt;}
.fs10{font-size:160.000000pt;}
.fs4{font-size:170.666667pt;}
.fs12{font-size:171.733333pt;}
.fsc{font-size:186.666667pt;}
.fse{font-size:191.281920pt;}
.fs3{font-size:192.000000pt;}
.fs2{font-size:213.333333pt;}
.fsa{font-size:227.626667pt;}
.fs7{font-size:229.333333pt;}
.fs17{font-size:240.000000pt;}
.fsb{font-size:270.666667pt;}
.fs1{font-size:277.333333pt;}
.fs18{font-size:309.333333pt;}
.fs9{font-size:330.058667pt;}
.fs8{font-size:373.333333pt;}
.fs0{font-size:418.133333pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:0.634000pt;}
.y18{bottom:4.281253pt;}
.y40{bottom:5.614667pt;}
.y41{bottom:7.219725pt;}
.y88{bottom:7.483427pt;}
.y58{bottom:7.655333pt;}
.y53{bottom:8.469333pt;}
.y4f{bottom:12.456400pt;}
.y3a{bottom:14.287440pt;}
.y3e{bottom:17.140533pt;}
.y22{bottom:17.140600pt;}
.y2b{bottom:17.140627pt;}
.y30{bottom:17.140667pt;}
.y9{bottom:19.684013pt;}
.y35{bottom:19.870507pt;}
.y74{bottom:19.997333pt;}
.y70{bottom:19.997467pt;}
.y26{bottom:20.309427pt;}
.y17{bottom:20.397947pt;}
.y67{bottom:20.710667pt;}
.y69{bottom:20.711600pt;}
.y8a{bottom:21.211600pt;}
.y5b{bottom:21.425733pt;}
.y15{bottom:22.854133pt;}
.y1c{bottom:22.854187pt;}
.y2e{bottom:22.854267pt;}
.y72{bottom:23.093067pt;}
.y37{bottom:23.210747pt;}
.y28{bottom:23.210787pt;}
.y24{bottom:23.210800pt;}
.y92{bottom:23.338000pt;}
.y7d{bottom:23.338133pt;}
.y7f{bottom:24.996800pt;}
.y7a{bottom:28.092533pt;}
.y77{bottom:29.208533pt;}
.y59{bottom:32.284173pt;}
.y46{bottom:33.590333pt;}
.y2a{bottom:34.120120pt;}
.y81{bottom:34.367200pt;}
.y1f{bottom:34.607813pt;}
.y8f{bottom:35.639467pt;}
.y10{bottom:35.944133pt;}
.y56{bottom:40.458533pt;}
.y25{bottom:40.763653pt;}
.y34{bottom:41.127987pt;}
.y8c{bottom:43.048933pt;}
.y52{bottom:44.000000pt;}
.y4d{bottom:45.259600pt;}
.y44{bottom:46.614581pt;}
.y21{bottom:49.676600pt;}
.y9d{bottom:49.993467pt;}
.y39{bottom:50.287440pt;}
.y57{bottom:60.988133pt;}
.y32{bottom:61.073120pt;}
.y86{bottom:62.378413pt;}
.y4e{bottom:65.789200pt;}
.y1b{bottom:67.435387pt;}
.y14{bottom:67.435467pt;}
.y2d{bottom:67.436000pt;}
.y91{bottom:68.671333pt;}
.y7c{bottom:68.671467pt;}
.y45{bottom:69.590333pt;}
.y82{bottom:76.658920pt;}
.y8e{bottom:80.972800pt;}
.y1d{bottom:81.430387pt;}
.y76{bottom:82.541867pt;}
.y87{bottom:88.887213pt;}
.y49{bottom:98.314800pt;}
.y13{bottom:112.016667pt;}
.y1a{bottom:112.016720pt;}
.y55{bottom:113.333333pt;}
.y19{bottom:115.715547pt;}
.y4b{bottom:118.666667pt;}
.y43{bottom:119.708328pt;}
.y85{bottom:125.898413pt;}
.y20{bottom:129.508333pt;}
.y27{bottom:130.650680pt;}
.y36{bottom:130.650720pt;}
.y1e{bottom:136.567747pt;}
.y33{bottom:153.861467pt;}
.y12{bottom:156.597867pt;}
.y84{bottom:168.565080pt;}
.y6d{bottom:189.355067pt;}
.y42{bottom:192.802141pt;}
.y8d{bottom:199.344933pt;}
.y75{bottom:203.338667pt;}
.y90{bottom:205.495600pt;}
.y71{bottom:215.380933pt;}
.y83{bottom:232.085080pt;}
.y5d{bottom:234.595067pt;}
.y6c{bottom:242.688400pt;}
.y65{bottom:261.048000pt;}
.y9a{bottom:261.387067pt;}
.y3b{bottom:271.854933pt;}
.y3d{bottom:300.545467pt;}
.y3f{bottom:320.049600pt;}
.y6f{bottom:326.656933pt;}
.y7{bottom:358.764400pt;}
.y64{bottom:363.856533pt;}
.y73{bottom:367.445867pt;}
.y68{bottom:372.587867pt;}
.y99{bottom:378.013600pt;}
.y51{bottom:402.375733pt;}
.y5a{bottom:444.553200pt;}
.y54{bottom:458.020400pt;}
.y11{bottom:464.383333pt;}
.y6{bottom:470.764400pt;}
.y4a{bottom:473.852667pt;}
.y4c{bottom:474.386000pt;}
.y63{bottom:487.714667pt;}
.y98{bottom:494.640133pt;}
.y48{bottom:498.698133pt;}
.yb{bottom:526.517867pt;}
.y5{bottom:526.764400pt;}
.ya{bottom:578.517867pt;}
.y29{bottom:582.867333pt;}
.y62{bottom:590.523200pt;}
.y97{bottom:611.266667pt;}
.y6b{bottom:690.074400pt;}
.y4{bottom:696.144667pt;}
.y5c{bottom:696.439200pt;}
.y61{bottom:714.381333pt;}
.y2f{bottom:723.350800pt;}
.y96{bottom:735.525467pt;}
.y6a{bottom:743.407733pt;}
.y80{bottom:757.805333pt;}
.y3{bottom:762.342533pt;}
.y89{bottom:772.815600pt;}
.y60{bottom:817.189867pt;}
.y95{bottom:844.519867pt;}
.y23{bottom:853.302667pt;}
.y6e{bottom:860.773733pt;}
.y31{bottom:876.513467pt;}
.y8b{bottom:934.432800pt;}
.y5f{bottom:937.534667pt;}
.y7b{bottom:945.895200pt;}
.y94{bottom:961.146400pt;}
.y2{bottom:963.486267pt;}
.y7e{bottom:966.143067pt;}
.y5e{bottom:1012.237733pt;}
.y3c{bottom:1053.938133pt;}
.y1{bottom:1083.486267pt;}
.y93{bottom:1085.405067pt;}
.y79{bottom:1137.741867pt;}
.yf{bottom:1138.757333pt;}
.yc{bottom:1181.834133pt;}
.ye{bottom:1198.766267pt;}
.y9c{bottom:1201.116933pt;}
.yd{bottom:1244.099600pt;}
.y2c{bottom:1268.720000pt;}
.y38{bottom:1320.612533pt;}
.y78{bottom:1324.570267pt;}
.y47{bottom:1329.903600pt;}
.y9b{bottom:1345.314667pt;}
.y66{bottom:1348.960000pt;}
.y16{bottom:1366.180000pt;}
.y8{bottom:1375.362667pt;}
.h20{height:0.000004pt;}
.hd{height:32.000000pt;}
.h1b{height:33.333333pt;}
.h26{height:44.000000pt;}
.h16{height:53.718747pt;}
.h23{height:59.048559pt;}
.h33{height:61.707027pt;}
.h36{height:61.892907pt;}
.h37{height:63.338547pt;}
.h35{height:65.410160pt;}
.h45{height:65.926947pt;}
.h18{height:67.079880pt;}
.h2d{height:67.481773pt;}
.h12{height:67.770880pt;}
.h14{height:72.958333pt;}
.h39{height:73.202053pt;}
.h11{height:77.429360pt;}
.h40{height:79.173173pt;}
.h41{height:80.423240pt;}
.h3c{height:82.268947pt;}
.h10{height:86.254693pt;}
.h9{height:88.875000pt;}
.h2a{height:92.924490pt;}
.h8{height:92.996187pt;}
.h43{height:102.206250pt;}
.h6{height:103.168000pt;}
.h38{height:103.687500pt;}
.h34{height:104.822917pt;}
.h7{height:106.624000pt;}
.h2e{height:108.437500pt;}
.h13{height:109.162667pt;}
.h46{height:109.982812pt;}
.h3f{height:111.093750pt;}
.h28{height:113.333333pt;}
.h3e{height:114.727360pt;}
.h32{height:115.556042pt;}
.h15{height:115.666667pt;}
.h17{height:117.539587pt;}
.h21{height:118.133333pt;}
.hb{height:118.500000pt;}
.h1f{height:118.666667pt;}
.h3a{height:119.240625pt;}
.h5{height:124.757333pt;}
.h3d{height:126.510417pt;}
.h49{height:127.028827pt;}
.h25{height:129.497860pt;}
.h30{height:129.609375pt;}
.h2c{height:130.645551pt;}
.h2b{height:132.749652pt;}
.h4{height:133.312500pt;}
.h3b{height:136.718400pt;}
.h27{height:136.957855pt;}
.h47{height:137.615600pt;}
.h4a{height:144.583333pt;}
.h3{height:148.125000pt;}
.h24{height:148.182090pt;}
.hc{height:155.427083pt;}
.h4c{height:158.346400pt;}
.h1d{height:159.502800pt;}
.he{height:162.120800pt;}
.h48{height:175.680000pt;}
.h31{height:183.440104pt;}
.h2{height:186.739583pt;}
.h1e{height:187.933594pt;}
.hf{height:200.197867pt;}
.ha{height:206.702133pt;}
.h4b{height:214.781250pt;}
.h1a{height:223.692104pt;}
.h1c{height:242.906267pt;}
.h2f{height:245.669333pt;}
.h44{height:253.000000pt;}
.h19{height:259.218750pt;}
.h42{height:275.416533pt;}
.h29{height:287.723581pt;}
.h1{height:290.325000pt;}
.h22{height:291.740490pt;}
.h0{height:1440.000000pt;}
.w23{width:49.740547pt;}
.w18{width:70.306773pt;}
.wd{width:214.552133pt;}
.w9{width:225.617467pt;}
.w14{width:272.000000pt;}
.w19{width:272.645867pt;}
.w10{width:275.005200pt;}
.wb{width:290.989600pt;}
.w17{width:293.442667pt;}
.w12{width:298.092800pt;}
.w2b{width:298.887200pt;}
.w1f{width:302.034400pt;}
.w11{width:324.245200pt;}
.w1{width:334.447733pt;}
.w22{width:352.109733pt;}
.w16{width:369.333333pt;}
.w7{width:389.386667pt;}
.w15{width:400.000000pt;}
.w3{width:405.730800pt;}
.w28{width:435.504133pt;}
.wa{width:457.176533pt;}
.w1a{width:476.071733pt;}
.wc{width:496.957467pt;}
.w1c{width:517.279600pt;}
.w1b{width:536.096400pt;}
.w24{width:580.622133pt;}
.w2a{width:623.146267pt;}
.w25{width:655.966267pt;}
.w21{width:675.389600pt;}
.w1d{width:694.592667pt;}
.w29{width:711.228133pt;}
.w20{width:718.719733pt;}
.w13{width:740.570000pt;}
.w6{width:742.135067pt;}
.w27{width:824.669733pt;}
.we{width:836.797200pt;}
.w8{width:870.416000pt;}
.w26{width:873.336267pt;}
.wf{width:912.978133pt;}
.w1e{width:915.263867pt;}
.w2{width:967.947467pt;}
.w4{width:1458.386667pt;}
.w5{width:1482.960000pt;}
.w0{width:2560.000000pt;}
.x41{left:-1.571733pt;}
.x0{left:0.000000pt;}
.x4e{left:7.868667pt;}
.x1e{left:8.859333pt;}
.x2c{left:10.873333pt;}
.x11{left:11.812493pt;}
.x3a{left:12.920000pt;}
.x20{left:19.312000pt;}
.x47{left:21.425787pt;}
.x2e{left:22.547933pt;}
.x15{left:26.482667pt;}
.x43{left:28.338173pt;}
.x37{left:32.199413pt;}
.x10{left:37.497333pt;}
.x66{left:42.879600pt;}
.x56{left:44.978933pt;}
.x23{left:46.398133pt;}
.x4a{left:56.407600pt;}
.x5d{left:57.889147pt;}
.x65{left:59.022267pt;}
.x13{left:59.986933pt;}
.x63{left:61.157200pt;}
.x57{left:68.375653pt;}
.x46{left:73.101627pt;}
.x8{left:75.593800pt;}
.x60{left:80.712800pt;}
.x53{left:81.942053pt;}
.x58{left:89.762693pt;}
.x4b{left:92.407600pt;}
.x5e{left:94.656973pt;}
.x4c{left:101.273147pt;}
.x5c{left:115.033120pt;}
.x69{left:116.396000pt;}
.x42{left:133.005333pt;}
.x32{left:136.436533pt;}
.x1a{left:143.276933pt;}
.x3d{left:155.494533pt;}
.x59{left:156.850107pt;}
.x1d{left:167.436933pt;}
.x19{left:169.943600pt;}
.x26{left:173.567200pt;}
.x6a{left:203.457200pt;}
.x3e{left:212.480133pt;}
.x3c{left:214.923333pt;}
.x3f{left:246.310533pt;}
.x2d{left:270.172533pt;}
.x38{left:274.228533pt;}
.x48{left:292.981867pt;}
.x45{left:308.030000pt;}
.x1{left:332.755200pt;}
.x21{left:391.635333pt;}
.x5{left:396.554667pt;}
.x29{left:403.427333pt;}
.x28{left:416.287200pt;}
.x5b{left:445.468667pt;}
.x27{left:453.502667pt;}
.x5a{left:486.619733pt;}
.x44{left:554.182933pt;}
.x12{left:556.864107pt;}
.x49{left:572.343733pt;}
.x50{left:574.291067pt;}
.x2{left:607.231733pt;}
.x14{left:620.169867pt;}
.xf{left:660.849600pt;}
.x34{left:663.193333pt;}
.x4{left:694.054667pt;}
.x2b{left:802.828667pt;}
.x6{left:806.816400pt;}
.x2f{left:819.438533pt;}
.x51{left:823.348133pt;}
.x7{left:840.636667pt;}
.x5f{left:843.331867pt;}
.x61{left:867.665067pt;}
.x1c{left:907.333333pt;}
.x64{left:935.230533pt;}
.x1b{left:947.183867pt;}
.x17{left:1002.324933pt;}
.x30{left:1009.114533pt;}
.x1f{left:1017.226800pt;}
.x62{left:1039.080533pt;}
.x18{left:1057.147200pt;}
.x22{left:1066.104667pt;}
.x16{left:1069.433733pt;}
.xc{left:1081.524800pt;}
.x6b{left:1098.528667pt;}
.x3{left:1104.087200pt;}
.x2a{left:1112.502667pt;}
.x6c{left:1130.556400pt;}
.x4d{left:1140.000000pt;}
.x36{left:1181.253867pt;}
.x55{left:1263.172533pt;}
.x31{left:1309.739467pt;}
.x52{left:1410.666667pt;}
.x25{left:1422.318667pt;}
.x39{left:1487.705333pt;}
.x40{left:1508.958667pt;}
.x54{left:1510.181333pt;}
.xd{left:1563.769333pt;}
.xa{left:1579.724000pt;}
.xe{left:1601.438667pt;}
.xb{left:1614.433333pt;}
.x35{left:1659.548000pt;}
.x68{left:1720.208000pt;}
.x4f{left:1852.713333pt;}
.x67{left:1864.345333pt;}
.x33{left:1953.357333pt;}
.x9{left:1967.186667pt;}
.x3b{left:1972.754667pt;}
.x24{left:2020.206667pt;}
}




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