
    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_2c3d8c95d2792cf95c0e447c.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_7ed5e0a8536982748a04be08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_b03bd10f84598923ad9a866d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941895;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_33cd48b3ce90521dd012b5ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a69b007c9b70b299c5251776.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.885254;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_0dfab63632c95b60cad74200.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935059;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_5d5e8279815accf5eebd29d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_4f904cf032b8893ecfee4171.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_583ec0231a5ba0acdea16bd5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9e77e744dacb70da93c9c710.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8dfad86a3e34c7a9e1462aa4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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_4f837187524a83ff6d74fa7c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4c8b9bdb9ecd12bb7fee3442.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_92b8c498d540b9e26ad0b72f.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_9935d087f2115d582747b867.woff2')format("woff");}.fff{font-family:fff;line-height:0.877000;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_28412ccaf8bd403d08dc4b99.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9b42a1f986abc7e8ad8bb7c8.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_810dc74ab62ca0f28237221c.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ffe7c7fd920a2d95172bdf9d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_2e679837ab7c331f02e1997c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.741211;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_a144b08f46ad6c16ff9e6571.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.740723;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_66b85c6d26044bc1d18b278c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.741211;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_b5e547a8bb491996c5046112.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.927246;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_44a72dbf6cccfdf16671db75.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.935059;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_4b0ee6e0a6e1268524e2d676.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_023297331e425fc86d1835fe.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.m4{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249967,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,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:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.277548px;}
.v1{vertical-align:24.480000px;}
.ls17{letter-spacing:-0.338688px;}
.ls3f{letter-spacing:-0.320544px;}
.ls1b{letter-spacing:-0.302400px;}
.ls3c{letter-spacing:-0.260064px;}
.ls3e{letter-spacing:-0.241920px;}
.ls3d{letter-spacing:-0.223776px;}
.ls3a{letter-spacing:-0.198720px;}
.ls20{letter-spacing:-0.158976px;}
.ls3b{letter-spacing:-0.157248px;}
.ls1c{letter-spacing:-0.145152px;}
.ls34{letter-spacing:-0.120960px;}
.ls2e{letter-spacing:-0.014400px;}
.ls38{letter-spacing:-0.009167px;}
.ls37{letter-spacing:-0.008757px;}
.ls39{letter-spacing:-0.008704px;}
.ls35{letter-spacing:-0.008476px;}
.ls14{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.008704px;}
.ls25{letter-spacing:0.009504px;}
.ls2f{letter-spacing:0.014256px;}
.ls7{letter-spacing:0.014400px;}
.ls0{letter-spacing:0.042768px;}
.ls1{letter-spacing:0.072576px;}
.ls16{letter-spacing:0.073872px;}
.ls15{letter-spacing:0.097200px;}
.ls13{letter-spacing:0.115920px;}
.ls11{letter-spacing:0.118800px;}
.ls2a{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.119952px;}
.lsd{letter-spacing:0.120096px;}
.ls31{letter-spacing:0.123552px;}
.ls4{letter-spacing:0.125280px;}
.ls32{letter-spacing:0.126720px;}
.ls2b{letter-spacing:0.159840px;}
.lsf{letter-spacing:0.161280px;}
.ls30{letter-spacing:0.194832px;}
.ls22{letter-spacing:0.204336px;}
.ls19{letter-spacing:0.218592px;}
.ls1f{letter-spacing:0.228096px;}
.ls10{letter-spacing:0.237600px;}
.ls24{letter-spacing:0.240048px;}
.ls12{letter-spacing:0.240480px;}
.lse{letter-spacing:0.242352px;}
.lsc{letter-spacing:0.261360px;}
.ls2d{letter-spacing:0.266112px;}
.ls21{letter-spacing:0.275616px;}
.ls1a{letter-spacing:0.285120px;}
.ls6{letter-spacing:0.293040px;}
.ls28{letter-spacing:0.308160px;}
.ls18{letter-spacing:0.318384px;}
.ls2c{letter-spacing:0.346896px;}
.ls23{letter-spacing:0.356400px;}
.ls1e{letter-spacing:0.365904px;}
.ls1d{letter-spacing:0.389664px;}
.ls9{letter-spacing:0.408960px;}
.lsa{letter-spacing:0.719424px;}
.ls29{letter-spacing:0.736560px;}
.ls26{letter-spacing:0.901872px;}
.ls8{letter-spacing:0.996480px;}
.ls27{letter-spacing:1.035360px;}
.ls3{letter-spacing:1.811232px;}
.ls2{letter-spacing:1.814400px;}
.ls5{letter-spacing:31.278672px;}
.ls33{letter-spacing:54.866880px;}
.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;}
}
.ws11{word-spacing:-45.832644px;}
.ws10{word-spacing:-43.787484px;}
.wsf{word-spacing:-42.379704px;}
.ws17{word-spacing:-18.255744px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.985600px;}
.wse{word-spacing:-15.120000px;}
.ws18{word-spacing:-14.962752px;}
.ws19{word-spacing:-14.878080px;}
.ws2{word-spacing:-13.576464px;}
.ws1{word-spacing:-13.495680px;}
.ws3{word-spacing:-13.438656px;}
.ws0{word-spacing:-13.429152px;}
.wsc{word-spacing:-12.616560px;}
.ws7{word-spacing:-12.236400px;}
.ws5{word-spacing:-12.155616px;}
.ws8{word-spacing:-12.122352px;}
.ws6{word-spacing:-12.117600px;}
.ws16{word-spacing:-12.107878px;}
.ws9{word-spacing:-12.084336px;}
.wsd{word-spacing:-0.072000px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:9.627112px;}
.ws15{word-spacing:31.420132px;}
.ws13{word-spacing:64.061788px;}
.ws12{word-spacing:179.508133px;}
._17{margin-left:-5.257440px;}
._a{margin-left:-4.242960px;}
._5{margin-left:-2.323872px;}
._1{margin-left:-1.033200px;}
._0{width:1.010880px;}
._2{width:2.455776px;}
._4{width:4.312800px;}
._6{width:5.846400px;}
._9{width:7.293600px;}
._d{width:8.733600px;}
._f{width:10.486656px;}
._b{width:11.556864px;}
._10{width:12.700512px;}
._3{width:14.169600px;}
._e{width:16.063200px;}
._11{width:19.031904px;}
._8{width:20.064960px;}
._18{width:21.437280px;}
._13{width:25.344432px;}
._c{width:29.412000px;}
._7{width:30.852000px;}
._14{width:32.580724px;}
._16{width:47.137452px;}
._15{width:54.391153px;}
._12{width:68.898555px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs1{font-size:38.880000px;}
.fs6{font-size:42.379704px;}
.fs9{font-size:43.522207px;}
.fs7{font-size:43.787484px;}
.fs8{font-size:45.832644px;}
.fs3{font-size:47.520000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:0.000028px;}
.y9e{bottom:13.231265px;}
.y79{bottom:28.581760px;}
.y8c{bottom:46.546121px;}
.ya1{bottom:63.100460px;}
.y7c{bottom:63.898180px;}
.y7e{bottom:75.376017px;}
.ya0{bottom:76.701150px;}
.y98{bottom:83.136777px;}
.y9f{bottom:89.395127px;}
.y97{bottom:98.414325px;}
.y37{bottom:111.960000px;}
.y4{bottom:113.040000px;}
.y7b{bottom:116.872811px;}
.y8d{bottom:121.349739px;}
.y3{bottom:127.440000px;}
.y6a{bottom:131.040000px;}
.y36{bottom:132.840000px;}
.y7a{bottom:134.531020px;}
.y99{bottom:135.653348px;}
.y91{bottom:137.563042px;}
.y9d{bottom:140.171036px;}
.y2{bottom:142.200000px;}
.y35{bottom:151.920000px;}
.y32{bottom:159.840000px;}
.y8f{bottom:160.576027px;}
.y8e{bottom:164.224984px;}
.y96{bottom:165.253597px;}
.y69{bottom:170.280000px;}
.y31{bottom:178.560000px;}
.y68{bottom:184.320000px;}
.y77{bottom:185.760000px;}
.y7f{bottom:187.505651px;}
.y9b{bottom:188.169919px;}
.y30{bottom:192.600000px;}
.y9a{bottom:192.944153px;}
.y67{bottom:193.320000px;}
.y92{bottom:193.899000px;}
.y95{bottom:195.808693px;}
.y76{bottom:199.800000px;}
.y2f{bottom:201.600000px;}
.y7d{bottom:201.632219px;}
.y80{bottom:204.280950px;}
.y66{bottom:207.360000px;}
.y65{bottom:207.360002px;}
.y8a{bottom:208.080000px;}
.y63{bottom:212.040000px;}
.y2e{bottom:219.960000px;}
.y78{bottom:224.061750px;}
.y62{bottom:226.080000px;}
.y89{bottom:228.600000px;}
.y2d{bottom:234.000000px;}
.y94{bottom:249.280111px;}
.y88{bottom:249.480000px;}
.y61{bottom:258.120000px;}
.y93{bottom:261.693119px;}
.y87{bottom:270.000000px;}
.y60{bottom:278.640000px;}
.y2c{bottom:282.240000px;}
.y86{bottom:289.800000px;}
.y5f{bottom:299.520000px;}
.y2b{bottom:303.120000px;}
.y85{bottom:303.840000px;}
.y9c{bottom:317.940750px;}
.y5e{bottom:320.040000px;}
.y2a{bottom:323.640000px;}
.y5d{bottom:340.920000px;}
.y29{bottom:344.520000px;}
.y5c{bottom:361.440000px;}
.y28{bottom:365.040000px;}
.yc2{bottom:375.480000px;}
.y5b{bottom:382.320000px;}
.y27{bottom:385.920000px;}
.yc1{bottom:392.760000px;}
.y5a{bottom:402.840000px;}
.y26{bottom:406.440000px;}
.yc0{bottom:410.040000px;}
.y59{bottom:423.720000px;}
.y25{bottom:427.320000px;}
.y58{bottom:444.240000px;}
.ybf{bottom:444.600000px;}
.y24{bottom:447.840000px;}
.ybe{bottom:461.880000px;}
.y57{bottom:465.120000px;}
.y23{bottom:468.720000px;}
.ybd{bottom:478.800000px;}
.y56{bottom:485.640000px;}
.y75{bottom:486.000000px;}
.y22{bottom:489.240000px;}
.y84{bottom:493.200000px;}
.ybc{bottom:496.080000px;}
.y55{bottom:506.520000px;}
.y83{bottom:507.240000px;}
.y21{bottom:510.120000px;}
.ybb{bottom:513.360000px;}
.y90{bottom:525.033000px;}
.y54{bottom:527.040000px;}
.y74{bottom:527.400000px;}
.y20{bottom:530.640000px;}
.yba{bottom:535.320000px;}
.y53{bottom:547.920000px;}
.y1f{bottom:551.520000px;}
.y73{bottom:567.720000px;}
.y52{bottom:568.440000px;}
.yb9{bottom:570.240000px;}
.y1e{bottom:572.040000px;}
.y72{bottom:581.760000px;}
.y51{bottom:589.320000px;}
.y1d{bottom:592.920000px;}
.yb8{bottom:594.720000px;}
.y50{bottom:609.840000px;}
.y1c{bottom:613.440000px;}
.y4f{bottom:630.720000px;}
.yb7{bottom:632.160000px;}
.y1b{bottom:634.320000px;}
.y4e{bottom:651.240000px;}
.y1a{bottom:654.840000px;}
.yb6{bottom:657.720000px;}
.y4d{bottom:672.120000px;}
.y19{bottom:675.720000px;}
.y4c{bottom:692.640000px;}
.yb5{bottom:695.520000px;}
.y18{bottom:696.240000px;}
.y4b{bottom:713.520000px;}
.yb4{bottom:716.040000px;}
.y17{bottom:717.120000px;}
.y4a{bottom:734.040000px;}
.yb3{bottom:736.920000px;}
.y16{bottom:737.640000px;}
.y49{bottom:754.920000px;}
.yb2{bottom:757.440000px;}
.y15{bottom:758.520000px;}
.y48{bottom:775.440000px;}
.yb1{bottom:778.320000px;}
.y14{bottom:779.040000px;}
.y47{bottom:796.320000px;}
.yb0{bottom:798.840000px;}
.y13{bottom:799.920000px;}
.y46{bottom:816.840000px;}
.y12{bottom:820.440000px;}
.yaf{bottom:823.320000px;}
.y45{bottom:837.360000px;}
.y11{bottom:841.320000px;}
.y82{bottom:847.800000px;}
.y44{bottom:858.240000px;}
.yae{bottom:861.120000px;}
.y10{bottom:861.840000px;}
.y81{bottom:862.200000px;}
.y71{bottom:872.640000px;}
.y43{bottom:878.760000px;}
.yad{bottom:881.640000px;}
.y8b{bottom:881.715900px;}
.yf{bottom:882.720000px;}
.y70{bottom:893.160000px;}
.y42{bottom:899.640000px;}
.yac{bottom:902.520000px;}
.ye{bottom:903.240000px;}
.y6f{bottom:915.120000px;}
.y41{bottom:920.160000px;}
.yab{bottom:923.040000px;}
.yd{bottom:924.120000px;}
.y6e{bottom:935.640000px;}
.y40{bottom:941.040000px;}
.yaa{bottom:943.920000px;}
.yc{bottom:944.640000px;}
.y6d{bottom:957.600000px;}
.y3f{bottom:961.560000px;}
.ya9{bottom:964.440000px;}
.yb{bottom:965.520000px;}
.y6c{bottom:979.560000px;}
.y3e{bottom:982.440000px;}
.ya8{bottom:985.320000px;}
.ya{bottom:986.040000px;}
.y6b{bottom:1001.520000px;}
.y3d{bottom:1002.960000px;}
.ya7{bottom:1005.840000px;}
.y9{bottom:1010.520000px;}
.y3c{bottom:1023.840000px;}
.ya6{bottom:1026.720000px;}
.y3b{bottom:1044.360000px;}
.y8{bottom:1046.520000px;}
.ya5{bottom:1047.240000px;}
.y7{bottom:1062.000000px;}
.y3a{bottom:1065.240000px;}
.ya4{bottom:1068.120000px;}
.y6{bottom:1080.000000px;}
.y39{bottom:1085.760000px;}
.ya3{bottom:1088.640000px;}
.ya2{bottom:1109.520000px;}
.y38{bottom:1110.600000px;}
.y5{bottom:1116.720000px;}
.y34{bottom:1128.960000px;}
.y1{bottom:1138.320000px;}
.y33{bottom:1143.000000px;}
.ha{height:20.435625px;}
.h3{height:28.704375px;}
.h12{height:30.874277px;}
.hc{height:31.672266px;}
.h19{height:31.706608px;}
.h14{height:31.899866px;}
.hb{height:32.994844px;}
.h16{height:33.389797px;}
.he{height:34.201406px;}
.hd{height:34.737120px;}
.h6{height:35.175938px;}
.h9{height:40.310156px;}
.h10{height:40.989375px;}
.h1b{height:41.993438px;}
.h5{height:44.562656px;}
.h7{height:48.224531px;}
.h17{height:48.667345px;}
.h2{height:50.027344px;}
.h4{height:52.136719px;}
.h1a{height:53.296875px;}
.h8{height:57.474844px;}
.h18{height:158.522850px;}
.h13{height:225.102300px;}
.h11{height:232.974150px;}
.h15{height:300.535200px;}
.hf{height:1262.879972px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:261.098550px;}
.w5{width:310.398150px;}
.w3{width:315.101550px;}
.w4{width:445.393350px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2e{left:3.836014px;}
.x2f{left:11.687189px;}
.x2d{left:14.408190px;}
.x1c{left:26.200777px;}
.xe{left:30.003935px;}
.x13{left:32.652539px;}
.x25{left:44.052552px;}
.x1d{left:46.267390px;}
.x27{left:52.639532px;}
.x11{left:53.841368px;}
.xd{left:57.372840px;}
.x26{left:73.629927px;}
.x1{left:80.640000px;}
.x1f{left:85.488499px;}
.x5{left:87.120000px;}
.x2{left:89.816508px;}
.x28{left:95.574432px;}
.x24{left:101.299086px;}
.x7{left:107.640000px;}
.x2b{left:124.197699px;}
.x30{left:128.715084px;}
.x12{left:130.650876px;}
.x3{left:134.640036px;}
.x23{left:142.325768px;}
.x10{left:145.659630px;}
.xf{left:149.191102px;}
.x21{left:168.086709px;}
.x1e{left:170.315547px;}
.x22{left:172.857253px;}
.x6{left:178.554924px;}
.x14{left:192.451629px;}
.x29{left:219.608589px;}
.x20{left:223.905900px;}
.x2a{left:242.507203px;}
.x1b{left:288.421800px;}
.x2c{left:291.403500px;}
.xc{left:315.423300px;}
.x9{left:354.087144px;}
.x1a{left:359.485128px;}
.x16{left:374.910120px;}
.xb{left:378.656280px;}
.x18{left:389.913480px;}
.x8{left:600.772320px;}
.xa{left:605.092680px;}
.x19{left:629.032320px;}
.x15{left:632.092680px;}
.x17{left:696.532320px;}
.x4{left:811.664640px;}
@media print{
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.580043pt;}
.v1{vertical-align:21.760000pt;}
.ls17{letter-spacing:-0.301056pt;}
.ls3f{letter-spacing:-0.284928pt;}
.ls1b{letter-spacing:-0.268800pt;}
.ls3c{letter-spacing:-0.231168pt;}
.ls3e{letter-spacing:-0.215040pt;}
.ls3d{letter-spacing:-0.198912pt;}
.ls3a{letter-spacing:-0.176640pt;}
.ls20{letter-spacing:-0.141312pt;}
.ls3b{letter-spacing:-0.139776pt;}
.ls1c{letter-spacing:-0.129024pt;}
.ls34{letter-spacing:-0.107520pt;}
.ls2e{letter-spacing:-0.012800pt;}
.ls38{letter-spacing:-0.008148pt;}
.ls37{letter-spacing:-0.007784pt;}
.ls39{letter-spacing:-0.007737pt;}
.ls35{letter-spacing:-0.007534pt;}
.ls14{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.007737pt;}
.ls25{letter-spacing:0.008448pt;}
.ls2f{letter-spacing:0.012672pt;}
.ls7{letter-spacing:0.012800pt;}
.ls0{letter-spacing:0.038016pt;}
.ls1{letter-spacing:0.064512pt;}
.ls16{letter-spacing:0.065664pt;}
.ls15{letter-spacing:0.086400pt;}
.ls13{letter-spacing:0.103040pt;}
.ls11{letter-spacing:0.105600pt;}
.ls2a{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.106624pt;}
.lsd{letter-spacing:0.106752pt;}
.ls31{letter-spacing:0.109824pt;}
.ls4{letter-spacing:0.111360pt;}
.ls32{letter-spacing:0.112640pt;}
.ls2b{letter-spacing:0.142080pt;}
.lsf{letter-spacing:0.143360pt;}
.ls30{letter-spacing:0.173184pt;}
.ls22{letter-spacing:0.181632pt;}
.ls19{letter-spacing:0.194304pt;}
.ls1f{letter-spacing:0.202752pt;}
.ls10{letter-spacing:0.211200pt;}
.ls24{letter-spacing:0.213376pt;}
.ls12{letter-spacing:0.213760pt;}
.lse{letter-spacing:0.215424pt;}
.lsc{letter-spacing:0.232320pt;}
.ls2d{letter-spacing:0.236544pt;}
.ls21{letter-spacing:0.244992pt;}
.ls1a{letter-spacing:0.253440pt;}
.ls6{letter-spacing:0.260480pt;}
.ls28{letter-spacing:0.273920pt;}
.ls18{letter-spacing:0.283008pt;}
.ls2c{letter-spacing:0.308352pt;}
.ls23{letter-spacing:0.316800pt;}
.ls1e{letter-spacing:0.325248pt;}
.ls1d{letter-spacing:0.346368pt;}
.ls9{letter-spacing:0.363520pt;}
.lsa{letter-spacing:0.639488pt;}
.ls29{letter-spacing:0.654720pt;}
.ls26{letter-spacing:0.801664pt;}
.ls8{letter-spacing:0.885760pt;}
.ls27{letter-spacing:0.920320pt;}
.ls3{letter-spacing:1.609984pt;}
.ls2{letter-spacing:1.612800pt;}
.ls5{letter-spacing:27.803264pt;}
.ls33{letter-spacing:48.770560pt;}
.ws11{word-spacing:-40.740128pt;}
.ws10{word-spacing:-38.922208pt;}
.wsf{word-spacing:-37.670848pt;}
.ws17{word-spacing:-16.227328pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.987200pt;}
.wse{word-spacing:-13.440000pt;}
.ws18{word-spacing:-13.300224pt;}
.ws19{word-spacing:-13.224960pt;}
.ws2{word-spacing:-12.067968pt;}
.ws1{word-spacing:-11.996160pt;}
.ws3{word-spacing:-11.945472pt;}
.ws0{word-spacing:-11.937024pt;}
.wsc{word-spacing:-11.214720pt;}
.ws7{word-spacing:-10.876800pt;}
.ws5{word-spacing:-10.804992pt;}
.ws8{word-spacing:-10.775424pt;}
.ws6{word-spacing:-10.771200pt;}
.ws16{word-spacing:-10.762558pt;}
.ws9{word-spacing:-10.741632pt;}
.wsd{word-spacing:-0.064000pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:8.557433pt;}
.ws15{word-spacing:27.929006pt;}
.ws13{word-spacing:56.943811pt;}
.ws12{word-spacing:159.562785pt;}
._17{margin-left:-4.673280pt;}
._a{margin-left:-3.771520pt;}
._5{margin-left:-2.065664pt;}
._1{margin-left:-0.918400pt;}
._0{width:0.898560pt;}
._2{width:2.182912pt;}
._4{width:3.833600pt;}
._6{width:5.196800pt;}
._9{width:6.483200pt;}
._d{width:7.763200pt;}
._f{width:9.321472pt;}
._b{width:10.272768pt;}
._10{width:11.289344pt;}
._3{width:12.595200pt;}
._e{width:14.278400pt;}
._11{width:16.917248pt;}
._8{width:17.835520pt;}
._18{width:19.055360pt;}
._13{width:22.528384pt;}
._c{width:26.144000pt;}
._7{width:27.424000pt;}
._14{width:28.960644pt;}
._16{width:41.899957pt;}
._15{width:48.347692pt;}
._12{width:61.243160pt;}
.fs5{font-size:26.880000pt;}
.fs1{font-size:34.560000pt;}
.fs6{font-size:37.670848pt;}
.fs9{font-size:38.686406pt;}
.fs7{font-size:38.922208pt;}
.fs8{font-size:40.740128pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:0.000025pt;}
.y9e{bottom:11.761124pt;}
.y79{bottom:25.406009pt;}
.y8c{bottom:41.374329pt;}
.ya1{bottom:56.089298pt;}
.y7c{bottom:56.798383pt;}
.y7e{bottom:67.000904pt;}
.ya0{bottom:68.178800pt;}
.y98{bottom:73.899357pt;}
.y9f{bottom:79.462335pt;}
.y97{bottom:87.479400pt;}
.y37{bottom:99.520000pt;}
.y4{bottom:100.480000pt;}
.y7b{bottom:103.886943pt;}
.y8d{bottom:107.866435pt;}
.y3{bottom:113.280000pt;}
.y6a{bottom:116.480000pt;}
.y36{bottom:118.080000pt;}
.y7a{bottom:119.583129pt;}
.y99{bottom:120.580754pt;}
.y91{bottom:122.278259pt;}
.y9d{bottom:124.596476pt;}
.y2{bottom:126.400000pt;}
.y35{bottom:135.040000pt;}
.y32{bottom:142.080000pt;}
.y8f{bottom:142.734246pt;}
.y8e{bottom:145.977763pt;}
.y96{bottom:146.892087pt;}
.y69{bottom:151.360000pt;}
.y31{bottom:158.720000pt;}
.y68{bottom:163.840000pt;}
.y77{bottom:165.120000pt;}
.y7f{bottom:166.671689pt;}
.y9b{bottom:167.262151pt;}
.y30{bottom:171.200000pt;}
.y9a{bottom:171.505914pt;}
.y67{bottom:171.840000pt;}
.y92{bottom:172.354667pt;}
.y95{bottom:174.052172pt;}
.y76{bottom:177.600000pt;}
.y2f{bottom:179.200000pt;}
.y7d{bottom:179.228639pt;}
.y80{bottom:181.583067pt;}
.y66{bottom:184.320000pt;}
.y65{bottom:184.320002pt;}
.y8a{bottom:184.960000pt;}
.y63{bottom:188.480000pt;}
.y2e{bottom:195.520000pt;}
.y78{bottom:199.166000pt;}
.y62{bottom:200.960000pt;}
.y89{bottom:203.200000pt;}
.y2d{bottom:208.000000pt;}
.y94{bottom:221.582321pt;}
.y88{bottom:221.760000pt;}
.y61{bottom:229.440000pt;}
.y93{bottom:232.616106pt;}
.y87{bottom:240.000000pt;}
.y60{bottom:247.680000pt;}
.y2c{bottom:250.880000pt;}
.y86{bottom:257.600000pt;}
.y5f{bottom:266.240000pt;}
.y2b{bottom:269.440000pt;}
.y85{bottom:270.080000pt;}
.y9c{bottom:282.614000pt;}
.y5e{bottom:284.480000pt;}
.y2a{bottom:287.680000pt;}
.y5d{bottom:303.040000pt;}
.y29{bottom:306.240000pt;}
.y5c{bottom:321.280000pt;}
.y28{bottom:324.480000pt;}
.yc2{bottom:333.760000pt;}
.y5b{bottom:339.840000pt;}
.y27{bottom:343.040000pt;}
.yc1{bottom:349.120000pt;}
.y5a{bottom:358.080000pt;}
.y26{bottom:361.280000pt;}
.yc0{bottom:364.480000pt;}
.y59{bottom:376.640000pt;}
.y25{bottom:379.840000pt;}
.y58{bottom:394.880000pt;}
.ybf{bottom:395.200000pt;}
.y24{bottom:398.080000pt;}
.ybe{bottom:410.560000pt;}
.y57{bottom:413.440000pt;}
.y23{bottom:416.640000pt;}
.ybd{bottom:425.600000pt;}
.y56{bottom:431.680000pt;}
.y75{bottom:432.000000pt;}
.y22{bottom:434.880000pt;}
.y84{bottom:438.400000pt;}
.ybc{bottom:440.960000pt;}
.y55{bottom:450.240000pt;}
.y83{bottom:450.880000pt;}
.y21{bottom:453.440000pt;}
.ybb{bottom:456.320000pt;}
.y90{bottom:466.696000pt;}
.y54{bottom:468.480000pt;}
.y74{bottom:468.800000pt;}
.y20{bottom:471.680000pt;}
.yba{bottom:475.840000pt;}
.y53{bottom:487.040000pt;}
.y1f{bottom:490.240000pt;}
.y73{bottom:504.640000pt;}
.y52{bottom:505.280000pt;}
.yb9{bottom:506.880000pt;}
.y1e{bottom:508.480000pt;}
.y72{bottom:517.120000pt;}
.y51{bottom:523.840000pt;}
.y1d{bottom:527.040000pt;}
.yb8{bottom:528.640000pt;}
.y50{bottom:542.080000pt;}
.y1c{bottom:545.280000pt;}
.y4f{bottom:560.640000pt;}
.yb7{bottom:561.920000pt;}
.y1b{bottom:563.840000pt;}
.y4e{bottom:578.880000pt;}
.y1a{bottom:582.080000pt;}
.yb6{bottom:584.640000pt;}
.y4d{bottom:597.440000pt;}
.y19{bottom:600.640000pt;}
.y4c{bottom:615.680000pt;}
.yb5{bottom:618.240000pt;}
.y18{bottom:618.880000pt;}
.y4b{bottom:634.240000pt;}
.yb4{bottom:636.480000pt;}
.y17{bottom:637.440000pt;}
.y4a{bottom:652.480000pt;}
.yb3{bottom:655.040000pt;}
.y16{bottom:655.680000pt;}
.y49{bottom:671.040000pt;}
.yb2{bottom:673.280000pt;}
.y15{bottom:674.240000pt;}
.y48{bottom:689.280000pt;}
.yb1{bottom:691.840000pt;}
.y14{bottom:692.480000pt;}
.y47{bottom:707.840000pt;}
.yb0{bottom:710.080000pt;}
.y13{bottom:711.040000pt;}
.y46{bottom:726.080000pt;}
.y12{bottom:729.280000pt;}
.yaf{bottom:731.840000pt;}
.y45{bottom:744.320000pt;}
.y11{bottom:747.840000pt;}
.y82{bottom:753.600000pt;}
.y44{bottom:762.880000pt;}
.yae{bottom:765.440000pt;}
.y10{bottom:766.080000pt;}
.y81{bottom:766.400000pt;}
.y71{bottom:775.680000pt;}
.y43{bottom:781.120000pt;}
.yad{bottom:783.680000pt;}
.y8b{bottom:783.747467pt;}
.yf{bottom:784.640000pt;}
.y70{bottom:793.920000pt;}
.y42{bottom:799.680000pt;}
.yac{bottom:802.240000pt;}
.ye{bottom:802.880000pt;}
.y6f{bottom:813.440000pt;}
.y41{bottom:817.920000pt;}
.yab{bottom:820.480000pt;}
.yd{bottom:821.440000pt;}
.y6e{bottom:831.680000pt;}
.y40{bottom:836.480000pt;}
.yaa{bottom:839.040000pt;}
.yc{bottom:839.680000pt;}
.y6d{bottom:851.200000pt;}
.y3f{bottom:854.720000pt;}
.ya9{bottom:857.280000pt;}
.yb{bottom:858.240000pt;}
.y6c{bottom:870.720000pt;}
.y3e{bottom:873.280000pt;}
.ya8{bottom:875.840000pt;}
.ya{bottom:876.480000pt;}
.y6b{bottom:890.240000pt;}
.y3d{bottom:891.520000pt;}
.ya7{bottom:894.080000pt;}
.y9{bottom:898.240000pt;}
.y3c{bottom:910.080000pt;}
.ya6{bottom:912.640000pt;}
.y3b{bottom:928.320000pt;}
.y8{bottom:930.240000pt;}
.ya5{bottom:930.880000pt;}
.y7{bottom:944.000000pt;}
.y3a{bottom:946.880000pt;}
.ya4{bottom:949.440000pt;}
.y6{bottom:960.000000pt;}
.y39{bottom:965.120000pt;}
.ya3{bottom:967.680000pt;}
.ya2{bottom:986.240000pt;}
.y38{bottom:987.200000pt;}
.y5{bottom:992.640000pt;}
.y34{bottom:1003.520000pt;}
.y1{bottom:1011.840000pt;}
.y33{bottom:1016.000000pt;}
.ha{height:18.165000pt;}
.h3{height:25.515000pt;}
.h12{height:27.443801pt;}
.hc{height:28.153125pt;}
.h19{height:28.183652pt;}
.h14{height:28.355437pt;}
.hb{height:29.328750pt;}
.h16{height:29.679820pt;}
.he{height:30.401250pt;}
.hd{height:30.877440pt;}
.h6{height:31.267500pt;}
.h9{height:35.831250pt;}
.h10{height:36.435000pt;}
.h1b{height:37.327500pt;}
.h5{height:39.611250pt;}
.h7{height:42.866250pt;}
.h17{height:43.259862pt;}
.h2{height:44.468750pt;}
.h4{height:46.343750pt;}
.h1a{height:47.375000pt;}
.h8{height:51.088750pt;}
.h18{height:140.909200pt;}
.h13{height:200.090933pt;}
.h11{height:207.088133pt;}
.h15{height:267.142400pt;}
.hf{height:1122.559975pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:232.087600pt;}
.w5{width:275.909467pt;}
.w3{width:280.090267pt;}
.w4{width:395.905200pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2e{left:3.409790pt;}
.x2f{left:10.388613pt;}
.x2d{left:12.807280pt;}
.x1c{left:23.289579pt;}
.xe{left:26.670164pt;}
.x13{left:29.024479pt;}
.x25{left:39.157824pt;}
.x1d{left:41.126569pt;}
.x27{left:46.790695pt;}
.x11{left:47.858994pt;}
.xd{left:50.998080pt;}
.x26{left:65.448824pt;}
.x1{left:71.680000pt;}
.x1f{left:75.989776pt;}
.x5{left:77.440000pt;}
.x2{left:79.836896pt;}
.x28{left:84.955051pt;}
.x24{left:90.043632pt;}
.x7{left:95.680000pt;}
.x2b{left:110.397955pt;}
.x30{left:114.413408pt;}
.x12{left:116.134112pt;}
.x3{left:119.680032pt;}
.x23{left:126.511794pt;}
.x10{left:129.475227pt;}
.xf{left:132.614312pt;}
.x21{left:149.410408pt;}
.x1e{left:151.391597pt;}
.x22{left:153.650892pt;}
.x6{left:158.715488pt;}
.x14{left:171.068114pt;}
.x29{left:195.207635pt;}
.x20{left:199.027467pt;}
.x2a{left:215.561958pt;}
.x1b{left:256.374933pt;}
.x2c{left:259.025333pt;}
.xc{left:280.376267pt;}
.x9{left:314.744128pt;}
.x1a{left:319.542336pt;}
.x16{left:333.253440pt;}
.xb{left:336.583360pt;}
.x18{left:346.589760pt;}
.x8{left:534.019840pt;}
.xa{left:537.860160pt;}
.x19{left:559.139840pt;}
.x15{left:561.860160pt;}
.x17{left:619.139840pt;}
.x4{left:721.479680pt;}
}




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