
    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_334f9794edabf884d65e2a00.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6afe1f1dbd30b8aaecbbf63d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_889eae1b32feeb3d0170345f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc33448c7a58335085c7cfe2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3a8097092d5a405ddbc53055.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3f68fcaf9fcc70c81a765282.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c23a756088f55503f5baf783.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.233280px;}
.ls11{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.360000px;}
.ls13{letter-spacing:12.420000px;}
.ls12{letter-spacing:13.140000px;}
.lsb{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.ls8{letter-spacing:64.026720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.093600px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-2.093040px;}
._0{margin-left:-1.080000px;}
._11{width:1.146480px;}
._1{width:2.220000px;}
._12{width:3.243600px;}
._13{width:5.106480px;}
._15{width:6.985200px;}
._14{width:8.246880px;}
._18{width:9.610320px;}
._6{width:10.800000px;}
._17{width:12.131280px;}
._1a{width:13.356240px;}
._19{width:16.143120px;}
._16{width:17.199840px;}
._f{width:18.948000px;}
._1b{width:20.856240px;}
._24{width:22.159920px;}
._21{width:38.175600px;}
._22{width:39.501360px;}
._26{width:70.344720px;}
._25{width:71.377200px;}
._7{width:76.284960px;}
._1e{width:78.044160px;}
._20{width:79.540560px;}
._23{width:96.169440px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._1d{width:256.525680px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._1f{width:605.377200px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.ya7{bottom:5.940000px;}
.yf8{bottom:11.520000px;}
.y6{bottom:12.420000px;}
.yfa{bottom:16.560000px;}
.y8{bottom:18.180000px;}
.y10c{bottom:25.560000px;}
.yfd{bottom:25.605000px;}
.yfe{bottom:25.740000px;}
.yef{bottom:31.500000px;}
.y102{bottom:35.640000px;}
.yc{bottom:38.520000px;}
.y5{bottom:40.320000px;}
.yfc{bottom:45.540000px;}
.y101{bottom:45.900000px;}
.yb{bottom:60.300000px;}
.y100{bottom:65.700000px;}
.y4{bottom:68.400000px;}
.yd{bottom:78.480000px;}
.ya{bottom:82.080000px;}
.y3{bottom:96.330000px;}
.ycf{bottom:102.600000px;}
.y3b{bottom:106.560000px;}
.ya5{bottom:109.260000px;}
.y11f{bottom:112.320000px;}
.y6a{bottom:114.480000px;}
.y11c{bottom:114.660000px;}
.y93{bottom:121.680000px;}
.yce{bottom:123.120000px;}
.y2{bottom:125.670000px;}
.y3a{bottom:126.360000px;}
.ya4{bottom:129.060000px;}
.y11e{bottom:132.120000px;}
.y69{bottom:134.460000px;}
.yf6{bottom:139.500000px;}
.y92{bottom:141.660000px;}
.ycd{bottom:143.640000px;}
.y39{bottom:146.340000px;}
.ya3{bottom:148.860000px;}
.y11d{bottom:151.950000px;}
.y68{bottom:154.290000px;}
.yf5{bottom:159.330000px;}
.y91{bottom:161.490000px;}
.ycc{bottom:164.370000px;}
.y38{bottom:166.170000px;}
.ya2{bottom:168.690000px;}
.y67{bottom:174.090000px;}
.y11b{bottom:174.270000px;}
.yf4{bottom:179.130000px;}
.ycb{bottom:184.890000px;}
.y37{bottom:185.970000px;}
.ya1{bottom:188.670000px;}
.y90{bottom:190.290000px;}
.y66{bottom:193.890000px;}
.y11a{bottom:194.070000px;}
.yf3{bottom:199.110000px;}
.yca{bottom:205.410000px;}
.y36{bottom:205.770000px;}
.ya0{bottom:208.470000px;}
.y8f{bottom:211.170000px;}
.y65{bottom:213.690000px;}
.y119{bottom:213.870000px;}
.yf2{bottom:218.910000px;}
.y35{bottom:225.570000px;}
.yc9{bottom:226.110000px;}
.y9f{bottom:228.270000px;}
.y8e{bottom:232.050000px;}
.y64{bottom:233.670000px;}
.yf1{bottom:238.710000px;}
.y34{bottom:245.550000px;}
.yc8{bottom:246.630000px;}
.y9e{bottom:248.070000px;}
.y8d{bottom:253.110000px;}
.y63{bottom:253.470000px;}
.yee{bottom:256.530000px;}
.y33{bottom:265.350000px;}
.yc7{bottom:267.330000px;}
.y9d{bottom:267.870000px;}
.y62{bottom:273.270000px;}
.y118{bottom:273.450000px;}
.y8c{bottom:273.990000px;}
.yf0{bottom:282.270000px;}
.y32{bottom:285.150000px;}
.y8b{bottom:288.750000px;}
.yc6{bottom:291.090000px;}
.y61{bottom:293.070000px;}
.y117{bottom:293.250000px;}
.y9c{bottom:296.850000px;}
.y31{bottom:304.950000px;}
.yed{bottom:308.190000px;}
.yc5{bottom:308.370000px;}
.y8a{bottom:309.270000px;}
.y60{bottom:312.870000px;}
.y116{bottom:313.050000px;}
.y9b{bottom:316.650000px;}
.y30{bottom:324.750000px;}
.yc4{bottom:328.170000px;}
.y89{bottom:329.970000px;}
.y5f{bottom:332.850000px;}
.yec{bottom:333.930000px;}
.y9a{bottom:336.450000px;}
.y2f{bottom:344.730000px;}
.yc3{bottom:347.970000px;}
.y5e{bottom:352.650000px;}
.y88{bottom:356.250000px;}
.yeb{bottom:363.450000px;}
.y2e{bottom:364.530000px;}
.yc2{bottom:367.770000px;}
.y5d{bottom:372.450000px;}
.y115{bottom:372.630000px;}
.y87{bottom:376.050000px;}
.yea{bottom:383.250000px;}
.yc1{bottom:387.570000px;}
.y5c{bottom:392.250000px;}
.y114{bottom:392.430000px;}
.y2d{bottom:393.330000px;}
.y86{bottom:396.030000px;}
.ye9{bottom:403.095000px;}
.yc0{bottom:404.895000px;}
.y5b{bottom:412.095000px;}
.y113{bottom:412.275000px;}
.y2c{bottom:413.175000px;}
.y85{bottom:415.875000px;}
.ybf{bottom:419.655000px;}
.ye8{bottom:422.895000px;}
.y5a{bottom:432.075000px;}
.y2b{bottom:432.975000px;}
.y84{bottom:435.675000px;}
.ybe{bottom:440.355000px;}
.ye7{bottom:442.695000px;}
.y99{bottom:444.675000px;}
.y59{bottom:451.875000px;}
.y2a{bottom:452.955000px;}
.ybd{bottom:460.875000px;}
.ye6{bottom:462.675000px;}
.y83{bottom:464.475000px;}
.y58{bottom:471.675000px;}
.y112{bottom:471.855000px;}
.y29{bottom:472.755000px;}
.y98{bottom:473.475000px;}
.ye5{bottom:479.595000px;}
.ybc{bottom:481.395000px;}
.y82{bottom:484.275000px;}
.y111{bottom:486.615000px;}
.y57{bottom:491.475000px;}
.y28{bottom:492.555000px;}
.y97{bottom:493.275000px;}
.ybb{bottom:502.095000px;}
.y81{bottom:504.255000px;}
.ye4{bottom:504.795000px;}
.y110{bottom:507.135000px;}
.y56{bottom:511.275000px;}
.y27{bottom:512.355000px;}
.y96{bottom:513.255000px;}
.yba{bottom:522.615000px;}
.y80{bottom:524.055000px;}
.y10f{bottom:527.655000px;}
.ye3{bottom:529.815000px;}
.y55{bottom:531.255000px;}
.y26{bottom:532.155000px;}
.y95{bottom:533.055000px;}
.yb9{bottom:543.315000px;}
.y10e{bottom:548.355000px;}
.y54{bottom:551.055000px;}
.y25{bottom:552.135000px;}
.y7f{bottom:552.855000px;}
.ye2{bottom:554.835000px;}
.yb8{bottom:563.835000px;}
.y10d{bottom:568.875000px;}
.y53{bottom:570.855000px;}
.y24{bottom:571.935000px;}
.y7e{bottom:572.655000px;}
.ye1{bottom:580.035000px;}
.yb7{bottom:584.355000px;}
.y10b{bottom:589.575000px;}
.y52{bottom:590.655000px;}
.y23{bottom:591.735000px;}
.y7d{bottom:592.455000px;}
.ye0{bottom:605.055000px;}
.y51{bottom:610.455000px;}
.yb6{bottom:610.815000px;}
.y22{bottom:611.535000px;}
.y7c{bottom:612.435000px;}
.yb5{bottom:628.095000px;}
.y50{bottom:630.435000px;}
.y21{bottom:631.335000px;}
.y7b{bottom:632.235000px;}
.ydf{bottom:633.675000px;}
.y10a{bottom:635.655000px;}
.yb4{bottom:647.895000px;}
.y4f{bottom:650.265000px;}
.y20{bottom:651.345000px;}
.y7a{bottom:652.065000px;}
.yde{bottom:653.505000px;}
.y109{bottom:655.485000px;}
.yb3{bottom:667.725000px;}
.y4e{bottom:670.065000px;}
.y1f{bottom:671.145000px;}
.y79{bottom:671.865000px;}
.ydd{bottom:673.485000px;}
.y108{bottom:675.465000px;}
.yb2{bottom:687.525000px;}
.y4d{bottom:689.865000px;}
.y1e{bottom:690.945000px;}
.y78{bottom:691.665000px;}
.y107{bottom:695.265000px;}
.ydc{bottom:702.285000px;}
.yb1{bottom:707.325000px;}
.y4c{bottom:709.665000px;}
.y1d{bottom:710.745000px;}
.y77{bottom:711.645000px;}
.y106{bottom:715.065000px;}
.ydb{bottom:722.085000px;}
.yb0{bottom:724.605000px;}
.y4b{bottom:729.645000px;}
.y1c{bottom:730.545000px;}
.y76{bottom:731.445000px;}
.y105{bottom:734.865000px;}
.yaf{bottom:739.365000px;}
.yda{bottom:741.885000px;}
.y4a{bottom:749.445000px;}
.y1b{bottom:750.525000px;}
.y75{bottom:751.245000px;}
.y104{bottom:754.665000px;}
.yae{bottom:760.065000px;}
.yd9{bottom:761.685000px;}
.y49{bottom:769.245000px;}
.y1a{bottom:770.325000px;}
.y74{bottom:771.045000px;}
.y103{bottom:774.645000px;}
.yd8{bottom:776.445000px;}
.y94{bottom:780.045000px;}
.yad{bottom:780.585000px;}
.y48{bottom:789.045000px;}
.y19{bottom:790.125000px;}
.yff{bottom:792.465000px;}
.yd7{bottom:797.145000px;}
.y73{bottom:799.845000px;}
.yac{bottom:801.285000px;}
.y47{bottom:808.845000px;}
.y18{bottom:809.925000px;}
.yd6{bottom:817.665000px;}
.y72{bottom:819.825000px;}
.yab{bottom:821.805000px;}
.y46{bottom:828.825000px;}
.y17{bottom:829.725000px;}
.yd5{bottom:838.365000px;}
.y71{bottom:839.625000px;}
.yaa{bottom:842.325000px;}
.y45{bottom:848.625000px;}
.y16{bottom:849.705000px;}
.yd4{bottom:858.885000px;}
.y70{bottom:859.425000px;}
.ya9{bottom:863.025000px;}
.y15{bottom:866.985000px;}
.y44{bottom:868.425000px;}
.yfb{bottom:878.325000px;}
.y6f{bottom:879.225000px;}
.yd3{bottom:879.405000px;}
.ya8{bottom:883.545000px;}
.y43{bottom:888.225000px;}
.y14{bottom:892.005000px;}
.y6e{bottom:899.070000px;}
.yd2{bottom:900.150000px;}
.ya6{bottom:904.110000px;}
.y42{bottom:908.070000px;}
.y13{bottom:911.850000px;}
.y6d{bottom:919.050000px;}
.yd1{bottom:920.670000px;}
.y12{bottom:926.970000px;}
.y41{bottom:928.050000px;}
.y6c{bottom:938.850000px;}
.yd0{bottom:941.190000px;}
.y11{bottom:945.690000px;}
.y40{bottom:947.850000px;}
.y6b{bottom:958.650000px;}
.y3f{bottom:967.650000px;}
.y10{bottom:969.090000px;}
.yf9{bottom:969.630000px;}
.y3e{bottom:987.450000px;}
.yf{bottom:1000.950000px;}
.yf7{bottom:1006.170000px;}
.y3d{bottom:1007.250000px;}
.y3c{bottom:1027.230000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.h10{height:19.800000px;}
.h14{height:19.836000px;}
.h13{height:19.980000px;}
.h15{height:20.016000px;}
.ha{height:21.240000px;}
.he{height:27.147656px;}
.h19{height:30.600000px;}
.h18{height:31.320000px;}
.h7{height:33.480000px;}
.h1e{height:39.600000px;}
.h11{height:41.493516px;}
.hd{height:41.726953px;}
.hf{height:42.164648px;}
.h12{height:43.506914px;}
.h1f{height:45.024258px;}
.h17{height:45.540000px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.h16{height:48.027656px;}
.h9{height:53.224453px;}
.h1b{height:59.580000px;}
.h3{height:63.500977px;}
.h8{height:65.884219px;}
.hc{height:67.565039px;}
.h1d{height:79.740000px;}
.h1c{height:85.356000px;}
.h5{height:112.536000px;}
.h1a{height:121.896000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w21{width:48.096000px;}
.w2a{width:51.480000px;}
.w29{width:54.396000px;}
.wa{width:55.620000px;}
.w1a{width:57.240000px;}
.w2b{width:57.600000px;}
.w25{width:57.996000px;}
.w24{width:68.580000px;}
.w1b{width:69.336000px;}
.w11{width:70.920000px;}
.w1c{width:72.720000px;}
.w1d{width:73.476000px;}
.w15{width:74.700000px;}
.w17{width:74.916000px;}
.w16{width:75.060000px;}
.w14{width:75.096000px;}
.w22{width:81.360000px;}
.w28{width:81.900000px;}
.w27{width:93.996000px;}
.w1e{width:104.400000px;}
.wc{width:106.236000px;}
.w1f{width:107.316000px;}
.wd{width:117.000000px;}
.we{width:117.036000px;}
.w2e{width:129.960000px;}
.w3{width:130.716000px;}
.w2d{width:131.436000px;}
.w26{width:142.596000px;}
.w7{width:159.480000px;}
.wb{width:159.510000px;}
.w6{width:180.390000px;}
.w9{width:180.570000px;}
.w8{width:180.750000px;}
.w2c{width:199.650000px;}
.w12{width:224.895000px;}
.w13{width:225.030000px;}
.w2f{width:257.250000px;}
.w18{width:295.815000px;}
.wf{width:321.375000px;}
.w23{width:344.955000px;}
.w19{width:492.045000px;}
.w10{width:520.845000px;}
.w2{width:649.410000px;}
.w20{width:751.500000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:2.340000px;}
.x2{left:8.100000px;}
.x17{left:29.700000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x29{left:70.920000px;}
.x1c{left:75.599987px;}
.x11{left:80.999987px;}
.x7{left:94.895987px;}
.xd{left:95.976000px;}
.x1b{left:102.635987px;}
.x12{left:108.035987px;}
.x4{left:118.290000px;}
.x13{left:122.795987px;}
.x14{left:162.029987px;}
.x15{left:168.870000px;}
.x32{left:179.490000px;}
.x1d{left:186.150000px;}
.x25{left:200.550000px;}
.x2a{left:203.430000px;}
.xb{left:216.749987px;}
.x16{left:224.490000px;}
.xc{left:238.529987px;}
.x1f{left:257.070000px;}
.xa{left:260.489987px;}
.x2e{left:262.110000px;}
.xe{left:276.375000px;}
.x8{left:329.474987px;}
.x21{left:332.175000px;}
.x2f{left:357.555000px;}
.x33{left:379.155000px;}
.x18{left:384.015000px;}
.x26{left:404.355000px;}
.x22{left:406.875000px;}
.xf{left:435.855000px;}
.x30{left:441.075000px;}
.x9{left:446.504987px;}
.x27{left:479.265000px;}
.x20{left:481.965000px;}
.x19{left:490.245000px;}
.x31{left:496.905000px;}
.x34{left:509.865000px;}
.x2b{left:549.825000px;}
.x23{left:557.025000px;}
.x28{left:585.285000px;}
.x1a{left:607.245000px;}
.x10{left:616.605000px;}
.x2c{left:620.025000px;}
.x24{left:631.950000px;}
.x35{left:641.310000px;}
.x2d{left:679.650000px;}
.x3{left:705.930000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.207360pt;}
.ls11{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.320000pt;}
.ls13{letter-spacing:11.040000pt;}
.ls12{letter-spacing:11.680000pt;}
.lsb{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls8{letter-spacing:56.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.416533pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-1.860480pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.019093pt;}
._1{width:1.973333pt;}
._12{width:2.883200pt;}
._13{width:4.539093pt;}
._15{width:6.209067pt;}
._14{width:7.330560pt;}
._18{width:8.542507pt;}
._6{width:9.600000pt;}
._17{width:10.783360pt;}
._1a{width:11.872213pt;}
._19{width:14.349440pt;}
._16{width:15.288747pt;}
._f{width:16.842667pt;}
._1b{width:18.538880pt;}
._24{width:19.697707pt;}
._21{width:33.933867pt;}
._22{width:35.112320pt;}
._26{width:62.528640pt;}
._25{width:63.446400pt;}
._7{width:67.808853pt;}
._1e{width:69.372587pt;}
._20{width:70.702720pt;}
._23{width:85.483947pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._1d{width:228.022827pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._1f{width:538.113067pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.ya7{bottom:5.280000pt;}
.yf8{bottom:10.240000pt;}
.y6{bottom:11.040000pt;}
.yfa{bottom:14.720000pt;}
.y8{bottom:16.160000pt;}
.y10c{bottom:22.720000pt;}
.yfd{bottom:22.760000pt;}
.yfe{bottom:22.880000pt;}
.yef{bottom:28.000000pt;}
.y102{bottom:31.680000pt;}
.yc{bottom:34.240000pt;}
.y5{bottom:35.840000pt;}
.yfc{bottom:40.480000pt;}
.y101{bottom:40.800000pt;}
.yb{bottom:53.600000pt;}
.y100{bottom:58.400000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:69.760000pt;}
.ya{bottom:72.960000pt;}
.y3{bottom:85.626667pt;}
.ycf{bottom:91.200000pt;}
.y3b{bottom:94.720000pt;}
.ya5{bottom:97.120000pt;}
.y11f{bottom:99.840000pt;}
.y6a{bottom:101.760000pt;}
.y11c{bottom:101.920000pt;}
.y93{bottom:108.160000pt;}
.yce{bottom:109.440000pt;}
.y2{bottom:111.706667pt;}
.y3a{bottom:112.320000pt;}
.ya4{bottom:114.720000pt;}
.y11e{bottom:117.440000pt;}
.y69{bottom:119.520000pt;}
.yf6{bottom:124.000000pt;}
.y92{bottom:125.920000pt;}
.ycd{bottom:127.680000pt;}
.y39{bottom:130.080000pt;}
.ya3{bottom:132.320000pt;}
.y11d{bottom:135.066667pt;}
.y68{bottom:137.146667pt;}
.yf5{bottom:141.626667pt;}
.y91{bottom:143.546667pt;}
.ycc{bottom:146.106667pt;}
.y38{bottom:147.706667pt;}
.ya2{bottom:149.946667pt;}
.y67{bottom:154.746667pt;}
.y11b{bottom:154.906667pt;}
.yf4{bottom:159.226667pt;}
.ycb{bottom:164.346667pt;}
.y37{bottom:165.306667pt;}
.ya1{bottom:167.706667pt;}
.y90{bottom:169.146667pt;}
.y66{bottom:172.346667pt;}
.y11a{bottom:172.506667pt;}
.yf3{bottom:176.986667pt;}
.yca{bottom:182.586667pt;}
.y36{bottom:182.906667pt;}
.ya0{bottom:185.306667pt;}
.y8f{bottom:187.706667pt;}
.y65{bottom:189.946667pt;}
.y119{bottom:190.106667pt;}
.yf2{bottom:194.586667pt;}
.y35{bottom:200.506667pt;}
.yc9{bottom:200.986667pt;}
.y9f{bottom:202.906667pt;}
.y8e{bottom:206.266667pt;}
.y64{bottom:207.706667pt;}
.yf1{bottom:212.186667pt;}
.y34{bottom:218.266667pt;}
.yc8{bottom:219.226667pt;}
.y9e{bottom:220.506667pt;}
.y8d{bottom:224.986667pt;}
.y63{bottom:225.306667pt;}
.yee{bottom:228.026667pt;}
.y33{bottom:235.866667pt;}
.yc7{bottom:237.626667pt;}
.y9d{bottom:238.106667pt;}
.y62{bottom:242.906667pt;}
.y118{bottom:243.066667pt;}
.y8c{bottom:243.546667pt;}
.yf0{bottom:250.906667pt;}
.y32{bottom:253.466667pt;}
.y8b{bottom:256.666667pt;}
.yc6{bottom:258.746667pt;}
.y61{bottom:260.506667pt;}
.y117{bottom:260.666667pt;}
.y9c{bottom:263.866667pt;}
.y31{bottom:271.066667pt;}
.yed{bottom:273.946667pt;}
.yc5{bottom:274.106667pt;}
.y8a{bottom:274.906667pt;}
.y60{bottom:278.106667pt;}
.y116{bottom:278.266667pt;}
.y9b{bottom:281.466667pt;}
.y30{bottom:288.666667pt;}
.yc4{bottom:291.706667pt;}
.y89{bottom:293.306667pt;}
.y5f{bottom:295.866667pt;}
.yec{bottom:296.826667pt;}
.y9a{bottom:299.066667pt;}
.y2f{bottom:306.426667pt;}
.yc3{bottom:309.306667pt;}
.y5e{bottom:313.466667pt;}
.y88{bottom:316.666667pt;}
.yeb{bottom:323.066667pt;}
.y2e{bottom:324.026667pt;}
.yc2{bottom:326.906667pt;}
.y5d{bottom:331.066667pt;}
.y115{bottom:331.226667pt;}
.y87{bottom:334.266667pt;}
.yea{bottom:340.666667pt;}
.yc1{bottom:344.506667pt;}
.y5c{bottom:348.666667pt;}
.y114{bottom:348.826667pt;}
.y2d{bottom:349.626667pt;}
.y86{bottom:352.026667pt;}
.ye9{bottom:358.306667pt;}
.yc0{bottom:359.906667pt;}
.y5b{bottom:366.306667pt;}
.y113{bottom:366.466667pt;}
.y2c{bottom:367.266667pt;}
.y85{bottom:369.666667pt;}
.ybf{bottom:373.026667pt;}
.ye8{bottom:375.906667pt;}
.y5a{bottom:384.066667pt;}
.y2b{bottom:384.866667pt;}
.y84{bottom:387.266667pt;}
.ybe{bottom:391.426667pt;}
.ye7{bottom:393.506667pt;}
.y99{bottom:395.266667pt;}
.y59{bottom:401.666667pt;}
.y2a{bottom:402.626667pt;}
.ybd{bottom:409.666667pt;}
.ye6{bottom:411.266667pt;}
.y83{bottom:412.866667pt;}
.y58{bottom:419.266667pt;}
.y112{bottom:419.426667pt;}
.y29{bottom:420.226667pt;}
.y98{bottom:420.866667pt;}
.ye5{bottom:426.306667pt;}
.ybc{bottom:427.906667pt;}
.y82{bottom:430.466667pt;}
.y111{bottom:432.546667pt;}
.y57{bottom:436.866667pt;}
.y28{bottom:437.826667pt;}
.y97{bottom:438.466667pt;}
.ybb{bottom:446.306667pt;}
.y81{bottom:448.226667pt;}
.ye4{bottom:448.706667pt;}
.y110{bottom:450.786667pt;}
.y56{bottom:454.466667pt;}
.y27{bottom:455.426667pt;}
.y96{bottom:456.226667pt;}
.yba{bottom:464.546667pt;}
.y80{bottom:465.826667pt;}
.y10f{bottom:469.026667pt;}
.ye3{bottom:470.946667pt;}
.y55{bottom:472.226667pt;}
.y26{bottom:473.026667pt;}
.y95{bottom:473.826667pt;}
.yb9{bottom:482.946667pt;}
.y10e{bottom:487.426667pt;}
.y54{bottom:489.826667pt;}
.y25{bottom:490.786667pt;}
.y7f{bottom:491.426667pt;}
.ye2{bottom:493.186667pt;}
.yb8{bottom:501.186667pt;}
.y10d{bottom:505.666667pt;}
.y53{bottom:507.426667pt;}
.y24{bottom:508.386667pt;}
.y7e{bottom:509.026667pt;}
.ye1{bottom:515.586667pt;}
.yb7{bottom:519.426667pt;}
.y10b{bottom:524.066667pt;}
.y52{bottom:525.026667pt;}
.y23{bottom:525.986667pt;}
.y7d{bottom:526.626667pt;}
.ye0{bottom:537.826667pt;}
.y51{bottom:542.626667pt;}
.yb6{bottom:542.946667pt;}
.y22{bottom:543.586667pt;}
.y7c{bottom:544.386667pt;}
.yb5{bottom:558.306667pt;}
.y50{bottom:560.386667pt;}
.y21{bottom:561.186667pt;}
.y7b{bottom:561.986667pt;}
.ydf{bottom:563.266667pt;}
.y10a{bottom:565.026667pt;}
.yb4{bottom:575.906667pt;}
.y4f{bottom:578.013333pt;}
.y20{bottom:578.973333pt;}
.y7a{bottom:579.613333pt;}
.yde{bottom:580.893333pt;}
.y109{bottom:582.653333pt;}
.yb3{bottom:593.533333pt;}
.y4e{bottom:595.613333pt;}
.y1f{bottom:596.573333pt;}
.y79{bottom:597.213333pt;}
.ydd{bottom:598.653333pt;}
.y108{bottom:600.413333pt;}
.yb2{bottom:611.133333pt;}
.y4d{bottom:613.213333pt;}
.y1e{bottom:614.173333pt;}
.y78{bottom:614.813333pt;}
.y107{bottom:618.013333pt;}
.ydc{bottom:624.253333pt;}
.yb1{bottom:628.733333pt;}
.y4c{bottom:630.813333pt;}
.y1d{bottom:631.773333pt;}
.y77{bottom:632.573333pt;}
.y106{bottom:635.613333pt;}
.ydb{bottom:641.853333pt;}
.yb0{bottom:644.093333pt;}
.y4b{bottom:648.573333pt;}
.y1c{bottom:649.373333pt;}
.y76{bottom:650.173333pt;}
.y105{bottom:653.213333pt;}
.yaf{bottom:657.213333pt;}
.yda{bottom:659.453333pt;}
.y4a{bottom:666.173333pt;}
.y1b{bottom:667.133333pt;}
.y75{bottom:667.773333pt;}
.y104{bottom:670.813333pt;}
.yae{bottom:675.613333pt;}
.yd9{bottom:677.053333pt;}
.y49{bottom:683.773333pt;}
.y1a{bottom:684.733333pt;}
.y74{bottom:685.373333pt;}
.y103{bottom:688.573333pt;}
.yd8{bottom:690.173333pt;}
.y94{bottom:693.373333pt;}
.yad{bottom:693.853333pt;}
.y48{bottom:701.373333pt;}
.y19{bottom:702.333333pt;}
.yff{bottom:704.413333pt;}
.yd7{bottom:708.573333pt;}
.y73{bottom:710.973333pt;}
.yac{bottom:712.253333pt;}
.y47{bottom:718.973333pt;}
.y18{bottom:719.933333pt;}
.yd6{bottom:726.813333pt;}
.y72{bottom:728.733333pt;}
.yab{bottom:730.493333pt;}
.y46{bottom:736.733333pt;}
.y17{bottom:737.533333pt;}
.yd5{bottom:745.213333pt;}
.y71{bottom:746.333333pt;}
.yaa{bottom:748.733333pt;}
.y45{bottom:754.333333pt;}
.y16{bottom:755.293333pt;}
.yd4{bottom:763.453333pt;}
.y70{bottom:763.933333pt;}
.ya9{bottom:767.133333pt;}
.y15{bottom:770.653333pt;}
.y44{bottom:771.933333pt;}
.yfb{bottom:780.733333pt;}
.y6f{bottom:781.533333pt;}
.yd3{bottom:781.693333pt;}
.ya8{bottom:785.373333pt;}
.y43{bottom:789.533333pt;}
.y14{bottom:792.893333pt;}
.y6e{bottom:799.173333pt;}
.yd2{bottom:800.133333pt;}
.ya6{bottom:803.653333pt;}
.y42{bottom:807.173333pt;}
.y13{bottom:810.533333pt;}
.y6d{bottom:816.933333pt;}
.yd1{bottom:818.373333pt;}
.y12{bottom:823.973333pt;}
.y41{bottom:824.933333pt;}
.y6c{bottom:834.533333pt;}
.yd0{bottom:836.613333pt;}
.y11{bottom:840.613333pt;}
.y40{bottom:842.533333pt;}
.y6b{bottom:852.133333pt;}
.y3f{bottom:860.133333pt;}
.y10{bottom:861.413333pt;}
.yf9{bottom:861.893333pt;}
.y3e{bottom:877.733333pt;}
.yf{bottom:889.733333pt;}
.yf7{bottom:894.373333pt;}
.y3d{bottom:895.333333pt;}
.y3c{bottom:913.093333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.h10{height:17.600000pt;}
.h14{height:17.632000pt;}
.h13{height:17.760000pt;}
.h15{height:17.792000pt;}
.ha{height:18.880000pt;}
.he{height:24.131250pt;}
.h19{height:27.200000pt;}
.h18{height:27.840000pt;}
.h7{height:29.760000pt;}
.h1e{height:35.200000pt;}
.h11{height:36.883125pt;}
.hd{height:37.090625pt;}
.hf{height:37.479688pt;}
.h12{height:38.672812pt;}
.h1f{height:40.021563pt;}
.h17{height:40.480000pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.h16{height:42.691250pt;}
.h9{height:47.310625pt;}
.h1b{height:52.960000pt;}
.h3{height:56.445312pt;}
.h8{height:58.563750pt;}
.hc{height:60.057813pt;}
.h1d{height:70.880000pt;}
.h1c{height:75.872000pt;}
.h5{height:100.032000pt;}
.h1a{height:108.352000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w21{width:42.752000pt;}
.w2a{width:45.760000pt;}
.w29{width:48.352000pt;}
.wa{width:49.440000pt;}
.w1a{width:50.880000pt;}
.w2b{width:51.200000pt;}
.w25{width:51.552000pt;}
.w24{width:60.960000pt;}
.w1b{width:61.632000pt;}
.w11{width:63.040000pt;}
.w1c{width:64.640000pt;}
.w1d{width:65.312000pt;}
.w15{width:66.400000pt;}
.w17{width:66.592000pt;}
.w16{width:66.720000pt;}
.w14{width:66.752000pt;}
.w22{width:72.320000pt;}
.w28{width:72.800000pt;}
.w27{width:83.552000pt;}
.w1e{width:92.800000pt;}
.wc{width:94.432000pt;}
.w1f{width:95.392000pt;}
.wd{width:104.000000pt;}
.we{width:104.032000pt;}
.w2e{width:115.520000pt;}
.w3{width:116.192000pt;}
.w2d{width:116.832000pt;}
.w26{width:126.752000pt;}
.w7{width:141.760000pt;}
.wb{width:141.786667pt;}
.w6{width:160.346667pt;}
.w9{width:160.506667pt;}
.w8{width:160.666667pt;}
.w2c{width:177.466667pt;}
.w12{width:199.906667pt;}
.w13{width:200.026667pt;}
.w2f{width:228.666667pt;}
.w18{width:262.946667pt;}
.wf{width:285.666667pt;}
.w23{width:306.626667pt;}
.w19{width:437.373333pt;}
.w10{width:462.973333pt;}
.w2{width:577.253333pt;}
.w20{width:668.000000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:2.080000pt;}
.x2{left:7.200000pt;}
.x17{left:26.400000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x29{left:63.040000pt;}
.x1c{left:67.199988pt;}
.x11{left:71.999988pt;}
.x7{left:84.351988pt;}
.xd{left:85.312000pt;}
.x1b{left:91.231988pt;}
.x12{left:96.031988pt;}
.x4{left:105.146667pt;}
.x13{left:109.151988pt;}
.x14{left:144.026655pt;}
.x15{left:150.106667pt;}
.x32{left:159.546667pt;}
.x1d{left:165.466667pt;}
.x25{left:178.266667pt;}
.x2a{left:180.826667pt;}
.xb{left:192.666655pt;}
.x16{left:199.546667pt;}
.xc{left:212.026655pt;}
.x1f{left:228.506667pt;}
.xa{left:231.546655pt;}
.x2e{left:232.986667pt;}
.xe{left:245.666667pt;}
.x8{left:292.866655pt;}
.x21{left:295.266667pt;}
.x2f{left:317.826667pt;}
.x33{left:337.026667pt;}
.x18{left:341.346667pt;}
.x26{left:359.426667pt;}
.x22{left:361.666667pt;}
.xf{left:387.426667pt;}
.x30{left:392.066667pt;}
.x9{left:396.893322pt;}
.x27{left:426.013333pt;}
.x20{left:428.413333pt;}
.x19{left:435.773333pt;}
.x31{left:441.693333pt;}
.x34{left:453.213333pt;}
.x2b{left:488.733333pt;}
.x23{left:495.133333pt;}
.x28{left:520.253333pt;}
.x1a{left:539.773333pt;}
.x10{left:548.093333pt;}
.x2c{left:551.133333pt;}
.x24{left:561.733333pt;}
.x35{left:570.053333pt;}
.x2d{left:604.133333pt;}
.x3{left:627.493333pt;}
.x6{left:737.280000pt;}
}




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