
    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_0d4a1c1b29348d6f2e745022.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1fb5397f2519522014bc7e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7a815166db8fec31dd8069ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_98b649ca998d77d89e230c62.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.033203;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_8a8567ff20a98857af7941d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991699;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_8955e9e87efb06a40efc3af3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_1f235c616767e0a70ebcdbc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;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_c3dcfa396fa55700ab80a519.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_45dfab62493074651b12efd2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;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_fe005d86d3a30543f8d7a155.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952148;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_ce0195e4e661ae993a4ac598.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.726000px;}
.ls21{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.714000px;}
.ls1a{letter-spacing:-0.555600px;}
.ls2{letter-spacing:-0.374400px;}
.lse{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.166800px;}
.ls15{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.005760px;}
.ls1{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.005760px;}
.ls18{letter-spacing:0.089400px;}
.ls1e{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.152400px;}
.ls1b{letter-spacing:0.164400px;}
.ls3{letter-spacing:0.172800px;}
.ls13{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.281280px;}
.ls5{letter-spacing:0.305280px;}
.ls9{letter-spacing:0.305400px;}
.ls16{letter-spacing:0.360000px;}
.ls1c{letter-spacing:6.785280px;}
.ls1d{letter-spacing:7.200000px;}
.lsd{letter-spacing:18.305280px;}
.ls7{letter-spacing:21.905280px;}
.lsc{letter-spacing:25.505280px;}
.ls8{letter-spacing:29.105280px;}
.ls17{letter-spacing:39.905280px;}
.ls0{letter-spacing:89.561280px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.wsd{word-spacing:-39.744000px;}
.wsc{word-spacing:-39.600000px;}
.ws0{word-spacing:-23.212800px;}
.ws6{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.ws13{word-spacing:-16.724400px;}
.ws3{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.649400px;}
.ws15{word-spacing:-16.565760px;}
.ws2{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.554240px;}
.ws14{word-spacing:-16.450800px;}
.ws5{word-spacing:-16.393200px;}
.ws7{word-spacing:-16.297800px;}
.ws8{word-spacing:-16.254600px;}
.ws12{word-spacing:-16.004400px;}
.ws11{word-spacing:-15.846000px;}
.ws16{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsa{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.347840px;}
._1{width:1.351440px;}
._2{width:3.145440px;}
._3{width:4.968000px;}
._8{width:6.955200px;}
._9{width:7.971840px;}
._a{width:9.074880px;}
._b{width:10.488960px;}
._12{width:12.339840px;}
._d{width:13.446720px;}
._e{width:14.624400px;}
._13{width:17.582880px;}
._f{width:18.679680px;}
._10{width:19.785600px;}
._11{width:21.329280px;}
._7{width:22.700160px;}
._6{width:23.846400px;}
._15{width:25.021920px;}
._17{width:26.098560px;}
._1c{width:27.224640px;}
._c{width:28.284480px;}
._14{width:29.476800px;}
._2a{width:30.692160px;}
._18{width:31.795200px;}
._19{width:32.921280px;}
._1a{width:34.916160px;}
._1b{width:37.604160px;}
._16{width:38.617920px;}
._5{width:39.810240px;}
._4{width:40.870080px;}
._32{width:41.929920px;}
._33{width:43.675200px;}
._27{width:47.162880px;}
._24{width:48.253440px;}
._25{width:49.748160px;}
._1e{width:73.128960px;}
._1d{width:74.211840px;}
._38{width:76.242240px;}
._37{width:77.832000px;}
._2b{width:106.513920px;}
._35{width:107.660640px;}
._34{width:108.699840px;}
._2d{width:115.851360px;}
._2c{width:117.311040px;}
._29{width:121.991040px;}
._28{width:123.163200px;}
._2f{width:165.666240px;}
._30{width:167.080320px;}
._1f{width:178.053120px;}
._20{width:179.202240px;}
._2e{width:183.839040px;}
._31{width:203.688000px;}
._21{width:278.009280px;}
._22{width:279.864000px;}
._26{width:300.925920px;}
._23{width:318.044160px;}
._36{width:700.047360px;}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:4.140000px;}
.y154{bottom:7.560000px;}
.yd2{bottom:13.500000px;}
.y156{bottom:16.560000px;}
.ycc{bottom:22.140000px;}
.yd1{bottom:22.860000px;}
.y152{bottom:25.560000px;}
.yca{bottom:31.140000px;}
.y155{bottom:34.560000px;}
.ycb{bottom:40.320000px;}
.y15a{bottom:41.400000px;}
.y153{bottom:43.740000px;}
.y5{bottom:58.320000px;}
.y4{bottom:79.380000px;}
.y9c{bottom:112.320000px;}
.yfa{bottom:113.760000px;}
.y150{bottom:118.260000px;}
.y30{bottom:118.800000px;}
.y177{bottom:119.520000px;}
.y126{bottom:123.480000px;}
.y59{bottom:129.600000px;}
.ye2{bottom:130.140000px;}
.y77{bottom:130.320000px;}
.y198{bottom:130.860000px;}
.yc5{bottom:131.400000px;}
.yf9{bottom:132.480000px;}
.y9b{bottom:132.660000px;}
.y14f{bottom:138.780000px;}
.y2f{bottom:139.320000px;}
.y176{bottom:139.860000px;}
.y13f{bottom:140.580000px;}
.y125{bottom:142.200000px;}
.y58{bottom:150.120000px;}
.ye1{bottom:150.660000px;}
.y76{bottom:150.840000px;}
.yf8{bottom:151.200000px;}
.y197{bottom:151.380000px;}
.yc4{bottom:151.920000px;}
.y9a{bottom:153.180000px;}
.y14e{bottom:159.300000px;}
.y2e{bottom:159.840000px;}
.y175{bottom:160.380000px;}
.y124{bottom:160.920000px;}
.y13e{bottom:161.100000px;}
.yf7{bottom:169.920000px;}
.y57{bottom:170.640000px;}
.y75{bottom:171.180000px;}
.y196{bottom:171.900000px;}
.yc3{bottom:172.440000px;}
.y99{bottom:173.700000px;}
.y123{bottom:179.640000px;}
.y14d{bottom:179.820000px;}
.y2d{bottom:180.360000px;}
.y174{bottom:180.900000px;}
.y13d{bottom:181.620000px;}
.yf6{bottom:188.670000px;}
.y56{bottom:191.190000px;}
.y74{bottom:191.730000px;}
.y195{bottom:192.450000px;}
.yc2{bottom:192.990000px;}
.y98{bottom:194.250000px;}
.y122{bottom:198.390000px;}
.y14c{bottom:200.370000px;}
.y2c{bottom:200.910000px;}
.y173{bottom:201.450000px;}
.y13c{bottom:202.170000px;}
.yf5{bottom:207.390000px;}
.y55{bottom:211.710000px;}
.ye0{bottom:211.890000px;}
.y73{bottom:212.250000px;}
.y194{bottom:212.970000px;}
.yc1{bottom:213.510000px;}
.y97{bottom:214.770000px;}
.y121{bottom:217.110000px;}
.y14b{bottom:220.890000px;}
.y2b{bottom:221.430000px;}
.y172{bottom:221.970000px;}
.y13b{bottom:222.690000px;}
.yf4{bottom:225.930000px;}
.ydf{bottom:232.050000px;}
.y54{bottom:232.230000px;}
.y72{bottom:232.770000px;}
.y193{bottom:233.490000px;}
.y17f{bottom:233.670000px;}
.yc0{bottom:234.030000px;}
.y96{bottom:235.290000px;}
.y120{bottom:235.830000px;}
.y14a{bottom:241.230000px;}
.y2a{bottom:241.950000px;}
.y171{bottom:242.490000px;}
.y13a{bottom:243.210000px;}
.yf3{bottom:244.650000px;}
.yde{bottom:252.570000px;}
.y53{bottom:252.750000px;}
.y71{bottom:253.290000px;}
.y17e{bottom:253.830000px;}
.y11f{bottom:254.370000px;}
.ybf{bottom:254.550000px;}
.y95{bottom:255.810000px;}
.y149{bottom:261.750000px;}
.y29{bottom:262.470000px;}
.y170{bottom:263.010000px;}
.yf2{bottom:263.370000px;}
.y139{bottom:263.730000px;}
.ydd{bottom:273.090000px;}
.y52{bottom:273.270000px;}
.y70{bottom:273.810000px;}
.y17d{bottom:274.350000px;}
.ybe{bottom:275.070000px;}
.y94{bottom:276.330000px;}
.yf1{bottom:282.090000px;}
.y148{bottom:282.270000px;}
.y28{bottom:282.810000px;}
.y16f{bottom:283.530000px;}
.y138{bottom:284.250000px;}
.y11e{bottom:291.810000px;}
.ydc{bottom:293.610000px;}
.y51{bottom:293.790000px;}
.y6f{bottom:294.330000px;}
.y17c{bottom:294.870000px;}
.ybd{bottom:295.590000px;}
.y93{bottom:296.850000px;}
.yf0{bottom:300.810000px;}
.y147{bottom:302.430000px;}
.y27{bottom:303.330000px;}
.y16e{bottom:303.510000px;}
.y137{bottom:304.230000px;}
.y11d{bottom:310.530000px;}
.y50{bottom:314.130000px;}
.y6e{bottom:314.850000px;}
.y17b{bottom:315.390000px;}
.ybc{bottom:316.110000px;}
.y92{bottom:317.190000px;}
.yef{bottom:319.530000px;}
.y146{bottom:322.230000px;}
.y26{bottom:323.850000px;}
.y136{bottom:324.570000px;}
.y11c{bottom:329.250000px;}
.y4f{bottom:334.650000px;}
.y6d{bottom:335.370000px;}
.y17a{bottom:335.910000px;}
.ybb{bottom:336.630000px;}
.y91{bottom:337.710000px;}
.yee{bottom:338.250000px;}
.y145{bottom:342.210000px;}
.y25{bottom:344.010000px;}
.y16d{bottom:344.370000px;}
.y135{bottom:345.090000px;}
.y11b{bottom:347.970000px;}
.y4e{bottom:355.170000px;}
.y6c{bottom:355.890000px;}
.y179{bottom:356.070000px;}
.y192{bottom:356.430000px;}
.yed{bottom:356.610000px;}
.yba{bottom:356.970000px;}
.y90{bottom:358.230000px;}
.y144{bottom:362.550000px;}
.y24{bottom:363.990000px;}
.y16c{bottom:364.890000px;}
.y134{bottom:365.610000px;}
.y11a{bottom:366.510000px;}
.y4d{bottom:375.690000px;}
.y6b{bottom:376.410000px;}
.yec{bottom:376.950000px;}
.yb9{bottom:377.490000px;}
.y8f{bottom:378.750000px;}
.y143{bottom:383.070000px;}
.y23{bottom:384.690000px;}
.y119{bottom:385.230000px;}
.y16b{bottom:385.410000px;}
.y133{bottom:386.130000px;}
.y4c{bottom:396.210000px;}
.y6a{bottom:396.750000px;}
.yeb{bottom:397.470000px;}
.yb8{bottom:398.010000px;}
.y8e{bottom:398.910000px;}
.y142{bottom:403.590000px;}
.y118{bottom:403.950000px;}
.y22{bottom:405.390000px;}
.y16a{bottom:405.930000px;}
.y132{bottom:406.650000px;}
.ydb{bottom:416.235000px;}
.y4b{bottom:416.775000px;}
.y69{bottom:417.315000px;}
.yea{bottom:418.035000px;}
.yb7{bottom:418.575000px;}
.y8d{bottom:419.295000px;}
.y117{bottom:422.715000px;}
.y141{bottom:423.975000px;}
.y21{bottom:425.415000px;}
.y169{bottom:426.495000px;}
.y131{bottom:427.215000px;}
.yda{bottom:436.575000px;}
.y4a{bottom:437.295000px;}
.y68{bottom:437.835000px;}
.ye9{bottom:438.555000px;}
.yb6{bottom:439.095000px;}
.y8c{bottom:439.635000px;}
.y116{bottom:441.435000px;}
.y140{bottom:444.495000px;}
.y20{bottom:445.215000px;}
.y168{bottom:447.015000px;}
.y130{bottom:447.195000px;}
.yd9{bottom:457.095000px;}
.y49{bottom:457.815000px;}
.y67{bottom:458.355000px;}
.ye8{bottom:459.075000px;}
.yb5{bottom:459.615000px;}
.y8b{bottom:460.155000px;}
.y12b{bottom:460.335000px;}
.y1f{bottom:465.195000px;}
.y12f{bottom:467.355000px;}
.y167{bottom:467.535000px;}
.yd8{bottom:477.615000px;}
.y48{bottom:478.335000px;}
.y178{bottom:478.515000px;}
.y115{bottom:478.695000px;}
.y66{bottom:478.875000px;}
.ye7{bottom:479.595000px;}
.yb4{bottom:480.135000px;}
.y8a{bottom:480.675000px;}
.y12a{bottom:480.855000px;}
.y1e{bottom:484.995000px;}
.y12e{bottom:486.075000px;}
.y166{bottom:488.055000px;}
.y114{bottom:497.595000px;}
.yd7{bottom:498.135000px;}
.y47{bottom:498.855000px;}
.y65{bottom:499.395000px;}
.ye6{bottom:499.575000px;}
.y191{bottom:499.935000px;}
.yb3{bottom:500.655000px;}
.y89{bottom:501.195000px;}
.y129{bottom:501.375000px;}
.y12d{bottom:504.795000px;}
.y1d{bottom:504.975000px;}
.y165{bottom:508.395000px;}
.y113{bottom:518.115000px;}
.yd6{bottom:518.655000px;}
.y46{bottom:519.375000px;}
.y64{bottom:519.915000px;}
.y190{bottom:520.455000px;}
.yb2{bottom:521.175000px;}
.y88{bottom:521.715000px;}
.y12c{bottom:523.335000px;}
.y1c{bottom:524.775000px;}
.y164{bottom:528.915000px;}
.y112{bottom:538.635000px;}
.yd5{bottom:539.175000px;}
.y45{bottom:539.715000px;}
.y63{bottom:540.435000px;}
.y18f{bottom:540.975000px;}
.yb1{bottom:541.695000px;}
.y128{bottom:542.055000px;}
.y87{bottom:542.235000px;}
.y1b{bottom:544.755000px;}
.y163{bottom:549.435000px;}
.y111{bottom:559.155000px;}
.yd4{bottom:559.695000px;}
.y44{bottom:560.235000px;}
.y127{bottom:560.775000px;}
.y62{bottom:560.955000px;}
.y18e{bottom:561.495000px;}
.yb0{bottom:562.215000px;}
.y86{bottom:562.755000px;}
.y1a{bottom:564.555000px;}
.y162{bottom:569.955000px;}
.yd3{bottom:576.075000px;}
.y110{bottom:579.495000px;}
.y43{bottom:580.755000px;}
.y61{bottom:581.475000px;}
.y18d{bottom:582.015000px;}
.yaf{bottom:582.555000px;}
.y85{bottom:583.275000px;}
.y19{bottom:584.535000px;}
.y161{bottom:590.475000px;}
.yd0{bottom:595.515000px;}
.y10f{bottom:598.215000px;}
.y42{bottom:601.275000px;}
.y60{bottom:601.995000px;}
.y18c{bottom:602.175000px;}
.y18a{bottom:602.715000px;}
.yae{bottom:603.075000px;}
.y84{bottom:603.795000px;}
.y18{bottom:604.335000px;}
.y160{bottom:610.995000px;}
.y10e{bottom:616.935000px;}
.y41{bottom:621.795000px;}
.y5f{bottom:622.515000px;}
.y189{bottom:623.055000px;}
.yad{bottom:623.595000px;}
.y17{bottom:624.315000px;}
.y15f{bottom:631.515000px;}
.ycf{bottom:633.525000px;}
.y10d{bottom:635.505000px;}
.y40{bottom:642.345000px;}
.y5e{bottom:642.885000px;}
.y188{bottom:643.605000px;}
.y16{bottom:644.145000px;}
.y83{bottom:644.865000px;}
.y15e{bottom:652.065000px;}
.yce{bottom:652.965000px;}
.y10c{bottom:654.225000px;}
.y3f{bottom:662.865000px;}
.y5d{bottom:663.405000px;}
.y15{bottom:664.125000px;}
.yac{bottom:664.665000px;}
.y82{bottom:664.845000px;}
.yc9{bottom:672.225000px;}
.y15d{bottom:672.585000px;}
.y10b{bottom:672.945000px;}
.y3e{bottom:683.385000px;}
.y14{bottom:683.925000px;}
.y187{bottom:684.645000px;}
.yab{bottom:684.825000px;}
.y81{bottom:685.185000px;}
.y10a{bottom:691.665000px;}
.y15c{bottom:693.105000px;}
.y13{bottom:703.905000px;}
.y18b{bottom:704.085000px;}
.y5c{bottom:704.445000px;}
.yaa{bottom:705.165000px;}
.y80{bottom:705.705000px;}
.y109{bottom:710.385000px;}
.y15b{bottom:713.625000px;}
.y12{bottom:723.705000px;}
.y3d{bottom:724.425000px;}
.y5b{bottom:724.965000px;}
.ya9{bottom:725.505000px;}
.y7f{bottom:726.225000px;}
.y108{bottom:729.105000px;}
.y159{bottom:730.005000px;}
.y11{bottom:743.685000px;}
.y3c{bottom:744.945000px;}
.y5a{bottom:745.125000px;}
.ye5{bottom:745.485000px;}
.ya8{bottom:746.025000px;}
.y7e{bottom:746.745000px;}
.y107{bottom:747.825000px;}
.yc8{bottom:750.165000px;}
.y10{bottom:763.485000px;}
.y3b{bottom:765.285000px;}
.ye4{bottom:766.005000px;}
.y106{bottom:766.365000px;}
.ya7{bottom:766.545000px;}
.y7d{bottom:767.265000px;}
.yc7{bottom:770.685000px;}
.yf{bottom:783.465000px;}
.y105{bottom:785.085000px;}
.y3a{bottom:785.805000px;}
.ye3{bottom:785.985000px;}
.yc6{bottom:786.345000px;}
.y158{bottom:786.705000px;}
.ya6{bottom:787.065000px;}
.y7c{bottom:787.785000px;}
.ye{bottom:803.265000px;}
.y104{bottom:803.805000px;}
.y39{bottom:806.325000px;}
.ya5{bottom:807.585000px;}
.y7b{bottom:808.305000px;}
.y103{bottom:822.525000px;}
.yd{bottom:823.425000px;}
.y157{bottom:824.685000px;}
.y38{bottom:826.845000px;}
.y186{bottom:827.745000px;}
.ya4{bottom:828.105000px;}
.y7a{bottom:828.285000px;}
.y102{bottom:841.245000px;}
.yc{bottom:845.745000px;}
.y37{bottom:847.365000px;}
.y185{bottom:848.085000px;}
.y79{bottom:848.265000px;}
.ya3{bottom:848.625000px;}
.y101{bottom:860.010000px;}
.y151{bottom:862.710000px;}
.yb{bottom:865.950000px;}
.y36{bottom:867.930000px;}
.y78{bottom:868.110000px;}
.y184{bottom:868.470000px;}
.ya2{bottom:869.190000px;}
.y100{bottom:878.550000px;}
.ya{bottom:885.750000px;}
.y35{bottom:888.450000px;}
.y183{bottom:888.990000px;}
.ya1{bottom:889.710000px;}
.yff{bottom:897.270000px;}
.y9{bottom:905.730000px;}
.y34{bottom:908.970000px;}
.y182{bottom:909.510000px;}
.ya0{bottom:910.230000px;}
.yfe{bottom:915.990000px;}
.y8{bottom:925.710000px;}
.y33{bottom:929.490000px;}
.y181{bottom:930.030000px;}
.y9f{bottom:930.750000px;}
.yfd{bottom:934.710000px;}
.y7{bottom:947.490000px;}
.y32{bottom:950.010000px;}
.y180{bottom:950.190000px;}
.y9e{bottom:950.730000px;}
.yfc{bottom:953.430000px;}
.y6{bottom:969.270000px;}
.y31{bottom:970.530000px;}
.y9d{bottom:970.710000px;}
.yfb{bottom:972.150000px;}
.y3{bottom:992.670000px;}
.y2{bottom:1018.770000px;}
.y1{bottom:1038.210000px;}
.hc{height:18.540000px;}
.h12{height:37.260000px;}
.he{height:37.296000px;}
.hb{height:43.419375px;}
.hd{height:44.878359px;}
.hf{height:44.925469px;}
.h8{height:48.127500px;}
.h10{height:48.224531px;}
.h6{height:48.353906px;}
.h4{height:49.744687px;}
.h5{height:52.312500px;}
.ha{height:54.070312px;}
.h13{height:55.800000px;}
.h11{height:61.200000px;}
.h3{height:62.028281px;}
.h14{height:68.084282px;}
.h7{height:68.956875px;}
.h9{height:72.360000px;}
.h1{height:74.004654px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.wa{width:75.276000px;}
.w5{width:77.940000px;}
.w9{width:78.840000px;}
.w3{width:83.160000px;}
.w4{width:83.196000px;}
.w7{width:87.660000px;}
.w8{width:87.696000px;}
.w6{width:113.796000px;}
.w1{width:120.456000px;}
.w2{width:126.936000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1d{left:34.425000px;}
.x22{left:105.156000px;}
.x5{left:108.036000px;}
.xd{left:111.636000px;}
.x8{left:119.016000px;}
.xc{left:124.416000px;}
.x1a{left:125.856000px;}
.x10{left:133.776000px;}
.xe{left:135.036000px;}
.x7{left:165.090000px;}
.x19{left:180.930000px;}
.x2{left:195.510000px;}
.x3{left:203.790000px;}
.x12{left:211.710000px;}
.x1c{left:236.010000px;}
.x11{left:273.855000px;}
.x14{left:332.895000px;}
.x1e{left:350.535000px;}
.xa{left:354.495000px;}
.x1b{left:400.755000px;}
.x9{left:414.795000px;}
.xb{left:427.035000px;}
.x1f{left:438.915000px;}
.x6{left:459.105000px;}
.x15{left:460.545000px;}
.x20{left:527.325000px;}
.x16{left:544.605000px;}
.x1{left:555.945000px;}
.x21{left:606.885000px;}
.xf{left:610.665000px;}
.x17{left:628.530000px;}
.x18{left:657.870000px;}
.x4{left:785.310000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.645333pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.634667pt;}
.ls1a{letter-spacing:-0.493867pt;}
.ls2{letter-spacing:-0.332800pt;}
.lse{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.148267pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.005120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.005120pt;}
.ls18{letter-spacing:0.079467pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.135467pt;}
.ls1b{letter-spacing:0.146133pt;}
.ls3{letter-spacing:0.153600pt;}
.ls13{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.250027pt;}
.ls5{letter-spacing:0.271360pt;}
.ls9{letter-spacing:0.271467pt;}
.ls16{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:6.031360pt;}
.ls1d{letter-spacing:6.400000pt;}
.lsd{letter-spacing:16.271360pt;}
.ls7{letter-spacing:19.471360pt;}
.lsc{letter-spacing:22.671360pt;}
.ls8{letter-spacing:25.871360pt;}
.ls17{letter-spacing:35.471360pt;}
.ls0{letter-spacing:79.610027pt;}
.ws1{word-spacing:-58.880000pt;}
.wsd{word-spacing:-35.328000pt;}
.wsc{word-spacing:-35.200000pt;}
.ws0{word-spacing:-20.633600pt;}
.ws6{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.ws13{word-spacing:-14.866133pt;}
.ws3{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.799467pt;}
.ws15{word-spacing:-14.725120pt;}
.ws2{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.714880pt;}
.ws14{word-spacing:-14.622933pt;}
.ws5{word-spacing:-14.571733pt;}
.ws7{word-spacing:-14.486933pt;}
.ws8{word-spacing:-14.448533pt;}
.ws12{word-spacing:-14.226133pt;}
.ws11{word-spacing:-14.085333pt;}
.ws16{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.201280pt;}
._2{width:2.795947pt;}
._3{width:4.416000pt;}
._8{width:6.182400pt;}
._9{width:7.086080pt;}
._a{width:8.066560pt;}
._b{width:9.323520pt;}
._12{width:10.968747pt;}
._d{width:11.952640pt;}
._e{width:12.999467pt;}
._13{width:15.629227pt;}
._f{width:16.604160pt;}
._10{width:17.587200pt;}
._11{width:18.959360pt;}
._7{width:20.177920pt;}
._6{width:21.196800pt;}
._15{width:22.241707pt;}
._17{width:23.198720pt;}
._1c{width:24.199680pt;}
._c{width:25.141760pt;}
._14{width:26.201600pt;}
._2a{width:27.281920pt;}
._18{width:28.262400pt;}
._19{width:29.263360pt;}
._1a{width:31.036587pt;}
._1b{width:33.425920pt;}
._16{width:34.327040pt;}
._5{width:35.386880pt;}
._4{width:36.328960pt;}
._32{width:37.271040pt;}
._33{width:38.822400pt;}
._27{width:41.922560pt;}
._24{width:42.891947pt;}
._25{width:44.220587pt;}
._1e{width:65.003520pt;}
._1d{width:65.966080pt;}
._38{width:67.770880pt;}
._37{width:69.184000pt;}
._2b{width:94.679040pt;}
._35{width:95.698347pt;}
._34{width:96.622080pt;}
._2d{width:102.978987pt;}
._2c{width:104.276480pt;}
._29{width:108.436480pt;}
._28{width:109.478400pt;}
._2f{width:147.258880pt;}
._30{width:148.515840pt;}
._1f{width:158.269440pt;}
._20{width:159.290880pt;}
._2e{width:163.412480pt;}
._31{width:181.056000pt;}
._21{width:247.119360pt;}
._22{width:248.768000pt;}
._26{width:267.489707pt;}
._23{width:282.705920pt;}
._36{width:622.264320pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:3.680000pt;}
.y154{bottom:6.720000pt;}
.yd2{bottom:12.000000pt;}
.y156{bottom:14.720000pt;}
.ycc{bottom:19.680000pt;}
.yd1{bottom:20.320000pt;}
.y152{bottom:22.720000pt;}
.yca{bottom:27.680000pt;}
.y155{bottom:30.720000pt;}
.ycb{bottom:35.840000pt;}
.y15a{bottom:36.800000pt;}
.y153{bottom:38.880000pt;}
.y5{bottom:51.840000pt;}
.y4{bottom:70.560000pt;}
.y9c{bottom:99.840000pt;}
.yfa{bottom:101.120000pt;}
.y150{bottom:105.120000pt;}
.y30{bottom:105.600000pt;}
.y177{bottom:106.240000pt;}
.y126{bottom:109.760000pt;}
.y59{bottom:115.200000pt;}
.ye2{bottom:115.680000pt;}
.y77{bottom:115.840000pt;}
.y198{bottom:116.320000pt;}
.yc5{bottom:116.800000pt;}
.yf9{bottom:117.760000pt;}
.y9b{bottom:117.920000pt;}
.y14f{bottom:123.360000pt;}
.y2f{bottom:123.840000pt;}
.y176{bottom:124.320000pt;}
.y13f{bottom:124.960000pt;}
.y125{bottom:126.400000pt;}
.y58{bottom:133.440000pt;}
.ye1{bottom:133.920000pt;}
.y76{bottom:134.080000pt;}
.yf8{bottom:134.400000pt;}
.y197{bottom:134.560000pt;}
.yc4{bottom:135.040000pt;}
.y9a{bottom:136.160000pt;}
.y14e{bottom:141.600000pt;}
.y2e{bottom:142.080000pt;}
.y175{bottom:142.560000pt;}
.y124{bottom:143.040000pt;}
.y13e{bottom:143.200000pt;}
.yf7{bottom:151.040000pt;}
.y57{bottom:151.680000pt;}
.y75{bottom:152.160000pt;}
.y196{bottom:152.800000pt;}
.yc3{bottom:153.280000pt;}
.y99{bottom:154.400000pt;}
.y123{bottom:159.680000pt;}
.y14d{bottom:159.840000pt;}
.y2d{bottom:160.320000pt;}
.y174{bottom:160.800000pt;}
.y13d{bottom:161.440000pt;}
.yf6{bottom:167.706667pt;}
.y56{bottom:169.946667pt;}
.y74{bottom:170.426667pt;}
.y195{bottom:171.066667pt;}
.yc2{bottom:171.546667pt;}
.y98{bottom:172.666667pt;}
.y122{bottom:176.346667pt;}
.y14c{bottom:178.106667pt;}
.y2c{bottom:178.586667pt;}
.y173{bottom:179.066667pt;}
.y13c{bottom:179.706667pt;}
.yf5{bottom:184.346667pt;}
.y55{bottom:188.186667pt;}
.ye0{bottom:188.346667pt;}
.y73{bottom:188.666667pt;}
.y194{bottom:189.306667pt;}
.yc1{bottom:189.786667pt;}
.y97{bottom:190.906667pt;}
.y121{bottom:192.986667pt;}
.y14b{bottom:196.346667pt;}
.y2b{bottom:196.826667pt;}
.y172{bottom:197.306667pt;}
.y13b{bottom:197.946667pt;}
.yf4{bottom:200.826667pt;}
.ydf{bottom:206.266667pt;}
.y54{bottom:206.426667pt;}
.y72{bottom:206.906667pt;}
.y193{bottom:207.546667pt;}
.y17f{bottom:207.706667pt;}
.yc0{bottom:208.026667pt;}
.y96{bottom:209.146667pt;}
.y120{bottom:209.626667pt;}
.y14a{bottom:214.426667pt;}
.y2a{bottom:215.066667pt;}
.y171{bottom:215.546667pt;}
.y13a{bottom:216.186667pt;}
.yf3{bottom:217.466667pt;}
.yde{bottom:224.506667pt;}
.y53{bottom:224.666667pt;}
.y71{bottom:225.146667pt;}
.y17e{bottom:225.626667pt;}
.y11f{bottom:226.106667pt;}
.ybf{bottom:226.266667pt;}
.y95{bottom:227.386667pt;}
.y149{bottom:232.666667pt;}
.y29{bottom:233.306667pt;}
.y170{bottom:233.786667pt;}
.yf2{bottom:234.106667pt;}
.y139{bottom:234.426667pt;}
.ydd{bottom:242.746667pt;}
.y52{bottom:242.906667pt;}
.y70{bottom:243.386667pt;}
.y17d{bottom:243.866667pt;}
.ybe{bottom:244.506667pt;}
.y94{bottom:245.626667pt;}
.yf1{bottom:250.746667pt;}
.y148{bottom:250.906667pt;}
.y28{bottom:251.386667pt;}
.y16f{bottom:252.026667pt;}
.y138{bottom:252.666667pt;}
.y11e{bottom:259.386667pt;}
.ydc{bottom:260.986667pt;}
.y51{bottom:261.146667pt;}
.y6f{bottom:261.626667pt;}
.y17c{bottom:262.106667pt;}
.ybd{bottom:262.746667pt;}
.y93{bottom:263.866667pt;}
.yf0{bottom:267.386667pt;}
.y147{bottom:268.826667pt;}
.y27{bottom:269.626667pt;}
.y16e{bottom:269.786667pt;}
.y137{bottom:270.426667pt;}
.y11d{bottom:276.026667pt;}
.y50{bottom:279.226667pt;}
.y6e{bottom:279.866667pt;}
.y17b{bottom:280.346667pt;}
.ybc{bottom:280.986667pt;}
.y92{bottom:281.946667pt;}
.yef{bottom:284.026667pt;}
.y146{bottom:286.426667pt;}
.y26{bottom:287.866667pt;}
.y136{bottom:288.506667pt;}
.y11c{bottom:292.666667pt;}
.y4f{bottom:297.466667pt;}
.y6d{bottom:298.106667pt;}
.y17a{bottom:298.586667pt;}
.ybb{bottom:299.226667pt;}
.y91{bottom:300.186667pt;}
.yee{bottom:300.666667pt;}
.y145{bottom:304.186667pt;}
.y25{bottom:305.786667pt;}
.y16d{bottom:306.106667pt;}
.y135{bottom:306.746667pt;}
.y11b{bottom:309.306667pt;}
.y4e{bottom:315.706667pt;}
.y6c{bottom:316.346667pt;}
.y179{bottom:316.506667pt;}
.y192{bottom:316.826667pt;}
.yed{bottom:316.986667pt;}
.yba{bottom:317.306667pt;}
.y90{bottom:318.426667pt;}
.y144{bottom:322.266667pt;}
.y24{bottom:323.546667pt;}
.y16c{bottom:324.346667pt;}
.y134{bottom:324.986667pt;}
.y11a{bottom:325.786667pt;}
.y4d{bottom:333.946667pt;}
.y6b{bottom:334.586667pt;}
.yec{bottom:335.066667pt;}
.yb9{bottom:335.546667pt;}
.y8f{bottom:336.666667pt;}
.y143{bottom:340.506667pt;}
.y23{bottom:341.946667pt;}
.y119{bottom:342.426667pt;}
.y16b{bottom:342.586667pt;}
.y133{bottom:343.226667pt;}
.y4c{bottom:352.186667pt;}
.y6a{bottom:352.666667pt;}
.yeb{bottom:353.306667pt;}
.yb8{bottom:353.786667pt;}
.y8e{bottom:354.586667pt;}
.y142{bottom:358.746667pt;}
.y118{bottom:359.066667pt;}
.y22{bottom:360.346667pt;}
.y16a{bottom:360.826667pt;}
.y132{bottom:361.466667pt;}
.ydb{bottom:369.986667pt;}
.y4b{bottom:370.466667pt;}
.y69{bottom:370.946667pt;}
.yea{bottom:371.586667pt;}
.yb7{bottom:372.066667pt;}
.y8d{bottom:372.706667pt;}
.y117{bottom:375.746667pt;}
.y141{bottom:376.866667pt;}
.y21{bottom:378.146667pt;}
.y169{bottom:379.106667pt;}
.y131{bottom:379.746667pt;}
.yda{bottom:388.066667pt;}
.y4a{bottom:388.706667pt;}
.y68{bottom:389.186667pt;}
.ye9{bottom:389.826667pt;}
.yb6{bottom:390.306667pt;}
.y8c{bottom:390.786667pt;}
.y116{bottom:392.386667pt;}
.y140{bottom:395.106667pt;}
.y20{bottom:395.746667pt;}
.y168{bottom:397.346667pt;}
.y130{bottom:397.506667pt;}
.yd9{bottom:406.306667pt;}
.y49{bottom:406.946667pt;}
.y67{bottom:407.426667pt;}
.ye8{bottom:408.066667pt;}
.yb5{bottom:408.546667pt;}
.y8b{bottom:409.026667pt;}
.y12b{bottom:409.186667pt;}
.y1f{bottom:413.506667pt;}
.y12f{bottom:415.426667pt;}
.y167{bottom:415.586667pt;}
.yd8{bottom:424.546667pt;}
.y48{bottom:425.186667pt;}
.y178{bottom:425.346667pt;}
.y115{bottom:425.506667pt;}
.y66{bottom:425.666667pt;}
.ye7{bottom:426.306667pt;}
.yb4{bottom:426.786667pt;}
.y8a{bottom:427.266667pt;}
.y12a{bottom:427.426667pt;}
.y1e{bottom:431.106667pt;}
.y12e{bottom:432.066667pt;}
.y166{bottom:433.826667pt;}
.y114{bottom:442.306667pt;}
.yd7{bottom:442.786667pt;}
.y47{bottom:443.426667pt;}
.y65{bottom:443.906667pt;}
.ye6{bottom:444.066667pt;}
.y191{bottom:444.386667pt;}
.yb3{bottom:445.026667pt;}
.y89{bottom:445.506667pt;}
.y129{bottom:445.666667pt;}
.y12d{bottom:448.706667pt;}
.y1d{bottom:448.866667pt;}
.y165{bottom:451.906667pt;}
.y113{bottom:460.546667pt;}
.yd6{bottom:461.026667pt;}
.y46{bottom:461.666667pt;}
.y64{bottom:462.146667pt;}
.y190{bottom:462.626667pt;}
.yb2{bottom:463.266667pt;}
.y88{bottom:463.746667pt;}
.y12c{bottom:465.186667pt;}
.y1c{bottom:466.466667pt;}
.y164{bottom:470.146667pt;}
.y112{bottom:478.786667pt;}
.yd5{bottom:479.266667pt;}
.y45{bottom:479.746667pt;}
.y63{bottom:480.386667pt;}
.y18f{bottom:480.866667pt;}
.yb1{bottom:481.506667pt;}
.y128{bottom:481.826667pt;}
.y87{bottom:481.986667pt;}
.y1b{bottom:484.226667pt;}
.y163{bottom:488.386667pt;}
.y111{bottom:497.026667pt;}
.yd4{bottom:497.506667pt;}
.y44{bottom:497.986667pt;}
.y127{bottom:498.466667pt;}
.y62{bottom:498.626667pt;}
.y18e{bottom:499.106667pt;}
.yb0{bottom:499.746667pt;}
.y86{bottom:500.226667pt;}
.y1a{bottom:501.826667pt;}
.y162{bottom:506.626667pt;}
.yd3{bottom:512.066667pt;}
.y110{bottom:515.106667pt;}
.y43{bottom:516.226667pt;}
.y61{bottom:516.866667pt;}
.y18d{bottom:517.346667pt;}
.yaf{bottom:517.826667pt;}
.y85{bottom:518.466667pt;}
.y19{bottom:519.586667pt;}
.y161{bottom:524.866667pt;}
.yd0{bottom:529.346667pt;}
.y10f{bottom:531.746667pt;}
.y42{bottom:534.466667pt;}
.y60{bottom:535.106667pt;}
.y18c{bottom:535.266667pt;}
.y18a{bottom:535.746667pt;}
.yae{bottom:536.066667pt;}
.y84{bottom:536.706667pt;}
.y18{bottom:537.186667pt;}
.y160{bottom:543.106667pt;}
.y10e{bottom:548.386667pt;}
.y41{bottom:552.706667pt;}
.y5f{bottom:553.346667pt;}
.y189{bottom:553.826667pt;}
.yad{bottom:554.306667pt;}
.y17{bottom:554.946667pt;}
.y15f{bottom:561.346667pt;}
.ycf{bottom:563.133333pt;}
.y10d{bottom:564.893333pt;}
.y40{bottom:570.973333pt;}
.y5e{bottom:571.453333pt;}
.y188{bottom:572.093333pt;}
.y16{bottom:572.573333pt;}
.y83{bottom:573.213333pt;}
.y15e{bottom:579.613333pt;}
.yce{bottom:580.413333pt;}
.y10c{bottom:581.533333pt;}
.y3f{bottom:589.213333pt;}
.y5d{bottom:589.693333pt;}
.y15{bottom:590.333333pt;}
.yac{bottom:590.813333pt;}
.y82{bottom:590.973333pt;}
.yc9{bottom:597.533333pt;}
.y15d{bottom:597.853333pt;}
.y10b{bottom:598.173333pt;}
.y3e{bottom:607.453333pt;}
.y14{bottom:607.933333pt;}
.y187{bottom:608.573333pt;}
.yab{bottom:608.733333pt;}
.y81{bottom:609.053333pt;}
.y10a{bottom:614.813333pt;}
.y15c{bottom:616.093333pt;}
.y13{bottom:625.693333pt;}
.y18b{bottom:625.853333pt;}
.y5c{bottom:626.173333pt;}
.yaa{bottom:626.813333pt;}
.y80{bottom:627.293333pt;}
.y109{bottom:631.453333pt;}
.y15b{bottom:634.333333pt;}
.y12{bottom:643.293333pt;}
.y3d{bottom:643.933333pt;}
.y5b{bottom:644.413333pt;}
.ya9{bottom:644.893333pt;}
.y7f{bottom:645.533333pt;}
.y108{bottom:648.093333pt;}
.y159{bottom:648.893333pt;}
.y11{bottom:661.053333pt;}
.y3c{bottom:662.173333pt;}
.y5a{bottom:662.333333pt;}
.ye5{bottom:662.653333pt;}
.ya8{bottom:663.133333pt;}
.y7e{bottom:663.773333pt;}
.y107{bottom:664.733333pt;}
.yc8{bottom:666.813333pt;}
.y10{bottom:678.653333pt;}
.y3b{bottom:680.253333pt;}
.ye4{bottom:680.893333pt;}
.y106{bottom:681.213333pt;}
.ya7{bottom:681.373333pt;}
.y7d{bottom:682.013333pt;}
.yc7{bottom:685.053333pt;}
.yf{bottom:696.413333pt;}
.y105{bottom:697.853333pt;}
.y3a{bottom:698.493333pt;}
.ye3{bottom:698.653333pt;}
.yc6{bottom:698.973333pt;}
.y158{bottom:699.293333pt;}
.ya6{bottom:699.613333pt;}
.y7c{bottom:700.253333pt;}
.ye{bottom:714.013333pt;}
.y104{bottom:714.493333pt;}
.y39{bottom:716.733333pt;}
.ya5{bottom:717.853333pt;}
.y7b{bottom:718.493333pt;}
.y103{bottom:731.133333pt;}
.yd{bottom:731.933333pt;}
.y157{bottom:733.053333pt;}
.y38{bottom:734.973333pt;}
.y186{bottom:735.773333pt;}
.ya4{bottom:736.093333pt;}
.y7a{bottom:736.253333pt;}
.y102{bottom:747.773333pt;}
.yc{bottom:751.773333pt;}
.y37{bottom:753.213333pt;}
.y185{bottom:753.853333pt;}
.y79{bottom:754.013333pt;}
.ya3{bottom:754.333333pt;}
.y101{bottom:764.453333pt;}
.y151{bottom:766.853333pt;}
.yb{bottom:769.733333pt;}
.y36{bottom:771.493333pt;}
.y78{bottom:771.653333pt;}
.y184{bottom:771.973333pt;}
.ya2{bottom:772.613333pt;}
.y100{bottom:780.933333pt;}
.ya{bottom:787.333333pt;}
.y35{bottom:789.733333pt;}
.y183{bottom:790.213333pt;}
.ya1{bottom:790.853333pt;}
.yff{bottom:797.573333pt;}
.y9{bottom:805.093333pt;}
.y34{bottom:807.973333pt;}
.y182{bottom:808.453333pt;}
.ya0{bottom:809.093333pt;}
.yfe{bottom:814.213333pt;}
.y8{bottom:822.853333pt;}
.y33{bottom:826.213333pt;}
.y181{bottom:826.693333pt;}
.y9f{bottom:827.333333pt;}
.yfd{bottom:830.853333pt;}
.y7{bottom:842.213333pt;}
.y32{bottom:844.453333pt;}
.y180{bottom:844.613333pt;}
.y9e{bottom:845.093333pt;}
.yfc{bottom:847.493333pt;}
.y6{bottom:861.573333pt;}
.y31{bottom:862.693333pt;}
.y9d{bottom:862.853333pt;}
.yfb{bottom:864.133333pt;}
.y3{bottom:882.373333pt;}
.y2{bottom:905.573333pt;}
.y1{bottom:922.853333pt;}
.hc{height:16.480000pt;}
.h12{height:33.120000pt;}
.he{height:33.152000pt;}
.hb{height:38.595000pt;}
.hd{height:39.891875pt;}
.hf{height:39.933750pt;}
.h8{height:42.780000pt;}
.h10{height:42.866250pt;}
.h6{height:42.981250pt;}
.h4{height:44.217500pt;}
.h5{height:46.500000pt;}
.ha{height:48.062500pt;}
.h13{height:49.600000pt;}
.h11{height:54.400000pt;}
.h3{height:55.136250pt;}
.h14{height:60.519362pt;}
.h7{height:61.295000pt;}
.h9{height:64.320000pt;}
.h1{height:65.781915pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.wa{width:66.912000pt;}
.w5{width:69.280000pt;}
.w9{width:70.080000pt;}
.w3{width:73.920000pt;}
.w4{width:73.952000pt;}
.w7{width:77.920000pt;}
.w8{width:77.952000pt;}
.w6{width:101.152000pt;}
.w1{width:107.072000pt;}
.w2{width:112.832000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1d{left:30.600000pt;}
.x22{left:93.472000pt;}
.x5{left:96.032000pt;}
.xd{left:99.232000pt;}
.x8{left:105.792000pt;}
.xc{left:110.592000pt;}
.x1a{left:111.872000pt;}
.x10{left:118.912000pt;}
.xe{left:120.032000pt;}
.x7{left:146.746667pt;}
.x19{left:160.826667pt;}
.x2{left:173.786667pt;}
.x3{left:181.146667pt;}
.x12{left:188.186667pt;}
.x1c{left:209.786667pt;}
.x11{left:243.426667pt;}
.x14{left:295.906667pt;}
.x1e{left:311.586667pt;}
.xa{left:315.106667pt;}
.x1b{left:356.226667pt;}
.x9{left:368.706667pt;}
.xb{left:379.586667pt;}
.x1f{left:390.146667pt;}
.x6{left:408.093333pt;}
.x15{left:409.373333pt;}
.x20{left:468.733333pt;}
.x16{left:484.093333pt;}
.x1{left:494.173333pt;}
.x21{left:539.453333pt;}
.xf{left:542.813333pt;}
.x17{left:558.693333pt;}
.x18{left:584.773333pt;}
.x4{left:698.053333pt;}
}




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