
    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_4105611ec529e9cb4b0098cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_74a603d7f46dd688e012e6b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_16ba8ab0050cb7f3d6dca4b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_5d356df9b31de796a3cbcaad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_fe136c5920be96d8fae12d48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_36a4e68a9db7d711ac6abf2e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_bc95d335c371520c9b2f4d95.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls18{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.666000px;}
.ls19{letter-spacing:-0.612000px;}
.ls21{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.538800px;}
.lsb{letter-spacing:-0.413400px;}
.ls14{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.269400px;}
.ls1e{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.206400px;}
.ls25{letter-spacing:-0.181200px;}
.ls2b{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.090600px;}
.ls6{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.034560px;}
.ls27{letter-spacing:0.045360px;}
.ls5{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.181200px;}
.lsd{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.ls24{letter-spacing:0.269280px;}
.ls20{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.513600px;}
.ls15{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.828000px;}
.ls17{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.800000px;}
.ls16{letter-spacing:3.240000px;}
.lse{letter-spacing:3.780000px;}
.ls1b{letter-spacing:3.960000px;}
.ls12{letter-spacing:4.680000px;}
.ls13{letter-spacing:6.120000px;}
.ls23{letter-spacing:29.466720px;}
.ls1a{letter-spacing:42.426720px;}
.ls2a{letter-spacing:533.160000px;}
.ls0{letter-spacing:564.120000px;}
.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;}
}
.wsb{word-spacing:-15.453600px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.526600px;}
.ws2{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.420000px;}
.wse{word-spacing:-12.329400px;}
.ws11{word-spacing:-12.105360px;}
.wsa{word-spacing:-12.060000px;}
.ws12{word-spacing:-12.014640px;}
.wsc{word-spacing:-11.969400px;}
.wsd{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.790600px;}
.ws0{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.026000px;}
._0{width:1.062000px;}
._5{width:2.201040px;}
._3{width:3.576960px;}
._2{width:4.821120px;}
._8{width:6.394320px;}
._c{width:7.662960px;}
._6{width:8.665200px;}
._9{width:9.681120px;}
._b{width:10.730880px;}
._a{width:11.856240px;}
._7{width:13.386240px;}
._12{width:15.642720px;}
._f{width:17.945280px;}
._10{width:21.913920px;}
._14{width:25.816320px;}
._15{width:26.842320px;}
._11{width:34.166880px;}
._4{width:40.287600px;}
._17{width:56.370000px;}
._13{width:78.022080px;}
._16{width:534.954000px;}
._d{width:563.040000px;}
._e{width:564.474000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:2.700000px;}
.y116{bottom:2.865000px;}
.ya9{bottom:2.880000px;}
.y119{bottom:3.045000px;}
.yad{bottom:3.060000px;}
.ybb{bottom:3.960000px;}
.yb8{bottom:6.120000px;}
.y11a{bottom:9.885000px;}
.y10d{bottom:9.900000px;}
.y115{bottom:16.725000px;}
.yac{bottom:16.740000px;}
.y118{bottom:16.905000px;}
.yaf{bottom:16.920000px;}
.y10a{bottom:16.950000px;}
.y105{bottom:23.580000px;}
.y11d{bottom:23.745000px;}
.y10f{bottom:23.760000px;}
.yfe{bottom:30.420000px;}
.y11c{bottom:30.585000px;}
.y103{bottom:30.600000px;}
.y109{bottom:30.630000px;}
.yab{bottom:30.645000px;}
.y141{bottom:31.680000px;}
.yfd{bottom:44.280000px;}
.y108{bottom:44.490000px;}
.y144{bottom:47.550000px;}
.y142{bottom:48.600000px;}
.y146{bottom:48.630000px;}
.yfc{bottom:58.140000px;}
.yfb{bottom:58.320000px;}
.y107{bottom:58.350000px;}
.y102{bottom:72.000000px;}
.y145{bottom:80.490000px;}
.y101{bottom:85.680000px;}
.y5{bottom:149.580000px;}
.y26{bottom:154.080000px;}
.y13e{bottom:232.770000px;}
.y4b{bottom:236.370000px;}
.y24{bottom:237.090000px;}
.y121{bottom:239.085000px;}
.y6a{bottom:242.130000px;}
.yf8{bottom:246.990000px;}
.y158{bottom:252.210000px;}
.y13d{bottom:253.470000px;}
.y120{bottom:255.105000px;}
.y4a{bottom:257.070000px;}
.y23{bottom:257.790000px;}
.y69{bottom:258.690000px;}
.y89{bottom:259.230000px;}
.y88{bottom:266.070000px;}
.y157{bottom:272.910000px;}
.y68{bottom:275.790000px;}
.yf7{bottom:276.690000px;}
.y87{bottom:277.590000px;}
.y49{bottom:277.770000px;}
.y22{bottom:278.490000px;}
.y67{bottom:282.630000px;}
.y13c{bottom:283.170000px;}
.y156{bottom:293.610000px;}
.ya5{bottom:294.150000px;}
.y11f{bottom:297.225000px;}
.yf6{bottom:297.390000px;}
.y48{bottom:298.470000px;}
.y21{bottom:299.190000px;}
.y13b{bottom:303.870000px;}
.y66{bottom:304.230000px;}
.yce{bottom:304.770000px;}
.yed{bottom:309.630000px;}
.ycd{bottom:311.610000px;}
.y155{bottom:314.310000px;}
.y47{bottom:319.170000px;}
.y20{bottom:319.890000px;}
.y65{bottom:321.330000px;}
.y13a{bottom:324.570000px;}
.yf5{bottom:327.090000px;}
.y64{bottom:328.170000px;}
.yec{bottom:330.330000px;}
.ycc{bottom:333.210000px;}
.y154{bottom:335.010000px;}
.y11e{bottom:339.345000px;}
.y46{bottom:339.870000px;}
.y1f{bottom:340.590000px;}
.y139{bottom:345.270000px;}
.yf4{bottom:347.790000px;}
.y63{bottom:349.770000px;}
.yeb{bottom:351.030000px;}
.y11b{bottom:353.925000px;}
.y153{bottom:355.710000px;}
.y45{bottom:360.570000px;}
.y1e{bottom:361.290000px;}
.y138{bottom:365.970000px;}
.y62{bottom:366.330000px;}
.ycb{bottom:367.050000px;}
.yf3{bottom:368.490000px;}
.yea{bottom:371.730000px;}
.yca{bottom:373.890000px;}
.y152{bottom:376.410000px;}
.y86{bottom:379.470000px;}
.y44{bottom:381.270000px;}
.y1d{bottom:382.350000px;}
.y61{bottom:383.610000px;}
.yc9{bottom:385.230000px;}
.y137{bottom:386.670000px;}
.yf2{bottom:389.190000px;}
.y60{bottom:390.450000px;}
.ye9{bottom:392.430000px;}
.y170{bottom:394.770000px;}
.y117{bottom:396.045000px;}
.y151{bottom:397.110000px;}
.y85{bottom:400.170000px;}
.y5f{bottom:401.790000px;}
.y43{bottom:401.970000px;}
.y136{bottom:407.370000px;}
.yf1{bottom:409.890000px;}
.ya4{bottom:412.230000px;}
.ye8{bottom:413.130000px;}
.y1c{bottom:416.010000px;}
.yc8{bottom:417.270000px;}
.y150{bottom:417.810000px;}
.y84{bottom:420.870000px;}
.y16f{bottom:421.770000px;}
.y42{bottom:422.670000px;}
.y114{bottom:424.485000px;}
.y135{bottom:428.070000px;}
.ya3{bottom:432.930000px;}
.ye7{bottom:433.830000px;}
.yc7{bottom:437.970000px;}
.y14f{bottom:438.510000px;}
.yf0{bottom:439.230000px;}
.y16e{bottom:439.770000px;}
.y83{bottom:441.570000px;}
.y41{bottom:443.370000px;}
.y1b{bottom:445.755000px;}
.y5e{bottom:451.875000px;}
.ya2{bottom:453.675000px;}
.ye6{bottom:454.575000px;}
.y134{bottom:457.815000px;}
.yc5{bottom:458.715000px;}
.y14e{bottom:459.255000px;}
.y82{bottom:462.315000px;}
.y40{bottom:464.115000px;}
.yc6{bottom:465.555000px;}
.y1a{bottom:466.455000px;}
.y113{bottom:466.635000px;}
.yef{bottom:468.975000px;}
.y5d{bottom:472.575000px;}
.ye5{bottom:475.275000px;}
.y16d{bottom:475.815000px;}
.y133{bottom:478.515000px;}
.yc4{bottom:479.415000px;}
.y112{bottom:481.215000px;}
.y81{bottom:483.015000px;}
.ya1{bottom:483.375000px;}
.y19{bottom:487.155000px;}
.y14d{bottom:489.135000px;}
.y5c{bottom:493.275000px;}
.y3f{bottom:493.815000px;}
.yee{bottom:495.255000px;}
.ye4{bottom:495.975000px;}
.y132{bottom:499.215000px;}
.yc3{bottom:500.115000px;}
.y16c{bottom:502.815000px;}
.y9f{bottom:504.075000px;}
.y18{bottom:507.855000px;}
.ya0{bottom:510.915000px;}
.y80{bottom:512.715000px;}
.y5b{bottom:513.975000px;}
.y3e{bottom:514.515000px;}
.ye3{bottom:516.675000px;}
.y131{bottom:519.915000px;}
.y14c{bottom:520.635000px;}
.yc2{bottom:520.815000px;}
.y111{bottom:523.335000px;}
.y9e{bottom:524.775000px;}
.y17{bottom:528.555000px;}
.y7f{bottom:533.415000px;}
.y5a{bottom:534.675000px;}
.y3d{bottom:535.215000px;}
.y130{bottom:540.615000px;}
.yc1{bottom:541.515000px;}
.y9d{bottom:545.475000px;}
.ye2{bottom:546.375000px;}
.y16b{bottom:547.815000px;}
.y16{bottom:549.255000px;}
.y14b{bottom:550.335000px;}
.y7e{bottom:554.115000px;}
.y59{bottom:555.375000px;}
.y3c{bottom:555.915000px;}
.y12f{bottom:561.315000px;}
.ybf{bottom:562.215000px;}
.y110{bottom:565.455000px;}
.y9c{bottom:566.175000px;}
.ye1{bottom:567.075000px;}
.yc0{bottom:569.055000px;}
.y15{bottom:569.955000px;}
.y14a{bottom:571.035000px;}
.y7d{bottom:574.815000px;}
.y58{bottom:576.075000px;}
.y3b{bottom:576.615000px;}
.y10e{bottom:580.035000px;}
.ybe{bottom:582.735000px;}
.ye0{bottom:587.775000px;}
.y14{bottom:590.655000px;}
.y12e{bottom:591.375000px;}
.y149{bottom:591.735000px;}
.y7c{bottom:595.515000px;}
.y9b{bottom:595.695000px;}
.y57{bottom:596.775000px;}
.y3a{bottom:597.315000px;}
.y16a{bottom:601.815000px;}
.ydf{bottom:608.475000px;}
.y148{bottom:609.915000px;}
.y13{bottom:611.355000px;}
.ybd{bottom:612.435000px;}
.y7a{bottom:616.215000px;}
.y9a{bottom:616.395000px;}
.y39{bottom:618.015000px;}
.y10c{bottom:622.155000px;}
.y12d{bottom:622.695000px;}
.y7b{bottom:623.055000px;}
.y56{bottom:626.475000px;}
.ybc{bottom:626.835000px;}
.y147{bottom:628.635000px;}
.y169{bottom:628.815000px;}
.yde{bottom:629.175000px;}
.y12{bottom:632.055000px;}
.y79{bottom:636.915000px;}
.y99{bottom:637.095000px;}
.y38{bottom:638.715000px;}
.yba{bottom:641.235000px;}
.y143{bottom:642.855000px;}
.y168{bottom:646.815000px;}
.y55{bottom:647.175000px;}
.ydd{bottom:649.695000px;}
.y10b{bottom:650.595000px;}
.y12c{bottom:652.395000px;}
.y11{bottom:652.755000px;}
.yb9{bottom:657.435000px;}
.y78{bottom:657.615000px;}
.y37{bottom:659.415000px;}
.y98{bottom:661.935000px;}
.y106{bottom:664.995000px;}
.y53{bottom:667.695000px;}
.ydc{bottom:670.395000px;}
.yb7{bottom:672.015000px;}
.y12b{bottom:673.095000px;}
.y10{bottom:673.455000px;}
.y167{bottom:673.815000px;}
.y54{bottom:674.535000px;}
.y77{bottom:678.315000px;}
.y52{bottom:688.425000px;}
.y36{bottom:689.325000px;}
.yb5{bottom:689.685000px;}
.y166{bottom:691.845000px;}
.y12a{bottom:693.825000px;}
.yf{bottom:694.185000px;}
.ydb{bottom:700.125000px;}
.y97{bottom:701.025000px;}
.y76{bottom:708.045000px;}
.y51{bottom:709.125000px;}
.y129{bottom:714.525000px;}
.ye{bottom:714.885000px;}
.y165{bottom:718.845000px;}
.y35{bottom:720.825000px;}
.y75{bottom:728.745000px;}
.y50{bottom:729.825000px;}
.y96{bottom:730.725000px;}
.yb4{bottom:733.065000px;}
.y104{bottom:734.865000px;}
.y128{bottom:735.225000px;}
.yd{bottom:735.585000px;}
.y164{bottom:736.845000px;}
.yda{bottom:741.525000px;}
.y74{bottom:749.445000px;}
.y34{bottom:750.525000px;}
.y140{bottom:752.865000px;}
.y163{bottom:754.845000px;}
.yc{bottom:756.645000px;}
.y95{bottom:760.425000px;}
.yd9{bottom:762.225000px;}
.y127{bottom:764.925000px;}
.y73{bottom:770.145000px;}
.yb3{bottom:770.865000px;}
.y33{bottom:771.225000px;}
.y162{bottom:772.845000px;}
.y94{bottom:781.125000px;}
.yd8{bottom:782.925000px;}
.yb2{bottom:785.085000px;}
.y72{bottom:790.845000px;}
.y126{bottom:794.625000px;}
.yb{bottom:798.405000px;}
.y161{bottom:799.845000px;}
.y32{bottom:800.925000px;}
.yd7{bottom:803.625000px;}
.y93{bottom:810.825000px;}
.y71{bottom:811.545000px;}
.yb1{bottom:813.345000px;}
.y125{bottom:815.325000px;}
.y160{bottom:817.845000px;}
.y31{bottom:821.625000px;}
.ya{bottom:823.065000px;}
.yd6{bottom:824.325000px;}
.y70{bottom:832.245000px;}
.y15f{bottom:835.845000px;}
.y124{bottom:836.025000px;}
.y9{bottom:836.205000px;}
.y92{bottom:840.525000px;}
.yb0{bottom:841.785000px;}
.y30{bottom:842.325000px;}
.yd5{bottom:845.025000px;}
.y13f{bottom:845.925000px;}
.y123{bottom:856.725000px;}
.y6f{bottom:857.085000px;}
.y2f{bottom:863.025000px;}
.yd4{bottom:865.725000px;}
.y8{bottom:866.265000px;}
.y15e{bottom:866.625000px;}
.yae{bottom:870.045000px;}
.y91{bottom:870.225000px;}
.y2e{bottom:883.725000px;}
.yd2{bottom:886.425000px;}
.y100{bottom:888.045000px;}
.y90{bottom:890.925000px;}
.yd3{bottom:893.265000px;}
.y6e{bottom:896.325000px;}
.y7{bottom:897.405000px;}
.y15d{bottom:898.125000px;}
.yaa{bottom:898.485000px;}
.y2d{bottom:904.425000px;}
.yd1{bottom:907.125000px;}
.y8f{bottom:920.670000px;}
.y6{bottom:924.450000px;}
.y2c{bottom:925.170000px;}
.y15c{bottom:927.150000px;}
.y6d{bottom:927.870000px;}
.yff{bottom:930.390000px;}
.y4f{bottom:932.010000px;}
.ya8{bottom:940.650000px;}
.y8e{bottom:941.370000px;}
.yfa{bottom:944.790000px;}
.y4{bottom:945.510000px;}
.y2b{bottom:945.870000px;}
.y15b{bottom:946.590000px;}
.yd0{bottom:948.570000px;}
.y6c{bottom:957.570000px;}
.y3{bottom:959.370000px;}
.y8d{bottom:962.070000px;}
.y2a{bottom:966.570000px;}
.y15a{bottom:967.290000px;}
.ya7{bottom:970.170000px;}
.y2{bottom:973.230000px;}
.y4e{bottom:973.410000px;}
.ycf{bottom:977.910000px;}
.y6b{bottom:978.270000px;}
.y8c{bottom:982.770000px;}
.y1{bottom:984.030000px;}
.y29{bottom:987.270000px;}
.y159{bottom:997.170000px;}
.y122{bottom:998.970000px;}
.y8b{bottom:1003.470000px;}
.y28{bottom:1007.970000px;}
.ya6{bottom:1014.810000px;}
.y8a{bottom:1028.310000px;}
.y27{bottom:1028.670000px;}
.yf9{bottom:1029.570000px;}
.y4d{bottom:1064.130000px;}
.y25{bottom:1076.370000px;}
.y4c{bottom:1077.810000px;}
.h25{height:12.012891px;}
.h19{height:13.665000px;}
.h12{height:13.845000px;}
.h18{height:15.465000px;}
.h17{height:16.950000px;}
.h1e{height:27.525000px;}
.h16{height:27.540000px;}
.h22{height:27.705000px;}
.h15{height:27.720000px;}
.h6{height:35.332031px;}
.he{height:38.158594px;}
.h1f{height:41.385000px;}
.h20{height:41.421000px;}
.h14{height:41.422500px;}
.h21{height:47.321367px;}
.h2{height:47.344922px;}
.h13{height:48.616875px;}
.hf{height:50.229844px;}
.ha{height:52.971680px;}
.h7{height:52.998047px;}
.hc{height:53.573906px;}
.h11{height:54.421875px;}
.h1c{height:55.080000px;}
.h9{height:58.621992px;}
.h3{height:58.651172px;}
.h10{height:61.423863px;}
.h8{height:64.978594px;}
.h5{height:66.543750px;}
.hb{height:66.757500px;}
.h1a{height:69.105000px;}
.h1d{height:69.150000px;}
.h23{height:77.400000px;}
.h4{height:78.367500px;}
.h1b{height:96.480000px;}
.h24{height:109.290000px;}
.h1{height:1263.000000px;}
.hd{height:1263.057990px;}
.h0{height:1263.060000px;}
.w14{width:31.176000px;}
.w1b{width:31.896000px;}
.w12{width:33.285000px;}
.w18{width:33.645000px;}
.w17{width:39.585000px;}
.w1e{width:39.945000px;}
.w16{width:41.745000px;}
.w1d{width:42.465000px;}
.w6{width:44.085000px;}
.we{width:45.525000px;}
.wc{width:52.725000px;}
.wf{width:53.805000px;}
.w7{width:54.165000px;}
.w11{width:63.036000px;}
.wa{width:63.576000px;}
.w20{width:65.865000px;}
.wd{width:71.661000px;}
.wb{width:84.585000px;}
.w9{width:86.940000px;}
.w8{width:91.641000px;}
.w4{width:137.556000px;}
.w10{width:178.395000px;}
.w5{width:181.995000px;}
.w3{width:194.955000px;}
.w15{width:201.255000px;}
.w1f{width:201.615000px;}
.w1c{width:201.975000px;}
.w13{width:211.875000px;}
.w19{width:212.235000px;}
.w1a{width:212.595000px;}
.w21{width:492.570000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:2.325000px;}
.x23{left:3.945000px;}
.x49{left:7.725000px;}
.x22{left:10.440000px;}
.x45{left:12.240000px;}
.x44{left:13.500000px;}
.x31{left:16.005000px;}
.x43{left:18.000000px;}
.x42{left:19.800000px;}
.x41{left:20.880000px;}
.x2f{left:26.640000px;}
.x32{left:34.770000px;}
.x29{left:41.940000px;}
.x1e{left:46.440000px;}
.x30{left:47.685000px;}
.x2e{left:56.700000px;}
.x20{left:62.265000px;}
.x1c{left:76.845000px;}
.x1b{left:157.725000px;}
.x5{left:161.670000px;}
.x26{left:162.945000px;}
.x13{left:166.530000px;}
.x48{left:170.865000px;}
.x3a{left:177.150000px;}
.x3{left:178.590000px;}
.xf{left:183.450000px;}
.x46{left:188.670000px;}
.x3b{left:193.710000px;}
.x8{left:196.048125px;}
.x9{left:200.910000px;}
.x6{left:204.150000px;}
.x14{left:205.590000px;}
.x3d{left:211.005000px;}
.x27{left:217.125000px;}
.x4{left:221.070000px;}
.x15{left:232.590000px;}
.x4a{left:237.465000px;}
.x47{left:249.150000px;}
.x28{left:308.775000px;}
.x3c{left:310.035000px;}
.x25{left:335.055000px;}
.x1a{left:343.155000px;}
.x38{left:349.275000px;}
.x1d{left:353.415000px;}
.x12{left:377.715000px;}
.xe{left:394.635000px;}
.x33{left:396.075000px;}
.x3e{left:423.615000px;}
.x7{left:455.685000px;}
.x2a{left:459.480000px;}
.x1f{left:491.700000px;}
.x36{left:523.183125px;}
.x37{left:528.045000px;}
.x2b{left:544.440000px;}
.xc{left:563.143125px;}
.xd{left:568.005000px;}
.x2c{left:597.720000px;}
.xa{left:623.443125px;}
.xb{left:628.350000px;}
.x10{left:647.608125px;}
.x11{left:652.470000px;}
.x18{left:655.888125px;}
.x3f{left:657.510000px;}
.x19{left:660.750000px;}
.x2d{left:669.750000px;}
.x21{left:674.430000px;}
.x40{left:699.990000px;}
.x34{left:706.108125px;}
.x35{left:710.970000px;}
.x39{left:714.210000px;}
.x16{left:722.848125px;}
.x17{left:727.710000px;}
.x2{left:731.490000px;}
.x1{left:736.890000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.592000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.478933pt;}
.lsb{letter-spacing:-0.367467pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.239467pt;}
.ls1e{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls25{letter-spacing:-0.161067pt;}
.ls2b{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.080533pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.030720pt;}
.ls27{letter-spacing:0.040320pt;}
.ls5{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.161067pt;}
.lsd{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.ls24{letter-spacing:0.239360pt;}
.ls20{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.456533pt;}
.ls15{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.736000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.600000pt;}
.ls16{letter-spacing:2.880000pt;}
.lse{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:3.520000pt;}
.ls12{letter-spacing:4.160000pt;}
.ls13{letter-spacing:5.440000pt;}
.ls23{letter-spacing:26.192640pt;}
.ls1a{letter-spacing:37.712640pt;}
.ls2a{letter-spacing:473.920000pt;}
.ls0{letter-spacing:501.440000pt;}
.wsb{word-spacing:-13.736533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.912533pt;}
.ws2{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.959467pt;}
.ws11{word-spacing:-10.760320pt;}
.wsa{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.679680pt;}
.wsc{word-spacing:-10.639467pt;}
.wsd{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.480533pt;}
.ws0{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-0.912000pt;}
._0{width:0.944000pt;}
._5{width:1.956480pt;}
._3{width:3.179520pt;}
._2{width:4.285440pt;}
._8{width:5.683840pt;}
._c{width:6.811520pt;}
._6{width:7.702400pt;}
._9{width:8.605440pt;}
._b{width:9.538560pt;}
._a{width:10.538880pt;}
._7{width:11.898880pt;}
._12{width:13.904640pt;}
._f{width:15.951360pt;}
._10{width:19.479040pt;}
._14{width:22.947840pt;}
._15{width:23.859840pt;}
._11{width:30.370560pt;}
._4{width:35.811200pt;}
._17{width:50.106667pt;}
._13{width:69.352960pt;}
._16{width:475.514667pt;}
._d{width:500.480000pt;}
._e{width:501.754667pt;}
.fs8{font-size:10.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:2.400000pt;}
.y116{bottom:2.546667pt;}
.ya9{bottom:2.560000pt;}
.y119{bottom:2.706667pt;}
.yad{bottom:2.720000pt;}
.ybb{bottom:3.520000pt;}
.yb8{bottom:5.440000pt;}
.y11a{bottom:8.786667pt;}
.y10d{bottom:8.800000pt;}
.y115{bottom:14.866667pt;}
.yac{bottom:14.880000pt;}
.y118{bottom:15.026667pt;}
.yaf{bottom:15.040000pt;}
.y10a{bottom:15.066667pt;}
.y105{bottom:20.960000pt;}
.y11d{bottom:21.106667pt;}
.y10f{bottom:21.120000pt;}
.yfe{bottom:27.040000pt;}
.y11c{bottom:27.186667pt;}
.y103{bottom:27.200000pt;}
.y109{bottom:27.226667pt;}
.yab{bottom:27.240000pt;}
.y141{bottom:28.160000pt;}
.yfd{bottom:39.360000pt;}
.y108{bottom:39.546667pt;}
.y144{bottom:42.266667pt;}
.y142{bottom:43.200000pt;}
.y146{bottom:43.226667pt;}
.yfc{bottom:51.680000pt;}
.yfb{bottom:51.840000pt;}
.y107{bottom:51.866667pt;}
.y102{bottom:64.000000pt;}
.y145{bottom:71.546667pt;}
.y101{bottom:76.160000pt;}
.y5{bottom:132.960000pt;}
.y26{bottom:136.960000pt;}
.y13e{bottom:206.906667pt;}
.y4b{bottom:210.106667pt;}
.y24{bottom:210.746667pt;}
.y121{bottom:212.520000pt;}
.y6a{bottom:215.226667pt;}
.yf8{bottom:219.546667pt;}
.y158{bottom:224.186667pt;}
.y13d{bottom:225.306667pt;}
.y120{bottom:226.760000pt;}
.y4a{bottom:228.506667pt;}
.y23{bottom:229.146667pt;}
.y69{bottom:229.946667pt;}
.y89{bottom:230.426667pt;}
.y88{bottom:236.506667pt;}
.y157{bottom:242.586667pt;}
.y68{bottom:245.146667pt;}
.yf7{bottom:245.946667pt;}
.y87{bottom:246.746667pt;}
.y49{bottom:246.906667pt;}
.y22{bottom:247.546667pt;}
.y67{bottom:251.226667pt;}
.y13c{bottom:251.706667pt;}
.y156{bottom:260.986667pt;}
.ya5{bottom:261.466667pt;}
.y11f{bottom:264.200000pt;}
.yf6{bottom:264.346667pt;}
.y48{bottom:265.306667pt;}
.y21{bottom:265.946667pt;}
.y13b{bottom:270.106667pt;}
.y66{bottom:270.426667pt;}
.yce{bottom:270.906667pt;}
.yed{bottom:275.226667pt;}
.ycd{bottom:276.986667pt;}
.y155{bottom:279.386667pt;}
.y47{bottom:283.706667pt;}
.y20{bottom:284.346667pt;}
.y65{bottom:285.626667pt;}
.y13a{bottom:288.506667pt;}
.yf5{bottom:290.746667pt;}
.y64{bottom:291.706667pt;}
.yec{bottom:293.626667pt;}
.ycc{bottom:296.186667pt;}
.y154{bottom:297.786667pt;}
.y11e{bottom:301.640000pt;}
.y46{bottom:302.106667pt;}
.y1f{bottom:302.746667pt;}
.y139{bottom:306.906667pt;}
.yf4{bottom:309.146667pt;}
.y63{bottom:310.906667pt;}
.yeb{bottom:312.026667pt;}
.y11b{bottom:314.600000pt;}
.y153{bottom:316.186667pt;}
.y45{bottom:320.506667pt;}
.y1e{bottom:321.146667pt;}
.y138{bottom:325.306667pt;}
.y62{bottom:325.626667pt;}
.ycb{bottom:326.266667pt;}
.yf3{bottom:327.546667pt;}
.yea{bottom:330.426667pt;}
.yca{bottom:332.346667pt;}
.y152{bottom:334.586667pt;}
.y86{bottom:337.306667pt;}
.y44{bottom:338.906667pt;}
.y1d{bottom:339.866667pt;}
.y61{bottom:340.986667pt;}
.yc9{bottom:342.426667pt;}
.y137{bottom:343.706667pt;}
.yf2{bottom:345.946667pt;}
.y60{bottom:347.066667pt;}
.ye9{bottom:348.826667pt;}
.y170{bottom:350.906667pt;}
.y117{bottom:352.040000pt;}
.y151{bottom:352.986667pt;}
.y85{bottom:355.706667pt;}
.y5f{bottom:357.146667pt;}
.y43{bottom:357.306667pt;}
.y136{bottom:362.106667pt;}
.yf1{bottom:364.346667pt;}
.ya4{bottom:366.426667pt;}
.ye8{bottom:367.226667pt;}
.y1c{bottom:369.786667pt;}
.yc8{bottom:370.906667pt;}
.y150{bottom:371.386667pt;}
.y84{bottom:374.106667pt;}
.y16f{bottom:374.906667pt;}
.y42{bottom:375.706667pt;}
.y114{bottom:377.320000pt;}
.y135{bottom:380.506667pt;}
.ya3{bottom:384.826667pt;}
.ye7{bottom:385.626667pt;}
.yc7{bottom:389.306667pt;}
.y14f{bottom:389.786667pt;}
.yf0{bottom:390.426667pt;}
.y16e{bottom:390.906667pt;}
.y83{bottom:392.506667pt;}
.y41{bottom:394.106667pt;}
.y1b{bottom:396.226667pt;}
.y5e{bottom:401.666667pt;}
.ya2{bottom:403.266667pt;}
.ye6{bottom:404.066667pt;}
.y134{bottom:406.946667pt;}
.yc5{bottom:407.746667pt;}
.y14e{bottom:408.226667pt;}
.y82{bottom:410.946667pt;}
.y40{bottom:412.546667pt;}
.yc6{bottom:413.826667pt;}
.y1a{bottom:414.626667pt;}
.y113{bottom:414.786667pt;}
.yef{bottom:416.866667pt;}
.y5d{bottom:420.066667pt;}
.ye5{bottom:422.466667pt;}
.y16d{bottom:422.946667pt;}
.y133{bottom:425.346667pt;}
.yc4{bottom:426.146667pt;}
.y112{bottom:427.746667pt;}
.y81{bottom:429.346667pt;}
.ya1{bottom:429.666667pt;}
.y19{bottom:433.026667pt;}
.y14d{bottom:434.786667pt;}
.y5c{bottom:438.466667pt;}
.y3f{bottom:438.946667pt;}
.yee{bottom:440.226667pt;}
.ye4{bottom:440.866667pt;}
.y132{bottom:443.746667pt;}
.yc3{bottom:444.546667pt;}
.y16c{bottom:446.946667pt;}
.y9f{bottom:448.066667pt;}
.y18{bottom:451.426667pt;}
.ya0{bottom:454.146667pt;}
.y80{bottom:455.746667pt;}
.y5b{bottom:456.866667pt;}
.y3e{bottom:457.346667pt;}
.ye3{bottom:459.266667pt;}
.y131{bottom:462.146667pt;}
.y14c{bottom:462.786667pt;}
.yc2{bottom:462.946667pt;}
.y111{bottom:465.186667pt;}
.y9e{bottom:466.466667pt;}
.y17{bottom:469.826667pt;}
.y7f{bottom:474.146667pt;}
.y5a{bottom:475.266667pt;}
.y3d{bottom:475.746667pt;}
.y130{bottom:480.546667pt;}
.yc1{bottom:481.346667pt;}
.y9d{bottom:484.866667pt;}
.ye2{bottom:485.666667pt;}
.y16b{bottom:486.946667pt;}
.y16{bottom:488.226667pt;}
.y14b{bottom:489.186667pt;}
.y7e{bottom:492.546667pt;}
.y59{bottom:493.666667pt;}
.y3c{bottom:494.146667pt;}
.y12f{bottom:498.946667pt;}
.ybf{bottom:499.746667pt;}
.y110{bottom:502.626667pt;}
.y9c{bottom:503.266667pt;}
.ye1{bottom:504.066667pt;}
.yc0{bottom:505.826667pt;}
.y15{bottom:506.626667pt;}
.y14a{bottom:507.586667pt;}
.y7d{bottom:510.946667pt;}
.y58{bottom:512.066667pt;}
.y3b{bottom:512.546667pt;}
.y10e{bottom:515.586667pt;}
.ybe{bottom:517.986667pt;}
.ye0{bottom:522.466667pt;}
.y14{bottom:525.026667pt;}
.y12e{bottom:525.666667pt;}
.y149{bottom:525.986667pt;}
.y7c{bottom:529.346667pt;}
.y9b{bottom:529.506667pt;}
.y57{bottom:530.466667pt;}
.y3a{bottom:530.946667pt;}
.y16a{bottom:534.946667pt;}
.ydf{bottom:540.866667pt;}
.y148{bottom:542.146667pt;}
.y13{bottom:543.426667pt;}
.ybd{bottom:544.386667pt;}
.y7a{bottom:547.746667pt;}
.y9a{bottom:547.906667pt;}
.y39{bottom:549.346667pt;}
.y10c{bottom:553.026667pt;}
.y12d{bottom:553.506667pt;}
.y7b{bottom:553.826667pt;}
.y56{bottom:556.866667pt;}
.ybc{bottom:557.186667pt;}
.y147{bottom:558.786667pt;}
.y169{bottom:558.946667pt;}
.yde{bottom:559.266667pt;}
.y12{bottom:561.826667pt;}
.y79{bottom:566.146667pt;}
.y99{bottom:566.306667pt;}
.y38{bottom:567.746667pt;}
.yba{bottom:569.986667pt;}
.y143{bottom:571.426667pt;}
.y168{bottom:574.946667pt;}
.y55{bottom:575.266667pt;}
.ydd{bottom:577.506667pt;}
.y10b{bottom:578.306667pt;}
.y12c{bottom:579.906667pt;}
.y11{bottom:580.226667pt;}
.yb9{bottom:584.386667pt;}
.y78{bottom:584.546667pt;}
.y37{bottom:586.146667pt;}
.y98{bottom:588.386667pt;}
.y106{bottom:591.106667pt;}
.y53{bottom:593.506667pt;}
.ydc{bottom:595.906667pt;}
.yb7{bottom:597.346667pt;}
.y12b{bottom:598.306667pt;}
.y10{bottom:598.626667pt;}
.y167{bottom:598.946667pt;}
.y54{bottom:599.586667pt;}
.y77{bottom:602.946667pt;}
.y52{bottom:611.933333pt;}
.y36{bottom:612.733333pt;}
.yb5{bottom:613.053333pt;}
.y166{bottom:614.973333pt;}
.y12a{bottom:616.733333pt;}
.yf{bottom:617.053333pt;}
.ydb{bottom:622.333333pt;}
.y97{bottom:623.133333pt;}
.y76{bottom:629.373333pt;}
.y51{bottom:630.333333pt;}
.y129{bottom:635.133333pt;}
.ye{bottom:635.453333pt;}
.y165{bottom:638.973333pt;}
.y35{bottom:640.733333pt;}
.y75{bottom:647.773333pt;}
.y50{bottom:648.733333pt;}
.y96{bottom:649.533333pt;}
.yb4{bottom:651.613333pt;}
.y104{bottom:653.213333pt;}
.y128{bottom:653.533333pt;}
.yd{bottom:653.853333pt;}
.y164{bottom:654.973333pt;}
.yda{bottom:659.133333pt;}
.y74{bottom:666.173333pt;}
.y34{bottom:667.133333pt;}
.y140{bottom:669.213333pt;}
.y163{bottom:670.973333pt;}
.yc{bottom:672.573333pt;}
.y95{bottom:675.933333pt;}
.yd9{bottom:677.533333pt;}
.y127{bottom:679.933333pt;}
.y73{bottom:684.573333pt;}
.yb3{bottom:685.213333pt;}
.y33{bottom:685.533333pt;}
.y162{bottom:686.973333pt;}
.y94{bottom:694.333333pt;}
.yd8{bottom:695.933333pt;}
.yb2{bottom:697.853333pt;}
.y72{bottom:702.973333pt;}
.y126{bottom:706.333333pt;}
.yb{bottom:709.693333pt;}
.y161{bottom:710.973333pt;}
.y32{bottom:711.933333pt;}
.yd7{bottom:714.333333pt;}
.y93{bottom:720.733333pt;}
.y71{bottom:721.373333pt;}
.yb1{bottom:722.973333pt;}
.y125{bottom:724.733333pt;}
.y160{bottom:726.973333pt;}
.y31{bottom:730.333333pt;}
.ya{bottom:731.613333pt;}
.yd6{bottom:732.733333pt;}
.y70{bottom:739.773333pt;}
.y15f{bottom:742.973333pt;}
.y124{bottom:743.133333pt;}
.y9{bottom:743.293333pt;}
.y92{bottom:747.133333pt;}
.yb0{bottom:748.253333pt;}
.y30{bottom:748.733333pt;}
.yd5{bottom:751.133333pt;}
.y13f{bottom:751.933333pt;}
.y123{bottom:761.533333pt;}
.y6f{bottom:761.853333pt;}
.y2f{bottom:767.133333pt;}
.yd4{bottom:769.533333pt;}
.y8{bottom:770.013333pt;}
.y15e{bottom:770.333333pt;}
.yae{bottom:773.373333pt;}
.y91{bottom:773.533333pt;}
.y2e{bottom:785.533333pt;}
.yd2{bottom:787.933333pt;}
.y100{bottom:789.373333pt;}
.y90{bottom:791.933333pt;}
.yd3{bottom:794.013333pt;}
.y6e{bottom:796.733333pt;}
.y7{bottom:797.693333pt;}
.y15d{bottom:798.333333pt;}
.yaa{bottom:798.653333pt;}
.y2d{bottom:803.933333pt;}
.yd1{bottom:806.333333pt;}
.y8f{bottom:818.373333pt;}
.y6{bottom:821.733333pt;}
.y2c{bottom:822.373333pt;}
.y15c{bottom:824.133333pt;}
.y6d{bottom:824.773333pt;}
.yff{bottom:827.013333pt;}
.y4f{bottom:828.453333pt;}
.ya8{bottom:836.133333pt;}
.y8e{bottom:836.773333pt;}
.yfa{bottom:839.813333pt;}
.y4{bottom:840.453333pt;}
.y2b{bottom:840.773333pt;}
.y15b{bottom:841.413333pt;}
.yd0{bottom:843.173333pt;}
.y6c{bottom:851.173333pt;}
.y3{bottom:852.773333pt;}
.y8d{bottom:855.173333pt;}
.y2a{bottom:859.173333pt;}
.y15a{bottom:859.813333pt;}
.ya7{bottom:862.373333pt;}
.y2{bottom:865.093333pt;}
.y4e{bottom:865.253333pt;}
.ycf{bottom:869.253333pt;}
.y6b{bottom:869.573333pt;}
.y8c{bottom:873.573333pt;}
.y1{bottom:874.693333pt;}
.y29{bottom:877.573333pt;}
.y159{bottom:886.373333pt;}
.y122{bottom:887.973333pt;}
.y8b{bottom:891.973333pt;}
.y28{bottom:895.973333pt;}
.ya6{bottom:902.053333pt;}
.y8a{bottom:914.053333pt;}
.y27{bottom:914.373333pt;}
.yf9{bottom:915.173333pt;}
.y4d{bottom:945.893333pt;}
.y25{bottom:956.773333pt;}
.y4c{bottom:958.053333pt;}
.h25{height:10.678125pt;}
.h19{height:12.146667pt;}
.h12{height:12.306667pt;}
.h18{height:13.746667pt;}
.h17{height:15.066667pt;}
.h1e{height:24.466667pt;}
.h16{height:24.480000pt;}
.h22{height:24.626667pt;}
.h15{height:24.640000pt;}
.h6{height:31.406250pt;}
.he{height:33.918750pt;}
.h1f{height:36.786667pt;}
.h20{height:36.818667pt;}
.h14{height:36.820000pt;}
.h21{height:42.063437pt;}
.h2{height:42.084375pt;}
.h13{height:43.215000pt;}
.hf{height:44.648750pt;}
.ha{height:47.085938pt;}
.h7{height:47.109375pt;}
.hc{height:47.621250pt;}
.h11{height:48.375000pt;}
.h1c{height:48.960000pt;}
.h9{height:52.108438pt;}
.h3{height:52.134375pt;}
.h10{height:54.598989pt;}
.h8{height:57.758750pt;}
.h5{height:59.150000pt;}
.hb{height:59.340000pt;}
.h1a{height:61.426667pt;}
.h1d{height:61.466667pt;}
.h23{height:68.800000pt;}
.h4{height:69.660000pt;}
.h1b{height:85.760000pt;}
.h24{height:97.146667pt;}
.h1{height:1122.666667pt;}
.hd{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w14{width:27.712000pt;}
.w1b{width:28.352000pt;}
.w12{width:29.586667pt;}
.w18{width:29.906667pt;}
.w17{width:35.186667pt;}
.w1e{width:35.506667pt;}
.w16{width:37.106667pt;}
.w1d{width:37.746667pt;}
.w6{width:39.186667pt;}
.we{width:40.466667pt;}
.wc{width:46.866667pt;}
.wf{width:47.826667pt;}
.w7{width:48.146667pt;}
.w11{width:56.032000pt;}
.wa{width:56.512000pt;}
.w20{width:58.546667pt;}
.wd{width:63.698667pt;}
.wb{width:75.186667pt;}
.w9{width:77.280000pt;}
.w8{width:81.458667pt;}
.w4{width:122.272000pt;}
.w10{width:158.573333pt;}
.w5{width:161.773333pt;}
.w3{width:173.293333pt;}
.w15{width:178.893333pt;}
.w1f{width:179.213333pt;}
.w1c{width:179.533333pt;}
.w13{width:188.333333pt;}
.w19{width:188.653333pt;}
.w1a{width:188.973333pt;}
.w21{width:437.840000pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:2.066667pt;}
.x23{left:3.506667pt;}
.x49{left:6.866667pt;}
.x22{left:9.280000pt;}
.x45{left:10.880000pt;}
.x44{left:12.000000pt;}
.x31{left:14.226667pt;}
.x43{left:16.000000pt;}
.x42{left:17.600000pt;}
.x41{left:18.560000pt;}
.x2f{left:23.680000pt;}
.x32{left:30.906667pt;}
.x29{left:37.280000pt;}
.x1e{left:41.280000pt;}
.x30{left:42.386667pt;}
.x2e{left:50.400000pt;}
.x20{left:55.346667pt;}
.x1c{left:68.306667pt;}
.x1b{left:140.200000pt;}
.x5{left:143.706667pt;}
.x26{left:144.840000pt;}
.x13{left:148.026667pt;}
.x48{left:151.880000pt;}
.x3a{left:157.466667pt;}
.x3{left:158.746667pt;}
.xf{left:163.066667pt;}
.x46{left:167.706667pt;}
.x3b{left:172.186667pt;}
.x8{left:174.265000pt;}
.x9{left:178.586667pt;}
.x6{left:181.466667pt;}
.x14{left:182.746667pt;}
.x3d{left:187.560000pt;}
.x27{left:193.000000pt;}
.x4{left:196.506667pt;}
.x15{left:206.746667pt;}
.x4a{left:211.080000pt;}
.x47{left:221.466667pt;}
.x28{left:274.466667pt;}
.x3c{left:275.586667pt;}
.x25{left:297.826667pt;}
.x1a{left:305.026667pt;}
.x38{left:310.466667pt;}
.x1d{left:314.146667pt;}
.x12{left:335.746667pt;}
.xe{left:350.786667pt;}
.x33{left:352.066667pt;}
.x3e{left:376.546667pt;}
.x7{left:405.053333pt;}
.x2a{left:408.426667pt;}
.x1f{left:437.066667pt;}
.x36{left:465.051667pt;}
.x37{left:469.373333pt;}
.x2b{left:483.946667pt;}
.xc{left:500.571667pt;}
.xd{left:504.893333pt;}
.x2c{left:531.306667pt;}
.xa{left:554.171667pt;}
.xb{left:558.533333pt;}
.x10{left:575.651667pt;}
.x11{left:579.973333pt;}
.x18{left:583.011667pt;}
.x3f{left:584.453333pt;}
.x19{left:587.333333pt;}
.x2d{left:595.333333pt;}
.x21{left:599.493333pt;}
.x40{left:622.213333pt;}
.x34{left:627.651667pt;}
.x35{left:631.973333pt;}
.x39{left:634.853333pt;}
.x16{left:642.531667pt;}
.x17{left:646.853333pt;}
.x2{left:650.213333pt;}
.x1{left:655.013333pt;}
}




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