
    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_d42c23e2af6234495e1741e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115000;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_7686c986dd62203d805be99a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.113000;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_97ee20931710ddb95e7c1b66.woff')format("woff");}.ff3{font-family:ff3;line-height:1.187000;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_0a20be4307655ef3cdf42f10.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_7c105fd21beacbb95e103125.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_fd2b725e20d7ea2a8ca68901.woff')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_f9ab80caaf1c1b8386fd21e0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_aa7ae271089dc1d6eff18644.woff')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_f321f53d67310d709d0f2ce7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939500;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_ebc2e19144b4ca89c222ef89.woff')format("woff");}.ffa{font-family:ffa;line-height:1.051000;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_69adae831079f25bc8b0a5ac.woff')format("woff");}.ffb{font-family:ffb;line-height:1.051000;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_2d8ee06233bcfb36c70feb78.woff')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_79f68773447e54436e0f1430.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_f2149aceeb2102d07d14aca1.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112000;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_a74a1929ddd532816ef89429.woff')format("woff");}.fff{font-family:fff;line-height:0.970215;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_e5ce397f2b6f6586cd7aaf74.woff')format("woff");}.ff10{font-family:ff10;line-height:1.115000;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_7006af882a538455602be6fc.woff')format("woff");}.ff11{font-family:ff11;line-height:1.087891;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_23e2875309eb6df521a486e2.woff')format("woff");}.ff12{font-family:ff12;line-height:1.087891;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_865d722386e8125f6bcb94d2.woff')format("woff");}.ff13{font-family:ff13;line-height:1.204000;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_f8d447cca2f9a93fcb0597f4.woff')format("woff");}.ff14{font-family:ff14;line-height:1.020020;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_cbd6858d0305d15325d1ebf9.woff')format("woff");}.ff15{font-family:ff15;line-height:1.114000;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);}
.v1{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:90.120000px;}
.ls14{letter-spacing:-2.334000px;}
.ls1{letter-spacing:-2.298000px;}
.ls13{letter-spacing:-1.764000px;}
.ls7{letter-spacing:-0.517200px;}
.ls6{letter-spacing:-0.409200px;}
.lsb{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:1.419750px;}
.ls9{letter-spacing:1.542000px;}
.ls8{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.406000px;}
.ls3{letter-spacing:20.943000px;}
.ls4{letter-spacing:37.710000px;}
.ls5{letter-spacing:37.800000px;}
.ls10{letter-spacing:71.872500px;}
.ls2{letter-spacing:98.872500px;}
.ls12{letter-spacing:105.022500px;}
.lse{letter-spacing:105.623400px;}
.lsd{letter-spacing:105.714000px;}
.lsf{letter-spacing:128.158650px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(11,48,65),0 0.015em rgb(11,48,65),0.015em 0 rgb(11,48,65),0 -0.015em  rgb(11,48,65);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(11,48,65);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws37{word-spacing:-90.197100px;}
.wsf{word-spacing:-72.150000px;}
.ws15{word-spacing:-72.000000px;}
.ws7{word-spacing:-47.760000px;}
.ws31{word-spacing:-38.760000px;}
.ws38{word-spacing:-36.320700px;}
.ws2e{word-spacing:-31.358400px;}
.ws36{word-spacing:-31.198650px;}
.ws39{word-spacing:-26.312700px;}
.ws5{word-spacing:-23.613450px;}
.wsd{word-spacing:-22.526700px;}
.wsc{word-spacing:-21.485550px;}
.wsb{word-spacing:-20.160450px;}
.wsa{word-spacing:-20.128500px;}
.ws2b{word-spacing:-19.622400px;}
.ws3d{word-spacing:-19.613850px;}
.ws3e{word-spacing:-19.185600px;}
.ws10{word-spacing:-18.470400px;}
.ws2f{word-spacing:-17.399550px;}
.ws3c{word-spacing:-14.646450px;}
.ws0{word-spacing:-9.274500px;}
.ws4{word-spacing:-2.901450px;}
.ws3{word-spacing:-1.670400px;}
.ws16{word-spacing:-1.122900px;}
.wse{word-spacing:-1.092900px;}
.ws11{word-spacing:-0.852000px;}
.ws2{word-spacing:-0.216300px;}
.ws2d{word-spacing:-0.161850px;}
.ws33{word-spacing:-0.108150px;}
.ws14{word-spacing:-0.102000px;}
.ws6{word-spacing:0.000000px;}
.ws3b{word-spacing:0.038700px;}
.ws8{word-spacing:0.207000px;}
.ws18{word-spacing:0.208350px;}
.ws34{word-spacing:0.570300px;}
.ws32{word-spacing:0.713400px;}
.ws9{word-spacing:0.942000px;}
.ws12{word-spacing:1.243500px;}
.ws17{word-spacing:1.423500px;}
.ws13{word-spacing:1.824000px;}
.ws30{word-spacing:2.079450px;}
.ws19{word-spacing:2.110500px;}
.ws1b{word-spacing:2.661900px;}
.ws1d{word-spacing:4.222500px;}
.ws1{word-spacing:4.258500px;}
.ws1a{word-spacing:6.231300px;}
.ws1c{word-spacing:6.780000px;}
.ws2c{word-spacing:16.570500px;}
.ws20{word-spacing:18.995100px;}
.ws1e{word-spacing:21.820350px;}
.ws35{word-spacing:23.267400px;}
.ws1f{word-spacing:23.474250px;}
.ws2a{word-spacing:24.966900px;}
.ws21{word-spacing:25.657950px;}
.ws29{word-spacing:26.528100px;}
.ws27{word-spacing:29.368200px;}
.ws28{word-spacing:30.816900px;}
.ws22{word-spacing:31.125150px;}
.ws26{word-spacing:31.682550px;}
.ws24{word-spacing:32.931300px;}
.ws23{word-spacing:34.698900px;}
.ws25{word-spacing:35.151300px;}
.ws3a{word-spacing:622.300350px;}
._1c{margin-left:-11.158950px;}
._19{margin-left:-8.958300px;}
._1b{margin-left:-7.728600px;}
._1a{margin-left:-5.885400px;}
._6{margin-left:-4.641600px;}
._3{margin-left:-3.222000px;}
._2{margin-left:-1.579500px;}
._0{width:1.782000px;}
._1{width:3.118500px;}
._4{width:4.762500px;}
._17{width:5.973300px;}
._7{width:18.837600px;}
._9{width:19.875450px;}
._a{width:21.141000px;}
._b{width:23.515950px;}
._5{width:25.477500px;}
._c{width:27.451500px;}
._e{width:28.507500px;}
._d{width:30.183000px;}
._14{width:37.969500px;}
._16{width:39.116250px;}
._15{width:40.552200px;}
._18{width:41.832600px;}
._f{width:45.118500px;}
._10{width:47.293950px;}
._1d{width:48.794400px;}
._13{width:50.466750px;}
._11{width:52.489350px;}
._12{width:54.080400px;}
._8{width:776.728800px;}
.fcf{color:rgb(255,255,255);}
.fce{color:rgb(5,99,193);}
.fc2{color:rgb(63,63,63);}
.fc4{color:rgb(0,0,0);}
.fc10{color:rgb(117,117,117);}
.fc5{color:rgb(4,137,142);}
.fc3{color:rgb(9,53,80);}
.fc6{color:rgb(232,158,0);}
.fc1{color:rgb(195,86,80);}
.fc7{color:rgb(21,96,130);}
.fc8{color:rgb(11,48,65);}
.fca{color:rgb(0,176,80);}
.fc9{color:rgb(24,60,118);}
.fcd{color:rgb(1,136,141);}
.fcb{color:rgb(115,117,125);}
.fc0{color:rgb(68,84,106);}
.fcc{color:transparent;}
.fs16{font-size:9.000000px;}
.fs17{font-size:9.150000px;}
.fs0{font-size:40.500000px;}
.fs1{font-size:40.650000px;}
.fsf{font-size:67.500000px;}
.fse{font-size:67.650000px;}
.fsd{font-size:72.000000px;}
.fsc{font-size:72.150000px;}
.fsa{font-size:76.500000px;}
.fsb{font-size:76.650000px;}
.fs14{font-size:81.150000px;}
.fs19{font-size:85.650000px;}
.fs1d{font-size:90.150000px;}
.fs8{font-size:94.500000px;}
.fs9{font-size:94.650000px;}
.fs7{font-size:103.650000px;}
.fs15{font-size:108.150000px;}
.fs10{font-size:112.650000px;}
.fs11{font-size:112.800000px;}
.fs4{font-size:121.650000px;}
.fs5{font-size:121.800000px;}
.fs1b{font-size:130.650000px;}
.fs1c{font-size:130.800000px;}
.fs1e{font-size:135.150000px;}
.fs1f{font-size:135.300000px;}
.fs12{font-size:144.150000px;}
.fs13{font-size:144.300000px;}
.fs3{font-size:193.800000px;}
.fs2{font-size:216.300000px;}
.fs6{font-size:238.800000px;}
.fs18{font-size:238.950000px;}
.fs1a{font-size:324.450000px;}
.y32{bottom:-12455.505000px;}
.y31{bottom:-6929.625000px;}
.y0{bottom:0.000000px;}
.y44{bottom:15.937500px;}
.y43{bottom:21.900000px;}
.y39{bottom:27.300000px;}
.y2{bottom:44.400000px;}
.y38{bottom:50.962500px;}
.y1{bottom:56.775000px;}
.y37{bottom:74.625000px;}
.y42{bottom:83.512500px;}
.y8{bottom:85.837500px;}
.y3c{bottom:100.312500px;}
.y8c{bottom:102.787500px;}
.y36{bottom:108.412500px;}
.y6a{bottom:111.562500px;}
.y7{bottom:118.500000px;}
.y69{bottom:143.137500px;}
.y6{bottom:150.030000px;}
.y5d{bottom:156.300000px;}
.ye{bottom:162.630000px;}
.y4d{bottom:163.305000px;}
.y51{bottom:171.450000px;}
.y68{bottom:174.675000px;}
.y88{bottom:177.975000px;}
.y94{bottom:186.825000px;}
.y3f{bottom:190.275000px;}
.y5c{bottom:194.580000px;}
.y50{bottom:196.230000px;}
.y67{bottom:206.220000px;}
.y7a{bottom:207.495000px;}
.y5{bottom:214.905000px;}
.y3e{bottom:218.445000px;}
.y8b{bottom:218.580000px;}
.y76{bottom:219.900000px;}
.y4f{bottom:222.150000px;}
.y19{bottom:223.545000px;}
.y4c{bottom:227.550000px;}
.y79{bottom:232.275000px;}
.y5b{bottom:232.875000px;}
.y93{bottom:236.400000px;}
.y30{bottom:237.495000px;}
.y87{bottom:242.205000px;}
.y75{bottom:244.695000px;}
.y74{bottom:246.945000px;}
.y18{bottom:251.700000px;}
.y14{bottom:252.150000px;}
.y78{bottom:257.070000px;}
.y2f{bottom:261.150000px;}
.y92{bottom:262.320000px;}
.y4b{bottom:263.955000px;}
.y4{bottom:266.745000px;}
.y66{bottom:270.405000px;}
.y5a{bottom:271.200000px;}
.y17{bottom:280.995000px;}
.y13{bottom:281.445000px;}
.y77{bottom:281.850000px;}
.y2e{bottom:284.820000px;}
.yd{bottom:288.570000px;}
.y91{bottom:289.350000px;}
.y4a{bottom:289.875000px;}
.y65{bottom:301.950000px;}
.y2d{bottom:308.475000px;}
.y59{bottom:309.480000px;}
.y12{bottom:309.600000px;}
.y16{bottom:310.275000px;}
.y28{bottom:314.745000px;}
.y3{bottom:319.695000px;}
.y86{bottom:327.525000px;}
.y73{bottom:329.175000px;}
.y2c{bottom:331.005000px;}
.y80{bottom:333.105000px;}
.y64{bottom:333.525000px;}
.y27{bottom:336.105000px;}
.y15{bottom:338.445000px;}
.y41{bottom:346.275000px;}
.y58{bottom:347.820000px;}
.y8a{bottom:348.150000px;}
.y2b{bottom:354.630000px;}
.y72{bottom:355.080000px;}
.y26{bottom:357.525000px;}
.yc{bottom:372.270000px;}
.y40{bottom:374.445000px;}
.y49{bottom:377.775000px;}
.y85{bottom:378.225000px;}
.y2a{bottom:378.300000px;}
.y25{bottom:378.945000px;}
.y71{bottom:381.000000px;}
.y7f{bottom:382.695000px;}
.y57{bottom:386.100000px;}
.y63{bottom:396.600000px;}
.y24{bottom:400.350000px;}
.y29{bottom:401.970000px;}
.y7e{bottom:408.600000px;}
.y90{bottom:412.350000px;}
.y1b{bottom:412.725000px;}
.y70{bottom:421.575000px;}
.y56{bottom:424.380000px;}
.y62{bottom:428.130000px;}
.y84{bottom:428.925000px;}
.y7d{bottom:433.380000px;}
.y11{bottom:436.800000px;}
.y1a{bottom:437.775000px;}
.y6f{bottom:447.495000px;}
.yb{bottom:456.000000px;}
.y61{bottom:460.800000px;}
.y8f{bottom:461.925000px;}
.y55{bottom:462.705000px;}
.y48{bottom:465.630000px;}
.y10{bottom:466.080000px;}
.y6e{bottom:473.400000px;}
.y3d{bottom:476.745000px;}
.y89{bottom:477.705000px;}
.y83{bottom:479.580000px;}
.y8e{bottom:487.830000px;}
.yf{bottom:494.250000px;}
.y6d{bottom:499.320000px;}
.y7c{bottom:508.875000px;}
.y8d{bottom:514.875000px;}
.y1e{bottom:521.130000px;}
.y23{bottom:522.150000px;}
.y82{bottom:530.280000px;}
.y7b{bottom:534.795000px;}
.y54{bottom:539.325000px;}
.ya{bottom:539.700000px;}
.y6c{bottom:540.975000px;}
.y81{bottom:548.325000px;}
.y47{bottom:554.625000px;}
.y1d{bottom:559.950000px;}
.y22{bottom:561.195000px;}
.y60{bottom:584.175000px;}
.y1f{bottom:597.750000px;}
.y21{bottom:599.475000px;}
.y46{bottom:599.700000px;}
.y53{bottom:599.880000px;}
.y6b{bottom:623.220000px;}
.y9{bottom:631.650000px;}
.y4e{bottom:631.695000px;}
.y1c{bottom:633.780000px;}
.y20{bottom:635.025000px;}
.y52{bottom:664.125000px;}
.y5f{bottom:672.075000px;}
.y45{bottom:685.275000px;}
.y5e{bottom:688.005000px;}
.y3b{bottom:696.750000px;}
.y35{bottom:709.905000px;}
.y3a{bottom:739.530000px;}
.y33{bottom:742.275000px;}
.y34{bottom:743.505000px;}
.h1{height:37.989000px;}
.h2{height:38.129700px;}
.h14{height:59.197500px;}
.h13{height:59.329050px;}
.h12{height:62.352000px;}
.h11{height:62.481900px;}
.h21{height:62.606470px;}
.he{height:62.959500px;}
.h10{height:66.249000px;}
.hf{height:66.378900px;}
.h16{height:67.222050px;}
.h29{height:69.185083px;}
.h28{height:71.172363px;}
.h19{height:71.757000px;}
.h18{height:71.897700px;}
.h1c{height:75.956400px;}
.h2b{height:77.912842px;}
.h22{height:78.901538px;}
.h2c{height:79.997100px;}
.h31{height:80.254050px;}
.h32{height:80.339700px;}
.h20{height:81.795750px;}
.h1e{height:82.342310px;}
.h17{height:82.451953px;}
.hd{height:83.008050px;}
.h15{height:84.707520px;}
.h9{height:88.452000px;}
.hc{height:88.592400px;}
.ha{height:88.641000px;}
.h2f{height:88.687050px;}
.hb{height:88.781700px;}
.h25{height:95.499536px;}
.h26{height:95.609180px;}
.h8{height:97.016400px;}
.h23{height:97.223700px;}
.h30{height:101.228400px;}
.h1d{height:103.283250px;}
.h5{height:113.864400px;}
.h6{height:114.004800px;}
.h2d{height:126.770700px;}
.h2e{height:126.911400px;}
.h1a{height:135.212700px;}
.h1b{height:135.353400px;}
.h27{height:141.659473px;}
.h2a{height:168.032842px;}
.h4{height:185.466600px;}
.h3{height:206.999100px;}
.h7{height:228.531600px;}
.h1f{height:228.675150px;}
.h24{height:243.971191px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:28.912479px;}
.x1c{left:32.437479px;}
.x23{left:57.299979px;}
.x25{left:71.699979px;}
.x2{left:76.949979px;}
.x3a{left:78.562479px;}
.x3{left:79.574979px;}
.x2c{left:86.474979px;}
.x4{left:92.774979px;}
.x2b{left:93.824979px;}
.x28{left:105.824979px;}
.x2f{left:110.062479px;}
.x2d{left:113.474979px;}
.x3d{left:129.112479px;}
.x29{left:133.612479px;}
.x1b{left:139.499979px;}
.x2e{left:140.512479px;}
.x39{left:143.474979px;}
.x1a{left:152.999979px;}
.x24{left:154.394979px;}
.x1e{left:160.154979px;}
.x1{left:169.499979px;}
.x7{left:209.519979px;}
.x6{left:224.924979px;}
.xf{left:229.574979px;}
.x20{left:261.149979px;}
.x10{left:265.319979px;}
.x3e{left:284.279979px;}
.x3f{left:297.449979px;}
.x5{left:311.024979px;}
.x3c{left:324.899979px;}
.xe{left:342.899979px;}
.x30{left:350.099979px;}
.x31{left:359.519979px;}
.x21{left:366.569979px;}
.x27{left:524.444979px;}
.x3b{left:526.904979px;}
.xa{left:544.844979px;}
.x9{left:572.324979px;}
.x34{left:577.754979px;}
.x12{left:584.579979px;}
.x13{left:588.644979px;}
.x1f{left:593.849979px;}
.x32{left:598.079979px;}
.x33{left:600.674979px;}
.x8{left:613.049979px;}
.x11{left:646.124979px;}
.x19{left:701.444979px;}
.x37{left:821.204979px;}
.x35{left:831.749979px;}
.x38{left:840.719979px;}
.x36{left:847.349979px;}
.xc{left:920.954979px;}
.x16{left:922.619979px;}
.xd{left:924.704979px;}
.x15{left:948.899979px;}
.x17{left:994.949979px;}
.xb{left:1002.479979px;}
.x14{left:1036.229979px;}
.x22{left:1042.049979px;}
.x26{left:1103.024979px;}
.x2a{left:1118.129979px;}
.x1d{left:18845.369979px;}
@media print{
.v1{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:80.106667pt;}
.ls14{letter-spacing:-2.074667pt;}
.ls1{letter-spacing:-2.042667pt;}
.ls13{letter-spacing:-1.568000pt;}
.ls7{letter-spacing:-0.459733pt;}
.ls6{letter-spacing:-0.363733pt;}
.lsb{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:1.262000pt;}
.ls9{letter-spacing:1.370667pt;}
.ls8{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.138667pt;}
.ls3{letter-spacing:18.616000pt;}
.ls4{letter-spacing:33.520000pt;}
.ls5{letter-spacing:33.600000pt;}
.ls10{letter-spacing:63.886667pt;}
.ls2{letter-spacing:87.886667pt;}
.ls12{letter-spacing:93.353333pt;}
.lse{letter-spacing:93.887467pt;}
.lsd{letter-spacing:93.968000pt;}
.lsf{letter-spacing:113.918800pt;}
.ws37{word-spacing:-80.175200pt;}
.wsf{word-spacing:-64.133333pt;}
.ws15{word-spacing:-64.000000pt;}
.ws7{word-spacing:-42.453333pt;}
.ws31{word-spacing:-34.453333pt;}
.ws38{word-spacing:-32.285067pt;}
.ws2e{word-spacing:-27.874133pt;}
.ws36{word-spacing:-27.732133pt;}
.ws39{word-spacing:-23.389067pt;}
.ws5{word-spacing:-20.989733pt;}
.wsd{word-spacing:-20.023733pt;}
.wsc{word-spacing:-19.098267pt;}
.wsb{word-spacing:-17.920400pt;}
.wsa{word-spacing:-17.892000pt;}
.ws2b{word-spacing:-17.442133pt;}
.ws3d{word-spacing:-17.434533pt;}
.ws3e{word-spacing:-17.053867pt;}
.ws10{word-spacing:-16.418133pt;}
.ws2f{word-spacing:-15.466267pt;}
.ws3c{word-spacing:-13.019067pt;}
.ws0{word-spacing:-8.244000pt;}
.ws4{word-spacing:-2.579067pt;}
.ws3{word-spacing:-1.484800pt;}
.ws16{word-spacing:-0.998133pt;}
.wse{word-spacing:-0.971467pt;}
.ws11{word-spacing:-0.757333pt;}
.ws2{word-spacing:-0.192267pt;}
.ws2d{word-spacing:-0.143867pt;}
.ws33{word-spacing:-0.096133pt;}
.ws14{word-spacing:-0.090667pt;}
.ws6{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.034400pt;}
.ws8{word-spacing:0.184000pt;}
.ws18{word-spacing:0.185200pt;}
.ws34{word-spacing:0.506933pt;}
.ws32{word-spacing:0.634133pt;}
.ws9{word-spacing:0.837333pt;}
.ws12{word-spacing:1.105333pt;}
.ws17{word-spacing:1.265333pt;}
.ws13{word-spacing:1.621333pt;}
.ws30{word-spacing:1.848400pt;}
.ws19{word-spacing:1.876000pt;}
.ws1b{word-spacing:2.366133pt;}
.ws1d{word-spacing:3.753333pt;}
.ws1{word-spacing:3.785333pt;}
.ws1a{word-spacing:5.538933pt;}
.ws1c{word-spacing:6.026667pt;}
.ws2c{word-spacing:14.729333pt;}
.ws20{word-spacing:16.884533pt;}
.ws1e{word-spacing:19.395867pt;}
.ws35{word-spacing:20.682133pt;}
.ws1f{word-spacing:20.866000pt;}
.ws2a{word-spacing:22.192800pt;}
.ws21{word-spacing:22.807067pt;}
.ws29{word-spacing:23.580533pt;}
.ws27{word-spacing:26.105067pt;}
.ws28{word-spacing:27.392800pt;}
.ws22{word-spacing:27.666800pt;}
.ws26{word-spacing:28.162267pt;}
.ws24{word-spacing:29.272267pt;}
.ws23{word-spacing:30.843467pt;}
.ws25{word-spacing:31.245600pt;}
.ws3a{word-spacing:553.155867pt;}
._1c{margin-left:-9.919067pt;}
._19{margin-left:-7.962933pt;}
._1b{margin-left:-6.869867pt;}
._1a{margin-left:-5.231467pt;}
._6{margin-left:-4.125867pt;}
._3{margin-left:-2.864000pt;}
._2{margin-left:-1.404000pt;}
._0{width:1.584000pt;}
._1{width:2.772000pt;}
._4{width:4.233333pt;}
._17{width:5.309600pt;}
._7{width:16.744533pt;}
._9{width:17.667067pt;}
._a{width:18.792000pt;}
._b{width:20.903067pt;}
._5{width:22.646667pt;}
._c{width:24.401333pt;}
._e{width:25.340000pt;}
._d{width:26.829333pt;}
._14{width:33.750667pt;}
._16{width:34.770000pt;}
._15{width:36.046400pt;}
._18{width:37.184533pt;}
._f{width:40.105333pt;}
._10{width:42.039067pt;}
._1d{width:43.372800pt;}
._13{width:44.859333pt;}
._11{width:46.657200pt;}
._12{width:48.071467pt;}
._8{width:690.425600pt;}
.fs16{font-size:8.000000pt;}
.fs17{font-size:8.133333pt;}
.fs0{font-size:36.000000pt;}
.fs1{font-size:36.133333pt;}
.fsf{font-size:60.000000pt;}
.fse{font-size:60.133333pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:64.133333pt;}
.fsa{font-size:68.000000pt;}
.fsb{font-size:68.133333pt;}
.fs14{font-size:72.133333pt;}
.fs19{font-size:76.133333pt;}
.fs1d{font-size:80.133333pt;}
.fs8{font-size:84.000000pt;}
.fs9{font-size:84.133333pt;}
.fs7{font-size:92.133333pt;}
.fs15{font-size:96.133333pt;}
.fs10{font-size:100.133333pt;}
.fs11{font-size:100.266667pt;}
.fs4{font-size:108.133333pt;}
.fs5{font-size:108.266667pt;}
.fs1b{font-size:116.133333pt;}
.fs1c{font-size:116.266667pt;}
.fs1e{font-size:120.133333pt;}
.fs1f{font-size:120.266667pt;}
.fs12{font-size:128.133333pt;}
.fs13{font-size:128.266667pt;}
.fs3{font-size:172.266667pt;}
.fs2{font-size:192.266667pt;}
.fs6{font-size:212.266667pt;}
.fs18{font-size:212.400000pt;}
.fs1a{font-size:288.400000pt;}
.y32{bottom:-11071.560000pt;}
.y31{bottom:-6159.666667pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:14.166667pt;}
.y43{bottom:19.466667pt;}
.y39{bottom:24.266667pt;}
.y2{bottom:39.466667pt;}
.y38{bottom:45.300000pt;}
.y1{bottom:50.466667pt;}
.y37{bottom:66.333333pt;}
.y42{bottom:74.233333pt;}
.y8{bottom:76.300000pt;}
.y3c{bottom:89.166667pt;}
.y8c{bottom:91.366667pt;}
.y36{bottom:96.366667pt;}
.y6a{bottom:99.166667pt;}
.y7{bottom:105.333333pt;}
.y69{bottom:127.233333pt;}
.y6{bottom:133.360000pt;}
.y5d{bottom:138.933333pt;}
.ye{bottom:144.560000pt;}
.y4d{bottom:145.160000pt;}
.y51{bottom:152.400000pt;}
.y68{bottom:155.266667pt;}
.y88{bottom:158.200000pt;}
.y94{bottom:166.066667pt;}
.y3f{bottom:169.133333pt;}
.y5c{bottom:172.960000pt;}
.y50{bottom:174.426667pt;}
.y67{bottom:183.306667pt;}
.y7a{bottom:184.440000pt;}
.y5{bottom:191.026667pt;}
.y3e{bottom:194.173333pt;}
.y8b{bottom:194.293333pt;}
.y76{bottom:195.466667pt;}
.y4f{bottom:197.466667pt;}
.y19{bottom:198.706667pt;}
.y4c{bottom:202.266667pt;}
.y79{bottom:206.466667pt;}
.y5b{bottom:207.000000pt;}
.y93{bottom:210.133333pt;}
.y30{bottom:211.106667pt;}
.y87{bottom:215.293333pt;}
.y75{bottom:217.506667pt;}
.y74{bottom:219.506667pt;}
.y18{bottom:223.733333pt;}
.y14{bottom:224.133333pt;}
.y78{bottom:228.506667pt;}
.y2f{bottom:232.133333pt;}
.y92{bottom:233.173333pt;}
.y4b{bottom:234.626667pt;}
.y4{bottom:237.106667pt;}
.y66{bottom:240.360000pt;}
.y5a{bottom:241.066667pt;}
.y17{bottom:249.773333pt;}
.y13{bottom:250.173333pt;}
.y77{bottom:250.533333pt;}
.y2e{bottom:253.173333pt;}
.yd{bottom:256.506667pt;}
.y91{bottom:257.200000pt;}
.y4a{bottom:257.666667pt;}
.y65{bottom:268.400000pt;}
.y2d{bottom:274.200000pt;}
.y59{bottom:275.093333pt;}
.y12{bottom:275.200000pt;}
.y16{bottom:275.800000pt;}
.y28{bottom:279.773333pt;}
.y3{bottom:284.173333pt;}
.y86{bottom:291.133333pt;}
.y73{bottom:292.600000pt;}
.y2c{bottom:294.226667pt;}
.y80{bottom:296.093333pt;}
.y64{bottom:296.466667pt;}
.y27{bottom:298.760000pt;}
.y15{bottom:300.840000pt;}
.y41{bottom:307.800000pt;}
.y58{bottom:309.173333pt;}
.y8a{bottom:309.466667pt;}
.y2b{bottom:315.226667pt;}
.y72{bottom:315.626667pt;}
.y26{bottom:317.800000pt;}
.yc{bottom:330.906667pt;}
.y40{bottom:332.840000pt;}
.y49{bottom:335.800000pt;}
.y85{bottom:336.200000pt;}
.y2a{bottom:336.266667pt;}
.y25{bottom:336.840000pt;}
.y71{bottom:338.666667pt;}
.y7f{bottom:340.173333pt;}
.y57{bottom:343.200000pt;}
.y63{bottom:352.533333pt;}
.y24{bottom:355.866667pt;}
.y29{bottom:357.306667pt;}
.y7e{bottom:363.200000pt;}
.y90{bottom:366.533333pt;}
.y1b{bottom:366.866667pt;}
.y70{bottom:374.733333pt;}
.y56{bottom:377.226667pt;}
.y62{bottom:380.560000pt;}
.y84{bottom:381.266667pt;}
.y7d{bottom:385.226667pt;}
.y11{bottom:388.266667pt;}
.y1a{bottom:389.133333pt;}
.y6f{bottom:397.773333pt;}
.yb{bottom:405.333333pt;}
.y61{bottom:409.600000pt;}
.y8f{bottom:410.600000pt;}
.y55{bottom:411.293333pt;}
.y48{bottom:413.893333pt;}
.y10{bottom:414.293333pt;}
.y6e{bottom:420.800000pt;}
.y3d{bottom:423.773333pt;}
.y89{bottom:424.626667pt;}
.y83{bottom:426.293333pt;}
.y8e{bottom:433.626667pt;}
.yf{bottom:439.333333pt;}
.y6d{bottom:443.840000pt;}
.y7c{bottom:452.333333pt;}
.y8d{bottom:457.666667pt;}
.y1e{bottom:463.226667pt;}
.y23{bottom:464.133333pt;}
.y82{bottom:471.360000pt;}
.y7b{bottom:475.373333pt;}
.y54{bottom:479.400000pt;}
.ya{bottom:479.733333pt;}
.y6c{bottom:480.866667pt;}
.y81{bottom:487.400000pt;}
.y47{bottom:493.000000pt;}
.y1d{bottom:497.733333pt;}
.y22{bottom:498.840000pt;}
.y60{bottom:519.266667pt;}
.y1f{bottom:531.333333pt;}
.y21{bottom:532.866667pt;}
.y46{bottom:533.066667pt;}
.y53{bottom:533.226667pt;}
.y6b{bottom:553.973333pt;}
.y9{bottom:561.466667pt;}
.y4e{bottom:561.506667pt;}
.y1c{bottom:563.360000pt;}
.y20{bottom:564.466667pt;}
.y52{bottom:590.333333pt;}
.y5f{bottom:597.400000pt;}
.y45{bottom:609.133333pt;}
.y5e{bottom:611.560000pt;}
.y3b{bottom:619.333333pt;}
.y35{bottom:631.026667pt;}
.y3a{bottom:657.360000pt;}
.y33{bottom:659.800000pt;}
.y34{bottom:660.893333pt;}
.h1{height:33.768000pt;}
.h2{height:33.893067pt;}
.h14{height:52.620000pt;}
.h13{height:52.736933pt;}
.h12{height:55.424000pt;}
.h11{height:55.539467pt;}
.h21{height:55.650195pt;}
.he{height:55.964000pt;}
.h10{height:58.888000pt;}
.hf{height:59.003467pt;}
.h16{height:59.752933pt;}
.h29{height:61.497852pt;}
.h28{height:63.264323pt;}
.h19{height:63.784000pt;}
.h18{height:63.909067pt;}
.h1c{height:67.516800pt;}
.h2b{height:69.255859pt;}
.h22{height:70.134701pt;}
.h2c{height:71.108533pt;}
.h31{height:71.336933pt;}
.h32{height:71.413067pt;}
.h20{height:72.707333pt;}
.h1e{height:73.193164pt;}
.h17{height:73.290625pt;}
.hd{height:73.784933pt;}
.h15{height:75.295573pt;}
.h9{height:78.624000pt;}
.hc{height:78.748800pt;}
.ha{height:78.792000pt;}
.h2f{height:78.832933pt;}
.hb{height:78.917067pt;}
.h25{height:84.888477pt;}
.h26{height:84.985937pt;}
.h8{height:86.236800pt;}
.h23{height:86.421067pt;}
.h30{height:89.980800pt;}
.h1d{height:91.807333pt;}
.h5{height:101.212800pt;}
.h6{height:101.337600pt;}
.h2d{height:112.685067pt;}
.h2e{height:112.810133pt;}
.h1a{height:120.189067pt;}
.h1b{height:120.314133pt;}
.h27{height:125.919531pt;}
.h2a{height:149.362526pt;}
.h4{height:164.859200pt;}
.h3{height:183.999200pt;}
.h7{height:203.139200pt;}
.h1f{height:203.266800pt;}
.h24{height:216.863281pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:25.699981pt;}
.x1c{left:28.833314pt;}
.x23{left:50.933314pt;}
.x25{left:63.733314pt;}
.x2{left:68.399981pt;}
.x3a{left:69.833314pt;}
.x3{left:70.733314pt;}
.x2c{left:76.866648pt;}
.x4{left:82.466648pt;}
.x2b{left:83.399981pt;}
.x28{left:94.066648pt;}
.x2f{left:97.833314pt;}
.x2d{left:100.866648pt;}
.x3d{left:114.766648pt;}
.x29{left:118.766648pt;}
.x1b{left:123.999981pt;}
.x2e{left:124.899981pt;}
.x39{left:127.533314pt;}
.x1a{left:135.999981pt;}
.x24{left:137.239981pt;}
.x1e{left:142.359981pt;}
.x1{left:150.666648pt;}
.x7{left:186.239981pt;}
.x6{left:199.933314pt;}
.xf{left:204.066648pt;}
.x20{left:232.133314pt;}
.x10{left:235.839981pt;}
.x3e{left:252.693314pt;}
.x3f{left:264.399981pt;}
.x5{left:276.466648pt;}
.x3c{left:288.799981pt;}
.xe{left:304.799981pt;}
.x30{left:311.199981pt;}
.x31{left:319.573314pt;}
.x21{left:325.839981pt;}
.x27{left:466.173314pt;}
.x3b{left:468.359981pt;}
.xa{left:484.306648pt;}
.x9{left:508.733314pt;}
.x34{left:513.559981pt;}
.x12{left:519.626648pt;}
.x13{left:523.239981pt;}
.x1f{left:527.866648pt;}
.x32{left:531.626648pt;}
.x33{left:533.933314pt;}
.x8{left:544.933314pt;}
.x11{left:574.333314pt;}
.x19{left:623.506648pt;}
.x37{left:729.959981pt;}
.x35{left:739.333314pt;}
.x38{left:747.306648pt;}
.x36{left:753.199981pt;}
.xc{left:818.626648pt;}
.x16{left:820.106648pt;}
.xd{left:821.959981pt;}
.x15{left:843.466648pt;}
.x17{left:884.399981pt;}
.xb{left:891.093314pt;}
.x14{left:921.093314pt;}
.x22{left:926.266648pt;}
.x26{left:980.466648pt;}
.x2a{left:993.893314pt;}
.x1d{left:16751.439981pt;}
}




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