
    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_4ec867abd99970faa8a923f4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aa6801eeced4985e2d786b19.woff')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_ab9d403002118f1216f1473b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_f475abf0ea9efd1f4108c237.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7e5ddc301d43315b7241b3ac.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_15a12249d8ba1c601edc1deb.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6391c340a9a4ec6cb2df4f4d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_5d57fb297a061638cf5d7dfb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.666000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.828000px;}
.ls1b{letter-spacing:0.900000px;}
.ls7{letter-spacing:0.924000px;}
.ls4{letter-spacing:2.424000px;}
.ls5{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls3{letter-spacing:3.144000px;}
.ls26{letter-spacing:3.780000px;}
.ls23{letter-spacing:4.500000px;}
.ls20{letter-spacing:7.380000px;}
.ls22{letter-spacing:10.980000px;}
.ls1f{letter-spacing:15.300000px;}
.ls1e{letter-spacing:23.220000px;}
.ls2d{letter-spacing:31.860000px;}
.ls28{letter-spacing:35.436000px;}
.ls14{letter-spacing:41.682720px;}
.ls2c{letter-spacing:52.740000px;}
.ls2f{letter-spacing:55.620000px;}
.ls2e{letter-spacing:61.380000px;}
.ls24{letter-spacing:71.460000px;}
.ls29{letter-spacing:82.260000px;}
.ls21{letter-spacing:85.860000px;}
.ls27{letter-spacing:90.180000px;}
.ls13{letter-spacing:93.060000px;}
.ls2b{letter-spacing:146.340000px;}
.ls10{letter-spacing:447.276000px;}
.lsc{letter-spacing:574.896000px;}
.lsb{letter-spacing:649.776000px;}
.lse{letter-spacing:688.656000px;}
.lsf{letter-spacing:781.536000px;}
.lsa{letter-spacing:786.576000px;}
.lsd{letter-spacing:875.136000px;}
.ls9{letter-spacing:928.416000px;}
.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;}
}
.ws0{word-spacing:-19.642080px;}
.ws1{word-spacing:-18.922080px;}
.ws6{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.864000px;}
.wsb{word-spacing:-15.552000px;}
.ws7{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.238800px;}
.wse{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.274000px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-2.653680px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._9{width:5.686800px;}
._8{width:7.290720px;}
._16{width:8.308800px;}
._b{width:9.341760px;}
._a{width:10.458000px;}
._6{width:11.593440px;}
._7{width:12.609360px;}
._10{width:13.754400px;}
._15{width:15.955920px;}
._14{width:17.459520px;}
._e{width:18.475440px;}
._13{width:19.512720px;}
._17{width:20.624640px;}
._18{width:21.737520px;}
._1c{width:22.808400px;}
._f{width:24.869760px;}
._d{width:26.473680px;}
._c{width:27.609120px;}
._12{width:28.933440px;}
._11{width:29.939760px;}
._1d{width:31.175520px;}
._24{width:32.586240px;}
._25{width:33.791520px;}
._2e{width:35.436000px;}
._1a{width:38.186640px;}
._38{width:40.287840px;}
._39{width:41.619360px;}
._37{width:45.776160px;}
._2d{width:48.060000px;}
._33{width:51.462960px;}
._3e{width:55.197360px;}
._34{width:56.567520px;}
._3b{width:61.259760px;}
._20{width:67.767840px;}
._21{width:68.969040px;}
._22{width:71.353440px;}
._23{width:72.978960px;}
._3a{width:74.043360px;}
._3d{width:78.408000px;}
._3c{width:80.317440px;}
._3f{width:82.358880px;}
._40{width:83.594640px;}
._1f{width:85.934880px;}
._27{width:89.448480px;}
._26{width:90.715680px;}
._2f{width:117.667440px;}
._30{width:118.956240px;}
._2b{width:132.463680px;}
._36{width:137.603520px;}
._31{width:146.352240px;}
._32{width:148.460880px;}
._2c{width:151.086720px;}
._35{width:155.770080px;}
._2a{width:179.842800px;}
._19{width:197.436000px;}
._29{width:203.183520px;}
._28{width:205.062240px;}
._1b{width:409.739040px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.yc4{bottom:-0.720060px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y105{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.yf8{bottom:3.465000px;}
.yb0{bottom:3.600000px;}
.y17{bottom:3.780000px;}
.yae{bottom:3.825000px;}
.y6{bottom:4.140000px;}
.y173{bottom:4.185000px;}
.y179{bottom:5.040000px;}
.ybf{bottom:5.394000px;}
.yc3{bottom:5.400000px;}
.yc1{bottom:5.796000px;}
.y5{bottom:8.100000px;}
.y11b{bottom:12.240000px;}
.yab{bottom:12.420000px;}
.y3{bottom:12.780000px;}
.y183{bottom:18.720000px;}
.y178{bottom:20.520000px;}
.y125{bottom:20.730000px;}
.y2a{bottom:20.880000px;}
.y16{bottom:21.060000px;}
.ya9{bottom:21.420000px;}
.y2{bottom:28.980000px;}
.yd9{bottom:29.520000px;}
.ycc{bottom:29.700000px;}
.y182{bottom:34.380000px;}
.y177{bottom:36.000000px;}
.y2d{bottom:37.980000px;}
.y15{bottom:38.160000px;}
.y2c{bottom:38.340000px;}
.yc2{bottom:44.460000px;}
.y181{bottom:50.034000px;}
.y176{bottom:51.660000px;}
.y14{bottom:55.440000px;}
.yb{bottom:56.700000px;}
.y180{bottom:67.134000px;}
.y175{bottom:67.320000px;}
.y36{bottom:71.280000px;}
.y13{bottom:72.360000px;}
.y18{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y17f{bottom:82.614000px;}
.y35{bottom:88.020000px;}
.y29{bottom:90.000000px;}
.yc0{bottom:96.120000px;}
.y17e{bottom:98.094000px;}
.y34{bottom:105.660000px;}
.y28{bottom:107.280000px;}
.y17d{bottom:113.754000px;}
.y17a{bottom:114.696000px;}
.ybd{bottom:116.856000px;}
.y15c{bottom:121.176000px;}
.y33{bottom:122.940000px;}
.y93{bottom:123.336000px;}
.y27{bottom:124.380000px;}
.yea{bottom:128.196000px;}
.y17c{bottom:129.234000px;}
.y123{bottom:129.456000px;}
.ybc{bottom:134.136000px;}
.y55{bottom:135.216000px;}
.y15b{bottom:138.456000px;}
.y32{bottom:140.220000px;}
.y92{bottom:140.616000px;}
.y26{bottom:141.660000px;}
.ye9{bottom:145.476000px;}
.y17b{bottom:146.514000px;}
.y122{bottom:146.556000px;}
.ybe{bottom:146.916000px;}
.ybb{bottom:151.410000px;}
.y54{bottom:152.490000px;}
.y15a{bottom:155.550000px;}
.y31{bottom:157.500000px;}
.y91{bottom:157.890000px;}
.y25{bottom:158.940000px;}
.y171{bottom:161.310000px;}
.ye8{bottom:162.750000px;}
.y121{bottom:163.830000px;}
.yba{bottom:168.690000px;}
.y53{bottom:169.590000px;}
.y159{bottom:172.830000px;}
.y30{bottom:174.780000px;}
.y90{bottom:175.170000px;}
.y24{bottom:176.220000px;}
.y170{bottom:178.590000px;}
.ye7{bottom:179.850000px;}
.y120{bottom:181.110000px;}
.yb9{bottom:185.970000px;}
.y52{bottom:186.870000px;}
.y158{bottom:190.110000px;}
.y2f{bottom:191.880000px;}
.y8f{bottom:192.450000px;}
.y23{bottom:193.500000px;}
.y16f{bottom:195.870000px;}
.ye6{bottom:197.130000px;}
.y11f{bottom:198.390000px;}
.yb8{bottom:203.250000px;}
.y51{bottom:204.150000px;}
.y157{bottom:207.390000px;}
.y2e{bottom:208.845000px;}
.y8e{bottom:209.550000px;}
.y22{bottom:210.645000px;}
.ye5{bottom:211.350000px;}
.y16e{bottom:213.150000px;}
.y11e{bottom:215.670000px;}
.yb7{bottom:220.350000px;}
.y50{bottom:221.430000px;}
.y156{bottom:224.670000px;}
.y8d{bottom:226.830000px;}
.y21{bottom:227.925000px;}
.ye2{bottom:229.350000px;}
.y119{bottom:229.890000px;}
.y16d{bottom:230.250000px;}
.yb6{bottom:237.630000px;}
.y4f{bottom:238.710000px;}
.y155{bottom:241.950000px;}
.y8c{bottom:244.110000px;}
.y20{bottom:245.205000px;}
.ye4{bottom:246.630000px;}
.y11d{bottom:247.170000px;}
.y16c{bottom:247.530000px;}
.yb5{bottom:254.910000px;}
.y4e{bottom:255.990000px;}
.y154{bottom:259.050000px;}
.y8b{bottom:261.390000px;}
.y1f{bottom:262.485000px;}
.ye3{bottom:263.910000px;}
.y11a{bottom:264.450000px;}
.y16b{bottom:264.810000px;}
.yb4{bottom:272.190000px;}
.y4d{bottom:273.090000px;}
.y174{bottom:275.070000px;}
.y153{bottom:276.330000px;}
.y8a{bottom:278.670000px;}
.y1e{bottom:279.765000px;}
.ye1{bottom:281.190000px;}
.y11c{bottom:281.550000px;}
.y16a{bottom:282.090000px;}
.yb3{bottom:289.470000px;}
.y4c{bottom:290.370000px;}
.y152{bottom:293.610000px;}
.y89{bottom:295.950000px;}
.y1d{bottom:297.045000px;}
.y115{bottom:298.830000px;}
.ye0{bottom:299.190000px;}
.y169{bottom:299.730000px;}
.yb2{bottom:306.750000px;}
.y4b{bottom:307.650000px;}
.y151{bottom:310.890000px;}
.y88{bottom:313.050000px;}
.y1c{bottom:314.145000px;}
.y118{bottom:316.110000px;}
.y168{bottom:320.070000px;}
.yb1{bottom:320.970000px;}
.y4a{bottom:324.930000px;}
.y150{bottom:328.170000px;}
.y87{bottom:330.330000px;}
.y1b{bottom:331.425000px;}
.y116{bottom:333.390000px;}
.y167{bottom:337.350000px;}
.yaf{bottom:338.250000px;}
.y49{bottom:342.210000px;}
.y14f{bottom:345.450000px;}
.y86{bottom:347.610000px;}
.y1a{bottom:348.705000px;}
.y117{bottom:350.670000px;}
.y166{bottom:354.990000px;}
.yad{bottom:355.350000px;}
.y172{bottom:356.970000px;}
.y48{bottom:359.535000px;}
.y14e{bottom:362.595000px;}
.y85{bottom:364.935000px;}
.y114{bottom:368.715000px;}
.yac{bottom:372.675000px;}
.y165{bottom:375.195000px;}
.y47{bottom:376.635000px;}
.y14d{bottom:379.875000px;}
.y84{bottom:382.215000px;}
.ydf{bottom:389.955000px;}
.ya8{bottom:390.675000px;}
.y164{bottom:392.475000px;}
.y46{bottom:393.915000px;}
.y14c{bottom:397.155000px;}
.y83{bottom:399.495000px;}
.yde{bottom:407.235000px;}
.y113{bottom:407.595000px;}
.y163{bottom:409.755000px;}
.y45{bottom:411.195000px;}
.y14b{bottom:414.435000px;}
.y82{bottom:416.595000px;}
.ydd{bottom:424.515000px;}
.y112{bottom:424.875000px;}
.yaa{bottom:425.955000px;}
.y162{bottom:427.035000px;}
.y44{bottom:428.475000px;}
.y14a{bottom:431.715000px;}
.y81{bottom:433.875000px;}
.ydc{bottom:438.735000px;}
.y111{bottom:442.155000px;}
.y161{bottom:444.675000px;}
.y43{bottom:445.755000px;}
.y149{bottom:448.815000px;}
.y80{bottom:451.155000px;}
.yd8{bottom:456.735000px;}
.y110{bottom:459.435000px;}
.y42{bottom:463.035000px;}
.ya7{bottom:465.015000px;}
.y148{bottom:466.095000px;}
.y7f{bottom:468.435000px;}
.ydb{bottom:474.015000px;}
.y10f{bottom:476.715000px;}
.y41{bottom:480.135000px;}
.ya6{bottom:482.115000px;}
.y147{bottom:483.375000px;}
.y7e{bottom:485.355000px;}
.y15e{bottom:485.715000px;}
.yda{bottom:491.115000px;}
.y10e{bottom:493.815000px;}
.y40{bottom:497.415000px;}
.ya5{bottom:499.395000px;}
.y7d{bottom:502.815000px;}
.yd7{bottom:508.395000px;}
.y10d{bottom:511.095000px;}
.y3f{bottom:514.695000px;}
.ya4{bottom:516.675000px;}
.y146{bottom:517.935000px;}
.y7c{bottom:520.095000px;}
.yd6{bottom:526.395000px;}
.y10c{bottom:528.375000px;}
.y3e{bottom:531.615000px;}
.ya3{bottom:533.955000px;}
.y145{bottom:535.215000px;}
.y7b{bottom:537.375000px;}
.y10b{bottom:545.655000px;}
.y3d{bottom:549.255000px;}
.ya2{bottom:551.235000px;}
.y144{bottom:552.315000px;}
.y7a{bottom:554.655000px;}
.y10a{bottom:559.875000px;}
.yd5{bottom:565.455000px;}
.y3c{bottom:566.355000px;}
.ya1{bottom:568.515000px;}
.y143{bottom:569.595000px;}
.y79{bottom:571.935000px;}
.y107{bottom:577.875000px;}
.yd4{bottom:582.735000px;}
.y3b{bottom:583.635000px;}
.ya0{bottom:585.255000px;}
.y160{bottom:585.615000px;}
.y142{bottom:586.875000px;}
.y78{bottom:589.215000px;}
.y109{bottom:595.155000px;}
.yd3{bottom:600.015000px;}
.y3a{bottom:600.915000px;}
.y9f{bottom:602.895000px;}
.y141{bottom:604.155000px;}
.y77{bottom:606.315000px;}
.y108{bottom:612.435000px;}
.yd2{bottom:617.115000px;}
.y39{bottom:618.225000px;}
.y9e{bottom:620.205000px;}
.y140{bottom:621.465000px;}
.y76{bottom:623.625000px;}
.y106{bottom:629.745000px;}
.yd1{bottom:634.425000px;}
.y38{bottom:635.145000px;}
.y9d{bottom:637.485000px;}
.y13f{bottom:638.745000px;}
.y75{bottom:640.905000px;}
.y104{bottom:647.745000px;}
.yd0{bottom:651.705000px;}
.y37{bottom:652.425000px;}
.y9c{bottom:654.765000px;}
.y13e{bottom:655.845000px;}
.y74{bottom:658.185000px;}
.ycf{bottom:665.925000px;}
.y19{bottom:667.005000px;}
.y9b{bottom:671.685000px;}
.y15f{bottom:672.405000px;}
.y13d{bottom:673.125000px;}
.y73{bottom:675.465000px;}
.ycb{bottom:683.925000px;}
.y103{bottom:686.625000px;}
.y9a{bottom:689.145000px;}
.y13c{bottom:690.405000px;}
.y72{bottom:692.745000px;}
.yce{bottom:701.205000px;}
.y102{bottom:703.905000px;}
.y99{bottom:706.425000px;}
.y13b{bottom:707.685000px;}
.y71{bottom:709.845000px;}
.ycd{bottom:718.485000px;}
.y101{bottom:721.185000px;}
.y98{bottom:723.705000px;}
.y13a{bottom:724.965000px;}
.y70{bottom:727.125000px;}
.yca{bottom:735.765000px;}
.y100{bottom:738.465000px;}
.y97{bottom:740.985000px;}
.y139{bottom:742.245000px;}
.y6f{bottom:744.405000px;}
.yc9{bottom:753.765000px;}
.yff{bottom:755.745000px;}
.y96{bottom:757.905000px;}
.y138{bottom:759.345000px;}
.y6e{bottom:761.685000px;}
.yfe{bottom:772.845000px;}
.y95{bottom:775.905000px;}
.y137{bottom:776.625000px;}
.y6d{bottom:778.965000px;}
.yfd{bottom:787.245000px;}
.yc8{bottom:792.645000px;}
.y136{bottom:793.905000px;}
.y6c{bottom:796.065000px;}
.yfa{bottom:805.065000px;}
.yc7{bottom:809.925000px;}
.y135{bottom:811.185000px;}
.y6b{bottom:813.345000px;}
.yfc{bottom:822.345000px;}
.yc6{bottom:827.205000px;}
.y134{bottom:828.465000px;}
.y6a{bottom:830.625000px;}
.yfb{bottom:839.625000px;}
.yc5{bottom:844.845000px;}
.y133{bottom:845.565000px;}
.y69{bottom:847.905000px;}
.yf9{bottom:856.905000px;}
.y132{bottom:862.845000px;}
.y68{bottom:865.185000px;}
.yf7{bottom:874.905000px;}
.y131{bottom:880.170000px;}
.y67{bottom:882.510000px;}
.y2b{bottom:890.430000px;}
.y130{bottom:897.450000px;}
.y66{bottom:899.610000px;}
.yf6{bottom:914.010000px;}
.y12f{bottom:914.730000px;}
.y94{bottom:916.530000px;}
.y65{bottom:916.890000px;}
.yf5{bottom:931.110000px;}
.y12e{bottom:932.010000px;}
.y64{bottom:934.170000px;}
.y12{bottom:942.990000px;}
.yf4{bottom:948.390000px;}
.y63{bottom:951.450000px;}
.yf3{bottom:965.670000px;}
.y12d{bottom:966.390000px;}
.y15d{bottom:968.370000px;}
.y62{bottom:968.730000px;}
.yf2{bottom:982.950000px;}
.y12c{bottom:983.670000px;}
.y61{bottom:986.010000px;}
.yf1{bottom:1000.230000px;}
.y12b{bottom:1000.950000px;}
.y60{bottom:1003.110000px;}
.yf0{bottom:1014.450000px;}
.y12a{bottom:1018.230000px;}
.y5f{bottom:1020.390000px;}
.y10{bottom:1029.930000px;}
.yed{bottom:1032.450000px;}
.y129{bottom:1035.510000px;}
.y5e{bottom:1037.670000px;}
.yef{bottom:1049.730000px;}
.yf{bottom:1051.350000px;}
.y128{bottom:1052.610000px;}
.y5d{bottom:1054.950000px;}
.yee{bottom:1067.010000px;}
.ye{bottom:1068.630000px;}
.y127{bottom:1069.890000px;}
.y5c{bottom:1072.230000px;}
.yec{bottom:1084.110000px;}
.yd{bottom:1086.270000px;}
.y5b{bottom:1089.510000px;}
.y126{bottom:1101.390000px;}
.yeb{bottom:1102.110000px;}
.yc{bottom:1104.450000px;}
.y5a{bottom:1106.610000px;}
.y124{bottom:1119.390000px;}
.y59{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.y58{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y57{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y56{bottom:1196.100000px;}
.h19{height:15.480000px;}
.h16{height:17.100000px;}
.hc{height:17.280000px;}
.h15{height:17.316000px;}
.h21{height:20.736000px;}
.h6{height:20.880000px;}
.h17{height:21.780000px;}
.h18{height:21.816000px;}
.h5{height:23.400000px;}
.h1f{height:34.380000px;}
.h14{height:34.560000px;}
.h1e{height:34.596000px;}
.h7{height:36.651094px;}
.h8{height:40.500000px;}
.h20{height:41.522695px;}
.h2{height:44.280000px;}
.h10{height:51.840000px;}
.h13{height:52.560000px;}
.h25{height:52.971680px;}
.h23{height:52.998047px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h3{height:66.757500px;}
.h1b{height:68.940000px;}
.h1c{height:68.976000px;}
.h1a{height:69.120000px;}
.h1d{height:69.156000px;}
.h12{height:72.562500px;}
.h22{height:81.180000px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h24{height:160.380000px;}
.h11{height:222.690000px;}
.hf{height:362.190000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:30.960000px;}
.w10{width:53.100000px;}
.w11{width:53.136000px;}
.w1f{width:57.420000px;}
.w14{width:63.720000px;}
.w15{width:63.936000px;}
.w1c{width:64.836000px;}
.w1a{width:65.016000px;}
.w12{width:74.520000px;}
.w13{width:84.996000px;}
.w1d{width:106.380000px;}
.we{width:114.480000px;}
.wf{width:138.276000px;}
.w1e{width:144.396000px;}
.w6{width:176.250000px;}
.wd{width:181.110000px;}
.w18{width:213.870000px;}
.w2{width:216.570000px;}
.w1b{width:220.710000px;}
.w9{width:221.250000px;}
.w17{width:223.230000px;}
.w5{width:225.795000px;}
.wc{width:227.955000px;}
.wb{width:234.930000px;}
.w16{width:252.750000px;}
.w19{width:252.930000px;}
.w4{width:269.850000px;}
.w21{width:337.755000px;}
.w22{width:340.275000px;}
.wa{width:462.885000px;}
.w8{width:470.805000px;}
.w3{width:495.645000px;}
.w20{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.xd{left:7.020000px;}
.xa{left:8.100000px;}
.x5{left:34.920000px;}
.x12{left:43.200000px;}
.x13{left:48.240000px;}
.x14{left:56.340000px;}
.x11{left:63.930000px;}
.x1{left:90.396000px;}
.x15{left:99.936000px;}
.x7{left:108.036000px;}
.x1e{left:111.456000px;}
.x28{left:148.536000px;}
.x22{left:149.616000px;}
.x27{left:162.030000px;}
.x9{left:173.010000px;}
.x16{left:214.410000px;}
.x2a{left:261.759000px;}
.xb{left:283.755000px;}
.x3{left:306.975000px;}
.xc{left:314.715000px;}
.x1f{left:325.335000px;}
.xe{left:330.195000px;}
.x17{left:352.695000px;}
.x10{left:361.695000px;}
.x23{left:370.335000px;}
.x18{left:405.795000px;}
.x24{left:435.165000px;}
.x2b{left:445.245000px;}
.x19{left:458.925000px;}
.x1a{left:533.445000px;}
.x25{left:541.545000px;}
.xf{left:565.125000px;}
.x6{left:576.825000px;}
.x20{left:578.265000px;}
.x1b{left:618.450000px;}
.x26{left:685.950000px;}
.x1c{left:692.970000px;}
.x21{left:716.550000px;}
.x1d{left:756.690000px;}
.x29{left:770.040000px;}
.x8{left:777.420000px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.592000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls7{letter-spacing:0.821333pt;}
.ls4{letter-spacing:2.154667pt;}
.ls5{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls3{letter-spacing:2.794667pt;}
.ls26{letter-spacing:3.360000pt;}
.ls23{letter-spacing:4.000000pt;}
.ls20{letter-spacing:6.560000pt;}
.ls22{letter-spacing:9.760000pt;}
.ls1f{letter-spacing:13.600000pt;}
.ls1e{letter-spacing:20.640000pt;}
.ls2d{letter-spacing:28.320000pt;}
.ls28{letter-spacing:31.498667pt;}
.ls14{letter-spacing:37.051307pt;}
.ls2c{letter-spacing:46.880000pt;}
.ls2f{letter-spacing:49.440000pt;}
.ls2e{letter-spacing:54.560000pt;}
.ls24{letter-spacing:63.520000pt;}
.ls29{letter-spacing:73.120000pt;}
.ls21{letter-spacing:76.320000pt;}
.ls27{letter-spacing:80.160000pt;}
.ls13{letter-spacing:82.720000pt;}
.ls2b{letter-spacing:130.080000pt;}
.ls10{letter-spacing:397.578667pt;}
.lsc{letter-spacing:511.018667pt;}
.lsb{letter-spacing:577.578667pt;}
.lse{letter-spacing:612.138667pt;}
.lsf{letter-spacing:694.698667pt;}
.lsa{letter-spacing:699.178667pt;}
.lsd{letter-spacing:777.898667pt;}
.ls9{letter-spacing:825.258667pt;}
.ws0{word-spacing:-17.459627pt;}
.ws1{word-spacing:-16.819627pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.101333pt;}
.wsb{word-spacing:-13.824000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.688000pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-2.358827pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._9{width:5.054933pt;}
._8{width:6.480640pt;}
._16{width:7.385600pt;}
._b{width:8.303787pt;}
._a{width:9.296000pt;}
._6{width:10.305280pt;}
._7{width:11.208320pt;}
._10{width:12.226133pt;}
._15{width:14.183040pt;}
._14{width:15.519573pt;}
._e{width:16.422613pt;}
._13{width:17.344640pt;}
._17{width:18.333013pt;}
._18{width:19.322240pt;}
._1c{width:20.274133pt;}
._f{width:22.106453pt;}
._d{width:23.532160pt;}
._c{width:24.541440pt;}
._12{width:25.718613pt;}
._11{width:26.613120pt;}
._1d{width:27.711573pt;}
._24{width:28.965547pt;}
._25{width:30.036907pt;}
._2e{width:31.498667pt;}
._1a{width:33.943680pt;}
._38{width:35.811413pt;}
._39{width:36.994987pt;}
._37{width:40.689920pt;}
._2d{width:42.720000pt;}
._33{width:45.744853pt;}
._3e{width:49.064320pt;}
._34{width:50.282240pt;}
._3b{width:54.453120pt;}
._20{width:60.238080pt;}
._21{width:61.305813pt;}
._22{width:63.425280pt;}
._23{width:64.870187pt;}
._3a{width:65.816320pt;}
._3d{width:69.696000pt;}
._3c{width:71.393280pt;}
._3f{width:73.207893pt;}
._40{width:74.306347pt;}
._1f{width:76.386560pt;}
._27{width:79.509760pt;}
._26{width:80.636160pt;}
._2f{width:104.593280pt;}
._30{width:105.738880pt;}
._2b{width:117.745493pt;}
._36{width:122.314240pt;}
._31{width:130.090880pt;}
._32{width:131.965227pt;}
._2c{width:134.299307pt;}
._35{width:138.462293pt;}
._2a{width:159.860267pt;}
._19{width:175.498667pt;}
._29{width:180.607573pt;}
._28{width:182.277547pt;}
._1b{width:364.212480pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.yc4{bottom:-0.640053pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y105{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.yf8{bottom:3.080000pt;}
.yb0{bottom:3.200000pt;}
.y17{bottom:3.360000pt;}
.yae{bottom:3.400000pt;}
.y6{bottom:3.680000pt;}
.y173{bottom:3.720000pt;}
.y179{bottom:4.480000pt;}
.ybf{bottom:4.794667pt;}
.yc3{bottom:4.800000pt;}
.yc1{bottom:5.152000pt;}
.y5{bottom:7.200000pt;}
.y11b{bottom:10.880000pt;}
.yab{bottom:11.040000pt;}
.y3{bottom:11.360000pt;}
.y183{bottom:16.640000pt;}
.y178{bottom:18.240000pt;}
.y125{bottom:18.426667pt;}
.y2a{bottom:18.560000pt;}
.y16{bottom:18.720000pt;}
.ya9{bottom:19.040000pt;}
.y2{bottom:25.760000pt;}
.yd9{bottom:26.240000pt;}
.ycc{bottom:26.400000pt;}
.y182{bottom:30.560000pt;}
.y177{bottom:32.000000pt;}
.y2d{bottom:33.760000pt;}
.y15{bottom:33.920000pt;}
.y2c{bottom:34.080000pt;}
.yc2{bottom:39.520000pt;}
.y181{bottom:44.474667pt;}
.y176{bottom:45.920000pt;}
.y14{bottom:49.280000pt;}
.yb{bottom:50.400000pt;}
.y180{bottom:59.674667pt;}
.y175{bottom:59.840000pt;}
.y36{bottom:63.360000pt;}
.y13{bottom:64.320000pt;}
.y18{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y17f{bottom:73.434667pt;}
.y35{bottom:78.240000pt;}
.y29{bottom:80.000000pt;}
.yc0{bottom:85.440000pt;}
.y17e{bottom:87.194667pt;}
.y34{bottom:93.920000pt;}
.y28{bottom:95.360000pt;}
.y17d{bottom:101.114667pt;}
.y17a{bottom:101.952000pt;}
.ybd{bottom:103.872000pt;}
.y15c{bottom:107.712000pt;}
.y33{bottom:109.280000pt;}
.y93{bottom:109.632000pt;}
.y27{bottom:110.560000pt;}
.yea{bottom:113.952000pt;}
.y17c{bottom:114.874667pt;}
.y123{bottom:115.072000pt;}
.ybc{bottom:119.232000pt;}
.y55{bottom:120.192000pt;}
.y15b{bottom:123.072000pt;}
.y32{bottom:124.640000pt;}
.y92{bottom:124.992000pt;}
.y26{bottom:125.920000pt;}
.ye9{bottom:129.312000pt;}
.y17b{bottom:130.234667pt;}
.y122{bottom:130.272000pt;}
.ybe{bottom:130.592000pt;}
.ybb{bottom:134.586667pt;}
.y54{bottom:135.546667pt;}
.y15a{bottom:138.266667pt;}
.y31{bottom:140.000000pt;}
.y91{bottom:140.346667pt;}
.y25{bottom:141.280000pt;}
.y171{bottom:143.386667pt;}
.ye8{bottom:144.666667pt;}
.y121{bottom:145.626667pt;}
.yba{bottom:149.946667pt;}
.y53{bottom:150.746667pt;}
.y159{bottom:153.626667pt;}
.y30{bottom:155.360000pt;}
.y90{bottom:155.706667pt;}
.y24{bottom:156.640000pt;}
.y170{bottom:158.746667pt;}
.ye7{bottom:159.866667pt;}
.y120{bottom:160.986667pt;}
.yb9{bottom:165.306667pt;}
.y52{bottom:166.106667pt;}
.y158{bottom:168.986667pt;}
.y2f{bottom:170.560000pt;}
.y8f{bottom:171.066667pt;}
.y23{bottom:172.000000pt;}
.y16f{bottom:174.106667pt;}
.ye6{bottom:175.226667pt;}
.y11f{bottom:176.346667pt;}
.yb8{bottom:180.666667pt;}
.y51{bottom:181.466667pt;}
.y157{bottom:184.346667pt;}
.y2e{bottom:185.640000pt;}
.y8e{bottom:186.266667pt;}
.y22{bottom:187.240000pt;}
.ye5{bottom:187.866667pt;}
.y16e{bottom:189.466667pt;}
.y11e{bottom:191.706667pt;}
.yb7{bottom:195.866667pt;}
.y50{bottom:196.826667pt;}
.y156{bottom:199.706667pt;}
.y8d{bottom:201.626667pt;}
.y21{bottom:202.600000pt;}
.ye2{bottom:203.866667pt;}
.y119{bottom:204.346667pt;}
.y16d{bottom:204.666667pt;}
.yb6{bottom:211.226667pt;}
.y4f{bottom:212.186667pt;}
.y155{bottom:215.066667pt;}
.y8c{bottom:216.986667pt;}
.y20{bottom:217.960000pt;}
.ye4{bottom:219.226667pt;}
.y11d{bottom:219.706667pt;}
.y16c{bottom:220.026667pt;}
.yb5{bottom:226.586667pt;}
.y4e{bottom:227.546667pt;}
.y154{bottom:230.266667pt;}
.y8b{bottom:232.346667pt;}
.y1f{bottom:233.320000pt;}
.ye3{bottom:234.586667pt;}
.y11a{bottom:235.066667pt;}
.y16b{bottom:235.386667pt;}
.yb4{bottom:241.946667pt;}
.y4d{bottom:242.746667pt;}
.y174{bottom:244.506667pt;}
.y153{bottom:245.626667pt;}
.y8a{bottom:247.706667pt;}
.y1e{bottom:248.680000pt;}
.ye1{bottom:249.946667pt;}
.y11c{bottom:250.266667pt;}
.y16a{bottom:250.746667pt;}
.yb3{bottom:257.306667pt;}
.y4c{bottom:258.106667pt;}
.y152{bottom:260.986667pt;}
.y89{bottom:263.066667pt;}
.y1d{bottom:264.040000pt;}
.y115{bottom:265.626667pt;}
.ye0{bottom:265.946667pt;}
.y169{bottom:266.426667pt;}
.yb2{bottom:272.666667pt;}
.y4b{bottom:273.466667pt;}
.y151{bottom:276.346667pt;}
.y88{bottom:278.266667pt;}
.y1c{bottom:279.240000pt;}
.y118{bottom:280.986667pt;}
.y168{bottom:284.506667pt;}
.yb1{bottom:285.306667pt;}
.y4a{bottom:288.826667pt;}
.y150{bottom:291.706667pt;}
.y87{bottom:293.626667pt;}
.y1b{bottom:294.600000pt;}
.y116{bottom:296.346667pt;}
.y167{bottom:299.866667pt;}
.yaf{bottom:300.666667pt;}
.y49{bottom:304.186667pt;}
.y14f{bottom:307.066667pt;}
.y86{bottom:308.986667pt;}
.y1a{bottom:309.960000pt;}
.y117{bottom:311.706667pt;}
.y166{bottom:315.546667pt;}
.yad{bottom:315.866667pt;}
.y172{bottom:317.306667pt;}
.y48{bottom:319.586667pt;}
.y14e{bottom:322.306667pt;}
.y85{bottom:324.386667pt;}
.y114{bottom:327.746667pt;}
.yac{bottom:331.266667pt;}
.y165{bottom:333.506667pt;}
.y47{bottom:334.786667pt;}
.y14d{bottom:337.666667pt;}
.y84{bottom:339.746667pt;}
.ydf{bottom:346.626667pt;}
.ya8{bottom:347.266667pt;}
.y164{bottom:348.866667pt;}
.y46{bottom:350.146667pt;}
.y14c{bottom:353.026667pt;}
.y83{bottom:355.106667pt;}
.yde{bottom:361.986667pt;}
.y113{bottom:362.306667pt;}
.y163{bottom:364.226667pt;}
.y45{bottom:365.506667pt;}
.y14b{bottom:368.386667pt;}
.y82{bottom:370.306667pt;}
.ydd{bottom:377.346667pt;}
.y112{bottom:377.666667pt;}
.yaa{bottom:378.626667pt;}
.y162{bottom:379.586667pt;}
.y44{bottom:380.866667pt;}
.y14a{bottom:383.746667pt;}
.y81{bottom:385.666667pt;}
.ydc{bottom:389.986667pt;}
.y111{bottom:393.026667pt;}
.y161{bottom:395.266667pt;}
.y43{bottom:396.226667pt;}
.y149{bottom:398.946667pt;}
.y80{bottom:401.026667pt;}
.yd8{bottom:405.986667pt;}
.y110{bottom:408.386667pt;}
.y42{bottom:411.586667pt;}
.ya7{bottom:413.346667pt;}
.y148{bottom:414.306667pt;}
.y7f{bottom:416.386667pt;}
.ydb{bottom:421.346667pt;}
.y10f{bottom:423.746667pt;}
.y41{bottom:426.786667pt;}
.ya6{bottom:428.546667pt;}
.y147{bottom:429.666667pt;}
.y7e{bottom:431.426667pt;}
.y15e{bottom:431.746667pt;}
.yda{bottom:436.546667pt;}
.y10e{bottom:438.946667pt;}
.y40{bottom:442.146667pt;}
.ya5{bottom:443.906667pt;}
.y7d{bottom:446.946667pt;}
.yd7{bottom:451.906667pt;}
.y10d{bottom:454.306667pt;}
.y3f{bottom:457.506667pt;}
.ya4{bottom:459.266667pt;}
.y146{bottom:460.386667pt;}
.y7c{bottom:462.306667pt;}
.yd6{bottom:467.906667pt;}
.y10c{bottom:469.666667pt;}
.y3e{bottom:472.546667pt;}
.ya3{bottom:474.626667pt;}
.y145{bottom:475.746667pt;}
.y7b{bottom:477.666667pt;}
.y10b{bottom:485.026667pt;}
.y3d{bottom:488.226667pt;}
.ya2{bottom:489.986667pt;}
.y144{bottom:490.946667pt;}
.y7a{bottom:493.026667pt;}
.y10a{bottom:497.666667pt;}
.yd5{bottom:502.626667pt;}
.y3c{bottom:503.426667pt;}
.ya1{bottom:505.346667pt;}
.y143{bottom:506.306667pt;}
.y79{bottom:508.386667pt;}
.y107{bottom:513.666667pt;}
.yd4{bottom:517.986667pt;}
.y3b{bottom:518.786667pt;}
.ya0{bottom:520.226667pt;}
.y160{bottom:520.546667pt;}
.y142{bottom:521.666667pt;}
.y78{bottom:523.746667pt;}
.y109{bottom:529.026667pt;}
.yd3{bottom:533.346667pt;}
.y3a{bottom:534.146667pt;}
.y9f{bottom:535.906667pt;}
.y141{bottom:537.026667pt;}
.y77{bottom:538.946667pt;}
.y108{bottom:544.386667pt;}
.yd2{bottom:548.546667pt;}
.y39{bottom:549.533333pt;}
.y9e{bottom:551.293333pt;}
.y140{bottom:552.413333pt;}
.y76{bottom:554.333333pt;}
.y106{bottom:559.773333pt;}
.yd1{bottom:563.933333pt;}
.y38{bottom:564.573333pt;}
.y9d{bottom:566.653333pt;}
.y13f{bottom:567.773333pt;}
.y75{bottom:569.693333pt;}
.y104{bottom:575.773333pt;}
.yd0{bottom:579.293333pt;}
.y37{bottom:579.933333pt;}
.y9c{bottom:582.013333pt;}
.y13e{bottom:582.973333pt;}
.y74{bottom:585.053333pt;}
.ycf{bottom:591.933333pt;}
.y19{bottom:592.893333pt;}
.y9b{bottom:597.053333pt;}
.y15f{bottom:597.693333pt;}
.y13d{bottom:598.333333pt;}
.y73{bottom:600.413333pt;}
.ycb{bottom:607.933333pt;}
.y103{bottom:610.333333pt;}
.y9a{bottom:612.573333pt;}
.y13c{bottom:613.693333pt;}
.y72{bottom:615.773333pt;}
.yce{bottom:623.293333pt;}
.y102{bottom:625.693333pt;}
.y99{bottom:627.933333pt;}
.y13b{bottom:629.053333pt;}
.y71{bottom:630.973333pt;}
.ycd{bottom:638.653333pt;}
.y101{bottom:641.053333pt;}
.y98{bottom:643.293333pt;}
.y13a{bottom:644.413333pt;}
.y70{bottom:646.333333pt;}
.yca{bottom:654.013333pt;}
.y100{bottom:656.413333pt;}
.y97{bottom:658.653333pt;}
.y139{bottom:659.773333pt;}
.y6f{bottom:661.693333pt;}
.yc9{bottom:670.013333pt;}
.yff{bottom:671.773333pt;}
.y96{bottom:673.693333pt;}
.y138{bottom:674.973333pt;}
.y6e{bottom:677.053333pt;}
.yfe{bottom:686.973333pt;}
.y95{bottom:689.693333pt;}
.y137{bottom:690.333333pt;}
.y6d{bottom:692.413333pt;}
.yfd{bottom:699.773333pt;}
.yc8{bottom:704.573333pt;}
.y136{bottom:705.693333pt;}
.y6c{bottom:707.613333pt;}
.yfa{bottom:715.613333pt;}
.yc7{bottom:719.933333pt;}
.y135{bottom:721.053333pt;}
.y6b{bottom:722.973333pt;}
.yfc{bottom:730.973333pt;}
.yc6{bottom:735.293333pt;}
.y134{bottom:736.413333pt;}
.y6a{bottom:738.333333pt;}
.yfb{bottom:746.333333pt;}
.yc5{bottom:750.973333pt;}
.y133{bottom:751.613333pt;}
.y69{bottom:753.693333pt;}
.yf9{bottom:761.693333pt;}
.y132{bottom:766.973333pt;}
.y68{bottom:769.053333pt;}
.yf7{bottom:777.693333pt;}
.y131{bottom:782.373333pt;}
.y67{bottom:784.453333pt;}
.y2b{bottom:791.493333pt;}
.y130{bottom:797.733333pt;}
.y66{bottom:799.653333pt;}
.yf6{bottom:812.453333pt;}
.y12f{bottom:813.093333pt;}
.y94{bottom:814.693333pt;}
.y65{bottom:815.013333pt;}
.yf5{bottom:827.653333pt;}
.y12e{bottom:828.453333pt;}
.y64{bottom:830.373333pt;}
.y12{bottom:838.213333pt;}
.yf4{bottom:843.013333pt;}
.y63{bottom:845.733333pt;}
.yf3{bottom:858.373333pt;}
.y12d{bottom:859.013333pt;}
.y15d{bottom:860.773333pt;}
.y62{bottom:861.093333pt;}
.yf2{bottom:873.733333pt;}
.y12c{bottom:874.373333pt;}
.y61{bottom:876.453333pt;}
.yf1{bottom:889.093333pt;}
.y12b{bottom:889.733333pt;}
.y60{bottom:891.653333pt;}
.yf0{bottom:901.733333pt;}
.y12a{bottom:905.093333pt;}
.y5f{bottom:907.013333pt;}
.y10{bottom:915.493333pt;}
.yed{bottom:917.733333pt;}
.y129{bottom:920.453333pt;}
.y5e{bottom:922.373333pt;}
.yef{bottom:933.093333pt;}
.yf{bottom:934.533333pt;}
.y128{bottom:935.653333pt;}
.y5d{bottom:937.733333pt;}
.yee{bottom:948.453333pt;}
.ye{bottom:949.893333pt;}
.y127{bottom:951.013333pt;}
.y5c{bottom:953.093333pt;}
.yec{bottom:963.653333pt;}
.yd{bottom:965.573333pt;}
.y5b{bottom:968.453333pt;}
.y126{bottom:979.013333pt;}
.yeb{bottom:979.653333pt;}
.yc{bottom:981.733333pt;}
.y5a{bottom:983.653333pt;}
.y124{bottom:995.013333pt;}
.y59{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.y58{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y57{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y56{bottom:1063.200000pt;}
.h19{height:13.760000pt;}
.h16{height:15.200000pt;}
.hc{height:15.360000pt;}
.h15{height:15.392000pt;}
.h21{height:18.432000pt;}
.h6{height:18.560000pt;}
.h17{height:19.360000pt;}
.h18{height:19.392000pt;}
.h5{height:20.800000pt;}
.h1f{height:30.560000pt;}
.h14{height:30.720000pt;}
.h1e{height:30.752000pt;}
.h7{height:32.578750pt;}
.h8{height:36.000000pt;}
.h20{height:36.909063pt;}
.h2{height:39.360000pt;}
.h10{height:46.080000pt;}
.h13{height:46.720000pt;}
.h25{height:47.085938pt;}
.h23{height:47.109375pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h3{height:59.340000pt;}
.h1b{height:61.280000pt;}
.h1c{height:61.312000pt;}
.h1a{height:61.440000pt;}
.h1d{height:61.472000pt;}
.h12{height:64.500000pt;}
.h22{height:72.160000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h24{height:142.560000pt;}
.h11{height:197.946667pt;}
.hf{height:321.946667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.520000pt;}
.w10{width:47.200000pt;}
.w11{width:47.232000pt;}
.w1f{width:51.040000pt;}
.w14{width:56.640000pt;}
.w15{width:56.832000pt;}
.w1c{width:57.632000pt;}
.w1a{width:57.792000pt;}
.w12{width:66.240000pt;}
.w13{width:75.552000pt;}
.w1d{width:94.560000pt;}
.we{width:101.760000pt;}
.wf{width:122.912000pt;}
.w1e{width:128.352000pt;}
.w6{width:156.666667pt;}
.wd{width:160.986667pt;}
.w18{width:190.106667pt;}
.w2{width:192.506667pt;}
.w1b{width:196.186667pt;}
.w9{width:196.666667pt;}
.w17{width:198.426667pt;}
.w5{width:200.706667pt;}
.wc{width:202.626667pt;}
.wb{width:208.826667pt;}
.w16{width:224.666667pt;}
.w19{width:224.826667pt;}
.w4{width:239.866667pt;}
.w21{width:300.226667pt;}
.w22{width:302.466667pt;}
.wa{width:411.453333pt;}
.w8{width:418.493333pt;}
.w3{width:440.573333pt;}
.w20{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.xd{left:6.240000pt;}
.xa{left:7.200000pt;}
.x5{left:31.040000pt;}
.x12{left:38.400000pt;}
.x13{left:42.880000pt;}
.x14{left:50.080000pt;}
.x11{left:56.826667pt;}
.x1{left:80.352000pt;}
.x15{left:88.832000pt;}
.x7{left:96.032000pt;}
.x1e{left:99.072000pt;}
.x28{left:132.032000pt;}
.x22{left:132.992000pt;}
.x27{left:144.026667pt;}
.x9{left:153.786667pt;}
.x16{left:190.586667pt;}
.x2a{left:232.674667pt;}
.xb{left:252.226667pt;}
.x3{left:272.866667pt;}
.xc{left:279.746667pt;}
.x1f{left:289.186667pt;}
.xe{left:293.506667pt;}
.x17{left:313.506667pt;}
.x10{left:321.506667pt;}
.x23{left:329.186667pt;}
.x18{left:360.706667pt;}
.x24{left:386.813333pt;}
.x2b{left:395.773333pt;}
.x19{left:407.933333pt;}
.x1a{left:474.173333pt;}
.x25{left:481.373333pt;}
.xf{left:502.333333pt;}
.x6{left:512.733333pt;}
.x20{left:514.013333pt;}
.x1b{left:549.733333pt;}
.x26{left:609.733333pt;}
.x1c{left:615.973333pt;}
.x21{left:636.933333pt;}
.x1d{left:672.613333pt;}
.x29{left:684.480000pt;}
.x8{left:691.040000pt;}
}




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