
    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_b45f2ac76888442f750b087f.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_6ce66a107b6b69077fae291e.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_de95289fa969c7abaf9c187a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5d76362321105005246cefd6.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_e30ba961a2edea756a1288d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_68f6539518eadcd52db9848e.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c079ac5b8f779e4ec8ff12c.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls14{letter-spacing:-0.310800px;}
.ls12{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls7{letter-spacing:0.051000px;}
.lsc{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.116400px;}
.ls17{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls13{letter-spacing:0.173520px;}
.ls10{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.lsd{letter-spacing:63.566640px;}
.ls1b{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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.342800px;}
.ws4{word-spacing:-13.294800px;}
.ws2{word-spacing:-13.277400px;}
.wsb{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.065600px;}
.ws10{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.915600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._6{margin-left:-4.119598px;}
._5{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._8{width:2.132655px;}
._4{width:3.411480px;}
._2{width:5.230200px;}
._3{width:6.556793px;}
._a{width:8.320802px;}
._9{width:9.378600px;}
._c{width:10.397031px;}
._b{width:11.477760px;}
._7{width:14.488800px;}
._d{width:15.799080px;}
._1a{width:17.117042px;}
._21{width:18.293638px;}
._e{width:19.358640px;}
._1f{width:20.741400px;}
._18{width:21.823560px;}
._19{width:22.965840px;}
._20{width:24.709320px;}
._1d{width:29.098080px;}
._1e{width:30.149760px;}
._1c{width:31.197840px;}
._1b{width:32.224320px;}
._12{width:42.805440px;}
._13{width:43.947720px;}
._14{width:54.468720px;}
._22{width:56.392560px;}
._f{width:104.909400px;}
._15{width:110.747160px;}
._10{width:112.604760px;}
._11{width:133.165800px;}
._17{width:151.382160px;}
._16{width:238.435920px;}
.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;}
.y55{bottom:7.830000px;}
.y5d{bottom:7.920000px;}
.y5b{bottom:25.380000px;}
.y59{bottom:25.410000px;}
.y57{bottom:25.470000px;}
.y5f{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ydc{bottom:125.940000px;}
.y80{bottom:127.290000px;}
.y27{bottom:139.800000px;}
.ydb{bottom:143.580000px;}
.y107{bottom:145.020000px;}
.y162{bottom:146.820000px;}
.yad{bottom:151.320000px;}
.y26{bottom:157.350000px;}
.yda{bottom:161.130000px;}
.y106{bottom:162.570000px;}
.y7f{bottom:162.930000px;}
.y161{bottom:164.460000px;}
.yac{bottom:168.960000px;}
.yd9{bottom:178.680000px;}
.y160{bottom:182.010000px;}
.yab{bottom:186.510000px;}
.y105{bottom:189.480000px;}
.y53{bottom:190.920000px;}
.y25{bottom:192.990000px;}
.yd8{bottom:196.320000px;}
.y136{bottom:196.770000px;}
.y7e{bottom:198.480000px;}
.yaa{bottom:204.060000px;}
.y15f{bottom:208.650000px;}
.y24{bottom:210.540000px;}
.yd7{bottom:213.870000px;}
.y7d{bottom:216.030000px;}
.ya9{bottom:221.700000px;}
.y15e{bottom:226.200000px;}
.y52{bottom:226.560000px;}
.y23{bottom:228.090000px;}
.y135{bottom:232.320000px;}
.y7c{bottom:233.670000px;}
.ya8{bottom:239.250000px;}
.y15d{bottom:243.750000px;}
.y51{bottom:244.110000px;}
.y22{bottom:245.730000px;}
.yd6{bottom:249.510000px;}
.y134{bottom:249.960000px;}
.y7b{bottom:251.220000px;}
.ya7{bottom:256.890000px;}
.y104{bottom:261.660000px;}
.y50{bottom:261.750000px;}
.y21{bottom:263.280000px;}
.yd5{bottom:267.060000px;}
.y133{bottom:267.510000px;}
.y7a{bottom:268.860000px;}
.y15c{bottom:270.390000px;}
.y103{bottom:280.110000px;}
.y20{bottom:280.920000px;}
.yd4{bottom:284.610000px;}
.y132{bottom:285.060000px;}
.y79{bottom:286.410000px;}
.y15b{bottom:287.940000px;}
.ya6{bottom:292.440000px;}
.y4f{bottom:297.300000px;}
.y102{bottom:297.750000px;}
.yd3{bottom:302.250000px;}
.y131{bottom:302.700000px;}
.y78{bottom:303.960000px;}
.y15a{bottom:305.580000px;}
.ya5{bottom:309.990000px;}
.y4e{bottom:314.850000px;}
.y101{bottom:315.300000px;}
.y1f{bottom:316.470000px;}
.yd2{bottom:319.800000px;}
.y130{bottom:320.250000px;}
.y77{bottom:321.600000px;}
.y159{bottom:332.130000px;}
.y4d{bottom:332.490000px;}
.y100{bottom:332.850000px;}
.y1e{bottom:334.020000px;}
.yd1{bottom:337.440000px;}
.y12f{bottom:337.890000px;}
.ya4{bottom:345.630000px;}
.y158{bottom:349.680000px;}
.y4c{bottom:350.040000px;}
.yff{bottom:351.300000px;}
.y1d{bottom:351.660000px;}
.y12e{bottom:355.440000px;}
.y76{bottom:357.150000px;}
.ya3{bottom:363.180000px;}
.yfe{bottom:368.850000px;}
.y1c{bottom:369.210000px;}
.yd0{bottom:372.990000px;}
.y75{bottom:374.790000px;}
.y157{bottom:376.320000px;}
.y4b{bottom:376.680000px;}
.ya2{bottom:380.730000px;}
.yfd{bottom:386.400000px;}
.y1b{bottom:386.850000px;}
.ycf{bottom:390.540000px;}
.y74{bottom:392.340000px;}
.y156{bottom:393.870000px;}
.ya1{bottom:398.370000px;}
.y12d{bottom:399.900000px;}
.y1a{bottom:404.400000px;}
.yfc{bottom:404.850000px;}
.yce{bottom:408.180000px;}
.y73{bottom:409.890000px;}
.y4a{bottom:412.230000px;}
.ya0{bottom:415.920000px;}
.y155{bottom:420.510000px;}
.yfb{bottom:422.490000px;}
.ycd{bottom:425.730000px;}
.y72{bottom:427.530000px;}
.y49{bottom:429.780000px;}
.y19{bottom:431.310000px;}
.y154{bottom:438.060000px;}
.yfa{bottom:440.040000px;}
.ycc{bottom:443.370000px;}
.y71{bottom:445.080000px;}
.y48{bottom:448.230000px;}
.y9f{bottom:451.560000px;}
.y153{bottom:455.610000px;}
.yf9{bottom:457.680000px;}
.ycb{bottom:460.920000px;}
.y70{bottom:462.720000px;}
.y47{bottom:465.780000px;}
.y9e{bottom:469.110000px;}
.yf8{bottom:475.260000px;}
.y18{bottom:479.580000px;}
.y6f{bottom:480.300000px;}
.y152{bottom:482.280000px;}
.y12c{bottom:483.360000px;}
.y46{bottom:484.170000px;}
.y9d{bottom:486.690000px;}
.yf7{bottom:492.810000px;}
.yca{bottom:496.500000px;}
.y17{bottom:497.490000px;}
.y151{bottom:499.830000px;}
.y9c{bottom:504.330000px;}
.yf6{bottom:511.260000px;}
.yc9{bottom:514.140000px;}
.y6e{bottom:515.850000px;}
.y150{bottom:517.470000px;}
.y12b{bottom:519.000000px;}
.y45{bottom:520.620000px;}
.y9b{bottom:521.880000px;}
.yf5{bottom:528.810000px;}
.yc8{bottom:531.690000px;}
.y6d{bottom:533.490000px;}
.y16{bottom:534.570000px;}
.y12a{bottom:536.550000px;}
.y9a{bottom:539.520000px;}
.y14f{bottom:544.020000px;}
.yf4{bottom:546.450000px;}
.yc7{bottom:549.330000px;}
.y6c{bottom:551.040000px;}
.y15{bottom:552.120000px;}
.y129{bottom:554.190000px;}
.y44{bottom:556.260000px;}
.y14e{bottom:561.570000px;}
.yf3{bottom:564.000000px;}
.yc6{bottom:566.880000px;}
.y6b{bottom:568.590000px;}
.y14{bottom:569.670000px;}
.y128{bottom:571.740000px;}
.y43{bottom:573.810000px;}
.y99{bottom:575.070000px;}
.yf2{bottom:581.550000px;}
.yc5{bottom:584.430000px;}
.y6a{bottom:586.230000px;}
.y13{bottom:587.310000px;}
.y14d{bottom:588.210000px;}
.y127{bottom:590.190000px;}
.y42{bottom:591.450000px;}
.y98{bottom:592.620000px;}
.yf1{bottom:599.100000px;}
.y69{bottom:603.780000px;}
.y12{bottom:604.860000px;}
.y14c{bottom:605.760000px;}
.y126{bottom:607.740000px;}
.y41{bottom:609.000000px;}
.yf0{bottom:617.550000px;}
.yc4{bottom:620.070000px;}
.y11{bottom:622.500000px;}
.y125{bottom:625.290000px;}
.y40{bottom:626.550000px;}
.y97{bottom:628.260000px;}
.y16f{bottom:628.620000px;}
.y14b{bottom:632.310000px;}
.yef{bottom:635.190000px;}
.yc3{bottom:637.620000px;}
.y68{bottom:639.420000px;}
.y10{bottom:640.050000px;}
.y124{bottom:642.930000px;}
.y96{bottom:645.810000px;}
.y16e{bottom:646.260000px;}
.y14a{bottom:649.950000px;}
.yee{bottom:652.740000px;}
.y3f{bottom:653.190000px;}
.yc2{bottom:655.260000px;}
.y67{bottom:656.970000px;}
.yf{bottom:657.600000px;}
.y123{bottom:660.480000px;}
.y95{bottom:663.450000px;}
.y149{bottom:667.500000px;}
.yed{bottom:671.190000px;}
.yc1{bottom:672.810000px;}
.y66{bottom:674.520000px;}
.ye{bottom:675.240000px;}
.y122{bottom:678.930000px;}
.y94{bottom:681.000000px;}
.y3e{bottom:688.740000px;}
.yc0{bottom:690.360000px;}
.y65{bottom:692.160000px;}
.yd{bottom:692.790000px;}
.y148{bottom:694.140000px;}
.y121{bottom:696.480000px;}
.y93{bottom:698.550000px;}
.y3d{bottom:706.380000px;}
.ybf{bottom:708.000000px;}
.y64{bottom:709.710000px;}
.yc{bottom:710.430000px;}
.y147{bottom:711.690000px;}
.y120{bottom:714.120000px;}
.y92{bottom:716.190000px;}
.y3c{bottom:723.930000px;}
.ybe{bottom:725.550000px;}
.y63{bottom:727.350000px;}
.yb{bottom:727.980000px;}
.y11f{bottom:731.670000px;}
.y91{bottom:733.740000px;}
.y16d{bottom:734.550000px;}
.y146{bottom:738.240000px;}
.y3b{bottom:741.480000px;}
.ybd{bottom:743.190000px;}
.y62{bottom:744.900000px;}
.y11e{bottom:749.220000px;}
.y90{bottom:751.380000px;}
.y16c{bottom:752.190000px;}
.ya{bottom:754.890000px;}
.y145{bottom:755.880000px;}
.y3a{bottom:759.120000px;}
.yec{bottom:759.930000px;}
.y11d{bottom:766.770000px;}
.y16b{bottom:769.740000px;}
.y61{bottom:771.450000px;}
.y144{bottom:773.430000px;}
.yeb{bottom:777.480000px;}
.ybc{bottom:778.740000px;}
.y11c{bottom:785.220000px;}
.y39{bottom:786.030000px;}
.y8f{bottom:786.930000px;}
.yea{bottom:795.120000px;}
.ybb{bottom:796.290000px;}
.y143{bottom:800.070000px;}
.y11b{bottom:802.860000px;}
.y9{bottom:803.130000px;}
.y60{bottom:804.480000px;}
.ye9{bottom:812.670000px;}
.yba{bottom:813.930000px;}
.y142{bottom:817.620000px;}
.y11a{bottom:820.410000px;}
.y8e{bottom:822.120000px;}
.ye8{bottom:830.310000px;}
.yb9{bottom:831.480000px;}
.y38{bottom:834.270000px;}
.y141{bottom:835.170000px;}
.y119{bottom:838.050000px;}
.y8{bottom:838.950000px;}
.y8d{bottom:839.670000px;}
.ye7{bottom:847.860000px;}
.yb8{bottom:849.030000px;}
.y5e{bottom:849.390000px;}
.y37{bottom:851.910000px;}
.y118{bottom:855.600000px;}
.y8c{bottom:857.310000px;}
.y16a{bottom:858.030000px;}
.y140{bottom:861.810000px;}
.ye6{bottom:865.410000px;}
.yb7{bottom:866.670000px;}
.y36{bottom:869.460000px;}
.y117{bottom:874.050000px;}
.y8b{bottom:874.860000px;}
.y7{bottom:874.950000px;}
.y169{bottom:875.670000px;}
.y13f{bottom:879.360000px;}
.y116{bottom:891.600000px;}
.y8a{bottom:892.410000px;}
.yb6{bottom:893.220000px;}
.y13e{bottom:897.000000px;}
.ye5{bottom:901.860000px;}
.y35{bottom:905.010000px;}
.y115{bottom:909.150000px;}
.y6{bottom:910.950000px;}
.y5c{bottom:911.850000px;}
.y89{bottom:919.320000px;}
.y168{bottom:919.860000px;}
.y34{bottom:923.370000px;}
.y114{bottom:926.790000px;}
.ye4{bottom:928.770000px;}
.yb5{bottom:928.860000px;}
.y13d{bottom:933.540000px;}
.y167{bottom:937.410000px;}
.y33{bottom:941.820000px;}
.y113{bottom:944.340000px;}
.yb4{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y5a{bottom:956.850000px;}
.y32{bottom:960.270000px;}
.y112{bottom:962.790000px;}
.yb3{bottom:963.960000px;}
.y88{bottom:967.650000px;}
.ye3{bottom:977.010000px;}
.y31{bottom:978.630000px;}
.y111{bottom:980.340000px;}
.yb2{bottom:981.600000px;}
.y13c{bottom:981.780000px;}
.y87{bottom:985.200000px;}
.y4{bottom:985.380000px;}
.ye2{bottom:994.650000px;}
.y30{bottom:997.080000px;}
.y110{bottom:997.890000px;}
.yb1{bottom:999.150000px;}
.y58{bottom:1001.760000px;}
.y86{bottom:1003.560000px;}
.y13b{bottom:1008.690000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1015.470000px;}
.y10f{bottom:1015.560000px;}
.yb0{bottom:1016.820000px;}
.y85{bottom:1022.040000px;}
.y166{bottom:1025.820000px;}
.ye1{bottom:1030.140000px;}
.y10e{bottom:1033.110000px;}
.yaf{bottom:1034.370000px;}
.y84{bottom:1040.400000px;}
.y165{bottom:1043.370000px;}
.y13a{bottom:1045.800000px;}
.y56{bottom:1046.700000px;}
.ye0{bottom:1048.590000px;}
.y10d{bottom:1051.560000px;}
.y2e{bottom:1051.920000px;}
.y83{bottom:1058.850000px;}
.y164{bottom:1060.920000px;}
.y139{bottom:1063.350000px;}
.ydf{bottom:1067.040000px;}
.y10c{bottom:1069.110000px;}
.yae{bottom:1069.920000px;}
.y82{bottom:1077.300000px;}
.y163{bottom:1078.560000px;}
.yde{bottom:1085.400000px;}
.y10b{bottom:1086.750000px;}
.y2d{bottom:1087.560000px;}
.y138{bottom:1090.260000px;}
.y54{bottom:1091.610000px;}
.ydd{bottom:1103.850000px;}
.y10a{bottom:1104.300000px;}
.y2c{bottom:1105.110000px;}
.y81{bottom:1113.750000px;}
.y109{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.y137{bottom:1127.610000px;}
.y108{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:26.550000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hd{height:44.100000px;}
.hc{height:44.130000px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.740000px;}
.h7{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:104.700000px;}
.w7{width:106.200000px;}
.w5{width:124.650000px;}
.w8{width:127.710000px;}
.w6{width:133.050000px;}
.w4{width:155.610000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.xc{left:111.239987px;}
.x5{left:122.039987px;}
.x7{left:174.180000px;}
.x2{left:202.799987px;}
.x8{left:330.600000px;}
.x9{left:456.060000px;}
.xa{left:589.830000px;}
.xb{left:696.750000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.276267pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls7{letter-spacing:0.045333pt;}
.lsc{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.103467pt;}
.ls17{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls13{letter-spacing:0.154240pt;}
.ls10{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.lsd{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.860267pt;}
.ws4{word-spacing:-11.817600pt;}
.ws2{word-spacing:-11.802133pt;}
.wsb{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.613867pt;}
.ws10{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.480533pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._6{margin-left:-3.661865pt;}
._5{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._8{width:1.895694pt;}
._4{width:3.032427pt;}
._2{width:4.649066pt;}
._3{width:5.828261pt;}
._a{width:7.396268pt;}
._9{width:8.336533pt;}
._c{width:9.241805pt;}
._b{width:10.202453pt;}
._7{width:12.878933pt;}
._d{width:14.043627pt;}
._1a{width:15.215149pt;}
._21{width:16.261011pt;}
._e{width:17.207680pt;}
._1f{width:18.436800pt;}
._18{width:19.398720pt;}
._19{width:20.414080pt;}
._20{width:21.963840pt;}
._1d{width:25.864960pt;}
._1e{width:26.799787pt;}
._1c{width:27.731413pt;}
._1b{width:28.643840pt;}
._12{width:38.049280pt;}
._13{width:39.064640pt;}
._14{width:48.416640pt;}
._22{width:50.126720pt;}
._f{width:93.252800pt;}
._15{width:98.441920pt;}
._10{width:100.093120pt;}
._11{width:118.369600pt;}
._17{width:134.561920pt;}
._16{width:211.943040pt;}
.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;}
.y55{bottom:6.960000pt;}
.y5d{bottom:7.040000pt;}
.y5b{bottom:22.560000pt;}
.y59{bottom:22.586667pt;}
.y57{bottom:22.640000pt;}
.y5f{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ydc{bottom:111.946667pt;}
.y80{bottom:113.146667pt;}
.y27{bottom:124.266667pt;}
.ydb{bottom:127.626667pt;}
.y107{bottom:128.906667pt;}
.y162{bottom:130.506667pt;}
.yad{bottom:134.506667pt;}
.y26{bottom:139.866667pt;}
.yda{bottom:143.226667pt;}
.y106{bottom:144.506667pt;}
.y7f{bottom:144.826667pt;}
.y161{bottom:146.186667pt;}
.yac{bottom:150.186667pt;}
.yd9{bottom:158.826667pt;}
.y160{bottom:161.786667pt;}
.yab{bottom:165.786667pt;}
.y105{bottom:168.426667pt;}
.y53{bottom:169.706667pt;}
.y25{bottom:171.546667pt;}
.yd8{bottom:174.506667pt;}
.y136{bottom:174.906667pt;}
.y7e{bottom:176.426667pt;}
.yaa{bottom:181.386667pt;}
.y15f{bottom:185.466667pt;}
.y24{bottom:187.146667pt;}
.yd7{bottom:190.106667pt;}
.y7d{bottom:192.026667pt;}
.ya9{bottom:197.066667pt;}
.y15e{bottom:201.066667pt;}
.y52{bottom:201.386667pt;}
.y23{bottom:202.746667pt;}
.y135{bottom:206.506667pt;}
.y7c{bottom:207.706667pt;}
.ya8{bottom:212.666667pt;}
.y15d{bottom:216.666667pt;}
.y51{bottom:216.986667pt;}
.y22{bottom:218.426667pt;}
.yd6{bottom:221.786667pt;}
.y134{bottom:222.186667pt;}
.y7b{bottom:223.306667pt;}
.ya7{bottom:228.346667pt;}
.y104{bottom:232.586667pt;}
.y50{bottom:232.666667pt;}
.y21{bottom:234.026667pt;}
.yd5{bottom:237.386667pt;}
.y133{bottom:237.786667pt;}
.y7a{bottom:238.986667pt;}
.y15c{bottom:240.346667pt;}
.y103{bottom:248.986667pt;}
.y20{bottom:249.706667pt;}
.yd4{bottom:252.986667pt;}
.y132{bottom:253.386667pt;}
.y79{bottom:254.586667pt;}
.y15b{bottom:255.946667pt;}
.ya6{bottom:259.946667pt;}
.y4f{bottom:264.266667pt;}
.y102{bottom:264.666667pt;}
.yd3{bottom:268.666667pt;}
.y131{bottom:269.066667pt;}
.y78{bottom:270.186667pt;}
.y15a{bottom:271.626667pt;}
.ya5{bottom:275.546667pt;}
.y4e{bottom:279.866667pt;}
.y101{bottom:280.266667pt;}
.y1f{bottom:281.306667pt;}
.yd2{bottom:284.266667pt;}
.y130{bottom:284.666667pt;}
.y77{bottom:285.866667pt;}
.y159{bottom:295.226667pt;}
.y4d{bottom:295.546667pt;}
.y100{bottom:295.866667pt;}
.y1e{bottom:296.906667pt;}
.yd1{bottom:299.946667pt;}
.y12f{bottom:300.346667pt;}
.ya4{bottom:307.226667pt;}
.y158{bottom:310.826667pt;}
.y4c{bottom:311.146667pt;}
.yff{bottom:312.266667pt;}
.y1d{bottom:312.586667pt;}
.y12e{bottom:315.946667pt;}
.y76{bottom:317.466667pt;}
.ya3{bottom:322.826667pt;}
.yfe{bottom:327.866667pt;}
.y1c{bottom:328.186667pt;}
.yd0{bottom:331.546667pt;}
.y75{bottom:333.146667pt;}
.y157{bottom:334.506667pt;}
.y4b{bottom:334.826667pt;}
.ya2{bottom:338.426667pt;}
.yfd{bottom:343.466667pt;}
.y1b{bottom:343.866667pt;}
.ycf{bottom:347.146667pt;}
.y74{bottom:348.746667pt;}
.y156{bottom:350.106667pt;}
.ya1{bottom:354.106667pt;}
.y12d{bottom:355.466667pt;}
.y1a{bottom:359.466667pt;}
.yfc{bottom:359.866667pt;}
.yce{bottom:362.826667pt;}
.y73{bottom:364.346667pt;}
.y4a{bottom:366.426667pt;}
.ya0{bottom:369.706667pt;}
.y155{bottom:373.786667pt;}
.yfb{bottom:375.546667pt;}
.ycd{bottom:378.426667pt;}
.y72{bottom:380.026667pt;}
.y49{bottom:382.026667pt;}
.y19{bottom:383.386667pt;}
.y154{bottom:389.386667pt;}
.yfa{bottom:391.146667pt;}
.ycc{bottom:394.106667pt;}
.y71{bottom:395.626667pt;}
.y48{bottom:398.426667pt;}
.y9f{bottom:401.386667pt;}
.y153{bottom:404.986667pt;}
.yf9{bottom:406.826667pt;}
.ycb{bottom:409.706667pt;}
.y70{bottom:411.306667pt;}
.y47{bottom:414.026667pt;}
.y9e{bottom:416.986667pt;}
.yf8{bottom:422.453333pt;}
.y18{bottom:426.293333pt;}
.y6f{bottom:426.933333pt;}
.y152{bottom:428.693333pt;}
.y12c{bottom:429.653333pt;}
.y46{bottom:430.373333pt;}
.y9d{bottom:432.613333pt;}
.yf7{bottom:438.053333pt;}
.yca{bottom:441.333333pt;}
.y17{bottom:442.213333pt;}
.y151{bottom:444.293333pt;}
.y9c{bottom:448.293333pt;}
.yf6{bottom:454.453333pt;}
.yc9{bottom:457.013333pt;}
.y6e{bottom:458.533333pt;}
.y150{bottom:459.973333pt;}
.y12b{bottom:461.333333pt;}
.y45{bottom:462.773333pt;}
.y9b{bottom:463.893333pt;}
.yf5{bottom:470.053333pt;}
.yc8{bottom:472.613333pt;}
.y6d{bottom:474.213333pt;}
.y16{bottom:475.173333pt;}
.y12a{bottom:476.933333pt;}
.y9a{bottom:479.573333pt;}
.y14f{bottom:483.573333pt;}
.yf4{bottom:485.733333pt;}
.yc7{bottom:488.293333pt;}
.y6c{bottom:489.813333pt;}
.y15{bottom:490.773333pt;}
.y129{bottom:492.613333pt;}
.y44{bottom:494.453333pt;}
.y14e{bottom:499.173333pt;}
.yf3{bottom:501.333333pt;}
.yc6{bottom:503.893333pt;}
.y6b{bottom:505.413333pt;}
.y14{bottom:506.373333pt;}
.y128{bottom:508.213333pt;}
.y43{bottom:510.053333pt;}
.y99{bottom:511.173333pt;}
.yf2{bottom:516.933333pt;}
.yc5{bottom:519.493333pt;}
.y6a{bottom:521.093333pt;}
.y13{bottom:522.053333pt;}
.y14d{bottom:522.853333pt;}
.y127{bottom:524.613333pt;}
.y42{bottom:525.733333pt;}
.y98{bottom:526.773333pt;}
.yf1{bottom:532.533333pt;}
.y69{bottom:536.693333pt;}
.y12{bottom:537.653333pt;}
.y14c{bottom:538.453333pt;}
.y126{bottom:540.213333pt;}
.y41{bottom:541.333333pt;}
.yf0{bottom:548.933333pt;}
.yc4{bottom:551.173333pt;}
.y11{bottom:553.333333pt;}
.y125{bottom:555.813333pt;}
.y40{bottom:556.933333pt;}
.y97{bottom:558.453333pt;}
.y16f{bottom:558.773333pt;}
.y14b{bottom:562.053333pt;}
.yef{bottom:564.613333pt;}
.yc3{bottom:566.773333pt;}
.y68{bottom:568.373333pt;}
.y10{bottom:568.933333pt;}
.y124{bottom:571.493333pt;}
.y96{bottom:574.053333pt;}
.y16e{bottom:574.453333pt;}
.y14a{bottom:577.733333pt;}
.yee{bottom:580.213333pt;}
.y3f{bottom:580.613333pt;}
.yc2{bottom:582.453333pt;}
.y67{bottom:583.973333pt;}
.yf{bottom:584.533333pt;}
.y123{bottom:587.093333pt;}
.y95{bottom:589.733333pt;}
.y149{bottom:593.333333pt;}
.yed{bottom:596.613333pt;}
.yc1{bottom:598.053333pt;}
.y66{bottom:599.573333pt;}
.ye{bottom:600.213333pt;}
.y122{bottom:603.493333pt;}
.y94{bottom:605.333333pt;}
.y3e{bottom:612.213333pt;}
.yc0{bottom:613.653333pt;}
.y65{bottom:615.253333pt;}
.yd{bottom:615.813333pt;}
.y148{bottom:617.013333pt;}
.y121{bottom:619.093333pt;}
.y93{bottom:620.933333pt;}
.y3d{bottom:627.893333pt;}
.ybf{bottom:629.333333pt;}
.y64{bottom:630.853333pt;}
.yc{bottom:631.493333pt;}
.y147{bottom:632.613333pt;}
.y120{bottom:634.773333pt;}
.y92{bottom:636.613333pt;}
.y3c{bottom:643.493333pt;}
.ybe{bottom:644.933333pt;}
.y63{bottom:646.533333pt;}
.yb{bottom:647.093333pt;}
.y11f{bottom:650.373333pt;}
.y91{bottom:652.213333pt;}
.y16d{bottom:652.933333pt;}
.y146{bottom:656.213333pt;}
.y3b{bottom:659.093333pt;}
.ybd{bottom:660.613333pt;}
.y62{bottom:662.133333pt;}
.y11e{bottom:665.973333pt;}
.y90{bottom:667.893333pt;}
.y16c{bottom:668.613333pt;}
.ya{bottom:671.013333pt;}
.y145{bottom:671.893333pt;}
.y3a{bottom:674.773333pt;}
.yec{bottom:675.493333pt;}
.y11d{bottom:681.573333pt;}
.y16b{bottom:684.213333pt;}
.y61{bottom:685.733333pt;}
.y144{bottom:687.493333pt;}
.yeb{bottom:691.093333pt;}
.ybc{bottom:692.213333pt;}
.y11c{bottom:697.973333pt;}
.y39{bottom:698.693333pt;}
.y8f{bottom:699.493333pt;}
.yea{bottom:706.773333pt;}
.ybb{bottom:707.813333pt;}
.y143{bottom:711.173333pt;}
.y11b{bottom:713.653333pt;}
.y9{bottom:713.893333pt;}
.y60{bottom:715.093333pt;}
.ye9{bottom:722.373333pt;}
.yba{bottom:723.493333pt;}
.y142{bottom:726.773333pt;}
.y11a{bottom:729.253333pt;}
.y8e{bottom:730.773333pt;}
.ye8{bottom:738.053333pt;}
.yb9{bottom:739.093333pt;}
.y38{bottom:741.573333pt;}
.y141{bottom:742.373333pt;}
.y119{bottom:744.933333pt;}
.y8{bottom:745.733333pt;}
.y8d{bottom:746.373333pt;}
.ye7{bottom:753.653333pt;}
.yb8{bottom:754.693333pt;}
.y5e{bottom:755.013333pt;}
.y37{bottom:757.253333pt;}
.y118{bottom:760.533333pt;}
.y8c{bottom:762.053333pt;}
.y16a{bottom:762.693333pt;}
.y140{bottom:766.053333pt;}
.ye6{bottom:769.253333pt;}
.yb7{bottom:770.373333pt;}
.y36{bottom:772.853333pt;}
.y117{bottom:776.933333pt;}
.y8b{bottom:777.653333pt;}
.y7{bottom:777.733333pt;}
.y169{bottom:778.373333pt;}
.y13f{bottom:781.653333pt;}
.y116{bottom:792.533333pt;}
.y8a{bottom:793.253333pt;}
.yb6{bottom:793.973333pt;}
.y13e{bottom:797.333333pt;}
.ye5{bottom:801.653333pt;}
.y35{bottom:804.453333pt;}
.y115{bottom:808.133333pt;}
.y6{bottom:809.733333pt;}
.y5c{bottom:810.533333pt;}
.y89{bottom:817.173333pt;}
.y168{bottom:817.653333pt;}
.y34{bottom:820.773333pt;}
.y114{bottom:823.813333pt;}
.ye4{bottom:825.573333pt;}
.yb5{bottom:825.653333pt;}
.y13d{bottom:829.813333pt;}
.y167{bottom:833.253333pt;}
.y33{bottom:837.173333pt;}
.y113{bottom:839.413333pt;}
.yb4{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y5a{bottom:850.533333pt;}
.y32{bottom:853.573333pt;}
.y112{bottom:855.813333pt;}
.yb3{bottom:856.853333pt;}
.y88{bottom:860.133333pt;}
.ye3{bottom:868.453333pt;}
.y31{bottom:869.893333pt;}
.y111{bottom:871.413333pt;}
.yb2{bottom:872.533333pt;}
.y13c{bottom:872.693333pt;}
.y87{bottom:875.733333pt;}
.y4{bottom:875.893333pt;}
.ye2{bottom:884.133333pt;}
.y30{bottom:886.293333pt;}
.y110{bottom:887.013333pt;}
.yb1{bottom:888.133333pt;}
.y58{bottom:890.453333pt;}
.y86{bottom:892.053333pt;}
.y13b{bottom:896.613333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:902.640000pt;}
.y10f{bottom:902.720000pt;}
.yb0{bottom:903.840000pt;}
.y85{bottom:908.480000pt;}
.y166{bottom:911.840000pt;}
.ye1{bottom:915.680000pt;}
.y10e{bottom:918.320000pt;}
.yaf{bottom:919.440000pt;}
.y84{bottom:924.800000pt;}
.y165{bottom:927.440000pt;}
.y13a{bottom:929.600000pt;}
.y56{bottom:930.400000pt;}
.ye0{bottom:932.080000pt;}
.y10d{bottom:934.720000pt;}
.y2e{bottom:935.040000pt;}
.y83{bottom:941.200000pt;}
.y164{bottom:943.040000pt;}
.y139{bottom:945.200000pt;}
.ydf{bottom:948.480000pt;}
.y10c{bottom:950.320000pt;}
.yae{bottom:951.040000pt;}
.y82{bottom:957.600000pt;}
.y163{bottom:958.720000pt;}
.yde{bottom:964.800000pt;}
.y10b{bottom:966.000000pt;}
.y2d{bottom:966.720000pt;}
.y138{bottom:969.120000pt;}
.y54{bottom:970.320000pt;}
.ydd{bottom:981.200000pt;}
.y10a{bottom:981.600000pt;}
.y2c{bottom:982.320000pt;}
.y81{bottom:990.000000pt;}
.y109{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.y137{bottom:1002.320000pt;}
.y108{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hd{height:39.200000pt;}
.hc{height:39.226667pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.880000pt;}
.h7{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:93.066667pt;}
.w7{width:94.400000pt;}
.w5{width:110.800000pt;}
.w8{width:113.520000pt;}
.w6{width:118.266667pt;}
.w4{width:138.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.xc{left:98.879988pt;}
.x5{left:108.479988pt;}
.x7{left:154.826667pt;}
.x2{left:180.266655pt;}
.x8{left:293.866667pt;}
.x9{left:405.386667pt;}
.xa{left:524.293333pt;}
.xb{left:619.333333pt;}
.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; }
  