
    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_f6b9aaed5625e65d6c956bf3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_7bd7e43b041acc3c90ddbca9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1b29f867cd3f829537ffeb45.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_94027d2503c1a224b2f7b0aa.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7af448b3097f8f8efb076d07.woff')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_7d500da477bf6de68477cdc3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_d9b05538b4d5de69202dd50d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7cf217450b52df1a0c231c34.woff')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_3ee16c316268d3faa110bef1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.060059;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_75cfad0b5885cdcd187e8ef4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_780045c27f0b64b21a606430.woff')format("woff");}.ffc{font-family:ffc;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f5adfefbef1594691c98a6ca.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0d5c0e3f6b30b6143c6745e5.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1e3dd25d1afe1b21cc1fa8d7.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ee56b4c659123e9582edbccc.woff')format("woff");}.ff10{font-family:ff10;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.642000px;}
.ls4{letter-spacing:-0.298200px;}
.ls8{letter-spacing:-0.140400px;}
.lse{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.085200px;}
.ls5{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.187200px;}
.ls6{letter-spacing:0.241800px;}
.lsf{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.433440px;}
.ls1{letter-spacing:0.447840px;}
.lsd{letter-spacing:5.040000px;}
.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;}
}
.ws4{word-spacing:-18.532800px;}
.ws10{word-spacing:-18.000000px;}
.wse{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.wsb{word-spacing:-15.840000px;}
.ws2{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.447440px;}
.ws6{word-spacing:-12.186000px;}
.ws5{word-spacing:-10.854600px;}
.ws0{word-spacing:-10.612800px;}
.wsa{word-spacing:-10.527600px;}
.ws8{word-spacing:-10.472400px;}
.wsc{word-spacing:-10.440000px;}
.ws1{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-2.220240px;}
._0{margin-left:-1.013040px;}
._1{width:1.237200px;}
._2{width:2.448480px;}
._a{width:4.242960px;}
._5{width:6.095520px;}
._b{width:7.683600px;}
._6{width:9.382320px;}
._7{width:10.413120px;}
._8{width:11.798640px;}
._9{width:13.709280px;}
._c{width:15.288720px;}
._3{width:16.613280px;}
._4{width:17.614080px;}
._18{width:18.700320px;}
._19{width:19.841520px;}
._10{width:21.898080px;}
._f{width:22.919040px;}
._14{width:24.508800px;}
._15{width:26.803200px;}
._11{width:31.000320px;}
._12{width:32.105760px;}
._20{width:51.004800px;}
._22{width:58.386240px;}
._1b{width:70.493760px;}
._1a{width:74.272320px;}
._1e{width:75.430080px;}
._1f{width:77.187360px;}
._21{width:101.214720px;}
._26{width:103.176000px;}
._27{width:104.578800px;}
._16{width:117.283440px;}
._23{width:154.822320px;}
._17{width:199.440000px;}
._1d{width:217.419120px;}
._24{width:237.404160px;}
._25{width:239.094480px;}
._d{width:485.256000px;}
._e{width:1516.025760px;}
._1c{width:2134.186560px;}
.fca{color:rgb(0,0,255);}
.fc8{color:rgb(79,129,189);}
.fc7{color:transparent;}
.fc9{color:rgb(14,16,26);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc1{color:rgb(255,192,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs5{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y3a{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:0.540000px;}
.y34{bottom:1.230000px;}
.y32{bottom:3.030000px;}
.y104{bottom:3.585000px;}
.ycc{bottom:3.600000px;}
.y11e{bottom:3.630000px;}
.ycf{bottom:3.765000px;}
.yc9{bottom:3.780000px;}
.yd1{bottom:3.945000px;}
.ycb{bottom:3.960000px;}
.y11d{bottom:3.990000px;}
.yce{bottom:4.125000px;}
.yc8{bottom:4.140000px;}
.yff{bottom:4.170000px;}
.y3{bottom:4.500000px;}
.y49{bottom:4.680000px;}
.y103{bottom:8.625000px;}
.yf2{bottom:8.640000px;}
.y13c{bottom:8.820000px;}
.y101{bottom:8.985000px;}
.yf6{bottom:9.000000px;}
.y106{bottom:9.165000px;}
.yf4{bottom:9.180000px;}
.yfe{bottom:9.210000px;}
.y141{bottom:17.505000px;}
.yf9{bottom:17.640000px;}
.y142{bottom:17.865000px;}
.yfa{bottom:18.000000px;}
.yc6{bottom:19.620000px;}
.y43{bottom:19.980000px;}
.y45{bottom:20.160000px;}
.y79{bottom:22.680000px;}
.y48{bottom:22.860000px;}
.y140{bottom:22.905000px;}
.yf8{bottom:23.040000px;}
.y2{bottom:24.660000px;}
.y46{bottom:34.560000px;}
.y44{bottom:34.740000px;}
.y47{bottom:36.900000px;}
.y37{bottom:41.040000px;}
.y3d{bottom:42.660000px;}
.y1{bottom:42.840000px;}
.y3b{bottom:77.400000px;}
.y42{bottom:91.440000px;}
.y184{bottom:113.760000px;}
.y78{bottom:117.720000px;}
.y110{bottom:118.080000px;}
.y30{bottom:119.160000px;}
.yde{bottom:125.100000px;}
.ya8{bottom:129.420000px;}
.y183{bottom:133.560000px;}
.y77{bottom:139.500000px;}
.y2f{bottom:139.860000px;}
.y161{bottom:141.120000px;}
.y138{bottom:142.560000px;}
.ydd{bottom:147.060000px;}
.ya7{bottom:151.200000px;}
.y182{bottom:152.460000px;}
.y2e{bottom:158.040000px;}
.y76{bottom:161.280000px;}
.y10f{bottom:161.640000px;}
.y160{bottom:162.900000px;}
.y137{bottom:164.340000px;}
.ydc{bottom:168.840000px;}
.y181{bottom:171.360000px;}
.ya6{bottom:172.980000px;}
.y2d{bottom:176.220000px;}
.y75{bottom:183.060000px;}
.y10e{bottom:183.420000px;}
.y15f{bottom:184.680000px;}
.y136{bottom:186.300000px;}
.y180{bottom:190.440000px;}
.ydb{bottom:191.160000px;}
.y2c{bottom:194.400000px;}
.ya5{bottom:194.940000px;}
.y74{bottom:205.020000px;}
.y10d{bottom:205.200000px;}
.y15e{bottom:206.670000px;}
.y135{bottom:208.110000px;}
.yda{bottom:213.330000px;}
.y2b{bottom:214.590000px;}
.ya4{bottom:216.750000px;}
.y73{bottom:226.830000px;}
.y17f{bottom:227.910000px;}
.y134{bottom:229.890000px;}
.y10c{bottom:233.310000px;}
.yd9{bottom:235.650000px;}
.y2a{bottom:237.270000px;}
.ya3{bottom:238.530000px;}
.y15d{bottom:243.390000px;}
.y72{bottom:248.610000px;}
.y133{bottom:251.670000px;}
.y10b{bottom:255.270000px;}
.yd8{bottom:257.790000px;}
.ya2{bottom:260.310000px;}
.y15c{bottom:265.170000px;}
.y29{bottom:267.870000px;}
.y17e{bottom:269.310000px;}
.y71{bottom:270.390000px;}
.y10a{bottom:271.305000px;}
.y132{bottom:273.630000px;}
.yd7{bottom:279.570000px;}
.ya1{bottom:282.270000px;}
.y15b{bottom:287.130000px;}
.y70{bottom:292.170000px;}
.y28{bottom:293.970000px;}
.y109{bottom:295.245000px;}
.y131{bottom:295.770000px;}
.yd6{bottom:298.290000px;}
.ya0{bottom:304.050000px;}
.y17d{bottom:307.290000px;}
.y27{bottom:313.770000px;}
.y6f{bottom:314.130000px;}
.y130{bottom:318.090000px;}
.y108{bottom:319.365000px;}
.y15a{bottom:323.850000px;}
.y9f{bottom:325.830000px;}
.y17c{bottom:329.250000px;}
.y26{bottom:333.570000px;}
.y6e{bottom:335.910000px;}
.yd5{bottom:336.270000px;}
.y12f{bottom:340.410000px;}
.y107{bottom:343.305000px;}
.y159{bottom:345.630000px;}
.y9e{bottom:347.610000px;}
.y17b{bottom:351.030000px;}
.yd4{bottom:352.305000px;}
.y25{bottom:353.550000px;}
.y6d{bottom:357.690000px;}
.y12e{bottom:362.550000px;}
.y105{bottom:367.245000px;}
.y158{bottom:367.590000px;}
.y9d{bottom:369.390000px;}
.yd3{bottom:371.205000px;}
.y24{bottom:373.530000px;}
.y6c{bottom:379.470000px;}
.y17a{bottom:388.470000px;}
.y157{bottom:389.370000px;}
.yd2{bottom:390.285000px;}
.y12d{bottom:390.630000px;}
.y9c{bottom:391.350000px;}
.y102{bottom:391.365000px;}
.y23{bottom:393.690000px;}
.y6b{bottom:401.430000px;}
.y179{bottom:409.170000px;}
.yd0{bottom:409.185000px;}
.y156{bottom:411.150000px;}
.y12c{bottom:412.410000px;}
.y9b{bottom:413.130000px;}
.y22{bottom:413.670000px;}
.y100{bottom:415.305000px;}
.y6a{bottom:423.210000px;}
.ycd{bottom:428.085000px;}
.y12b{bottom:428.445000px;}
.y178{bottom:429.870000px;}
.y21{bottom:433.650000px;}
.y9a{bottom:434.910000px;}
.y155{bottom:439.230000px;}
.yfd{bottom:439.245000px;}
.y69{bottom:445.035000px;}
.yca{bottom:447.195000px;}
.y12a{bottom:447.555000px;}
.y177{bottom:450.615000px;}
.y20{bottom:453.675000px;}
.y99{bottom:456.735000px;}
.y154{bottom:461.055000px;}
.yfc{bottom:463.395000px;}
.yc7{bottom:466.095000px;}
.y129{bottom:466.455000px;}
.y68{bottom:466.815000px;}
.y1f{bottom:473.835000px;}
.y98{bottom:478.695000px;}
.y153{bottom:483.375000px;}
.y128{bottom:485.535000px;}
.yc5{bottom:485.895000px;}
.yfb{bottom:487.335000px;}
.y67{bottom:488.595000px;}
.y1e{bottom:494.175000px;}
.y97{bottom:500.475000px;}
.y127{bottom:504.435000px;}
.y152{bottom:505.155000px;}
.y176{bottom:510.375000px;}
.y66{bottom:510.555000px;}
.yf7{bottom:511.275000px;}
.y1d{bottom:514.335000px;}
.y96{bottom:522.255000px;}
.y126{bottom:523.335000px;}
.y151{bottom:526.935000px;}
.y65{bottom:532.335000px;}
.y1c{bottom:534.315000px;}
.yc4{bottom:534.855000px;}
.y125{bottom:542.415000px;}
.y95{bottom:544.035000px;}
.y150{bottom:548.715000px;}
.yf5{bottom:549.255000px;}
.y1b{bottom:554.115000px;}
.yc3{bottom:556.995000px;}
.y124{bottom:561.315000px;}
.y94{bottom:565.815000px;}
.y14f{bottom:570.495000px;}
.yf3{bottom:573.195000px;}
.y1a{bottom:574.095000px;}
.y64{bottom:575.895000px;}
.yc2{bottom:578.775000px;}
.y123{bottom:580.395000px;}
.y93{bottom:587.775000px;}
.y175{bottom:591.015000px;}
.y14e{bottom:592.455000px;}
.y19{bottom:593.895000px;}
.y63{bottom:597.675000px;}
.yf1{bottom:598.035000px;}
.y122{bottom:599.295000px;}
.yc1{bottom:600.555000px;}
.y92{bottom:609.555000px;}
.y174{bottom:610.095000px;}
.y18{bottom:613.695000px;}
.y14d{bottom:614.235000px;}
.y121{bottom:618.195000px;}
.y62{bottom:619.635000px;}
.yc0{bottom:622.515000px;}
.y173{bottom:628.995000px;}
.y91{bottom:631.335000px;}
.y17{bottom:633.495000px;}
.yf0{bottom:635.835000px;}
.y14c{bottom:636.015000px;}
.y120{bottom:637.275000px;}
.y61{bottom:641.415000px;}
.ybf{bottom:644.295000px;}
.y172{bottom:648.075000px;}
.y90{bottom:653.115000px;}
.y16{bottom:653.295000px;}
.y11f{bottom:656.175000px;}
.yef{bottom:657.795000px;}
.y60{bottom:663.195000px;}
.ybe{bottom:666.075000px;}
.y8f{bottom:674.895000px;}
.y11c{bottom:675.255000px;}
.yee{bottom:679.965000px;}
.y15{bottom:684.105000px;}
.y171{bottom:684.825000px;}
.y5f{bottom:685.005000px;}
.y14b{bottom:685.905000px;}
.ybd{bottom:687.885000px;}
.y11b{bottom:694.185000px;}
.y8e{bottom:696.885000px;}
.yed{bottom:701.745000px;}
.y170{bottom:706.605000px;}
.y5e{bottom:706.965000px;}
.y14a{bottom:707.865000px;}
.ybc{bottom:709.665000px;}
.y14{bottom:710.925000px;}
.y11a{bottom:713.985000px;}
.y8d{bottom:718.665000px;}
.yec{bottom:723.525000px;}
.y149{bottom:723.885000px;}
.y16f{bottom:728.565000px;}
.y5d{bottom:728.745000px;}
.ybb{bottom:731.625000px;}
.y13{bottom:731.985000px;}
.y8c{bottom:740.445000px;}
.yeb{bottom:745.485000px;}
.y119{bottom:747.285000px;}
.y5c{bottom:750.525000px;}
.yba{bottom:753.405000px;}
.y12{bottom:760.605000px;}
.y148{bottom:761.865000px;}
.y8b{bottom:762.225000px;}
.y16e{bottom:765.285000px;}
.y118{bottom:766.725000px;}
.yea{bottom:767.265000px;}
.y5b{bottom:772.305000px;}
.yb9{bottom:775.185000px;}
.y11{bottom:781.665000px;}
.y147{bottom:785.805000px;}
.y16d{bottom:787.065000px;}
.y117{bottom:788.505000px;}
.ye9{bottom:789.045000px;}
.y8a{bottom:790.305000px;}
.y5a{bottom:794.085000px;}
.y10{bottom:795.165000px;}
.yb8{bottom:796.965000px;}
.y16c{bottom:809.025000px;}
.y146{bottom:809.745000px;}
.y116{bottom:810.285000px;}
.ye8{bottom:810.825000px;}
.y89{bottom:812.625000px;}
.y59{bottom:816.045000px;}
.yf{bottom:817.485000px;}
.yb7{bottom:818.925000px;}
.y16b{bottom:830.805000px;}
.y115{bottom:832.065000px;}
.ye7{bottom:832.605000px;}
.y145{bottom:833.865000px;}
.y88{bottom:834.405000px;}
.y58{bottom:837.825000px;}
.yb6{bottom:840.705000px;}
.ye{bottom:850.425000px;}
.y114{bottom:854.025000px;}
.ye6{bottom:854.565000px;}
.y87{bottom:856.185000px;}
.y144{bottom:857.805000px;}
.y57{bottom:859.605000px;}
.yb5{bottom:862.485000px;}
.y16a{bottom:867.525000px;}
.yd{bottom:871.665000px;}
.y113{bottom:875.805000px;}
.ye5{bottom:876.345000px;}
.y86{bottom:877.965000px;}
.y56{bottom:881.385000px;}
.y143{bottom:881.745000px;}
.y169{bottom:889.485000px;}
.yb4{bottom:890.565000px;}
.yc{bottom:894.345000px;}
.y112{bottom:897.585000px;}
.ye4{bottom:898.125000px;}
.y85{bottom:899.925000px;}
.y55{bottom:903.345000px;}
.y13f{bottom:905.865000px;}
.y168{bottom:911.310000px;}
.yb3{bottom:919.050000px;}
.y111{bottom:919.410000px;}
.ye3{bottom:919.950000px;}
.y84{bottom:921.750000px;}
.yb{bottom:922.650000px;}
.y54{bottom:925.170000px;}
.y167{bottom:933.090000px;}
.yb2{bottom:941.190000px;}
.ye2{bottom:941.910000px;}
.y83{bottom:943.530000px;}
.y13e{bottom:943.710000px;}
.y53{bottom:946.950000px;}
.ya{bottom:951.090000px;}
.yb1{bottom:963.150000px;}
.ye1{bottom:964.230000px;}
.y82{bottom:965.310000px;}
.y13d{bottom:967.830000px;}
.y52{bottom:968.730000px;}
.y166{bottom:969.810000px;}
.y9{bottom:974.130000px;}
.yb0{bottom:984.930000px;}
.ye0{bottom:986.370000px;}
.y35{bottom:986.760000px;}
.y81{bottom:987.090000px;}
.y31{bottom:987.120000px;}
.y33{bottom:989.280000px;}
.y51{bottom:990.510000px;}
.y165{bottom:991.770000px;}
.y13b{bottom:992.490000px;}
.y8{bottom:993.390000px;}
.yaf{bottom:1006.710000px;}
.ydf{bottom:1008.690000px;}
.y80{bottom:1009.050000px;}
.y50{bottom:1012.470000px;}
.y164{bottom:1013.550000px;}
.y7{bottom:1027.590000px;}
.yae{bottom:1028.490000px;}
.y13a{bottom:1030.470000px;}
.y7f{bottom:1030.830000px;}
.y4f{bottom:1034.250000px;}
.y163{bottom:1035.330000px;}
.yad{bottom:1050.270000px;}
.y139{bottom:1052.250000px;}
.y7e{bottom:1052.610000px;}
.y4e{bottom:1056.030000px;}
.y162{bottom:1057.110000px;}
.y6{bottom:1062.870000px;}
.yac{bottom:1072.230000px;}
.y7d{bottom:1074.390000px;}
.y4d{bottom:1077.810000px;}
.yab{bottom:1094.010000px;}
.y7c{bottom:1096.350000px;}
.y4c{bottom:1099.770000px;}
.y5{bottom:1101.030000px;}
.yaa{bottom:1115.790000px;}
.y7b{bottom:1118.130000px;}
.y4b{bottom:1118.310000px;}
.y4a{bottom:1137.210000px;}
.ya9{bottom:1137.570000px;}
.y4{bottom:1139.190000px;}
.y7a{bottom:1139.910000px;}
.y41{bottom:1155.420000px;}
.y40{bottom:1169.460000px;}
.y3f{bottom:1183.500000px;}
.y3e{bottom:1197.540000px;}
.y36{bottom:1207.620000px;}
.y39{bottom:1219.860000px;}
.y38{bottom:1235.700000px;}
.h14{height:12.600000px;}
.h13{height:14.400000px;}
.h24{height:18.885000px;}
.h2b{height:18.900000px;}
.h2c{height:18.930000px;}
.h23{height:19.065000px;}
.h25{height:19.101000px;}
.h2a{height:19.440000px;}
.h19{height:23.220000px;}
.h26{height:23.925000px;}
.h2f{height:23.940000px;}
.h27{height:24.105000px;}
.h2e{height:24.120000px;}
.h29{height:24.141000px;}
.h22{height:34.905000px;}
.h16{height:36.861328px;}
.h2d{height:37.822500px;}
.h28{height:37.965000px;}
.h30{height:37.980000px;}
.h5{height:38.469727px;}
.hc{height:38.671172px;}
.h2{height:40.843828px;}
.h8{height:45.316055px;}
.h11{height:45.720703px;}
.h20{height:46.251562px;}
.h17{height:46.445273px;}
.h1c{height:48.235500px;}
.h1e{height:48.238500px;}
.h1d{height:48.240000px;}
.h18{height:49.394180px;}
.h15{height:49.680000px;}
.h4{height:53.709961px;}
.h9{height:54.597656px;}
.h1b{height:55.291992px;}
.h1a{height:55.620000px;}
.hf{height:58.621992px;}
.he{height:58.651172px;}
.hd{height:59.439023px;}
.h6{height:60.226875px;}
.h1f{height:65.010937px;}
.h3{height:65.884219px;}
.h12{height:66.757500px;}
.hb{height:70.050234px;}
.h10{height:70.628906px;}
.h31{height:70.664062px;}
.h21{height:71.225156px;}
.h7{height:71.324297px;}
.ha{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:62.811000px;}
.w9{width:62.820000px;}
.w15{width:74.325000px;}
.wf{width:74.361000px;}
.wc{width:98.316000px;}
.w13{width:101.325000px;}
.w7{width:104.940000px;}
.w5{width:107.100000px;}
.w12{width:108.021000px;}
.w10{width:116.265000px;}
.w16{width:136.461000px;}
.w2{width:155.340000px;}
.w3{width:178.740000px;}
.w4{width:209.340000px;}
.wb{width:278.119500px;}
.wd{width:307.275000px;}
.w14{width:465.724500px;}
.w11{width:472.564500px;}
.we{width:492.724500px;}
.w6{width:499.860000px;}
.wa{width:616.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.725000px;}
.xe{left:10.905000px;}
.x15{left:15.810000px;}
.x22{left:16.905000px;}
.x2b{left:18.210000px;}
.x10{left:22.395000px;}
.x25{left:37.065000px;}
.x24{left:39.600000px;}
.x1a{left:41.436000px;}
.x2c{left:49.710000px;}
.x13{left:53.496000px;}
.x19{left:55.074000px;}
.x26{left:58.140000px;}
.x12{left:93.780000px;}
.x11{left:96.516000px;}
.x1e{left:106.246500px;}
.x2{left:108.036000px;}
.x7{left:109.476000px;}
.x1{left:114.516000px;}
.x16{left:116.676000px;}
.x3{left:117.756000px;}
.x8{left:128.376000px;}
.xb{left:152.130000px;}
.x2d{left:162.030000px;}
.x1b{left:171.585000px;}
.x1d{left:186.150000px;}
.xa{left:236.190000px;}
.x9{left:238.890000px;}
.x4{left:243.390000px;}
.x17{left:314.895000px;}
.xc{left:324.975000px;}
.xf{left:380.880000px;}
.x1f{left:384.375000px;}
.x6{left:435.135000px;}
.x5{left:446.475000px;}
.x20{left:482.700000px;}
.x18{left:560.445000px;}
.x29{left:572.340000px;}
.x27{left:580.620000px;}
.x21{left:599.340000px;}
.xd{left:636.120000px;}
.x2a{left:646.680000px;}
.x23{left:673.710000px;}
.x28{left:688.650000px;}
.x14{left:788.040000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.570667pt;}
.ls4{letter-spacing:-0.265067pt;}
.ls8{letter-spacing:-0.124800pt;}
.lse{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.166400pt;}
.ls6{letter-spacing:0.214933pt;}
.lsf{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.385280pt;}
.ls1{letter-spacing:0.398080pt;}
.lsd{letter-spacing:4.480000pt;}
.ws4{word-spacing:-16.473600pt;}
.ws10{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.wsb{word-spacing:-14.080000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.953280pt;}
.ws6{word-spacing:-10.832000pt;}
.ws5{word-spacing:-9.648533pt;}
.ws0{word-spacing:-9.433600pt;}
.wsa{word-spacing:-9.357867pt;}
.ws8{word-spacing:-9.308800pt;}
.wsc{word-spacing:-9.280000pt;}
.ws1{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-1.973547pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.099733pt;}
._2{width:2.176427pt;}
._a{width:3.771520pt;}
._5{width:5.418240pt;}
._b{width:6.829867pt;}
._6{width:8.339840pt;}
._7{width:9.256107pt;}
._8{width:10.487680pt;}
._9{width:12.186027pt;}
._c{width:13.589973pt;}
._3{width:14.767360pt;}
._4{width:15.656960pt;}
._18{width:16.622507pt;}
._19{width:17.636907pt;}
._10{width:19.464960pt;}
._f{width:20.372480pt;}
._14{width:21.785600pt;}
._15{width:23.825067pt;}
._11{width:27.555840pt;}
._12{width:28.538453pt;}
._20{width:45.337600pt;}
._22{width:51.898880pt;}
._1b{width:62.661120pt;}
._1a{width:66.019840pt;}
._1e{width:67.048960pt;}
._1f{width:68.610987pt;}
._21{width:89.968640pt;}
._26{width:91.712000pt;}
._27{width:92.958933pt;}
._16{width:104.251947pt;}
._23{width:137.619840pt;}
._17{width:177.280000pt;}
._1d{width:193.261440pt;}
._24{width:211.025920pt;}
._25{width:212.528427pt;}
._d{width:431.338667pt;}
._e{width:1347.578453pt;}
._1c{width:1897.054720pt;}
.fs5{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y3a{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:0.480000pt;}
.y34{bottom:1.093333pt;}
.y32{bottom:2.693333pt;}
.y104{bottom:3.186667pt;}
.ycc{bottom:3.200000pt;}
.y11e{bottom:3.226667pt;}
.ycf{bottom:3.346667pt;}
.yc9{bottom:3.360000pt;}
.yd1{bottom:3.506667pt;}
.ycb{bottom:3.520000pt;}
.y11d{bottom:3.546667pt;}
.yce{bottom:3.666667pt;}
.yc8{bottom:3.680000pt;}
.yff{bottom:3.706667pt;}
.y3{bottom:4.000000pt;}
.y49{bottom:4.160000pt;}
.y103{bottom:7.666667pt;}
.yf2{bottom:7.680000pt;}
.y13c{bottom:7.840000pt;}
.y101{bottom:7.986667pt;}
.yf6{bottom:8.000000pt;}
.y106{bottom:8.146667pt;}
.yf4{bottom:8.160000pt;}
.yfe{bottom:8.186667pt;}
.y141{bottom:15.560000pt;}
.yf9{bottom:15.680000pt;}
.y142{bottom:15.880000pt;}
.yfa{bottom:16.000000pt;}
.yc6{bottom:17.440000pt;}
.y43{bottom:17.760000pt;}
.y45{bottom:17.920000pt;}
.y79{bottom:20.160000pt;}
.y48{bottom:20.320000pt;}
.y140{bottom:20.360000pt;}
.yf8{bottom:20.480000pt;}
.y2{bottom:21.920000pt;}
.y46{bottom:30.720000pt;}
.y44{bottom:30.880000pt;}
.y47{bottom:32.800000pt;}
.y37{bottom:36.480000pt;}
.y3d{bottom:37.920000pt;}
.y1{bottom:38.080000pt;}
.y3b{bottom:68.800000pt;}
.y42{bottom:81.280000pt;}
.y184{bottom:101.120000pt;}
.y78{bottom:104.640000pt;}
.y110{bottom:104.960000pt;}
.y30{bottom:105.920000pt;}
.yde{bottom:111.200000pt;}
.ya8{bottom:115.040000pt;}
.y183{bottom:118.720000pt;}
.y77{bottom:124.000000pt;}
.y2f{bottom:124.320000pt;}
.y161{bottom:125.440000pt;}
.y138{bottom:126.720000pt;}
.ydd{bottom:130.720000pt;}
.ya7{bottom:134.400000pt;}
.y182{bottom:135.520000pt;}
.y2e{bottom:140.480000pt;}
.y76{bottom:143.360000pt;}
.y10f{bottom:143.680000pt;}
.y160{bottom:144.800000pt;}
.y137{bottom:146.080000pt;}
.ydc{bottom:150.080000pt;}
.y181{bottom:152.320000pt;}
.ya6{bottom:153.760000pt;}
.y2d{bottom:156.640000pt;}
.y75{bottom:162.720000pt;}
.y10e{bottom:163.040000pt;}
.y15f{bottom:164.160000pt;}
.y136{bottom:165.600000pt;}
.y180{bottom:169.280000pt;}
.ydb{bottom:169.920000pt;}
.y2c{bottom:172.800000pt;}
.ya5{bottom:173.280000pt;}
.y74{bottom:182.240000pt;}
.y10d{bottom:182.400000pt;}
.y15e{bottom:183.706667pt;}
.y135{bottom:184.986667pt;}
.yda{bottom:189.626667pt;}
.y2b{bottom:190.746667pt;}
.ya4{bottom:192.666667pt;}
.y73{bottom:201.626667pt;}
.y17f{bottom:202.586667pt;}
.y134{bottom:204.346667pt;}
.y10c{bottom:207.386667pt;}
.yd9{bottom:209.466667pt;}
.y2a{bottom:210.906667pt;}
.ya3{bottom:212.026667pt;}
.y15d{bottom:216.346667pt;}
.y72{bottom:220.986667pt;}
.y133{bottom:223.706667pt;}
.y10b{bottom:226.906667pt;}
.yd8{bottom:229.146667pt;}
.ya2{bottom:231.386667pt;}
.y15c{bottom:235.706667pt;}
.y29{bottom:238.106667pt;}
.y17e{bottom:239.386667pt;}
.y71{bottom:240.346667pt;}
.y10a{bottom:241.160000pt;}
.y132{bottom:243.226667pt;}
.yd7{bottom:248.506667pt;}
.ya1{bottom:250.906667pt;}
.y15b{bottom:255.226667pt;}
.y70{bottom:259.706667pt;}
.y28{bottom:261.306667pt;}
.y109{bottom:262.440000pt;}
.y131{bottom:262.906667pt;}
.yd6{bottom:265.146667pt;}
.ya0{bottom:270.266667pt;}
.y17d{bottom:273.146667pt;}
.y27{bottom:278.906667pt;}
.y6f{bottom:279.226667pt;}
.y130{bottom:282.746667pt;}
.y108{bottom:283.880000pt;}
.y15a{bottom:287.866667pt;}
.y9f{bottom:289.626667pt;}
.y17c{bottom:292.666667pt;}
.y26{bottom:296.506667pt;}
.y6e{bottom:298.586667pt;}
.yd5{bottom:298.906667pt;}
.y12f{bottom:302.586667pt;}
.y107{bottom:305.160000pt;}
.y159{bottom:307.226667pt;}
.y9e{bottom:308.986667pt;}
.y17b{bottom:312.026667pt;}
.yd4{bottom:313.160000pt;}
.y25{bottom:314.266667pt;}
.y6d{bottom:317.946667pt;}
.y12e{bottom:322.266667pt;}
.y105{bottom:326.440000pt;}
.y158{bottom:326.746667pt;}
.y9d{bottom:328.346667pt;}
.yd3{bottom:329.960000pt;}
.y24{bottom:332.026667pt;}
.y6c{bottom:337.306667pt;}
.y17a{bottom:345.306667pt;}
.y157{bottom:346.106667pt;}
.yd2{bottom:346.920000pt;}
.y12d{bottom:347.226667pt;}
.y9c{bottom:347.866667pt;}
.y102{bottom:347.880000pt;}
.y23{bottom:349.946667pt;}
.y6b{bottom:356.826667pt;}
.y179{bottom:363.706667pt;}
.yd0{bottom:363.720000pt;}
.y156{bottom:365.466667pt;}
.y12c{bottom:366.586667pt;}
.y9b{bottom:367.226667pt;}
.y22{bottom:367.706667pt;}
.y100{bottom:369.160000pt;}
.y6a{bottom:376.186667pt;}
.ycd{bottom:380.520000pt;}
.y12b{bottom:380.840000pt;}
.y178{bottom:382.106667pt;}
.y21{bottom:385.466667pt;}
.y9a{bottom:386.586667pt;}
.y155{bottom:390.426667pt;}
.yfd{bottom:390.440000pt;}
.y69{bottom:395.586667pt;}
.yca{bottom:397.506667pt;}
.y12a{bottom:397.826667pt;}
.y177{bottom:400.546667pt;}
.y20{bottom:403.266667pt;}
.y99{bottom:405.986667pt;}
.y154{bottom:409.826667pt;}
.yfc{bottom:411.906667pt;}
.yc7{bottom:414.306667pt;}
.y129{bottom:414.626667pt;}
.y68{bottom:414.946667pt;}
.y1f{bottom:421.186667pt;}
.y98{bottom:425.506667pt;}
.y153{bottom:429.666667pt;}
.y128{bottom:431.586667pt;}
.yc5{bottom:431.906667pt;}
.yfb{bottom:433.186667pt;}
.y67{bottom:434.306667pt;}
.y1e{bottom:439.266667pt;}
.y97{bottom:444.866667pt;}
.y127{bottom:448.386667pt;}
.y152{bottom:449.026667pt;}
.y176{bottom:453.666667pt;}
.y66{bottom:453.826667pt;}
.yf7{bottom:454.466667pt;}
.y1d{bottom:457.186667pt;}
.y96{bottom:464.226667pt;}
.y126{bottom:465.186667pt;}
.y151{bottom:468.386667pt;}
.y65{bottom:473.186667pt;}
.y1c{bottom:474.946667pt;}
.yc4{bottom:475.426667pt;}
.y125{bottom:482.146667pt;}
.y95{bottom:483.586667pt;}
.y150{bottom:487.746667pt;}
.yf5{bottom:488.226667pt;}
.y1b{bottom:492.546667pt;}
.yc3{bottom:495.106667pt;}
.y124{bottom:498.946667pt;}
.y94{bottom:502.946667pt;}
.y14f{bottom:507.106667pt;}
.yf3{bottom:509.506667pt;}
.y1a{bottom:510.306667pt;}
.y64{bottom:511.906667pt;}
.yc2{bottom:514.466667pt;}
.y123{bottom:515.906667pt;}
.y93{bottom:522.466667pt;}
.y175{bottom:525.346667pt;}
.y14e{bottom:526.626667pt;}
.y19{bottom:527.906667pt;}
.y63{bottom:531.266667pt;}
.yf1{bottom:531.586667pt;}
.y122{bottom:532.706667pt;}
.yc1{bottom:533.826667pt;}
.y92{bottom:541.826667pt;}
.y174{bottom:542.306667pt;}
.y18{bottom:545.506667pt;}
.y14d{bottom:545.986667pt;}
.y121{bottom:549.506667pt;}
.y62{bottom:550.786667pt;}
.yc0{bottom:553.346667pt;}
.y173{bottom:559.106667pt;}
.y91{bottom:561.186667pt;}
.y17{bottom:563.106667pt;}
.yf0{bottom:565.186667pt;}
.y14c{bottom:565.346667pt;}
.y120{bottom:566.466667pt;}
.y61{bottom:570.146667pt;}
.ybf{bottom:572.706667pt;}
.y172{bottom:576.066667pt;}
.y90{bottom:580.546667pt;}
.y16{bottom:580.706667pt;}
.y11f{bottom:583.266667pt;}
.yef{bottom:584.706667pt;}
.y60{bottom:589.506667pt;}
.ybe{bottom:592.066667pt;}
.y8f{bottom:599.906667pt;}
.y11c{bottom:600.226667pt;}
.yee{bottom:604.413333pt;}
.y15{bottom:608.093333pt;}
.y171{bottom:608.733333pt;}
.y5f{bottom:608.893333pt;}
.y14b{bottom:609.693333pt;}
.ybd{bottom:611.453333pt;}
.y11b{bottom:617.053333pt;}
.y8e{bottom:619.453333pt;}
.yed{bottom:623.773333pt;}
.y170{bottom:628.093333pt;}
.y5e{bottom:628.413333pt;}
.y14a{bottom:629.213333pt;}
.ybc{bottom:630.813333pt;}
.y14{bottom:631.933333pt;}
.y11a{bottom:634.653333pt;}
.y8d{bottom:638.813333pt;}
.yec{bottom:643.133333pt;}
.y149{bottom:643.453333pt;}
.y16f{bottom:647.613333pt;}
.y5d{bottom:647.773333pt;}
.ybb{bottom:650.333333pt;}
.y13{bottom:650.653333pt;}
.y8c{bottom:658.173333pt;}
.yeb{bottom:662.653333pt;}
.y119{bottom:664.253333pt;}
.y5c{bottom:667.133333pt;}
.yba{bottom:669.693333pt;}
.y12{bottom:676.093333pt;}
.y148{bottom:677.213333pt;}
.y8b{bottom:677.533333pt;}
.y16e{bottom:680.253333pt;}
.y118{bottom:681.533333pt;}
.yea{bottom:682.013333pt;}
.y5b{bottom:686.493333pt;}
.yb9{bottom:689.053333pt;}
.y11{bottom:694.813333pt;}
.y147{bottom:698.493333pt;}
.y16d{bottom:699.613333pt;}
.y117{bottom:700.893333pt;}
.ye9{bottom:701.373333pt;}
.y8a{bottom:702.493333pt;}
.y5a{bottom:705.853333pt;}
.y10{bottom:706.813333pt;}
.yb8{bottom:708.413333pt;}
.y16c{bottom:719.133333pt;}
.y146{bottom:719.773333pt;}
.y116{bottom:720.253333pt;}
.ye8{bottom:720.733333pt;}
.y89{bottom:722.333333pt;}
.y59{bottom:725.373333pt;}
.yf{bottom:726.653333pt;}
.yb7{bottom:727.933333pt;}
.y16b{bottom:738.493333pt;}
.y115{bottom:739.613333pt;}
.ye7{bottom:740.093333pt;}
.y145{bottom:741.213333pt;}
.y88{bottom:741.693333pt;}
.y58{bottom:744.733333pt;}
.yb6{bottom:747.293333pt;}
.ye{bottom:755.933333pt;}
.y114{bottom:759.133333pt;}
.ye6{bottom:759.613333pt;}
.y87{bottom:761.053333pt;}
.y144{bottom:762.493333pt;}
.y57{bottom:764.093333pt;}
.yb5{bottom:766.653333pt;}
.y16a{bottom:771.133333pt;}
.yd{bottom:774.813333pt;}
.y113{bottom:778.493333pt;}
.ye5{bottom:778.973333pt;}
.y86{bottom:780.413333pt;}
.y56{bottom:783.453333pt;}
.y143{bottom:783.773333pt;}
.y169{bottom:790.653333pt;}
.yb4{bottom:791.613333pt;}
.yc{bottom:794.973333pt;}
.y112{bottom:797.853333pt;}
.ye4{bottom:798.333333pt;}
.y85{bottom:799.933333pt;}
.y55{bottom:802.973333pt;}
.y13f{bottom:805.213333pt;}
.y168{bottom:810.053333pt;}
.yb3{bottom:816.933333pt;}
.y111{bottom:817.253333pt;}
.ye3{bottom:817.733333pt;}
.y84{bottom:819.333333pt;}
.yb{bottom:820.133333pt;}
.y54{bottom:822.373333pt;}
.y167{bottom:829.413333pt;}
.yb2{bottom:836.613333pt;}
.ye2{bottom:837.253333pt;}
.y83{bottom:838.693333pt;}
.y13e{bottom:838.853333pt;}
.y53{bottom:841.733333pt;}
.ya{bottom:845.413333pt;}
.yb1{bottom:856.133333pt;}
.ye1{bottom:857.093333pt;}
.y82{bottom:858.053333pt;}
.y13d{bottom:860.293333pt;}
.y52{bottom:861.093333pt;}
.y166{bottom:862.053333pt;}
.y9{bottom:865.893333pt;}
.yb0{bottom:875.493333pt;}
.ye0{bottom:876.773333pt;}
.y35{bottom:877.120000pt;}
.y81{bottom:877.413333pt;}
.y31{bottom:877.440000pt;}
.y33{bottom:879.360000pt;}
.y51{bottom:880.453333pt;}
.y165{bottom:881.573333pt;}
.y13b{bottom:882.213333pt;}
.y8{bottom:883.013333pt;}
.yaf{bottom:894.853333pt;}
.ydf{bottom:896.613333pt;}
.y80{bottom:896.933333pt;}
.y50{bottom:899.973333pt;}
.y164{bottom:900.933333pt;}
.y7{bottom:913.413333pt;}
.yae{bottom:914.213333pt;}
.y13a{bottom:915.973333pt;}
.y7f{bottom:916.293333pt;}
.y4f{bottom:919.333333pt;}
.y163{bottom:920.293333pt;}
.yad{bottom:933.573333pt;}
.y139{bottom:935.333333pt;}
.y7e{bottom:935.653333pt;}
.y4e{bottom:938.693333pt;}
.y162{bottom:939.653333pt;}
.y6{bottom:944.773333pt;}
.yac{bottom:953.093333pt;}
.y7d{bottom:955.013333pt;}
.y4d{bottom:958.053333pt;}
.yab{bottom:972.453333pt;}
.y7c{bottom:974.533333pt;}
.y4c{bottom:977.573333pt;}
.y5{bottom:978.693333pt;}
.yaa{bottom:991.813333pt;}
.y7b{bottom:993.893333pt;}
.y4b{bottom:994.053333pt;}
.y4a{bottom:1010.853333pt;}
.ya9{bottom:1011.173333pt;}
.y4{bottom:1012.613333pt;}
.y7a{bottom:1013.253333pt;}
.y41{bottom:1027.040000pt;}
.y40{bottom:1039.520000pt;}
.y3f{bottom:1052.000000pt;}
.y3e{bottom:1064.480000pt;}
.y36{bottom:1073.440000pt;}
.y39{bottom:1084.320000pt;}
.y38{bottom:1098.400000pt;}
.h14{height:11.200000pt;}
.h13{height:12.800000pt;}
.h24{height:16.786667pt;}
.h2b{height:16.800000pt;}
.h2c{height:16.826667pt;}
.h23{height:16.946667pt;}
.h25{height:16.978667pt;}
.h2a{height:17.280000pt;}
.h19{height:20.640000pt;}
.h26{height:21.266667pt;}
.h2f{height:21.280000pt;}
.h27{height:21.426667pt;}
.h2e{height:21.440000pt;}
.h29{height:21.458667pt;}
.h22{height:31.026667pt;}
.h16{height:32.765625pt;}
.h2d{height:33.620000pt;}
.h28{height:33.746667pt;}
.h30{height:33.760000pt;}
.h5{height:34.195312pt;}
.hc{height:34.374375pt;}
.h2{height:36.305625pt;}
.h8{height:40.280938pt;}
.h11{height:40.640625pt;}
.h20{height:41.112500pt;}
.h17{height:41.284687pt;}
.h1c{height:42.876000pt;}
.h1e{height:42.878667pt;}
.h1d{height:42.880000pt;}
.h18{height:43.905937pt;}
.h15{height:44.160000pt;}
.h4{height:47.742188pt;}
.h9{height:48.531250pt;}
.h1b{height:49.148438pt;}
.h1a{height:49.440000pt;}
.hf{height:52.108438pt;}
.he{height:52.134375pt;}
.hd{height:52.834688pt;}
.h6{height:53.535000pt;}
.h1f{height:57.787500pt;}
.h3{height:58.563750pt;}
.h12{height:59.340000pt;}
.hb{height:62.266875pt;}
.h10{height:62.781250pt;}
.h31{height:62.812500pt;}
.h21{height:63.311250pt;}
.h7{height:63.399375pt;}
.ha{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:55.832000pt;}
.w9{width:55.840000pt;}
.w15{width:66.066667pt;}
.wf{width:66.098667pt;}
.wc{width:87.392000pt;}
.w13{width:90.066667pt;}
.w7{width:93.280000pt;}
.w5{width:95.200000pt;}
.w12{width:96.018667pt;}
.w10{width:103.346667pt;}
.w16{width:121.298667pt;}
.w2{width:138.080000pt;}
.w3{width:158.880000pt;}
.w4{width:186.080000pt;}
.wb{width:247.217333pt;}
.wd{width:273.133333pt;}
.w14{width:413.977333pt;}
.w11{width:420.057333pt;}
.we{width:437.977333pt;}
.w6{width:444.320000pt;}
.wa{width:548.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.866667pt;}
.xe{left:9.693333pt;}
.x15{left:14.053333pt;}
.x22{left:15.026667pt;}
.x2b{left:16.186667pt;}
.x10{left:19.906667pt;}
.x25{left:32.946667pt;}
.x24{left:35.200000pt;}
.x1a{left:36.832000pt;}
.x2c{left:44.186667pt;}
.x13{left:47.552000pt;}
.x19{left:48.954667pt;}
.x26{left:51.680000pt;}
.x12{left:83.360000pt;}
.x11{left:85.792000pt;}
.x1e{left:94.441333pt;}
.x2{left:96.032000pt;}
.x7{left:97.312000pt;}
.x1{left:101.792000pt;}
.x16{left:103.712000pt;}
.x3{left:104.672000pt;}
.x8{left:114.112000pt;}
.xb{left:135.226667pt;}
.x2d{left:144.026667pt;}
.x1b{left:152.520000pt;}
.x1d{left:165.466667pt;}
.xa{left:209.946667pt;}
.x9{left:212.346667pt;}
.x4{left:216.346667pt;}
.x17{left:279.906667pt;}
.xc{left:288.866667pt;}
.xf{left:338.560000pt;}
.x1f{left:341.666667pt;}
.x6{left:386.786667pt;}
.x5{left:396.866667pt;}
.x20{left:429.066667pt;}
.x18{left:498.173333pt;}
.x29{left:508.746667pt;}
.x27{left:516.106667pt;}
.x21{left:532.746667pt;}
.xd{left:565.440000pt;}
.x2a{left:574.826667pt;}
.x23{left:598.853333pt;}
.x28{left:612.133333pt;}
.x14{left:700.480000pt;}
}




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