
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5ce664b57493e03ed1485b4a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_992b5ede4d3ee109389e529e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c75d8bdf1f9e2293aa0fc86d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fc7c9fa56557143ff95d92e8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_371cade684e838813285367f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_5698a46d20c74fbda09f983e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_59de9f49b180b8bfc7bb22ed.woff')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_fed8144b542838855ae74526.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_b2612f00899f37c702573029.woff')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.444600px;}
.ls11{letter-spacing:-0.186600px;}
.ls18{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsa{letter-spacing:-0.084000px;}
.ls13{letter-spacing:-0.063600px;}
.ls1c{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.006840px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls14{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls1b{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls16{letter-spacing:64.646640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.211640px;}
.wsb{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.072800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._b{margin-left:-3.349205px;}
._3{margin-left:-2.223840px;}
._0{margin-left:-1.110000px;}
._2{width:1.298052px;}
._6{width:2.669748px;}
._7{width:3.847800px;}
._c{width:5.350800px;}
._a{width:6.973800px;}
._5{width:8.536800px;}
._4{width:9.559200px;}
._10{width:10.941840px;}
._d{width:12.046800px;}
._e{width:14.450160px;}
._f{width:15.528360px;}
._13{width:16.653240px;}
._9{width:18.577801px;}
._8{width:19.659000px;}
._17{width:20.869540px;}
._14{width:21.973295px;}
._11{width:23.386680px;}
._12{width:24.709320px;}
._15{width:25.900777px;}
._16{width:27.136007px;}
._1{width:28.701720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd7{bottom:114.420000px;}
.y180{bottom:116.130000px;}
.y102{bottom:116.490000px;}
.y134{bottom:120.000000px;}
.y84{bottom:122.340000px;}
.yd6{bottom:132.870000px;}
.y17f{bottom:133.680000px;}
.y133{bottom:137.550000px;}
.y26{bottom:139.620000px;}
.y83{bottom:140.790000px;}
.yd5{bottom:151.320000px;}
.y101{bottom:152.040000px;}
.y159{bottom:154.740000px;}
.y132{bottom:155.100000px;}
.y56{bottom:156.810000px;}
.y25{bottom:157.260000px;}
.y82{bottom:159.240000px;}
.yd4{bottom:168.870000px;}
.y158{bottom:172.290000px;}
.y131{bottom:172.740000px;}
.yad{bottom:175.080000px;}
.y81{bottom:176.790000px;}
.y17e{bottom:177.870000px;}
.y24{bottom:184.080000px;}
.y100{bottom:187.680000px;}
.y55{bottom:188.940000px;}
.y157{bottom:189.840000px;}
.y130{bottom:190.290000px;}
.yac{bottom:192.720000px;}
.y17d{bottom:195.510000px;}
.y80{bottom:204.150000px;}
.yd3{bottom:205.320000px;}
.y54{bottom:206.580000px;}
.y12f{bottom:207.930000px;}
.yab{bottom:210.270000px;}
.y17c{bottom:213.060000px;}
.y156{bottom:216.750000px;}
.yff{bottom:223.230000px;}
.y53{bottom:224.130000px;}
.y12e{bottom:225.480000px;}
.yaa{bottom:227.820000px;}
.yd2{bottom:231.870000px;}
.y23{bottom:232.410000px;}
.y17b{bottom:239.610000px;}
.y7f{bottom:239.700000px;}
.yfe{bottom:240.780000px;}
.y52{bottom:242.580000px;}
.y22{bottom:250.320000px;}
.ya9{bottom:254.460000px;}
.y17a{bottom:257.250000px;}
.y7e{bottom:257.340000px;}
.yfd{bottom:258.420000px;}
.y51{bottom:260.130000px;}
.y12d{bottom:261.030000px;}
.y155{bottom:265.080000px;}
.yd1{bottom:267.510000px;}
.y179{bottom:274.800000px;}
.y7d{bottom:275.790000px;}
.yfc{bottom:275.970000px;}
.y50{bottom:278.580000px;}
.y12c{bottom:278.670000px;}
.yd0{bottom:285.060000px;}
.y21{bottom:287.310000px;}
.ya8{bottom:290.010000px;}
.y154{bottom:291.990000px;}
.y7c{bottom:293.340000px;}
.yfb{bottom:293.610000px;}
.y4f{bottom:296.130000px;}
.y12b{bottom:296.220000px;}
.y178{bottom:301.440000px;}
.y20{bottom:304.950000px;}
.ya7{bottom:307.650000px;}
.yfa{bottom:311.160000px;}
.y7b{bottom:311.790000px;}
.y12a{bottom:313.860000px;}
.ycf{bottom:314.580000px;}
.y177{bottom:318.990000px;}
.y1f{bottom:322.500000px;}
.ya6{bottom:325.200000px;}
.yf9{bottom:328.710000px;}
.y153{bottom:329.250000px;}
.y7a{bottom:329.340000px;}
.y129{bottom:331.410000px;}
.y4e{bottom:332.580000px;}
.yce{bottom:333.030000px;}
.y176{bottom:336.540000px;}
.y79{bottom:347.790000px;}
.y128{bottom:348.960000px;}
.y4d{bottom:350.130000px;}
.ycd{bottom:350.580000px;}
.ya5{bottom:351.750000px;}
.yf8{bottom:355.350000px;}
.y1e{bottom:358.050000px;}
.y175{bottom:363.180000px;}
.y78{bottom:365.340000px;}
.y127{bottom:366.600000px;}
.y4c{bottom:367.770000px;}
.ycc{bottom:369.030000px;}
.y1d{bottom:375.690000px;}
.y152{bottom:377.580000px;}
.y174{bottom:380.730000px;}
.y77{bottom:382.890000px;}
.y126{bottom:384.150000px;}
.ycb{bottom:386.580000px;}
.ya4{bottom:387.390000px;}
.yf7{bottom:390.900000px;}
.y1c{bottom:393.240000px;}
.y4b{bottom:394.320000px;}
.y151{bottom:395.130000px;}
.y76{bottom:401.340000px;}
.y125{bottom:401.790000px;}
.ya3{bottom:404.940000px;}
.y173{bottom:407.370000px;}
.yf6{bottom:408.540000px;}
.y1b{bottom:410.880000px;}
.y150{bottom:412.770000px;}
.y75{bottom:418.890000px;}
.y124{bottom:419.340000px;}
.ya2{bottom:422.580000px;}
.yca{bottom:423.030000px;}
.y172{bottom:424.920000px;}
.yf5{bottom:426.090000px;}
.y4a{bottom:429.870000px;}
.y14f{bottom:430.320000px;}
.ya1{bottom:440.130000px;}
.yf4{bottom:443.640000px;}
.y1a{bottom:446.430000px;}
.y49{bottom:447.510000px;}
.y14e{bottom:447.870000px;}
.yc9{bottom:449.580000px;}
.y171{bottom:451.470000px;}
.y123{bottom:454.890000px;}
.y74{bottom:455.340000px;}
.ya0{bottom:457.680000px;}
.y195{bottom:460.470000px;}
.yf3{bottom:461.280000px;}
.y19{bottom:463.980000px;}
.y48{bottom:465.060000px;}
.y14d{bottom:465.510000px;}
.y170{bottom:469.110000px;}
.y122{bottom:472.560000px;}
.y73{bottom:473.010000px;}
.y9f{bottom:475.350000px;}
.y194{bottom:478.140000px;}
.yf2{bottom:478.860000px;}
.y18{bottom:481.650000px;}
.yc8{bottom:482.190000px;}
.y47{bottom:482.730000px;}
.y121{bottom:490.110000px;}
.y72{bottom:490.560000px;}
.y9e{bottom:492.900000px;}
.y16f{bottom:495.690000px;}
.y17{bottom:499.200000px;}
.yc7{bottom:499.830000px;}
.y46{bottom:500.280000px;}
.y14c{bottom:501.090000px;}
.yf1{bottom:505.410000px;}
.y120{bottom:507.750000px;}
.y71{bottom:508.110000px;}
.y16e{bottom:513.330000px;}
.y16{bottom:516.840000px;}
.yc6{bottom:517.380000px;}
.y14b{bottom:518.730000px;}
.y9d{bottom:519.450000px;}
.y193{bottom:522.330000px;}
.y11f{bottom:525.300000px;}
.y45{bottom:526.830000px;}
.y16d{bottom:530.880000px;}
.y15{bottom:534.390000px;}
.y70{bottom:534.660000px;}
.yc5{bottom:535.830000px;}
.y14a{bottom:536.280000px;}
.yf0{bottom:538.080000px;}
.y192{bottom:539.880000px;}
.y11e{bottom:542.850000px;}
.y9c{bottom:552.030000px;}
.yc4{bottom:553.380000px;}
.y149{bottom:553.830000px;}
.y16c{bottom:557.430000px;}
.y11d{bottom:560.490000px;}
.y44{bottom:562.470000px;}
.y191{bottom:566.430000px;}
.y6f{bottom:567.330000px;}
.y14{bottom:569.940000px;}
.y148{bottom:571.470000px;}
.yc3{bottom:571.830000px;}
.yef{bottom:573.630000px;}
.y16b{bottom:575.070000px;}
.y11c{bottom:578.040000px;}
.y43{bottom:580.020000px;}
.y190{bottom:584.070000px;}
.y13{bottom:587.580000px;}
.y147{bottom:589.020000px;}
.yc2{bottom:590.190000px;}
.yee{bottom:591.180000px;}
.y11b{bottom:595.590000px;}
.y42{bottom:597.660000px;}
.y16a{bottom:601.620000px;}
.y6e{bottom:603.240000px;}
.y12{bottom:605.130000px;}
.y9b{bottom:605.220000px;}
.yc1{bottom:608.640000px;}
.yed{bottom:608.820000px;}
.y18f{bottom:610.620000px;}
.y11a{bottom:613.230000px;}
.y41{bottom:615.210000px;}
.y169{bottom:619.260000px;}
.y11{bottom:622.770000px;}
.y9a{bottom:622.860000px;}
.y146{bottom:624.660000px;}
.yec{bottom:626.370000px;}
.y18e{bottom:628.260000px;}
.y119{bottom:630.780000px;}
.y40{bottom:632.760000px;}
.y10{bottom:640.320000px;}
.y99{bottom:640.410000px;}
.y145{bottom:642.210000px;}
.yeb{bottom:644.010000px;}
.yc0{bottom:645.090000px;}
.y168{bottom:645.810000px;}
.y118{bottom:648.420000px;}
.y3f{bottom:650.400000px;}
.y6d{bottom:651.480000px;}
.y18d{bottom:654.810000px;}
.yf{bottom:657.870000px;}
.y98{bottom:658.050000px;}
.y144{bottom:659.760000px;}
.yea{bottom:661.560000px;}
.y167{bottom:663.360000px;}
.y6c{bottom:669.120000px;}
.ybf{bottom:671.640000px;}
.y18c{bottom:672.360000px;}
.y117{bottom:674.970000px;}
.y97{bottom:675.600000px;}
.y3e{bottom:676.950000px;}
.y143{bottom:677.400000px;}
.y166{bottom:681.000000px;}
.ye{bottom:684.870000px;}
.y6b{bottom:686.670000px;}
.ye9{bottom:688.110000px;}
.y96{bottom:693.150000px;}
.y142{bottom:694.950000px;}
.y18b{bottom:699.000000px;}
.ybe{bottom:704.130000px;}
.y6a{bottom:704.220000px;}
.y165{bottom:707.550000px;}
.y116{bottom:710.520000px;}
.y95{bottom:710.790000px;}
.y3d{bottom:712.590000px;}
.y18a{bottom:716.550000px;}
.ybd{bottom:721.770000px;}
.ye8{bottom:723.750000px;}
.y164{bottom:725.190000px;}
.y115{bottom:728.160000px;}
.y94{bottom:728.340000px;}
.y3c{bottom:730.140000px;}
.y141{bottom:730.590000px;}
.y69{bottom:730.860000px;}
.yd{bottom:731.580000px;}
.y189{bottom:734.190000px;}
.ybc{bottom:740.220000px;}
.ye7{bottom:741.300000px;}
.y163{bottom:742.740000px;}
.y114{bottom:745.710000px;}
.y3b{bottom:747.690000px;}
.y140{bottom:748.140000px;}
.ybb{bottom:757.770000px;}
.ye6{bottom:758.850000px;}
.y188{bottom:760.740000px;}
.y113{bottom:763.350000px;}
.y93{bottom:763.980000px;}
.y3a{bottom:765.330000px;}
.y13f{bottom:765.690000px;}
.y68{bottom:766.410000px;}
.yc{bottom:767.130000px;}
.y162{bottom:769.290000px;}
.yba{bottom:776.220000px;}
.ye5{bottom:776.490000px;}
.y187{bottom:778.290000px;}
.y92{bottom:781.530000px;}
.y39{bottom:782.880000px;}
.y13e{bottom:783.330000px;}
.y67{bottom:784.050000px;}
.y161{bottom:786.930000px;}
.y112{bottom:789.900000px;}
.yb9{bottom:793.860000px;}
.ye4{bottom:794.040000px;}
.y13d{bottom:800.880000px;}
.y66{bottom:801.600000px;}
.yb{bottom:802.950000px;}
.y186{bottom:804.930000px;}
.y91{bottom:808.080000px;}
.y38{bottom:809.790000px;}
.yb8{bottom:811.410000px;}
.ye3{bottom:811.680000px;}
.y160{bottom:813.480000px;}
.y65{bottom:819.150000px;}
.y185{bottom:822.480000px;}
.y111{bottom:825.450000px;}
.y13c{bottom:827.790000px;}
.yb7{bottom:828.960000px;}
.y15f{bottom:831.030000px;}
.y64{bottom:836.790000px;}
.ye2{bottom:838.230000px;}
.ya{bottom:842.730000px;}
.y110{bottom:843.090000px;}
.y90{bottom:843.630000px;}
.yb6{bottom:847.410000px;}
.y184{bottom:849.030000px;}
.y63{bottom:854.340000px;}
.y15e{bottom:857.670000px;}
.y37{bottom:858.030000px;}
.y10f{bottom:860.640000px;}
.y9{bottom:860.730000px;}
.y8f{bottom:861.270000px;}
.yb5{bottom:864.960000px;}
.y62{bottom:871.890000px;}
.ye1{bottom:873.780000px;}
.y8{bottom:874.950000px;}
.y15d{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y13b{bottom:876.030000px;}
.y10e{bottom:878.280000px;}
.y8e{bottom:879.720000px;}
.y61{bottom:889.530000px;}
.ye0{bottom:891.420000px;}
.y15c{bottom:892.860000px;}
.y35{bottom:893.220000px;}
.y13a{bottom:893.670000px;}
.y10d{bottom:895.830000px;}
.y7{bottom:896.730000px;}
.y8d{bottom:897.270000px;}
.yb4{bottom:901.410000px;}
.ydf{bottom:908.970000px;}
.y34{bottom:910.860000px;}
.y139{bottom:911.220000px;}
.y10c{bottom:913.380000px;}
.y6{bottom:914.730000px;}
.y60{bottom:916.080000px;}
.y15b{bottom:919.410000px;}
.y8c{bottom:924.630000px;}
.yde{bottom:926.610000px;}
.yb3{bottom:927.960000px;}
.y33{bottom:928.410000px;}
.y138{bottom:928.860000px;}
.y183{bottom:937.410000px;}
.y10b{bottom:940.020000px;}
.ydd{bottom:944.160000px;}
.y32{bottom:945.960000px;}
.y137{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y5f{bottom:951.630000px;}
.y182{bottom:954.960000px;}
.y8b{bottom:960.180000px;}
.ydc{bottom:961.710000px;}
.yb2{bottom:963.600000px;}
.y136{bottom:963.960000px;}
.y5e{bottom:969.270000px;}
.y181{bottom:972.600000px;}
.y10a{bottom:975.570000px;}
.y8a{bottom:978.720000px;}
.ydb{bottom:979.350000px;}
.yb1{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y5d{bottom:986.820000px;}
.y15a{bottom:990.150000px;}
.y109{bottom:993.210000px;}
.y89{bottom:996.270000px;}
.yb0{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.y5c{bottom:1005.270000px;}
.yda{bottom:1005.900000px;}
.y3{bottom:1010.070000px;}
.y108{bottom:1010.790000px;}
.y2f{bottom:1016.820000px;}
.y5b{bottom:1023.660000px;}
.yaf{bottom:1025.370000px;}
.y107{bottom:1028.340000px;}
.y2e{bottom:1034.370000px;}
.yd9{bottom:1038.510000px;}
.y5a{bottom:1042.110000px;}
.y106{bottom:1045.980000px;}
.y2d{bottom:1051.920000px;}
.y88{bottom:1059.210000px;}
.yae{bottom:1060.920000px;}
.y105{bottom:1063.530000px;}
.y135{bottom:1069.560000px;}
.yd8{bottom:1074.420000px;}
.y87{bottom:1076.850000px;}
.y59{bottom:1078.560000px;}
.y104{bottom:1081.170000px;}
.y2c{bottom:1087.560000px;}
.y86{bottom:1095.300000px;}
.y58{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y103{bottom:1107.720000px;}
.y85{bottom:1112.850000px;}
.y57{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:59.973223px;}
.hc{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x6{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.395200pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsa{letter-spacing:-0.074667pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls1c{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.006080pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls14{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls16{letter-spacing:57.463680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.743680pt;}
.wsb{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.620267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._b{margin-left:-2.977071pt;}
._3{margin-left:-1.976746pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.153824pt;}
._6{width:2.373109pt;}
._7{width:3.420267pt;}
._c{width:4.756267pt;}
._a{width:6.198933pt;}
._5{width:7.588266pt;}
._4{width:8.497067pt;}
._10{width:9.726080pt;}
._d{width:10.708266pt;}
._e{width:12.844587pt;}
._f{width:13.802987pt;}
._13{width:14.802880pt;}
._9{width:16.513601pt;}
._8{width:17.474666pt;}
._17{width:18.550703pt;}
._14{width:19.531818pt;}
._11{width:20.788160pt;}
._12{width:21.963840pt;}
._15{width:23.022913pt;}
._16{width:24.120895pt;}
._1{width:25.512640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd7{bottom:101.706667pt;}
.y180{bottom:103.226667pt;}
.y102{bottom:103.546667pt;}
.y134{bottom:106.666667pt;}
.y84{bottom:108.746667pt;}
.yd6{bottom:118.106667pt;}
.y17f{bottom:118.826667pt;}
.y133{bottom:122.266667pt;}
.y26{bottom:124.106667pt;}
.y83{bottom:125.146667pt;}
.yd5{bottom:134.506667pt;}
.y101{bottom:135.146667pt;}
.y159{bottom:137.546667pt;}
.y132{bottom:137.866667pt;}
.y56{bottom:139.386667pt;}
.y25{bottom:139.786667pt;}
.y82{bottom:141.546667pt;}
.yd4{bottom:150.106667pt;}
.y158{bottom:153.146667pt;}
.y131{bottom:153.546667pt;}
.yad{bottom:155.626667pt;}
.y81{bottom:157.146667pt;}
.y17e{bottom:158.106667pt;}
.y24{bottom:163.626667pt;}
.y100{bottom:166.826667pt;}
.y55{bottom:167.946667pt;}
.y157{bottom:168.746667pt;}
.y130{bottom:169.146667pt;}
.yac{bottom:171.306667pt;}
.y17d{bottom:173.786667pt;}
.y80{bottom:181.466667pt;}
.yd3{bottom:182.506667pt;}
.y54{bottom:183.626667pt;}
.y12f{bottom:184.826667pt;}
.yab{bottom:186.906667pt;}
.y17c{bottom:189.386667pt;}
.y156{bottom:192.666667pt;}
.yff{bottom:198.426667pt;}
.y53{bottom:199.226667pt;}
.y12e{bottom:200.426667pt;}
.yaa{bottom:202.506667pt;}
.yd2{bottom:206.106667pt;}
.y23{bottom:206.586667pt;}
.y17b{bottom:212.986667pt;}
.y7f{bottom:213.066667pt;}
.yfe{bottom:214.026667pt;}
.y52{bottom:215.626667pt;}
.y22{bottom:222.506667pt;}
.ya9{bottom:226.186667pt;}
.y17a{bottom:228.666667pt;}
.y7e{bottom:228.746667pt;}
.yfd{bottom:229.706667pt;}
.y51{bottom:231.226667pt;}
.y12d{bottom:232.026667pt;}
.y155{bottom:235.626667pt;}
.yd1{bottom:237.786667pt;}
.y179{bottom:244.266667pt;}
.y7d{bottom:245.146667pt;}
.yfc{bottom:245.306667pt;}
.y50{bottom:247.626667pt;}
.y12c{bottom:247.706667pt;}
.yd0{bottom:253.386667pt;}
.y21{bottom:255.386667pt;}
.ya8{bottom:257.786667pt;}
.y154{bottom:259.546667pt;}
.y7c{bottom:260.746667pt;}
.yfb{bottom:260.986667pt;}
.y4f{bottom:263.226667pt;}
.y12b{bottom:263.306667pt;}
.y178{bottom:267.946667pt;}
.y20{bottom:271.066667pt;}
.ya7{bottom:273.466667pt;}
.yfa{bottom:276.586667pt;}
.y7b{bottom:277.146667pt;}
.y12a{bottom:278.986667pt;}
.ycf{bottom:279.626667pt;}
.y177{bottom:283.546667pt;}
.y1f{bottom:286.666667pt;}
.ya6{bottom:289.066667pt;}
.yf9{bottom:292.186667pt;}
.y153{bottom:292.666667pt;}
.y7a{bottom:292.746667pt;}
.y129{bottom:294.586667pt;}
.y4e{bottom:295.626667pt;}
.yce{bottom:296.026667pt;}
.y176{bottom:299.146667pt;}
.y79{bottom:309.146667pt;}
.y128{bottom:310.186667pt;}
.y4d{bottom:311.226667pt;}
.ycd{bottom:311.626667pt;}
.ya5{bottom:312.666667pt;}
.yf8{bottom:315.866667pt;}
.y1e{bottom:318.266667pt;}
.y175{bottom:322.826667pt;}
.y78{bottom:324.746667pt;}
.y127{bottom:325.866667pt;}
.y4c{bottom:326.906667pt;}
.ycc{bottom:328.026667pt;}
.y1d{bottom:333.946667pt;}
.y152{bottom:335.626667pt;}
.y174{bottom:338.426667pt;}
.y77{bottom:340.346667pt;}
.y126{bottom:341.466667pt;}
.ycb{bottom:343.626667pt;}
.ya4{bottom:344.346667pt;}
.yf7{bottom:347.466667pt;}
.y1c{bottom:349.546667pt;}
.y4b{bottom:350.506667pt;}
.y151{bottom:351.226667pt;}
.y76{bottom:356.746667pt;}
.y125{bottom:357.146667pt;}
.ya3{bottom:359.946667pt;}
.y173{bottom:362.106667pt;}
.yf6{bottom:363.146667pt;}
.y1b{bottom:365.226667pt;}
.y150{bottom:366.906667pt;}
.y75{bottom:372.346667pt;}
.y124{bottom:372.746667pt;}
.ya2{bottom:375.626667pt;}
.yca{bottom:376.026667pt;}
.y172{bottom:377.706667pt;}
.yf5{bottom:378.746667pt;}
.y4a{bottom:382.106667pt;}
.y14f{bottom:382.506667pt;}
.ya1{bottom:391.226667pt;}
.yf4{bottom:394.346667pt;}
.y1a{bottom:396.826667pt;}
.y49{bottom:397.786667pt;}
.y14e{bottom:398.106667pt;}
.yc9{bottom:399.626667pt;}
.y171{bottom:401.306667pt;}
.y123{bottom:404.346667pt;}
.y74{bottom:404.746667pt;}
.ya0{bottom:406.826667pt;}
.y195{bottom:409.306667pt;}
.yf3{bottom:410.026667pt;}
.y19{bottom:412.426667pt;}
.y48{bottom:413.386667pt;}
.y14d{bottom:413.786667pt;}
.y170{bottom:416.986667pt;}
.y122{bottom:420.053333pt;}
.y73{bottom:420.453333pt;}
.y9f{bottom:422.533333pt;}
.y194{bottom:425.013333pt;}
.yf2{bottom:425.653333pt;}
.y18{bottom:428.133333pt;}
.yc8{bottom:428.613333pt;}
.y47{bottom:429.093333pt;}
.y121{bottom:435.653333pt;}
.y72{bottom:436.053333pt;}
.y9e{bottom:438.133333pt;}
.y16f{bottom:440.613333pt;}
.y17{bottom:443.733333pt;}
.yc7{bottom:444.293333pt;}
.y46{bottom:444.693333pt;}
.y14c{bottom:445.413333pt;}
.yf1{bottom:449.253333pt;}
.y120{bottom:451.333333pt;}
.y71{bottom:451.653333pt;}
.y16e{bottom:456.293333pt;}
.y16{bottom:459.413333pt;}
.yc6{bottom:459.893333pt;}
.y14b{bottom:461.093333pt;}
.y9d{bottom:461.733333pt;}
.y193{bottom:464.293333pt;}
.y11f{bottom:466.933333pt;}
.y45{bottom:468.293333pt;}
.y16d{bottom:471.893333pt;}
.y15{bottom:475.013333pt;}
.y70{bottom:475.253333pt;}
.yc5{bottom:476.293333pt;}
.y14a{bottom:476.693333pt;}
.yf0{bottom:478.293333pt;}
.y192{bottom:479.893333pt;}
.y11e{bottom:482.533333pt;}
.y9c{bottom:490.693333pt;}
.yc4{bottom:491.893333pt;}
.y149{bottom:492.293333pt;}
.y16c{bottom:495.493333pt;}
.y11d{bottom:498.213333pt;}
.y44{bottom:499.973333pt;}
.y191{bottom:503.493333pt;}
.y6f{bottom:504.293333pt;}
.y14{bottom:506.613333pt;}
.y148{bottom:507.973333pt;}
.yc3{bottom:508.293333pt;}
.yef{bottom:509.893333pt;}
.y16b{bottom:511.173333pt;}
.y11c{bottom:513.813333pt;}
.y43{bottom:515.573333pt;}
.y190{bottom:519.173333pt;}
.y13{bottom:522.293333pt;}
.y147{bottom:523.573333pt;}
.yc2{bottom:524.613333pt;}
.yee{bottom:525.493333pt;}
.y11b{bottom:529.413333pt;}
.y42{bottom:531.253333pt;}
.y16a{bottom:534.773333pt;}
.y6e{bottom:536.213333pt;}
.y12{bottom:537.893333pt;}
.y9b{bottom:537.973333pt;}
.yc1{bottom:541.013333pt;}
.yed{bottom:541.173333pt;}
.y18f{bottom:542.773333pt;}
.y11a{bottom:545.093333pt;}
.y41{bottom:546.853333pt;}
.y169{bottom:550.453333pt;}
.y11{bottom:553.573333pt;}
.y9a{bottom:553.653333pt;}
.y146{bottom:555.253333pt;}
.yec{bottom:556.773333pt;}
.y18e{bottom:558.453333pt;}
.y119{bottom:560.693333pt;}
.y40{bottom:562.453333pt;}
.y10{bottom:569.173333pt;}
.y99{bottom:569.253333pt;}
.y145{bottom:570.853333pt;}
.yeb{bottom:572.453333pt;}
.yc0{bottom:573.413333pt;}
.y168{bottom:574.053333pt;}
.y118{bottom:576.373333pt;}
.y3f{bottom:578.133333pt;}
.y6d{bottom:579.093333pt;}
.y18d{bottom:582.053333pt;}
.yf{bottom:584.773333pt;}
.y98{bottom:584.933333pt;}
.y144{bottom:586.453333pt;}
.yea{bottom:588.053333pt;}
.y167{bottom:589.653333pt;}
.y6c{bottom:594.773333pt;}
.ybf{bottom:597.013333pt;}
.y18c{bottom:597.653333pt;}
.y117{bottom:599.973333pt;}
.y97{bottom:600.533333pt;}
.y3e{bottom:601.733333pt;}
.y143{bottom:602.133333pt;}
.y166{bottom:605.333333pt;}
.ye{bottom:608.773333pt;}
.y6b{bottom:610.373333pt;}
.ye9{bottom:611.653333pt;}
.y96{bottom:616.133333pt;}
.y142{bottom:617.733333pt;}
.y18b{bottom:621.333333pt;}
.ybe{bottom:625.893333pt;}
.y6a{bottom:625.973333pt;}
.y165{bottom:628.933333pt;}
.y116{bottom:631.573333pt;}
.y95{bottom:631.813333pt;}
.y3d{bottom:633.413333pt;}
.y18a{bottom:636.933333pt;}
.ybd{bottom:641.573333pt;}
.ye8{bottom:643.333333pt;}
.y164{bottom:644.613333pt;}
.y115{bottom:647.253333pt;}
.y94{bottom:647.413333pt;}
.y3c{bottom:649.013333pt;}
.y141{bottom:649.413333pt;}
.y69{bottom:649.653333pt;}
.yd{bottom:650.293333pt;}
.y189{bottom:652.613333pt;}
.ybc{bottom:657.973333pt;}
.ye7{bottom:658.933333pt;}
.y163{bottom:660.213333pt;}
.y114{bottom:662.853333pt;}
.y3b{bottom:664.613333pt;}
.y140{bottom:665.013333pt;}
.ybb{bottom:673.573333pt;}
.ye6{bottom:674.533333pt;}
.y188{bottom:676.213333pt;}
.y113{bottom:678.533333pt;}
.y93{bottom:679.093333pt;}
.y3a{bottom:680.293333pt;}
.y13f{bottom:680.613333pt;}
.y68{bottom:681.253333pt;}
.yc{bottom:681.893333pt;}
.y162{bottom:683.813333pt;}
.yba{bottom:689.973333pt;}
.ye5{bottom:690.213333pt;}
.y187{bottom:691.813333pt;}
.y92{bottom:694.693333pt;}
.y39{bottom:695.893333pt;}
.y13e{bottom:696.293333pt;}
.y67{bottom:696.933333pt;}
.y161{bottom:699.493333pt;}
.y112{bottom:702.133333pt;}
.yb9{bottom:705.653333pt;}
.ye4{bottom:705.813333pt;}
.y13d{bottom:711.893333pt;}
.y66{bottom:712.533333pt;}
.yb{bottom:713.733333pt;}
.y186{bottom:715.493333pt;}
.y91{bottom:718.293333pt;}
.y38{bottom:719.813333pt;}
.yb8{bottom:721.253333pt;}
.ye3{bottom:721.493333pt;}
.y160{bottom:723.093333pt;}
.y65{bottom:728.133333pt;}
.y185{bottom:731.093333pt;}
.y111{bottom:733.733333pt;}
.y13c{bottom:735.813333pt;}
.yb7{bottom:736.853333pt;}
.y15f{bottom:738.693333pt;}
.y64{bottom:743.813333pt;}
.ye2{bottom:745.093333pt;}
.ya{bottom:749.093333pt;}
.y110{bottom:749.413333pt;}
.y90{bottom:749.893333pt;}
.yb6{bottom:753.253333pt;}
.y184{bottom:754.693333pt;}
.y63{bottom:759.413333pt;}
.y15e{bottom:762.373333pt;}
.y37{bottom:762.693333pt;}
.y10f{bottom:765.013333pt;}
.y9{bottom:765.093333pt;}
.y8f{bottom:765.573333pt;}
.yb5{bottom:768.853333pt;}
.y62{bottom:775.013333pt;}
.ye1{bottom:776.693333pt;}
.y8{bottom:777.733333pt;}
.y15d{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y13b{bottom:778.693333pt;}
.y10e{bottom:780.693333pt;}
.y8e{bottom:781.973333pt;}
.y61{bottom:790.693333pt;}
.ye0{bottom:792.373333pt;}
.y15c{bottom:793.653333pt;}
.y35{bottom:793.973333pt;}
.y13a{bottom:794.373333pt;}
.y10d{bottom:796.293333pt;}
.y7{bottom:797.093333pt;}
.y8d{bottom:797.573333pt;}
.yb4{bottom:801.253333pt;}
.ydf{bottom:807.973333pt;}
.y34{bottom:809.653333pt;}
.y139{bottom:809.973333pt;}
.y10c{bottom:811.893333pt;}
.y6{bottom:813.093333pt;}
.y60{bottom:814.293333pt;}
.y15b{bottom:817.253333pt;}
.y8c{bottom:821.893333pt;}
.yde{bottom:823.653333pt;}
.yb3{bottom:824.853333pt;}
.y33{bottom:825.253333pt;}
.y138{bottom:825.653333pt;}
.y183{bottom:833.253333pt;}
.y10b{bottom:835.573333pt;}
.ydd{bottom:839.253333pt;}
.y32{bottom:840.853333pt;}
.y137{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y5f{bottom:845.893333pt;}
.y182{bottom:848.853333pt;}
.y8b{bottom:853.493333pt;}
.ydc{bottom:854.853333pt;}
.yb2{bottom:856.533333pt;}
.y136{bottom:856.853333pt;}
.y5e{bottom:861.573333pt;}
.y181{bottom:864.533333pt;}
.y10a{bottom:867.173333pt;}
.y8a{bottom:869.973333pt;}
.ydb{bottom:870.533333pt;}
.yb1{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y5d{bottom:877.173333pt;}
.y15a{bottom:880.133333pt;}
.y109{bottom:882.853333pt;}
.y89{bottom:885.573333pt;}
.yb0{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.y5c{bottom:893.573333pt;}
.yda{bottom:894.133333pt;}
.y3{bottom:897.840000pt;}
.y108{bottom:898.480000pt;}
.y2f{bottom:903.840000pt;}
.y5b{bottom:909.920000pt;}
.yaf{bottom:911.440000pt;}
.y107{bottom:914.080000pt;}
.y2e{bottom:919.440000pt;}
.yd9{bottom:923.120000pt;}
.y5a{bottom:926.320000pt;}
.y106{bottom:929.760000pt;}
.y2d{bottom:935.040000pt;}
.y88{bottom:941.520000pt;}
.yae{bottom:943.040000pt;}
.y105{bottom:945.360000pt;}
.y135{bottom:950.720000pt;}
.yd8{bottom:955.040000pt;}
.y87{bottom:957.200000pt;}
.y59{bottom:958.720000pt;}
.y104{bottom:961.040000pt;}
.y2c{bottom:966.720000pt;}
.y86{bottom:973.600000pt;}
.y58{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y103{bottom:984.640000pt;}
.y85{bottom:989.200000pt;}
.y57{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:53.309531pt;}
.hc{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x6{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x3{left:711.413322pt;}
}




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