
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_b56693b3c0f302dda575ed16.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_25c4f25e2e84183c3775d82b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')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_3ae430edd9e365ae00e81ea1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c19365d51c02338b9054ed27.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_86ffe131e775909401cbe35c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_b5e4a88a0ec7a528e0f3c64d.woff')format("woff");}.ffb{font-family:ffb;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);}
.v3{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.ls19{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.413400px;}
.ls6{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.220200px;}
.lsc{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.153600px;}
.ls14{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.009360px;}
.ls11{letter-spacing:-0.004320px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.064800px;}
.lse{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.112800px;}
.ls12{letter-spacing:0.119400px;}
.ls5{letter-spacing:0.139800px;}
.ls13{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.350400px;}
.ls15{letter-spacing:0.360000px;}
.ls3{letter-spacing:36.926640px;}
.ls2{letter-spacing:41.148000px;}
.ls10{letter-spacing:46.286640px;}
.lsa{letter-spacing:63.566640px;}
.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;}
}
.ws5{word-spacing:-60.120000px;}
.ws3{word-spacing:-16.582800px;}
.ws8{word-spacing:-15.210000px;}
.wsf{word-spacing:-15.183600px;}
.ws0{word-spacing:-15.030000px;}
.wsa{word-spacing:-14.876400px;}
.ws9{word-spacing:-14.850000px;}
.ws10{word-spacing:-14.809800px;}
.ws11{word-spacing:-14.516400px;}
.ws6{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.wse{word-spacing:-12.330000px;}
.wsb{word-spacing:-12.150000px;}
.ws1{word-spacing:-11.970000px;}
.wsc{word-spacing:-11.965680px;}
.ws2{word-spacing:-10.530000px;}
.wsd{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._8{width:2.050080px;}
._5{width:3.836640px;}
._6{width:4.951920px;}
._b{width:6.531000px;}
._d{width:7.717440px;}
._11{width:8.875680px;}
._9{width:10.056720px;}
._a{width:11.165640px;}
._27{width:12.204360px;}
._7{width:13.226400px;}
._e{width:14.958000px;}
._16{width:16.893720px;}
._1b{width:18.396720px;}
._14{width:19.418760px;}
._15{width:20.921760px;}
._1e{width:21.943800px;}
._26{width:23.326560px;}
._1c{width:24.408720px;}
._1d{width:26.212320px;}
._13{width:27.575640px;}
._c{width:28.636560px;}
._19{width:30.120120px;}
._1a{width:31.242960px;}
._2b{width:32.783040px;}
._21{width:34.208280px;}
._10{width:35.478000px;}
._f{width:36.504000px;}
._25{width:37.544520px;}
._28{width:39.138120px;}
._22{width:40.340520px;}
._23{width:42.564960px;}
._17{width:43.647120px;}
._18{width:45.210240px;}
._1f{width:46.362720px;}
._12{width:47.670120px;}
._2c{width:52.364520px;}
._2a{width:61.765200px;}
._29{width:64.448640px;}
._2d{width:75.267360px;}
._24{width:87.474600px;}
._20{width:89.157960px;}
._2{width:130.455480px;}
._1{width:341.548680px;}
._4{width:956.175720px;}
.fc7{color:transparent;}
.fc6{color:rgb(192,80,77);}
.fc5{color:rgb(79,129,189);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yca{bottom:2.610000px;}
.y10e{bottom:2.640000px;}
.y6{bottom:2.700000px;}
.y3e{bottom:2.970000px;}
.y157{bottom:3.060000px;}
.y16{bottom:3.240000px;}
.y36{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y3c{bottom:9.540000px;}
.y10f{bottom:9.570000px;}
.y9{bottom:14.040000px;}
.ye4{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.y10d{bottom:16.500000px;}
.y156{bottom:16.830000px;}
.y34{bottom:19.350000px;}
.y3b{bottom:25.110000px;}
.y2b{bottom:25.200000px;}
.y14e{bottom:30.240000px;}
.y155{bottom:30.600000px;}
.y7{bottom:35.550000px;}
.y33{bottom:35.730000px;}
.y3a{bottom:40.590000px;}
.y2a{bottom:42.480000px;}
.y14d{bottom:44.010000px;}
.y154{bottom:44.460000px;}
.y32{bottom:51.330000px;}
.ydd{bottom:54.480000px;}
.y39{bottom:56.160000px;}
.y14c{bottom:57.780000px;}
.y3{bottom:58.140000px;}
.y153{bottom:58.230000px;}
.y29{bottom:59.670000px;}
.y31{bottom:66.810000px;}
.y38{bottom:71.640000px;}
.y152{bottom:72.000000px;}
.ydc{bottom:72.750000px;}
.y28{bottom:76.950000px;}
.y30{bottom:82.380000px;}
.y151{bottom:85.860000px;}
.y27{bottom:94.230000px;}
.y2f{bottom:97.860000px;}
.y150{bottom:99.630000px;}
.y3d{bottom:106.200000px;}
.y26{bottom:111.420000px;}
.y49{bottom:112.590000px;}
.y2e{bottom:113.430000px;}
.y13b{bottom:113.940000px;}
.yda{bottom:115.920000px;}
.y107{bottom:116.820000px;}
.y87{bottom:122.940000px;}
.y81{bottom:124.020000px;}
.y25{bottom:128.700000px;}
.y2d{bottom:128.910000px;}
.y48{bottom:129.870000px;}
.yd9{bottom:130.500000px;}
.y13a{bottom:131.130000px;}
.y106{bottom:131.220000px;}
.ybd{bottom:137.970000px;}
.y86{bottom:140.130000px;}
.y149{bottom:140.490000px;}
.y80{bottom:141.210000px;}
.yd8{bottom:144.990000px;}
.y24{bottom:145.980000px;}
.y47{bottom:147.060000px;}
.y105{bottom:148.410000px;}
.ydf{bottom:148.470000px;}
.ybc{bottom:155.250000px;}
.y85{bottom:157.440000px;}
.y148{bottom:157.710000px;}
.y7f{bottom:158.520000px;}
.yd7{bottom:159.600000px;}
.y23{bottom:163.170000px;}
.y46{bottom:164.370000px;}
.y139{bottom:165.630000px;}
.y104{bottom:165.720000px;}
.yde{bottom:166.740000px;}
.ybb{bottom:172.560000px;}
.yd6{bottom:174.180000px;}
.y84{bottom:174.720000px;}
.y147{bottom:174.990000px;}
.y7e{bottom:175.800000px;}
.y22{bottom:180.450000px;}
.y45{bottom:181.650000px;}
.y138{bottom:182.910000px;}
.y103{bottom:183.000000px;}
.yd5{bottom:188.670000px;}
.yba{bottom:189.750000px;}
.y83{bottom:191.910000px;}
.y146{bottom:192.270000px;}
.y7d{bottom:192.990000px;}
.y21{bottom:197.730000px;}
.y44{bottom:198.840000px;}
.y102{bottom:200.190000px;}
.yd4{bottom:203.250000px;}
.yb9{bottom:207.030000px;}
.y82{bottom:209.190000px;}
.y145{bottom:209.460000px;}
.y7c{bottom:210.270000px;}
.y20{bottom:214.920000px;}
.y43{bottom:216.120000px;}
.y137{bottom:217.380000px;}
.y101{bottom:217.470000px;}
.yd3{bottom:217.830000px;}
.yb8{bottom:224.310000px;}
.y144{bottom:226.740000px;}
.y7b{bottom:227.460000px;}
.y1f{bottom:232.200000px;}
.yd2{bottom:232.320000px;}
.y42{bottom:233.400000px;}
.y100{bottom:234.660000px;}
.yb7{bottom:241.500000px;}
.y7a{bottom:244.740000px;}
.yd1{bottom:246.900000px;}
.y1e{bottom:249.480000px;}
.y41{bottom:250.590000px;}
.yff{bottom:251.940000px;}
.yb6{bottom:258.780000px;}
.yd0{bottom:261.480000px;}
.y79{bottom:262.020000px;}
.y1d{bottom:266.670000px;}
.y40{bottom:267.870000px;}
.y136{bottom:269.130000px;}
.yfe{bottom:269.220000px;}
.ycf{bottom:275.970000px;}
.yb5{bottom:276.060000px;}
.y78{bottom:279.210000px;}
.y1c{bottom:283.980000px;}
.y3f{bottom:284.790000px;}
.y135{bottom:286.410000px;}
.yce{bottom:290.550000px;}
.yb4{bottom:293.250000px;}
.y77{bottom:296.490000px;}
.y17{bottom:298.110000px;}
.y1b{bottom:301.260000px;}
.y134{bottom:304.770000px;}
.ycd{bottom:305.130000px;}
.yb3{bottom:310.530000px;}
.yfd{bottom:312.330000px;}
.y76{bottom:313.770000px;}
.y1a{bottom:318.450000px;}
.ycc{bottom:319.620000px;}
.y133{bottom:321.960000px;}
.yb2{bottom:327.720000px;}
.y75{bottom:330.960000px;}
.ycb{bottom:334.200000px;}
.y19{bottom:335.730000px;}
.y132{bottom:339.240000px;}
.yfc{bottom:340.680000px;}
.yb1{bottom:345.000000px;}
.y74{bottom:348.240000px;}
.yc9{bottom:348.780000px;}
.y18{bottom:352.920000px;}
.y14f{bottom:353.010000px;}
.y131{bottom:357.600000px;}
.yb0{bottom:362.280000px;}
.yc8{bottom:364.890000px;}
.y73{bottom:365.520000px;}
.y14b{bottom:367.590000px;}
.yfb{bottom:369.030000px;}
.yc7{bottom:374.520000px;}
.y130{bottom:374.790000px;}
.yaf{bottom:379.470000px;}
.y72{bottom:382.710000px;}
.yc6{bottom:388.920000px;}
.y12f{bottom:392.070000px;}
.yae{bottom:396.750000px;}
.yfa{bottom:397.380000px;}
.y71{bottom:399.990000px;}
.yc5{bottom:406.200000px;}
.y12e{bottom:410.340000px;}
.yad{bottom:414.030000px;}
.y70{bottom:417.270000px;}
.y37{bottom:417.720000px;}
.yc4{bottom:423.480000px;}
.yf9{bottom:425.730000px;}
.y12d{bottom:427.620000px;}
.yac{bottom:431.220000px;}
.y6f{bottom:434.460000px;}
.y14a{bottom:437.340000px;}
.yf8{bottom:440.220000px;}
.yc3{bottom:440.670000px;}
.y12c{bottom:444.900000px;}
.yab{bottom:448.500000px;}
.y6e{bottom:451.740000px;}
.yc2{bottom:457.950000px;}
.y12b{bottom:462.090000px;}
.yaa{bottom:465.780000px;}
.y143{bottom:466.410000px;}
.yf7{bottom:468.570000px;}
.y6d{bottom:469.020000px;}
.yc1{bottom:475.230000px;}
.y12a{bottom:480.450000px;}
.ya9{bottom:482.970000px;}
.y142{bottom:483.690000px;}
.yf6{bottom:485.130000px;}
.y6c{bottom:486.210000px;}
.yc0{bottom:492.420000px;}
.yf5{bottom:496.110000px;}
.y129{bottom:497.730000px;}
.ya8{bottom:500.250000px;}
.y141{bottom:500.970000px;}
.y35{bottom:502.770000px;}
.y6b{bottom:503.490000px;}
.ybf{bottom:509.070000px;}
.yf4{bottom:510.510000px;}
.y128{bottom:516.000000px;}
.ya7{bottom:517.530000px;}
.y140{bottom:518.160000px;}
.y6a{bottom:520.770000px;}
.ybe{bottom:521.850000px;}
.y2c{bottom:523.560000px;}
.yf3{bottom:527.790000px;}
.ydb{bottom:529.020000px;}
.y127{bottom:533.280000px;}
.ya6{bottom:534.720000px;}
.y13f{bottom:535.440000px;}
.y69{bottom:537.960000px;}
.yf2{bottom:545.070000px;}
.y126{bottom:550.560000px;}
.ya5{bottom:552.000000px;}
.y13e{bottom:552.720000px;}
.y68{bottom:555.240000px;}
.yf1{bottom:562.260000px;}
.y125{bottom:568.830000px;}
.ya4{bottom:569.280000px;}
.y13d{bottom:569.910000px;}
.y67{bottom:572.430000px;}
.yf0{bottom:579.570000px;}
.y124{bottom:586.140000px;}
.ya3{bottom:586.500000px;}
.y13c{bottom:587.220000px;}
.y66{bottom:589.740000px;}
.yef{bottom:596.760000px;}
.ya2{bottom:603.780000px;}
.y123{bottom:604.410000px;}
.y65{bottom:607.020000px;}
.yee{bottom:614.040000px;}
.ya1{bottom:621.060000px;}
.y122{bottom:621.690000px;}
.y64{bottom:624.210000px;}
.yed{bottom:631.320000px;}
.ya0{bottom:638.250000px;}
.y121{bottom:638.970000px;}
.y63{bottom:641.490000px;}
.yec{bottom:648.510000px;}
.y9f{bottom:655.530000px;}
.y120{bottom:656.160000px;}
.y62{bottom:658.770000px;}
.y15{bottom:665.790000px;}
.y9e{bottom:672.810000px;}
.y11f{bottom:673.440000px;}
.y61{bottom:675.960000px;}
.yeb{bottom:680.550000px;}
.y9d{bottom:690.000000px;}
.y11e{bottom:690.720000px;}
.y60{bottom:693.240000px;}
.y14{bottom:700.440000px;}
.y9c{bottom:707.280000px;}
.y11d{bottom:707.910000px;}
.yea{bottom:708.900000px;}
.y5f{bottom:710.520000px;}
.y13{bottom:717.720000px;}
.y9b{bottom:724.470000px;}
.y11c{bottom:725.190000px;}
.y5e{bottom:727.710000px;}
.y12{bottom:734.910000px;}
.ye9{bottom:737.250000px;}
.y9a{bottom:741.750000px;}
.y11b{bottom:742.470000px;}
.y5d{bottom:744.990000px;}
.y99{bottom:759.030000px;}
.y11{bottom:759.300000px;}
.y11a{bottom:759.660000px;}
.y5c{bottom:762.270000px;}
.ye8{bottom:765.600000px;}
.y98{bottom:776.220000px;}
.y119{bottom:776.940000px;}
.y10{bottom:778.290000px;}
.y5b{bottom:779.460000px;}
.yf{bottom:790.530000px;}
.y97{bottom:793.500000px;}
.ye7{bottom:793.950000px;}
.y118{bottom:794.220000px;}
.y5a{bottom:796.740000px;}
.ye6{bottom:808.530000px;}
.y96{bottom:810.780000px;}
.ye{bottom:811.050000px;}
.y117{bottom:811.410000px;}
.y59{bottom:814.020000px;}
.y95{bottom:827.970000px;}
.y116{bottom:828.690000px;}
.y58{bottom:831.210000px;}
.ye5{bottom:836.880000px;}
.yd{bottom:839.310000px;}
.y94{bottom:845.250000px;}
.y115{bottom:845.970000px;}
.y57{bottom:848.490000px;}
.y93{bottom:862.530000px;}
.y114{bottom:863.160000px;}
.ye3{bottom:865.230000px;}
.y56{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y113{bottom:877.920000px;}
.y92{bottom:879.720000px;}
.y55{bottom:882.960000px;}
.ye2{bottom:895.560000px;}
.y91{bottom:897.000000px;}
.y54{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y112{bottom:906.270000px;}
.ye1{bottom:906.540000px;}
.y90{bottom:914.280000px;}
.y53{bottom:917.430000px;}
.ye0{bottom:920.310000px;}
.ya{bottom:930.210000px;}
.y8f{bottom:931.470000px;}
.y111{bottom:934.620000px;}
.y52{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y8e{bottom:948.750000px;}
.y51{bottom:951.990000px;}
.y110{bottom:962.970000px;}
.y8d{bottom:966.030000px;}
.y50{bottom:969.180000px;}
.y8c{bottom:984.300000px;}
.y4f{bottom:986.460000px;}
.y10c{bottom:991.320000px;}
.y8b{bottom:1001.610000px;}
.y4e{bottom:1003.770000px;}
.y10b{bottom:1019.700000px;}
.y8a{bottom:1019.880000px;}
.y4d{bottom:1020.960000px;}
.y89{bottom:1037.160000px;}
.y4c{bottom:1038.240000px;}
.y10a{bottom:1048.050000px;}
.y88{bottom:1054.440000px;}
.y4b{bottom:1055.520000px;}
.y109{bottom:1064.610000px;}
.y4a{bottom:1072.710000px;}
.y108{bottom:1075.590000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1c{height:13.770000px;}
.h1d{height:13.770150px;}
.h1e{height:13.860000px;}
.h1f{height:13.890000px;}
.hf{height:17.280000px;}
.h14{height:19.980000px;}
.h1a{height:20.863477px;}
.h24{height:25.136719px;}
.h22{height:25.400391px;}
.h23{height:27.540000px;}
.h3{height:27.630000px;}
.h25{height:27.660000px;}
.hd{height:29.409961px;}
.h5{height:33.431836px;}
.h1b{height:33.782520px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.082324px;}
.h12{height:39.999023px;}
.h26{height:41.743477px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h19{height:43.769004px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h21{height:46.587129px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hc{height:53.838457px;}
.hb{height:67.819043px;}
.h27{height:68.940000px;}
.ha{height:76.201172px;}
.h15{height:84.240000px;}
.h28{height:110.790000px;}
.h18{height:118.800000px;}
.h11{height:141.510000px;}
.h7{height:153.930000px;}
.h20{height:195.480000px;}
.h10{height:366.960000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.wd{width:73.710000px;}
.w1b{width:80.280000px;}
.we{width:82.440000px;}
.wc{width:84.150000px;}
.w12{width:84.240000px;}
.w18{width:94.590000px;}
.w13{width:94.950000px;}
.w17{width:95.340000px;}
.wf{width:104.880000px;}
.w14{width:116.310000px;}
.wb{width:126.840000px;}
.w19{width:136.020000px;}
.w11{width:137.640000px;}
.w16{width:148.230000px;}
.w6{width:220.350000px;}
.w8{width:233.040000px;}
.w1c{width:248.160000px;}
.w7{width:254.340000px;}
.w15{width:254.910000px;}
.wa{width:259.140000px;}
.w10{width:275.700000px;}
.w1a{width:329.160000px;}
.w9{width:394.830000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x46{left:10.440000px;}
.x44{left:11.520000px;}
.x3a{left:14.490000px;}
.x41{left:16.380000px;}
.x36{left:17.640000px;}
.x11{left:20.160000px;}
.x3d{left:21.510000px;}
.x40{left:24.480000px;}
.x15{left:27.630000px;}
.x3e{left:31.860000px;}
.x28{left:32.940000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x3b{left:37.530000px;}
.x49{left:40.590000px;}
.x3c{left:42.930000px;}
.x6{left:45.540000px;}
.x50{left:47.520000px;}
.x3f{left:48.960000px;}
.x31{left:51.150000px;}
.x2{left:53.999986px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x4a{left:61.830000px;}
.x4f{left:64.080000px;}
.x16{left:65.429986px;}
.x22{left:72.840000px;}
.x27{left:76.500000px;}
.x55{left:78.750000px;}
.x26{left:80.100000px;}
.x9{left:81.989986px;}
.x56{left:84.510000px;}
.x51{left:86.759986px;}
.x1b{left:88.199986px;}
.x33{left:91.530000px;}
.x24{left:95.970000px;}
.x2b{left:98.460000px;}
.x4{left:100.890000px;}
.x34{left:103.440000px;}
.x20{left:104.760000px;}
.x5{left:107.999986px;}
.x29{left:109.800000px;}
.x2a{left:111.150000px;}
.x25{left:113.130000px;}
.x23{left:117.090000px;}
.x2d{left:119.070000px;}
.x2c{left:120.690000px;}
.xe{left:210.989986px;}
.x1f{left:214.950000px;}
.xd{left:240.419986px;}
.xc{left:257.519986px;}
.x2e{left:264.420000px;}
.x32{left:302.249986px;}
.x1e{left:307.019986px;}
.x42{left:310.619986px;}
.x1d{left:318.629986px;}
.x2f{left:327.780000px;}
.x30{left:330.570000px;}
.x43{left:342.300000px;}
.x35{left:351.390000px;}
.xa{left:420.689986px;}
.x4b{left:455.160000px;}
.x8{left:459.029986px;}
.x1c{left:461.819986px;}
.xb{left:464.159986px;}
.xf{left:465.239986px;}
.x21{left:470.100000px;}
.x18{left:478.229986px;}
.x19{left:479.759986px;}
.x54{left:500.550000px;}
.x53{left:505.319986px;}
.x1a{left:506.759986px;}
.x52{left:526.559986px;}
.x4c{left:551.220000px;}
.x37{left:563.910000px;}
.x45{left:565.620000px;}
.x57{left:581.550000px;}
.x38{left:638.430000px;}
.x10{left:642.210000px;}
.x4d{left:646.530000px;}
.x47{left:661.380000px;}
.x39{left:721.680000px;}
.x4e{left:731.490000px;}
.x48{left:746.340000px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.ls19{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.367467pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.195733pt;}
.lsc{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.136533pt;}
.ls14{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.008320pt;}
.ls11{letter-spacing:-0.003840pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.100267pt;}
.ls12{letter-spacing:0.106133pt;}
.ls5{letter-spacing:0.124267pt;}
.ls13{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.311467pt;}
.ls15{letter-spacing:0.320000pt;}
.ls3{letter-spacing:32.823680pt;}
.ls2{letter-spacing:36.576000pt;}
.ls10{letter-spacing:41.143680pt;}
.lsa{letter-spacing:56.503680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws3{word-spacing:-14.740267pt;}
.ws8{word-spacing:-13.520000pt;}
.wsf{word-spacing:-13.496533pt;}
.ws0{word-spacing:-13.360000pt;}
.wsa{word-spacing:-13.223467pt;}
.ws9{word-spacing:-13.200000pt;}
.ws10{word-spacing:-13.164267pt;}
.ws11{word-spacing:-12.903467pt;}
.ws6{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.960000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.640000pt;}
.wsc{word-spacing:-10.636160pt;}
.ws2{word-spacing:-9.360000pt;}
.wsd{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._8{width:1.822293pt;}
._5{width:3.410347pt;}
._6{width:4.401707pt;}
._b{width:5.805333pt;}
._d{width:6.859947pt;}
._11{width:7.889493pt;}
._9{width:8.939307pt;}
._a{width:9.925013pt;}
._27{width:10.848320pt;}
._7{width:11.756800pt;}
._e{width:13.296000pt;}
._16{width:15.016640pt;}
._1b{width:16.352640pt;}
._14{width:17.261120pt;}
._15{width:18.597120pt;}
._1e{width:19.505600pt;}
._26{width:20.734720pt;}
._1c{width:21.696640pt;}
._1d{width:23.299840pt;}
._13{width:24.511680pt;}
._c{width:25.454720pt;}
._19{width:26.773440pt;}
._1a{width:27.771520pt;}
._2b{width:29.140480pt;}
._21{width:30.407360pt;}
._10{width:31.536000pt;}
._f{width:32.448000pt;}
._25{width:33.372907pt;}
._28{width:34.789440pt;}
._22{width:35.858240pt;}
._23{width:37.835520pt;}
._17{width:38.797440pt;}
._18{width:40.186880pt;}
._1f{width:41.211307pt;}
._12{width:42.373440pt;}
._2c{width:46.546240pt;}
._2a{width:54.902400pt;}
._29{width:57.287680pt;}
._2d{width:66.904320pt;}
._24{width:77.755200pt;}
._20{width:79.251520pt;}
._2{width:115.960427pt;}
._1{width:303.598827pt;}
._4{width:849.933973pt;}
.fs3{font-size:26.560000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:2.320000pt;}
.y10e{bottom:2.346667pt;}
.y6{bottom:2.400000pt;}
.y3e{bottom:2.640000pt;}
.y157{bottom:2.720000pt;}
.y16{bottom:2.880000pt;}
.y36{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y3c{bottom:8.480000pt;}
.y10f{bottom:8.506667pt;}
.y9{bottom:12.480000pt;}
.ye4{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.y10d{bottom:14.666667pt;}
.y156{bottom:14.960000pt;}
.y34{bottom:17.200000pt;}
.y3b{bottom:22.320000pt;}
.y2b{bottom:22.400000pt;}
.y14e{bottom:26.880000pt;}
.y155{bottom:27.200000pt;}
.y7{bottom:31.600000pt;}
.y33{bottom:31.760000pt;}
.y3a{bottom:36.080000pt;}
.y2a{bottom:37.760000pt;}
.y14d{bottom:39.120000pt;}
.y154{bottom:39.520000pt;}
.y32{bottom:45.626667pt;}
.ydd{bottom:48.426667pt;}
.y39{bottom:49.920000pt;}
.y14c{bottom:51.360000pt;}
.y3{bottom:51.680000pt;}
.y153{bottom:51.760000pt;}
.y29{bottom:53.040000pt;}
.y31{bottom:59.386667pt;}
.y38{bottom:63.680000pt;}
.y152{bottom:64.000000pt;}
.ydc{bottom:64.666667pt;}
.y28{bottom:68.400000pt;}
.y30{bottom:73.226667pt;}
.y151{bottom:76.320000pt;}
.y27{bottom:83.760000pt;}
.y2f{bottom:86.986667pt;}
.y150{bottom:88.560000pt;}
.y3d{bottom:94.400000pt;}
.y26{bottom:99.040000pt;}
.y49{bottom:100.080000pt;}
.y2e{bottom:100.826667pt;}
.y13b{bottom:101.280000pt;}
.yda{bottom:103.040000pt;}
.y107{bottom:103.840000pt;}
.y87{bottom:109.280000pt;}
.y81{bottom:110.240000pt;}
.y25{bottom:114.400000pt;}
.y2d{bottom:114.586667pt;}
.y48{bottom:115.440000pt;}
.yd9{bottom:116.000000pt;}
.y13a{bottom:116.560000pt;}
.y106{bottom:116.640000pt;}
.ybd{bottom:122.640000pt;}
.y86{bottom:124.560000pt;}
.y149{bottom:124.880000pt;}
.y80{bottom:125.520000pt;}
.yd8{bottom:128.880000pt;}
.y24{bottom:129.760000pt;}
.y47{bottom:130.720000pt;}
.y105{bottom:131.920000pt;}
.ydf{bottom:131.973333pt;}
.ybc{bottom:138.000000pt;}
.y85{bottom:139.946667pt;}
.y148{bottom:140.186667pt;}
.y7f{bottom:140.906667pt;}
.yd7{bottom:141.866667pt;}
.y23{bottom:145.040000pt;}
.y46{bottom:146.106667pt;}
.y139{bottom:147.226667pt;}
.y104{bottom:147.306667pt;}
.yde{bottom:148.213333pt;}
.ybb{bottom:153.386667pt;}
.yd6{bottom:154.826667pt;}
.y84{bottom:155.306667pt;}
.y147{bottom:155.546667pt;}
.y7e{bottom:156.266667pt;}
.y22{bottom:160.400000pt;}
.y45{bottom:161.466667pt;}
.y138{bottom:162.586667pt;}
.y103{bottom:162.666667pt;}
.yd5{bottom:167.706667pt;}
.yba{bottom:168.666667pt;}
.y83{bottom:170.586667pt;}
.y146{bottom:170.906667pt;}
.y7d{bottom:171.546667pt;}
.y21{bottom:175.760000pt;}
.y44{bottom:176.746667pt;}
.y102{bottom:177.946667pt;}
.yd4{bottom:180.666667pt;}
.yb9{bottom:184.026667pt;}
.y82{bottom:185.946667pt;}
.y145{bottom:186.186667pt;}
.y7c{bottom:186.906667pt;}
.y20{bottom:191.040000pt;}
.y43{bottom:192.106667pt;}
.y137{bottom:193.226667pt;}
.y101{bottom:193.306667pt;}
.yd3{bottom:193.626667pt;}
.yb8{bottom:199.386667pt;}
.y144{bottom:201.546667pt;}
.y7b{bottom:202.186667pt;}
.y1f{bottom:206.400000pt;}
.yd2{bottom:206.506667pt;}
.y42{bottom:207.466667pt;}
.y100{bottom:208.586667pt;}
.yb7{bottom:214.666667pt;}
.y7a{bottom:217.546667pt;}
.yd1{bottom:219.466667pt;}
.y1e{bottom:221.760000pt;}
.y41{bottom:222.746667pt;}
.yff{bottom:223.946667pt;}
.yb6{bottom:230.026667pt;}
.yd0{bottom:232.426667pt;}
.y79{bottom:232.906667pt;}
.y1d{bottom:237.040000pt;}
.y40{bottom:238.106667pt;}
.y136{bottom:239.226667pt;}
.yfe{bottom:239.306667pt;}
.ycf{bottom:245.306667pt;}
.yb5{bottom:245.386667pt;}
.y78{bottom:248.186667pt;}
.y1c{bottom:252.426667pt;}
.y3f{bottom:253.146667pt;}
.y135{bottom:254.586667pt;}
.yce{bottom:258.266667pt;}
.yb4{bottom:260.666667pt;}
.y77{bottom:263.546667pt;}
.y17{bottom:264.986667pt;}
.y1b{bottom:267.786667pt;}
.y134{bottom:270.906667pt;}
.ycd{bottom:271.226667pt;}
.yb3{bottom:276.026667pt;}
.yfd{bottom:277.626667pt;}
.y76{bottom:278.906667pt;}
.y1a{bottom:283.066667pt;}
.ycc{bottom:284.106667pt;}
.y133{bottom:286.186667pt;}
.yb2{bottom:291.306667pt;}
.y75{bottom:294.186667pt;}
.ycb{bottom:297.066667pt;}
.y19{bottom:298.426667pt;}
.y132{bottom:301.546667pt;}
.yfc{bottom:302.826667pt;}
.yb1{bottom:306.666667pt;}
.y74{bottom:309.546667pt;}
.yc9{bottom:310.026667pt;}
.y18{bottom:313.706667pt;}
.y14f{bottom:313.786667pt;}
.y131{bottom:317.866667pt;}
.yb0{bottom:322.026667pt;}
.yc8{bottom:324.346667pt;}
.y73{bottom:324.906667pt;}
.y14b{bottom:326.746667pt;}
.yfb{bottom:328.026667pt;}
.yc7{bottom:332.906667pt;}
.y130{bottom:333.146667pt;}
.yaf{bottom:337.306667pt;}
.y72{bottom:340.186667pt;}
.yc6{bottom:345.706667pt;}
.y12f{bottom:348.506667pt;}
.yae{bottom:352.666667pt;}
.yfa{bottom:353.226667pt;}
.y71{bottom:355.546667pt;}
.yc5{bottom:361.066667pt;}
.y12e{bottom:364.746667pt;}
.yad{bottom:368.026667pt;}
.y70{bottom:370.906667pt;}
.y37{bottom:371.306667pt;}
.yc4{bottom:376.426667pt;}
.yf9{bottom:378.426667pt;}
.y12d{bottom:380.106667pt;}
.yac{bottom:383.306667pt;}
.y6f{bottom:386.186667pt;}
.y14a{bottom:388.746667pt;}
.yf8{bottom:391.306667pt;}
.yc3{bottom:391.706667pt;}
.y12c{bottom:395.466667pt;}
.yab{bottom:398.666667pt;}
.y6e{bottom:401.546667pt;}
.yc2{bottom:407.066667pt;}
.y12b{bottom:410.746667pt;}
.yaa{bottom:414.026667pt;}
.y143{bottom:414.586667pt;}
.yf7{bottom:416.506667pt;}
.y6d{bottom:416.906667pt;}
.yc1{bottom:422.426667pt;}
.y12a{bottom:427.066667pt;}
.ya9{bottom:429.306667pt;}
.y142{bottom:429.946667pt;}
.yf6{bottom:431.226667pt;}
.y6c{bottom:432.186667pt;}
.yc0{bottom:437.706667pt;}
.yf5{bottom:440.986667pt;}
.y129{bottom:442.426667pt;}
.ya8{bottom:444.666667pt;}
.y141{bottom:445.306667pt;}
.y35{bottom:446.906667pt;}
.y6b{bottom:447.546667pt;}
.ybf{bottom:452.506667pt;}
.yf4{bottom:453.786667pt;}
.y128{bottom:458.666667pt;}
.ya7{bottom:460.026667pt;}
.y140{bottom:460.586667pt;}
.y6a{bottom:462.906667pt;}
.ybe{bottom:463.866667pt;}
.y2c{bottom:465.386667pt;}
.yf3{bottom:469.146667pt;}
.ydb{bottom:470.240000pt;}
.y127{bottom:474.026667pt;}
.ya6{bottom:475.306667pt;}
.y13f{bottom:475.946667pt;}
.y69{bottom:478.186667pt;}
.yf2{bottom:484.506667pt;}
.y126{bottom:489.386667pt;}
.ya5{bottom:490.666667pt;}
.y13e{bottom:491.306667pt;}
.y68{bottom:493.546667pt;}
.yf1{bottom:499.786667pt;}
.y125{bottom:505.626667pt;}
.ya4{bottom:506.026667pt;}
.y13d{bottom:506.586667pt;}
.y67{bottom:508.826667pt;}
.yf0{bottom:515.173333pt;}
.y124{bottom:521.013333pt;}
.ya3{bottom:521.333333pt;}
.y13c{bottom:521.973333pt;}
.y66{bottom:524.213333pt;}
.yef{bottom:530.453333pt;}
.ya2{bottom:536.693333pt;}
.y123{bottom:537.253333pt;}
.y65{bottom:539.573333pt;}
.yee{bottom:545.813333pt;}
.ya1{bottom:552.053333pt;}
.y122{bottom:552.613333pt;}
.y64{bottom:554.853333pt;}
.yed{bottom:561.173333pt;}
.ya0{bottom:567.333333pt;}
.y121{bottom:567.973333pt;}
.y63{bottom:570.213333pt;}
.yec{bottom:576.453333pt;}
.y9f{bottom:582.693333pt;}
.y120{bottom:583.253333pt;}
.y62{bottom:585.573333pt;}
.y15{bottom:591.813333pt;}
.y9e{bottom:598.053333pt;}
.y11f{bottom:598.613333pt;}
.y61{bottom:600.853333pt;}
.yeb{bottom:604.933333pt;}
.y9d{bottom:613.333333pt;}
.y11e{bottom:613.973333pt;}
.y60{bottom:616.213333pt;}
.y14{bottom:622.613333pt;}
.y9c{bottom:628.693333pt;}
.y11d{bottom:629.253333pt;}
.yea{bottom:630.133333pt;}
.y5f{bottom:631.573333pt;}
.y13{bottom:637.973333pt;}
.y9b{bottom:643.973333pt;}
.y11c{bottom:644.613333pt;}
.y5e{bottom:646.853333pt;}
.y12{bottom:653.253333pt;}
.ye9{bottom:655.333333pt;}
.y9a{bottom:659.333333pt;}
.y11b{bottom:659.973333pt;}
.y5d{bottom:662.213333pt;}
.y99{bottom:674.693333pt;}
.y11{bottom:674.933333pt;}
.y11a{bottom:675.253333pt;}
.y5c{bottom:677.573333pt;}
.ye8{bottom:680.533333pt;}
.y98{bottom:689.973333pt;}
.y119{bottom:690.613333pt;}
.y10{bottom:691.813333pt;}
.y5b{bottom:692.853333pt;}
.yf{bottom:702.693333pt;}
.y97{bottom:705.333333pt;}
.ye7{bottom:705.733333pt;}
.y118{bottom:705.973333pt;}
.y5a{bottom:708.213333pt;}
.ye6{bottom:718.693333pt;}
.y96{bottom:720.693333pt;}
.ye{bottom:720.933333pt;}
.y117{bottom:721.253333pt;}
.y59{bottom:723.573333pt;}
.y95{bottom:735.973333pt;}
.y116{bottom:736.613333pt;}
.y58{bottom:738.853333pt;}
.ye5{bottom:743.893333pt;}
.yd{bottom:746.053333pt;}
.y94{bottom:751.333333pt;}
.y115{bottom:751.973333pt;}
.y57{bottom:754.213333pt;}
.y93{bottom:766.693333pt;}
.y114{bottom:767.253333pt;}
.ye3{bottom:769.093333pt;}
.y56{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y113{bottom:780.373333pt;}
.y92{bottom:781.973333pt;}
.y55{bottom:784.853333pt;}
.ye2{bottom:796.053333pt;}
.y91{bottom:797.333333pt;}
.y54{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y112{bottom:805.573333pt;}
.ye1{bottom:805.813333pt;}
.y90{bottom:812.693333pt;}
.y53{bottom:815.493333pt;}
.ye0{bottom:818.053333pt;}
.ya{bottom:826.853333pt;}
.y8f{bottom:827.973333pt;}
.y111{bottom:830.773333pt;}
.y52{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y8e{bottom:843.333333pt;}
.y51{bottom:846.213333pt;}
.y110{bottom:855.973333pt;}
.y8d{bottom:858.693333pt;}
.y50{bottom:861.493333pt;}
.y8c{bottom:874.933333pt;}
.y4f{bottom:876.853333pt;}
.y10c{bottom:881.173333pt;}
.y8b{bottom:890.320000pt;}
.y4e{bottom:892.240000pt;}
.y10b{bottom:906.400000pt;}
.y8a{bottom:906.560000pt;}
.y4d{bottom:907.520000pt;}
.y89{bottom:921.920000pt;}
.y4c{bottom:922.880000pt;}
.y10a{bottom:931.600000pt;}
.y88{bottom:937.280000pt;}
.y4b{bottom:938.240000pt;}
.y109{bottom:946.320000pt;}
.y4a{bottom:953.520000pt;}
.y108{bottom:956.080000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1c{height:12.240000pt;}
.h1d{height:12.240133pt;}
.h1e{height:12.320000pt;}
.h1f{height:12.346667pt;}
.hf{height:15.360000pt;}
.h14{height:17.760000pt;}
.h1a{height:18.545312pt;}
.h24{height:22.343750pt;}
.h22{height:22.578125pt;}
.h23{height:24.480000pt;}
.h3{height:24.560000pt;}
.h25{height:24.586667pt;}
.hd{height:26.142187pt;}
.h5{height:29.717188pt;}
.h1b{height:30.028906pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.739844pt;}
.h12{height:35.554688pt;}
.h26{height:37.105312pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h19{height:38.905781pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h21{height:41.410781pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hc{height:47.856406pt;}
.hb{height:60.283594pt;}
.h27{height:61.280000pt;}
.ha{height:67.734375pt;}
.h15{height:74.880000pt;}
.h28{height:98.480000pt;}
.h18{height:105.600000pt;}
.h11{height:125.786667pt;}
.h7{height:136.826667pt;}
.h20{height:173.760000pt;}
.h10{height:326.186667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.wd{width:65.520000pt;}
.w1b{width:71.360000pt;}
.we{width:73.280000pt;}
.wc{width:74.800000pt;}
.w12{width:74.880000pt;}
.w18{width:84.080000pt;}
.w13{width:84.400000pt;}
.w17{width:84.746667pt;}
.wf{width:93.226667pt;}
.w14{width:103.386667pt;}
.wb{width:112.746667pt;}
.w19{width:120.906667pt;}
.w11{width:122.346667pt;}
.w16{width:131.760000pt;}
.w6{width:195.866667pt;}
.w8{width:207.146667pt;}
.w1c{width:220.586667pt;}
.w7{width:226.080000pt;}
.w15{width:226.586667pt;}
.wa{width:230.346667pt;}
.w10{width:245.066667pt;}
.w1a{width:292.586667pt;}
.w9{width:350.960000pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x46{left:9.280000pt;}
.x44{left:10.240000pt;}
.x3a{left:12.880000pt;}
.x41{left:14.560000pt;}
.x36{left:15.680000pt;}
.x11{left:17.920000pt;}
.x3d{left:19.120000pt;}
.x40{left:21.760000pt;}
.x15{left:24.560000pt;}
.x3e{left:28.320000pt;}
.x28{left:29.280000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x3b{left:33.360000pt;}
.x49{left:36.080000pt;}
.x3c{left:38.160000pt;}
.x6{left:40.480000pt;}
.x50{left:42.240000pt;}
.x3f{left:43.520000pt;}
.x31{left:45.466667pt;}
.x2{left:47.999988pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x4a{left:54.960000pt;}
.x4f{left:56.960000pt;}
.x16{left:58.159988pt;}
.x22{left:64.746667pt;}
.x27{left:68.000000pt;}
.x55{left:70.000000pt;}
.x26{left:71.200000pt;}
.x9{left:72.879988pt;}
.x56{left:75.120000pt;}
.x51{left:77.119988pt;}
.x1b{left:78.399988pt;}
.x33{left:81.360000pt;}
.x24{left:85.306667pt;}
.x2b{left:87.520000pt;}
.x4{left:89.680000pt;}
.x34{left:91.946667pt;}
.x20{left:93.120000pt;}
.x5{left:95.999988pt;}
.x29{left:97.600000pt;}
.x2a{left:98.800000pt;}
.x25{left:100.560000pt;}
.x23{left:104.080000pt;}
.x2d{left:105.840000pt;}
.x2c{left:107.280000pt;}
.xe{left:187.546655pt;}
.x1f{left:191.066667pt;}
.xd{left:213.706655pt;}
.xc{left:228.906655pt;}
.x2e{left:235.040000pt;}
.x32{left:268.666655pt;}
.x1e{left:272.906655pt;}
.x42{left:276.106655pt;}
.x1d{left:283.226655pt;}
.x2f{left:291.360000pt;}
.x30{left:293.840000pt;}
.x43{left:304.266667pt;}
.x35{left:312.346667pt;}
.xa{left:373.946655pt;}
.x4b{left:404.586667pt;}
.x8{left:408.026655pt;}
.x1c{left:410.506655pt;}
.xb{left:412.586655pt;}
.xf{left:413.546655pt;}
.x21{left:417.866667pt;}
.x18{left:425.093321pt;}
.x19{left:426.453321pt;}
.x54{left:444.933333pt;}
.x53{left:449.173321pt;}
.x1a{left:450.453321pt;}
.x52{left:468.053321pt;}
.x4c{left:489.973333pt;}
.x37{left:501.253333pt;}
.x45{left:502.773333pt;}
.x57{left:516.933333pt;}
.x38{left:567.493333pt;}
.x10{left:570.853333pt;}
.x4d{left:574.693333pt;}
.x47{left:587.893333pt;}
.x39{left:641.493333pt;}
.x4e{left:650.213333pt;}
.x48{left:663.413333pt;}
.x7{left:722.160000pt;}
}




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