
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_22e0a207dadc188c4e7e7bd3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8b433b30d011c59723d196ae.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_48bd4258506af88738455708.woff')format("woff");}.ff6{font-family:ff6;line-height:0.747559;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_86f51a80941c4ca13e559117.woff')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:24.120000px;}
.lsa{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.270000px;}
.ls14{letter-spacing:-0.220200px;}
.ls1c{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.184200px;}
.ls9{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.153600px;}
.ls16{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.103800px;}
.ls11{letter-spacing:-0.094800px;}
.ls7{letter-spacing:-0.090000px;}
.ls17{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018720px;}
.ls12{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.090000px;}
.ls18{letter-spacing:0.103800px;}
.ls2{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.139800px;}
.lsb{letter-spacing:0.140040px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:10.170000px;}
.ls1b{letter-spacing:16.406640px;}
.ls4{letter-spacing:36.926640px;}
.ls3{letter-spacing:41.148000px;}
.ls1a{letter-spacing:46.286640px;}
.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:-60.120000px;}
.ws10{word-spacing:-33.723480px;}
.ws16{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.470000px;}
.ws13{word-spacing:-15.210000px;}
.wsf{word-spacing:-15.083280px;}
.ws0{word-spacing:-15.030000px;}
.ws12{word-spacing:-15.016680px;}
.wse{word-spacing:-14.976720px;}
.ws9{word-spacing:-14.876400px;}
.ws4{word-spacing:-14.850000px;}
.ws18{word-spacing:-14.823600px;}
.ws11{word-spacing:-14.809800px;}
.wsa{word-spacing:-14.616600px;}
.ws7{word-spacing:-14.516400px;}
.ws5{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.150000px;}
.ws17{word-spacing:-12.073800px;}
.wsb{word-spacing:-11.988720px;}
.ws1{word-spacing:-11.970000px;}
.wsd{word-spacing:-11.875200px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
.ws14{word-spacing:458.688000px;}
.ws15{word-spacing:517.368000px;}
._0{margin-left:-1.202400px;}
._3{width:1.085760px;}
._8{width:2.280960px;}
._d{width:4.084680px;}
._7{width:5.230440px;}
._13{width:6.323880px;}
._6{width:7.329000px;}
._5{width:8.433360px;}
._f{width:10.152000px;}
._23{width:11.332800px;}
._e{width:12.444840px;}
._9{width:13.707360px;}
._b{width:16.232400px;}
._c{width:17.296320px;}
._10{width:19.018080px;}
._a{width:20.019960px;}
._1b{width:21.140400px;}
._1c{width:22.725360px;}
._22{width:24.468840px;}
._20{width:25.671240px;}
._21{width:26.993880px;}
._19{width:28.977840px;}
._18{width:30.120120px;}
._17{width:31.142160px;}
._14{width:32.945760px;}
._1a{width:34.203000px;}
._1f{width:35.276760px;}
._15{width:36.853560px;}
._16{width:37.875600px;}
._24{width:39.258360px;}
._1d{width:40.463400px;}
._1e{width:41.655600px;}
._26{width:42.917160px;}
._25{width:44.137920px;}
._29{width:46.924200px;}
._11{width:63.990000px;}
._12{width:125.334000px;}
._2{width:130.455480px;}
._27{width:178.650000px;}
._28{width:182.606760px;}
._1{width:341.548680px;}
._4{width:909.522600px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y77{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y3d{bottom:2.880000px;}
.y3b{bottom:2.970000px;}
.y15{bottom:3.240000px;}
.y7b{bottom:4.500000px;}
.y35{bottom:6.030000px;}
.yc3{bottom:6.450000px;}
.y113{bottom:6.840000px;}
.y4{bottom:8.460000px;}
.yb7{bottom:13.590000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.y3a{bottom:18.450000px;}
.y33{bottom:19.350000px;}
.yc4{bottom:20.040000px;}
.y112{bottom:20.610000px;}
.y11a{bottom:25.470000px;}
.ybd{bottom:27.600000px;}
.y2a{bottom:34.020000px;}
.y111{bottom:34.380000px;}
.yb0{bottom:34.740000px;}
.y7{bottom:35.550000px;}
.y32{bottom:35.820000px;}
.y119{bottom:39.240000px;}
.y110{bottom:48.150000px;}
.y39{bottom:49.500000px;}
.y29{bottom:51.210000px;}
.y31{bottom:51.330000px;}
.y118{bottom:53.100000px;}
.y3{bottom:58.140000px;}
.yb8{bottom:60.600000px;}
.ybe{bottom:64.830000px;}
.y38{bottom:65.070000px;}
.y117{bottom:66.870000px;}
.y30{bottom:66.900000px;}
.y28{bottom:68.490000px;}
.yb1{bottom:78.390000px;}
.y37{bottom:80.550000px;}
.y116{bottom:80.640000px;}
.yc8{bottom:80.970000px;}
.yc5{bottom:82.230000px;}
.y2f{bottom:82.380000px;}
.y27{bottom:85.770000px;}
.y2e{bottom:97.950000px;}
.ybf{bottom:102.060000px;}
.y26{bottom:102.960000px;}
.y3c{bottom:106.200000px;}
.yc7{bottom:109.710000px;}
.y83{bottom:112.320000px;}
.y2d{bottom:113.430000px;}
.y109{bottom:118.440000px;}
.y25{bottom:120.240000px;}
.yf4{bottom:121.860000px;}
.yb2{bottom:122.040000px;}
.y91{bottom:124.020000px;}
.y96{bottom:124.290000px;}
.yf0{bottom:125.370000px;}
.ybb{bottom:125.490000px;}
.y47{bottom:127.890000px;}
.y2c{bottom:129.000000px;}
.y82{bottom:129.510000px;}
.y108{bottom:135.720000px;}
.y24{bottom:137.520000px;}
.yc6{bottom:138.450000px;}
.yf3{bottom:139.140000px;}
.yc0{bottom:139.290000px;}
.y90{bottom:141.210000px;}
.y95{bottom:141.480000px;}
.yae{bottom:141.570000px;}
.yef{bottom:142.560000px;}
.y46{bottom:145.170000px;}
.y81{bottom:146.790000px;}
.y107{bottom:152.910000px;}
.yba{bottom:154.230000px;}
.y10d{bottom:154.530000px;}
.y23{bottom:154.710000px;}
.yad{bottom:155.430000px;}
.yf2{bottom:156.450000px;}
.y8f{bottom:158.520000px;}
.y94{bottom:158.790000px;}
.yee{bottom:159.870000px;}
.y45{bottom:162.480000px;}
.y80{bottom:164.100000px;}
.yb3{bottom:165.690000px;}
.yac{bottom:169.230000px;}
.y106{bottom:169.590000px;}
.y10c{bottom:171.840000px;}
.y22{bottom:171.990000px;}
.yf1{bottom:173.640000px;}
.y8e{bottom:175.800000px;}
.y93{bottom:176.070000px;}
.yed{bottom:176.520000px;}
.yc1{bottom:176.550000px;}
.y44{bottom:179.670000px;}
.ybc{bottom:180.450000px;}
.y7f{bottom:181.290000px;}
.y105{bottom:181.560000px;}
.yb9{bottom:182.970000px;}
.yec{bottom:188.400000px;}
.y10b{bottom:189.120000px;}
.y21{bottom:189.270000px;}
.y92{bottom:190.110000px;}
.y8d{bottom:192.990000px;}
.y104{bottom:196.050000px;}
.y43{bottom:196.950000px;}
.y7e{bottom:198.570000px;}
.yeb{bottom:202.980000px;}
.y10a{bottom:206.310000px;}
.y20{bottom:206.460000px;}
.yb4{bottom:209.340000px;}
.y8c{bottom:210.270000px;}
.y103{bottom:210.630000px;}
.yc2{bottom:213.780000px;}
.y42{bottom:214.140000px;}
.y7d{bottom:215.760000px;}
.yea{bottom:217.470000px;}
.y115{bottom:221.070000px;}
.y1f{bottom:223.740000px;}
.y102{bottom:225.120000px;}
.y8b{bottom:227.460000px;}
.y41{bottom:231.420000px;}
.ye9{bottom:232.050000px;}
.y7c{bottom:233.040000px;}
.y101{bottom:239.700000px;}
.y1e{bottom:241.020000px;}
.y8a{bottom:244.740000px;}
.ye8{bottom:246.630000px;}
.y7a{bottom:247.800000px;}
.y40{bottom:248.700000px;}
.yb5{bottom:252.990000px;}
.y100{bottom:256.890000px;}
.y1d{bottom:258.210000px;}
.y89{bottom:262.020000px;}
.ye7{bottom:263.100000px;}
.y3f{bottom:265.890000px;}
.y79{bottom:266.070000px;}
.yff{bottom:270.660000px;}
.ye6{bottom:274.170000px;}
.y1c{bottom:275.490000px;}
.y88{bottom:279.210000px;}
.y78{bottom:280.650000px;}
.y3e{bottom:282.900000px;}
.yfe{bottom:285.060000px;}
.ye5{bottom:287.940000px;}
.y1b{bottom:292.800000px;}
.y76{bottom:295.230000px;}
.y16{bottom:296.220000px;}
.y87{bottom:296.490000px;}
.yb6{bottom:296.640000px;}
.ye4{bottom:302.340000px;}
.y75{bottom:309.720000px;}
.y1a{bottom:309.990000px;}
.y114{bottom:313.680000px;}
.y86{bottom:313.770000px;}
.ye3{bottom:319.620000px;}
.y74{bottom:326.280000px;}
.y19{bottom:327.270000px;}
.y10f{bottom:328.170000px;}
.y85{bottom:330.960000px;}
.ye2{bottom:336.810000px;}
.y73{bottom:337.260000px;}
.y18{bottom:344.460000px;}
.y84{bottom:348.240000px;}
.y72{bottom:351.120000px;}
.ye1{bottom:354.090000px;}
.y17{bottom:361.740000px;}
.y71{bottom:365.520000px;}
.ye0{bottom:371.370000px;}
.y70{bottom:382.710000px;}
.y10e{bottom:388.290000px;}
.ydf{bottom:388.560000px;}
.y6f{bottom:399.990000px;}
.yde{bottom:405.840000px;}
.yab{bottom:414.930000px;}
.y36{bottom:415.740000px;}
.y6e{bottom:417.270000px;}
.ydd{bottom:423.120000px;}
.yaa{bottom:432.120000px;}
.y6d{bottom:434.460000px;}
.ydc{bottom:440.310000px;}
.ya9{bottom:449.400000px;}
.y6c{bottom:451.740000px;}
.ydb{bottom:457.590000px;}
.ya8{bottom:466.590000px;}
.y6b{bottom:469.020000px;}
.yda{bottom:474.870000px;}
.ya7{bottom:483.870000px;}
.y6a{bottom:486.210000px;}
.yd9{bottom:492.060000px;}
.ya6{bottom:501.150000px;}
.y69{bottom:503.490000px;}
.yd8{bottom:509.340000px;}
.y34{bottom:509.610000px;}
.ya5{bottom:518.340000px;}
.y68{bottom:520.770000px;}
.yd7{bottom:526.620000px;}
.y2b{bottom:530.400000px;}
.ya4{bottom:535.620000px;}
.y67{bottom:537.960000px;}
.yd6{bottom:543.810000px;}
.ya3{bottom:552.900000px;}
.y66{bottom:555.240000px;}
.yd5{bottom:561.090000px;}
.ya2{bottom:570.090000px;}
.y65{bottom:572.430000px;}
.yd4{bottom:578.310000px;}
.ya1{bottom:587.400000px;}
.y64{bottom:589.740000px;}
.yd3{bottom:595.590000px;}
.ya0{bottom:604.680000px;}
.y63{bottom:607.020000px;}
.yd2{bottom:612.870000px;}
.y9f{bottom:621.870000px;}
.y62{bottom:624.210000px;}
.yfd{bottom:627.630000px;}
.yd1{bottom:630.060000px;}
.y9e{bottom:639.150000px;}
.y61{bottom:641.490000px;}
.yfc{bottom:642.120000px;}
.yd0{bottom:647.340000px;}
.y9d{bottom:656.430000px;}
.yfb{bottom:656.700000px;}
.y60{bottom:658.770000px;}
.ycf{bottom:662.100000px;}
.yfa{bottom:671.280000px;}
.y14{bottom:672.720000px;}
.y9c{bottom:673.620000px;}
.y5f{bottom:675.960000px;}
.yce{bottom:676.680000px;}
.yf9{bottom:685.770000px;}
.y9b{bottom:690.900000px;}
.ycd{bottom:691.170000px;}
.y5e{bottom:693.240000px;}
.yf8{bottom:702.330000px;}
.ycc{bottom:705.750000px;}
.y13{bottom:707.280000px;}
.y9a{bottom:708.180000px;}
.y5d{bottom:710.520000px;}
.yf7{bottom:713.310000px;}
.ycb{bottom:720.330000px;}
.y99{bottom:725.370000px;}
.y12{bottom:727.170000px;}
.y5c{bottom:727.710000px;}
.yca{bottom:736.800000px;}
.y98{bottom:742.020000px;}
.y5b{bottom:744.990000px;}
.yc9{bottom:747.870000px;}
.yf6{bottom:753.540000px;}
.y97{bottom:755.880000px;}
.y11{bottom:760.830000px;}
.y5a{bottom:762.270000px;}
.yaf{bottom:767.070000px;}
.yf5{bottom:767.580000px;}
.y10{bottom:778.110000px;}
.y59{bottom:779.460000px;}
.yf{bottom:790.530000px;}
.y58{bottom:796.740000px;}
.ye{bottom:811.050000px;}
.y57{bottom:814.020000px;}
.y56{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y55{bottom:848.490000px;}
.y54{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y53{bottom:882.960000px;}
.y52{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.y51{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y50{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.y4f{bottom:951.990000px;}
.y4e{bottom:969.180000px;}
.y4d{bottom:986.460000px;}
.y4c{bottom:1003.770000px;}
.y4b{bottom:1020.960000px;}
.y4a{bottom:1038.240000px;}
.y49{bottom:1055.520000px;}
.y48{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1f{height:13.770000px;}
.h24{height:13.770150px;}
.h1e{height:13.860000px;}
.h10{height:17.280000px;}
.h20{height:17.550000px;}
.h15{height:20.070000px;}
.h23{height:25.136719px;}
.h1d{height:25.400391px;}
.hd{height:27.147656px;}
.h3{height:27.630000px;}
.h5{height:33.431836px;}
.h1c{height:33.782520px;}
.h17{height:37.705078px;}
.h18{height:38.100586px;}
.h6{height:39.082324px;}
.h13{height:39.999023px;}
.h4{height:41.978320px;}
.hf{height:42.418652px;}
.h25{height:43.769004px;}
.h14{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h1a{height:48.027656px;}
.h1b{height:48.147656px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hc{height:53.838457px;}
.h26{height:59.310000px;}
.hb{height:67.819043px;}
.he{height:75.410156px;}
.ha{height:76.201172px;}
.h27{height:91.800000px;}
.h16{height:93.150000px;}
.h19{height:118.800000px;}
.h12{height:141.600000px;}
.h7{height:153.930000px;}
.h22{height:230.760000px;}
.h21{height:319.680000px;}
.h11{height:375.780000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w7{width:70.140000px;}
.w13{width:81.810000px;}
.w9{width:128.100000px;}
.we{width:142.830000px;}
.wf{width:142.860000px;}
.w10{width:142.920000px;}
.w11{width:142.950000px;}
.wd{width:143.040000px;}
.w8{width:208.980000px;}
.w6{width:220.350000px;}
.w14{width:278.220000px;}
.wa{width:308.100000px;}
.w12{width:360.750000px;}
.w5{width:588.480000px;}
.wb{width:708.930000px;}
.w3{width:787.950000px;}
.wc{width:799.470000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.660000px;}
.x3{left:8.640000px;}
.x11{left:20.160000px;}
.x15{left:27.630000px;}
.x1f{left:30.510000px;}
.x1c{left:32.580000px;}
.x13{left:34.110000px;}
.x14{left:36.090000px;}
.x30{left:37.740000px;}
.x21{left:39.060000px;}
.x2b{left:43.980000px;}
.x6{left:45.540000px;}
.x1b{left:48.150000px;}
.x33{left:51.600000px;}
.x2a{left:52.980000px;}
.x2{left:53.999986px;}
.x2e{left:58.140000px;}
.x17{left:59.669986px;}
.x1{left:60.749986px;}
.x24{left:62.820000px;}
.x16{left:65.429986px;}
.x35{left:67.860000px;}
.x1e{left:74.160000px;}
.x23{left:81.990000px;}
.x9{left:85.859986px;}
.x3b{left:92.429986px;}
.x41{left:94.590000px;}
.x40{left:95.850000px;}
.x20{left:97.830000px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.x22{left:116.460000px;}
.x2c{left:136.830000px;}
.xd{left:157.529986px;}
.xe{left:162.389986px;}
.x2f{left:165.420000px;}
.x1a{left:171.120000px;}
.x3a{left:184.889986px;}
.xa{left:206.849986px;}
.x27{left:228.719986px;}
.x29{left:231.419986px;}
.x34{left:244.020000px;}
.x38{left:252.569986px;}
.x32{left:255.899986px;}
.xc{left:326.369986px;}
.x19{left:380.819986px;}
.x36{left:387.660000px;}
.x8{left:459.029986px;}
.x28{left:461.819986px;}
.xb{left:464.159986px;}
.xf{left:465.239986px;}
.x18{left:478.229986px;}
.x3c{left:483.989986px;}
.x26{left:486.059986px;}
.x3f{left:500.010000px;}
.x1d{left:509.730000px;}
.x3d{left:510.989986px;}
.x3e{left:526.559986px;}
.x37{left:531.240000px;}
.x42{left:582.540000px;}
.x10{left:642.210000px;}
.x2d{left:674.850000px;}
.x31{left:765.360000px;}
.x7{left:812.430000px;}
.x25{left:817.649986px;}
.x39{left:860.849986px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.440000pt;}
.lsa{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls14{letter-spacing:-0.195733pt;}
.ls1c{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.163733pt;}
.ls9{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.136533pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.092267pt;}
.ls11{letter-spacing:-0.084267pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016640pt;}
.ls12{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.080000pt;}
.ls18{letter-spacing:0.092267pt;}
.ls2{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.124267pt;}
.lsb{letter-spacing:0.124480pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:9.040000pt;}
.ls1b{letter-spacing:14.583680pt;}
.ls4{letter-spacing:32.823680pt;}
.ls3{letter-spacing:36.576000pt;}
.ls1a{letter-spacing:41.143680pt;}
.ws6{word-spacing:-53.440000pt;}
.ws10{word-spacing:-29.976427pt;}
.ws16{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.640000pt;}
.ws13{word-spacing:-13.520000pt;}
.wsf{word-spacing:-13.407360pt;}
.ws0{word-spacing:-13.360000pt;}
.ws12{word-spacing:-13.348160pt;}
.wse{word-spacing:-13.312640pt;}
.ws9{word-spacing:-13.223467pt;}
.ws4{word-spacing:-13.200000pt;}
.ws18{word-spacing:-13.176533pt;}
.ws11{word-spacing:-13.164267pt;}
.wsa{word-spacing:-12.992533pt;}
.ws7{word-spacing:-12.903467pt;}
.ws5{word-spacing:-12.000000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws17{word-spacing:-10.732267pt;}
.wsb{word-spacing:-10.656640pt;}
.ws1{word-spacing:-10.640000pt;}
.wsd{word-spacing:-10.555733pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
.ws14{word-spacing:407.722667pt;}
.ws15{word-spacing:459.882667pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.965120pt;}
._8{width:2.027520pt;}
._d{width:3.630827pt;}
._7{width:4.649280pt;}
._13{width:5.621227pt;}
._6{width:6.514667pt;}
._5{width:7.496320pt;}
._f{width:9.024000pt;}
._23{width:10.073600pt;}
._e{width:11.062080pt;}
._9{width:12.184320pt;}
._b{width:14.428800pt;}
._c{width:15.374507pt;}
._10{width:16.904960pt;}
._a{width:17.795520pt;}
._1b{width:18.791467pt;}
._1c{width:20.200320pt;}
._22{width:21.750080pt;}
._20{width:22.818880pt;}
._21{width:23.994560pt;}
._19{width:25.758080pt;}
._18{width:26.773440pt;}
._17{width:27.681920pt;}
._14{width:29.285120pt;}
._1a{width:30.402667pt;}
._1f{width:31.357120pt;}
._15{width:32.758720pt;}
._16{width:33.667200pt;}
._24{width:34.896320pt;}
._1d{width:35.967467pt;}
._1e{width:37.027200pt;}
._26{width:38.148587pt;}
._25{width:39.233707pt;}
._29{width:41.710400pt;}
._11{width:56.880000pt;}
._12{width:111.408000pt;}
._2{width:115.960427pt;}
._27{width:158.800000pt;}
._28{width:162.317120pt;}
._1{width:303.598827pt;}
._4{width:808.464533pt;}
.fs3{font-size:26.560000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y3d{bottom:2.560000pt;}
.y3b{bottom:2.640000pt;}
.y15{bottom:2.880000pt;}
.y7b{bottom:4.000000pt;}
.y35{bottom:5.360000pt;}
.yc3{bottom:5.733333pt;}
.y113{bottom:6.080000pt;}
.y4{bottom:7.520000pt;}
.yb7{bottom:12.080000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.y3a{bottom:16.400000pt;}
.y33{bottom:17.200000pt;}
.yc4{bottom:17.813333pt;}
.y112{bottom:18.320000pt;}
.y11a{bottom:22.640000pt;}
.ybd{bottom:24.533333pt;}
.y2a{bottom:30.240000pt;}
.y111{bottom:30.560000pt;}
.yb0{bottom:30.880000pt;}
.y7{bottom:31.600000pt;}
.y32{bottom:31.840000pt;}
.y119{bottom:34.880000pt;}
.y110{bottom:42.800000pt;}
.y39{bottom:44.000000pt;}
.y29{bottom:45.520000pt;}
.y31{bottom:45.626667pt;}
.y118{bottom:47.200000pt;}
.y3{bottom:51.680000pt;}
.yb8{bottom:53.866667pt;}
.ybe{bottom:57.626667pt;}
.y38{bottom:57.840000pt;}
.y117{bottom:59.440000pt;}
.y30{bottom:59.466667pt;}
.y28{bottom:60.880000pt;}
.yb1{bottom:69.680000pt;}
.y37{bottom:71.600000pt;}
.y116{bottom:71.680000pt;}
.yc8{bottom:71.973333pt;}
.yc5{bottom:73.093333pt;}
.y2f{bottom:73.226667pt;}
.y27{bottom:76.240000pt;}
.y2e{bottom:87.066667pt;}
.ybf{bottom:90.720000pt;}
.y26{bottom:91.520000pt;}
.y3c{bottom:94.400000pt;}
.yc7{bottom:97.520000pt;}
.y83{bottom:99.840000pt;}
.y2d{bottom:100.826667pt;}
.y109{bottom:105.280000pt;}
.y25{bottom:106.880000pt;}
.yf4{bottom:108.320000pt;}
.yb2{bottom:108.480000pt;}
.y91{bottom:110.240000pt;}
.y96{bottom:110.480000pt;}
.yf0{bottom:111.440000pt;}
.ybb{bottom:111.546667pt;}
.y47{bottom:113.680000pt;}
.y2c{bottom:114.666667pt;}
.y82{bottom:115.120000pt;}
.y108{bottom:120.640000pt;}
.y24{bottom:122.240000pt;}
.yc6{bottom:123.066667pt;}
.yf3{bottom:123.680000pt;}
.yc0{bottom:123.813333pt;}
.y90{bottom:125.520000pt;}
.y95{bottom:125.760000pt;}
.yae{bottom:125.840000pt;}
.yef{bottom:126.720000pt;}
.y46{bottom:129.040000pt;}
.y81{bottom:130.480000pt;}
.y107{bottom:135.920000pt;}
.yba{bottom:137.093333pt;}
.y10d{bottom:137.360000pt;}
.y23{bottom:137.520000pt;}
.yad{bottom:138.160000pt;}
.yf2{bottom:139.066667pt;}
.y8f{bottom:140.906667pt;}
.y94{bottom:141.146667pt;}
.yee{bottom:142.106667pt;}
.y45{bottom:144.426667pt;}
.y80{bottom:145.866667pt;}
.yb3{bottom:147.280000pt;}
.yac{bottom:150.426667pt;}
.y106{bottom:150.746667pt;}
.y10c{bottom:152.746667pt;}
.y22{bottom:152.880000pt;}
.yf1{bottom:154.346667pt;}
.y8e{bottom:156.266667pt;}
.y93{bottom:156.506667pt;}
.yed{bottom:156.906667pt;}
.yc1{bottom:156.933333pt;}
.y44{bottom:159.706667pt;}
.ybc{bottom:160.400000pt;}
.y7f{bottom:161.146667pt;}
.y105{bottom:161.386667pt;}
.yb9{bottom:162.640000pt;}
.yec{bottom:167.466667pt;}
.y10b{bottom:168.106667pt;}
.y21{bottom:168.240000pt;}
.y92{bottom:168.986667pt;}
.y8d{bottom:171.546667pt;}
.y104{bottom:174.266667pt;}
.y43{bottom:175.066667pt;}
.y7e{bottom:176.506667pt;}
.yeb{bottom:180.426667pt;}
.y10a{bottom:183.386667pt;}
.y20{bottom:183.520000pt;}
.yb4{bottom:186.080000pt;}
.y8c{bottom:186.906667pt;}
.y103{bottom:187.226667pt;}
.yc2{bottom:190.026667pt;}
.y42{bottom:190.346667pt;}
.y7d{bottom:191.786667pt;}
.yea{bottom:193.306667pt;}
.y115{bottom:196.506667pt;}
.y1f{bottom:198.880000pt;}
.y102{bottom:200.106667pt;}
.y8b{bottom:202.186667pt;}
.y41{bottom:205.706667pt;}
.ye9{bottom:206.266667pt;}
.y7c{bottom:207.146667pt;}
.y101{bottom:213.066667pt;}
.y1e{bottom:214.240000pt;}
.y8a{bottom:217.546667pt;}
.ye8{bottom:219.226667pt;}
.y7a{bottom:220.266667pt;}
.y40{bottom:221.066667pt;}
.yb5{bottom:224.880000pt;}
.y100{bottom:228.346667pt;}
.y1d{bottom:229.520000pt;}
.y89{bottom:232.906667pt;}
.ye7{bottom:233.866667pt;}
.y3f{bottom:236.346667pt;}
.y79{bottom:236.506667pt;}
.yff{bottom:240.586667pt;}
.ye6{bottom:243.706667pt;}
.y1c{bottom:244.880000pt;}
.y88{bottom:248.186667pt;}
.y78{bottom:249.466667pt;}
.y3e{bottom:251.466667pt;}
.yfe{bottom:253.386667pt;}
.ye5{bottom:255.946667pt;}
.y1b{bottom:260.266667pt;}
.y76{bottom:262.426667pt;}
.y16{bottom:263.306667pt;}
.y87{bottom:263.546667pt;}
.yb6{bottom:263.680000pt;}
.ye4{bottom:268.746667pt;}
.y75{bottom:275.306667pt;}
.y1a{bottom:275.546667pt;}
.y114{bottom:278.826667pt;}
.y86{bottom:278.906667pt;}
.ye3{bottom:284.106667pt;}
.y74{bottom:290.026667pt;}
.y19{bottom:290.906667pt;}
.y10f{bottom:291.706667pt;}
.y85{bottom:294.186667pt;}
.ye2{bottom:299.386667pt;}
.y73{bottom:299.786667pt;}
.y18{bottom:306.186667pt;}
.y84{bottom:309.546667pt;}
.y72{bottom:312.106667pt;}
.ye1{bottom:314.746667pt;}
.y17{bottom:321.546667pt;}
.y71{bottom:324.906667pt;}
.ye0{bottom:330.106667pt;}
.y70{bottom:340.186667pt;}
.y10e{bottom:345.146667pt;}
.ydf{bottom:345.386667pt;}
.y6f{bottom:355.546667pt;}
.yde{bottom:360.746667pt;}
.yab{bottom:368.826667pt;}
.y36{bottom:369.546667pt;}
.y6e{bottom:370.906667pt;}
.ydd{bottom:376.106667pt;}
.yaa{bottom:384.106667pt;}
.y6d{bottom:386.186667pt;}
.ydc{bottom:391.386667pt;}
.ya9{bottom:399.466667pt;}
.y6c{bottom:401.546667pt;}
.ydb{bottom:406.746667pt;}
.ya8{bottom:414.746667pt;}
.y6b{bottom:416.906667pt;}
.yda{bottom:422.106667pt;}
.ya7{bottom:430.106667pt;}
.y6a{bottom:432.186667pt;}
.yd9{bottom:437.386667pt;}
.ya6{bottom:445.466667pt;}
.y69{bottom:447.546667pt;}
.yd8{bottom:452.746667pt;}
.y34{bottom:452.986667pt;}
.ya5{bottom:460.746667pt;}
.y68{bottom:462.906667pt;}
.yd7{bottom:468.106667pt;}
.y2b{bottom:471.466667pt;}
.ya4{bottom:476.106667pt;}
.y67{bottom:478.186667pt;}
.yd6{bottom:483.386667pt;}
.ya3{bottom:491.466667pt;}
.y66{bottom:493.546667pt;}
.yd5{bottom:498.746667pt;}
.ya2{bottom:506.746667pt;}
.y65{bottom:508.826667pt;}
.yd4{bottom:514.053333pt;}
.ya1{bottom:522.133333pt;}
.y64{bottom:524.213333pt;}
.yd3{bottom:529.413333pt;}
.ya0{bottom:537.493333pt;}
.y63{bottom:539.573333pt;}
.yd2{bottom:544.773333pt;}
.y9f{bottom:552.773333pt;}
.y62{bottom:554.853333pt;}
.yfd{bottom:557.893333pt;}
.yd1{bottom:560.053333pt;}
.y9e{bottom:568.133333pt;}
.y61{bottom:570.213333pt;}
.yfc{bottom:570.773333pt;}
.yd0{bottom:575.413333pt;}
.y9d{bottom:583.493333pt;}
.yfb{bottom:583.733333pt;}
.y60{bottom:585.573333pt;}
.ycf{bottom:588.533333pt;}
.yfa{bottom:596.693333pt;}
.y14{bottom:597.973333pt;}
.y9c{bottom:598.773333pt;}
.y5f{bottom:600.853333pt;}
.yce{bottom:601.493333pt;}
.yf9{bottom:609.573333pt;}
.y9b{bottom:614.133333pt;}
.ycd{bottom:614.373333pt;}
.y5e{bottom:616.213333pt;}
.yf8{bottom:624.293333pt;}
.ycc{bottom:627.333333pt;}
.y13{bottom:628.693333pt;}
.y9a{bottom:629.493333pt;}
.y5d{bottom:631.573333pt;}
.yf7{bottom:634.053333pt;}
.ycb{bottom:640.293333pt;}
.y99{bottom:644.773333pt;}
.y12{bottom:646.373333pt;}
.y5c{bottom:646.853333pt;}
.yca{bottom:654.933333pt;}
.y98{bottom:659.573333pt;}
.y5b{bottom:662.213333pt;}
.yc9{bottom:664.773333pt;}
.yf6{bottom:669.813333pt;}
.y97{bottom:671.893333pt;}
.y11{bottom:676.293333pt;}
.y5a{bottom:677.573333pt;}
.yaf{bottom:681.840000pt;}
.yf5{bottom:682.293333pt;}
.y10{bottom:691.653333pt;}
.y59{bottom:692.853333pt;}
.yf{bottom:702.693333pt;}
.y58{bottom:708.213333pt;}
.ye{bottom:720.933333pt;}
.y57{bottom:723.573333pt;}
.y56{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y55{bottom:754.213333pt;}
.y54{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y53{bottom:784.853333pt;}
.y52{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.y51{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y50{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.y4f{bottom:846.213333pt;}
.y4e{bottom:861.493333pt;}
.y4d{bottom:876.853333pt;}
.y4c{bottom:892.240000pt;}
.y4b{bottom:907.520000pt;}
.y4a{bottom:922.880000pt;}
.y49{bottom:938.240000pt;}
.y48{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1f{height:12.240000pt;}
.h24{height:12.240133pt;}
.h1e{height:12.320000pt;}
.h10{height:15.360000pt;}
.h20{height:15.600000pt;}
.h15{height:17.840000pt;}
.h23{height:22.343750pt;}
.h1d{height:22.578125pt;}
.hd{height:24.131250pt;}
.h3{height:24.560000pt;}
.h5{height:29.717188pt;}
.h1c{height:30.028906pt;}
.h17{height:33.515625pt;}
.h18{height:33.867188pt;}
.h6{height:34.739844pt;}
.h13{height:35.554688pt;}
.h4{height:37.314062pt;}
.hf{height:37.705469pt;}
.h25{height:38.905781pt;}
.h14{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h1a{height:42.691250pt;}
.h1b{height:42.797917pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hc{height:47.856406pt;}
.h26{height:52.720000pt;}
.hb{height:60.283594pt;}
.he{height:67.031250pt;}
.ha{height:67.734375pt;}
.h27{height:81.600000pt;}
.h16{height:82.800000pt;}
.h19{height:105.600000pt;}
.h12{height:125.866667pt;}
.h7{height:136.826667pt;}
.h22{height:205.120000pt;}
.h21{height:284.160000pt;}
.h11{height:334.026667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w7{width:62.346667pt;}
.w13{width:72.720000pt;}
.w9{width:113.866667pt;}
.we{width:126.960000pt;}
.wf{width:126.986667pt;}
.w10{width:127.040000pt;}
.w11{width:127.066667pt;}
.wd{width:127.146667pt;}
.w8{width:185.760000pt;}
.w6{width:195.866667pt;}
.w14{width:247.306667pt;}
.wa{width:273.866667pt;}
.w12{width:320.666667pt;}
.w5{width:523.093333pt;}
.wb{width:630.160000pt;}
.w3{width:700.400000pt;}
.wc{width:710.640000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.920000pt;}
.x3{left:7.680000pt;}
.x11{left:17.920000pt;}
.x15{left:24.560000pt;}
.x1f{left:27.120000pt;}
.x1c{left:28.960000pt;}
.x13{left:30.320000pt;}
.x14{left:32.080000pt;}
.x30{left:33.546667pt;}
.x21{left:34.720000pt;}
.x2b{left:39.093333pt;}
.x6{left:40.480000pt;}
.x1b{left:42.800000pt;}
.x33{left:45.866667pt;}
.x2a{left:47.093333pt;}
.x2{left:47.999988pt;}
.x2e{left:51.680000pt;}
.x17{left:53.039988pt;}
.x1{left:53.999988pt;}
.x24{left:55.840000pt;}
.x16{left:58.159988pt;}
.x35{left:60.320000pt;}
.x1e{left:65.920000pt;}
.x23{left:72.880000pt;}
.x9{left:76.319988pt;}
.x3b{left:82.159988pt;}
.x41{left:84.080000pt;}
.x40{left:85.200000pt;}
.x20{left:86.960000pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.x22{left:103.520000pt;}
.x2c{left:121.626667pt;}
.xd{left:140.026655pt;}
.xe{left:144.346655pt;}
.x2f{left:147.040000pt;}
.x1a{left:152.106667pt;}
.x3a{left:164.346655pt;}
.xa{left:183.866655pt;}
.x27{left:203.306655pt;}
.x29{left:205.706655pt;}
.x34{left:216.906667pt;}
.x38{left:224.506655pt;}
.x32{left:227.466655pt;}
.xc{left:290.106655pt;}
.x19{left:338.506655pt;}
.x36{left:344.586667pt;}
.x8{left:408.026655pt;}
.x28{left:410.506655pt;}
.xb{left:412.586655pt;}
.xf{left:413.546655pt;}
.x18{left:425.093321pt;}
.x3c{left:430.213321pt;}
.x26{left:432.053321pt;}
.x3f{left:444.453333pt;}
.x1d{left:453.093333pt;}
.x3d{left:454.213321pt;}
.x3e{left:468.053321pt;}
.x37{left:472.213333pt;}
.x42{left:517.813333pt;}
.x10{left:570.853333pt;}
.x2d{left:599.866667pt;}
.x31{left:680.320000pt;}
.x7{left:722.160000pt;}
.x25{left:726.799988pt;}
.x39{left:765.199988pt;}
}




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