
    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_d60c5166fd56e8666b8f31df.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d441062a71629247e54b8dca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eac4233e8fbc86ada018d0d2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_04025d00db4bb53571940b72.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7a0ff09c31635bdf244edbe8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_66201837ebbf92715f34476e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_48fa056f31dc923375c461fb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_717c8526bfc4a547c68cf4bb.woff2')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;}
.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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-2.520000px;}
.lsc{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.135600px;}
.ls8{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls4{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.379920px;}
.lsb{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.720000px;}
.ls27{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.440000px;}
.ls2c{letter-spacing:2.160000px;}
.ls1b{letter-spacing:5.040000px;}
.ls0{letter-spacing:18.180000px;}
.ls5{letter-spacing:33.984000px;}
.ls2{letter-spacing:62.789760px;}
.ls2d{letter-spacing:66.240000px;}
.ls29{letter-spacing:84.240000px;}
.ls2a{letter-spacing:87.120000px;}
.ls3{letter-spacing:87.245760px;}
.ls28{letter-spacing:120.240000px;}
.lsa{letter-spacing:194.544000px;}
.ls25{letter-spacing:1968.096000px;}
.ls23{letter-spacing:2031.096000px;}
.ls26{letter-spacing:2136.936000px;}
.ls22{letter-spacing:2197.056000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.ws1d{word-spacing:-19.008000px;}
.ws16{word-spacing:-18.720000px;}
.ws1a{word-spacing:-18.576000px;}
.ws1c{word-spacing:-18.504000px;}
.wsa{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws1b{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.120000px;}
.ws18{word-spacing:-15.093600px;}
.ws19{word-spacing:-15.075600px;}
.ws15{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.833200px;}
.wsc{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.500000px;}
.ws17{word-spacing:-12.420000px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-17.101680px;}
._7{margin-left:-15.984000px;}
._a{margin-left:-13.920000px;}
._5{margin-left:-11.395920px;}
._1f{margin-left:-9.720000px;}
._8{margin-left:-7.696080px;}
._28{margin-left:-6.480000px;}
._9{margin-left:-5.424000px;}
._0{margin-left:-4.328640px;}
._1a{margin-left:-3.168000px;}
._2{margin-left:-2.131920px;}
._1{margin-left:-1.082160px;}
._3{width:1.023840px;}
._c{width:2.096160px;}
._11{width:3.380640px;}
._e{width:4.656000px;}
._f{width:5.660160px;}
._12{width:6.744000px;}
._13{width:7.768080px;}
._10{width:9.000000px;}
._d{width:10.008000px;}
._b{width:11.304000px;}
._18{width:13.104000px;}
._1e{width:14.340000px;}
._19{width:16.192320px;}
._26{width:19.254240px;}
._15{width:20.304000px;}
._16{width:21.512160px;}
._17{width:22.920000px;}
._1d{width:24.744000px;}
._1b{width:26.496000px;}
._1c{width:27.559920px;}
._27{width:28.656000px;}
._14{width:29.880000px;}
._25{width:31.536000px;}
._2e{width:32.952000px;}
._22{width:35.138160px;}
._23{width:36.139680px;}
._24{width:37.347120px;}
._2f{width:38.587680px;}
._20{width:40.104000px;}
._21{width:41.484480px;}
._2d{width:44.066160px;}
._2c{width:46.872000px;}
._2a{width:48.152160px;}
._29{width:53.755920px;}
._2b{width:55.152240px;}
._30{width:56.209920px;}
._4{width:720.372000px;}
.fc1{color:transparent;}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.y3e{bottom:-4.500000px;}
.y0{bottom:0.000000px;}
.y40{bottom:5.760000px;}
.y117{bottom:8.460000px;}
.yfd{bottom:8.490000px;}
.y113{bottom:8.634000px;}
.yff{bottom:8.640000px;}
.yc7{bottom:11.700000px;}
.yca{bottom:11.880000px;}
.ye3{bottom:11.910000px;}
.y3d{bottom:15.480000px;}
.y36{bottom:18.720000px;}
.y21{bottom:25.380000px;}
.y3c{bottom:32.760000px;}
.yea{bottom:37.614000px;}
.yd3{bottom:37.620000px;}
.yd7{bottom:37.665000px;}
.yc9{bottom:37.800000px;}
.ye2{bottom:37.830000px;}
.yce{bottom:37.845000px;}
.y35{bottom:47.880000px;}
.y20{bottom:48.600000px;}
.y3b{bottom:52.560000px;}
.y43{bottom:57.780000px;}
.yc5{bottom:57.816000px;}
.ye9{bottom:63.534000px;}
.yd1{bottom:63.540000px;}
.yd6{bottom:63.585000px;}
.ydd{bottom:63.720000px;}
.ycd{bottom:63.765000px;}
.y34{bottom:67.320000px;}
.y42{bottom:78.516000px;}
.y3a{bottom:82.254000px;}
.y1f{bottom:83.205000px;}
.ye8{bottom:89.454000px;}
.ydc{bottom:89.460000px;}
.ycc{bottom:89.505000px;}
.y37{bottom:91.836000px;}
.y33{bottom:96.660000px;}
.y115{bottom:100.656000px;}
.y72{bottom:106.236000px;}
.y39{bottom:106.374000px;}
.y13f{bottom:108.036000px;}
.ydb{bottom:115.380000px;}
.ya3{bottom:116.316000px;}
.y15a{bottom:117.936000px;}
.yd9{bottom:122.076000px;}
.y114{bottom:123.156000px;}
.yb2{bottom:124.236000px;}
.y32{bottom:124.605000px;}
.ye7{bottom:128.196000px;}
.y38{bottom:131.934000px;}
.y71{bottom:137.196000px;}
.y13e{bottom:139.176000px;}
.y112{bottom:145.656000px;}
.ya2{bottom:147.276000px;}
.y159{bottom:148.896000px;}
.y31{bottom:152.685000px;}
.yfb{bottom:153.030000px;}
.yb1{bottom:155.190000px;}
.yd8{bottom:156.090000px;}
.y111{bottom:168.150000px;}
.y70{bottom:168.330000px;}
.y13d{bottom:170.130000px;}
.y1d{bottom:175.350000px;}
.ya1{bottom:178.410000px;}
.y158{bottom:180.030000px;}
.yfa{bottom:184.170000px;}
.yb0{bottom:186.330000px;}
.y110{bottom:190.650000px;}
.y148{bottom:192.270000px;}
.y6f{bottom:199.290000px;}
.y13c{bottom:201.270000px;}
.y1c{bottom:206.310000px;}
.ya0{bottom:209.370000px;}
.y157{bottom:210.990000px;}
.y10f{bottom:213.150000px;}
.yf9{bottom:215.130000px;}
.yd5{bottom:216.210000px;}
.yaf{bottom:217.290000px;}
.y147{bottom:223.410000px;}
.y30{bottom:223.770000px;}
.y2f{bottom:227.550000px;}
.y6e{bottom:230.430000px;}
.y13b{bottom:232.230000px;}
.y10e{bottom:235.650000px;}
.y1b{bottom:237.450000px;}
.y9f{bottom:240.510000px;}
.ye6{bottom:240.735000px;}
.y156{bottom:242.130000px;}
.yf8{bottom:246.270000px;}
.yae{bottom:248.430000px;}
.y2e{bottom:248.790000px;}
.y146{bottom:254.370000px;}
.y10d{bottom:258.150000px;}
.y6d{bottom:261.390000px;}
.y13a{bottom:263.190000px;}
.y1a{bottom:268.590000px;}
.y9e{bottom:271.470000px;}
.y2d{bottom:272.910000px;}
.y155{bottom:273.090000px;}
.yf7{bottom:277.230000px;}
.yad{bottom:279.390000px;}
.y10c{bottom:280.650000px;}
.y145{bottom:281.730000px;}
.y6c{bottom:292.530000px;}
.y2c{bottom:296.310000px;}
.y19{bottom:299.730000px;}
.ye5{bottom:301.395000px;}
.y9d{bottom:302.610000px;}
.y10b{bottom:303.150000px;}
.y154{bottom:304.230000px;}
.y144{bottom:305.130000px;}
.yf6{bottom:308.370000px;}
.yac{bottom:310.530000px;}
.y139{bottom:315.030000px;}
.y2b{bottom:317.010000px;}
.y6b{bottom:323.490000px;}
.y10a{bottom:325.650000px;}
.yd4{bottom:327.855000px;}
.y18{bottom:330.690000px;}
.y143{bottom:331.950000px;}
.y9c{bottom:333.570000px;}
.y153{bottom:335.190000px;}
.yf5{bottom:335.730000px;}
.y2a{bottom:337.710000px;}
.yab{bottom:341.535000px;}
.yc2{bottom:345.495000px;}
.y109{bottom:348.195000px;}
.y6a{bottom:354.675000px;}
.y152{bottom:355.935000px;}
.y29{bottom:359.130000px;}
.y17{bottom:361.875000px;}
.ye4{bottom:362.235000px;}
.y138{bottom:363.135000px;}
.y9b{bottom:364.755000px;}
.y108{bottom:370.695000px;}
.yaa{bottom:372.675000px;}
.yc1{bottom:376.455000px;}
.y28{bottom:383.250000px;}
.y69{bottom:385.635000px;}
.y137{bottom:386.535000px;}
.y151{bottom:387.075000px;}
.yd2{bottom:387.975000px;}
.y16{bottom:392.835000px;}
.y107{bottom:393.195000px;}
.y9a{bottom:395.715000px;}
.y22{bottom:397.335000px;}
.y136{bottom:399.855000px;}
.ya9{bottom:403.635000px;}
.y27{bottom:406.650000px;}
.yc0{bottom:407.415000px;}
.y106{bottom:415.695000px;}
.y68{bottom:416.775000px;}
.y150{bottom:418.035000px;}
.ye1{bottom:422.175000px;}
.y135{bottom:422.355000px;}
.y15{bottom:423.975000px;}
.y99{bottom:426.855000px;}
.y26{bottom:427.350000px;}
.ya8{bottom:434.775000px;}
.y105{bottom:438.195000px;}
.ybf{bottom:438.555000px;}
.y14f{bottom:438.735000px;}
.y134{bottom:444.855000px;}
.y67{bottom:447.735000px;}
.yd0{bottom:447.945000px;}
.y25{bottom:448.050000px;}
.y14{bottom:454.935000px;}
.yf1{bottom:455.325000px;}
.y98{bottom:457.815000px;}
.y104{bottom:460.695000px;}
.ya7{bottom:465.735000px;}
.y14e{bottom:466.275000px;}
.y133{bottom:467.355000px;}
.ybe{bottom:469.515000px;}
.y24{bottom:469.650000px;}
.yf0{bottom:478.545000px;}
.y66{bottom:478.875000px;}
.ye0{bottom:482.145000px;}
.y103{bottom:483.195000px;}
.y13{bottom:486.075000px;}
.y97{bottom:488.955000px;}
.y14d{bottom:489.495000px;}
.y132{bottom:489.855000px;}
.y23{bottom:493.815000px;}
.yef{bottom:496.185000px;}
.ya6{bottom:496.875000px;}
.ybd{bottom:500.655000px;}
.y102{bottom:505.695000px;}
.y65{bottom:509.835000px;}
.y131{bottom:512.355000px;}
.y14c{bottom:516.135000px;}
.y12{bottom:517.035000px;}
.y96{bottom:519.915000px;}
.ya5{bottom:527.835000px;}
.y101{bottom:528.195000px;}
.ybc{bottom:531.615000px;}
.ycf{bottom:533.805000px;}
.y130{bottom:534.855000px;}
.y64{bottom:540.975000px;}
.ydf{bottom:542.265000px;}
.y11{bottom:548.175000px;}
.y100{bottom:550.695000px;}
.y95{bottom:551.055000px;}
.yee{bottom:556.845000px;}
.y12f{bottom:557.355000px;}
.ya4{bottom:558.975000px;}
.ybb{bottom:562.755000px;}
.y63{bottom:571.935000px;}
.yfe{bottom:573.195000px;}
.y10{bottom:579.135000px;}
.y12e{bottom:579.855000px;}
.y94{bottom:582.015000px;}
.y83{bottom:589.935000px;}
.yba{bottom:593.715000px;}
.ycb{bottom:593.745000px;}
.yfc{bottom:596.595000px;}
.yde{bottom:602.205000px;}
.y12d{bottom:602.355000px;}
.y62{bottom:603.075000px;}
.yf{bottom:610.305000px;}
.y93{bottom:613.185000px;}
.yed{bottom:617.550000px;}
.y82{bottom:621.105000px;}
.yb9{bottom:624.885000px;}
.y61{bottom:634.065000px;}
.ye{bottom:641.265000px;}
.y92{bottom:644.145000px;}
.y12c{bottom:647.385000px;}
.y81{bottom:652.065000px;}
.yb8{bottom:655.845000px;}
.y142{bottom:656.925000px;}
.yda{bottom:662.190000px;}
.y60{bottom:665.205000px;}
.y12b{bottom:669.885000px;}
.yd{bottom:672.405000px;}
.y91{bottom:675.285000px;}
.yec{bottom:678.390000px;}
.y80{bottom:683.205000px;}
.yb7{bottom:686.985000px;}
.y141{bottom:688.065000px;}
.y12a{bottom:692.385000px;}
.y5f{bottom:696.165000px;}
.yc{bottom:703.365000px;}
.yc8{bottom:705.570000px;}
.y90{bottom:706.245000px;}
.y7f{bottom:714.165000px;}
.y129{bottom:714.885000px;}
.yb6{bottom:717.945000px;}
.y140{bottom:719.025000px;}
.y5e{bottom:727.305000px;}
.yb{bottom:734.505000px;}
.y8f{bottom:737.385000px;}
.yeb{bottom:739.050000px;}
.y7e{bottom:745.305000px;}
.yb5{bottom:745.485000px;}
.yf4{bottom:749.445000px;}
.y5d{bottom:758.265000px;}
.y128{bottom:759.885000px;}
.ya{bottom:765.465000px;}
.yc6{bottom:765.690000px;}
.y8e{bottom:768.345000px;}
.yb4{bottom:768.705000px;}
.y7d{bottom:776.265000px;}
.y127{bottom:782.385000px;}
.y5c{bottom:789.405000px;}
.yb3{bottom:791.565000px;}
.y1e{bottom:795.705000px;}
.y9{bottom:796.605000px;}
.y8d{bottom:799.305000px;}
.yc4{bottom:799.710000px;}
.y126{bottom:804.885000px;}
.y7c{bottom:807.405000px;}
.y50{bottom:807.585000px;}
.y14b{bottom:812.445000px;}
.yc3{bottom:816.480000px;}
.y5b{bottom:820.365000px;}
.y125{bottom:827.385000px;}
.y8{bottom:827.565000px;}
.y8c{bottom:830.445000px;}
.y4f{bottom:835.845000px;}
.y7b{bottom:838.365000px;}
.y14a{bottom:843.405000px;}
.y124{bottom:849.885000px;}
.y5a{bottom:851.505000px;}
.y7{bottom:858.705000px;}
.y8b{bottom:861.405000px;}
.y4e{bottom:864.105000px;}
.y7a{bottom:869.505000px;}
.y123{bottom:872.430000px;}
.y149{bottom:874.410000px;}
.y59{bottom:882.510000px;}
.y6{bottom:889.710000px;}
.y4d{bottom:892.230000px;}
.y8a{bottom:892.590000px;}
.y122{bottom:894.930000px;}
.y79{bottom:900.510000px;}
.y58{bottom:913.650000px;}
.y121{bottom:917.430000px;}
.y4c{bottom:920.490000px;}
.y5{bottom:920.850000px;}
.y89{bottom:923.550000px;}
.y78{bottom:931.650000px;}
.y120{bottom:939.930000px;}
.y57{bottom:944.610000px;}
.y4b{bottom:948.750000px;}
.y4{bottom:951.810000px;}
.y88{bottom:954.690000px;}
.y11f{bottom:962.430000px;}
.y77{bottom:962.610000px;}
.y56{bottom:975.750000px;}
.y4a{bottom:976.830000px;}
.y3{bottom:982.950000px;}
.y11e{bottom:984.930000px;}
.y87{bottom:985.650000px;}
.y76{bottom:993.750000px;}
.y2{bottom:1003.650000px;}
.y49{bottom:1005.090000px;}
.y55{bottom:1006.710000px;}
.y11d{bottom:1007.430000px;}
.y86{bottom:1016.790000px;}
.y75{bottom:1024.710000px;}
.y1{bottom:1029.390000px;}
.y11c{bottom:1029.930000px;}
.y48{bottom:1033.350000px;}
.y54{bottom:1037.850000px;}
.y85{bottom:1047.750000px;}
.y11b{bottom:1052.430000px;}
.y74{bottom:1055.850000px;}
.y47{bottom:1061.430000px;}
.y53{bottom:1068.810000px;}
.y11a{bottom:1074.930000px;}
.yf3{bottom:1078.890000px;}
.y73{bottom:1086.810000px;}
.y46{bottom:1089.690000px;}
.y84{bottom:1096.890000px;}
.y119{bottom:1097.430000px;}
.y52{bottom:1099.950000px;}
.y45{bottom:1117.950000px;}
.y118{bottom:1119.930000px;}
.yf2{bottom:1127.850000px;}
.y116{bottom:1142.460000px;}
.y51{bottom:1148.760000px;}
.y44{bottom:1148.940000px;}
.y41{bottom:1169.640000px;}
.y3f{bottom:1186.380000px;}
.h14{height:22.500000px;}
.h25{height:22.536000px;}
.h1a{height:25.740000px;}
.h1f{height:25.920000px;}
.h16{height:48.410156px;}
.h22{height:51.660000px;}
.h1e{height:51.696000px;}
.h1b{height:51.840000px;}
.h21{height:51.876000px;}
.h17{height:52.998047px;}
.h12{height:53.573906px;}
.h24{height:53.868164px;}
.h13{height:58.651172px;}
.hf{height:59.383125px;}
.h8{height:60.999961px;}
.h15{height:64.546875px;}
.hd{height:65.010937px;}
.he{height:68.084282px;}
.h3{height:70.664062px;}
.h26{height:71.824219px;}
.ha{height:74.004654px;}
.h4{height:74.953125px;}
.h1d{height:77.580000px;}
.hb{height:82.676953px;}
.h9{height:86.585445px;}
.h23{height:103.500000px;}
.h1c{height:103.536000px;}
.h6{height:107.793281px;}
.h11{height:111.006981px;}
.h5{height:111.096000px;}
.h20{height:129.420000px;}
.h2{height:148.009309px;}
.h10{height:157.140000px;}
.hc{height:168.150000px;}
.h7{height:513.435000px;}
.h18{height:892.980000px;}
.h19{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:73.260000px;}
.wf{width:73.980000px;}
.we{width:74.160000px;}
.w19{width:116.460000px;}
.w12{width:117.180000px;}
.w15{width:117.576000px;}
.wd{width:118.116000px;}
.w1f{width:119.340000px;}
.w1d{width:127.116000px;}
.w1a{width:136.656000px;}
.w13{width:137.196000px;}
.w18{width:137.916000px;}
.w11{width:138.456000px;}
.w1e{width:141.696000px;}
.w1b{width:192.420000px;}
.w14{width:192.960000px;}
.w17{width:231.330000px;}
.w10{width:231.870000px;}
.w8{width:240.690000px;}
.w9{width:240.870000px;}
.w7{width:240.915000px;}
.w3{width:249.149973px;}
.w5{width:322.815000px;}
.w1c{width:334.335000px;}
.w4{width:584.925000px;}
.w6{width:726.270000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:1262.879981px;}
.wa{width:1262.880000px;}
.wb{width:1263.000000px;}
.x0{left:0.000000px;}
.x41{left:4.860000px;}
.x40{left:6.120000px;}
.x2b{left:8.100000px;}
.x3d{left:9.540000px;}
.xa{left:10.800000px;}
.x39{left:12.060000px;}
.x32{left:14.040000px;}
.x44{left:15.300000px;}
.x12{left:18.030000px;}
.x3a{left:19.980000px;}
.x34{left:21.780000px;}
.x27{left:23.040000px;}
.xc{left:24.660000px;}
.xb{left:26.640000px;}
.x5{left:27.899973px;}
.x8{left:28.980000px;}
.x4{left:31.319973px;}
.x54{left:32.580000px;}
.x46{left:34.560000px;}
.x16{left:36.216000px;}
.x58{left:37.620000px;}
.x43{left:38.880000px;}
.x38{left:40.140000px;}
.x24{left:41.436000px;}
.x37{left:43.200000px;}
.x3b{left:44.496000px;}
.x33{left:46.476000px;}
.x3e{left:47.700000px;}
.x2d{left:48.960000px;}
.x45{left:50.256000px;}
.x49{left:52.200000px;}
.x36{left:53.280000px;}
.x2f{left:55.980000px;}
.x3f{left:57.600000px;}
.x52{left:59.580000px;}
.x3c{left:60.705000px;}
.x47{left:63.900000px;}
.x29{left:65.565000px;}
.x31{left:66.600000px;}
.x35{left:71.505000px;}
.x13{left:73.650000px;}
.x42{left:75.960000px;}
.x2{left:84.959987px;}
.x20{left:86.219987px;}
.x23{left:89.100000px;}
.x4a{left:90.539981px;}
.x11{left:92.550000px;}
.x56{left:94.890000px;}
.x48{left:99.585000px;}
.x1d{left:102.995987px;}
.x5a{left:104.610000px;}
.x6b{left:106.410000px;}
.x10{left:108.030000px;}
.x6d{left:110.010000px;}
.x6{left:111.635973px;}
.x62{left:118.830000px;}
.x19{left:120.240000px;}
.x4d{left:121.535987px;}
.x51{left:131.430000px;}
.x75{left:133.055987px;}
.x1e{left:138.995987px;}
.x6e{left:140.250000px;}
.x5d{left:149.790000px;}
.x74{left:173.369987px;}
.x6c{left:176.970000px;}
.x6f{left:191.909987px;}
.x73{left:193.889987px;}
.x5c{left:199.875000px;}
.x17{left:201.135000px;}
.x25{left:207.390000px;}
.x71{left:213.149987px;}
.x4b{left:217.469981px;}
.x60{left:229.035000px;}
.x63{left:230.295000px;}
.x57{left:232.275000px;}
.x9{left:239.250000px;}
.x1b{left:241.245000px;}
.x61{left:247.755000px;}
.x59{left:253.515000px;}
.xd{left:259.770000px;}
.x69{left:262.695000px;}
.x66{left:266.115000px;}
.x21{left:271.649987px;}
.x53{left:276.915000px;}
.x7{left:279.795000px;}
.x26{left:281.550000px;}
.x55{left:289.335000px;}
.x5e{left:291.135000px;}
.xe{left:292.350000px;}
.x5f{left:297.795000px;}
.x6a{left:301.935000px;}
.x67{left:304.455000px;}
.x64{left:306.075000px;}
.x68{left:307.695000px;}
.x65{left:309.315000px;}
.x72{left:312.374987px;}
.x15{left:315.975000px;}
.x5b{left:318.495000px;}
.x18{left:325.875000px;}
.x28{left:355.710000px;}
.x14{left:362.955000px;}
.x4e{left:419.295000px;}
.x3{left:446.474987px;}
.xf{left:455.295000px;}
.x70{left:472.964987px;}
.x4f{left:546.405000px;}
.x1a{left:566.565000px;}
.x2a{left:587.775000px;}
.x1f{left:686.849987px;}
.x50{left:688.110000px;}
.x2c{left:726.225000px;}
.x1{left:772.709987px;}
.x4c{left:789.989987px;}
.x1c{left:798.989987px;}
.x2e{left:843.585000px;}
.x30{left:980.970000px;}
.x22{left:1159.889981px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-2.240000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.120533pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls4{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.337707pt;}
.lsb{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:4.480000pt;}
.ls0{letter-spacing:16.160000pt;}
.ls5{letter-spacing:30.208000pt;}
.ls2{letter-spacing:55.813120pt;}
.ls2d{letter-spacing:58.880000pt;}
.ls29{letter-spacing:74.880000pt;}
.ls2a{letter-spacing:77.440000pt;}
.ls3{letter-spacing:77.551787pt;}
.ls28{letter-spacing:106.880000pt;}
.lsa{letter-spacing:172.928000pt;}
.ls25{letter-spacing:1749.418667pt;}
.ls23{letter-spacing:1805.418667pt;}
.ls26{letter-spacing:1899.498667pt;}
.ls22{letter-spacing:1952.938667pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1d{word-spacing:-16.896000pt;}
.ws16{word-spacing:-16.640000pt;}
.ws1a{word-spacing:-16.512000pt;}
.ws1c{word-spacing:-16.448000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.440000pt;}
.ws18{word-spacing:-13.416533pt;}
.ws19{word-spacing:-13.400533pt;}
.ws15{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-15.201493pt;}
._7{margin-left:-14.208000pt;}
._a{margin-left:-12.373333pt;}
._5{margin-left:-10.129707pt;}
._1f{margin-left:-8.640000pt;}
._8{margin-left:-6.840960pt;}
._28{margin-left:-5.760000pt;}
._9{margin-left:-4.821333pt;}
._0{margin-left:-3.847680pt;}
._1a{margin-left:-2.816000pt;}
._2{margin-left:-1.895040pt;}
._1{margin-left:-0.961920pt;}
._3{width:0.910080pt;}
._c{width:1.863253pt;}
._11{width:3.005013pt;}
._e{width:4.138667pt;}
._f{width:5.031253pt;}
._12{width:5.994667pt;}
._13{width:6.904960pt;}
._10{width:8.000000pt;}
._d{width:8.896000pt;}
._b{width:10.048000pt;}
._18{width:11.648000pt;}
._1e{width:12.746667pt;}
._19{width:14.393173pt;}
._26{width:17.114880pt;}
._15{width:18.048000pt;}
._16{width:19.121920pt;}
._17{width:20.373333pt;}
._1d{width:21.994667pt;}
._1b{width:23.552000pt;}
._1c{width:24.497707pt;}
._27{width:25.472000pt;}
._14{width:26.560000pt;}
._25{width:28.032000pt;}
._2e{width:29.290667pt;}
._22{width:31.233920pt;}
._23{width:32.124160pt;}
._24{width:33.197440pt;}
._2f{width:34.300160pt;}
._20{width:35.648000pt;}
._21{width:36.875093pt;}
._2d{width:39.169920pt;}
._2c{width:41.664000pt;}
._2a{width:42.801920pt;}
._29{width:47.783040pt;}
._2b{width:49.024213pt;}
._30{width:49.964373pt;}
._4{width:640.330667pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.y3e{bottom:-4.000000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:5.120000pt;}
.y117{bottom:7.520000pt;}
.yfd{bottom:7.546667pt;}
.y113{bottom:7.674667pt;}
.yff{bottom:7.680000pt;}
.yc7{bottom:10.400000pt;}
.yca{bottom:10.560000pt;}
.ye3{bottom:10.586667pt;}
.y3d{bottom:13.760000pt;}
.y36{bottom:16.640000pt;}
.y21{bottom:22.560000pt;}
.y3c{bottom:29.120000pt;}
.yea{bottom:33.434667pt;}
.yd3{bottom:33.440000pt;}
.yd7{bottom:33.480000pt;}
.yc9{bottom:33.600000pt;}
.ye2{bottom:33.626667pt;}
.yce{bottom:33.640000pt;}
.y35{bottom:42.560000pt;}
.y20{bottom:43.200000pt;}
.y3b{bottom:46.720000pt;}
.y43{bottom:51.360000pt;}
.yc5{bottom:51.392000pt;}
.ye9{bottom:56.474667pt;}
.yd1{bottom:56.480000pt;}
.yd6{bottom:56.520000pt;}
.ydd{bottom:56.640000pt;}
.ycd{bottom:56.680000pt;}
.y34{bottom:59.840000pt;}
.y42{bottom:69.792000pt;}
.y3a{bottom:73.114667pt;}
.y1f{bottom:73.960000pt;}
.ye8{bottom:79.514667pt;}
.ydc{bottom:79.520000pt;}
.ycc{bottom:79.560000pt;}
.y37{bottom:81.632000pt;}
.y33{bottom:85.920000pt;}
.y115{bottom:89.472000pt;}
.y72{bottom:94.432000pt;}
.y39{bottom:94.554667pt;}
.y13f{bottom:96.032000pt;}
.ydb{bottom:102.560000pt;}
.ya3{bottom:103.392000pt;}
.y15a{bottom:104.832000pt;}
.yd9{bottom:108.512000pt;}
.y114{bottom:109.472000pt;}
.yb2{bottom:110.432000pt;}
.y32{bottom:110.760000pt;}
.ye7{bottom:113.952000pt;}
.y38{bottom:117.274667pt;}
.y71{bottom:121.952000pt;}
.y13e{bottom:123.712000pt;}
.y112{bottom:129.472000pt;}
.ya2{bottom:130.912000pt;}
.y159{bottom:132.352000pt;}
.y31{bottom:135.720000pt;}
.yfb{bottom:136.026667pt;}
.yb1{bottom:137.946667pt;}
.yd8{bottom:138.746667pt;}
.y111{bottom:149.466667pt;}
.y70{bottom:149.626667pt;}
.y13d{bottom:151.226667pt;}
.y1d{bottom:155.866667pt;}
.ya1{bottom:158.586667pt;}
.y158{bottom:160.026667pt;}
.yfa{bottom:163.706667pt;}
.yb0{bottom:165.626667pt;}
.y110{bottom:169.466667pt;}
.y148{bottom:170.906667pt;}
.y6f{bottom:177.146667pt;}
.y13c{bottom:178.906667pt;}
.y1c{bottom:183.386667pt;}
.ya0{bottom:186.106667pt;}
.y157{bottom:187.546667pt;}
.y10f{bottom:189.466667pt;}
.yf9{bottom:191.226667pt;}
.yd5{bottom:192.186667pt;}
.yaf{bottom:193.146667pt;}
.y147{bottom:198.586667pt;}
.y30{bottom:198.906667pt;}
.y2f{bottom:202.266667pt;}
.y6e{bottom:204.826667pt;}
.y13b{bottom:206.426667pt;}
.y10e{bottom:209.466667pt;}
.y1b{bottom:211.066667pt;}
.y9f{bottom:213.786667pt;}
.ye6{bottom:213.986667pt;}
.y156{bottom:215.226667pt;}
.yf8{bottom:218.906667pt;}
.yae{bottom:220.826667pt;}
.y2e{bottom:221.146667pt;}
.y146{bottom:226.106667pt;}
.y10d{bottom:229.466667pt;}
.y6d{bottom:232.346667pt;}
.y13a{bottom:233.946667pt;}
.y1a{bottom:238.746667pt;}
.y9e{bottom:241.306667pt;}
.y2d{bottom:242.586667pt;}
.y155{bottom:242.746667pt;}
.yf7{bottom:246.426667pt;}
.yad{bottom:248.346667pt;}
.y10c{bottom:249.466667pt;}
.y145{bottom:250.426667pt;}
.y6c{bottom:260.026667pt;}
.y2c{bottom:263.386667pt;}
.y19{bottom:266.426667pt;}
.ye5{bottom:267.906667pt;}
.y9d{bottom:268.986667pt;}
.y10b{bottom:269.466667pt;}
.y154{bottom:270.426667pt;}
.y144{bottom:271.226667pt;}
.yf6{bottom:274.106667pt;}
.yac{bottom:276.026667pt;}
.y139{bottom:280.026667pt;}
.y2b{bottom:281.786667pt;}
.y6b{bottom:287.546667pt;}
.y10a{bottom:289.466667pt;}
.yd4{bottom:291.426667pt;}
.y18{bottom:293.946667pt;}
.y143{bottom:295.066667pt;}
.y9c{bottom:296.506667pt;}
.y153{bottom:297.946667pt;}
.yf5{bottom:298.426667pt;}
.y2a{bottom:300.186667pt;}
.yab{bottom:303.586667pt;}
.yc2{bottom:307.106667pt;}
.y109{bottom:309.506667pt;}
.y6a{bottom:315.266667pt;}
.y152{bottom:316.386667pt;}
.y29{bottom:319.226667pt;}
.y17{bottom:321.666667pt;}
.ye4{bottom:321.986667pt;}
.y138{bottom:322.786667pt;}
.y9b{bottom:324.226667pt;}
.y108{bottom:329.506667pt;}
.yaa{bottom:331.266667pt;}
.yc1{bottom:334.626667pt;}
.y28{bottom:340.666667pt;}
.y69{bottom:342.786667pt;}
.y137{bottom:343.586667pt;}
.y151{bottom:344.066667pt;}
.yd2{bottom:344.866667pt;}
.y16{bottom:349.186667pt;}
.y107{bottom:349.506667pt;}
.y9a{bottom:351.746667pt;}
.y22{bottom:353.186667pt;}
.y136{bottom:355.426667pt;}
.ya9{bottom:358.786667pt;}
.y27{bottom:361.466667pt;}
.yc0{bottom:362.146667pt;}
.y106{bottom:369.506667pt;}
.y68{bottom:370.466667pt;}
.y150{bottom:371.586667pt;}
.ye1{bottom:375.266667pt;}
.y135{bottom:375.426667pt;}
.y15{bottom:376.866667pt;}
.y99{bottom:379.426667pt;}
.y26{bottom:379.866667pt;}
.ya8{bottom:386.466667pt;}
.y105{bottom:389.506667pt;}
.ybf{bottom:389.826667pt;}
.y14f{bottom:389.986667pt;}
.y134{bottom:395.426667pt;}
.y67{bottom:397.986667pt;}
.yd0{bottom:398.173333pt;}
.y25{bottom:398.266667pt;}
.y14{bottom:404.386667pt;}
.yf1{bottom:404.733333pt;}
.y98{bottom:406.946667pt;}
.y104{bottom:409.506667pt;}
.ya7{bottom:413.986667pt;}
.y14e{bottom:414.466667pt;}
.y133{bottom:415.426667pt;}
.ybe{bottom:417.346667pt;}
.y24{bottom:417.466667pt;}
.yf0{bottom:425.373333pt;}
.y66{bottom:425.666667pt;}
.ye0{bottom:428.573333pt;}
.y103{bottom:429.506667pt;}
.y13{bottom:432.066667pt;}
.y97{bottom:434.626667pt;}
.y14d{bottom:435.106667pt;}
.y132{bottom:435.426667pt;}
.y23{bottom:438.946667pt;}
.yef{bottom:441.053333pt;}
.ya6{bottom:441.666667pt;}
.ybd{bottom:445.026667pt;}
.y102{bottom:449.506667pt;}
.y65{bottom:453.186667pt;}
.y131{bottom:455.426667pt;}
.y14c{bottom:458.786667pt;}
.y12{bottom:459.586667pt;}
.y96{bottom:462.146667pt;}
.ya5{bottom:469.186667pt;}
.y101{bottom:469.506667pt;}
.ybc{bottom:472.546667pt;}
.ycf{bottom:474.493333pt;}
.y130{bottom:475.426667pt;}
.y64{bottom:480.866667pt;}
.ydf{bottom:482.013333pt;}
.y11{bottom:487.266667pt;}
.y100{bottom:489.506667pt;}
.y95{bottom:489.826667pt;}
.yee{bottom:494.973333pt;}
.y12f{bottom:495.426667pt;}
.ya4{bottom:496.866667pt;}
.ybb{bottom:500.226667pt;}
.y63{bottom:508.386667pt;}
.yfe{bottom:509.506667pt;}
.y10{bottom:514.786667pt;}
.y12e{bottom:515.426667pt;}
.y94{bottom:517.346667pt;}
.y83{bottom:524.386667pt;}
.yba{bottom:527.746667pt;}
.ycb{bottom:527.773333pt;}
.yfc{bottom:530.306667pt;}
.yde{bottom:535.293333pt;}
.y12d{bottom:535.426667pt;}
.y62{bottom:536.066667pt;}
.yf{bottom:542.493333pt;}
.y93{bottom:545.053333pt;}
.yed{bottom:548.933333pt;}
.y82{bottom:552.093333pt;}
.yb9{bottom:555.453333pt;}
.y61{bottom:563.613333pt;}
.ye{bottom:570.013333pt;}
.y92{bottom:572.573333pt;}
.y12c{bottom:575.453333pt;}
.y81{bottom:579.613333pt;}
.yb8{bottom:582.973333pt;}
.y142{bottom:583.933333pt;}
.yda{bottom:588.613333pt;}
.y60{bottom:591.293333pt;}
.y12b{bottom:595.453333pt;}
.yd{bottom:597.693333pt;}
.y91{bottom:600.253333pt;}
.yec{bottom:603.013333pt;}
.y80{bottom:607.293333pt;}
.yb7{bottom:610.653333pt;}
.y141{bottom:611.613333pt;}
.y12a{bottom:615.453333pt;}
.y5f{bottom:618.813333pt;}
.yc{bottom:625.213333pt;}
.yc8{bottom:627.173333pt;}
.y90{bottom:627.773333pt;}
.y7f{bottom:634.813333pt;}
.y129{bottom:635.453333pt;}
.yb6{bottom:638.173333pt;}
.y140{bottom:639.133333pt;}
.y5e{bottom:646.493333pt;}
.yb{bottom:652.893333pt;}
.y8f{bottom:655.453333pt;}
.yeb{bottom:656.933333pt;}
.y7e{bottom:662.493333pt;}
.yb5{bottom:662.653333pt;}
.yf4{bottom:666.173333pt;}
.y5d{bottom:674.013333pt;}
.y128{bottom:675.453333pt;}
.ya{bottom:680.413333pt;}
.yc6{bottom:680.613333pt;}
.y8e{bottom:682.973333pt;}
.yb4{bottom:683.293333pt;}
.y7d{bottom:690.013333pt;}
.y127{bottom:695.453333pt;}
.y5c{bottom:701.693333pt;}
.yb3{bottom:703.613333pt;}
.y1e{bottom:707.293333pt;}
.y9{bottom:708.093333pt;}
.y8d{bottom:710.493333pt;}
.yc4{bottom:710.853333pt;}
.y126{bottom:715.453333pt;}
.y7c{bottom:717.693333pt;}
.y50{bottom:717.853333pt;}
.y14b{bottom:722.173333pt;}
.yc3{bottom:725.760000pt;}
.y5b{bottom:729.213333pt;}
.y125{bottom:735.453333pt;}
.y8{bottom:735.613333pt;}
.y8c{bottom:738.173333pt;}
.y4f{bottom:742.973333pt;}
.y7b{bottom:745.213333pt;}
.y14a{bottom:749.693333pt;}
.y124{bottom:755.453333pt;}
.y5a{bottom:756.893333pt;}
.y7{bottom:763.293333pt;}
.y8b{bottom:765.693333pt;}
.y4e{bottom:768.093333pt;}
.y7a{bottom:772.893333pt;}
.y123{bottom:775.493333pt;}
.y149{bottom:777.253333pt;}
.y59{bottom:784.453333pt;}
.y6{bottom:790.853333pt;}
.y4d{bottom:793.093333pt;}
.y8a{bottom:793.413333pt;}
.y122{bottom:795.493333pt;}
.y79{bottom:800.453333pt;}
.y58{bottom:812.133333pt;}
.y121{bottom:815.493333pt;}
.y4c{bottom:818.213333pt;}
.y5{bottom:818.533333pt;}
.y89{bottom:820.933333pt;}
.y78{bottom:828.133333pt;}
.y120{bottom:835.493333pt;}
.y57{bottom:839.653333pt;}
.y4b{bottom:843.333333pt;}
.y4{bottom:846.053333pt;}
.y88{bottom:848.613333pt;}
.y11f{bottom:855.493333pt;}
.y77{bottom:855.653333pt;}
.y56{bottom:867.333333pt;}
.y4a{bottom:868.293333pt;}
.y3{bottom:873.733333pt;}
.y11e{bottom:875.493333pt;}
.y87{bottom:876.133333pt;}
.y76{bottom:883.333333pt;}
.y2{bottom:892.133333pt;}
.y49{bottom:893.413333pt;}
.y55{bottom:894.853333pt;}
.y11d{bottom:895.493333pt;}
.y86{bottom:903.813333pt;}
.y75{bottom:910.853333pt;}
.y1{bottom:915.013333pt;}
.y11c{bottom:915.493333pt;}
.y48{bottom:918.533333pt;}
.y54{bottom:922.533333pt;}
.y85{bottom:931.333333pt;}
.y11b{bottom:935.493333pt;}
.y74{bottom:938.533333pt;}
.y47{bottom:943.493333pt;}
.y53{bottom:950.053333pt;}
.y11a{bottom:955.493333pt;}
.yf3{bottom:959.013333pt;}
.y73{bottom:966.053333pt;}
.y46{bottom:968.613333pt;}
.y84{bottom:975.013333pt;}
.y119{bottom:975.493333pt;}
.y52{bottom:977.733333pt;}
.y45{bottom:993.733333pt;}
.y118{bottom:995.493333pt;}
.yf2{bottom:1002.533333pt;}
.y116{bottom:1015.520000pt;}
.y51{bottom:1021.120000pt;}
.y44{bottom:1021.280000pt;}
.y41{bottom:1039.680000pt;}
.y3f{bottom:1054.560000pt;}
.h14{height:20.000000pt;}
.h25{height:20.032000pt;}
.h1a{height:22.880000pt;}
.h1f{height:23.040000pt;}
.h16{height:43.031250pt;}
.h22{height:45.920000pt;}
.h1e{height:45.952000pt;}
.h1b{height:46.080000pt;}
.h21{height:46.112000pt;}
.h17{height:47.109375pt;}
.h12{height:47.621250pt;}
.h24{height:47.882812pt;}
.h13{height:52.134375pt;}
.hf{height:52.785000pt;}
.h8{height:54.222187pt;}
.h15{height:57.375000pt;}
.hd{height:57.787500pt;}
.he{height:60.519362pt;}
.h3{height:62.812500pt;}
.h26{height:63.843750pt;}
.ha{height:65.781915pt;}
.h4{height:66.625000pt;}
.h1d{height:68.960000pt;}
.hb{height:73.490625pt;}
.h9{height:76.964840pt;}
.h23{height:92.000000pt;}
.h1c{height:92.032000pt;}
.h6{height:95.816250pt;}
.h11{height:98.672872pt;}
.h5{height:98.752000pt;}
.h20{height:115.040000pt;}
.h2{height:131.563830pt;}
.h10{height:139.680000pt;}
.hc{height:149.466667pt;}
.h7{height:456.386667pt;}
.h18{height:793.760000pt;}
.h19{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:65.120000pt;}
.wf{width:65.760000pt;}
.we{width:65.920000pt;}
.w19{width:103.520000pt;}
.w12{width:104.160000pt;}
.w15{width:104.512000pt;}
.wd{width:104.992000pt;}
.w1f{width:106.080000pt;}
.w1d{width:112.992000pt;}
.w1a{width:121.472000pt;}
.w13{width:121.952000pt;}
.w18{width:122.592000pt;}
.w11{width:123.072000pt;}
.w1e{width:125.952000pt;}
.w1b{width:171.040000pt;}
.w14{width:171.520000pt;}
.w17{width:205.626667pt;}
.w10{width:206.106667pt;}
.w8{width:213.946667pt;}
.w9{width:214.106667pt;}
.w7{width:214.146667pt;}
.w3{width:221.466642pt;}
.w5{width:286.946667pt;}
.w1c{width:297.186667pt;}
.w4{width:519.933333pt;}
.w6{width:645.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:1122.559983pt;}
.wa{width:1122.560000pt;}
.wb{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x41{left:4.320000pt;}
.x40{left:5.440000pt;}
.x2b{left:7.200000pt;}
.x3d{left:8.480000pt;}
.xa{left:9.600000pt;}
.x39{left:10.720000pt;}
.x32{left:12.480000pt;}
.x44{left:13.600000pt;}
.x12{left:16.026667pt;}
.x3a{left:17.760000pt;}
.x34{left:19.360000pt;}
.x27{left:20.480000pt;}
.xc{left:21.920000pt;}
.xb{left:23.680000pt;}
.x5{left:24.799976pt;}
.x8{left:25.760000pt;}
.x4{left:27.839976pt;}
.x54{left:28.960000pt;}
.x46{left:30.720000pt;}
.x16{left:32.192000pt;}
.x58{left:33.440000pt;}
.x43{left:34.560000pt;}
.x38{left:35.680000pt;}
.x24{left:36.832000pt;}
.x37{left:38.400000pt;}
.x3b{left:39.552000pt;}
.x33{left:41.312000pt;}
.x3e{left:42.400000pt;}
.x2d{left:43.520000pt;}
.x45{left:44.672000pt;}
.x49{left:46.400000pt;}
.x36{left:47.360000pt;}
.x2f{left:49.760000pt;}
.x3f{left:51.200000pt;}
.x52{left:52.960000pt;}
.x3c{left:53.960000pt;}
.x47{left:56.800000pt;}
.x29{left:58.280000pt;}
.x31{left:59.200000pt;}
.x35{left:63.560000pt;}
.x13{left:65.466667pt;}
.x42{left:67.520000pt;}
.x2{left:75.519988pt;}
.x20{left:76.639988pt;}
.x23{left:79.200000pt;}
.x4a{left:80.479983pt;}
.x11{left:82.266667pt;}
.x56{left:84.346667pt;}
.x48{left:88.520000pt;}
.x1d{left:91.551988pt;}
.x5a{left:92.986667pt;}
.x6b{left:94.586667pt;}
.x10{left:96.026667pt;}
.x6d{left:97.786667pt;}
.x6{left:99.231976pt;}
.x62{left:105.626667pt;}
.x19{left:106.880000pt;}
.x4d{left:108.031988pt;}
.x51{left:116.826667pt;}
.x75{left:118.271988pt;}
.x1e{left:123.551988pt;}
.x6e{left:124.666667pt;}
.x5d{left:133.146667pt;}
.x74{left:154.106655pt;}
.x6c{left:157.306667pt;}
.x6f{left:170.586655pt;}
.x73{left:172.346655pt;}
.x5c{left:177.666667pt;}
.x17{left:178.786667pt;}
.x25{left:184.346667pt;}
.x71{left:189.466655pt;}
.x4b{left:193.306650pt;}
.x60{left:203.586667pt;}
.x63{left:204.706667pt;}
.x57{left:206.466667pt;}
.x9{left:212.666667pt;}
.x1b{left:214.440000pt;}
.x61{left:220.226667pt;}
.x59{left:225.346667pt;}
.xd{left:230.906667pt;}
.x69{left:233.506667pt;}
.x66{left:236.546667pt;}
.x21{left:241.466655pt;}
.x53{left:246.146667pt;}
.x7{left:248.706667pt;}
.x26{left:250.266667pt;}
.x55{left:257.186667pt;}
.x5e{left:258.786667pt;}
.xe{left:259.866667pt;}
.x5f{left:264.706667pt;}
.x6a{left:268.386667pt;}
.x67{left:270.626667pt;}
.x64{left:272.066667pt;}
.x68{left:273.506667pt;}
.x65{left:274.946667pt;}
.x72{left:277.666655pt;}
.x15{left:280.866667pt;}
.x5b{left:283.106667pt;}
.x18{left:289.666667pt;}
.x28{left:316.186667pt;}
.x14{left:322.626667pt;}
.x4e{left:372.706667pt;}
.x3{left:396.866655pt;}
.xf{left:404.706667pt;}
.x70{left:420.413322pt;}
.x4f{left:485.693333pt;}
.x1a{left:503.613333pt;}
.x2a{left:522.466667pt;}
.x1f{left:610.533322pt;}
.x50{left:611.653333pt;}
.x2c{left:645.533333pt;}
.x1{left:686.853322pt;}
.x4c{left:702.213322pt;}
.x1c{left:710.213322pt;}
.x2e{left:749.853333pt;}
.x30{left:871.973333pt;}
.x22{left:1031.013317pt;}
}




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