
    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_cc23c208659b60972e86b762.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a51c959932e5aec303b4c57.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_843480c9219856713b380c7b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8f3be45a57579cd6ff2f7943.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_efc845642a5b8af4a8cc82de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_1847ff6f424dff1838cf562b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.670898;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_2aaea6a149d79d49b7e6214e.woff2')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_12879df5088435acf856f7d4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_57791f33a78d3c4d5d5cb7f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_0299df08a4c97baa0d8daeee.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f1278787a80dacdae2ee7e08.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bb54177fa8a233cc613998a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_c8400972c117036a19b3233c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_2583361aa5def1edfdb3296e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2acc7f8109200831eed4d7ad.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4877df46191465962ab64660.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_70ab7a07a026f3630c69c635.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f555b9cfe7077df0cc12d9db.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_495d866d2e955149e1ad358f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893066;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_748417e7609285e9cf34f247.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6d83794a48277acdfbc054e5.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_e7addaf78f6d46217a1137fb.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_801ac6d4467679fc6cf8b69a.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_3915e85614e3ea41a9e17cfa.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a659b934e1633da976e5c350.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_04d600f0ca351681ce25c2a0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.926270;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_0673408f67f5036b60cde151.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.718262;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_003f09b145e1e6df12566717.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_6bc47d4d03ffa673e4cc1149.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_2f4167917ee7e09ec3bdaad7.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_88f570485038b4c7ebc51d43.woff2')format("woff");}.ff1f{font-family:ff1f;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:24.480000px;}
.lsa{letter-spacing:-0.338688px;}
.ls26{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.278208px;}
.ls27{letter-spacing:-0.260064px;}
.lse{letter-spacing:-0.254016px;}
.lsc{letter-spacing:-0.241920px;}
.ls8{letter-spacing:-0.190080px;}
.ls7{letter-spacing:-0.177408px;}
.ls9{letter-spacing:-0.171072px;}
.ls13{letter-spacing:-0.158976px;}
.lsd{letter-spacing:-0.151200px;}
.ls10{letter-spacing:-0.145152px;}
.ls11{letter-spacing:-0.132480px;}
.ls1a{letter-spacing:-0.125856px;}
.lsb{letter-spacing:-0.120960px;}
.ls15{letter-spacing:-0.119232px;}
.ls1e{letter-spacing:-0.079488px;}
.ls14{letter-spacing:-0.059616px;}
.ls16{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.059904px;}
.ls24{letter-spacing:0.095040px;}
.ls3{letter-spacing:0.120096px;}
.ls28{letter-spacing:0.192096px;}
.ls17{letter-spacing:0.200448px;}
.ls19{letter-spacing:0.233856px;}
.ls1{letter-spacing:0.240048px;}
.ls2{letter-spacing:0.240480px;}
.ls0{letter-spacing:0.242208px;}
.ls1d{letter-spacing:0.275616px;}
.ls25{letter-spacing:0.308880px;}
.ls1b{letter-spacing:0.356976px;}
.ls12{letter-spacing:0.359136px;}
.ls22{letter-spacing:2.488176px;}
.ls21{letter-spacing:4.784112px;}
.ls23{letter-spacing:17.634096px;}
.ls18{letter-spacing:21.781440px;}
.ls1c{letter-spacing:27.866736px;}
.ls1f{letter-spacing:33.984000px;}
.ls20{letter-spacing:790.655328px;}
.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;}
}
.wsd{word-spacing:-21.239136px;}
.ws13{word-spacing:-21.155616px;}
.wse{word-spacing:-21.122208px;}
.wsf{word-spacing:-21.080448px;}
.ws1a{word-spacing:-21.072096px;}
.ws12{word-spacing:-18.014400px;}
.wsb{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.985600px;}
.ws14{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.440768px;}
.ws11{word-spacing:-16.401024px;}
.ws0{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.668928px;}
.ws3{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.999040px;}
.ws2{word-spacing:-14.878080px;}
.ws19{word-spacing:-14.859936px;}
.wsa{word-spacing:-14.837760px;}
.ws8{word-spacing:-14.781312px;}
.ws5{word-spacing:-13.668480px;}
.ws4{word-spacing:-13.414464px;}
.ws6{word-spacing:-13.390272px;}
.ws18{word-spacing:-0.356400px;}
.ws16{word-spacing:-0.066240px;}
.ws7{word-spacing:-0.060480px;}
.ws10{word-spacing:0.000000px;}
.ws17{word-spacing:18.093744px;}
._b{margin-left:-5.342976px;}
._16{margin-left:-3.481920px;}
._13{margin-left:-2.114640px;}
._1{margin-left:-1.078992px;}
._0{width:1.022112px;}
._2{width:2.385936px;}
._5{width:3.592800px;}
._14{width:5.234976px;}
._4{width:6.256800px;}
._6{width:8.143200px;}
._3{width:9.820800px;}
._7{width:10.872000px;}
._8{width:12.247200px;}
._15{width:14.234400px;}
._9{width:15.472800px;}
._11{width:16.531200px;}
._e{width:17.580096px;}
._a{width:19.202400px;}
._18{width:20.786400px;}
._d{width:22.197600px;}
._10{width:24.192000px;}
._1f{width:25.500384px;}
._f{width:27.691200px;}
._19{width:29.131200px;}
._c{width:30.153600px;}
._17{width:31.868208px;}
._12{width:33.696000px;}
._1a{width:48.585600px;}
._1b{width:105.989760px;}
._1e{width:127.368720px;}
._1c{width:165.390192px;}
._1d{width:179.998560px;}
.fc5{color:transparent;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:18.720000px;}
.fs9{font-size:24.480000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y174{bottom:-0.120000px;}
.y0{bottom:0.000000px;}
.y108{bottom:4.560000px;}
.y103{bottom:4.740000px;}
.y106{bottom:5.580000px;}
.y104{bottom:5.820000px;}
.y128{bottom:6.360000px;}
.y126{bottom:6.540000px;}
.y10c{bottom:7.020000px;}
.y10a{bottom:7.980000px;}
.y124{bottom:10.320000px;}
.y173{bottom:20.040000px;}
.y9{bottom:23.760000px;}
.y123{bottom:30.840000px;}
.y172{bottom:40.560000px;}
.y8{bottom:43.920000px;}
.y171{bottom:61.440000px;}
.yad{bottom:112.320000px;}
.y30{bottom:118.800000px;}
.yc3{bottom:123.120000px;}
.y5a{bottom:123.480000px;}
.y121{bottom:124.560000px;}
.y7f{bottom:128.160000px;}
.ye9{bottom:131.040000px;}
.yfe{bottom:138.960000px;}
.yac{bottom:139.320000px;}
.y2f{bottom:143.640000px;}
.y9d{bottom:146.160000px;}
.y59{bottom:148.320000px;}
.y120{bottom:149.400000px;}
.yc2{bottom:150.120000px;}
.y15f{bottom:150.840000px;}
.y7e{bottom:153.000000px;}
.ye8{bottom:155.880000px;}
.y2e{bottom:168.480000px;}
.y9c{bottom:169.200000px;}
.yfd{bottom:169.560000px;}
.y58{bottom:173.160000px;}
.y11f{bottom:174.240000px;}
.y15e{bottom:175.680000px;}
.y7d{bottom:177.840000px;}
.ye7{bottom:180.720000px;}
.y9b{bottom:191.880000px;}
.y57{bottom:198.000000px;}
.y11e{bottom:199.080000px;}
.y15d{bottom:200.520000px;}
.yf9{bottom:201.240000px;}
.y2d{bottom:202.320000px;}
.y7c{bottom:202.680000px;}
.ye6{bottom:205.560000px;}
.y9a{bottom:214.560000px;}
.y56{bottom:222.840000px;}
.y11d{bottom:223.920000px;}
.y15c{bottom:225.360000px;}
.y2c{bottom:227.160000px;}
.y7b{bottom:227.520000px;}
.ye5{bottom:230.400000px;}
.yf8{bottom:231.840000px;}
.y99{bottom:237.240000px;}
.y55{bottom:247.680000px;}
.y2b{bottom:252.000000px;}
.y7a{bottom:252.360000px;}
.y11c{bottom:253.440000px;}
.y15b{bottom:254.520000px;}
.ye4{bottom:255.240000px;}
.y98{bottom:260.280000px;}
.y54{bottom:272.520000px;}
.y2a{bottom:276.840000px;}
.y79{bottom:277.200000px;}
.y11b{bottom:278.280000px;}
.y15a{bottom:279.360000px;}
.ye3{bottom:280.080000px;}
.y144{bottom:281.160000px;}
.y97{bottom:282.960000px;}
.y53{bottom:297.360000px;}
.y29{bottom:301.680000px;}
.y78{bottom:302.040000px;}
.y11a{bottom:303.120000px;}
.y159{bottom:304.200000px;}
.ye2{bottom:304.920000px;}
.y143{bottom:305.280000px;}
.y96{bottom:306.360000px;}
.y142{bottom:314.640000px;}
.y52{bottom:322.200000px;}
.y28{bottom:326.520000px;}
.y77{bottom:326.880000px;}
.y119{bottom:327.960000px;}
.y141{bottom:329.400000px;}
.ye1{bottom:329.760000px;}
.y158{bottom:333.720000px;}
.y95{bottom:337.320000px;}
.y27{bottom:351.360000px;}
.y76{bottom:351.720000px;}
.y118{bottom:352.800000px;}
.y140{bottom:354.240000px;}
.ye0{bottom:354.600000px;}
.y51{bottom:355.680000px;}
.y157{bottom:358.560000px;}
.y94{bottom:367.920000px;}
.y75{bottom:376.560000px;}
.y117{bottom:377.640000px;}
.y26{bottom:381.960000px;}
.y156{bottom:383.400000px;}
.y13f{bottom:384.840000px;}
.ydf{bottom:385.560000px;}
.y50{bottom:392.400000px;}
.y74{bottom:401.040000px;}
.y116{bottom:402.480000px;}
.yde{bottom:406.080000px;}
.y155{bottom:408.240000px;}
.yc1{bottom:408.600000px;}
.y4f{bottom:417.240000px;}
.y93{bottom:420.840000px;}
.ydd{bottom:424.440000px;}
.y115{bottom:427.320000px;}
.y13e{bottom:430.200000px;}
.y25{bottom:432.720000px;}
.yc0{bottom:433.440000px;}
.y73{bottom:435.240000px;}
.y154{bottom:437.400000px;}
.y4e{bottom:442.080000px;}
.y92{bottom:444.240000px;}
.y24{bottom:453.240000px;}
.y13d{bottom:455.040000px;}
.ydc{bottom:455.400000px;}
.y114{bottom:456.480000px;}
.ybf{bottom:458.280000px;}
.y72{bottom:460.080000px;}
.y153{bottom:462.240000px;}
.y4d{bottom:466.920000px;}
.y91{bottom:473.400000px;}
.y23{bottom:474.120000px;}
.y13c{bottom:479.880000px;}
.y113{bottom:481.320000px;}
.y71{bottom:484.920000px;}
.ydb{bottom:486.360000px;}
.y152{bottom:487.080000px;}
.ybe{bottom:489.240000px;}
.yfc{bottom:490.320000px;}
.y4c{bottom:491.760000px;}
.y22{bottom:494.640000px;}
.y90{bottom:496.440000px;}
.yf7{bottom:499.680000px;}
.y13b{bottom:504.720000px;}
.y112{bottom:506.160000px;}
.y70{bottom:509.760000px;}
.y151{bottom:511.920000px;}
.ybd{bottom:512.280000px;}
.y21{bottom:515.520000px;}
.y4b{bottom:516.600000px;}
.yda{bottom:517.680000px;}
.y16f{bottom:518.400000px;}
.y8f{bottom:525.960000px;}
.yf6{bottom:526.680000px;}
.yab{bottom:528.840000px;}
.y13a{bottom:529.560000px;}
.y111{bottom:531.000000px;}
.ybc{bottom:533.160000px;}
.y6f{bottom:534.600000px;}
.y20{bottom:536.040000px;}
.y150{bottom:536.760000px;}
.y4a{bottom:541.440000px;}
.yaa{bottom:545.400000px;}
.yd9{bottom:548.640000px;}
.y8e{bottom:549.000000px;}
.y16e{bottom:549.360000px;}
.y139{bottom:554.400000px;}
.y110{bottom:555.840000px;}
.y1f{bottom:556.920000px;}
.y6e{bottom:559.440000px;}
.ybb{bottom:564.120000px;}
.y49{bottom:566.280000px;}
.ya9{bottom:568.800000px;}
.y1e{bottom:577.440000px;}
.y8d{bottom:578.520000px;}
.y138{bottom:578.880000px;}
.yd8{bottom:579.600000px;}
.y16d{bottom:580.320000px;}
.y10f{bottom:580.680000px;}
.y6d{bottom:584.280000px;}
.y48{bottom:590.760000px;}
.y14f{bottom:591.120000px;}
.ya8{bottom:596.880000px;}
.y1d{bottom:598.320000px;}
.y8c{bottom:601.560000px;}
.yba{bottom:604.440000px;}
.y10e{bottom:605.520000px;}
.y6c{bottom:609.120000px;}
.yd7{bottom:610.560000px;}
.y16c{bottom:611.280000px;}
.y137{bottom:613.080000px;}
.y1c{bottom:618.840000px;}
.ya7{bottom:620.280000px;}
.y47{bottom:624.960000px;}
.y10d{bottom:628.560000px;}
.y8b{bottom:631.080000px;}
.y6b{bottom:633.960000px;}
.y10b{bottom:634.500000px;}
.y136{bottom:637.920000px;}
.yb9{bottom:638.280000px;}
.y1b{bottom:639.720000px;}
.yd6{bottom:641.880000px;}
.y16b{bottom:642.600000px;}
.y14e{bottom:645.120000px;}
.ya6{bottom:648.000000px;}
.y46{bottom:649.800000px;}
.y8a{bottom:654.120000px;}
.y109{bottom:655.500000px;}
.y6a{bottom:658.800000px;}
.y1a{bottom:660.240000px;}
.y135{bottom:662.760000px;}
.yb8{bottom:663.120000px;}
.yd5{bottom:666.720000px;}
.y14d{bottom:669.960000px;}
.ya5{bottom:671.400000px;}
.y16a{bottom:673.560000px;}
.y45{bottom:674.640000px;}
.y107{bottom:678.000000px;}
.y19{bottom:681.120000px;}
.y89{bottom:683.280000px;}
.y69{bottom:683.640000px;}
.y134{bottom:687.600000px;}
.yb7{bottom:687.960000px;}
.y14c{bottom:694.800000px;}
.yd4{bottom:695.880000px;}
.y105{bottom:697.500000px;}
.ya4{bottom:699.120000px;}
.y44{bottom:699.480000px;}
.y18{bottom:701.640000px;}
.y169{bottom:703.080000px;}
.y68{bottom:708.480000px;}
.y133{bottom:712.440000px;}
.yb6{bottom:712.800000px;}
.y88{bottom:717.480000px;}
.y102{bottom:718.500000px;}
.yd3{bottom:720.720000px;}
.y17{bottom:722.520000px;}
.y170{bottom:723.000000px;}
.y43{bottom:724.320000px;}
.y67{bottom:733.320000px;}
.yb5{bottom:737.280000px;}
.y87{bottom:742.320000px;}
.y16{bottom:743.040000px;}
.yd2{bottom:745.560000px;}
.y42{bottom:749.160000px;}
.y101{bottom:749.520000px;}
.ya3{bottom:750.600000px;}
.y66{bottom:758.160000px;}
.y168{bottom:761.400000px;}
.y132{bottom:762.120000px;}
.y15{bottom:763.920000px;}
.y86{bottom:767.160000px;}
.yb4{bottom:768.600000px;}
.yd1{bottom:770.400000px;}
.y41{bottom:774.000000px;}
.y65{bottom:783.000000px;}
.y100{bottom:784.080000px;}
.y14{bottom:784.440000px;}
.y131{bottom:786.960000px;}
.yf5{bottom:790.560000px;}
.y167{bottom:791.280000px;}
.y85{bottom:792.000000px;}
.yfb{bottom:794.520000px;}
.yd0{bottom:795.240000px;}
.y40{bottom:798.840000px;}
.yb3{bottom:802.440000px;}
.ya2{bottom:803.160000px;}
.y13{bottom:805.320000px;}
.y64{bottom:807.840000px;}
.y130{bottom:811.800000px;}
.yff{bottom:814.680000px;}
.yf4{bottom:815.400000px;}
.y84{bottom:816.840000px;}
.y166{bottom:819.000000px;}
.ycf{bottom:820.080000px;}
.y3f{bottom:823.680000px;}
.yfa{bottom:825.120000px;}
.y12{bottom:825.840000px;}
.yb2{bottom:827.280000px;}
.y14b{bottom:828.000000px;}
.y63{bottom:832.680000px;}
.y12f{bottom:836.640000px;}
.yf3{bottom:840.240000px;}
.y83{bottom:841.680000px;}
.y3e{bottom:848.160000px;}
.y165{bottom:848.520000px;}
.yce{bottom:851.040000px;}
.y14a{bottom:852.840000px;}
.y11{bottom:856.080000px;}
.y62{bottom:857.520000px;}
.yb1{bottom:858.240000px;}
.y12e{bottom:861.480000px;}
.yf2{bottom:865.080000px;}
.y82{bottom:866.520000px;}
.y164{bottom:873.360000px;}
.y149{bottom:877.680000px;}
.y3d{bottom:882.360000px;}
.ycd{bottom:884.880000px;}
.y10{bottom:886.320000px;}
.ya1{bottom:886.680000px;}
.yf1{bottom:889.920000px;}
.y81{bottom:891.360000px;}
.yb0{bottom:898.200000px;}
.y148{bottom:902.520000px;}
.y61{bottom:906.840000px;}
.y3c{bottom:907.200000px;}
.ycc{bottom:909.720000px;}
.ya0{bottom:911.520000px;}
.yf{bottom:912.240000px;}
.yf0{bottom:914.760000px;}
.y80{bottom:916.200000px;}
.y12d{bottom:916.920000px;}
.yaf{bottom:925.200000px;}
.y163{bottom:927.360000px;}
.y3b{bottom:932.040000px;}
.ycb{bottom:934.560000px;}
.y9f{bottom:936.360000px;}
.yef{bottom:939.600000px;}
.y60{bottom:941.040000px;}
.ye{bottom:941.760000px;}
.y162{bottom:952.200000px;}
.y3a{bottom:956.880000px;}
.y12c{bottom:957.600000px;}
.yca{bottom:959.400000px;}
.y9e{bottom:961.200000px;}
.y12b{bottom:961.500000px;}
.yd{bottom:964.440000px;}
.y5f{bottom:965.880000px;}
.y161{bottom:977.040000px;}
.y39{bottom:981.720000px;}
.y12a{bottom:984.000000px;}
.yc9{bottom:984.240000px;}
.yc{bottom:986.040000px;}
.yee{bottom:989.280000px;}
.y5e{bottom:990.720000px;}
.y129{bottom:1006.500000px;}
.y38{bottom:1006.560000px;}
.yc8{bottom:1009.080000px;}
.y147{bottom:1010.880000px;}
.yed{bottom:1014.120000px;}
.y5d{bottom:1015.560000px;}
.yb{bottom:1016.640000px;}
.y127{bottom:1029.000000px;}
.y37{bottom:1031.400000px;}
.yc7{bottom:1033.920000px;}
.y146{bottom:1035.720000px;}
.yec{bottom:1038.960000px;}
.y5c{bottom:1040.400000px;}
.ya{bottom:1040.760000px;}
.y125{bottom:1051.500000px;}
.y36{bottom:1055.880000px;}
.yc6{bottom:1058.760000px;}
.y145{bottom:1060.560000px;}
.yeb{bottom:1063.800000px;}
.y5b{bottom:1065.240000px;}
.y122{bottom:1074.000000px;}
.y7{bottom:1081.080000px;}
.yc5{bottom:1083.600000px;}
.y160{bottom:1085.400000px;}
.y35{bottom:1090.080000px;}
.yea{bottom:1094.400000px;}
.y6{bottom:1098.360000px;}
.yc4{bottom:1108.440000px;}
.y34{bottom:1114.920000px;}
.y5{bottom:1117.800000px;}
.y4{bottom:1135.440000px;}
.y33{bottom:1139.760000px;}
.yae{bottom:1152.360000px;}
.y3{bottom:1152.720000px;}
.y2{bottom:1171.800000px;}
.y32{bottom:1174.680000px;}
.y1{bottom:1192.320000px;}
.y31{bottom:1193.400000px;}
.he{height:12.476953px;}
.hd{height:16.316016px;}
.h12{height:19.500000px;}
.hf{height:20.155078px;}
.h10{height:21.000000px;}
.h14{height:22.500000px;}
.h13{height:24.000000px;}
.h9{height:28.220625px;}
.h5{height:36.471094px;}
.h11{height:40.989375px;}
.h4{height:41.993438px;}
.h3{height:42.941250px;}
.h6{height:44.149219px;}
.ha{height:45.992813px;}
.h15{height:48.000000px;}
.hc{height:48.761719px;}
.hb{height:48.796875px;}
.h2{height:50.027344px;}
.h8{height:56.593125px;}
.h7{height:56.604375px;}
.h16{height:78.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:67.500000px;}
.w6{width:70.500000px;}
.wa{width:73.500000px;}
.w7{width:78.000000px;}
.w8{width:84.000000px;}
.w9{width:102.000000px;}
.w2{width:150.000000px;}
.w4{width:174.000000px;}
.w3{width:199.500000px;}
.wb{width:675.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x20{left:7.739868px;}
.x1e{left:9.120108px;}
.x2c{left:11.459856px;}
.x22{left:25.965120px;}
.x1{left:127.439928px;}
.x4{left:147.689928px;}
.x10{left:154.439928px;}
.x7{left:167.939928px;}
.x8{left:174.689928px;}
.x24{left:178.500000px;}
.x1d{left:186.000000px;}
.x2b{left:191.265012px;}
.x17{left:198.387108px;}
.x2{left:235.439928px;}
.x16{left:242.644428px;}
.x25{left:244.500000px;}
.x23{left:248.634180px;}
.x1c{left:270.905652px;}
.x12{left:280.613160px;}
.x14{left:290.575584px;}
.x1b{left:302.858280px;}
.x19{left:304.853400px;}
.xc{left:312.251580px;}
.x26{left:313.500000px;}
.xf{left:316.147356px;}
.xd{left:330.251580px;}
.xb{left:331.396380px;}
.x1f{left:334.500000px;}
.x27{left:390.000000px;}
.x3{left:433.795680px;}
.x6{left:446.339880px;}
.x5{left:469.190520px;}
.x28{left:472.500000px;}
.x21{left:532.500000px;}
.x29{left:541.500000px;}
.x18{left:604.559880px;}
.x9{left:609.239880px;}
.x2a{left:642.000000px;}
.x15{left:653.519880px;}
.x13{left:671.519880px;}
.x11{left:674.939880px;}
.xa{left:691.499520px;}
.xe{left:720.839880px;}
.x1a{left:725.519880px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:21.760000pt;}
.lsa{letter-spacing:-0.301056pt;}
.ls26{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.247296pt;}
.ls27{letter-spacing:-0.231168pt;}
.lse{letter-spacing:-0.225792pt;}
.lsc{letter-spacing:-0.215040pt;}
.ls8{letter-spacing:-0.168960pt;}
.ls7{letter-spacing:-0.157696pt;}
.ls9{letter-spacing:-0.152064pt;}
.ls13{letter-spacing:-0.141312pt;}
.lsd{letter-spacing:-0.134400pt;}
.ls10{letter-spacing:-0.129024pt;}
.ls11{letter-spacing:-0.117760pt;}
.ls1a{letter-spacing:-0.111872pt;}
.lsb{letter-spacing:-0.107520pt;}
.ls15{letter-spacing:-0.105984pt;}
.ls1e{letter-spacing:-0.070656pt;}
.ls14{letter-spacing:-0.052992pt;}
.ls16{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.053248pt;}
.ls24{letter-spacing:0.084480pt;}
.ls3{letter-spacing:0.106752pt;}
.ls28{letter-spacing:0.170752pt;}
.ls17{letter-spacing:0.178176pt;}
.ls19{letter-spacing:0.207872pt;}
.ls1{letter-spacing:0.213376pt;}
.ls2{letter-spacing:0.213760pt;}
.ls0{letter-spacing:0.215296pt;}
.ls1d{letter-spacing:0.244992pt;}
.ls25{letter-spacing:0.274560pt;}
.ls1b{letter-spacing:0.317312pt;}
.ls12{letter-spacing:0.319232pt;}
.ls22{letter-spacing:2.211712pt;}
.ls21{letter-spacing:4.252544pt;}
.ls23{letter-spacing:15.674752pt;}
.ls18{letter-spacing:19.361280pt;}
.ls1c{letter-spacing:24.770432pt;}
.ls1f{letter-spacing:30.208000pt;}
.ls20{letter-spacing:702.804736pt;}
.wsd{word-spacing:-18.879232pt;}
.ws13{word-spacing:-18.804992pt;}
.wse{word-spacing:-18.775296pt;}
.wsf{word-spacing:-18.738176pt;}
.ws1a{word-spacing:-18.730752pt;}
.ws12{word-spacing:-16.012800pt;}
.wsb{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.987200pt;}
.ws14{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.614016pt;}
.ws11{word-spacing:-14.578688pt;}
.ws0{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.927936pt;}
.ws3{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.332480pt;}
.ws2{word-spacing:-13.224960pt;}
.ws19{word-spacing:-13.208832pt;}
.wsa{word-spacing:-13.189120pt;}
.ws8{word-spacing:-13.138944pt;}
.ws5{word-spacing:-12.149760pt;}
.ws4{word-spacing:-11.923968pt;}
.ws6{word-spacing:-11.902464pt;}
.ws18{word-spacing:-0.316800pt;}
.ws16{word-spacing:-0.058880pt;}
.ws7{word-spacing:-0.053760pt;}
.ws10{word-spacing:0.000000pt;}
.ws17{word-spacing:16.083328pt;}
._b{margin-left:-4.749312pt;}
._16{margin-left:-3.095040pt;}
._13{margin-left:-1.879680pt;}
._1{margin-left:-0.959104pt;}
._0{width:0.908544pt;}
._2{width:2.120832pt;}
._5{width:3.193600pt;}
._14{width:4.653312pt;}
._4{width:5.561600pt;}
._6{width:7.238400pt;}
._3{width:8.729600pt;}
._7{width:9.664000pt;}
._8{width:10.886400pt;}
._15{width:12.652800pt;}
._9{width:13.753600pt;}
._11{width:14.694400pt;}
._e{width:15.626752pt;}
._a{width:17.068800pt;}
._18{width:18.476800pt;}
._d{width:19.731200pt;}
._10{width:21.504000pt;}
._1f{width:22.667008pt;}
._f{width:24.614400pt;}
._19{width:25.894400pt;}
._c{width:26.803200pt;}
._17{width:28.327296pt;}
._12{width:29.952000pt;}
._1a{width:43.187200pt;}
._1b{width:94.213120pt;}
._1e{width:113.216640pt;}
._1c{width:147.013504pt;}
._1d{width:159.998720pt;}
.fsa{font-size:16.640000pt;}
.fs9{font-size:21.760000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y174{bottom:-0.106667pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:4.053333pt;}
.y103{bottom:4.213333pt;}
.y106{bottom:4.960000pt;}
.y104{bottom:5.173333pt;}
.y128{bottom:5.653333pt;}
.y126{bottom:5.813333pt;}
.y10c{bottom:6.240000pt;}
.y10a{bottom:7.093333pt;}
.y124{bottom:9.173333pt;}
.y173{bottom:17.813333pt;}
.y9{bottom:21.120000pt;}
.y123{bottom:27.413333pt;}
.y172{bottom:36.053333pt;}
.y8{bottom:39.040000pt;}
.y171{bottom:54.613333pt;}
.yad{bottom:99.840000pt;}
.y30{bottom:105.600000pt;}
.yc3{bottom:109.440000pt;}
.y5a{bottom:109.760000pt;}
.y121{bottom:110.720000pt;}
.y7f{bottom:113.920000pt;}
.ye9{bottom:116.480000pt;}
.yfe{bottom:123.520000pt;}
.yac{bottom:123.840000pt;}
.y2f{bottom:127.680000pt;}
.y9d{bottom:129.920000pt;}
.y59{bottom:131.840000pt;}
.y120{bottom:132.800000pt;}
.yc2{bottom:133.440000pt;}
.y15f{bottom:134.080000pt;}
.y7e{bottom:136.000000pt;}
.ye8{bottom:138.560000pt;}
.y2e{bottom:149.760000pt;}
.y9c{bottom:150.400000pt;}
.yfd{bottom:150.720000pt;}
.y58{bottom:153.920000pt;}
.y11f{bottom:154.880000pt;}
.y15e{bottom:156.160000pt;}
.y7d{bottom:158.080000pt;}
.ye7{bottom:160.640000pt;}
.y9b{bottom:170.560000pt;}
.y57{bottom:176.000000pt;}
.y11e{bottom:176.960000pt;}
.y15d{bottom:178.240000pt;}
.yf9{bottom:178.880000pt;}
.y2d{bottom:179.840000pt;}
.y7c{bottom:180.160000pt;}
.ye6{bottom:182.720000pt;}
.y9a{bottom:190.720000pt;}
.y56{bottom:198.080000pt;}
.y11d{bottom:199.040000pt;}
.y15c{bottom:200.320000pt;}
.y2c{bottom:201.920000pt;}
.y7b{bottom:202.240000pt;}
.ye5{bottom:204.800000pt;}
.yf8{bottom:206.080000pt;}
.y99{bottom:210.880000pt;}
.y55{bottom:220.160000pt;}
.y2b{bottom:224.000000pt;}
.y7a{bottom:224.320000pt;}
.y11c{bottom:225.280000pt;}
.y15b{bottom:226.240000pt;}
.ye4{bottom:226.880000pt;}
.y98{bottom:231.360000pt;}
.y54{bottom:242.240000pt;}
.y2a{bottom:246.080000pt;}
.y79{bottom:246.400000pt;}
.y11b{bottom:247.360000pt;}
.y15a{bottom:248.320000pt;}
.ye3{bottom:248.960000pt;}
.y144{bottom:249.920000pt;}
.y97{bottom:251.520000pt;}
.y53{bottom:264.320000pt;}
.y29{bottom:268.160000pt;}
.y78{bottom:268.480000pt;}
.y11a{bottom:269.440000pt;}
.y159{bottom:270.400000pt;}
.ye2{bottom:271.040000pt;}
.y143{bottom:271.360000pt;}
.y96{bottom:272.320000pt;}
.y142{bottom:279.680000pt;}
.y52{bottom:286.400000pt;}
.y28{bottom:290.240000pt;}
.y77{bottom:290.560000pt;}
.y119{bottom:291.520000pt;}
.y141{bottom:292.800000pt;}
.ye1{bottom:293.120000pt;}
.y158{bottom:296.640000pt;}
.y95{bottom:299.840000pt;}
.y27{bottom:312.320000pt;}
.y76{bottom:312.640000pt;}
.y118{bottom:313.600000pt;}
.y140{bottom:314.880000pt;}
.ye0{bottom:315.200000pt;}
.y51{bottom:316.160000pt;}
.y157{bottom:318.720000pt;}
.y94{bottom:327.040000pt;}
.y75{bottom:334.720000pt;}
.y117{bottom:335.680000pt;}
.y26{bottom:339.520000pt;}
.y156{bottom:340.800000pt;}
.y13f{bottom:342.080000pt;}
.ydf{bottom:342.720000pt;}
.y50{bottom:348.800000pt;}
.y74{bottom:356.480000pt;}
.y116{bottom:357.760000pt;}
.yde{bottom:360.960000pt;}
.y155{bottom:362.880000pt;}
.yc1{bottom:363.200000pt;}
.y4f{bottom:370.880000pt;}
.y93{bottom:374.080000pt;}
.ydd{bottom:377.280000pt;}
.y115{bottom:379.840000pt;}
.y13e{bottom:382.400000pt;}
.y25{bottom:384.640000pt;}
.yc0{bottom:385.280000pt;}
.y73{bottom:386.880000pt;}
.y154{bottom:388.800000pt;}
.y4e{bottom:392.960000pt;}
.y92{bottom:394.880000pt;}
.y24{bottom:402.880000pt;}
.y13d{bottom:404.480000pt;}
.ydc{bottom:404.800000pt;}
.y114{bottom:405.760000pt;}
.ybf{bottom:407.360000pt;}
.y72{bottom:408.960000pt;}
.y153{bottom:410.880000pt;}
.y4d{bottom:415.040000pt;}
.y91{bottom:420.800000pt;}
.y23{bottom:421.440000pt;}
.y13c{bottom:426.560000pt;}
.y113{bottom:427.840000pt;}
.y71{bottom:431.040000pt;}
.ydb{bottom:432.320000pt;}
.y152{bottom:432.960000pt;}
.ybe{bottom:434.880000pt;}
.yfc{bottom:435.840000pt;}
.y4c{bottom:437.120000pt;}
.y22{bottom:439.680000pt;}
.y90{bottom:441.280000pt;}
.yf7{bottom:444.160000pt;}
.y13b{bottom:448.640000pt;}
.y112{bottom:449.920000pt;}
.y70{bottom:453.120000pt;}
.y151{bottom:455.040000pt;}
.ybd{bottom:455.360000pt;}
.y21{bottom:458.240000pt;}
.y4b{bottom:459.200000pt;}
.yda{bottom:460.160000pt;}
.y16f{bottom:460.800000pt;}
.y8f{bottom:467.520000pt;}
.yf6{bottom:468.160000pt;}
.yab{bottom:470.080000pt;}
.y13a{bottom:470.720000pt;}
.y111{bottom:472.000000pt;}
.ybc{bottom:473.920000pt;}
.y6f{bottom:475.200000pt;}
.y20{bottom:476.480000pt;}
.y150{bottom:477.120000pt;}
.y4a{bottom:481.280000pt;}
.yaa{bottom:484.800000pt;}
.yd9{bottom:487.680000pt;}
.y8e{bottom:488.000000pt;}
.y16e{bottom:488.320000pt;}
.y139{bottom:492.800000pt;}
.y110{bottom:494.080000pt;}
.y1f{bottom:495.040000pt;}
.y6e{bottom:497.280000pt;}
.ybb{bottom:501.440000pt;}
.y49{bottom:503.360000pt;}
.ya9{bottom:505.600000pt;}
.y1e{bottom:513.280000pt;}
.y8d{bottom:514.240000pt;}
.y138{bottom:514.560000pt;}
.yd8{bottom:515.200000pt;}
.y16d{bottom:515.840000pt;}
.y10f{bottom:516.160000pt;}
.y6d{bottom:519.360000pt;}
.y48{bottom:525.120000pt;}
.y14f{bottom:525.440000pt;}
.ya8{bottom:530.560000pt;}
.y1d{bottom:531.840000pt;}
.y8c{bottom:534.720000pt;}
.yba{bottom:537.280000pt;}
.y10e{bottom:538.240000pt;}
.y6c{bottom:541.440000pt;}
.yd7{bottom:542.720000pt;}
.y16c{bottom:543.360000pt;}
.y137{bottom:544.960000pt;}
.y1c{bottom:550.080000pt;}
.ya7{bottom:551.360000pt;}
.y47{bottom:555.520000pt;}
.y10d{bottom:558.720000pt;}
.y8b{bottom:560.960000pt;}
.y6b{bottom:563.520000pt;}
.y10b{bottom:564.000000pt;}
.y136{bottom:567.040000pt;}
.yb9{bottom:567.360000pt;}
.y1b{bottom:568.640000pt;}
.yd6{bottom:570.560000pt;}
.y16b{bottom:571.200000pt;}
.y14e{bottom:573.440000pt;}
.ya6{bottom:576.000000pt;}
.y46{bottom:577.600000pt;}
.y8a{bottom:581.440000pt;}
.y109{bottom:582.666667pt;}
.y6a{bottom:585.600000pt;}
.y1a{bottom:586.880000pt;}
.y135{bottom:589.120000pt;}
.yb8{bottom:589.440000pt;}
.yd5{bottom:592.640000pt;}
.y14d{bottom:595.520000pt;}
.ya5{bottom:596.800000pt;}
.y16a{bottom:598.720000pt;}
.y45{bottom:599.680000pt;}
.y107{bottom:602.666667pt;}
.y19{bottom:605.440000pt;}
.y89{bottom:607.360000pt;}
.y69{bottom:607.680000pt;}
.y134{bottom:611.200000pt;}
.yb7{bottom:611.520000pt;}
.y14c{bottom:617.600000pt;}
.yd4{bottom:618.560000pt;}
.y105{bottom:620.000000pt;}
.ya4{bottom:621.440000pt;}
.y44{bottom:621.760000pt;}
.y18{bottom:623.680000pt;}
.y169{bottom:624.960000pt;}
.y68{bottom:629.760000pt;}
.y133{bottom:633.280000pt;}
.yb6{bottom:633.600000pt;}
.y88{bottom:637.760000pt;}
.y102{bottom:638.666667pt;}
.yd3{bottom:640.640000pt;}
.y17{bottom:642.240000pt;}
.y170{bottom:642.666667pt;}
.y43{bottom:643.840000pt;}
.y67{bottom:651.840000pt;}
.yb5{bottom:655.360000pt;}
.y87{bottom:659.840000pt;}
.y16{bottom:660.480000pt;}
.yd2{bottom:662.720000pt;}
.y42{bottom:665.920000pt;}
.y101{bottom:666.240000pt;}
.ya3{bottom:667.200000pt;}
.y66{bottom:673.920000pt;}
.y168{bottom:676.800000pt;}
.y132{bottom:677.440000pt;}
.y15{bottom:679.040000pt;}
.y86{bottom:681.920000pt;}
.yb4{bottom:683.200000pt;}
.yd1{bottom:684.800000pt;}
.y41{bottom:688.000000pt;}
.y65{bottom:696.000000pt;}
.y100{bottom:696.960000pt;}
.y14{bottom:697.280000pt;}
.y131{bottom:699.520000pt;}
.yf5{bottom:702.720000pt;}
.y167{bottom:703.360000pt;}
.y85{bottom:704.000000pt;}
.yfb{bottom:706.240000pt;}
.yd0{bottom:706.880000pt;}
.y40{bottom:710.080000pt;}
.yb3{bottom:713.280000pt;}
.ya2{bottom:713.920000pt;}
.y13{bottom:715.840000pt;}
.y64{bottom:718.080000pt;}
.y130{bottom:721.600000pt;}
.yff{bottom:724.160000pt;}
.yf4{bottom:724.800000pt;}
.y84{bottom:726.080000pt;}
.y166{bottom:728.000000pt;}
.ycf{bottom:728.960000pt;}
.y3f{bottom:732.160000pt;}
.yfa{bottom:733.440000pt;}
.y12{bottom:734.080000pt;}
.yb2{bottom:735.360000pt;}
.y14b{bottom:736.000000pt;}
.y63{bottom:740.160000pt;}
.y12f{bottom:743.680000pt;}
.yf3{bottom:746.880000pt;}
.y83{bottom:748.160000pt;}
.y3e{bottom:753.920000pt;}
.y165{bottom:754.240000pt;}
.yce{bottom:756.480000pt;}
.y14a{bottom:758.080000pt;}
.y11{bottom:760.960000pt;}
.y62{bottom:762.240000pt;}
.yb1{bottom:762.880000pt;}
.y12e{bottom:765.760000pt;}
.yf2{bottom:768.960000pt;}
.y82{bottom:770.240000pt;}
.y164{bottom:776.320000pt;}
.y149{bottom:780.160000pt;}
.y3d{bottom:784.320000pt;}
.ycd{bottom:786.560000pt;}
.y10{bottom:787.840000pt;}
.ya1{bottom:788.160000pt;}
.yf1{bottom:791.040000pt;}
.y81{bottom:792.320000pt;}
.yb0{bottom:798.400000pt;}
.y148{bottom:802.240000pt;}
.y61{bottom:806.080000pt;}
.y3c{bottom:806.400000pt;}
.ycc{bottom:808.640000pt;}
.ya0{bottom:810.240000pt;}
.yf{bottom:810.880000pt;}
.yf0{bottom:813.120000pt;}
.y80{bottom:814.400000pt;}
.y12d{bottom:815.040000pt;}
.yaf{bottom:822.400000pt;}
.y163{bottom:824.320000pt;}
.y3b{bottom:828.480000pt;}
.ycb{bottom:830.720000pt;}
.y9f{bottom:832.320000pt;}
.yef{bottom:835.200000pt;}
.y60{bottom:836.480000pt;}
.ye{bottom:837.120000pt;}
.y162{bottom:846.400000pt;}
.y3a{bottom:850.560000pt;}
.y12c{bottom:851.200000pt;}
.yca{bottom:852.800000pt;}
.y9e{bottom:854.400000pt;}
.y12b{bottom:854.666667pt;}
.yd{bottom:857.280000pt;}
.y5f{bottom:858.560000pt;}
.y161{bottom:868.480000pt;}
.y39{bottom:872.640000pt;}
.y12a{bottom:874.666667pt;}
.yc9{bottom:874.880000pt;}
.yc{bottom:876.480000pt;}
.yee{bottom:879.360000pt;}
.y5e{bottom:880.640000pt;}
.y129{bottom:894.666667pt;}
.y38{bottom:894.720000pt;}
.yc8{bottom:896.960000pt;}
.y147{bottom:898.560000pt;}
.yed{bottom:901.440000pt;}
.y5d{bottom:902.720000pt;}
.yb{bottom:903.680000pt;}
.y127{bottom:914.666667pt;}
.y37{bottom:916.800000pt;}
.yc7{bottom:919.040000pt;}
.y146{bottom:920.640000pt;}
.yec{bottom:923.520000pt;}
.y5c{bottom:924.800000pt;}
.ya{bottom:925.120000pt;}
.y125{bottom:934.666667pt;}
.y36{bottom:938.560000pt;}
.yc6{bottom:941.120000pt;}
.y145{bottom:942.720000pt;}
.yeb{bottom:945.600000pt;}
.y5b{bottom:946.880000pt;}
.y122{bottom:954.666667pt;}
.y7{bottom:960.960000pt;}
.yc5{bottom:963.200000pt;}
.y160{bottom:964.800000pt;}
.y35{bottom:968.960000pt;}
.yea{bottom:972.800000pt;}
.y6{bottom:976.320000pt;}
.yc4{bottom:985.280000pt;}
.y34{bottom:991.040000pt;}
.y5{bottom:993.600000pt;}
.y4{bottom:1009.280000pt;}
.y33{bottom:1013.120000pt;}
.yae{bottom:1024.320000pt;}
.y3{bottom:1024.640000pt;}
.y2{bottom:1041.600000pt;}
.y32{bottom:1044.160000pt;}
.y1{bottom:1059.840000pt;}
.y31{bottom:1060.800000pt;}
.he{height:11.090625pt;}
.hd{height:14.503125pt;}
.h12{height:17.333333pt;}
.hf{height:17.915625pt;}
.h10{height:18.666667pt;}
.h14{height:20.000000pt;}
.h13{height:21.333333pt;}
.h9{height:25.085000pt;}
.h5{height:32.418750pt;}
.h11{height:36.435000pt;}
.h4{height:37.327500pt;}
.h3{height:38.170000pt;}
.h6{height:39.243750pt;}
.ha{height:40.882500pt;}
.h15{height:42.666667pt;}
.hc{height:43.343750pt;}
.hb{height:43.375000pt;}
.h2{height:44.468750pt;}
.h8{height:50.305000pt;}
.h7{height:50.315000pt;}
.h16{height:69.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:60.000000pt;}
.w6{width:62.666667pt;}
.wa{width:65.333333pt;}
.w7{width:69.333333pt;}
.w8{width:74.666667pt;}
.w9{width:90.666667pt;}
.w2{width:133.333333pt;}
.w4{width:154.666667pt;}
.w3{width:177.333333pt;}
.wb{width:600.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x20{left:6.879883pt;}
.x1e{left:8.106763pt;}
.x2c{left:10.186539pt;}
.x22{left:23.080107pt;}
.x1{left:113.279936pt;}
.x4{left:131.279936pt;}
.x10{left:137.279936pt;}
.x7{left:149.279936pt;}
.x8{left:155.279936pt;}
.x24{left:158.666667pt;}
.x1d{left:165.333333pt;}
.x2b{left:170.013344pt;}
.x17{left:176.344096pt;}
.x2{left:209.279936pt;}
.x16{left:215.683936pt;}
.x25{left:217.333333pt;}
.x23{left:221.008160pt;}
.x1c{left:240.805024pt;}
.x12{left:249.433920pt;}
.x14{left:258.289408pt;}
.x1b{left:269.207360pt;}
.x19{left:270.980800pt;}
.xc{left:277.556960pt;}
.x26{left:278.666667pt;}
.xf{left:281.019872pt;}
.xd{left:293.556960pt;}
.xb{left:294.574560pt;}
.x1f{left:297.333333pt;}
.x27{left:346.666667pt;}
.x3{left:385.596160pt;}
.x6{left:396.746560pt;}
.x5{left:417.058240pt;}
.x28{left:420.000000pt;}
.x21{left:473.333333pt;}
.x29{left:481.333333pt;}
.x18{left:537.386560pt;}
.x9{left:541.546560pt;}
.x2a{left:570.666667pt;}
.x15{left:580.906560pt;}
.x13{left:596.906560pt;}
.x11{left:599.946560pt;}
.xa{left:614.666240pt;}
.xe{left:640.746560pt;}
.x1a{left:644.906560pt;}
}




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