
    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_682a125e44e00f5897d20e26.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_b6d7080c6bb62fa2fa2772fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_7a179294602ce65c2f72a684.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_1d48206f26059a12d4eaff23.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_793d5f6c9405d312c9e58459.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_5cfa3ecedc9068d9db875380.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_8a70dea5f08dbbb98d5ad8c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933105;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_8fa3d557e40ab38c9002366b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933105;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_69a59c3a28cf899cd3cae35f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-56.160000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls15{letter-spacing:-2.880000px;}
.ls31{letter-spacing:-1.026000px;}
.ls2d{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.414600px;}
.lse{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.262200px;}
.ls1b{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.053280px;}
.lsc{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.864000px;}
.ls8{letter-spacing:1.440000px;}
.ls29{letter-spacing:2.160000px;}
.ls1e{letter-spacing:3.600000px;}
.ls32{letter-spacing:3.780000px;}
.ls1c{letter-spacing:4.320000px;}
.ls1f{letter-spacing:5.160000px;}
.ls28{letter-spacing:6.785280px;}
.ls17{letter-spacing:12.960000px;}
.lsb{letter-spacing:14.400000px;}
.ls25{letter-spacing:17.280000px;}
.ls1d{letter-spacing:18.720000px;}
.ls9{letter-spacing:19.440000px;}
.lsa{letter-spacing:20.160000px;}
.ls27{letter-spacing:39.905280px;}
.ls6{letter-spacing:71.460000px;}
.ls4{letter-spacing:72.180000px;}
.ls5{letter-spacing:93.060000px;}
.ls26{letter-spacing:846.180000px;}
.ls7{letter-spacing:1027.596000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.060000px;}
.ws12{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws13{word-spacing:-16.822200px;}
.ws17{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.450800px;}
.ws1a{word-spacing:-16.297800px;}
.ws14{word-spacing:-16.254600px;}
.ws18{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.732000px;}
.ws1b{word-spacing:-15.534000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wse{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.wsf{word-spacing:-12.060000px;}
.ws19{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-8.052000px;}
._14{margin-left:-6.912000px;}
._7{margin-left:-5.677200px;}
._6{margin-left:-4.128480px;}
._4{margin-left:-2.504880px;}
._2{margin-left:-1.314720px;}
._0{width:1.135440px;}
._8{width:2.459280px;}
._e{width:3.617760px;}
._9{width:5.280480px;}
._15{width:6.304080px;}
._12{width:7.336560px;}
._11{width:9.216000px;}
._a{width:10.368000px;}
._b{width:12.108000px;}
._d{width:13.248000px;}
._10{width:14.772000px;}
._13{width:15.912000px;}
._17{width:16.950720px;}
._c{width:19.440000px;}
._f{width:20.496000px;}
._19{width:27.820800px;}
._18{width:29.304000px;}
._5{width:92.357760px;}
._1{width:186.035520px;}
._3{width:538.717440px;}
.fcb{color:rgb(62,61,64);}
.fca{color:rgb(255,0,0);}
.fc9{color:transparent;}
.fc8{color:rgb(68,114,196);}
.fc6{color:rgb(31,31,31);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(0,0,8);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc7{color:rgb(14,16,26);}
.fc0{color:rgb(0,176,240);}
.fs3{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y12c{bottom:-77.085000px;}
.y12b{bottom:-29.700000px;}
.y38{bottom:-14.220000px;}
.y12a{bottom:-10.980000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.060000px;}
.y9e{bottom:3.240000px;}
.ya8{bottom:3.960000px;}
.y94{bottom:5.400000px;}
.y90{bottom:5.580000px;}
.y85{bottom:5.760000px;}
.y87{bottom:5.790000px;}
.y89{bottom:5.940000px;}
.y8e{bottom:6.300000px;}
.y96{bottom:6.480000px;}
.yb8{bottom:7.920000px;}
.yb0{bottom:11.520000px;}
.y80{bottom:11.880000px;}
.y83{bottom:16.200000px;}
.yc6{bottom:19.260000px;}
.yb1{bottom:19.800000px;}
.y36{bottom:20.340000px;}
.ya7{bottom:21.240000px;}
.y81{bottom:22.680000px;}
.y129{bottom:23.580000px;}
.yb7{bottom:25.200000px;}
.y4{bottom:28.620000px;}
.yaf{bottom:28.800000px;}
.y7f{bottom:31.680000px;}
.yc5{bottom:36.360000px;}
.y128{bottom:40.680000px;}
.yc4{bottom:53.640000px;}
.y127{bottom:57.960000px;}
.yb4{bottom:59.760000px;}
.y8b{bottom:62.820000px;}
.y34{bottom:66.060000px;}
.ye6{bottom:70.200000px;}
.yc3{bottom:70.920000px;}
.y5b{bottom:73.260000px;}
.y126{bottom:75.240000px;}
.yb3{bottom:84.420000px;}
.yc2{bottom:88.200000px;}
.y33{bottom:89.820000px;}
.y8a{bottom:92.340000px;}
.y125{bottom:92.520000px;}
.ye5{bottom:93.960000px;}
.y5a{bottom:97.200000px;}
.yc1{bottom:105.525000px;}
.y124{bottom:109.800000px;}
.y32{bottom:113.580000px;}
.ye4{bottom:117.720000px;}
.y11a{bottom:119.520000px;}
.y59{bottom:120.960000px;}
.y88{bottom:121.860000px;}
.yc0{bottom:122.625000px;}
.y123{bottom:127.080000px;}
.y31{bottom:137.520000px;}
.yc8{bottom:138.285000px;}
.y119{bottom:138.420000px;}
.ybf{bottom:139.905000px;}
.ye3{bottom:141.480000px;}
.y122{bottom:144.180000px;}
.y58{bottom:144.720000px;}
.y86{bottom:151.560000px;}
.yc7{bottom:155.925000px;}
.ybe{bottom:157.185000px;}
.y118{bottom:157.530000px;}
.y30{bottom:161.310000px;}
.y121{bottom:161.460000px;}
.ye2{bottom:165.450000px;}
.y57{bottom:168.510000px;}
.ybd{bottom:174.465000px;}
.y117{bottom:176.430000px;}
.y120{bottom:178.740000px;}
.y84{bottom:181.110000px;}
.y2f{bottom:185.070000px;}
.ye1{bottom:189.210000px;}
.ybc{bottom:191.745000px;}
.y56{bottom:192.450000px;}
.y116{bottom:195.510000px;}
.y11f{bottom:196.020000px;}
.y2e{bottom:208.830000px;}
.ybb{bottom:209.025000px;}
.y82{bottom:210.630000px;}
.ye0{bottom:212.970000px;}
.y11e{bottom:213.330000px;}
.y115{bottom:214.410000px;}
.y55{bottom:216.210000px;}
.yba{bottom:226.125000px;}
.y2d{bottom:232.770000px;}
.y114{bottom:233.310000px;}
.ydf{bottom:236.730000px;}
.y54{bottom:238.710000px;}
.y7e{bottom:241.590000px;}
.y113{bottom:252.390000px;}
.y2c{bottom:256.530000px;}
.y53{bottom:258.510000px;}
.yde{bottom:260.490000px;}
.y112{bottom:271.290000px;}
.y2b{bottom:280.290000px;}
.y52{bottom:281.550000px;}
.ydd{bottom:284.430000px;}
.y111{bottom:290.370000px;}
.y7d{bottom:303.510000px;}
.ydc{bottom:308.190000px;}
.y110{bottom:309.270000px;}
.y2a{bottom:313.050000px;}
.y7c{bottom:326.010000px;}
.y10f{bottom:328.170000px;}
.ydb{bottom:331.950000px;}
.y29{bottom:336.990000px;}
.y10e{bottom:347.250000px;}
.y7b{bottom:349.770000px;}
.yda{bottom:355.710000px;}
.y28{bottom:360.750000px;}
.y10d{bottom:366.150000px;}
.y7a{bottom:373.530000px;}
.yd9{bottom:379.650000px;}
.y27{bottom:384.510000px;}
.y10c{bottom:385.230000px;}
.y79{bottom:397.470000px;}
.yd8{bottom:403.455000px;}
.y10b{bottom:404.175000px;}
.y26{bottom:408.315000px;}
.y10a{bottom:423.075000px;}
.yd7{bottom:427.215000px;}
.y78{bottom:430.275000px;}
.y25{bottom:432.075000px;}
.y109{bottom:442.155000px;}
.y77{bottom:454.035000px;}
.y24{bottom:456.015000px;}
.yd6{bottom:459.975000px;}
.y108{bottom:461.055000px;}
.y76{bottom:477.795000px;}
.y23{bottom:479.775000px;}
.y107{bottom:480.135000px;}
.yd5{bottom:483.915000px;}
.y106{bottom:499.035000px;}
.y75{bottom:501.735000px;}
.y22{bottom:503.535000px;}
.yd4{bottom:507.675000px;}
.yb2{bottom:508.035000px;}
.y105{bottom:518.115000px;}
.y74{bottom:525.495000px;}
.y21{bottom:527.295000px;}
.yd3{bottom:531.435000px;}
.y104{bottom:537.015000px;}
.y73{bottom:549.255000px;}
.y20{bottom:551.235000px;}
.yd2{bottom:555.195000px;}
.y103{bottom:555.915000px;}
.y51{bottom:565.275000px;}
.yae{bottom:569.055000px;}
.y72{bottom:573.015000px;}
.y1f{bottom:574.995000px;}
.yd1{bottom:579.135000px;}
.yad{bottom:587.055000px;}
.y50{bottom:587.955000px;}
.y102{bottom:593.895000px;}
.y1e{bottom:598.755000px;}
.yd0{bottom:602.895000px;}
.yac{bottom:605.055000px;}
.y71{bottom:605.955000px;}
.y4f{bottom:611.715000px;}
.y101{bottom:612.975000px;}
.y1d{bottom:622.515000px;}
.yab{bottom:623.055000px;}
.ycf{bottom:626.655000px;}
.y70{bottom:629.715000px;}
.y100{bottom:631.875000px;}
.y4e{bottom:635.475000px;}
.yaa{bottom:641.055000px;}
.y1c{bottom:646.455000px;}
.yce{bottom:650.445000px;}
.yff{bottom:650.805000px;}
.y6f{bottom:653.505000px;}
.ya6{bottom:659.085000px;}
.y4d{bottom:659.265000px;}
.yfe{bottom:669.885000px;}
.y1b{bottom:670.245000px;}
.ycd{bottom:674.385000px;}
.ya9{bottom:677.085000px;}
.y6e{bottom:677.265000px;}
.y4c{bottom:683.025000px;}
.yfd{bottom:688.785000px;}
.y1a{bottom:694.005000px;}
.ycc{bottom:698.145000px;}
.y6d{bottom:701.025000px;}
.y4b{bottom:706.965000px;}
.yfc{bottom:707.865000px;}
.ya5{bottom:710.385000px;}
.y19{bottom:717.765000px;}
.ycb{bottom:721.905000px;}
.y6c{bottom:724.965000px;}
.yfb{bottom:726.765000px;}
.y4a{bottom:730.725000px;}
.ya4{bottom:732.885000px;}
.y18{bottom:741.705000px;}
.yfa{bottom:745.665000px;}
.y6b{bottom:748.725000px;}
.y49{bottom:754.485000px;}
.yca{bottom:754.665000px;}
.ya3{bottom:756.645000px;}
.y17{bottom:761.685000px;}
.yf9{bottom:764.745000px;}
.y6a{bottom:772.485000px;}
.y48{bottom:778.245000px;}
.ya2{bottom:780.405000px;}
.y16{bottom:781.485000px;}
.yf8{bottom:783.645000px;}
.yc9{bottom:787.605000px;}
.y69{bottom:796.245000px;}
.y15{bottom:801.285000px;}
.y47{bottom:802.185000px;}
.yf7{bottom:802.725000px;}
.ya1{bottom:804.345000px;}
.yb9{bottom:805.065000px;}
.y68{bottom:820.185000px;}
.y14{bottom:821.085000px;}
.yf6{bottom:821.625000px;}
.ya0{bottom:826.845000px;}
.y46{bottom:834.945000px;}
.yf5{bottom:840.525000px;}
.y67{bottom:843.945000px;}
.y9f{bottom:850.605000px;}
.y13{bottom:854.925000px;}
.y45{bottom:858.705000px;}
.yf4{bottom:859.605000px;}
.y9d{bottom:868.605000px;}
.y35{bottom:872.025000px;}
.y66{bottom:876.705000px;}
.yf3{bottom:878.505000px;}
.y44{bottom:882.465000px;}
.y11c{bottom:894.345000px;}
.yf2{bottom:897.585000px;}
.y65{bottom:900.510000px;}
.y9c{bottom:901.950000px;}
.y43{bottom:906.450000px;}
.y11b{bottom:913.290000px;}
.yf1{bottom:916.530000px;}
.y9b{bottom:923.910000px;}
.y64{bottom:924.450000px;}
.y42{bottom:930.210000px;}
.y12{bottom:930.750000px;}
.yf0{bottom:935.430000px;}
.y11d{bottom:941.550000px;}
.y9a{bottom:946.410000px;}
.y63{bottom:948.210000px;}
.y11{bottom:949.290000px;}
.yef{bottom:954.510000px;}
.y41{bottom:962.970000px;}
.y99{bottom:970.170000px;}
.y10{bottom:971.790000px;}
.y62{bottom:971.970000px;}
.yee{bottom:973.410000px;}
.yf{bottom:983.850000px;}
.y40{bottom:986.730000px;}
.yed{bottom:992.490000px;}
.y98{bottom:993.930000px;}
.y61{bottom:995.730000px;}
.ye{bottom:1006.350000px;}
.y3f{bottom:1010.670000px;}
.y97{bottom:1011.390000px;}
.yd{bottom:1018.410000px;}
.y60{bottom:1019.670000px;}
.yec{bottom:1030.470000px;}
.y95{bottom:1032.450000px;}
.y3e{bottom:1034.430000px;}
.yc{bottom:1040.910000px;}
.y5f{bottom:1043.430000px;}
.yb6{bottom:1045.950000px;}
.yeb{bottom:1049.370000px;}
.y93{bottom:1053.690000px;}
.yb{bottom:1058.010000px;}
.y3d{bottom:1067.190000px;}
.yea{bottom:1068.270000px;}
.ya{bottom:1070.070000px;}
.y92{bottom:1073.850000px;}
.ye9{bottom:1087.350000px;}
.y3c{bottom:1090.950000px;}
.y9{bottom:1091.310000px;}
.y91{bottom:1094.910000px;}
.y5e{bottom:1099.950000px;}
.yb5{bottom:1101.210000px;}
.ye8{bottom:1106.250000px;}
.y8{bottom:1109.850000px;}
.y3b{bottom:1114.890000px;}
.y8f{bottom:1115.970000px;}
.y5d{bottom:1123.890000px;}
.ye7{bottom:1125.330000px;}
.y7{bottom:1133.970000px;}
.y8d{bottom:1136.310000px;}
.y3a{bottom:1138.650000px;}
.y5c{bottom:1147.680000px;}
.y6{bottom:1156.860000px;}
.y39{bottom:1171.440000px;}
.y8c{bottom:1172.700000px;}
.y5{bottom:1174.140000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1210.320000px;}
.y1{bottom:1227.600000px;}
.h20{height:17.100000px;}
.h21{height:17.136000px;}
.h1e{height:17.280000px;}
.h1d{height:19.440000px;}
.h1b{height:19.620000px;}
.h1c{height:20.340000px;}
.h1a{height:20.376000px;}
.ha{height:27.147656px;}
.h9{height:27.432422px;}
.h17{height:28.800000px;}
.h18{height:28.836000px;}
.h19{height:28.980000px;}
.h16{height:30.240000px;}
.h11{height:34.416000px;}
.h1f{height:35.100000px;}
.h23{height:39.240000px;}
.h13{height:40.472227px;}
.h5{height:41.726953px;}
.h7{height:41.843672px;}
.h2{height:42.164648px;}
.h22{height:42.660000px;}
.h3{height:45.549492px;}
.h15{height:45.720000px;}
.hb{height:46.127812px;}
.h4{height:46.251562px;}
.hc{height:46.736719px;}
.h12{height:48.027656px;}
.h25{height:48.224531px;}
.h8{height:48.312422px;}
.hf{height:50.273438px;}
.hd{height:50.488594px;}
.h10{height:50.800781px;}
.h26{height:52.918594px;}
.he{height:54.878906px;}
.h6{height:59.436914px;}
.h14{height:61.043203px;}
.h27{height:227.370000px;}
.h24{height:240.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:41.760000px;}
.w13{width:41.940000px;}
.wb{width:51.660000px;}
.wf{width:51.696000px;}
.w10{width:52.380000px;}
.w8{width:54.180000px;}
.w9{width:54.360000px;}
.w7{width:54.576000px;}
.wa{width:57.456000px;}
.w1f{width:61.416000px;}
.we{width:62.820000px;}
.w11{width:62.856000px;}
.w1b{width:63.000000px;}
.w1c{width:63.180000px;}
.w6{width:65.160000px;}
.w20{width:73.080000px;}
.w16{width:73.620000px;}
.w1d{width:73.656000px;}
.w18{width:84.240000px;}
.w1e{width:86.580000px;}
.w17{width:94.896000px;}
.w22{width:122.976000px;}
.w14{width:137.376000px;}
.w23{width:138.996000px;}
.w19{width:148.176000px;}
.w15{width:158.790000px;}
.w4{width:175.170000px;}
.wc{width:180.210000px;}
.wd{width:370.155000px;}
.w5{width:395.895000px;}
.w1a{width:424.515000px;}
.w21{width:488.085000px;}
.w3{width:732.570000px;}
.w24{width:782.460000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x13{left:10.800000px;}
.x3f{left:11.880000px;}
.x2e{left:14.220000px;}
.x2c{left:15.660000px;}
.x2d{left:17.145000px;}
.x3a{left:18.360000px;}
.x4d{left:19.800000px;}
.x2b{left:20.880000px;}
.x29{left:21.960000px;}
.x22{left:23.400000px;}
.x27{left:24.885000px;}
.x43{left:27.720000px;}
.x20{left:28.800000px;}
.x3d{left:30.600000px;}
.x41{left:32.400000px;}
.x51{left:33.840000px;}
.x59{left:35.820000px;}
.x50{left:37.260000px;}
.x49{left:39.420000px;}
.x1b{left:41.400000px;}
.x44{left:46.080000px;}
.x5b{left:50.400000px;}
.x1{left:53.279987px;}
.x11{left:54.719987px;}
.x15{left:56.519987px;}
.x1c{left:61.200000px;}
.x4c{left:62.820000px;}
.x4f{left:64.620000px;}
.x4e{left:66.600000px;}
.x9{left:69.299987px;}
.x55{left:70.740000px;}
.x30{left:74.520000px;}
.x2a{left:76.320000px;}
.x3b{left:78.120000px;}
.x2f{left:80.100000px;}
.x7{left:84.419987px;}
.x1f{left:87.660000px;}
.x34{left:91.260000px;}
.x4{left:103.895987px;}
.x5c{left:108.035987px;}
.xc{left:114.155987px;}
.xb{left:119.915987px;}
.x12{left:129.636000px;}
.x10{left:144.575987px;}
.xd{left:148.895987px;}
.x54{left:149.975987px;}
.x6{left:151.409987px;}
.x1a{left:160.590000px;}
.x33{left:162.030000px;}
.x31{left:163.829987px;}
.x19{left:165.449987px;}
.x32{left:171.030000px;}
.x17{left:185.429987px;}
.x45{left:187.950000px;}
.x53{left:194.609987px;}
.xe{left:204.149987px;}
.x57{left:215.355000px;}
.x56{left:229.575000px;}
.xf{left:256.349987px;}
.x3c{left:267.194987px;}
.x5{left:281.414987px;}
.x8{left:296.354987px;}
.x3e{left:308.595000px;}
.x18{left:318.494987px;}
.x1d{left:336.675000px;}
.x3{left:351.434987px;}
.xa{left:357.554987px;}
.x42{left:363.494987px;}
.x14{left:367.449000px;}
.x46{left:372.495000px;}
.x21{left:402.555000px;}
.x35{left:415.515000px;}
.x47{left:436.395000px;}
.x2{left:446.504987px;}
.x23{left:457.845000px;}
.x36{left:467.925000px;}
.x48{left:510.765000px;}
.x24{left:512.745000px;}
.x37{left:521.025000px;}
.x40{left:542.625000px;}
.x58{left:559.545000px;}
.x25{left:567.645000px;}
.x38{left:574.125000px;}
.x4a{left:598.065000px;}
.x26{left:622.725000px;}
.x39{left:637.710000px;}
.x4b{left:660.210000px;}
.x28{left:680.910000px;}
.x5a{left:683.250000px;}
.x52{left:834.479987px;}
.x16{left:838.259987px;}
@media print{
.v3{vertical-align:-49.920000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls15{letter-spacing:-2.560000pt;}
.ls31{letter-spacing:-0.912000pt;}
.ls2d{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.368533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.233067pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.768000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.360000pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls1f{letter-spacing:4.586667pt;}
.ls28{letter-spacing:6.031360pt;}
.ls17{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.800000pt;}
.ls25{letter-spacing:15.360000pt;}
.ls1d{letter-spacing:16.640000pt;}
.ls9{letter-spacing:17.280000pt;}
.lsa{letter-spacing:17.920000pt;}
.ls27{letter-spacing:35.471360pt;}
.ls6{letter-spacing:63.520000pt;}
.ls4{letter-spacing:64.160000pt;}
.ls5{letter-spacing:82.720000pt;}
.ls26{letter-spacing:752.160000pt;}
.ls7{letter-spacing:913.418667pt;}
.ws3{word-spacing:-18.720000pt;}
.ws12{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws13{word-spacing:-14.953067pt;}
.ws17{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.622933pt;}
.ws1a{word-spacing:-14.486933pt;}
.ws14{word-spacing:-14.448533pt;}
.ws18{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.984000pt;}
.ws1b{word-spacing:-13.808000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws19{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-7.157333pt;}
._14{margin-left:-6.144000pt;}
._7{margin-left:-5.046400pt;}
._6{margin-left:-3.669760pt;}
._4{margin-left:-2.226560pt;}
._2{margin-left:-1.168640pt;}
._0{width:1.009280pt;}
._8{width:2.186027pt;}
._e{width:3.215787pt;}
._9{width:4.693760pt;}
._15{width:5.603627pt;}
._12{width:6.521387pt;}
._11{width:8.192000pt;}
._a{width:9.216000pt;}
._b{width:10.762667pt;}
._d{width:11.776000pt;}
._10{width:13.130667pt;}
._13{width:14.144000pt;}
._17{width:15.067307pt;}
._c{width:17.280000pt;}
._f{width:18.218667pt;}
._19{width:24.729600pt;}
._18{width:26.048000pt;}
._5{width:82.095787pt;}
._1{width:165.364907pt;}
._3{width:478.859947pt;}
.fs3{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y12c{bottom:-68.520000pt;}
.y12b{bottom:-26.400000pt;}
.y38{bottom:-12.640000pt;}
.y12a{bottom:-9.760000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.720000pt;}
.y9e{bottom:2.880000pt;}
.ya8{bottom:3.520000pt;}
.y94{bottom:4.800000pt;}
.y90{bottom:4.960000pt;}
.y85{bottom:5.120000pt;}
.y87{bottom:5.146667pt;}
.y89{bottom:5.280000pt;}
.y8e{bottom:5.600000pt;}
.y96{bottom:5.760000pt;}
.yb8{bottom:7.040000pt;}
.yb0{bottom:10.240000pt;}
.y80{bottom:10.560000pt;}
.y83{bottom:14.400000pt;}
.yc6{bottom:17.120000pt;}
.yb1{bottom:17.600000pt;}
.y36{bottom:18.080000pt;}
.ya7{bottom:18.880000pt;}
.y81{bottom:20.160000pt;}
.y129{bottom:20.960000pt;}
.yb7{bottom:22.400000pt;}
.y4{bottom:25.440000pt;}
.yaf{bottom:25.600000pt;}
.y7f{bottom:28.160000pt;}
.yc5{bottom:32.320000pt;}
.y128{bottom:36.160000pt;}
.yc4{bottom:47.680000pt;}
.y127{bottom:51.520000pt;}
.yb4{bottom:53.120000pt;}
.y8b{bottom:55.840000pt;}
.y34{bottom:58.720000pt;}
.ye6{bottom:62.400000pt;}
.yc3{bottom:63.040000pt;}
.y5b{bottom:65.120000pt;}
.y126{bottom:66.880000pt;}
.yb3{bottom:75.040000pt;}
.yc2{bottom:78.400000pt;}
.y33{bottom:79.840000pt;}
.y8a{bottom:82.080000pt;}
.y125{bottom:82.240000pt;}
.ye5{bottom:83.520000pt;}
.y5a{bottom:86.400000pt;}
.yc1{bottom:93.800000pt;}
.y124{bottom:97.600000pt;}
.y32{bottom:100.960000pt;}
.ye4{bottom:104.640000pt;}
.y11a{bottom:106.240000pt;}
.y59{bottom:107.520000pt;}
.y88{bottom:108.320000pt;}
.yc0{bottom:109.000000pt;}
.y123{bottom:112.960000pt;}
.y31{bottom:122.240000pt;}
.yc8{bottom:122.920000pt;}
.y119{bottom:123.040000pt;}
.ybf{bottom:124.360000pt;}
.ye3{bottom:125.760000pt;}
.y122{bottom:128.160000pt;}
.y58{bottom:128.640000pt;}
.y86{bottom:134.720000pt;}
.yc7{bottom:138.600000pt;}
.ybe{bottom:139.720000pt;}
.y118{bottom:140.026667pt;}
.y30{bottom:143.386667pt;}
.y121{bottom:143.520000pt;}
.ye2{bottom:147.066667pt;}
.y57{bottom:149.786667pt;}
.ybd{bottom:155.080000pt;}
.y117{bottom:156.826667pt;}
.y120{bottom:158.880000pt;}
.y84{bottom:160.986667pt;}
.y2f{bottom:164.506667pt;}
.ye1{bottom:168.186667pt;}
.ybc{bottom:170.440000pt;}
.y56{bottom:171.066667pt;}
.y116{bottom:173.786667pt;}
.y11f{bottom:174.240000pt;}
.y2e{bottom:185.626667pt;}
.ybb{bottom:185.800000pt;}
.y82{bottom:187.226667pt;}
.ye0{bottom:189.306667pt;}
.y11e{bottom:189.626667pt;}
.y115{bottom:190.586667pt;}
.y55{bottom:192.186667pt;}
.yba{bottom:201.000000pt;}
.y2d{bottom:206.906667pt;}
.y114{bottom:207.386667pt;}
.ydf{bottom:210.426667pt;}
.y54{bottom:212.186667pt;}
.y7e{bottom:214.746667pt;}
.y113{bottom:224.346667pt;}
.y2c{bottom:228.026667pt;}
.y53{bottom:229.786667pt;}
.yde{bottom:231.546667pt;}
.y112{bottom:241.146667pt;}
.y2b{bottom:249.146667pt;}
.y52{bottom:250.266667pt;}
.ydd{bottom:252.826667pt;}
.y111{bottom:258.106667pt;}
.y7d{bottom:269.786667pt;}
.ydc{bottom:273.946667pt;}
.y110{bottom:274.906667pt;}
.y2a{bottom:278.266667pt;}
.y7c{bottom:289.786667pt;}
.y10f{bottom:291.706667pt;}
.ydb{bottom:295.066667pt;}
.y29{bottom:299.546667pt;}
.y10e{bottom:308.666667pt;}
.y7b{bottom:310.906667pt;}
.yda{bottom:316.186667pt;}
.y28{bottom:320.666667pt;}
.y10d{bottom:325.466667pt;}
.y7a{bottom:332.026667pt;}
.yd9{bottom:337.466667pt;}
.y27{bottom:341.786667pt;}
.y10c{bottom:342.426667pt;}
.y79{bottom:353.306667pt;}
.yd8{bottom:358.626667pt;}
.y10b{bottom:359.266667pt;}
.y26{bottom:362.946667pt;}
.y10a{bottom:376.066667pt;}
.yd7{bottom:379.746667pt;}
.y78{bottom:382.466667pt;}
.y25{bottom:384.066667pt;}
.y109{bottom:393.026667pt;}
.y77{bottom:403.586667pt;}
.y24{bottom:405.346667pt;}
.yd6{bottom:408.866667pt;}
.y108{bottom:409.826667pt;}
.y76{bottom:424.706667pt;}
.y23{bottom:426.466667pt;}
.y107{bottom:426.786667pt;}
.yd5{bottom:430.146667pt;}
.y106{bottom:443.586667pt;}
.y75{bottom:445.986667pt;}
.y22{bottom:447.586667pt;}
.yd4{bottom:451.266667pt;}
.yb2{bottom:451.586667pt;}
.y105{bottom:460.546667pt;}
.y74{bottom:467.106667pt;}
.y21{bottom:468.706667pt;}
.yd3{bottom:472.386667pt;}
.y104{bottom:477.346667pt;}
.y73{bottom:488.226667pt;}
.y20{bottom:489.986667pt;}
.yd2{bottom:493.506667pt;}
.y103{bottom:494.146667pt;}
.y51{bottom:502.466667pt;}
.yae{bottom:505.826667pt;}
.y72{bottom:509.346667pt;}
.y1f{bottom:511.106667pt;}
.yd1{bottom:514.786667pt;}
.yad{bottom:521.826667pt;}
.y50{bottom:522.626667pt;}
.y102{bottom:527.906667pt;}
.y1e{bottom:532.226667pt;}
.yd0{bottom:535.906667pt;}
.yac{bottom:537.826667pt;}
.y71{bottom:538.626667pt;}
.y4f{bottom:543.746667pt;}
.y101{bottom:544.866667pt;}
.y1d{bottom:553.346667pt;}
.yab{bottom:553.826667pt;}
.ycf{bottom:557.026667pt;}
.y70{bottom:559.746667pt;}
.y100{bottom:561.666667pt;}
.y4e{bottom:564.866667pt;}
.yaa{bottom:569.826667pt;}
.y1c{bottom:574.626667pt;}
.yce{bottom:578.173333pt;}
.yff{bottom:578.493333pt;}
.y6f{bottom:580.893333pt;}
.ya6{bottom:585.853333pt;}
.y4d{bottom:586.013333pt;}
.yfe{bottom:595.453333pt;}
.y1b{bottom:595.773333pt;}
.ycd{bottom:599.453333pt;}
.ya9{bottom:601.853333pt;}
.y6e{bottom:602.013333pt;}
.y4c{bottom:607.133333pt;}
.yfd{bottom:612.253333pt;}
.y1a{bottom:616.893333pt;}
.ycc{bottom:620.573333pt;}
.y6d{bottom:623.133333pt;}
.y4b{bottom:628.413333pt;}
.yfc{bottom:629.213333pt;}
.ya5{bottom:631.453333pt;}
.y19{bottom:638.013333pt;}
.ycb{bottom:641.693333pt;}
.y6c{bottom:644.413333pt;}
.yfb{bottom:646.013333pt;}
.y4a{bottom:649.533333pt;}
.ya4{bottom:651.453333pt;}
.y18{bottom:659.293333pt;}
.yfa{bottom:662.813333pt;}
.y6b{bottom:665.533333pt;}
.y49{bottom:670.653333pt;}
.yca{bottom:670.813333pt;}
.ya3{bottom:672.573333pt;}
.y17{bottom:677.053333pt;}
.yf9{bottom:679.773333pt;}
.y6a{bottom:686.653333pt;}
.y48{bottom:691.773333pt;}
.ya2{bottom:693.693333pt;}
.y16{bottom:694.653333pt;}
.yf8{bottom:696.573333pt;}
.yc9{bottom:700.093333pt;}
.y69{bottom:707.773333pt;}
.y15{bottom:712.253333pt;}
.y47{bottom:713.053333pt;}
.yf7{bottom:713.533333pt;}
.ya1{bottom:714.973333pt;}
.yb9{bottom:715.613333pt;}
.y68{bottom:729.053333pt;}
.y14{bottom:729.853333pt;}
.yf6{bottom:730.333333pt;}
.ya0{bottom:734.973333pt;}
.y46{bottom:742.173333pt;}
.yf5{bottom:747.133333pt;}
.y67{bottom:750.173333pt;}
.y9f{bottom:756.093333pt;}
.y13{bottom:759.933333pt;}
.y45{bottom:763.293333pt;}
.yf4{bottom:764.093333pt;}
.y9d{bottom:772.093333pt;}
.y35{bottom:775.133333pt;}
.y66{bottom:779.293333pt;}
.yf3{bottom:780.893333pt;}
.y44{bottom:784.413333pt;}
.y11c{bottom:794.973333pt;}
.yf2{bottom:797.853333pt;}
.y65{bottom:800.453333pt;}
.y9c{bottom:801.733333pt;}
.y43{bottom:805.733333pt;}
.y11b{bottom:811.813333pt;}
.yf1{bottom:814.693333pt;}
.y9b{bottom:821.253333pt;}
.y64{bottom:821.733333pt;}
.y42{bottom:826.853333pt;}
.y12{bottom:827.333333pt;}
.yf0{bottom:831.493333pt;}
.y11d{bottom:836.933333pt;}
.y9a{bottom:841.253333pt;}
.y63{bottom:842.853333pt;}
.y11{bottom:843.813333pt;}
.yef{bottom:848.453333pt;}
.y41{bottom:855.973333pt;}
.y99{bottom:862.373333pt;}
.y10{bottom:863.813333pt;}
.y62{bottom:863.973333pt;}
.yee{bottom:865.253333pt;}
.yf{bottom:874.533333pt;}
.y40{bottom:877.093333pt;}
.yed{bottom:882.213333pt;}
.y98{bottom:883.493333pt;}
.y61{bottom:885.093333pt;}
.ye{bottom:894.533333pt;}
.y3f{bottom:898.373333pt;}
.y97{bottom:899.013333pt;}
.yd{bottom:905.253333pt;}
.y60{bottom:906.373333pt;}
.yec{bottom:915.973333pt;}
.y95{bottom:917.733333pt;}
.y3e{bottom:919.493333pt;}
.yc{bottom:925.253333pt;}
.y5f{bottom:927.493333pt;}
.yb6{bottom:929.733333pt;}
.yeb{bottom:932.773333pt;}
.y93{bottom:936.613333pt;}
.yb{bottom:940.453333pt;}
.y3d{bottom:948.613333pt;}
.yea{bottom:949.573333pt;}
.ya{bottom:951.173333pt;}
.y92{bottom:954.533333pt;}
.ye9{bottom:966.533333pt;}
.y3c{bottom:969.733333pt;}
.y9{bottom:970.053333pt;}
.y91{bottom:973.253333pt;}
.y5e{bottom:977.733333pt;}
.yb5{bottom:978.853333pt;}
.ye8{bottom:983.333333pt;}
.y8{bottom:986.533333pt;}
.y3b{bottom:991.013333pt;}
.y8f{bottom:991.973333pt;}
.y5d{bottom:999.013333pt;}
.ye7{bottom:1000.293333pt;}
.y7{bottom:1007.973333pt;}
.y8d{bottom:1010.053333pt;}
.y3a{bottom:1012.133333pt;}
.y5c{bottom:1020.160000pt;}
.y6{bottom:1028.320000pt;}
.y39{bottom:1041.280000pt;}
.y8c{bottom:1042.400000pt;}
.y5{bottom:1043.680000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1075.840000pt;}
.y1{bottom:1091.200000pt;}
.h20{height:15.200000pt;}
.h21{height:15.232000pt;}
.h1e{height:15.360000pt;}
.h1d{height:17.280000pt;}
.h1b{height:17.440000pt;}
.h1c{height:18.080000pt;}
.h1a{height:18.112000pt;}
.ha{height:24.131250pt;}
.h9{height:24.384375pt;}
.h17{height:25.600000pt;}
.h18{height:25.632000pt;}
.h19{height:25.760000pt;}
.h16{height:26.880000pt;}
.h11{height:30.592000pt;}
.h1f{height:31.200000pt;}
.h23{height:34.880000pt;}
.h13{height:35.975313pt;}
.h5{height:37.090625pt;}
.h7{height:37.194375pt;}
.h2{height:37.479688pt;}
.h22{height:37.920000pt;}
.h3{height:40.488438pt;}
.h15{height:40.640000pt;}
.hb{height:41.002500pt;}
.h4{height:41.112500pt;}
.hc{height:41.543750pt;}
.h12{height:42.691250pt;}
.h25{height:42.866250pt;}
.h8{height:42.944375pt;}
.hf{height:44.687500pt;}
.hd{height:44.878750pt;}
.h10{height:45.156250pt;}
.h26{height:47.038750pt;}
.he{height:48.781250pt;}
.h6{height:52.832812pt;}
.h14{height:54.260625pt;}
.h27{height:202.106667pt;}
.h24{height:213.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:37.120000pt;}
.w13{width:37.280000pt;}
.wb{width:45.920000pt;}
.wf{width:45.952000pt;}
.w10{width:46.560000pt;}
.w8{width:48.160000pt;}
.w9{width:48.320000pt;}
.w7{width:48.512000pt;}
.wa{width:51.072000pt;}
.w1f{width:54.592000pt;}
.we{width:55.840000pt;}
.w11{width:55.872000pt;}
.w1b{width:56.000000pt;}
.w1c{width:56.160000pt;}
.w6{width:57.920000pt;}
.w20{width:64.960000pt;}
.w16{width:65.440000pt;}
.w1d{width:65.472000pt;}
.w18{width:74.880000pt;}
.w1e{width:76.960000pt;}
.w17{width:84.352000pt;}
.w22{width:109.312000pt;}
.w14{width:122.112000pt;}
.w23{width:123.552000pt;}
.w19{width:131.712000pt;}
.w15{width:141.146667pt;}
.w4{width:155.706667pt;}
.wc{width:160.186667pt;}
.wd{width:329.026667pt;}
.w5{width:351.906667pt;}
.w1a{width:377.346667pt;}
.w21{width:433.853333pt;}
.w3{width:651.173333pt;}
.w24{width:695.520000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x13{left:9.600000pt;}
.x3f{left:10.560000pt;}
.x2e{left:12.640000pt;}
.x2c{left:13.920000pt;}
.x2d{left:15.240000pt;}
.x3a{left:16.320000pt;}
.x4d{left:17.600000pt;}
.x2b{left:18.560000pt;}
.x29{left:19.520000pt;}
.x22{left:20.800000pt;}
.x27{left:22.120000pt;}
.x43{left:24.640000pt;}
.x20{left:25.600000pt;}
.x3d{left:27.200000pt;}
.x41{left:28.800000pt;}
.x51{left:30.080000pt;}
.x59{left:31.840000pt;}
.x50{left:33.120000pt;}
.x49{left:35.040000pt;}
.x1b{left:36.800000pt;}
.x44{left:40.960000pt;}
.x5b{left:44.800000pt;}
.x1{left:47.359988pt;}
.x11{left:48.639988pt;}
.x15{left:50.239988pt;}
.x1c{left:54.400000pt;}
.x4c{left:55.840000pt;}
.x4f{left:57.440000pt;}
.x4e{left:59.200000pt;}
.x9{left:61.599988pt;}
.x55{left:62.880000pt;}
.x30{left:66.240000pt;}
.x2a{left:67.840000pt;}
.x3b{left:69.440000pt;}
.x2f{left:71.200000pt;}
.x7{left:75.039988pt;}
.x1f{left:77.920000pt;}
.x34{left:81.120000pt;}
.x4{left:92.351988pt;}
.x5c{left:96.031988pt;}
.xc{left:101.471988pt;}
.xb{left:106.591988pt;}
.x12{left:115.232000pt;}
.x10{left:128.511988pt;}
.xd{left:132.351988pt;}
.x54{left:133.311988pt;}
.x6{left:134.586655pt;}
.x1a{left:142.746667pt;}
.x33{left:144.026667pt;}
.x31{left:145.626655pt;}
.x19{left:147.066655pt;}
.x32{left:152.026667pt;}
.x17{left:164.826655pt;}
.x45{left:167.066667pt;}
.x53{left:172.986655pt;}
.xe{left:181.466655pt;}
.x57{left:191.426667pt;}
.x56{left:204.066667pt;}
.xf{left:227.866655pt;}
.x3c{left:237.506655pt;}
.x5{left:250.146655pt;}
.x8{left:263.426655pt;}
.x3e{left:274.306667pt;}
.x18{left:283.106655pt;}
.x1d{left:299.266667pt;}
.x3{left:312.386655pt;}
.xa{left:317.826655pt;}
.x42{left:323.106655pt;}
.x14{left:326.621333pt;}
.x46{left:331.106667pt;}
.x21{left:357.826667pt;}
.x35{left:369.346667pt;}
.x47{left:387.906667pt;}
.x2{left:396.893322pt;}
.x23{left:406.973333pt;}
.x36{left:415.933333pt;}
.x48{left:454.013333pt;}
.x24{left:455.773333pt;}
.x37{left:463.133333pt;}
.x40{left:482.333333pt;}
.x58{left:497.373333pt;}
.x25{left:504.573333pt;}
.x38{left:510.333333pt;}
.x4a{left:531.613333pt;}
.x26{left:553.533333pt;}
.x39{left:566.853333pt;}
.x4b{left:586.853333pt;}
.x28{left:605.253333pt;}
.x5a{left:607.333333pt;}
.x52{left:741.759988pt;}
.x16{left:745.119988pt;}
}




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