
    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_e6a75453fb351be2fad44e98.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1ce0462842e97c94dca8b983.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5e3f251982e87b93f5a90ca6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c9fd28e3035ad153bacd70c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_968a597289714b694bfc9c71.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff9d7c3460a781a3e87d7ae2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1b480771dcc9787a6197c8d8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995117;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_2eb01acdf7dabeade16ed122.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:31.680000px;}
.v5{vertical-align:37.440000px;}
.ls6{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.580800px;}
.ls14{letter-spacing:-0.532800px;}
.lsa{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.334200px;}
.ls13{letter-spacing:-0.323400px;}
.ls8{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.220800px;}
.ls9{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.027360px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.113760px;}
.ls11{letter-spacing:0.178560px;}
.ls12{letter-spacing:0.178800px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.219000px;}
.lsf{letter-spacing:0.265200px;}
.lsc{letter-spacing:0.305400px;}
.lse{letter-spacing:0.334080px;}
.ls16{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.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;}
}
.ws1{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.wsc{word-spacing:-16.865400px;}
.wse{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.174200px;}
.ws10{word-spacing:-16.105200px;}
.ws11{word-spacing:-16.059000px;}
.wsd{word-spacing:-15.948000px;}
.wsf{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.505800px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.220000px;}
.ws15{word-spacing:-14.118000px;}
.ws19{word-spacing:-13.639200px;}
.ws7{word-spacing:-13.608000px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.440000px;}
.ws13{word-spacing:-9.979200px;}
.ws12{word-spacing:-9.655800px;}
.ws9{word-spacing:0.000000px;}
.ws14{word-spacing:60.129360px;}
._18{margin-left:-4.769280px;}
._19{margin-left:-3.708480px;}
._17{margin-left:-2.575680px;}
._0{margin-left:-1.324800px;}
._1{width:1.492800px;}
._c{width:3.348000px;}
._11{width:4.906800px;}
._3{width:6.163200px;}
._2{width:7.407360px;}
._15{width:8.947200px;}
._5{width:10.238400px;}
._4{width:11.394000px;}
._13{width:12.427200px;}
._16{width:13.572000px;}
._e{width:14.580000px;}
._12{width:16.092000px;}
._14{width:17.428800px;}
._10{width:18.616800px;}
._f{width:19.872000px;}
._9{width:21.682800px;}
._8{width:23.112000px;}
._b{width:24.138000px;}
._d{width:29.214000px;}
._a{width:31.050000px;}
._7{width:36.478800px;}
._6{width:37.854000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.240000px;}
.y97{bottom:3.420000px;}
.ycd{bottom:3.465000px;}
.y9c{bottom:12.420000px;}
.y95{bottom:12.960000px;}
.y12{bottom:14.400000px;}
.y19{bottom:21.240000px;}
.y9b{bottom:21.420000px;}
.y37{bottom:29.160000px;}
.y18{bottom:38.520000px;}
.y36{bottom:44.640000px;}
.y17{bottom:55.620000px;}
.y35{bottom:60.120000px;}
.y16{bottom:72.930000px;}
.y34{bottom:75.600000px;}
.y15{bottom:90.210000px;}
.y33{bottom:91.260000px;}
.y1a{bottom:95.430000px;}
.y14{bottom:105.150000px;}
.y32{bottom:106.740000px;}
.y31{bottom:122.220000px;}
.y30{bottom:137.700000px;}
.y2f{bottom:153.360000px;}
.y127{bottom:157.140000px;}
.y13b{bottom:157.500000px;}
.y105{bottom:158.760000px;}
.y1a1{bottom:159.690000px;}
.y167{bottom:160.950000px;}
.y45{bottom:162.930000px;}
.yaa{bottom:166.890000px;}
.y177{bottom:167.430000px;}
.y2e{bottom:168.885000px;}
.yd9{bottom:169.590000px;}
.y151{bottom:173.730000px;}
.y126{bottom:175.170000px;}
.y13a{bottom:175.710000px;}
.y1a0{bottom:176.070000px;}
.y166{bottom:179.130000px;}
.y44{bottom:182.010000px;}
.y77{bottom:183.810000px;}
.y104{bottom:183.990000px;}
.y2d{bottom:184.365000px;}
.ya9{bottom:185.070000px;}
.y176{bottom:185.430000px;}
.yd8{bottom:187.770000px;}
.y150{bottom:191.910000px;}
.y19f{bottom:192.450000px;}
.y125{bottom:193.350000px;}
.y139{bottom:193.710000px;}
.y165{bottom:197.310000px;}
.y2c{bottom:199.845000px;}
.y76{bottom:201.990000px;}
.y103{bottom:202.170000px;}
.ya8{bottom:203.070000px;}
.y175{bottom:203.610000px;}
.yd7{bottom:205.770000px;}
.y19e{bottom:208.830000px;}
.y43{bottom:209.730000px;}
.y14f{bottom:210.090000px;}
.y124{bottom:211.350000px;}
.y2b{bottom:215.505000px;}
.y40{bottom:216.225000px;}
.y102{bottom:220.170000px;}
.y138{bottom:220.890000px;}
.ya7{bottom:221.250000px;}
.y174{bottom:221.790000px;}
.yd6{bottom:223.950000px;}
.y164{bottom:224.490000px;}
.y14e{bottom:228.270000px;}
.y42{bottom:228.450000px;}
.y75{bottom:229.170000px;}
.y123{bottom:229.530000px;}
.y19d{bottom:229.710000px;}
.y2a{bottom:230.985000px;}
.y3f{bottom:233.505000px;}
.y101{bottom:238.350000px;}
.ya6{bottom:239.430000px;}
.y173{bottom:239.790000px;}
.yd5{bottom:241.950000px;}
.y1b{bottom:244.830000px;}
.y19c{bottom:246.090000px;}
.y14d{bottom:246.270000px;}
.y29{bottom:246.465000px;}
.y122{bottom:247.710000px;}
.y137{bottom:248.790000px;}
.y3e{bottom:250.605000px;}
.y163{bottom:252.210000px;}
.y100{bottom:256.350000px;}
.y74{bottom:256.890000px;}
.ya5{bottom:257.430000px;}
.yd4{bottom:260.130000px;}
.y28{bottom:261.945000px;}
.y19b{bottom:262.470000px;}
.y14c{bottom:264.450000px;}
.y121{bottom:265.710000px;}
.y172{bottom:266.970000px;}
.y3d{bottom:267.885000px;}
.y162{bottom:270.390000px;}
.y136{bottom:272.550000px;}
.yff{bottom:274.530000px;}
.y73{bottom:275.070000px;}
.ya4{bottom:275.610000px;}
.y27{bottom:277.605000px;}
.yd3{bottom:278.310000px;}
.y19a{bottom:278.850000px;}
.y14b{bottom:282.450000px;}
.y120{bottom:283.890000px;}
.y3c{bottom:285.165000px;}
.y161{bottom:288.570000px;}
.yfe{bottom:292.710000px;}
.y26{bottom:293.085000px;}
.y72{bottom:293.250000px;}
.ya3{bottom:293.790000px;}
.y171{bottom:294.870000px;}
.yd2{bottom:296.310000px;}
.y199{bottom:299.730000px;}
.y14a{bottom:300.630000px;}
.y11f{bottom:301.890000px;}
.y3b{bottom:302.445000px;}
.y160{bottom:306.570000px;}
.y25{bottom:308.565000px;}
.yfd{bottom:310.710000px;}
.y71{bottom:311.250000px;}
.ya2{bottom:311.790000px;}
.yd1{bottom:314.490000px;}
.y198{bottom:316.110000px;}
.y170{bottom:318.630000px;}
.y149{bottom:318.810000px;}
.y3a{bottom:319.725000px;}
.y11e{bottom:320.070000px;}
.y24{bottom:324.045000px;}
.y15f{bottom:324.750000px;}
.y41{bottom:324.945000px;}
.yfc{bottom:328.890000px;}
.y70{bottom:329.430000px;}
.ya1{bottom:329.970000px;}
.y197{bottom:332.490000px;}
.y39{bottom:334.665000px;}
.y148{bottom:336.810000px;}
.y11d{bottom:338.250000px;}
.y23{bottom:339.705000px;}
.yd0{bottom:341.670000px;}
.y15e{bottom:342.930000px;}
.yfb{bottom:347.070000px;}
.ya0{bottom:347.970000px;}
.y196{bottom:348.870000px;}
.y147{bottom:354.990000px;}
.y22{bottom:355.185000px;}
.y11c{bottom:356.250000px;}
.y6f{bottom:356.610000px;}
.y15d{bottom:360.930000px;}
.yfa{bottom:365.070000px;}
.y9f{bottom:366.150000px;}
.ycf{bottom:366.870000px;}
.y195{bottom:369.750000px;}
.y21{bottom:370.665000px;}
.y146{bottom:372.990000px;}
.y15c{bottom:379.110000px;}
.yf9{bottom:383.250000px;}
.y11b{bottom:383.430000px;}
.y9e{bottom:384.330000px;}
.y6e{bottom:384.510000px;}
.yce{bottom:385.050000px;}
.y194{bottom:386.130000px;}
.y20{bottom:386.145000px;}
.y15b{bottom:397.110000px;}
.y145{bottom:400.170000px;}
.yf8{bottom:401.250000px;}
.y1f{bottom:401.625000px;}
.y193{bottom:402.510000px;}
.y6d{bottom:402.690000px;}
.ycc{bottom:403.050000px;}
.y11a{bottom:411.375000px;}
.y9d{bottom:411.555000px;}
.y15a{bottom:415.335000px;}
.y1e{bottom:417.315000px;}
.yf7{bottom:419.475000px;}
.y6c{bottom:420.735000px;}
.ycb{bottom:421.275000px;}
.y192{bottom:423.435000px;}
.y144{bottom:428.115000px;}
.y1d{bottom:432.795000px;}
.y159{bottom:433.515000px;}
.y119{bottom:435.135000px;}
.y9a{bottom:436.755000px;}
.yf6{bottom:437.655000px;}
.y6b{bottom:438.915000px;}
.yca{bottom:439.455000px;}
.y191{bottom:439.815000px;}
.y1c{bottom:446.295000px;}
.y158{bottom:451.515000px;}
.yf5{bottom:455.655000px;}
.y190{bottom:456.195000px;}
.yc9{bottom:458.175000px;}
.y143{bottom:464.475000px;}
.y6a{bottom:466.095000px;}
.y157{bottom:469.695000px;}
.y99{bottom:472.935000px;}
.yf4{bottom:473.835000px;}
.y18f{bottom:477.075000px;}
.y142{bottom:482.475000px;}
.y1c3{bottom:487.515000px;}
.yc8{bottom:489.495000px;}
.y98{bottom:491.115000px;}
.yf3{bottom:492.735000px;}
.y18e{bottom:493.455000px;}
.y69{bottom:493.995000px;}
.y156{bottom:496.875000px;}
.y141{bottom:500.655000px;}
.y94{bottom:509.835000px;}
.y1c2{bottom:511.815000px;}
.y18d{bottom:514.335000px;}
.yc7{bottom:516.495000px;}
.y140{bottom:518.835000px;}
.y155{bottom:524.775000px;}
.y1c1{bottom:528.195000px;}
.y96{bottom:528.735000px;}
.y18c{bottom:530.715000px;}
.y68{bottom:531.075000px;}
.yc6{bottom:534.675000px;}
.y13f{bottom:536.835000px;}
.yf2{bottom:542.055000px;}
.y1c0{bottom:544.575000px;}
.y154{bottom:548.535000px;}
.y67{bottom:550.155000px;}
.y18b{bottom:551.595000px;}
.yc5{bottom:552.855000px;}
.y135{bottom:554.835000px;}
.y13e{bottom:555.015000px;}
.y93{bottom:560.055000px;}
.y1bf{bottom:565.455000px;}
.y18a{bottom:567.975000px;}
.yf1{bottom:569.055000px;}
.y66{bottom:569.235000px;}
.yc4{bottom:571.035000px;}
.y134{bottom:573.015000px;}
.y1be{bottom:581.835000px;}
.y189{bottom:584.355000px;}
.y13{bottom:585.975000px;}
.y92{bottom:587.055000px;}
.yf0{bottom:587.235000px;}
.y65{bottom:588.135000px;}
.yc3{bottom:589.035000px;}
.y133{bottom:591.195000px;}
.y1bd{bottom:598.215000px;}
.y16f{bottom:600.915000px;}
.y91{bottom:605.235000px;}
.yef{bottom:605.415000px;}
.y64{bottom:607.035000px;}
.yc2{bottom:607.215000px;}
.y132{bottom:609.375000px;}
.y16e{bottom:619.095000px;}
.y188{bottom:621.615000px;}
.y90{bottom:623.415000px;}
.yee{bottom:623.595000px;}
.yc1{bottom:625.215000px;}
.y63{bottom:626.115000px;}
.y131{bottom:627.375000px;}
.y1bc{bottom:635.475000px;}
.y16d{bottom:637.275000px;}
.y187{bottom:637.995000px;}
.y8f{bottom:641.415000px;}
.yed{bottom:641.595000px;}
.yc0{bottom:643.395000px;}
.y62{bottom:645.015000px;}
.y130{bottom:645.555000px;}
.y1bb{bottom:652.035000px;}
.y13d{bottom:654.585000px;}
.y16c{bottom:655.485000px;}
.y186{bottom:658.905000px;}
.y8e{bottom:659.625000px;}
.yec{bottom:659.805000px;}
.ybf{bottom:661.605000px;}
.y12f{bottom:663.585000px;}
.y61{bottom:664.125000px;}
.y1ba{bottom:668.445000px;}
.y16b{bottom:673.485000px;}
.y185{bottom:675.465000px;}
.y8d{bottom:677.805000px;}
.ybe{bottom:679.605000px;}
.y12e{bottom:681.765000px;}
.y13c{bottom:682.485000px;}
.y60{bottom:683.025000px;}
.y1b9{bottom:689.325000px;}
.y16a{bottom:691.665000px;}
.y184{bottom:691.845000px;}
.y8c{bottom:695.805000px;}
.yeb{bottom:695.985000px;}
.y11{bottom:697.605000px;}
.ybd{bottom:697.785000px;}
.y12d{bottom:699.945000px;}
.y1b8{bottom:705.705000px;}
.y5f{bottom:706.245000px;}
.y183{bottom:708.225000px;}
.y8b{bottom:713.985000px;}
.yea{bottom:714.165000px;}
.ybc{bottom:715.785000px;}
.y12c{bottom:717.945000px;}
.y169{bottom:718.665000px;}
.y1b7{bottom:722.085000px;}
.y5e{bottom:725.505000px;}
.y182{bottom:729.105000px;}
.ye9{bottom:732.165000px;}
.ybb{bottom:733.965000px;}
.y12b{bottom:736.125000px;}
.y1b6{bottom:738.465000px;}
.y8a{bottom:741.165000px;}
.y10{bottom:742.065000px;}
.y168{bottom:742.425000px;}
.y5d{bottom:744.405000px;}
.y181{bottom:745.485000px;}
.ye8{bottom:750.345000px;}
.yba{bottom:752.145000px;}
.yf{bottom:759.345000px;}
.y118{bottom:760.605000px;}
.y12a{bottom:763.305000px;}
.y5c{bottom:763.485000px;}
.y180{bottom:766.365000px;}
.ye7{bottom:768.345000px;}
.y89{bottom:769.065000px;}
.yb9{bottom:770.145000px;}
.y1b5{bottom:775.725000px;}
.ye{bottom:776.625000px;}
.y117{bottom:778.785000px;}
.y5b{bottom:782.385000px;}
.y17f{bottom:782.745000px;}
.ye6{bottom:786.525000px;}
.y88{bottom:787.245000px;}
.yb8{bottom:788.325000px;}
.y129{bottom:791.205000px;}
.y1b4{bottom:792.105000px;}
.yd{bottom:793.905000px;}
.y116{bottom:796.965000px;}
.y17e{bottom:799.125000px;}
.y5a{bottom:801.465000px;}
.y87{bottom:805.245000px;}
.y1b3{bottom:812.985000px;}
.ye5{bottom:813.705000px;}
.y115{bottom:814.965000px;}
.yb7{bottom:815.505000px;}
.yc{bottom:817.305000px;}
.y59{bottom:820.365000px;}
.y86{bottom:823.425000px;}
.y1b2{bottom:829.365000px;}
.yb{bottom:830.265000px;}
.y153{bottom:830.805000px;}
.y114{bottom:833.145000px;}
.y17d{bottom:836.385000px;}
.ye4{bottom:838.905000px;}
.y58{bottom:839.265000px;}
.yb6{bottom:843.405000px;}
.y1b1{bottom:850.245000px;}
.y85{bottom:850.605000px;}
.y113{bottom:851.325000px;}
.y17c{bottom:852.765000px;}
.ya{bottom:853.485000px;}
.y152{bottom:854.565000px;}
.ye3{bottom:857.085000px;}
.y57{bottom:862.665000px;}
.y1b0{bottom:866.625000px;}
.y17b{bottom:869.145000px;}
.y112{bottom:869.325000px;}
.yb5{bottom:871.305000px;}
.ye2{bottom:875.085000px;}
.y84{bottom:878.325000px;}
.y56{bottom:881.745000px;}
.y1af{bottom:883.005000px;}
.y9{bottom:884.985000px;}
.y111{bottom:887.505000px;}
.yb4{bottom:889.485000px;}
.ye1{bottom:893.265000px;}
.y83{bottom:896.505000px;}
.y55{bottom:900.870000px;}
.y17a{bottom:903.930000px;}
.y110{bottom:905.550000px;}
.y8{bottom:905.730000px;}
.ye0{bottom:911.490000px;}
.yb3{bottom:913.290000px;}
.y82{bottom:914.730000px;}
.y54{bottom:919.770000px;}
.y1ae{bottom:920.310000px;}
.yb2{bottom:921.210000px;}
.y10f{bottom:923.730000px;}
.ydf{bottom:930.210000px;}
.y179{bottom:932.010000px;}
.y81{bottom:932.910000px;}
.y1ad{bottom:936.690000px;}
.y53{bottom:938.670000px;}
.y10e{bottom:941.910000px;}
.y7{bottom:944.430000px;}
.y80{bottom:950.910000px;}
.yb1{bottom:952.710000px;}
.y1ac{bottom:957.570000px;}
.y52{bottom:957.750000px;}
.y10d{bottom:959.910000px;}
.yde{bottom:961.530000px;}
.y6{bottom:965.130000px;}
.y1ab{bottom:973.950000px;}
.y51{bottom:976.650000px;}
.y7f{bottom:978.090000px;}
.yb0{bottom:979.710000px;}
.y178{bottom:987.990000px;}
.ydd{bottom:988.710000px;}
.y1aa{bottom:990.330000px;}
.y50{bottom:995.730000px;}
.y10c{bottom:996.270000px;}
.y5{bottom:1003.830000px;}
.y7e{bottom:1005.990000px;}
.y1a9{bottom:1006.710000px;}
.yaf{bottom:1006.890000px;}
.y10b{bottom:1014.270000px;}
.y4f{bottom:1014.630000px;}
.y7d{bottom:1024.170000px;}
.ydc{bottom:1024.890000px;}
.y1a8{bottom:1027.590000px;}
.y10a{bottom:1032.450000px;}
.yae{bottom:1033.890000px;}
.y4e{bottom:1037.850000px;}
.y4{bottom:1038.570000px;}
.y7c{bottom:1042.350000px;}
.ydb{bottom:1043.070000px;}
.y1a7{bottom:1043.970000px;}
.y109{bottom:1050.450000px;}
.yad{bottom:1052.070000px;}
.y4d{bottom:1057.110000px;}
.y7b{bottom:1060.350000px;}
.yda{bottom:1061.070000px;}
.y1a6{bottom:1064.850000px;}
.y4c{bottom:1076.010000px;}
.y108{bottom:1077.630000px;}
.yac{bottom:1079.250000px;}
.y1a5{bottom:1081.230000px;}
.y7a{bottom:1087.530000px;}
.y4b{bottom:1095.090000px;}
.y128{bottom:1097.250000px;}
.yab{bottom:1097.430000px;}
.y1a4{bottom:1097.610000px;}
.y107{bottom:1104.810000px;}
.y4a{bottom:1113.990000px;}
.y79{bottom:1115.430000px;}
.y1a3{bottom:1118.490000px;}
.y106{bottom:1132.710000px;}
.y49{bottom:1132.890000px;}
.y78{bottom:1133.610000px;}
.y1a2{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y48{bottom:1169.460000px;}
.y47{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y46{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h18{height:18.000000px;}
.h17{height:18.180000px;}
.h1c{height:18.216000px;}
.h19{height:36.180000px;}
.h16{height:37.080000px;}
.h9{height:40.500000px;}
.h5{height:41.304375px;}
.h10{height:44.507812px;}
.h1f{height:50.992031px;}
.hf{height:52.971680px;}
.h20{height:55.796836px;}
.h1e{height:55.824609px;}
.h15{height:56.801250px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h14{height:59.383125px;}
.h8{height:60.226875px;}
.h6{height:62.184375px;}
.h1d{height:63.855000px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h12{height:70.664062px;}
.h4{height:72.562500px;}
.h1a{height:75.668203px;}
.h1b{height:93.864375px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h13{height:153.341016px;}
.h11{height:338.790000px;}
.he{height:450.615000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w9{width:86.760000px;}
.wa{width:86.796000px;}
.wb{width:94.860000px;}
.w12{width:96.516000px;}
.w11{width:103.680000px;}
.w13{width:116.100000px;}
.w7{width:128.016000px;}
.w15{width:153.750000px;}
.we{width:167.070000px;}
.w14{width:172.830000px;}
.w10{width:189.390000px;}
.wc{width:216.030000px;}
.w3{width:237.990000px;}
.w8{width:268.410000px;}
.w6{width:276.150000px;}
.wd{width:278.130000px;}
.wf{width:350.715000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x19{left:21.600000px;}
.x2d{left:35.460000px;}
.x25{left:42.660000px;}
.x2f{left:46.980000px;}
.x23{left:49.674000px;}
.x27{left:50.760000px;}
.x2e{left:54.534000px;}
.x28{left:55.980000px;}
.x10{left:62.094000px;}
.x31{left:65.925000px;}
.x1f{left:72.900000px;}
.x1e{left:75.780000px;}
.x21{left:76.860000px;}
.x2a{left:78.870000px;}
.x20{left:80.820000px;}
.x2b{left:82.110000px;}
.x30{left:89.130000px;}
.x5{left:108.035987px;}
.xf{left:110.376000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x18{left:140.795987px;}
.x22{left:145.115987px;}
.xc{left:162.749987px;}
.x1c{left:176.610000px;}
.xa{left:185.250000px;}
.x1b{left:188.849987px;}
.x24{left:211.710000px;}
.x36{left:236.909987px;}
.x39{left:241.769987px;}
.x37{left:243.569987px;}
.x34{left:257.969987px;}
.xe{left:270.029987px;}
.x3c{left:284.654987px;}
.x16{left:290.054987px;}
.x15{left:292.934987px;}
.x3a{left:295.094987px;}
.x26{left:308.235000px;}
.x3{left:314.354987px;}
.x1a{left:324.075000px;}
.x17{left:349.454987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x11{left:386.535000px;}
.x29{left:424.335000px;}
.x12{left:514.545000px;}
.x1d{left:527.325000px;}
.x3b{left:586.544987px;}
.x35{left:589.604987px;}
.x33{left:591.764987px;}
.x2c{left:597.345000px;}
.x13{left:601.305000px;}
.x32{left:607.964987px;}
.x38{left:614.624987px;}
.x14{left:688.110000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:28.160000pt;}
.v5{vertical-align:33.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.516267pt;}
.ls14{letter-spacing:-0.473600pt;}
.lsa{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.297067pt;}
.ls13{letter-spacing:-0.287467pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.196267pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.024320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.101120pt;}
.ls11{letter-spacing:0.158720pt;}
.ls12{letter-spacing:0.158933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.194667pt;}
.lsf{letter-spacing:0.235733pt;}
.lsc{letter-spacing:0.271467pt;}
.lse{letter-spacing:0.296960pt;}
.ls16{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.wsc{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.377067pt;}
.ws10{word-spacing:-14.315733pt;}
.ws11{word-spacing:-14.274667pt;}
.wsd{word-spacing:-14.176000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws16{word-spacing:-13.782933pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.640000pt;}
.ws15{word-spacing:-12.549333pt;}
.ws19{word-spacing:-12.123733pt;}
.ws7{word-spacing:-12.096000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws13{word-spacing:-8.870400pt;}
.ws12{word-spacing:-8.582933pt;}
.ws9{word-spacing:0.000000pt;}
.ws14{word-spacing:53.448320pt;}
._18{margin-left:-4.239360pt;}
._19{margin-left:-3.296427pt;}
._17{margin-left:-2.289493pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.326933pt;}
._c{width:2.976000pt;}
._11{width:4.361600pt;}
._3{width:5.478400pt;}
._2{width:6.584320pt;}
._15{width:7.953067pt;}
._5{width:9.100800pt;}
._4{width:10.128000pt;}
._13{width:11.046400pt;}
._16{width:12.064000pt;}
._e{width:12.960000pt;}
._12{width:14.304000pt;}
._14{width:15.492267pt;}
._10{width:16.548267pt;}
._f{width:17.664000pt;}
._9{width:19.273600pt;}
._8{width:20.544000pt;}
._b{width:21.456000pt;}
._d{width:25.968000pt;}
._a{width:27.600000pt;}
._7{width:32.425600pt;}
._6{width:33.648000pt;}
.fs7{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.880000pt;}
.y97{bottom:3.040000pt;}
.ycd{bottom:3.080000pt;}
.y9c{bottom:11.040000pt;}
.y95{bottom:11.520000pt;}
.y12{bottom:12.800000pt;}
.y19{bottom:18.880000pt;}
.y9b{bottom:19.040000pt;}
.y37{bottom:25.920000pt;}
.y18{bottom:34.240000pt;}
.y36{bottom:39.680000pt;}
.y17{bottom:49.440000pt;}
.y35{bottom:53.440000pt;}
.y16{bottom:64.826667pt;}
.y34{bottom:67.200000pt;}
.y15{bottom:80.186667pt;}
.y33{bottom:81.120000pt;}
.y1a{bottom:84.826667pt;}
.y14{bottom:93.466667pt;}
.y32{bottom:94.880000pt;}
.y31{bottom:108.640000pt;}
.y30{bottom:122.400000pt;}
.y2f{bottom:136.320000pt;}
.y127{bottom:139.680000pt;}
.y13b{bottom:140.000000pt;}
.y105{bottom:141.120000pt;}
.y1a1{bottom:141.946667pt;}
.y167{bottom:143.066667pt;}
.y45{bottom:144.826667pt;}
.yaa{bottom:148.346667pt;}
.y177{bottom:148.826667pt;}
.y2e{bottom:150.120000pt;}
.yd9{bottom:150.746667pt;}
.y151{bottom:154.426667pt;}
.y126{bottom:155.706667pt;}
.y13a{bottom:156.186667pt;}
.y1a0{bottom:156.506667pt;}
.y166{bottom:159.226667pt;}
.y44{bottom:161.786667pt;}
.y77{bottom:163.386667pt;}
.y104{bottom:163.546667pt;}
.y2d{bottom:163.880000pt;}
.ya9{bottom:164.506667pt;}
.y176{bottom:164.826667pt;}
.yd8{bottom:166.906667pt;}
.y150{bottom:170.586667pt;}
.y19f{bottom:171.066667pt;}
.y125{bottom:171.866667pt;}
.y139{bottom:172.186667pt;}
.y165{bottom:175.386667pt;}
.y2c{bottom:177.640000pt;}
.y76{bottom:179.546667pt;}
.y103{bottom:179.706667pt;}
.ya8{bottom:180.506667pt;}
.y175{bottom:180.986667pt;}
.yd7{bottom:182.906667pt;}
.y19e{bottom:185.626667pt;}
.y43{bottom:186.426667pt;}
.y14f{bottom:186.746667pt;}
.y124{bottom:187.866667pt;}
.y2b{bottom:191.560000pt;}
.y40{bottom:192.200000pt;}
.y102{bottom:195.706667pt;}
.y138{bottom:196.346667pt;}
.ya7{bottom:196.666667pt;}
.y174{bottom:197.146667pt;}
.yd6{bottom:199.066667pt;}
.y164{bottom:199.546667pt;}
.y14e{bottom:202.906667pt;}
.y42{bottom:203.066667pt;}
.y75{bottom:203.706667pt;}
.y123{bottom:204.026667pt;}
.y19d{bottom:204.186667pt;}
.y2a{bottom:205.320000pt;}
.y3f{bottom:207.560000pt;}
.y101{bottom:211.866667pt;}
.ya6{bottom:212.826667pt;}
.y173{bottom:213.146667pt;}
.yd5{bottom:215.066667pt;}
.y1b{bottom:217.626667pt;}
.y19c{bottom:218.746667pt;}
.y14d{bottom:218.906667pt;}
.y29{bottom:219.080000pt;}
.y122{bottom:220.186667pt;}
.y137{bottom:221.146667pt;}
.y3e{bottom:222.760000pt;}
.y163{bottom:224.186667pt;}
.y100{bottom:227.866667pt;}
.y74{bottom:228.346667pt;}
.ya5{bottom:228.826667pt;}
.yd4{bottom:231.226667pt;}
.y28{bottom:232.840000pt;}
.y19b{bottom:233.306667pt;}
.y14c{bottom:235.066667pt;}
.y121{bottom:236.186667pt;}
.y172{bottom:237.306667pt;}
.y3d{bottom:238.120000pt;}
.y162{bottom:240.346667pt;}
.y136{bottom:242.266667pt;}
.yff{bottom:244.026667pt;}
.y73{bottom:244.506667pt;}
.ya4{bottom:244.986667pt;}
.y27{bottom:246.760000pt;}
.yd3{bottom:247.386667pt;}
.y19a{bottom:247.866667pt;}
.y14b{bottom:251.066667pt;}
.y120{bottom:252.346667pt;}
.y3c{bottom:253.480000pt;}
.y161{bottom:256.506667pt;}
.yfe{bottom:260.186667pt;}
.y26{bottom:260.520000pt;}
.y72{bottom:260.666667pt;}
.ya3{bottom:261.146667pt;}
.y171{bottom:262.106667pt;}
.yd2{bottom:263.386667pt;}
.y199{bottom:266.426667pt;}
.y14a{bottom:267.226667pt;}
.y11f{bottom:268.346667pt;}
.y3b{bottom:268.840000pt;}
.y160{bottom:272.506667pt;}
.y25{bottom:274.280000pt;}
.yfd{bottom:276.186667pt;}
.y71{bottom:276.666667pt;}
.ya2{bottom:277.146667pt;}
.yd1{bottom:279.546667pt;}
.y198{bottom:280.986667pt;}
.y170{bottom:283.226667pt;}
.y149{bottom:283.386667pt;}
.y3a{bottom:284.200000pt;}
.y11e{bottom:284.506667pt;}
.y24{bottom:288.040000pt;}
.y15f{bottom:288.666667pt;}
.y41{bottom:288.840000pt;}
.yfc{bottom:292.346667pt;}
.y70{bottom:292.826667pt;}
.ya1{bottom:293.306667pt;}
.y197{bottom:295.546667pt;}
.y39{bottom:297.480000pt;}
.y148{bottom:299.386667pt;}
.y11d{bottom:300.666667pt;}
.y23{bottom:301.960000pt;}
.yd0{bottom:303.706667pt;}
.y15e{bottom:304.826667pt;}
.yfb{bottom:308.506667pt;}
.ya0{bottom:309.306667pt;}
.y196{bottom:310.106667pt;}
.y147{bottom:315.546667pt;}
.y22{bottom:315.720000pt;}
.y11c{bottom:316.666667pt;}
.y6f{bottom:316.986667pt;}
.y15d{bottom:320.826667pt;}
.yfa{bottom:324.506667pt;}
.y9f{bottom:325.466667pt;}
.ycf{bottom:326.106667pt;}
.y195{bottom:328.666667pt;}
.y21{bottom:329.480000pt;}
.y146{bottom:331.546667pt;}
.y15c{bottom:336.986667pt;}
.yf9{bottom:340.666667pt;}
.y11b{bottom:340.826667pt;}
.y9e{bottom:341.626667pt;}
.y6e{bottom:341.786667pt;}
.yce{bottom:342.266667pt;}
.y194{bottom:343.226667pt;}
.y20{bottom:343.240000pt;}
.y15b{bottom:352.986667pt;}
.y145{bottom:355.706667pt;}
.yf8{bottom:356.666667pt;}
.y1f{bottom:357.000000pt;}
.y193{bottom:357.786667pt;}
.y6d{bottom:357.946667pt;}
.ycc{bottom:358.266667pt;}
.y11a{bottom:365.666667pt;}
.y9d{bottom:365.826667pt;}
.y15a{bottom:369.186667pt;}
.y1e{bottom:370.946667pt;}
.yf7{bottom:372.866667pt;}
.y6c{bottom:373.986667pt;}
.ycb{bottom:374.466667pt;}
.y192{bottom:376.386667pt;}
.y144{bottom:380.546667pt;}
.y1d{bottom:384.706667pt;}
.y159{bottom:385.346667pt;}
.y119{bottom:386.786667pt;}
.y9a{bottom:388.226667pt;}
.yf6{bottom:389.026667pt;}
.y6b{bottom:390.146667pt;}
.yca{bottom:390.626667pt;}
.y191{bottom:390.946667pt;}
.y1c{bottom:396.706667pt;}
.y158{bottom:401.346667pt;}
.yf5{bottom:405.026667pt;}
.y190{bottom:405.506667pt;}
.yc9{bottom:407.266667pt;}
.y143{bottom:412.866667pt;}
.y6a{bottom:414.306667pt;}
.y157{bottom:417.506667pt;}
.y99{bottom:420.386667pt;}
.yf4{bottom:421.186667pt;}
.y18f{bottom:424.066667pt;}
.y142{bottom:428.866667pt;}
.y1c3{bottom:433.346667pt;}
.yc8{bottom:435.106667pt;}
.y98{bottom:436.546667pt;}
.yf3{bottom:437.986667pt;}
.y18e{bottom:438.626667pt;}
.y69{bottom:439.106667pt;}
.y156{bottom:441.666667pt;}
.y141{bottom:445.026667pt;}
.y94{bottom:453.186667pt;}
.y1c2{bottom:454.946667pt;}
.y18d{bottom:457.186667pt;}
.yc7{bottom:459.106667pt;}
.y140{bottom:461.186667pt;}
.y155{bottom:466.466667pt;}
.y1c1{bottom:469.506667pt;}
.y96{bottom:469.986667pt;}
.y18c{bottom:471.746667pt;}
.y68{bottom:472.066667pt;}
.yc6{bottom:475.266667pt;}
.y13f{bottom:477.186667pt;}
.yf2{bottom:481.826667pt;}
.y1c0{bottom:484.066667pt;}
.y154{bottom:487.586667pt;}
.y67{bottom:489.026667pt;}
.y18b{bottom:490.306667pt;}
.yc5{bottom:491.426667pt;}
.y135{bottom:493.186667pt;}
.y13e{bottom:493.346667pt;}
.y93{bottom:497.826667pt;}
.y1bf{bottom:502.626667pt;}
.y18a{bottom:504.866667pt;}
.yf1{bottom:505.826667pt;}
.y66{bottom:505.986667pt;}
.yc4{bottom:507.586667pt;}
.y134{bottom:509.346667pt;}
.y1be{bottom:517.186667pt;}
.y189{bottom:519.426667pt;}
.y13{bottom:520.866667pt;}
.y92{bottom:521.826667pt;}
.yf0{bottom:521.986667pt;}
.y65{bottom:522.786667pt;}
.yc3{bottom:523.586667pt;}
.y133{bottom:525.506667pt;}
.y1bd{bottom:531.746667pt;}
.y16f{bottom:534.146667pt;}
.y91{bottom:537.986667pt;}
.yef{bottom:538.146667pt;}
.y64{bottom:539.586667pt;}
.yc2{bottom:539.746667pt;}
.y132{bottom:541.666667pt;}
.y16e{bottom:550.306667pt;}
.y188{bottom:552.546667pt;}
.y90{bottom:554.146667pt;}
.yee{bottom:554.306667pt;}
.yc1{bottom:555.746667pt;}
.y63{bottom:556.546667pt;}
.y131{bottom:557.666667pt;}
.y1bc{bottom:564.866667pt;}
.y16d{bottom:566.466667pt;}
.y187{bottom:567.106667pt;}
.y8f{bottom:570.146667pt;}
.yed{bottom:570.306667pt;}
.yc0{bottom:571.906667pt;}
.y62{bottom:573.346667pt;}
.y130{bottom:573.826667pt;}
.y1bb{bottom:579.586667pt;}
.y13d{bottom:581.853333pt;}
.y16c{bottom:582.653333pt;}
.y186{bottom:585.693333pt;}
.y8e{bottom:586.333333pt;}
.yec{bottom:586.493333pt;}
.ybf{bottom:588.093333pt;}
.y12f{bottom:589.853333pt;}
.y61{bottom:590.333333pt;}
.y1ba{bottom:594.173333pt;}
.y16b{bottom:598.653333pt;}
.y185{bottom:600.413333pt;}
.y8d{bottom:602.493333pt;}
.ybe{bottom:604.093333pt;}
.y12e{bottom:606.013333pt;}
.y13c{bottom:606.653333pt;}
.y60{bottom:607.133333pt;}
.y1b9{bottom:612.733333pt;}
.y16a{bottom:614.813333pt;}
.y184{bottom:614.973333pt;}
.y8c{bottom:618.493333pt;}
.yeb{bottom:618.653333pt;}
.y11{bottom:620.093333pt;}
.ybd{bottom:620.253333pt;}
.y12d{bottom:622.173333pt;}
.y1b8{bottom:627.293333pt;}
.y5f{bottom:627.773333pt;}
.y183{bottom:629.533333pt;}
.y8b{bottom:634.653333pt;}
.yea{bottom:634.813333pt;}
.ybc{bottom:636.253333pt;}
.y12c{bottom:638.173333pt;}
.y169{bottom:638.813333pt;}
.y1b7{bottom:641.853333pt;}
.y5e{bottom:644.893333pt;}
.y182{bottom:648.093333pt;}
.ye9{bottom:650.813333pt;}
.ybb{bottom:652.413333pt;}
.y12b{bottom:654.333333pt;}
.y1b6{bottom:656.413333pt;}
.y8a{bottom:658.813333pt;}
.y10{bottom:659.613333pt;}
.y168{bottom:659.933333pt;}
.y5d{bottom:661.693333pt;}
.y181{bottom:662.653333pt;}
.ye8{bottom:666.973333pt;}
.yba{bottom:668.573333pt;}
.yf{bottom:674.973333pt;}
.y118{bottom:676.093333pt;}
.y12a{bottom:678.493333pt;}
.y5c{bottom:678.653333pt;}
.y180{bottom:681.213333pt;}
.ye7{bottom:682.973333pt;}
.y89{bottom:683.613333pt;}
.yb9{bottom:684.573333pt;}
.y1b5{bottom:689.533333pt;}
.ye{bottom:690.333333pt;}
.y117{bottom:692.253333pt;}
.y5b{bottom:695.453333pt;}
.y17f{bottom:695.773333pt;}
.ye6{bottom:699.133333pt;}
.y88{bottom:699.773333pt;}
.yb8{bottom:700.733333pt;}
.y129{bottom:703.293333pt;}
.y1b4{bottom:704.093333pt;}
.yd{bottom:705.693333pt;}
.y116{bottom:708.413333pt;}
.y17e{bottom:710.333333pt;}
.y5a{bottom:712.413333pt;}
.y87{bottom:715.773333pt;}
.y1b3{bottom:722.653333pt;}
.ye5{bottom:723.293333pt;}
.y115{bottom:724.413333pt;}
.yb7{bottom:724.893333pt;}
.yc{bottom:726.493333pt;}
.y59{bottom:729.213333pt;}
.y86{bottom:731.933333pt;}
.y1b2{bottom:737.213333pt;}
.yb{bottom:738.013333pt;}
.y153{bottom:738.493333pt;}
.y114{bottom:740.573333pt;}
.y17d{bottom:743.453333pt;}
.ye4{bottom:745.693333pt;}
.y58{bottom:746.013333pt;}
.yb6{bottom:749.693333pt;}
.y1b1{bottom:755.773333pt;}
.y85{bottom:756.093333pt;}
.y113{bottom:756.733333pt;}
.y17c{bottom:758.013333pt;}
.ya{bottom:758.653333pt;}
.y152{bottom:759.613333pt;}
.ye3{bottom:761.853333pt;}
.y57{bottom:766.813333pt;}
.y1b0{bottom:770.333333pt;}
.y17b{bottom:772.573333pt;}
.y112{bottom:772.733333pt;}
.yb5{bottom:774.493333pt;}
.ye2{bottom:777.853333pt;}
.y84{bottom:780.733333pt;}
.y56{bottom:783.773333pt;}
.y1af{bottom:784.893333pt;}
.y9{bottom:786.653333pt;}
.y111{bottom:788.893333pt;}
.yb4{bottom:790.653333pt;}
.ye1{bottom:794.013333pt;}
.y83{bottom:796.893333pt;}
.y55{bottom:800.773333pt;}
.y17a{bottom:803.493333pt;}
.y110{bottom:804.933333pt;}
.y8{bottom:805.093333pt;}
.ye0{bottom:810.213333pt;}
.yb3{bottom:811.813333pt;}
.y82{bottom:813.093333pt;}
.y54{bottom:817.573333pt;}
.y1ae{bottom:818.053333pt;}
.yb2{bottom:818.853333pt;}
.y10f{bottom:821.093333pt;}
.ydf{bottom:826.853333pt;}
.y179{bottom:828.453333pt;}
.y81{bottom:829.253333pt;}
.y1ad{bottom:832.613333pt;}
.y53{bottom:834.373333pt;}
.y10e{bottom:837.253333pt;}
.y7{bottom:839.493333pt;}
.y80{bottom:845.253333pt;}
.yb1{bottom:846.853333pt;}
.y1ac{bottom:851.173333pt;}
.y52{bottom:851.333333pt;}
.y10d{bottom:853.253333pt;}
.yde{bottom:854.693333pt;}
.y6{bottom:857.893333pt;}
.y1ab{bottom:865.733333pt;}
.y51{bottom:868.133333pt;}
.y7f{bottom:869.413333pt;}
.yb0{bottom:870.853333pt;}
.y178{bottom:878.213333pt;}
.ydd{bottom:878.853333pt;}
.y1aa{bottom:880.293333pt;}
.y50{bottom:885.093333pt;}
.y10c{bottom:885.573333pt;}
.y5{bottom:892.293333pt;}
.y7e{bottom:894.213333pt;}
.y1a9{bottom:894.853333pt;}
.yaf{bottom:895.013333pt;}
.y10b{bottom:901.573333pt;}
.y4f{bottom:901.893333pt;}
.y7d{bottom:910.373333pt;}
.ydc{bottom:911.013333pt;}
.y1a8{bottom:913.413333pt;}
.y10a{bottom:917.733333pt;}
.yae{bottom:919.013333pt;}
.y4e{bottom:922.533333pt;}
.y4{bottom:923.173333pt;}
.y7c{bottom:926.533333pt;}
.ydb{bottom:927.173333pt;}
.y1a7{bottom:927.973333pt;}
.y109{bottom:933.733333pt;}
.yad{bottom:935.173333pt;}
.y4d{bottom:939.653333pt;}
.y7b{bottom:942.533333pt;}
.yda{bottom:943.173333pt;}
.y1a6{bottom:946.533333pt;}
.y4c{bottom:956.453333pt;}
.y108{bottom:957.893333pt;}
.yac{bottom:959.333333pt;}
.y1a5{bottom:961.093333pt;}
.y7a{bottom:966.693333pt;}
.y4b{bottom:973.413333pt;}
.y128{bottom:975.333333pt;}
.yab{bottom:975.493333pt;}
.y1a4{bottom:975.653333pt;}
.y107{bottom:982.053333pt;}
.y4a{bottom:990.213333pt;}
.y79{bottom:991.493333pt;}
.y1a3{bottom:994.213333pt;}
.y106{bottom:1006.853333pt;}
.y49{bottom:1007.013333pt;}
.y78{bottom:1007.653333pt;}
.y1a2{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y48{bottom:1039.520000pt;}
.y47{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y46{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h18{height:16.000000pt;}
.h17{height:16.160000pt;}
.h1c{height:16.192000pt;}
.h19{height:32.160000pt;}
.h16{height:32.960000pt;}
.h9{height:36.000000pt;}
.h5{height:36.715000pt;}
.h10{height:39.562500pt;}
.h1f{height:45.326250pt;}
.hf{height:47.085938pt;}
.h20{height:49.597187pt;}
.h1e{height:49.621875pt;}
.h15{height:50.490000pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h14{height:52.785000pt;}
.h8{height:53.535000pt;}
.h6{height:55.275000pt;}
.h1d{height:56.760000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h12{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1a{height:67.260625pt;}
.h1b{height:83.435000pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h13{height:136.303125pt;}
.h11{height:301.146667pt;}
.he{height:400.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w9{width:77.120000pt;}
.wa{width:77.152000pt;}
.wb{width:84.320000pt;}
.w12{width:85.792000pt;}
.w11{width:92.160000pt;}
.w13{width:103.200000pt;}
.w7{width:113.792000pt;}
.w15{width:136.666667pt;}
.we{width:148.506667pt;}
.w14{width:153.626667pt;}
.w10{width:168.346667pt;}
.wc{width:192.026667pt;}
.w3{width:211.546667pt;}
.w8{width:238.586667pt;}
.w6{width:245.466667pt;}
.wd{width:247.226667pt;}
.wf{width:311.746667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x19{left:19.200000pt;}
.x2d{left:31.520000pt;}
.x25{left:37.920000pt;}
.x2f{left:41.760000pt;}
.x23{left:44.154667pt;}
.x27{left:45.120000pt;}
.x2e{left:48.474667pt;}
.x28{left:49.760000pt;}
.x10{left:55.194667pt;}
.x31{left:58.600000pt;}
.x1f{left:64.800000pt;}
.x1e{left:67.360000pt;}
.x21{left:68.320000pt;}
.x2a{left:70.106667pt;}
.x20{left:71.840000pt;}
.x2b{left:72.986667pt;}
.x30{left:79.226667pt;}
.x5{left:96.031988pt;}
.xf{left:98.112000pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x18{left:125.151988pt;}
.x22{left:128.991988pt;}
.xc{left:144.666655pt;}
.x1c{left:156.986667pt;}
.xa{left:164.666667pt;}
.x1b{left:167.866655pt;}
.x24{left:188.186667pt;}
.x36{left:210.586655pt;}
.x39{left:214.906655pt;}
.x37{left:216.506655pt;}
.x34{left:229.306655pt;}
.xe{left:240.026655pt;}
.x3c{left:253.026655pt;}
.x16{left:257.826655pt;}
.x15{left:260.386655pt;}
.x3a{left:262.306655pt;}
.x26{left:273.986667pt;}
.x3{left:279.426655pt;}
.x1a{left:288.066667pt;}
.x17{left:310.626655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x11{left:343.586667pt;}
.x29{left:377.186667pt;}
.x12{left:457.373333pt;}
.x1d{left:468.733333pt;}
.x3b{left:521.373322pt;}
.x35{left:524.093322pt;}
.x33{left:526.013322pt;}
.x2c{left:530.973333pt;}
.x13{left:534.493333pt;}
.x32{left:540.413322pt;}
.x38{left:546.333322pt;}
.x14{left:611.653333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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