
    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_8401cec3b782682f4632d358.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_2c8b2012a2ff45e0e2b1af1b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_e5bdec33c2f51117b21d4495.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c3c2bcbdd9a00fa2b300052a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_90c76042270ad0b8676c6660.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_a3ffa6677e33f008f3e3d1b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_01ce8cbd34e42b9a86a59126.woff2')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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls25{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.306600px;}
.ls9{letter-spacing:-0.305400px;}
.ls2b{letter-spacing:-0.259800px;}
.ls2f{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls2d{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.413280px;}
.lse{letter-spacing:0.413400px;}
.ls2e{letter-spacing:0.460200px;}
.ls12{letter-spacing:0.612000px;}
.ls28{letter-spacing:0.613440px;}
.ls13{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.666720px;}
.lsd{letter-spacing:0.979920px;}
.ls24{letter-spacing:1.332000px;}
.ls2a{letter-spacing:1.386720px;}
.ls21{letter-spacing:3.546720px;}
.ls3{letter-spacing:4.625280px;}
.ls2{letter-spacing:5.345280px;}
.ls2c{letter-spacing:6.426720px;}
.ls1{letter-spacing:13.265280px;}
.ls1a{letter-spacing:18.126720px;}
.ls1e{letter-spacing:19.386720px;}
.ls18{letter-spacing:22.266720px;}
.ls15{letter-spacing:39.546720px;}
.ls19{letter-spacing:53.226720px;}
.ls27{letter-spacing:59.321280px;}
.ls1d{letter-spacing:64.002720px;}
.ls23{letter-spacing:64.026720px;}
.ls29{letter-spacing:69.066720px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws11{word-spacing:-59.760000px;}
.ws4{word-spacing:-18.720120px;}
.ws3{word-spacing:-18.676920px;}
.ws2{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.wsb{word-spacing:-17.225280px;}
.wsd{word-spacing:-16.873080px;}
.wsc{word-spacing:-16.819680px;}
.ws6{word-spacing:-16.666560px;}
.ws9{word-spacing:-16.613280px;}
.ws7{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.506480px;}
.ws14{word-spacing:-16.353480px;}
.wsa{word-spacing:-16.306680px;}
.wsf{word-spacing:-15.138000px;}
.ws12{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.030000px;}
.wse{word-spacing:-15.012000px;}
.ws15{word-spacing:-10.800000px;}
.ws0{word-spacing:-10.080000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-8.508240px;}
._4b{margin-left:-6.434400px;}
._5{margin-left:-4.227360px;}
._2{margin-left:-3.201120px;}
._3{margin-left:-1.769040px;}
._b{width:1.063680px;}
._6{width:2.119680px;}
._a{width:3.683760px;}
._9{width:4.993680px;}
._10{width:6.266880px;}
._d{width:7.375440px;}
._c{width:8.544960px;}
._12{width:9.869760px;}
._8{width:11.553120px;}
._7{width:12.651840px;}
._e{width:13.871520px;}
._f{width:15.535680px;}
._2b{width:18.465840px;}
._11{width:19.831680px;}
._2f{width:21.175680px;}
._32{width:22.341600px;}
._3b{width:23.485680px;}
._2a{width:24.919920px;}
._37{width:26.007600px;}
._1b{width:27.250560px;}
._1e{width:29.016480px;}
._2e{width:30.157920px;}
._30{width:32.091120px;}
._31{width:33.521040px;}
._34{width:34.593840px;}
._45{width:35.601360px;}
._20{width:36.632880px;}
._3a{width:37.654320px;}
._35{width:39.510240px;}
._36{width:40.687680px;}
._33{width:42.668640px;}
._2d{width:44.640720px;}
._4e{width:45.877200px;}
._25{width:49.036080px;}
._48{width:50.146320px;}
._21{width:51.259200px;}
._2c{width:53.305920px;}
._47{width:54.405600px;}
._3d{width:55.935360px;}
._3e{width:57.225120px;}
._52{width:59.580720px;}
._27{width:61.920480px;}
._44{width:63.873120px;}
._39{width:66.692160px;}
._38{width:67.896480px;}
._46{width:69.919200px;}
._4d{width:71.304240px;}
._4c{width:72.608400px;}
._50{width:73.803600px;}
._51{width:75.023760px;}
._53{width:87.013440px;}
._42{width:88.636080px;}
._41{width:89.968560px;}
._3f{width:91.533600px;}
._26{width:93.643920px;}
._40{width:94.779360px;}
._4a{width:98.133840px;}
._49{width:103.504320px;}
._18{width:105.509280px;}
._1d{width:112.082880px;}
._17{width:114.365760px;}
._1a{width:118.716240px;}
._23{width:122.003040px;}
._4f{width:123.160320px;}
._3c{width:124.403760px;}
._24{width:125.409360px;}
._29{width:130.814640px;}
._28{width:131.830560px;}
._22{width:138.676080px;}
._43{width:144.858240px;}
._19{width:151.942800px;}
._14{width:155.129520px;}
._13{width:158.476080px;}
._1c{width:161.862960px;}
._16{width:165.209520px;}
._1f{width:175.349280px;}
._15{width:198.329520px;}
._0{width:829.824000px;}
._1{width:2430.564000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs1{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:65.520000px;}
.y33{bottom:68.940000px;}
.y181{bottom:122.760000px;}
.y15a{bottom:123.840000px;}
.y32{bottom:126.180000px;}
.y8b{bottom:129.060000px;}
.y1a5{bottom:130.320000px;}
.y62{bottom:131.400000px;}
.y12f{bottom:135.360000px;}
.y180{bottom:141.300000px;}
.y104{bottom:142.380000px;}
.y31{bottom:143.460000px;}
.y8a{bottom:146.160000px;}
.ybc{bottom:146.340000px;}
.y1a4{bottom:147.600000px;}
.y30{bottom:147.960000px;}
.y61{bottom:148.680000px;}
.ydf{bottom:149.040000px;}
.y12e{bottom:153.900000px;}
.y103{bottom:159.660000px;}
.y17f{bottom:159.840000px;}
.y2f{bottom:160.740000px;}
.y159{bottom:161.100000px;}
.y89{bottom:163.440000px;}
.ybb{bottom:163.620000px;}
.y1a3{bottom:164.700000px;}
.y2e{bottom:165.240000px;}
.y60{bottom:165.960000px;}
.yde{bottom:166.320000px;}
.y12d{bottom:172.440000px;}
.y1c4{bottom:173.880000px;}
.y2d{bottom:177.840000px;}
.y158{bottom:179.640000px;}
.y88{bottom:180.720000px;}
.yba{bottom:180.900000px;}
.y1a2{bottom:181.980000px;}
.y5f{bottom:183.240000px;}
.ydd{bottom:183.600000px;}
.y102{bottom:185.760000px;}
.y1c3{bottom:191.160000px;}
.y12c{bottom:192.240000px;}
.y2c{bottom:195.120000px;}
.y87{bottom:198.000000px;}
.y17e{bottom:198.180000px;}
.y157{bottom:198.360000px;}
.y1a1{bottom:199.260000px;}
.y2b{bottom:199.620000px;}
.y5e{bottom:200.520000px;}
.y1c2{bottom:208.470000px;}
.ydc{bottom:209.730000px;}
.y12b{bottom:210.810000px;}
.y101{bottom:211.890000px;}
.yb9{bottom:215.310000px;}
.y86{bottom:216.570000px;}
.y17d{bottom:216.750000px;}
.y156{bottom:216.930000px;}
.y5d{bottom:217.830000px;}
.y2a{bottom:226.110000px;}
.ydb{bottom:227.010000px;}
.y100{bottom:227.370000px;}
.y12a{bottom:229.530000px;}
.yb8{bottom:232.590000px;}
.y1a0{bottom:233.850000px;}
.y5c{bottom:234.930000px;}
.y155{bottom:235.110000px;}
.y17c{bottom:236.370000px;}
.y1c1{bottom:238.890000px;}
.y85{bottom:242.850000px;}
.y129{bottom:248.070000px;}
.y154{bottom:251.850000px;}
.y17b{bottom:255.090000px;}
.yda{bottom:257.610000px;}
.yb7{bottom:258.870000px;}
.y19f{bottom:259.950000px;}
.y5b{bottom:261.210000px;}
.yff{bottom:264.450000px;}
.y128{bottom:266.610000px;}
.y153{bottom:268.590000px;}
.y84{bottom:269.130000px;}
.y17a{bottom:273.630000px;}
.yb6{bottom:276.150000px;}
.yd9{bottom:276.330000px;}
.y5a{bottom:278.490000px;}
.y152{bottom:282.630000px;}
.y29{bottom:284.610000px;}
.y127{bottom:285.150000px;}
.y19e{bottom:286.230000px;}
.y83{bottom:286.410000px;}
.yd8{bottom:294.870000px;}
.y59{bottom:295.770000px;}
.y179{bottom:299.910000px;}
.yb5{bottom:302.250000px;}
.y82{bottom:303.690000px;}
.y19d{bottom:304.410000px;}
.y28{bottom:304.950000px;}
.y1c0{bottom:306.750000px;}
.y58{bottom:313.050000px;}
.yd7{bottom:313.410000px;}
.y126{bottom:317.010000px;}
.y178{bottom:318.450000px;}
.y81{bottom:320.790000px;}
.y19c{bottom:321.150000px;}
.y27{bottom:325.470000px;}
.y57{bottom:330.330000px;}
.yd6{bottom:332.130000px;}
.yb4{bottom:332.850000px;}
.y125{bottom:335.550000px;}
.y177{bottom:337.170000px;}
.y19b{bottom:337.890000px;}
.y80{bottom:338.070000px;}
.y1bf{bottom:344.010000px;}
.y56{bottom:347.430000px;}
.yd5{bottom:350.670000px;}
.yb3{bottom:351.570000px;}
.y124{bottom:354.090000px;}
.y19a{bottom:354.630000px;}
.y7f{bottom:355.350000px;}
.y176{bottom:355.710000px;}
.y26{bottom:358.050000px;}
.y1be{bottom:362.730000px;}
.yd4{bottom:369.390000px;}
.yb2{bottom:370.110000px;}
.y7e{bottom:372.630000px;}
.y55{bottom:373.710000px;}
.y175{bottom:374.430000px;}
.y199{bottom:376.410000px;}
.y123{bottom:380.370000px;}
.yd3{bottom:387.930000px;}
.yb1{bottom:388.830000px;}
.y7d{bottom:389.910000px;}
.y25{bottom:390.630000px;}
.y54{bottom:390.990000px;}
.y174{bottom:392.970000px;}
.y1bd{bottom:393.330000px;}
.y122{bottom:397.650000px;}
.yd2{bottom:406.650000px;}
.y7c{bottom:407.190000px;}
.yb0{bottom:407.370000px;}
.y53{bottom:408.270000px;}
.y24{bottom:410.970000px;}
.y173{bottom:411.510000px;}
.y1bc{bottom:411.870000px;}
.y121{bottom:414.930000px;}
.y7b{bottom:424.290000px;}
.yd1{bottom:425.190000px;}
.y52{bottom:425.550000px;}
.yaf{bottom:426.090000px;}
.y172{bottom:430.230000px;}
.y1bb{bottom:430.590000px;}
.y23{bottom:431.310000px;}
.y7a{bottom:441.615000px;}
.y51{bottom:442.695000px;}
.yd0{bottom:443.775000px;}
.yae{bottom:444.675000px;}
.y120{bottom:445.575000px;}
.y171{bottom:448.815000px;}
.y1ba{bottom:449.175000px;}
.y50{bottom:459.975000px;}
.ycf{bottom:462.495000px;}
.yad{bottom:463.215000px;}
.y22{bottom:464.115000px;}
.y170{bottom:467.535000px;}
.y1b9{bottom:467.715000px;}
.y79{bottom:467.895000px;}
.y151{bottom:470.235000px;}
.y4f{bottom:477.255000px;}
.yce{bottom:481.035000px;}
.yac{bottom:481.935000px;}
.y11f{bottom:482.835000px;}
.y21{bottom:484.275000px;}
.y78{bottom:485.175000px;}
.y16f{bottom:486.075000px;}
.y150{bottom:488.955000px;}
.y4e{bottom:494.535000px;}
.y1b8{bottom:498.315000px;}
.ycd{bottom:499.755000px;}
.yab{bottom:500.475000px;}
.y11e{bottom:501.375000px;}
.y77{bottom:502.455000px;}
.y20{bottom:504.795000px;}
.y14f{bottom:507.495000px;}
.y1b7{bottom:517.035000px;}
.y76{bottom:519.555000px;}
.y11d{bottom:520.095000px;}
.y4d{bottom:520.815000px;}
.yfe{bottom:522.795000px;}
.y16e{bottom:523.335000px;}
.y1f{bottom:525.315000px;}
.ycc{bottom:525.855000px;}
.y14e{bottom:526.215000px;}
.yaa{bottom:526.755000px;}
.y75{bottom:536.835000px;}
.yfd{bottom:540.075000px;}
.y16d{bottom:541.875000px;}
.y1b6{bottom:543.315000px;}
.ya9{bottom:544.035000px;}
.y14d{bottom:544.755000px;}
.y1e{bottom:545.835000px;}
.y4c{bottom:546.915000px;}
.y11c{bottom:550.695000px;}
.ycb{bottom:552.135000px;}
.y74{bottom:554.115000px;}
.yfc{bottom:557.355000px;}
.y16c{bottom:560.595000px;}
.ya8{bottom:561.315000px;}
.y14c{bottom:563.295000px;}
.y4b{bottom:564.195000px;}
.y1d{bottom:566.175000px;}
.y11b{bottom:569.235000px;}
.yca{bottom:569.415000px;}
.y73{bottom:571.395000px;}
.y1b5{bottom:577.695000px;}
.y198{bottom:577.875000px;}
.ya7{bottom:578.595000px;}
.y16b{bottom:579.135000px;}
.y14b{bottom:582.015000px;}
.yfb{bottom:583.635000px;}
.y1c{bottom:586.695000px;}
.y11a{bottom:587.775000px;}
.y4a{bottom:590.475000px;}
.y1b4{bottom:594.975000px;}
.y197{bottom:595.155000px;}
.ya6{bottom:595.695000px;}
.y72{bottom:597.675000px;}
.y16a{bottom:597.855000px;}
.y14a{bottom:600.555000px;}
.yfa{bottom:601.815000px;}
.yc9{bottom:603.975000px;}
.y119{bottom:606.495000px;}
.y1b3{bottom:612.255000px;}
.y196{bottom:612.435000px;}
.ya5{bottom:612.975000px;}
.y71{bottom:614.955000px;}
.y169{bottom:616.395000px;}
.y49{bottom:616.755000px;}
.y149{bottom:619.275000px;}
.y1b{bottom:619.455000px;}
.yf9{bottom:619.995000px;}
.yc8{bottom:621.255000px;}
.y118{bottom:625.035000px;}
.y1b2{bottom:629.535000px;}
.y195{bottom:629.715000px;}
.ya4{bottom:630.255000px;}
.y70{bottom:632.055000px;}
.y168{bottom:634.935000px;}
.y148{bottom:637.815000px;}
.yf8{bottom:638.355000px;}
.yc7{bottom:638.535000px;}
.y1a{bottom:639.615000px;}
.y48{bottom:643.035000px;}
.y117{bottom:643.755000px;}
.y1b1{bottom:646.815000px;}
.y194{bottom:646.995000px;}
.ya3{bottom:647.535000px;}
.y6f{bottom:649.335000px;}
.y167{bottom:653.295000px;}
.yc6{bottom:655.635000px;}
.yf7{bottom:656.535000px;}
.y19{bottom:660.135000px;}
.y47{bottom:660.315000px;}
.y116{bottom:662.295000px;}
.y193{bottom:664.275000px;}
.ya2{bottom:664.815000px;}
.y6e{bottom:666.615000px;}
.y166{bottom:670.035000px;}
.yc5{bottom:672.915000px;}
.yf6{bottom:674.895000px;}
.y147{bottom:675.075000px;}
.y18{bottom:680.685000px;}
.y115{bottom:681.045000px;}
.y192{bottom:681.585000px;}
.ya1{bottom:682.125000px;}
.y6d{bottom:683.925000px;}
.y46{bottom:686.445000px;}
.yc4{bottom:690.225000px;}
.yf5{bottom:693.105000px;}
.y146{bottom:693.645000px;}
.y191{bottom:698.685000px;}
.ya0{bottom:699.225000px;}
.y114{bottom:699.585000px;}
.y17{bottom:701.205000px;}
.yc3{bottom:707.505000px;}
.yf4{bottom:711.465000px;}
.y145{bottom:712.365000px;}
.y45{bottom:712.725000px;}
.y190{bottom:715.965000px;}
.y9f{bottom:716.505000px;}
.y113{bottom:718.125000px;}
.y6c{bottom:718.485000px;}
.y16{bottom:721.545000px;}
.yc2{bottom:724.785000px;}
.yf3{bottom:729.645000px;}
.y144{bottom:730.905000px;}
.y18f{bottom:733.245000px;}
.y9e{bottom:733.785000px;}
.y6b{bottom:735.585000px;}
.y112{bottom:736.845000px;}
.y44{bottom:739.005000px;}
.yc1{bottom:742.065000px;}
.y143{bottom:749.625000px;}
.y9d{bottom:751.065000px;}
.y15{bottom:754.305000px;}
.y111{bottom:755.385000px;}
.y43{bottom:756.285000px;}
.yf2{bottom:757.005000px;}
.yc0{bottom:759.165000px;}
.y18e{bottom:759.525000px;}
.y6a{bottom:761.505000px;}
.y142{bottom:768.165000px;}
.y1b0{bottom:768.345000px;}
.yf1{bottom:774.285000px;}
.y14{bottom:774.645000px;}
.ybf{bottom:776.445000px;}
.y9c{bottom:777.345000px;}
.y110{bottom:781.305000px;}
.y42{bottom:782.565000px;}
.y69{bottom:783.105000px;}
.y18d{bottom:785.625000px;}
.y141{bottom:786.705000px;}
.yf0{bottom:791.565000px;}
.y9b{bottom:794.625000px;}
.y13{bottom:794.985000px;}
.y10f{bottom:796.965000px;}
.y41{bottom:799.845000px;}
.y1af{bottom:802.725000px;}
.y18c{bottom:802.905000px;}
.y140{bottom:805.425000px;}
.ybe{bottom:811.365000px;}
.y9a{bottom:811.725000px;}
.y10e{bottom:812.445000px;}
.y12{bottom:815.505000px;}
.yef{bottom:817.665000px;}
.y1ae{bottom:820.005000px;}
.y18b{bottom:820.185000px;}
.y13f{bottom:823.965000px;}
.y40{bottom:825.945000px;}
.y99{bottom:829.005000px;}
.ybd{bottom:832.965000px;}
.yee{bottom:834.945000px;}
.y11{bottom:836.025000px;}
.y1ad{bottom:837.285000px;}
.y18a{bottom:837.465000px;}
.y13e{bottom:842.685000px;}
.y98{bottom:846.285000px;}
.y3f{bottom:852.225000px;}
.y165{bottom:852.765000px;}
.y189{bottom:854.745000px;}
.y10{bottom:856.545000px;}
.y13d{bottom:861.225000px;}
.y97{bottom:863.565000px;}
.yed{bottom:869.505000px;}
.y164{bottom:871.305000px;}
.y188{bottom:872.025000px;}
.y3e{bottom:878.505000px;}
.y13c{bottom:879.765000px;}
.y96{bottom:880.845000px;}
.yec{bottom:886.785000px;}
.yf{bottom:889.125000px;}
.y187{bottom:889.305000px;}
.y1ac{bottom:889.845000px;}
.y163{bottom:890.025000px;}
.y95{bottom:898.125000px;}
.y13b{bottom:898.485000px;}
.yeb{bottom:904.065000px;}
.y68{bottom:904.605000px;}
.y3d{bottom:904.785000px;}
.y186{bottom:906.405000px;}
.y1ab{bottom:907.125000px;}
.y162{bottom:908.565000px;}
.ye{bottom:909.465000px;}
.y94{bottom:915.270000px;}
.y13a{bottom:917.070000px;}
.yea{bottom:921.390000px;}
.y3c{bottom:922.110000px;}
.y185{bottom:923.730000px;}
.y1aa{bottom:924.270000px;}
.y161{bottom:927.330000px;}
.yd{bottom:930.030000px;}
.y10d{bottom:933.810000px;}
.y139{bottom:935.790000px;}
.y184{bottom:941.010000px;}
.y93{bottom:941.550000px;}
.y160{bottom:945.870000px;}
.ye9{bottom:947.490000px;}
.y3b{bottom:948.210000px;}
.yc{bottom:950.370000px;}
.y10c{bottom:952.530000px;}
.y138{bottom:954.330000px;}
.y183{bottom:958.290000px;}
.y1a9{bottom:958.830000px;}
.y15f{bottom:964.590000px;}
.ye8{bottom:964.770000px;}
.y92{bottom:967.830000px;}
.yb{bottom:970.890000px;}
.y10b{bottom:971.070000px;}
.y137{bottom:973.050000px;}
.y3a{bottom:974.490000px;}
.y182{bottom:975.570000px;}
.y1a8{bottom:976.110000px;}
.ye7{bottom:981.870000px;}
.y15e{bottom:983.130000px;}
.y91{bottom:985.110000px;}
.y10a{bottom:989.790000px;}
.ya{bottom:991.410000px;}
.y136{bottom:991.590000px;}
.y1a7{bottom:993.390000px;}
.ye6{bottom:1000.230000px;}
.y39{bottom:1000.770000px;}
.y15d{bottom:1001.670000px;}
.y90{bottom:1002.390000px;}
.y109{bottom:1008.330000px;}
.y135{bottom:1010.130000px;}
.y1a6{bottom:1010.490000px;}
.y9{bottom:1011.930000px;}
.ye5{bottom:1017.510000px;}
.y8f{bottom:1019.490000px;}
.y15c{bottom:1020.390000px;}
.y38{bottom:1027.050000px;}
.ye4{bottom:1034.790000px;}
.y134{bottom:1036.410000px;}
.y8e{bottom:1036.770000px;}
.y15b{bottom:1038.930000px;}
.y8{bottom:1044.510000px;}
.y67{bottom:1045.770000px;}
.ye3{bottom:1053.150000px;}
.y37{bottom:1053.330000px;}
.y8d{bottom:1054.050000px;}
.y133{bottom:1055.130000px;}
.y108{bottom:1057.650000px;}
.y66{bottom:1063.050000px;}
.ye2{bottom:1070.250000px;}
.y8c{bottom:1071.330000px;}
.y132{bottom:1073.670000px;}
.y107{bottom:1076.190000px;}
.y6{bottom:1076.910000px;}
.y36{bottom:1079.610000px;}
.y65{bottom:1080.330000px;}
.y7{bottom:1082.850000px;}
.ye1{bottom:1087.530000px;}
.y131{bottom:1092.210000px;}
.y106{bottom:1094.730000px;}
.y64{bottom:1097.610000px;}
.y35{bottom:1105.710000px;}
.y5{bottom:1110.930000px;}
.y105{bottom:1113.450000px;}
.ye0{bottom:1114.710000px;}
.y63{bottom:1114.890000px;}
.y130{bottom:1129.470000px;}
.y34{bottom:1131.990000px;}
.y4{bottom:1137.030000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1197.180000px;}
.h7{height:40.550625px;}
.h6{height:43.554375px;}
.h9{height:43.681992px;}
.h2{height:56.320312px;}
.h8{height:62.327813px;}
.h3{height:63.344531px;}
.h5{height:69.086250px;}
.h4{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x28{left:108.575987px;}
.xc{left:111.635987px;}
.x19{left:113.435987px;}
.x27{left:114.875987px;}
.x1a{left:121.895987px;}
.x22{left:130.535987px;}
.x17{left:133.235987px;}
.x15{left:137.375987px;}
.x11{left:148.715987px;}
.x2{left:149.975987px;}
.x20{left:160.229987px;}
.x16{left:164.369987px;}
.xd{left:180.749987px;}
.x23{left:193.709987px;}
.x1b{left:194.789987px;}
.x29{left:206.489987px;}
.x4{left:235.469987px;}
.xb{left:322.274987px;}
.x3{left:341.894987px;}
.x5{left:373.214973px;}
.x6{left:378.974987px;}
.x21{left:385.814987px;}
.x18{left:395.894987px;}
.x26{left:419.654987px;}
.xe{left:473.144987px;}
.x12{left:480.704987px;}
.x1e{left:500.144987px;}
.x10{left:502.124987px;}
.x7{left:503.744973px;}
.x8{left:509.504987px;}
.x1c{left:512.024987px;}
.x14{left:515.624987px;}
.x1f{left:527.144987px;}
.x1d{left:530.564987px;}
.x25{left:550.004987px;}
.x13{left:551.624987px;}
.x9{left:651.569973px;}
.xa{left:657.329987px;}
.x24{left:744.809987px;}
.xf{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls25{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.272533pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls2b{letter-spacing:-0.230933pt;}
.ls2f{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls2d{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.367360pt;}
.lse{letter-spacing:0.367467pt;}
.ls2e{letter-spacing:0.409067pt;}
.ls12{letter-spacing:0.544000pt;}
.ls28{letter-spacing:0.545280pt;}
.ls13{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.871040pt;}
.ls24{letter-spacing:1.184000pt;}
.ls2a{letter-spacing:1.232640pt;}
.ls21{letter-spacing:3.152640pt;}
.ls3{letter-spacing:4.111360pt;}
.ls2{letter-spacing:4.751360pt;}
.ls2c{letter-spacing:5.712640pt;}
.ls1{letter-spacing:11.791360pt;}
.ls1a{letter-spacing:16.112640pt;}
.ls1e{letter-spacing:17.232640pt;}
.ls18{letter-spacing:19.792640pt;}
.ls15{letter-spacing:35.152640pt;}
.ls19{letter-spacing:47.312640pt;}
.ls27{letter-spacing:52.730027pt;}
.ls1d{letter-spacing:56.891307pt;}
.ls23{letter-spacing:56.912640pt;}
.ls29{letter-spacing:61.392640pt;}
.ws13{word-spacing:-58.880000pt;}
.ws11{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.640107pt;}
.ws3{word-spacing:-16.601707pt;}
.ws2{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.wsb{word-spacing:-15.311360pt;}
.wsd{word-spacing:-14.998293pt;}
.wsc{word-spacing:-14.950827pt;}
.ws6{word-spacing:-14.814720pt;}
.ws9{word-spacing:-14.767360pt;}
.ws7{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.672427pt;}
.ws14{word-spacing:-14.536427pt;}
.wsa{word-spacing:-14.494827pt;}
.wsf{word-spacing:-13.456000pt;}
.ws12{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.360000pt;}
.wse{word-spacing:-13.344000pt;}
.ws15{word-spacing:-9.600000pt;}
.ws0{word-spacing:-8.960000pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-7.562880pt;}
._4b{margin-left:-5.719467pt;}
._5{margin-left:-3.757653pt;}
._2{margin-left:-2.845440pt;}
._3{margin-left:-1.572480pt;}
._b{width:0.945493pt;}
._6{width:1.884160pt;}
._a{width:3.274453pt;}
._9{width:4.438827pt;}
._10{width:5.570560pt;}
._d{width:6.555947pt;}
._c{width:7.595520pt;}
._12{width:8.773120pt;}
._8{width:10.269440pt;}
._7{width:11.246080pt;}
._e{width:12.330240pt;}
._f{width:13.809493pt;}
._2b{width:16.414080pt;}
._11{width:17.628160pt;}
._2f{width:18.822827pt;}
._32{width:19.859200pt;}
._3b{width:20.876160pt;}
._2a{width:22.151040pt;}
._37{width:23.117867pt;}
._1b{width:24.222720pt;}
._1e{width:25.792427pt;}
._2e{width:26.807040pt;}
._30{width:28.525440pt;}
._31{width:29.796480pt;}
._34{width:30.750080pt;}
._45{width:31.645653pt;}
._20{width:32.562560pt;}
._3a{width:33.470507pt;}
._35{width:35.120213pt;}
._36{width:36.166827pt;}
._33{width:37.927680pt;}
._2d{width:39.680640pt;}
._4e{width:40.779733pt;}
._25{width:43.587627pt;}
._48{width:44.574507pt;}
._21{width:45.563733pt;}
._2c{width:47.383040pt;}
._47{width:48.360533pt;}
._3d{width:49.720320pt;}
._3e{width:50.866773pt;}
._52{width:52.960640pt;}
._27{width:55.040427pt;}
._44{width:56.776107pt;}
._39{width:59.281920pt;}
._38{width:60.352427pt;}
._46{width:62.150400pt;}
._4d{width:63.381547pt;}
._4c{width:64.540800pt;}
._50{width:65.603200pt;}
._51{width:66.687787pt;}
._53{width:77.345280pt;}
._42{width:78.787627pt;}
._41{width:79.972053pt;}
._3f{width:81.363200pt;}
._26{width:83.239040pt;}
._40{width:84.248320pt;}
._4a{width:87.230080pt;}
._49{width:92.003840pt;}
._18{width:93.786027pt;}
._1d{width:99.629227pt;}
._17{width:101.658453pt;}
._1a{width:105.525547pt;}
._23{width:108.447147pt;}
._4f{width:109.475840pt;}
._3c{width:110.581120pt;}
._24{width:111.474987pt;}
._29{width:116.279680pt;}
._28{width:117.182720pt;}
._22{width:123.267627pt;}
._43{width:128.762880pt;}
._19{width:135.060267pt;}
._14{width:137.892907pt;}
._13{width:140.867627pt;}
._1c{width:143.878187pt;}
._16{width:146.852907pt;}
._1f{width:155.866027pt;}
._15{width:176.292907pt;}
._0{width:737.621333pt;}
._1{width:2160.501333pt;}
.fs1{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:58.240000pt;}
.y33{bottom:61.280000pt;}
.y181{bottom:109.120000pt;}
.y15a{bottom:110.080000pt;}
.y32{bottom:112.160000pt;}
.y8b{bottom:114.720000pt;}
.y1a5{bottom:115.840000pt;}
.y62{bottom:116.800000pt;}
.y12f{bottom:120.320000pt;}
.y180{bottom:125.600000pt;}
.y104{bottom:126.560000pt;}
.y31{bottom:127.520000pt;}
.y8a{bottom:129.920000pt;}
.ybc{bottom:130.080000pt;}
.y1a4{bottom:131.200000pt;}
.y30{bottom:131.520000pt;}
.y61{bottom:132.160000pt;}
.ydf{bottom:132.480000pt;}
.y12e{bottom:136.800000pt;}
.y103{bottom:141.920000pt;}
.y17f{bottom:142.080000pt;}
.y2f{bottom:142.880000pt;}
.y159{bottom:143.200000pt;}
.y89{bottom:145.280000pt;}
.ybb{bottom:145.440000pt;}
.y1a3{bottom:146.400000pt;}
.y2e{bottom:146.880000pt;}
.y60{bottom:147.520000pt;}
.yde{bottom:147.840000pt;}
.y12d{bottom:153.280000pt;}
.y1c4{bottom:154.560000pt;}
.y2d{bottom:158.080000pt;}
.y158{bottom:159.680000pt;}
.y88{bottom:160.640000pt;}
.yba{bottom:160.800000pt;}
.y1a2{bottom:161.760000pt;}
.y5f{bottom:162.880000pt;}
.ydd{bottom:163.200000pt;}
.y102{bottom:165.120000pt;}
.y1c3{bottom:169.920000pt;}
.y12c{bottom:170.880000pt;}
.y2c{bottom:173.440000pt;}
.y87{bottom:176.000000pt;}
.y17e{bottom:176.160000pt;}
.y157{bottom:176.320000pt;}
.y1a1{bottom:177.120000pt;}
.y2b{bottom:177.440000pt;}
.y5e{bottom:178.240000pt;}
.y1c2{bottom:185.306667pt;}
.ydc{bottom:186.426667pt;}
.y12b{bottom:187.386667pt;}
.y101{bottom:188.346667pt;}
.yb9{bottom:191.386667pt;}
.y86{bottom:192.506667pt;}
.y17d{bottom:192.666667pt;}
.y156{bottom:192.826667pt;}
.y5d{bottom:193.626667pt;}
.y2a{bottom:200.986667pt;}
.ydb{bottom:201.786667pt;}
.y100{bottom:202.106667pt;}
.y12a{bottom:204.026667pt;}
.yb8{bottom:206.746667pt;}
.y1a0{bottom:207.866667pt;}
.y5c{bottom:208.826667pt;}
.y155{bottom:208.986667pt;}
.y17c{bottom:210.106667pt;}
.y1c1{bottom:212.346667pt;}
.y85{bottom:215.866667pt;}
.y129{bottom:220.506667pt;}
.y154{bottom:223.866667pt;}
.y17b{bottom:226.746667pt;}
.yda{bottom:228.986667pt;}
.yb7{bottom:230.106667pt;}
.y19f{bottom:231.066667pt;}
.y5b{bottom:232.186667pt;}
.yff{bottom:235.066667pt;}
.y128{bottom:236.986667pt;}
.y153{bottom:238.746667pt;}
.y84{bottom:239.226667pt;}
.y17a{bottom:243.226667pt;}
.yb6{bottom:245.466667pt;}
.yd9{bottom:245.626667pt;}
.y5a{bottom:247.546667pt;}
.y152{bottom:251.226667pt;}
.y29{bottom:252.986667pt;}
.y127{bottom:253.466667pt;}
.y19e{bottom:254.426667pt;}
.y83{bottom:254.586667pt;}
.yd8{bottom:262.106667pt;}
.y59{bottom:262.906667pt;}
.y179{bottom:266.586667pt;}
.yb5{bottom:268.666667pt;}
.y82{bottom:269.946667pt;}
.y19d{bottom:270.586667pt;}
.y28{bottom:271.066667pt;}
.y1c0{bottom:272.666667pt;}
.y58{bottom:278.266667pt;}
.yd7{bottom:278.586667pt;}
.y126{bottom:281.786667pt;}
.y178{bottom:283.066667pt;}
.y81{bottom:285.146667pt;}
.y19c{bottom:285.466667pt;}
.y27{bottom:289.306667pt;}
.y57{bottom:293.626667pt;}
.yd6{bottom:295.226667pt;}
.yb4{bottom:295.866667pt;}
.y125{bottom:298.266667pt;}
.y177{bottom:299.706667pt;}
.y19b{bottom:300.346667pt;}
.y80{bottom:300.506667pt;}
.y1bf{bottom:305.786667pt;}
.y56{bottom:308.826667pt;}
.yd5{bottom:311.706667pt;}
.yb3{bottom:312.506667pt;}
.y124{bottom:314.746667pt;}
.y19a{bottom:315.226667pt;}
.y7f{bottom:315.866667pt;}
.y176{bottom:316.186667pt;}
.y26{bottom:318.266667pt;}
.y1be{bottom:322.426667pt;}
.yd4{bottom:328.346667pt;}
.yb2{bottom:328.986667pt;}
.y7e{bottom:331.226667pt;}
.y55{bottom:332.186667pt;}
.y175{bottom:332.826667pt;}
.y199{bottom:334.586667pt;}
.y123{bottom:338.106667pt;}
.yd3{bottom:344.826667pt;}
.yb1{bottom:345.626667pt;}
.y7d{bottom:346.586667pt;}
.y25{bottom:347.226667pt;}
.y54{bottom:347.546667pt;}
.y174{bottom:349.306667pt;}
.y1bd{bottom:349.626667pt;}
.y122{bottom:353.466667pt;}
.yd2{bottom:361.466667pt;}
.y7c{bottom:361.946667pt;}
.yb0{bottom:362.106667pt;}
.y53{bottom:362.906667pt;}
.y24{bottom:365.306667pt;}
.y173{bottom:365.786667pt;}
.y1bc{bottom:366.106667pt;}
.y121{bottom:368.826667pt;}
.y7b{bottom:377.146667pt;}
.yd1{bottom:377.946667pt;}
.y52{bottom:378.266667pt;}
.yaf{bottom:378.746667pt;}
.y172{bottom:382.426667pt;}
.y1bb{bottom:382.746667pt;}
.y23{bottom:383.386667pt;}
.y7a{bottom:392.546667pt;}
.y51{bottom:393.506667pt;}
.yd0{bottom:394.466667pt;}
.yae{bottom:395.266667pt;}
.y120{bottom:396.066667pt;}
.y171{bottom:398.946667pt;}
.y1ba{bottom:399.266667pt;}
.y50{bottom:408.866667pt;}
.ycf{bottom:411.106667pt;}
.yad{bottom:411.746667pt;}
.y22{bottom:412.546667pt;}
.y170{bottom:415.586667pt;}
.y1b9{bottom:415.746667pt;}
.y79{bottom:415.906667pt;}
.y151{bottom:417.986667pt;}
.y4f{bottom:424.226667pt;}
.yce{bottom:427.586667pt;}
.yac{bottom:428.386667pt;}
.y11f{bottom:429.186667pt;}
.y21{bottom:430.466667pt;}
.y78{bottom:431.266667pt;}
.y16f{bottom:432.066667pt;}
.y150{bottom:434.626667pt;}
.y4e{bottom:439.586667pt;}
.y1b8{bottom:442.946667pt;}
.ycd{bottom:444.226667pt;}
.yab{bottom:444.866667pt;}
.y11e{bottom:445.666667pt;}
.y77{bottom:446.626667pt;}
.y20{bottom:448.706667pt;}
.y14f{bottom:451.106667pt;}
.y1b7{bottom:459.586667pt;}
.y76{bottom:461.826667pt;}
.y11d{bottom:462.306667pt;}
.y4d{bottom:462.946667pt;}
.yfe{bottom:464.706667pt;}
.y16e{bottom:465.186667pt;}
.y1f{bottom:466.946667pt;}
.ycc{bottom:467.426667pt;}
.y14e{bottom:467.746667pt;}
.yaa{bottom:468.226667pt;}
.y75{bottom:477.186667pt;}
.yfd{bottom:480.066667pt;}
.y16d{bottom:481.666667pt;}
.y1b6{bottom:482.946667pt;}
.ya9{bottom:483.586667pt;}
.y14d{bottom:484.226667pt;}
.y1e{bottom:485.186667pt;}
.y4c{bottom:486.146667pt;}
.y11c{bottom:489.506667pt;}
.ycb{bottom:490.786667pt;}
.y74{bottom:492.546667pt;}
.yfc{bottom:495.426667pt;}
.y16c{bottom:498.306667pt;}
.ya8{bottom:498.946667pt;}
.y14c{bottom:500.706667pt;}
.y4b{bottom:501.506667pt;}
.y1d{bottom:503.266667pt;}
.y11b{bottom:505.986667pt;}
.yca{bottom:506.146667pt;}
.y73{bottom:507.906667pt;}
.y1b5{bottom:513.506667pt;}
.y198{bottom:513.666667pt;}
.ya7{bottom:514.306667pt;}
.y16b{bottom:514.786667pt;}
.y14b{bottom:517.346667pt;}
.yfb{bottom:518.786667pt;}
.y1c{bottom:521.506667pt;}
.y11a{bottom:522.466667pt;}
.y4a{bottom:524.866667pt;}
.y1b4{bottom:528.866667pt;}
.y197{bottom:529.026667pt;}
.ya6{bottom:529.506667pt;}
.y72{bottom:531.266667pt;}
.y16a{bottom:531.426667pt;}
.y14a{bottom:533.826667pt;}
.yfa{bottom:534.946667pt;}
.yc9{bottom:536.866667pt;}
.y119{bottom:539.106667pt;}
.y1b3{bottom:544.226667pt;}
.y196{bottom:544.386667pt;}
.ya5{bottom:544.866667pt;}
.y71{bottom:546.626667pt;}
.y169{bottom:547.906667pt;}
.y49{bottom:548.226667pt;}
.y149{bottom:550.466667pt;}
.y1b{bottom:550.626667pt;}
.yf9{bottom:551.106667pt;}
.yc8{bottom:552.226667pt;}
.y118{bottom:555.586667pt;}
.y1b2{bottom:559.586667pt;}
.y195{bottom:559.746667pt;}
.ya4{bottom:560.226667pt;}
.y70{bottom:561.826667pt;}
.y168{bottom:564.386667pt;}
.y148{bottom:566.946667pt;}
.yf8{bottom:567.426667pt;}
.yc7{bottom:567.586667pt;}
.y1a{bottom:568.546667pt;}
.y48{bottom:571.586667pt;}
.y117{bottom:572.226667pt;}
.y1b1{bottom:574.946667pt;}
.y194{bottom:575.106667pt;}
.ya3{bottom:575.586667pt;}
.y6f{bottom:577.186667pt;}
.y167{bottom:580.706667pt;}
.yc6{bottom:582.786667pt;}
.yf7{bottom:583.586667pt;}
.y19{bottom:586.786667pt;}
.y47{bottom:586.946667pt;}
.y116{bottom:588.706667pt;}
.y193{bottom:590.466667pt;}
.ya2{bottom:590.946667pt;}
.y6e{bottom:592.546667pt;}
.y166{bottom:595.586667pt;}
.yc5{bottom:598.146667pt;}
.yf6{bottom:599.906667pt;}
.y147{bottom:600.066667pt;}
.y18{bottom:605.053333pt;}
.y115{bottom:605.373333pt;}
.y192{bottom:605.853333pt;}
.ya1{bottom:606.333333pt;}
.y6d{bottom:607.933333pt;}
.y46{bottom:610.173333pt;}
.yc4{bottom:613.533333pt;}
.yf5{bottom:616.093333pt;}
.y146{bottom:616.573333pt;}
.y191{bottom:621.053333pt;}
.ya0{bottom:621.533333pt;}
.y114{bottom:621.853333pt;}
.y17{bottom:623.293333pt;}
.yc3{bottom:628.893333pt;}
.yf4{bottom:632.413333pt;}
.y145{bottom:633.213333pt;}
.y45{bottom:633.533333pt;}
.y190{bottom:636.413333pt;}
.y9f{bottom:636.893333pt;}
.y113{bottom:638.333333pt;}
.y6c{bottom:638.653333pt;}
.y16{bottom:641.373333pt;}
.yc2{bottom:644.253333pt;}
.yf3{bottom:648.573333pt;}
.y144{bottom:649.693333pt;}
.y18f{bottom:651.773333pt;}
.y9e{bottom:652.253333pt;}
.y6b{bottom:653.853333pt;}
.y112{bottom:654.973333pt;}
.y44{bottom:656.893333pt;}
.yc1{bottom:659.613333pt;}
.y143{bottom:666.333333pt;}
.y9d{bottom:667.613333pt;}
.y15{bottom:670.493333pt;}
.y111{bottom:671.453333pt;}
.y43{bottom:672.253333pt;}
.yf2{bottom:672.893333pt;}
.yc0{bottom:674.813333pt;}
.y18e{bottom:675.133333pt;}
.y6a{bottom:676.893333pt;}
.y142{bottom:682.813333pt;}
.y1b0{bottom:682.973333pt;}
.yf1{bottom:688.253333pt;}
.y14{bottom:688.573333pt;}
.ybf{bottom:690.173333pt;}
.y9c{bottom:690.973333pt;}
.y110{bottom:694.493333pt;}
.y42{bottom:695.613333pt;}
.y69{bottom:696.093333pt;}
.y18d{bottom:698.333333pt;}
.y141{bottom:699.293333pt;}
.yf0{bottom:703.613333pt;}
.y9b{bottom:706.333333pt;}
.y13{bottom:706.653333pt;}
.y10f{bottom:708.413333pt;}
.y41{bottom:710.973333pt;}
.y1af{bottom:713.533333pt;}
.y18c{bottom:713.693333pt;}
.y140{bottom:715.933333pt;}
.ybe{bottom:721.213333pt;}
.y9a{bottom:721.533333pt;}
.y10e{bottom:722.173333pt;}
.y12{bottom:724.893333pt;}
.yef{bottom:726.813333pt;}
.y1ae{bottom:728.893333pt;}
.y18b{bottom:729.053333pt;}
.y13f{bottom:732.413333pt;}
.y40{bottom:734.173333pt;}
.y99{bottom:736.893333pt;}
.ybd{bottom:740.413333pt;}
.yee{bottom:742.173333pt;}
.y11{bottom:743.133333pt;}
.y1ad{bottom:744.253333pt;}
.y18a{bottom:744.413333pt;}
.y13e{bottom:749.053333pt;}
.y98{bottom:752.253333pt;}
.y3f{bottom:757.533333pt;}
.y165{bottom:758.013333pt;}
.y189{bottom:759.773333pt;}
.y10{bottom:761.373333pt;}
.y13d{bottom:765.533333pt;}
.y97{bottom:767.613333pt;}
.yed{bottom:772.893333pt;}
.y164{bottom:774.493333pt;}
.y188{bottom:775.133333pt;}
.y3e{bottom:780.893333pt;}
.y13c{bottom:782.013333pt;}
.y96{bottom:782.973333pt;}
.yec{bottom:788.253333pt;}
.yf{bottom:790.333333pt;}
.y187{bottom:790.493333pt;}
.y1ac{bottom:790.973333pt;}
.y163{bottom:791.133333pt;}
.y95{bottom:798.333333pt;}
.y13b{bottom:798.653333pt;}
.yeb{bottom:803.613333pt;}
.y68{bottom:804.093333pt;}
.y3d{bottom:804.253333pt;}
.y186{bottom:805.693333pt;}
.y1ab{bottom:806.333333pt;}
.y162{bottom:807.613333pt;}
.ye{bottom:808.413333pt;}
.y94{bottom:813.573333pt;}
.y13a{bottom:815.173333pt;}
.yea{bottom:819.013333pt;}
.y3c{bottom:819.653333pt;}
.y185{bottom:821.093333pt;}
.y1aa{bottom:821.573333pt;}
.y161{bottom:824.293333pt;}
.yd{bottom:826.693333pt;}
.y10d{bottom:830.053333pt;}
.y139{bottom:831.813333pt;}
.y184{bottom:836.453333pt;}
.y93{bottom:836.933333pt;}
.y160{bottom:840.773333pt;}
.ye9{bottom:842.213333pt;}
.y3b{bottom:842.853333pt;}
.yc{bottom:844.773333pt;}
.y10c{bottom:846.693333pt;}
.y138{bottom:848.293333pt;}
.y183{bottom:851.813333pt;}
.y1a9{bottom:852.293333pt;}
.y15f{bottom:857.413333pt;}
.ye8{bottom:857.573333pt;}
.y92{bottom:860.293333pt;}
.yb{bottom:863.013333pt;}
.y10b{bottom:863.173333pt;}
.y137{bottom:864.933333pt;}
.y3a{bottom:866.213333pt;}
.y182{bottom:867.173333pt;}
.y1a8{bottom:867.653333pt;}
.ye7{bottom:872.773333pt;}
.y15e{bottom:873.893333pt;}
.y91{bottom:875.653333pt;}
.y10a{bottom:879.813333pt;}
.ya{bottom:881.253333pt;}
.y136{bottom:881.413333pt;}
.y1a7{bottom:883.013333pt;}
.ye6{bottom:889.093333pt;}
.y39{bottom:889.573333pt;}
.y15d{bottom:890.373333pt;}
.y90{bottom:891.013333pt;}
.y109{bottom:896.293333pt;}
.y135{bottom:897.893333pt;}
.y1a6{bottom:898.213333pt;}
.y9{bottom:899.493333pt;}
.ye5{bottom:904.453333pt;}
.y8f{bottom:906.213333pt;}
.y15c{bottom:907.013333pt;}
.y38{bottom:912.933333pt;}
.ye4{bottom:919.813333pt;}
.y134{bottom:921.253333pt;}
.y8e{bottom:921.573333pt;}
.y15b{bottom:923.493333pt;}
.y8{bottom:928.453333pt;}
.y67{bottom:929.573333pt;}
.ye3{bottom:936.133333pt;}
.y37{bottom:936.293333pt;}
.y8d{bottom:936.933333pt;}
.y133{bottom:937.893333pt;}
.y108{bottom:940.133333pt;}
.y66{bottom:944.933333pt;}
.ye2{bottom:951.333333pt;}
.y8c{bottom:952.293333pt;}
.y132{bottom:954.373333pt;}
.y107{bottom:956.613333pt;}
.y6{bottom:957.253333pt;}
.y36{bottom:959.653333pt;}
.y65{bottom:960.293333pt;}
.y7{bottom:962.533333pt;}
.ye1{bottom:966.693333pt;}
.y131{bottom:970.853333pt;}
.y106{bottom:973.093333pt;}
.y64{bottom:975.653333pt;}
.y35{bottom:982.853333pt;}
.y5{bottom:987.493333pt;}
.y105{bottom:989.733333pt;}
.ye0{bottom:990.853333pt;}
.y63{bottom:991.013333pt;}
.y130{bottom:1003.973333pt;}
.y34{bottom:1006.213333pt;}
.y4{bottom:1010.693333pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1064.160000pt;}
.h7{height:36.045000pt;}
.h6{height:38.715000pt;}
.h9{height:38.828437pt;}
.h2{height:50.062500pt;}
.h8{height:55.402500pt;}
.h3{height:56.306250pt;}
.h5{height:61.410000pt;}
.h4{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x28{left:96.511988pt;}
.xc{left:99.231988pt;}
.x19{left:100.831988pt;}
.x27{left:102.111988pt;}
.x1a{left:108.351988pt;}
.x22{left:116.031988pt;}
.x17{left:118.431988pt;}
.x15{left:122.111988pt;}
.x11{left:132.191988pt;}
.x2{left:133.311988pt;}
.x20{left:142.426655pt;}
.x16{left:146.106655pt;}
.xd{left:160.666655pt;}
.x23{left:172.186655pt;}
.x1b{left:173.146655pt;}
.x29{left:183.546655pt;}
.x4{left:209.306655pt;}
.xb{left:286.466655pt;}
.x3{left:303.906655pt;}
.x5{left:331.746643pt;}
.x6{left:336.866655pt;}
.x21{left:342.946655pt;}
.x18{left:351.906655pt;}
.x26{left:373.026655pt;}
.xe{left:420.573322pt;}
.x12{left:427.293322pt;}
.x1e{left:444.573322pt;}
.x10{left:446.333322pt;}
.x7{left:447.773310pt;}
.x8{left:452.893322pt;}
.x1c{left:455.133322pt;}
.x14{left:458.333322pt;}
.x1f{left:468.573322pt;}
.x1d{left:471.613322pt;}
.x25{left:488.893322pt;}
.x13{left:490.333322pt;}
.x9{left:579.173310pt;}
.xa{left:584.293322pt;}
.x24{left:662.053322pt;}
.xf{left:699.333322pt;}
}




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