
    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_99ca10185a4479d29b9a0489.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_6abd7926856a66ba5b87a58d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_b8fd061470521980247070b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_2d1775292d75d42d1299baf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_c5d271c34caca8a3b934c686.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_e89a8eb9b43ea7b5bf71db94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_22c03930e74712bbc358dc69.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_f46753e23547287f935ddeba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_a063e95c361499216e498a49.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_2a69a4397a13be8043372258.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;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_bb2cc05d5db9617faef45844.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_4d7f1ed9f0d3f34f59a10dad.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.fff{font-family:fff;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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);}
.v1{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.828000px;}
.ls37{letter-spacing:-0.738000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.223800px;}
.ls38{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.051840px;}
.ls36{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018000px;}
.ls2f{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls26{letter-spacing:0.106800px;}
.ls35{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls4{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.210240px;}
.ls32{letter-spacing:0.259800px;}
.ls13{letter-spacing:0.259920px;}
.ls39{letter-spacing:0.269400px;}
.ls33{letter-spacing:0.270000px;}
.ls2d{letter-spacing:0.318000px;}
.ls5{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.468000px;}
.ls1e{letter-spacing:0.900000px;}
.ls22{letter-spacing:1.620000px;}
.ls24{letter-spacing:3.780000px;}
.ls7{letter-spacing:4.500000px;}
.lsa{letter-spacing:5.220000px;}
.ls12{letter-spacing:8.100000px;}
.ls1f{letter-spacing:8.820000px;}
.ls23{letter-spacing:9.540000px;}
.ls14{letter-spacing:10.260000px;}
.ls25{letter-spacing:10.980000px;}
.ls6{letter-spacing:11.700000px;}
.ls8{letter-spacing:13.860000px;}
.ls1c{letter-spacing:14.580000px;}
.ls29{letter-spacing:15.066720px;}
.ls1b{letter-spacing:16.740000px;}
.ls2a{letter-spacing:17.460000px;}
.ls2b{letter-spacing:17.640000px;}
.ls9{letter-spacing:19.620000px;}
.ls11{letter-spacing:21.780000px;}
.ls15{letter-spacing:22.500000px;}
.ls17{letter-spacing:24.660000px;}
.ls28{letter-spacing:25.380000px;}
.ls21{letter-spacing:28.260000px;}
.ls20{letter-spacing:34.020000px;}
.ls1d{letter-spacing:39.780000px;}
.ls27{letter-spacing:44.562720px;}
.ls3{letter-spacing:46.260000px;}
.ls2c{letter-spacing:64.260000px;}
.ls2e{letter-spacing:64.440000px;}
.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;}
}
.ws14{word-spacing:-54.468000px;}
.ws13{word-spacing:-54.270000px;}
.ws12{word-spacing:-54.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.912000px;}
.ws2{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.400000px;}
.wse{word-spacing:-13.860000px;}
.ws1c{word-spacing:-13.680000px;}
.ws1b{word-spacing:-13.626000px;}
.ws15{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.ws17{word-spacing:-13.482000px;}
.ws1a{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.140000px;}
.ws19{word-spacing:-12.762000px;}
.wsd{word-spacing:-12.672000px;}
.ws1e{word-spacing:-12.420000px;}
.ws1d{word-spacing:-12.329400px;}
.ws6{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.836200px;}
.ws0{word-spacing:-10.064160px;}
.wsb{word-spacing:-7.981920px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-3.878160px;}
._9{margin-left:-2.358960px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._4{width:3.066480px;}
._5{width:5.020080px;}
._a{width:6.078000px;}
._b{width:7.604160px;}
._8{width:8.617200px;}
._17{width:9.909120px;}
._2{width:10.963200px;}
._11{width:12.181440px;}
._3{width:13.365120px;}
._6{width:14.809680px;}
._7{width:15.964080px;}
._12{width:17.014080px;}
._16{width:18.250080px;}
._c{width:19.551360px;}
._d{width:21.131040px;}
._10{width:22.649040px;}
._15{width:23.904000px;}
._1d{width:25.158960px;}
._19{width:26.588880px;}
._18{width:28.146960px;}
._1e{width:29.401920px;}
._1c{width:31.070880px;}
._1b{width:32.210640px;}
._1f{width:33.699600px;}
._e{width:35.299920px;}
._f{width:36.761280px;}
._21{width:38.844960px;}
._20{width:40.045440px;}
._14{width:49.196400px;}
._13{width:51.214320px;}
._22{width:52.345440px;}
._24{width:56.501040px;}
._23{width:57.728160px;}
._25{width:63.918000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fs9{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:1.800000px;}
.y18d{bottom:2.340000px;}
.y98{bottom:2.880000px;}
.y95{bottom:3.600000px;}
.y4d{bottom:3.780000px;}
.y3{bottom:4.320000px;}
.y8{bottom:6.300000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.y9a{bottom:10.620000px;}
.y4f{bottom:10.800000px;}
.y52{bottom:11.160000px;}
.y18e{bottom:16.380000px;}
.y9b{bottom:18.360000px;}
.y97{bottom:18.540000px;}
.y50{bottom:19.800000px;}
.y51{bottom:20.520000px;}
.y9{bottom:32.940000px;}
.y181{bottom:33.840000px;}
.y17e{bottom:34.020000px;}
.y7{bottom:48.600000px;}
.y17d{bottom:49.500000px;}
.y17c{bottom:64.980000px;}
.y6{bottom:72.900000px;}
.y17b{bottom:80.640000px;}
.y4b{bottom:90.540000px;}
.y102{bottom:94.140000px;}
.y12b{bottom:94.320000px;}
.y18f{bottom:98.820000px;}
.y18c{bottom:100.260000px;}
.y133{bottom:102.420000px;}
.y90{bottom:106.020000px;}
.y4a{bottom:107.820000px;}
.y101{bottom:111.420000px;}
.yc5{bottom:119.520000px;}
.y8f{bottom:123.300000px;}
.y49{bottom:124.920000px;}
.y100{bottom:128.520000px;}
.y12a{bottom:128.700000px;}
.yc4{bottom:136.800000px;}
.y18b{bottom:138.240000px;}
.y160{bottom:138.780000px;}
.y8e{bottom:140.580000px;}
.y48{bottom:142.200000px;}
.yff{bottom:145.800000px;}
.y129{bottom:145.980000px;}
.yc3{bottom:154.080000px;}
.y15f{bottom:156.060000px;}
.y8d{bottom:157.860000px;}
.y47{bottom:159.480000px;}
.yfe{bottom:163.080000px;}
.y128{bottom:163.260000px;}
.yc2{bottom:171.180000px;}
.y132{bottom:171.360000px;}
.y15e{bottom:173.340000px;}
.y8c{bottom:175.140000px;}
.y46{bottom:176.760000px;}
.yfd{bottom:180.360000px;}
.y127{bottom:180.540000px;}
.yc1{bottom:188.490000px;}
.y131{bottom:188.670000px;}
.y15d{bottom:190.470000px;}
.y8b{bottom:192.270000px;}
.y45{bottom:194.070000px;}
.yfc{bottom:197.670000px;}
.yc0{bottom:205.770000px;}
.y18a{bottom:205.950000px;}
.y15c{bottom:207.750000px;}
.y8a{bottom:209.550000px;}
.y44{bottom:211.170000px;}
.yfb{bottom:214.770000px;}
.y126{bottom:214.950000px;}
.y189{bottom:222.870000px;}
.ybf{bottom:223.050000px;}
.y15b{bottom:225.030000px;}
.y89{bottom:226.830000px;}
.y43{bottom:228.450000px;}
.yfa{bottom:232.050000px;}
.y125{bottom:232.230000px;}
.y188{bottom:238.710000px;}
.ybe{bottom:240.330000px;}
.y15a{bottom:242.310000px;}
.y88{bottom:244.110000px;}
.y42{bottom:245.730000px;}
.yf9{bottom:249.330000px;}
.y124{bottom:249.510000px;}
.y4c{bottom:252.390000px;}
.y187{bottom:255.990000px;}
.ybd{bottom:257.430000px;}
.y130{bottom:257.610000px;}
.y159{bottom:259.590000px;}
.y87{bottom:261.390000px;}
.y41{bottom:263.010000px;}
.yf8{bottom:266.610000px;}
.y123{bottom:266.790000px;}
.y186{bottom:272.910000px;}
.ybc{bottom:274.710000px;}
.y12f{bottom:274.890000px;}
.y158{bottom:276.870000px;}
.y86{bottom:278.670000px;}
.y40{bottom:280.290000px;}
.yf7{bottom:283.890000px;}
.y122{bottom:284.070000px;}
.y185{bottom:288.750000px;}
.ybb{bottom:291.990000px;}
.y12e{bottom:292.170000px;}
.y157{bottom:293.970000px;}
.y85{bottom:295.770000px;}
.y3f{bottom:297.570000px;}
.yf6{bottom:301.170000px;}
.y184{bottom:305.670000px;}
.yba{bottom:309.270000px;}
.y156{bottom:311.250000px;}
.y84{bottom:313.050000px;}
.y3e{bottom:313.950000px;}
.yf5{bottom:318.270000px;}
.y121{bottom:318.450000px;}
.y183{bottom:321.510000px;}
.yb9{bottom:326.550000px;}
.y155{bottom:328.530000px;}
.y3d{bottom:328.890000px;}
.y83{bottom:330.330000px;}
.yf4{bottom:335.550000px;}
.y120{bottom:335.730000px;}
.y182{bottom:338.790000px;}
.y3c{bottom:342.750000px;}
.yb8{bottom:343.830000px;}
.y154{bottom:345.810000px;}
.y82{bottom:347.610000px;}
.yf3{bottom:352.830000px;}
.y11f{bottom:353.010000px;}
.y3b{bottom:356.610000px;}
.yb7{bottom:360.930000px;}
.y12d{bottom:361.110000px;}
.y153{bottom:363.090000px;}
.y81{bottom:364.890000px;}
.yf2{bottom:370.110000px;}
.y3a{bottom:370.290000px;}
.yb6{bottom:378.210000px;}
.y152{bottom:380.370000px;}
.y80{bottom:382.170000px;}
.y12c{bottom:382.890000px;}
.y39{bottom:384.150000px;}
.yf1{bottom:387.390000px;}
.y11e{bottom:387.570000px;}
.yb5{bottom:395.490000px;}
.y151{bottom:397.470000px;}
.y38{bottom:398.010000px;}
.y7f{bottom:399.270000px;}
.yf0{bottom:404.670000px;}
.y37{bottom:411.690000px;}
.yb4{bottom:412.770000px;}
.y150{bottom:414.750000px;}
.y7e{bottom:416.550000px;}
.yef{bottom:421.770000px;}
.y11d{bottom:421.950000px;}
.y36{bottom:425.595000px;}
.yb3{bottom:430.095000px;}
.y180{bottom:430.455000px;}
.y7d{bottom:433.875000px;}
.yee{bottom:439.095000px;}
.y11c{bottom:439.275000px;}
.y35{bottom:439.455000px;}
.y17f{bottom:445.935000px;}
.yb2{bottom:447.375000px;}
.y7c{bottom:451.155000px;}
.y34{bottom:453.135000px;}
.yed{bottom:456.375000px;}
.y11b{bottom:456.555000px;}
.y17a{bottom:461.415000px;}
.yb1{bottom:464.475000px;}
.y33{bottom:466.995000px;}
.y7b{bottom:468.435000px;}
.yec{bottom:473.655000px;}
.y11a{bottom:473.835000px;}
.y14f{bottom:477.075000px;}
.y32{bottom:480.855000px;}
.yb0{bottom:481.755000px;}
.y7a{bottom:485.715000px;}
.yeb{bottom:490.935000px;}
.y31{bottom:494.175000px;}
.yaf{bottom:499.035000px;}
.y79{bottom:502.815000px;}
.y30{bottom:504.975000px;}
.yea{bottom:508.215000px;}
.yae{bottom:516.315000px;}
.y2f{bottom:518.655000px;}
.y78{bottom:520.095000px;}
.ye9{bottom:525.315000px;}
.y119{bottom:525.495000px;}
.y2e{bottom:532.515000px;}
.yad{bottom:533.595000px;}
.y77{bottom:537.375000px;}
.y14e{bottom:539.355000px;}
.ye8{bottom:542.595000px;}
.y118{bottom:542.775000px;}
.y2d{bottom:546.375000px;}
.yac{bottom:550.875000px;}
.y76{bottom:554.655000px;}
.y14d{bottom:556.635000px;}
.ye7{bottom:559.875000px;}
.y2c{bottom:560.055000px;}
.yab{bottom:567.975000px;}
.y75{bottom:571.935000px;}
.y179{bottom:573.375000px;}
.y14c{bottom:573.735000px;}
.y2b{bottom:573.915000px;}
.ye6{bottom:577.155000px;}
.y117{bottom:577.335000px;}
.yaa{bottom:585.255000px;}
.y2a{bottom:587.775000px;}
.y74{bottom:589.035000px;}
.y178{bottom:590.655000px;}
.y14b{bottom:591.015000px;}
.ye5{bottom:594.435000px;}
.y29{bottom:601.455000px;}
.ya9{bottom:602.535000px;}
.y177{bottom:607.935000px;}
.y14a{bottom:608.295000px;}
.y73{bottom:610.815000px;}
.ye4{bottom:611.535000px;}
.y116{bottom:611.715000px;}
.y28{bottom:615.315000px;}
.ya8{bottom:619.815000px;}
.y176{bottom:625.035000px;}
.y149{bottom:625.575000px;}
.ye3{bottom:628.815000px;}
.y115{bottom:628.995000px;}
.y27{bottom:629.175000px;}
.y72{bottom:632.595000px;}
.ya7{bottom:637.095000px;}
.y175{bottom:642.315000px;}
.y26{bottom:642.855000px;}
.ye2{bottom:646.095000px;}
.y114{bottom:646.275000px;}
.y71{bottom:649.875000px;}
.ya6{bottom:654.195000px;}
.y25{bottom:656.715000px;}
.y174{bottom:659.595000px;}
.y148{bottom:660.135000px;}
.ye1{bottom:663.375000px;}
.y113{bottom:663.555000px;}
.y70{bottom:667.185000px;}
.ya5{bottom:671.505000px;}
.y24{bottom:673.125000px;}
.y173{bottom:676.905000px;}
.y147{bottom:677.265000px;}
.ye0{bottom:680.685000px;}
.y112{bottom:680.865000px;}
.y6f{bottom:684.465000px;}
.y23{bottom:687.705000px;}
.ya4{bottom:688.785000px;}
.y172{bottom:694.185000px;}
.y146{bottom:694.545000px;}
.ydf{bottom:697.965000px;}
.y6e{bottom:701.565000px;}
.y22{bottom:704.265000px;}
.ya3{bottom:706.065000px;}
.y171{bottom:711.465000px;}
.y145{bottom:711.825000px;}
.yde{bottom:715.065000px;}
.y111{bottom:715.245000px;}
.y21{bottom:718.665000px;}
.y6d{bottom:718.845000px;}
.ya2{bottom:720.825000px;}
.y170{bottom:728.565000px;}
.y144{bottom:729.105000px;}
.ydd{bottom:732.345000px;}
.y110{bottom:732.525000px;}
.y20{bottom:735.945000px;}
.y6c{bottom:736.125000px;}
.y16f{bottom:745.845000px;}
.y143{bottom:746.385000px;}
.ydc{bottom:749.625000px;}
.y10f{bottom:749.805000px;}
.ya1{bottom:752.685000px;}
.y1f{bottom:753.225000px;}
.y6b{bottom:753.405000px;}
.y16e{bottom:763.125000px;}
.y142{bottom:763.665000px;}
.ydb{bottom:766.905000px;}
.y10e{bottom:767.085000px;}
.y1e{bottom:770.505000px;}
.y6a{bottom:770.685000px;}
.y16d{bottom:780.405000px;}
.y141{bottom:780.765000px;}
.yda{bottom:784.185000px;}
.ya0{bottom:784.365000px;}
.y1d{bottom:787.785000px;}
.y69{bottom:787.965000px;}
.y16c{bottom:797.685000px;}
.y140{bottom:798.045000px;}
.yd9{bottom:801.465000px;}
.y1c{bottom:805.065000px;}
.y16b{bottom:814.785000px;}
.y13f{bottom:815.325000px;}
.y9f{bottom:816.225000px;}
.yd8{bottom:818.565000px;}
.y10d{bottom:818.745000px;}
.y1b{bottom:822.165000px;}
.y68{bottom:822.345000px;}
.y16a{bottom:832.065000px;}
.y13e{bottom:832.605000px;}
.yd7{bottom:835.845000px;}
.y10c{bottom:836.025000px;}
.y1a{bottom:839.445000px;}
.y67{bottom:839.625000px;}
.y9e{bottom:848.085000px;}
.y169{bottom:849.345000px;}
.y13d{bottom:849.885000px;}
.yd6{bottom:853.125000px;}
.y10b{bottom:853.305000px;}
.y19{bottom:856.725000px;}
.y66{bottom:856.905000px;}
.y168{bottom:866.625000px;}
.y13c{bottom:866.985000px;}
.yd5{bottom:870.405000px;}
.y10a{bottom:870.585000px;}
.y18{bottom:874.005000px;}
.y65{bottom:878.505000px;}
.y9d{bottom:879.765000px;}
.y167{bottom:883.905000px;}
.y13b{bottom:884.265000px;}
.yd4{bottom:887.685000px;}
.y17{bottom:892.005000px;}
.y64{bottom:900.285000px;}
.y166{bottom:901.185000px;}
.y13a{bottom:901.545000px;}
.yd3{bottom:904.785000px;}
.y109{bottom:904.965000px;}
.y9c{bottom:911.670000px;}
.y16{bottom:912.750000px;}
.y63{bottom:917.610000px;}
.y165{bottom:918.330000px;}
.y139{bottom:918.870000px;}
.yd2{bottom:922.110000px;}
.y108{bottom:922.290000px;}
.y15{bottom:933.450000px;}
.y62{bottom:934.890000px;}
.y164{bottom:935.610000px;}
.y138{bottom:936.150000px;}
.yd1{bottom:939.390000px;}
.y107{bottom:939.570000px;}
.y99{bottom:943.530000px;}
.y61{bottom:952.170000px;}
.y163{bottom:952.890000px;}
.y137{bottom:953.430000px;}
.y14{bottom:954.150000px;}
.yd0{bottom:956.670000px;}
.y106{bottom:956.850000px;}
.y60{bottom:969.450000px;}
.y162{bottom:970.170000px;}
.y136{bottom:971.070000px;}
.ycf{bottom:973.950000px;}
.y105{bottom:974.130000px;}
.y13{bottom:974.850000px;}
.y96{bottom:975.210000px;}
.y5f{bottom:986.730000px;}
.y135{bottom:989.610000px;}
.yce{bottom:991.230000px;}
.y12{bottom:994.830000px;}
.y5e{bottom:1003.830000px;}
.y94{bottom:1007.070000px;}
.y134{bottom:1007.250000px;}
.ycd{bottom:1008.330000px;}
.y104{bottom:1008.510000px;}
.y11{bottom:1012.650000px;}
.y5d{bottom:1021.110000px;}
.ycc{bottom:1025.610000px;}
.y103{bottom:1025.790000px;}
.y161{bottom:1032.450000px;}
.y10{bottom:1033.350000px;}
.y5c{bottom:1038.390000px;}
.ycb{bottom:1042.890000px;}
.y93{bottom:1043.070000px;}
.yf{bottom:1054.050000px;}
.y5b{bottom:1055.670000px;}
.yca{bottom:1060.170000px;}
.y92{bottom:1060.350000px;}
.y5a{bottom:1072.950000px;}
.yc9{bottom:1077.450000px;}
.y91{bottom:1077.630000px;}
.y59{bottom:1090.230000px;}
.ye{bottom:1094.730000px;}
.y58{bottom:1107.330000px;}
.yc8{bottom:1111.830000px;}
.yd{bottom:1112.010000px;}
.y57{bottom:1124.610000px;}
.yc7{bottom:1129.110000px;}
.yc{bottom:1129.290000px;}
.y56{bottom:1141.890000px;}
.yc6{bottom:1146.390000px;}
.yb{bottom:1146.570000px;}
.y55{bottom:1163.700000px;}
.ya{bottom:1163.880000px;}
.y54{bottom:1180.260000px;}
.y5{bottom:1188.000000px;}
.y4e{bottom:1192.320000px;}
.y1{bottom:1200.060000px;}
.h29{height:5.653125px;}
.h20{height:15.480000px;}
.h19{height:16.920000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h8{height:21.420000px;}
.h5{height:27.210938px;}
.h16{height:28.080000px;}
.h17{height:30.209062px;}
.h1c{height:30.960000px;}
.h1a{height:31.140000px;}
.h1d{height:31.176000px;}
.h18{height:32.835938px;}
.h11{height:33.824531px;}
.h26{height:35.100000px;}
.h12{height:35.332031px;}
.h1b{height:37.863281px;}
.h3{height:38.089687px;}
.h27{height:40.985156px;}
.h13{height:41.902031px;}
.h23{height:44.507812px;}
.h10{height:47.321367px;}
.h6{height:47.344922px;}
.h28{height:48.616875px;}
.h9{height:50.068125px;}
.h21{height:52.971680px;}
.h4{height:52.998047px;}
.h24{height:53.709961px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.he{height:60.226875px;}
.h1f{height:61.423863px;}
.hc{height:62.261719px;}
.ha{height:65.884219px;}
.h1e{height:66.757500px;}
.h14{height:67.140000px;}
.hd{height:72.562500px;}
.h25{height:77.616000px;}
.h22{height:93.240000px;}
.h15{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:62.100000px;}
.wf{width:84.960000px;}
.w3{width:157.530000px;}
.wc{width:200.910000px;}
.w8{width:228.990000px;}
.w4{width:253.110000px;}
.w2{width:269.670000px;}
.wa{width:434.415000px;}
.wd{width:477.255000px;}
.w10{width:595.545000px;}
.w6{width:680.325000px;}
.we{width:682.485000px;}
.wb{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:1.980000px;}
.x2f{left:5.220000px;}
.x2{left:8.100000px;}
.x1e{left:9.360000px;}
.x4{left:35.640000px;}
.x6{left:50.040000px;}
.x25{left:55.974000px;}
.x20{left:64.440000px;}
.x21{left:68.940000px;}
.x2d{left:74.334000px;}
.x1b{left:94.176000px;}
.x1c{left:104.256000px;}
.x1{left:106.416000px;}
.x2c{left:114.516000px;}
.x9{left:119.015987px;}
.xa{left:126.755987px;}
.xb{left:133.415987px;}
.x1a{left:156.269987px;}
.xd{left:158.429987px;}
.x2a{left:159.869987px;}
.x19{left:162.929987px;}
.xe{left:174.089987px;}
.x22{left:187.410000px;}
.x27{left:192.270000px;}
.x2e{left:199.470000px;}
.xf{left:204.149987px;}
.x10{left:306.974987px;}
.x26{left:308.775000px;}
.x28{left:327.999000px;}
.x8{left:331.059000px;}
.x1d{left:333.255000px;}
.x23{left:335.019000px;}
.x24{left:344.954987px;}
.x1f{left:354.495000px;}
.x3{left:376.095000px;}
.x29{left:418.574987px;}
.x11{left:440.894987px;}
.x16{left:442.874987px;}
.xc{left:446.474987px;}
.x12{left:448.814987px;}
.x5{left:533.625000px;}
.x17{left:580.424987px;}
.x13{left:596.984987px;}
.x14{left:607.424987px;}
.x18{left:661.244987px;}
.x15{left:688.829987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls37{letter-spacing:-0.656000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls38{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.046080pt;}
.ls36{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016000pt;}
.ls2f{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls26{letter-spacing:0.094933pt;}
.ls35{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls4{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.186880pt;}
.ls32{letter-spacing:0.230933pt;}
.ls13{letter-spacing:0.231040pt;}
.ls39{letter-spacing:0.239467pt;}
.ls33{letter-spacing:0.240000pt;}
.ls2d{letter-spacing:0.282667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.416000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls22{letter-spacing:1.440000pt;}
.ls24{letter-spacing:3.360000pt;}
.ls7{letter-spacing:4.000000pt;}
.lsa{letter-spacing:4.640000pt;}
.ls12{letter-spacing:7.200000pt;}
.ls1f{letter-spacing:7.840000pt;}
.ls23{letter-spacing:8.480000pt;}
.ls14{letter-spacing:9.120000pt;}
.ls25{letter-spacing:9.760000pt;}
.ls6{letter-spacing:10.400000pt;}
.ls8{letter-spacing:12.320000pt;}
.ls1c{letter-spacing:12.960000pt;}
.ls29{letter-spacing:13.392640pt;}
.ls1b{letter-spacing:14.880000pt;}
.ls2a{letter-spacing:15.520000pt;}
.ls2b{letter-spacing:15.680000pt;}
.ls9{letter-spacing:17.440000pt;}
.ls11{letter-spacing:19.360000pt;}
.ls15{letter-spacing:20.000000pt;}
.ls17{letter-spacing:21.920000pt;}
.ls28{letter-spacing:22.560000pt;}
.ls21{letter-spacing:25.120000pt;}
.ls20{letter-spacing:30.240000pt;}
.ls1d{letter-spacing:35.360000pt;}
.ls27{letter-spacing:39.611307pt;}
.ls3{letter-spacing:41.120000pt;}
.ls2c{letter-spacing:57.120000pt;}
.ls2e{letter-spacing:57.280000pt;}
.ws14{word-spacing:-48.416000pt;}
.ws13{word-spacing:-48.240000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.144000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.800000pt;}
.wse{word-spacing:-12.320000pt;}
.ws1c{word-spacing:-12.160000pt;}
.ws1b{word-spacing:-12.112000pt;}
.ws15{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.984000pt;}
.ws1a{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.680000pt;}
.ws19{word-spacing:-11.344000pt;}
.wsd{word-spacing:-11.264000pt;}
.ws1e{word-spacing:-11.040000pt;}
.ws1d{word-spacing:-10.959467pt;}
.ws6{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.521067pt;}
.ws0{word-spacing:-8.945920pt;}
.wsb{word-spacing:-7.095040pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-3.447253pt;}
._9{margin-left:-2.096853pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._4{width:2.725760pt;}
._5{width:4.462293pt;}
._a{width:5.402667pt;}
._b{width:6.759253pt;}
._8{width:7.659733pt;}
._17{width:8.808107pt;}
._2{width:9.745067pt;}
._11{width:10.827947pt;}
._3{width:11.880107pt;}
._6{width:13.164160pt;}
._7{width:14.190293pt;}
._12{width:15.123627pt;}
._16{width:16.222293pt;}
._c{width:17.378987pt;}
._d{width:18.783147pt;}
._10{width:20.132480pt;}
._15{width:21.248000pt;}
._1d{width:22.363520pt;}
._19{width:23.634560pt;}
._18{width:25.019520pt;}
._1e{width:26.135040pt;}
._1c{width:27.618560pt;}
._1b{width:28.631680pt;}
._1f{width:29.955200pt;}
._e{width:31.377707pt;}
._f{width:32.676693pt;}
._21{width:34.528853pt;}
._20{width:35.595947pt;}
._14{width:43.730133pt;}
._13{width:45.523840pt;}
._22{width:46.529280pt;}
._24{width:50.223147pt;}
._23{width:51.313920pt;}
._25{width:56.816000pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fs9{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:1.600000pt;}
.y18d{bottom:2.080000pt;}
.y98{bottom:2.560000pt;}
.y95{bottom:3.200000pt;}
.y4d{bottom:3.360000pt;}
.y3{bottom:3.840000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.y9a{bottom:9.440000pt;}
.y4f{bottom:9.600000pt;}
.y52{bottom:9.920000pt;}
.y18e{bottom:14.560000pt;}
.y9b{bottom:16.320000pt;}
.y97{bottom:16.480000pt;}
.y50{bottom:17.600000pt;}
.y51{bottom:18.240000pt;}
.y9{bottom:29.280000pt;}
.y181{bottom:30.080000pt;}
.y17e{bottom:30.240000pt;}
.y7{bottom:43.200000pt;}
.y17d{bottom:44.000000pt;}
.y17c{bottom:57.760000pt;}
.y6{bottom:64.800000pt;}
.y17b{bottom:71.680000pt;}
.y4b{bottom:80.480000pt;}
.y102{bottom:83.680000pt;}
.y12b{bottom:83.840000pt;}
.y18f{bottom:87.840000pt;}
.y18c{bottom:89.120000pt;}
.y133{bottom:91.040000pt;}
.y90{bottom:94.240000pt;}
.y4a{bottom:95.840000pt;}
.y101{bottom:99.040000pt;}
.yc5{bottom:106.240000pt;}
.y8f{bottom:109.600000pt;}
.y49{bottom:111.040000pt;}
.y100{bottom:114.240000pt;}
.y12a{bottom:114.400000pt;}
.yc4{bottom:121.600000pt;}
.y18b{bottom:122.880000pt;}
.y160{bottom:123.360000pt;}
.y8e{bottom:124.960000pt;}
.y48{bottom:126.400000pt;}
.yff{bottom:129.600000pt;}
.y129{bottom:129.760000pt;}
.yc3{bottom:136.960000pt;}
.y15f{bottom:138.720000pt;}
.y8d{bottom:140.320000pt;}
.y47{bottom:141.760000pt;}
.yfe{bottom:144.960000pt;}
.y128{bottom:145.120000pt;}
.yc2{bottom:152.160000pt;}
.y132{bottom:152.320000pt;}
.y15e{bottom:154.080000pt;}
.y8c{bottom:155.680000pt;}
.y46{bottom:157.120000pt;}
.yfd{bottom:160.320000pt;}
.y127{bottom:160.480000pt;}
.yc1{bottom:167.546667pt;}
.y131{bottom:167.706667pt;}
.y15d{bottom:169.306667pt;}
.y8b{bottom:170.906667pt;}
.y45{bottom:172.506667pt;}
.yfc{bottom:175.706667pt;}
.yc0{bottom:182.906667pt;}
.y18a{bottom:183.066667pt;}
.y15c{bottom:184.666667pt;}
.y8a{bottom:186.266667pt;}
.y44{bottom:187.706667pt;}
.yfb{bottom:190.906667pt;}
.y126{bottom:191.066667pt;}
.y189{bottom:198.106667pt;}
.ybf{bottom:198.266667pt;}
.y15b{bottom:200.026667pt;}
.y89{bottom:201.626667pt;}
.y43{bottom:203.066667pt;}
.yfa{bottom:206.266667pt;}
.y125{bottom:206.426667pt;}
.y188{bottom:212.186667pt;}
.ybe{bottom:213.626667pt;}
.y15a{bottom:215.386667pt;}
.y88{bottom:216.986667pt;}
.y42{bottom:218.426667pt;}
.yf9{bottom:221.626667pt;}
.y124{bottom:221.786667pt;}
.y4c{bottom:224.346667pt;}
.y187{bottom:227.546667pt;}
.ybd{bottom:228.826667pt;}
.y130{bottom:228.986667pt;}
.y159{bottom:230.746667pt;}
.y87{bottom:232.346667pt;}
.y41{bottom:233.786667pt;}
.yf8{bottom:236.986667pt;}
.y123{bottom:237.146667pt;}
.y186{bottom:242.586667pt;}
.ybc{bottom:244.186667pt;}
.y12f{bottom:244.346667pt;}
.y158{bottom:246.106667pt;}
.y86{bottom:247.706667pt;}
.y40{bottom:249.146667pt;}
.yf7{bottom:252.346667pt;}
.y122{bottom:252.506667pt;}
.y185{bottom:256.666667pt;}
.ybb{bottom:259.546667pt;}
.y12e{bottom:259.706667pt;}
.y157{bottom:261.306667pt;}
.y85{bottom:262.906667pt;}
.y3f{bottom:264.506667pt;}
.yf6{bottom:267.706667pt;}
.y184{bottom:271.706667pt;}
.yba{bottom:274.906667pt;}
.y156{bottom:276.666667pt;}
.y84{bottom:278.266667pt;}
.y3e{bottom:279.066667pt;}
.yf5{bottom:282.906667pt;}
.y121{bottom:283.066667pt;}
.y183{bottom:285.786667pt;}
.yb9{bottom:290.266667pt;}
.y155{bottom:292.026667pt;}
.y3d{bottom:292.346667pt;}
.y83{bottom:293.626667pt;}
.yf4{bottom:298.266667pt;}
.y120{bottom:298.426667pt;}
.y182{bottom:301.146667pt;}
.y3c{bottom:304.666667pt;}
.yb8{bottom:305.626667pt;}
.y154{bottom:307.386667pt;}
.y82{bottom:308.986667pt;}
.yf3{bottom:313.626667pt;}
.y11f{bottom:313.786667pt;}
.y3b{bottom:316.986667pt;}
.yb7{bottom:320.826667pt;}
.y12d{bottom:320.986667pt;}
.y153{bottom:322.746667pt;}
.y81{bottom:324.346667pt;}
.yf2{bottom:328.986667pt;}
.y3a{bottom:329.146667pt;}
.yb6{bottom:336.186667pt;}
.y152{bottom:338.106667pt;}
.y80{bottom:339.706667pt;}
.y12c{bottom:340.346667pt;}
.y39{bottom:341.466667pt;}
.yf1{bottom:344.346667pt;}
.y11e{bottom:344.506667pt;}
.yb5{bottom:351.546667pt;}
.y151{bottom:353.306667pt;}
.y38{bottom:353.786667pt;}
.y7f{bottom:354.906667pt;}
.yf0{bottom:359.706667pt;}
.y37{bottom:365.946667pt;}
.yb4{bottom:366.906667pt;}
.y150{bottom:368.666667pt;}
.y7e{bottom:370.266667pt;}
.yef{bottom:374.906667pt;}
.y11d{bottom:375.066667pt;}
.y36{bottom:378.306667pt;}
.yb3{bottom:382.306667pt;}
.y180{bottom:382.626667pt;}
.y7d{bottom:385.666667pt;}
.yee{bottom:390.306667pt;}
.y11c{bottom:390.466667pt;}
.y35{bottom:390.626667pt;}
.y17f{bottom:396.386667pt;}
.yb2{bottom:397.666667pt;}
.y7c{bottom:401.026667pt;}
.y34{bottom:402.786667pt;}
.yed{bottom:405.666667pt;}
.y11b{bottom:405.826667pt;}
.y17a{bottom:410.146667pt;}
.yb1{bottom:412.866667pt;}
.y33{bottom:415.106667pt;}
.y7b{bottom:416.386667pt;}
.yec{bottom:421.026667pt;}
.y11a{bottom:421.186667pt;}
.y14f{bottom:424.066667pt;}
.y32{bottom:427.426667pt;}
.yb0{bottom:428.226667pt;}
.y7a{bottom:431.746667pt;}
.yeb{bottom:436.386667pt;}
.y31{bottom:439.266667pt;}
.yaf{bottom:443.586667pt;}
.y79{bottom:446.946667pt;}
.y30{bottom:448.866667pt;}
.yea{bottom:451.746667pt;}
.yae{bottom:458.946667pt;}
.y2f{bottom:461.026667pt;}
.y78{bottom:462.306667pt;}
.ye9{bottom:466.946667pt;}
.y119{bottom:467.106667pt;}
.y2e{bottom:473.346667pt;}
.yad{bottom:474.306667pt;}
.y77{bottom:477.666667pt;}
.y14e{bottom:479.426667pt;}
.ye8{bottom:482.306667pt;}
.y118{bottom:482.466667pt;}
.y2d{bottom:485.666667pt;}
.yac{bottom:489.666667pt;}
.y76{bottom:493.026667pt;}
.y14d{bottom:494.786667pt;}
.ye7{bottom:497.666667pt;}
.y2c{bottom:497.826667pt;}
.yab{bottom:504.866667pt;}
.y75{bottom:508.386667pt;}
.y179{bottom:509.666667pt;}
.y14c{bottom:509.986667pt;}
.y2b{bottom:510.146667pt;}
.ye6{bottom:513.026667pt;}
.y117{bottom:513.186667pt;}
.yaa{bottom:520.226667pt;}
.y2a{bottom:522.466667pt;}
.y74{bottom:523.586667pt;}
.y178{bottom:525.026667pt;}
.y14b{bottom:525.346667pt;}
.ye5{bottom:528.386667pt;}
.y29{bottom:534.626667pt;}
.ya9{bottom:535.586667pt;}
.y177{bottom:540.386667pt;}
.y14a{bottom:540.706667pt;}
.y73{bottom:542.946667pt;}
.ye4{bottom:543.586667pt;}
.y116{bottom:543.746667pt;}
.y28{bottom:546.946667pt;}
.ya8{bottom:550.946667pt;}
.y176{bottom:555.586667pt;}
.y149{bottom:556.066667pt;}
.ye3{bottom:558.946667pt;}
.y115{bottom:559.106667pt;}
.y27{bottom:559.266667pt;}
.y72{bottom:562.306667pt;}
.ya7{bottom:566.306667pt;}
.y175{bottom:570.946667pt;}
.y26{bottom:571.426667pt;}
.ye2{bottom:574.306667pt;}
.y114{bottom:574.466667pt;}
.y71{bottom:577.666667pt;}
.ya6{bottom:581.506667pt;}
.y25{bottom:583.746667pt;}
.y174{bottom:586.306667pt;}
.y148{bottom:586.786667pt;}
.ye1{bottom:589.666667pt;}
.y113{bottom:589.826667pt;}
.y70{bottom:593.053333pt;}
.ya5{bottom:596.893333pt;}
.y24{bottom:598.333333pt;}
.y173{bottom:601.693333pt;}
.y147{bottom:602.013333pt;}
.ye0{bottom:605.053333pt;}
.y112{bottom:605.213333pt;}
.y6f{bottom:608.413333pt;}
.y23{bottom:611.293333pt;}
.ya4{bottom:612.253333pt;}
.y172{bottom:617.053333pt;}
.y146{bottom:617.373333pt;}
.ydf{bottom:620.413333pt;}
.y6e{bottom:623.613333pt;}
.y22{bottom:626.013333pt;}
.ya3{bottom:627.613333pt;}
.y171{bottom:632.413333pt;}
.y145{bottom:632.733333pt;}
.yde{bottom:635.613333pt;}
.y111{bottom:635.773333pt;}
.y21{bottom:638.813333pt;}
.y6d{bottom:638.973333pt;}
.ya2{bottom:640.733333pt;}
.y170{bottom:647.613333pt;}
.y144{bottom:648.093333pt;}
.ydd{bottom:650.973333pt;}
.y110{bottom:651.133333pt;}
.y20{bottom:654.173333pt;}
.y6c{bottom:654.333333pt;}
.y16f{bottom:662.973333pt;}
.y143{bottom:663.453333pt;}
.ydc{bottom:666.333333pt;}
.y10f{bottom:666.493333pt;}
.ya1{bottom:669.053333pt;}
.y1f{bottom:669.533333pt;}
.y6b{bottom:669.693333pt;}
.y16e{bottom:678.333333pt;}
.y142{bottom:678.813333pt;}
.ydb{bottom:681.693333pt;}
.y10e{bottom:681.853333pt;}
.y1e{bottom:684.893333pt;}
.y6a{bottom:685.053333pt;}
.y16d{bottom:693.693333pt;}
.y141{bottom:694.013333pt;}
.yda{bottom:697.053333pt;}
.ya0{bottom:697.213333pt;}
.y1d{bottom:700.253333pt;}
.y69{bottom:700.413333pt;}
.y16c{bottom:709.053333pt;}
.y140{bottom:709.373333pt;}
.yd9{bottom:712.413333pt;}
.y1c{bottom:715.613333pt;}
.y16b{bottom:724.253333pt;}
.y13f{bottom:724.733333pt;}
.y9f{bottom:725.533333pt;}
.yd8{bottom:727.613333pt;}
.y10d{bottom:727.773333pt;}
.y1b{bottom:730.813333pt;}
.y68{bottom:730.973333pt;}
.y16a{bottom:739.613333pt;}
.y13e{bottom:740.093333pt;}
.yd7{bottom:742.973333pt;}
.y10c{bottom:743.133333pt;}
.y1a{bottom:746.173333pt;}
.y67{bottom:746.333333pt;}
.y9e{bottom:753.853333pt;}
.y169{bottom:754.973333pt;}
.y13d{bottom:755.453333pt;}
.yd6{bottom:758.333333pt;}
.y10b{bottom:758.493333pt;}
.y19{bottom:761.533333pt;}
.y66{bottom:761.693333pt;}
.y168{bottom:770.333333pt;}
.y13c{bottom:770.653333pt;}
.yd5{bottom:773.693333pt;}
.y10a{bottom:773.853333pt;}
.y18{bottom:776.893333pt;}
.y65{bottom:780.893333pt;}
.y9d{bottom:782.013333pt;}
.y167{bottom:785.693333pt;}
.y13b{bottom:786.013333pt;}
.yd4{bottom:789.053333pt;}
.y17{bottom:792.893333pt;}
.y64{bottom:800.253333pt;}
.y166{bottom:801.053333pt;}
.y13a{bottom:801.373333pt;}
.yd3{bottom:804.253333pt;}
.y109{bottom:804.413333pt;}
.y9c{bottom:810.373333pt;}
.y16{bottom:811.333333pt;}
.y63{bottom:815.653333pt;}
.y165{bottom:816.293333pt;}
.y139{bottom:816.773333pt;}
.yd2{bottom:819.653333pt;}
.y108{bottom:819.813333pt;}
.y15{bottom:829.733333pt;}
.y62{bottom:831.013333pt;}
.y164{bottom:831.653333pt;}
.y138{bottom:832.133333pt;}
.yd1{bottom:835.013333pt;}
.y107{bottom:835.173333pt;}
.y99{bottom:838.693333pt;}
.y61{bottom:846.373333pt;}
.y163{bottom:847.013333pt;}
.y137{bottom:847.493333pt;}
.y14{bottom:848.133333pt;}
.yd0{bottom:850.373333pt;}
.y106{bottom:850.533333pt;}
.y60{bottom:861.733333pt;}
.y162{bottom:862.373333pt;}
.y136{bottom:863.173333pt;}
.ycf{bottom:865.733333pt;}
.y105{bottom:865.893333pt;}
.y13{bottom:866.533333pt;}
.y96{bottom:866.853333pt;}
.y5f{bottom:877.093333pt;}
.y135{bottom:879.653333pt;}
.yce{bottom:881.093333pt;}
.y12{bottom:884.293333pt;}
.y5e{bottom:892.293333pt;}
.y94{bottom:895.173333pt;}
.y134{bottom:895.333333pt;}
.ycd{bottom:896.293333pt;}
.y104{bottom:896.453333pt;}
.y11{bottom:900.133333pt;}
.y5d{bottom:907.653333pt;}
.ycc{bottom:911.653333pt;}
.y103{bottom:911.813333pt;}
.y161{bottom:917.733333pt;}
.y10{bottom:918.533333pt;}
.y5c{bottom:923.013333pt;}
.ycb{bottom:927.013333pt;}
.y93{bottom:927.173333pt;}
.yf{bottom:936.933333pt;}
.y5b{bottom:938.373333pt;}
.yca{bottom:942.373333pt;}
.y92{bottom:942.533333pt;}
.y5a{bottom:953.733333pt;}
.yc9{bottom:957.733333pt;}
.y91{bottom:957.893333pt;}
.y59{bottom:969.093333pt;}
.ye{bottom:973.093333pt;}
.y58{bottom:984.293333pt;}
.yc8{bottom:988.293333pt;}
.yd{bottom:988.453333pt;}
.y57{bottom:999.653333pt;}
.yc7{bottom:1003.653333pt;}
.yc{bottom:1003.813333pt;}
.y56{bottom:1015.013333pt;}
.yc6{bottom:1019.013333pt;}
.yb{bottom:1019.173333pt;}
.y55{bottom:1034.400000pt;}
.ya{bottom:1034.560000pt;}
.y54{bottom:1049.120000pt;}
.y5{bottom:1056.000000pt;}
.y4e{bottom:1059.840000pt;}
.y1{bottom:1066.720000pt;}
.h29{height:5.025000pt;}
.h20{height:13.760000pt;}
.h19{height:15.040000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h8{height:19.040000pt;}
.h5{height:24.187500pt;}
.h16{height:24.960000pt;}
.h17{height:26.852500pt;}
.h1c{height:27.520000pt;}
.h1a{height:27.680000pt;}
.h1d{height:27.712000pt;}
.h18{height:29.187500pt;}
.h11{height:30.066250pt;}
.h26{height:31.200000pt;}
.h12{height:31.406250pt;}
.h1b{height:33.656250pt;}
.h3{height:33.857500pt;}
.h27{height:36.431250pt;}
.h13{height:37.246250pt;}
.h23{height:39.562500pt;}
.h10{height:42.063437pt;}
.h6{height:42.084375pt;}
.h28{height:43.215000pt;}
.h9{height:44.505000pt;}
.h21{height:47.085938pt;}
.h4{height:47.109375pt;}
.h24{height:47.742188pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.he{height:53.535000pt;}
.h1f{height:54.598989pt;}
.hc{height:55.343750pt;}
.ha{height:58.563750pt;}
.h1e{height:59.340000pt;}
.h14{height:59.680000pt;}
.hd{height:64.500000pt;}
.h25{height:68.992000pt;}
.h22{height:82.880000pt;}
.h15{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.200000pt;}
.wf{width:75.520000pt;}
.w3{width:140.026667pt;}
.wc{width:178.586667pt;}
.w8{width:203.546667pt;}
.w4{width:224.986667pt;}
.w2{width:239.706667pt;}
.wa{width:386.146667pt;}
.wd{width:424.226667pt;}
.w10{width:529.373333pt;}
.w6{width:604.733333pt;}
.we{width:606.653333pt;}
.wb{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.760000pt;}
.x2f{left:4.640000pt;}
.x2{left:7.200000pt;}
.x1e{left:8.320000pt;}
.x4{left:31.680000pt;}
.x6{left:44.480000pt;}
.x25{left:49.754667pt;}
.x20{left:57.280000pt;}
.x21{left:61.280000pt;}
.x2d{left:66.074667pt;}
.x1b{left:83.712000pt;}
.x1c{left:92.672000pt;}
.x1{left:94.592000pt;}
.x2c{left:101.792000pt;}
.x9{left:105.791988pt;}
.xa{left:112.671988pt;}
.xb{left:118.591988pt;}
.x1a{left:138.906655pt;}
.xd{left:140.826655pt;}
.x2a{left:142.106655pt;}
.x19{left:144.826655pt;}
.xe{left:154.746655pt;}
.x22{left:166.586667pt;}
.x27{left:170.906667pt;}
.x2e{left:177.306667pt;}
.xf{left:181.466655pt;}
.x10{left:272.866655pt;}
.x26{left:274.466667pt;}
.x28{left:291.554667pt;}
.x8{left:294.274667pt;}
.x1d{left:296.226667pt;}
.x23{left:297.794667pt;}
.x24{left:306.626655pt;}
.x1f{left:315.106667pt;}
.x3{left:334.306667pt;}
.x29{left:372.066655pt;}
.x11{left:391.906655pt;}
.x16{left:393.666655pt;}
.xc{left:396.866655pt;}
.x12{left:398.946655pt;}
.x5{left:474.333333pt;}
.x17{left:515.933322pt;}
.x13{left:530.653322pt;}
.x14{left:539.933322pt;}
.x18{left:587.773322pt;}
.x15{left:612.293322pt;}
.x7{left:699.333322pt;}
}




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