
    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_4270bd830d5d14d3e459d422.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.983887;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_fc16c41105aa3d5b2004f9cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.763000;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_4f9583c08131f29dba30d88f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.746000;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_5d18c906ffee187ff7c65726.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_4a1a78692e60a98d14de0449.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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_9a5e3ff67e32e84390c7c56a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_323c7f6c19b4e087302a3d92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950684;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_97096425b0a07411b775c780.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935000;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_76372647e31da20c12e7ccdf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.115723;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_38e744fc8b79eff73c2cc772.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.173828;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_fa738d1a932de0eca64b30ba.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.158203;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_0fb56e1e0dfc6e7ff29a2bcf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.158203;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_25f8b476ea3049242f67ed40.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912000;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_bf80457e22215d17a05404c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.762000;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_64e5ee5d5ee0541b00f6adf4.woff2')format("woff");}.fff{font-family:fff;line-height:0.762000;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_081e5841a7f983704c862b2a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958008;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_f75a717ccc782a3589290676.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.875000;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_43c4080fe11b0654f92e1360.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8df50111aa9b82a43ce133e7.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.115234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.214999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243182,0.000000,0.000000,0.250000,0,0);}
.m6{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.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);}
.m2{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m0{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-20.979000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls3{letter-spacing:-5.916072px;}
.lsa{letter-spacing:-3.600000px;}
.ls8{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.570000px;}
.ls5{letter-spacing:-0.472230px;}
.ls4{letter-spacing:-0.270000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005520px;}
.lsc{letter-spacing:0.007152px;}
.lsb{letter-spacing:0.007752px;}
.ls1{letter-spacing:3.175200px;}
.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;}
}
.ws3{word-spacing:-17.703000px;}
.ws1f{word-spacing:-16.947000px;}
.ws4{word-spacing:-16.443000px;}
.ws6{word-spacing:-16.017000px;}
.ws5{word-spacing:-15.687000px;}
.ws2{word-spacing:-15.333000px;}
.ws1{word-spacing:-14.763000px;}
.ws19{word-spacing:-12.960000px;}
.ws16{word-spacing:-6.363000px;}
.ws13{word-spacing:-2.664000px;}
.ws12{word-spacing:-2.583000px;}
.ws1e{word-spacing:-2.538000px;}
.ws18{word-spacing:-2.160000px;}
.ws28{word-spacing:-1.890000px;}
.ws2a{word-spacing:-1.701000px;}
.wsd{word-spacing:-0.819000px;}
.ws20{word-spacing:-0.057000px;}
.ws7{word-spacing:0.000000px;}
.ws3e{word-spacing:0.114000px;}
.ws8{word-spacing:0.472230px;}
.ws9{word-spacing:0.570000px;}
.ws3b{word-spacing:0.684000px;}
.ws1d{word-spacing:1.080000px;}
.ws31{word-spacing:1.254000px;}
.ws15{word-spacing:1.260000px;}
.wse{word-spacing:2.394000px;}
.ws33{word-spacing:2.508000px;}
.ws23{word-spacing:2.898000px;}
.ws39{word-spacing:2.964000px;}
.ws22{word-spacing:3.024000px;}
.ws10{word-spacing:3.339000px;}
.ws1a{word-spacing:3.600000px;}
.ws1b{word-spacing:3.672000px;}
.ws1c{word-spacing:3.834000px;}
.ws17{word-spacing:4.158000px;}
.ws25{word-spacing:4.284000px;}
.ws3c{word-spacing:4.674000px;}
.ws26{word-spacing:5.355000px;}
.ws0{word-spacing:5.768170px;}
.ws3d{word-spacing:6.954000px;}
.ws32{word-spacing:7.125000px;}
.ws2b{word-spacing:9.513000px;}
.ws27{word-spacing:10.017000px;}
.ws29{word-spacing:11.592000px;}
.ws2c{word-spacing:12.540000px;}
.ws34{word-spacing:12.768000px;}
.ws36{word-spacing:13.338000px;}
.ws37{word-spacing:14.991000px;}
.ws35{word-spacing:15.219000px;}
.wsb{word-spacing:16.017000px;}
.wsf{word-spacing:16.632000px;}
.wsa{word-spacing:16.758000px;}
.wsc{word-spacing:18.711000px;}
.ws11{word-spacing:23.751000px;}
.ws24{word-spacing:25.452000px;}
.ws2f{word-spacing:25.593000px;}
.ws38{word-spacing:26.163000px;}
.ws2e{word-spacing:26.790000px;}
.ws21{word-spacing:27.027000px;}
.ws2d{word-spacing:29.070000px;}
.ws30{word-spacing:30.381000px;}
.ws3a{word-spacing:33.117000px;}
.ws14{word-spacing:39.249000px;}
._4{margin-left:-532.048200px;}
._2c{margin-left:-10.718577px;}
._17{margin-left:-8.620200px;}
._6{margin-left:-6.944730px;}
._1d{margin-left:-5.902770px;}
._5{margin-left:-4.852031px;}
._a{margin-left:-3.679813px;}
._3{margin-left:-2.612987px;}
._0{margin-left:-1.598400px;}
._2{width:1.731512px;}
._7{width:2.834188px;}
._12{width:4.097435px;}
._8{width:5.745600px;}
._1b{width:6.778800px;}
._14{width:8.032500px;}
._10{width:9.311400px;}
._f{width:10.552500px;}
._1{width:11.832144px;}
._11{width:12.924300px;}
._9{width:14.010600px;}
._c{width:15.322200px;}
._27{width:17.316600px;}
._e{width:18.711000px;}
._1a{width:19.788300px;}
._18{width:21.501900px;}
._15{width:22.749300px;}
._d{width:24.047100px;}
._1c{width:25.931831px;}
._1e{width:27.484838px;}
._21{width:28.736649px;}
._13{width:30.284100px;}
._b{width:31.903200px;}
._16{width:33.440400px;}
._20{width:35.204400px;}
._2d{width:37.329300px;}
._2a{width:38.402400px;}
._1f{width:39.702600px;}
._26{width:41.416200px;}
._24{width:45.172500px;}
._28{width:52.782000px;}
._25{width:54.064500px;}
._29{width:55.233000px;}
._23{width:64.039500px;}
._22{width:98.370600px;}
._19{width:203.311555px;}
._2b{width:210.637800px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(42,93,42);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs2{font-size:34.956600px;}
.fs6{font-size:34.980000px;}
.fsb{font-size:36.729000px;}
.fs0{font-size:43.200000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:147.901800px;}
.y0{bottom:0.000000px;}
.yb5{bottom:89.263500px;}
.y52{bottom:89.286750px;}
.y55{bottom:89.295900px;}
.y85{bottom:89.316000px;}
.y50{bottom:92.425200px;}
.y54{bottom:107.291400px;}
.yb4{bottom:107.660250px;}
.y84{bottom:109.066500px;}
.y51{bottom:109.621500px;}
.y4f{bottom:112.427700px;}
.yb3{bottom:126.057000px;}
.y83{bottom:128.817000px;}
.y4e{bottom:132.430200px;}
.yb2{bottom:144.453750px;}
.y2d{bottom:147.212850px;}
.y82{bottom:148.567500px;}
.y4d{bottom:152.432700px;}
.y2c{bottom:166.711350px;}
.y81{bottom:168.318000px;}
.yb1{bottom:171.357750px;}
.y4c{bottom:172.435200px;}
.y2b{bottom:186.209850px;}
.y80{bottom:188.068500px;}
.yb0{bottom:189.754500px;}
.y4b{bottom:192.437700px;}
.y2a{bottom:205.708350px;}
.y7f{bottom:207.819000px;}
.yaf{bottom:208.151250px;}
.y4a{bottom:212.440200px;}
.y29{bottom:225.206850px;}
.y7e{bottom:227.569500px;}
.y49{bottom:232.442700px;}
.yae{bottom:235.055250px;}
.y28{bottom:244.705350px;}
.y7d{bottom:247.320000px;}
.y48{bottom:252.445200px;}
.yad{bottom:253.452000px;}
.y27{bottom:264.203850px;}
.y7c{bottom:267.070500px;}
.yac{bottom:271.848750px;}
.y47{bottom:272.447700px;}
.y26{bottom:283.702350px;}
.y7b{bottom:286.821000px;}
.y46{bottom:292.450200px;}
.yab{bottom:298.752750px;}
.y25{bottom:303.200850px;}
.y7a{bottom:306.571500px;}
.y45{bottom:312.452700px;}
.yaa{bottom:317.149500px;}
.y79{bottom:326.322000px;}
.y24{bottom:331.204350px;}
.y44{bottom:332.455200px;}
.ya9{bottom:335.546250px;}
.y23{bottom:350.702850px;}
.y43{bottom:352.457700px;}
.ya8{bottom:353.943000px;}
.y78{bottom:354.577500px;}
.y22{bottom:370.201350px;}
.ya7{bottom:372.339750px;}
.y42{bottom:372.460200px;}
.y77{bottom:374.328000px;}
.y21{bottom:389.699850px;}
.ya6{bottom:390.736500px;}
.y41{bottom:392.462700px;}
.y76{bottom:394.078500px;}
.ya5{bottom:409.133250px;}
.y20{bottom:409.198350px;}
.y40{bottom:412.465200px;}
.y75{bottom:413.829000px;}
.ya4{bottom:427.530000px;}
.y1f{bottom:428.696850px;}
.y3f{bottom:432.467700px;}
.y74{bottom:433.579500px;}
.y1e{bottom:448.195350px;}
.y73{bottom:453.331350px;}
.ya3{bottom:454.434000px;}
.y3e{bottom:460.970850px;}
.y1d{bottom:467.693850px;}
.ya2{bottom:472.830750px;}
.y72{bottom:473.083350px;}
.y3d{bottom:480.954000px;}
.y1c{bottom:487.192350px;}
.ya1{bottom:491.227500px;}
.y71{bottom:492.835200px;}
.y3c{bottom:500.956500px;}
.y1b{bottom:506.690850px;}
.ya0{bottom:509.624250px;}
.y70{bottom:512.617800px;}
.y3b{bottom:520.959000px;}
.y1a{bottom:526.189350px;}
.y6f{bottom:532.368300px;}
.yd1{bottom:533.158350px;}
.yec{bottom:533.785350px;}
.y9f{bottom:536.528250px;}
.y3a{bottom:540.961500px;}
.y19{bottom:545.687850px;}
.yd0{bottom:551.156100px;}
.y6e{bottom:552.118800px;}
.yeb{bottom:552.452850px;}
.y9e{bottom:554.925000px;}
.y39{bottom:560.964000px;}
.y18{bottom:565.186350px;}
.yea{bottom:571.120350px;}
.y6d{bottom:571.869300px;}
.y9d{bottom:573.321750px;}
.ycf{bottom:577.661100px;}
.y38{bottom:580.966500px;}
.y17{bottom:584.684850px;}
.ye9{bottom:589.787850px;}
.yce{bottom:595.658850px;}
.y6c{bottom:600.124800px;}
.y9c{bottom:600.220050px;}
.y16{bottom:604.183350px;}
.y37{bottom:609.469650px;}
.ycd{bottom:613.656600px;}
.ye8{bottom:616.962600px;}
.y9b{bottom:618.616800px;}
.y6b{bottom:619.875300px;}
.ycc{bottom:631.654350px;}
.y15{bottom:632.187300px;}
.ye7{bottom:635.630100px;}
.y9a{bottom:637.013550px;}
.y6a{bottom:639.625800px;}
.y36{bottom:640.077600px;}
.ycb{bottom:649.652100px;}
.ye6{bottom:654.297600px;}
.y99{bottom:655.410300px;}
.y69{bottom:659.376300px;}
.y35{bottom:660.080100px;}
.y98{bottom:673.807050px;}
.y14{bottom:674.236200px;}
.yca{bottom:676.157100px;}
.y68{bottom:679.126800px;}
.y34{bottom:680.082600px;}
.ye5{bottom:681.472350px;}
.y13{bottom:692.233950px;}
.yc9{bottom:694.154850px;}
.y67{bottom:698.877300px;}
.y33{bottom:700.085100px;}
.ye4{bottom:700.139850px;}
.y97{bottom:700.707300px;}
.yc8{bottom:712.152600px;}
.y66{bottom:718.627800px;}
.y12{bottom:718.738950px;}
.ye3{bottom:718.807350px;}
.y32{bottom:720.087600px;}
.y96{bottom:731.219700px;}
.y11{bottom:736.736700px;}
.ye2{bottom:737.474850px;}
.yc7{bottom:738.657600px;}
.y31{bottom:740.090100px;}
.y65{bottom:746.883300px;}
.y95{bottom:751.111950px;}
.y10{bottom:754.734450px;}
.ye1{bottom:756.142350px;}
.yc6{bottom:756.655350px;}
.y30{bottom:760.092600px;}
.y94{bottom:771.004200px;}
.yf{bottom:772.732200px;}
.yc5{bottom:774.653100px;}
.y64{bottom:775.138800px;}
.y2f{bottom:780.095100px;}
.ye0{bottom:783.317100px;}
.ye{bottom:790.729950px;}
.y93{bottom:790.896450px;}
.yc4{bottom:792.650850px;}
.y63{bottom:794.889300px;}
.y2e{bottom:800.097600px;}
.ydf{bottom:801.984600px;}
.yc3{bottom:810.648600px;}
.y92{bottom:810.816750px;}
.yde{bottom:820.652100px;}
.y62{bottom:823.144800px;}
.yc2{bottom:828.646350px;}
.y91{bottom:830.709000px;}
.ydd{bottom:839.319600px;}
.y61{bottom:842.895300px;}
.yd{bottom:847.285050px;}
.y90{bottom:850.601250px;}
.yc1{bottom:855.151350px;}
.ydc{bottom:866.494350px;}
.yc{bottom:869.776050px;}
.y8f{bottom:870.493500px;}
.y60{bottom:871.150800px;}
.yc0{bottom:873.149100px;}
.ydb{bottom:885.161850px;}
.y8e{bottom:890.385750px;}
.y5f{bottom:890.901300px;}
.ybf{bottom:891.146850px;}
.yb{bottom:892.028100px;}
.yda{bottom:903.829350px;}
.ybe{bottom:909.144600px;}
.ya{bottom:909.784500px;}
.y8d{bottom:910.278000px;}
.y5e{bottom:910.651800px;}
.yd9{bottom:922.496850px;}
.y8c{bottom:930.170250px;}
.y5d{bottom:930.402300px;}
.ybd{bottom:935.649600px;}
.yd8{bottom:941.164350px;}
.y5c{bottom:950.152800px;}
.ybc{bottom:953.647350px;}
.y9{bottom:953.805000px;}
.y8b{bottom:958.570500px;}
.yd7{bottom:968.339100px;}
.y5b{bottom:969.903300px;}
.ybb{bottom:971.645100px;}
.y8{bottom:986.205000px;}
.yd6{bottom:987.006600px;}
.y8a{bottom:989.113500px;}
.y5a{bottom:989.653800px;}
.yba{bottom:998.150100px;}
.yd5{bottom:1005.674100px;}
.y89{bottom:1009.005750px;}
.y59{bottom:1009.404300px;}
.yb9{bottom:1016.147850px;}
.yd4{bottom:1024.341600px;}
.y88{bottom:1028.898000px;}
.y58{bottom:1029.154800px;}
.yb8{bottom:1034.145600px;}
.y87{bottom:1048.790250px;}
.y57{bottom:1048.905300px;}
.yd3{bottom:1051.516350px;}
.yb7{bottom:1052.143350px;}
.y6{bottom:1058.664750px;}
.y4{bottom:1059.657000px;}
.y7{bottom:1061.957850px;}
.y56{bottom:1068.655800px;}
.y86{bottom:1068.682500px;}
.yb6{bottom:1070.141100px;}
.yd2{bottom:1070.183850px;}
.y5{bottom:1071.322050px;}
.y3{bottom:1073.157000px;}
.y2{bottom:1086.657000px;}
.y53{bottom:1095.808200px;}
.y1{bottom:1100.157000px;}
.h8{height:22.950378px;}
.h4{height:26.627098px;}
.h2{height:32.906250px;}
.h9{height:39.366000px;}
.h5{height:39.474000px;}
.h10{height:39.604980px;}
.hf{height:41.310000px;}
.he{height:44.238281px;}
.h7{height:45.753838px;}
.h11{height:45.783691px;}
.ha{height:48.205078px;}
.hd{height:48.223678px;}
.hb{height:52.416000px;}
.hc{height:53.279297px;}
.h6{height:82.620000px;}
.h3{height:111.370055px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:871.500000px;}
.w0{width:871.653000px;}
.x0{left:0.000000px;}
.x11{left:89.291400px;}
.x6{left:92.480250px;}
.xe{left:93.543300px;}
.xc{left:98.081850px;}
.x13{left:110.552400px;}
.x5{left:122.207250px;}
.x9{left:123.770850px;}
.xb{left:146.083050px;}
.x8{left:223.157850px;}
.xa{left:311.411850px;}
.xd{left:339.473880px;}
.x7{left:367.729200px;}
.x15{left:444.344400px;}
.xf{left:448.595550px;}
.x14{left:465.605400px;}
.x12{left:469.843650px;}
.x4{left:563.643300px;}
.x3{left:642.325800px;}
.x2{left:650.054550px;}
.x10{left:657.560550px;}
.x1{left:667.840800px;}
@media print{
.v3{vertical-align:-18.648000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls3{letter-spacing:-5.258731pt;}
.lsa{letter-spacing:-3.200000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls5{letter-spacing:-0.419760pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004907pt;}
.lsc{letter-spacing:0.006357pt;}
.lsb{letter-spacing:0.006891pt;}
.ls1{letter-spacing:2.822400pt;}
.ws3{word-spacing:-15.736000pt;}
.ws1f{word-spacing:-15.064000pt;}
.ws4{word-spacing:-14.616000pt;}
.ws6{word-spacing:-14.237333pt;}
.ws5{word-spacing:-13.944000pt;}
.ws2{word-spacing:-13.629333pt;}
.ws1{word-spacing:-13.122667pt;}
.ws19{word-spacing:-11.520000pt;}
.ws16{word-spacing:-5.656000pt;}
.ws13{word-spacing:-2.368000pt;}
.ws12{word-spacing:-2.296000pt;}
.ws1e{word-spacing:-2.256000pt;}
.ws18{word-spacing:-1.920000pt;}
.ws28{word-spacing:-1.680000pt;}
.ws2a{word-spacing:-1.512000pt;}
.wsd{word-spacing:-0.728000pt;}
.ws20{word-spacing:-0.050667pt;}
.ws7{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.101333pt;}
.ws8{word-spacing:0.419760pt;}
.ws9{word-spacing:0.506667pt;}
.ws3b{word-spacing:0.608000pt;}
.ws1d{word-spacing:0.960000pt;}
.ws31{word-spacing:1.114667pt;}
.ws15{word-spacing:1.120000pt;}
.wse{word-spacing:2.128000pt;}
.ws33{word-spacing:2.229333pt;}
.ws23{word-spacing:2.576000pt;}
.ws39{word-spacing:2.634667pt;}
.ws22{word-spacing:2.688000pt;}
.ws10{word-spacing:2.968000pt;}
.ws1a{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.264000pt;}
.ws1c{word-spacing:3.408000pt;}
.ws17{word-spacing:3.696000pt;}
.ws25{word-spacing:3.808000pt;}
.ws3c{word-spacing:4.154667pt;}
.ws26{word-spacing:4.760000pt;}
.ws0{word-spacing:5.127262pt;}
.ws3d{word-spacing:6.181333pt;}
.ws32{word-spacing:6.333333pt;}
.ws2b{word-spacing:8.456000pt;}
.ws27{word-spacing:8.904000pt;}
.ws29{word-spacing:10.304000pt;}
.ws2c{word-spacing:11.146667pt;}
.ws34{word-spacing:11.349333pt;}
.ws36{word-spacing:11.856000pt;}
.ws37{word-spacing:13.325333pt;}
.ws35{word-spacing:13.528000pt;}
.wsb{word-spacing:14.237333pt;}
.wsf{word-spacing:14.784000pt;}
.wsa{word-spacing:14.896000pt;}
.wsc{word-spacing:16.632000pt;}
.ws11{word-spacing:21.112000pt;}
.ws24{word-spacing:22.624000pt;}
.ws2f{word-spacing:22.749333pt;}
.ws38{word-spacing:23.256000pt;}
.ws2e{word-spacing:23.813333pt;}
.ws21{word-spacing:24.024000pt;}
.ws2d{word-spacing:25.840000pt;}
.ws30{word-spacing:27.005333pt;}
.ws3a{word-spacing:29.437333pt;}
.ws14{word-spacing:34.888000pt;}
._4{margin-left:-472.931733pt;}
._2c{margin-left:-9.527624pt;}
._17{margin-left:-7.662400pt;}
._6{margin-left:-6.173093pt;}
._1d{margin-left:-5.246907pt;}
._5{margin-left:-4.312916pt;}
._a{margin-left:-3.270945pt;}
._3{margin-left:-2.322655pt;}
._0{margin-left:-1.420800pt;}
._2{width:1.539121pt;}
._7{width:2.519279pt;}
._12{width:3.642164pt;}
._8{width:5.107200pt;}
._1b{width:6.025600pt;}
._14{width:7.140000pt;}
._10{width:8.276800pt;}
._f{width:9.380000pt;}
._1{width:10.517461pt;}
._11{width:11.488267pt;}
._9{width:12.453867pt;}
._c{width:13.619733pt;}
._27{width:15.392533pt;}
._e{width:16.632000pt;}
._1a{width:17.589600pt;}
._18{width:19.112800pt;}
._15{width:20.221600pt;}
._d{width:21.375200pt;}
._1c{width:23.050516pt;}
._1e{width:24.430967pt;}
._21{width:25.543688pt;}
._13{width:26.919200pt;}
._b{width:28.358400pt;}
._16{width:29.724800pt;}
._20{width:31.292800pt;}
._2d{width:33.181600pt;}
._2a{width:34.135467pt;}
._1f{width:35.291200pt;}
._26{width:36.814400pt;}
._24{width:40.153333pt;}
._28{width:46.917333pt;}
._25{width:48.057333pt;}
._29{width:49.096000pt;}
._23{width:56.924000pt;}
._22{width:87.440533pt;}
._19{width:180.721382pt;}
._2b{width:187.233600pt;}
.fs7{font-size:27.984000pt;}
.fs2{font-size:31.072533pt;}
.fs6{font-size:31.093333pt;}
.fsb{font-size:32.648000pt;}
.fs0{font-size:38.400000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:131.468267pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:79.345333pt;}
.y52{bottom:79.366000pt;}
.y55{bottom:79.374133pt;}
.y85{bottom:79.392000pt;}
.y50{bottom:82.155733pt;}
.y54{bottom:95.370133pt;}
.yb4{bottom:95.698000pt;}
.y84{bottom:96.948000pt;}
.y51{bottom:97.441333pt;}
.y4f{bottom:99.935733pt;}
.yb3{bottom:112.050667pt;}
.y83{bottom:114.504000pt;}
.y4e{bottom:117.715733pt;}
.yb2{bottom:128.403333pt;}
.y2d{bottom:130.855867pt;}
.y82{bottom:132.060000pt;}
.y4d{bottom:135.495733pt;}
.y2c{bottom:148.187867pt;}
.y81{bottom:149.616000pt;}
.yb1{bottom:152.318000pt;}
.y4c{bottom:153.275733pt;}
.y2b{bottom:165.519867pt;}
.y80{bottom:167.172000pt;}
.yb0{bottom:168.670667pt;}
.y4b{bottom:171.055733pt;}
.y2a{bottom:182.851867pt;}
.y7f{bottom:184.728000pt;}
.yaf{bottom:185.023333pt;}
.y4a{bottom:188.835733pt;}
.y29{bottom:200.183867pt;}
.y7e{bottom:202.284000pt;}
.y49{bottom:206.615733pt;}
.yae{bottom:208.938000pt;}
.y28{bottom:217.515867pt;}
.y7d{bottom:219.840000pt;}
.y48{bottom:224.395733pt;}
.yad{bottom:225.290667pt;}
.y27{bottom:234.847867pt;}
.y7c{bottom:237.396000pt;}
.yac{bottom:241.643333pt;}
.y47{bottom:242.175733pt;}
.y26{bottom:252.179867pt;}
.y7b{bottom:254.952000pt;}
.y46{bottom:259.955733pt;}
.yab{bottom:265.558000pt;}
.y25{bottom:269.511867pt;}
.y7a{bottom:272.508000pt;}
.y45{bottom:277.735733pt;}
.yaa{bottom:281.910667pt;}
.y79{bottom:290.064000pt;}
.y24{bottom:294.403867pt;}
.y44{bottom:295.515733pt;}
.ya9{bottom:298.263333pt;}
.y23{bottom:311.735867pt;}
.y43{bottom:313.295733pt;}
.ya8{bottom:314.616000pt;}
.y78{bottom:315.180000pt;}
.y22{bottom:329.067867pt;}
.ya7{bottom:330.968667pt;}
.y42{bottom:331.075733pt;}
.y77{bottom:332.736000pt;}
.y21{bottom:346.399867pt;}
.ya6{bottom:347.321333pt;}
.y41{bottom:348.855733pt;}
.y76{bottom:350.292000pt;}
.ya5{bottom:363.674000pt;}
.y20{bottom:363.731867pt;}
.y40{bottom:366.635733pt;}
.y75{bottom:367.848000pt;}
.ya4{bottom:380.026667pt;}
.y1f{bottom:381.063867pt;}
.y3f{bottom:384.415733pt;}
.y74{bottom:385.404000pt;}
.y1e{bottom:398.395867pt;}
.y73{bottom:402.961200pt;}
.ya3{bottom:403.941333pt;}
.y3e{bottom:409.751867pt;}
.y1d{bottom:415.727867pt;}
.ya2{bottom:420.294000pt;}
.y72{bottom:420.518533pt;}
.y3d{bottom:427.514667pt;}
.y1c{bottom:433.059867pt;}
.ya1{bottom:436.646667pt;}
.y71{bottom:438.075733pt;}
.y3c{bottom:445.294667pt;}
.y1b{bottom:450.391867pt;}
.ya0{bottom:452.999333pt;}
.y70{bottom:455.660267pt;}
.y3b{bottom:463.074667pt;}
.y1a{bottom:467.723867pt;}
.y6f{bottom:473.216267pt;}
.yd1{bottom:473.918533pt;}
.yec{bottom:474.475867pt;}
.y9f{bottom:476.914000pt;}
.y3a{bottom:480.854667pt;}
.y19{bottom:485.055867pt;}
.yd0{bottom:489.916533pt;}
.y6e{bottom:490.772267pt;}
.yeb{bottom:491.069200pt;}
.y9e{bottom:493.266667pt;}
.y39{bottom:498.634667pt;}
.y18{bottom:502.387867pt;}
.yea{bottom:507.662533pt;}
.y6d{bottom:508.328267pt;}
.y9d{bottom:509.619333pt;}
.ycf{bottom:513.476533pt;}
.y38{bottom:516.414667pt;}
.y17{bottom:519.719867pt;}
.ye9{bottom:524.255867pt;}
.yce{bottom:529.474533pt;}
.y6c{bottom:533.444267pt;}
.y9c{bottom:533.528933pt;}
.y16{bottom:537.051867pt;}
.y37{bottom:541.750800pt;}
.ycd{bottom:545.472533pt;}
.ye8{bottom:548.411200pt;}
.y9b{bottom:549.881600pt;}
.y6b{bottom:551.000267pt;}
.ycc{bottom:561.470533pt;}
.y15{bottom:561.944267pt;}
.ye7{bottom:565.004533pt;}
.y9a{bottom:566.234267pt;}
.y6a{bottom:568.556267pt;}
.y36{bottom:568.957867pt;}
.ycb{bottom:577.468533pt;}
.ye6{bottom:581.597867pt;}
.y99{bottom:582.586933pt;}
.y69{bottom:586.112267pt;}
.y35{bottom:586.737867pt;}
.y98{bottom:598.939600pt;}
.y14{bottom:599.321067pt;}
.yca{bottom:601.028533pt;}
.y68{bottom:603.668267pt;}
.y34{bottom:604.517867pt;}
.ye5{bottom:605.753200pt;}
.y13{bottom:615.319067pt;}
.yc9{bottom:617.026533pt;}
.y67{bottom:621.224267pt;}
.y33{bottom:622.297867pt;}
.ye4{bottom:622.346533pt;}
.y97{bottom:622.850933pt;}
.yc8{bottom:633.024533pt;}
.y66{bottom:638.780267pt;}
.y12{bottom:638.879067pt;}
.ye3{bottom:638.939867pt;}
.y32{bottom:640.077867pt;}
.y96{bottom:649.973067pt;}
.y11{bottom:654.877067pt;}
.ye2{bottom:655.533200pt;}
.yc7{bottom:656.584533pt;}
.y31{bottom:657.857867pt;}
.y65{bottom:663.896267pt;}
.y95{bottom:667.655067pt;}
.y10{bottom:670.875067pt;}
.ye1{bottom:672.126533pt;}
.yc6{bottom:672.582533pt;}
.y30{bottom:675.637867pt;}
.y94{bottom:685.337067pt;}
.yf{bottom:686.873067pt;}
.yc5{bottom:688.580533pt;}
.y64{bottom:689.012267pt;}
.y2f{bottom:693.417867pt;}
.ye0{bottom:696.281867pt;}
.ye{bottom:702.871067pt;}
.y93{bottom:703.019067pt;}
.yc4{bottom:704.578533pt;}
.y63{bottom:706.568267pt;}
.y2e{bottom:711.197867pt;}
.ydf{bottom:712.875200pt;}
.yc3{bottom:720.576533pt;}
.y92{bottom:720.726000pt;}
.yde{bottom:729.468533pt;}
.y62{bottom:731.684267pt;}
.yc2{bottom:736.574533pt;}
.y91{bottom:738.408000pt;}
.ydd{bottom:746.061867pt;}
.y61{bottom:749.240267pt;}
.yd{bottom:753.142267pt;}
.y90{bottom:756.090000pt;}
.yc1{bottom:760.134533pt;}
.ydc{bottom:770.217200pt;}
.yc{bottom:773.134267pt;}
.y8f{bottom:773.772000pt;}
.y60{bottom:774.356267pt;}
.yc0{bottom:776.132533pt;}
.ydb{bottom:786.810533pt;}
.y8e{bottom:791.454000pt;}
.y5f{bottom:791.912267pt;}
.ybf{bottom:792.130533pt;}
.yb{bottom:792.913867pt;}
.yda{bottom:803.403867pt;}
.ybe{bottom:808.128533pt;}
.ya{bottom:808.697333pt;}
.y8d{bottom:809.136000pt;}
.y5e{bottom:809.468267pt;}
.yd9{bottom:819.997200pt;}
.y8c{bottom:826.818000pt;}
.y5d{bottom:827.024267pt;}
.ybd{bottom:831.688533pt;}
.yd8{bottom:836.590533pt;}
.y5c{bottom:844.580267pt;}
.ybc{bottom:847.686533pt;}
.y9{bottom:847.826667pt;}
.y8b{bottom:852.062667pt;}
.yd7{bottom:860.745867pt;}
.y5b{bottom:862.136267pt;}
.ybb{bottom:863.684533pt;}
.y8{bottom:876.626667pt;}
.yd6{bottom:877.339200pt;}
.y8a{bottom:879.212000pt;}
.y5a{bottom:879.692267pt;}
.yba{bottom:887.244533pt;}
.yd5{bottom:893.932533pt;}
.y89{bottom:896.894000pt;}
.y59{bottom:897.248267pt;}
.yb9{bottom:903.242533pt;}
.yd4{bottom:910.525867pt;}
.y88{bottom:914.576000pt;}
.y58{bottom:914.804267pt;}
.yb8{bottom:919.240533pt;}
.y87{bottom:932.258000pt;}
.y57{bottom:932.360267pt;}
.yd3{bottom:934.681200pt;}
.yb7{bottom:935.238533pt;}
.y6{bottom:941.035333pt;}
.y4{bottom:941.917333pt;}
.y7{bottom:943.962533pt;}
.y56{bottom:949.916267pt;}
.y86{bottom:949.940000pt;}
.yb6{bottom:951.236533pt;}
.yd2{bottom:951.274533pt;}
.y5{bottom:952.286267pt;}
.y3{bottom:953.917333pt;}
.y2{bottom:965.917333pt;}
.y53{bottom:974.051733pt;}
.y1{bottom:977.917333pt;}
.h8{height:20.400336pt;}
.h4{height:23.668531pt;}
.h2{height:29.250000pt;}
.h9{height:34.992000pt;}
.h5{height:35.088000pt;}
.h10{height:35.204427pt;}
.hf{height:36.720000pt;}
.he{height:39.322917pt;}
.h7{height:40.670078pt;}
.h11{height:40.696615pt;}
.ha{height:42.848958pt;}
.hd{height:42.865492pt;}
.hb{height:46.592000pt;}
.hc{height:47.359375pt;}
.h6{height:73.440000pt;}
.h3{height:98.995605pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:774.666667pt;}
.w0{width:774.802667pt;}
.x0{left:0.000000pt;}
.x11{left:79.370133pt;}
.x6{left:82.204667pt;}
.xe{left:83.149600pt;}
.xc{left:87.183867pt;}
.x13{left:98.268800pt;}
.x5{left:108.628667pt;}
.x9{left:110.018533pt;}
.xb{left:129.851600pt;}
.x8{left:198.362533pt;}
.xa{left:276.810533pt;}
.xd{left:301.754560pt;}
.x7{left:326.870400pt;}
.x15{left:394.972800pt;}
.xf{left:398.751600pt;}
.x14{left:413.871467pt;}
.x12{left:417.638800pt;}
.x4{left:501.016267pt;}
.x3{left:570.956267pt;}
.x2{left:577.826267pt;}
.x10{left:584.498267pt;}
.x1{left:593.636267pt;}
}




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