
    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_c7e6b8915c13076b8b8b379a.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_174b50bc184b621045c52200.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_af13d0c121943e9ce0c25940.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_138bfc966ce35eb48bb56748.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_5e47f24edf2b68e96ee93f06.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_87ae8a6a549a19320d8cea1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_9e810bb69d370318cfb9ae9d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27d7ea911f914ce5c7e8ea59.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:6.588000px;}
.lse{letter-spacing:25.308000px;}
.lsd{letter-spacing:52.668000px;}
.ls9{letter-spacing:68.508000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-54.000000px;}
.ws5{word-spacing:-19.457280px;}
.wsa{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.518000px;}
.wsc{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.wse{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._9{width:2.874480px;}
._8{width:4.370400px;}
._a{width:6.252000px;}
._b{width:7.948080px;}
._c{width:8.959920px;}
._7{width:10.458000px;}
._e{width:12.366000px;}
._d{width:14.544000px;}
._f{width:15.966000px;}
._10{width:17.514000px;}
._1a{width:18.522000px;}
._1b{width:19.548000px;}
._17{width:20.574000px;}
._19{width:21.732000px;}
._18{width:22.734000px;}
._14{width:24.054000px;}
._13{width:25.110000px;}
._15{width:26.784000px;}
._16{width:27.972000px;}
._1e{width:29.538000px;}
._1c{width:30.618000px;}
._1d{width:32.022000px;}
._22{width:33.144000px;}
._12{width:34.506000px;}
._11{width:35.640000px;}
._21{width:37.314000px;}
._20{width:38.610000px;}
._23{width:44.118000px;}
._24{width:47.790000px;}
._1f{width:50.004000px;}
._3{width:78.192000px;}
._4{width:157.860000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
._6{width:1664.520000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y3a{bottom:-4.140000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.yef{bottom:9.750000px;}
.ydb{bottom:9.900000px;}
.ye3{bottom:10.065000px;}
.yf2{bottom:10.080000px;}
.yf0{bottom:10.110000px;}
.ydc{bottom:10.260000px;}
.ye4{bottom:13.845000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yf6{bottom:25.740000px;}
.ye2{bottom:32.385000px;}
.y5{bottom:39.780000px;}
.yf5{bottom:46.620000px;}
.yde{bottom:47.550000px;}
.ye1{bottom:54.705000px;}
.y1{bottom:60.660000px;}
.yf4{bottom:68.940000px;}
.y37{bottom:72.390000px;}
.ye0{bottom:77.250000px;}
.y36{bottom:92.190000px;}
.yf7{bottom:103.680000px;}
.y144{bottom:106.560000px;}
.y75{bottom:108.000000px;}
.y35{bottom:111.990000px;}
.yb0{bottom:116.100000px;}
.yf3{bottom:117.180000px;}
.y29{bottom:117.540000px;}
.y74{bottom:126.000000px;}
.y34{bottom:131.790000px;}
.y143{bottom:133.740000px;}
.yaf{bottom:133.920000px;}
.y73{bottom:143.820000px;}
.y119{bottom:145.440000px;}
.y28{bottom:146.700000px;}
.y33{bottom:151.590000px;}
.yae{bottom:151.740000px;}
.y2a{bottom:151.920000px;}
.y142{bottom:160.200000px;}
.y72{bottom:161.640000px;}
.y118{bottom:163.260000px;}
.yad{bottom:169.560000px;}
.y32{bottom:171.570000px;}
.y39{bottom:175.500000px;}
.yf1{bottom:176.040000px;}
.y71{bottom:179.460000px;}
.y117{bottom:181.260000px;}
.yac{bottom:187.380000px;}
.y141{bottom:190.080000px;}
.y31{bottom:191.370000px;}
.y70{bottom:197.280000px;}
.y27{bottom:199.440000px;}
.yee{bottom:203.580000px;}
.y38{bottom:204.300000px;}
.yab{bottom:205.200000px;}
.y116{bottom:208.110000px;}
.y30{bottom:211.170000px;}
.y140{bottom:213.330000px;}
.y6f{bottom:215.310000px;}
.yaa{bottom:223.230000px;}
.y115{bottom:225.930000px;}
.y2f{bottom:230.970000px;}
.y6e{bottom:233.130000px;}
.y26{bottom:234.390000px;}
.yed{bottom:236.550000px;}
.y13f{bottom:240.150000px;}
.ya9{bottom:241.050000px;}
.y114{bottom:243.750000px;}
.y2e{bottom:250.770000px;}
.y6d{bottom:250.950000px;}
.yec{bottom:254.370000px;}
.ya8{bottom:258.870000px;}
.y113{bottom:263.550000px;}
.y13e{bottom:266.970000px;}
.y6c{bottom:268.770000px;}
.y24{bottom:269.130000px;}
.y2d{bottom:270.750000px;}
.ya7{bottom:276.690000px;}
.ye8{bottom:281.550000px;}
.y6b{bottom:286.590000px;}
.y2c{bottom:290.550000px;}
.y13d{bottom:293.790000px;}
.y112{bottom:296.490000px;}
.ye7{bottom:299.370000px;}
.ya6{bottom:303.510000px;}
.y23{bottom:303.870000px;}
.yeb{bottom:308.370000px;}
.y25{bottom:309.450000px;}
.y6a{bottom:313.410000px;}
.y111{bottom:314.310000px;}
.ye6{bottom:317.190000px;}
.y13c{bottom:320.610000px;}
.y2b{bottom:320.835000px;}
.ya5{bottom:321.510000px;}
.y69{bottom:331.410000px;}
.y110{bottom:332.130000px;}
.yea{bottom:335.190000px;}
.y22{bottom:338.610000px;}
.ya4{bottom:339.330000px;}
.ye5{bottom:343.650000px;}
.y13b{bottom:347.610000px;}
.y68{bottom:349.230000px;}
.ye9{bottom:353.010000px;}
.ya3{bottom:357.150000px;}
.y10f{bottom:358.950000px;}
.ydf{bottom:366.165000px;}
.y67{bottom:367.050000px;}
.y20{bottom:371.550000px;}
.y13a{bottom:374.430000px;}
.ya2{bottom:374.970000px;}
.y10e{bottom:376.770000px;}
.y66{bottom:384.870000px;}
.y139{bottom:392.250000px;}
.ya1{bottom:392.790000px;}
.y10d{bottom:394.590000px;}
.ydd{bottom:395.865000px;}
.y1f{bottom:398.370000px;}
.y65{bottom:402.690000px;}
.y138{bottom:410.070000px;}
.ya0{bottom:410.610000px;}
.y64{bottom:420.690000px;}
.y10c{bottom:421.590000px;}
.y1e{bottom:425.190000px;}
.y9f{bottom:428.610000px;}
.y137{bottom:436.890000px;}
.y63{bottom:438.510000px;}
.y10b{bottom:439.410000px;}
.y9e{bottom:446.475000px;}
.y1d{bottom:452.055000px;}
.y136{bottom:454.935000px;}
.y10a{bottom:457.275000px;}
.yda{bottom:459.255000px;}
.y9d{bottom:464.295000px;}
.y62{bottom:465.375000px;}
.y135{bottom:472.755000px;}
.y109{bottom:475.095000px;}
.y1c{bottom:478.875000px;}
.y61{bottom:483.195000px;}
.yd9{bottom:490.935000px;}
.y9c{bottom:491.115000px;}
.y134{bottom:499.575000px;}
.y60{bottom:501.015000px;}
.y108{bottom:501.915000px;}
.y1b{bottom:505.515000px;}
.y21{bottom:505.875000px;}
.y9b{bottom:508.935000px;}
.y133{bottom:517.395000px;}
.yb9{bottom:517.575000px;}
.y5f{bottom:518.835000px;}
.y107{bottom:519.915000px;}
.yd8{bottom:525.675000px;}
.y9a{bottom:526.935000px;}
.y1a{bottom:533.955000px;}
.y132{bottom:535.215000px;}
.y5e{bottom:536.835000px;}
.y106{bottom:537.375000px;}
.yd7{bottom:543.495000px;}
.y99{bottom:544.755000px;}
.y5d{bottom:554.655000px;}
.y19{bottom:560.235000px;}
.yd6{bottom:560.955000px;}
.y131{bottom:562.035000px;}
.y98{bottom:562.575000px;}
.y105{bottom:564.555000px;}
.y5c{bottom:572.475000px;}
.y130{bottom:580.035000px;}
.y97{bottom:580.395000px;}
.y104{bottom:582.375000px;}
.yd5{bottom:588.315000px;}
.y5b{bottom:590.295000px;}
.y18{bottom:591.015000px;}
.y12f{bottom:597.855000px;}
.y96{bottom:598.215000px;}
.y103{bottom:600.195000px;}
.yd4{bottom:606.135000px;}
.y5a{bottom:608.115000px;}
.y95{bottom:616.035000px;}
.y102{bottom:618.015000px;}
.yd3{bottom:623.955000px;}
.y12e{bottom:624.675000px;}
.y59{bottom:626.115000px;}
.y94{bottom:634.035000px;}
.y101{bottom:637.995000px;}
.yd2{bottom:641.775000px;}
.y12d{bottom:642.495000px;}
.y58{bottom:643.935000px;}
.y17{bottom:647.355000px;}
.y93{bottom:651.855000px;}
.yd1{bottom:659.595000px;}
.y12c{bottom:660.315000px;}
.y57{bottom:661.755000px;}
.y92{bottom:669.675000px;}
.y100{bottom:670.755000px;}
.yd0{bottom:677.445000px;}
.y16{bottom:678.345000px;}
.y56{bottom:679.605000px;}
.y12b{bottom:687.165000px;}
.y91{bottom:687.525000px;}
.yff{bottom:688.605000px;}
.ycf{bottom:695.445000px;}
.y55{bottom:697.425000px;}
.yb8{bottom:704.985000px;}
.y12a{bottom:705.165000px;}
.y90{bottom:705.345000px;}
.yfe{bottom:706.425000px;}
.y15{bottom:709.125000px;}
.yce{bottom:713.265000px;}
.y54{bottom:715.245000px;}
.y129{bottom:722.985000px;}
.yfd{bottom:724.245000px;}
.ycd{bottom:731.085000px;}
.y8f{bottom:732.165000px;}
.y53{bottom:733.245000px;}
.yfc{bottom:742.245000px;}
.y128{bottom:749.805000px;}
.y14{bottom:749.985000px;}
.y8e{bottom:750.165000px;}
.ycc{bottom:757.905000px;}
.y52{bottom:760.065000px;}
.y127{bottom:767.625000px;}
.y8d{bottom:767.985000px;}
.ycb{bottom:775.725000px;}
.y51{bottom:777.885000px;}
.y126{bottom:785.445000px;}
.y8c{bottom:785.805000px;}
.yca{bottom:793.725000px;}
.y50{bottom:795.705000px;}
.y13{bottom:800.565000px;}
.y8b{bottom:803.625000px;}
.yc9{bottom:811.545000px;}
.y125{bottom:812.445000px;}
.y4f{bottom:813.525000px;}
.y8a{bottom:821.445000px;}
.y12{bottom:828.465000px;}
.yc8{bottom:829.365000px;}
.y124{bottom:830.265000px;}
.y4e{bottom:831.345000px;}
.y89{bottom:839.445000px;}
.yc7{bottom:847.185000px;}
.y123{bottom:848.085000px;}
.y4d{bottom:849.345000px;}
.y88{bottom:857.265000px;}
.yc6{bottom:865.005000px;}
.y122{bottom:865.905000px;}
.y4c{bottom:867.165000px;}
.y11{bottom:874.545000px;}
.y87{bottom:875.085000px;}
.yc5{bottom:882.825000px;}
.y4b{bottom:884.985000px;}
.y121{bottom:892.725000px;}
.y86{bottom:892.905000px;}
.yfb{bottom:893.985000px;}
.y10{bottom:899.745000px;}
.yc4{bottom:900.825000px;}
.y4a{bottom:902.805000px;}
.y120{bottom:910.590000px;}
.y85{bottom:910.770000px;}
.yfa{bottom:911.850000px;}
.yf{bottom:919.590000px;}
.y49{bottom:920.670000px;}
.y84{bottom:928.590000px;}
.yf9{bottom:929.670000px;}
.yb7{bottom:937.590000px;}
.ye{bottom:939.570000px;}
.y48{bottom:947.670000px;}
.yc3{bottom:953.430000px;}
.y11f{bottom:955.410000px;}
.y83{bottom:955.590000px;}
.yd{bottom:959.010000px;}
.y47{bottom:965.490000px;}
.yc2{bottom:971.250000px;}
.y11e{bottom:973.230000px;}
.y82{bottom:973.410000px;}
.yc{bottom:979.170000px;}
.y46{bottom:983.310000px;}
.yc1{bottom:989.070000px;}
.y11d{bottom:991.050000px;}
.y81{bottom:991.230000px;}
.y45{bottom:1001.130000px;}
.yc0{bottom:1007.070000px;}
.y80{bottom:1009.050000px;}
.y11c{bottom:1017.870000px;}
.y44{bottom:1018.950000px;}
.yb{bottom:1019.130000px;}
.y7f{bottom:1026.870000px;}
.ya{bottom:1031.190000px;}
.ybf{bottom:1033.890000px;}
.y11b{bottom:1035.870000px;}
.y43{bottom:1036.770000px;}
.y9{bottom:1043.250000px;}
.y7e{bottom:1044.870000px;}
.ybe{bottom:1051.350000px;}
.y11a{bottom:1053.690000px;}
.y8{bottom:1055.310000px;}
.yf8{bottom:1056.750000px;}
.yb6{bottom:1062.690000px;}
.y42{bottom:1063.770000px;}
.y7{bottom:1069.890000px;}
.y7d{bottom:1071.690000px;}
.ybd{bottom:1078.530000px;}
.yb5{bottom:1080.510000px;}
.y41{bottom:1081.590000px;}
.y7c{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.ybc{bottom:1096.530000px;}
.yb4{bottom:1098.330000px;}
.y40{bottom:1099.410000px;}
.y7b{bottom:1107.330000px;}
.ybb{bottom:1115.250000px;}
.yb3{bottom:1116.150000px;}
.y3f{bottom:1117.230000px;}
.y7a{bottom:1125.150000px;}
.yba{bottom:1133.070000px;}
.yb2{bottom:1133.970000px;}
.y3e{bottom:1135.050000px;}
.y79{bottom:1142.970000px;}
.yb1{bottom:1152.000000px;}
.y3d{bottom:1153.080000px;}
.y78{bottom:1161.000000px;}
.y3c{bottom:1170.900000px;}
.y77{bottom:1178.820000px;}
.y3b{bottom:1190.700000px;}
.y76{bottom:1196.640000px;}
.h18{height:25.365000px;}
.h1d{height:26.820000px;}
.h1c{height:26.856000px;}
.h1b{height:28.965000px;}
.h2{height:31.135500px;}
.h17{height:37.705078px;}
.h7{height:40.985156px;}
.hc{height:41.535703px;}
.h13{height:43.681992px;}
.h15{height:52.971680px;}
.h3{height:52.998047px;}
.hf{height:54.421875px;}
.h16{height:55.503491px;}
.h1f{height:57.955500px;}
.h12{height:58.621992px;}
.h8{height:58.651172px;}
.h14{height:58.763250px;}
.h9{height:60.226875px;}
.h19{height:62.661000px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.hb{height:72.326250px;}
.h20{height:76.317188px;}
.h10{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h1e{height:85.675500px;}
.h6{height:90.703125px;}
.h1a{height:92.361000px;}
.h11{height:348.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:79.770000px;}
.w9{width:79.905000px;}
.w3{width:80.310000px;}
.we{width:84.081000px;}
.wf{width:96.105000px;}
.wc{width:96.300000px;}
.w8{width:102.981000px;}
.wd{width:108.345000px;}
.w10{width:108.390000px;}
.w6{width:123.660000px;}
.w7{width:166.350000px;}
.w5{width:234.610500px;}
.wb{width:289.150500px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x14{left:10.800000px;}
.x28{left:22.320000px;}
.x29{left:24.660000px;}
.x33{left:26.805000px;}
.x22{left:29.160000px;}
.x35{left:30.600000px;}
.x2f{left:33.285000px;}
.x20{left:34.920000px;}
.x26{left:36.165000px;}
.x13{left:38.340000px;}
.x27{left:39.780000px;}
.x1e{left:42.870000px;}
.x1{left:45.364500px;}
.x34{left:48.060000px;}
.x15{left:49.140000px;}
.x19{left:51.124500px;}
.x5{left:54.000000px;}
.x1a{left:56.880000px;}
.x18{left:59.760000px;}
.x24{left:61.740000px;}
.x1c{left:66.810000px;}
.x25{left:71.490000px;}
.xb{left:75.060000px;}
.x36{left:81.000000px;}
.x23{left:90.391500px;}
.xf{left:92.556000px;}
.x32{left:93.811500px;}
.x37{left:108.036000px;}
.x2b{left:119.545500px;}
.xd{left:153.750000px;}
.xe{left:159.510000px;}
.x10{left:160.590000px;}
.x2{left:222.370500px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:297.795000px;}
.xc{left:312.555000px;}
.x11{left:314.355000px;}
.x2c{left:343.335000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x1b{left:410.835000px;}
.x2a{left:425.055000px;}
.x2d{left:440.400000px;}
.x12{left:473.505000px;}
.x16{left:500.505000px;}
.x17{left:527.505000px;}
.x2e{left:549.660000px;}
.x1d{left:577.920000px;}
.x30{left:634.470000px;}
.x1f{left:681.630000px;}
.x31{left:731.490000px;}
.x21{left:762.270000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:5.856000pt;}
.lse{letter-spacing:22.496000pt;}
.lsd{letter-spacing:46.816000pt;}
.ls9{letter-spacing:60.896000pt;}
.ws8{word-spacing:-48.000000pt;}
.ws5{word-spacing:-17.295360pt;}
.wsa{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.016000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._9{width:2.555093pt;}
._8{width:3.884800pt;}
._a{width:5.557333pt;}
._b{width:7.064960pt;}
._c{width:7.964373pt;}
._7{width:9.296000pt;}
._e{width:10.992000pt;}
._d{width:12.928000pt;}
._f{width:14.192000pt;}
._10{width:15.568000pt;}
._1a{width:16.464000pt;}
._1b{width:17.376000pt;}
._17{width:18.288000pt;}
._19{width:19.317333pt;}
._18{width:20.208000pt;}
._14{width:21.381333pt;}
._13{width:22.320000pt;}
._15{width:23.808000pt;}
._16{width:24.864000pt;}
._1e{width:26.256000pt;}
._1c{width:27.216000pt;}
._1d{width:28.464000pt;}
._22{width:29.461333pt;}
._12{width:30.672000pt;}
._11{width:31.680000pt;}
._21{width:33.168000pt;}
._20{width:34.320000pt;}
._23{width:39.216000pt;}
._24{width:42.480000pt;}
._1f{width:44.448000pt;}
._3{width:69.504000pt;}
._4{width:140.320000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
._6{width:1479.573333pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y3a{bottom:-3.680000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.yef{bottom:8.666667pt;}
.ydb{bottom:8.800000pt;}
.ye3{bottom:8.946667pt;}
.yf2{bottom:8.960000pt;}
.yf0{bottom:8.986667pt;}
.ydc{bottom:9.120000pt;}
.ye4{bottom:12.306667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yf6{bottom:22.880000pt;}
.ye2{bottom:28.786667pt;}
.y5{bottom:35.360000pt;}
.yf5{bottom:41.440000pt;}
.yde{bottom:42.266667pt;}
.ye1{bottom:48.626667pt;}
.y1{bottom:53.920000pt;}
.yf4{bottom:61.280000pt;}
.y37{bottom:64.346667pt;}
.ye0{bottom:68.666667pt;}
.y36{bottom:81.946667pt;}
.yf7{bottom:92.160000pt;}
.y144{bottom:94.720000pt;}
.y75{bottom:96.000000pt;}
.y35{bottom:99.546667pt;}
.yb0{bottom:103.200000pt;}
.yf3{bottom:104.160000pt;}
.y29{bottom:104.480000pt;}
.y74{bottom:112.000000pt;}
.y34{bottom:117.146667pt;}
.y143{bottom:118.880000pt;}
.yaf{bottom:119.040000pt;}
.y73{bottom:127.840000pt;}
.y119{bottom:129.280000pt;}
.y28{bottom:130.400000pt;}
.y33{bottom:134.746667pt;}
.yae{bottom:134.880000pt;}
.y2a{bottom:135.040000pt;}
.y142{bottom:142.400000pt;}
.y72{bottom:143.680000pt;}
.y118{bottom:145.120000pt;}
.yad{bottom:150.720000pt;}
.y32{bottom:152.506667pt;}
.y39{bottom:156.000000pt;}
.yf1{bottom:156.480000pt;}
.y71{bottom:159.520000pt;}
.y117{bottom:161.120000pt;}
.yac{bottom:166.560000pt;}
.y141{bottom:168.960000pt;}
.y31{bottom:170.106667pt;}
.y70{bottom:175.360000pt;}
.y27{bottom:177.280000pt;}
.yee{bottom:180.960000pt;}
.y38{bottom:181.600000pt;}
.yab{bottom:182.400000pt;}
.y116{bottom:184.986667pt;}
.y30{bottom:187.706667pt;}
.y140{bottom:189.626667pt;}
.y6f{bottom:191.386667pt;}
.yaa{bottom:198.426667pt;}
.y115{bottom:200.826667pt;}
.y2f{bottom:205.306667pt;}
.y6e{bottom:207.226667pt;}
.y26{bottom:208.346667pt;}
.yed{bottom:210.266667pt;}
.y13f{bottom:213.466667pt;}
.ya9{bottom:214.266667pt;}
.y114{bottom:216.666667pt;}
.y2e{bottom:222.906667pt;}
.y6d{bottom:223.066667pt;}
.yec{bottom:226.106667pt;}
.ya8{bottom:230.106667pt;}
.y113{bottom:234.266667pt;}
.y13e{bottom:237.306667pt;}
.y6c{bottom:238.906667pt;}
.y24{bottom:239.226667pt;}
.y2d{bottom:240.666667pt;}
.ya7{bottom:245.946667pt;}
.ye8{bottom:250.266667pt;}
.y6b{bottom:254.746667pt;}
.y2c{bottom:258.266667pt;}
.y13d{bottom:261.146667pt;}
.y112{bottom:263.546667pt;}
.ye7{bottom:266.106667pt;}
.ya6{bottom:269.786667pt;}
.y23{bottom:270.106667pt;}
.yeb{bottom:274.106667pt;}
.y25{bottom:275.066667pt;}
.y6a{bottom:278.586667pt;}
.y111{bottom:279.386667pt;}
.ye6{bottom:281.946667pt;}
.y13c{bottom:284.986667pt;}
.y2b{bottom:285.186667pt;}
.ya5{bottom:285.786667pt;}
.y69{bottom:294.586667pt;}
.y110{bottom:295.226667pt;}
.yea{bottom:297.946667pt;}
.y22{bottom:300.986667pt;}
.ya4{bottom:301.626667pt;}
.ye5{bottom:305.466667pt;}
.y13b{bottom:308.986667pt;}
.y68{bottom:310.426667pt;}
.ye9{bottom:313.786667pt;}
.ya3{bottom:317.466667pt;}
.y10f{bottom:319.066667pt;}
.ydf{bottom:325.480000pt;}
.y67{bottom:326.266667pt;}
.y20{bottom:330.266667pt;}
.y13a{bottom:332.826667pt;}
.ya2{bottom:333.306667pt;}
.y10e{bottom:334.906667pt;}
.y66{bottom:342.106667pt;}
.y139{bottom:348.666667pt;}
.ya1{bottom:349.146667pt;}
.y10d{bottom:350.746667pt;}
.ydd{bottom:351.880000pt;}
.y1f{bottom:354.106667pt;}
.y65{bottom:357.946667pt;}
.y138{bottom:364.506667pt;}
.ya0{bottom:364.986667pt;}
.y64{bottom:373.946667pt;}
.y10c{bottom:374.746667pt;}
.y1e{bottom:377.946667pt;}
.y9f{bottom:380.986667pt;}
.y137{bottom:388.346667pt;}
.y63{bottom:389.786667pt;}
.y10b{bottom:390.586667pt;}
.y9e{bottom:396.866667pt;}
.y1d{bottom:401.826667pt;}
.y136{bottom:404.386667pt;}
.y10a{bottom:406.466667pt;}
.yda{bottom:408.226667pt;}
.y9d{bottom:412.706667pt;}
.y62{bottom:413.666667pt;}
.y135{bottom:420.226667pt;}
.y109{bottom:422.306667pt;}
.y1c{bottom:425.666667pt;}
.y61{bottom:429.506667pt;}
.yd9{bottom:436.386667pt;}
.y9c{bottom:436.546667pt;}
.y134{bottom:444.066667pt;}
.y60{bottom:445.346667pt;}
.y108{bottom:446.146667pt;}
.y1b{bottom:449.346667pt;}
.y21{bottom:449.666667pt;}
.y9b{bottom:452.386667pt;}
.y133{bottom:459.906667pt;}
.yb9{bottom:460.066667pt;}
.y5f{bottom:461.186667pt;}
.y107{bottom:462.146667pt;}
.yd8{bottom:467.266667pt;}
.y9a{bottom:468.386667pt;}
.y1a{bottom:474.626667pt;}
.y132{bottom:475.746667pt;}
.y5e{bottom:477.186667pt;}
.y106{bottom:477.666667pt;}
.yd7{bottom:483.106667pt;}
.y99{bottom:484.226667pt;}
.y5d{bottom:493.026667pt;}
.y19{bottom:497.986667pt;}
.yd6{bottom:498.626667pt;}
.y131{bottom:499.586667pt;}
.y98{bottom:500.066667pt;}
.y105{bottom:501.826667pt;}
.y5c{bottom:508.866667pt;}
.y130{bottom:515.586667pt;}
.y97{bottom:515.906667pt;}
.y104{bottom:517.666667pt;}
.yd5{bottom:522.946667pt;}
.y5b{bottom:524.706667pt;}
.y18{bottom:525.346667pt;}
.y12f{bottom:531.426667pt;}
.y96{bottom:531.746667pt;}
.y103{bottom:533.506667pt;}
.yd4{bottom:538.786667pt;}
.y5a{bottom:540.546667pt;}
.y95{bottom:547.586667pt;}
.y102{bottom:549.346667pt;}
.yd3{bottom:554.626667pt;}
.y12e{bottom:555.266667pt;}
.y59{bottom:556.546667pt;}
.y94{bottom:563.586667pt;}
.y101{bottom:567.106667pt;}
.yd2{bottom:570.466667pt;}
.y12d{bottom:571.106667pt;}
.y58{bottom:572.386667pt;}
.y17{bottom:575.426667pt;}
.y93{bottom:579.426667pt;}
.yd1{bottom:586.306667pt;}
.y12c{bottom:586.946667pt;}
.y57{bottom:588.226667pt;}
.y92{bottom:595.266667pt;}
.y100{bottom:596.226667pt;}
.yd0{bottom:602.173333pt;}
.y16{bottom:602.973333pt;}
.y56{bottom:604.093333pt;}
.y12b{bottom:610.813333pt;}
.y91{bottom:611.133333pt;}
.yff{bottom:612.093333pt;}
.ycf{bottom:618.173333pt;}
.y55{bottom:619.933333pt;}
.yb8{bottom:626.653333pt;}
.y12a{bottom:626.813333pt;}
.y90{bottom:626.973333pt;}
.yfe{bottom:627.933333pt;}
.y15{bottom:630.333333pt;}
.yce{bottom:634.013333pt;}
.y54{bottom:635.773333pt;}
.y129{bottom:642.653333pt;}
.yfd{bottom:643.773333pt;}
.ycd{bottom:649.853333pt;}
.y8f{bottom:650.813333pt;}
.y53{bottom:651.773333pt;}
.yfc{bottom:659.773333pt;}
.y128{bottom:666.493333pt;}
.y14{bottom:666.653333pt;}
.y8e{bottom:666.813333pt;}
.ycc{bottom:673.693333pt;}
.y52{bottom:675.613333pt;}
.y127{bottom:682.333333pt;}
.y8d{bottom:682.653333pt;}
.ycb{bottom:689.533333pt;}
.y51{bottom:691.453333pt;}
.y126{bottom:698.173333pt;}
.y8c{bottom:698.493333pt;}
.yca{bottom:705.533333pt;}
.y50{bottom:707.293333pt;}
.y13{bottom:711.613333pt;}
.y8b{bottom:714.333333pt;}
.yc9{bottom:721.373333pt;}
.y125{bottom:722.173333pt;}
.y4f{bottom:723.133333pt;}
.y8a{bottom:730.173333pt;}
.y12{bottom:736.413333pt;}
.yc8{bottom:737.213333pt;}
.y124{bottom:738.013333pt;}
.y4e{bottom:738.973333pt;}
.y89{bottom:746.173333pt;}
.yc7{bottom:753.053333pt;}
.y123{bottom:753.853333pt;}
.y4d{bottom:754.973333pt;}
.y88{bottom:762.013333pt;}
.yc6{bottom:768.893333pt;}
.y122{bottom:769.693333pt;}
.y4c{bottom:770.813333pt;}
.y11{bottom:777.373333pt;}
.y87{bottom:777.853333pt;}
.yc5{bottom:784.733333pt;}
.y4b{bottom:786.653333pt;}
.y121{bottom:793.533333pt;}
.y86{bottom:793.693333pt;}
.yfb{bottom:794.653333pt;}
.y10{bottom:799.773333pt;}
.yc4{bottom:800.733333pt;}
.y4a{bottom:802.493333pt;}
.y120{bottom:809.413333pt;}
.y85{bottom:809.573333pt;}
.yfa{bottom:810.533333pt;}
.yf{bottom:817.413333pt;}
.y49{bottom:818.373333pt;}
.y84{bottom:825.413333pt;}
.yf9{bottom:826.373333pt;}
.yb7{bottom:833.413333pt;}
.ye{bottom:835.173333pt;}
.y48{bottom:842.373333pt;}
.yc3{bottom:847.493333pt;}
.y11f{bottom:849.253333pt;}
.y83{bottom:849.413333pt;}
.yd{bottom:852.453333pt;}
.y47{bottom:858.213333pt;}
.yc2{bottom:863.333333pt;}
.y11e{bottom:865.093333pt;}
.y82{bottom:865.253333pt;}
.yc{bottom:870.373333pt;}
.y46{bottom:874.053333pt;}
.yc1{bottom:879.173333pt;}
.y11d{bottom:880.933333pt;}
.y81{bottom:881.093333pt;}
.y45{bottom:889.893333pt;}
.yc0{bottom:895.173333pt;}
.y80{bottom:896.933333pt;}
.y11c{bottom:904.773333pt;}
.y44{bottom:905.733333pt;}
.yb{bottom:905.893333pt;}
.y7f{bottom:912.773333pt;}
.ya{bottom:916.613333pt;}
.ybf{bottom:919.013333pt;}
.y11b{bottom:920.773333pt;}
.y43{bottom:921.573333pt;}
.y9{bottom:927.333333pt;}
.y7e{bottom:928.773333pt;}
.ybe{bottom:934.533333pt;}
.y11a{bottom:936.613333pt;}
.y8{bottom:938.053333pt;}
.yf8{bottom:939.333333pt;}
.yb6{bottom:944.613333pt;}
.y42{bottom:945.573333pt;}
.y7{bottom:951.013333pt;}
.y7d{bottom:952.613333pt;}
.ybd{bottom:958.693333pt;}
.yb5{bottom:960.453333pt;}
.y41{bottom:961.413333pt;}
.y7c{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.ybc{bottom:974.693333pt;}
.yb4{bottom:976.293333pt;}
.y40{bottom:977.253333pt;}
.y7b{bottom:984.293333pt;}
.ybb{bottom:991.333333pt;}
.yb3{bottom:992.133333pt;}
.y3f{bottom:993.093333pt;}
.y7a{bottom:1000.133333pt;}
.yba{bottom:1007.173333pt;}
.yb2{bottom:1007.973333pt;}
.y3e{bottom:1008.933333pt;}
.y79{bottom:1015.973333pt;}
.yb1{bottom:1024.000000pt;}
.y3d{bottom:1024.960000pt;}
.y78{bottom:1032.000000pt;}
.y3c{bottom:1040.800000pt;}
.y77{bottom:1047.840000pt;}
.y3b{bottom:1058.400000pt;}
.y76{bottom:1063.680000pt;}
.h18{height:22.546667pt;}
.h1d{height:23.840000pt;}
.h1c{height:23.872000pt;}
.h1b{height:25.746667pt;}
.h2{height:27.676000pt;}
.h17{height:33.515625pt;}
.h7{height:36.431250pt;}
.hc{height:36.920625pt;}
.h13{height:38.828437pt;}
.h15{height:47.085938pt;}
.h3{height:47.109375pt;}
.hf{height:48.375000pt;}
.h16{height:49.336436pt;}
.h1f{height:51.516000pt;}
.h12{height:52.108438pt;}
.h8{height:52.134375pt;}
.h14{height:52.234000pt;}
.h9{height:53.535000pt;}
.h19{height:55.698667pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.hb{height:64.290000pt;}
.h20{height:67.837500pt;}
.h10{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h1e{height:76.156000pt;}
.h6{height:80.625000pt;}
.h1a{height:82.098667pt;}
.h11{height:309.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:70.906667pt;}
.w9{width:71.026667pt;}
.w3{width:71.386667pt;}
.we{width:74.738667pt;}
.wf{width:85.426667pt;}
.wc{width:85.600000pt;}
.w8{width:91.538667pt;}
.wd{width:96.306667pt;}
.w10{width:96.346667pt;}
.w6{width:109.920000pt;}
.w7{width:147.866667pt;}
.w5{width:208.542667pt;}
.wb{width:257.022667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x14{left:9.600000pt;}
.x28{left:19.840000pt;}
.x29{left:21.920000pt;}
.x33{left:23.826667pt;}
.x22{left:25.920000pt;}
.x35{left:27.200000pt;}
.x2f{left:29.586667pt;}
.x20{left:31.040000pt;}
.x26{left:32.146667pt;}
.x13{left:34.080000pt;}
.x27{left:35.360000pt;}
.x1e{left:38.106667pt;}
.x1{left:40.324000pt;}
.x34{left:42.720000pt;}
.x15{left:43.680000pt;}
.x19{left:45.444000pt;}
.x5{left:48.000000pt;}
.x1a{left:50.560000pt;}
.x18{left:53.120000pt;}
.x24{left:54.880000pt;}
.x1c{left:59.386667pt;}
.x25{left:63.546667pt;}
.xb{left:66.720000pt;}
.x36{left:72.000000pt;}
.x23{left:80.348000pt;}
.xf{left:82.272000pt;}
.x32{left:83.388000pt;}
.x37{left:96.032000pt;}
.x2b{left:106.262667pt;}
.xd{left:136.666667pt;}
.xe{left:141.786667pt;}
.x10{left:142.746667pt;}
.x2{left:197.662667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:264.706667pt;}
.xc{left:277.826667pt;}
.x11{left:279.426667pt;}
.x2c{left:305.186667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x1b{left:365.186667pt;}
.x2a{left:377.826667pt;}
.x2d{left:391.466667pt;}
.x12{left:420.893333pt;}
.x16{left:444.893333pt;}
.x17{left:468.893333pt;}
.x2e{left:488.586667pt;}
.x1d{left:513.706667pt;}
.x30{left:563.973333pt;}
.x1f{left:605.893333pt;}
.x31{left:650.213333pt;}
.x21{left:677.573333pt;}
.x4{left:682.213333pt;}
}




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