
    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_fa39dc582398176794f7cf65.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000286;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_c2248cfba240657049d42b8e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935547;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_941caf6f9b8897b9395facd8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.046875;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_3f26c207c5e4ca0c6a54a61b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff5{font-family:ff5;line-height:0.935547;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_897fad9ffd4ff5fb40e54001.woff')format("woff");}.ff6{font-family:ff6;line-height:1.062500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_4adef45ed6d68753ed907a38.woff')format("woff");}.ff8{font-family:ff8;line-height:0.930664;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_8730b9ff880cd30ae2d4624a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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_cd35fe34124254b00e341222.woff')format("woff");}.ffc{font-family:ffc;line-height:1.062500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ffd{font-family:ffd;line-height:0.935547;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_7c73049a285401feb6675d7f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.937500;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_e6b4910c23627dba0352e065.woff')format("woff");}.fff{font-family:fff;line-height:0.935547;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_09dd0f66f61ac654aad57be0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.930664;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff11{font-family:ff11;line-height:0.935547;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_2b987e4161aac88be8f99612.woff')format("woff");}.ff12{font-family:ff12;line-height:0.930664;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff13{font-family:ff13;line-height:0.935547;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_12bb2a63734517d84edf890f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.930664;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff15{font-family:ff15;line-height:0.935547;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_0d654d9a6502199d9ce822f5.woff')format("woff");}.ff16{font-family:ff16;line-height:0.937500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff17{font-family:ff17;line-height:0.935547;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_164316fd69afa5775ab8b367.woff')format("woff");}.ff18{font-family:ff18;line-height:0.937500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff19{font-family:ff19;line-height:0.935547;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_00df74c166daf2a2c4235b31.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.937500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.935547;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_30962312425fc8de1d9c41ab.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.046875;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.935547;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_99b5697a77ee4c078153e2b1.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.062500;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_e6b4910c23627dba0352e065.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.935547;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:ff20;src:url('chunks/assets/font_550318d4959f22fe8f60e7b5.woff')format("woff");}.ff20{font-family:ff20;line-height:0.937500;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:ff21;src:url('chunks/assets/font_e6b4910c23627dba0352e065.woff')format("woff");}.ff21{font-family:ff21;line-height:0.935547;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:ff22;src:url('chunks/assets/font_e6f89e9e96b2332805e713fa.woff')format("woff");}.ff22{font-family:ff22;line-height:0.937500;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:ff23;src:url('chunks/assets/font_4d6633bbc4769b03243b2a98.woff')format("woff");}.ff23{font-family:ff23;line-height:0.935547;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.213881px;}
.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;}
}
.ws0{word-spacing:-55.591833px;}
.ws1{word-spacing:-13.488207px;}
.ws4{word-spacing:-12.374037px;}
.ws5{word-spacing:-11.251427px;}
.ws2{word-spacing:-11.241492px;}
.ws3{word-spacing:0.000000px;}
._23{margin-left:-1.213881px;}
._0{width:1.208045px;}
._6{width:2.504895px;}
._7{width:3.650113px;}
._1{width:4.682130px;}
._5{width:5.743806px;}
._d{width:6.959118px;}
._c{width:8.027325px;}
._a{width:9.979469px;}
._f{width:11.249847px;}
._17{width:12.688049px;}
._1c{width:14.621690px;}
._10{width:15.811569px;}
._2{width:16.817898px;}
._e{width:18.234196px;}
._16{width:19.836524px;}
._b{width:21.284776px;}
._14{width:22.647605px;}
._8{width:23.657640px;}
._12{width:25.127971px;}
._11{width:27.086335px;}
._22{width:28.200954px;}
._4{width:29.352413px;}
._3{width:31.349751px;}
._1d{width:32.722005px;}
._20{width:34.325578px;}
._1e{width:35.935269px;}
._1a{width:37.548879px;}
._21{width:39.179484px;}
._18{width:40.620169px;}
._25{width:41.622695px;}
._15{width:42.666015px;}
._19{width:44.327652px;}
._24{width:45.465443px;}
._1f{width:46.720029px;}
._13{width:48.825389px;}
._27{width:52.159446px;}
._1b{width:54.009371px;}
._9{width:59.587680px;}
._26{width:61.409011px;}
._28{width:73.366312px;}
._2b{width:91.076538px;}
._2c{width:92.147490px;}
._29{width:327.344595px;}
._2a{width:446.333414px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(33,35,77);}
.fc0{color:rgb(7,0,89);}
.fs5{font-size:47.975841px;}
.fs9{font-size:59.917577px;}
.fs1{font-size:59.954623px;}
.fs2{font-size:59.962591px;}
.fs8{font-size:60.007609px;}
.fsa{font-size:65.936591px;}
.fs6{font-size:65.994864px;}
.fs4{font-size:71.937102px;}
.fs7{font-size:77.924356px;}
.fs3{font-size:119.909246px;}
.fs0{font-size:179.908846px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.021233px;}
.y2e{bottom:3.096649px;}
.y59{bottom:3.109722px;}
.y41{bottom:3.146999px;}
.y9f{bottom:3.213216px;}
.y2f{bottom:3.447445px;}
.y5b{bottom:3.464696px;}
.y3{bottom:3.608100px;}
.y5{bottom:3.703602px;}
.y146{bottom:4.663822px;}
.yc{bottom:6.839583px;}
.ya0{bottom:11.327973px;}
.y4b{bottom:17.014187px;}
.y2d{bottom:17.089603px;}
.y58{bottom:17.102675px;}
.y40{bottom:17.139953px;}
.y9e{bottom:17.206170px;}
.y145{bottom:24.903567px;}
.y6{bottom:25.335020px;}
.yc3{bottom:29.485775px;}
.y4a{bottom:31.007141px;}
.y2c{bottom:31.082556px;}
.y57{bottom:31.095629px;}
.y3f{bottom:31.132906px;}
.y9d{bottom:31.199123px;}
.y110{bottom:35.874891px;}
.y2{bottom:36.216578px;}
.y2a{bottom:36.612115px;}
.y86{bottom:37.212725px;}
.ye0{bottom:38.106437px;}
.yb{bottom:42.821353px;}
.y49{bottom:45.000094px;}
.y56{bottom:45.088583px;}
.y3e{bottom:45.125860px;}
.y9c{bottom:45.192077px;}
.y123{bottom:46.727077px;}
.yc2{bottom:54.245104px;}
.y48{bottom:58.993048px;}
.y55{bottom:59.081536px;}
.y3d{bottom:59.118814px;}
.y10f{bottom:60.634220px;}
.ydf{bottom:62.865766px;}
.y85{bottom:63.097478px;}
.y29{bottom:63.622292px;}
.y122{bottom:71.486406px;}
.y47{bottom:72.986001px;}
.y54{bottom:73.074490px;}
.y3c{bottom:73.111767px;}
.ya{bottom:78.803122px;}
.yc1{bottom:79.004432px;}
.y10e{bottom:85.393549px;}
.y46{bottom:86.978955px;}
.y53{bottom:87.067444px;}
.y3b{bottom:87.104721px;}
.yde{bottom:87.625094px;}
.y84{bottom:88.982231px;}
.y28{bottom:90.632469px;}
.y121{bottom:96.245735px;}
.y45{bottom:100.971909px;}
.y52{bottom:101.060397px;}
.y3a{bottom:101.097675px;}
.yc0{bottom:103.763761px;}
.y10d{bottom:110.152877px;}
.ydd{bottom:112.384423px;}
.y9{bottom:114.784891px;}
.y83{bottom:114.866984px;}
.y44{bottom:114.964862px;}
.y51{bottom:115.053351px;}
.y39{bottom:115.090628px;}
.y27{bottom:117.642645px;}
.y120{bottom:121.005063px;}
.ybf{bottom:128.523090px;}
.y43{bottom:128.957816px;}
.y50{bottom:129.046304px;}
.y38{bottom:129.083582px;}
.y10c{bottom:134.912206px;}
.ydc{bottom:137.143752px;}
.y82{bottom:140.751736px;}
.y4f{bottom:143.039258px;}
.y37{bottom:143.076535px;}
.y26{bottom:144.652822px;}
.y11f{bottom:145.764392px;}
.ybe{bottom:153.282419px;}
.y4e{bottom:157.032212px;}
.y36{bottom:157.069489px;}
.y10b{bottom:159.671535px;}
.ydb{bottom:161.903081px;}
.y81{bottom:166.636489px;}
.y11e{bottom:170.523721px;}
.y35{bottom:171.062443px;}
.y25{bottom:171.662999px;}
.ybd{bottom:178.041747px;}
.y10a{bottom:184.430864px;}
.y34{bottom:185.055396px;}
.yda{bottom:186.662409px;}
.y80{bottom:192.521242px;}
.y11d{bottom:195.283050px;}
.y24{bottom:198.673176px;}
.y33{bottom:199.048350px;}
.y109{bottom:209.190192px;}
.yd9{bottom:211.421738px;}
.y32{bottom:213.041303px;}
.y7f{bottom:218.405995px;}
.y11c{bottom:220.042378px;}
.y23{bottom:225.683353px;}
.y31{bottom:227.034257px;}
.y108{bottom:233.949521px;}
.y7e{bottom:244.290748px;}
.y11b{bottom:244.801707px;}
.y22{bottom:252.693529px;}
.y144{bottom:257.535010px;}
.y107{bottom:258.708850px;}
.y11a{bottom:269.561036px;}
.y7d{bottom:270.175500px;}
.y21{bottom:279.703706px;}
.y106{bottom:283.468179px;}
.y119{bottom:294.320364px;}
.y7c{bottom:296.060253px;}
.y20{bottom:306.713883px;}
.y105{bottom:308.227507px;}
.yd8{bottom:311.606783px;}
.ybc{bottom:313.230233px;}
.y118{bottom:319.079693px;}
.y7b{bottom:321.945006px;}
.y143{bottom:330.014653px;}
.y104{bottom:332.986836px;}
.y1f{bottom:333.724060px;}
.yd7{bottom:336.366112px;}
.y42{bottom:337.455007px;}
.ybb{bottom:337.989562px;}
.y117{bottom:343.839022px;}
.y7a{bottom:347.829759px;}
.y103{bottom:357.746165px;}
.y1e{bottom:360.734237px;}
.yd6{bottom:361.125441px;}
.yba{bottom:362.748891px;}
.y116{bottom:368.598351px;}
.y142{bottom:372.783142px;}
.y79{bottom:373.714511px;}
.y102{bottom:382.505494px;}
.yd5{bottom:385.884769px;}
.yb9{bottom:387.508220px;}
.y1d{bottom:387.744413px;}
.y115{bottom:393.357679px;}
.y141{bottom:394.166198px;}
.y78{bottom:399.599264px;}
.y101{bottom:407.264822px;}
.yd4{bottom:410.644098px;}
.yb8{bottom:412.267548px;}
.y1c{bottom:414.754590px;}
.y140{bottom:415.549255px;}
.y114{bottom:418.117008px;}
.y77{bottom:425.484017px;}
.y100{bottom:432.024151px;}
.yd3{bottom:435.403427px;}
.y13f{bottom:436.932312px;}
.yb7{bottom:437.026877px;}
.y1b{bottom:441.764767px;}
.y113{bottom:442.876337px;}
.y76{bottom:451.368770px;}
.yff{bottom:456.783480px;}
.y13e{bottom:458.315368px;}
.yd2{bottom:460.162756px;}
.y9b{bottom:461.655001px;}
.yb6{bottom:461.786206px;}
.y112{bottom:467.635666px;}
.y1a{bottom:468.774944px;}
.y75{bottom:477.253522px;}
.y13d{bottom:479.698425px;}
.yfe{bottom:481.542808px;}
.yb5{bottom:486.545535px;}
.y9a{bottom:489.331627px;}
.y111{bottom:492.394994px;}
.y19{bottom:495.785121px;}
.y13c{bottom:501.081481px;}
.y74{bottom:503.138275px;}
.yfd{bottom:506.302137px;}
.y99{bottom:514.090956px;}
.y13b{bottom:522.464538px;}
.y18{bottom:522.795297px;}
.y73{bottom:529.023028px;}
.yfc{bottom:531.061466px;}
.y30{bottom:537.974998px;}
.y98{bottom:538.850284px;}
.y13a{bottom:543.847595px;}
.y17{bottom:549.805474px;}
.y72{bottom:554.907781px;}
.yfb{bottom:555.820795px;}
.y97{bottom:563.609613px;}
.y139{bottom:565.230651px;}
.y16{bottom:576.815651px;}
.yfa{bottom:580.580123px;}
.y71{bottom:580.792533px;}
.y96{bottom:588.368942px;}
.y15{bottom:603.825828px;}
.yd1{bottom:604.076830px;}
.yf9{bottom:605.339452px;}
.y70{bottom:606.677286px;}
.y138{bottom:610.698234px;}
.y95{bottom:613.128271px;}
.yb4{bottom:621.733982px;}
.yd0{bottom:628.836159px;}
.yf8{bottom:630.098781px;}
.y14{bottom:630.836005px;}
.y137{bottom:632.081291px;}
.y6f{bottom:632.562039px;}
.y94{bottom:637.887599px;}
.yb3{bottom:646.493310px;}
.y136{bottom:653.464347px;}
.yae{bottom:653.492558px;}
.ycf{bottom:653.595487px;}
.yf7{bottom:654.858110px;}
.y13{bottom:657.846181px;}
.y6e{bottom:658.446792px;}
.y93{bottom:662.646928px;}
.yb2{bottom:671.252639px;}
.y135{bottom:674.847404px;}
.yad{bottom:678.251887px;}
.yce{bottom:678.354816px;}
.yf6{bottom:679.617438px;}
.y6d{bottom:684.331544px;}
.y12{bottom:684.856358px;}
.y92{bottom:687.406257px;}
.yb1{bottom:696.011968px;}
.yac{bottom:703.011216px;}
.ycd{bottom:703.114145px;}
.yf5{bottom:704.376767px;}
.y6c{bottom:710.216297px;}
.y11{bottom:711.866535px;}
.y91{bottom:712.165586px;}
.yb0{bottom:720.771297px;}
.yab{bottom:727.770544px;}
.ycc{bottom:727.873474px;}
.yf4{bottom:729.136096px;}
.y6b{bottom:736.101050px;}
.y90{bottom:736.924914px;}
.y10{bottom:738.876712px;}
.yaf{bottom:745.530625px;}
.y134{bottom:751.072508px;}
.yaa{bottom:752.529873px;}
.ycb{bottom:752.632802px;}
.yf3{bottom:753.895424px;}
.y8f{bottom:761.684243px;}
.y6a{bottom:761.985803px;}
.yf{bottom:765.886889px;}
.ya9{bottom:777.289202px;}
.yf2{bottom:778.654753px;}
.y8e{bottom:786.443572px;}
.y69{bottom:787.870555px;}
.ye{bottom:792.897065px;}
.y133{bottom:797.214908px;}
.ya8{bottom:802.048531px;}
.y125{bottom:803.403788px;}
.yf1{bottom:803.414082px;}
.y8d{bottom:811.202900px;}
.y68{bottom:813.755308px;}
.y132{bottom:819.723389px;}
.yd{bottom:819.907242px;}
.ya7{bottom:826.807859px;}
.y124{bottom:828.163117px;}
.yf0{bottom:828.173411px;}
.y8c{bottom:835.962229px;}
.y67{bottom:839.640061px;}
.y131{bottom:842.231869px;}
.y2b{bottom:845.054985px;}
.ya6{bottom:851.567188px;}
.yec{bottom:852.922446px;}
.yef{bottom:852.932739px;}
.y7{bottom:853.766178px;}
.y8b{bottom:860.721558px;}
.y130{bottom:864.740350px;}
.y66{bottom:865.524814px;}
.ya5{bottom:876.326517px;}
.yeb{bottom:877.681774px;}
.yee{bottom:877.692068px;}
.yca{bottom:881.843469px;}
.y8a{bottom:885.480887px;}
.y12f{bottom:887.248831px;}
.y65{bottom:891.409567px;}
.ya4{bottom:901.085846px;}
.yea{bottom:902.441103px;}
.yed{bottom:902.451397px;}
.yc9{bottom:906.602798px;}
.y12e{bottom:909.757311px;}
.y89{bottom:910.240215px;}
.y64{bottom:917.294319px;}
.ya3{bottom:925.845174px;}
.ye9{bottom:927.200432px;}
.yc8{bottom:931.362127px;}
.y12d{bottom:932.265792px;}
.y88{bottom:934.999544px;}
.y4d{bottom:936.134982px;}
.y63{bottom:943.179072px;}
.ya2{bottom:950.604503px;}
.ye8{bottom:951.959760px;}
.y12c{bottom:954.774273px;}
.yc7{bottom:956.121455px;}
.y87{bottom:959.758873px;}
.y62{bottom:969.063825px;}
.y8{bottom:972.134980px;}
.ya1{bottom:975.363832px;}
.ye7{bottom:976.719089px;}
.y12b{bottom:977.282753px;}
.yc6{bottom:980.880784px;}
.y61{bottom:994.948578px;}
.y12a{bottom:999.791234px;}
.ye6{bottom:1001.478418px;}
.yc5{bottom:1005.640113px;}
.y60{bottom:1020.833330px;}
.y129{bottom:1022.299715px;}
.ye5{bottom:1026.237747px;}
.yc4{bottom:1030.399441px;}
.y5f{bottom:1046.718083px;}
.ye4{bottom:1050.997075px;}
.y5e{bottom:1072.602836px;}
.ye3{bottom:1075.756404px;}
.y128{bottom:1079.584740px;}
.y5d{bottom:1098.487589px;}
.ye2{bottom:1100.515733px;}
.y127{bottom:1100.967796px;}
.y4{bottom:1120.454974px;}
.y126{bottom:1122.350853px;}
.y5c{bottom:1124.372341px;}
.ye1{bottom:1125.275062px;}
.y1{bottom:1153.214973px;}
.y5a{bottom:1201.454971px;}
.h5{height:17.279999px;}
.h1f{height:38.519998px;}
.hd{height:39.402033px;}
.h17{height:40.151656px;}
.hc{height:42.119998px;}
.h18{height:42.272693px;}
.h1e{height:42.656166px;}
.h4{height:42.682539px;}
.h1d{height:42.720261px;}
.h1a{height:46.531535px;}
.h20{height:46.941187px;}
.h1b{height:46.982672px;}
.h6{height:49.240076px;}
.h8{height:49.246620px;}
.h13{height:50.176867px;}
.h19{height:50.721277px;}
.h12{height:51.213034px;}
.h15{height:55.232030px;}
.h1c{height:55.475445px;}
.h16{height:56.519998px;}
.hb{height:59.081155px;}
.h14{height:60.205172px;}
.h2{height:77.039997px;}
.ha{height:85.365078px;}
.h3{height:130.485316px;}
.hf{height:140.039994px;}
.h9{height:141.839994px;}
.h10{height:168.119993px;}
.he{height:238.319990px;}
.h11{height:1193.399950px;}
.h7{height:1204.919950px;}
.h1{height:1263.000000px;}
.h0{height:1263.374968px;}
.wd{width:10.440000px;}
.we{width:12.599999px;}
.wc{width:13.679999px;}
.w6{width:14.039999px;}
.wa{width:16.199999px;}
.wb{width:17.279999px;}
.w5{width:219.239991px;}
.w10{width:244.439990px;}
.w2{width:340.919986px;}
.w1{width:362.519985px;}
.w4{width:412.199983px;}
.w7{width:500.399979px;}
.w8{width:798.479967px;}
.w9{width:849.959965px;}
.wf{width:850.769965px;}
.w3{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.025875px;}
.x6{left:2.800919px;}
.x18{left:10.882209px;}
.x9{left:29.519999px;}
.x2{left:35.074960px;}
.x3{left:42.479998px;}
.x7{left:174.557646px;}
.xb{left:238.865966px;}
.x10{left:240.199532px;}
.x15{left:248.610269px;}
.x8{left:281.904817px;}
.xd{left:364.107729px;}
.x5{left:395.639984px;}
.xe{left:478.138513px;}
.x1{left:487.079980px;}
.x11{left:505.364724px;}
.xf{left:506.977504px;}
.x13{left:513.524048px;}
.x12{left:528.559010px;}
.x14{left:578.833812px;}
.x16{left:614.879974px;}
.x4{left:629.157446px;}
.xa{left:817.559966px;}
.xc{left:821.879966px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.079006pt;}
.ws0{word-spacing:-49.414963pt;}
.ws1{word-spacing:-11.989517pt;}
.ws4{word-spacing:-10.999144pt;}
.ws5{word-spacing:-10.001268pt;}
.ws2{word-spacing:-9.992437pt;}
.ws3{word-spacing:0.000000pt;}
._23{margin-left:-1.079006pt;}
._0{width:1.073818pt;}
._6{width:2.226573pt;}
._7{width:3.244545pt;}
._1{width:4.161893pt;}
._5{width:5.105605pt;}
._d{width:6.185883pt;}
._c{width:7.135400pt;}
._a{width:8.870639pt;}
._f{width:9.999864pt;}
._17{width:11.278266pt;}
._1c{width:12.997058pt;}
._10{width:14.054728pt;}
._2{width:14.949242pt;}
._e{width:16.208175pt;}
._16{width:17.632466pt;}
._b{width:18.919801pt;}
._14{width:20.131204pt;}
._8{width:21.029013pt;}
._12{width:22.335974pt;}
._11{width:24.076742pt;}
._22{width:25.067514pt;}
._4{width:26.091034pt;}
._3{width:27.866445pt;}
._1d{width:29.086226pt;}
._20{width:30.511625pt;}
._1e{width:31.942461pt;}
._1a{width:33.376781pt;}
._21{width:34.826208pt;}
._18{width:36.106816pt;}
._25{width:36.997951pt;}
._15{width:37.925347pt;}
._19{width:39.402358pt;}
._24{width:40.413727pt;}
._1f{width:41.528914pt;}
._13{width:43.400346pt;}
._27{width:46.363952pt;}
._1b{width:48.008330pt;}
._9{width:52.966827pt;}
._26{width:54.585787pt;}
._28{width:65.214500pt;}
._2b{width:80.956923pt;}
._2c{width:81.908880pt;}
._29{width:290.972973pt;}
._2a{width:396.740813pt;}
.fs5{font-size:42.645192pt;}
.fs9{font-size:53.260069pt;}
.fs1{font-size:53.292998pt;}
.fs2{font-size:53.300081pt;}
.fs8{font-size:53.340097pt;}
.fsa{font-size:58.610303pt;}
.fs6{font-size:58.662102pt;}
.fs4{font-size:63.944091pt;}
.fs7{font-size:69.266094pt;}
.fs3{font-size:106.585996pt;}
.fs0{font-size:159.918974pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.685541pt;}
.y2e{bottom:2.752577pt;}
.y59{bottom:2.764197pt;}
.y41{bottom:2.797333pt;}
.y9f{bottom:2.856192pt;}
.y2f{bottom:3.064395pt;}
.y5b{bottom:3.079730pt;}
.y3{bottom:3.207200pt;}
.y5{bottom:3.292090pt;}
.y146{bottom:4.145619pt;}
.yc{bottom:6.079630pt;}
.ya0{bottom:10.069309pt;}
.y4b{bottom:15.123722pt;}
.y2d{bottom:15.190758pt;}
.y58{bottom:15.202378pt;}
.y40{bottom:15.235514pt;}
.y9e{bottom:15.294373pt;}
.y145{bottom:22.136504pt;}
.y6{bottom:22.520017pt;}
.yc3{bottom:26.209578pt;}
.y4a{bottom:27.561903pt;}
.y2c{bottom:27.628939pt;}
.y57{bottom:27.640559pt;}
.y3f{bottom:27.673695pt;}
.y9d{bottom:27.732554pt;}
.y110{bottom:31.888792pt;}
.y2{bottom:32.192514pt;}
.y2a{bottom:32.544102pt;}
.y86{bottom:33.077978pt;}
.ye0{bottom:33.872388pt;}
.yb{bottom:38.063425pt;}
.y49{bottom:40.000084pt;}
.y56{bottom:40.078740pt;}
.y3e{bottom:40.111876pt;}
.y9c{bottom:40.170735pt;}
.y123{bottom:41.535180pt;}
.yc2{bottom:48.217870pt;}
.y48{bottom:52.438265pt;}
.y55{bottom:52.516921pt;}
.y3d{bottom:52.550057pt;}
.y10f{bottom:53.897084pt;}
.ydf{bottom:55.880681pt;}
.y85{bottom:56.086647pt;}
.y29{bottom:56.553148pt;}
.y122{bottom:63.543472pt;}
.y47{bottom:64.876446pt;}
.y54{bottom:64.955102pt;}
.y3c{bottom:64.988238pt;}
.ya{bottom:70.047219pt;}
.yc1{bottom:70.226162pt;}
.y10e{bottom:75.905377pt;}
.y46{bottom:77.314627pt;}
.y53{bottom:77.393283pt;}
.y3b{bottom:77.426419pt;}
.yde{bottom:77.888973pt;}
.y84{bottom:79.095316pt;}
.y28{bottom:80.562194pt;}
.y121{bottom:85.551764pt;}
.y45{bottom:89.752808pt;}
.y52{bottom:89.831464pt;}
.y3a{bottom:89.864600pt;}
.yc0{bottom:92.234454pt;}
.y10d{bottom:97.913669pt;}
.ydd{bottom:99.897265pt;}
.y9{bottom:102.031014pt;}
.y83{bottom:102.103986pt;}
.y44{bottom:102.190989pt;}
.y51{bottom:102.269645pt;}
.y39{bottom:102.302781pt;}
.y27{bottom:104.571240pt;}
.y120{bottom:107.560056pt;}
.ybf{bottom:114.242747pt;}
.y43{bottom:114.629170pt;}
.y50{bottom:114.707826pt;}
.y38{bottom:114.740962pt;}
.y10c{bottom:119.921961pt;}
.ydc{bottom:121.905557pt;}
.y82{bottom:125.112655pt;}
.y4f{bottom:127.146007pt;}
.y37{bottom:127.179143pt;}
.y26{bottom:128.580286pt;}
.y11f{bottom:129.568349pt;}
.ybe{bottom:136.251039pt;}
.y4e{bottom:139.584188pt;}
.y36{bottom:139.617324pt;}
.y10b{bottom:141.930253pt;}
.ydb{bottom:143.913849pt;}
.y81{bottom:148.121324pt;}
.y11e{bottom:151.576641pt;}
.y35{bottom:152.055505pt;}
.y25{bottom:152.589333pt;}
.ybd{bottom:158.259331pt;}
.y10a{bottom:163.938545pt;}
.y34{bottom:164.493685pt;}
.yda{bottom:165.922142pt;}
.y80{bottom:171.129993pt;}
.y11d{bottom:173.584933pt;}
.y24{bottom:176.598379pt;}
.y33{bottom:176.931866pt;}
.y109{bottom:185.946838pt;}
.yd9{bottom:187.930434pt;}
.y32{bottom:189.370047pt;}
.y7f{bottom:194.138662pt;}
.y11c{bottom:195.593225pt;}
.y23{bottom:200.607425pt;}
.y31{bottom:201.808228pt;}
.y108{bottom:207.955130pt;}
.y7e{bottom:217.147331pt;}
.y11b{bottom:217.601517pt;}
.y22{bottom:224.616471pt;}
.y144{bottom:228.920009pt;}
.y107{bottom:229.963422pt;}
.y11a{bottom:239.609810pt;}
.y7d{bottom:240.156000pt;}
.y21{bottom:248.625517pt;}
.y106{bottom:251.971714pt;}
.y119{bottom:261.618102pt;}
.y7c{bottom:263.164669pt;}
.y20{bottom:272.634563pt;}
.y105{bottom:273.980007pt;}
.yd8{bottom:276.983807pt;}
.ybc{bottom:278.426874pt;}
.y118{bottom:283.626394pt;}
.y7b{bottom:286.173338pt;}
.y143{bottom:293.346358pt;}
.y104{bottom:295.988299pt;}
.y1f{bottom:296.643609pt;}
.yd7{bottom:298.992100pt;}
.y42{bottom:299.960006pt;}
.ybb{bottom:300.435166pt;}
.y117{bottom:305.634686pt;}
.y7a{bottom:309.182008pt;}
.y103{bottom:317.996591pt;}
.y1e{bottom:320.652655pt;}
.yd6{bottom:321.000392pt;}
.yba{bottom:322.443459pt;}
.y116{bottom:327.642978pt;}
.y142{bottom:331.362793pt;}
.y79{bottom:332.190677pt;}
.y102{bottom:340.004883pt;}
.yd5{bottom:343.008684pt;}
.yb9{bottom:344.451751pt;}
.y1d{bottom:344.661701pt;}
.y115{bottom:349.651271pt;}
.y141{bottom:350.369954pt;}
.y78{bottom:355.199346pt;}
.y101{bottom:362.013175pt;}
.yd4{bottom:365.016976pt;}
.yb8{bottom:366.460043pt;}
.y1c{bottom:368.670747pt;}
.y140{bottom:369.377115pt;}
.y114{bottom:371.659563pt;}
.y77{bottom:378.208015pt;}
.y100{bottom:384.021468pt;}
.yd3{bottom:387.025268pt;}
.y13f{bottom:388.384277pt;}
.yb7{bottom:388.468335pt;}
.y1b{bottom:392.679793pt;}
.y113{bottom:393.667855pt;}
.y76{bottom:401.216684pt;}
.yff{bottom:406.029760pt;}
.y13e{bottom:407.391438pt;}
.yd2{bottom:409.033561pt;}
.y9b{bottom:410.360001pt;}
.yb6{bottom:410.476627pt;}
.y112{bottom:415.676147pt;}
.y1a{bottom:416.688839pt;}
.y75{bottom:424.225353pt;}
.y13d{bottom:426.398600pt;}
.yfe{bottom:428.038052pt;}
.yb5{bottom:432.484920pt;}
.y9a{bottom:434.961446pt;}
.y111{bottom:437.684439pt;}
.y19{bottom:440.697885pt;}
.y13c{bottom:445.405761pt;}
.y74{bottom:447.234022pt;}
.yfd{bottom:450.046344pt;}
.y99{bottom:456.969738pt;}
.y13b{bottom:464.412923pt;}
.y18{bottom:464.706931pt;}
.y73{bottom:470.242691pt;}
.yfc{bottom:472.054636pt;}
.y30{bottom:478.199998pt;}
.y98{bottom:478.978031pt;}
.y13a{bottom:483.420084pt;}
.y17{bottom:488.715977pt;}
.y72{bottom:493.251361pt;}
.yfb{bottom:494.062929pt;}
.y97{bottom:500.986323pt;}
.y139{bottom:502.427246pt;}
.y16{bottom:512.725023pt;}
.yfa{bottom:516.071221pt;}
.y71{bottom:516.260030pt;}
.y96{bottom:522.994615pt;}
.y15{bottom:536.734069pt;}
.yd1{bottom:536.957182pt;}
.yf9{bottom:538.079513pt;}
.y70{bottom:539.268699pt;}
.y138{bottom:542.842875pt;}
.y95{bottom:545.002907pt;}
.yb4{bottom:552.652428pt;}
.yd0{bottom:558.965474pt;}
.yf8{bottom:560.087805pt;}
.y14{bottom:560.743115pt;}
.y137{bottom:561.850036pt;}
.y6f{bottom:562.277368pt;}
.y94{bottom:567.011199pt;}
.yb3{bottom:574.660720pt;}
.y136{bottom:580.857198pt;}
.yae{bottom:580.882274pt;}
.ycf{bottom:580.973767pt;}
.yf7{bottom:582.096097pt;}
.y13{bottom:584.752161pt;}
.y6e{bottom:585.286037pt;}
.y93{bottom:589.019492pt;}
.yb2{bottom:596.669013pt;}
.y135{bottom:599.864359pt;}
.yad{bottom:602.890566pt;}
.yce{bottom:602.982059pt;}
.yf6{bottom:604.104390pt;}
.y6d{bottom:608.294706pt;}
.y12{bottom:608.761207pt;}
.y92{bottom:611.027784pt;}
.yb1{bottom:618.677305pt;}
.yac{bottom:624.898858pt;}
.ycd{bottom:624.990351pt;}
.yf5{bottom:626.112682pt;}
.y6c{bottom:631.303375pt;}
.y11{bottom:632.770253pt;}
.y91{bottom:633.036076pt;}
.yb0{bottom:640.685597pt;}
.yab{bottom:646.907151pt;}
.ycc{bottom:646.998643pt;}
.yf4{bottom:648.120974pt;}
.y6b{bottom:654.312044pt;}
.y90{bottom:655.044368pt;}
.y10{bottom:656.779299pt;}
.yaf{bottom:662.693889pt;}
.y134{bottom:667.620007pt;}
.yaa{bottom:668.915443pt;}
.ycb{bottom:669.006935pt;}
.yf3{bottom:670.129266pt;}
.y8f{bottom:677.052660pt;}
.y6a{bottom:677.320714pt;}
.yf{bottom:680.788345pt;}
.ya9{bottom:690.923735pt;}
.yf2{bottom:692.137558pt;}
.y8e{bottom:699.060953pt;}
.y69{bottom:700.329383pt;}
.ye{bottom:704.797391pt;}
.y133{bottom:708.635474pt;}
.ya8{bottom:712.932027pt;}
.y125{bottom:714.136700pt;}
.yf1{bottom:714.145851pt;}
.y8d{bottom:721.069245pt;}
.y68{bottom:723.338052pt;}
.y132{bottom:728.643012pt;}
.yd{bottom:728.806437pt;}
.ya7{bottom:734.940319pt;}
.y124{bottom:736.144993pt;}
.yf0{bottom:736.154143pt;}
.y8c{bottom:743.077537pt;}
.y67{bottom:746.346721pt;}
.y131{bottom:748.650551pt;}
.y2b{bottom:751.159987pt;}
.ya6{bottom:756.948612pt;}
.yec{bottom:758.153285pt;}
.yef{bottom:758.162435pt;}
.y7{bottom:758.903269pt;}
.y8b{bottom:765.085829pt;}
.y130{bottom:768.658089pt;}
.y66{bottom:769.355390pt;}
.ya5{bottom:778.956904pt;}
.yeb{bottom:780.161577pt;}
.yee{bottom:780.170727pt;}
.yca{bottom:783.860861pt;}
.y8a{bottom:787.094121pt;}
.y12f{bottom:788.665627pt;}
.y65{bottom:792.364059pt;}
.ya4{bottom:800.965196pt;}
.yea{bottom:802.169869pt;}
.yed{bottom:802.179019pt;}
.yc9{bottom:805.869154pt;}
.y12e{bottom:808.673166pt;}
.y89{bottom:809.102414pt;}
.y64{bottom:815.372728pt;}
.ya3{bottom:822.973488pt;}
.ye9{bottom:824.178161pt;}
.yc8{bottom:827.877446pt;}
.y12d{bottom:828.680704pt;}
.y88{bottom:831.110706pt;}
.y4d{bottom:832.119984pt;}
.y63{bottom:838.381397pt;}
.ya2{bottom:844.981780pt;}
.ye8{bottom:846.186454pt;}
.y12c{bottom:848.688242pt;}
.yc7{bottom:849.885738pt;}
.y87{bottom:853.118998pt;}
.y62{bottom:861.390067pt;}
.y8{bottom:864.119982pt;}
.ya1{bottom:866.990073pt;}
.ye7{bottom:868.194746pt;}
.y12b{bottom:868.695781pt;}
.yc6{bottom:871.894030pt;}
.y61{bottom:884.398736pt;}
.y12a{bottom:888.703319pt;}
.ye6{bottom:890.203038pt;}
.yc5{bottom:893.902322pt;}
.y60{bottom:907.407405pt;}
.y129{bottom:908.710857pt;}
.ye5{bottom:912.211330pt;}
.yc4{bottom:915.910615pt;}
.y5f{bottom:930.416074pt;}
.ye4{bottom:934.219623pt;}
.y5e{bottom:953.424743pt;}
.ye3{bottom:956.227915pt;}
.y128{bottom:959.630880pt;}
.y5d{bottom:976.433412pt;}
.ye2{bottom:978.236207pt;}
.y127{bottom:978.638041pt;}
.y4{bottom:995.959977pt;}
.y126{bottom:997.645203pt;}
.y5c{bottom:999.442081pt;}
.ye1{bottom:1000.244499pt;}
.y1{bottom:1025.079976pt;}
.y5a{bottom:1067.959974pt;}
.h5{height:15.359999pt;}
.h1f{height:34.239999pt;}
.hd{height:35.024030pt;}
.h17{height:35.690361pt;}
.hc{height:37.439998pt;}
.h18{height:37.575727pt;}
.h1e{height:37.916592pt;}
.h4{height:37.940035pt;}
.h1d{height:37.973565pt;}
.h1a{height:41.361365pt;}
.h20{height:41.725499pt;}
.h1b{height:41.762375pt;}
.h6{height:43.768956pt;}
.h8{height:43.774774pt;}
.h13{height:44.601659pt;}
.h19{height:45.085580pt;}
.h12{height:45.522697pt;}
.h15{height:49.095138pt;}
.h1c{height:49.311506pt;}
.h16{height:50.239998pt;}
.hb{height:52.516582pt;}
.h14{height:53.515709pt;}
.h2{height:68.479997pt;}
.ha{height:75.880070pt;}
.h3{height:115.986948pt;}
.hf{height:124.479995pt;}
.h9{height:126.079995pt;}
.h10{height:149.439994pt;}
.he{height:211.839991pt;}
.h11{height:1060.799956pt;}
.h7{height:1071.039955pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.999972pt;}
.wd{width:9.280000pt;}
.we{width:11.200000pt;}
.wc{width:12.159999pt;}
.w6{width:12.479999pt;}
.wa{width:14.399999pt;}
.wb{width:15.359999pt;}
.w5{width:194.879992pt;}
.w10{width:217.279991pt;}
.w2{width:303.039987pt;}
.w1{width:322.239987pt;}
.w4{width:366.399985pt;}
.w7{width:444.799981pt;}
.w8{width:709.759970pt;}
.w9{width:755.519969pt;}
.wf{width:756.239968pt;}
.w3{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.911889pt;}
.x6{left:2.489706pt;}
.x18{left:9.673075pt;}
.x9{left:26.239999pt;}
.x2{left:31.177742pt;}
.x3{left:37.759998pt;}
.x7{left:155.162352pt;}
.xb{left:212.325303pt;}
.x10{left:213.510695pt;}
.x15{left:220.986906pt;}
.x8{left:250.582060pt;}
.xd{left:323.651315pt;}
.x5{left:351.679985pt;}
.xe{left:425.012011pt;}
.x1{left:432.959982pt;}
.x11{left:449.213088pt;}
.xf{left:450.646670pt;}
.x13{left:456.465821pt;}
.x12{left:469.830231pt;}
.x14{left:514.518944pt;}
.x16{left:546.559977pt;}
.x4{left:559.251064pt;}
.xa{left:726.719970pt;}
.xc{left:730.559970pt;}
}




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