
    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_ad934fc31865c40978e4291c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6769bb0fb4077c5d225606cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850098;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_c2a75411fa86fa2d9f4cbf7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_2d80cad4dfd622e628a9553d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ff24a1128c5f8bec7559eaaf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1cd051980e58731a3ea3d755.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.283203;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_47a7f967a9c553ac67ba3680.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e9989156f544ffa09af17eac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.857422;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;}
.ls6{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.229800px;}
.ls9{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.115200px;}
.ls20{letter-spacing:-0.072000px;}
.ls23{letter-spacing:-0.000006px;}
.ls3{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.070560px;}
.ls4{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.092880px;}
.ls14{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.150000px;}
.lsb{letter-spacing:0.195600px;}
.ls16{letter-spacing:0.213840px;}
.ls5{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.313800px;}
.ls1f{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.086000px;}
.ls15{letter-spacing:1.122000px;}
.ls1d{letter-spacing:1.212000px;}
.ls10{letter-spacing:1.656000px;}
.ls0{letter-spacing:14.212800px;}
.ls18{letter-spacing:28.200000px;}
.ls12{letter-spacing:29.640000px;}
.ls1a{letter-spacing:30.360000px;}
.ls17{letter-spacing:31.800000px;}
.ls1c{letter-spacing:32.520000px;}
.ls19{letter-spacing:35.400000px;}
.ls1b{letter-spacing:44.040000px;}
.lse{letter-spacing:44.760000px;}
.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;}
}
.wsf{word-spacing:-20.250240px;}
.ws10{word-spacing:-19.038240px;}
.ws11{word-spacing:-18.808440px;}
.wsc{word-spacing:-17.928000px;}
.ws12{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws13{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.ws15{word-spacing:-16.271994px;}
.ws14{word-spacing:-16.200000px;}
.ws6{word-spacing:-16.128000px;}
.ws7{word-spacing:-16.056000px;}
.ws5{word-spacing:-15.768000px;}
.ws4{word-spacing:-15.624000px;}
.wsd{word-spacing:-15.284040px;}
.wsb{word-spacing:-15.226440px;}
.wse{word-spacing:-15.102840px;}
.ws0{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.855040px;}
.wsa{word-spacing:-14.837640px;}
.ws8{word-spacing:0.000000px;}
._e{margin-left:-13.552800px;}
._10{margin-left:-10.240800px;}
._f{margin-left:-8.355840px;}
._d{margin-left:-7.272840px;}
._c{margin-left:-6.207360px;}
._8{margin-left:-4.371840px;}
._7{margin-left:-3.179520px;}
._13{margin-left:-2.177280px;}
._3{margin-left:-1.152000px;}
._0{width:1.009920px;}
._4{width:2.352000px;}
._1c{width:3.818400px;}
._1a{width:5.040000px;}
._16{width:6.336000px;}
._1e{width:7.361280px;}
._19{width:9.000000px;}
._18{width:10.200000px;}
._1f{width:11.304000px;}
._20{width:12.366720px;}
._9{width:13.579200px;}
._12{width:15.048000px;}
._1d{width:18.144000px;}
._5{width:19.673280px;}
._17{width:21.491520px;}
._22{width:22.697280px;}
._14{width:24.528000px;}
._15{width:25.625280px;}
._1b{width:27.072000px;}
._23{width:30.384000px;}
._27{width:31.824000px;}
._24{width:34.416000px;}
._25{width:35.640000px;}
._26{width:36.946080px;}
._29{width:38.016000px;}
._28{width:39.024000px;}
._2b{width:47.160000px;}
._1{width:652.890000px;}
._21{width:849.185760px;}
._b{width:915.996000px;}
._2a{width:1222.687200px;}
._a{width:1244.287200px;}
._11{width:1256.527200px;}
._6{width:1259.407200px;}
._2{width:1274.527200px;}
.fc7{color:rgb(74,165,91);}
.fc6{color:rgb(155,187,89);}
.fc5{color:rgb(146,208,80);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs5{font-size:43.200000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:4.500000px;}
.y1b{bottom:4.860000px;}
.y29{bottom:5.040000px;}
.yd4{bottom:5.400000px;}
.y1a{bottom:6.300000px;}
.y20{bottom:6.480000px;}
.y85{bottom:12.960000px;}
.y54{bottom:13.500000px;}
.y18{bottom:14.040000px;}
.y3{bottom:18.000000px;}
.yad{bottom:18.030000px;}
.yca{bottom:20.160000px;}
.y30{bottom:23.220000px;}
.y31{bottom:24.660000px;}
.y4f{bottom:24.705000px;}
.y26{bottom:26.820000px;}
.yce{bottom:27.000000px;}
.y86{bottom:30.600000px;}
.y53{bottom:42.660000px;}
.y4e{bottom:44.865000px;}
.y4{bottom:56.370000px;}
.y8{bottom:57.240000px;}
.y4d{bottom:65.025000px;}
.y7{bottom:75.996000px;}
.y4c{bottom:94.185000px;}
.y6{bottom:96.156000px;}
.y84{bottom:104.430000px;}
.ya8{bottom:115.416000px;}
.yec{bottom:115.776000px;}
.yeb{bottom:120.996000px;}
.y4b{bottom:123.165000px;}
.y34{bottom:125.316000px;}
.y172{bottom:127.296000px;}
.y129{bottom:129.276000px;}
.ya7{bottom:131.796000px;}
.yea{bottom:134.496000px;}
.y56{bottom:135.036000px;}
.y154{bottom:135.216000px;}
.ya6{bottom:135.576000px;}
.y4a{bottom:143.325000px;}
.y74{bottom:148.176000px;}
.ya5{bottom:149.256000px;}
.y187{bottom:153.570000px;}
.y128{bottom:154.470000px;}
.y33{bottom:155.370000px;}
.y162{bottom:156.090000px;}
.y196{bottom:157.170000px;}
.y153{bottom:160.590000px;}
.y49{bottom:163.485000px;}
.y108{bottom:166.890000px;}
.y55{bottom:169.230000px;}
.y171{bottom:173.550000px;}
.y127{bottom:179.850000px;}
.ye9{bottom:180.390000px;}
.y32{bottom:181.470000px;}
.y73{bottom:182.370000px;}
.y52{bottom:188.670000px;}
.y107{bottom:192.270000px;}
.y186{bottom:198.750000px;}
.ya4{bottom:201.090000px;}
.y195{bottom:202.350000px;}
.y2f{bottom:203.430000px;}
.y126{bottom:205.050000px;}
.ye8{bottom:205.590000px;}
.y145{bottom:206.670000px;}
.y152{bottom:206.850000px;}
.y72{bottom:216.570000px;}
.y106{bottom:217.470000px;}
.y170{bottom:219.810000px;}
.ya3{bottom:226.290000px;}
.y125{bottom:230.430000px;}
.y161{bottom:231.870000px;}
.y144{bottom:232.050000px;}
.y105{bottom:242.670000px;}
.y2e{bottom:243.750000px;}
.y185{bottom:244.110000px;}
.y194{bottom:247.710000px;}
.y71{bottom:250.590000px;}
.ya2{bottom:251.490000px;}
.ye7{bottom:253.110000px;}
.y124{bottom:255.630000px;}
.y143{bottom:257.250000px;}
.y2d{bottom:265.710000px;}
.y16f{bottom:266.070000px;}
.y104{bottom:268.050000px;}
.y51{bottom:271.110000px;}
.ya1{bottom:276.870000px;}
.y123{bottom:280.830000px;}
.y160{bottom:282.450000px;}
.y151{bottom:282.630000px;}
.y70{bottom:284.790000px;}
.y2c{bottom:287.670000px;}
.y184{bottom:289.290000px;}
.y193{bottom:292.890000px;}
.yc7{bottom:299.550000px;}
.ye6{bottom:300.090000px;}
.y50{bottom:301.350000px;}
.y9f{bottom:302.070000px;}
.y142{bottom:303.510000px;}
.y122{bottom:306.210000px;}
.y15f{bottom:307.650000px;}
.ya0{bottom:308.010000px;}
.y16e{bottom:312.330000px;}
.y103{bottom:314.310000px;}
.y6f{bottom:318.990000px;}
.yc6{bottom:321.150000px;}
.y2b{bottom:322.590000px;}
.ye5{bottom:323.130000px;}
.y9e{bottom:327.450000px;}
.y141{bottom:328.710000px;}
.y150{bottom:328.890000px;}
.y48{bottom:329.610000px;}
.y121{bottom:331.410000px;}
.y15e{bottom:333.030000px;}
.y183{bottom:335.550000px;}
.y192{bottom:338.295000px;}
.y102{bottom:339.555000px;}
.ye4{bottom:346.395000px;}
.y2a{bottom:348.735000px;}
.y6e{bottom:353.235000px;}
.y140{bottom:354.135000px;}
.y16d{bottom:358.635000px;}
.y182{bottom:360.975000px;}
.yc5{bottom:365.295000px;}
.ye3{bottom:369.435000px;}
.y28{bottom:370.695000px;}
.y9d{bottom:373.755000px;}
.y120{bottom:377.715000px;}
.y13f{bottom:379.335000px;}
.y14f{bottom:379.515000px;}
.y191{bottom:383.475000px;}
.y6d{bottom:387.255000px;}
.yc4{bottom:388.515000px;}
.ye2{bottom:392.475000px;}
.y27{bottom:392.835000px;}
.y9c{bottom:398.955000px;}
.y1ac{bottom:399.675000px;}
.y11f{bottom:402.915000px;}
.y15d{bottom:404.535000px;}
.y13e{bottom:404.715000px;}
.y16c{bottom:404.895000px;}
.y181{bottom:407.235000px;}
.y25{bottom:414.795000px;}
.ye1{bottom:415.515000px;}
.y6c{bottom:421.995000px;}
.y9b{bottom:424.155000px;}
.y14e{bottom:427.035000px;}
.y11e{bottom:428.295000px;}
.y190{bottom:428.655000px;}
.y13d{bottom:429.915000px;}
.y180{bottom:432.435000px;}
.yc3{bottom:432.615000px;}
.y101{bottom:435.675000px;}
.ye0{bottom:438.555000px;}
.y1ab{bottom:444.855000px;}
.y9a{bottom:449.535000px;}
.y6b{bottom:450.615000px;}
.y16b{bottom:451.155000px;}
.y11d{bottom:453.495000px;}
.y13c{bottom:455.115000px;}
.yc2{bottom:455.835000px;}
.y17f{bottom:457.815000px;}
.y100{bottom:458.895000px;}
.y24{bottom:471.675000px;}
.ydf{bottom:473.655000px;}
.y18f{bottom:474.015000px;}
.y99{bottom:474.735000px;}
.y14d{bottom:476.175000px;}
.yc1{bottom:478.875000px;}
.y6a{bottom:479.235000px;}
.y15c{bottom:480.315000px;}
.yff{bottom:481.935000px;}
.y17e{bottom:483.015000px;}
.y1aa{bottom:491.115000px;}
.yde{bottom:496.695000px;}
.y16a{bottom:497.415000px;}
.y13b{bottom:501.375000px;}
.yc0{bottom:502.095000px;}
.y23{bottom:503.355000px;}
.y11c{bottom:504.075000px;}
.y15b{bottom:505.695000px;}
.y69{bottom:507.855000px;}
.y17d{bottom:508.215000px;}
.y1a9{bottom:516.495000px;}
.y18e{bottom:519.195000px;}
.ydd{bottom:519.735000px;}
.y98{bottom:520.995000px;}
.y22{bottom:525.315000px;}
.y13a{bottom:526.755000px;}
.yfe{bottom:528.195000px;}
.y11b{bottom:529.275000px;}
.y15a{bottom:530.895000px;}
.y47{bottom:533.055000px;}
.y17c{bottom:533.595000px;}
.y68{bottom:536.475000px;}
.y1a8{bottom:541.695000px;}
.ydc{bottom:542.955000px;}
.y169{bottom:543.675000px;}
.y97{bottom:546.375000px;}
.y21{bottom:547.275000px;}
.ybf{bottom:548.355000px;}
.y82{bottom:548.895000px;}
.y139{bottom:551.955000px;}
.y11a{bottom:554.655000px;}
.y159{bottom:556.275000px;}
.y17b{bottom:558.795000px;}
.y46{bottom:563.115000px;}
.y18d{bottom:564.555000px;}
.y67{bottom:565.095000px;}
.ydb{bottom:565.995000px;}
.y1f{bottom:569.235000px;}
.y96{bottom:571.575000px;}
.yfd{bottom:576.615000px;}
.y138{bottom:577.335000px;}
.y81{bottom:583.815000px;}
.y1a7{bottom:587.955000px;}
.yda{bottom:589.035000px;}
.y168{bottom:589.935000px;}
.y45{bottom:593.175000px;}
.y66{bottom:593.895000px;}
.ybe{bottom:594.795000px;}
.yfc{bottom:599.835000px;}
.y119{bottom:600.915000px;}
.y137{bottom:602.535000px;}
.y17a{bottom:605.085000px;}
.y18c{bottom:609.765000px;}
.y1e{bottom:609.945000px;}
.yd9{bottom:612.105000px;}
.y1a6{bottom:613.365000px;}
.y95{bottom:617.865000px;}
.y80{bottom:618.945000px;}
.y65{bottom:622.545000px;}
.yfb{bottom:623.085000px;}
.y44{bottom:623.445000px;}
.y118{bottom:626.145000px;}
.y14c{bottom:627.765000px;}
.y167{bottom:636.225000px;}
.y1c{bottom:638.205000px;}
.y1a5{bottom:638.565000px;}
.ybd{bottom:641.085000px;}
.y94{bottom:643.065000px;}
.yfa{bottom:646.125000px;}
.y136{bottom:648.825000px;}
.y64{bottom:651.165000px;}
.y179{bottom:651.345000px;}
.y117{bottom:651.525000px;}
.y14b{bottom:653.145000px;}
.y43{bottom:653.505000px;}
.y7f{bottom:654.045000px;}
.y18b{bottom:654.585000px;}
.yd8{bottom:658.365000px;}
.y19{bottom:660.705000px;}
.y1a4{bottom:663.765000px;}
.ybc{bottom:664.305000px;}
.y93{bottom:668.445000px;}
.y135{bottom:674.025000px;}
.y116{bottom:676.725000px;}
.y14a{bottom:678.345000px;}
.y63{bottom:679.785000px;}
.y166{bottom:682.485000px;}
.y42{bottom:683.565000px;}
.y17{bottom:684.825000px;}
.ybb{bottom:687.345000px;}
.y7e{bottom:689.145000px;}
.yf9{bottom:692.385000px;}
.y92{bottom:693.645000px;}
.y158{bottom:699.225000px;}
.y134{bottom:699.405000px;}
.y178{bottom:701.925000px;}
.y149{bottom:703.545000px;}
.y62{bottom:708.405000px;}
.y1a3{bottom:710.025000px;}
.yba{bottom:710.565000px;}
.y41{bottom:713.625000px;}
.y91{bottom:718.845000px;}
.y115{bottom:722.985000px;}
.yd7{bottom:723.345000px;}
.y7d{bottom:724.245000px;}
.y133{bottom:724.605000px;}
.y177{bottom:727.125000px;}
.y165{bottom:728.925000px;}
.yb9{bottom:733.785000px;}
.y1a2{bottom:735.405000px;}
.y61{bottom:737.025000px;}
.y16{bottom:739.725000px;}
.yf8{bottom:740.805000px;}
.y40{bottom:743.865000px;}
.y90{bottom:744.225000px;}
.y114{bottom:748.185000px;}
.yd6{bottom:749.805000px;}
.y132{bottom:749.985000px;}
.y7c{bottom:759.345000px;}
.y1a1{bottom:760.605000px;}
.yf7{bottom:764.025000px;}
.y60{bottom:765.825000px;}
.y15{bottom:769.425000px;}
.y176{bottom:773.385000px;}
.y113{bottom:773.565000px;}
.y3f{bottom:773.925000px;}
.y131{bottom:775.185000px;}
.yd5{bottom:777.705000px;}
.yb8{bottom:778.605000px;}
.y1a0{bottom:785.985000px;}
.yf6{bottom:787.065000px;}
.y7b{bottom:794.265000px;}
.y5f{bottom:794.445000px;}
.y8f{bottom:794.805000px;}
.y14{bottom:795.885000px;}
.y18a{bottom:796.245000px;}
.y112{bottom:798.765000px;}
.y130{bottom:800.385000px;}
.y3e{bottom:803.985000px;}
.yd3{bottom:804.165000px;}
.y19f{bottom:811.185000px;}
.y164{bottom:821.445000px;}
.y13{bottom:822.345000px;}
.y5e{bottom:823.065000px;}
.y175{bottom:823.965000px;}
.y111{bottom:824.145000px;}
.yb7{bottom:824.865000px;}
.y12f{bottom:825.765000px;}
.y7a{bottom:829.365000px;}
.yf5{bottom:831.345000px;}
.yd2{bottom:832.605000px;}
.y3d{bottom:834.045000px;}
.y19e{bottom:836.385000px;}
.y8e{bottom:841.065000px;}
.y157{bottom:846.645000px;}
.y12{bottom:848.805000px;}
.y110{bottom:849.345000px;}
.yb6{bottom:850.065000px;}
.y12e{bottom:850.965000px;}
.y5d{bottom:851.685000px;}
.yf4{bottom:854.385000px;}
.yd1{bottom:859.245000px;}
.y19d{bottom:861.765000px;}
.y3c{bottom:864.285000px;}
.y79{bottom:864.465000px;}
.y8d{bottom:866.265000px;}
.y156{bottom:871.890000px;}
.y189{bottom:872.070000px;}
.y148{bottom:873.330000px;}
.y11{bottom:874.410000px;}
.y174{bottom:874.590000px;}
.yb5{bottom:875.490000px;}
.yf3{bottom:877.650000px;}
.y5c{bottom:880.350000px;}
.y19c{bottom:887.010000px;}
.yd0{bottom:887.190000px;}
.y8c{bottom:891.510000px;}
.y3b{bottom:894.390000px;}
.y10{bottom:896.370000px;}
.y10f{bottom:896.910000px;}
.y155{bottom:897.270000px;}
.y12d{bottom:898.530000px;}
.y78{bottom:899.610000px;}
.y173{bottom:899.790000px;}
.yb4{bottom:900.690000px;}
.yf2{bottom:900.870000px;}
.y5b{bottom:908.970000px;}
.ycf{bottom:913.650000px;}
.y8b{bottom:916.890000px;}
.yf{bottom:918.330000px;}
.y147{bottom:922.470000px;}
.yf1{bottom:923.910000px;}
.y3a{bottom:924.450000px;}
.yb3{bottom:925.890000px;}
.y19b{bottom:933.270000px;}
.y77{bottom:934.710000px;}
.y5a{bottom:937.590000px;}
.ye{bottom:939.390000px;}
.ycd{bottom:941.550000px;}
.y8a{bottom:942.090000px;}
.y10e{bottom:946.050000px;}
.y12c{bottom:947.850000px;}
.yb2{bottom:951.270000px;}
.y39{bottom:954.510000px;}
.yd{bottom:957.750000px;}
.y19a{bottom:958.650000px;}
.y59{bottom:966.390000px;}
.y89{bottom:967.470000px;}
.y76{bottom:969.810000px;}
.yf0{bottom:970.170000px;}
.y10d{bottom:971.430000px;}
.y12b{bottom:973.050000px;}
.yc{bottom:976.110000px;}
.yab{bottom:976.290000px;}
.yb1{bottom:976.470000px;}
.y199{bottom:983.850000px;}
.y38{bottom:984.570000px;}
.ycc{bottom:990.150000px;}
.y58{bottom:990.870000px;}
.y163{bottom:994.110000px;}
.yb{bottom:994.290000px;}
.y10c{bottom:996.630000px;}
.y12a{bottom:998.250000px;}
.yaa{bottom:1001.670000px;}
.yb0{bottom:1001.850000px;}
.y75{bottom:1004.910000px;}
.y198{bottom:1009.050000px;}
.y37{bottom:1014.810000px;}
.y88{bottom:1014.990000px;}
.ycb{bottom:1018.050000px;}
.yef{bottom:1019.310000px;}
.y10b{bottom:1022.010000px;}
.y146{bottom:1023.630000px;}
.ya9{bottom:1026.870000px;}
.ya{bottom:1028.490000px;}
.y197{bottom:1034.430000px;}
.y57{bottom:1039.830000px;}
.yee{bottom:1044.510000px;}
.y188{bottom:1044.690000px;}
.y36{bottom:1044.870000px;}
.yc9{bottom:1045.950000px;}
.y10a{bottom:1047.210000px;}
.yaf{bottom:1048.110000px;}
.y87{bottom:1048.470000px;}
.y83{bottom:1068.630000px;}
.yed{bottom:1069.890000px;}
.y9{bottom:1074.930000px;}
.yae{bottom:1092.030000px;}
.y109{bottom:1092.210000px;}
.yc8{bottom:1095.090000px;}
.y5{bottom:1096.530000px;}
.y2{bottom:1116.690000px;}
.yac{bottom:1136.850000px;}
.y1{bottom:1193.220000px;}
.y35{bottom:1200.299100px;}
.h4{height:2.864531px;}
.he{height:20.160000px;}
.hd{height:21.960000px;}
.h21{height:21.996000px;}
.h10{height:22.140000px;}
.h22{height:22.500000px;}
.h1b{height:35.806641px;}
.h1f{height:37.260000px;}
.h23{height:38.671172px;}
.hc{height:40.140000px;}
.h11{height:40.320000px;}
.h12{height:42.335156px;}
.hf{height:43.920000px;}
.h20{height:44.100000px;}
.h1a{height:47.980898px;}
.h6{height:50.364141px;}
.h1e{height:50.585625px;}
.h1c{height:53.709961px;}
.h5{height:55.825312px;}
.h24{height:59.439023px;}
.hb{height:60.679688px;}
.h9{height:61.189805px;}
.h2{height:65.884219px;}
.h14{height:67.320000px;}
.h1d{height:67.824844px;}
.h15{height:70.995234px;}
.h7{height:71.613281px;}
.h3{height:72.036000px;}
.ha{height:73.722656px;}
.h19{height:74.004654px;}
.h17{height:84.996000px;}
.h18{height:86.255508px;}
.h16{height:120.096000px;}
.h8{height:134.912461px;}
.h13{height:188.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:16.740000px;}
.w15{width:17.640000px;}
.wf{width:54.000000px;}
.w11{width:109.260000px;}
.w9{width:174.450000px;}
.w17{width:294.870000px;}
.w13{width:300.810000px;}
.w3{width:307.110000px;}
.wa{width:337.530000px;}
.wd{width:338.250000px;}
.we{width:338.835000px;}
.wb{width:339.555000px;}
.w14{width:358.626000px;}
.w4{width:364.755000px;}
.w18{width:379.875000px;}
.w8{width:495.795000px;}
.w10{width:513.825000px;}
.w12{width:659.445000px;}
.w5{width:660.345000px;}
.w7{width:672.405000px;}
.wc{width:677.085000px;}
.w16{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:6.840000px;}
.x6{left:8.100000px;}
.x1c{left:50.400000px;}
.x2{left:102.276000px;}
.x17{left:106.914000px;}
.x1{left:108.035987px;}
.x11{left:110.376000px;}
.xb{left:112.895987px;}
.xd{left:114.335987px;}
.x1d{left:124.595987px;}
.x25{left:126.750000px;}
.xc{left:130.175987px;}
.x1f{left:135.035987px;}
.x18{left:138.630000px;}
.x1a{left:162.030000px;}
.x10{left:196.409987px;}
.x16{left:244.839000px;}
.x12{left:259.419000px;}
.x19{left:267.339000px;}
.x15{left:272.919000px;}
.x1e{left:295.419000px;}
.x3{left:299.019000px;}
.x22{left:324.074987px;}
.x5{left:356.655000px;}
.xa{left:358.994987px;}
.x23{left:374.474987px;}
.x26{left:382.934973px;}
.x27{left:389.054987px;}
.xe{left:399.674987px;}
.x24{left:405.075000px;}
.x4{left:409.395000px;}
.x9{left:418.034987px;}
.xf{left:446.474987px;}
.x14{left:608.325000px;}
.x20{left:627.764973px;}
.x21{left:635.864987px;}
.x1b{left:675.870000px;}
.x7{left:768.390000px;}
.x8{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.204267pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.102400pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls23{letter-spacing:-0.000005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.062720pt;}
.ls4{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.082560pt;}
.ls14{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.133333pt;}
.lsb{letter-spacing:0.173867pt;}
.ls16{letter-spacing:0.190080pt;}
.ls5{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.278933pt;}
.ls1f{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.965333pt;}
.ls15{letter-spacing:0.997333pt;}
.ls1d{letter-spacing:1.077333pt;}
.ls10{letter-spacing:1.472000pt;}
.ls0{letter-spacing:12.633600pt;}
.ls18{letter-spacing:25.066667pt;}
.ls12{letter-spacing:26.346667pt;}
.ls1a{letter-spacing:26.986667pt;}
.ls17{letter-spacing:28.266667pt;}
.ls1c{letter-spacing:28.906667pt;}
.ls19{letter-spacing:31.466667pt;}
.ls1b{letter-spacing:39.146667pt;}
.lse{letter-spacing:39.786667pt;}
.wsf{word-spacing:-18.000213pt;}
.ws10{word-spacing:-16.922880pt;}
.ws11{word-spacing:-16.718613pt;}
.wsc{word-spacing:-15.936000pt;}
.ws12{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws13{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws15{word-spacing:-14.463995pt;}
.ws14{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.336000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws5{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.888000pt;}
.wsd{word-spacing:-13.585813pt;}
.wsb{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.424747pt;}
.ws0{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.204480pt;}
.wsa{word-spacing:-13.189013pt;}
.ws8{word-spacing:0.000000pt;}
._e{margin-left:-12.046933pt;}
._10{margin-left:-9.102933pt;}
._f{margin-left:-7.427413pt;}
._d{margin-left:-6.464747pt;}
._c{margin-left:-5.517653pt;}
._8{margin-left:-3.886080pt;}
._7{margin-left:-2.826240pt;}
._13{margin-left:-1.935360pt;}
._3{margin-left:-1.024000pt;}
._0{width:0.897707pt;}
._4{width:2.090667pt;}
._1c{width:3.394133pt;}
._1a{width:4.480000pt;}
._16{width:5.632000pt;}
._1e{width:6.543360pt;}
._19{width:8.000000pt;}
._18{width:9.066667pt;}
._1f{width:10.048000pt;}
._20{width:10.992640pt;}
._9{width:12.070400pt;}
._12{width:13.376000pt;}
._1d{width:16.128000pt;}
._5{width:17.487360pt;}
._17{width:19.103573pt;}
._22{width:20.175360pt;}
._14{width:21.802667pt;}
._15{width:22.778027pt;}
._1b{width:24.064000pt;}
._23{width:27.008000pt;}
._27{width:28.288000pt;}
._24{width:30.592000pt;}
._25{width:31.680000pt;}
._26{width:32.840960pt;}
._29{width:33.792000pt;}
._28{width:34.688000pt;}
._2b{width:41.920000pt;}
._1{width:580.346667pt;}
._21{width:754.831787pt;}
._b{width:814.218667pt;}
._2a{width:1086.833067pt;}
._a{width:1106.033067pt;}
._11{width:1116.913067pt;}
._6{width:1119.473067pt;}
._2{width:1132.913067pt;}
.fs1{font-size:2.560000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs5{font-size:38.400000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:4.000000pt;}
.y1b{bottom:4.320000pt;}
.y29{bottom:4.480000pt;}
.yd4{bottom:4.800000pt;}
.y1a{bottom:5.600000pt;}
.y20{bottom:5.760000pt;}
.y85{bottom:11.520000pt;}
.y54{bottom:12.000000pt;}
.y18{bottom:12.480000pt;}
.y3{bottom:16.000000pt;}
.yad{bottom:16.026667pt;}
.yca{bottom:17.920000pt;}
.y30{bottom:20.640000pt;}
.y31{bottom:21.920000pt;}
.y4f{bottom:21.960000pt;}
.y26{bottom:23.840000pt;}
.yce{bottom:24.000000pt;}
.y86{bottom:27.200000pt;}
.y53{bottom:37.920000pt;}
.y4e{bottom:39.880000pt;}
.y4{bottom:50.106667pt;}
.y8{bottom:50.880000pt;}
.y4d{bottom:57.800000pt;}
.y7{bottom:67.552000pt;}
.y4c{bottom:83.720000pt;}
.y6{bottom:85.472000pt;}
.y84{bottom:92.826667pt;}
.ya8{bottom:102.592000pt;}
.yec{bottom:102.912000pt;}
.yeb{bottom:107.552000pt;}
.y4b{bottom:109.480000pt;}
.y34{bottom:111.392000pt;}
.y172{bottom:113.152000pt;}
.y129{bottom:114.912000pt;}
.ya7{bottom:117.152000pt;}
.yea{bottom:119.552000pt;}
.y56{bottom:120.032000pt;}
.y154{bottom:120.192000pt;}
.ya6{bottom:120.512000pt;}
.y4a{bottom:127.400000pt;}
.y74{bottom:131.712000pt;}
.ya5{bottom:132.672000pt;}
.y187{bottom:136.506667pt;}
.y128{bottom:137.306667pt;}
.y33{bottom:138.106667pt;}
.y162{bottom:138.746667pt;}
.y196{bottom:139.706667pt;}
.y153{bottom:142.746667pt;}
.y49{bottom:145.320000pt;}
.y108{bottom:148.346667pt;}
.y55{bottom:150.426667pt;}
.y171{bottom:154.266667pt;}
.y127{bottom:159.866667pt;}
.ye9{bottom:160.346667pt;}
.y32{bottom:161.306667pt;}
.y73{bottom:162.106667pt;}
.y52{bottom:167.706667pt;}
.y107{bottom:170.906667pt;}
.y186{bottom:176.666667pt;}
.ya4{bottom:178.746667pt;}
.y195{bottom:179.866667pt;}
.y2f{bottom:180.826667pt;}
.y126{bottom:182.266667pt;}
.ye8{bottom:182.746667pt;}
.y145{bottom:183.706667pt;}
.y152{bottom:183.866667pt;}
.y72{bottom:192.506667pt;}
.y106{bottom:193.306667pt;}
.y170{bottom:195.386667pt;}
.ya3{bottom:201.146667pt;}
.y125{bottom:204.826667pt;}
.y161{bottom:206.106667pt;}
.y144{bottom:206.266667pt;}
.y105{bottom:215.706667pt;}
.y2e{bottom:216.666667pt;}
.y185{bottom:216.986667pt;}
.y194{bottom:220.186667pt;}
.y71{bottom:222.746667pt;}
.ya2{bottom:223.546667pt;}
.ye7{bottom:224.986667pt;}
.y124{bottom:227.226667pt;}
.y143{bottom:228.666667pt;}
.y2d{bottom:236.186667pt;}
.y16f{bottom:236.506667pt;}
.y104{bottom:238.266667pt;}
.y51{bottom:240.986667pt;}
.ya1{bottom:246.106667pt;}
.y123{bottom:249.626667pt;}
.y160{bottom:251.066667pt;}
.y151{bottom:251.226667pt;}
.y70{bottom:253.146667pt;}
.y2c{bottom:255.706667pt;}
.y184{bottom:257.146667pt;}
.y193{bottom:260.346667pt;}
.yc7{bottom:266.266667pt;}
.ye6{bottom:266.746667pt;}
.y50{bottom:267.866667pt;}
.y9f{bottom:268.506667pt;}
.y142{bottom:269.786667pt;}
.y122{bottom:272.186667pt;}
.y15f{bottom:273.466667pt;}
.ya0{bottom:273.786667pt;}
.y16e{bottom:277.626667pt;}
.y103{bottom:279.386667pt;}
.y6f{bottom:283.546667pt;}
.yc6{bottom:285.466667pt;}
.y2b{bottom:286.746667pt;}
.ye5{bottom:287.226667pt;}
.y9e{bottom:291.066667pt;}
.y141{bottom:292.186667pt;}
.y150{bottom:292.346667pt;}
.y48{bottom:292.986667pt;}
.y121{bottom:294.586667pt;}
.y15e{bottom:296.026667pt;}
.y183{bottom:298.266667pt;}
.y192{bottom:300.706667pt;}
.y102{bottom:301.826667pt;}
.ye4{bottom:307.906667pt;}
.y2a{bottom:309.986667pt;}
.y6e{bottom:313.986667pt;}
.y140{bottom:314.786667pt;}
.y16d{bottom:318.786667pt;}
.y182{bottom:320.866667pt;}
.yc5{bottom:324.706667pt;}
.ye3{bottom:328.386667pt;}
.y28{bottom:329.506667pt;}
.y9d{bottom:332.226667pt;}
.y120{bottom:335.746667pt;}
.y13f{bottom:337.186667pt;}
.y14f{bottom:337.346667pt;}
.y191{bottom:340.866667pt;}
.y6d{bottom:344.226667pt;}
.yc4{bottom:345.346667pt;}
.ye2{bottom:348.866667pt;}
.y27{bottom:349.186667pt;}
.y9c{bottom:354.626667pt;}
.y1ac{bottom:355.266667pt;}
.y11f{bottom:358.146667pt;}
.y15d{bottom:359.586667pt;}
.y13e{bottom:359.746667pt;}
.y16c{bottom:359.906667pt;}
.y181{bottom:361.986667pt;}
.y25{bottom:368.706667pt;}
.ye1{bottom:369.346667pt;}
.y6c{bottom:375.106667pt;}
.y9b{bottom:377.026667pt;}
.y14e{bottom:379.586667pt;}
.y11e{bottom:380.706667pt;}
.y190{bottom:381.026667pt;}
.y13d{bottom:382.146667pt;}
.y180{bottom:384.386667pt;}
.yc3{bottom:384.546667pt;}
.y101{bottom:387.266667pt;}
.ye0{bottom:389.826667pt;}
.y1ab{bottom:395.426667pt;}
.y9a{bottom:399.586667pt;}
.y6b{bottom:400.546667pt;}
.y16b{bottom:401.026667pt;}
.y11d{bottom:403.106667pt;}
.y13c{bottom:404.546667pt;}
.yc2{bottom:405.186667pt;}
.y17f{bottom:406.946667pt;}
.y100{bottom:407.906667pt;}
.y24{bottom:419.266667pt;}
.ydf{bottom:421.026667pt;}
.y18f{bottom:421.346667pt;}
.y99{bottom:421.986667pt;}
.y14d{bottom:423.266667pt;}
.yc1{bottom:425.666667pt;}
.y6a{bottom:425.986667pt;}
.y15c{bottom:426.946667pt;}
.yff{bottom:428.386667pt;}
.y17e{bottom:429.346667pt;}
.y1aa{bottom:436.546667pt;}
.yde{bottom:441.506667pt;}
.y16a{bottom:442.146667pt;}
.y13b{bottom:445.666667pt;}
.yc0{bottom:446.306667pt;}
.y23{bottom:447.426667pt;}
.y11c{bottom:448.066667pt;}
.y15b{bottom:449.506667pt;}
.y69{bottom:451.426667pt;}
.y17d{bottom:451.746667pt;}
.y1a9{bottom:459.106667pt;}
.y18e{bottom:461.506667pt;}
.ydd{bottom:461.986667pt;}
.y98{bottom:463.106667pt;}
.y22{bottom:466.946667pt;}
.y13a{bottom:468.226667pt;}
.yfe{bottom:469.506667pt;}
.y11b{bottom:470.466667pt;}
.y15a{bottom:471.906667pt;}
.y47{bottom:473.826667pt;}
.y17c{bottom:474.306667pt;}
.y68{bottom:476.866667pt;}
.y1a8{bottom:481.506667pt;}
.ydc{bottom:482.626667pt;}
.y169{bottom:483.266667pt;}
.y97{bottom:485.666667pt;}
.y21{bottom:486.466667pt;}
.ybf{bottom:487.426667pt;}
.y82{bottom:487.906667pt;}
.y139{bottom:490.626667pt;}
.y11a{bottom:493.026667pt;}
.y159{bottom:494.466667pt;}
.y17b{bottom:496.706667pt;}
.y46{bottom:500.546667pt;}
.y18d{bottom:501.826667pt;}
.y67{bottom:502.306667pt;}
.ydb{bottom:503.106667pt;}
.y1f{bottom:505.986667pt;}
.y96{bottom:508.066667pt;}
.yfd{bottom:512.546667pt;}
.y138{bottom:513.186667pt;}
.y81{bottom:518.946667pt;}
.y1a7{bottom:522.626667pt;}
.yda{bottom:523.586667pt;}
.y168{bottom:524.386667pt;}
.y45{bottom:527.266667pt;}
.y66{bottom:527.906667pt;}
.ybe{bottom:528.706667pt;}
.yfc{bottom:533.186667pt;}
.y119{bottom:534.146667pt;}
.y137{bottom:535.586667pt;}
.y17a{bottom:537.853333pt;}
.y18c{bottom:542.013333pt;}
.y1e{bottom:542.173333pt;}
.yd9{bottom:544.093333pt;}
.y1a6{bottom:545.213333pt;}
.y95{bottom:549.213333pt;}
.y80{bottom:550.173333pt;}
.y65{bottom:553.373333pt;}
.yfb{bottom:553.853333pt;}
.y44{bottom:554.173333pt;}
.y118{bottom:556.573333pt;}
.y14c{bottom:558.013333pt;}
.y167{bottom:565.533333pt;}
.y1c{bottom:567.293333pt;}
.y1a5{bottom:567.613333pt;}
.ybd{bottom:569.853333pt;}
.y94{bottom:571.613333pt;}
.yfa{bottom:574.333333pt;}
.y136{bottom:576.733333pt;}
.y64{bottom:578.813333pt;}
.y179{bottom:578.973333pt;}
.y117{bottom:579.133333pt;}
.y14b{bottom:580.573333pt;}
.y43{bottom:580.893333pt;}
.y7f{bottom:581.373333pt;}
.y18b{bottom:581.853333pt;}
.yd8{bottom:585.213333pt;}
.y19{bottom:587.293333pt;}
.y1a4{bottom:590.013333pt;}
.ybc{bottom:590.493333pt;}
.y93{bottom:594.173333pt;}
.y135{bottom:599.133333pt;}
.y116{bottom:601.533333pt;}
.y14a{bottom:602.973333pt;}
.y63{bottom:604.253333pt;}
.y166{bottom:606.653333pt;}
.y42{bottom:607.613333pt;}
.y17{bottom:608.733333pt;}
.ybb{bottom:610.973333pt;}
.y7e{bottom:612.573333pt;}
.yf9{bottom:615.453333pt;}
.y92{bottom:616.573333pt;}
.y158{bottom:621.533333pt;}
.y134{bottom:621.693333pt;}
.y178{bottom:623.933333pt;}
.y149{bottom:625.373333pt;}
.y62{bottom:629.693333pt;}
.y1a3{bottom:631.133333pt;}
.yba{bottom:631.613333pt;}
.y41{bottom:634.333333pt;}
.y91{bottom:638.973333pt;}
.y115{bottom:642.653333pt;}
.yd7{bottom:642.973333pt;}
.y7d{bottom:643.773333pt;}
.y133{bottom:644.093333pt;}
.y177{bottom:646.333333pt;}
.y165{bottom:647.933333pt;}
.yb9{bottom:652.253333pt;}
.y1a2{bottom:653.693333pt;}
.y61{bottom:655.133333pt;}
.y16{bottom:657.533333pt;}
.yf8{bottom:658.493333pt;}
.y40{bottom:661.213333pt;}
.y90{bottom:661.533333pt;}
.y114{bottom:665.053333pt;}
.yd6{bottom:666.493333pt;}
.y132{bottom:666.653333pt;}
.y7c{bottom:674.973333pt;}
.y1a1{bottom:676.093333pt;}
.yf7{bottom:679.133333pt;}
.y60{bottom:680.733333pt;}
.y15{bottom:683.933333pt;}
.y176{bottom:687.453333pt;}
.y113{bottom:687.613333pt;}
.y3f{bottom:687.933333pt;}
.y131{bottom:689.053333pt;}
.yd5{bottom:691.293333pt;}
.yb8{bottom:692.093333pt;}
.y1a0{bottom:698.653333pt;}
.yf6{bottom:699.613333pt;}
.y7b{bottom:706.013333pt;}
.y5f{bottom:706.173333pt;}
.y8f{bottom:706.493333pt;}
.y14{bottom:707.453333pt;}
.y18a{bottom:707.773333pt;}
.y112{bottom:710.013333pt;}
.y130{bottom:711.453333pt;}
.y3e{bottom:714.653333pt;}
.yd3{bottom:714.813333pt;}
.y19f{bottom:721.053333pt;}
.y164{bottom:730.173333pt;}
.y13{bottom:730.973333pt;}
.y5e{bottom:731.613333pt;}
.y175{bottom:732.413333pt;}
.y111{bottom:732.573333pt;}
.yb7{bottom:733.213333pt;}
.y12f{bottom:734.013333pt;}
.y7a{bottom:737.213333pt;}
.yf5{bottom:738.973333pt;}
.yd2{bottom:740.093333pt;}
.y3d{bottom:741.373333pt;}
.y19e{bottom:743.453333pt;}
.y8e{bottom:747.613333pt;}
.y157{bottom:752.573333pt;}
.y12{bottom:754.493333pt;}
.y110{bottom:754.973333pt;}
.yb6{bottom:755.613333pt;}
.y12e{bottom:756.413333pt;}
.y5d{bottom:757.053333pt;}
.yf4{bottom:759.453333pt;}
.yd1{bottom:763.773333pt;}
.y19d{bottom:766.013333pt;}
.y3c{bottom:768.253333pt;}
.y79{bottom:768.413333pt;}
.y8d{bottom:770.013333pt;}
.y156{bottom:775.013333pt;}
.y189{bottom:775.173333pt;}
.y148{bottom:776.293333pt;}
.y11{bottom:777.253333pt;}
.y174{bottom:777.413333pt;}
.yb5{bottom:778.213333pt;}
.yf3{bottom:780.133333pt;}
.y5c{bottom:782.533333pt;}
.y19c{bottom:788.453333pt;}
.yd0{bottom:788.613333pt;}
.y8c{bottom:792.453333pt;}
.y3b{bottom:795.013333pt;}
.y10{bottom:796.773333pt;}
.y10f{bottom:797.253333pt;}
.y155{bottom:797.573333pt;}
.y12d{bottom:798.693333pt;}
.y78{bottom:799.653333pt;}
.y173{bottom:799.813333pt;}
.yb4{bottom:800.613333pt;}
.yf2{bottom:800.773333pt;}
.y5b{bottom:807.973333pt;}
.ycf{bottom:812.133333pt;}
.y8b{bottom:815.013333pt;}
.yf{bottom:816.293333pt;}
.y147{bottom:819.973333pt;}
.yf1{bottom:821.253333pt;}
.y3a{bottom:821.733333pt;}
.yb3{bottom:823.013333pt;}
.y19b{bottom:829.573333pt;}
.y77{bottom:830.853333pt;}
.y5a{bottom:833.413333pt;}
.ye{bottom:835.013333pt;}
.ycd{bottom:836.933333pt;}
.y8a{bottom:837.413333pt;}
.y10e{bottom:840.933333pt;}
.y12c{bottom:842.533333pt;}
.yb2{bottom:845.573333pt;}
.y39{bottom:848.453333pt;}
.yd{bottom:851.333333pt;}
.y19a{bottom:852.133333pt;}
.y59{bottom:859.013333pt;}
.y89{bottom:859.973333pt;}
.y76{bottom:862.053333pt;}
.yf0{bottom:862.373333pt;}
.y10d{bottom:863.493333pt;}
.y12b{bottom:864.933333pt;}
.yc{bottom:867.653333pt;}
.yab{bottom:867.813333pt;}
.yb1{bottom:867.973333pt;}
.y199{bottom:874.533333pt;}
.y38{bottom:875.173333pt;}
.ycc{bottom:880.133333pt;}
.y58{bottom:880.773333pt;}
.y163{bottom:883.653333pt;}
.yb{bottom:883.813333pt;}
.y10c{bottom:885.893333pt;}
.y12a{bottom:887.333333pt;}
.yaa{bottom:890.373333pt;}
.yb0{bottom:890.533333pt;}
.y75{bottom:893.253333pt;}
.y198{bottom:896.933333pt;}
.y37{bottom:902.053333pt;}
.y88{bottom:902.213333pt;}
.ycb{bottom:904.933333pt;}
.yef{bottom:906.053333pt;}
.y10b{bottom:908.453333pt;}
.y146{bottom:909.893333pt;}
.ya9{bottom:912.773333pt;}
.ya{bottom:914.213333pt;}
.y197{bottom:919.493333pt;}
.y57{bottom:924.293333pt;}
.yee{bottom:928.453333pt;}
.y188{bottom:928.613333pt;}
.y36{bottom:928.773333pt;}
.yc9{bottom:929.733333pt;}
.y10a{bottom:930.853333pt;}
.yaf{bottom:931.653333pt;}
.y87{bottom:931.973333pt;}
.y83{bottom:949.893333pt;}
.yed{bottom:951.013333pt;}
.y9{bottom:955.493333pt;}
.yae{bottom:970.693333pt;}
.y109{bottom:970.853333pt;}
.yc8{bottom:973.413333pt;}
.y5{bottom:974.693333pt;}
.y2{bottom:992.613333pt;}
.yac{bottom:1010.533333pt;}
.y1{bottom:1060.640000pt;}
.y35{bottom:1066.932533pt;}
.h4{height:2.546250pt;}
.he{height:17.920000pt;}
.hd{height:19.520000pt;}
.h21{height:19.552000pt;}
.h10{height:19.680000pt;}
.h22{height:20.000000pt;}
.h1b{height:31.828125pt;}
.h1f{height:33.120000pt;}
.h23{height:34.374375pt;}
.hc{height:35.680000pt;}
.h11{height:35.840000pt;}
.h12{height:37.631250pt;}
.hf{height:39.040000pt;}
.h20{height:39.200000pt;}
.h1a{height:42.649687pt;}
.h6{height:44.768125pt;}
.h1e{height:44.965000pt;}
.h1c{height:47.742188pt;}
.h5{height:49.622500pt;}
.h24{height:52.834688pt;}
.hb{height:53.937500pt;}
.h9{height:54.390938pt;}
.h2{height:58.563750pt;}
.h14{height:59.840000pt;}
.h1d{height:60.288750pt;}
.h15{height:63.106875pt;}
.h7{height:63.656250pt;}
.h3{height:64.032000pt;}
.ha{height:65.531250pt;}
.h19{height:65.781915pt;}
.h17{height:75.552000pt;}
.h18{height:76.671562pt;}
.h16{height:106.752000pt;}
.h8{height:119.922187pt;}
.h13{height:167.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:14.880000pt;}
.w15{width:15.680000pt;}
.wf{width:48.000000pt;}
.w11{width:97.120000pt;}
.w9{width:155.066667pt;}
.w17{width:262.106667pt;}
.w13{width:267.386667pt;}
.w3{width:272.986667pt;}
.wa{width:300.026667pt;}
.wd{width:300.666667pt;}
.we{width:301.186667pt;}
.wb{width:301.826667pt;}
.w14{width:318.778667pt;}
.w4{width:324.226667pt;}
.w18{width:337.666667pt;}
.w8{width:440.706667pt;}
.w10{width:456.733333pt;}
.w12{width:586.173333pt;}
.w5{width:586.973333pt;}
.w7{width:597.693333pt;}
.wc{width:601.853333pt;}
.w16{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.080000pt;}
.x6{left:7.200000pt;}
.x1c{left:44.800000pt;}
.x2{left:90.912000pt;}
.x17{left:95.034667pt;}
.x1{left:96.031988pt;}
.x11{left:98.112000pt;}
.xb{left:100.351988pt;}
.xd{left:101.631988pt;}
.x1d{left:110.751988pt;}
.x25{left:112.666667pt;}
.xc{left:115.711988pt;}
.x1f{left:120.031988pt;}
.x18{left:123.226667pt;}
.x1a{left:144.026667pt;}
.x10{left:174.586655pt;}
.x16{left:217.634667pt;}
.x12{left:230.594667pt;}
.x19{left:237.634667pt;}
.x15{left:242.594667pt;}
.x1e{left:262.594667pt;}
.x3{left:265.794667pt;}
.x22{left:288.066655pt;}
.x5{left:317.026667pt;}
.xa{left:319.106655pt;}
.x23{left:332.866655pt;}
.x26{left:340.386643pt;}
.x27{left:345.826655pt;}
.xe{left:355.266655pt;}
.x24{left:360.066667pt;}
.x4{left:363.906667pt;}
.x9{left:371.586655pt;}
.xf{left:396.866655pt;}
.x14{left:540.733333pt;}
.x20{left:558.013310pt;}
.x21{left:565.213322pt;}
.x1b{left:600.773333pt;}
.x7{left:683.013333pt;}
.x8{left:697.893322pt;}
}




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