
    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_10469017b918a2e5ddd46b16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_173c0cd8b37f50f07d3f040f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_74904b3d1701094dea6d1f50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_75487e0e2328af2a4854c93d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_c5e499c43dad1c945999da86.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_f86e51275ca5a5420a70fc3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_064a555db86b88a3c78e483d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d9f3be6fa5778d8d6e59ea0b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.ls21{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.440000px;}
.ls1e{letter-spacing:5.760000px;}
.ls1d{letter-spacing:7.200000px;}
.ls17{letter-spacing:7.920000px;}
.ls1c{letter-spacing:8.064000px;}
.lsd{letter-spacing:9.360000px;}
.ls9{letter-spacing:10.080000px;}
.lsc{letter-spacing:10.800000px;}
.ls3{letter-spacing:11.664000px;}
.ls7{letter-spacing:13.680000px;}
.ls4{letter-spacing:14.400000px;}
.ls20{letter-spacing:16.560000px;}
.ls8{letter-spacing:18.000000px;}
.ls19{letter-spacing:18.180000px;}
.ls11{letter-spacing:18.720000px;}
.ls15{letter-spacing:24.660000px;}
.lsb{letter-spacing:25.200000px;}
.lse{letter-spacing:25.920000px;}
.ls1f{letter-spacing:26.100000px;}
.ls12{letter-spacing:28.800000px;}
.lsa{letter-spacing:28.944000px;}
.ls18{letter-spacing:32.544000px;}
.ls1b{letter-spacing:38.106720px;}
.lsf{letter-spacing:54.144000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-4.560000px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._b{width:3.960000px;}
._a{width:5.688000px;}
._7{width:6.840000px;}
._8{width:7.888320px;}
._9{width:9.864000px;}
._15{width:11.592000px;}
._f{width:12.888000px;}
._10{width:14.328000px;}
._1e{width:15.624000px;}
._18{width:16.960320px;}
._c{width:19.368000px;}
._d{width:20.408160px;}
._12{width:21.600000px;}
._13{width:22.960320px;}
._e{width:24.192000px;}
._14{width:25.207440px;}
._1b{width:26.337120px;}
._1f{width:28.141200px;}
._1a{width:29.146080px;}
._19{width:30.280320px;}
._26{width:31.455360px;}
._28{width:32.552640px;}
._2a{width:33.791760px;}
._16{width:34.848000px;}
._17{width:35.876400px;}
._1d{width:36.907680px;}
._11{width:37.944000px;}
._27{width:39.116400px;}
._24{width:40.752000px;}
._25{width:42.416160px;}
._42{width:44.222400px;}
._2b{width:46.224000px;}
._2c{width:47.304000px;}
._21{width:50.656320px;}
._23{width:52.632000px;}
._22{width:53.928000px;}
._20{width:57.856320px;}
._29{width:59.031360px;}
._3d{width:66.393360px;}
._2d{width:69.859440px;}
._40{width:84.381120px;}
._43{width:86.592240px;}
._45{width:93.942720px;}
._34{width:98.125920px;}
._37{width:100.277280px;}
._47{width:104.400720px;}
._30{width:113.185440px;}
._32{width:114.679440px;}
._35{width:119.759040px;}
._3a{width:122.687280px;}
._36{width:136.252800px;}
._39{width:143.961840px;}
._38{width:156.870000px;}
._3f{width:173.901600px;}
._33{width:175.754160px;}
._41{width:178.323840px;}
._2f{width:180.176400px;}
._3{width:194.376000px;}
._46{width:195.953040px;}
._2e{width:200.016720px;}
._3e{width:204.618240px;}
._3c{width:224.518320px;}
._3b{width:240.939840px;}
._44{width:258.342480px;}
._31{width:286.848000px;}
._6{width:1864.536000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.y18f{bottom:12.060000px;}
.y178{bottom:12.240000px;}
.y14{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.y186{bottom:20.700000px;}
.y179{bottom:20.880000px;}
.y7{bottom:21.420000px;}
.y17c{bottom:29.340000px;}
.y177{bottom:29.520000px;}
.y5{bottom:37.260000px;}
.y185{bottom:37.980000px;}
.y180{bottom:38.160000px;}
.y17b{bottom:38.205000px;}
.y2{bottom:39.060000px;}
.y187{bottom:46.620000px;}
.y17d{bottom:46.665000px;}
.y17f{bottom:46.800000px;}
.y18a{bottom:55.260000px;}
.y183{bottom:55.440000px;}
.y12{bottom:57.420000px;}
.y18b{bottom:63.900000px;}
.y181{bottom:64.080000px;}
.y11{bottom:73.260000px;}
.y1b2{bottom:110.880000px;}
.y92{bottom:112.860000px;}
.ye1{bottom:114.480000px;}
.yb7{bottom:115.560000px;}
.y1ce{bottom:117.360000px;}
.y3e{bottom:120.060000px;}
.y175{bottom:121.680000px;}
.yf1{bottom:124.560000px;}
.y102{bottom:127.260000px;}
.y13e{bottom:128.700000px;}
.y152{bottom:129.960000px;}
.y1e4{bottom:132.660000px;}
.y91{bottom:133.560000px;}
.ye0{bottom:135.180000px;}
.y6c{bottom:136.260000px;}
.y190{bottom:137.880000px;}
.y3d{bottom:140.760000px;}
.y1b1{bottom:141.840000px;}
.y174{bottom:142.560000px;}
.yf0{bottom:145.260000px;}
.y1cd{bottom:147.060000px;}
.y101{bottom:147.960000px;}
.y13d{bottom:149.400000px;}
.y1fb{bottom:149.760000px;}
.y151{bottom:150.660000px;}
.y1e3{bottom:153.360000px;}
.y90{bottom:154.260000px;}
.ydf{bottom:155.880000px;}
.y6b{bottom:156.960000px;}
.y1b0{bottom:162.540000px;}
.yef{bottom:165.960000px;}
.y1cc{bottom:167.760000px;}
.y100{bottom:168.660000px;}
.y3c{bottom:170.460000px;}
.y173{bottom:173.520000px;}
.y1e2{bottom:174.060000px;}
.y8f{bottom:174.960000px;}
.y6a{bottom:177.660000px;}
.y13c{bottom:179.100000px;}
.y150{bottom:180.360000px;}
.yde{bottom:185.580000px;}
.yb6{bottom:186.660000px;}
.y1cb{bottom:188.460000px;}
.y117{bottom:189.360000px;}
.y1af{bottom:193.500000px;}
.y172{bottom:194.220000px;}
.y8e{bottom:195.660000px;}
.y69{bottom:198.390000px;}
.y3b{bottom:200.190000px;}
.y1e1{bottom:203.790000px;}
.ydd{bottom:206.310000px;}
.yb5{bottom:207.390000px;}
.y13b{bottom:208.830000px;}
.y1ca{bottom:209.190000px;}
.y116{bottom:210.090000px;}
.y18e{bottom:212.250000px;}
.y1ae{bottom:214.410000px;}
.y149{bottom:216.390000px;}
.y1f3{bottom:218.190000px;}
.y68{bottom:219.090000px;}
.y1fa{bottom:220.890000px;}
.y1e0{bottom:224.490000px;}
.y171{bottom:225.030000px;}
.y8d{bottom:225.390000px;}
.ydc{bottom:227.010000px;}
.yb4{bottom:228.090000px;}
.y13a{bottom:229.530000px;}
.y3a{bottom:229.890000px;}
.y115{bottom:230.790000px;}
.y148{bottom:237.090000px;}
.y1f2{bottom:238.890000px;}
.y67{bottom:239.790000px;}
.y1df{bottom:245.190000px;}
.y1ad{bottom:245.370000px;}
.y8c{bottom:246.090000px;}
.ydb{bottom:247.710000px;}
.yb3{bottom:248.790000px;}
.y139{bottom:250.230000px;}
.y1c9{bottom:250.590000px;}
.y114{bottom:251.490000px;}
.y170{bottom:256.170000px;}
.y147{bottom:257.790000px;}
.y39{bottom:259.590000px;}
.y66{bottom:260.490000px;}
.y1ac{bottom:266.070000px;}
.y8b{bottom:266.790000px;}
.yda{bottom:268.410000px;}
.y1f1{bottom:268.590000px;}
.yb2{bottom:269.490000px;}
.y138{bottom:270.930000px;}
.y1c8{bottom:271.290000px;}
.y14f{bottom:272.190000px;}
.y1de{bottom:274.890000px;}
.y16f{bottom:276.870000px;}
.y146{bottom:278.490000px;}
.y38{bottom:280.290000px;}
.y65{bottom:281.190000px;}
.y8a{bottom:287.490000px;}
.yd9{bottom:289.110000px;}
.y14e{bottom:290.190000px;}
.y137{bottom:291.630000px;}
.y1ab{bottom:297.030000px;}
.y1f0{bottom:298.290000px;}
.yb1{bottom:299.190000px;}
.y37{bottom:300.990000px;}
.yff{bottom:301.890000px;}
.y18d{bottom:303.690000px;}
.y1dd{bottom:304.590000px;}
.y16e{bottom:306.570000px;}
.y89{bottom:308.190000px;}
.yd8{bottom:309.810000px;}
.y64{bottom:310.890000px;}
.y1aa{bottom:317.730000px;}
.y1ef{bottom:318.990000px;}
.yb0{bottom:319.890000px;}
.y136{bottom:321.330000px;}
.y36{bottom:321.690000px;}
.y113{bottom:322.590000px;}
.y1dc{bottom:325.290000px;}
.y88{bottom:328.890000px;}
.yd7{bottom:330.510000px;}
.y1f9{bottom:330.690000px;}
.y63{bottom:331.590000px;}
.y16d{bottom:336.270000px;}
.y1a9{bottom:338.430000px;}
.y1ee{bottom:339.690000px;}
.yaf{bottom:340.590000px;}
.y135{bottom:342.030000px;}
.y1c7{bottom:342.390000px;}
.y112{bottom:343.290000px;}
.y1db{bottom:345.990000px;}
.y35{bottom:351.390000px;}
.y62{bottom:352.290000px;}
.y16c{bottom:356.970000px;}
.y87{bottom:358.590000px;}
.yd6{bottom:360.210000px;}
.yae{bottom:361.290000px;}
.y134{bottom:362.730000px;}
.y1c6{bottom:363.090000px;}
.y111{bottom:363.990000px;}
.y1a8{bottom:369.390000px;}
.y145{bottom:370.290000px;}
.y34{bottom:372.090000px;}
.y61{bottom:372.990000px;}
.y1da{bottom:375.690000px;}
.y18c{bottom:377.850000px;}
.y86{bottom:379.290000px;}
.yd5{bottom:380.910000px;}
.y1f8{bottom:381.090000px;}
.yad{bottom:381.990000px;}
.y133{bottom:383.430000px;}
.y1c5{bottom:383.790000px;}
.y110{bottom:384.690000px;}
.y16b{bottom:387.930000px;}
.y1a7{bottom:390.090000px;}
.y144{bottom:390.990000px;}
.y33{bottom:392.790000px;}
.y60{bottom:393.690000px;}
.y1d9{bottom:396.390000px;}
.y85{bottom:399.990000px;}
.yd4{bottom:401.610000px;}
.y1f7{bottom:401.790000px;}
.yac{bottom:402.690000px;}
.y132{bottom:404.130000px;}
.y10f{bottom:405.390000px;}
.y16a{bottom:408.630000px;}
.y1ed{bottom:410.790000px;}
.y143{bottom:411.690000px;}
.y32{bottom:413.490000px;}
.y5f{bottom:414.390000px;}
.y1d8{bottom:417.090000px;}
.y1a6{bottom:419.790000px;}
.y84{bottom:420.690000px;}
.yd3{bottom:422.310000px;}
.yee{bottom:423.390000px;}
.y131{bottom:424.830000px;}
.y1f6{bottom:431.490000px;}
.yab{bottom:432.390000px;}
.y31{bottom:434.190000px;}
.y5e{bottom:435.090000px;}
.y1d7{bottom:437.835000px;}
.y169{bottom:439.455000px;}
.y1ec{bottom:440.535000px;}
.y83{bottom:441.435000px;}
.yd2{bottom:443.055000px;}
.y1c4{bottom:443.235000px;}
.yfe{bottom:444.135000px;}
.y130{bottom:445.575000px;}
.y1a5{bottom:449.535000px;}
.y189{bottom:452.235000px;}
.yed{bottom:453.135000px;}
.y30{bottom:454.935000px;}
.y5d{bottom:455.835000px;}
.y1eb{bottom:461.235000px;}
.y82{bottom:462.135000px;}
.yd1{bottom:463.755000px;}
.yfd{bottom:464.835000px;}
.y1d6{bottom:467.535000px;}
.y1a4{bottom:470.235000px;}
.y168{bottom:470.595000px;}
.y1c3{bottom:472.935000px;}
.yec{bottom:473.835000px;}
.y12f{bottom:475.275000px;}
.y2f{bottom:475.635000px;}
.y10e{bottom:476.535000px;}
.y81{bottom:482.835000px;}
.yd0{bottom:484.455000px;}
.y5c{bottom:485.535000px;}
.y1d5{bottom:488.235000px;}
.y1a3{bottom:490.935000px;}
.yeb{bottom:494.535000px;}
.y12e{bottom:495.975000px;}
.y10d{bottom:497.235000px;}
.y167{bottom:500.295000px;}
.y1c2{bottom:502.635000px;}
.yaa{bottom:503.535000px;}
.y2e{bottom:505.335000px;}
.y5b{bottom:506.235000px;}
.y1d4{bottom:508.935000px;}
.y1a2{bottom:511.635000px;}
.y80{bottom:512.535000px;}
.ycf{bottom:514.155000px;}
.yea{bottom:515.235000px;}
.y12d{bottom:516.675000px;}
.y10c{bottom:517.935000px;}
.y166{bottom:520.995000px;}
.y1c1{bottom:523.335000px;}
.ya9{bottom:524.235000px;}
.y2d{bottom:526.035000px;}
.y5a{bottom:526.935000px;}
.y1d3{bottom:529.635000px;}
.y1a1{bottom:532.335000px;}
.ye9{bottom:535.935000px;}
.y12c{bottom:537.375000px;}
.y10b{bottom:538.635000px;}
.y165{bottom:541.695000px;}
.y7f{bottom:542.235000px;}
.y188{bottom:543.675000px;}
.yce{bottom:543.855000px;}
.y1c0{bottom:544.035000px;}
.ya8{bottom:544.935000px;}
.y2c{bottom:546.735000px;}
.y59{bottom:547.635000px;}
.y1a0{bottom:553.035000px;}
.ye8{bottom:556.635000px;}
.y12b{bottom:558.075000px;}
.y10a{bottom:559.335000px;}
.y1ea{bottom:562.035000px;}
.y7e{bottom:562.935000px;}
.ycd{bottom:564.555000px;}
.ya7{bottom:565.635000px;}
.y2b{bottom:567.435000px;}
.y58{bottom:568.335000px;}
.y164{bottom:571.395000px;}
.y19f{bottom:573.735000px;}
.ye7{bottom:577.335000px;}
.y12a{bottom:578.775000px;}
.y1d2{bottom:580.035000px;}
.y1e9{bottom:582.735000px;}
.y7d{bottom:583.635000px;}
.ycc{bottom:585.255000px;}
.y142{bottom:586.335000px;}
.y2a{bottom:588.135000px;}
.y57{bottom:589.035000px;}
.y19e{bottom:594.435000px;}
.ya6{bottom:595.335000px;}
.ye6{bottom:598.035000px;}
.y1d1{bottom:600.735000px;}
.y163{bottom:601.095000px;}
.y7c{bottom:604.335000px;}
.y141{bottom:607.035000px;}
.y129{bottom:608.475000px;}
.y29{bottom:608.835000px;}
.y56{bottom:609.735000px;}
.y1e8{bottom:612.435000px;}
.ycb{bottom:614.955000px;}
.ya5{bottom:616.035000px;}
.y13{bottom:617.475000px;}
.y184{bottom:618.015000px;}
.yfc{bottom:618.735000px;}
.y1d0{bottom:621.435000px;}
.y162{bottom:621.795000px;}
.y19d{bottom:624.135000px;}
.y7b{bottom:625.035000px;}
.ye5{bottom:627.735000px;}
.y128{bottom:629.175000px;}
.y28{bottom:629.535000px;}
.y1e7{bottom:633.135000px;}
.yca{bottom:635.655000px;}
.ya4{bottom:636.735000px;}
.y55{bottom:639.435000px;}
.y1f5{bottom:644.835000px;}
.y7a{bottom:645.735000px;}
.ye4{bottom:648.435000px;}
.y127{bottom:649.875000px;}
.y27{bottom:650.235000px;}
.y1cf{bottom:651.135000px;}
.y161{bottom:651.495000px;}
.y19c{bottom:653.835000px;}
.yc9{bottom:656.355000px;}
.ya3{bottom:657.435000px;}
.y109{bottom:660.135000px;}
.y79{bottom:666.435000px;}
.y54{bottom:669.135000px;}
.y126{bottom:670.575000px;}
.y26{bottom:670.935000px;}
.y19b{bottom:674.565000px;}
.yc8{bottom:677.085000px;}
.ya2{bottom:678.165000px;}
.y108{bottom:680.865000px;}
.y160{bottom:682.485000px;}
.y1bf{bottom:683.565000px;}
.y140{bottom:687.165000px;}
.ye3{bottom:689.865000px;}
.y125{bottom:691.305000px;}
.y25{bottom:691.665000px;}
.y182{bottom:692.205000px;}
.y19a{bottom:695.265000px;}
.y78{bottom:696.165000px;}
.yc7{bottom:697.785000px;}
.y53{bottom:698.865000px;}
.y107{bottom:701.565000px;}
.y1be{bottom:704.265000px;}
.y13f{bottom:707.865000px;}
.ye2{bottom:710.565000px;}
.y124{bottom:712.005000px;}
.y15f{bottom:713.445000px;}
.y199{bottom:715.965000px;}
.y77{bottom:716.865000px;}
.yc6{bottom:718.485000px;}
.ya1{bottom:719.565000px;}
.y24{bottom:721.365000px;}
.y1bd{bottom:724.965000px;}
.y52{bottom:728.565000px;}
.yfb{bottom:731.265000px;}
.y123{bottom:732.705000px;}
.y198{bottom:736.665000px;}
.y76{bottom:737.565000px;}
.yc5{bottom:739.185000px;}
.ya0{bottom:740.265000px;}
.y15e{bottom:744.405000px;}
.y1f4{bottom:745.665000px;}
.y51{bottom:749.265000px;}
.y23{bottom:751.065000px;}
.yfa{bottom:751.965000px;}
.y122{bottom:753.405000px;}
.y1bc{bottom:754.665000px;}
.y197{bottom:757.365000px;}
.y75{bottom:758.265000px;}
.yc4{bottom:759.885000px;}
.y14d{bottom:760.965000px;}
.y50{bottom:769.965000px;}
.yf9{bottom:772.665000px;}
.y15d{bottom:775.365000px;}
.y74{bottom:778.965000px;}
.yc3{bottom:780.585000px;}
.y22{bottom:780.765000px;}
.y121{bottom:783.105000px;}
.y17e{bottom:783.645000px;}
.y1bb{bottom:784.365000px;}
.y196{bottom:787.065000px;}
.y4f{bottom:790.665000px;}
.yf8{bottom:793.365000px;}
.y1e6{bottom:796.065000px;}
.y73{bottom:799.665000px;}
.yc2{bottom:801.285000px;}
.y1ba{bottom:805.065000px;}
.y15c{bottom:806.325000px;}
.y195{bottom:807.765000px;}
.y21{bottom:808.305000px;}
.y9f{bottom:811.365000px;}
.y120{bottom:812.805000px;}
.y4e{bottom:820.365000px;}
.yc1{bottom:821.985000px;}
.yf7{bottom:823.065000px;}
.y1b9{bottom:825.765000px;}
.y194{bottom:828.465000px;}
.y20{bottom:831.165000px;}
.y9e{bottom:832.065000px;}
.y11f{bottom:833.505000px;}
.y15b{bottom:837.465000px;}
.y4d{bottom:841.065000px;}
.yf6{bottom:843.765000px;}
.y1b8{bottom:846.465000px;}
.y193{bottom:849.165000px;}
.y72{bottom:850.065000px;}
.yc0{bottom:851.685000px;}
.y9d{bottom:852.765000px;}
.y11e{bottom:854.205000px;}
.y1e5{bottom:855.465000px;}
.y1f{bottom:858.705000px;}
.y4c{bottom:861.765000px;}
.yf5{bottom:864.465000px;}
.y15a{bottom:868.425000px;}
.y192{bottom:869.865000px;}
.y71{bottom:870.765000px;}
.ybf{bottom:872.385000px;}
.y9c{bottom:873.465000px;}
.y11d{bottom:874.905000px;}
.y17a{bottom:875.265000px;}
.y1b7{bottom:876.165000px;}
.y1e{bottom:881.565000px;}
.y4b{bottom:882.465000px;}
.yf4{bottom:885.165000px;}
.y70{bottom:891.465000px;}
.y9b{bottom:894.165000px;}
.y1b6{bottom:896.865000px;}
.y159{bottom:899.565000px;}
.y4a{bottom:903.165000px;}
.ybe{bottom:903.345000px;}
.y11c{bottom:904.425000px;}
.yf3{bottom:905.865000px;}
.y1d{bottom:911.265000px;}
.y6f{bottom:912.165000px;}
.y9a{bottom:914.910000px;}
.y1b5{bottom:917.610000px;}
.y49{bottom:923.910000px;}
.ybd{bottom:924.090000px;}
.y14c{bottom:926.610000px;}
.y158{bottom:929.310000px;}
.y6e{bottom:932.910000px;}
.y11b{bottom:935.430000px;}
.yf2{bottom:935.610000px;}
.y1b4{bottom:938.310000px;}
.y1c{bottom:941.010000px;}
.y48{bottom:944.610000px;}
.y14b{bottom:947.310000px;}
.y176{bottom:949.470000px;}
.y191{bottom:950.010000px;}
.y6d{bottom:953.610000px;}
.ybc{bottom:955.050000px;}
.y106{bottom:956.310000px;}
.y157{bottom:959.010000px;}
.y1b{bottom:961.710000px;}
.y99{bottom:965.310000px;}
.y11a{bottom:966.570000px;}
.y14a{bottom:968.010000px;}
.y47{bottom:974.310000px;}
.ybb{bottom:975.750000px;}
.y105{bottom:977.010000px;}
.y156{bottom:979.710000px;}
.y98{bottom:986.010000px;}
.y1b3{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y46{bottom:995.010000px;}
.y104{bottom:997.710000px;}
.y97{bottom:1006.710000px;}
.y155{bottom:1009.410000px;}
.y19{bottom:1012.110000px;}
.y45{bottom:1015.710000px;}
.y103{bottom:1018.410000px;}
.y96{bottom:1027.410000px;}
.y154{bottom:1030.110000px;}
.y44{bottom:1036.410000px;}
.y119{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.y95{bottom:1048.110000px;}
.y43{bottom:1057.110000px;}
.yba{bottom:1058.370000px;}
.y118{bottom:1059.810000px;}
.y94{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y42{bottom:1077.810000px;}
.yb9{bottom:1079.250000px;}
.y153{bottom:1080.510000px;}
.y93{bottom:1089.510000px;}
.y41{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.yb8{bottom:1110.210000px;}
.y40{bottom:1119.210000px;}
.y15{bottom:1130.910000px;}
.y3f{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.260000px;}
.h10{height:40.254961px;}
.ha{height:49.868086px;}
.h12{height:51.239531px;}
.h5{height:52.020000px;}
.h11{height:52.560000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.hd{height:60.082031px;}
.h19{height:61.171875px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.hf{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h18{height:69.660000px;}
.h13{height:69.696000px;}
.h16{height:69.840000px;}
.h17{height:69.876000px;}
.h15{height:86.940000px;}
.h14{height:87.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:49.860000px;}
.w3{width:75.060000px;}
.w8{width:84.990000px;}
.w9{width:105.120000px;}
.wc{width:106.236000px;}
.wb{width:125.136000px;}
.wd{width:136.440000px;}
.we{width:153.030000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w2{width:383.115000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.xb{left:10.800000px;}
.x5{left:21.960000px;}
.x6{left:61.380000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x16{left:116.855987px;}
.x12{left:126.215987px;}
.x14{left:136.475987px;}
.x18{left:138.275987px;}
.x2{left:148.005000px;}
.xd{left:151.229987px;}
.x17{left:160.229987px;}
.x1{left:165.270000px;}
.x19{left:215.850000px;}
.x1a{left:267.870000px;}
.x15{left:286.274987px;}
.xe{left:305.714987px;}
.x11{left:308.414987px;}
.xf{left:318.314987px;}
.x13{left:342.434987px;}
.x7{left:378.075000px;}
.x1b{left:395.175000px;}
.x10{left:446.474987px;}
.x1c{left:503.565000px;}
.x1d{left:642.165000px;}
.x8{left:662.730000px;}
.x4{left:765.510000px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.800000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:7.168000pt;}
.lsd{letter-spacing:8.320000pt;}
.ls9{letter-spacing:8.960000pt;}
.lsc{letter-spacing:9.600000pt;}
.ls3{letter-spacing:10.368000pt;}
.ls7{letter-spacing:12.160000pt;}
.ls4{letter-spacing:12.800000pt;}
.ls20{letter-spacing:14.720000pt;}
.ls8{letter-spacing:16.000000pt;}
.ls19{letter-spacing:16.160000pt;}
.ls11{letter-spacing:16.640000pt;}
.ls15{letter-spacing:21.920000pt;}
.lsb{letter-spacing:22.400000pt;}
.lse{letter-spacing:23.040000pt;}
.ls1f{letter-spacing:23.200000pt;}
.ls12{letter-spacing:25.600000pt;}
.lsa{letter-spacing:25.728000pt;}
.ls18{letter-spacing:28.928000pt;}
.ls1b{letter-spacing:33.872640pt;}
.lsf{letter-spacing:48.128000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-4.053333pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._b{width:3.520000pt;}
._a{width:5.056000pt;}
._7{width:6.080000pt;}
._8{width:7.011840pt;}
._9{width:8.768000pt;}
._15{width:10.304000pt;}
._f{width:11.456000pt;}
._10{width:12.736000pt;}
._1e{width:13.888000pt;}
._18{width:15.075840pt;}
._c{width:17.216000pt;}
._d{width:18.140587pt;}
._12{width:19.200000pt;}
._13{width:20.409173pt;}
._e{width:21.504000pt;}
._14{width:22.406613pt;}
._1b{width:23.410773pt;}
._1f{width:25.014400pt;}
._1a{width:25.907627pt;}
._19{width:26.915840pt;}
._26{width:27.960320pt;}
._28{width:28.935680pt;}
._2a{width:30.037120pt;}
._16{width:30.976000pt;}
._17{width:31.890133pt;}
._1d{width:32.806827pt;}
._11{width:33.728000pt;}
._27{width:34.770133pt;}
._24{width:36.224000pt;}
._25{width:37.703253pt;}
._42{width:39.308800pt;}
._2b{width:41.088000pt;}
._2c{width:42.048000pt;}
._21{width:45.027840pt;}
._23{width:46.784000pt;}
._22{width:47.936000pt;}
._20{width:51.427840pt;}
._29{width:52.472320pt;}
._3d{width:59.016320pt;}
._2d{width:62.097280pt;}
._40{width:75.005440pt;}
._43{width:76.970880pt;}
._45{width:83.504640pt;}
._34{width:87.223040pt;}
._37{width:89.135360pt;}
._47{width:92.800640pt;}
._30{width:100.609280pt;}
._32{width:101.937280pt;}
._35{width:106.452480pt;}
._3a{width:109.055360pt;}
._36{width:121.113600pt;}
._39{width:127.966080pt;}
._38{width:139.440000pt;}
._3f{width:154.579200pt;}
._33{width:156.225920pt;}
._41{width:158.510080pt;}
._2f{width:160.156800pt;}
._3{width:172.778667pt;}
._46{width:174.180480pt;}
._2e{width:177.792640pt;}
._3e{width:181.882880pt;}
._3c{width:199.571840pt;}
._3b{width:214.168747pt;}
._44{width:229.637760pt;}
._31{width:254.976000pt;}
._6{width:1657.365333pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.y18f{bottom:10.720000pt;}
.y178{bottom:10.880000pt;}
.y14{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.y186{bottom:18.400000pt;}
.y179{bottom:18.560000pt;}
.y7{bottom:19.040000pt;}
.y17c{bottom:26.080000pt;}
.y177{bottom:26.240000pt;}
.y5{bottom:33.120000pt;}
.y185{bottom:33.760000pt;}
.y180{bottom:33.920000pt;}
.y17b{bottom:33.960000pt;}
.y2{bottom:34.720000pt;}
.y187{bottom:41.440000pt;}
.y17d{bottom:41.480000pt;}
.y17f{bottom:41.600000pt;}
.y18a{bottom:49.120000pt;}
.y183{bottom:49.280000pt;}
.y12{bottom:51.040000pt;}
.y18b{bottom:56.800000pt;}
.y181{bottom:56.960000pt;}
.y11{bottom:65.120000pt;}
.y1b2{bottom:98.560000pt;}
.y92{bottom:100.320000pt;}
.ye1{bottom:101.760000pt;}
.yb7{bottom:102.720000pt;}
.y1ce{bottom:104.320000pt;}
.y3e{bottom:106.720000pt;}
.y175{bottom:108.160000pt;}
.yf1{bottom:110.720000pt;}
.y102{bottom:113.120000pt;}
.y13e{bottom:114.400000pt;}
.y152{bottom:115.520000pt;}
.y1e4{bottom:117.920000pt;}
.y91{bottom:118.720000pt;}
.ye0{bottom:120.160000pt;}
.y6c{bottom:121.120000pt;}
.y190{bottom:122.560000pt;}
.y3d{bottom:125.120000pt;}
.y1b1{bottom:126.080000pt;}
.y174{bottom:126.720000pt;}
.yf0{bottom:129.120000pt;}
.y1cd{bottom:130.720000pt;}
.y101{bottom:131.520000pt;}
.y13d{bottom:132.800000pt;}
.y1fb{bottom:133.120000pt;}
.y151{bottom:133.920000pt;}
.y1e3{bottom:136.320000pt;}
.y90{bottom:137.120000pt;}
.ydf{bottom:138.560000pt;}
.y6b{bottom:139.520000pt;}
.y1b0{bottom:144.480000pt;}
.yef{bottom:147.520000pt;}
.y1cc{bottom:149.120000pt;}
.y100{bottom:149.920000pt;}
.y3c{bottom:151.520000pt;}
.y173{bottom:154.240000pt;}
.y1e2{bottom:154.720000pt;}
.y8f{bottom:155.520000pt;}
.y6a{bottom:157.920000pt;}
.y13c{bottom:159.200000pt;}
.y150{bottom:160.320000pt;}
.yde{bottom:164.960000pt;}
.yb6{bottom:165.920000pt;}
.y1cb{bottom:167.520000pt;}
.y117{bottom:168.320000pt;}
.y1af{bottom:172.000000pt;}
.y172{bottom:172.640000pt;}
.y8e{bottom:173.920000pt;}
.y69{bottom:176.346667pt;}
.y3b{bottom:177.946667pt;}
.y1e1{bottom:181.146667pt;}
.ydd{bottom:183.386667pt;}
.yb5{bottom:184.346667pt;}
.y13b{bottom:185.626667pt;}
.y1ca{bottom:185.946667pt;}
.y116{bottom:186.746667pt;}
.y18e{bottom:188.666667pt;}
.y1ae{bottom:190.586667pt;}
.y149{bottom:192.346667pt;}
.y1f3{bottom:193.946667pt;}
.y68{bottom:194.746667pt;}
.y1fa{bottom:196.346667pt;}
.y1e0{bottom:199.546667pt;}
.y171{bottom:200.026667pt;}
.y8d{bottom:200.346667pt;}
.ydc{bottom:201.786667pt;}
.yb4{bottom:202.746667pt;}
.y13a{bottom:204.026667pt;}
.y3a{bottom:204.346667pt;}
.y115{bottom:205.146667pt;}
.y148{bottom:210.746667pt;}
.y1f2{bottom:212.346667pt;}
.y67{bottom:213.146667pt;}
.y1df{bottom:217.946667pt;}
.y1ad{bottom:218.106667pt;}
.y8c{bottom:218.746667pt;}
.ydb{bottom:220.186667pt;}
.yb3{bottom:221.146667pt;}
.y139{bottom:222.426667pt;}
.y1c9{bottom:222.746667pt;}
.y114{bottom:223.546667pt;}
.y170{bottom:227.706667pt;}
.y147{bottom:229.146667pt;}
.y39{bottom:230.746667pt;}
.y66{bottom:231.546667pt;}
.y1ac{bottom:236.506667pt;}
.y8b{bottom:237.146667pt;}
.yda{bottom:238.586667pt;}
.y1f1{bottom:238.746667pt;}
.yb2{bottom:239.546667pt;}
.y138{bottom:240.826667pt;}
.y1c8{bottom:241.146667pt;}
.y14f{bottom:241.946667pt;}
.y1de{bottom:244.346667pt;}
.y16f{bottom:246.106667pt;}
.y146{bottom:247.546667pt;}
.y38{bottom:249.146667pt;}
.y65{bottom:249.946667pt;}
.y8a{bottom:255.546667pt;}
.yd9{bottom:256.986667pt;}
.y14e{bottom:257.946667pt;}
.y137{bottom:259.226667pt;}
.y1ab{bottom:264.026667pt;}
.y1f0{bottom:265.146667pt;}
.yb1{bottom:265.946667pt;}
.y37{bottom:267.546667pt;}
.yff{bottom:268.346667pt;}
.y18d{bottom:269.946667pt;}
.y1dd{bottom:270.746667pt;}
.y16e{bottom:272.506667pt;}
.y89{bottom:273.946667pt;}
.yd8{bottom:275.386667pt;}
.y64{bottom:276.346667pt;}
.y1aa{bottom:282.426667pt;}
.y1ef{bottom:283.546667pt;}
.yb0{bottom:284.346667pt;}
.y136{bottom:285.626667pt;}
.y36{bottom:285.946667pt;}
.y113{bottom:286.746667pt;}
.y1dc{bottom:289.146667pt;}
.y88{bottom:292.346667pt;}
.yd7{bottom:293.786667pt;}
.y1f9{bottom:293.946667pt;}
.y63{bottom:294.746667pt;}
.y16d{bottom:298.906667pt;}
.y1a9{bottom:300.826667pt;}
.y1ee{bottom:301.946667pt;}
.yaf{bottom:302.746667pt;}
.y135{bottom:304.026667pt;}
.y1c7{bottom:304.346667pt;}
.y112{bottom:305.146667pt;}
.y1db{bottom:307.546667pt;}
.y35{bottom:312.346667pt;}
.y62{bottom:313.146667pt;}
.y16c{bottom:317.306667pt;}
.y87{bottom:318.746667pt;}
.yd6{bottom:320.186667pt;}
.yae{bottom:321.146667pt;}
.y134{bottom:322.426667pt;}
.y1c6{bottom:322.746667pt;}
.y111{bottom:323.546667pt;}
.y1a8{bottom:328.346667pt;}
.y145{bottom:329.146667pt;}
.y34{bottom:330.746667pt;}
.y61{bottom:331.546667pt;}
.y1da{bottom:333.946667pt;}
.y18c{bottom:335.866667pt;}
.y86{bottom:337.146667pt;}
.yd5{bottom:338.586667pt;}
.y1f8{bottom:338.746667pt;}
.yad{bottom:339.546667pt;}
.y133{bottom:340.826667pt;}
.y1c5{bottom:341.146667pt;}
.y110{bottom:341.946667pt;}
.y16b{bottom:344.826667pt;}
.y1a7{bottom:346.746667pt;}
.y144{bottom:347.546667pt;}
.y33{bottom:349.146667pt;}
.y60{bottom:349.946667pt;}
.y1d9{bottom:352.346667pt;}
.y85{bottom:355.546667pt;}
.yd4{bottom:356.986667pt;}
.y1f7{bottom:357.146667pt;}
.yac{bottom:357.946667pt;}
.y132{bottom:359.226667pt;}
.y10f{bottom:360.346667pt;}
.y16a{bottom:363.226667pt;}
.y1ed{bottom:365.146667pt;}
.y143{bottom:365.946667pt;}
.y32{bottom:367.546667pt;}
.y5f{bottom:368.346667pt;}
.y1d8{bottom:370.746667pt;}
.y1a6{bottom:373.146667pt;}
.y84{bottom:373.946667pt;}
.yd3{bottom:375.386667pt;}
.yee{bottom:376.346667pt;}
.y131{bottom:377.626667pt;}
.y1f6{bottom:383.546667pt;}
.yab{bottom:384.346667pt;}
.y31{bottom:385.946667pt;}
.y5e{bottom:386.746667pt;}
.y1d7{bottom:389.186667pt;}
.y169{bottom:390.626667pt;}
.y1ec{bottom:391.586667pt;}
.y83{bottom:392.386667pt;}
.yd2{bottom:393.826667pt;}
.y1c4{bottom:393.986667pt;}
.yfe{bottom:394.786667pt;}
.y130{bottom:396.066667pt;}
.y1a5{bottom:399.586667pt;}
.y189{bottom:401.986667pt;}
.yed{bottom:402.786667pt;}
.y30{bottom:404.386667pt;}
.y5d{bottom:405.186667pt;}
.y1eb{bottom:409.986667pt;}
.y82{bottom:410.786667pt;}
.yd1{bottom:412.226667pt;}
.yfd{bottom:413.186667pt;}
.y1d6{bottom:415.586667pt;}
.y1a4{bottom:417.986667pt;}
.y168{bottom:418.306667pt;}
.y1c3{bottom:420.386667pt;}
.yec{bottom:421.186667pt;}
.y12f{bottom:422.466667pt;}
.y2f{bottom:422.786667pt;}
.y10e{bottom:423.586667pt;}
.y81{bottom:429.186667pt;}
.yd0{bottom:430.626667pt;}
.y5c{bottom:431.586667pt;}
.y1d5{bottom:433.986667pt;}
.y1a3{bottom:436.386667pt;}
.yeb{bottom:439.586667pt;}
.y12e{bottom:440.866667pt;}
.y10d{bottom:441.986667pt;}
.y167{bottom:444.706667pt;}
.y1c2{bottom:446.786667pt;}
.yaa{bottom:447.586667pt;}
.y2e{bottom:449.186667pt;}
.y5b{bottom:449.986667pt;}
.y1d4{bottom:452.386667pt;}
.y1a2{bottom:454.786667pt;}
.y80{bottom:455.586667pt;}
.ycf{bottom:457.026667pt;}
.yea{bottom:457.986667pt;}
.y12d{bottom:459.266667pt;}
.y10c{bottom:460.386667pt;}
.y166{bottom:463.106667pt;}
.y1c1{bottom:465.186667pt;}
.ya9{bottom:465.986667pt;}
.y2d{bottom:467.586667pt;}
.y5a{bottom:468.386667pt;}
.y1d3{bottom:470.786667pt;}
.y1a1{bottom:473.186667pt;}
.ye9{bottom:476.386667pt;}
.y12c{bottom:477.666667pt;}
.y10b{bottom:478.786667pt;}
.y165{bottom:481.506667pt;}
.y7f{bottom:481.986667pt;}
.y188{bottom:483.266667pt;}
.yce{bottom:483.426667pt;}
.y1c0{bottom:483.586667pt;}
.ya8{bottom:484.386667pt;}
.y2c{bottom:485.986667pt;}
.y59{bottom:486.786667pt;}
.y1a0{bottom:491.586667pt;}
.ye8{bottom:494.786667pt;}
.y12b{bottom:496.066667pt;}
.y10a{bottom:497.186667pt;}
.y1ea{bottom:499.586667pt;}
.y7e{bottom:500.386667pt;}
.ycd{bottom:501.826667pt;}
.ya7{bottom:502.786667pt;}
.y2b{bottom:504.386667pt;}
.y58{bottom:505.186667pt;}
.y164{bottom:507.906667pt;}
.y19f{bottom:509.986667pt;}
.ye7{bottom:513.186667pt;}
.y12a{bottom:514.466667pt;}
.y1d2{bottom:515.586667pt;}
.y1e9{bottom:517.986667pt;}
.y7d{bottom:518.786667pt;}
.ycc{bottom:520.226667pt;}
.y142{bottom:521.186667pt;}
.y2a{bottom:522.786667pt;}
.y57{bottom:523.586667pt;}
.y19e{bottom:528.386667pt;}
.ya6{bottom:529.186667pt;}
.ye6{bottom:531.586667pt;}
.y1d1{bottom:533.986667pt;}
.y163{bottom:534.306667pt;}
.y7c{bottom:537.186667pt;}
.y141{bottom:539.586667pt;}
.y129{bottom:540.866667pt;}
.y29{bottom:541.186667pt;}
.y56{bottom:541.986667pt;}
.y1e8{bottom:544.386667pt;}
.ycb{bottom:546.626667pt;}
.ya5{bottom:547.586667pt;}
.y13{bottom:548.866667pt;}
.y184{bottom:549.346667pt;}
.yfc{bottom:549.986667pt;}
.y1d0{bottom:552.386667pt;}
.y162{bottom:552.706667pt;}
.y19d{bottom:554.786667pt;}
.y7b{bottom:555.586667pt;}
.ye5{bottom:557.986667pt;}
.y128{bottom:559.266667pt;}
.y28{bottom:559.586667pt;}
.y1e7{bottom:562.786667pt;}
.yca{bottom:565.026667pt;}
.ya4{bottom:565.986667pt;}
.y55{bottom:568.386667pt;}
.y1f5{bottom:573.186667pt;}
.y7a{bottom:573.986667pt;}
.ye4{bottom:576.386667pt;}
.y127{bottom:577.666667pt;}
.y27{bottom:577.986667pt;}
.y1cf{bottom:578.786667pt;}
.y161{bottom:579.106667pt;}
.y19c{bottom:581.186667pt;}
.yc9{bottom:583.426667pt;}
.ya3{bottom:584.386667pt;}
.y109{bottom:586.786667pt;}
.y79{bottom:592.386667pt;}
.y54{bottom:594.786667pt;}
.y126{bottom:596.066667pt;}
.y26{bottom:596.386667pt;}
.y19b{bottom:599.613333pt;}
.yc8{bottom:601.853333pt;}
.ya2{bottom:602.813333pt;}
.y108{bottom:605.213333pt;}
.y160{bottom:606.653333pt;}
.y1bf{bottom:607.613333pt;}
.y140{bottom:610.813333pt;}
.ye3{bottom:613.213333pt;}
.y125{bottom:614.493333pt;}
.y25{bottom:614.813333pt;}
.y182{bottom:615.293333pt;}
.y19a{bottom:618.013333pt;}
.y78{bottom:618.813333pt;}
.yc7{bottom:620.253333pt;}
.y53{bottom:621.213333pt;}
.y107{bottom:623.613333pt;}
.y1be{bottom:626.013333pt;}
.y13f{bottom:629.213333pt;}
.ye2{bottom:631.613333pt;}
.y124{bottom:632.893333pt;}
.y15f{bottom:634.173333pt;}
.y199{bottom:636.413333pt;}
.y77{bottom:637.213333pt;}
.yc6{bottom:638.653333pt;}
.ya1{bottom:639.613333pt;}
.y24{bottom:641.213333pt;}
.y1bd{bottom:644.413333pt;}
.y52{bottom:647.613333pt;}
.yfb{bottom:650.013333pt;}
.y123{bottom:651.293333pt;}
.y198{bottom:654.813333pt;}
.y76{bottom:655.613333pt;}
.yc5{bottom:657.053333pt;}
.ya0{bottom:658.013333pt;}
.y15e{bottom:661.693333pt;}
.y1f4{bottom:662.813333pt;}
.y51{bottom:666.013333pt;}
.y23{bottom:667.613333pt;}
.yfa{bottom:668.413333pt;}
.y122{bottom:669.693333pt;}
.y1bc{bottom:670.813333pt;}
.y197{bottom:673.213333pt;}
.y75{bottom:674.013333pt;}
.yc4{bottom:675.453333pt;}
.y14d{bottom:676.413333pt;}
.y50{bottom:684.413333pt;}
.yf9{bottom:686.813333pt;}
.y15d{bottom:689.213333pt;}
.y74{bottom:692.413333pt;}
.yc3{bottom:693.853333pt;}
.y22{bottom:694.013333pt;}
.y121{bottom:696.093333pt;}
.y17e{bottom:696.573333pt;}
.y1bb{bottom:697.213333pt;}
.y196{bottom:699.613333pt;}
.y4f{bottom:702.813333pt;}
.yf8{bottom:705.213333pt;}
.y1e6{bottom:707.613333pt;}
.y73{bottom:710.813333pt;}
.yc2{bottom:712.253333pt;}
.y1ba{bottom:715.613333pt;}
.y15c{bottom:716.733333pt;}
.y195{bottom:718.013333pt;}
.y21{bottom:718.493333pt;}
.y9f{bottom:721.213333pt;}
.y120{bottom:722.493333pt;}
.y4e{bottom:729.213333pt;}
.yc1{bottom:730.653333pt;}
.yf7{bottom:731.613333pt;}
.y1b9{bottom:734.013333pt;}
.y194{bottom:736.413333pt;}
.y20{bottom:738.813333pt;}
.y9e{bottom:739.613333pt;}
.y11f{bottom:740.893333pt;}
.y15b{bottom:744.413333pt;}
.y4d{bottom:747.613333pt;}
.yf6{bottom:750.013333pt;}
.y1b8{bottom:752.413333pt;}
.y193{bottom:754.813333pt;}
.y72{bottom:755.613333pt;}
.yc0{bottom:757.053333pt;}
.y9d{bottom:758.013333pt;}
.y11e{bottom:759.293333pt;}
.y1e5{bottom:760.413333pt;}
.y1f{bottom:763.293333pt;}
.y4c{bottom:766.013333pt;}
.yf5{bottom:768.413333pt;}
.y15a{bottom:771.933333pt;}
.y192{bottom:773.213333pt;}
.y71{bottom:774.013333pt;}
.ybf{bottom:775.453333pt;}
.y9c{bottom:776.413333pt;}
.y11d{bottom:777.693333pt;}
.y17a{bottom:778.013333pt;}
.y1b7{bottom:778.813333pt;}
.y1e{bottom:783.613333pt;}
.y4b{bottom:784.413333pt;}
.yf4{bottom:786.813333pt;}
.y70{bottom:792.413333pt;}
.y9b{bottom:794.813333pt;}
.y1b6{bottom:797.213333pt;}
.y159{bottom:799.613333pt;}
.y4a{bottom:802.813333pt;}
.ybe{bottom:802.973333pt;}
.y11c{bottom:803.933333pt;}
.yf3{bottom:805.213333pt;}
.y1d{bottom:810.013333pt;}
.y6f{bottom:810.813333pt;}
.y9a{bottom:813.253333pt;}
.y1b5{bottom:815.653333pt;}
.y49{bottom:821.253333pt;}
.ybd{bottom:821.413333pt;}
.y14c{bottom:823.653333pt;}
.y158{bottom:826.053333pt;}
.y6e{bottom:829.253333pt;}
.y11b{bottom:831.493333pt;}
.yf2{bottom:831.653333pt;}
.y1b4{bottom:834.053333pt;}
.y1c{bottom:836.453333pt;}
.y48{bottom:839.653333pt;}
.y14b{bottom:842.053333pt;}
.y176{bottom:843.973333pt;}
.y191{bottom:844.453333pt;}
.y6d{bottom:847.653333pt;}
.ybc{bottom:848.933333pt;}
.y106{bottom:850.053333pt;}
.y157{bottom:852.453333pt;}
.y1b{bottom:854.853333pt;}
.y99{bottom:858.053333pt;}
.y11a{bottom:859.173333pt;}
.y14a{bottom:860.453333pt;}
.y47{bottom:866.053333pt;}
.ybb{bottom:867.333333pt;}
.y105{bottom:868.453333pt;}
.y156{bottom:870.853333pt;}
.y98{bottom:876.453333pt;}
.y1b3{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y46{bottom:884.453333pt;}
.y104{bottom:886.853333pt;}
.y97{bottom:894.853333pt;}
.y155{bottom:897.253333pt;}
.y19{bottom:899.653333pt;}
.y45{bottom:902.853333pt;}
.y103{bottom:905.253333pt;}
.y96{bottom:913.253333pt;}
.y154{bottom:915.653333pt;}
.y44{bottom:921.253333pt;}
.y119{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.y95{bottom:931.653333pt;}
.y43{bottom:939.653333pt;}
.yba{bottom:940.773333pt;}
.y118{bottom:942.053333pt;}
.y94{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y42{bottom:958.053333pt;}
.yb9{bottom:959.333333pt;}
.y153{bottom:960.453333pt;}
.y93{bottom:968.453333pt;}
.y41{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.yb8{bottom:986.853333pt;}
.y40{bottom:994.853333pt;}
.y15{bottom:1005.253333pt;}
.y3f{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:25.120000pt;}
.h10{height:35.782187pt;}
.ha{height:44.327188pt;}
.h12{height:45.546250pt;}
.h5{height:46.240000pt;}
.h11{height:46.720000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.hd{height:53.406250pt;}
.h19{height:54.375000pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.hf{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h18{height:61.920000pt;}
.h13{height:61.952000pt;}
.h16{height:62.080000pt;}
.h17{height:62.112000pt;}
.h15{height:77.280000pt;}
.h14{height:77.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:44.320000pt;}
.w3{width:66.720000pt;}
.w8{width:75.546667pt;}
.w9{width:93.440000pt;}
.wc{width:94.432000pt;}
.wb{width:111.232000pt;}
.wd{width:121.280000pt;}
.we{width:136.026667pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w2{width:340.546667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.xb{left:9.600000pt;}
.x5{left:19.520000pt;}
.x6{left:54.560000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x16{left:103.871988pt;}
.x12{left:112.191988pt;}
.x14{left:121.311988pt;}
.x18{left:122.911988pt;}
.x2{left:131.560000pt;}
.xd{left:134.426655pt;}
.x17{left:142.426655pt;}
.x1{left:146.906667pt;}
.x19{left:191.866667pt;}
.x1a{left:238.106667pt;}
.x15{left:254.466655pt;}
.xe{left:271.746655pt;}
.x11{left:274.146655pt;}
.xf{left:282.946655pt;}
.x13{left:304.386655pt;}
.x7{left:336.066667pt;}
.x1b{left:351.266667pt;}
.x10{left:396.866655pt;}
.x1c{left:447.613333pt;}
.x1d{left:570.813333pt;}
.x8{left:589.093333pt;}
.x4{left:680.453333pt;}
.xa{left:718.213333pt;}
}




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