
    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_4062389028d1b4f406f28e6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8374bda0ea41c8327f402534.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f4eb8d49a03df9ae029d3b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_ec436d9e60b3a7793bd79d83.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_895d3eebc1bf2e1ef34ee84f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_f4a20846e71603e223fbfd00.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.201172;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_2fe2d4fc98aae3575b5bcea6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls17{letter-spacing:-0.924000px;}
.ls13{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.413400px;}
.ls8{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.177600px;}
.lsb{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls12{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.978000px;}
.ls11{letter-spacing:7.380000px;}
.ls16{letter-spacing:41.706720px;}
.lsa{letter-spacing:172.002720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsa{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.762400px;}
.wsd{word-spacing:-14.733600px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._4{margin-left:-8.213760px;}
._1c{margin-left:-7.001280px;}
._18{margin-left:-5.537280px;}
._9{margin-left:-4.432800px;}
._b{margin-left:-3.362400px;}
._8{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.980320px;}
._d{width:4.676400px;}
._e{width:5.687520px;}
._f{width:6.893040px;}
._12{width:8.731440px;}
._10{width:10.707120px;}
._11{width:11.931840px;}
._15{width:13.771920px;}
._17{width:15.955920px;}
._16{width:17.031600px;}
._19{width:18.104640px;}
._13{width:19.170720px;}
._14{width:20.373840px;}
._1d{width:21.565680px;}
._1e{width:25.326000px;}
._1b{width:31.672800px;}
._1a{width:32.688720px;}
._a{width:37.897200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1be{bottom:10.620000px;}
.y1bd{bottom:30.594000px;}
.y1ba{bottom:34.734000px;}
.y1bc{bottom:50.394000px;}
.y6{bottom:66.240000px;}
.y1bb{bottom:70.194000px;}
.y193{bottom:93.456000px;}
.y1b8{bottom:93.996000px;}
.y146{bottom:94.176000px;}
.y8a{bottom:94.536000px;}
.yfb{bottom:98.496000px;}
.y63{bottom:98.856000px;}
.y120{bottom:103.176000px;}
.y17b{bottom:105.336000px;}
.y16d{bottom:109.656000px;}
.y2f{bottom:110.196000px;}
.y192{bottom:113.256000px;}
.y1b7{bottom:113.796000px;}
.y145{bottom:114.156000px;}
.y89{bottom:114.336000px;}
.ya4{bottom:115.416000px;}
.y18a{bottom:116.496000px;}
.yfa{bottom:118.476000px;}
.y62{bottom:118.656000px;}
.y1b9{bottom:122.796000px;}
.y11f{bottom:123.156000px;}
.y17a{bottom:125.316000px;}
.y16c{bottom:129.636000px;}
.y2e{bottom:129.996000px;}
.y191{bottom:133.236000px;}
.y1b6{bottom:133.596000px;}
.y144{bottom:133.956000px;}
.y88{bottom:134.316000px;}
.ya3{bottom:136.476000px;}
.yf9{bottom:138.276000px;}
.y61{bottom:138.636000px;}
.y11e{bottom:142.956000px;}
.y179{bottom:145.116000px;}
.y16b{bottom:149.436000px;}
.y2d{bottom:149.796000px;}
.y190{bottom:153.030000px;}
.y1b5{bottom:153.390000px;}
.y143{bottom:153.750000px;}
.y87{bottom:154.110000px;}
.ya2{bottom:156.270000px;}
.yf8{bottom:158.070000px;}
.y60{bottom:158.430000px;}
.y11d{bottom:162.750000px;}
.y178{bottom:164.910000px;}
.y16a{bottom:169.230000px;}
.y2c{bottom:169.590000px;}
.y1b4{bottom:173.190000px;}
.y142{bottom:173.550000px;}
.y86{bottom:173.910000px;}
.ya1{bottom:176.070000px;}
.yf7{bottom:177.870000px;}
.y5f{bottom:178.230000px;}
.y11c{bottom:182.550000px;}
.y177{bottom:184.710000px;}
.y169{bottom:189.030000px;}
.y2b{bottom:189.570000px;}
.y1b3{bottom:193.170000px;}
.y141{bottom:193.350000px;}
.y85{bottom:193.710000px;}
.ya0{bottom:195.870000px;}
.yf6{bottom:197.670000px;}
.y5e{bottom:198.030000px;}
.y11b{bottom:202.350000px;}
.y176{bottom:205.590000px;}
.y168{bottom:208.830000px;}
.y2a{bottom:209.370000px;}
.y1b2{bottom:212.970000px;}
.y140{bottom:213.330000px;}
.y84{bottom:213.510000px;}
.y9f{bottom:215.670000px;}
.yf5{bottom:217.650000px;}
.y5d{bottom:217.830000px;}
.y11a{bottom:222.330000px;}
.y175{bottom:225.570000px;}
.y167{bottom:228.810000px;}
.y29{bottom:229.170000px;}
.y1b1{bottom:232.770000px;}
.y13f{bottom:233.130000px;}
.y83{bottom:233.490000px;}
.y9e{bottom:235.650000px;}
.yf4{bottom:237.450000px;}
.y5c{bottom:237.810000px;}
.y119{bottom:242.130000px;}
.y174{bottom:245.370000px;}
.y166{bottom:248.610000px;}
.y28{bottom:248.970000px;}
.y1b0{bottom:250.050000px;}
.y13e{bottom:252.930000px;}
.y82{bottom:253.290000px;}
.y18f{bottom:254.370000px;}
.y9d{bottom:255.450000px;}
.yf3{bottom:257.250000px;}
.y5b{bottom:257.610000px;}
.y118{bottom:261.930000px;}
.y173{bottom:265.170000px;}
.y165{bottom:268.410000px;}
.y27{bottom:268.770000px;}
.y1af{bottom:269.850000px;}
.y13d{bottom:272.730000px;}
.ycc{bottom:273.090000px;}
.y81{bottom:274.170000px;}
.y9c{bottom:275.250000px;}
.y5a{bottom:277.410000px;}
.y117{bottom:281.730000px;}
.y172{bottom:284.970000px;}
.yf2{bottom:286.050000px;}
.y164{bottom:288.210000px;}
.y26{bottom:288.750000px;}
.y1ae{bottom:289.650000px;}
.y13c{bottom:292.530000px;}
.ycb{bottom:292.890000px;}
.y80{bottom:293.970000px;}
.y9b{bottom:295.050000px;}
.y59{bottom:297.210000px;}
.y116{bottom:301.530000px;}
.y171{bottom:304.770000px;}
.yf1{bottom:305.850000px;}
.y163{bottom:308.010000px;}
.y25{bottom:308.550000px;}
.y1ad{bottom:309.450000px;}
.y13b{bottom:312.510000px;}
.yca{bottom:312.690000px;}
.y7f{bottom:313.770000px;}
.y9a{bottom:314.850000px;}
.y58{bottom:317.010000px;}
.y115{bottom:322.590000px;}
.y170{bottom:324.750000px;}
.yf0{bottom:325.830000px;}
.y162{bottom:327.990000px;}
.y24{bottom:328.350000px;}
.y1ac{bottom:329.430000px;}
.y13a{bottom:332.310000px;}
.yc9{bottom:332.670000px;}
.y7e{bottom:333.750000px;}
.y99{bottom:334.830000px;}
.y57{bottom:337.035000px;}
.y114{bottom:342.435000px;}
.y16f{bottom:344.595000px;}
.yef{bottom:345.675000px;}
.y161{bottom:347.835000px;}
.y23{bottom:348.195000px;}
.y1ab{bottom:349.275000px;}
.y139{bottom:352.155000px;}
.yc8{bottom:352.515000px;}
.y7d{bottom:353.595000px;}
.y98{bottom:354.675000px;}
.y56{bottom:356.835000px;}
.y113{bottom:362.235000px;}
.yee{bottom:365.475000px;}
.y160{bottom:367.635000px;}
.y22{bottom:367.995000px;}
.y1aa{bottom:369.075000px;}
.y138{bottom:371.955000px;}
.yc7{bottom:372.315000px;}
.y7c{bottom:373.395000px;}
.y97{bottom:374.475000px;}
.y55{bottom:376.635000px;}
.y112{bottom:382.035000px;}
.yed{bottom:385.275000px;}
.y15f{bottom:387.435000px;}
.y21{bottom:387.975000px;}
.y1a9{bottom:388.875000px;}
.y137{bottom:391.755000px;}
.yc6{bottom:392.115000px;}
.y7b{bottom:393.195000px;}
.y96{bottom:394.275000px;}
.y18e{bottom:395.355000px;}
.y54{bottom:396.435000px;}
.y111{bottom:401.835000px;}
.yec{bottom:405.075000px;}
.y15e{bottom:407.235000px;}
.y20{bottom:407.775000px;}
.y1a8{bottom:408.675000px;}
.y136{bottom:411.735000px;}
.yc5{bottom:411.915000px;}
.y7a{bottom:412.995000px;}
.y95{bottom:414.075000px;}
.y18d{bottom:415.155000px;}
.y53{bottom:416.235000px;}
.y110{bottom:421.815000px;}
.yeb{bottom:425.055000px;}
.y15d{bottom:427.215000px;}
.y1a7{bottom:428.655000px;}
.y1f{bottom:429.915000px;}
.y135{bottom:431.535000px;}
.yc4{bottom:431.895000px;}
.y79{bottom:432.975000px;}
.y94{bottom:434.055000px;}
.y18c{bottom:435.135000px;}
.y52{bottom:436.215000px;}
.y10f{bottom:442.695000px;}
.yea{bottom:444.855000px;}
.y15c{bottom:447.015000px;}
.y1a6{bottom:448.455000px;}
.y1e{bottom:449.715000px;}
.y134{bottom:451.335000px;}
.yc3{bottom:451.695000px;}
.y78{bottom:452.775000px;}
.y93{bottom:453.855000px;}
.y18b{bottom:454.935000px;}
.y51{bottom:456.015000px;}
.y10e{bottom:462.495000px;}
.ye9{bottom:464.655000px;}
.y15b{bottom:466.815000px;}
.y1a5{bottom:468.255000px;}
.y133{bottom:471.135000px;}
.yc2{bottom:471.495000px;}
.y77{bottom:472.575000px;}
.y92{bottom:473.655000px;}
.y50{bottom:475.815000px;}
.y1d{bottom:478.515000px;}
.y10d{bottom:482.295000px;}
.ye8{bottom:484.455000px;}
.y15a{bottom:486.615000px;}
.y1a4{bottom:488.055000px;}
.y132{bottom:490.935000px;}
.yc1{bottom:491.295000px;}
.y76{bottom:493.455000px;}
.y4f{bottom:495.615000px;}
.y1c{bottom:498.315000px;}
.y10c{bottom:502.095000px;}
.ye7{bottom:504.255000px;}
.y159{bottom:506.415000px;}
.y1a3{bottom:507.855000px;}
.y131{bottom:510.915000px;}
.yc0{bottom:511.095000px;}
.y75{bottom:513.255000px;}
.y4e{bottom:515.415000px;}
.y1b{bottom:518.115000px;}
.y10b{bottom:522.075000px;}
.ye6{bottom:524.235000px;}
.y16e{bottom:525.315000px;}
.y158{bottom:526.395000px;}
.y1a2{bottom:527.835000px;}
.y130{bottom:530.715000px;}
.ybf{bottom:531.075000px;}
.y74{bottom:533.235000px;}
.y4d{bottom:535.395000px;}
.y1a{bottom:538.095000px;}
.y10a{bottom:542.955000px;}
.ye5{bottom:545.115000px;}
.y157{bottom:546.195000px;}
.y1a1{bottom:548.715000px;}
.y12f{bottom:550.515000px;}
.ybe{bottom:550.875000px;}
.y73{bottom:553.035000px;}
.y4c{bottom:555.195000px;}
.y19{bottom:557.895000px;}
.y109{bottom:562.755000px;}
.ye4{bottom:564.915000px;}
.y156{bottom:565.995000px;}
.y1a0{bottom:568.515000px;}
.ybd{bottom:570.675000px;}
.y72{bottom:572.835000px;}
.y4b{bottom:574.995000px;}
.y18{bottom:577.695000px;}
.y12e{bottom:579.315000px;}
.y108{bottom:582.585000px;}
.ye3{bottom:584.745000px;}
.y155{bottom:585.825000px;}
.y19f{bottom:588.345000px;}
.ybc{bottom:590.505000px;}
.y71{bottom:592.665000px;}
.y4a{bottom:594.825000px;}
.y17{bottom:597.525000px;}
.y12d{bottom:599.145000px;}
.y107{bottom:602.385000px;}
.ye2{bottom:604.545000px;}
.y154{bottom:605.625000px;}
.y19e{bottom:608.145000px;}
.ybb{bottom:610.305000px;}
.y70{bottom:612.465000px;}
.y49{bottom:614.625000px;}
.y16{bottom:617.325000px;}
.y12c{bottom:619.125000px;}
.y106{bottom:622.365000px;}
.ye1{bottom:624.525000px;}
.y153{bottom:625.605000px;}
.y19d{bottom:629.205000px;}
.yba{bottom:630.285000px;}
.y6f{bottom:632.445000px;}
.y48{bottom:634.605000px;}
.y15{bottom:637.305000px;}
.y12b{bottom:638.925000px;}
.y105{bottom:642.165000px;}
.ye0{bottom:644.325000px;}
.y152{bottom:645.405000px;}
.y19c{bottom:649.005000px;}
.yb9{bottom:650.085000px;}
.y6e{bottom:652.245000px;}
.y47{bottom:654.405000px;}
.y14{bottom:657.105000px;}
.y12a{bottom:658.725000px;}
.y104{bottom:663.045000px;}
.ydf{bottom:664.125000px;}
.y151{bottom:665.205000px;}
.y19b{bottom:668.805000px;}
.yb8{bottom:669.885000px;}
.y6d{bottom:672.045000px;}
.y46{bottom:674.205000px;}
.y13{bottom:676.905000px;}
.y129{bottom:678.525000px;}
.y103{bottom:682.845000px;}
.yde{bottom:683.925000px;}
.y150{bottom:685.005000px;}
.y19a{bottom:688.605000px;}
.yb7{bottom:689.685000px;}
.y91{bottom:691.845000px;}
.y6c{bottom:692.925000px;}
.y45{bottom:694.005000px;}
.y12{bottom:696.705000px;}
.y128{bottom:698.325000px;}
.y102{bottom:702.645000px;}
.ydd{bottom:703.725000px;}
.y14f{bottom:704.805000px;}
.yb6{bottom:709.485000px;}
.y189{bottom:711.645000px;}
.y6b{bottom:712.725000px;}
.y44{bottom:713.805000px;}
.y11{bottom:716.505000px;}
.y127{bottom:718.305000px;}
.y101{bottom:722.625000px;}
.ydc{bottom:723.705000px;}
.y14e{bottom:724.785000px;}
.yb5{bottom:729.465000px;}
.y188{bottom:731.625000px;}
.y6a{bottom:732.705000px;}
.y43{bottom:733.785000px;}
.y10{bottom:736.485000px;}
.y126{bottom:738.105000px;}
.y100{bottom:742.425000px;}
.ydb{bottom:743.505000px;}
.y14d{bottom:744.585000px;}
.yb4{bottom:749.265000px;}
.y187{bottom:751.425000px;}
.y69{bottom:752.505000px;}
.y42{bottom:753.585000px;}
.yf{bottom:756.285000px;}
.y125{bottom:757.905000px;}
.yda{bottom:763.305000px;}
.y14c{bottom:764.385000px;}
.yb3{bottom:769.065000px;}
.y199{bottom:770.145000px;}
.y186{bottom:771.225000px;}
.y68{bottom:772.305000px;}
.y41{bottom:773.385000px;}
.ye{bottom:776.085000px;}
.y124{bottom:778.785000px;}
.yd9{bottom:783.105000px;}
.y14b{bottom:784.185000px;}
.yb2{bottom:788.865000px;}
.y198{bottom:789.945000px;}
.y185{bottom:791.025000px;}
.y67{bottom:792.105000px;}
.y40{bottom:793.185000px;}
.yd{bottom:795.885000px;}
.y123{bottom:799.665000px;}
.yd8{bottom:802.905000px;}
.y14a{bottom:803.985000px;}
.yb1{bottom:808.665000px;}
.y197{bottom:809.745000px;}
.y184{bottom:810.825000px;}
.y66{bottom:811.905000px;}
.y3f{bottom:812.985000px;}
.yc{bottom:818.025000px;}
.y122{bottom:820.725000px;}
.yd7{bottom:822.885000px;}
.y149{bottom:823.965000px;}
.yb0{bottom:828.690000px;}
.y196{bottom:829.770000px;}
.y183{bottom:830.850000px;}
.y65{bottom:831.930000px;}
.y3e{bottom:833.010000px;}
.yb{bottom:837.870000px;}
.y121{bottom:841.650000px;}
.yd6{bottom:842.730000px;}
.y148{bottom:843.810000px;}
.yaf{bottom:848.490000px;}
.y182{bottom:850.650000px;}
.y64{bottom:851.730000px;}
.y3d{bottom:852.810000px;}
.ya{bottom:858.210000px;}
.yd5{bottom:862.530000px;}
.y147{bottom:863.610000px;}
.yae{bottom:868.290000px;}
.y181{bottom:870.450000px;}
.y90{bottom:871.530000px;}
.y3c{bottom:872.610000px;}
.y9{bottom:879.450000px;}
.yd4{bottom:882.330000px;}
.yff{bottom:883.410000px;}
.yad{bottom:888.090000px;}
.y180{bottom:890.250000px;}
.y8f{bottom:891.330000px;}
.y3b{bottom:892.410000px;}
.yd3{bottom:902.130000px;}
.y8{bottom:903.030000px;}
.yfe{bottom:903.210000px;}
.yac{bottom:907.890000px;}
.y17f{bottom:910.050000px;}
.y8e{bottom:911.130000px;}
.y3a{bottom:912.210000px;}
.yd2{bottom:922.110000px;}
.yfd{bottom:923.190000px;}
.yab{bottom:927.870000px;}
.y8d{bottom:931.110000px;}
.y39{bottom:932.190000px;}
.y7{bottom:934.710000px;}
.yd1{bottom:942.990000px;}
.yaa{bottom:947.670000px;}
.y8c{bottom:950.910000px;}
.y38{bottom:951.990000px;}
.yd0{bottom:962.790000px;}
.ya9{bottom:967.470000px;}
.y8b{bottom:970.710000px;}
.y37{bottom:971.790000px;}
.y5{bottom:976.290000px;}
.ycf{bottom:982.590000px;}
.ya8{bottom:987.270000px;}
.y17e{bottom:990.510000px;}
.y36{bottom:991.590000px;}
.yce{bottom:1002.390000px;}
.y4{bottom:1007.070000px;}
.y17d{bottom:1010.310000px;}
.y35{bottom:1011.390000px;}
.ycd{bottom:1022.370000px;}
.ya7{bottom:1028.130000px;}
.y17c{bottom:1030.290000px;}
.y34{bottom:1031.370000px;}
.y3{bottom:1037.850000px;}
.yfc{bottom:1042.170000px;}
.ya6{bottom:1049.010000px;}
.y195{bottom:1050.090000px;}
.y33{bottom:1051.170000px;}
.y2{bottom:1068.810000px;}
.y194{bottom:1069.890000px;}
.y32{bottom:1070.970000px;}
.ya5{bottom:1089.720000px;}
.y31{bottom:1090.800000px;}
.y1{bottom:1102.680000px;}
.y30{bottom:1118.340000px;}
.h8{height:2.566406px;}
.h4{height:42.164648px;}
.h2{height:46.736719px;}
.h5{height:53.252930px;}
.h3{height:59.027344px;}
.h1{height:67.565039px;}
.h6{height:67.824844px;}
.h7{height:84.240000px;}
.h0{height:1188.000000px;}
.w2{width:210.810000px;}
.w3{width:581.010000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:7.785000px;}
.x1{left:54.179986px;}
.x3{left:80.999986px;}
.x2{left:108.035986px;}
.x4{left:191.370000px;}
.x5{left:264.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.821333pt;}
.ls13{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.367467pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.157867pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls12{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.869333pt;}
.ls11{letter-spacing:6.560000pt;}
.ls16{letter-spacing:37.072640pt;}
.lsa{letter-spacing:152.891307pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsa{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.122133pt;}
.wsd{word-spacing:-13.096533pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._4{margin-left:-7.301120pt;}
._1c{margin-left:-6.223360pt;}
._18{margin-left:-4.922027pt;}
._9{margin-left:-3.940267pt;}
._b{margin-left:-2.988800pt;}
._8{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.649173pt;}
._d{width:4.156800pt;}
._e{width:5.055573pt;}
._f{width:6.127147pt;}
._12{width:7.761280pt;}
._10{width:9.517440pt;}
._11{width:10.606080pt;}
._15{width:12.241707pt;}
._17{width:14.183040pt;}
._16{width:15.139200pt;}
._19{width:16.093013pt;}
._13{width:17.040640pt;}
._14{width:18.110080pt;}
._1d{width:19.169493pt;}
._1e{width:22.512000pt;}
._1b{width:28.153600pt;}
._1a{width:29.056640pt;}
._a{width:33.686400pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1be{bottom:9.440000pt;}
.y1bd{bottom:27.194667pt;}
.y1ba{bottom:30.874667pt;}
.y1bc{bottom:44.794667pt;}
.y6{bottom:58.880000pt;}
.y1bb{bottom:62.394667pt;}
.y193{bottom:83.072000pt;}
.y1b8{bottom:83.552000pt;}
.y146{bottom:83.712000pt;}
.y8a{bottom:84.032000pt;}
.yfb{bottom:87.552000pt;}
.y63{bottom:87.872000pt;}
.y120{bottom:91.712000pt;}
.y17b{bottom:93.632000pt;}
.y16d{bottom:97.472000pt;}
.y2f{bottom:97.952000pt;}
.y192{bottom:100.672000pt;}
.y1b7{bottom:101.152000pt;}
.y145{bottom:101.472000pt;}
.y89{bottom:101.632000pt;}
.ya4{bottom:102.592000pt;}
.y18a{bottom:103.552000pt;}
.yfa{bottom:105.312000pt;}
.y62{bottom:105.472000pt;}
.y1b9{bottom:109.152000pt;}
.y11f{bottom:109.472000pt;}
.y17a{bottom:111.392000pt;}
.y16c{bottom:115.232000pt;}
.y2e{bottom:115.552000pt;}
.y191{bottom:118.432000pt;}
.y1b6{bottom:118.752000pt;}
.y144{bottom:119.072000pt;}
.y88{bottom:119.392000pt;}
.ya3{bottom:121.312000pt;}
.yf9{bottom:122.912000pt;}
.y61{bottom:123.232000pt;}
.y11e{bottom:127.072000pt;}
.y179{bottom:128.992000pt;}
.y16b{bottom:132.832000pt;}
.y2d{bottom:133.152000pt;}
.y190{bottom:136.026667pt;}
.y1b5{bottom:136.346667pt;}
.y143{bottom:136.666667pt;}
.y87{bottom:136.986667pt;}
.ya2{bottom:138.906667pt;}
.yf8{bottom:140.506667pt;}
.y60{bottom:140.826667pt;}
.y11d{bottom:144.666667pt;}
.y178{bottom:146.586667pt;}
.y16a{bottom:150.426667pt;}
.y2c{bottom:150.746667pt;}
.y1b4{bottom:153.946667pt;}
.y142{bottom:154.266667pt;}
.y86{bottom:154.586667pt;}
.ya1{bottom:156.506667pt;}
.yf7{bottom:158.106667pt;}
.y5f{bottom:158.426667pt;}
.y11c{bottom:162.266667pt;}
.y177{bottom:164.186667pt;}
.y169{bottom:168.026667pt;}
.y2b{bottom:168.506667pt;}
.y1b3{bottom:171.706667pt;}
.y141{bottom:171.866667pt;}
.y85{bottom:172.186667pt;}
.ya0{bottom:174.106667pt;}
.yf6{bottom:175.706667pt;}
.y5e{bottom:176.026667pt;}
.y11b{bottom:179.866667pt;}
.y176{bottom:182.746667pt;}
.y168{bottom:185.626667pt;}
.y2a{bottom:186.106667pt;}
.y1b2{bottom:189.306667pt;}
.y140{bottom:189.626667pt;}
.y84{bottom:189.786667pt;}
.y9f{bottom:191.706667pt;}
.yf5{bottom:193.466667pt;}
.y5d{bottom:193.626667pt;}
.y11a{bottom:197.626667pt;}
.y175{bottom:200.506667pt;}
.y167{bottom:203.386667pt;}
.y29{bottom:203.706667pt;}
.y1b1{bottom:206.906667pt;}
.y13f{bottom:207.226667pt;}
.y83{bottom:207.546667pt;}
.y9e{bottom:209.466667pt;}
.yf4{bottom:211.066667pt;}
.y5c{bottom:211.386667pt;}
.y119{bottom:215.226667pt;}
.y174{bottom:218.106667pt;}
.y166{bottom:220.986667pt;}
.y28{bottom:221.306667pt;}
.y1b0{bottom:222.266667pt;}
.y13e{bottom:224.826667pt;}
.y82{bottom:225.146667pt;}
.y18f{bottom:226.106667pt;}
.y9d{bottom:227.066667pt;}
.yf3{bottom:228.666667pt;}
.y5b{bottom:228.986667pt;}
.y118{bottom:232.826667pt;}
.y173{bottom:235.706667pt;}
.y165{bottom:238.586667pt;}
.y27{bottom:238.906667pt;}
.y1af{bottom:239.866667pt;}
.y13d{bottom:242.426667pt;}
.ycc{bottom:242.746667pt;}
.y81{bottom:243.706667pt;}
.y9c{bottom:244.666667pt;}
.y5a{bottom:246.586667pt;}
.y117{bottom:250.426667pt;}
.y172{bottom:253.306667pt;}
.yf2{bottom:254.266667pt;}
.y164{bottom:256.186667pt;}
.y26{bottom:256.666667pt;}
.y1ae{bottom:257.466667pt;}
.y13c{bottom:260.026667pt;}
.ycb{bottom:260.346667pt;}
.y80{bottom:261.306667pt;}
.y9b{bottom:262.266667pt;}
.y59{bottom:264.186667pt;}
.y116{bottom:268.026667pt;}
.y171{bottom:270.906667pt;}
.yf1{bottom:271.866667pt;}
.y163{bottom:273.786667pt;}
.y25{bottom:274.266667pt;}
.y1ad{bottom:275.066667pt;}
.y13b{bottom:277.786667pt;}
.yca{bottom:277.946667pt;}
.y7f{bottom:278.906667pt;}
.y9a{bottom:279.866667pt;}
.y58{bottom:281.786667pt;}
.y115{bottom:286.746667pt;}
.y170{bottom:288.666667pt;}
.yf0{bottom:289.626667pt;}
.y162{bottom:291.546667pt;}
.y24{bottom:291.866667pt;}
.y1ac{bottom:292.826667pt;}
.y13a{bottom:295.386667pt;}
.yc9{bottom:295.706667pt;}
.y7e{bottom:296.666667pt;}
.y99{bottom:297.626667pt;}
.y57{bottom:299.586667pt;}
.y114{bottom:304.386667pt;}
.y16f{bottom:306.306667pt;}
.yef{bottom:307.266667pt;}
.y161{bottom:309.186667pt;}
.y23{bottom:309.506667pt;}
.y1ab{bottom:310.466667pt;}
.y139{bottom:313.026667pt;}
.yc8{bottom:313.346667pt;}
.y7d{bottom:314.306667pt;}
.y98{bottom:315.266667pt;}
.y56{bottom:317.186667pt;}
.y113{bottom:321.986667pt;}
.yee{bottom:324.866667pt;}
.y160{bottom:326.786667pt;}
.y22{bottom:327.106667pt;}
.y1aa{bottom:328.066667pt;}
.y138{bottom:330.626667pt;}
.yc7{bottom:330.946667pt;}
.y7c{bottom:331.906667pt;}
.y97{bottom:332.866667pt;}
.y55{bottom:334.786667pt;}
.y112{bottom:339.586667pt;}
.yed{bottom:342.466667pt;}
.y15f{bottom:344.386667pt;}
.y21{bottom:344.866667pt;}
.y1a9{bottom:345.666667pt;}
.y137{bottom:348.226667pt;}
.yc6{bottom:348.546667pt;}
.y7b{bottom:349.506667pt;}
.y96{bottom:350.466667pt;}
.y18e{bottom:351.426667pt;}
.y54{bottom:352.386667pt;}
.y111{bottom:357.186667pt;}
.yec{bottom:360.066667pt;}
.y15e{bottom:361.986667pt;}
.y20{bottom:362.466667pt;}
.y1a8{bottom:363.266667pt;}
.y136{bottom:365.986667pt;}
.yc5{bottom:366.146667pt;}
.y7a{bottom:367.106667pt;}
.y95{bottom:368.066667pt;}
.y18d{bottom:369.026667pt;}
.y53{bottom:369.986667pt;}
.y110{bottom:374.946667pt;}
.yeb{bottom:377.826667pt;}
.y15d{bottom:379.746667pt;}
.y1a7{bottom:381.026667pt;}
.y1f{bottom:382.146667pt;}
.y135{bottom:383.586667pt;}
.yc4{bottom:383.906667pt;}
.y79{bottom:384.866667pt;}
.y94{bottom:385.826667pt;}
.y18c{bottom:386.786667pt;}
.y52{bottom:387.746667pt;}
.y10f{bottom:393.506667pt;}
.yea{bottom:395.426667pt;}
.y15c{bottom:397.346667pt;}
.y1a6{bottom:398.626667pt;}
.y1e{bottom:399.746667pt;}
.y134{bottom:401.186667pt;}
.yc3{bottom:401.506667pt;}
.y78{bottom:402.466667pt;}
.y93{bottom:403.426667pt;}
.y18b{bottom:404.386667pt;}
.y51{bottom:405.346667pt;}
.y10e{bottom:411.106667pt;}
.ye9{bottom:413.026667pt;}
.y15b{bottom:414.946667pt;}
.y1a5{bottom:416.226667pt;}
.y133{bottom:418.786667pt;}
.yc2{bottom:419.106667pt;}
.y77{bottom:420.066667pt;}
.y92{bottom:421.026667pt;}
.y50{bottom:422.946667pt;}
.y1d{bottom:425.346667pt;}
.y10d{bottom:428.706667pt;}
.ye8{bottom:430.626667pt;}
.y15a{bottom:432.546667pt;}
.y1a4{bottom:433.826667pt;}
.y132{bottom:436.386667pt;}
.yc1{bottom:436.706667pt;}
.y76{bottom:438.626667pt;}
.y4f{bottom:440.546667pt;}
.y1c{bottom:442.946667pt;}
.y10c{bottom:446.306667pt;}
.ye7{bottom:448.226667pt;}
.y159{bottom:450.146667pt;}
.y1a3{bottom:451.426667pt;}
.y131{bottom:454.146667pt;}
.yc0{bottom:454.306667pt;}
.y75{bottom:456.226667pt;}
.y4e{bottom:458.146667pt;}
.y1b{bottom:460.546667pt;}
.y10b{bottom:464.066667pt;}
.ye6{bottom:465.986667pt;}
.y16e{bottom:466.946667pt;}
.y158{bottom:467.906667pt;}
.y1a2{bottom:469.186667pt;}
.y130{bottom:471.746667pt;}
.ybf{bottom:472.066667pt;}
.y74{bottom:473.986667pt;}
.y4d{bottom:475.906667pt;}
.y1a{bottom:478.306667pt;}
.y10a{bottom:482.626667pt;}
.ye5{bottom:484.546667pt;}
.y157{bottom:485.506667pt;}
.y1a1{bottom:487.746667pt;}
.y12f{bottom:489.346667pt;}
.ybe{bottom:489.666667pt;}
.y73{bottom:491.586667pt;}
.y4c{bottom:493.506667pt;}
.y19{bottom:495.906667pt;}
.y109{bottom:500.226667pt;}
.ye4{bottom:502.146667pt;}
.y156{bottom:503.106667pt;}
.y1a0{bottom:505.346667pt;}
.ybd{bottom:507.266667pt;}
.y72{bottom:509.186667pt;}
.y4b{bottom:511.106667pt;}
.y18{bottom:513.506667pt;}
.y12e{bottom:514.946667pt;}
.y108{bottom:517.853333pt;}
.ye3{bottom:519.773333pt;}
.y155{bottom:520.733333pt;}
.y19f{bottom:522.973333pt;}
.ybc{bottom:524.893333pt;}
.y71{bottom:526.813333pt;}
.y4a{bottom:528.733333pt;}
.y17{bottom:531.133333pt;}
.y12d{bottom:532.573333pt;}
.y107{bottom:535.453333pt;}
.ye2{bottom:537.373333pt;}
.y154{bottom:538.333333pt;}
.y19e{bottom:540.573333pt;}
.ybb{bottom:542.493333pt;}
.y70{bottom:544.413333pt;}
.y49{bottom:546.333333pt;}
.y16{bottom:548.733333pt;}
.y12c{bottom:550.333333pt;}
.y106{bottom:553.213333pt;}
.ye1{bottom:555.133333pt;}
.y153{bottom:556.093333pt;}
.y19d{bottom:559.293333pt;}
.yba{bottom:560.253333pt;}
.y6f{bottom:562.173333pt;}
.y48{bottom:564.093333pt;}
.y15{bottom:566.493333pt;}
.y12b{bottom:567.933333pt;}
.y105{bottom:570.813333pt;}
.ye0{bottom:572.733333pt;}
.y152{bottom:573.693333pt;}
.y19c{bottom:576.893333pt;}
.yb9{bottom:577.853333pt;}
.y6e{bottom:579.773333pt;}
.y47{bottom:581.693333pt;}
.y14{bottom:584.093333pt;}
.y12a{bottom:585.533333pt;}
.y104{bottom:589.373333pt;}
.ydf{bottom:590.333333pt;}
.y151{bottom:591.293333pt;}
.y19b{bottom:594.493333pt;}
.yb8{bottom:595.453333pt;}
.y6d{bottom:597.373333pt;}
.y46{bottom:599.293333pt;}
.y13{bottom:601.693333pt;}
.y129{bottom:603.133333pt;}
.y103{bottom:606.973333pt;}
.yde{bottom:607.933333pt;}
.y150{bottom:608.893333pt;}
.y19a{bottom:612.093333pt;}
.yb7{bottom:613.053333pt;}
.y91{bottom:614.973333pt;}
.y6c{bottom:615.933333pt;}
.y45{bottom:616.893333pt;}
.y12{bottom:619.293333pt;}
.y128{bottom:620.733333pt;}
.y102{bottom:624.573333pt;}
.ydd{bottom:625.533333pt;}
.y14f{bottom:626.493333pt;}
.yb6{bottom:630.653333pt;}
.y189{bottom:632.573333pt;}
.y6b{bottom:633.533333pt;}
.y44{bottom:634.493333pt;}
.y11{bottom:636.893333pt;}
.y127{bottom:638.493333pt;}
.y101{bottom:642.333333pt;}
.ydc{bottom:643.293333pt;}
.y14e{bottom:644.253333pt;}
.yb5{bottom:648.413333pt;}
.y188{bottom:650.333333pt;}
.y6a{bottom:651.293333pt;}
.y43{bottom:652.253333pt;}
.y10{bottom:654.653333pt;}
.y126{bottom:656.093333pt;}
.y100{bottom:659.933333pt;}
.ydb{bottom:660.893333pt;}
.y14d{bottom:661.853333pt;}
.yb4{bottom:666.013333pt;}
.y187{bottom:667.933333pt;}
.y69{bottom:668.893333pt;}
.y42{bottom:669.853333pt;}
.yf{bottom:672.253333pt;}
.y125{bottom:673.693333pt;}
.yda{bottom:678.493333pt;}
.y14c{bottom:679.453333pt;}
.yb3{bottom:683.613333pt;}
.y199{bottom:684.573333pt;}
.y186{bottom:685.533333pt;}
.y68{bottom:686.493333pt;}
.y41{bottom:687.453333pt;}
.ye{bottom:689.853333pt;}
.y124{bottom:692.253333pt;}
.yd9{bottom:696.093333pt;}
.y14b{bottom:697.053333pt;}
.yb2{bottom:701.213333pt;}
.y198{bottom:702.173333pt;}
.y185{bottom:703.133333pt;}
.y67{bottom:704.093333pt;}
.y40{bottom:705.053333pt;}
.yd{bottom:707.453333pt;}
.y123{bottom:710.813333pt;}
.yd8{bottom:713.693333pt;}
.y14a{bottom:714.653333pt;}
.yb1{bottom:718.813333pt;}
.y197{bottom:719.773333pt;}
.y184{bottom:720.733333pt;}
.y66{bottom:721.693333pt;}
.y3f{bottom:722.653333pt;}
.yc{bottom:727.133333pt;}
.y122{bottom:729.533333pt;}
.yd7{bottom:731.453333pt;}
.y149{bottom:732.413333pt;}
.yb0{bottom:736.613333pt;}
.y196{bottom:737.573333pt;}
.y183{bottom:738.533333pt;}
.y65{bottom:739.493333pt;}
.y3e{bottom:740.453333pt;}
.yb{bottom:744.773333pt;}
.y121{bottom:748.133333pt;}
.yd6{bottom:749.093333pt;}
.y148{bottom:750.053333pt;}
.yaf{bottom:754.213333pt;}
.y182{bottom:756.133333pt;}
.y64{bottom:757.093333pt;}
.y3d{bottom:758.053333pt;}
.ya{bottom:762.853333pt;}
.yd5{bottom:766.693333pt;}
.y147{bottom:767.653333pt;}
.yae{bottom:771.813333pt;}
.y181{bottom:773.733333pt;}
.y90{bottom:774.693333pt;}
.y3c{bottom:775.653333pt;}
.y9{bottom:781.733333pt;}
.yd4{bottom:784.293333pt;}
.yff{bottom:785.253333pt;}
.yad{bottom:789.413333pt;}
.y180{bottom:791.333333pt;}
.y8f{bottom:792.293333pt;}
.y3b{bottom:793.253333pt;}
.yd3{bottom:801.893333pt;}
.y8{bottom:802.693333pt;}
.yfe{bottom:802.853333pt;}
.yac{bottom:807.013333pt;}
.y17f{bottom:808.933333pt;}
.y8e{bottom:809.893333pt;}
.y3a{bottom:810.853333pt;}
.yd2{bottom:819.653333pt;}
.yfd{bottom:820.613333pt;}
.yab{bottom:824.773333pt;}
.y8d{bottom:827.653333pt;}
.y39{bottom:828.613333pt;}
.y7{bottom:830.853333pt;}
.yd1{bottom:838.213333pt;}
.yaa{bottom:842.373333pt;}
.y8c{bottom:845.253333pt;}
.y38{bottom:846.213333pt;}
.yd0{bottom:855.813333pt;}
.ya9{bottom:859.973333pt;}
.y8b{bottom:862.853333pt;}
.y37{bottom:863.813333pt;}
.y5{bottom:867.813333pt;}
.ycf{bottom:873.413333pt;}
.ya8{bottom:877.573333pt;}
.y17e{bottom:880.453333pt;}
.y36{bottom:881.413333pt;}
.yce{bottom:891.013333pt;}
.y4{bottom:895.173333pt;}
.y17d{bottom:898.053333pt;}
.y35{bottom:899.013333pt;}
.ycd{bottom:908.773333pt;}
.ya7{bottom:913.893333pt;}
.y17c{bottom:915.813333pt;}
.y34{bottom:916.773333pt;}
.y3{bottom:922.533333pt;}
.yfc{bottom:926.373333pt;}
.ya6{bottom:932.453333pt;}
.y195{bottom:933.413333pt;}
.y33{bottom:934.373333pt;}
.y2{bottom:950.053333pt;}
.y194{bottom:951.013333pt;}
.y32{bottom:951.973333pt;}
.ya5{bottom:968.640000pt;}
.y31{bottom:969.600000pt;}
.y1{bottom:980.160000pt;}
.y30{bottom:994.080000pt;}
.h8{height:2.281250pt;}
.h4{height:37.479688pt;}
.h2{height:41.543750pt;}
.h5{height:47.335938pt;}
.h3{height:52.468750pt;}
.h1{height:60.057813pt;}
.h6{height:60.288750pt;}
.h7{height:74.880000pt;}
.h0{height:1056.000000pt;}
.w2{width:187.386667pt;}
.w3{width:516.453333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.920000pt;}
.x1{left:48.159988pt;}
.x3{left:71.999988pt;}
.x2{left:96.031988pt;}
.x4{left:170.106667pt;}
.x5{left:235.386667pt;}
}




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