
    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_4c67a254b303a30380821235.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_e0fbfc7a0242aed841ff45b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_7f0ce76e6f5ac7d4c62938cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_6fdbb85bac257b7abeabb97f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_d091d010a2a50b150c5d9629.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_25a31cc3ecd122eca8d3faef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_23a499180e3002a8bbd44db8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_c3d727d8a2bb002130d67d88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_60bc306b6118bec9d7c6c6bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_5e9620ac8a0da6eb063bdc37.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_9708c717e92f3c46c20aa691.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.839000;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_b0ffd41d80cc5bc2d04ae4e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_535aa93a7aa9b22defe1863e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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_1e6d10e8ebc13c9f42b9b160.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.900000;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_4a25a52a1576de43c662b5a6.woff2')format("woff");}.fff{font-family:fff;line-height:0.431000;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_bfb02530e4dc048c14ee3e9b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_d8fb39ddaa003cda8903171c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.898000;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_cb6aa6b251ac9593b212e8eb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.693000;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_781cd2730bedc16a595d17ee.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_2da69e70df769a5a66e0f397.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.932000;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_5e9620ac8a0da6eb063bdc37.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_c0ccd267c9af70a101032b92.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.400000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,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);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6{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:-22.854000px;}
.v3{vertical-align:-9.822000px;}
.v1{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:16.182000px;}
.v8{vertical-align:19.698000px;}
.va{vertical-align:23.754000px;}
.v4{vertical-align:27.024000px;}
.v7{vertical-align:34.500000px;}
.v5{vertical-align:44.280000px;}
.v9{vertical-align:58.212000px;}
.v6{vertical-align:68.034000px;}
.vb{vertical-align:79.398000px;}
.ls4{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.001597px;}
.ls8{letter-spacing:0.001599px;}
.ls10{letter-spacing:0.005429px;}
.ls13{letter-spacing:0.028498px;}
.lsf{letter-spacing:0.327273px;}
.lsb{letter-spacing:0.654546px;}
.ls12{letter-spacing:1.767274px;}
.ls14{letter-spacing:2.984915px;}
.ls2{letter-spacing:2.988532px;}
.ls32{letter-spacing:2.989739px;}
.ls25{letter-spacing:2.990915px;}
.ls2b{letter-spacing:5.068984px;}
.ls15{letter-spacing:5.105459px;}
.ls2d{letter-spacing:5.116804px;}
.ls1a{letter-spacing:5.301823px;}
.ls2a{letter-spacing:5.317591px;}
.ls24{letter-spacing:5.367277px;}
.lse{letter-spacing:14.530921px;}
.ls26{letter-spacing:18.130924px;}
.lsa{letter-spacing:18.196379px;}
.ls3{letter-spacing:18.399053px;}
.lsd{letter-spacing:19.832744px;}
.ls11{letter-spacing:20.348700px;}
.ls9{letter-spacing:21.169739px;}
.ls5{letter-spacing:21.419468px;}
.ls17{letter-spacing:21.665473px;}
.ls2f{letter-spacing:21.796382px;}
.ls23{letter-spacing:21.861836px;}
.ls31{letter-spacing:21.927291px;}
.ls28{letter-spacing:21.992746px;}
.ls21{letter-spacing:22.254564px;}
.ls1d{letter-spacing:22.889412px;}
.ls27{letter-spacing:23.432747px;}
.ls2e{letter-spacing:23.760020px;}
.ls29{letter-spacing:25.330930px;}
.ls19{letter-spacing:26.123578px;}
.ls34{letter-spacing:26.901841px;}
.ls7{letter-spacing:26.967295px;}
.ls30{letter-spacing:27.098204px;}
.ls18{letter-spacing:29.847298px;}
.lsc{letter-spacing:29.912752px;}
.ls16{letter-spacing:30.043661px;}
.ls20{letter-spacing:30.370934px;}
.ls1c{letter-spacing:31.541578px;}
.ls1f{letter-spacing:31.547578px;}
.ls1e{letter-spacing:32.506861px;}
.ls0{letter-spacing:33.839194px;}
.ls6{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls33{letter-spacing:66.894601px;}
.ls2c{letter-spacing:87.937739px;}
.ls1b{letter-spacing:96.473578px;}
.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;}
}
.ws1{word-spacing:-48.418425px;}
.ws44{word-spacing:-47.323676px;}
.ws3f{word-spacing:-33.453846px;}
.ws2f{word-spacing:-32.727300px;}
.ws18{word-spacing:-27.646998px;}
.ws2c{word-spacing:-18.261833px;}
.ws0{word-spacing:-16.139475px;}
.ws45{word-spacing:-14.727285px;}
.ws3{word-spacing:-13.449600px;}
.ws42{word-spacing:-13.221829px;}
.ws40{word-spacing:-12.698192px;}
.ws22{word-spacing:-12.567283px;}
.ws2b{word-spacing:-12.501829px;}
.ws33{word-spacing:-12.305465px;}
.ws3a{word-spacing:-12.109101px;}
.ws1b{word-spacing:-11.520010px;}
.ws1a{word-spacing:-11.476915px;}
.ws2a{word-spacing:-11.417140px;}
.ws11{word-spacing:-11.357364px;}
.ws43{word-spacing:-11.258191px;}
.ws16{word-spacing:-11.127282px;}
.ws10{word-spacing:-11.118262px;}
.ws35{word-spacing:-11.061827px;}
.ws29{word-spacing:-10.996373px;}
.ws17{word-spacing:-10.930918px;}
.ws1e{word-spacing:-10.865464px;}
.ws3d{word-spacing:-10.800009px;}
.ws36{word-spacing:-10.734554px;}
.ws31{word-spacing:-10.472736px;}
.ws49{word-spacing:-10.400954px;}
.ws4b{word-spacing:-10.341179px;}
.ws23{word-spacing:-10.086554px;}
.ws14{word-spacing:-10.042301px;}
.ws27{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws3b{word-spacing:-9.693826px;}
.ws12{word-spacing:-9.683647px;}
.ws4a{word-spacing:-9.629849px;}
.ws7{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws15{word-spacing:-8.836371px;}
.ws46{word-spacing:-7.591501px;}
.ws13{word-spacing:-7.412174px;}
.ws47{word-spacing:-6.999723px;}
.ws48{word-spacing:-6.874194px;}
.ws41{word-spacing:-5.956369px;}
.ws28{word-spacing:-5.439277px;}
.ws3c{word-spacing:-5.373823px;}
.ws32{word-spacing:-5.242913px;}
.wsf{word-spacing:-5.027128px;}
.ws30{word-spacing:-4.915640px;}
.ws38{word-spacing:-4.123640px;}
.ws1d{word-spacing:-3.207275px;}
.ws1f{word-spacing:-0.065455px;}
.ws9{word-spacing:-0.053798px;}
.wsc{word-spacing:0.000000px;}
.ws37{word-spacing:0.648001px;}
.ws34{word-spacing:2.415275px;}
.wsd{word-spacing:2.683639px;}
.ws20{word-spacing:6.673496px;}
.ws21{word-spacing:6.676552px;}
.wsa{word-spacing:9.199526px;}
.ws26{word-spacing:10.800009px;}
.ws24{word-spacing:10.865464px;}
.wse{word-spacing:11.429123px;}
.ws25{word-spacing:14.465467px;}
.ws1c{word-spacing:15.250922px;}
.ws39{word-spacing:17.476378px;}
.ws2e{word-spacing:18.130924px;}
.ws6{word-spacing:18.345254px;}
.ws8{word-spacing:18.399053px;}
.wsb{word-spacing:21.142771px;}
.ws2{word-spacing:23.312640px;}
.ws3e{word-spacing:33.440755px;}
.ws2d{word-spacing:141.774664px;}
.ws19{word-spacing:2261.856812px;}
._19{margin-left:-18.196379px;}
._2{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._9{margin-left:-3.959432px;}
._1{margin-left:-2.668393px;}
._5{margin-left:-1.613952px;}
._6{width:1.613952px;}
._0{width:2.668393px;}
._8{width:3.798849px;}
._18{width:5.284785px;}
._1a{width:19.860540px;}
._4{width:20.959727px;}
._7{width:22.143414px;}
._a{width:26.554609px;}
._16{width:29.520025px;}
._b{width:34.968715px;}
._17{width:53.777696px;}
._15{width:68.741940px;}
._f{width:1124.311210px;}
._13{width:1197.031270px;}
._10{width:1241.796715px;}
._12{width:1390.427200px;}
._d{width:1510.472721px;}
._c{width:1527.992141px;}
._11{width:1727.737167px;}
._e{width:1932.020974px;}
._14{width:2030.990783px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y5d{bottom:155.830500px;}
.y3d{bottom:160.314000px;}
.y5f{bottom:162.666000px;}
.y60{bottom:168.966000px;}
.y5a{bottom:169.845000px;}
.y29{bottom:173.425500px;}
.y59{bottom:173.890500px;}
.y5e{bottom:184.960500px;}
.y5c{bottom:188.442000px;}
.y3c{bottom:190.800000px;}
.y5b{bottom:192.925500px;}
.y28{bottom:206.466000px;}
.y76{bottom:207.295500px;}
.y58{bottom:224.298000px;}
.y3b{bottom:246.256500px;}
.y27{bottom:253.314000px;}
.y75{bottom:254.275500px;}
.y57{bottom:269.412000px;}
.y3a{bottom:287.973000px;}
.y39{bottom:299.197500px;}
.y26{bottom:300.163500px;}
.y74{bottom:306.331500px;}
.y56{bottom:321.157500px;}
.ye{bottom:346.383000px;}
.y25{bottom:347.013000px;}
.y38{bottom:352.138500px;}
.y73{bottom:369.019500px;}
.yd{bottom:374.029500px;}
.y55{bottom:382.023000px;}
.y24{bottom:393.862500px;}
.yc{bottom:401.676000px;}
.y37{bottom:407.083500px;}
.y54{bottom:412.509000px;}
.y72{bottom:416.001000px;}
.yb{bottom:429.321000px;}
.y23{bottom:440.712000px;}
.ya{bottom:456.967500px;}
.y53{bottom:457.624500px;}
.y36{bottom:460.024500px;}
.y71{bottom:462.981000px;}
.y22{bottom:487.561500px;}
.y52{bottom:502.738500px;}
.y70{bottom:509.962500px;}
.y35{bottom:512.965500px;}
.y84{bottom:526.923000px;}
.y51{bottom:533.224500px;}
.y21{bottom:534.411000px;}
.y83{bottom:553.822500px;}
.y6f{bottom:556.942500px;}
.y34{bottom:565.905000px;}
.y50{bottom:574.909500px;}
.y4f{bottom:579.834000px;}
.y82{bottom:580.722000px;}
.y20{bottom:581.260500px;}
.y81{bottom:607.620000px;}
.y6e{bottom:608.998500px;}
.y33{bottom:619.656000px;}
.y4e{bottom:626.442000px;}
.y1f{bottom:628.110000px;}
.y9{bottom:665.079000px;}
.y4d{bottom:671.557500px;}
.y6d{bottom:671.686500px;}
.y1e{bottom:679.855500px;}
.y32{bottom:692.032500px;}
.y80{bottom:701.767500px;}
.y6c{bottom:702.172500px;}
.y8{bottom:717.490500px;}
.y31{bottom:722.518500px;}
.y4c{bottom:723.303000px;}
.y7f{bottom:732.253500px;}
.y1d{bottom:740.073000px;}
.y7{bottom:744.390000px;}
.y6b{bottom:750.337500px;}
.y1c{bottom:770.559000px;}
.y6{bottom:771.288000px;}
.y7e{bottom:783.999000px;}
.y4b{bottom:784.168500px;}
.y30{bottom:790.953000px;}
.y6a{bottom:798.192000px;}
.y4a{bottom:809.730000px;}
.y49{bottom:814.654500px;}
.y1b{bottom:827.113500px;}
.y7d{bottom:844.914000px;}
.y69{bottom:845.173500px;}
.y2f{bottom:846.409500px;}
.y48{bottom:852.454500px;}
.y1a{bottom:854.013000px;}
.y5{bottom:862.198500px;}
.y7c{bottom:875.400000px;}
.y68{bottom:875.659500px;}
.y19{bottom:880.912500px;}
.y44{bottom:884.854500px;}
.y46{bottom:891.978000px;}
.y4{bottom:893.580000px;}
.y47{bottom:898.279500px;}
.y2e{bottom:901.866000px;}
.y43{bottom:903.202500px;}
.y18{bottom:907.810500px;}
.y45{bottom:914.272500px;}
.y67{bottom:914.547000px;}
.y7b{bottom:927.145500px;}
.y17{bottom:934.710000px;}
.y42{bottom:949.812000px;}
.y2d{bottom:957.324000px;}
.y3{bottom:959.440500px;}
.y16{bottom:961.609500px;}
.y66{bottom:966.603000px;}
.y2c{bottom:987.810000px;}
.y7a{bottom:988.060500px;}
.y41{bottom:991.497000px;}
.y40{bottom:996.421500px;}
.y2{bottom:999.790500px;}
.y15{bottom:1000.314000px;}
.y79{bottom:1018.545000px;}
.y14{bottom:1027.213500px;}
.y65{bottom:1029.291000px;}
.y13{bottom:1032.636000px;}
.y1{bottom:1040.139000px;}
.y2b{bottom:1041.561000px;}
.y3f{bottom:1043.031000px;}
.y78{bottom:1049.031000px;}
.y11{bottom:1059.342000px;}
.y64{bottom:1059.777000px;}
.y12{bottom:1065.280500px;}
.y3e{bottom:1088.145000px;}
.y77{bottom:1094.461500px;}
.y63{bottom:1106.757000px;}
.y10{bottom:1108.509000px;}
.y62{bottom:1135.341000px;}
.y61{bottom:1137.243000px;}
.yf{bottom:1139.890500px;}
.y2a{bottom:1192.194000px;}
.h1d{height:0.000000px;}
.hc{height:17.494800px;}
.h9{height:27.783619px;}
.h19{height:32.661470px;}
.h8{height:35.865450px;}
.h6{height:40.348800px;}
.hb{height:41.842920px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.h1a{height:46.145493px;}
.h11{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:50.211840px;}
.h3{height:53.798400px;}
.h16{height:56.415470px;}
.h15{height:58.212000px;}
.hd{height:59.685470px;}
.he{height:59.691470px;}
.h2{height:60.254040px;}
.h1b{height:62.889450px;}
.h1c{height:65.272950px;}
.h18{height:68.782950px;}
.h14{height:68.788950px;}
.h12{height:70.365450px;}
.h13{height:90.063450px;}
.hf{height:103.899450px;}
.h10{height:107.787450px;}
.h17{height:115.263450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x12{left:108.000000px;}
.x18{left:110.739000px;}
.x16{left:114.363000px;}
.x1{left:121.087500px;}
.xa{left:125.290500px;}
.x15{left:126.636000px;}
.x1b{left:130.416000px;}
.x5f{left:131.994000px;}
.x14{left:132.999000px;}
.x17{left:150.178500px;}
.x11{left:158.809500px;}
.x2{left:161.551500px;}
.x2f{left:172.621500px;}
.x10{left:173.754000px;}
.x37{left:178.851000px;}
.x38{left:185.088000px;}
.x3f{left:186.985500px;}
.x32{left:188.028000px;}
.x45{left:193.651500px;}
.x33{left:206.821500px;}
.x54{left:211.663500px;}
.x34{left:213.058500px;}
.xd{left:214.422000px;}
.xe{left:221.125500px;}
.x2a{left:228.733500px;}
.x55{left:234.600000px;}
.x46{left:237.862500px;}
.x2b{left:246.006000px;}
.x1c{left:249.585000px;}
.x1a{left:259.879500px;}
.x4f{left:261.460500px;}
.x2c{left:264.340500px;}
.x2d{left:270.609000px;}
.x4{left:274.819500px;}
.x4e{left:278.487000px;}
.x50{left:280.255500px;}
.x22{left:284.515500px;}
.x2e{left:285.540000px;}
.x51{left:286.600500px;}
.x53{left:297.481500px;}
.x23{left:301.788000px;}
.x1f{left:302.929500px;}
.x21{left:314.211000px;}
.x52{left:322.735500px;}
.x30{left:328.698000px;}
.x6{left:329.793000px;}
.x5{left:346.506000px;}
.x5e{left:353.122500px;}
.xf{left:364.890000px;}
.x40{left:366.228000px;}
.x26{left:379.119000px;}
.x3{left:381.960000px;}
.x7{left:392.640000px;}
.x1e{left:396.369000px;}
.xb{left:401.049000px;}
.x8{left:405.966000px;}
.x13{left:409.203000px;}
.x27{left:421.161000px;}
.x1d{left:422.799000px;}
.x43{left:429.507000px;}
.x42{left:430.683000px;}
.x41{left:435.798000px;}
.x24{left:444.084000px;}
.x28{left:449.619000px;}
.x20{left:457.969500px;}
.x29{left:490.264500px;}
.x44{left:498.610500px;}
.xc{left:511.759500px;}
.x31{left:537.496500px;}
.x39{left:551.139000px;}
.x47{left:561.847500px;}
.x3a{left:571.282500px;}
.x25{left:575.778000px;}
.x48{left:576.780000px;}
.x35{left:578.763000px;}
.x56{left:596.140500px;}
.x36{left:598.962000px;}
.x49{left:623.304000px;}
.x4a{left:630.975000px;}
.x4b{left:641.676000px;}
.x4c{left:660.469500px;}
.x57{left:665.475000px;}
.x4d{left:666.744000px;}
.x3b{left:670.366500px;}
.x58{left:671.947500px;}
.x59{left:686.878500px;}
.x5a{left:696.987000px;}
.x3c{left:703.548000px;}
.x3d{left:709.861500px;}
.x3e{left:724.792500px;}
.x5b{left:745.971000px;}
.x5c{left:752.442000px;}
.x5d{left:767.283000px;}
.x19{left:799.195500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-8.730667pt;}
.v1{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:14.384000pt;}
.v8{vertical-align:17.509333pt;}
.va{vertical-align:21.114667pt;}
.v4{vertical-align:24.021333pt;}
.v7{vertical-align:30.666667pt;}
.v5{vertical-align:39.360000pt;}
.v9{vertical-align:51.744000pt;}
.v6{vertical-align:60.474667pt;}
.vb{vertical-align:70.576000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.001420pt;}
.ls8{letter-spacing:0.001421pt;}
.ls10{letter-spacing:0.004826pt;}
.ls13{letter-spacing:0.025332pt;}
.lsf{letter-spacing:0.290909pt;}
.lsb{letter-spacing:0.581819pt;}
.ls12{letter-spacing:1.570910pt;}
.ls14{letter-spacing:2.653258pt;}
.ls2{letter-spacing:2.656473pt;}
.ls32{letter-spacing:2.657546pt;}
.ls25{letter-spacing:2.658591pt;}
.ls2b{letter-spacing:4.505763pt;}
.ls15{letter-spacing:4.538186pt;}
.ls2d{letter-spacing:4.548270pt;}
.ls1a{letter-spacing:4.712731pt;}
.ls2a{letter-spacing:4.726748pt;}
.ls24{letter-spacing:4.770913pt;}
.lse{letter-spacing:12.916374pt;}
.ls26{letter-spacing:16.116377pt;}
.lsa{letter-spacing:16.174559pt;}
.ls3{letter-spacing:16.354714pt;}
.lsd{letter-spacing:17.629106pt;}
.ls11{letter-spacing:18.087733pt;}
.ls9{letter-spacing:18.817546pt;}
.ls5{letter-spacing:19.039527pt;}
.ls17{letter-spacing:19.258198pt;}
.ls2f{letter-spacing:19.374562pt;}
.ls23{letter-spacing:19.432743pt;}
.ls31{letter-spacing:19.490925pt;}
.ls28{letter-spacing:19.549107pt;}
.ls21{letter-spacing:19.781835pt;}
.ls1d{letter-spacing:20.346144pt;}
.ls27{letter-spacing:20.829108pt;}
.ls2e{letter-spacing:21.120018pt;}
.ls29{letter-spacing:22.516382pt;}
.ls19{letter-spacing:23.220958pt;}
.ls34{letter-spacing:23.912747pt;}
.ls7{letter-spacing:23.970929pt;}
.ls30{letter-spacing:24.087293pt;}
.ls18{letter-spacing:26.530931pt;}
.lsc{letter-spacing:26.589113pt;}
.ls16{letter-spacing:26.705477pt;}
.ls20{letter-spacing:26.996386pt;}
.ls1c{letter-spacing:28.036958pt;}
.ls1f{letter-spacing:28.042291pt;}
.ls1e{letter-spacing:28.894988pt;}
.ls0{letter-spacing:30.079283pt;}
.ls6{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls33{letter-spacing:59.461868pt;}
.ls2c{letter-spacing:78.166879pt;}
.ls1b{letter-spacing:85.754291pt;}
.ws1{word-spacing:-43.038600pt;}
.ws44{word-spacing:-42.065490pt;}
.ws3f{word-spacing:-29.736752pt;}
.ws2f{word-spacing:-29.090933pt;}
.ws18{word-spacing:-24.575109pt;}
.ws2c{word-spacing:-16.232741pt;}
.ws0{word-spacing:-14.346200pt;}
.ws45{word-spacing:-13.090920pt;}
.ws3{word-spacing:-11.955200pt;}
.ws42{word-spacing:-11.752737pt;}
.ws40{word-spacing:-11.287282pt;}
.ws22{word-spacing:-11.170918pt;}
.ws2b{word-spacing:-11.112737pt;}
.ws33{word-spacing:-10.938191pt;}
.ws3a{word-spacing:-10.763645pt;}
.ws1b{word-spacing:-10.240009pt;}
.ws1a{word-spacing:-10.201702pt;}
.ws2a{word-spacing:-10.148569pt;}
.ws11{word-spacing:-10.095435pt;}
.ws43{word-spacing:-10.007281pt;}
.ws16{word-spacing:-9.890917pt;}
.ws10{word-spacing:-9.882899pt;}
.ws35{word-spacing:-9.832735pt;}
.ws29{word-spacing:-9.774554pt;}
.ws17{word-spacing:-9.716372pt;}
.ws1e{word-spacing:-9.658190pt;}
.ws3d{word-spacing:-9.600008pt;}
.ws36{word-spacing:-9.541826pt;}
.ws31{word-spacing:-9.309099pt;}
.ws49{word-spacing:-9.245293pt;}
.ws4b{word-spacing:-9.192159pt;}
.ws23{word-spacing:-8.965826pt;}
.ws14{word-spacing:-8.926490pt;}
.ws27{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws3b{word-spacing:-8.616734pt;}
.ws12{word-spacing:-8.607686pt;}
.ws4a{word-spacing:-8.559866pt;}
.ws7{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws15{word-spacing:-7.854552pt;}
.ws46{word-spacing:-6.748001pt;}
.ws13{word-spacing:-6.588599pt;}
.ws47{word-spacing:-6.221976pt;}
.ws48{word-spacing:-6.110395pt;}
.ws41{word-spacing:-5.294550pt;}
.ws28{word-spacing:-4.834913pt;}
.ws3c{word-spacing:-4.776731pt;}
.ws32{word-spacing:-4.660368pt;}
.wsf{word-spacing:-4.468558pt;}
.ws30{word-spacing:-4.369458pt;}
.ws38{word-spacing:-3.665458pt;}
.ws1d{word-spacing:-2.850911pt;}
.ws1f{word-spacing:-0.058182pt;}
.ws9{word-spacing:-0.047821pt;}
.wsc{word-spacing:0.000000pt;}
.ws37{word-spacing:0.576000pt;}
.ws34{word-spacing:2.146911pt;}
.wsd{word-spacing:2.385457pt;}
.ws20{word-spacing:5.931997pt;}
.ws21{word-spacing:5.934713pt;}
.wsa{word-spacing:8.177357pt;}
.ws26{word-spacing:9.600008pt;}
.ws24{word-spacing:9.658190pt;}
.wse{word-spacing:10.159221pt;}
.ws25{word-spacing:12.858193pt;}
.ws1c{word-spacing:13.556375pt;}
.ws39{word-spacing:15.534558pt;}
.ws2e{word-spacing:16.116377pt;}
.ws6{word-spacing:16.306893pt;}
.ws8{word-spacing:16.354714pt;}
.wsb{word-spacing:18.793574pt;}
.ws2{word-spacing:20.722347pt;}
.ws3e{word-spacing:29.725116pt;}
.ws2d{word-spacing:126.021923pt;}
.ws19{word-spacing:2010.539389pt;}
._19{margin-left:-16.174559pt;}
._2{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._9{margin-left:-3.519495pt;}
._1{margin-left:-2.371905pt;}
._5{margin-left:-1.434624pt;}
._6{width:1.434624pt;}
._0{width:2.371905pt;}
._8{width:3.376754pt;}
._18{width:4.697587pt;}
._1a{width:17.653813pt;}
._4{width:18.630868pt;}
._7{width:19.683035pt;}
._a{width:23.604097pt;}
._16{width:26.240022pt;}
._b{width:31.083302pt;}
._17{width:47.802396pt;}
._15{width:61.103947pt;}
._f{width:999.387742pt;}
._13{width:1064.027796pt;}
._10{width:1103.819302pt;}
._12{width:1235.935289pt;}
._d{width:1342.642419pt;}
._c{width:1358.215236pt;}
._11{width:1535.766371pt;}
._e{width:1717.351977pt;}
._14{width:1805.325141pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:138.516000pt;}
.y3d{bottom:142.501333pt;}
.y5f{bottom:144.592000pt;}
.y60{bottom:150.192000pt;}
.y5a{bottom:150.973333pt;}
.y29{bottom:154.156000pt;}
.y59{bottom:154.569333pt;}
.y5e{bottom:164.409333pt;}
.y5c{bottom:167.504000pt;}
.y3c{bottom:169.600000pt;}
.y5b{bottom:171.489333pt;}
.y28{bottom:183.525333pt;}
.y76{bottom:184.262667pt;}
.y58{bottom:199.376000pt;}
.y3b{bottom:218.894667pt;}
.y27{bottom:225.168000pt;}
.y75{bottom:226.022667pt;}
.y57{bottom:239.477333pt;}
.y3a{bottom:255.976000pt;}
.y39{bottom:265.953333pt;}
.y26{bottom:266.812000pt;}
.y74{bottom:272.294667pt;}
.y56{bottom:285.473333pt;}
.ye{bottom:307.896000pt;}
.y25{bottom:308.456000pt;}
.y38{bottom:313.012000pt;}
.y73{bottom:328.017333pt;}
.yd{bottom:332.470667pt;}
.y55{bottom:339.576000pt;}
.y24{bottom:350.100000pt;}
.yc{bottom:357.045333pt;}
.y37{bottom:361.852000pt;}
.y54{bottom:366.674667pt;}
.y72{bottom:369.778667pt;}
.yb{bottom:381.618667pt;}
.y23{bottom:391.744000pt;}
.ya{bottom:406.193333pt;}
.y53{bottom:406.777333pt;}
.y36{bottom:408.910667pt;}
.y71{bottom:411.538667pt;}
.y22{bottom:433.388000pt;}
.y52{bottom:446.878667pt;}
.y70{bottom:453.300000pt;}
.y35{bottom:455.969333pt;}
.y84{bottom:468.376000pt;}
.y51{bottom:473.977333pt;}
.y21{bottom:475.032000pt;}
.y83{bottom:492.286667pt;}
.y6f{bottom:495.060000pt;}
.y34{bottom:503.026667pt;}
.y50{bottom:511.030667pt;}
.y4f{bottom:515.408000pt;}
.y82{bottom:516.197333pt;}
.y20{bottom:516.676000pt;}
.y81{bottom:540.106667pt;}
.y6e{bottom:541.332000pt;}
.y33{bottom:550.805333pt;}
.y4e{bottom:556.837333pt;}
.y1f{bottom:558.320000pt;}
.y9{bottom:591.181333pt;}
.y4d{bottom:596.940000pt;}
.y6d{bottom:597.054667pt;}
.y1e{bottom:604.316000pt;}
.y32{bottom:615.140000pt;}
.y80{bottom:623.793333pt;}
.y6c{bottom:624.153333pt;}
.y8{bottom:637.769333pt;}
.y31{bottom:642.238667pt;}
.y4c{bottom:642.936000pt;}
.y7f{bottom:650.892000pt;}
.y1d{bottom:657.842667pt;}
.y7{bottom:661.680000pt;}
.y6b{bottom:666.966667pt;}
.y1c{bottom:684.941333pt;}
.y6{bottom:685.589333pt;}
.y7e{bottom:696.888000pt;}
.y4b{bottom:697.038667pt;}
.y30{bottom:703.069333pt;}
.y6a{bottom:709.504000pt;}
.y4a{bottom:719.760000pt;}
.y49{bottom:724.137333pt;}
.y1b{bottom:735.212000pt;}
.y7d{bottom:751.034667pt;}
.y69{bottom:751.265333pt;}
.y2f{bottom:752.364000pt;}
.y48{bottom:757.737333pt;}
.y1a{bottom:759.122667pt;}
.y5{bottom:766.398667pt;}
.y7c{bottom:778.133333pt;}
.y68{bottom:778.364000pt;}
.y19{bottom:783.033333pt;}
.y44{bottom:786.537333pt;}
.y46{bottom:792.869333pt;}
.y4{bottom:794.293333pt;}
.y47{bottom:798.470667pt;}
.y2e{bottom:801.658667pt;}
.y43{bottom:802.846667pt;}
.y18{bottom:806.942667pt;}
.y45{bottom:812.686667pt;}
.y67{bottom:812.930667pt;}
.y7b{bottom:824.129333pt;}
.y17{bottom:830.853333pt;}
.y42{bottom:844.277333pt;}
.y2d{bottom:850.954667pt;}
.y3{bottom:852.836000pt;}
.y16{bottom:854.764000pt;}
.y66{bottom:859.202667pt;}
.y2c{bottom:878.053333pt;}
.y7a{bottom:878.276000pt;}
.y41{bottom:881.330667pt;}
.y40{bottom:885.708000pt;}
.y2{bottom:888.702667pt;}
.y15{bottom:889.168000pt;}
.y79{bottom:905.373333pt;}
.y14{bottom:913.078667pt;}
.y65{bottom:914.925333pt;}
.y13{bottom:917.898667pt;}
.y1{bottom:924.568000pt;}
.y2b{bottom:925.832000pt;}
.y3f{bottom:927.138667pt;}
.y78{bottom:932.472000pt;}
.y11{bottom:941.637333pt;}
.y64{bottom:942.024000pt;}
.y12{bottom:946.916000pt;}
.y3e{bottom:967.240000pt;}
.y77{bottom:972.854667pt;}
.y63{bottom:983.784000pt;}
.y10{bottom:985.341333pt;}
.y62{bottom:1009.192000pt;}
.y61{bottom:1010.882667pt;}
.yf{bottom:1013.236000pt;}
.y2a{bottom:1059.728000pt;}
.h1d{height:0.000000pt;}
.hc{height:15.550933pt;}
.h9{height:24.696550pt;}
.h19{height:29.032418pt;}
.h8{height:31.880400pt;}
.h6{height:35.865600pt;}
.hb{height:37.193707pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.h1a{height:41.018216pt;}
.h11{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:44.632747pt;}
.h3{height:47.820800pt;}
.h16{height:50.147084pt;}
.h15{height:51.744000pt;}
.hd{height:53.053751pt;}
.he{height:53.059084pt;}
.h2{height:53.559147pt;}
.h1b{height:55.901733pt;}
.h1c{height:58.020400pt;}
.h18{height:61.140400pt;}
.h14{height:61.145733pt;}
.h12{height:62.547067pt;}
.h13{height:80.056400pt;}
.hf{height:92.355067pt;}
.h10{height:95.811067pt;}
.h17{height:102.456400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x12{left:96.000000pt;}
.x18{left:98.434667pt;}
.x16{left:101.656000pt;}
.x1{left:107.633333pt;}
.xa{left:111.369333pt;}
.x15{left:112.565333pt;}
.x1b{left:115.925333pt;}
.x5f{left:117.328000pt;}
.x14{left:118.221333pt;}
.x17{left:133.492000pt;}
.x11{left:141.164000pt;}
.x2{left:143.601333pt;}
.x2f{left:153.441333pt;}
.x10{left:154.448000pt;}
.x37{left:158.978667pt;}
.x38{left:164.522667pt;}
.x3f{left:166.209333pt;}
.x32{left:167.136000pt;}
.x45{left:172.134667pt;}
.x33{left:183.841333pt;}
.x54{left:188.145333pt;}
.x34{left:189.385333pt;}
.xd{left:190.597333pt;}
.xe{left:196.556000pt;}
.x2a{left:203.318667pt;}
.x55{left:208.533333pt;}
.x46{left:211.433333pt;}
.x2b{left:218.672000pt;}
.x1c{left:221.853333pt;}
.x1a{left:231.004000pt;}
.x4f{left:232.409333pt;}
.x2c{left:234.969333pt;}
.x2d{left:240.541333pt;}
.x4{left:244.284000pt;}
.x4e{left:247.544000pt;}
.x50{left:249.116000pt;}
.x22{left:252.902667pt;}
.x2e{left:253.813333pt;}
.x51{left:254.756000pt;}
.x53{left:264.428000pt;}
.x23{left:268.256000pt;}
.x1f{left:269.270667pt;}
.x21{left:279.298667pt;}
.x52{left:286.876000pt;}
.x30{left:292.176000pt;}
.x6{left:293.149333pt;}
.x5{left:308.005333pt;}
.x5e{left:313.886667pt;}
.xf{left:324.346667pt;}
.x40{left:325.536000pt;}
.x26{left:336.994667pt;}
.x3{left:339.520000pt;}
.x7{left:349.013333pt;}
.x1e{left:352.328000pt;}
.xb{left:356.488000pt;}
.x8{left:360.858667pt;}
.x13{left:363.736000pt;}
.x27{left:374.365333pt;}
.x1d{left:375.821333pt;}
.x43{left:381.784000pt;}
.x42{left:382.829333pt;}
.x41{left:387.376000pt;}
.x24{left:394.741333pt;}
.x28{left:399.661333pt;}
.x20{left:407.084000pt;}
.x29{left:435.790667pt;}
.x44{left:443.209333pt;}
.xc{left:454.897333pt;}
.x31{left:477.774667pt;}
.x39{left:489.901333pt;}
.x47{left:499.420000pt;}
.x3a{left:507.806667pt;}
.x25{left:511.802667pt;}
.x48{left:512.693333pt;}
.x35{left:514.456000pt;}
.x56{left:529.902667pt;}
.x36{left:532.410667pt;}
.x49{left:554.048000pt;}
.x4a{left:560.866667pt;}
.x4b{left:570.378667pt;}
.x4c{left:587.084000pt;}
.x57{left:591.533333pt;}
.x4d{left:592.661333pt;}
.x3b{left:595.881333pt;}
.x58{left:597.286667pt;}
.x59{left:610.558667pt;}
.x5a{left:619.544000pt;}
.x3c{left:625.376000pt;}
.x3d{left:630.988000pt;}
.x3e{left:644.260000pt;}
.x5b{left:663.085333pt;}
.x5c{left:668.837333pt;}
.x5d{left:682.029333pt;}
.x19{left:710.396000pt;}
}




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