
    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_1d16ab7e3f37cae3f64c1f3d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_cad75c730f3c63dfafbc02c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_1746a472f2472e93989a1b2e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_b8eed33380899f7c24e234f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;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_7070fa3556e5b4f8e12ef62a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.144000px;}
.v2{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.269400px;}
.ls9{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.233280px;}
.ls0{letter-spacing:0.241200px;}
.ls3{letter-spacing:0.269400px;}
.lsb{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:152.909280px;}
.ls6{letter-spacing:153.629280px;}
.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:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.872000px;}
.ws2{word-spacing:-16.613280px;}
.ws6{word-spacing:-16.506480px;}
.ws9{word-spacing:-14.508000px;}
.ws1{word-spacing:-13.680120px;}
.ws5{word-spacing:-13.634520px;}
.ws4{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.141320px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-5.251680px;}
._11{margin-left:-4.176000px;}
._10{margin-left:-3.096000px;}
._1{margin-left:-1.350720px;}
._0{width:1.418400px;}
._8{width:2.545920px;}
._7{width:3.744000px;}
._b{width:5.328000px;}
._a{width:6.336000px;}
._14{width:7.824000px;}
._17{width:9.630720px;}
._6{width:11.304000px;}
._5{width:12.456000px;}
._3{width:13.896000px;}
._4{width:15.624000px;}
._18{width:17.190720px;}
._2{width:18.216000px;}
._9{width:21.816000px;}
._1a{width:23.832000px;}
._19{width:24.984000px;}
._13{width:26.136000px;}
._12{width:27.360000px;}
._22{width:28.516320px;}
._16{width:29.520000px;}
._15{width:30.816000px;}
._23{width:31.838400px;}
._d{width:33.064800px;}
._c{width:34.128000px;}
._1b{width:35.131200px;}
._1c{width:37.152000px;}
._f{width:38.596320px;}
._e{width:39.888000px;}
._1e{width:49.104000px;}
._1d{width:50.184000px;}
._24{width:52.272000px;}
._21{width:95.688000px;}
._20{width:338.520000px;}
.fc2{color:rgb(40,35,125);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y43{bottom:-17.100000px;}
.ye{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.y42{bottom:1.800000px;}
.y40{bottom:3.240000px;}
.yb{bottom:3.780000px;}
.y13b{bottom:3.825000px;}
.ye3{bottom:4.500000px;}
.yed{bottom:4.680000px;}
.y10f{bottom:5.400000px;}
.yd{bottom:5.580000px;}
.y3f{bottom:21.060000px;}
.y118{bottom:22.320000px;}
.y8c{bottom:24.480000px;}
.yd2{bottom:24.525000px;}
.ye2{bottom:25.200000px;}
.y101{bottom:25.245000px;}
.yfe{bottom:25.380000px;}
.yec{bottom:25.425000px;}
.ye7{bottom:25.920000px;}
.y10e{bottom:26.145000px;}
.y14e{bottom:26.640000px;}
.y9{bottom:33.300000px;}
.y3d{bottom:33.660000px;}
.y3e{bottom:39.960000px;}
.y8b{bottom:45.180000px;}
.y8f{bottom:45.210000px;}
.y136{bottom:45.900000px;}
.y133{bottom:46.080000px;}
.ye6{bottom:46.620000px;}
.y10d{bottom:46.845000px;}
.y14d{bottom:47.340000px;}
.y8{bottom:51.660000px;}
.y3c{bottom:53.100000px;}
.yc{bottom:60.480000px;}
.y41{bottom:60.660000px;}
.y114{bottom:65.880000px;}
.y13d{bottom:66.600000px;}
.y7{bottom:66.780000px;}
.y122{bottom:67.320000px;}
.y14c{bottom:68.040000px;}
.y6{bottom:80.676000px;}
.y113{bottom:86.580000px;}
.y121{bottom:88.020000px;}
.y14b{bottom:88.740000px;}
.y5{bottom:94.536000px;}
.y120{bottom:108.720000px;}
.y14a{bottom:109.440000px;}
.y142{bottom:109.620000px;}
.y4{bottom:109.656000px;}
.y88{bottom:110.736000px;}
.ya1{bottom:113.256000px;}
.y183{bottom:114.516000px;}
.yc7{bottom:115.056000px;}
.y11c{bottom:119.376000px;}
.yf5{bottom:122.436000px;}
.y64{bottom:123.876000px;}
.y87{bottom:126.396000px;}
.y145{bottom:126.576000px;}
.y11f{bottom:129.420000px;}
.y3a{bottom:129.636000px;}
.y149{bottom:130.140000px;}
.y141{bottom:130.320000px;}
.ya0{bottom:133.956000px;}
.y7d{bottom:134.316000px;}
.yc6{bottom:135.756000px;}
.y11b{bottom:140.076000px;}
.y86{bottom:141.876000px;}
.yda{bottom:142.236000px;}
.y178{bottom:145.476000px;}
.y39{bottom:146.916000px;}
.y144{bottom:147.276000px;}
.yd9{bottom:147.456000px;}
.y165{bottom:150.510000px;}
.y148{bottom:150.840000px;}
.y140{bottom:151.020000px;}
.yf4{bottom:153.390000px;}
.y9f{bottom:154.650000px;}
.y63{bottom:155.010000px;}
.yc5{bottom:156.450000px;}
.y85{bottom:157.350000px;}
.yd8{bottom:160.050000px;}
.y11a{bottom:160.770000px;}
.y84{bottom:161.850000px;}
.y38{bottom:164.190000px;}
.y13f{bottom:164.910000px;}
.y7c{bottom:165.270000px;}
.y83{bottom:172.830000px;}
.y9e{bottom:175.350000px;}
.y177{bottom:176.610000px;}
.yc4{bottom:177.150000px;}
.y37{bottom:181.470000px;}
.yf3{bottom:184.530000px;}
.y62{bottom:185.970000px;}
.y199{bottom:188.310000px;}
.y82{bottom:188.670000px;}
.y81{bottom:193.890000px;}
.y9d{bottom:196.050000px;}
.y7b{bottom:196.410000px;}
.yc3{bottom:197.850000px;}
.yd7{bottom:198.390000px;}
.y36{bottom:198.750000px;}
.y119{bottom:202.170000px;}
.y198{bottom:203.790000px;}
.y80{bottom:206.670000px;}
.y143{bottom:207.030000px;}
.y182{bottom:207.570000px;}
.y164{bottom:212.610000px;}
.yf2{bottom:215.490000px;}
.y35{bottom:216.030000px;}
.y9c{bottom:216.750000px;}
.y61{bottom:217.110000px;}
.yc2{bottom:218.550000px;}
.yd6{bottom:219.090000px;}
.y197{bottom:219.270000px;}
.y112{bottom:219.810000px;}
.y176{bottom:225.570000px;}
.y7a{bottom:227.370000px;}
.y34{bottom:233.130000px;}
.y196{bottom:234.930000px;}
.y9b{bottom:237.450000px;}
.y181{bottom:238.710000px;}
.yc1{bottom:239.250000px;}
.yd5{bottom:239.790000px;}
.y163{bottom:243.570000px;}
.yf1{bottom:246.630000px;}
.y60{bottom:248.070000px;}
.y13c{bottom:249.330000px;}
.y33{bottom:250.410000px;}
.y195{bottom:251.310000px;}
.y175{bottom:256.710000px;}
.yd4{bottom:257.430000px;}
.y9a{bottom:258.150000px;}
.y79{bottom:258.510000px;}
.y117{bottom:259.770000px;}
.yc0{bottom:259.950000px;}
.y32{bottom:268.410000px;}
.y180{bottom:269.670000px;}
.y194{bottom:272.010000px;}
.y162{bottom:274.710000px;}
.yf0{bottom:277.590000px;}
.y99{bottom:278.850000px;}
.y5f{bottom:279.210000px;}
.ybf{bottom:280.650000px;}
.y116{bottom:281.190000px;}
.y78{bottom:289.470000px;}
.y13e{bottom:291.450000px;}
.y193{bottom:292.710000px;}
.yef{bottom:298.290000px;}
.y98{bottom:299.550000px;}
.yd3{bottom:299.730000px;}
.ybe{bottom:301.350000px;}
.y115{bottom:302.610000px;}
.y161{bottom:305.670000px;}
.y5e{bottom:310.170000px;}
.y192{bottom:313.410000px;}
.yeb{bottom:315.930000px;}
.y17f{bottom:318.630000px;}
.y97{bottom:320.250000px;}
.y77{bottom:320.610000px;}
.yd1{bottom:321.150000px;}
.ybd{bottom:322.050000px;}
.y10c{bottom:324.030000px;}
.y31{bottom:327.630000px;}
.y13a{bottom:333.570000px;}
.y191{bottom:333.930000px;}
.y174{bottom:336.675000px;}
.y160{bottom:336.855000px;}
.yee{bottom:337.575000px;}
.y96{bottom:340.995000px;}
.y5d{bottom:341.355000px;}
.ybc{bottom:342.795000px;}
.y111{bottom:345.675000px;}
.y17e{bottom:349.815000px;}
.y76{bottom:351.615000px;}
.y190{bottom:354.675000px;}
.y30{bottom:358.815000px;}
.yea{bottom:358.995000px;}
.y95{bottom:361.695000px;}
.y5c{bottom:362.055000px;}
.yd0{bottom:363.315000px;}
.ybb{bottom:363.495000px;}
.y110{bottom:367.095000px;}
.y15f{bottom:367.815000px;}
.y18f{bottom:375.375000px;}
.y139{bottom:379.515000px;}
.ye5{bottom:380.415000px;}
.y17d{bottom:380.775000px;}
.y94{bottom:382.395000px;}
.y5b{bottom:382.755000px;}
.yba{bottom:384.195000px;}
.ycf{bottom:384.735000px;}
.y10b{bottom:388.515000px;}
.y2f{bottom:389.775000px;}
.y18e{bottom:396.075000px;}
.y15e{bottom:398.775000px;}
.y138{bottom:400.215000px;}
.ye9{bottom:401.835000px;}
.y5a{bottom:403.455000px;}
.yb9{bottom:404.895000px;}
.y75{bottom:413.715000px;}
.y173{bottom:416.775000px;}
.y135{bottom:417.855000px;}
.y93{bottom:419.475000px;}
.y2e{bottom:420.915000px;}
.ye8{bottom:423.255000px;}
.y59{bottom:423.975000px;}
.yb8{bottom:425.595000px;}
.yce{bottom:426.855000px;}
.y15d{bottom:429.915000px;}
.y74{bottom:444.675000px;}
.yb7{bottom:446.295000px;}
.y172{bottom:447.915000px;}
.ycd{bottom:448.275000px;}
.y92{bottom:450.615000px;}
.y2d{bottom:451.875000px;}
.y58{bottom:455.115000px;}
.y137{bottom:459.975000px;}
.y15c{bottom:460.875000px;}
.y18d{bottom:465.915000px;}
.ye4{bottom:466.095000px;}
.yb6{bottom:466.995000px;}
.ycc{bottom:469.695000px;}
.y73{bottom:475.815000px;}
.y171{bottom:478.875000px;}
.y132{bottom:481.395000px;}
.y91{bottom:481.575000px;}
.y2c{bottom:483.015000px;}
.y57{bottom:486.075000px;}
.ye1{bottom:487.695000px;}
.y15b{bottom:492.015000px;}
.y18c{bottom:496.875000px;}
.y90{bottom:499.395000px;}
.yb5{bottom:504.255000px;}
.y72{bottom:506.775000px;}
.ye0{bottom:509.115000px;}
.y170{bottom:510.015000px;}
.ycb{bottom:511.995000px;}
.y2b{bottom:513.975000px;}
.y56{bottom:517.215000px;}
.y15a{bottom:522.975000px;}
.y134{bottom:523.695000px;}
.y18b{bottom:528.015000px;}
.ydf{bottom:530.535000px;}
.yca{bottom:533.415000px;}
.y71{bottom:537.915000px;}
.y16f{bottom:540.975000px;}
.yb4{bottom:541.515000px;}
.y2a{bottom:545.115000px;}
.y55{bottom:548.175000px;}
.yde{bottom:551.955000px;}
.y159{bottom:554.115000px;}
.yc9{bottom:558.615000px;}
.y18a{bottom:558.975000px;}
.y8e{bottom:562.215000px;}
.y131{bottom:565.815000px;}
.y70{bottom:568.875000px;}
.y16e{bottom:572.115000px;}
.y29{bottom:576.075000px;}
.ydd{bottom:577.155000px;}
.yb3{bottom:578.775000px;}
.y54{bottom:579.315000px;}
.y158{bottom:585.075000px;}
.y17c{bottom:590.115000px;}
.y130{bottom:591.015000px;}
.ydc{bottom:597.855000px;}
.y6f{bottom:600.015000px;}
.y28{bottom:607.245000px;}
.y189{bottom:608.145000px;}
.y53{bottom:610.305000px;}
.y12f{bottom:611.745000px;}
.yb2{bottom:616.065000px;}
.y157{bottom:616.245000px;}
.ydb{bottom:618.585000px;}
.y16d{bottom:621.105000px;}
.y8d{bottom:625.065000px;}
.y6e{bottom:631.005000px;}
.y12e{bottom:632.445000px;}
.y109{bottom:636.225000px;}
.y27{bottom:638.205000px;}
.y188{bottom:639.105000px;}
.y52{bottom:641.445000px;}
.y156{bottom:647.205000px;}
.y12b{bottom:650.085000px;}
.y16c{bottom:652.245000px;}
.yb1{bottom:653.325000px;}
.y10a{bottom:657.825000px;}
.y26{bottom:658.905000px;}
.y6d{bottom:662.145000px;}
.y17b{bottom:670.245000px;}
.y51{bottom:672.405000px;}
.y155{bottom:678.345000px;}
.y107{bottom:679.245000px;}
.y25{bottom:679.605000px;}
.y8a{bottom:687.885000px;}
.y187{bottom:688.245000px;}
.yb0{bottom:690.585000px;}
.y12d{bottom:692.205000px;}
.y6c{bottom:693.105000px;}
.y108{bottom:700.665000px;}
.y16b{bottom:701.205000px;}
.y50{bottom:703.545000px;}
.y154{bottom:709.305000px;}
.y24{bottom:710.745000px;}
.y186{bottom:719.205000px;}
.y106{bottom:722.085000px;}
.y6b{bottom:724.245000px;}
.yaf{bottom:727.665000px;}
.y23{bottom:731.445000px;}
.y17a{bottom:732.345000px;}
.y12c{bottom:734.325000px;}
.y4f{bottom:734.505000px;}
.y153{bottom:740.445000px;}
.y105{bottom:743.505000px;}
.y16a{bottom:750.345000px;}
.y89{bottom:750.705000px;}
.y22{bottom:752.145000px;}
.y6a{bottom:755.205000px;}
.y12a{bottom:755.925000px;}
.yae{bottom:764.925000px;}
.y4e{bottom:765.645000px;}
.y152{bottom:771.405000px;}
.y20{bottom:772.845000px;}
.y21{bottom:778.785000px;}
.y129{bottom:781.125000px;}
.y169{bottom:781.305000px;}
.yad{bottom:785.625000px;}
.y69{bottom:786.345000px;}
.yc8{bottom:792.285000px;}
.y4d{bottom:796.605000px;}
.y128{bottom:801.825000px;}
.y1e{bottom:802.545000px;}
.yac{bottom:806.325000px;}
.y104{bottom:807.945000px;}
.y1f{bottom:808.485000px;}
.y168{bottom:812.445000px;}
.y68{bottom:817.305000px;}
.y127{bottom:822.525000px;}
.y151{bottom:823.245000px;}
.yab{bottom:827.025000px;}
.y4c{bottom:827.745000px;}
.y103{bottom:829.365000px;}
.y1c{bottom:832.065000px;}
.y1d{bottom:838.005000px;}
.y126{bottom:840.165000px;}
.y167{bottom:843.405000px;}
.y150{bottom:843.945000px;}
.yaa{bottom:847.725000px;}
.y67{bottom:848.445000px;}
.y100{bottom:850.785000px;}
.y4b{bottom:858.705000px;}
.y185{bottom:861.405000px;}
.y1a{bottom:861.765000px;}
.y14f{bottom:864.645000px;}
.y1b{bottom:867.705000px;}
.ya9{bottom:868.425000px;}
.y102{bottom:872.250000px;}
.y66{bottom:879.450000px;}
.y125{bottom:882.330000px;}
.ya8{bottom:889.170000px;}
.y4a{bottom:889.890000px;}
.y19{bottom:891.510000px;}
.y166{bottom:892.590000px;}
.yff{bottom:893.670000px;}
.ya7{bottom:909.870000px;}
.y49{bottom:910.590000px;}
.y18{bottom:912.210000px;}
.yfd{bottom:915.090000px;}
.y179{bottom:923.550000px;}
.y11e{bottom:924.450000px;}
.ya6{bottom:930.570000px;}
.y48{bottom:931.290000px;}
.y17{bottom:932.910000px;}
.yfb{bottom:936.690000px;}
.y65{bottom:941.550000px;}
.ya5{bottom:951.270000px;}
.y47{bottom:951.990000px;}
.y16{bottom:953.610000px;}
.y184{bottom:954.690000px;}
.yfc{bottom:958.110000px;}
.y124{bottom:966.570000px;}
.ya4{bottom:971.970000px;}
.y46{bottom:972.690000px;}
.y15{bottom:974.130000px;}
.yfa{bottom:979.530000px;}
.ya3{bottom:992.670000px;}
.y14{bottom:993.390000px;}
.yf9{bottom:1000.950000px;}
.y45{bottom:1003.650000px;}
.y147{bottom:1008.690000px;}
.y7f{bottom:1009.590000px;}
.y13{bottom:1014.090000px;}
.yf8{bottom:1022.370000px;}
.y123{bottom:1029.390000px;}
.ya2{bottom:1034.430000px;}
.y12{bottom:1034.790000px;}
.yf7{bottom:1043.790000px;}
.y146{bottom:1050.990000px;}
.y11{bottom:1055.490000px;}
.yf6{bottom:1065.390000px;}
.y44{bottom:1065.750000px;}
.y11d{bottom:1071.690000px;}
.y10{bottom:1076.190000px;}
.yf{bottom:1096.890000px;}
.y7e{bottom:1102.830000px;}
.y3{bottom:1164.060000px;}
.ya{bottom:1174.860000px;}
.y2{bottom:1181.340000px;}
.y3b{bottom:1196.460000px;}
.y1{bottom:1199.340000px;}
.h14{height:11.736000px;}
.h9{height:15.516000px;}
.h8{height:20.520000px;}
.h19{height:20.700000px;}
.h21{height:20.736000px;}
.h16{height:27.147656px;}
.h18{height:32.291016px;}
.ha{height:37.457578px;}
.h13{height:37.836000px;}
.h26{height:39.240000px;}
.h1c{height:41.400000px;}
.h1d{height:41.436000px;}
.h11{height:41.726953px;}
.h1e{height:42.120000px;}
.h23{height:42.156000px;}
.h22{height:42.300000px;}
.h20{height:42.336000px;}
.h15{height:43.269961px;}
.h4{height:43.646836px;}
.h5{height:45.504703px;}
.h17{height:48.436523px;}
.h6{height:48.858398px;}
.hc{height:48.871406px;}
.h2{height:50.273438px;}
.hd{height:53.121094px;}
.h10{height:53.603086px;}
.h3{height:54.069961px;}
.h7{height:59.415469px;}
.h1a{height:62.100000px;}
.h1b{height:62.136000px;}
.h2a{height:62.820000px;}
.h1f{height:63.540000px;}
.h24{height:63.756000px;}
.hf{height:64.582031px;}
.hb{height:65.144531px;}
.he{height:67.406836px;}
.h12{height:76.219102px;}
.h2b{height:83.520000px;}
.h29{height:83.700000px;}
.h25{height:103.500000px;}
.h28{height:104.940000px;}
.h2d{height:125.640000px;}
.h27{height:146.340000px;}
.h2e{height:167.760000px;}
.h2c{height:167.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:17.820000px;}
.w15{width:71.280000px;}
.wa{width:75.600000px;}
.w8{width:77.040000px;}
.w6{width:92.730000px;}
.w11{width:114.516000px;}
.w1b{width:116.100000px;}
.w21{width:126.900000px;}
.w10{width:135.360000px;}
.w9{width:138.996000px;}
.wb{width:156.090000px;}
.w18{width:158.790000px;}
.w20{width:179.850000px;}
.w16{width:198.210000px;}
.w1a{width:201.270000px;}
.w1e{width:211.890000px;}
.w13{width:223.410000px;}
.we{width:223.950000px;}
.wf{width:224.310000px;}
.w14{width:224.850000px;}
.wd{width:225.930000px;}
.wc{width:228.630000px;}
.w1d{width:243.750000px;}
.w17{width:257.430000px;}
.w19{width:296.895000px;}
.w1f{width:307.695000px;}
.w1c{width:339.555000px;}
.w4{width:380.415000px;}
.w7{width:386.355000px;}
.w12{width:416.235000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:7.740000px;}
.x61{left:8.820000px;}
.xb{left:10.800000px;}
.x30{left:12.060000px;}
.xa{left:13.500000px;}
.x2a{left:15.840000px;}
.x41{left:18.540000px;}
.x68{left:19.620000px;}
.x1e{left:21.780000px;}
.x48{left:23.760000px;}
.x53{left:26.100000px;}
.x4b{left:27.225000px;}
.x49{left:29.520000px;}
.x6d{left:32.760000px;}
.x32{left:33.840000px;}
.x4f{left:35.094000px;}
.x70{left:36.360000px;}
.x59{left:37.800000px;}
.x34{left:38.880000px;}
.x2f{left:39.960000px;}
.x57{left:41.580000px;}
.x5d{left:42.885000px;}
.x2c{left:43.920000px;}
.x31{left:45.360000px;}
.x43{left:47.334000px;}
.x33{left:48.960000px;}
.x46{left:50.034000px;}
.x65{left:51.480000px;}
.x69{left:52.785000px;}
.x6a{left:53.865000px;}
.x3d{left:55.800000px;}
.x44{left:60.480000px;}
.x72{left:63.360000px;}
.x3c{left:64.434000px;}
.x3f{left:66.600000px;}
.x4c{left:67.680000px;}
.x3b{left:70.560000px;}
.x58{left:71.820000px;}
.x54{left:73.080000px;}
.x42{left:74.874000px;}
.x4e{left:78.480000px;}
.x3a{left:80.280000px;}
.x40{left:81.900000px;}
.x63{left:83.880000px;}
.x55{left:85.500000px;}
.x4d{left:88.200000px;}
.x3e{left:91.434000px;}
.x52{left:93.060000px;}
.x45{left:94.854000px;}
.x38{left:95.934000px;}
.x6b{left:97.425000px;}
.x50{left:98.670000px;}
.x62{left:100.620000px;}
.x56{left:101.700000px;}
.xc{left:108.035987px;}
.x26{left:112.895987px;}
.x66{left:115.245000px;}
.x18{left:116.315987px;}
.x71{left:119.205000px;}
.x73{left:120.285000px;}
.x60{left:123.525000px;}
.x64{left:125.505000px;}
.xf{left:128.375987px;}
.xd{left:138.455987px;}
.x4a{left:146.010000px;}
.x1f{left:150.509987px;}
.x21{left:160.589987px;}
.x20{left:162.029987px;}
.x51{left:180.030000px;}
.x28{left:186.510000px;}
.x19{left:212.609987px;}
.x47{left:252.930000px;}
.x5a{left:256.889987px;}
.x36{left:293.654973px;}
.x35{left:294.914987px;}
.x37{left:298.874987px;}
.xe{left:299.954987px;}
.x24{left:310.934973px;}
.x10{left:312.374987px;}
.x25{left:317.594987px;}
.x1{left:324.074987px;}
.x29{left:326.235000px;}
.x39{left:335.415000px;}
.x22{left:368.354973px;}
.x23{left:375.014987px;}
.x5b{left:379.695000px;}
.x12{left:384.734987px;}
.x2b{left:402.735000px;}
.x6{left:414.974987px;}
.x6c{left:425.235000px;}
.x1a{left:427.214987px;}
.x4{left:446.474987px;}
.x14{left:469.364987px;}
.x27{left:473.504987px;}
.x17{left:475.664987px;}
.x5e{left:478.365000px;}
.x6e{left:489.165000px;}
.x74{left:499.604987px;}
.x75{left:504.824987px;}
.x67{left:521.025000px;}
.x7{left:523.544987px;}
.x1b{left:525.164987px;}
.x2d{left:559.545000px;}
.x8{left:584.564987px;}
.x5{left:598.064987px;}
.x2{left:634.964987px;}
.x5c{left:637.845000px;}
.x6f{left:669.750000px;}
.x5f{left:680.550000px;}
.x15{left:736.889973px;}
.x13{left:740.129973px;}
.x16{left:743.549987px;}
.x9{left:747.510000px;}
.x1c{left:758.129987px;}
.x3{left:767.129987px;}
.x11{left:785.129987px;}
.x1d{left:800.250000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.128000pt;}
.v2{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.239467pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.207360pt;}
.ls0{letter-spacing:0.214400pt;}
.ls3{letter-spacing:0.239467pt;}
.lsb{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:135.919360pt;}
.ls6{letter-spacing:136.559360pt;}
.ws8{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.664000pt;}
.ws2{word-spacing:-14.767360pt;}
.ws6{word-spacing:-14.672427pt;}
.ws9{word-spacing:-12.896000pt;}
.ws1{word-spacing:-12.160107pt;}
.ws5{word-spacing:-12.119573pt;}
.ws4{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.681173pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-4.668160pt;}
._11{margin-left:-3.712000pt;}
._10{margin-left:-2.752000pt;}
._1{margin-left:-1.200640pt;}
._0{width:1.260800pt;}
._8{width:2.263040pt;}
._7{width:3.328000pt;}
._b{width:4.736000pt;}
._a{width:5.632000pt;}
._14{width:6.954667pt;}
._17{width:8.560640pt;}
._6{width:10.048000pt;}
._5{width:11.072000pt;}
._3{width:12.352000pt;}
._4{width:13.888000pt;}
._18{width:15.280640pt;}
._2{width:16.192000pt;}
._9{width:19.392000pt;}
._1a{width:21.184000pt;}
._19{width:22.208000pt;}
._13{width:23.232000pt;}
._12{width:24.320000pt;}
._22{width:25.347840pt;}
._16{width:26.240000pt;}
._15{width:27.392000pt;}
._23{width:28.300800pt;}
._d{width:29.390933pt;}
._c{width:30.336000pt;}
._1b{width:31.227733pt;}
._1c{width:33.024000pt;}
._f{width:34.307840pt;}
._e{width:35.456000pt;}
._1e{width:43.648000pt;}
._1d{width:44.608000pt;}
._24{width:46.464000pt;}
._21{width:85.056000pt;}
._20{width:300.906667pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y43{bottom:-15.200000pt;}
.ye{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:1.600000pt;}
.y40{bottom:2.880000pt;}
.yb{bottom:3.360000pt;}
.y13b{bottom:3.400000pt;}
.ye3{bottom:4.000000pt;}
.yed{bottom:4.160000pt;}
.y10f{bottom:4.800000pt;}
.yd{bottom:4.960000pt;}
.y3f{bottom:18.720000pt;}
.y118{bottom:19.840000pt;}
.y8c{bottom:21.760000pt;}
.yd2{bottom:21.800000pt;}
.ye2{bottom:22.400000pt;}
.y101{bottom:22.440000pt;}
.yfe{bottom:22.560000pt;}
.yec{bottom:22.600000pt;}
.ye7{bottom:23.040000pt;}
.y10e{bottom:23.240000pt;}
.y14e{bottom:23.680000pt;}
.y9{bottom:29.600000pt;}
.y3d{bottom:29.920000pt;}
.y3e{bottom:35.520000pt;}
.y8b{bottom:40.160000pt;}
.y8f{bottom:40.186667pt;}
.y136{bottom:40.800000pt;}
.y133{bottom:40.960000pt;}
.ye6{bottom:41.440000pt;}
.y10d{bottom:41.640000pt;}
.y14d{bottom:42.080000pt;}
.y8{bottom:45.920000pt;}
.y3c{bottom:47.200000pt;}
.yc{bottom:53.760000pt;}
.y41{bottom:53.920000pt;}
.y114{bottom:58.560000pt;}
.y13d{bottom:59.200000pt;}
.y7{bottom:59.360000pt;}
.y122{bottom:59.840000pt;}
.y14c{bottom:60.480000pt;}
.y6{bottom:71.712000pt;}
.y113{bottom:76.960000pt;}
.y121{bottom:78.240000pt;}
.y14b{bottom:78.880000pt;}
.y5{bottom:84.032000pt;}
.y120{bottom:96.640000pt;}
.y14a{bottom:97.280000pt;}
.y142{bottom:97.440000pt;}
.y4{bottom:97.472000pt;}
.y88{bottom:98.432000pt;}
.ya1{bottom:100.672000pt;}
.y183{bottom:101.792000pt;}
.yc7{bottom:102.272000pt;}
.y11c{bottom:106.112000pt;}
.yf5{bottom:108.832000pt;}
.y64{bottom:110.112000pt;}
.y87{bottom:112.352000pt;}
.y145{bottom:112.512000pt;}
.y11f{bottom:115.040000pt;}
.y3a{bottom:115.232000pt;}
.y149{bottom:115.680000pt;}
.y141{bottom:115.840000pt;}
.ya0{bottom:119.072000pt;}
.y7d{bottom:119.392000pt;}
.yc6{bottom:120.672000pt;}
.y11b{bottom:124.512000pt;}
.y86{bottom:126.112000pt;}
.yda{bottom:126.432000pt;}
.y178{bottom:129.312000pt;}
.y39{bottom:130.592000pt;}
.y144{bottom:130.912000pt;}
.yd9{bottom:131.072000pt;}
.y165{bottom:133.786667pt;}
.y148{bottom:134.080000pt;}
.y140{bottom:134.240000pt;}
.yf4{bottom:136.346667pt;}
.y9f{bottom:137.466667pt;}
.y63{bottom:137.786667pt;}
.yc5{bottom:139.066667pt;}
.y85{bottom:139.866667pt;}
.yd8{bottom:142.266667pt;}
.y11a{bottom:142.906667pt;}
.y84{bottom:143.866667pt;}
.y38{bottom:145.946667pt;}
.y13f{bottom:146.586667pt;}
.y7c{bottom:146.906667pt;}
.y83{bottom:153.626667pt;}
.y9e{bottom:155.866667pt;}
.y177{bottom:156.986667pt;}
.yc4{bottom:157.466667pt;}
.y37{bottom:161.306667pt;}
.yf3{bottom:164.026667pt;}
.y62{bottom:165.306667pt;}
.y199{bottom:167.386667pt;}
.y82{bottom:167.706667pt;}
.y81{bottom:172.346667pt;}
.y9d{bottom:174.266667pt;}
.y7b{bottom:174.586667pt;}
.yc3{bottom:175.866667pt;}
.yd7{bottom:176.346667pt;}
.y36{bottom:176.666667pt;}
.y119{bottom:179.706667pt;}
.y198{bottom:181.146667pt;}
.y80{bottom:183.706667pt;}
.y143{bottom:184.026667pt;}
.y182{bottom:184.506667pt;}
.y164{bottom:188.986667pt;}
.yf2{bottom:191.546667pt;}
.y35{bottom:192.026667pt;}
.y9c{bottom:192.666667pt;}
.y61{bottom:192.986667pt;}
.yc2{bottom:194.266667pt;}
.yd6{bottom:194.746667pt;}
.y197{bottom:194.906667pt;}
.y112{bottom:195.386667pt;}
.y176{bottom:200.506667pt;}
.y7a{bottom:202.106667pt;}
.y34{bottom:207.226667pt;}
.y196{bottom:208.826667pt;}
.y9b{bottom:211.066667pt;}
.y181{bottom:212.186667pt;}
.yc1{bottom:212.666667pt;}
.yd5{bottom:213.146667pt;}
.y163{bottom:216.506667pt;}
.yf1{bottom:219.226667pt;}
.y60{bottom:220.506667pt;}
.y13c{bottom:221.626667pt;}
.y33{bottom:222.586667pt;}
.y195{bottom:223.386667pt;}
.y175{bottom:228.186667pt;}
.yd4{bottom:228.826667pt;}
.y9a{bottom:229.466667pt;}
.y79{bottom:229.786667pt;}
.y117{bottom:230.906667pt;}
.yc0{bottom:231.066667pt;}
.y32{bottom:238.586667pt;}
.y180{bottom:239.706667pt;}
.y194{bottom:241.786667pt;}
.y162{bottom:244.186667pt;}
.yf0{bottom:246.746667pt;}
.y99{bottom:247.866667pt;}
.y5f{bottom:248.186667pt;}
.ybf{bottom:249.466667pt;}
.y116{bottom:249.946667pt;}
.y78{bottom:257.306667pt;}
.y13e{bottom:259.066667pt;}
.y193{bottom:260.186667pt;}
.yef{bottom:265.146667pt;}
.y98{bottom:266.266667pt;}
.yd3{bottom:266.426667pt;}
.ybe{bottom:267.866667pt;}
.y115{bottom:268.986667pt;}
.y161{bottom:271.706667pt;}
.y5e{bottom:275.706667pt;}
.y192{bottom:278.586667pt;}
.yeb{bottom:280.826667pt;}
.y17f{bottom:283.226667pt;}
.y97{bottom:284.666667pt;}
.y77{bottom:284.986667pt;}
.yd1{bottom:285.466667pt;}
.ybd{bottom:286.266667pt;}
.y10c{bottom:288.026667pt;}
.y31{bottom:291.226667pt;}
.y13a{bottom:296.506667pt;}
.y191{bottom:296.826667pt;}
.y174{bottom:299.266667pt;}
.y160{bottom:299.426667pt;}
.yee{bottom:300.066667pt;}
.y96{bottom:303.106667pt;}
.y5d{bottom:303.426667pt;}
.ybc{bottom:304.706667pt;}
.y111{bottom:307.266667pt;}
.y17e{bottom:310.946667pt;}
.y76{bottom:312.546667pt;}
.y190{bottom:315.266667pt;}
.y30{bottom:318.946667pt;}
.yea{bottom:319.106667pt;}
.y95{bottom:321.506667pt;}
.y5c{bottom:321.826667pt;}
.yd0{bottom:322.946667pt;}
.ybb{bottom:323.106667pt;}
.y110{bottom:326.306667pt;}
.y15f{bottom:326.946667pt;}
.y18f{bottom:333.666667pt;}
.y139{bottom:337.346667pt;}
.ye5{bottom:338.146667pt;}
.y17d{bottom:338.466667pt;}
.y94{bottom:339.906667pt;}
.y5b{bottom:340.226667pt;}
.yba{bottom:341.506667pt;}
.ycf{bottom:341.986667pt;}
.y10b{bottom:345.346667pt;}
.y2f{bottom:346.466667pt;}
.y18e{bottom:352.066667pt;}
.y15e{bottom:354.466667pt;}
.y138{bottom:355.746667pt;}
.ye9{bottom:357.186667pt;}
.y5a{bottom:358.626667pt;}
.yb9{bottom:359.906667pt;}
.y75{bottom:367.746667pt;}
.y173{bottom:370.466667pt;}
.y135{bottom:371.426667pt;}
.y93{bottom:372.866667pt;}
.y2e{bottom:374.146667pt;}
.ye8{bottom:376.226667pt;}
.y59{bottom:376.866667pt;}
.yb8{bottom:378.306667pt;}
.yce{bottom:379.426667pt;}
.y15d{bottom:382.146667pt;}
.y74{bottom:395.266667pt;}
.yb7{bottom:396.706667pt;}
.y172{bottom:398.146667pt;}
.ycd{bottom:398.466667pt;}
.y92{bottom:400.546667pt;}
.y2d{bottom:401.666667pt;}
.y58{bottom:404.546667pt;}
.y137{bottom:408.866667pt;}
.y15c{bottom:409.666667pt;}
.y18d{bottom:414.146667pt;}
.ye4{bottom:414.306667pt;}
.yb6{bottom:415.106667pt;}
.ycc{bottom:417.506667pt;}
.y73{bottom:422.946667pt;}
.y171{bottom:425.666667pt;}
.y132{bottom:427.906667pt;}
.y91{bottom:428.066667pt;}
.y2c{bottom:429.346667pt;}
.y57{bottom:432.066667pt;}
.ye1{bottom:433.506667pt;}
.y15b{bottom:437.346667pt;}
.y18c{bottom:441.666667pt;}
.y90{bottom:443.906667pt;}
.yb5{bottom:448.226667pt;}
.y72{bottom:450.466667pt;}
.ye0{bottom:452.546667pt;}
.y170{bottom:453.346667pt;}
.ycb{bottom:455.106667pt;}
.y2b{bottom:456.866667pt;}
.y56{bottom:459.746667pt;}
.y15a{bottom:464.866667pt;}
.y134{bottom:465.506667pt;}
.y18b{bottom:469.346667pt;}
.ydf{bottom:471.586667pt;}
.yca{bottom:474.146667pt;}
.y71{bottom:478.146667pt;}
.y16f{bottom:480.866667pt;}
.yb4{bottom:481.346667pt;}
.y2a{bottom:484.546667pt;}
.y55{bottom:487.266667pt;}
.yde{bottom:490.626667pt;}
.y159{bottom:492.546667pt;}
.yc9{bottom:496.546667pt;}
.y18a{bottom:496.866667pt;}
.y8e{bottom:499.746667pt;}
.y131{bottom:502.946667pt;}
.y70{bottom:505.666667pt;}
.y16e{bottom:508.546667pt;}
.y29{bottom:512.066667pt;}
.ydd{bottom:513.026667pt;}
.yb3{bottom:514.466667pt;}
.y54{bottom:514.946667pt;}
.y158{bottom:520.066667pt;}
.y17c{bottom:524.546667pt;}
.y130{bottom:525.346667pt;}
.ydc{bottom:531.426667pt;}
.y6f{bottom:533.346667pt;}
.y28{bottom:539.773333pt;}
.y189{bottom:540.573333pt;}
.y53{bottom:542.493333pt;}
.y12f{bottom:543.773333pt;}
.yb2{bottom:547.613333pt;}
.y157{bottom:547.773333pt;}
.ydb{bottom:549.853333pt;}
.y16d{bottom:552.093333pt;}
.y8d{bottom:555.613333pt;}
.y6e{bottom:560.893333pt;}
.y12e{bottom:562.173333pt;}
.y109{bottom:565.533333pt;}
.y27{bottom:567.293333pt;}
.y188{bottom:568.093333pt;}
.y52{bottom:570.173333pt;}
.y156{bottom:575.293333pt;}
.y12b{bottom:577.853333pt;}
.y16c{bottom:579.773333pt;}
.yb1{bottom:580.733333pt;}
.y10a{bottom:584.733333pt;}
.y26{bottom:585.693333pt;}
.y6d{bottom:588.573333pt;}
.y17b{bottom:595.773333pt;}
.y51{bottom:597.693333pt;}
.y155{bottom:602.973333pt;}
.y107{bottom:603.773333pt;}
.y25{bottom:604.093333pt;}
.y8a{bottom:611.453333pt;}
.y187{bottom:611.773333pt;}
.yb0{bottom:613.853333pt;}
.y12d{bottom:615.293333pt;}
.y6c{bottom:616.093333pt;}
.y108{bottom:622.813333pt;}
.y16b{bottom:623.293333pt;}
.y50{bottom:625.373333pt;}
.y154{bottom:630.493333pt;}
.y24{bottom:631.773333pt;}
.y186{bottom:639.293333pt;}
.y106{bottom:641.853333pt;}
.y6b{bottom:643.773333pt;}
.yaf{bottom:646.813333pt;}
.y23{bottom:650.173333pt;}
.y17a{bottom:650.973333pt;}
.y12c{bottom:652.733333pt;}
.y4f{bottom:652.893333pt;}
.y153{bottom:658.173333pt;}
.y105{bottom:660.893333pt;}
.y16a{bottom:666.973333pt;}
.y89{bottom:667.293333pt;}
.y22{bottom:668.573333pt;}
.y6a{bottom:671.293333pt;}
.y12a{bottom:671.933333pt;}
.yae{bottom:679.933333pt;}
.y4e{bottom:680.573333pt;}
.y152{bottom:685.693333pt;}
.y20{bottom:686.973333pt;}
.y21{bottom:692.253333pt;}
.y129{bottom:694.333333pt;}
.y169{bottom:694.493333pt;}
.yad{bottom:698.333333pt;}
.y69{bottom:698.973333pt;}
.yc8{bottom:704.253333pt;}
.y4d{bottom:708.093333pt;}
.y128{bottom:712.733333pt;}
.y1e{bottom:713.373333pt;}
.yac{bottom:716.733333pt;}
.y104{bottom:718.173333pt;}
.y1f{bottom:718.653333pt;}
.y168{bottom:722.173333pt;}
.y68{bottom:726.493333pt;}
.y127{bottom:731.133333pt;}
.y151{bottom:731.773333pt;}
.yab{bottom:735.133333pt;}
.y4c{bottom:735.773333pt;}
.y103{bottom:737.213333pt;}
.y1c{bottom:739.613333pt;}
.y1d{bottom:744.893333pt;}
.y126{bottom:746.813333pt;}
.y167{bottom:749.693333pt;}
.y150{bottom:750.173333pt;}
.yaa{bottom:753.533333pt;}
.y67{bottom:754.173333pt;}
.y100{bottom:756.253333pt;}
.y4b{bottom:763.293333pt;}
.y185{bottom:765.693333pt;}
.y1a{bottom:766.013333pt;}
.y14f{bottom:768.573333pt;}
.y1b{bottom:771.293333pt;}
.ya9{bottom:771.933333pt;}
.y102{bottom:775.333333pt;}
.y66{bottom:781.733333pt;}
.y125{bottom:784.293333pt;}
.ya8{bottom:790.373333pt;}
.y4a{bottom:791.013333pt;}
.y19{bottom:792.453333pt;}
.y166{bottom:793.413333pt;}
.yff{bottom:794.373333pt;}
.ya7{bottom:808.773333pt;}
.y49{bottom:809.413333pt;}
.y18{bottom:810.853333pt;}
.yfd{bottom:813.413333pt;}
.y179{bottom:820.933333pt;}
.y11e{bottom:821.733333pt;}
.ya6{bottom:827.173333pt;}
.y48{bottom:827.813333pt;}
.y17{bottom:829.253333pt;}
.yfb{bottom:832.613333pt;}
.y65{bottom:836.933333pt;}
.ya5{bottom:845.573333pt;}
.y47{bottom:846.213333pt;}
.y16{bottom:847.653333pt;}
.y184{bottom:848.613333pt;}
.yfc{bottom:851.653333pt;}
.y124{bottom:859.173333pt;}
.ya4{bottom:863.973333pt;}
.y46{bottom:864.613333pt;}
.y15{bottom:865.893333pt;}
.yfa{bottom:870.693333pt;}
.ya3{bottom:882.373333pt;}
.y14{bottom:883.013333pt;}
.yf9{bottom:889.733333pt;}
.y45{bottom:892.133333pt;}
.y147{bottom:896.613333pt;}
.y7f{bottom:897.413333pt;}
.y13{bottom:901.413333pt;}
.yf8{bottom:908.773333pt;}
.y123{bottom:915.013333pt;}
.ya2{bottom:919.493333pt;}
.y12{bottom:919.813333pt;}
.yf7{bottom:927.813333pt;}
.y146{bottom:934.213333pt;}
.y11{bottom:938.213333pt;}
.yf6{bottom:947.013333pt;}
.y44{bottom:947.333333pt;}
.y11d{bottom:952.613333pt;}
.y10{bottom:956.613333pt;}
.yf{bottom:975.013333pt;}
.y7e{bottom:980.293333pt;}
.y3{bottom:1034.720000pt;}
.ya{bottom:1044.320000pt;}
.y2{bottom:1050.080000pt;}
.y3b{bottom:1063.520000pt;}
.y1{bottom:1066.080000pt;}
.h14{height:10.432000pt;}
.h9{height:13.792000pt;}
.h8{height:18.240000pt;}
.h19{height:18.400000pt;}
.h21{height:18.432000pt;}
.h16{height:24.131250pt;}
.h18{height:28.703125pt;}
.ha{height:33.295625pt;}
.h13{height:33.632000pt;}
.h26{height:34.880000pt;}
.h1c{height:36.800000pt;}
.h1d{height:36.832000pt;}
.h11{height:37.090625pt;}
.h1e{height:37.440000pt;}
.h23{height:37.472000pt;}
.h22{height:37.600000pt;}
.h20{height:37.632000pt;}
.h15{height:38.462187pt;}
.h4{height:38.797187pt;}
.h5{height:40.448625pt;}
.h17{height:43.054688pt;}
.h6{height:43.429688pt;}
.hc{height:43.441250pt;}
.h2{height:44.687500pt;}
.hd{height:47.218750pt;}
.h10{height:47.647188pt;}
.h3{height:48.062188pt;}
.h7{height:52.813750pt;}
.h1a{height:55.200000pt;}
.h1b{height:55.232000pt;}
.h2a{height:55.840000pt;}
.h1f{height:56.480000pt;}
.h24{height:56.672000pt;}
.hf{height:57.406250pt;}
.hb{height:57.906250pt;}
.he{height:59.917188pt;}
.h12{height:67.750312pt;}
.h2b{height:74.240000pt;}
.h29{height:74.400000pt;}
.h25{height:92.000000pt;}
.h28{height:93.280000pt;}
.h2d{height:111.680000pt;}
.h27{height:130.080000pt;}
.h2e{height:149.120000pt;}
.h2c{height:149.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:15.840000pt;}
.w15{width:63.360000pt;}
.wa{width:67.200000pt;}
.w8{width:68.480000pt;}
.w6{width:82.426667pt;}
.w11{width:101.792000pt;}
.w1b{width:103.200000pt;}
.w21{width:112.800000pt;}
.w10{width:120.320000pt;}
.w9{width:123.552000pt;}
.wb{width:138.746667pt;}
.w18{width:141.146667pt;}
.w20{width:159.866667pt;}
.w16{width:176.186667pt;}
.w1a{width:178.906667pt;}
.w1e{width:188.346667pt;}
.w13{width:198.586667pt;}
.we{width:199.066667pt;}
.wf{width:199.386667pt;}
.w14{width:199.866667pt;}
.wd{width:200.826667pt;}
.wc{width:203.226667pt;}
.w1d{width:216.666667pt;}
.w17{width:228.826667pt;}
.w19{width:263.906667pt;}
.w1f{width:273.506667pt;}
.w1c{width:301.826667pt;}
.w4{width:338.146667pt;}
.w7{width:343.426667pt;}
.w12{width:369.986667pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.880000pt;}
.x61{left:7.840000pt;}
.xb{left:9.600000pt;}
.x30{left:10.720000pt;}
.xa{left:12.000000pt;}
.x2a{left:14.080000pt;}
.x41{left:16.480000pt;}
.x68{left:17.440000pt;}
.x1e{left:19.360000pt;}
.x48{left:21.120000pt;}
.x53{left:23.200000pt;}
.x4b{left:24.200000pt;}
.x49{left:26.240000pt;}
.x6d{left:29.120000pt;}
.x32{left:30.080000pt;}
.x4f{left:31.194667pt;}
.x70{left:32.320000pt;}
.x59{left:33.600000pt;}
.x34{left:34.560000pt;}
.x2f{left:35.520000pt;}
.x57{left:36.960000pt;}
.x5d{left:38.120000pt;}
.x2c{left:39.040000pt;}
.x31{left:40.320000pt;}
.x43{left:42.074667pt;}
.x33{left:43.520000pt;}
.x46{left:44.474667pt;}
.x65{left:45.760000pt;}
.x69{left:46.920000pt;}
.x6a{left:47.880000pt;}
.x3d{left:49.600000pt;}
.x44{left:53.760000pt;}
.x72{left:56.320000pt;}
.x3c{left:57.274667pt;}
.x3f{left:59.200000pt;}
.x4c{left:60.160000pt;}
.x3b{left:62.720000pt;}
.x58{left:63.840000pt;}
.x54{left:64.960000pt;}
.x42{left:66.554667pt;}
.x4e{left:69.760000pt;}
.x3a{left:71.360000pt;}
.x40{left:72.800000pt;}
.x63{left:74.560000pt;}
.x55{left:76.000000pt;}
.x4d{left:78.400000pt;}
.x3e{left:81.274667pt;}
.x52{left:82.720000pt;}
.x45{left:84.314667pt;}
.x38{left:85.274667pt;}
.x6b{left:86.600000pt;}
.x50{left:87.706667pt;}
.x62{left:89.440000pt;}
.x56{left:90.400000pt;}
.xc{left:96.031988pt;}
.x26{left:100.351988pt;}
.x66{left:102.440000pt;}
.x18{left:103.391988pt;}
.x71{left:105.960000pt;}
.x73{left:106.920000pt;}
.x60{left:109.800000pt;}
.x64{left:111.560000pt;}
.xf{left:114.111988pt;}
.xd{left:123.071988pt;}
.x4a{left:129.786667pt;}
.x1f{left:133.786655pt;}
.x21{left:142.746655pt;}
.x20{left:144.026655pt;}
.x51{left:160.026667pt;}
.x28{left:165.786667pt;}
.x19{left:188.986655pt;}
.x47{left:224.826667pt;}
.x5a{left:228.346655pt;}
.x36{left:261.026643pt;}
.x35{left:262.146655pt;}
.x37{left:265.666655pt;}
.xe{left:266.626655pt;}
.x24{left:276.386643pt;}
.x10{left:277.666655pt;}
.x25{left:282.306655pt;}
.x1{left:288.066655pt;}
.x29{left:289.986667pt;}
.x39{left:298.146667pt;}
.x22{left:327.426643pt;}
.x23{left:333.346655pt;}
.x5b{left:337.506667pt;}
.x12{left:341.986655pt;}
.x2b{left:357.986667pt;}
.x6{left:368.866655pt;}
.x6c{left:377.986667pt;}
.x1a{left:379.746655pt;}
.x4{left:396.866655pt;}
.x14{left:417.213322pt;}
.x27{left:420.893322pt;}
.x17{left:422.813322pt;}
.x5e{left:425.213333pt;}
.x6e{left:434.813333pt;}
.x74{left:444.093322pt;}
.x75{left:448.733322pt;}
.x67{left:463.133333pt;}
.x7{left:465.373322pt;}
.x1b{left:466.813322pt;}
.x2d{left:497.373333pt;}
.x8{left:519.613322pt;}
.x5{left:531.613322pt;}
.x2{left:564.413322pt;}
.x5c{left:566.973333pt;}
.x6f{left:595.333333pt;}
.x5f{left:604.933333pt;}
.x15{left:655.013310pt;}
.x13{left:657.893310pt;}
.x16{left:660.933322pt;}
.x9{left:664.453333pt;}
.x1c{left:673.893322pt;}
.x3{left:681.893322pt;}
.x11{left:697.893322pt;}
.x1d{left:711.333333pt;}
}




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