
    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_fdfa58684828f8dd94cffcc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.713000;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_81705e3ba6ff29093b10ff4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_8ad519f0e4dec89a60eb68dd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2192ffa221695ca433f0a1f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930022;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_e38477a6bbab1b1f12d151a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_85487fbb38c12693920e8d22.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053000;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_81705e3ba6ff29093b10ff4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_5574634c89638367c29630be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959000;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_2192ffa221695ca433f0a1f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930022;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_2192ffa221695ca433f0a1f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930022;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_5574634c89638367c29630be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959000;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_5574634c89638367c29630be.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959000;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_2192ffa221695ca433f0a1f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930022;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_702a019ff487fec424635d9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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.191326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191326,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:72.000000px;}
.lsc{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.693000px;}
.lsb{letter-spacing:-0.630000px;}
.ls7{letter-spacing:-0.567000px;}
.ls9{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.441000px;}
.ls10{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.315000px;}
.ls4{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.189000px;}
.lse{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.063000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:2.585509px;}
.ls1{letter-spacing:4.674000px;}
.ls0{letter-spacing:22.704000px;}
.ls11{letter-spacing:1614.095400px;}
.lsa{letter-spacing:1631.103000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-42.940350px;}
.ws1e{word-spacing:-15.012000px;}
.ws92{word-spacing:-7.875000px;}
.ws7{word-spacing:-3.150000px;}
.ws56{word-spacing:-3.087000px;}
.ws2c{word-spacing:-3.024000px;}
.ws81{word-spacing:-2.898000px;}
.wsba{word-spacing:-2.772000px;}
.ws2{word-spacing:-2.585509px;}
.ws45{word-spacing:-2.583000px;}
.ws3a{word-spacing:-2.520000px;}
.wse{word-spacing:-2.457000px;}
.ws21{word-spacing:-2.268000px;}
.ws85{word-spacing:-2.205000px;}
.ws98{word-spacing:-2.142000px;}
.ws39{word-spacing:-2.079000px;}
.wsae{word-spacing:-2.016000px;}
.wsb4{word-spacing:-1.953000px;}
.wsb1{word-spacing:-1.890000px;}
.ws32{word-spacing:-1.827000px;}
.wsa9{word-spacing:-1.764000px;}
.ws91{word-spacing:-1.701000px;}
.ws59{word-spacing:-1.638000px;}
.ws68{word-spacing:-1.575000px;}
.ws99{word-spacing:-1.512000px;}
.ws55{word-spacing:-1.449000px;}
.ws8{word-spacing:-1.323000px;}
.ws2b{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.134000px;}
.ws62{word-spacing:-1.071000px;}
.ws35{word-spacing:-0.945000px;}
.ws5c{word-spacing:-0.882000px;}
.ws15{word-spacing:-0.819000px;}
.ws4d{word-spacing:-0.756000px;}
.ws88{word-spacing:-0.630000px;}
.ws4b{word-spacing:-0.504000px;}
.ws3f{word-spacing:-0.315000px;}
.ws47{word-spacing:-0.063000px;}
.ws1{word-spacing:0.000000px;}
.wsad{word-spacing:0.063000px;}
.ws8d{word-spacing:0.126000px;}
.ws8e{word-spacing:0.189000px;}
.ws9e{word-spacing:0.315000px;}
.ws5e{word-spacing:0.441000px;}
.ws54{word-spacing:0.504000px;}
.wsb2{word-spacing:0.630000px;}
.ws1f{word-spacing:0.693000px;}
.ws40{word-spacing:0.756000px;}
.wsb8{word-spacing:0.819000px;}
.wsa8{word-spacing:1.008000px;}
.ws14{word-spacing:1.071000px;}
.ws5f{word-spacing:1.134000px;}
.ws8c{word-spacing:1.197000px;}
.ws4e{word-spacing:1.260000px;}
.ws5b{word-spacing:1.323000px;}
.wsb0{word-spacing:1.449000px;}
.ws87{word-spacing:1.512000px;}
.ws17{word-spacing:1.764000px;}
.ws22{word-spacing:1.827000px;}
.ws95{word-spacing:2.079000px;}
.wsa6{word-spacing:2.142000px;}
.ws6f{word-spacing:2.205000px;}
.wsb{word-spacing:2.331000px;}
.ws94{word-spacing:2.394000px;}
.ws89{word-spacing:2.520000px;}
.ws97{word-spacing:2.583000px;}
.ws4c{word-spacing:2.709000px;}
.ws13{word-spacing:2.772000px;}
.ws33{word-spacing:2.898000px;}
.ws7b{word-spacing:3.213000px;}
.ws41{word-spacing:3.276000px;}
.ws9b{word-spacing:3.402000px;}
.wsa4{word-spacing:3.465000px;}
.ws36{word-spacing:3.528000px;}
.wsbe{word-spacing:3.591000px;}
.ws1a{word-spacing:3.654000px;}
.ws53{word-spacing:3.780000px;}
.ws34{word-spacing:3.843000px;}
.ws3c{word-spacing:3.906000px;}
.ws78{word-spacing:3.969000px;}
.ws64{word-spacing:4.032000px;}
.ws10{word-spacing:4.095000px;}
.ws49{word-spacing:4.221000px;}
.ws1c{word-spacing:4.275000px;}
.wsb5{word-spacing:4.284000px;}
.wsa0{word-spacing:4.347000px;}
.ws42{word-spacing:4.410000px;}
.ws8b{word-spacing:4.536000px;}
.ws86{word-spacing:4.599000px;}
.ws1b{word-spacing:4.731000px;}
.ws5{word-spacing:4.788000px;}
.wsb6{word-spacing:4.914000px;}
.ws19{word-spacing:4.977000px;}
.ws31{word-spacing:5.040000px;}
.ws6c{word-spacing:5.166000px;}
.wsa2{word-spacing:5.229000px;}
.wsd{word-spacing:5.355000px;}
.ws11{word-spacing:5.481000px;}
.ws4a{word-spacing:5.544000px;}
.ws9a{word-spacing:5.796000px;}
.ws1d{word-spacing:5.871000px;}
.ws4{word-spacing:5.985000px;}
.ws9d{word-spacing:6.048000px;}
.ws50{word-spacing:6.111000px;}
.ws82{word-spacing:6.300000px;}
.wsbc{word-spacing:6.363000px;}
.ws52{word-spacing:6.426000px;}
.ws7d{word-spacing:6.489000px;}
.wsa{word-spacing:6.552000px;}
.ws67{word-spacing:6.615000px;}
.ws8f{word-spacing:6.741000px;}
.wsab{word-spacing:6.930000px;}
.ws2e{word-spacing:6.993000px;}
.ws58{word-spacing:7.056000px;}
.wsac{word-spacing:7.119000px;}
.ws93{word-spacing:7.245000px;}
.ws9c{word-spacing:7.371000px;}
.ws2d{word-spacing:7.434000px;}
.ws77{word-spacing:7.686000px;}
.wsaa{word-spacing:7.749000px;}
.ws79{word-spacing:7.812000px;}
.ws65{word-spacing:7.875000px;}
.ws76{word-spacing:7.938000px;}
.ws74{word-spacing:8.001000px;}
.ws3b{word-spacing:8.190000px;}
.ws69{word-spacing:8.316000px;}
.ws5a{word-spacing:8.379000px;}
.wsc{word-spacing:8.505000px;}
.wsb3{word-spacing:8.568000px;}
.ws66{word-spacing:8.631000px;}
.wsf{word-spacing:8.694000px;}
.ws7e{word-spacing:8.757000px;}
.ws8a{word-spacing:8.820000px;}
.ws48{word-spacing:8.883000px;}
.ws63{word-spacing:8.946000px;}
.ws9f{word-spacing:9.009000px;}
.ws30{word-spacing:9.072000px;}
.ws43{word-spacing:9.135000px;}
.ws83{word-spacing:9.261000px;}
.ws90{word-spacing:9.324000px;}
.ws4f{word-spacing:9.450000px;}
.ws23{word-spacing:9.639000px;}
.ws27{word-spacing:9.765000px;}
.ws37{word-spacing:10.017000px;}
.ws84{word-spacing:10.080000px;}
.ws3{word-spacing:10.143000px;}
.ws96{word-spacing:10.206000px;}
.ws20{word-spacing:10.584000px;}
.ws6a{word-spacing:10.710000px;}
.ws29{word-spacing:10.962000px;}
.ws3e{word-spacing:11.214000px;}
.ws73{word-spacing:11.403000px;}
.ws6{word-spacing:11.592000px;}
.ws46{word-spacing:11.718000px;}
.wsb9{word-spacing:11.844000px;}
.wsa3{word-spacing:11.907000px;}
.wsa1{word-spacing:12.096000px;}
.ws7f{word-spacing:12.222000px;}
.ws44{word-spacing:12.285000px;}
.ws7c{word-spacing:12.474000px;}
.ws72{word-spacing:12.600000px;}
.ws5d{word-spacing:12.663000px;}
.ws51{word-spacing:12.726000px;}
.ws80{word-spacing:12.789000px;}
.wsbb{word-spacing:13.104000px;}
.ws57{word-spacing:13.293000px;}
.ws9{word-spacing:13.356000px;}
.ws18{word-spacing:13.734000px;}
.wsbd{word-spacing:13.986000px;}
.ws25{word-spacing:14.175000px;}
.ws70{word-spacing:14.679000px;}
.ws7a{word-spacing:15.057000px;}
.ws60{word-spacing:15.120000px;}
.wsaf{word-spacing:15.372000px;}
.ws61{word-spacing:15.561000px;}
.ws26{word-spacing:15.687000px;}
.ws28{word-spacing:15.813000px;}
.ws75{word-spacing:17.010000px;}
.ws71{word-spacing:17.640000px;}
.ws24{word-spacing:17.892000px;}
.ws2a{word-spacing:18.081000px;}
.ws6d{word-spacing:18.459000px;}
.ws2f{word-spacing:18.648000px;}
.ws12{word-spacing:18.963000px;}
.ws6e{word-spacing:19.089000px;}
.wsb7{word-spacing:19.215000px;}
.ws6b{word-spacing:20.349000px;}
.ws3d{word-spacing:20.601000px;}
.wsa7{word-spacing:21.798000px;}
.ws38{word-spacing:24.192000px;}
.wsa5{word-spacing:40.257000px;}
._5{margin-left:-6.993000px;}
._3{margin-left:-5.670000px;}
._4{margin-left:-4.410000px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.260000px;}
._2{width:1.512000px;}
._7{width:4.725000px;}
._6{width:13.545000px;}
.fc2{color:rgb(0,146,110);}
.fc1{color:rgb(227,181,77);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:136.079400px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:171.761400px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.459800px;}
.y8c{bottom:110.725050px;}
.yc1{bottom:110.740800px;}
.y5f{bottom:110.835300px;}
.y2d{bottom:110.857650px;}
.y26{bottom:110.873400px;}
.y8b{bottom:128.727300px;}
.yc0{bottom:128.743050px;}
.y5e{bottom:128.837550px;}
.y2c{bottom:128.859900px;}
.y25{bottom:128.875650px;}
.y8a{bottom:146.729550px;}
.ybf{bottom:146.745300px;}
.y5d{bottom:146.839800px;}
.y2b{bottom:146.862150px;}
.y24{bottom:146.877900px;}
.y89{bottom:164.731800px;}
.ybe{bottom:164.747550px;}
.y5c{bottom:164.842050px;}
.y2a{bottom:164.864400px;}
.y23{bottom:164.880150px;}
.y88{bottom:182.734050px;}
.ybd{bottom:182.749800px;}
.y5b{bottom:182.844300px;}
.y29{bottom:182.866650px;}
.y22{bottom:182.882400px;}
.y87{bottom:200.736300px;}
.ybc{bottom:200.752050px;}
.y5a{bottom:200.846550px;}
.y28{bottom:200.868900px;}
.y21{bottom:200.884650px;}
.y86{bottom:218.738550px;}
.ybb{bottom:218.754300px;}
.y59{bottom:218.848800px;}
.y27{bottom:218.871150px;}
.y20{bottom:218.886900px;}
.y85{bottom:236.740800px;}
.yba{bottom:236.756550px;}
.y58{bottom:236.851050px;}
.y1f{bottom:236.889150px;}
.y84{bottom:254.743050px;}
.yb9{bottom:254.758800px;}
.y57{bottom:254.853300px;}
.y1e{bottom:254.891400px;}
.y83{bottom:272.745300px;}
.yb8{bottom:272.761050px;}
.y56{bottom:272.855550px;}
.y1d{bottom:272.893650px;}
.y82{bottom:290.747550px;}
.yb7{bottom:290.763300px;}
.y55{bottom:290.857800px;}
.y1c{bottom:290.895900px;}
.y81{bottom:308.749800px;}
.yb6{bottom:308.765550px;}
.y54{bottom:308.860050px;}
.y1b{bottom:308.898150px;}
.y80{bottom:326.752050px;}
.yb5{bottom:326.767800px;}
.y53{bottom:326.862300px;}
.y1a{bottom:326.900400px;}
.y7f{bottom:344.754300px;}
.yb4{bottom:344.770050px;}
.y52{bottom:344.864550px;}
.y19{bottom:344.902650px;}
.y7e{bottom:362.756550px;}
.yb3{bottom:362.772300px;}
.y51{bottom:362.866800px;}
.y18{bottom:362.904900px;}
.y7d{bottom:380.758800px;}
.yb2{bottom:380.774550px;}
.y50{bottom:380.869050px;}
.y17{bottom:380.907150px;}
.y7c{bottom:398.761050px;}
.yb1{bottom:398.776800px;}
.y4f{bottom:398.871300px;}
.y16{bottom:398.909400px;}
.y7b{bottom:416.763300px;}
.yb0{bottom:416.779050px;}
.y4e{bottom:416.873550px;}
.y15{bottom:416.911650px;}
.y7a{bottom:434.765550px;}
.yaf{bottom:434.781300px;}
.y4d{bottom:434.875800px;}
.y14{bottom:434.913900px;}
.y79{bottom:452.767800px;}
.yae{bottom:452.783550px;}
.y4c{bottom:452.878050px;}
.y13{bottom:452.916150px;}
.y78{bottom:470.770050px;}
.yad{bottom:470.785800px;}
.y4b{bottom:470.880300px;}
.y12{bottom:470.918400px;}
.y77{bottom:488.772300px;}
.yac{bottom:488.788050px;}
.y4a{bottom:488.882550px;}
.y11{bottom:488.920650px;}
.y76{bottom:506.774550px;}
.yab{bottom:506.790300px;}
.y49{bottom:506.884800px;}
.y10{bottom:506.922900px;}
.y75{bottom:524.776800px;}
.yaa{bottom:524.792550px;}
.y48{bottom:524.887050px;}
.yf{bottom:524.925150px;}
.y74{bottom:542.779050px;}
.ya9{bottom:542.794800px;}
.y8f{bottom:542.889300px;}
.ye{bottom:542.927400px;}
.y92{bottom:560.781300px;}
.ya8{bottom:560.797050px;}
.y47{bottom:560.891550px;}
.yd{bottom:560.929650px;}
.y73{bottom:578.783550px;}
.ya7{bottom:578.799300px;}
.y46{bottom:578.893800px;}
.yc{bottom:578.931900px;}
.yd5{bottom:581.943900px;}
.y72{bottom:596.785800px;}
.ya6{bottom:596.801550px;}
.y31{bottom:596.820450px;}
.y8e{bottom:596.896050px;}
.yb{bottom:596.934150px;}
.yd4{bottom:598.440900px;}
.y30{bottom:613.321950px;}
.y71{bottom:614.788050px;}
.ya5{bottom:614.803800px;}
.y8d{bottom:614.898300px;}
.ya{bottom:614.936400px;}
.y2f{bottom:629.823450px;}
.y91{bottom:632.790300px;}
.ya4{bottom:632.806050px;}
.y45{bottom:632.900550px;}
.y9{bottom:632.938650px;}
.y8{bottom:632.940900px;}
.y2e{bottom:646.324950px;}
.y90{bottom:650.792550px;}
.ya3{bottom:650.808300px;}
.yd3{bottom:650.902650px;}
.y44{bottom:650.902800px;}
.y70{bottom:668.794800px;}
.ya2{bottom:668.810550px;}
.yd2{bottom:668.904900px;}
.y43{bottom:668.905050px;}
.y6f{bottom:686.797050px;}
.ya1{bottom:686.812800px;}
.yd1{bottom:686.907150px;}
.y42{bottom:686.907300px;}
.y6e{bottom:704.799300px;}
.ya0{bottom:704.815050px;}
.yd0{bottom:704.909400px;}
.y41{bottom:704.909550px;}
.y6d{bottom:722.801550px;}
.y9f{bottom:722.817300px;}
.ycf{bottom:722.911650px;}
.y40{bottom:722.911800px;}
.y7{bottom:734.952900px;}
.y6c{bottom:740.803800px;}
.y9e{bottom:740.819550px;}
.yce{bottom:740.913900px;}
.y3f{bottom:740.914050px;}
.y6b{bottom:758.806050px;}
.y9d{bottom:758.821800px;}
.ycd{bottom:758.916150px;}
.y3e{bottom:758.916300px;}
.y6{bottom:773.940900px;}
.y6a{bottom:776.808300px;}
.y9c{bottom:776.824050px;}
.ycc{bottom:776.918400px;}
.y3d{bottom:776.918550px;}
.y69{bottom:794.810550px;}
.y9b{bottom:794.826300px;}
.ycb{bottom:794.920650px;}
.y3c{bottom:794.920800px;}
.y68{bottom:812.812800px;}
.y9a{bottom:812.828550px;}
.yca{bottom:812.922900px;}
.y3b{bottom:812.923050px;}
.y67{bottom:830.815050px;}
.y99{bottom:830.830800px;}
.yc9{bottom:830.925150px;}
.y3a{bottom:830.925300px;}
.y5{bottom:834.505800px;}
.y66{bottom:848.817300px;}
.y98{bottom:848.833050px;}
.yc8{bottom:848.927400px;}
.y39{bottom:848.927550px;}
.y65{bottom:866.819550px;}
.y97{bottom:866.835300px;}
.yc7{bottom:866.929650px;}
.y38{bottom:866.929800px;}
.y64{bottom:884.821800px;}
.y96{bottom:884.837550px;}
.yc6{bottom:884.931900px;}
.y37{bottom:884.932050px;}
.y63{bottom:902.824050px;}
.y95{bottom:902.839800px;}
.yc5{bottom:902.934150px;}
.y36{bottom:902.934300px;}
.y62{bottom:920.826300px;}
.yc4{bottom:920.936400px;}
.y35{bottom:920.936550px;}
.y61{bottom:938.828550px;}
.y94{bottom:938.844300px;}
.yc3{bottom:938.938650px;}
.y34{bottom:938.938800px;}
.y2{bottom:938.940900px;}
.y4{bottom:954.396939px;}
.y60{bottom:956.830800px;}
.y93{bottom:956.846550px;}
.yc2{bottom:956.940900px;}
.y33{bottom:956.941050px;}
.y3{bottom:983.722050px;}
.y32{bottom:1004.593350px;}
.h3{height:33.600000px;}
.hb{height:39.366000px;}
.h9{height:41.553000px;}
.h2{height:42.000000px;}
.ha{height:44.100000px;}
.h8{height:52.605000px;}
.h5{height:58.800000px;}
.h4{height:92.942230px;}
.h6{height:104.976000px;}
.h7{height:143.420769px;}
.h0{height:1065.472200px;}
.h1{height:1065.750000px;}
.w1{width:810.000000px;}
.w0{width:810.355200px;}
.x0{left:0.000000px;}
.x3{left:73.771650px;}
.x8{left:77.775600px;}
.x5{left:86.287350px;}
.x9{left:90.533100px;}
.x4{left:104.525850px;}
.x6{left:413.682600px;}
.xb{left:417.928350px;}
.x7{left:422.185050px;}
.xc{left:426.426300px;}
.xa{left:430.685850px;}
.x2{left:456.306150px;}
.x1{left:710.078700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.lsc{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.616000pt;}
.lsb{letter-spacing:-0.560000pt;}
.ls7{letter-spacing:-0.504000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.392000pt;}
.ls10{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.280000pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.168000pt;}
.lse{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.056000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:2.298230pt;}
.ls1{letter-spacing:4.154667pt;}
.ls0{letter-spacing:20.181333pt;}
.ls11{letter-spacing:1434.751467pt;}
.lsa{letter-spacing:1449.869333pt;}
.ws0{word-spacing:-38.169200pt;}
.ws1e{word-spacing:-13.344000pt;}
.ws92{word-spacing:-7.000000pt;}
.ws7{word-spacing:-2.800000pt;}
.ws56{word-spacing:-2.744000pt;}
.ws2c{word-spacing:-2.688000pt;}
.ws81{word-spacing:-2.576000pt;}
.wsba{word-spacing:-2.464000pt;}
.ws2{word-spacing:-2.298230pt;}
.ws45{word-spacing:-2.296000pt;}
.ws3a{word-spacing:-2.240000pt;}
.wse{word-spacing:-2.184000pt;}
.ws21{word-spacing:-2.016000pt;}
.ws85{word-spacing:-1.960000pt;}
.ws98{word-spacing:-1.904000pt;}
.ws39{word-spacing:-1.848000pt;}
.wsae{word-spacing:-1.792000pt;}
.wsb4{word-spacing:-1.736000pt;}
.wsb1{word-spacing:-1.680000pt;}
.ws32{word-spacing:-1.624000pt;}
.wsa9{word-spacing:-1.568000pt;}
.ws91{word-spacing:-1.512000pt;}
.ws59{word-spacing:-1.456000pt;}
.ws68{word-spacing:-1.400000pt;}
.ws99{word-spacing:-1.344000pt;}
.ws55{word-spacing:-1.288000pt;}
.ws8{word-spacing:-1.176000pt;}
.ws2b{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.008000pt;}
.ws62{word-spacing:-0.952000pt;}
.ws35{word-spacing:-0.840000pt;}
.ws5c{word-spacing:-0.784000pt;}
.ws15{word-spacing:-0.728000pt;}
.ws4d{word-spacing:-0.672000pt;}
.ws88{word-spacing:-0.560000pt;}
.ws4b{word-spacing:-0.448000pt;}
.ws3f{word-spacing:-0.280000pt;}
.ws47{word-spacing:-0.056000pt;}
.ws1{word-spacing:0.000000pt;}
.wsad{word-spacing:0.056000pt;}
.ws8d{word-spacing:0.112000pt;}
.ws8e{word-spacing:0.168000pt;}
.ws9e{word-spacing:0.280000pt;}
.ws5e{word-spacing:0.392000pt;}
.ws54{word-spacing:0.448000pt;}
.wsb2{word-spacing:0.560000pt;}
.ws1f{word-spacing:0.616000pt;}
.ws40{word-spacing:0.672000pt;}
.wsb8{word-spacing:0.728000pt;}
.wsa8{word-spacing:0.896000pt;}
.ws14{word-spacing:0.952000pt;}
.ws5f{word-spacing:1.008000pt;}
.ws8c{word-spacing:1.064000pt;}
.ws4e{word-spacing:1.120000pt;}
.ws5b{word-spacing:1.176000pt;}
.wsb0{word-spacing:1.288000pt;}
.ws87{word-spacing:1.344000pt;}
.ws17{word-spacing:1.568000pt;}
.ws22{word-spacing:1.624000pt;}
.ws95{word-spacing:1.848000pt;}
.wsa6{word-spacing:1.904000pt;}
.ws6f{word-spacing:1.960000pt;}
.wsb{word-spacing:2.072000pt;}
.ws94{word-spacing:2.128000pt;}
.ws89{word-spacing:2.240000pt;}
.ws97{word-spacing:2.296000pt;}
.ws4c{word-spacing:2.408000pt;}
.ws13{word-spacing:2.464000pt;}
.ws33{word-spacing:2.576000pt;}
.ws7b{word-spacing:2.856000pt;}
.ws41{word-spacing:2.912000pt;}
.ws9b{word-spacing:3.024000pt;}
.wsa4{word-spacing:3.080000pt;}
.ws36{word-spacing:3.136000pt;}
.wsbe{word-spacing:3.192000pt;}
.ws1a{word-spacing:3.248000pt;}
.ws53{word-spacing:3.360000pt;}
.ws34{word-spacing:3.416000pt;}
.ws3c{word-spacing:3.472000pt;}
.ws78{word-spacing:3.528000pt;}
.ws64{word-spacing:3.584000pt;}
.ws10{word-spacing:3.640000pt;}
.ws49{word-spacing:3.752000pt;}
.ws1c{word-spacing:3.800000pt;}
.wsb5{word-spacing:3.808000pt;}
.wsa0{word-spacing:3.864000pt;}
.ws42{word-spacing:3.920000pt;}
.ws8b{word-spacing:4.032000pt;}
.ws86{word-spacing:4.088000pt;}
.ws1b{word-spacing:4.205333pt;}
.ws5{word-spacing:4.256000pt;}
.wsb6{word-spacing:4.368000pt;}
.ws19{word-spacing:4.424000pt;}
.ws31{word-spacing:4.480000pt;}
.ws6c{word-spacing:4.592000pt;}
.wsa2{word-spacing:4.648000pt;}
.wsd{word-spacing:4.760000pt;}
.ws11{word-spacing:4.872000pt;}
.ws4a{word-spacing:4.928000pt;}
.ws9a{word-spacing:5.152000pt;}
.ws1d{word-spacing:5.218667pt;}
.ws4{word-spacing:5.320000pt;}
.ws9d{word-spacing:5.376000pt;}
.ws50{word-spacing:5.432000pt;}
.ws82{word-spacing:5.600000pt;}
.wsbc{word-spacing:5.656000pt;}
.ws52{word-spacing:5.712000pt;}
.ws7d{word-spacing:5.768000pt;}
.wsa{word-spacing:5.824000pt;}
.ws67{word-spacing:5.880000pt;}
.ws8f{word-spacing:5.992000pt;}
.wsab{word-spacing:6.160000pt;}
.ws2e{word-spacing:6.216000pt;}
.ws58{word-spacing:6.272000pt;}
.wsac{word-spacing:6.328000pt;}
.ws93{word-spacing:6.440000pt;}
.ws9c{word-spacing:6.552000pt;}
.ws2d{word-spacing:6.608000pt;}
.ws77{word-spacing:6.832000pt;}
.wsaa{word-spacing:6.888000pt;}
.ws79{word-spacing:6.944000pt;}
.ws65{word-spacing:7.000000pt;}
.ws76{word-spacing:7.056000pt;}
.ws74{word-spacing:7.112000pt;}
.ws3b{word-spacing:7.280000pt;}
.ws69{word-spacing:7.392000pt;}
.ws5a{word-spacing:7.448000pt;}
.wsc{word-spacing:7.560000pt;}
.wsb3{word-spacing:7.616000pt;}
.ws66{word-spacing:7.672000pt;}
.wsf{word-spacing:7.728000pt;}
.ws7e{word-spacing:7.784000pt;}
.ws8a{word-spacing:7.840000pt;}
.ws48{word-spacing:7.896000pt;}
.ws63{word-spacing:7.952000pt;}
.ws9f{word-spacing:8.008000pt;}
.ws30{word-spacing:8.064000pt;}
.ws43{word-spacing:8.120000pt;}
.ws83{word-spacing:8.232000pt;}
.ws90{word-spacing:8.288000pt;}
.ws4f{word-spacing:8.400000pt;}
.ws23{word-spacing:8.568000pt;}
.ws27{word-spacing:8.680000pt;}
.ws37{word-spacing:8.904000pt;}
.ws84{word-spacing:8.960000pt;}
.ws3{word-spacing:9.016000pt;}
.ws96{word-spacing:9.072000pt;}
.ws20{word-spacing:9.408000pt;}
.ws6a{word-spacing:9.520000pt;}
.ws29{word-spacing:9.744000pt;}
.ws3e{word-spacing:9.968000pt;}
.ws73{word-spacing:10.136000pt;}
.ws6{word-spacing:10.304000pt;}
.ws46{word-spacing:10.416000pt;}
.wsb9{word-spacing:10.528000pt;}
.wsa3{word-spacing:10.584000pt;}
.wsa1{word-spacing:10.752000pt;}
.ws7f{word-spacing:10.864000pt;}
.ws44{word-spacing:10.920000pt;}
.ws7c{word-spacing:11.088000pt;}
.ws72{word-spacing:11.200000pt;}
.ws5d{word-spacing:11.256000pt;}
.ws51{word-spacing:11.312000pt;}
.ws80{word-spacing:11.368000pt;}
.wsbb{word-spacing:11.648000pt;}
.ws57{word-spacing:11.816000pt;}
.ws9{word-spacing:11.872000pt;}
.ws18{word-spacing:12.208000pt;}
.wsbd{word-spacing:12.432000pt;}
.ws25{word-spacing:12.600000pt;}
.ws70{word-spacing:13.048000pt;}
.ws7a{word-spacing:13.384000pt;}
.ws60{word-spacing:13.440000pt;}
.wsaf{word-spacing:13.664000pt;}
.ws61{word-spacing:13.832000pt;}
.ws26{word-spacing:13.944000pt;}
.ws28{word-spacing:14.056000pt;}
.ws75{word-spacing:15.120000pt;}
.ws71{word-spacing:15.680000pt;}
.ws24{word-spacing:15.904000pt;}
.ws2a{word-spacing:16.072000pt;}
.ws6d{word-spacing:16.408000pt;}
.ws2f{word-spacing:16.576000pt;}
.ws12{word-spacing:16.856000pt;}
.ws6e{word-spacing:16.968000pt;}
.wsb7{word-spacing:17.080000pt;}
.ws6b{word-spacing:18.088000pt;}
.ws3d{word-spacing:18.312000pt;}
.wsa7{word-spacing:19.376000pt;}
.ws38{word-spacing:21.504000pt;}
.wsa5{word-spacing:35.784000pt;}
._5{margin-left:-6.216000pt;}
._3{margin-left:-5.040000pt;}
._4{margin-left:-3.920000pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-1.120000pt;}
._2{width:1.344000pt;}
._7{width:4.200000pt;}
._6{width:12.040000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:120.959467pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:152.676800pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.964267pt;}
.y8c{bottom:98.422267pt;}
.yc1{bottom:98.436267pt;}
.y5f{bottom:98.520267pt;}
.y2d{bottom:98.540133pt;}
.y26{bottom:98.554133pt;}
.y8b{bottom:114.424267pt;}
.yc0{bottom:114.438267pt;}
.y5e{bottom:114.522267pt;}
.y2c{bottom:114.542133pt;}
.y25{bottom:114.556133pt;}
.y8a{bottom:130.426267pt;}
.ybf{bottom:130.440267pt;}
.y5d{bottom:130.524267pt;}
.y2b{bottom:130.544133pt;}
.y24{bottom:130.558133pt;}
.y89{bottom:146.428267pt;}
.ybe{bottom:146.442267pt;}
.y5c{bottom:146.526267pt;}
.y2a{bottom:146.546133pt;}
.y23{bottom:146.560133pt;}
.y88{bottom:162.430267pt;}
.ybd{bottom:162.444267pt;}
.y5b{bottom:162.528267pt;}
.y29{bottom:162.548133pt;}
.y22{bottom:162.562133pt;}
.y87{bottom:178.432267pt;}
.ybc{bottom:178.446267pt;}
.y5a{bottom:178.530267pt;}
.y28{bottom:178.550133pt;}
.y21{bottom:178.564133pt;}
.y86{bottom:194.434267pt;}
.ybb{bottom:194.448267pt;}
.y59{bottom:194.532267pt;}
.y27{bottom:194.552133pt;}
.y20{bottom:194.566133pt;}
.y85{bottom:210.436267pt;}
.yba{bottom:210.450267pt;}
.y58{bottom:210.534267pt;}
.y1f{bottom:210.568133pt;}
.y84{bottom:226.438267pt;}
.yb9{bottom:226.452267pt;}
.y57{bottom:226.536267pt;}
.y1e{bottom:226.570133pt;}
.y83{bottom:242.440267pt;}
.yb8{bottom:242.454267pt;}
.y56{bottom:242.538267pt;}
.y1d{bottom:242.572133pt;}
.y82{bottom:258.442267pt;}
.yb7{bottom:258.456267pt;}
.y55{bottom:258.540267pt;}
.y1c{bottom:258.574133pt;}
.y81{bottom:274.444267pt;}
.yb6{bottom:274.458267pt;}
.y54{bottom:274.542267pt;}
.y1b{bottom:274.576133pt;}
.y80{bottom:290.446267pt;}
.yb5{bottom:290.460267pt;}
.y53{bottom:290.544267pt;}
.y1a{bottom:290.578133pt;}
.y7f{bottom:306.448267pt;}
.yb4{bottom:306.462267pt;}
.y52{bottom:306.546267pt;}
.y19{bottom:306.580133pt;}
.y7e{bottom:322.450267pt;}
.yb3{bottom:322.464267pt;}
.y51{bottom:322.548267pt;}
.y18{bottom:322.582133pt;}
.y7d{bottom:338.452267pt;}
.yb2{bottom:338.466267pt;}
.y50{bottom:338.550267pt;}
.y17{bottom:338.584133pt;}
.y7c{bottom:354.454267pt;}
.yb1{bottom:354.468267pt;}
.y4f{bottom:354.552267pt;}
.y16{bottom:354.586133pt;}
.y7b{bottom:370.456267pt;}
.yb0{bottom:370.470267pt;}
.y4e{bottom:370.554267pt;}
.y15{bottom:370.588133pt;}
.y7a{bottom:386.458267pt;}
.yaf{bottom:386.472267pt;}
.y4d{bottom:386.556267pt;}
.y14{bottom:386.590133pt;}
.y79{bottom:402.460267pt;}
.yae{bottom:402.474267pt;}
.y4c{bottom:402.558267pt;}
.y13{bottom:402.592133pt;}
.y78{bottom:418.462267pt;}
.yad{bottom:418.476267pt;}
.y4b{bottom:418.560267pt;}
.y12{bottom:418.594133pt;}
.y77{bottom:434.464267pt;}
.yac{bottom:434.478267pt;}
.y4a{bottom:434.562267pt;}
.y11{bottom:434.596133pt;}
.y76{bottom:450.466267pt;}
.yab{bottom:450.480267pt;}
.y49{bottom:450.564267pt;}
.y10{bottom:450.598133pt;}
.y75{bottom:466.468267pt;}
.yaa{bottom:466.482267pt;}
.y48{bottom:466.566267pt;}
.yf{bottom:466.600133pt;}
.y74{bottom:482.470267pt;}
.ya9{bottom:482.484267pt;}
.y8f{bottom:482.568267pt;}
.ye{bottom:482.602133pt;}
.y92{bottom:498.472267pt;}
.ya8{bottom:498.486267pt;}
.y47{bottom:498.570267pt;}
.yd{bottom:498.604133pt;}
.y73{bottom:514.474267pt;}
.ya7{bottom:514.488267pt;}
.y46{bottom:514.572267pt;}
.yc{bottom:514.606133pt;}
.yd5{bottom:517.283467pt;}
.y72{bottom:530.476267pt;}
.ya6{bottom:530.490267pt;}
.y31{bottom:530.507067pt;}
.y8e{bottom:530.574267pt;}
.yb{bottom:530.608133pt;}
.yd4{bottom:531.947467pt;}
.y30{bottom:545.175067pt;}
.y71{bottom:546.478267pt;}
.ya5{bottom:546.492267pt;}
.y8d{bottom:546.576267pt;}
.ya{bottom:546.610133pt;}
.y2f{bottom:559.843067pt;}
.y91{bottom:562.480267pt;}
.ya4{bottom:562.494267pt;}
.y45{bottom:562.578267pt;}
.y9{bottom:562.612133pt;}
.y8{bottom:562.614133pt;}
.y2e{bottom:574.511067pt;}
.y90{bottom:578.482267pt;}
.ya3{bottom:578.496267pt;}
.yd3{bottom:578.580133pt;}
.y44{bottom:578.580267pt;}
.y70{bottom:594.484267pt;}
.ya2{bottom:594.498267pt;}
.yd2{bottom:594.582133pt;}
.y43{bottom:594.582267pt;}
.y6f{bottom:610.486267pt;}
.ya1{bottom:610.500267pt;}
.yd1{bottom:610.584133pt;}
.y42{bottom:610.584267pt;}
.y6e{bottom:626.488267pt;}
.ya0{bottom:626.502267pt;}
.yd0{bottom:626.586133pt;}
.y41{bottom:626.586267pt;}
.y6d{bottom:642.490267pt;}
.y9f{bottom:642.504267pt;}
.ycf{bottom:642.588133pt;}
.y40{bottom:642.588267pt;}
.y7{bottom:653.291467pt;}
.y6c{bottom:658.492267pt;}
.y9e{bottom:658.506267pt;}
.yce{bottom:658.590133pt;}
.y3f{bottom:658.590267pt;}
.y6b{bottom:674.494267pt;}
.y9d{bottom:674.508267pt;}
.ycd{bottom:674.592133pt;}
.y3e{bottom:674.592267pt;}
.y6{bottom:687.947467pt;}
.y6a{bottom:690.496267pt;}
.y9c{bottom:690.510267pt;}
.ycc{bottom:690.594133pt;}
.y3d{bottom:690.594267pt;}
.y69{bottom:706.498267pt;}
.y9b{bottom:706.512267pt;}
.ycb{bottom:706.596133pt;}
.y3c{bottom:706.596267pt;}
.y68{bottom:722.500267pt;}
.y9a{bottom:722.514267pt;}
.yca{bottom:722.598133pt;}
.y3b{bottom:722.598267pt;}
.y67{bottom:738.502267pt;}
.y99{bottom:738.516267pt;}
.yc9{bottom:738.600133pt;}
.y3a{bottom:738.600267pt;}
.y5{bottom:741.782933pt;}
.y66{bottom:754.504267pt;}
.y98{bottom:754.518267pt;}
.yc8{bottom:754.602133pt;}
.y39{bottom:754.602267pt;}
.y65{bottom:770.506267pt;}
.y97{bottom:770.520267pt;}
.yc7{bottom:770.604133pt;}
.y38{bottom:770.604267pt;}
.y64{bottom:786.508267pt;}
.y96{bottom:786.522267pt;}
.yc6{bottom:786.606133pt;}
.y37{bottom:786.606267pt;}
.y63{bottom:802.510267pt;}
.y95{bottom:802.524267pt;}
.yc5{bottom:802.608133pt;}
.y36{bottom:802.608267pt;}
.y62{bottom:818.512267pt;}
.yc4{bottom:818.610133pt;}
.y35{bottom:818.610267pt;}
.y61{bottom:834.514267pt;}
.y94{bottom:834.528267pt;}
.yc3{bottom:834.612133pt;}
.y34{bottom:834.612267pt;}
.y2{bottom:834.614133pt;}
.y4{bottom:848.352835pt;}
.y60{bottom:850.516267pt;}
.y93{bottom:850.530267pt;}
.yc2{bottom:850.614133pt;}
.y33{bottom:850.614267pt;}
.y3{bottom:874.419600pt;}
.y32{bottom:892.971867pt;}
.h3{height:29.866667pt;}
.hb{height:34.992000pt;}
.h9{height:36.936000pt;}
.h2{height:37.333333pt;}
.ha{height:39.200000pt;}
.h8{height:46.760000pt;}
.h5{height:52.266667pt;}
.h4{height:82.615316pt;}
.h6{height:93.312000pt;}
.h7{height:127.485128pt;}
.h0{height:947.086400pt;}
.h1{height:947.333333pt;}
.w1{width:720.000000pt;}
.w0{width:720.315733pt;}
.x0{left:0.000000pt;}
.x3{left:65.574800pt;}
.x8{left:69.133867pt;}
.x5{left:76.699867pt;}
.x9{left:80.473867pt;}
.x4{left:92.911867pt;}
.x6{left:367.717867pt;}
.xb{left:371.491867pt;}
.x7{left:375.275600pt;}
.xc{left:379.045600pt;}
.xa{left:382.831867pt;}
.x2{left:405.605467pt;}
.x1{left:631.181067pt;}
}




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