
    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_bc89eda1591489b16a4975e0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_842bb6d11de6468c343e826a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_960845ea23d11f31195662f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_2d15c29822c43cfab844b2da.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a5b623dba55ad18d1f65e956.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_8f5e678fc5168a4b79fe122c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_2d7eba72cb47bddfe9a50c3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765000;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_42d64c8f457e60928f094239.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_efe4d27110543ee24ebfc503.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0a0d1f2368afe1f76c0cd760.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989000;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_42d64c8f457e60928f094239.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_f5bacd9f03c3a54f7ea0161a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.981400px;}
.v3{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls6{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.540000px;}
.ls2{letter-spacing:7.612800px;}
.ls7{letter-spacing:275.456400px;}
.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;}
}
.ws64{word-spacing:-3.888000px;}
.ws78{word-spacing:-3.744000px;}
.ws7d{word-spacing:-3.672000px;}
.ws54{word-spacing:-3.348000px;}
.wsa{word-spacing:-3.240000px;}
.ws27{word-spacing:-2.970000px;}
.ws4e{word-spacing:-2.916000px;}
.ws75{word-spacing:-2.646000px;}
.ws5{word-spacing:-2.592000px;}
.ws8{word-spacing:-2.430000px;}
.ws42{word-spacing:-2.376000px;}
.ws43{word-spacing:-2.268000px;}
.ws55{word-spacing:-2.160000px;}
.ws66{word-spacing:-1.998000px;}
.ws2e{word-spacing:-1.944000px;}
.ws4f{word-spacing:-1.836000px;}
.ws65{word-spacing:-1.728000px;}
.ws7a{word-spacing:-1.350000px;}
.ws1e{word-spacing:-1.026000px;}
.ws24{word-spacing:-0.972000px;}
.ws35{word-spacing:-0.702000px;}
.ws3a{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.594000px;}
.ws4b{word-spacing:-0.540000px;}
.ws1b{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.378000px;}
.ws40{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.270000px;}
.ws71{word-spacing:-0.216000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.054000px;}
.ws19{word-spacing:0.162000px;}
.ws12{word-spacing:0.216000px;}
.ws5b{word-spacing:0.324000px;}
.ws3e{word-spacing:0.432000px;}
.ws13{word-spacing:0.540000px;}
.ws17{word-spacing:0.648000px;}
.ws7c{word-spacing:0.702000px;}
.ws6e{word-spacing:0.810000px;}
.ws3f{word-spacing:0.918000px;}
.ws63{word-spacing:1.080000px;}
.ws72{word-spacing:1.188000px;}
.ws51{word-spacing:1.350000px;}
.ws73{word-spacing:1.512000px;}
.ws2b{word-spacing:1.566000px;}
.ws6c{word-spacing:1.890000px;}
.ws2c{word-spacing:2.052000px;}
.ws3d{word-spacing:2.160000px;}
.ws1c{word-spacing:2.208000px;}
.ws74{word-spacing:2.376000px;}
.ws1d{word-spacing:2.400000px;}
.ws11{word-spacing:2.430000px;}
.ws4d{word-spacing:2.538000px;}
.ws9{word-spacing:2.592000px;}
.ws7{word-spacing:2.700000px;}
.ws49{word-spacing:3.024000px;}
.ws31{word-spacing:3.078000px;}
.ws57{word-spacing:3.456000px;}
.ws32{word-spacing:3.510000px;}
.ws10{word-spacing:3.564000px;}
.ws18{word-spacing:3.672000px;}
.wsf{word-spacing:3.888000px;}
.ws5d{word-spacing:3.942000px;}
.ws62{word-spacing:3.996000px;}
.ws3c{word-spacing:4.050000px;}
.ws6f{word-spacing:4.212000px;}
.ws41{word-spacing:4.266000px;}
.ws53{word-spacing:4.320000px;}
.ws2d{word-spacing:4.374000px;}
.ws3b{word-spacing:4.482000px;}
.wsb{word-spacing:4.536000px;}
.ws20{word-spacing:4.590000px;}
.ws4c{word-spacing:4.698000px;}
.ws28{word-spacing:4.806000px;}
.wsc{word-spacing:4.860000px;}
.ws69{word-spacing:5.022000px;}
.ws5e{word-spacing:5.076000px;}
.ws5f{word-spacing:5.130000px;}
.ws79{word-spacing:5.292000px;}
.ws56{word-spacing:5.346000px;}
.ws3{word-spacing:5.400000px;}
.ws25{word-spacing:5.454000px;}
.ws76{word-spacing:5.616000px;}
.wse{word-spacing:5.724000px;}
.ws48{word-spacing:6.426000px;}
.ws4{word-spacing:6.480000px;}
.ws44{word-spacing:6.588000px;}
.ws5a{word-spacing:6.642000px;}
.ws45{word-spacing:6.912000px;}
.ws33{word-spacing:7.020000px;}
.ws1f{word-spacing:7.074000px;}
.ws7b{word-spacing:7.182000px;}
.ws1a{word-spacing:7.200000px;}
.ws22{word-spacing:7.398000px;}
.ws59{word-spacing:8.046000px;}
.ws30{word-spacing:8.208000px;}
.ws39{word-spacing:8.586000px;}
.ws6b{word-spacing:8.640000px;}
.ws60{word-spacing:9.450000px;}
.ws26{word-spacing:9.504000px;}
.ws47{word-spacing:9.612000px;}
.ws15{word-spacing:9.720000px;}
.ws67{word-spacing:9.774000px;}
.ws23{word-spacing:9.828000px;}
.ws4a{word-spacing:9.936000px;}
.ws52{word-spacing:10.098000px;}
.ws61{word-spacing:10.206000px;}
.ws77{word-spacing:10.368000px;}
.ws2f{word-spacing:10.800000px;}
.ws70{word-spacing:10.962000px;}
.wsd{word-spacing:11.124000px;}
.ws36{word-spacing:11.178000px;}
.ws38{word-spacing:11.556000px;}
.ws16{word-spacing:11.880000px;}
.ws37{word-spacing:13.554000px;}
.ws6a{word-spacing:14.742000px;}
.ws34{word-spacing:15.066000px;}
.ws46{word-spacing:15.930000px;}
.ws21{word-spacing:17.280000px;}
.ws50{word-spacing:17.568000px;}
.ws6d{word-spacing:20.088000px;}
.ws2a{word-spacing:20.736000px;}
.ws58{word-spacing:21.924000px;}
.ws5c{word-spacing:29.304000px;}
.ws1{word-spacing:105.456000px;}
.ws0{word-spacing:1242.054000px;}
._5{margin-left:-27.950400px;}
._6{margin-left:-19.186200px;}
._9{margin-left:-5.464800px;}
._3{margin-left:-4.087800px;}
._0{margin-left:-2.980800px;}
._1{margin-left:-1.020600px;}
._4{width:1.819800px;}
._a{width:3.607200px;}
._2{width:5.265000px;}
._b{width:6.604200px;}
._8{width:7.651200px;}
._f{width:9.790200px;}
._7{width:11.988000px;}
._d{width:13.240800px;}
._c{width:38.070000px;}
._e{width:970.429800px;}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:46.967550px;}
.y3e{bottom:47.167950px;}
.y9c{bottom:47.171700px;}
.y9b{bottom:47.916000px;}
.y37{bottom:59.074650px;}
.y3b{bottom:59.194650px;}
.y36{bottom:77.074650px;}
.y3a{bottom:77.194650px;}
.y6e{bottom:92.256750px;}
.y9a{bottom:92.291250px;}
.yc4{bottom:92.294250px;}
.y35{bottom:95.074650px;}
.y39{bottom:95.194650px;}
.y99{bottom:111.042750px;}
.yc3{bottom:111.045750px;}
.y34{bottom:113.074650px;}
.y38{bottom:113.194650px;}
.y6d{bottom:129.759750px;}
.ye2{bottom:129.776250px;}
.y98{bottom:129.794250px;}
.y6c{bottom:148.511250px;}
.ye1{bottom:148.527750px;}
.y97{bottom:148.545750px;}
.yc2{bottom:148.548750px;}
.y2a{bottom:159.373050px;}
.yf1{bottom:159.723300px;}
.y6b{bottom:167.262750px;}
.ye0{bottom:167.279250px;}
.y96{bottom:167.297250px;}
.yc1{bottom:167.300250px;}
.yf0{bottom:176.223300px;}
.y6a{bottom:186.014250px;}
.y95{bottom:186.048750px;}
.yc0{bottom:186.051750px;}
.y6{bottom:187.440450px;}
.y30{bottom:187.441050px;}
.y5{bottom:203.940450px;}
.y2f{bottom:203.941050px;}
.y69{bottom:204.765750px;}
.ydf{bottom:204.782250px;}
.y94{bottom:204.800250px;}
.y4{bottom:220.440450px;}
.y2e{bottom:220.441050px;}
.y68{bottom:223.517250px;}
.yde{bottom:223.533750px;}
.ybf{bottom:223.545750px;}
.y93{bottom:223.551750px;}
.y3{bottom:236.940450px;}
.y2d{bottom:236.941050px;}
.y67{bottom:242.268750px;}
.ydd{bottom:242.285250px;}
.ybe{bottom:242.301750px;}
.y2{bottom:253.440450px;}
.y2c{bottom:253.441050px;}
.y66{bottom:261.020250px;}
.ydc{bottom:261.036750px;}
.y92{bottom:261.051750px;}
.y1{bottom:269.940450px;}
.y2b{bottom:269.941050px;}
.y65{bottom:279.771750px;}
.ydb{bottom:279.788250px;}
.y64{bottom:298.523250px;}
.ybd{bottom:298.532250px;}
.yda{bottom:298.539750px;}
.y33{bottom:307.473450px;}
.y91{bottom:317.193750px;}
.y63{bottom:317.274750px;}
.ybc{bottom:317.283750px;}
.y90{bottom:335.945250px;}
.y62{bottom:336.026250px;}
.ybb{bottom:336.035250px;}
.yd9{bottom:336.042750px;}
.y29{bottom:348.724950px;}
.y8f{bottom:354.696750px;}
.y61{bottom:354.777750px;}
.yba{bottom:354.786750px;}
.yd8{bottom:354.794250px;}
.y28{bottom:368.218800px;}
.y8e{bottom:373.448250px;}
.y60{bottom:373.529250px;}
.yb9{bottom:373.538250px;}
.yd7{bottom:373.545750px;}
.y8d{bottom:392.199750px;}
.y5f{bottom:392.280750px;}
.yb8{bottom:392.289750px;}
.yd6{bottom:392.297250px;}
.y3c{bottom:409.815450px;}
.y8c{bottom:410.951250px;}
.y5e{bottom:411.032250px;}
.yd5{bottom:411.048750px;}
.y8b{bottom:429.702750px;}
.y5d{bottom:429.783750px;}
.yb7{bottom:429.792750px;}
.yd4{bottom:429.800250px;}
.y5c{bottom:448.535250px;}
.yb6{bottom:448.544250px;}
.yd3{bottom:448.551750px;}
.y8a{bottom:467.205750px;}
.y5b{bottom:467.286750px;}
.yb5{bottom:467.295750px;}
.y89{bottom:485.957250px;}
.y5a{bottom:486.038250px;}
.yd2{bottom:486.045750px;}
.yb4{bottom:486.047250px;}
.y88{bottom:504.708750px;}
.yb3{bottom:504.798750px;}
.yd1{bottom:504.801750px;}
.y87{bottom:523.460250px;}
.y59{bottom:523.541250px;}
.yb2{bottom:523.550250px;}
.y86{bottom:542.211750px;}
.y58{bottom:542.292750px;}
.yb1{bottom:542.301750px;}
.y85{bottom:560.963250px;}
.yd0{bottom:561.038250px;}
.y57{bottom:561.044250px;}
.y84{bottom:579.714750px;}
.ycf{bottom:579.789750px;}
.y56{bottom:579.795750px;}
.yce{bottom:598.541250px;}
.y55{bottom:598.547250px;}
.yb0{bottom:598.551750px;}
.y83{bottom:617.217750px;}
.y54{bottom:617.298750px;}
.y82{bottom:635.969250px;}
.ycd{bottom:636.044250px;}
.y53{bottom:636.050250px;}
.yaf{bottom:654.771750px;}
.ycc{bottom:654.795750px;}
.y52{bottom:654.801750px;}
.y81{bottom:673.472250px;}
.yae{bottom:673.523250px;}
.ycb{bottom:673.547250px;}
.y80{bottom:692.223750px;}
.yad{bottom:692.274750px;}
.y12{bottom:692.285250px;}
.y51{bottom:692.295750px;}
.yca{bottom:692.298750px;}
.y21{bottom:708.742950px;}
.y7f{bottom:710.975250px;}
.yac{bottom:711.026250px;}
.y11{bottom:711.036750px;}
.yc9{bottom:711.050250px;}
.y50{bottom:711.051750px;}
.y20{bottom:723.741450px;}
.y10{bottom:729.788250px;}
.yc8{bottom:729.801750px;}
.y1f{bottom:738.739950px;}
.y7e{bottom:748.478250px;}
.yab{bottom:748.529250px;}
.yf{bottom:748.539750px;}
.y1e{bottom:753.738450px;}
.y7d{bottom:767.229750px;}
.y4f{bottom:767.276250px;}
.yaa{bottom:767.280750px;}
.ye{bottom:767.291250px;}
.yc7{bottom:767.295750px;}
.y1d{bottom:768.736950px;}
.y1c{bottom:783.735450px;}
.y4e{bottom:786.027750px;}
.ya9{bottom:786.032250px;}
.yd{bottom:786.042750px;}
.yc6{bottom:786.051750px;}
.y1b{bottom:798.733950px;}
.y7c{bottom:804.732750px;}
.yef{bottom:804.756750px;}
.y4d{bottom:804.779250px;}
.ya8{bottom:804.783750px;}
.yc{bottom:804.794250px;}
.y1a{bottom:813.732450px;}
.y7b{bottom:823.484250px;}
.y4c{bottom:823.530750px;}
.ye3{bottom:823.535250px;}
.yb{bottom:823.545750px;}
.y19{bottom:828.730950px;}
.yee{bottom:842.259750px;}
.y4b{bottom:842.282250px;}
.ya7{bottom:842.286750px;}
.ya{bottom:842.297250px;}
.y18{bottom:843.729450px;}
.y17{bottom:858.727950px;}
.y7a{bottom:860.987250px;}
.yed{bottom:861.011250px;}
.y4a{bottom:861.033750px;}
.ya6{bottom:861.038250px;}
.y9{bottom:861.048750px;}
.y16{bottom:873.726450px;}
.y49{bottom:879.785250px;}
.ya5{bottom:879.789750px;}
.y8{bottom:879.800250px;}
.y15{bottom:888.724950px;}
.y79{bottom:898.490250px;}
.yec{bottom:898.514250px;}
.yc5{bottom:898.536750px;}
.ya4{bottom:898.541250px;}
.y7{bottom:898.551750px;}
.y14{bottom:903.723450px;}
.y78{bottom:917.241750px;}
.yeb{bottom:917.265750px;}
.y48{bottom:917.288250px;}
.ya3{bottom:917.292750px;}
.y13{bottom:923.289300px;}
.y77{bottom:935.993250px;}
.yea{bottom:936.017250px;}
.y47{bottom:936.039750px;}
.y76{bottom:954.744750px;}
.y46{bottom:954.791250px;}
.ya2{bottom:954.795750px;}
.y75{bottom:973.496250px;}
.ye9{bottom:973.520250px;}
.y45{bottom:973.542750px;}
.ya1{bottom:973.547250px;}
.y27{bottom:981.723300px;}
.y74{bottom:992.247750px;}
.ye8{bottom:992.271750px;}
.y44{bottom:992.294250px;}
.ya0{bottom:992.298750px;}
.y73{bottom:1010.999250px;}
.y43{bottom:1011.045750px;}
.y9f{bottom:1011.050250px;}
.y32{bottom:1021.700700px;}
.y72{bottom:1029.750750px;}
.ye7{bottom:1029.774750px;}
.y42{bottom:1029.797250px;}
.y9e{bottom:1029.801750px;}
.y31{bottom:1043.300700px;}
.y71{bottom:1048.502250px;}
.ye6{bottom:1048.526250px;}
.y41{bottom:1048.548750px;}
.y70{bottom:1067.253750px;}
.ye5{bottom:1067.277750px;}
.y9d{bottom:1067.295750px;}
.y40{bottom:1067.300250px;}
.y23{bottom:1068.921150px;}
.y26{bottom:1082.937000px;}
.y6f{bottom:1086.005250px;}
.ye4{bottom:1086.029250px;}
.y3f{bottom:1086.051750px;}
.y25{bottom:1097.937000px;}
.y22{bottom:1101.321150px;}
.y24{bottom:1112.937000px;}
.ha{height:33.887109px;}
.h2{height:34.945312px;}
.hc{height:35.616000px;}
.h10{height:39.313477px;}
.h6{height:39.339844px;}
.h3{height:43.031250px;}
.h8{height:44.520000px;}
.h5{height:47.244141px;}
.h4{height:48.410156px;}
.hd{height:48.455756px;}
.hf{height:51.387356px;}
.h9{height:51.869109px;}
.hb{height:54.504000px;}
.he{height:56.664000px;}
.h7{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x3{left:85.044000px;}
.x15{left:88.365900px;}
.x2{left:103.039500px;}
.x16{left:107.291250px;}
.x11{left:219.822600px;}
.x12{left:264.594600px;}
.x6{left:270.660900px;}
.x10{left:281.142600px;}
.xf{left:322.290600px;}
.x7{left:356.436900px;}
.x9{left:366.444900px;}
.x1b{left:371.195400px;}
.x1c{left:373.388250px;}
.xc{left:379.788900px;}
.x13{left:383.611050px;}
.xa{left:391.800900px;}
.xb{left:400.476900px;}
.x8{left:401.820900px;}
.x19{left:451.325100px;}
.x14{left:455.592300px;}
.x4{left:460.400100px;}
.x5{left:467.069100px;}
.x1{left:469.770150px;}
.x17{left:474.099750px;}
.x1a{left:487.837950px;}
.xd{left:489.968100px;}
.x18{left:492.095250px;}
.xe{left:603.260100px;}
@media print{
.v2{vertical-align:-15.983467pt;}
.v3{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.480000pt;}
.ls2{letter-spacing:6.766933pt;}
.ls7{letter-spacing:244.850133pt;}
.ws64{word-spacing:-3.456000pt;}
.ws78{word-spacing:-3.328000pt;}
.ws7d{word-spacing:-3.264000pt;}
.ws54{word-spacing:-2.976000pt;}
.wsa{word-spacing:-2.880000pt;}
.ws27{word-spacing:-2.640000pt;}
.ws4e{word-spacing:-2.592000pt;}
.ws75{word-spacing:-2.352000pt;}
.ws5{word-spacing:-2.304000pt;}
.ws8{word-spacing:-2.160000pt;}
.ws42{word-spacing:-2.112000pt;}
.ws43{word-spacing:-2.016000pt;}
.ws55{word-spacing:-1.920000pt;}
.ws66{word-spacing:-1.776000pt;}
.ws2e{word-spacing:-1.728000pt;}
.ws4f{word-spacing:-1.632000pt;}
.ws65{word-spacing:-1.536000pt;}
.ws7a{word-spacing:-1.200000pt;}
.ws1e{word-spacing:-0.912000pt;}
.ws24{word-spacing:-0.864000pt;}
.ws35{word-spacing:-0.624000pt;}
.ws3a{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.528000pt;}
.ws4b{word-spacing:-0.480000pt;}
.ws1b{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.336000pt;}
.ws40{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.240000pt;}
.ws71{word-spacing:-0.192000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.048000pt;}
.ws19{word-spacing:0.144000pt;}
.ws12{word-spacing:0.192000pt;}
.ws5b{word-spacing:0.288000pt;}
.ws3e{word-spacing:0.384000pt;}
.ws13{word-spacing:0.480000pt;}
.ws17{word-spacing:0.576000pt;}
.ws7c{word-spacing:0.624000pt;}
.ws6e{word-spacing:0.720000pt;}
.ws3f{word-spacing:0.816000pt;}
.ws63{word-spacing:0.960000pt;}
.ws72{word-spacing:1.056000pt;}
.ws51{word-spacing:1.200000pt;}
.ws73{word-spacing:1.344000pt;}
.ws2b{word-spacing:1.392000pt;}
.ws6c{word-spacing:1.680000pt;}
.ws2c{word-spacing:1.824000pt;}
.ws3d{word-spacing:1.920000pt;}
.ws1c{word-spacing:1.962667pt;}
.ws74{word-spacing:2.112000pt;}
.ws1d{word-spacing:2.133333pt;}
.ws11{word-spacing:2.160000pt;}
.ws4d{word-spacing:2.256000pt;}
.ws9{word-spacing:2.304000pt;}
.ws7{word-spacing:2.400000pt;}
.ws49{word-spacing:2.688000pt;}
.ws31{word-spacing:2.736000pt;}
.ws57{word-spacing:3.072000pt;}
.ws32{word-spacing:3.120000pt;}
.ws10{word-spacing:3.168000pt;}
.ws18{word-spacing:3.264000pt;}
.wsf{word-spacing:3.456000pt;}
.ws5d{word-spacing:3.504000pt;}
.ws62{word-spacing:3.552000pt;}
.ws3c{word-spacing:3.600000pt;}
.ws6f{word-spacing:3.744000pt;}
.ws41{word-spacing:3.792000pt;}
.ws53{word-spacing:3.840000pt;}
.ws2d{word-spacing:3.888000pt;}
.ws3b{word-spacing:3.984000pt;}
.wsb{word-spacing:4.032000pt;}
.ws20{word-spacing:4.080000pt;}
.ws4c{word-spacing:4.176000pt;}
.ws28{word-spacing:4.272000pt;}
.wsc{word-spacing:4.320000pt;}
.ws69{word-spacing:4.464000pt;}
.ws5e{word-spacing:4.512000pt;}
.ws5f{word-spacing:4.560000pt;}
.ws79{word-spacing:4.704000pt;}
.ws56{word-spacing:4.752000pt;}
.ws3{word-spacing:4.800000pt;}
.ws25{word-spacing:4.848000pt;}
.ws76{word-spacing:4.992000pt;}
.wse{word-spacing:5.088000pt;}
.ws48{word-spacing:5.712000pt;}
.ws4{word-spacing:5.760000pt;}
.ws44{word-spacing:5.856000pt;}
.ws5a{word-spacing:5.904000pt;}
.ws45{word-spacing:6.144000pt;}
.ws33{word-spacing:6.240000pt;}
.ws1f{word-spacing:6.288000pt;}
.ws7b{word-spacing:6.384000pt;}
.ws1a{word-spacing:6.400000pt;}
.ws22{word-spacing:6.576000pt;}
.ws59{word-spacing:7.152000pt;}
.ws30{word-spacing:7.296000pt;}
.ws39{word-spacing:7.632000pt;}
.ws6b{word-spacing:7.680000pt;}
.ws60{word-spacing:8.400000pt;}
.ws26{word-spacing:8.448000pt;}
.ws47{word-spacing:8.544000pt;}
.ws15{word-spacing:8.640000pt;}
.ws67{word-spacing:8.688000pt;}
.ws23{word-spacing:8.736000pt;}
.ws4a{word-spacing:8.832000pt;}
.ws52{word-spacing:8.976000pt;}
.ws61{word-spacing:9.072000pt;}
.ws77{word-spacing:9.216000pt;}
.ws2f{word-spacing:9.600000pt;}
.ws70{word-spacing:9.744000pt;}
.wsd{word-spacing:9.888000pt;}
.ws36{word-spacing:9.936000pt;}
.ws38{word-spacing:10.272000pt;}
.ws16{word-spacing:10.560000pt;}
.ws37{word-spacing:12.048000pt;}
.ws6a{word-spacing:13.104000pt;}
.ws34{word-spacing:13.392000pt;}
.ws46{word-spacing:14.160000pt;}
.ws21{word-spacing:15.360000pt;}
.ws50{word-spacing:15.616000pt;}
.ws6d{word-spacing:17.856000pt;}
.ws2a{word-spacing:18.432000pt;}
.ws58{word-spacing:19.488000pt;}
.ws5c{word-spacing:26.048000pt;}
.ws1{word-spacing:93.738667pt;}
.ws0{word-spacing:1104.048000pt;}
._5{margin-left:-24.844800pt;}
._6{margin-left:-17.054400pt;}
._9{margin-left:-4.857600pt;}
._3{margin-left:-3.633600pt;}
._0{margin-left:-2.649600pt;}
._1{margin-left:-0.907200pt;}
._4{width:1.617600pt;}
._a{width:3.206400pt;}
._2{width:4.680000pt;}
._b{width:5.870400pt;}
._8{width:6.801067pt;}
._f{width:8.702400pt;}
._7{width:10.656000pt;}
._d{width:11.769600pt;}
._c{width:33.840000pt;}
._e{width:862.604267pt;}
.fs5{font-size:33.600000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:41.748933pt;}
.y3e{bottom:41.927067pt;}
.y9c{bottom:41.930400pt;}
.y9b{bottom:42.592000pt;}
.y37{bottom:52.510800pt;}
.y3b{bottom:52.617467pt;}
.y36{bottom:68.510800pt;}
.y3a{bottom:68.617467pt;}
.y6e{bottom:82.006000pt;}
.y9a{bottom:82.036667pt;}
.yc4{bottom:82.039333pt;}
.y35{bottom:84.510800pt;}
.y39{bottom:84.617467pt;}
.y99{bottom:98.704667pt;}
.yc3{bottom:98.707333pt;}
.y34{bottom:100.510800pt;}
.y38{bottom:100.617467pt;}
.y6d{bottom:115.342000pt;}
.ye2{bottom:115.356667pt;}
.y98{bottom:115.372667pt;}
.y6c{bottom:132.010000pt;}
.ye1{bottom:132.024667pt;}
.y97{bottom:132.040667pt;}
.yc2{bottom:132.043333pt;}
.y2a{bottom:141.664933pt;}
.yf1{bottom:141.976267pt;}
.y6b{bottom:148.678000pt;}
.ye0{bottom:148.692667pt;}
.y96{bottom:148.708667pt;}
.yc1{bottom:148.711333pt;}
.yf0{bottom:156.642933pt;}
.y6a{bottom:165.346000pt;}
.y95{bottom:165.376667pt;}
.yc0{bottom:165.379333pt;}
.y6{bottom:166.613733pt;}
.y30{bottom:166.614267pt;}
.y5{bottom:181.280400pt;}
.y2f{bottom:181.280933pt;}
.y69{bottom:182.014000pt;}
.ydf{bottom:182.028667pt;}
.y94{bottom:182.044667pt;}
.y4{bottom:195.947067pt;}
.y2e{bottom:195.947600pt;}
.y68{bottom:198.682000pt;}
.yde{bottom:198.696667pt;}
.ybf{bottom:198.707333pt;}
.y93{bottom:198.712667pt;}
.y3{bottom:210.613733pt;}
.y2d{bottom:210.614267pt;}
.y67{bottom:215.350000pt;}
.ydd{bottom:215.364667pt;}
.ybe{bottom:215.379333pt;}
.y2{bottom:225.280400pt;}
.y2c{bottom:225.280933pt;}
.y66{bottom:232.018000pt;}
.ydc{bottom:232.032667pt;}
.y92{bottom:232.046000pt;}
.y1{bottom:239.947067pt;}
.y2b{bottom:239.947600pt;}
.y65{bottom:248.686000pt;}
.ydb{bottom:248.700667pt;}
.y64{bottom:265.354000pt;}
.ybd{bottom:265.362000pt;}
.yda{bottom:265.368667pt;}
.y33{bottom:273.309733pt;}
.y91{bottom:281.950000pt;}
.y63{bottom:282.022000pt;}
.ybc{bottom:282.030000pt;}
.y90{bottom:298.618000pt;}
.y62{bottom:298.690000pt;}
.ybb{bottom:298.698000pt;}
.yd9{bottom:298.704667pt;}
.y29{bottom:309.977733pt;}
.y8f{bottom:315.286000pt;}
.y61{bottom:315.358000pt;}
.yba{bottom:315.366000pt;}
.yd8{bottom:315.372667pt;}
.y28{bottom:327.305600pt;}
.y8e{bottom:331.954000pt;}
.y60{bottom:332.026000pt;}
.yb9{bottom:332.034000pt;}
.yd7{bottom:332.040667pt;}
.y8d{bottom:348.622000pt;}
.y5f{bottom:348.694000pt;}
.yb8{bottom:348.702000pt;}
.yd6{bottom:348.708667pt;}
.y3c{bottom:364.280400pt;}
.y8c{bottom:365.290000pt;}
.y5e{bottom:365.362000pt;}
.yd5{bottom:365.376667pt;}
.y8b{bottom:381.958000pt;}
.y5d{bottom:382.030000pt;}
.yb7{bottom:382.038000pt;}
.yd4{bottom:382.044667pt;}
.y5c{bottom:398.698000pt;}
.yb6{bottom:398.706000pt;}
.yd3{bottom:398.712667pt;}
.y8a{bottom:415.294000pt;}
.y5b{bottom:415.366000pt;}
.yb5{bottom:415.374000pt;}
.y89{bottom:431.962000pt;}
.y5a{bottom:432.034000pt;}
.yd2{bottom:432.040667pt;}
.yb4{bottom:432.042000pt;}
.y88{bottom:448.630000pt;}
.yb3{bottom:448.710000pt;}
.yd1{bottom:448.712667pt;}
.y87{bottom:465.298000pt;}
.y59{bottom:465.370000pt;}
.yb2{bottom:465.378000pt;}
.y86{bottom:481.966000pt;}
.y58{bottom:482.038000pt;}
.yb1{bottom:482.046000pt;}
.y85{bottom:498.634000pt;}
.yd0{bottom:498.700667pt;}
.y57{bottom:498.706000pt;}
.y84{bottom:515.302000pt;}
.ycf{bottom:515.368667pt;}
.y56{bottom:515.374000pt;}
.yce{bottom:532.036667pt;}
.y55{bottom:532.042000pt;}
.yb0{bottom:532.046000pt;}
.y83{bottom:548.638000pt;}
.y54{bottom:548.710000pt;}
.y82{bottom:565.306000pt;}
.ycd{bottom:565.372667pt;}
.y53{bottom:565.378000pt;}
.yaf{bottom:582.019333pt;}
.ycc{bottom:582.040667pt;}
.y52{bottom:582.046000pt;}
.y81{bottom:598.642000pt;}
.yae{bottom:598.687333pt;}
.ycb{bottom:598.708667pt;}
.y80{bottom:615.310000pt;}
.yad{bottom:615.355333pt;}
.y12{bottom:615.364667pt;}
.y51{bottom:615.374000pt;}
.yca{bottom:615.376667pt;}
.y21{bottom:629.993733pt;}
.y7f{bottom:631.978000pt;}
.yac{bottom:632.023333pt;}
.y11{bottom:632.032667pt;}
.yc9{bottom:632.044667pt;}
.y50{bottom:632.046000pt;}
.y20{bottom:643.325733pt;}
.y10{bottom:648.700667pt;}
.yc8{bottom:648.712667pt;}
.y1f{bottom:656.657733pt;}
.y7e{bottom:665.314000pt;}
.yab{bottom:665.359333pt;}
.yf{bottom:665.368667pt;}
.y1e{bottom:669.989733pt;}
.y7d{bottom:681.982000pt;}
.y4f{bottom:682.023333pt;}
.yaa{bottom:682.027333pt;}
.ye{bottom:682.036667pt;}
.yc7{bottom:682.040667pt;}
.y1d{bottom:683.321733pt;}
.y1c{bottom:696.653733pt;}
.y4e{bottom:698.691333pt;}
.ya9{bottom:698.695333pt;}
.yd{bottom:698.704667pt;}
.yc6{bottom:698.712667pt;}
.y1b{bottom:709.985733pt;}
.y7c{bottom:715.318000pt;}
.yef{bottom:715.339333pt;}
.y4d{bottom:715.359333pt;}
.ya8{bottom:715.363333pt;}
.yc{bottom:715.372667pt;}
.y1a{bottom:723.317733pt;}
.y7b{bottom:731.986000pt;}
.y4c{bottom:732.027333pt;}
.ye3{bottom:732.031333pt;}
.yb{bottom:732.040667pt;}
.y19{bottom:736.649733pt;}
.yee{bottom:748.675333pt;}
.y4b{bottom:748.695333pt;}
.ya7{bottom:748.699333pt;}
.ya{bottom:748.708667pt;}
.y18{bottom:749.981733pt;}
.y17{bottom:763.313733pt;}
.y7a{bottom:765.322000pt;}
.yed{bottom:765.343333pt;}
.y4a{bottom:765.363333pt;}
.ya6{bottom:765.367333pt;}
.y9{bottom:765.376667pt;}
.y16{bottom:776.645733pt;}
.y49{bottom:782.031333pt;}
.ya5{bottom:782.035333pt;}
.y8{bottom:782.044667pt;}
.y15{bottom:789.977733pt;}
.y79{bottom:798.658000pt;}
.yec{bottom:798.679333pt;}
.yc5{bottom:798.699333pt;}
.ya4{bottom:798.703333pt;}
.y7{bottom:798.712667pt;}
.y14{bottom:803.309733pt;}
.y78{bottom:815.326000pt;}
.yeb{bottom:815.347333pt;}
.y48{bottom:815.367333pt;}
.ya3{bottom:815.371333pt;}
.y13{bottom:820.701600pt;}
.y77{bottom:831.994000pt;}
.yea{bottom:832.015333pt;}
.y47{bottom:832.035333pt;}
.y76{bottom:848.662000pt;}
.y46{bottom:848.703333pt;}
.ya2{bottom:848.707333pt;}
.y75{bottom:865.330000pt;}
.ye9{bottom:865.351333pt;}
.y45{bottom:865.371333pt;}
.ya1{bottom:865.375333pt;}
.y27{bottom:872.642933pt;}
.y74{bottom:881.998000pt;}
.ye8{bottom:882.019333pt;}
.y44{bottom:882.039333pt;}
.ya0{bottom:882.043333pt;}
.y73{bottom:898.666000pt;}
.y43{bottom:898.707333pt;}
.y9f{bottom:898.711333pt;}
.y32{bottom:908.178400pt;}
.y72{bottom:915.334000pt;}
.ye7{bottom:915.355333pt;}
.y42{bottom:915.375333pt;}
.y9e{bottom:915.379333pt;}
.y31{bottom:927.378400pt;}
.y71{bottom:932.002000pt;}
.ye6{bottom:932.023333pt;}
.y41{bottom:932.043333pt;}
.y70{bottom:948.670000pt;}
.ye5{bottom:948.691333pt;}
.y9d{bottom:948.707333pt;}
.y40{bottom:948.711333pt;}
.y23{bottom:950.152133pt;}
.y26{bottom:962.610667pt;}
.y6f{bottom:965.338000pt;}
.ye4{bottom:965.359333pt;}
.y3f{bottom:965.379333pt;}
.y25{bottom:975.944000pt;}
.y22{bottom:978.952133pt;}
.y24{bottom:989.277333pt;}
.ha{height:30.121875pt;}
.h2{height:31.062500pt;}
.hc{height:31.658667pt;}
.h10{height:34.945312pt;}
.h6{height:34.968750pt;}
.h3{height:38.250000pt;}
.h8{height:39.573333pt;}
.h5{height:41.994792pt;}
.h4{height:43.031250pt;}
.hd{height:43.071783pt;}
.hf{height:45.677650pt;}
.h9{height:46.105875pt;}
.hb{height:48.448000pt;}
.he{height:50.368000pt;}
.h7{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x3{left:75.594667pt;}
.x15{left:78.547467pt;}
.x2{left:91.590667pt;}
.x16{left:95.370000pt;}
.x11{left:195.397867pt;}
.x12{left:235.195200pt;}
.x6{left:240.587467pt;}
.x10{left:249.904533pt;}
.xf{left:286.480533pt;}
.x7{left:316.832800pt;}
.x9{left:325.728800pt;}
.x1b{left:329.951467pt;}
.x1c{left:331.900667pt;}
.xc{left:337.590133pt;}
.x13{left:340.987600pt;}
.xa{left:348.267467pt;}
.xb{left:355.979467pt;}
.x8{left:357.174133pt;}
.x19{left:401.177867pt;}
.x14{left:404.970933pt;}
.x4{left:409.244533pt;}
.x5{left:415.172533pt;}
.x1{left:417.573467pt;}
.x17{left:421.422000pt;}
.x1a{left:433.633733pt;}
.xd{left:435.527200pt;}
.x18{left:437.418000pt;}
.xe{left:536.231200pt;}
}




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