
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b2067d94ed9d68ffa325c72.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_575cda75c2f715e48413d076.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b2f63888d8f08cef746bf803.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_4eda97be4ad8792e22734a26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_c4bee6d4976369b6f5c749e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_0ebb0f65b2a7e0608b4c4019.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_f017bcbc9e1bd86f0323e57d.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.013320px;}
.ls18{letter-spacing:-0.009000px;}
.ls11{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.173520px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.324800px;}
.wse{word-spacing:-13.294800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.218840px;}
.wsf{word-spacing:-13.217400px;}
.wsc{word-spacing:-13.213080px;}
.wsd{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._5{margin-left:-4.286044px;}
._4{margin-left:-3.066000px;}
._0{margin-left:-1.110000px;}
._2{width:1.007315px;}
._7{width:2.152326px;}
._c{width:3.306600px;}
._3{width:4.629000px;}
._b{width:5.807525px;}
._a{width:6.906477px;}
._9{width:7.963800px;}
._12{width:9.527040px;}
._6{width:10.641000px;}
._f{width:11.784602px;}
._16{width:14.248440px;}
._8{width:15.871800px;}
._10{width:16.916639px;}
._14{width:19.194240px;}
._13{width:20.200320px;}
._11{width:21.583080px;}
._19{width:23.831280px;}
._1a{width:25.263000px;}
._1b{width:27.409067px;}
._1{width:28.435236px;}
._17{width:30.060000px;}
._e{width:34.989600px;}
._d{width:36.567360px;}
._15{width:107.554680px;}
._18{width:148.766400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:7.830000px;}
.y75{bottom:7.860000px;}
.y79{bottom:7.920000px;}
.yab{bottom:17.550000px;}
.ya5{bottom:25.380000px;}
.y88{bottom:25.470000px;}
.y74{bottom:25.500000px;}
.yaa{bottom:35.190000px;}
.y7f{bottom:44.910000px;}
.y8c{bottom:45.000000px;}
.y77{bottom:62.550000px;}
.y82{bottom:72.270000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y86{bottom:80.190000px;}
.y9f{bottom:89.820000px;}
.y7b{bottom:89.910000px;}
.y85{bottom:97.740000px;}
.y1{bottom:101.640000px;}
.y9e{bottom:107.460000px;}
.yb6{bottom:123.780000px;}
.y115{bottom:127.740000px;}
.y59{bottom:129.270000px;}
.yf0{bottom:131.250000px;}
.y84{bottom:132.420000px;}
.ya2{bottom:134.820000px;}
.yb5{bottom:141.330000px;}
.y28{bottom:142.500000px;}
.y114{bottom:145.380000px;}
.yef{bottom:148.800000px;}
.y142{bottom:154.110000px;}
.yb4{bottom:158.880000px;}
.y89{bottom:159.780000px;}
.y27{bottom:160.050000px;}
.y113{bottom:162.930000px;}
.y58{bottom:164.910000px;}
.y141{bottom:171.750000px;}
.yee{bottom:175.440000px;}
.yb3{bottom:176.520000px;}
.y26{bottom:177.600000px;}
.y140{bottom:189.300000px;}
.y112{bottom:189.840000px;}
.yb2{bottom:194.070000px;}
.y25{bottom:195.240000px;}
.y57{bottom:200.460000px;}
.y87{bottom:204.690000px;}
.yed{bottom:210.990000px;}
.yb1{bottom:211.620000px;}
.y24{bottom:212.790000px;}
.y13f{bottom:215.850000px;}
.y56{bottom:218.100000px;}
.y111{bottom:226.830000px;}
.yec{bottom:228.630000px;}
.y13e{bottom:233.490000px;}
.y55{bottom:235.650000px;}
.y110{bottom:244.470000px;}
.yb0{bottom:244.650000px;}
.yeb{bottom:246.180000px;}
.y23{bottom:248.340000px;}
.y81{bottom:249.600000px;}
.y54{bottom:253.200000px;}
.yd1{bottom:257.520000px;}
.y13d{bottom:260.040000px;}
.yea{bottom:263.730000px;}
.y22{bottom:265.980000px;}
.y53{bottom:270.840000px;}
.y10f{bottom:271.380000px;}
.yae{bottom:272.010000px;}
.yd0{bottom:275.070000px;}
.y7e{bottom:276.960000px;}
.y13c{bottom:277.680000px;}
.y21{bottom:283.530000px;}
.y52{bottom:288.390000px;}
.ycf{bottom:292.710000px;}
.y13b{bottom:295.230000px;}
.yaf{bottom:299.280000px;}
.ye9{bottom:299.370000px;}
.y20{bottom:301.170000px;}
.y83{bottom:304.320000px;}
.y51{bottom:305.940000px;}
.y10e{bottom:308.370000px;}
.yce{bottom:310.260000px;}
.y164{bottom:310.440000px;}
.ye8{bottom:316.920000px;}
.y1f{bottom:318.720000px;}
.y13a{bottom:321.780000px;}
.y50{bottom:323.580000px;}
.y10d{bottom:326.010000px;}
.yad{bottom:326.640000px;}
.ycd{bottom:327.810000px;}
.y163{bottom:327.990000px;}
.y80{bottom:331.590000px;}
.ye7{bottom:334.560000px;}
.y1e{bottom:336.270000px;}
.y139{bottom:339.420000px;}
.ycc{bottom:345.450000px;}
.y4f{bottom:350.130000px;}
.y10c{bottom:352.920000px;}
.y1d{bottom:353.910000px;}
.ya9{bottom:354.000000px;}
.y162{bottom:354.540000px;}
.y138{bottom:356.970000px;}
.y7a{bottom:358.950000px;}
.ycb{bottom:363.000000px;}
.ye6{bottom:370.110000px;}
.y1c{bottom:371.460000px;}
.y161{bottom:372.180000px;}
.yac{bottom:381.270000px;}
.y137{bottom:383.610000px;}
.y4e{bottom:385.770000px;}
.y76{bottom:386.310000px;}
.ye5{bottom:387.660000px;}
.y1b{bottom:389.100000px;}
.yca{bottom:389.640000px;}
.y10b{bottom:390.180000px;}
.y160{bottom:398.730000px;}
.y136{bottom:401.160000px;}
.y4d{bottom:403.320000px;}
.ye4{bottom:405.300000px;}
.y1a{bottom:406.650000px;}
.ya8{bottom:408.630000px;}
.y7c{bottom:413.670000px;}
.y15f{bottom:416.370000px;}
.y135{bottom:418.710000px;}
.y4c{bottom:420.870000px;}
.ye3{bottom:422.850000px;}
.y19{bottom:424.200000px;}
.yc9{bottom:425.190000px;}
.y15e{bottom:433.920000px;}
.y4b{bottom:438.510000px;}
.y78{bottom:440.940000px;}
.y134{bottom:445.350000px;}
.y18{bottom:451.110000px;}
.ya7{bottom:453.540000px;}
.y10a{bottom:456.060000px;}
.yc8{bottom:457.410000px;}
.ye2{bottom:458.490000px;}
.y15d{bottom:460.470000px;}
.y133{bottom:462.900000px;}
.y4a{bottom:465.060000px;}
.y73{bottom:468.300000px;}
.y109{bottom:473.730000px;}
.ye1{bottom:476.070000px;}
.y15c{bottom:478.140000px;}
.y132{bottom:480.480000px;}
.ya6{bottom:480.930000px;}
.y108{bottom:491.280000px;}
.ye0{bottom:493.620000px;}
.y17{bottom:499.470000px;}
.y49{bottom:500.730000px;}
.y15b{bottom:504.690000px;}
.y131{bottom:507.120000px;}
.y107{bottom:508.830000px;}
.ydf{bottom:511.260000px;}
.y16{bottom:517.380000px;}
.y48{bottom:518.280000px;}
.y15a{bottom:522.330000px;}
.y130{bottom:524.670000px;}
.ya1{bottom:525.840000px;}
.y106{bottom:526.470000px;}
.y72{bottom:534.660000px;}
.y47{bottom:535.830000px;}
.yde{bottom:537.810000px;}
.y12f{bottom:542.310000px;}
.y159{bottom:548.880000px;}
.y9d{bottom:553.200000px;}
.y105{bottom:553.380000px;}
.y15{bottom:554.370000px;}
.ydd{bottom:555.450000px;}
.y46{bottom:562.470000px;}
.y158{bottom:566.430000px;}
.y12e{bottom:568.860000px;}
.y71{bottom:570.210000px;}
.y14{bottom:571.920000px;}
.ya4{bottom:580.560000px;}
.y12d{bottom:586.410000px;}
.y70{bottom:587.760000px;}
.y13{bottom:589.560000px;}
.ydc{bottom:591.270000px;}
.y157{bottom:593.070000px;}
.y45{bottom:598.380000px;}
.y104{bottom:601.620000px;}
.y6f{bottom:605.400000px;}
.y12{bottom:607.110000px;}
.y156{bottom:610.620000px;}
.y12c{bottom:613.050000px;}
.y103{bottom:619.260000px;}
.y11{bottom:624.750000px;}
.ya3{bottom:625.470000px;}
.y155{bottom:628.260000px;}
.y12b{bottom:630.600000px;}
.y6e{bottom:631.950000px;}
.y102{bottom:636.810000px;}
.ydb{bottom:639.600000px;}
.y10{bottom:642.300000px;}
.y44{bottom:646.620000px;}
.y12a{bottom:648.240000px;}
.ya0{bottom:652.740000px;}
.y101{bottom:654.360000px;}
.y154{bottom:654.810000px;}
.yda{bottom:657.150000px;}
.yf{bottom:659.850000px;}
.y43{bottom:664.260000px;}
.y6d{bottom:667.590000px;}
.y100{bottom:672.000000px;}
.y153{bottom:672.360000px;}
.yd9{bottom:674.790000px;}
.ye{bottom:677.490000px;}
.y9c{bottom:680.100000px;}
.y42{bottom:681.810000px;}
.y6c{bottom:685.140000px;}
.yff{bottom:689.550000px;}
.y152{bottom:690.000000px;}
.y129{bottom:692.340000px;}
.yd{bottom:695.040000px;}
.y41{bottom:699.360000px;}
.yd8{bottom:701.340000px;}
.y6b{bottom:702.690000px;}
.yfe{bottom:707.190000px;}
.yc{bottom:712.680000px;}
.y151{bottom:716.550000px;}
.y128{bottom:718.980000px;}
.y6a{bottom:720.330000px;}
.yfd{bottom:724.740000px;}
.yb{bottom:730.230000px;}
.y150{bottom:734.190000px;}
.y40{bottom:735.000000px;}
.y127{bottom:736.530000px;}
.yd7{bottom:736.890000px;}
.yc7{bottom:737.520000px;}
.yfc{bottom:742.290000px;}
.y9b{bottom:746.430000px;}
.y69{bottom:746.880000px;}
.y14f{bottom:751.740000px;}
.y3f{bottom:752.550000px;}
.y126{bottom:754.170000px;}
.yd6{bottom:754.530000px;}
.yc6{bottom:755.160000px;}
.ya{bottom:757.140000px;}
.yfb{bottom:768.930000px;}
.y3e{bottom:770.190000px;}
.yd5{bottom:772.080000px;}
.yc5{bottom:772.710000px;}
.y14e{bottom:778.290000px;}
.y125{bottom:780.720000px;}
.y9a{bottom:781.980000px;}
.y68{bottom:782.520000px;}
.y3d{bottom:787.740000px;}
.yc4{bottom:790.350000px;}
.y14d{bottom:795.930000px;}
.y124{bottom:798.270000px;}
.yd4{bottom:798.720000px;}
.y99{bottom:799.530000px;}
.y67{bottom:800.070000px;}
.yfa{bottom:804.480000px;}
.y3c{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.yc3{bottom:807.900000px;}
.y14c{bottom:813.480000px;}
.y123{bottom:815.910000px;}
.y98{bottom:817.170000px;}
.y66{bottom:817.620000px;}
.yf9{bottom:822.030000px;}
.y3b{bottom:822.930000px;}
.yc2{bottom:825.450000px;}
.yd3{bottom:834.270000px;}
.y97{bottom:834.720000px;}
.y65{bottom:835.260000px;}
.yf8{bottom:839.670000px;}
.y14b{bottom:840.030000px;}
.y8{bottom:841.200000px;}
.y122{bottom:842.460000px;}
.yc1{bottom:843.090000px;}
.y64{bottom:852.810000px;}
.y14a{bottom:857.670000px;}
.y3a{bottom:858.480000px;}
.y121{bottom:860.100000px;}
.yc0{bottom:860.640000px;}
.y96{bottom:861.360000px;}
.yd2{bottom:866.490000px;}
.yf7{bottom:875.220000px;}
.y39{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y63{bottom:879.450000px;}
.y149{bottom:884.220000px;}
.y120{bottom:886.650000px;}
.ybf{bottom:887.190000px;}
.yf6{bottom:892.860000px;}
.y38{bottom:893.670000px;}
.y95{bottom:896.910000px;}
.y148{bottom:901.860000px;}
.y11f{bottom:904.200000px;}
.yf5{bottom:910.410000px;}
.y37{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y94{bottom:914.460000px;}
.y62{bottom:915.270000px;}
.ybe{bottom:919.860000px;}
.yf4{bottom:927.960000px;}
.y147{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.y11e{bottom:930.840000px;}
.y93{bottom:932.100000px;}
.y146{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.y11d{bottom:948.390000px;}
.y5{bottom:949.290000px;}
.y92{bottom:949.650000px;}
.ybd{bottom:955.410000px;}
.y61{bottom:963.600000px;}
.y11c{bottom:966.030000px;}
.y91{bottom:967.290000px;}
.y145{bottom:972.600000px;}
.ybc{bottom:972.960000px;}
.y60{bottom:981.150000px;}
.y34{bottom:981.960000px;}
.y90{bottom:984.840000px;}
.y4{bottom:987.630000px;}
.y144{bottom:990.150000px;}
.ybb{bottom:990.600000px;}
.y11b{bottom:992.580000px;}
.y5f{bottom:998.790000px;}
.y33{bottom:999.600000px;}
.y143{bottom:1007.790000px;}
.yba{bottom:1008.150000px;}
.y11a{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.y5e{bottom:1016.370000px;}
.y32{bottom:1017.180000px;}
.y8e{bottom:1017.810000px;}
.yb9{bottom:1025.820000px;}
.yf3{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.y119{bottom:1036.800000px;}
.y5d{bottom:1042.920000px;}
.yb8{bottom:1043.370000px;}
.y8b{bottom:1045.170000px;}
.yf2{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.yb7{bottom:1060.920000px;}
.y118{bottom:1063.710000px;}
.yf1{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y8f{bottom:1072.530000px;}
.y5c{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y5b{bottom:1096.110000px;}
.y8d{bottom:1099.890000px;}
.y2d{bottom:1105.110000px;}
.y117{bottom:1111.950000px;}
.y5a{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y8a{bottom:1127.160000px;}
.y116{bottom:1138.860000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.hd{height:26.640000px;}
.h15{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h14{height:44.100000px;}
.h11{height:44.190000px;}
.hb{height:44.220000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h16{height:53.910000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h17{height:59.973223px;}
.h18{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.hc{height:81.270000px;}
.he{height:108.630000px;}
.h10{height:116.460000px;}
.h12{height:126.180000px;}
.h13{height:153.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:51.750000px;}
.w13{width:59.760000px;}
.wa{width:60.030000px;}
.wf{width:60.750000px;}
.w5{width:61.290000px;}
.w11{width:76.260000px;}
.w7{width:76.890000px;}
.w14{width:95.490000px;}
.wb{width:96.030000px;}
.w10{width:96.210000px;}
.w6{width:96.840000px;}
.w12{width:99.540000px;}
.w4{width:99.900000px;}
.w9{width:100.350000px;}
.we{width:104.040000px;}
.wd{width:105.960000px;}
.w3{width:106.680000px;}
.wc{width:207.390000px;}
.w15{width:210.720000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.x5{left:176.250000px;}
.x2{left:202.799987px;}
.x6{left:276.870000px;}
.xd{left:280.200000px;}
.x15{left:305.309987px;}
.x13{left:320.339987px;}
.x7{left:338.880000px;}
.xe{left:341.670000px;}
.x8{left:436.440000px;}
.xf{left:438.600000px;}
.x9{left:514.050000px;}
.x10{left:515.580000px;}
.x12{left:534.389987px;}
.xa{left:566.520000px;}
.x11{left:568.140000px;}
.xb{left:667.680000px;}
.x14{left:681.809987px;}
.xc{left:728.430000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls18{letter-spacing:-0.008000pt;}
.ls11{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.154240pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.817600pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.750080pt;}
.wsf{word-spacing:-11.748800pt;}
.wsc{word-spacing:-11.744960pt;}
.wsd{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._5{margin-left:-3.809817pt;}
._4{margin-left:-2.725333pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.895391pt;}
._7{width:1.913178pt;}
._c{width:2.939200pt;}
._3{width:4.114666pt;}
._b{width:5.162244pt;}
._a{width:6.139091pt;}
._9{width:7.078934pt;}
._12{width:8.468480pt;}
._6{width:9.458666pt;}
._f{width:10.475202pt;}
._16{width:12.665280pt;}
._8{width:14.108267pt;}
._10{width:15.037012pt;}
._14{width:17.061547pt;}
._13{width:17.955840pt;}
._11{width:19.184960pt;}
._19{width:21.183360pt;}
._1a{width:22.456000pt;}
._1b{width:24.363615pt;}
._1{width:25.275765pt;}
._17{width:26.720000pt;}
._e{width:31.101866pt;}
._d{width:32.504320pt;}
._15{width:95.604160pt;}
._18{width:132.236800pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:6.960000pt;}
.y75{bottom:6.986667pt;}
.y79{bottom:7.040000pt;}
.yab{bottom:15.600000pt;}
.ya5{bottom:22.560000pt;}
.y88{bottom:22.640000pt;}
.y74{bottom:22.666667pt;}
.yaa{bottom:31.280000pt;}
.y7f{bottom:39.920000pt;}
.y8c{bottom:40.000000pt;}
.y77{bottom:55.600000pt;}
.y82{bottom:64.240000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y86{bottom:71.280000pt;}
.y9f{bottom:79.840000pt;}
.y7b{bottom:79.920000pt;}
.y85{bottom:86.880000pt;}
.y1{bottom:90.346667pt;}
.y9e{bottom:95.520000pt;}
.yb6{bottom:110.026667pt;}
.y115{bottom:113.546667pt;}
.y59{bottom:114.906667pt;}
.yf0{bottom:116.666667pt;}
.y84{bottom:117.706667pt;}
.ya2{bottom:119.840000pt;}
.yb5{bottom:125.626667pt;}
.y28{bottom:126.666667pt;}
.y114{bottom:129.226667pt;}
.yef{bottom:132.266667pt;}
.y142{bottom:136.986667pt;}
.yb4{bottom:141.226667pt;}
.y89{bottom:142.026667pt;}
.y27{bottom:142.266667pt;}
.y113{bottom:144.826667pt;}
.y58{bottom:146.586667pt;}
.y141{bottom:152.666667pt;}
.yee{bottom:155.946667pt;}
.yb3{bottom:156.906667pt;}
.y26{bottom:157.866667pt;}
.y140{bottom:168.266667pt;}
.y112{bottom:168.746667pt;}
.yb2{bottom:172.506667pt;}
.y25{bottom:173.546667pt;}
.y57{bottom:178.186667pt;}
.y87{bottom:181.946667pt;}
.yed{bottom:187.546667pt;}
.yb1{bottom:188.106667pt;}
.y24{bottom:189.146667pt;}
.y13f{bottom:191.866667pt;}
.y56{bottom:193.866667pt;}
.y111{bottom:201.626667pt;}
.yec{bottom:203.226667pt;}
.y13e{bottom:207.546667pt;}
.y55{bottom:209.466667pt;}
.y110{bottom:217.306667pt;}
.yb0{bottom:217.466667pt;}
.yeb{bottom:218.826667pt;}
.y23{bottom:220.746667pt;}
.y81{bottom:221.866667pt;}
.y54{bottom:225.066667pt;}
.yd1{bottom:228.906667pt;}
.y13d{bottom:231.146667pt;}
.yea{bottom:234.426667pt;}
.y22{bottom:236.426667pt;}
.y53{bottom:240.746667pt;}
.y10f{bottom:241.226667pt;}
.yae{bottom:241.786667pt;}
.yd0{bottom:244.506667pt;}
.y7e{bottom:246.186667pt;}
.y13c{bottom:246.826667pt;}
.y21{bottom:252.026667pt;}
.y52{bottom:256.346667pt;}
.ycf{bottom:260.186667pt;}
.y13b{bottom:262.426667pt;}
.yaf{bottom:266.026667pt;}
.ye9{bottom:266.106667pt;}
.y20{bottom:267.706667pt;}
.y83{bottom:270.506667pt;}
.y51{bottom:271.946667pt;}
.y10e{bottom:274.106667pt;}
.yce{bottom:275.786667pt;}
.y164{bottom:275.946667pt;}
.ye8{bottom:281.706667pt;}
.y1f{bottom:283.306667pt;}
.y13a{bottom:286.026667pt;}
.y50{bottom:287.626667pt;}
.y10d{bottom:289.786667pt;}
.yad{bottom:290.346667pt;}
.ycd{bottom:291.386667pt;}
.y163{bottom:291.546667pt;}
.y80{bottom:294.746667pt;}
.ye7{bottom:297.386667pt;}
.y1e{bottom:298.906667pt;}
.y139{bottom:301.706667pt;}
.ycc{bottom:307.066667pt;}
.y4f{bottom:311.226667pt;}
.y10c{bottom:313.706667pt;}
.y1d{bottom:314.586667pt;}
.ya9{bottom:314.666667pt;}
.y162{bottom:315.146667pt;}
.y138{bottom:317.306667pt;}
.y7a{bottom:319.066667pt;}
.ycb{bottom:322.666667pt;}
.ye6{bottom:328.986667pt;}
.y1c{bottom:330.186667pt;}
.y161{bottom:330.826667pt;}
.yac{bottom:338.906667pt;}
.y137{bottom:340.986667pt;}
.y4e{bottom:342.906667pt;}
.y76{bottom:343.386667pt;}
.ye5{bottom:344.586667pt;}
.y1b{bottom:345.866667pt;}
.yca{bottom:346.346667pt;}
.y10b{bottom:346.826667pt;}
.y160{bottom:354.426667pt;}
.y136{bottom:356.586667pt;}
.y4d{bottom:358.506667pt;}
.ye4{bottom:360.266667pt;}
.y1a{bottom:361.466667pt;}
.ya8{bottom:363.226667pt;}
.y7c{bottom:367.706667pt;}
.y15f{bottom:370.106667pt;}
.y135{bottom:372.186667pt;}
.y4c{bottom:374.106667pt;}
.ye3{bottom:375.866667pt;}
.y19{bottom:377.066667pt;}
.yc9{bottom:377.946667pt;}
.y15e{bottom:385.706667pt;}
.y4b{bottom:389.786667pt;}
.y78{bottom:391.946667pt;}
.y134{bottom:395.866667pt;}
.y18{bottom:400.986667pt;}
.ya7{bottom:403.146667pt;}
.y10a{bottom:405.386667pt;}
.yc8{bottom:406.586667pt;}
.ye2{bottom:407.546667pt;}
.y15d{bottom:409.306667pt;}
.y133{bottom:411.466667pt;}
.y4a{bottom:413.386667pt;}
.y73{bottom:416.266667pt;}
.y109{bottom:421.093333pt;}
.ye1{bottom:423.173333pt;}
.y15c{bottom:425.013333pt;}
.y132{bottom:427.093333pt;}
.ya6{bottom:427.493333pt;}
.y108{bottom:436.693333pt;}
.ye0{bottom:438.773333pt;}
.y17{bottom:443.973333pt;}
.y49{bottom:445.093333pt;}
.y15b{bottom:448.613333pt;}
.y131{bottom:450.773333pt;}
.y107{bottom:452.293333pt;}
.ydf{bottom:454.453333pt;}
.y16{bottom:459.893333pt;}
.y48{bottom:460.693333pt;}
.y15a{bottom:464.293333pt;}
.y130{bottom:466.373333pt;}
.ya1{bottom:467.413333pt;}
.y106{bottom:467.973333pt;}
.y72{bottom:475.253333pt;}
.y47{bottom:476.293333pt;}
.yde{bottom:478.053333pt;}
.y12f{bottom:482.053333pt;}
.y159{bottom:487.893333pt;}
.y9d{bottom:491.733333pt;}
.y105{bottom:491.893333pt;}
.y15{bottom:492.773333pt;}
.ydd{bottom:493.733333pt;}
.y46{bottom:499.973333pt;}
.y158{bottom:503.493333pt;}
.y12e{bottom:505.653333pt;}
.y71{bottom:506.853333pt;}
.y14{bottom:508.373333pt;}
.ya4{bottom:516.053333pt;}
.y12d{bottom:521.253333pt;}
.y70{bottom:522.453333pt;}
.y13{bottom:524.053333pt;}
.ydc{bottom:525.573333pt;}
.y157{bottom:527.173333pt;}
.y45{bottom:531.893333pt;}
.y104{bottom:534.773333pt;}
.y6f{bottom:538.133333pt;}
.y12{bottom:539.653333pt;}
.y156{bottom:542.773333pt;}
.y12c{bottom:544.933333pt;}
.y103{bottom:550.453333pt;}
.y11{bottom:555.333333pt;}
.ya3{bottom:555.973333pt;}
.y155{bottom:558.453333pt;}
.y12b{bottom:560.533333pt;}
.y6e{bottom:561.733333pt;}
.y102{bottom:566.053333pt;}
.ydb{bottom:568.533333pt;}
.y10{bottom:570.933333pt;}
.y44{bottom:574.773333pt;}
.y12a{bottom:576.213333pt;}
.ya0{bottom:580.213333pt;}
.y101{bottom:581.653333pt;}
.y154{bottom:582.053333pt;}
.yda{bottom:584.133333pt;}
.yf{bottom:586.533333pt;}
.y43{bottom:590.453333pt;}
.y6d{bottom:593.413333pt;}
.y100{bottom:597.333333pt;}
.y153{bottom:597.653333pt;}
.yd9{bottom:599.813333pt;}
.ye{bottom:602.213333pt;}
.y9c{bottom:604.533333pt;}
.y42{bottom:606.053333pt;}
.y6c{bottom:609.013333pt;}
.yff{bottom:612.933333pt;}
.y152{bottom:613.333333pt;}
.y129{bottom:615.413333pt;}
.yd{bottom:617.813333pt;}
.y41{bottom:621.653333pt;}
.yd8{bottom:623.413333pt;}
.y6b{bottom:624.613333pt;}
.yfe{bottom:628.613333pt;}
.yc{bottom:633.493333pt;}
.y151{bottom:636.933333pt;}
.y128{bottom:639.093333pt;}
.y6a{bottom:640.293333pt;}
.yfd{bottom:644.213333pt;}
.yb{bottom:649.093333pt;}
.y150{bottom:652.613333pt;}
.y40{bottom:653.333333pt;}
.y127{bottom:654.693333pt;}
.yd7{bottom:655.013333pt;}
.yc7{bottom:655.573333pt;}
.yfc{bottom:659.813333pt;}
.y9b{bottom:663.493333pt;}
.y69{bottom:663.893333pt;}
.y14f{bottom:668.213333pt;}
.y3f{bottom:668.933333pt;}
.y126{bottom:670.373333pt;}
.yd6{bottom:670.693333pt;}
.yc6{bottom:671.253333pt;}
.ya{bottom:673.013333pt;}
.yfb{bottom:683.493333pt;}
.y3e{bottom:684.613333pt;}
.yd5{bottom:686.293333pt;}
.yc5{bottom:686.853333pt;}
.y14e{bottom:691.813333pt;}
.y125{bottom:693.973333pt;}
.y9a{bottom:695.093333pt;}
.y68{bottom:695.573333pt;}
.y3d{bottom:700.213333pt;}
.yc4{bottom:702.533333pt;}
.y14d{bottom:707.493333pt;}
.y124{bottom:709.573333pt;}
.yd4{bottom:709.973333pt;}
.y99{bottom:710.693333pt;}
.y67{bottom:711.173333pt;}
.yfa{bottom:715.093333pt;}
.y3c{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.yc3{bottom:718.133333pt;}
.y14c{bottom:723.093333pt;}
.y123{bottom:725.253333pt;}
.y98{bottom:726.373333pt;}
.y66{bottom:726.773333pt;}
.yf9{bottom:730.693333pt;}
.y3b{bottom:731.493333pt;}
.yc2{bottom:733.733333pt;}
.yd3{bottom:741.573333pt;}
.y97{bottom:741.973333pt;}
.y65{bottom:742.453333pt;}
.yf8{bottom:746.373333pt;}
.y14b{bottom:746.693333pt;}
.y8{bottom:747.733333pt;}
.y122{bottom:748.853333pt;}
.yc1{bottom:749.413333pt;}
.y64{bottom:758.053333pt;}
.y14a{bottom:762.373333pt;}
.y3a{bottom:763.093333pt;}
.y121{bottom:764.533333pt;}
.yc0{bottom:765.013333pt;}
.y96{bottom:765.653333pt;}
.yd2{bottom:770.213333pt;}
.yf7{bottom:777.973333pt;}
.y39{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y63{bottom:781.733333pt;}
.y149{bottom:785.973333pt;}
.y120{bottom:788.133333pt;}
.ybf{bottom:788.613333pt;}
.yf6{bottom:793.653333pt;}
.y38{bottom:794.373333pt;}
.y95{bottom:797.253333pt;}
.y148{bottom:801.653333pt;}
.y11f{bottom:803.733333pt;}
.yf5{bottom:809.253333pt;}
.y37{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y94{bottom:812.853333pt;}
.y62{bottom:813.573333pt;}
.ybe{bottom:817.653333pt;}
.yf4{bottom:824.853333pt;}
.y147{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.y11e{bottom:827.413333pt;}
.y93{bottom:828.533333pt;}
.y146{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.y11d{bottom:843.013333pt;}
.y5{bottom:843.813333pt;}
.y92{bottom:844.133333pt;}
.ybd{bottom:849.253333pt;}
.y61{bottom:856.533333pt;}
.y11c{bottom:858.693333pt;}
.y91{bottom:859.813333pt;}
.y145{bottom:864.533333pt;}
.ybc{bottom:864.853333pt;}
.y60{bottom:872.133333pt;}
.y34{bottom:872.853333pt;}
.y90{bottom:875.413333pt;}
.y4{bottom:877.893333pt;}
.y144{bottom:880.133333pt;}
.ybb{bottom:880.533333pt;}
.y11b{bottom:882.293333pt;}
.y5f{bottom:887.813333pt;}
.y33{bottom:888.533333pt;}
.y143{bottom:895.813333pt;}
.yba{bottom:896.133333pt;}
.y11a{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.y5e{bottom:903.440000pt;}
.y32{bottom:904.160000pt;}
.y8e{bottom:904.720000pt;}
.yb9{bottom:911.840000pt;}
.yf3{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.y119{bottom:921.600000pt;}
.y5d{bottom:927.040000pt;}
.yb8{bottom:927.440000pt;}
.y8b{bottom:929.040000pt;}
.yf2{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.yb7{bottom:943.040000pt;}
.y118{bottom:945.520000pt;}
.yf1{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y8f{bottom:953.360000pt;}
.y5c{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y5b{bottom:974.320000pt;}
.y8d{bottom:977.680000pt;}
.y2d{bottom:982.320000pt;}
.y117{bottom:988.400000pt;}
.y5a{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y8a{bottom:1001.920000pt;}
.y116{bottom:1012.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.hd{height:23.680000pt;}
.h15{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h14{height:39.200000pt;}
.h11{height:39.280000pt;}
.hb{height:39.306667pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h16{height:47.920000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h17{height:53.309531pt;}
.h18{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.hc{height:72.240000pt;}
.he{height:96.560000pt;}
.h10{height:103.520000pt;}
.h12{height:112.160000pt;}
.h13{height:136.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:46.000000pt;}
.w13{width:53.120000pt;}
.wa{width:53.360000pt;}
.wf{width:54.000000pt;}
.w5{width:54.480000pt;}
.w11{width:67.786667pt;}
.w7{width:68.346667pt;}
.w14{width:84.880000pt;}
.wb{width:85.360000pt;}
.w10{width:85.520000pt;}
.w6{width:86.080000pt;}
.w12{width:88.480000pt;}
.w4{width:88.800000pt;}
.w9{width:89.200000pt;}
.we{width:92.480000pt;}
.wd{width:94.186667pt;}
.w3{width:94.826667pt;}
.wc{width:184.346667pt;}
.w15{width:187.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.x5{left:156.666667pt;}
.x2{left:180.266655pt;}
.x6{left:246.106667pt;}
.xd{left:249.066667pt;}
.x15{left:271.386655pt;}
.x13{left:284.746655pt;}
.x7{left:301.226667pt;}
.xe{left:303.706667pt;}
.x8{left:387.946667pt;}
.xf{left:389.866667pt;}
.x9{left:456.933333pt;}
.x10{left:458.293333pt;}
.x12{left:475.013322pt;}
.xa{left:503.573333pt;}
.x11{left:505.013333pt;}
.xb{left:593.493333pt;}
.x14{left:606.053322pt;}
.xc{left:647.493333pt;}
.x3{left:704.053322pt;}
}




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