
    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_8b16bf53c2858c0089dc509e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_b4cb78fddf1e44c242483418.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7eaee07d43c958f26bfcc75b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ba4ea59e52384c74bf6233d5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_ab3be111589dba95323c4085.woff')format("woff");}.ff5{font-family:ff5;line-height:1.041992;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_73ddd59819bcf544ee47504c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.963867;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_e147ee3dc99c426a92cf2020.woff')format("woff");}.ff7{font-family:ff7;line-height:1.014648;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_33999d61f55c214ea8944fa8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.730469;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_8635a41fcdce120e07eeb30b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.760781;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_9d9542bae38546c87f9eeeea.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e1117ddbcc0afb9f4cc0cc6e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1d8c06d098d939ccf1ab7c60.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914551;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_30064fac8bb5e0ad2a276bdf.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_978b909fc58f2a5c9f7297b4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_48cc8cc3fe9faff645e56955.woff')format("woff");}.fff{font-family:fff;line-height:0.864258;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_2919ea47bb92ec15aaf8620e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7850ee6720871657fb1fc7b6.woff')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_f5e85986eaed10a95038c038.woff')format("woff");}.ff12{font-family:ff12;line-height:0.865234;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_b3c352a5d680d4d24ee75b6b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666000;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_bcbdc7fd7411a48a1c60eabb.woff')format("woff");}.ff14{font-family:ff14;line-height:0.451000;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_cf2fc938393283bc0a064245.woff')format("woff");}.ff15{font-family:ff15;line-height:0.867000;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_a1752d292bb0b8dbabcc64c9.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_17d58a7fb5b64c3e0bf9c970.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_be339992befd7d6f8ca25c74.woff')format("woff");}.ff18{font-family:ff18;line-height:0.740234;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_9b8fc3f4ec055571e21f2de5.woff')format("woff");}.ff19{font-family:ff19;line-height:0.388000;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_281df0727e5db00f6f6455e6.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.520000;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;}
.m1{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,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);}
.m2{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m3{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:-88.764000px;}
.v6{vertical-align:-38.742000px;}
.v7{vertical-align:-7.476000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:37.800001px;}
.v4{vertical-align:41.112602px;}
.v5{vertical-align:98.436885px;}
.v1{vertical-align:107.592000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.987980px;}
.ls4{letter-spacing:2.988163px;}
.ls2{letter-spacing:43.000379px;}
.ls3{letter-spacing:44.897455px;}
.ls5{letter-spacing:65.034900px;}
.ls6{letter-spacing:69.282613px;}
.ls1{letter-spacing:90.067662px;}
.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;}
}
.ws17{word-spacing:-141.737292px;}
.ws44{word-spacing:-121.742610px;}
.ws0{word-spacing:-69.987618px;}
.ws8{word-spacing:-65.076959px;}
.ws7{word-spacing:-55.603170px;}
.wsb{word-spacing:-52.725618px;}
.ws23{word-spacing:-52.459997px;}
.ws22{word-spacing:-52.238647px;}
.ws34{word-spacing:-50.198458px;}
.wsa{word-spacing:-48.519964px;}
.ws1{word-spacing:-46.607945px;}
.wse{word-spacing:-46.085112px;}
.ws3{word-spacing:-45.006878px;}
.ws10{word-spacing:-44.820000px;}
.ws38{word-spacing:-44.762276px;}
.wsf{word-spacing:-44.535660px;}
.wsc{word-spacing:-40.728437px;}
.ws5{word-spacing:-40.507087px;}
.ws3c{word-spacing:-38.780555px;}
.ws2{word-spacing:-38.451529px;}
.ws6{word-spacing:-34.796251px;}
.ws9{word-spacing:-34.574901px;}
.ws4{word-spacing:-34.353551px;}
.wsd{word-spacing:-32.804100px;}
.ws35{word-spacing:-26.924822px;}
.ws37{word-spacing:-24.789626px;}
.ws21{word-spacing:-24.168462px;}
.ws3b{word-spacing:-17.752286px;}
.ws31{word-spacing:-16.782641px;}
.ws32{word-spacing:-16.675881px;}
.ws3d{word-spacing:-11.554480px;}
.ws30{word-spacing:-5.572862px;}
.ws33{word-spacing:-4.612023px;}
.ws39{word-spacing:-0.221350px;}
.ws28{word-spacing:-0.158090px;}
.ws16{word-spacing:-0.141737px;}
.ws26{word-spacing:-0.126562px;}
.ws1c{word-spacing:-0.120571px;}
.ws3e{word-spacing:-0.113906px;}
.ws15{word-spacing:-0.090428px;}
.ws45{word-spacing:0.000000px;}
.ws3a{word-spacing:2.833283px;}
.ws36{word-spacing:13.003344px;}
.ws41{word-spacing:30.754493px;}
.ws3f{word-spacing:30.868399px;}
.ws42{word-spacing:30.982304px;}
.ws40{word-spacing:31.096210px;}
.ws43{word-spacing:31.210115px;}
.ws1e{word-spacing:31.469080px;}
.ws1b{word-spacing:33.398219px;}
.ws20{word-spacing:33.450001px;}
.ws1d{word-spacing:33.518790px;}
.ws1f{word-spacing:33.639362px;}
.ws19{word-spacing:33.875213px;}
.ws14{word-spacing:34.158687px;}
.ws12{word-spacing:34.300425px;}
.ws1a{word-spacing:34.442162px;}
.ws13{word-spacing:34.583899px;}
.ws11{word-spacing:34.725637px;}
.ws18{word-spacing:34.867374px;}
.ws2e{word-spacing:34.918316px;}
.ws2c{word-spacing:37.309153px;}
.ws2f{word-spacing:40.162246px;}
.ws24{word-spacing:42.828479px;}
.ws29{word-spacing:42.842290px;}
.ws2b{word-spacing:43.000379px;}
.ws27{word-spacing:43.158469px;}
.ws2a{word-spacing:43.316558px;}
.ws2d{word-spacing:43.632738px;}
.ws25{word-spacing:47.855509px;}
._18{margin-left:-1454.395840px;}
._0{margin-left:-35.567478px;}
._27{margin-left:-28.649399px;}
._1b{margin-left:-17.864128px;}
._f{margin-left:-14.580000px;}
._1d{margin-left:-13.115665px;}
._1{margin-left:-11.473380px;}
._1c{margin-left:-9.797212px;}
._5{margin-left:-7.708693px;}
._6{margin-left:-5.881232px;}
._2a{margin-left:-4.838801px;}
._12{margin-left:-3.617136px;}
._10{margin-left:-2.520000px;}
._11{margin-left:-1.108800px;}
._e{width:1.073335px;}
._23{width:2.775755px;}
._16{width:3.795636px;}
._2b{width:5.091055px;}
._b{width:6.102582px;}
._7{width:7.827283px;}
._3{width:11.090934px;}
._15{width:27.369660px;}
._28{width:29.783400px;}
._29{width:32.074927px;}
._17{width:33.176599px;}
._14{width:34.724502px;}
._1e{width:39.075936px;}
._22{width:41.603679px;}
._24{width:42.618300px;}
._21{width:43.631756px;}
._1f{width:44.883298px;}
._a{width:48.697044px;}
._19{width:63.965586px;}
._c{width:68.523339px;}
._9{width:69.630090px;}
._8{width:71.717465px;}
._20{width:80.390983px;}
._1a{width:81.456874px;}
._26{width:90.532232px;}
._25{width:92.776637px;}
._d{width:108.240248px;}
._4{width:139.210344px;}
._2{width:187.016094px;}
._13{width:639.547536px;}
.fc8{color:rgb(255,153,0);}
.fc9{color:transparent;}
.fc7{color:rgb(0,173,239);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(132,13,53);}
.fc2{color:rgb(29,126,117);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(58,58,58);}
.fs8{font-size:67.200003px;}
.fs16{font-size:74.731200px;}
.fsa{font-size:90.428388px;}
.fs7{font-size:100.800000px;}
.fs15{font-size:106.759800px;}
.fs17{font-size:113.905530px;}
.fsb{font-size:120.571188px;}
.fs12{font-size:125.605455px;}
.fs10{font-size:126.561700px;}
.fsd{font-size:128.099400px;}
.fs9{font-size:141.737292px;}
.fs13{font-size:147.655317px;}
.fse{font-size:151.874038px;}
.fsc{font-size:153.743400px;}
.fs11{font-size:158.089629px;}
.fs3{font-size:171.220800px;}
.fsf{font-size:174.655143px;}
.fs14{font-size:175.217650px;}
.fs6{font-size:179.999999px;}
.fs2{font-size:207.540600px;}
.fs5{font-size:221.350200px;}
.fs4{font-size:244.602600px;}
.fs1{font-size:296.488200px;}
.fs0{font-size:382.446000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:11.176508px;}
.y2f{bottom:37.092357px;}
.y39{bottom:37.095457px;}
.y38{bottom:47.370821px;}
.y5b{bottom:58.426190px;}
.y3b{bottom:80.033660px;}
.y60{bottom:83.277748px;}
.y37{bottom:90.308955px;}
.y6a{bottom:109.645500px;}
.y43{bottom:116.602500px;}
.y30{bottom:122.965388px;}
.y3a{bottom:122.966107px;}
.y5a{bottom:125.363276px;}
.y5f{bottom:127.377445px;}
.y36{bottom:133.241479px;}
.y69{bottom:142.999500px;}
.y42{bottom:162.928500px;}
.y68{bottom:176.355000px;}
.y5e{bottom:178.407126px;}
.y59{bottom:192.300362px;}
.y40{bottom:208.838324px;}
.y31{bottom:208.839745px;}
.y67{bottom:209.710500px;}
.y34{bottom:219.115828px;}
.y1d{bottom:224.154034px;}
.y4b{bottom:226.189768px;}
.y66{bottom:243.064500px;}
.y49{bottom:251.238176px;}
.y78{bottom:252.231605px;}
.y32{bottom:252.269069px;}
.y58{bottom:259.237368px;}
.y88{bottom:259.771500px;}
.y35{bottom:262.052265px;}
.y25{bottom:267.575909px;}
.y29{bottom:269.395234px;}
.y65{bottom:276.420000px;}
.y77{bottom:285.643885px;}
.y24{bottom:309.908125px;}
.y76{bottom:319.056198px;}
.y64{bottom:319.459500px;}
.y57{bottom:326.174454px;}
.y63{bottom:343.129500px;}
.y75{bottom:352.468449px;}
.y87{bottom:370.854000px;}
.y62{bottom:376.485000px;}
.y74{bottom:385.880740px;}
.y56{bottom:393.111540px;}
.y61{bottom:409.839000px;}
.y73{bottom:419.293019px;}
.y2d{bottom:436.160262px;}
.y18{bottom:441.482283px;}
.y33{bottom:443.317147px;}
.y3e{bottom:444.183989px;}
.y2e{bottom:447.274386px;}
.y55{bottom:460.048665px;}
.y17{bottom:476.582284px;}
.y2b{bottom:480.577227px;}
.y3d{bottom:485.760249px;}
.y2c{bottom:490.212595px;}
.y4d{bottom:497.521764px;}
.y48{bottom:515.617082px;}
.y3c{bottom:527.336510px;}
.y1b{bottom:537.029975px;}
.y16{bottom:538.095373px;}
.y23{bottom:541.570323px;}
.y7e{bottom:547.690804px;}
.y86{bottom:549.222000px;}
.y4a{bottom:557.858965px;}
.y7d{bottom:581.710570px;}
.y22{bottom:583.146584px;}
.y1a{bottom:591.029977px;}
.y15{bottom:592.095375px;}
.y28{bottom:593.858415px;}
.y54{bottom:601.797804px;}
.y7c{bottom:615.730339px;}
.y85{bottom:626.751000px;}
.y21{bottom:630.392336px;}
.y19{bottom:645.029978px;}
.y14{bottom:646.095377px;}
.y7b{bottom:649.750105px;}
.y53{bottom:668.734889px;}
.y7a{bottom:683.769900px;}
.y26{bottom:702.606163px;}
.y84{bottom:704.281500px;}
.y2a{bottom:704.892156px;}
.y52{bottom:735.671975px;}
.y47{bottom:744.627298px;}
.y79{bottom:751.809489px;}
.y51{bottom:802.609021px;}
.y5d{bottom:821.339740px;}
.y1f{bottom:822.731887px;}
.y20{bottom:832.269550px;}
.y46{bottom:834.758088px;}
.y83{bottom:853.078500px;}
.y50{bottom:869.546107px;}
.y1e{bottom:888.786745px;}
.y27{bottom:895.296788px;}
.y4f{bottom:916.795817px;}
.y13{bottom:938.449500px;}
.y3f{bottom:947.607772px;}
.y41{bottom:963.430826px;}
.y4e{bottom:983.732863px;}
.y82{bottom:1017.451500px;}
.y81{bottom:1086.015000px;}
.y80{bottom:1163.544000px;}
.y72{bottom:1189.503246px;}
.y7f{bottom:1255.929000px;}
.y1c{bottom:1259.268000px;}
.y45{bottom:1567.285940px;}
.y4c{bottom:1571.811000px;}
.y12{bottom:1716.975000px;}
.y11{bottom:1785.538500px;}
.y10{bottom:1863.067500px;}
.yf{bottom:1957.711500px;}
.ye{bottom:2026.275000px;}
.y71{bottom:2048.406000px;}
.yd{bottom:2101.348500px;}
.y70{bottom:2116.969500px;}
.yc{bottom:2195.994000px;}
.y6f{bottom:2233.567500px;}
.yb{bottom:2264.556000px;}
.y6e{bottom:2302.131000px;}
.ya{bottom:2339.631000px;}
.y6d{bottom:2370.693000px;}
.y6c{bottom:2439.256500px;}
.y9{bottom:2446.461000px;}
.y44{bottom:2491.204500px;}
.y8{bottom:2515.024500px;}
.y6b{bottom:2527.780500px;}
.y7{bottom:2635.627500px;}
.y6{bottom:2704.191000px;}
.y5{bottom:2845.842000px;}
.y4{bottom:3031.213500px;}
.y3{bottom:3118.761000px;}
.y2{bottom:3236.110500px;}
.y1{bottom:3378.795000px;}
.h22{height:41.221090px;}
.he{height:65.172022px;}
.h10{height:65.834339px;}
.h21{height:79.963090px;}
.ha{height:81.900000px;}
.h24{height:82.926341px;}
.hf{height:87.779122px;}
.h1d{height:91.505536px;}
.h19{height:92.140379px;}
.hb{height:92.400004px;}
.h13{height:101.458433px;}
.h14{height:103.188624px;}
.h12{height:106.372177px;}
.h11{height:106.946940px;}
.h20{height:107.497108px;}
.h17{height:108.714521px;}
.hd{height:112.116413px;}
.h1c{height:115.093573px;}
.h15{height:115.153807px;}
.h1b{height:115.170765px;}
.h18{height:127.153720px;}
.h4{height:128.244379px;}
.h9{height:142.031249px;}
.h25{height:158.315300px;}
.h26{height:158.321300px;}
.h7{height:158.486743px;}
.h6{height:165.791300px;}
.h5{height:175.135462px;}
.h1f{height:215.131840px;}
.h3{height:263.039909px;}
.h1e{height:268.378323px;}
.h2{height:273.831336px;}
.h8{height:729.000000px;}
.h23{height:819.388854px;}
.h16{height:910.432060px;}
.hc{height:1019.598933px;}
.h1a{height:1062.170736px;}
.h1{height:3574.500000px;}
.h0{height:3574.800000px;}
.w6{width:737.100000px;}
.w2{width:1296.000000px;}
.w7{width:1458.000000px;}
.w3{width:1488.218400px;}
.w4{width:1620.000000px;}
.w5{width:1890.000000px;}
.w1{width:5054.250000px;}
.w0{width:5054.400000px;}
.x0{left:0.000000px;}
.x1a{left:1.306952px;}
.x1e{left:11.562630px;}
.xb{left:25.653576px;}
.xc{left:26.674043px;}
.x33{left:35.433501px;}
.x21{left:40.619212px;}
.x1b{left:41.955295px;}
.x27{left:47.506783px;}
.x2c{left:50.336207px;}
.x1c{left:57.469679px;}
.x2d{left:72.215475px;}
.x34{left:97.674519px;}
.x1f{left:114.538732px;}
.x16{left:128.939128px;}
.x2e{left:144.836178px;}
.x8{left:160.227000px;}
.x28{left:164.279510px;}
.xf{left:174.289500px;}
.x7{left:177.714000px;}
.x9{left:192.954000px;}
.x6{left:197.271000px;}
.x32{left:229.029686px;}
.x2f{left:239.336149px;}
.x1d{left:240.872275px;}
.xa{left:270.397500px;}
.x15{left:298.593365px;}
.x5{left:328.173000px;}
.x29{left:566.174839px;}
.x17{left:575.237832px;}
.x18{left:590.274554px;}
.xd{left:673.653613px;}
.xe{left:674.674051px;}
.x20{left:688.349757px;}
.x14{left:700.556285px;}
.x19{left:701.890874px;}
.x11{left:716.978221px;}
.x3d{left:755.998629px;}
.x13{left:764.115613px;}
.x10{left:774.320288px;}
.x12{left:775.813532px;}
.x1{left:865.257000px;}
.x30{left:995.336170px;}
.x2a{left:1362.431206px;}
.x2{left:1754.212500px;}
.x25{left:1831.942500px;}
.x2b{left:1836.790500px;}
.x23{left:1857.040500px;}
.x26{left:1869.517500px;}
.x4{left:1896.696000px;}
.x24{left:1926.378000px;}
.x22{left:2089.923000px;}
.x3{left:2245.360500px;}
.x31{left:2687.290500px;}
.x41{left:3500.131500px;}
.x3f{left:3506.484000px;}
.x3e{left:3511.332000px;}
.x3c{left:3517.753500px;}
.x36{left:3526.140000px;}
.x39{left:3544.059000px;}
.x37{left:3548.551500px;}
.x3a{left:3649.597500px;}
.x35{left:3891.097500px;}
.x43{left:3900.330000px;}
.x40{left:3959.961000px;}
.x3b{left:3977.023500px;}
.x38{left:4056.945000px;}
.x42{left:4146.148500px;}
@media print{
.v2{vertical-align:-78.901333pt;}
.v6{vertical-align:-34.437333pt;}
.v7{vertical-align:-6.645333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:33.600001pt;}
.v4{vertical-align:36.544535pt;}
.v5{vertical-align:87.499453pt;}
.v1{vertical-align:95.637333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.655982pt;}
.ls4{letter-spacing:2.656145pt;}
.ls2{letter-spacing:38.222559pt;}
.ls3{letter-spacing:39.908849pt;}
.ls5{letter-spacing:57.808800pt;}
.ls6{letter-spacing:61.584545pt;}
.ls1{letter-spacing:80.060144pt;}
.ws17{word-spacing:-125.988704pt;}
.ws44{word-spacing:-108.215653pt;}
.ws0{word-spacing:-62.211216pt;}
.ws8{word-spacing:-57.846186pt;}
.ws7{word-spacing:-49.425040pt;}
.wsb{word-spacing:-46.867216pt;}
.ws23{word-spacing:-46.631109pt;}
.ws22{word-spacing:-46.434353pt;}
.ws34{word-spacing:-44.620852pt;}
.wsa{word-spacing:-43.128857pt;}
.ws1{word-spacing:-41.429284pt;}
.wse{word-spacing:-40.964544pt;}
.ws3{word-spacing:-40.006114pt;}
.ws10{word-spacing:-39.840000pt;}
.ws38{word-spacing:-39.788690pt;}
.wsf{word-spacing:-39.587254pt;}
.wsc{word-spacing:-36.203055pt;}
.ws5{word-spacing:-36.006299pt;}
.ws3c{word-spacing:-34.471604pt;}
.ws2{word-spacing:-34.179137pt;}
.ws6{word-spacing:-30.930001pt;}
.ws9{word-spacing:-30.733246pt;}
.ws4{word-spacing:-30.536490pt;}
.wsd{word-spacing:-29.159200pt;}
.ws35{word-spacing:-23.933175pt;}
.ws37{word-spacing:-22.035223pt;}
.ws21{word-spacing:-21.483078pt;}
.ws3b{word-spacing:-15.779810pt;}
.ws31{word-spacing:-14.917903pt;}
.ws32{word-spacing:-14.823005pt;}
.ws3d{word-spacing:-10.270649pt;}
.ws30{word-spacing:-4.953655pt;}
.ws33{word-spacing:-4.099576pt;}
.ws39{word-spacing:-0.196756pt;}
.ws28{word-spacing:-0.140524pt;}
.ws16{word-spacing:-0.125989pt;}
.ws26{word-spacing:-0.112499pt;}
.ws1c{word-spacing:-0.107174pt;}
.ws3e{word-spacing:-0.101249pt;}
.ws15{word-spacing:-0.080381pt;}
.ws45{word-spacing:0.000000pt;}
.ws3a{word-spacing:2.518473pt;}
.ws36{word-spacing:11.558528pt;}
.ws41{word-spacing:27.337327pt;}
.ws3f{word-spacing:27.438577pt;}
.ws42{word-spacing:27.539826pt;}
.ws40{word-spacing:27.641075pt;}
.ws43{word-spacing:27.742325pt;}
.ws1e{word-spacing:27.972516pt;}
.ws1b{word-spacing:29.687306pt;}
.ws20{word-spacing:29.733334pt;}
.ws1d{word-spacing:29.794480pt;}
.ws1f{word-spacing:29.901655pt;}
.ws19{word-spacing:30.111300pt;}
.ws14{word-spacing:30.363278pt;}
.ws12{word-spacing:30.489266pt;}
.ws1a{word-spacing:30.615255pt;}
.ws13{word-spacing:30.741244pt;}
.ws11{word-spacing:30.867232pt;}
.ws18{word-spacing:30.993221pt;}
.ws2e{word-spacing:31.038504pt;}
.ws2c{word-spacing:33.163691pt;}
.ws2f{word-spacing:35.699774pt;}
.ws24{word-spacing:38.069759pt;}
.ws29{word-spacing:38.082035pt;}
.ws2b{word-spacing:38.222559pt;}
.ws27{word-spacing:38.363083pt;}
.ws2a{word-spacing:38.503608pt;}
.ws2d{word-spacing:38.784656pt;}
.ws25{word-spacing:42.538230pt;}
._18{margin-left:-1292.796302pt;}
._0{margin-left:-31.615536pt;}
._27{margin-left:-25.466133pt;}
._1b{margin-left:-15.879225pt;}
._f{margin-left:-12.960000pt;}
._1d{margin-left:-11.658369pt;}
._1{margin-left:-10.198560pt;}
._1c{margin-left:-8.708633pt;}
._5{margin-left:-6.852172pt;}
._6{margin-left:-5.227762pt;}
._2a{margin-left:-4.301156pt;}
._12{margin-left:-3.215232pt;}
._10{margin-left:-2.240000pt;}
._11{margin-left:-0.985600pt;}
._e{width:0.954075pt;}
._23{width:2.467338pt;}
._16{width:3.373898pt;}
._2b{width:4.525382pt;}
._b{width:5.424518pt;}
._7{width:6.957585pt;}
._3{width:9.858608pt;}
._15{width:24.328586pt;}
._28{width:26.474134pt;}
._29{width:28.511046pt;}
._17{width:29.490310pt;}
._14{width:30.866224pt;}
._1e{width:34.734165pt;}
._22{width:36.981048pt;}
._24{width:37.882933pt;}
._21{width:38.783784pt;}
._1f{width:39.896265pt;}
._a{width:43.286261pt;}
._19{width:56.858299pt;}
._c{width:60.909634pt;}
._9{width:61.893413pt;}
._8{width:63.748858pt;}
._20{width:71.458652pt;}
._1a{width:72.406110pt;}
._26{width:80.473095pt;}
._25{width:82.468122pt;}
._d{width:96.213554pt;}
._4{width:123.742528pt;}
._2{width:166.236528pt;}
._13{width:568.486699pt;}
.fs8{font-size:59.733336pt;}
.fs16{font-size:66.427733pt;}
.fsa{font-size:80.380789pt;}
.fs7{font-size:89.600000pt;}
.fs15{font-size:94.897600pt;}
.fs17{font-size:101.249360pt;}
.fsb{font-size:107.174390pt;}
.fs12{font-size:111.649293pt;}
.fs10{font-size:112.499289pt;}
.fsd{font-size:113.866133pt;}
.fs9{font-size:125.988704pt;}
.fs13{font-size:131.249171pt;}
.fse{font-size:134.999145pt;}
.fsc{font-size:136.660800pt;}
.fs11{font-size:140.524115pt;}
.fs3{font-size:152.196267pt;}
.fsf{font-size:155.249016pt;}
.fs14{font-size:155.749022pt;}
.fs6{font-size:159.999999pt;}
.fs2{font-size:184.480533pt;}
.fs5{font-size:196.755733pt;}
.fs4{font-size:217.424533pt;}
.fs1{font-size:263.545067pt;}
.fs0{font-size:339.952000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:9.934674pt;}
.y2f{bottom:32.970984pt;}
.y39{bottom:32.973740pt;}
.y38{bottom:42.107397pt;}
.y5b{bottom:51.934391pt;}
.y3b{bottom:71.141031pt;}
.y60{bottom:74.024665pt;}
.y37{bottom:80.274627pt;}
.y6a{bottom:97.462667pt;}
.y43{bottom:103.646667pt;}
.y30{bottom:109.302567pt;}
.y3a{bottom:109.303206pt;}
.y5a{bottom:111.434023pt;}
.y5f{bottom:113.224395pt;}
.y36{bottom:118.436870pt;}
.y69{bottom:127.110667pt;}
.y42{bottom:144.825333pt;}
.y68{bottom:156.760000pt;}
.y5e{bottom:158.584112pt;}
.y59{bottom:170.933655pt;}
.y40{bottom:185.634066pt;}
.y31{bottom:185.635329pt;}
.y67{bottom:186.409333pt;}
.y34{bottom:194.769625pt;}
.y1d{bottom:199.248030pt;}
.y4b{bottom:201.057571pt;}
.y66{bottom:216.057333pt;}
.y49{bottom:223.322823pt;}
.y78{bottom:224.205871pt;}
.y32{bottom:224.239173pt;}
.y58{bottom:230.433216pt;}
.y88{bottom:230.908000pt;}
.y35{bottom:232.935347pt;}
.y25{bottom:237.845252pt;}
.y29{bottom:239.462430pt;}
.y65{bottom:245.706667pt;}
.y77{bottom:253.905675pt;}
.y24{bottom:275.473889pt;}
.y76{bottom:283.605509pt;}
.y64{bottom:283.964000pt;}
.y57{bottom:289.932848pt;}
.y63{bottom:305.004000pt;}
.y75{bottom:313.305288pt;}
.y87{bottom:329.648000pt;}
.y62{bottom:334.653333pt;}
.y74{bottom:343.005102pt;}
.y56{bottom:349.432480pt;}
.y61{bottom:364.301333pt;}
.y73{bottom:372.704906pt;}
.y2d{bottom:387.698011pt;}
.y18{bottom:392.428696pt;}
.y33{bottom:394.059686pt;}
.y3e{bottom:394.830212pt;}
.y2e{bottom:397.577232pt;}
.y55{bottom:408.932147pt;}
.y17{bottom:423.628697pt;}
.y2b{bottom:427.179757pt;}
.y3d{bottom:431.786888pt;}
.y2c{bottom:435.744528pt;}
.y4d{bottom:442.241568pt;}
.y48{bottom:458.326295pt;}
.y3c{bottom:468.743564pt;}
.y1b{bottom:477.359978pt;}
.y16{bottom:478.306999pt;}
.y23{bottom:481.395843pt;}
.y7e{bottom:486.836270pt;}
.y86{bottom:488.197333pt;}
.y4a{bottom:495.874635pt;}
.y7d{bottom:517.076062pt;}
.y22{bottom:518.352519pt;}
.y1a{bottom:525.359979pt;}
.y15{bottom:526.307000pt;}
.y28{bottom:527.874147pt;}
.y54{bottom:534.931381pt;}
.y7c{bottom:547.315857pt;}
.y85{bottom:557.112000pt;}
.y21{bottom:560.348743pt;}
.y19{bottom:573.359981pt;}
.y14{bottom:574.307002pt;}
.y7b{bottom:577.555649pt;}
.y53{bottom:594.431013pt;}
.y7a{bottom:607.795466pt;}
.y26{bottom:624.538811pt;}
.y84{bottom:626.028000pt;}
.y2a{bottom:626.570806pt;}
.y52{bottom:653.930644pt;}
.y47{bottom:661.890932pt;}
.y79{bottom:668.275101pt;}
.y51{bottom:713.430241pt;}
.y5d{bottom:730.079769pt;}
.y1f{bottom:731.317233pt;}
.y20{bottom:739.795155pt;}
.y46{bottom:742.007189pt;}
.y83{bottom:758.292000pt;}
.y50{bottom:772.929873pt;}
.y1e{bottom:790.032662pt;}
.y27{bottom:795.819367pt;}
.y4f{bottom:814.929615pt;}
.y13{bottom:834.177333pt;}
.y3f{bottom:842.318019pt;}
.y41{bottom:856.382957pt;}
.y4e{bottom:874.429211pt;}
.y82{bottom:904.401333pt;}
.y81{bottom:965.346667pt;}
.y80{bottom:1034.261333pt;}
.y72{bottom:1057.336219pt;}
.y7f{bottom:1116.381333pt;}
.y1c{bottom:1119.349333pt;}
.y45{bottom:1393.143058pt;}
.y4c{bottom:1397.165333pt;}
.y12{bottom:1526.200000pt;}
.y11{bottom:1587.145333pt;}
.y10{bottom:1656.060000pt;}
.yf{bottom:1740.188000pt;}
.ye{bottom:1801.133333pt;}
.y71{bottom:1820.805333pt;}
.yd{bottom:1867.865333pt;}
.y70{bottom:1881.750667pt;}
.yc{bottom:1951.994667pt;}
.y6f{bottom:1985.393333pt;}
.yb{bottom:2012.938667pt;}
.y6e{bottom:2046.338667pt;}
.ya{bottom:2079.672000pt;}
.y6d{bottom:2107.282667pt;}
.y6c{bottom:2168.228000pt;}
.y9{bottom:2174.632000pt;}
.y44{bottom:2214.404000pt;}
.y8{bottom:2235.577333pt;}
.y6b{bottom:2246.916000pt;}
.y7{bottom:2342.780000pt;}
.y6{bottom:2403.725333pt;}
.y5{bottom:2529.637333pt;}
.y4{bottom:2694.412000pt;}
.y3{bottom:2772.232000pt;}
.y2{bottom:2876.542667pt;}
.y1{bottom:3003.373333pt;}
.h22{height:36.640969pt;}
.he{height:57.930686pt;}
.h10{height:58.519412pt;}
.h21{height:71.078302pt;}
.ha{height:72.800000pt;}
.h24{height:73.712303pt;}
.hf{height:78.025886pt;}
.h1d{height:81.338255pt;}
.h19{height:81.902559pt;}
.hb{height:82.133337pt;}
.h13{height:90.185273pt;}
.h14{height:91.723221pt;}
.h12{height:94.553046pt;}
.h11{height:95.063947pt;}
.h20{height:95.552985pt;}
.h17{height:96.635130pt;}
.hd{height:99.659033pt;}
.h1c{height:102.305398pt;}
.h15{height:102.358939pt;}
.h1b{height:102.374013pt;}
.h18{height:113.025529pt;}
.h4{height:113.995004pt;}
.h9{height:126.249999pt;}
.h25{height:140.724711pt;}
.h26{height:140.730044pt;}
.h7{height:140.877105pt;}
.h6{height:147.370044pt;}
.h5{height:155.675966pt;}
.h1f{height:191.228302pt;}
.h3{height:233.813253pt;}
.h1e{height:238.558509pt;}
.h2{height:243.405632pt;}
.h8{height:648.000000pt;}
.h23{height:728.345648pt;}
.h16{height:809.272942pt;}
.hc{height:906.310163pt;}
.h1a{height:944.151766pt;}
.h1{height:3177.333333pt;}
.h0{height:3177.600000pt;}
.w6{width:655.200000pt;}
.w2{width:1152.000000pt;}
.w7{width:1296.000000pt;}
.w3{width:1322.860800pt;}
.w4{width:1440.000000pt;}
.w5{width:1680.000000pt;}
.w1{width:4492.666667pt;}
.w0{width:4492.800000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.161735pt;}
.x1e{left:10.277893pt;}
.xb{left:22.803178pt;}
.xc{left:23.710261pt;}
.x33{left:31.496445pt;}
.x21{left:36.105966pt;}
.x1b{left:37.293596pt;}
.x27{left:42.228252pt;}
.x2c{left:44.743296pt;}
.x1c{left:51.084159pt;}
.x2d{left:64.191533pt;}
.x34{left:86.821794pt;}
.x1f{left:101.812206pt;}
.x16{left:114.612558pt;}
.x2e{left:128.743270pt;}
.x8{left:142.424000pt;}
.x28{left:146.026231pt;}
.xf{left:154.924000pt;}
.x7{left:157.968000pt;}
.x9{left:171.514667pt;}
.x6{left:175.352000pt;}
.x32{left:203.581943pt;}
.x2f{left:212.743244pt;}
.x1d{left:214.108689pt;}
.xa{left:240.353333pt;}
.x15{left:265.416324pt;}
.x5{left:291.709333pt;}
.x29{left:503.266524pt;}
.x17{left:511.322517pt;}
.x18{left:524.688493pt;}
.xd{left:598.803211pt;}
.xe{left:599.710267pt;}
.x20{left:611.866451pt;}
.x14{left:622.716698pt;}
.x19{left:623.902999pt;}
.x11{left:637.313974pt;}
.x3d{left:671.998781pt;}
.x13{left:679.213878pt;}
.x10{left:688.284700pt;}
.x12{left:689.612029pt;}
.x1{left:769.117333pt;}
.x30{left:884.743262pt;}
.x2a{left:1211.049961pt;}
.x2{left:1559.300000pt;}
.x25{left:1628.393333pt;}
.x2b{left:1632.702667pt;}
.x23{left:1650.702667pt;}
.x26{left:1661.793333pt;}
.x4{left:1685.952000pt;}
.x24{left:1712.336000pt;}
.x22{left:1857.709333pt;}
.x3{left:1995.876000pt;}
.x31{left:2388.702667pt;}
.x41{left:3111.228000pt;}
.x3f{left:3116.874667pt;}
.x3e{left:3121.184000pt;}
.x3c{left:3126.892000pt;}
.x36{left:3134.346667pt;}
.x39{left:3150.274667pt;}
.x37{left:3154.268000pt;}
.x3a{left:3244.086667pt;}
.x35{left:3458.753333pt;}
.x43{left:3466.960000pt;}
.x40{left:3519.965333pt;}
.x3b{left:3535.132000pt;}
.x38{left:3606.173333pt;}
.x42{left:3685.465333pt;}
}




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