
    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_74582c646395bf08b736e0dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3466813da9c3e4ebf753c3f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_505e34d140886e48cfd7bfb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a5e699640dd801f59180776d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a77dbf2f44bd3b426338525d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.981934;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-2.706000px;}
.ls13{letter-spacing:-0.579600px;}
.ls24{letter-spacing:-0.576600px;}
.ls5{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.310200px;}
.lsb{letter-spacing:-0.303000px;}
.ls21{letter-spacing:-0.268800px;}
.ls15{letter-spacing:-0.240600px;}
.ls4{letter-spacing:-0.132600px;}
.ls14{letter-spacing:-0.115800px;}
.ls28{letter-spacing:-0.107400px;}
.ls1c{letter-spacing:-0.069600px;}
.ls23{letter-spacing:-0.067200px;}
.ls2a{letter-spacing:-0.064800px;}
.lsc{letter-spacing:-0.058320px;}
.ls1e{letter-spacing:-0.041040px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.lsd{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.140400px;}
.ls18{letter-spacing:0.143400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls20{letter-spacing:0.174000px;}
.ls16{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.186600px;}
.ls22{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.210000px;}
.ls19{letter-spacing:0.243600px;}
.lsf{letter-spacing:0.306000px;}
.ls2b{letter-spacing:0.433440px;}
.ls27{letter-spacing:0.479520px;}
.ls2c{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.780000px;}
.ls1d{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.026000px;}
.ls17{letter-spacing:4.494240px;}
.ls29{letter-spacing:12.186720px;}
.ls1a{letter-spacing:22.986720px;}
.ls1b{letter-spacing:26.586720px;}
.ls26{letter-spacing:42.426720px;}
.ls1{letter-spacing:65.610720px;}
.ls25{letter-spacing:68.490720px;}
.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;}
}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws17{word-spacing:-14.165760px;}
.wsf{word-spacing:-13.811760px;}
.ws14{word-spacing:-13.715160px;}
.ws9{word-spacing:-13.692360px;}
.wse{word-spacing:-13.649160px;}
.ws8{word-spacing:-13.646160px;}
.ws12{word-spacing:-13.529520px;}
.ws7{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.464720px;}
.wsb{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.436160px;}
.wsd{word-spacing:-13.265160px;}
.ws13{word-spacing:-13.236960px;}
.wsa{word-spacing:-13.202760px;}
.ws15{word-spacing:-12.929160px;}
.ws16{word-spacing:-12.204000px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.wsc{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.392000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._22{margin-left:-53.422560px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._3a{margin-left:-9.905760px;}
._27{margin-left:-5.127120px;}
._3f{margin-left:-4.015440px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.160880px;}
._30{width:2.387520px;}
._2e{width:3.410880px;}
._2f{width:5.214240px;}
._32{width:6.234240px;}
._33{width:7.353360px;}
._2a{width:8.417280px;}
._28{width:9.752880px;}
._2d{width:10.756800px;}
._31{width:12.121920px;}
._3d{width:14.621760px;}
._2c{width:15.675840px;}
._2b{width:16.783200px;}
._35{width:17.870880px;}
._43{width:19.660320px;}
._44{width:20.694720px;}
._3b{width:22.290480px;}
._3e{width:26.294400px;}
._39{width:28.262880px;}
._40{width:44.673600px;}
._45{width:51.692400px;}
._34{width:55.213200px;}
._3c{width:56.358720px;}
._41{width:68.660640px;}
._38{width:74.334240px;}
._42{width:76.167120px;}
._37{width:114.798240px;}
._36{width:202.638240px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,175,80);}
.fc4{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,255);}
.fc3{color:rgb(0,128,0);}
.fc2{color:rgb(15,43,70);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y61{bottom:6.660000px;}
.y9c{bottom:9.000000px;}
.y8c{bottom:10.080000px;}
.yb6{bottom:11.520000px;}
.yd2{bottom:15.300000px;}
.yca{bottom:15.480000px;}
.ybb{bottom:16.020000px;}
.ya3{bottom:19.620000px;}
.y73{bottom:27.540000px;}
.y66{bottom:27.720000px;}
.y93{bottom:27.750000px;}
.y6f{bottom:27.765000px;}
.y9b{bottom:30.060000px;}
.y8b{bottom:31.140000px;}
.yba{bottom:37.080000px;}
.ya2{bottom:40.680000px;}
.y72{bottom:48.600000px;}
.y65{bottom:48.780000px;}
.y92{bottom:48.810000px;}
.y6e{bottom:48.825000px;}
.y9a{bottom:51.120000px;}
.y8a{bottom:52.200000px;}
.y6{bottom:59.040000px;}
.ya1{bottom:61.740000px;}
.y78{bottom:69.660000px;}
.y64{bottom:69.840000px;}
.y75{bottom:69.870000px;}
.y6d{bottom:69.885000px;}
.y99{bottom:72.180000px;}
.ya7{bottom:72.225000px;}
.ya0{bottom:82.845000px;}
.yd3{bottom:85.680000px;}
.y127{bottom:87.120000px;}
.y63{bottom:90.900000px;}
.y91{bottom:90.930000px;}
.y6c{bottom:90.945000px;}
.y31{bottom:93.060000px;}
.y98{bottom:93.240000px;}
.ya6{bottom:93.285000px;}
.y100{bottom:95.400000px;}
.y74{bottom:102.060000px;}
.y9f{bottom:103.905000px;}
.y5a{bottom:105.120000px;}
.y126{bottom:108.180000px;}
.y69{bottom:111.960000px;}
.y90{bottom:111.990000px;}
.y6b{bottom:112.005000px;}
.y30{bottom:113.940000px;}
.y5f{bottom:114.120000px;}
.y97{bottom:114.300000px;}
.ya5{bottom:114.345000px;}
.y128{bottom:115.200000px;}
.y9e{bottom:124.965000px;}
.yff{bottom:125.460000px;}
.y59{bottom:126.180000px;}
.yd1{bottom:128.520000px;}
.y125{bottom:129.240000px;}
.y68{bottom:133.020000px;}
.y94{bottom:133.050000px;}
.y2f{bottom:135.000000px;}
.y5e{bottom:135.180000px;}
.y96{bottom:135.360000px;}
.ya4{bottom:135.405000px;}
.y8f{bottom:136.080000px;}
.y58{bottom:147.240000px;}
.y124{bottom:150.300000px;}
.yfe{bottom:155.550000px;}
.y2e{bottom:156.090000px;}
.y5d{bottom:156.270000px;}
.yd0{bottom:158.970000px;}
.y57{bottom:168.330000px;}
.y123{bottom:171.390000px;}
.yfd{bottom:176.610000px;}
.y2d{bottom:177.150000px;}
.y5c{bottom:177.330000px;}
.y71{bottom:187.230000px;}
.y56{bottom:189.390000px;}
.y122{bottom:192.270000px;}
.yfc{bottom:197.670000px;}
.y2c{bottom:198.210000px;}
.y5b{bottom:198.390000px;}
.ycf{bottom:201.990000px;}
.y55{bottom:210.270000px;}
.y121{bottom:213.330000px;}
.yfb{bottom:218.730000px;}
.y2b{bottom:219.270000px;}
.y54{bottom:231.330000px;}
.y120{bottom:234.390000px;}
.yfa{bottom:239.790000px;}
.y2a{bottom:240.330000px;}
.yce{bottom:244.830000px;}
.y70{bottom:251.130000px;}
.y53{bottom:252.390000px;}
.y11f{bottom:255.450000px;}
.yf9{bottom:260.850000px;}
.y29{bottom:261.390000px;}
.y52{bottom:273.450000px;}
.y11e{bottom:276.510000px;}
.yf8{bottom:281.910000px;}
.y28{bottom:282.450000px;}
.y8e{bottom:284.250000px;}
.ycd{bottom:287.670000px;}
.y51{bottom:294.510000px;}
.y11d{bottom:297.570000px;}
.yf7{bottom:302.970000px;}
.y27{bottom:303.510000px;}
.y50{bottom:315.570000px;}
.y11c{bottom:318.630000px;}
.yf6{bottom:324.030000px;}
.y26{bottom:324.570000px;}
.ycc{bottom:330.510000px;}
.y11b{bottom:339.690000px;}
.yf5{bottom:345.090000px;}
.y25{bottom:345.630000px;}
.y11a{bottom:360.750000px;}
.y24{bottom:366.690000px;}
.ycb{bottom:373.350000px;}
.yf4{bottom:375.150000px;}
.y6a{bottom:378.210000px;}
.y119{bottom:381.810000px;}
.y23{bottom:387.750000px;}
.yf3{bottom:396.210000px;}
.y118{bottom:402.915000px;}
.y22{bottom:408.855000px;}
.y8d{bottom:411.375000px;}
.yc9{bottom:416.235000px;}
.yf2{bottom:417.135000px;}
.y117{bottom:423.975000px;}
.y21{bottom:429.915000px;}
.yf1{bottom:438.195000px;}
.y116{bottom:445.035000px;}
.y20{bottom:450.975000px;}
.yc8{bottom:453.495000px;}
.yf0{bottom:459.255000px;}
.y115{bottom:466.095000px;}
.y1f{bottom:472.035000px;}
.yc7{bottom:474.555000px;}
.yef{bottom:480.315000px;}
.y114{bottom:487.155000px;}
.y1e{bottom:493.095000px;}
.yc6{bottom:495.615000px;}
.yee{bottom:501.375000px;}
.y67{bottom:505.335000px;}
.y113{bottom:508.215000px;}
.y1d{bottom:514.155000px;}
.yc5{bottom:516.675000px;}
.yed{bottom:522.435000px;}
.y112{bottom:529.275000px;}
.y1c{bottom:535.215000px;}
.yc4{bottom:537.735000px;}
.y89{bottom:538.455000px;}
.yec{bottom:543.495000px;}
.y111{bottom:550.335000px;}
.y1b{bottom:556.275000px;}
.yc3{bottom:558.795000px;}
.yeb{bottom:564.555000px;}
.y110{bottom:571.395000px;}
.yb3{bottom:576.795000px;}
.y4f{bottom:577.335000px;}
.y1a{bottom:579.855000px;}
.yea{bottom:594.615000px;}
.yb2{bottom:597.855000px;}
.y4e{bottom:598.395000px;}
.y10f{bottom:601.455000px;}
.y88{bottom:609.015000px;}
.y19{bottom:609.735000px;}
.yc2{bottom:609.915000px;}
.ye9{bottom:615.675000px;}
.yb1{bottom:618.915000px;}
.y4d{bottom:619.455000px;}
.y10e{bottom:622.515000px;}
.y18{bottom:630.795000px;}
.yc1{bottom:630.975000px;}
.ye8{bottom:636.735000px;}
.y87{bottom:637.635000px;}
.yb0{bottom:639.975000px;}
.y4c{bottom:640.515000px;}
.y10d{bottom:643.575000px;}
.y17{bottom:651.885000px;}
.yc0{bottom:652.065000px;}
.y62{bottom:653.505000px;}
.ye7{bottom:657.825000px;}
.y86{bottom:658.545000px;}
.yaf{bottom:661.065000px;}
.y4b{bottom:661.605000px;}
.y10c{bottom:664.665000px;}
.y16{bottom:672.945000px;}
.ybf{bottom:673.125000px;}
.ye6{bottom:678.885000px;}
.y85{bottom:679.605000px;}
.yae{bottom:682.125000px;}
.y4a{bottom:682.665000px;}
.y10b{bottom:685.725000px;}
.ybe{bottom:688.245000px;}
.y15{bottom:694.005000px;}
.ye5{bottom:699.945000px;}
.y84{bottom:700.665000px;}
.y49{bottom:703.725000px;}
.y10a{bottom:706.785000px;}
.yad{bottom:712.185000px;}
.y14{bottom:715.065000px;}
.ye4{bottom:721.005000px;}
.y83{bottom:721.725000px;}
.y48{bottom:724.785000px;}
.y109{bottom:727.845000px;}
.yac{bottom:733.245000px;}
.y13{bottom:736.125000px;}
.ye3{bottom:742.065000px;}
.y82{bottom:742.785000px;}
.y47{bottom:745.845000px;}
.ybd{bottom:752.145000px;}
.yab{bottom:754.305000px;}
.y12{bottom:757.185000px;}
.y108{bottom:757.905000px;}
.y60{bottom:759.525000px;}
.ye2{bottom:763.125000px;}
.y81{bottom:763.845000px;}
.y46{bottom:766.905000px;}
.yaa{bottom:775.365000px;}
.y11{bottom:778.065000px;}
.ybc{bottom:778.785000px;}
.y107{bottom:778.965000px;}
.ye1{bottom:784.185000px;}
.y80{bottom:784.905000px;}
.y45{bottom:787.965000px;}
.ya9{bottom:796.245000px;}
.y10{bottom:799.125000px;}
.y106{bottom:800.025000px;}
.ye0{bottom:805.245000px;}
.yb9{bottom:805.425000px;}
.y7f{bottom:805.965000px;}
.y44{bottom:809.025000px;}
.ya8{bottom:817.305000px;}
.yf{bottom:820.185000px;}
.y105{bottom:821.085000px;}
.ydf{bottom:826.305000px;}
.y7e{bottom:827.025000px;}
.y43{bottom:830.085000px;}
.y9d{bottom:832.605000px;}
.ye{bottom:841.245000px;}
.y104{bottom:842.145000px;}
.yde{bottom:847.365000px;}
.y7d{bottom:848.085000px;}
.y42{bottom:851.145000px;}
.yb8{bottom:857.805000px;}
.yd{bottom:862.485000px;}
.y103{bottom:863.205000px;}
.ydd{bottom:868.425000px;}
.y7c{bottom:869.145000px;}
.y41{bottom:872.205000px;}
.y102{bottom:884.265000px;}
.yc{bottom:885.705000px;}
.ydc{bottom:889.485000px;}
.y7b{bottom:890.205000px;}
.y40{bottom:893.265000px;}
.yb7{bottom:900.690000px;}
.y101{bottom:905.370000px;}
.ydb{bottom:910.590000px;}
.y7a{bottom:911.310000px;}
.yb{bottom:912.030000px;}
.y3f{bottom:914.370000px;}
.y79{bottom:926.430000px;}
.ya{bottom:928.770000px;}
.yda{bottom:931.650000px;}
.y3e{bottom:935.430000px;}
.yb5{bottom:943.530000px;}
.y9{bottom:951.090000px;}
.yd9{bottom:952.710000px;}
.y3d{bottom:956.490000px;}
.yb4{bottom:970.170000px;}
.yd8{bottom:973.770000px;}
.y8{bottom:976.290000px;}
.y3c{bottom:977.550000px;}
.y95{bottom:985.650000px;}
.yd7{bottom:988.890000px;}
.y3b{bottom:998.610000px;}
.y7{bottom:1009.950000px;}
.y3a{bottom:1019.670000px;}
.yd6{bottom:1031.730000px;}
.y39{bottom:1040.730000px;}
.y5{bottom:1050.090000px;}
.y77{bottom:1053.690000px;}
.y38{bottom:1061.790000px;}
.yd5{bottom:1074.750000px;}
.y4{bottom:1082.130000px;}
.y37{bottom:1082.850000px;}
.y36{bottom:1103.910000px;}
.y3{bottom:1114.350000px;}
.yd4{bottom:1117.590000px;}
.y35{bottom:1124.970000px;}
.y76{bottom:1138.650000px;}
.y34{bottom:1146.030000px;}
.y2{bottom:1146.600000px;}
.y33{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.hb{height:21.060000px;}
.h12{height:21.096000px;}
.h18{height:25.920000px;}
.h1d{height:29.736000px;}
.h1c{height:29.880000px;}
.h7{height:38.671172px;}
.h1e{height:41.940000px;}
.h19{height:42.120000px;}
.h1a{height:42.156000px;}
.ha{height:48.029766px;}
.h5{height:48.088125px;}
.h1b{height:51.480000px;}
.h8{height:59.439023px;}
.h9{height:61.189805px;}
.h10{height:63.000000px;}
.h17{height:63.180000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h14{height:69.840000px;}
.h13{height:84.060000px;}
.h11{height:84.276000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.hc{height:105.300000px;}
.hf{height:126.360000px;}
.he{height:126.396000px;}
.hd{height:147.456000px;}
.h15{height:152.100000px;}
.h16{height:152.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:73.476000px;}
.we{width:94.536000px;}
.w9{width:105.516000px;}
.wf{width:115.776000px;}
.w3{width:115.920000px;}
.wa{width:116.100000px;}
.wd{width:126.360000px;}
.wb{width:169.230000px;}
.w5{width:180.030000px;}
.w7{width:214.410000px;}
.w8{width:243.930000px;}
.w6{width:332.715000px;}
.w4{width:392.655000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:1.260000px;}
.xa{left:7.740000px;}
.x16{left:9.000000px;}
.x17{left:14.580000px;}
.xe{left:21.240000px;}
.xd{left:29.880000px;}
.x6{left:53.999987px;}
.x21{left:64.619987px;}
.x20{left:75.239987px;}
.x22{left:80.999987px;}
.x7{left:86.075987px;}
.xf{left:96.515987px;}
.x9{left:101.556000px;}
.x8{left:107.135987px;}
.x19{left:117.935987px;}
.x14{left:127.836000px;}
.x5{left:164.729987px;}
.x10{left:172.650000px;}
.xb{left:218.190000px;}
.x1f{left:234.749987px;}
.x1a{left:240.330000px;}
.x3{left:286.814987px;}
.x1b{left:314.535000px;}
.x2{left:350.714987px;}
.x12{left:365.294987px;}
.x15{left:372.495000px;}
.x4{left:419.294987px;}
.x1c{left:441.615000px;}
.x13{left:446.504987px;}
.x1{left:479.444987px;}
.x11{left:506.085000px;}
.x1e{left:536.865000px;}
.x18{left:595.905000px;}
.xc{left:611.565000px;}
.x23{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-2.405333pt;}
.ls13{letter-spacing:-0.515200pt;}
.ls24{letter-spacing:-0.512533pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.275733pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls21{letter-spacing:-0.238933pt;}
.ls15{letter-spacing:-0.213867pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls14{letter-spacing:-0.102933pt;}
.ls28{letter-spacing:-0.095467pt;}
.ls1c{letter-spacing:-0.061867pt;}
.ls23{letter-spacing:-0.059733pt;}
.ls2a{letter-spacing:-0.057600pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls1e{letter-spacing:-0.036480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.lsd{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.124800pt;}
.ls18{letter-spacing:0.127467pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls20{letter-spacing:0.154667pt;}
.ls16{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.165867pt;}
.ls22{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.186667pt;}
.ls19{letter-spacing:0.216533pt;}
.lsf{letter-spacing:0.272000pt;}
.ls2b{letter-spacing:0.385280pt;}
.ls27{letter-spacing:0.426240pt;}
.ls2c{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls11{letter-spacing:0.912000pt;}
.ls17{letter-spacing:3.994880pt;}
.ls29{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:20.432640pt;}
.ls1b{letter-spacing:23.632640pt;}
.ls26{letter-spacing:37.712640pt;}
.ls1{letter-spacing:58.320640pt;}
.ls25{letter-spacing:60.880640pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.591787pt;}
.wsf{word-spacing:-12.277120pt;}
.ws14{word-spacing:-12.191253pt;}
.ws9{word-spacing:-12.170987pt;}
.wse{word-spacing:-12.132587pt;}
.ws8{word-spacing:-12.129920pt;}
.ws12{word-spacing:-12.026240pt;}
.ws7{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.968640pt;}
.wsb{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.943253pt;}
.wsd{word-spacing:-11.791253pt;}
.ws13{word-spacing:-11.766187pt;}
.wsa{word-spacing:-11.735787pt;}
.ws15{word-spacing:-11.492587pt;}
.ws16{word-spacing:-10.848000pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.wsc{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-129.237333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._22{margin-left:-47.486720pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._3a{margin-left:-8.805120pt;}
._27{margin-left:-4.557440pt;}
._3f{margin-left:-3.569280pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.031893pt;}
._30{width:2.122240pt;}
._2e{width:3.031893pt;}
._2f{width:4.634880pt;}
._32{width:5.541547pt;}
._33{width:6.536320pt;}
._2a{width:7.482027pt;}
._28{width:8.669227pt;}
._2d{width:9.561600pt;}
._31{width:10.775040pt;}
._3d{width:12.997120pt;}
._2c{width:13.934080pt;}
._2b{width:14.918400pt;}
._35{width:15.885227pt;}
._43{width:17.475840pt;}
._44{width:18.395307pt;}
._3b{width:19.813760pt;}
._3e{width:23.372800pt;}
._39{width:25.122560pt;}
._40{width:39.709867pt;}
._45{width:45.948800pt;}
._34{width:49.078400pt;}
._3c{width:50.096640pt;}
._41{width:61.031680pt;}
._38{width:66.074880pt;}
._42{width:67.704107pt;}
._37{width:102.042880pt;}
._36{width:180.122880pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:5.920000pt;}
.y9c{bottom:8.000000pt;}
.y8c{bottom:8.960000pt;}
.yb6{bottom:10.240000pt;}
.yd2{bottom:13.600000pt;}
.yca{bottom:13.760000pt;}
.ybb{bottom:14.240000pt;}
.ya3{bottom:17.440000pt;}
.y73{bottom:24.480000pt;}
.y66{bottom:24.640000pt;}
.y93{bottom:24.666667pt;}
.y6f{bottom:24.680000pt;}
.y9b{bottom:26.720000pt;}
.y8b{bottom:27.680000pt;}
.yba{bottom:32.960000pt;}
.ya2{bottom:36.160000pt;}
.y72{bottom:43.200000pt;}
.y65{bottom:43.360000pt;}
.y92{bottom:43.386667pt;}
.y6e{bottom:43.400000pt;}
.y9a{bottom:45.440000pt;}
.y8a{bottom:46.400000pt;}
.y6{bottom:52.480000pt;}
.ya1{bottom:54.880000pt;}
.y78{bottom:61.920000pt;}
.y64{bottom:62.080000pt;}
.y75{bottom:62.106667pt;}
.y6d{bottom:62.120000pt;}
.y99{bottom:64.160000pt;}
.ya7{bottom:64.200000pt;}
.ya0{bottom:73.640000pt;}
.yd3{bottom:76.160000pt;}
.y127{bottom:77.440000pt;}
.y63{bottom:80.800000pt;}
.y91{bottom:80.826667pt;}
.y6c{bottom:80.840000pt;}
.y31{bottom:82.720000pt;}
.y98{bottom:82.880000pt;}
.ya6{bottom:82.920000pt;}
.y100{bottom:84.800000pt;}
.y74{bottom:90.720000pt;}
.y9f{bottom:92.360000pt;}
.y5a{bottom:93.440000pt;}
.y126{bottom:96.160000pt;}
.y69{bottom:99.520000pt;}
.y90{bottom:99.546667pt;}
.y6b{bottom:99.560000pt;}
.y30{bottom:101.280000pt;}
.y5f{bottom:101.440000pt;}
.y97{bottom:101.600000pt;}
.ya5{bottom:101.640000pt;}
.y128{bottom:102.400000pt;}
.y9e{bottom:111.080000pt;}
.yff{bottom:111.520000pt;}
.y59{bottom:112.160000pt;}
.yd1{bottom:114.240000pt;}
.y125{bottom:114.880000pt;}
.y68{bottom:118.240000pt;}
.y94{bottom:118.266667pt;}
.y2f{bottom:120.000000pt;}
.y5e{bottom:120.160000pt;}
.y96{bottom:120.320000pt;}
.ya4{bottom:120.360000pt;}
.y8f{bottom:120.960000pt;}
.y58{bottom:130.880000pt;}
.y124{bottom:133.600000pt;}
.yfe{bottom:138.266667pt;}
.y2e{bottom:138.746667pt;}
.y5d{bottom:138.906667pt;}
.yd0{bottom:141.306667pt;}
.y57{bottom:149.626667pt;}
.y123{bottom:152.346667pt;}
.yfd{bottom:156.986667pt;}
.y2d{bottom:157.466667pt;}
.y5c{bottom:157.626667pt;}
.y71{bottom:166.426667pt;}
.y56{bottom:168.346667pt;}
.y122{bottom:170.906667pt;}
.yfc{bottom:175.706667pt;}
.y2c{bottom:176.186667pt;}
.y5b{bottom:176.346667pt;}
.ycf{bottom:179.546667pt;}
.y55{bottom:186.906667pt;}
.y121{bottom:189.626667pt;}
.yfb{bottom:194.426667pt;}
.y2b{bottom:194.906667pt;}
.y54{bottom:205.626667pt;}
.y120{bottom:208.346667pt;}
.yfa{bottom:213.146667pt;}
.y2a{bottom:213.626667pt;}
.yce{bottom:217.626667pt;}
.y70{bottom:223.226667pt;}
.y53{bottom:224.346667pt;}
.y11f{bottom:227.066667pt;}
.yf9{bottom:231.866667pt;}
.y29{bottom:232.346667pt;}
.y52{bottom:243.066667pt;}
.y11e{bottom:245.786667pt;}
.yf8{bottom:250.586667pt;}
.y28{bottom:251.066667pt;}
.y8e{bottom:252.666667pt;}
.ycd{bottom:255.706667pt;}
.y51{bottom:261.786667pt;}
.y11d{bottom:264.506667pt;}
.yf7{bottom:269.306667pt;}
.y27{bottom:269.786667pt;}
.y50{bottom:280.506667pt;}
.y11c{bottom:283.226667pt;}
.yf6{bottom:288.026667pt;}
.y26{bottom:288.506667pt;}
.ycc{bottom:293.786667pt;}
.y11b{bottom:301.946667pt;}
.yf5{bottom:306.746667pt;}
.y25{bottom:307.226667pt;}
.y11a{bottom:320.666667pt;}
.y24{bottom:325.946667pt;}
.ycb{bottom:331.866667pt;}
.yf4{bottom:333.466667pt;}
.y6a{bottom:336.186667pt;}
.y119{bottom:339.386667pt;}
.y23{bottom:344.666667pt;}
.yf3{bottom:352.186667pt;}
.y118{bottom:358.146667pt;}
.y22{bottom:363.426667pt;}
.y8d{bottom:365.666667pt;}
.yc9{bottom:369.986667pt;}
.yf2{bottom:370.786667pt;}
.y117{bottom:376.866667pt;}
.y21{bottom:382.146667pt;}
.yf1{bottom:389.506667pt;}
.y116{bottom:395.586667pt;}
.y20{bottom:400.866667pt;}
.yc8{bottom:403.106667pt;}
.yf0{bottom:408.226667pt;}
.y115{bottom:414.306667pt;}
.y1f{bottom:419.586667pt;}
.yc7{bottom:421.826667pt;}
.yef{bottom:426.946667pt;}
.y114{bottom:433.026667pt;}
.y1e{bottom:438.306667pt;}
.yc6{bottom:440.546667pt;}
.yee{bottom:445.666667pt;}
.y67{bottom:449.186667pt;}
.y113{bottom:451.746667pt;}
.y1d{bottom:457.026667pt;}
.yc5{bottom:459.266667pt;}
.yed{bottom:464.386667pt;}
.y112{bottom:470.466667pt;}
.y1c{bottom:475.746667pt;}
.yc4{bottom:477.986667pt;}
.y89{bottom:478.626667pt;}
.yec{bottom:483.106667pt;}
.y111{bottom:489.186667pt;}
.y1b{bottom:494.466667pt;}
.yc3{bottom:496.706667pt;}
.yeb{bottom:501.826667pt;}
.y110{bottom:507.906667pt;}
.yb3{bottom:512.706667pt;}
.y4f{bottom:513.186667pt;}
.y1a{bottom:515.426667pt;}
.yea{bottom:528.546667pt;}
.yb2{bottom:531.426667pt;}
.y4e{bottom:531.906667pt;}
.y10f{bottom:534.626667pt;}
.y88{bottom:541.346667pt;}
.y19{bottom:541.986667pt;}
.yc2{bottom:542.146667pt;}
.ye9{bottom:547.266667pt;}
.yb1{bottom:550.146667pt;}
.y4d{bottom:550.626667pt;}
.y10e{bottom:553.346667pt;}
.y18{bottom:560.706667pt;}
.yc1{bottom:560.866667pt;}
.ye8{bottom:565.986667pt;}
.y87{bottom:566.786667pt;}
.yb0{bottom:568.866667pt;}
.y4c{bottom:569.346667pt;}
.y10d{bottom:572.066667pt;}
.y17{bottom:579.453333pt;}
.yc0{bottom:579.613333pt;}
.y62{bottom:580.893333pt;}
.ye7{bottom:584.733333pt;}
.y86{bottom:585.373333pt;}
.yaf{bottom:587.613333pt;}
.y4b{bottom:588.093333pt;}
.y10c{bottom:590.813333pt;}
.y16{bottom:598.173333pt;}
.ybf{bottom:598.333333pt;}
.ye6{bottom:603.453333pt;}
.y85{bottom:604.093333pt;}
.yae{bottom:606.333333pt;}
.y4a{bottom:606.813333pt;}
.y10b{bottom:609.533333pt;}
.ybe{bottom:611.773333pt;}
.y15{bottom:616.893333pt;}
.ye5{bottom:622.173333pt;}
.y84{bottom:622.813333pt;}
.y49{bottom:625.533333pt;}
.y10a{bottom:628.253333pt;}
.yad{bottom:633.053333pt;}
.y14{bottom:635.613333pt;}
.ye4{bottom:640.893333pt;}
.y83{bottom:641.533333pt;}
.y48{bottom:644.253333pt;}
.y109{bottom:646.973333pt;}
.yac{bottom:651.773333pt;}
.y13{bottom:654.333333pt;}
.ye3{bottom:659.613333pt;}
.y82{bottom:660.253333pt;}
.y47{bottom:662.973333pt;}
.ybd{bottom:668.573333pt;}
.yab{bottom:670.493333pt;}
.y12{bottom:673.053333pt;}
.y108{bottom:673.693333pt;}
.y60{bottom:675.133333pt;}
.ye2{bottom:678.333333pt;}
.y81{bottom:678.973333pt;}
.y46{bottom:681.693333pt;}
.yaa{bottom:689.213333pt;}
.y11{bottom:691.613333pt;}
.ybc{bottom:692.253333pt;}
.y107{bottom:692.413333pt;}
.ye1{bottom:697.053333pt;}
.y80{bottom:697.693333pt;}
.y45{bottom:700.413333pt;}
.ya9{bottom:707.773333pt;}
.y10{bottom:710.333333pt;}
.y106{bottom:711.133333pt;}
.ye0{bottom:715.773333pt;}
.yb9{bottom:715.933333pt;}
.y7f{bottom:716.413333pt;}
.y44{bottom:719.133333pt;}
.ya8{bottom:726.493333pt;}
.yf{bottom:729.053333pt;}
.y105{bottom:729.853333pt;}
.ydf{bottom:734.493333pt;}
.y7e{bottom:735.133333pt;}
.y43{bottom:737.853333pt;}
.y9d{bottom:740.093333pt;}
.ye{bottom:747.773333pt;}
.y104{bottom:748.573333pt;}
.yde{bottom:753.213333pt;}
.y7d{bottom:753.853333pt;}
.y42{bottom:756.573333pt;}
.yb8{bottom:762.493333pt;}
.yd{bottom:766.653333pt;}
.y103{bottom:767.293333pt;}
.ydd{bottom:771.933333pt;}
.y7c{bottom:772.573333pt;}
.y41{bottom:775.293333pt;}
.y102{bottom:786.013333pt;}
.yc{bottom:787.293333pt;}
.ydc{bottom:790.653333pt;}
.y7b{bottom:791.293333pt;}
.y40{bottom:794.013333pt;}
.yb7{bottom:800.613333pt;}
.y101{bottom:804.773333pt;}
.ydb{bottom:809.413333pt;}
.y7a{bottom:810.053333pt;}
.yb{bottom:810.693333pt;}
.y3f{bottom:812.773333pt;}
.y79{bottom:823.493333pt;}
.ya{bottom:825.573333pt;}
.yda{bottom:828.133333pt;}
.y3e{bottom:831.493333pt;}
.yb5{bottom:838.693333pt;}
.y9{bottom:845.413333pt;}
.yd9{bottom:846.853333pt;}
.y3d{bottom:850.213333pt;}
.yb4{bottom:862.373333pt;}
.yd8{bottom:865.573333pt;}
.y8{bottom:867.813333pt;}
.y3c{bottom:868.933333pt;}
.y95{bottom:876.133333pt;}
.yd7{bottom:879.013333pt;}
.y3b{bottom:887.653333pt;}
.y7{bottom:897.733333pt;}
.y3a{bottom:906.373333pt;}
.yd6{bottom:917.093333pt;}
.y39{bottom:925.093333pt;}
.y5{bottom:933.413333pt;}
.y77{bottom:936.613333pt;}
.y38{bottom:943.813333pt;}
.yd5{bottom:955.333333pt;}
.y4{bottom:961.893333pt;}
.y37{bottom:962.533333pt;}
.y36{bottom:981.253333pt;}
.y3{bottom:990.533333pt;}
.yd4{bottom:993.413333pt;}
.y35{bottom:999.973333pt;}
.y76{bottom:1012.133333pt;}
.y34{bottom:1018.693333pt;}
.y2{bottom:1019.200000pt;}
.y33{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.hb{height:18.720000pt;}
.h12{height:18.752000pt;}
.h18{height:23.040000pt;}
.h1d{height:26.432000pt;}
.h1c{height:26.560000pt;}
.h7{height:34.374375pt;}
.h1e{height:37.280000pt;}
.h19{height:37.440000pt;}
.h1a{height:37.472000pt;}
.ha{height:42.693125pt;}
.h5{height:42.745000pt;}
.h1b{height:45.760000pt;}
.h8{height:52.834688pt;}
.h9{height:54.390938pt;}
.h10{height:56.000000pt;}
.h17{height:56.160000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h14{height:62.080000pt;}
.h13{height:74.720000pt;}
.h11{height:74.912000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.hc{height:93.600000pt;}
.hf{height:112.320000pt;}
.he{height:112.352000pt;}
.hd{height:131.072000pt;}
.h15{height:135.200000pt;}
.h16{height:135.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:65.312000pt;}
.we{width:84.032000pt;}
.w9{width:93.792000pt;}
.wf{width:102.912000pt;}
.w3{width:103.040000pt;}
.wa{width:103.200000pt;}
.wd{width:112.320000pt;}
.wb{width:150.426667pt;}
.w5{width:160.026667pt;}
.w7{width:190.586667pt;}
.w8{width:216.826667pt;}
.w6{width:295.746667pt;}
.w4{width:349.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.120000pt;}
.xa{left:6.880000pt;}
.x16{left:8.000000pt;}
.x17{left:12.960000pt;}
.xe{left:18.880000pt;}
.xd{left:26.560000pt;}
.x6{left:47.999988pt;}
.x21{left:57.439988pt;}
.x20{left:66.879988pt;}
.x22{left:71.999988pt;}
.x7{left:76.511988pt;}
.xf{left:85.791988pt;}
.x9{left:90.272000pt;}
.x8{left:95.231988pt;}
.x19{left:104.831988pt;}
.x14{left:113.632000pt;}
.x5{left:146.426655pt;}
.x10{left:153.466667pt;}
.xb{left:193.946667pt;}
.x1f{left:208.666655pt;}
.x1a{left:213.626667pt;}
.x3{left:254.946655pt;}
.x1b{left:279.586667pt;}
.x2{left:311.746655pt;}
.x12{left:324.706655pt;}
.x15{left:331.106667pt;}
.x4{left:372.706655pt;}
.x1c{left:392.546667pt;}
.x13{left:396.893322pt;}
.x1{left:426.173322pt;}
.x11{left:449.853333pt;}
.x1e{left:477.213333pt;}
.x18{left:529.693333pt;}
.xc{left:543.613333pt;}
.x23{left:746.079988pt;}
}




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