
    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_97652985e1da4bd1953e3643.woff')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_59c9a03d435b9bc102cb3622.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_54eb463622fe3fd50eca81f2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_90e0e4056feb925d7d99e0ef.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eef742fb2ce3594bbd675c70.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bc18ad2cf6292a7f64ce65a6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b89db835af334b9e4594f20.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d1fbb52fb2dad829f6ebd7c0.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_79c12532ed835f62480ea758.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_eda2167bfa6a701758678577.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_65896de36b37a0b562ae8903.woff')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls32{letter-spacing:-0.444600px;}
.ls25{letter-spacing:-0.426000px;}
.ls1e{letter-spacing:-0.318000px;}
.ls23{letter-spacing:-0.299400px;}
.lsf{letter-spacing:-0.294600px;}
.ls28{letter-spacing:-0.285600px;}
.ls30{letter-spacing:-0.266400px;}
.ls1b{letter-spacing:-0.186600px;}
.lsc{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.121200px;}
.ls2e{letter-spacing:-0.096600px;}
.lsb{letter-spacing:-0.090000px;}
.ls12{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.084000px;}
.ls10{letter-spacing:-0.065400px;}
.ls24{letter-spacing:-0.063600px;}
.ls1f{letter-spacing:-0.038880px;}
.ls31{letter-spacing:-0.037800px;}
.lsa{letter-spacing:-0.036000px;}
.ls20{letter-spacing:-0.027360px;}
.ls2d{letter-spacing:-0.011160px;}
.ls2f{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005400px;}
.ls1d{letter-spacing:0.023040px;}
.ls1c{letter-spacing:0.041760px;}
.ls17{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls34{letter-spacing:0.053280px;}
.ls2a{letter-spacing:0.056880px;}
.ls7{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.064800px;}
.lse{letter-spacing:0.065400px;}
.ls4{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.074160px;}
.ls27{letter-spacing:0.074400px;}
.ls6{letter-spacing:0.086400px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.115800px;}
.ls19{letter-spacing:0.116400px;}
.ls9{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.173400px;}
.lsd{letter-spacing:0.174600px;}
.ls29{letter-spacing:0.181200px;}
.ls26{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.434400px;}
.ls2c{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls2b{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;}
}
.ws9{word-spacing:-14.493600px;}
.ws5{word-spacing:-14.428200px;}
.wsd{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.399800px;}
.ws19{word-spacing:-13.342800px;}
.ws13{word-spacing:-13.342200px;}
.ws17{word-spacing:-13.300800px;}
.ws18{word-spacing:-13.283280px;}
.ws1e{word-spacing:-13.279680px;}
.wse{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.268160px;}
.ws7{word-spacing:-13.226400px;}
.ws1c{word-spacing:-13.218840px;}
.ws1a{word-spacing:-13.215240px;}
.ws1d{word-spacing:-13.188600px;}
.ws11{word-spacing:-13.187520px;}
.ws15{word-spacing:-13.162800px;}
.ws1b{word-spacing:-13.129800px;}
.wsc{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.908400px;}
.ws16{word-spacing:-12.800400px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.844000px;}
.ws2{word-spacing:-9.810000px;}
.ws3{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.331800px;}
.ws14{word-spacing:-8.660400px;}
.ws6{word-spacing:-8.553600px;}
.ws12{word-spacing:-8.526240px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._d{margin-left:-3.772272px;}
._1{margin-left:-2.600448px;}
._0{margin-left:-1.104000px;}
._2{width:1.262256px;}
._6{width:2.464800px;}
._7{width:3.609148px;}
._8{width:4.749600px;}
._3{width:5.892000px;}
._9{width:7.103878px;}
._4{width:8.356800px;}
._5{width:9.378600px;}
._a{width:11.196000px;}
._b{width:12.218184px;}
._c{width:14.957640px;}
._e{width:15.991920px;}
._11{width:18.516960px;}
._12{width:19.779480px;}
._f{width:31.683240px;}
._10{width:33.066000px;}
.fc2{color:transparent;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y61{bottom:7.830000px;}
.y63{bottom:7.920000px;}
.y85{bottom:26.580000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya5{bottom:116.040000px;}
.yfd{bottom:116.310000px;}
.y5a{bottom:119.100000px;}
.y12c{bottom:119.820000px;}
.y81{bottom:122.430000px;}
.ya4{bottom:133.680000px;}
.yfc{bottom:133.860000px;}
.y80{bottom:136.470000px;}
.y59{bottom:136.650000px;}
.yc2{bottom:137.370000px;}
.y28{bottom:137.820000px;}
.y12b{bottom:138.270000px;}
.y7f{bottom:148.620000px;}
.ya3{bottom:151.230000px;}
.yfb{bottom:151.410000px;}
.y159{bottom:153.840000px;}
.y58{bottom:154.200000px;}
.y27{bottom:155.370000px;}
.y12a{bottom:156.720000px;}
.ya2{bottom:168.870000px;}
.y158{bottom:171.390000px;}
.yc1{bottom:172.920000px;}
.y26{bottom:173.010000px;}
.y7e{bottom:175.980000px;}
.yfa{bottom:178.050000px;}
.y57{bottom:189.840000px;}
.y25{bottom:190.560000px;}
.y129{bottom:193.170000px;}
.y157{bottom:198.030000px;}
.yda{bottom:200.640000px;}
.ya1{bottom:201.810000px;}
.y7d{bottom:203.340000px;}
.y56{bottom:207.390000px;}
.y24{bottom:208.110000px;}
.yc0{bottom:208.470000px;}
.yf9{bottom:213.960000px;}
.y156{bottom:215.580000px;}
.yd9{bottom:218.280000px;}
.y55{bottom:225.030000px;}
.y23{bottom:225.750000px;}
.ybf{bottom:226.110000px;}
.y128{bottom:228.720000px;}
.ya0{bottom:229.170000px;}
.y7c{bottom:230.610000px;}
.yd8{bottom:235.830000px;}
.y155{bottom:242.130000px;}
.y54{bottom:242.580000px;}
.y127{bottom:246.270000px;}
.y22{bottom:252.660000px;}
.yd7{bottom:253.380000px;}
.y9f{bottom:256.440000px;}
.y7b{bottom:257.970000px;}
.y154{bottom:259.770000px;}
.y53{bottom:260.130000px;}
.ybe{bottom:261.660000px;}
.yf8{bottom:262.200000px;}
.y126{bottom:263.910000px;}
.yf7{bottom:279.750000px;}
.yd6{bottom:280.020000px;}
.y125{bottom:281.460000px;}
.y9e{bottom:283.800000px;}
.y7a{bottom:285.330000px;}
.y153{bottom:286.320000px;}
.y52{bottom:286.770000px;}
.ybd{bottom:297.300000px;}
.yf6{bottom:297.390000px;}
.y124{bottom:299.100000px;}
.y21{bottom:301.260000px;}
.y152{bottom:303.870000px;}
.y9d{bottom:311.160000px;}
.y79{bottom:312.690000px;}
.yf5{bottom:314.940000px;}
.ye7{bottom:315.210000px;}
.yd5{bottom:315.570000px;}
.y123{bottom:316.650000px;}
.y51{bottom:322.320000px;}
.ybc{bottom:323.850000px;}
.y151{bottom:330.510000px;}
.ye6{bottom:332.850000px;}
.y122{bottom:334.200000px;}
.y20{bottom:338.250000px;}
.y9c{bottom:338.520000px;}
.y50{bottom:339.870000px;}
.y78{bottom:339.960000px;}
.yf4{bottom:341.580000px;}
.y150{bottom:348.060000px;}
.yd4{bottom:349.140000px;}
.ye5{bottom:350.400000px;}
.y1f{bottom:355.800000px;}
.y4f{bottom:357.510000px;}
.ybb{bottom:359.400000px;}
.y121{bottom:361.110000px;}
.y14f{bottom:365.700000px;}
.y77{bottom:367.320000px;}
.ye4{bottom:368.040000px;}
.y1e{bottom:373.440000px;}
.y4e{bottom:375.060000px;}
.yf3{bottom:377.130000px;}
.yba{bottom:386.040000px;}
.y9b{bottom:387.210000px;}
.y1d{bottom:390.990000px;}
.y14e{bottom:392.250000px;}
.y4d{bottom:392.700000px;}
.ye3{bottom:394.590000px;}
.y76{bottom:394.680000px;}
.y1c{bottom:408.630000px;}
.y120{bottom:409.440000px;}
.y14d{bottom:409.800000px;}
.y4c{bottom:419.250000px;}
.yf2{bottom:421.320000px;}
.yb9{bottom:421.590000px;}
.y9a{bottom:422.760000px;}
.y1b{bottom:426.180000px;}
.y11f{bottom:426.990000px;}
.y14c{bottom:427.440000px;}
.ye2{bottom:430.140000px;}
.y75{bottom:443.370000px;}
.y1a{bottom:443.730000px;}
.y11e{bottom:444.540000px;}
.y99{bottom:446.700000px;}
.y14b{bottom:453.990000px;}
.y4b{bottom:454.800000px;}
.yf1{bottom:456.870000px;}
.yb8{bottom:457.230000px;}
.y19{bottom:461.370000px;}
.y11d{bottom:462.180000px;}
.ye1{bottom:462.360000px;}
.y14a{bottom:471.660000px;}
.y4a{bottom:472.470000px;}
.y98{bottom:474.090000px;}
.y74{bottom:478.950000px;}
.y11c{bottom:479.760000px;}
.yb7{bottom:483.810000px;}
.yf0{bottom:489.120000px;}
.y49{bottom:490.020000px;}
.y18{bottom:496.950000px;}
.y11b{bottom:497.400000px;}
.y149{bottom:498.210000px;}
.y97{bottom:501.450000px;}
.y73{bottom:502.980000px;}
.y48{bottom:507.660000px;}
.y17{bottom:514.590000px;}
.y11a{bottom:514.950000px;}
.y148{bottom:515.760000px;}
.yb6{bottom:519.360000px;}
.y47{bottom:525.210000px;}
.y96{bottom:528.810000px;}
.y72{bottom:530.250000px;}
.y16{bottom:532.140000px;}
.y119{bottom:532.500000px;}
.y147{bottom:542.400000px;}
.y15{bottom:549.690000px;}
.y118{bottom:550.140000px;}
.y46{bottom:551.760000px;}
.yb5{bottom:555.000000px;}
.y95{bottom:556.080000px;}
.y71{bottom:557.610000px;}
.y14{bottom:567.330000px;}
.y117{bottom:567.690000px;}
.y146{bottom:568.950000px;}
.yb4{bottom:572.550000px;}
.y94{bottom:583.440000px;}
.y13{bottom:584.880000px;}
.y70{bottom:584.970000px;}
.y116{bottom:585.330000px;}
.y45{bottom:587.400000px;}
.y145{bottom:595.590000px;}
.yb3{bottom:599.190000px;}
.y115{bottom:602.880000px;}
.y44{bottom:604.950000px;}
.y16b{bottom:610.620000px;}
.y93{bottom:610.800000px;}
.y12{bottom:611.790000px;}
.y6f{bottom:612.240000px;}
.y144{bottom:613.140000px;}
.y114{bottom:620.430000px;}
.y16a{bottom:628.260000px;}
.y43{bottom:631.590000px;}
.yb2{bottom:634.740000px;}
.y113{bottom:638.070000px;}
.y92{bottom:638.160000px;}
.y6e{bottom:639.600000px;}
.y143{bottom:639.690000px;}
.y169{bottom:645.810000px;}
.y112{bottom:655.620000px;}
.y142{bottom:657.330000px;}
.y11{bottom:660.030000px;}
.y91{bottom:665.430000px;}
.y6d{bottom:666.960000px;}
.y42{bottom:667.500000px;}
.yd3{bottom:667.590000px;}
.yb1{bottom:670.290000px;}
.y168{bottom:672.360000px;}
.y111{bottom:673.260000px;}
.y141{bottom:674.880000px;}
.yd2{bottom:685.140000px;}
.yb0{bottom:687.930000px;}
.y167{bottom:690.000000px;}
.y110{bottom:690.810000px;}
.y90{bottom:692.790000px;}
.y6c{bottom:694.320000px;}
.y10{bottom:695.850000px;}
.y140{bottom:701.520000px;}
.yd1{bottom:702.690000px;}
.y10f{bottom:708.360000px;}
.y41{bottom:715.650000px;}
.y166{bottom:716.550000px;}
.y13f{bottom:719.070000px;}
.y8f{bottom:720.150000px;}
.yd0{bottom:720.330000px;}
.y6b{bottom:721.590000px;}
.yaf{bottom:723.480000px;}
.y10e{bottom:726.000000px;}
.yf{bottom:731.850000px;}
.y40{bottom:734.100000px;}
.y165{bottom:734.190000px;}
.y13e{bottom:736.620000px;}
.ycf{bottom:737.880000px;}
.ye0{bottom:738.060000px;}
.y10d{bottom:743.550000px;}
.y8e{bottom:747.420000px;}
.y6a{bottom:748.950000px;}
.yef{bottom:751.290000px;}
.ydf{bottom:755.610000px;}
.yae{bottom:759.030000px;}
.y164{bottom:760.740000px;}
.y10c{bottom:761.190000px;}
.y13d{bottom:763.260000px;}
.yce{bottom:764.520000px;}
.yee{bottom:768.840000px;}
.y3f{bottom:770.550000px;}
.ye{bottom:771.630000px;}
.yde{bottom:773.250000px;}
.y8d{bottom:774.780000px;}
.y69{bottom:776.310000px;}
.y163{bottom:778.290000px;}
.y10b{bottom:778.740000px;}
.yd{bottom:785.850000px;}
.yed{bottom:786.390000px;}
.y3e{bottom:788.190000px;}
.y13c{bottom:789.810000px;}
.yad{bottom:794.670000px;}
.y162{bottom:795.930000px;}
.y10a{bottom:796.290000px;}
.ydd{bottom:799.800000px;}
.ycd{bottom:800.070000px;}
.y8c{bottom:802.140000px;}
.y68{bottom:803.670000px;}
.yec{bottom:804.030000px;}
.y3d{bottom:805.740000px;}
.y13b{bottom:807.450000px;}
.yc{bottom:807.630000px;}
.y109{bottom:813.930000px;}
.ycc{bottom:817.620000px;}
.yeb{bottom:821.580000px;}
.yb{bottom:821.850000px;}
.y161{bottom:822.480000px;}
.y13a{bottom:825.000000px;}
.y8b{bottom:829.500000px;}
.yac{bottom:830.220000px;}
.y67{bottom:830.940000px;}
.y108{bottom:831.480000px;}
.y160{bottom:840.030000px;}
.y3c{bottom:841.290000px;}
.ya{bottom:843.630000px;}
.ydc{bottom:844.170000px;}
.ycb{bottom:844.260000px;}
.yea{bottom:848.220000px;}
.y107{bottom:849.030000px;}
.y139{bottom:851.550000px;}
.y8a{bottom:856.770000px;}
.y9{bottom:857.850000px;}
.y66{bottom:858.300000px;}
.y3b{bottom:858.930000px;}
.yab{bottom:865.860000px;}
.y106{bottom:866.670000px;}
.ydb{bottom:868.740000px;}
.y138{bottom:869.190000px;}
.y3a{bottom:876.480000px;}
.y8{bottom:879.630000px;}
.yca{bottom:879.810000px;}
.ye9{bottom:883.770000px;}
.y89{bottom:884.130000px;}
.y15f{bottom:884.220000px;}
.y65{bottom:885.660000px;}
.y39{bottom:894.030000px;}
.y137{bottom:895.740000px;}
.yc9{bottom:897.450000px;}
.y7{bottom:897.630000px;}
.yaa{bottom:901.410000px;}
.y15e{bottom:901.860000px;}
.y105{bottom:902.220000px;}
.y88{bottom:911.490000px;}
.y38{bottom:911.670000px;}
.y64{bottom:912.930000px;}
.ye8{bottom:915.990000px;}
.y104{bottom:919.860000px;}
.y136{bottom:922.380000px;}
.yc8{bottom:924.000000px;}
.ya9{bottom:927.960000px;}
.y15d{bottom:928.410000px;}
.y37{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y103{bottom:937.410000px;}
.y87{bottom:938.850000px;}
.y135{bottom:939.930000px;}
.y62{bottom:940.290000px;}
.y15c{bottom:945.960000px;}
.y36{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y102{bottom:954.960000px;}
.yc7{bottom:959.910000px;}
.ya8{bottom:963.600000px;}
.y35{bottom:964.410000px;}
.y86{bottom:966.120000px;}
.y134{bottom:966.480000px;}
.y60{bottom:967.650000px;}
.y101{bottom:972.600000px;}
.ya7{bottom:981.150000px;}
.y34{bottom:981.960000px;}
.y133{bottom:984.120000px;}
.y4{bottom:987.630000px;}
.y100{bottom:990.150000px;}
.y84{bottom:993.480000px;}
.ya6{bottom:998.790000px;}
.y33{bottom:999.600000px;}
.yff{bottom:1007.790000px;}
.yc6{bottom:1008.150000px;}
.y132{bottom:1010.700000px;}
.y3{bottom:1012.320000px;}
.y5f{bottom:1016.370000px;}
.y15b{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.y83{bottom:1020.870000px;}
.yc5{bottom:1025.820000px;}
.y131{bottom:1028.250000px;}
.yfe{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y5e{bottom:1042.920000px;}
.yc4{bottom:1043.370000px;}
.y15a{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y130{bottom:1055.160000px;}
.yc3{bottom:1060.920000px;}
.y82{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y5d{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y5c{bottom:1096.110000px;}
.y12f{bottom:1103.400000px;}
.y2d{bottom:1105.110000px;}
.y5b{bottom:1113.750000px;}
.y12e{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.y12d{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.he{height:26.550000px;}
.h11{height:26.580000px;}
.hf{height:26.640000px;}
.h12{height:26.670000px;}
.h2{height:31.901133px;}
.h8{height:37.191445px;}
.h3{height:39.155273px;}
.h10{height:41.661211px;}
.h6{height:44.853223px;}
.h7{height:52.311445px;}
.hd{height:52.781133px;}
.h5{height:57.323320px;}
.h9{height:57.838008px;}
.h13{height:59.973223px;}
.ha{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h15{height:74.004654px;}
.h14{height:74.953125px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:60.750000px;}
.w10{width:69.150000px;}
.w7{width:73.800000px;}
.w16{width:76.680000px;}
.w14{width:76.770000px;}
.w15{width:76.800000px;}
.w5{width:77.130000px;}
.w6{width:77.160000px;}
.w8{width:80.460000px;}
.w4{width:83.700000px;}
.wa{width:92.880000px;}
.wb{width:93.420000px;}
.wd{width:98.100000px;}
.wc{width:98.220000px;}
.w3{width:123.750000px;}
.wf{width:126.720000px;}
.w9{width:155.820000px;}
.w13{width:244.830000px;}
.we{width:261.750000px;}
.w12{width:389.280000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:3.870000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:83.069987px;}
.x4{left:95.039987px;}
.x2f{left:111.239987px;}
.x2e{left:122.039987px;}
.xc{left:128.790000px;}
.x1a{left:130.500000px;}
.x22{left:149.579987px;}
.x5{left:186.780000px;}
.x2{left:201.539987px;}
.x29{left:209.819987px;}
.x2b{left:243.479987px;}
.x25{left:249.509987px;}
.x27{left:254.729987px;}
.x2d{left:268.949987px;}
.xd{left:285.330000px;}
.x20{left:286.589987px;}
.x21{left:290.819987px;}
.x7{left:311.340000px;}
.x23{left:353.099987px;}
.x14{left:356.610000px;}
.x1b{left:376.050000px;}
.xe{left:378.930000px;}
.x24{left:383.699987px;}
.x8{left:395.760000px;}
.x12{left:399.269987px;}
.x1c{left:453.540000px;}
.x9{left:473.610000px;}
.x15{left:484.050000px;}
.x1d{left:531.060000px;}
.xa{left:551.490000px;}
.x16{left:553.920000px;}
.xf{left:572.100000px;}
.x1e{left:608.550000px;}
.x17{left:615.480000px;}
.xb{left:626.010000px;}
.x2a{left:640.139987px;}
.x2c{left:642.389987px;}
.x26{left:657.059987px;}
.x28{left:659.309987px;}
.x10{left:666.330000px;}
.x18{left:676.950000px;}
.x1f{left:686.040000px;}
.x19{left:738.420000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls32{letter-spacing:-0.395200pt;}
.ls25{letter-spacing:-0.378667pt;}
.ls1e{letter-spacing:-0.282667pt;}
.ls23{letter-spacing:-0.266133pt;}
.lsf{letter-spacing:-0.261867pt;}
.ls28{letter-spacing:-0.253867pt;}
.ls30{letter-spacing:-0.236800pt;}
.ls1b{letter-spacing:-0.165867pt;}
.lsc{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls2e{letter-spacing:-0.085867pt;}
.lsb{letter-spacing:-0.080000pt;}
.ls12{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.074667pt;}
.ls10{letter-spacing:-0.058133pt;}
.ls24{letter-spacing:-0.056533pt;}
.ls1f{letter-spacing:-0.034560pt;}
.ls31{letter-spacing:-0.033600pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls20{letter-spacing:-0.024320pt;}
.ls2d{letter-spacing:-0.009920pt;}
.ls2f{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004800pt;}
.ls1d{letter-spacing:0.020480pt;}
.ls1c{letter-spacing:0.037120pt;}
.ls17{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls34{letter-spacing:0.047360pt;}
.ls2a{letter-spacing:0.050560pt;}
.ls7{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.058133pt;}
.ls4{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.065920pt;}
.ls27{letter-spacing:0.066133pt;}
.ls6{letter-spacing:0.076800pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.102933pt;}
.ls19{letter-spacing:0.103467pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.154133pt;}
.lsd{letter-spacing:0.155200pt;}
.ls29{letter-spacing:0.161067pt;}
.ls26{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.386133pt;}
.ls2c{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls2b{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.883200pt;}
.ws5{word-spacing:-12.825067pt;}
.wsd{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.910933pt;}
.ws19{word-spacing:-11.860267pt;}
.ws13{word-spacing:-11.859733pt;}
.ws17{word-spacing:-11.822933pt;}
.ws18{word-spacing:-11.807360pt;}
.ws1e{word-spacing:-11.804160pt;}
.wse{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.793920pt;}
.ws7{word-spacing:-11.756800pt;}
.ws1c{word-spacing:-11.750080pt;}
.ws1a{word-spacing:-11.746880pt;}
.ws1d{word-spacing:-11.723200pt;}
.ws11{word-spacing:-11.722240pt;}
.ws15{word-spacing:-11.700267pt;}
.ws1b{word-spacing:-11.670933pt;}
.wsc{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.474133pt;}
.ws16{word-spacing:-11.378133pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-10.528000pt;}
.ws2{word-spacing:-8.720000pt;}
.ws3{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.294933pt;}
.ws14{word-spacing:-7.698133pt;}
.ws6{word-spacing:-7.603200pt;}
.ws12{word-spacing:-7.578880pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._d{margin-left:-3.353131pt;}
._1{margin-left:-2.311509pt;}
._0{margin-left:-0.981333pt;}
._2{width:1.122005pt;}
._6{width:2.190933pt;}
._7{width:3.208131pt;}
._8{width:4.221867pt;}
._3{width:5.237334pt;}
._9{width:6.314558pt;}
._4{width:7.428267pt;}
._5{width:8.336533pt;}
._a{width:9.952000pt;}
._b{width:10.860608pt;}
._c{width:13.295680pt;}
._e{width:14.215040pt;}
._11{width:16.459520pt;}
._12{width:17.581760pt;}
._f{width:28.162880pt;}
._10{width:29.392000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:6.960000pt;}
.y63{bottom:7.040000pt;}
.y85{bottom:23.626667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya5{bottom:103.146667pt;}
.yfd{bottom:103.386667pt;}
.y5a{bottom:105.866667pt;}
.y12c{bottom:106.506667pt;}
.y81{bottom:108.826667pt;}
.ya4{bottom:118.826667pt;}
.yfc{bottom:118.986667pt;}
.y80{bottom:121.306667pt;}
.y59{bottom:121.466667pt;}
.yc2{bottom:122.106667pt;}
.y28{bottom:122.506667pt;}
.y12b{bottom:122.906667pt;}
.y7f{bottom:132.106667pt;}
.ya3{bottom:134.426667pt;}
.yfb{bottom:134.586667pt;}
.y159{bottom:136.746667pt;}
.y58{bottom:137.066667pt;}
.y27{bottom:138.106667pt;}
.y12a{bottom:139.306667pt;}
.ya2{bottom:150.106667pt;}
.y158{bottom:152.346667pt;}
.yc1{bottom:153.706667pt;}
.y26{bottom:153.786667pt;}
.y7e{bottom:156.426667pt;}
.yfa{bottom:158.266667pt;}
.y57{bottom:168.746667pt;}
.y25{bottom:169.386667pt;}
.y129{bottom:171.706667pt;}
.y157{bottom:176.026667pt;}
.yda{bottom:178.346667pt;}
.ya1{bottom:179.386667pt;}
.y7d{bottom:180.746667pt;}
.y56{bottom:184.346667pt;}
.y24{bottom:184.986667pt;}
.yc0{bottom:185.306667pt;}
.yf9{bottom:190.186667pt;}
.y156{bottom:191.626667pt;}
.yd9{bottom:194.026667pt;}
.y55{bottom:200.026667pt;}
.y23{bottom:200.666667pt;}
.ybf{bottom:200.986667pt;}
.y128{bottom:203.306667pt;}
.ya0{bottom:203.706667pt;}
.y7c{bottom:204.986667pt;}
.yd8{bottom:209.626667pt;}
.y155{bottom:215.226667pt;}
.y54{bottom:215.626667pt;}
.y127{bottom:218.906667pt;}
.y22{bottom:224.586667pt;}
.yd7{bottom:225.226667pt;}
.y9f{bottom:227.946667pt;}
.y7b{bottom:229.306667pt;}
.y154{bottom:230.906667pt;}
.y53{bottom:231.226667pt;}
.ybe{bottom:232.586667pt;}
.yf8{bottom:233.066667pt;}
.y126{bottom:234.586667pt;}
.yf7{bottom:248.666667pt;}
.yd6{bottom:248.906667pt;}
.y125{bottom:250.186667pt;}
.y9e{bottom:252.266667pt;}
.y7a{bottom:253.626667pt;}
.y153{bottom:254.506667pt;}
.y52{bottom:254.906667pt;}
.ybd{bottom:264.266667pt;}
.yf6{bottom:264.346667pt;}
.y124{bottom:265.866667pt;}
.y21{bottom:267.786667pt;}
.y152{bottom:270.106667pt;}
.y9d{bottom:276.586667pt;}
.y79{bottom:277.946667pt;}
.yf5{bottom:279.946667pt;}
.ye7{bottom:280.186667pt;}
.yd5{bottom:280.506667pt;}
.y123{bottom:281.466667pt;}
.y51{bottom:286.506667pt;}
.ybc{bottom:287.866667pt;}
.y151{bottom:293.786667pt;}
.ye6{bottom:295.866667pt;}
.y122{bottom:297.066667pt;}
.y20{bottom:300.666667pt;}
.y9c{bottom:300.906667pt;}
.y50{bottom:302.106667pt;}
.y78{bottom:302.186667pt;}
.yf4{bottom:303.626667pt;}
.y150{bottom:309.386667pt;}
.yd4{bottom:310.346667pt;}
.ye5{bottom:311.466667pt;}
.y1f{bottom:316.266667pt;}
.y4f{bottom:317.786667pt;}
.ybb{bottom:319.466667pt;}
.y121{bottom:320.986667pt;}
.y14f{bottom:325.066667pt;}
.y77{bottom:326.506667pt;}
.ye4{bottom:327.146667pt;}
.y1e{bottom:331.946667pt;}
.y4e{bottom:333.386667pt;}
.yf3{bottom:335.226667pt;}
.yba{bottom:343.146667pt;}
.y9b{bottom:344.186667pt;}
.y1d{bottom:347.546667pt;}
.y14e{bottom:348.666667pt;}
.y4d{bottom:349.066667pt;}
.ye3{bottom:350.746667pt;}
.y76{bottom:350.826667pt;}
.y1c{bottom:363.226667pt;}
.y120{bottom:363.946667pt;}
.y14d{bottom:364.266667pt;}
.y4c{bottom:372.666667pt;}
.yf2{bottom:374.506667pt;}
.yb9{bottom:374.746667pt;}
.y9a{bottom:375.786667pt;}
.y1b{bottom:378.826667pt;}
.y11f{bottom:379.546667pt;}
.y14c{bottom:379.946667pt;}
.ye2{bottom:382.346667pt;}
.y75{bottom:394.106667pt;}
.y1a{bottom:394.426667pt;}
.y11e{bottom:395.146667pt;}
.y99{bottom:397.066667pt;}
.y14b{bottom:403.546667pt;}
.y4b{bottom:404.266667pt;}
.yf1{bottom:406.106667pt;}
.yb8{bottom:406.426667pt;}
.y19{bottom:410.106667pt;}
.y11d{bottom:410.826667pt;}
.ye1{bottom:410.986667pt;}
.y14a{bottom:419.253333pt;}
.y4a{bottom:419.973333pt;}
.y98{bottom:421.413333pt;}
.y74{bottom:425.733333pt;}
.y11c{bottom:426.453333pt;}
.yb7{bottom:430.053333pt;}
.yf0{bottom:434.773333pt;}
.y49{bottom:435.573333pt;}
.y18{bottom:441.733333pt;}
.y11b{bottom:442.133333pt;}
.y149{bottom:442.853333pt;}
.y97{bottom:445.733333pt;}
.y73{bottom:447.093333pt;}
.y48{bottom:451.253333pt;}
.y17{bottom:457.413333pt;}
.y11a{bottom:457.733333pt;}
.y148{bottom:458.453333pt;}
.yb6{bottom:461.653333pt;}
.y47{bottom:466.853333pt;}
.y96{bottom:470.053333pt;}
.y72{bottom:471.333333pt;}
.y16{bottom:473.013333pt;}
.y119{bottom:473.333333pt;}
.y147{bottom:482.133333pt;}
.y15{bottom:488.613333pt;}
.y118{bottom:489.013333pt;}
.y46{bottom:490.453333pt;}
.yb5{bottom:493.333333pt;}
.y95{bottom:494.293333pt;}
.y71{bottom:495.653333pt;}
.y14{bottom:504.293333pt;}
.y117{bottom:504.613333pt;}
.y146{bottom:505.733333pt;}
.yb4{bottom:508.933333pt;}
.y94{bottom:518.613333pt;}
.y13{bottom:519.893333pt;}
.y70{bottom:519.973333pt;}
.y116{bottom:520.293333pt;}
.y45{bottom:522.133333pt;}
.y145{bottom:529.413333pt;}
.yb3{bottom:532.613333pt;}
.y115{bottom:535.893333pt;}
.y44{bottom:537.733333pt;}
.y16b{bottom:542.773333pt;}
.y93{bottom:542.933333pt;}
.y12{bottom:543.813333pt;}
.y6f{bottom:544.213333pt;}
.y144{bottom:545.013333pt;}
.y114{bottom:551.493333pt;}
.y16a{bottom:558.453333pt;}
.y43{bottom:561.413333pt;}
.yb2{bottom:564.213333pt;}
.y113{bottom:567.173333pt;}
.y92{bottom:567.253333pt;}
.y6e{bottom:568.533333pt;}
.y143{bottom:568.613333pt;}
.y169{bottom:574.053333pt;}
.y112{bottom:582.773333pt;}
.y142{bottom:584.293333pt;}
.y11{bottom:586.693333pt;}
.y91{bottom:591.493333pt;}
.y6d{bottom:592.853333pt;}
.y42{bottom:593.333333pt;}
.yd3{bottom:593.413333pt;}
.yb1{bottom:595.813333pt;}
.y168{bottom:597.653333pt;}
.y111{bottom:598.453333pt;}
.y141{bottom:599.893333pt;}
.yd2{bottom:609.013333pt;}
.yb0{bottom:611.493333pt;}
.y167{bottom:613.333333pt;}
.y110{bottom:614.053333pt;}
.y90{bottom:615.813333pt;}
.y6c{bottom:617.173333pt;}
.y10{bottom:618.533333pt;}
.y140{bottom:623.573333pt;}
.yd1{bottom:624.613333pt;}
.y10f{bottom:629.653333pt;}
.y41{bottom:636.133333pt;}
.y166{bottom:636.933333pt;}
.y13f{bottom:639.173333pt;}
.y8f{bottom:640.133333pt;}
.yd0{bottom:640.293333pt;}
.y6b{bottom:641.413333pt;}
.yaf{bottom:643.093333pt;}
.y10e{bottom:645.333333pt;}
.yf{bottom:650.533333pt;}
.y40{bottom:652.533333pt;}
.y165{bottom:652.613333pt;}
.y13e{bottom:654.773333pt;}
.ycf{bottom:655.893333pt;}
.ye0{bottom:656.053333pt;}
.y10d{bottom:660.933333pt;}
.y8e{bottom:664.373333pt;}
.y6a{bottom:665.733333pt;}
.yef{bottom:667.813333pt;}
.ydf{bottom:671.653333pt;}
.yae{bottom:674.693333pt;}
.y164{bottom:676.213333pt;}
.y10c{bottom:676.613333pt;}
.y13d{bottom:678.453333pt;}
.yce{bottom:679.573333pt;}
.yee{bottom:683.413333pt;}
.y3f{bottom:684.933333pt;}
.ye{bottom:685.893333pt;}
.yde{bottom:687.333333pt;}
.y8d{bottom:688.693333pt;}
.y69{bottom:690.053333pt;}
.y163{bottom:691.813333pt;}
.y10b{bottom:692.213333pt;}
.yd{bottom:698.533333pt;}
.yed{bottom:699.013333pt;}
.y3e{bottom:700.613333pt;}
.y13c{bottom:702.053333pt;}
.yad{bottom:706.373333pt;}
.y162{bottom:707.493333pt;}
.y10a{bottom:707.813333pt;}
.ydd{bottom:710.933333pt;}
.ycd{bottom:711.173333pt;}
.y8c{bottom:713.013333pt;}
.y68{bottom:714.373333pt;}
.yec{bottom:714.693333pt;}
.y3d{bottom:716.213333pt;}
.y13b{bottom:717.733333pt;}
.yc{bottom:717.893333pt;}
.y109{bottom:723.493333pt;}
.ycc{bottom:726.773333pt;}
.yeb{bottom:730.293333pt;}
.yb{bottom:730.533333pt;}
.y161{bottom:731.093333pt;}
.y13a{bottom:733.333333pt;}
.y8b{bottom:737.333333pt;}
.yac{bottom:737.973333pt;}
.y67{bottom:738.613333pt;}
.y108{bottom:739.093333pt;}
.y160{bottom:746.693333pt;}
.y3c{bottom:747.813333pt;}
.ya{bottom:749.893333pt;}
.ydc{bottom:750.373333pt;}
.ycb{bottom:750.453333pt;}
.yea{bottom:753.973333pt;}
.y107{bottom:754.693333pt;}
.y139{bottom:756.933333pt;}
.y8a{bottom:761.573333pt;}
.y9{bottom:762.533333pt;}
.y66{bottom:762.933333pt;}
.y3b{bottom:763.493333pt;}
.yab{bottom:769.653333pt;}
.y106{bottom:770.373333pt;}
.ydb{bottom:772.213333pt;}
.y138{bottom:772.613333pt;}
.y3a{bottom:779.093333pt;}
.y8{bottom:781.893333pt;}
.yca{bottom:782.053333pt;}
.ye9{bottom:785.573333pt;}
.y89{bottom:785.893333pt;}
.y15f{bottom:785.973333pt;}
.y65{bottom:787.253333pt;}
.y39{bottom:794.693333pt;}
.y137{bottom:796.213333pt;}
.yc9{bottom:797.733333pt;}
.y7{bottom:797.893333pt;}
.yaa{bottom:801.253333pt;}
.y15e{bottom:801.653333pt;}
.y105{bottom:801.973333pt;}
.y88{bottom:810.213333pt;}
.y38{bottom:810.373333pt;}
.y64{bottom:811.493333pt;}
.ye8{bottom:814.213333pt;}
.y104{bottom:817.653333pt;}
.y136{bottom:819.893333pt;}
.yc8{bottom:821.333333pt;}
.ya9{bottom:824.853333pt;}
.y15d{bottom:825.253333pt;}
.y37{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y103{bottom:833.253333pt;}
.y87{bottom:834.533333pt;}
.y135{bottom:835.493333pt;}
.y62{bottom:835.813333pt;}
.y15c{bottom:840.853333pt;}
.y36{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y102{bottom:848.853333pt;}
.yc7{bottom:853.253333pt;}
.ya8{bottom:856.533333pt;}
.y35{bottom:857.253333pt;}
.y86{bottom:858.773333pt;}
.y134{bottom:859.093333pt;}
.y60{bottom:860.133333pt;}
.y101{bottom:864.533333pt;}
.ya7{bottom:872.133333pt;}
.y34{bottom:872.853333pt;}
.y133{bottom:874.773333pt;}
.y4{bottom:877.893333pt;}
.y100{bottom:880.133333pt;}
.y84{bottom:883.093333pt;}
.ya6{bottom:887.813333pt;}
.y33{bottom:888.533333pt;}
.yff{bottom:895.813333pt;}
.yc6{bottom:896.133333pt;}
.y132{bottom:898.400000pt;}
.y3{bottom:899.840000pt;}
.y5f{bottom:903.440000pt;}
.y15b{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.y83{bottom:907.440000pt;}
.yc5{bottom:911.840000pt;}
.y131{bottom:914.000000pt;}
.yfe{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y5e{bottom:927.040000pt;}
.yc4{bottom:927.440000pt;}
.y15a{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y130{bottom:937.920000pt;}
.yc3{bottom:943.040000pt;}
.y82{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y5d{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y5c{bottom:974.320000pt;}
.y12f{bottom:980.800000pt;}
.y2d{bottom:982.320000pt;}
.y5b{bottom:990.000000pt;}
.y12e{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.y12d{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h11{height:23.626667pt;}
.hf{height:23.680000pt;}
.h12{height:23.706667pt;}
.h2{height:28.356562pt;}
.h8{height:33.059063pt;}
.h3{height:34.804688pt;}
.h10{height:37.032187pt;}
.h6{height:39.869531pt;}
.h7{height:46.499062pt;}
.hd{height:46.916562pt;}
.h5{height:50.954062pt;}
.h9{height:51.411562pt;}
.h13{height:53.309531pt;}
.ha{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h15{height:65.781915pt;}
.h14{height:66.625000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:54.000000pt;}
.w10{width:61.466667pt;}
.w7{width:65.600000pt;}
.w16{width:68.160000pt;}
.w14{width:68.240000pt;}
.w15{width:68.266667pt;}
.w5{width:68.560000pt;}
.w6{width:68.586667pt;}
.w8{width:71.520000pt;}
.w4{width:74.400000pt;}
.wa{width:82.560000pt;}
.wb{width:83.040000pt;}
.wd{width:87.200000pt;}
.wc{width:87.306667pt;}
.w3{width:110.000000pt;}
.wf{width:112.640000pt;}
.w9{width:138.506667pt;}
.w13{width:217.626667pt;}
.we{width:232.666667pt;}
.w12{width:346.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:3.440000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:73.839988pt;}
.x4{left:84.479988pt;}
.x2f{left:98.879988pt;}
.x2e{left:108.479988pt;}
.xc{left:114.480000pt;}
.x1a{left:116.000000pt;}
.x22{left:132.959988pt;}
.x5{left:166.026667pt;}
.x2{left:179.146655pt;}
.x29{left:186.506655pt;}
.x2b{left:216.426655pt;}
.x25{left:221.786655pt;}
.x27{left:226.426655pt;}
.x2d{left:239.066655pt;}
.xd{left:253.626667pt;}
.x20{left:254.746655pt;}
.x21{left:258.506655pt;}
.x7{left:276.746667pt;}
.x23{left:313.866655pt;}
.x14{left:316.986667pt;}
.x1b{left:334.266667pt;}
.xe{left:336.826667pt;}
.x24{left:341.066655pt;}
.x8{left:351.786667pt;}
.x12{left:354.906655pt;}
.x1c{left:403.146667pt;}
.x9{left:420.986667pt;}
.x15{left:430.266667pt;}
.x1d{left:472.053333pt;}
.xa{left:490.213333pt;}
.x16{left:492.373333pt;}
.xf{left:508.533333pt;}
.x1e{left:540.933333pt;}
.x17{left:547.093333pt;}
.xb{left:556.453333pt;}
.x2a{left:569.013322pt;}
.x2c{left:571.013322pt;}
.x26{left:584.053322pt;}
.x28{left:586.053322pt;}
.x10{left:592.293333pt;}
.x18{left:601.733333pt;}
.x1f{left:609.813333pt;}
.x19{left:656.373333pt;}
.x3{left:704.053322pt;}
}




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