
    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_92b5a71d34efb682f1a1f62f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_db6fd2078caf98742a58ae18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_b7e90e3a3c6e5990fc230180.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_856b578c2019f886dd0d80b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_2812604db8a41e4e16c2592f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1248a23ae0a37583a3bb527.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e4bd84efd95f936bb92cce77.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7fa02a13a2976e3b1f5305c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.955078;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c732b19a1bf0101c69b05271.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_60ba2424f824a8467b6567cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896484;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-72.420000px;}
.v9{vertical-align:-61.680000px;}
.v2{vertical-align:-43.920000px;}
.v3{vertical-align:-36.420000px;}
.v8{vertical-align:-28.560000px;}
.v7{vertical-align:-24.000000px;}
.vb{vertical-align:-21.060000px;}
.v6{vertical-align:-15.960000px;}
.v1{vertical-align:-10.080000px;}
.v5{vertical-align:-4.020000px;}
.va{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.513600px;}
.ls17{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.208200px;}
.ls13{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.091200px;}
.ls14{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.100800px;}
.ls2{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.135360px;}
.lsd{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.262200px;}
.ls23{letter-spacing:0.298800px;}
.ls21{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.820800px;}
.ls20{letter-spacing:8.100000px;}
.ls24{letter-spacing:11.466720px;}
.ls22{letter-spacing:13.860000px;}
.ls1d{letter-spacing:41.706720px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsf{word-spacing:-15.300000px;}
.ws21{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws22{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.479800px;}
.ws16{word-spacing:-14.166000px;}
.ws1{word-spacing:-0.328440px;}
.ws2{word-spacing:-0.066240px;}
.ws5{word-spacing:-0.059760px;}
.ws15{word-spacing:-0.054144px;}
.ws20{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws14{word-spacing:54.984000px;}
.ws13{word-spacing:55.104000px;}
.ws1a{word-spacing:56.964000px;}
.ws1b{word-spacing:57.144000px;}
.ws12{word-spacing:62.652000px;}
.ws19{word-spacing:64.812000px;}
.ws10{word-spacing:75.342000px;}
.ws11{word-spacing:75.828000px;}
.ws17{word-spacing:77.322000px;}
.ws18{word-spacing:77.988000px;}
.ws1d{word-spacing:258.618000px;}
.ws1c{word-spacing:399.066000px;}
.ws1e{word-spacing:506.304000px;}
.ws1f{word-spacing:506.664000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._28{margin-left:-12.890640px;}
._8{margin-left:-8.942400px;}
._15{margin-left:-7.122960px;}
._1f{margin-left:-5.558160px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._e{width:2.592000px;}
._d{width:3.711120px;}
._f{width:4.825680px;}
._10{width:5.847360px;}
._11{width:7.589520px;}
._16{width:8.594400px;}
._12{width:9.617760px;}
._13{width:11.294640px;}
._14{width:12.510240px;}
._17{width:13.676160px;}
._18{width:15.060480px;}
._19{width:16.444800px;}
._33{width:17.509680px;}
._2c{width:19.088880px;}
._2f{width:22.320480px;}
._27{width:25.610880px;}
._2d{width:26.730240px;}
._c{width:27.942720px;}
._b{width:29.283840px;}
._2e{width:32.626800px;}
._a{width:39.165840px;}
._2a{width:40.559520px;}
._30{width:41.949120px;}
._32{width:48.368400px;}
._1e{width:68.886000px;}
._24{width:70.413120px;}
._1d{width:73.434000px;}
._1c{width:74.610000px;}
._23{width:76.530000px;}
._31{width:80.081760px;}
._1b{width:82.140000px;}
._22{width:84.180000px;}
._1a{width:89.472000px;}
._21{width:91.632000px;}
._26{width:111.101280px;}
._25{width:133.137360px;}
._29{width:135.316320px;}
._20{width:149.750640px;}
._2b{width:171.903360px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(41,152,227);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y106{bottom:5.760000px;}
.y100{bottom:5.940000px;}
.y102{bottom:6.480000px;}
.yfa{bottom:7.890000px;}
.y10d{bottom:8.325000px;}
.y12f{bottom:10.650000px;}
.y126{bottom:24.300000px;}
.yba{bottom:24.660000px;}
.y103{bottom:24.840000px;}
.y109{bottom:25.560000px;}
.y105{bottom:25.590000px;}
.y10c{bottom:28.125000px;}
.yee{bottom:28.410000px;}
.y12e{bottom:30.450000px;}
.y12b{bottom:34.770000px;}
.y125{bottom:41.550000px;}
.ye8{bottom:45.285000px;}
.yfe{bottom:45.360000px;}
.y123{bottom:48.315000px;}
.yb1{bottom:49.890000px;}
.yb8{bottom:50.010000px;}
.y12d{bottom:50.430000px;}
.yb9{bottom:50.550000px;}
.yf8{bottom:54.720000px;}
.yf9{bottom:55.260000px;}
.y6{bottom:60.300000px;}
.yfd{bottom:65.340000px;}
.y122{bottom:66.210000px;}
.yac{bottom:66.750000px;}
.y12c{bottom:70.230000px;}
.ye9{bottom:71.130000px;}
.y11d{bottom:78.765000px;}
.y129{bottom:84.495000px;}
.yad{bottom:88.995000px;}
.ye6{bottom:91.080000px;}
.y33{bottom:93.960000px;}
.y97{bottom:94.140000px;}
.y11e{bottom:94.215000px;}
.ya0{bottom:94.320000px;}
.yea{bottom:97.020000px;}
.yaa{bottom:97.380000px;}
.y69{bottom:97.740000px;}
.y11b{bottom:106.920000px;}
.y11f{bottom:109.650000px;}
.y128{bottom:109.830000px;}
.ye5{bottom:110.880000px;}
.yae{bottom:111.210000px;}
.y32{bottom:113.760000px;}
.y96{bottom:113.940000px;}
.y9f{bottom:114.120000px;}
.yab{bottom:114.300000px;}
.y68{bottom:117.540000px;}
.yeb{bottom:122.910000px;}
.yf7{bottom:123.270000px;}
.y120{bottom:125.070000px;}
.y11a{bottom:126.720000px;}
.yb4{bottom:127.110000px;}
.ye4{bottom:130.680000px;}
.yb7{bottom:133.125000px;}
.yaf{bottom:133.410000px;}
.y31{bottom:133.560000px;}
.y95{bottom:133.740000px;}
.y9e{bottom:133.920000px;}
.yf2{bottom:135.030000px;}
.y67{bottom:137.340000px;}
.yf0{bottom:138.525000px;}
.y121{bottom:140.505000px;}
.y12a{bottom:141.480000px;}
.yf4{bottom:142.020000px;}
.y104{bottom:144.000000px;}
.y119{bottom:146.520000px;}
.yec{bottom:148.755000px;}
.ye3{bottom:150.480000px;}
.y30{bottom:153.390000px;}
.y94{bottom:153.570000px;}
.y9d{bottom:153.930000px;}
.yf6{bottom:154.950000px;}
.yb0{bottom:155.625000px;}
.yef{bottom:157.290000px;}
.y66{bottom:157.350000px;}
.y124{bottom:160.455000px;}
.yf1{bottom:160.890000px;}
.yf5{bottom:162.075000px;}
.yb5{bottom:165.420000px;}
.y118{bottom:166.350000px;}
.yb6{bottom:167.430000px;}
.yf3{bottom:169.050000px;}
.ye2{bottom:170.310000px;}
.yb2{bottom:170.430000px;}
.yb3{bottom:172.545000px;}
.y2f{bottom:173.370000px;}
.y9c{bottom:173.730000px;}
.yed{bottom:174.630000px;}
.y65{bottom:177.150000px;}
.yfc{bottom:183.630000px;}
.y117{bottom:186.330000px;}
.ye1{bottom:190.290000px;}
.y2e{bottom:193.170000px;}
.ybb{bottom:193.245000px;}
.y93{bottom:193.350000px;}
.y9b{bottom:193.530000px;}
.y64{bottom:196.950000px;}
.y116{bottom:206.130000px;}
.yfb{bottom:208.695000px;}
.y127{bottom:209.160000px;}
.ye0{bottom:210.090000px;}
.y2d{bottom:212.970000px;}
.y92{bottom:213.150000px;}
.y9a{bottom:213.330000px;}
.y63{bottom:216.750000px;}
.y101{bottom:222.510000px;}
.y115{bottom:225.930000px;}
.ydf{bottom:229.890000px;}
.y2c{bottom:232.770000px;}
.y91{bottom:232.950000px;}
.y99{bottom:233.130000px;}
.y62{bottom:236.550000px;}
.yff{bottom:243.030000px;}
.y114{bottom:245.730000px;}
.yde{bottom:249.690000px;}
.y98{bottom:249.870000px;}
.y2b{bottom:252.570000px;}
.y90{bottom:252.750000px;}
.y61{bottom:256.530000px;}
.y113{bottom:265.530000px;}
.ydd{bottom:269.490000px;}
.y2a{bottom:272.550000px;}
.y60{bottom:276.330000px;}
.y112{bottom:285.510000px;}
.ydc{bottom:289.470000px;}
.y29{bottom:292.350000px;}
.y8f{bottom:292.530000px;}
.y5f{bottom:296.130000px;}
.y111{bottom:305.310000px;}
.ydb{bottom:309.270000px;}
.y28{bottom:312.150000px;}
.y8e{bottom:312.330000px;}
.y5e{bottom:315.930000px;}
.y110{bottom:325.110000px;}
.yda{bottom:329.070000px;}
.y27{bottom:331.950000px;}
.y8d{bottom:332.130000px;}
.y5d{bottom:335.730000px;}
.ya9{bottom:344.730000px;}
.y10f{bottom:344.910000px;}
.yd9{bottom:348.870000px;}
.y26{bottom:351.750000px;}
.y8c{bottom:351.930000px;}
.y5c{bottom:355.710000px;}
.ya8{bottom:364.710000px;}
.yd8{bottom:368.670000px;}
.y25{bottom:371.730000px;}
.y5b{bottom:375.510000px;}
.ya7{bottom:384.510000px;}
.y10e{bottom:384.690000px;}
.yd7{bottom:388.650000px;}
.y24{bottom:391.530000px;}
.y8b{bottom:391.710000px;}
.y5a{bottom:395.310000px;}
.y10b{bottom:399.450000px;}
.ya6{bottom:404.355000px;}
.yd6{bottom:408.495000px;}
.y23{bottom:411.375000px;}
.y8a{bottom:411.555000px;}
.y59{bottom:415.155000px;}
.ya5{bottom:424.155000px;}
.yd5{bottom:428.295000px;}
.y22{bottom:431.175000px;}
.y89{bottom:431.355000px;}
.y58{bottom:434.955000px;}
.y108{bottom:441.615000px;}
.ya4{bottom:443.955000px;}
.yd4{bottom:448.095000px;}
.y21{bottom:450.975000px;}
.y88{bottom:451.155000px;}
.y57{bottom:463.935000px;}
.yd3{bottom:467.895000px;}
.y20{bottom:470.955000px;}
.y10a{bottom:481.215000px;}
.y56{bottom:483.735000px;}
.yd2{bottom:487.875000px;}
.y87{bottom:490.935000px;}
.y1f{bottom:492.915000px;}
.y55{bottom:503.535000px;}
.yd1{bottom:507.675000px;}
.y86{bottom:510.735000px;}
.y1e{bottom:521.895000px;}
.y54{bottom:523.335000px;}
.yd0{bottom:527.475000px;}
.y85{bottom:530.535000px;}
.y1d{bottom:541.695000px;}
.y53{bottom:543.135000px;}
.ycf{bottom:547.275000px;}
.y84{bottom:550.335000px;}
.y1c{bottom:561.495000px;}
.y52{bottom:563.115000px;}
.yce{bottom:567.075000px;}
.y83{bottom:570.135000px;}
.y1b{bottom:581.295000px;}
.ya3{bottom:582.915000px;}
.ycd{bottom:587.055000px;}
.y82{bottom:590.115000px;}
.y51{bottom:591.915000px;}
.y1a{bottom:601.095000px;}
.ycc{bottom:606.855000px;}
.y81{bottom:609.915000px;}
.y50{bottom:611.715000px;}
.y19{bottom:621.075000px;}
.ycb{bottom:626.655000px;}
.y80{bottom:629.715000px;}
.y4f{bottom:631.515000px;}
.y18{bottom:640.875000px;}
.yca{bottom:646.455000px;}
.y7f{bottom:649.545000px;}
.y4e{bottom:651.345000px;}
.y17{bottom:660.705000px;}
.yc9{bottom:666.285000px;}
.y7e{bottom:669.345000px;}
.y4d{bottom:671.325000px;}
.y16{bottom:680.505000px;}
.y107{bottom:683.025000px;}
.y11c{bottom:684.000000px;}
.yc8{bottom:686.265000px;}
.y7d{bottom:689.325000px;}
.y4c{bottom:691.125000px;}
.y15{bottom:700.305000px;}
.yc7{bottom:706.065000px;}
.y7c{bottom:709.125000px;}
.y4b{bottom:710.925000px;}
.y14{bottom:720.285000px;}
.yc6{bottom:725.865000px;}
.y7b{bottom:728.925000px;}
.ya2{bottom:730.725000px;}
.y4a{bottom:739.725000px;}
.y13{bottom:740.085000px;}
.yc5{bottom:745.665000px;}
.y7a{bottom:748.725000px;}
.ya1{bottom:750.525000px;}
.y49{bottom:759.525000px;}
.y12{bottom:759.885000px;}
.yc4{bottom:765.465000px;}
.y79{bottom:768.525000px;}
.y48{bottom:779.505000px;}
.y11{bottom:779.685000px;}
.yc3{bottom:785.445000px;}
.y78{bottom:788.505000px;}
.y47{bottom:799.305000px;}
.y10{bottom:799.485000px;}
.yc2{bottom:805.245000px;}
.y77{bottom:808.305000px;}
.y46{bottom:819.105000px;}
.yf{bottom:819.285000px;}
.yc1{bottom:825.045000px;}
.y76{bottom:828.105000px;}
.y45{bottom:838.905000px;}
.ye{bottom:839.085000px;}
.yc0{bottom:844.845000px;}
.y75{bottom:847.905000px;}
.y44{bottom:858.705000px;}
.yd{bottom:861.225000px;}
.ybf{bottom:864.645000px;}
.y74{bottom:867.705000px;}
.y43{bottom:878.685000px;}
.yc{bottom:881.205000px;}
.ybe{bottom:884.625000px;}
.y73{bottom:887.685000px;}
.y42{bottom:898.530000px;}
.yb{bottom:901.590000px;}
.ybd{bottom:904.470000px;}
.y72{bottom:907.530000px;}
.y41{bottom:918.330000px;}
.ybc{bottom:921.030000px;}
.ye7{bottom:922.140000px;}
.ya{bottom:922.830000px;}
.y71{bottom:927.330000px;}
.y40{bottom:938.130000px;}
.y9{bottom:946.230000px;}
.y70{bottom:947.130000px;}
.y3f{bottom:957.930000px;}
.y6f{bottom:966.930000px;}
.y3e{bottom:977.910000px;}
.y8{bottom:978.090000px;}
.y6e{bottom:986.910000px;}
.y3d{bottom:997.710000px;}
.y6d{bottom:1006.710000px;}
.y7{bottom:1009.770000px;}
.y3c{bottom:1017.510000px;}
.y6c{bottom:1026.510000px;}
.y3b{bottom:1037.310000px;}
.y6b{bottom:1046.310000px;}
.y5{bottom:1051.170000px;}
.y3a{bottom:1057.110000px;}
.y6a{bottom:1066.110000px;}
.y4{bottom:1081.950000px;}
.y39{bottom:1086.090000px;}
.y38{bottom:1105.890000px;}
.y3{bottom:1112.730000px;}
.y37{bottom:1125.690000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1145.490000px;}
.y35{bottom:1173.060000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.h1c{height:2.581875px;}
.h15{height:19.800000px;}
.hf{height:19.980000px;}
.h11{height:20.520000px;}
.h12{height:38.880000px;}
.h16{height:39.600000px;}
.h13{height:39.636000px;}
.ha{height:41.000977px;}
.hb{height:41.110312px;}
.h17{height:42.156000px;}
.h10{height:42.368906px;}
.h5{height:43.273477px;}
.h3{height:47.965781px;}
.h8{height:49.255313px;}
.hc{height:52.136719px;}
.h6{height:53.573906px;}
.h4{height:59.383125px;}
.h14{height:59.400000px;}
.h19{height:61.189805px;}
.h7{height:67.824844px;}
.h2{height:69.341836px;}
.h1a{height:73.722656px;}
.he{height:79.380000px;}
.h1b{height:84.276000px;}
.h9{height:224.820000px;}
.hd{height:237.420000px;}
.h18{height:237.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:60.300000px;}
.w6{width:69.840000px;}
.we{width:75.600000px;}
.wc{width:108.036000px;}
.w7{width:125.856000px;}
.wd{width:128.556000px;}
.wa{width:148.716000px;}
.w8{width:149.220000px;}
.w9{width:156.630000px;}
.w5{width:172.830000px;}
.w10{width:210.810000px;}
.w11{width:581.010000px;}
.w3{width:643.500000px;}
.w4{width:647.100000px;}
.wf{width:676.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:8.100000px;}
.x1{left:54.179987px;}
.xf{left:68.430000px;}
.x38{left:73.799987px;}
.x15{left:80.999987px;}
.x10{left:89.130000px;}
.x35{left:97.560000px;}
.x7{left:99.210000px;}
.x39{left:100.835987px;}
.x6{left:106.050000px;}
.x16{left:108.035987px;}
.x18{left:111.930000px;}
.x33{left:115.095000px;}
.x17{left:122.400000px;}
.x5{left:124.560000px;}
.x32{left:132.330000px;}
.x9{left:136.230000px;}
.x8{left:137.595000px;}
.x31{left:139.215000px;}
.x1a{left:142.410000px;}
.x19{left:143.715000px;}
.x2b{left:160.409987px;}
.x36{left:164.985000px;}
.x24{left:178.455000px;}
.x1b{left:180.645000px;}
.x2c{left:185.970000px;}
.x3a{left:191.370000px;}
.xa{left:211.650000px;}
.x1c{left:218.880000px;}
.x4{left:230.249987px;}
.x34{left:234.150000px;}
.x11{left:236.550000px;}
.xb{left:249.375000px;}
.x1d{left:257.070000px;}
.x25{left:258.630000px;}
.x3b{left:264.810000px;}
.x12{left:273.705000px;}
.x27{left:281.595000px;}
.xc{left:287.070000px;}
.x1e{left:295.305000px;}
.x1f{left:333.540000px;}
.x2d{left:334.695000px;}
.x28{left:351.435000px;}
.x20{left:371.775000px;}
.x2e{left:394.995000px;}
.xd{left:400.215000px;}
.x21{left:409.965000px;}
.x14{left:446.504987px;}
.x22{left:448.200000px;}
.x29{left:477.285000px;}
.x23{left:486.435000px;}
.x2f{left:503.025000px;}
.xe{left:551.055000px;}
.x37{left:608.790000px;}
.x2a{left:626.505000px;}
.x30{left:631.590000px;}
.x3{left:768.389987px;}
.x13{left:770.549987px;}
.x2{left:785.129987px;}
@media print{
.v4{vertical-align:-64.373333pt;}
.v9{vertical-align:-54.826667pt;}
.v2{vertical-align:-39.040000pt;}
.v3{vertical-align:-32.373333pt;}
.v8{vertical-align:-25.386667pt;}
.v7{vertical-align:-21.333333pt;}
.vb{vertical-align:-18.720000pt;}
.v6{vertical-align:-14.186667pt;}
.v1{vertical-align:-8.960000pt;}
.v5{vertical-align:-3.573333pt;}
.va{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.456533pt;}
.ls17{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.185067pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.081067pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.089600pt;}
.ls2{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.120320pt;}
.lsd{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.233067pt;}
.ls23{letter-spacing:0.265600pt;}
.ls21{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.729600pt;}
.ls20{letter-spacing:7.200000pt;}
.ls24{letter-spacing:10.192640pt;}
.ls22{letter-spacing:12.320000pt;}
.ls1d{letter-spacing:37.072640pt;}
.ws8{word-spacing:-58.880000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsf{word-spacing:-13.600000pt;}
.ws21{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws22{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.870933pt;}
.ws16{word-spacing:-12.592000pt;}
.ws1{word-spacing:-0.291947pt;}
.ws2{word-spacing:-0.058880pt;}
.ws5{word-spacing:-0.053120pt;}
.ws15{word-spacing:-0.048128pt;}
.ws20{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws14{word-spacing:48.874667pt;}
.ws13{word-spacing:48.981333pt;}
.ws1a{word-spacing:50.634667pt;}
.ws1b{word-spacing:50.794667pt;}
.ws12{word-spacing:55.690667pt;}
.ws19{word-spacing:57.610667pt;}
.ws10{word-spacing:66.970667pt;}
.ws11{word-spacing:67.402667pt;}
.ws17{word-spacing:68.730667pt;}
.ws18{word-spacing:69.322667pt;}
.ws1d{word-spacing:229.882667pt;}
.ws1c{word-spacing:354.725333pt;}
.ws1e{word-spacing:450.048000pt;}
.ws1f{word-spacing:450.368000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._28{margin-left:-11.458347pt;}
._8{margin-left:-7.948800pt;}
._15{margin-left:-6.331520pt;}
._1f{margin-left:-4.940587pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._e{width:2.304000pt;}
._d{width:3.298773pt;}
._f{width:4.289493pt;}
._10{width:5.197653pt;}
._11{width:6.746240pt;}
._16{width:7.639467pt;}
._12{width:8.549120pt;}
._13{width:10.039680pt;}
._14{width:11.120213pt;}
._17{width:12.156587pt;}
._18{width:13.387093pt;}
._19{width:14.617600pt;}
._33{width:15.564160pt;}
._2c{width:16.967893pt;}
._2f{width:19.840427pt;}
._27{width:22.765227pt;}
._2d{width:23.760213pt;}
._c{width:24.837973pt;}
._b{width:26.030080pt;}
._2e{width:29.001600pt;}
._a{width:34.814080pt;}
._2a{width:36.052907pt;}
._30{width:37.288107pt;}
._32{width:42.994133pt;}
._1e{width:61.232000pt;}
._24{width:62.589440pt;}
._1d{width:65.274667pt;}
._1c{width:66.320000pt;}
._23{width:68.026667pt;}
._31{width:71.183787pt;}
._1b{width:73.013333pt;}
._22{width:74.826667pt;}
._1a{width:79.530667pt;}
._21{width:81.450667pt;}
._26{width:98.756693pt;}
._25{width:118.344320pt;}
._29{width:120.281173pt;}
._20{width:133.111680pt;}
._2b{width:152.802987pt;}
.fs6{font-size:2.560000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:5.120000pt;}
.y100{bottom:5.280000pt;}
.y102{bottom:5.760000pt;}
.yfa{bottom:7.013333pt;}
.y10d{bottom:7.400000pt;}
.y12f{bottom:9.466667pt;}
.y126{bottom:21.600000pt;}
.yba{bottom:21.920000pt;}
.y103{bottom:22.080000pt;}
.y109{bottom:22.720000pt;}
.y105{bottom:22.746667pt;}
.y10c{bottom:25.000000pt;}
.yee{bottom:25.253333pt;}
.y12e{bottom:27.066667pt;}
.y12b{bottom:30.906667pt;}
.y125{bottom:36.933333pt;}
.ye8{bottom:40.253333pt;}
.yfe{bottom:40.320000pt;}
.y123{bottom:42.946667pt;}
.yb1{bottom:44.346667pt;}
.yb8{bottom:44.453333pt;}
.y12d{bottom:44.826667pt;}
.yb9{bottom:44.933333pt;}
.yf8{bottom:48.640000pt;}
.yf9{bottom:49.120000pt;}
.y6{bottom:53.600000pt;}
.yfd{bottom:58.080000pt;}
.y122{bottom:58.853333pt;}
.yac{bottom:59.333333pt;}
.y12c{bottom:62.426667pt;}
.ye9{bottom:63.226667pt;}
.y11d{bottom:70.013333pt;}
.y129{bottom:75.106667pt;}
.yad{bottom:79.106667pt;}
.ye6{bottom:80.960000pt;}
.y33{bottom:83.520000pt;}
.y97{bottom:83.680000pt;}
.y11e{bottom:83.746667pt;}
.ya0{bottom:83.840000pt;}
.yea{bottom:86.240000pt;}
.yaa{bottom:86.560000pt;}
.y69{bottom:86.880000pt;}
.y11b{bottom:95.040000pt;}
.y11f{bottom:97.466667pt;}
.y128{bottom:97.626667pt;}
.ye5{bottom:98.560000pt;}
.yae{bottom:98.853333pt;}
.y32{bottom:101.120000pt;}
.y96{bottom:101.280000pt;}
.y9f{bottom:101.440000pt;}
.yab{bottom:101.600000pt;}
.y68{bottom:104.480000pt;}
.yeb{bottom:109.253333pt;}
.yf7{bottom:109.573333pt;}
.y120{bottom:111.173333pt;}
.y11a{bottom:112.640000pt;}
.yb4{bottom:112.986667pt;}
.ye4{bottom:116.160000pt;}
.yb7{bottom:118.333333pt;}
.yaf{bottom:118.586667pt;}
.y31{bottom:118.720000pt;}
.y95{bottom:118.880000pt;}
.y9e{bottom:119.040000pt;}
.yf2{bottom:120.026667pt;}
.y67{bottom:122.080000pt;}
.yf0{bottom:123.133333pt;}
.y121{bottom:124.893333pt;}
.y12a{bottom:125.760000pt;}
.yf4{bottom:126.240000pt;}
.y104{bottom:128.000000pt;}
.y119{bottom:130.240000pt;}
.yec{bottom:132.226667pt;}
.ye3{bottom:133.760000pt;}
.y30{bottom:136.346667pt;}
.y94{bottom:136.506667pt;}
.y9d{bottom:136.826667pt;}
.yf6{bottom:137.733333pt;}
.yb0{bottom:138.333333pt;}
.yef{bottom:139.813333pt;}
.y66{bottom:139.866667pt;}
.y124{bottom:142.626667pt;}
.yf1{bottom:143.013333pt;}
.yf5{bottom:144.066667pt;}
.yb5{bottom:147.040000pt;}
.y118{bottom:147.866667pt;}
.yb6{bottom:148.826667pt;}
.yf3{bottom:150.266667pt;}
.ye2{bottom:151.386667pt;}
.yb2{bottom:151.493333pt;}
.yb3{bottom:153.373333pt;}
.y2f{bottom:154.106667pt;}
.y9c{bottom:154.426667pt;}
.yed{bottom:155.226667pt;}
.y65{bottom:157.466667pt;}
.yfc{bottom:163.226667pt;}
.y117{bottom:165.626667pt;}
.ye1{bottom:169.146667pt;}
.y2e{bottom:171.706667pt;}
.ybb{bottom:171.773333pt;}
.y93{bottom:171.866667pt;}
.y9b{bottom:172.026667pt;}
.y64{bottom:175.066667pt;}
.y116{bottom:183.226667pt;}
.yfb{bottom:185.506667pt;}
.y127{bottom:185.920000pt;}
.ye0{bottom:186.746667pt;}
.y2d{bottom:189.306667pt;}
.y92{bottom:189.466667pt;}
.y9a{bottom:189.626667pt;}
.y63{bottom:192.666667pt;}
.y101{bottom:197.786667pt;}
.y115{bottom:200.826667pt;}
.ydf{bottom:204.346667pt;}
.y2c{bottom:206.906667pt;}
.y91{bottom:207.066667pt;}
.y99{bottom:207.226667pt;}
.y62{bottom:210.266667pt;}
.yff{bottom:216.026667pt;}
.y114{bottom:218.426667pt;}
.yde{bottom:221.946667pt;}
.y98{bottom:222.106667pt;}
.y2b{bottom:224.506667pt;}
.y90{bottom:224.666667pt;}
.y61{bottom:228.026667pt;}
.y113{bottom:236.026667pt;}
.ydd{bottom:239.546667pt;}
.y2a{bottom:242.266667pt;}
.y60{bottom:245.626667pt;}
.y112{bottom:253.786667pt;}
.ydc{bottom:257.306667pt;}
.y29{bottom:259.866667pt;}
.y8f{bottom:260.026667pt;}
.y5f{bottom:263.226667pt;}
.y111{bottom:271.386667pt;}
.ydb{bottom:274.906667pt;}
.y28{bottom:277.466667pt;}
.y8e{bottom:277.626667pt;}
.y5e{bottom:280.826667pt;}
.y110{bottom:288.986667pt;}
.yda{bottom:292.506667pt;}
.y27{bottom:295.066667pt;}
.y8d{bottom:295.226667pt;}
.y5d{bottom:298.426667pt;}
.ya9{bottom:306.426667pt;}
.y10f{bottom:306.586667pt;}
.yd9{bottom:310.106667pt;}
.y26{bottom:312.666667pt;}
.y8c{bottom:312.826667pt;}
.y5c{bottom:316.186667pt;}
.ya8{bottom:324.186667pt;}
.yd8{bottom:327.706667pt;}
.y25{bottom:330.426667pt;}
.y5b{bottom:333.786667pt;}
.ya7{bottom:341.786667pt;}
.y10e{bottom:341.946667pt;}
.yd7{bottom:345.466667pt;}
.y24{bottom:348.026667pt;}
.y8b{bottom:348.186667pt;}
.y5a{bottom:351.386667pt;}
.y10b{bottom:355.066667pt;}
.ya6{bottom:359.426667pt;}
.yd6{bottom:363.106667pt;}
.y23{bottom:365.666667pt;}
.y8a{bottom:365.826667pt;}
.y59{bottom:369.026667pt;}
.ya5{bottom:377.026667pt;}
.yd5{bottom:380.706667pt;}
.y22{bottom:383.266667pt;}
.y89{bottom:383.426667pt;}
.y58{bottom:386.626667pt;}
.y108{bottom:392.546667pt;}
.ya4{bottom:394.626667pt;}
.yd4{bottom:398.306667pt;}
.y21{bottom:400.866667pt;}
.y88{bottom:401.026667pt;}
.y57{bottom:412.386667pt;}
.yd3{bottom:415.906667pt;}
.y20{bottom:418.626667pt;}
.y10a{bottom:427.746667pt;}
.y56{bottom:429.986667pt;}
.yd2{bottom:433.666667pt;}
.y87{bottom:436.386667pt;}
.y1f{bottom:438.146667pt;}
.y55{bottom:447.586667pt;}
.yd1{bottom:451.266667pt;}
.y86{bottom:453.986667pt;}
.y1e{bottom:463.906667pt;}
.y54{bottom:465.186667pt;}
.yd0{bottom:468.866667pt;}
.y85{bottom:471.586667pt;}
.y1d{bottom:481.506667pt;}
.y53{bottom:482.786667pt;}
.ycf{bottom:486.466667pt;}
.y84{bottom:489.186667pt;}
.y1c{bottom:499.106667pt;}
.y52{bottom:500.546667pt;}
.yce{bottom:504.066667pt;}
.y83{bottom:506.786667pt;}
.y1b{bottom:516.706667pt;}
.ya3{bottom:518.146667pt;}
.ycd{bottom:521.826667pt;}
.y82{bottom:524.546667pt;}
.y51{bottom:526.146667pt;}
.y1a{bottom:534.306667pt;}
.ycc{bottom:539.426667pt;}
.y81{bottom:542.146667pt;}
.y50{bottom:543.746667pt;}
.y19{bottom:552.066667pt;}
.ycb{bottom:557.026667pt;}
.y80{bottom:559.746667pt;}
.y4f{bottom:561.346667pt;}
.y18{bottom:569.666667pt;}
.yca{bottom:574.626667pt;}
.y7f{bottom:577.373333pt;}
.y4e{bottom:578.973333pt;}
.y17{bottom:587.293333pt;}
.yc9{bottom:592.253333pt;}
.y7e{bottom:594.973333pt;}
.y4d{bottom:596.733333pt;}
.y16{bottom:604.893333pt;}
.y107{bottom:607.133333pt;}
.y11c{bottom:608.000000pt;}
.yc8{bottom:610.013333pt;}
.y7d{bottom:612.733333pt;}
.y4c{bottom:614.333333pt;}
.y15{bottom:622.493333pt;}
.yc7{bottom:627.613333pt;}
.y7c{bottom:630.333333pt;}
.y4b{bottom:631.933333pt;}
.y14{bottom:640.253333pt;}
.yc6{bottom:645.213333pt;}
.y7b{bottom:647.933333pt;}
.ya2{bottom:649.533333pt;}
.y4a{bottom:657.533333pt;}
.y13{bottom:657.853333pt;}
.yc5{bottom:662.813333pt;}
.y7a{bottom:665.533333pt;}
.ya1{bottom:667.133333pt;}
.y49{bottom:675.133333pt;}
.y12{bottom:675.453333pt;}
.yc4{bottom:680.413333pt;}
.y79{bottom:683.133333pt;}
.y48{bottom:692.893333pt;}
.y11{bottom:693.053333pt;}
.yc3{bottom:698.173333pt;}
.y78{bottom:700.893333pt;}
.y47{bottom:710.493333pt;}
.y10{bottom:710.653333pt;}
.yc2{bottom:715.773333pt;}
.y77{bottom:718.493333pt;}
.y46{bottom:728.093333pt;}
.yf{bottom:728.253333pt;}
.yc1{bottom:733.373333pt;}
.y76{bottom:736.093333pt;}
.y45{bottom:745.693333pt;}
.ye{bottom:745.853333pt;}
.yc0{bottom:750.973333pt;}
.y75{bottom:753.693333pt;}
.y44{bottom:763.293333pt;}
.yd{bottom:765.533333pt;}
.ybf{bottom:768.573333pt;}
.y74{bottom:771.293333pt;}
.y43{bottom:781.053333pt;}
.yc{bottom:783.293333pt;}
.ybe{bottom:786.333333pt;}
.y73{bottom:789.053333pt;}
.y42{bottom:798.693333pt;}
.yb{bottom:801.413333pt;}
.ybd{bottom:803.973333pt;}
.y72{bottom:806.693333pt;}
.y41{bottom:816.293333pt;}
.ybc{bottom:818.693333pt;}
.ye7{bottom:819.680000pt;}
.ya{bottom:820.293333pt;}
.y71{bottom:824.293333pt;}
.y40{bottom:833.893333pt;}
.y9{bottom:841.093333pt;}
.y70{bottom:841.893333pt;}
.y3f{bottom:851.493333pt;}
.y6f{bottom:859.493333pt;}
.y3e{bottom:869.253333pt;}
.y8{bottom:869.413333pt;}
.y6e{bottom:877.253333pt;}
.y3d{bottom:886.853333pt;}
.y6d{bottom:894.853333pt;}
.y7{bottom:897.573333pt;}
.y3c{bottom:904.453333pt;}
.y6c{bottom:912.453333pt;}
.y3b{bottom:922.053333pt;}
.y6b{bottom:930.053333pt;}
.y5{bottom:934.373333pt;}
.y3a{bottom:939.653333pt;}
.y6a{bottom:947.653333pt;}
.y4{bottom:961.733333pt;}
.y39{bottom:965.413333pt;}
.y38{bottom:983.013333pt;}
.y3{bottom:989.093333pt;}
.y37{bottom:1000.613333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.213333pt;}
.y35{bottom:1042.720000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.h1c{height:2.295000pt;}
.h15{height:17.600000pt;}
.hf{height:17.760000pt;}
.h11{height:18.240000pt;}
.h12{height:34.560000pt;}
.h16{height:35.200000pt;}
.h13{height:35.232000pt;}
.ha{height:36.445312pt;}
.hb{height:36.542500pt;}
.h17{height:37.472000pt;}
.h10{height:37.661250pt;}
.h5{height:38.465312pt;}
.h3{height:42.636250pt;}
.h8{height:43.782500pt;}
.hc{height:46.343750pt;}
.h6{height:47.621250pt;}
.h4{height:52.785000pt;}
.h14{height:52.800000pt;}
.h19{height:54.390938pt;}
.h7{height:60.288750pt;}
.h2{height:61.637188pt;}
.h1a{height:65.531250pt;}
.he{height:70.560000pt;}
.h1b{height:74.912000pt;}
.h9{height:199.840000pt;}
.hd{height:211.040000pt;}
.h18{height:211.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:53.600000pt;}
.w6{width:62.080000pt;}
.we{width:67.200000pt;}
.wc{width:96.032000pt;}
.w7{width:111.872000pt;}
.wd{width:114.272000pt;}
.wa{width:132.192000pt;}
.w8{width:132.640000pt;}
.w9{width:139.226667pt;}
.w5{width:153.626667pt;}
.w10{width:187.386667pt;}
.w11{width:516.453333pt;}
.w3{width:572.000000pt;}
.w4{width:575.200000pt;}
.wf{width:601.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:7.200000pt;}
.x1{left:48.159988pt;}
.xf{left:60.826667pt;}
.x38{left:65.599988pt;}
.x15{left:71.999988pt;}
.x10{left:79.226667pt;}
.x35{left:86.720000pt;}
.x7{left:88.186667pt;}
.x39{left:89.631988pt;}
.x6{left:94.266667pt;}
.x16{left:96.031988pt;}
.x18{left:99.493333pt;}
.x33{left:102.306667pt;}
.x17{left:108.800000pt;}
.x5{left:110.720000pt;}
.x32{left:117.626667pt;}
.x9{left:121.093333pt;}
.x8{left:122.306667pt;}
.x31{left:123.746667pt;}
.x1a{left:126.586667pt;}
.x19{left:127.746667pt;}
.x2b{left:142.586655pt;}
.x36{left:146.653333pt;}
.x24{left:158.626667pt;}
.x1b{left:160.573333pt;}
.x2c{left:165.306667pt;}
.x3a{left:170.106667pt;}
.xa{left:188.133333pt;}
.x1c{left:194.560000pt;}
.x4{left:204.666655pt;}
.x34{left:208.133333pt;}
.x11{left:210.266667pt;}
.xb{left:221.666667pt;}
.x1d{left:228.506667pt;}
.x25{left:229.893333pt;}
.x3b{left:235.386667pt;}
.x12{left:243.293333pt;}
.x27{left:250.306667pt;}
.xc{left:255.173333pt;}
.x1e{left:262.493333pt;}
.x1f{left:296.480000pt;}
.x2d{left:297.506667pt;}
.x28{left:312.386667pt;}
.x20{left:330.466667pt;}
.x2e{left:351.106667pt;}
.xd{left:355.746667pt;}
.x21{left:364.413333pt;}
.x14{left:396.893322pt;}
.x22{left:398.400000pt;}
.x29{left:424.253333pt;}
.x23{left:432.386667pt;}
.x2f{left:447.133333pt;}
.xe{left:489.826667pt;}
.x37{left:541.146667pt;}
.x2a{left:556.893333pt;}
.x30{left:561.413333pt;}
.x3{left:683.013322pt;}
.x13{left:684.933322pt;}
.x2{left:697.893322pt;}
}




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