
    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_9cd3afae7e9e04d91dbec263.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_cf3c322af292abc8072efa35.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_e87e71ef63d8e7b7000e1896.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_f1f4f79ba0e4557faa5b03eb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_d9e6bc0fa8f4b66142db8182.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_223278b19d4b442630bafb4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_fc05d393ae6b6250fa137323.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_f61aef2da6f9350721824eaa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_0fdcea601b4c90cac7815c03.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_fd984964fb81b047accab46b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_b177d54e8b68a4f40d6de316.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.089844;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_e4c0b0a43fcb9e10d204ebe3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.120605;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_0a7db720344c46a9a5824e9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.120605;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_024008aebf81024239da9d19.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;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_40c49a63c490ff73debce1c1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.759766;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);}
.v3{vertical-align:-25.200000px;}
.v4{vertical-align:-18.000000px;}
.v5{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:25.200000px;}
.ls20{letter-spacing:-3.600000px;}
.lsf{letter-spacing:-2.466000px;}
.ls10{letter-spacing:-1.710000px;}
.ls15{letter-spacing:-1.584000px;}
.lse{letter-spacing:-1.566000px;}
.ls7{letter-spacing:-1.224000px;}
.ls6{letter-spacing:-1.218000px;}
.ls5{letter-spacing:-0.900000px;}
.ls13{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.468000px;}
.ls1f{letter-spacing:-0.453600px;}
.ls2{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.264000px;}
.ls9{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.918000px;}
.ls0{letter-spacing:0.972000px;}
.lsd{letter-spacing:1.188000px;}
.ls12{letter-spacing:1.224000px;}
.ls11{letter-spacing:1.584000px;}
.ls1e{letter-spacing:1.764000px;}
.lsb{letter-spacing:1.782000px;}
.ls1{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.842000px;}
.lsc{letter-spacing:2.034000px;}
.ls18{letter-spacing:3.600000px;}
.ls1d{letter-spacing:3.660000px;}
.ls19{letter-spacing:5.400000px;}
.ls1a{letter-spacing:21.600000px;}
.ls23{letter-spacing:21.660000px;}
.ls24{letter-spacing:25.380000px;}
.ls21{letter-spacing:100.675200px;}
.ls14{letter-spacing:194.520000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws12{word-spacing:-19.584000px;}
.wse{word-spacing:-19.224000px;}
.ws1{word-spacing:-18.792000px;}
.ws4{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.208000px;}
.wsd{word-spacing:-16.776000px;}
.ws10{word-spacing:-16.416000px;}
.ws3{word-spacing:-15.300000px;}
.wsb{word-spacing:-14.644800px;}
.ws14{word-spacing:-14.400000px;}
.ws13{word-spacing:-14.191200px;}
.ws2{word-spacing:-14.082000px;}
.ws0{word-spacing:-13.032000px;}
.ws6{word-spacing:-11.916000px;}
.wsc{word-spacing:-11.700000px;}
.ws7{word-spacing:-11.070000px;}
.ws8{word-spacing:-9.882000px;}
.wsa{word-spacing:-8.172000px;}
.ws9{word-spacing:-7.416000px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-12.003600px;}
._1e{margin-left:-9.543600px;}
._8{margin-left:-8.433600px;}
._d{margin-left:-7.128000px;}
._a{margin-left:-6.008400px;}
._5{margin-left:-4.824000px;}
._6{margin-left:-3.392400px;}
._1{margin-left:-1.512000px;}
._0{width:1.440000px;}
._4{width:2.830800px;}
._2{width:4.806000px;}
._3{width:6.679200px;}
._f{width:8.064000px;}
._10{width:9.408000px;}
._9{width:10.482000px;}
._18{width:11.658000px;}
._12{width:12.840000px;}
._c{width:14.305200px;}
._11{width:15.969600px;}
._2f{width:16.992000px;}
._19{width:19.089600px;}
._17{width:20.366400px;}
._b{width:21.456000px;}
._1a{width:23.202000px;}
._e{width:24.302400px;}
._13{width:25.416000px;}
._30{width:26.456400px;}
._1f{width:27.549600px;}
._1d{width:28.656000px;}
._15{width:29.713200px;}
._14{width:32.400000px;}
._16{width:35.160000px;}
._1b{width:36.792000px;}
._1c{width:39.816000px;}
._2e{width:42.584400px;}
._26{width:47.016000px;}
._25{width:50.472000px;}
._24{width:54.432000px;}
._2c{width:93.456000px;}
._2b{width:94.608000px;}
._2a{width:97.632000px;}
._2d{width:100.728000px;}
._28{width:130.008000px;}
._29{width:133.056000px;}
._27{width:137.232000px;}
._22{width:196.908000px;}
._21{width:201.528000px;}
._23{width:202.803600px;}
._20{width:212.024400px;}
.fc1{color:rgb(0,29,53);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:25.200000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:39.600000px;}
.fs4{font-size:46.800000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:61.200000px;}
.fs7{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:56.737500px;}
.y36{bottom:77.437500px;}
.yae{bottom:103.575000px;}
.y10a{bottom:104.475000px;}
.y6b{bottom:107.175000px;}
.y32{bottom:108.075000px;}
.ye6{bottom:108.975000px;}
.y93{bottom:112.575000px;}
.yc0{bottom:118.875000px;}
.y57{bottom:123.375000px;}
.y76{bottom:125.175000px;}
.ye5{bottom:129.675000px;}
.yad{bottom:135.075000px;}
.y31{bottom:137.775000px;}
.y92{bottom:143.175000px;}
.y109{bottom:145.875000px;}
.ybf{bottom:149.512500px;}
.y56{bottom:154.905000px;}
.y75{bottom:156.705000px;}
.y30{bottom:158.505000px;}
.ye4{bottom:159.420000px;}
.yac{bottom:165.720000px;}
.y108{bottom:166.620000px;}
.y6a{bottom:169.305000px;}
.y2f{bottom:179.220000px;}
.ye3{bottom:180.120000px;}
.ybe{bottom:181.005000px;}
.y55{bottom:185.505000px;}
.y74{bottom:187.305000px;}
.y107{bottom:196.305000px;}
.yab{bottom:197.205000px;}
.y2e{bottom:199.920000px;}
.y91{bottom:200.820000px;}
.ye2{bottom:209.850000px;}
.ybd{bottom:211.650000px;}
.y54{bottom:217.050000px;}
.y73{bottom:218.850000px;}
.y2d{bottom:220.650000px;}
.yaa{bottom:227.850000px;}
.ye1{bottom:230.550000px;}
.y69{bottom:231.450000px;}
.y90{bottom:235.950000px;}
.y106{bottom:237.750000px;}
.y2c{bottom:241.350000px;}
.ybc{bottom:243.150000px;}
.y53{bottom:247.650000px;}
.y72{bottom:249.450000px;}
.ye0{bottom:251.250000px;}
.ya9{bottom:259.380000px;}
.y2b{bottom:262.080000px;}
.y105{bottom:267.495000px;}
.y8f{bottom:270.180000px;}
.ybb{bottom:273.780000px;}
.y52{bottom:279.195000px;}
.y71{bottom:280.995000px;}
.y2a{bottom:282.780000px;}
.y104{bottom:288.195000px;}
.ya8{bottom:289.980000px;}
.y68{bottom:293.580000px;}
.y8e{bottom:300.780000px;}
.ydf{bottom:301.695000px;}
.y29{bottom:303.480000px;}
.yba{bottom:305.325000px;}
.y103{bottom:308.925000px;}
.y51{bottom:309.825000px;}
.y70{bottom:311.625000px;}
.ya7{bottom:321.525000px;}
.yde{bottom:322.425000px;}
.y28{bottom:324.225000px;}
.y102{bottom:329.625000px;}
.y8d{bottom:332.325000px;}
.yb9{bottom:335.925000px;}
.y50{bottom:341.325000px;}
.y6f{bottom:343.125000px;}
.y27{bottom:344.925000px;}
.y101{bottom:350.325000px;}
.ya6{bottom:352.125000px;}
.y67{bottom:355.725000px;}
.y8c{bottom:362.955000px;}
.y26{bottom:365.670000px;}
.yb8{bottom:367.455000px;}
.y6e{bottom:371.055000px;}
.y4f{bottom:371.970000px;}
.ydd{bottom:372.870000px;}
.ya5{bottom:382.755000px;}
.y25{bottom:386.370000px;}
.y6d{bottom:387.255000px;}
.ydc{bottom:393.570000px;}
.y8b{bottom:394.455000px;}
.yb7{bottom:398.055000px;}
.y100{bottom:400.755000px;}
.y4e{bottom:403.455000px;}
.y6c{bottom:413.400000px;}
.ydb{bottom:414.300000px;}
.y24{bottom:416.100000px;}
.y66{bottom:417.900000px;}
.yff{bottom:421.500000px;}
.y8a{bottom:425.100000px;}
.yb6{bottom:429.600000px;}
.y4d{bottom:434.100000px;}
.y23{bottom:436.800000px;}
.yfe{bottom:442.200000px;}
.yda{bottom:444.000000px;}
.y65{bottom:448.500000px;}
.y89{bottom:456.600000px;}
.y22{bottom:457.500000px;}
.ya4{bottom:459.300000px;}
.yb5{bottom:460.200000px;}
.yfd{bottom:462.945000px;}
.yd9{bottom:464.745000px;}
.y4c{bottom:465.630000px;}
.y64{bottom:480.045000px;}
.y21{bottom:487.245000px;}
.ya3{bottom:489.945000px;}
.yb4{bottom:491.745000px;}
.yfc{bottom:492.630000px;}
.yd8{bottom:494.445000px;}
.y4b{bottom:496.230000px;}
.y20{bottom:507.945000px;}
.y63{bottom:510.630000px;}
.yfb{bottom:513.375000px;}
.yd7{bottom:515.175000px;}
.y88{bottom:517.875000px;}
.ya2{bottom:522.375000px;}
.y4a{bottom:527.775000px;}
.y1f{bottom:528.675000px;}
.y62{bottom:542.175000px;}
.yfa{bottom:543.075000px;}
.yd6{bottom:544.875000px;}
.y1e{bottom:549.375000px;}
.y87{bottom:551.175000px;}
.ya1{bottom:553.875000px;}
.y49{bottom:558.375000px;}
.yf9{bottom:563.775000px;}
.yd5{bottom:565.605000px;}
.y1d{bottom:570.120000px;}
.y61{bottom:572.805000px;}
.y86{bottom:581.820000px;}
.ya0{bottom:583.620000px;}
.yb3{bottom:584.505000px;}
.yd4{bottom:586.305000px;}
.y48{bottom:589.905000px;}
.y1c{bottom:590.820000px;}
.y60{bottom:604.320000px;}
.y1b{bottom:611.505000px;}
.y85{bottom:613.305000px;}
.yf8{bottom:614.220000px;}
.yb2{bottom:615.105000px;}
.yd3{bottom:616.005000px;}
.y9f{bottom:616.950000px;}
.y47{bottom:620.550000px;}
.y1a{bottom:632.250000px;}
.y5f{bottom:634.950000px;}
.yd2{bottom:636.750000px;}
.y84{bottom:643.950000px;}
.y9e{bottom:647.550000px;}
.y46{bottom:652.050000px;}
.y19{bottom:652.950000px;}
.yf7{bottom:655.650000px;}
.yd1{bottom:657.450000px;}
.y5e{bottom:666.450000px;}
.y18{bottom:673.695000px;}
.y83{bottom:676.380000px;}
.yd0{bottom:678.195000px;}
.y9d{bottom:679.080000px;}
.y45{bottom:682.680000px;}
.y17{bottom:694.380000px;}
.y5d{bottom:697.095000px;}
.y82{bottom:706.995000px;}
.ycf{bottom:707.880000px;}
.y9c{bottom:709.680000px;}
.y44{bottom:714.195000px;}
.y16{bottom:715.080000px;}
.yf6{bottom:717.780000px;}
.y115{bottom:720.525000px;}
.y5c{bottom:728.625000px;}
.y15{bottom:734.925000px;}
.yf5{bottom:738.525000px;}
.y81{bottom:740.325000px;}
.y114{bottom:741.225000px;}
.y9b{bottom:742.125000px;}
.y43{bottom:744.825000px;}
.yce{bottom:749.325000px;}
.y14{bottom:755.625000px;}
.y5b{bottom:759.225000px;}
.ycd{bottom:770.025000px;}
.y80{bottom:770.925000px;}
.y9a{bottom:772.755000px;}
.yb1{bottom:773.670000px;}
.y13{bottom:776.355000px;}
.yf4{bottom:779.955000px;}
.y5a{bottom:790.755000px;}
.y113{bottom:791.670000px;}
.ycc{bottom:799.755000px;}
.y7f{bottom:801.570000px;}
.yb0{bottom:804.255000px;}
.y12{bottom:806.070000px;}
.y42{bottom:806.955000px;}
.yf3{bottom:809.655000px;}
.y59{bottom:810.570000px;}
.ycb{bottom:820.455000px;}
.y112{bottom:821.370000px;}
.y11{bottom:826.800000px;}
.yf2{bottom:830.400000px;}
.y7e{bottom:834.000000px;}
.yaf{bottom:834.900000px;}
.y99{bottom:836.700000px;}
.y41{bottom:838.500000px;}
.yca{bottom:841.200000px;}
.y111{bottom:842.100000px;}
.yf1{bottom:851.100000px;}
.y58{bottom:853.800000px;}
.y10{bottom:855.600000px;}
.yc9{bottom:861.900000px;}
.y110{bottom:862.800000px;}
.y7d{bottom:865.500000px;}
.y98{bottom:868.200000px;}
.y40{bottom:869.100000px;}
.yf0{bottom:871.800000px;}
.y10f{bottom:883.545000px;}
.yf{bottom:886.245000px;}
.yc8{bottom:891.630000px;}
.yef{bottom:892.530000px;}
.y7c{bottom:896.130000px;}
.y97{bottom:898.830000px;}
.y3f{bottom:900.630000px;}
.ye{bottom:907.830000px;}
.yc7{bottom:912.330000px;}
.yee{bottom:913.245000px;}
.y7b{bottom:928.575000px;}
.y96{bottom:930.375000px;}
.y3e{bottom:931.275000px;}
.yc6{bottom:933.075000px;}
.y10e{bottom:933.975000px;}
.yd{bottom:937.575000px;}
.yed{bottom:942.975000px;}
.yc5{bottom:953.775000px;}
.y10d{bottom:954.675000px;}
.y7a{bottom:960.075000px;}
.y95{bottom:960.975000px;}
.yc{bottom:961.875000px;}
.y3d{bottom:962.775000px;}
.yec{bottom:963.675000px;}
.y10c{bottom:975.375000px;}
.yc4{bottom:983.505000px;}
.yeb{bottom:984.405000px;}
.y79{bottom:990.705000px;}
.y94{bottom:991.620000px;}
.yb{bottom:992.505000px;}
.y3c{bottom:993.420000px;}
.yc3{bottom:1004.205000px;}
.yea{bottom:1005.120000px;}
.y78{bottom:1021.320000px;}
.ya{bottom:1024.005000px;}
.y3b{bottom:1024.905000px;}
.ye9{bottom:1025.820000px;}
.yc2{bottom:1045.650000px;}
.y10b{bottom:1046.550000px;}
.y9{bottom:1054.650000px;}
.y3a{bottom:1055.550000px;}
.yc1{bottom:1066.350000px;}
.ye8{bottom:1076.250000px;}
.y77{bottom:1085.295000px;}
.y8{bottom:1086.195000px;}
.y39{bottom:1087.080000px;}
.ye7{bottom:1096.995000px;}
.y7{bottom:1107.780000px;}
.y38{bottom:1117.695000px;}
.y6{bottom:1126.695000px;}
.y5{bottom:1135.725000px;}
.y4{bottom:1150.125000px;}
.y3{bottom:1165.425000px;}
.y35{bottom:1166.325000px;}
.y2{bottom:1183.425000px;}
.y34{bottom:1185.225000px;}
.y33{bottom:1195.155000px;}
.y1{bottom:1202.370000px;}
.h2{height:22.000781px;}
.h6{height:23.083594px;}
.hd{height:36.804844px;}
.hb{height:36.864844px;}
.h5{height:40.858594px;}
.h4{height:47.144531px;}
.h11{height:48.410156px;}
.hc{height:54.864844px;}
.h7{height:56.060156px;}
.h9{height:58.429688px;}
.hf{height:59.357813px;}
.h3{height:62.859375px;}
.he{height:63.949219px;}
.h10{height:64.451953px;}
.h8{height:64.546875px;}
.ha{height:67.155469px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x8{left:127.949987px;}
.xc{left:170.279987px;}
.x7{left:182.894987px;}
.x11{left:200.024987px;}
.x6{left:215.324987px;}
.xe{left:290.999987px;}
.x2{left:324.329987px;}
.x5{left:340.544987px;}
.x12{left:387.404987px;}
.xf{left:412.619987px;}
.x4{left:414.404987px;}
.x3{left:418.949987px;}
.xa{left:434.249987px;}
.x9{left:436.949987px;}
.x1{left:468.494987px;}
.xd{left:621.629987px;}
.x10{left:714.449987px;}
.x13{left:792.824987px;}
.xb{left:800.924987px;}
@media print{
.v3{vertical-align:-22.400000pt;}
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:22.400000pt;}
.ls20{letter-spacing:-3.200000pt;}
.lsf{letter-spacing:-2.192000pt;}
.ls10{letter-spacing:-1.520000pt;}
.ls15{letter-spacing:-1.408000pt;}
.lse{letter-spacing:-1.392000pt;}
.ls7{letter-spacing:-1.088000pt;}
.ls6{letter-spacing:-1.082667pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.416000pt;}
.ls1f{letter-spacing:-0.403200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.234667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.816000pt;}
.ls0{letter-spacing:0.864000pt;}
.lsd{letter-spacing:1.056000pt;}
.ls12{letter-spacing:1.088000pt;}
.ls11{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:1.568000pt;}
.lsb{letter-spacing:1.584000pt;}
.ls1{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.637333pt;}
.lsc{letter-spacing:1.808000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:3.253333pt;}
.ls19{letter-spacing:4.800000pt;}
.ls1a{letter-spacing:19.200000pt;}
.ls23{letter-spacing:19.253333pt;}
.ls24{letter-spacing:22.560000pt;}
.ls21{letter-spacing:89.489067pt;}
.ls14{letter-spacing:172.906667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws12{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.088000pt;}
.ws1{word-spacing:-16.704000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.296000pt;}
.wsd{word-spacing:-14.912000pt;}
.ws10{word-spacing:-14.592000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.017600pt;}
.ws14{word-spacing:-12.800000pt;}
.ws13{word-spacing:-12.614400pt;}
.ws2{word-spacing:-12.517333pt;}
.ws0{word-spacing:-11.584000pt;}
.ws6{word-spacing:-10.592000pt;}
.wsc{word-spacing:-10.400000pt;}
.ws7{word-spacing:-9.840000pt;}
.ws8{word-spacing:-8.784000pt;}
.wsa{word-spacing:-7.264000pt;}
.ws9{word-spacing:-6.592000pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-10.669867pt;}
._1e{margin-left:-8.483200pt;}
._8{margin-left:-7.496533pt;}
._d{margin-left:-6.336000pt;}
._a{margin-left:-5.340800pt;}
._5{margin-left:-4.288000pt;}
._6{margin-left:-3.015467pt;}
._1{margin-left:-1.344000pt;}
._0{width:1.280000pt;}
._4{width:2.516267pt;}
._2{width:4.272000pt;}
._3{width:5.937067pt;}
._f{width:7.168000pt;}
._10{width:8.362667pt;}
._9{width:9.317333pt;}
._18{width:10.362667pt;}
._12{width:11.413333pt;}
._c{width:12.715733pt;}
._11{width:14.195200pt;}
._2f{width:15.104000pt;}
._19{width:16.968533pt;}
._17{width:18.103467pt;}
._b{width:19.072000pt;}
._1a{width:20.624000pt;}
._e{width:21.602133pt;}
._13{width:22.592000pt;}
._30{width:23.516800pt;}
._1f{width:24.488533pt;}
._1d{width:25.472000pt;}
._15{width:26.411733pt;}
._14{width:28.800000pt;}
._16{width:31.253333pt;}
._1b{width:32.704000pt;}
._1c{width:35.392000pt;}
._2e{width:37.852800pt;}
._26{width:41.792000pt;}
._25{width:44.864000pt;}
._24{width:48.384000pt;}
._2c{width:83.072000pt;}
._2b{width:84.096000pt;}
._2a{width:86.784000pt;}
._2d{width:89.536000pt;}
._28{width:115.562667pt;}
._29{width:118.272000pt;}
._27{width:121.984000pt;}
._22{width:175.029333pt;}
._21{width:179.136000pt;}
._23{width:180.269867pt;}
._20{width:188.466133pt;}
.fs0{font-size:22.400000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:35.200000pt;}
.fs4{font-size:41.600000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:54.400000pt;}
.fs7{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:50.433333pt;}
.y36{bottom:68.833333pt;}
.yae{bottom:92.066667pt;}
.y10a{bottom:92.866667pt;}
.y6b{bottom:95.266667pt;}
.y32{bottom:96.066667pt;}
.ye6{bottom:96.866667pt;}
.y93{bottom:100.066667pt;}
.yc0{bottom:105.666667pt;}
.y57{bottom:109.666667pt;}
.y76{bottom:111.266667pt;}
.ye5{bottom:115.266667pt;}
.yad{bottom:120.066667pt;}
.y31{bottom:122.466667pt;}
.y92{bottom:127.266667pt;}
.y109{bottom:129.666667pt;}
.ybf{bottom:132.900000pt;}
.y56{bottom:137.693333pt;}
.y75{bottom:139.293333pt;}
.y30{bottom:140.893333pt;}
.ye4{bottom:141.706667pt;}
.yac{bottom:147.306667pt;}
.y108{bottom:148.106667pt;}
.y6a{bottom:150.493333pt;}
.y2f{bottom:159.306667pt;}
.ye3{bottom:160.106667pt;}
.ybe{bottom:160.893333pt;}
.y55{bottom:164.893333pt;}
.y74{bottom:166.493333pt;}
.y107{bottom:174.493333pt;}
.yab{bottom:175.293333pt;}
.y2e{bottom:177.706667pt;}
.y91{bottom:178.506667pt;}
.ye2{bottom:186.533333pt;}
.ybd{bottom:188.133333pt;}
.y54{bottom:192.933333pt;}
.y73{bottom:194.533333pt;}
.y2d{bottom:196.133333pt;}
.yaa{bottom:202.533333pt;}
.ye1{bottom:204.933333pt;}
.y69{bottom:205.733333pt;}
.y90{bottom:209.733333pt;}
.y106{bottom:211.333333pt;}
.y2c{bottom:214.533333pt;}
.ybc{bottom:216.133333pt;}
.y53{bottom:220.133333pt;}
.y72{bottom:221.733333pt;}
.ye0{bottom:223.333333pt;}
.ya9{bottom:230.560000pt;}
.y2b{bottom:232.960000pt;}
.y105{bottom:237.773333pt;}
.y8f{bottom:240.160000pt;}
.ybb{bottom:243.360000pt;}
.y52{bottom:248.173333pt;}
.y71{bottom:249.773333pt;}
.y2a{bottom:251.360000pt;}
.y104{bottom:256.173333pt;}
.ya8{bottom:257.760000pt;}
.y68{bottom:260.960000pt;}
.y8e{bottom:267.360000pt;}
.ydf{bottom:268.173333pt;}
.y29{bottom:269.760000pt;}
.yba{bottom:271.400000pt;}
.y103{bottom:274.600000pt;}
.y51{bottom:275.400000pt;}
.y70{bottom:277.000000pt;}
.ya7{bottom:285.800000pt;}
.yde{bottom:286.600000pt;}
.y28{bottom:288.200000pt;}
.y102{bottom:293.000000pt;}
.y8d{bottom:295.400000pt;}
.yb9{bottom:298.600000pt;}
.y50{bottom:303.400000pt;}
.y6f{bottom:305.000000pt;}
.y27{bottom:306.600000pt;}
.y101{bottom:311.400000pt;}
.ya6{bottom:313.000000pt;}
.y67{bottom:316.200000pt;}
.y8c{bottom:322.626667pt;}
.y26{bottom:325.040000pt;}
.yb8{bottom:326.626667pt;}
.y6e{bottom:329.826667pt;}
.y4f{bottom:330.640000pt;}
.ydd{bottom:331.440000pt;}
.ya5{bottom:340.226667pt;}
.y25{bottom:343.440000pt;}
.y6d{bottom:344.226667pt;}
.ydc{bottom:349.840000pt;}
.y8b{bottom:350.626667pt;}
.yb7{bottom:353.826667pt;}
.y100{bottom:356.226667pt;}
.y4e{bottom:358.626667pt;}
.y6c{bottom:367.466667pt;}
.ydb{bottom:368.266667pt;}
.y24{bottom:369.866667pt;}
.y66{bottom:371.466667pt;}
.yff{bottom:374.666667pt;}
.y8a{bottom:377.866667pt;}
.yb6{bottom:381.866667pt;}
.y4d{bottom:385.866667pt;}
.y23{bottom:388.266667pt;}
.yfe{bottom:393.066667pt;}
.yda{bottom:394.666667pt;}
.y65{bottom:398.666667pt;}
.y89{bottom:405.866667pt;}
.y22{bottom:406.666667pt;}
.ya4{bottom:408.266667pt;}
.yb5{bottom:409.066667pt;}
.yfd{bottom:411.506667pt;}
.yd9{bottom:413.106667pt;}
.y4c{bottom:413.893333pt;}
.y64{bottom:426.706667pt;}
.y21{bottom:433.106667pt;}
.ya3{bottom:435.506667pt;}
.yb4{bottom:437.106667pt;}
.yfc{bottom:437.893333pt;}
.yd8{bottom:439.506667pt;}
.y4b{bottom:441.093333pt;}
.y20{bottom:451.506667pt;}
.y63{bottom:453.893333pt;}
.yfb{bottom:456.333333pt;}
.yd7{bottom:457.933333pt;}
.y88{bottom:460.333333pt;}
.ya2{bottom:464.333333pt;}
.y4a{bottom:469.133333pt;}
.y1f{bottom:469.933333pt;}
.y62{bottom:481.933333pt;}
.yfa{bottom:482.733333pt;}
.yd6{bottom:484.333333pt;}
.y1e{bottom:488.333333pt;}
.y87{bottom:489.933333pt;}
.ya1{bottom:492.333333pt;}
.y49{bottom:496.333333pt;}
.yf9{bottom:501.133333pt;}
.yd5{bottom:502.760000pt;}
.y1d{bottom:506.773333pt;}
.y61{bottom:509.160000pt;}
.y86{bottom:517.173333pt;}
.ya0{bottom:518.773333pt;}
.yb3{bottom:519.560000pt;}
.yd4{bottom:521.160000pt;}
.y48{bottom:524.360000pt;}
.y1c{bottom:525.173333pt;}
.y60{bottom:537.173333pt;}
.y1b{bottom:543.560000pt;}
.y85{bottom:545.160000pt;}
.yf8{bottom:545.973333pt;}
.yb2{bottom:546.760000pt;}
.yd3{bottom:547.560000pt;}
.y9f{bottom:548.400000pt;}
.y47{bottom:551.600000pt;}
.y1a{bottom:562.000000pt;}
.y5f{bottom:564.400000pt;}
.yd2{bottom:566.000000pt;}
.y84{bottom:572.400000pt;}
.y9e{bottom:575.600000pt;}
.y46{bottom:579.600000pt;}
.y19{bottom:580.400000pt;}
.yf7{bottom:582.800000pt;}
.yd1{bottom:584.400000pt;}
.y5e{bottom:592.400000pt;}
.y18{bottom:598.840000pt;}
.y83{bottom:601.226667pt;}
.yd0{bottom:602.840000pt;}
.y9d{bottom:603.626667pt;}
.y45{bottom:606.826667pt;}
.y17{bottom:617.226667pt;}
.y5d{bottom:619.640000pt;}
.y82{bottom:628.440000pt;}
.ycf{bottom:629.226667pt;}
.y9c{bottom:630.826667pt;}
.y44{bottom:634.840000pt;}
.y16{bottom:635.626667pt;}
.yf6{bottom:638.026667pt;}
.y115{bottom:640.466667pt;}
.y5c{bottom:647.666667pt;}
.y15{bottom:653.266667pt;}
.yf5{bottom:656.466667pt;}
.y81{bottom:658.066667pt;}
.y114{bottom:658.866667pt;}
.y9b{bottom:659.666667pt;}
.y43{bottom:662.066667pt;}
.yce{bottom:666.066667pt;}
.y14{bottom:671.666667pt;}
.y5b{bottom:674.866667pt;}
.ycd{bottom:684.466667pt;}
.y80{bottom:685.266667pt;}
.y9a{bottom:686.893333pt;}
.yb1{bottom:687.706667pt;}
.y13{bottom:690.093333pt;}
.yf4{bottom:693.293333pt;}
.y5a{bottom:702.893333pt;}
.y113{bottom:703.706667pt;}
.ycc{bottom:710.893333pt;}
.y7f{bottom:712.506667pt;}
.yb0{bottom:714.893333pt;}
.y12{bottom:716.506667pt;}
.y42{bottom:717.293333pt;}
.yf3{bottom:719.693333pt;}
.y59{bottom:720.506667pt;}
.ycb{bottom:729.293333pt;}
.y112{bottom:730.106667pt;}
.y11{bottom:734.933333pt;}
.yf2{bottom:738.133333pt;}
.y7e{bottom:741.333333pt;}
.yaf{bottom:742.133333pt;}
.y99{bottom:743.733333pt;}
.y41{bottom:745.333333pt;}
.yca{bottom:747.733333pt;}
.y111{bottom:748.533333pt;}
.yf1{bottom:756.533333pt;}
.y58{bottom:758.933333pt;}
.y10{bottom:760.533333pt;}
.yc9{bottom:766.133333pt;}
.y110{bottom:766.933333pt;}
.y7d{bottom:769.333333pt;}
.y98{bottom:771.733333pt;}
.y40{bottom:772.533333pt;}
.yf0{bottom:774.933333pt;}
.y10f{bottom:785.373333pt;}
.yf{bottom:787.773333pt;}
.yc8{bottom:792.560000pt;}
.yef{bottom:793.360000pt;}
.y7c{bottom:796.560000pt;}
.y97{bottom:798.960000pt;}
.y3f{bottom:800.560000pt;}
.ye{bottom:806.960000pt;}
.yc7{bottom:810.960000pt;}
.yee{bottom:811.773333pt;}
.y7b{bottom:825.400000pt;}
.y96{bottom:827.000000pt;}
.y3e{bottom:827.800000pt;}
.yc6{bottom:829.400000pt;}
.y10e{bottom:830.200000pt;}
.yd{bottom:833.400000pt;}
.yed{bottom:838.200000pt;}
.yc5{bottom:847.800000pt;}
.y10d{bottom:848.600000pt;}
.y7a{bottom:853.400000pt;}
.y95{bottom:854.200000pt;}
.yc{bottom:855.000000pt;}
.y3d{bottom:855.800000pt;}
.yec{bottom:856.600000pt;}
.y10c{bottom:867.000000pt;}
.yc4{bottom:874.226667pt;}
.yeb{bottom:875.026667pt;}
.y79{bottom:880.626667pt;}
.y94{bottom:881.440000pt;}
.yb{bottom:882.226667pt;}
.y3c{bottom:883.040000pt;}
.yc3{bottom:892.626667pt;}
.yea{bottom:893.440000pt;}
.y78{bottom:907.840000pt;}
.ya{bottom:910.226667pt;}
.y3b{bottom:911.026667pt;}
.ye9{bottom:911.840000pt;}
.yc2{bottom:929.466667pt;}
.y10b{bottom:930.266667pt;}
.y9{bottom:937.466667pt;}
.y3a{bottom:938.266667pt;}
.yc1{bottom:947.866667pt;}
.ye8{bottom:956.666667pt;}
.y77{bottom:964.706667pt;}
.y8{bottom:965.506667pt;}
.y39{bottom:966.293333pt;}
.ye7{bottom:975.106667pt;}
.y7{bottom:984.693333pt;}
.y38{bottom:993.506667pt;}
.y6{bottom:1001.506667pt;}
.y5{bottom:1009.533333pt;}
.y4{bottom:1022.333333pt;}
.y3{bottom:1035.933333pt;}
.y35{bottom:1036.733333pt;}
.y2{bottom:1051.933333pt;}
.y34{bottom:1053.533333pt;}
.y33{bottom:1062.360000pt;}
.y1{bottom:1068.773333pt;}
.h2{height:19.556250pt;}
.h6{height:20.518750pt;}
.hd{height:32.715417pt;}
.hb{height:32.768750pt;}
.h5{height:36.318750pt;}
.h4{height:41.906250pt;}
.h11{height:43.031250pt;}
.hc{height:48.768750pt;}
.h7{height:49.831250pt;}
.h9{height:51.937500pt;}
.hf{height:52.762500pt;}
.h3{height:55.875000pt;}
.he{height:56.843750pt;}
.h10{height:57.290625pt;}
.h8{height:57.375000pt;}
.ha{height:59.693750pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x8{left:113.733322pt;}
.xc{left:151.359988pt;}
.x7{left:162.573322pt;}
.x11{left:177.799988pt;}
.x6{left:191.399988pt;}
.xe{left:258.666655pt;}
.x2{left:288.293322pt;}
.x5{left:302.706655pt;}
.x12{left:344.359988pt;}
.xf{left:366.773322pt;}
.x4{left:368.359988pt;}
.x3{left:372.399988pt;}
.xa{left:385.999988pt;}
.x9{left:388.399988pt;}
.x1{left:416.439988pt;}
.xd{left:552.559988pt;}
.x10{left:635.066655pt;}
.x13{left:704.733322pt;}
.xb{left:711.933322pt;}
}




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