
    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_487c372631a7dffb99040946.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_43713c1ace00db4c19d2cda9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d4ec47936df274eab01356eb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cfc90ba4d41ffacf2fad1a1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0b3d076296a41e34cabcf6c7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920410;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;}
.ls9{letter-spacing:-0.025920px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.720000px;}
.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;}
}
.ws6{word-spacing:-19.457280px;}
.ws8{word-spacing:-19.448640px;}
.ws7{word-spacing:-19.414080px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-4.504320px;}
._a{margin-left:-3.373200px;}
._12{margin-left:-2.288160px;}
._1{margin-left:-1.263600px;}
._0{width:1.135440px;}
._2{width:2.848320px;}
._8{width:4.570560px;}
._15{width:5.683920px;}
._4{width:6.761520px;}
._3{width:7.816320px;}
._11{width:9.666000px;}
._10{width:10.669680px;}
._14{width:11.866320px;}
._18{width:12.885840px;}
._19{width:14.040000px;}
._1b{width:15.696000px;}
._1c{width:16.760160px;}
._e{width:19.193040px;}
._d{width:20.269440px;}
._c{width:21.792960px;}
._1f{width:22.824000px;}
._9{width:23.912640px;}
._f{width:25.242480px;}
._7{width:27.088560px;}
._6{width:28.298160px;}
._1a{width:29.624400px;}
._20{width:31.464000px;}
._1e{width:33.022800px;}
._1d{width:34.560000px;}
._16{width:36.288000px;}
._17{width:37.440000px;}
._5{width:40.472640px;}
._21{width:42.663600px;}
._22{width:44.640000px;}
._13{width:846.156000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160000px;}
.y74{bottom:116.640000px;}
.y125{bottom:118.440000px;}
.y183{bottom:120.420000px;}
.y16d{bottom:120.960000px;}
.yb3{bottom:125.820000px;}
.ye3{bottom:126.000000px;}
.y1bf{bottom:130.140000px;}
.ya5{bottom:132.660000px;}
.y137{bottom:136.800000px;}
.y14f{bottom:141.840000px;}
.yc9{bottom:142.200000px;}
.y73{bottom:147.780000px;}
.y124{bottom:149.400000px;}
.y182{bottom:151.560000px;}
.y88{bottom:151.740000px;}
.y16c{bottom:151.920000px;}
.yfb{bottom:156.240000px;}
.yb2{bottom:156.960000px;}
.ya4{bottom:163.800000px;}
.y136{bottom:167.760000px;}
.y145{bottom:171.900000px;}
.y14e{bottom:172.980000px;}
.y1be{bottom:177.120000px;}
.y72{bottom:178.740000px;}
.y42{bottom:181.440000px;}
.y181{bottom:182.520000px;}
.y87{bottom:182.700000px;}
.y16b{bottom:183.060000px;}
.y123{bottom:183.780000px;}
.ye2{bottom:186.660000px;}
.y142{bottom:187.920000px;}
.y10b{bottom:194.790000px;}
.yc8{bottom:195.870000px;}
.y135{bottom:198.750000px;}
.yfa{bottom:202.350000px;}
.yb1{bottom:202.890000px;}
.y1bd{bottom:205.050000px;}
.ya3{bottom:209.910000px;}
.y41{bottom:212.610000px;}
.y180{bottom:213.690000px;}
.y86{bottom:213.870000px;}
.y16a{bottom:214.050000px;}
.y199{bottom:217.290000px;}
.y14d{bottom:219.090000px;}
.y1bc{bottom:224.310000px;}
.y71{bottom:224.850000px;}
.y10a{bottom:225.930000px;}
.yc7{bottom:227.010000px;}
.yf9{bottom:233.490000px;}
.yb0{bottom:234.030000px;}
.ye1{bottom:235.830000px;}
.y122{bottom:237.450000px;}
.ya2{bottom:240.870000px;}
.y40{bottom:243.570000px;}
.y184{bottom:244.650000px;}
.y134{bottom:244.830000px;}
.y169{bottom:245.190000px;}
.y14c{bottom:250.050000px;}
.y1bb{bottom:252.030000px;}
.y70{bottom:255.990000px;}
.y109{bottom:256.890000px;}
.y17f{bottom:259.590000px;}
.y85{bottom:259.950000px;}
.y198{bottom:263.370000px;}
.yaf{bottom:264.990000px;}
.ye0{bottom:266.790000px;}
.y121{bottom:268.590000px;}
.y1ba{bottom:271.290000px;}
.ya1{bottom:272.010000px;}
.yc6{bottom:273.090000px;}
.y3f{bottom:274.710000px;}
.y133{bottom:275.970000px;}
.yf8{bottom:279.390000px;}
.y168{bottom:279.570000px;}
.y14b{bottom:281.190000px;}
.y6f{bottom:286.950000px;}
.y17e{bottom:290.730000px;}
.y84{bottom:290.910000px;}
.y24{bottom:293.250000px;}
.y197{bottom:294.330000px;}
.yae{bottom:296.130000px;}
.ydf{bottom:297.930000px;}
.y1b9{bottom:299.010000px;}
.y144{bottom:299.370000px;}
.y120{bottom:299.550000px;}
.ya0{bottom:302.970000px;}
.yc5{bottom:304.050000px;}
.y3e{bottom:305.670000px;}
.y132{bottom:306.930000px;}
.yf7{bottom:310.530000px;}
.y14a{bottom:312.150000px;}
.y6e{bottom:318.090000px;}
.y17d{bottom:321.690000px;}
.y83{bottom:322.050000px;}
.y196{bottom:325.470000px;}
.y1b8{bottom:326.910000px;}
.y141{bottom:327.090000px;}
.y11f{bottom:330.690000px;}
.y167{bottom:333.210000px;}
.y9f{bottom:334.110000px;}
.y3d{bottom:336.810000px;}
.y131{bottom:338.070000px;}
.yf6{bottom:341.490000px;}
.yad{bottom:342.210000px;}
.yde{bottom:344.010000px;}
.y1b7{bottom:346.170000px;}
.y6d{bottom:349.050000px;}
.y23{bottom:349.410000px;}
.yc4{bottom:350.130000px;}
.y17c{bottom:352.830000px;}
.y82{bottom:353.010000px;}
.y195{bottom:356.430000px;}
.y140{bottom:358.230000px;}
.y166{bottom:364.170000px;}
.y108{bottom:365.070000px;}
.y3c{bottom:367.770000px;}
.y22{bottom:368.490000px;}
.y130{bottom:369.030000px;}
.yf5{bottom:372.630000px;}
.yac{bottom:373.170000px;}
.y1b6{bottom:373.890000px;}
.ydd{bottom:374.970000px;}
.y11e{bottom:376.590000px;}
.y6c{bottom:380.010000px;}
.yc3{bottom:381.090000px;}
.y17b{bottom:383.790000px;}
.y81{bottom:384.150000px;}
.y194{bottom:387.570000px;}
.y13f{bottom:389.190000px;}
.y165{bottom:395.310000px;}
.y107{bottom:396.210000px;}
.y3b{bottom:398.910000px;}
.y1b5{bottom:401.970000px;}
.yab{bottom:404.310000px;}
.y21{bottom:405.390000px;}
.ydc{bottom:406.110000px;}
.yf4{bottom:407.010000px;}
.y11d{bottom:407.730000px;}
.y9e{bottom:411.150000px;}
.y6b{bottom:414.390000px;}
.y17a{bottom:414.930000px;}
.y12f{bottom:415.110000px;}
.y193{bottom:418.530000px;}
.y13e{bottom:420.330000px;}
.y1b4{bottom:421.050000px;}
.y20{bottom:424.470000px;}
.yc2{bottom:427.170000px;}
.y3a{bottom:429.870000px;}
.y80{bottom:430.050000px;}
.yaa{bottom:435.315000px;}
.ydb{bottom:435.675000px;}
.y11c{bottom:438.735000px;}
.y164{bottom:441.255000px;}
.y9d{bottom:442.155000px;}
.y1f{bottom:443.595000px;}
.y12e{bottom:446.295000px;}
.y1b3{bottom:448.815000px;}
.y192{bottom:449.715000px;}
.y149{bottom:454.755000px;}
.yc1{bottom:458.355000px;}
.yf3{bottom:460.695000px;}
.y179{bottom:461.055000px;}
.y7f{bottom:461.235000px;}
.y106{bottom:461.595000px;}
.y1e{bottom:462.495000px;}
.ya9{bottom:466.455000px;}
.y6a{bottom:468.075000px;}
.y11b{bottom:469.875000px;}
.y56{bottom:472.035000px;}
.y163{bottom:472.395000px;}
.y9c{bottom:473.295000px;}
.y39{bottom:475.995000px;}
.y12d{bottom:477.255000px;}
.y1d{bottom:481.395000px;}
.yda{bottom:484.815000px;}
.y191{bottom:488.775000px;}
.yf2{bottom:491.655000px;}
.y178{bottom:492.015000px;}
.y7e{bottom:492.195000px;}
.y1b2{bottom:495.795000px;}
.y13d{bottom:497.415000px;}
.y69{bottom:499.215000px;}
.y1c{bottom:500.475000px;}
.ya8{bottom:500.835000px;}
.y162{bottom:503.355000px;}
.y9b{bottom:504.255000px;}
.y38{bottom:506.955000px;}
.y97{bottom:508.395000px;}
.y103{bottom:510.195000px;}
.y1b1{bottom:515.055000px;}
.y105{bottom:515.235000px;}
.yd9{bottom:515.955000px;}
.y55{bottom:518.115000px;}
.y1b{bottom:519.375000px;}
.yf1{bottom:522.615000px;}
.y177{bottom:523.155000px;}
.y7d{bottom:523.335000px;}
.y13c{bottom:528.555000px;}
.y102{bottom:529.275000px;}
.y68{bottom:530.175000px;}
.y11a{bottom:531.975000px;}
.y161{bottom:534.495000px;}
.yc0{bottom:535.395000px;}
.y37{bottom:538.095000px;}
.y1a{bottom:538.455000px;}
.y9a{bottom:538.635000px;}
.y1d8{bottom:538.995000px;}
.y148{bottom:539.355000px;}
.y12c{bottom:542.595000px;}
.y1b0{bottom:542.775000px;}
.y104{bottom:546.195000px;}
.yd8{bottom:546.915000px;}
.y101{bottom:548.355000px;}
.y54{bottom:549.255000px;}
.y190{bottom:549.795000px;}
.y176{bottom:554.115000px;}
.y7c{bottom:554.295000px;}
.y19{bottom:557.355000px;}
.y1d7{bottom:558.075000px;}
.y13b{bottom:559.515000px;}
.y67{bottom:561.315000px;}
.ybf{bottom:566.355000px;}
.y100{bottom:567.255000px;}
.yf0{bottom:568.695000px;}
.y36{bottom:569.055000px;}
.y146{bottom:569.775000px;}
.y147{bottom:570.315000px;}
.y1af{bottom:570.675000px;}
.y18{bottom:576.255000px;}
.y119{bottom:578.055000px;}
.y53{bottom:580.215000px;}
.y160{bottom:580.575000px;}
.y18f{bottom:580.935000px;}
.y175{bottom:585.255000px;}
.y96{bottom:585.435000px;}
.y1d6{bottom:585.975000px;}
.yff{bottom:586.335000px;}
.y7b{bottom:588.675000px;}
.y1ae{bottom:589.935000px;}
.y13a{bottom:590.655000px;}
.y66{bottom:592.275000px;}
.yd7{bottom:592.995000px;}
.y12b{bottom:596.235000px;}
.ybe{bottom:597.495000px;}
.yef{bottom:599.835000px;}
.y35{bottom:600.195000px;}
.y17{bottom:604.155000px;}
.y1d5{bottom:605.055000px;}
.yfe{bottom:605.235000px;}
.y118{bottom:609.015000px;}
.y52{bottom:611.355000px;}
.y15f{bottom:611.535000px;}
.y18e{bottom:611.895000px;}
.y95{bottom:616.395000px;}
.y1ad{bottom:617.655000px;}
.y16{bottom:623.235000px;}
.y65{bottom:623.415000px;}
.yd6{bottom:623.955000px;}
.yfd{bottom:624.135000px;}
.y139{bottom:624.855000px;}
.y12a{bottom:627.375000px;}
.yee{bottom:630.795000px;}
.y34{bottom:631.155000px;}
.ybd{bottom:631.875000px;}
.y1d4{bottom:632.775000px;}
.y1ac{bottom:636.915000px;}
.y117{bottom:640.155000px;}
.y15{bottom:642.315000px;}
.y15e{bottom:642.675000px;}
.y18d{bottom:646.275000px;}
.y94{bottom:647.535000px;}
.yfc{bottom:648.435000px;}
.y1d3{bottom:652.035000px;}
.y99{bottom:654.375000px;}
.yd5{bottom:655.095000px;}
.y129{bottom:658.335000px;}
.y14{bottom:661.215000px;}
.y174{bottom:662.295000px;}
.y1ab{bottom:664.635000px;}
.yed{bottom:665.175000px;}
.y64{bottom:669.315000px;}
.y116{bottom:671.145000px;}
.y7a{bottom:673.485000px;}
.y15d{bottom:677.085000px;}
.y33{bottom:677.265000px;}
.y93{bottom:678.525000px;}
.y1d2{bottom:679.785000px;}
.y13{bottom:680.145000px;}
.y1aa{bottom:683.925000px;}
.y98{bottom:685.545000px;}
.yd4{bottom:686.085000px;}
.y51{bottom:688.425000px;}
.y128{bottom:689.505000px;}
.y173{bottom:693.285000px;}
.ya7{bottom:693.645000px;}
.y1d1{bottom:699.045000px;}
.y12{bottom:699.225000px;}
.y18c{bottom:699.945000px;}
.y63{bottom:700.485000px;}
.y115{bottom:702.285000px;}
.y79{bottom:704.445000px;}
.y32{bottom:708.405000px;}
.yb6{bottom:709.665000px;}
.y1a9{bottom:711.645000px;}
.ybc{bottom:716.505000px;}
.yd3{bottom:717.225000px;}
.y11{bottom:718.125000px;}
.yec{bottom:718.845000px;}
.y50{bottom:719.385000px;}
.y172{bottom:724.425000px;}
.y92{bottom:724.605000px;}
.y1d0{bottom:726.765000px;}
.y15c{bottom:730.545000px;}
.y1a8{bottom:730.725000px;}
.y62{bottom:731.445000px;}
.y114{bottom:733.245000px;}
.y18b{bottom:734.325000px;}
.y78{bottom:735.585000px;}
.y31{bottom:739.365000px;}
.y138{bottom:740.625000px;}
.y1cf{bottom:745.845000px;}
.y10{bottom:746.025000px;}
.yd2{bottom:746.745000px;}
.ybb{bottom:747.645000px;}
.yeb{bottom:749.805000px;}
.y4f{bottom:750.525000px;}
.y171{bottom:755.385000px;}
.y91{bottom:755.745000px;}
.y15b{bottom:761.685000px;}
.y61{bottom:762.585000px;}
.yf{bottom:765.105000px;}
.y77{bottom:766.545000px;}
.y30{bottom:770.505000px;}
.y1ce{bottom:773.745000px;}
.y1a7{bottom:777.525000px;}
.yba{bottom:778.605000px;}
.y113{bottom:779.325000px;}
.yea{bottom:780.945000px;}
.y4e{bottom:781.485000px;}
.ye{bottom:784.185000px;}
.y90{bottom:786.705000px;}
.y18a{bottom:787.965000px;}
.y15a{bottom:792.645000px;}
.y60{bottom:793.545000px;}
.yd1{bottom:795.885000px;}
.y1a6{bottom:796.785000px;}
.y127{bottom:797.505000px;}
.y2f{bottom:801.465000px;}
.y1cd{bottom:801.645000px;}
.yd{bottom:803.085000px;}
.y112{bottom:810.285000px;}
.ye9{bottom:811.905000px;}
.y4d{bottom:812.625000px;}
.y8f{bottom:817.845000px;}
.y189{bottom:818.925000px;}
.yc{bottom:821.985000px;}
.y1a5{bottom:824.505000px;}
.y5f{bottom:824.685000px;}
.yd0{bottom:827.025000px;}
.y126{bottom:828.645000px;}
.y1cc{bottom:829.725000px;}
.y2e{bottom:832.605000px;}
.y159{bottom:838.725000px;}
.yb{bottom:841.065000px;}
.y111{bottom:841.425000px;}
.y4c{bottom:843.585000px;}
.yb5{bottom:848.805000px;}
.y188{bottom:853.305000px;}
.y5e{bottom:855.645000px;}
.y1cb{bottom:857.625000px;}
.ycf{bottom:857.985000px;}
.ya{bottom:859.965000px;}
.y2d{bottom:863.565000px;}
.y8e{bottom:863.745000px;}
.y158{bottom:869.865000px;}
.y1a4{bottom:871.485000px;}
.y110{bottom:872.385000px;}
.y4b{bottom:874.725000px;}
.y1ca{bottom:876.885000px;}
.yb4{bottom:879.945000px;}
.yb9{bottom:886.785000px;}
.yce{bottom:889.125000px;}
.y1a3{bottom:890.565000px;}
.y170{bottom:894.705000px;}
.y8d{bottom:894.885000px;}
.y9{bottom:897.765000px;}
.y157{bottom:900.825000px;}
.y5d{bottom:901.725000px;}
.y10f{bottom:903.525000px;}
.y1c9{bottom:904.605000px;}
.y4a{bottom:905.685000px;}
.y187{bottom:906.945000px;}
.y2c{bottom:909.645000px;}
.y143{bottom:914.190000px;}
.yb8{bottom:917.790000px;}
.y1a2{bottom:918.510000px;}
.ye8{bottom:920.130000px;}
.y16f{bottom:925.710000px;}
.y8c{bottom:925.890000px;}
.y156{bottom:932.010000px;}
.y1c8{bottom:932.550000px;}
.y5c{bottom:932.910000px;}
.y10e{bottom:934.530000px;}
.ycd{bottom:935.250000px;}
.y76{bottom:936.870000px;}
.y1a1{bottom:937.590000px;}
.y186{bottom:937.950000px;}
.y2b{bottom:940.650000px;}
.yb7{bottom:948.930000px;}
.ye7{bottom:949.830000px;}
.y49{bottom:951.810000px;}
.y1a0{bottom:956.490000px;}
.y16e{bottom:956.850000px;}
.y8{bottom:957.030000px;}
.y155{bottom:962.970000px;}
.y5b{bottom:963.870000px;}
.ycc{bottom:966.210000px;}
.y75{bottom:967.830000px;}
.y10d{bottom:968.910000px;}
.y2a{bottom:971.790000px;}
.y185{bottom:972.330000px;}
.y1c7{bottom:979.530000px;}
.y48{bottom:982.950000px;}
.y19f{bottom:984.390000px;}
.y7{bottom:984.930000px;}
.y8b{bottom:987.990000px;}
.y10c{bottom:991.410000px;}
.y5a{bottom:995.010000px;}
.ycb{bottom:997.350000px;}
.y1c6{bottom:998.790000px;}
.ye6{bottom:998.970000px;}
.y29{bottom:1002.750000px;}
.y19e{bottom:1003.470000px;}
.y154{bottom:1009.050000px;}
.y6{bottom:1013.010000px;}
.y47{bottom:1013.910000px;}
.y8a{bottom:1019.130000px;}
.ya6{bottom:1022.370000px;}
.y59{bottom:1025.970000px;}
.y1c5{bottom:1026.510000px;}
.yca{bottom:1026.870000px;}
.ye5{bottom:1029.930000px;}
.y19d{bottom:1031.370000px;}
.y28{bottom:1033.890000px;}
.y153{bottom:1040.010000px;}
.y5{bottom:1041.450000px;}
.y46{bottom:1045.050000px;}
.y1c4{bottom:1045.590000px;}
.y19c{bottom:1050.450000px;}
.y89{bottom:1053.510000px;}
.y58{bottom:1057.110000px;}
.ye4{bottom:1061.070000px;}
.y27{bottom:1064.850000px;}
.y152{bottom:1071.150000px;}
.y1c3{bottom:1073.490000px;}
.y45{bottom:1076.010000px;}
.y19b{bottom:1078.170000px;}
.y57{bottom:1091.490000px;}
.y1c2{bottom:1092.570000px;}
.y26{bottom:1095.990000px;}
.y19a{bottom:1097.430000px;}
.y4{bottom:1098.690000px;}
.y151{bottom:1102.110000px;}
.y44{bottom:1107.150000px;}
.y1c1{bottom:1120.470000px;}
.y3{bottom:1132.530000px;}
.y25{bottom:1135.230000px;}
.y150{bottom:1136.490000px;}
.y43{bottom:1138.110000px;}
.y1c0{bottom:1139.550000px;}
.y1{bottom:1195.740000px;}
.h6{height:46.251562px;}
.h7{height:46.736719px;}
.h2{height:50.273438px;}
.ha{height:50.414062px;}
.h5{height:54.596250px;}
.h8{height:54.864844px;}
.h9{height:59.343750px;}
.h4{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.035987px;}
.xd{left:111.455987px;}
.xf{left:113.435987px;}
.xe{left:119.555987px;}
.x10{left:122.975987px;}
.x11{left:131.615987px;}
.x4{left:160.769987px;}
.xa{left:162.029987px;}
.x3{left:264.089987px;}
.x7{left:332.354987px;}
.x6{left:346.934987px;}
.x8{left:361.694987px;}
.x5{left:401.294987px;}
.x12{left:417.854987px;}
.xb{left:439.094987px;}
.x2{left:442.694987px;}
.x1{left:574.664987px;}
.xc{left:699.629987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.023040pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.640000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws8{word-spacing:-17.287680pt;}
.ws7{word-spacing:-17.256960pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-4.003840pt;}
._a{margin-left:-2.998400pt;}
._12{margin-left:-2.033920pt;}
._1{margin-left:-1.123200pt;}
._0{width:1.009280pt;}
._2{width:2.531840pt;}
._8{width:4.062720pt;}
._15{width:5.052373pt;}
._4{width:6.010240pt;}
._3{width:6.947840pt;}
._11{width:8.592000pt;}
._10{width:9.484160pt;}
._14{width:10.547840pt;}
._18{width:11.454080pt;}
._19{width:12.480000pt;}
._1b{width:13.952000pt;}
._1c{width:14.897920pt;}
._e{width:17.060480pt;}
._d{width:18.017280pt;}
._c{width:19.371520pt;}
._1f{width:20.288000pt;}
._9{width:21.255680pt;}
._f{width:22.437760pt;}
._7{width:24.078720pt;}
._6{width:25.153920pt;}
._1a{width:26.332800pt;}
._20{width:27.968000pt;}
._1e{width:29.353600pt;}
._1d{width:30.720000pt;}
._16{width:32.256000pt;}
._17{width:33.280000pt;}
._5{width:35.975680pt;}
._21{width:37.923200pt;}
._22{width:39.680000pt;}
._13{width:752.138667pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920000pt;}
.y74{bottom:103.680000pt;}
.y125{bottom:105.280000pt;}
.y183{bottom:107.040000pt;}
.y16d{bottom:107.520000pt;}
.yb3{bottom:111.840000pt;}
.ye3{bottom:112.000000pt;}
.y1bf{bottom:115.680000pt;}
.ya5{bottom:117.920000pt;}
.y137{bottom:121.600000pt;}
.y14f{bottom:126.080000pt;}
.yc9{bottom:126.400000pt;}
.y73{bottom:131.360000pt;}
.y124{bottom:132.800000pt;}
.y182{bottom:134.720000pt;}
.y88{bottom:134.880000pt;}
.y16c{bottom:135.040000pt;}
.yfb{bottom:138.880000pt;}
.yb2{bottom:139.520000pt;}
.ya4{bottom:145.600000pt;}
.y136{bottom:149.120000pt;}
.y145{bottom:152.800000pt;}
.y14e{bottom:153.760000pt;}
.y1be{bottom:157.440000pt;}
.y72{bottom:158.880000pt;}
.y42{bottom:161.280000pt;}
.y181{bottom:162.240000pt;}
.y87{bottom:162.400000pt;}
.y16b{bottom:162.720000pt;}
.y123{bottom:163.360000pt;}
.ye2{bottom:165.920000pt;}
.y142{bottom:167.040000pt;}
.y10b{bottom:173.146667pt;}
.yc8{bottom:174.106667pt;}
.y135{bottom:176.666667pt;}
.yfa{bottom:179.866667pt;}
.yb1{bottom:180.346667pt;}
.y1bd{bottom:182.266667pt;}
.ya3{bottom:186.586667pt;}
.y41{bottom:188.986667pt;}
.y180{bottom:189.946667pt;}
.y86{bottom:190.106667pt;}
.y16a{bottom:190.266667pt;}
.y199{bottom:193.146667pt;}
.y14d{bottom:194.746667pt;}
.y1bc{bottom:199.386667pt;}
.y71{bottom:199.866667pt;}
.y10a{bottom:200.826667pt;}
.yc7{bottom:201.786667pt;}
.yf9{bottom:207.546667pt;}
.yb0{bottom:208.026667pt;}
.ye1{bottom:209.626667pt;}
.y122{bottom:211.066667pt;}
.ya2{bottom:214.106667pt;}
.y40{bottom:216.506667pt;}
.y184{bottom:217.466667pt;}
.y134{bottom:217.626667pt;}
.y169{bottom:217.946667pt;}
.y14c{bottom:222.266667pt;}
.y1bb{bottom:224.026667pt;}
.y70{bottom:227.546667pt;}
.y109{bottom:228.346667pt;}
.y17f{bottom:230.746667pt;}
.y85{bottom:231.066667pt;}
.y198{bottom:234.106667pt;}
.yaf{bottom:235.546667pt;}
.ye0{bottom:237.146667pt;}
.y121{bottom:238.746667pt;}
.y1ba{bottom:241.146667pt;}
.ya1{bottom:241.786667pt;}
.yc6{bottom:242.746667pt;}
.y3f{bottom:244.186667pt;}
.y133{bottom:245.306667pt;}
.yf8{bottom:248.346667pt;}
.y168{bottom:248.506667pt;}
.y14b{bottom:249.946667pt;}
.y6f{bottom:255.066667pt;}
.y17e{bottom:258.426667pt;}
.y84{bottom:258.586667pt;}
.y24{bottom:260.666667pt;}
.y197{bottom:261.626667pt;}
.yae{bottom:263.226667pt;}
.ydf{bottom:264.826667pt;}
.y1b9{bottom:265.786667pt;}
.y144{bottom:266.106667pt;}
.y120{bottom:266.266667pt;}
.ya0{bottom:269.306667pt;}
.yc5{bottom:270.266667pt;}
.y3e{bottom:271.706667pt;}
.y132{bottom:272.826667pt;}
.yf7{bottom:276.026667pt;}
.y14a{bottom:277.466667pt;}
.y6e{bottom:282.746667pt;}
.y17d{bottom:285.946667pt;}
.y83{bottom:286.266667pt;}
.y196{bottom:289.306667pt;}
.y1b8{bottom:290.586667pt;}
.y141{bottom:290.746667pt;}
.y11f{bottom:293.946667pt;}
.y167{bottom:296.186667pt;}
.y9f{bottom:296.986667pt;}
.y3d{bottom:299.386667pt;}
.y131{bottom:300.506667pt;}
.yf6{bottom:303.546667pt;}
.yad{bottom:304.186667pt;}
.yde{bottom:305.786667pt;}
.y1b7{bottom:307.706667pt;}
.y6d{bottom:310.266667pt;}
.y23{bottom:310.586667pt;}
.yc4{bottom:311.226667pt;}
.y17c{bottom:313.626667pt;}
.y82{bottom:313.786667pt;}
.y195{bottom:316.826667pt;}
.y140{bottom:318.426667pt;}
.y166{bottom:323.706667pt;}
.y108{bottom:324.506667pt;}
.y3c{bottom:326.906667pt;}
.y22{bottom:327.546667pt;}
.y130{bottom:328.026667pt;}
.yf5{bottom:331.226667pt;}
.yac{bottom:331.706667pt;}
.y1b6{bottom:332.346667pt;}
.ydd{bottom:333.306667pt;}
.y11e{bottom:334.746667pt;}
.y6c{bottom:337.786667pt;}
.yc3{bottom:338.746667pt;}
.y17b{bottom:341.146667pt;}
.y81{bottom:341.466667pt;}
.y194{bottom:344.506667pt;}
.y13f{bottom:345.946667pt;}
.y165{bottom:351.386667pt;}
.y107{bottom:352.186667pt;}
.y3b{bottom:354.586667pt;}
.y1b5{bottom:357.306667pt;}
.yab{bottom:359.386667pt;}
.y21{bottom:360.346667pt;}
.ydc{bottom:360.986667pt;}
.yf4{bottom:361.786667pt;}
.y11d{bottom:362.426667pt;}
.y9e{bottom:365.466667pt;}
.y6b{bottom:368.346667pt;}
.y17a{bottom:368.826667pt;}
.y12f{bottom:368.986667pt;}
.y193{bottom:372.026667pt;}
.y13e{bottom:373.626667pt;}
.y1b4{bottom:374.266667pt;}
.y20{bottom:377.306667pt;}
.yc2{bottom:379.706667pt;}
.y3a{bottom:382.106667pt;}
.y80{bottom:382.266667pt;}
.yaa{bottom:386.946667pt;}
.ydb{bottom:387.266667pt;}
.y11c{bottom:389.986667pt;}
.y164{bottom:392.226667pt;}
.y9d{bottom:393.026667pt;}
.y1f{bottom:394.306667pt;}
.y12e{bottom:396.706667pt;}
.y1b3{bottom:398.946667pt;}
.y192{bottom:399.746667pt;}
.y149{bottom:404.226667pt;}
.yc1{bottom:407.426667pt;}
.yf3{bottom:409.506667pt;}
.y179{bottom:409.826667pt;}
.y7f{bottom:409.986667pt;}
.y106{bottom:410.306667pt;}
.y1e{bottom:411.106667pt;}
.ya9{bottom:414.626667pt;}
.y6a{bottom:416.066667pt;}
.y11b{bottom:417.666667pt;}
.y56{bottom:419.586667pt;}
.y163{bottom:419.906667pt;}
.y9c{bottom:420.706667pt;}
.y39{bottom:423.106667pt;}
.y12d{bottom:424.226667pt;}
.y1d{bottom:427.906667pt;}
.yda{bottom:430.946667pt;}
.y191{bottom:434.466667pt;}
.yf2{bottom:437.026667pt;}
.y178{bottom:437.346667pt;}
.y7e{bottom:437.506667pt;}
.y1b2{bottom:440.706667pt;}
.y13d{bottom:442.146667pt;}
.y69{bottom:443.746667pt;}
.y1c{bottom:444.866667pt;}
.ya8{bottom:445.186667pt;}
.y162{bottom:447.426667pt;}
.y9b{bottom:448.226667pt;}
.y38{bottom:450.626667pt;}
.y97{bottom:451.906667pt;}
.y103{bottom:453.506667pt;}
.y1b1{bottom:457.826667pt;}
.y105{bottom:457.986667pt;}
.yd9{bottom:458.626667pt;}
.y55{bottom:460.546667pt;}
.y1b{bottom:461.666667pt;}
.yf1{bottom:464.546667pt;}
.y177{bottom:465.026667pt;}
.y7d{bottom:465.186667pt;}
.y13c{bottom:469.826667pt;}
.y102{bottom:470.466667pt;}
.y68{bottom:471.266667pt;}
.y11a{bottom:472.866667pt;}
.y161{bottom:475.106667pt;}
.yc0{bottom:475.906667pt;}
.y37{bottom:478.306667pt;}
.y1a{bottom:478.626667pt;}
.y9a{bottom:478.786667pt;}
.y1d8{bottom:479.106667pt;}
.y148{bottom:479.426667pt;}
.y12c{bottom:482.306667pt;}
.y1b0{bottom:482.466667pt;}
.y104{bottom:485.506667pt;}
.yd8{bottom:486.146667pt;}
.y101{bottom:487.426667pt;}
.y54{bottom:488.226667pt;}
.y190{bottom:488.706667pt;}
.y176{bottom:492.546667pt;}
.y7c{bottom:492.706667pt;}
.y19{bottom:495.426667pt;}
.y1d7{bottom:496.066667pt;}
.y13b{bottom:497.346667pt;}
.y67{bottom:498.946667pt;}
.ybf{bottom:503.426667pt;}
.y100{bottom:504.226667pt;}
.yf0{bottom:505.506667pt;}
.y36{bottom:505.826667pt;}
.y146{bottom:506.466667pt;}
.y147{bottom:506.946667pt;}
.y1af{bottom:507.266667pt;}
.y18{bottom:512.226667pt;}
.y119{bottom:513.826667pt;}
.y53{bottom:515.746667pt;}
.y160{bottom:516.066667pt;}
.y18f{bottom:516.386667pt;}
.y175{bottom:520.226667pt;}
.y96{bottom:520.386667pt;}
.y1d6{bottom:520.866667pt;}
.yff{bottom:521.186667pt;}
.y7b{bottom:523.266667pt;}
.y1ae{bottom:524.386667pt;}
.y13a{bottom:525.026667pt;}
.y66{bottom:526.466667pt;}
.yd7{bottom:527.106667pt;}
.y12b{bottom:529.986667pt;}
.ybe{bottom:531.106667pt;}
.yef{bottom:533.186667pt;}
.y35{bottom:533.506667pt;}
.y17{bottom:537.026667pt;}
.y1d5{bottom:537.826667pt;}
.yfe{bottom:537.986667pt;}
.y118{bottom:541.346667pt;}
.y52{bottom:543.426667pt;}
.y15f{bottom:543.586667pt;}
.y18e{bottom:543.906667pt;}
.y95{bottom:547.906667pt;}
.y1ad{bottom:549.026667pt;}
.y16{bottom:553.986667pt;}
.y65{bottom:554.146667pt;}
.yd6{bottom:554.626667pt;}
.yfd{bottom:554.786667pt;}
.y139{bottom:555.426667pt;}
.y12a{bottom:557.666667pt;}
.yee{bottom:560.706667pt;}
.y34{bottom:561.026667pt;}
.ybd{bottom:561.666667pt;}
.y1d4{bottom:562.466667pt;}
.y1ac{bottom:566.146667pt;}
.y117{bottom:569.026667pt;}
.y15{bottom:570.946667pt;}
.y15e{bottom:571.266667pt;}
.y18d{bottom:574.466667pt;}
.y94{bottom:575.586667pt;}
.yfc{bottom:576.386667pt;}
.y1d3{bottom:579.586667pt;}
.y99{bottom:581.666667pt;}
.yd5{bottom:582.306667pt;}
.y129{bottom:585.186667pt;}
.y14{bottom:587.746667pt;}
.y174{bottom:588.706667pt;}
.y1ab{bottom:590.786667pt;}
.yed{bottom:591.266667pt;}
.y64{bottom:594.946667pt;}
.y116{bottom:596.573333pt;}
.y7a{bottom:598.653333pt;}
.y15d{bottom:601.853333pt;}
.y33{bottom:602.013333pt;}
.y93{bottom:603.133333pt;}
.y1d2{bottom:604.253333pt;}
.y13{bottom:604.573333pt;}
.y1aa{bottom:607.933333pt;}
.y98{bottom:609.373333pt;}
.yd4{bottom:609.853333pt;}
.y51{bottom:611.933333pt;}
.y128{bottom:612.893333pt;}
.y173{bottom:616.253333pt;}
.ya7{bottom:616.573333pt;}
.y1d1{bottom:621.373333pt;}
.y12{bottom:621.533333pt;}
.y18c{bottom:622.173333pt;}
.y63{bottom:622.653333pt;}
.y115{bottom:624.253333pt;}
.y79{bottom:626.173333pt;}
.y32{bottom:629.693333pt;}
.yb6{bottom:630.813333pt;}
.y1a9{bottom:632.573333pt;}
.ybc{bottom:636.893333pt;}
.yd3{bottom:637.533333pt;}
.y11{bottom:638.333333pt;}
.yec{bottom:638.973333pt;}
.y50{bottom:639.453333pt;}
.y172{bottom:643.933333pt;}
.y92{bottom:644.093333pt;}
.y1d0{bottom:646.013333pt;}
.y15c{bottom:649.373333pt;}
.y1a8{bottom:649.533333pt;}
.y62{bottom:650.173333pt;}
.y114{bottom:651.773333pt;}
.y18b{bottom:652.733333pt;}
.y78{bottom:653.853333pt;}
.y31{bottom:657.213333pt;}
.y138{bottom:658.333333pt;}
.y1cf{bottom:662.973333pt;}
.y10{bottom:663.133333pt;}
.yd2{bottom:663.773333pt;}
.ybb{bottom:664.573333pt;}
.yeb{bottom:666.493333pt;}
.y4f{bottom:667.133333pt;}
.y171{bottom:671.453333pt;}
.y91{bottom:671.773333pt;}
.y15b{bottom:677.053333pt;}
.y61{bottom:677.853333pt;}
.yf{bottom:680.093333pt;}
.y77{bottom:681.373333pt;}
.y30{bottom:684.893333pt;}
.y1ce{bottom:687.773333pt;}
.y1a7{bottom:691.133333pt;}
.yba{bottom:692.093333pt;}
.y113{bottom:692.733333pt;}
.yea{bottom:694.173333pt;}
.y4e{bottom:694.653333pt;}
.ye{bottom:697.053333pt;}
.y90{bottom:699.293333pt;}
.y18a{bottom:700.413333pt;}
.y15a{bottom:704.573333pt;}
.y60{bottom:705.373333pt;}
.yd1{bottom:707.453333pt;}
.y1a6{bottom:708.253333pt;}
.y127{bottom:708.893333pt;}
.y2f{bottom:712.413333pt;}
.y1cd{bottom:712.573333pt;}
.yd{bottom:713.853333pt;}
.y112{bottom:720.253333pt;}
.ye9{bottom:721.693333pt;}
.y4d{bottom:722.333333pt;}
.y8f{bottom:726.973333pt;}
.y189{bottom:727.933333pt;}
.yc{bottom:730.653333pt;}
.y1a5{bottom:732.893333pt;}
.y5f{bottom:733.053333pt;}
.yd0{bottom:735.133333pt;}
.y126{bottom:736.573333pt;}
.y1cc{bottom:737.533333pt;}
.y2e{bottom:740.093333pt;}
.y159{bottom:745.533333pt;}
.yb{bottom:747.613333pt;}
.y111{bottom:747.933333pt;}
.y4c{bottom:749.853333pt;}
.yb5{bottom:754.493333pt;}
.y188{bottom:758.493333pt;}
.y5e{bottom:760.573333pt;}
.y1cb{bottom:762.333333pt;}
.ycf{bottom:762.653333pt;}
.ya{bottom:764.413333pt;}
.y2d{bottom:767.613333pt;}
.y8e{bottom:767.773333pt;}
.y158{bottom:773.213333pt;}
.y1a4{bottom:774.653333pt;}
.y110{bottom:775.453333pt;}
.y4b{bottom:777.533333pt;}
.y1ca{bottom:779.453333pt;}
.yb4{bottom:782.173333pt;}
.yb9{bottom:788.253333pt;}
.yce{bottom:790.333333pt;}
.y1a3{bottom:791.613333pt;}
.y170{bottom:795.293333pt;}
.y8d{bottom:795.453333pt;}
.y9{bottom:798.013333pt;}
.y157{bottom:800.733333pt;}
.y5d{bottom:801.533333pt;}
.y10f{bottom:803.133333pt;}
.y1c9{bottom:804.093333pt;}
.y4a{bottom:805.053333pt;}
.y187{bottom:806.173333pt;}
.y2c{bottom:808.573333pt;}
.y143{bottom:812.613333pt;}
.yb8{bottom:815.813333pt;}
.y1a2{bottom:816.453333pt;}
.ye8{bottom:817.893333pt;}
.y16f{bottom:822.853333pt;}
.y8c{bottom:823.013333pt;}
.y156{bottom:828.453333pt;}
.y1c8{bottom:828.933333pt;}
.y5c{bottom:829.253333pt;}
.y10e{bottom:830.693333pt;}
.ycd{bottom:831.333333pt;}
.y76{bottom:832.773333pt;}
.y1a1{bottom:833.413333pt;}
.y186{bottom:833.733333pt;}
.y2b{bottom:836.133333pt;}
.yb7{bottom:843.493333pt;}
.ye7{bottom:844.293333pt;}
.y49{bottom:846.053333pt;}
.y1a0{bottom:850.213333pt;}
.y16e{bottom:850.533333pt;}
.y8{bottom:850.693333pt;}
.y155{bottom:855.973333pt;}
.y5b{bottom:856.773333pt;}
.ycc{bottom:858.853333pt;}
.y75{bottom:860.293333pt;}
.y10d{bottom:861.253333pt;}
.y2a{bottom:863.813333pt;}
.y185{bottom:864.293333pt;}
.y1c7{bottom:870.693333pt;}
.y48{bottom:873.733333pt;}
.y19f{bottom:875.013333pt;}
.y7{bottom:875.493333pt;}
.y8b{bottom:878.213333pt;}
.y10c{bottom:881.253333pt;}
.y5a{bottom:884.453333pt;}
.ycb{bottom:886.533333pt;}
.y1c6{bottom:887.813333pt;}
.ye6{bottom:887.973333pt;}
.y29{bottom:891.333333pt;}
.y19e{bottom:891.973333pt;}
.y154{bottom:896.933333pt;}
.y6{bottom:900.453333pt;}
.y47{bottom:901.253333pt;}
.y8a{bottom:905.893333pt;}
.ya6{bottom:908.773333pt;}
.y59{bottom:911.973333pt;}
.y1c5{bottom:912.453333pt;}
.yca{bottom:912.773333pt;}
.ye5{bottom:915.493333pt;}
.y19d{bottom:916.773333pt;}
.y28{bottom:919.013333pt;}
.y153{bottom:924.453333pt;}
.y5{bottom:925.733333pt;}
.y46{bottom:928.933333pt;}
.y1c4{bottom:929.413333pt;}
.y19c{bottom:933.733333pt;}
.y89{bottom:936.453333pt;}
.y58{bottom:939.653333pt;}
.ye4{bottom:943.173333pt;}
.y27{bottom:946.533333pt;}
.y152{bottom:952.133333pt;}
.y1c3{bottom:954.213333pt;}
.y45{bottom:956.453333pt;}
.y19b{bottom:958.373333pt;}
.y57{bottom:970.213333pt;}
.y1c2{bottom:971.173333pt;}
.y26{bottom:974.213333pt;}
.y19a{bottom:975.493333pt;}
.y4{bottom:976.613333pt;}
.y151{bottom:979.653333pt;}
.y44{bottom:984.133333pt;}
.y1c1{bottom:995.973333pt;}
.y3{bottom:1006.693333pt;}
.y25{bottom:1009.093333pt;}
.y150{bottom:1010.213333pt;}
.y43{bottom:1011.653333pt;}
.y1c0{bottom:1012.933333pt;}
.y1{bottom:1062.880000pt;}
.h6{height:41.112500pt;}
.h7{height:41.543750pt;}
.h2{height:44.687500pt;}
.ha{height:44.812500pt;}
.h5{height:48.530000pt;}
.h8{height:48.768750pt;}
.h9{height:52.750000pt;}
.h4{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.031988pt;}
.xd{left:99.071988pt;}
.xf{left:100.831988pt;}
.xe{left:106.271988pt;}
.x10{left:109.311988pt;}
.x11{left:116.991988pt;}
.x4{left:142.906655pt;}
.xa{left:144.026655pt;}
.x3{left:234.746655pt;}
.x7{left:295.426655pt;}
.x6{left:308.386655pt;}
.x8{left:321.506655pt;}
.x5{left:356.706655pt;}
.x12{left:371.426655pt;}
.xb{left:390.306655pt;}
.x2{left:393.506655pt;}
.x1{left:510.813322pt;}
.xc{left:621.893322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  