
    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_d5f1ba04705d982aa5afd7a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_552fb456ecad10241d95f23c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_72a8553181f4c355f3dd38db.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9ef944254a255a3fd9365b04.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_abf43c14eeb6c01fb1e8103e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_4daac34ab82c73fa3374d0b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_67549e1f95652d69239d9ed4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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:-138.240000px;}
.v1{vertical-align:-70.560000px;}
.v3{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:61.920000px;}
.ls14{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.291600px;}
.ls20{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.177600px;}
.ls24{letter-spacing:-0.130800px;}
.lsd{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.109200px;}
.ls15{letter-spacing:0.154800px;}
.ls23{letter-spacing:0.169800px;}
.ls7{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.428400px;}
.ls12{letter-spacing:0.460200px;}
.ls18{letter-spacing:0.612000px;}
.ls11{letter-spacing:0.666000px;}
.ls25{letter-spacing:0.828000px;}
.lsa{letter-spacing:0.900000px;}
.ls4{letter-spacing:1.620000px;}
.lse{letter-spacing:8.100000px;}
.ls8{letter-spacing:12.420000px;}
.ls9{letter-spacing:16.740000px;}
.lsc{letter-spacing:23.940000px;}
.ls22{letter-spacing:72.900000px;}
.ls1e{letter-spacing:103.860000px;}
.ls2{letter-spacing:163.596000px;}
.ls3{letter-spacing:164.340000px;}
.ls19{letter-spacing:182.340000px;}
.ls21{letter-spacing:317.700000px;}
.ls0{letter-spacing:2283.756000px;}
.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;}
}
.ws11{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.606000px;}
.ws8{word-spacing:-15.552000px;}
.ws6{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.094800px;}
.wsc{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.833200px;}
.wse{word-spacing:-14.762400px;}
.ws5{word-spacing:-14.648400px;}
.wsf{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:417.698640px;}
._20{margin-left:-10.520160px;}
._1e{margin-left:-6.873360px;}
._21{margin-left:-5.817840px;}
._1f{margin-left:-4.600320px;}
._7{margin-left:-3.527040px;}
._6{margin-left:-2.390400px;}
._3{margin-left:-1.134240px;}
._1{width:1.075680px;}
._2{width:2.607600px;}
._a{width:4.407120px;}
._e{width:5.513040px;}
._4{width:6.573600px;}
._5{width:7.648080px;}
._14{width:8.666160px;}
._8{width:9.680160px;}
._9{width:10.757760px;}
._b{width:11.833440px;}
._10{width:13.685040px;}
._13{width:16.553520px;}
._c{width:17.808480px;}
._17{width:18.885360px;}
._15{width:19.898880px;}
._11{width:20.975760px;}
._12{width:22.111200px;}
._d{width:24.023520px;}
._18{width:25.537680px;}
._26{width:26.831040px;}
._19{width:28.146960px;}
._1a{width:29.521440px;}
._1b{width:31.433760px;}
._16{width:32.628960px;}
._33{width:35.382720px;}
._39{width:36.478800px;}
._25{width:39.022080px;}
._3b{width:40.363680px;}
._30{width:43.106400px;}
._29{width:47.329920px;}
._2b{width:48.403920px;}
._2c{width:49.410720px;}
._31{width:50.914320px;}
._34{width:52.529040px;}
._24{width:53.903520px;}
._f{width:55.517040px;}
._1d{width:59.879520px;}
._22{width:61.732080px;}
._28{width:73.150560px;}
._3f{width:76.551360px;}
._40{width:77.719200px;}
._2e{width:83.783520px;}
._2f{width:84.920160px;}
._3a{width:92.508480px;}
._1c{width:122.388480px;}
._2d{width:130.456080px;}
._2a{width:133.742880px;}
._27{width:172.022160px;}
._3d{width:184.464480px;}
._3e{width:186.230160px;}
._35{width:298.441440px;}
._32{width:456.206640px;}
._0{width:767.850240px;}
._3c{width:783.991920px;}
._23{width:849.216000px;}
._36{width:881.800320px;}
._37{width:889.998480px;}
._38{width:979.108320px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y81{bottom:3.240000px;}
.y87{bottom:3.600000px;}
.y9d{bottom:4.320000px;}
.ya0{bottom:5.760000px;}
.yab{bottom:6.480000px;}
.ya3{bottom:6.660000px;}
.yb0{bottom:8.100000px;}
.yb5{bottom:8.820000px;}
.y7b{bottom:15.150000px;}
.y80{bottom:20.340000px;}
.y98{bottom:20.700000px;}
.y86{bottom:20.880000px;}
.y94{bottom:20.925000px;}
.y78{bottom:22.890000px;}
.y9f{bottom:23.040000px;}
.y114{bottom:23.430000px;}
.ya2{bottom:23.760000px;}
.yaf{bottom:25.425000px;}
.yb4{bottom:26.100000px;}
.y75{bottom:27.105000px;}
.y7a{bottom:30.630000px;}
.y110{bottom:31.140000px;}
.y72{bottom:34.995000px;}
.y7f{bottom:37.620000px;}
.y97{bottom:37.980000px;}
.y93{bottom:38.025000px;}
.y85{bottom:38.160000px;}
.y113{bottom:38.910000px;}
.y116{bottom:39.060000px;}
.yae{bottom:42.705000px;}
.y74{bottom:42.765000px;}
.yb3{bottom:43.380000px;}
.y77{bottom:44.490000px;}
.ya9{bottom:46.800000px;}
.y71{bottom:50.475000px;}
.y79{bottom:52.275000px;}
.y115{bottom:54.540000px;}
.y112{bottom:54.570000px;}
.y7e{bottom:54.900000px;}
.y96{bottom:55.260000px;}
.y92{bottom:55.305000px;}
.y84{bottom:55.440000px;}
.y2{bottom:56.160000px;}
.y73{bottom:58.245000px;}
.yad{bottom:59.985000px;}
.yb2{bottom:60.480000px;}
.y10f{bottom:62.280000px;}
.ya8{bottom:64.080000px;}
.y111{bottom:70.050000px;}
.y8a{bottom:72.540000px;}
.y91{bottom:72.585000px;}
.y83{bottom:72.720000px;}
.y8e{bottom:72.750000px;}
.ya7{bottom:81.360000px;}
.y3f{bottom:88.740000px;}
.y89{bottom:89.820000px;}
.y8d{bottom:89.850000px;}
.y6f{bottom:92.520000px;}
.ya6{bottom:98.640000px;}
.y3e{bottom:106.020000px;}
.y10d{bottom:107.100000px;}
.y8c{bottom:107.130000px;}
.y6e{bottom:109.800000px;}
.ydc{bottom:110.520000px;}
.y3d{bottom:123.300000px;}
.y10c{bottom:124.200000px;}
.y6d{bottom:126.900000px;}
.ydb{bottom:127.620000px;}
.y3c{bottom:140.400000px;}
.y10b{bottom:141.480000px;}
.y6c{bottom:144.180000px;}
.yda{bottom:144.900000px;}
.y117{bottom:157.320000px;}
.y3b{bottom:157.680000px;}
.y10a{bottom:158.760000px;}
.y6b{bottom:161.490000px;}
.yd9{bottom:162.210000px;}
.y3a{bottom:174.990000px;}
.y109{bottom:176.070000px;}
.y6a{bottom:178.770000px;}
.yd8{bottom:179.490000px;}
.y39{bottom:192.270000px;}
.y108{bottom:193.350000px;}
.y69{bottom:196.050000px;}
.yd7{bottom:196.770000px;}
.y38{bottom:209.550000px;}
.y76{bottom:209.700000px;}
.y107{bottom:210.630000px;}
.yd6{bottom:214.050000px;}
.y37{bottom:226.830000px;}
.y106{bottom:227.730000px;}
.yd5{bottom:231.150000px;}
.y36{bottom:243.930000px;}
.y105{bottom:245.010000px;}
.yd4{bottom:248.430000px;}
.y9b{bottom:255.270000px;}
.y35{bottom:261.210000px;}
.y104{bottom:262.290000px;}
.yd3{bottom:265.710000px;}
.y9a{bottom:272.550000px;}
.y34{bottom:278.490000px;}
.y103{bottom:279.570000px;}
.yd2{bottom:282.990000px;}
.y68{bottom:287.490000px;}
.y99{bottom:289.830000px;}
.y33{bottom:295.770000px;}
.y102{bottom:296.850000px;}
.yd1{bottom:300.270000px;}
.y95{bottom:304.230000px;}
.y67{bottom:304.770000px;}
.y32{bottom:313.050000px;}
.y101{bottom:313.950000px;}
.yd0{bottom:317.550000px;}
.y66{bottom:322.050000px;}
.y31{bottom:330.330000px;}
.y100{bottom:331.230000px;}
.ycf{bottom:334.650000px;}
.y65{bottom:339.150000px;}
.y30{bottom:347.430000px;}
.yff{bottom:348.510000px;}
.yce{bottom:351.930000px;}
.y64{bottom:356.430000px;}
.y2f{bottom:364.710000px;}
.yfe{bottom:365.790000px;}
.ycd{bottom:369.210000px;}
.y63{bottom:373.710000px;}
.y2e{bottom:381.990000px;}
.yfd{bottom:383.070000px;}
.ycc{bottom:386.490000px;}
.y62{bottom:390.990000px;}
.y90{bottom:391.170000px;}
.y2d{bottom:399.270000px;}
.yfc{bottom:400.350000px;}
.ycb{bottom:403.770000px;}
.y61{bottom:408.315000px;}
.y2c{bottom:416.595000px;}
.yfb{bottom:417.495000px;}
.yca{bottom:420.915000px;}
.y60{bottom:425.595000px;}
.y2b{bottom:433.695000px;}
.yfa{bottom:434.775000px;}
.yc9{bottom:438.195000px;}
.y5f{bottom:442.695000px;}
.y2a{bottom:450.975000px;}
.yf9{bottom:452.055000px;}
.yc8{bottom:455.475000px;}
.y5e{bottom:459.975000px;}
.y29{bottom:468.255000px;}
.yf8{bottom:469.335000px;}
.yc7{bottom:472.755000px;}
.y5d{bottom:477.255000px;}
.y8f{bottom:478.155000px;}
.y28{bottom:485.175000px;}
.y4a{bottom:485.535000px;}
.yf7{bottom:486.615000px;}
.yc6{bottom:490.035000px;}
.y5c{bottom:494.535000px;}
.y27{bottom:502.815000px;}
.yf6{bottom:503.895000px;}
.yc5{bottom:507.315000px;}
.y5b{bottom:511.815000px;}
.y26{bottom:520.095000px;}
.yf5{bottom:520.995000px;}
.yc4{bottom:524.415000px;}
.y5a{bottom:529.095000px;}
.y49{bottom:536.835000px;}
.y25{bottom:537.195000px;}
.yf4{bottom:538.275000px;}
.yc3{bottom:541.695000px;}
.y59{bottom:546.195000px;}
.y24{bottom:554.475000px;}
.yf3{bottom:555.555000px;}
.yc2{bottom:558.975000px;}
.y58{bottom:563.475000px;}
.y23{bottom:571.755000px;}
.yf2{bottom:572.835000px;}
.yc1{bottom:576.255000px;}
.y57{bottom:580.755000px;}
.y8b{bottom:582.375000px;}
.y22{bottom:589.035000px;}
.yf1{bottom:590.115000px;}
.yc0{bottom:593.535000px;}
.y56{bottom:598.035000px;}
.y21{bottom:605.955000px;}
.y48{bottom:606.315000px;}
.yf0{bottom:607.395000px;}
.ybf{bottom:610.815000px;}
.y55{bottom:615.315000px;}
.y20{bottom:623.595000px;}
.yef{bottom:624.495000px;}
.ybe{bottom:627.915000px;}
.y54{bottom:632.415000px;}
.y1f{bottom:640.695000px;}
.yee{bottom:641.775000px;}
.ybd{bottom:645.195000px;}
.y53{bottom:649.695000px;}
.y1e{bottom:658.005000px;}
.yed{bottom:659.085000px;}
.ybc{bottom:662.505000px;}
.y52{bottom:667.005000px;}
.y1d{bottom:675.285000px;}
.yec{bottom:676.365000px;}
.ybb{bottom:679.785000px;}
.y51{bottom:684.285000px;}
.y1c{bottom:692.565000px;}
.yeb{bottom:693.645000px;}
.yba{bottom:697.065000px;}
.y50{bottom:701.565000px;}
.y88{bottom:703.905000px;}
.y1b{bottom:709.845000px;}
.yea{bottom:710.745000px;}
.yb9{bottom:714.345000px;}
.y4f{bottom:718.845000px;}
.y1a{bottom:726.585000px;}
.y47{bottom:726.945000px;}
.ye9{bottom:728.025000px;}
.yb8{bottom:731.445000px;}
.y4e{bottom:735.945000px;}
.y19{bottom:744.225000px;}
.ye8{bottom:745.305000px;}
.yb7{bottom:748.725000px;}
.y4d{bottom:753.225000px;}
.y18{bottom:761.505000px;}
.ye7{bottom:762.585000px;}
.ydd{bottom:766.005000px;}
.y4c{bottom:766.905000px;}
.y70{bottom:766.980000px;}
.y17{bottom:778.785000px;}
.ye6{bottom:779.865000px;}
.yb6{bottom:783.285000px;}
.y16{bottom:796.065000px;}
.ye5{bottom:797.145000px;}
.yb1{bottom:797.685000px;}
.y82{bottom:808.125000px;}
.y15{bottom:813.345000px;}
.ye4{bottom:814.245000px;}
.y14{bottom:830.085000px;}
.y46{bottom:830.445000px;}
.ye3{bottom:831.525000px;}
.y13{bottom:847.725000px;}
.ye2{bottom:848.805000px;}
.y12{bottom:865.005000px;}
.ye1{bottom:866.085000px;}
.yac{bottom:872.565000px;}
.y11{bottom:882.285000px;}
.ye0{bottom:883.365000px;}
.y7d{bottom:895.290000px;}
.y10{bottom:899.610000px;}
.ydf{bottom:900.690000px;}
.y10e{bottom:914.220000px;}
.yde{bottom:914.370000px;}
.yf{bottom:916.890000px;}
.ye{bottom:933.630000px;}
.y45{bottom:933.990000px;}
.ya5{bottom:946.950000px;}
.y44{bottom:951.270000px;}
.y7c{bottom:968.190000px;}
.y43{bottom:968.550000px;}
.yaa{bottom:985.110000px;}
.yd{bottom:985.830000px;}
.yc{bottom:1003.110000px;}
.yb{bottom:1020.390000px;}
.ya4{bottom:1022.550000px;}
.ya{bottom:1037.490000px;}
.y9{bottom:1054.410000px;}
.y42{bottom:1054.770000px;}
.ya1{bottom:1059.990000px;}
.y8{bottom:1072.050000px;}
.y7{bottom:1089.330000px;}
.y9e{bottom:1098.150000px;}
.y6{bottom:1106.610000px;}
.y5{bottom:1123.710000px;}
.y9c{bottom:1135.590000px;}
.y41{bottom:1141.020000px;}
.y4b{bottom:1157.940000px;}
.y4{bottom:1158.300000px;}
.y3{bottom:1175.220000px;}
.y40{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h12{height:18.396000px;}
.h13{height:36.720000px;}
.h14{height:37.440000px;}
.h3{height:52.998047px;}
.h8{height:53.077852px;}
.hc{height:53.252930px;}
.h7{height:53.573906px;}
.h6{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.hd{height:68.940000px;}
.h16{height:73.476000px;}
.h17{height:74.160000px;}
.hb{height:74.340000px;}
.he{height:86.220000px;}
.h11{height:86.256000px;}
.h9{height:94.500000px;}
.h18{height:102.600000px;}
.hf{height:103.500000px;}
.h15{height:112.320000px;}
.ha{height:115.493906px;}
.h10{height:120.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:81.900000px;}
.we{width:88.740000px;}
.wf{width:90.756000px;}
.w3{width:93.240000px;}
.wd{width:100.620000px;}
.wb{width:100.800000px;}
.wc{width:100.836000px;}
.w7{width:101.340000px;}
.wa{width:110.916000px;}
.w6{width:137.556000px;}
.w5{width:156.090000px;}
.w9{width:180.210000px;}
.w4{width:187.770000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:7.740000px;}
.x2b{left:10.080000px;}
.x3a{left:12.240000px;}
.x2a{left:14.940000px;}
.x29{left:16.740000px;}
.x32{left:19.440000px;}
.x31{left:25.920000px;}
.x2c{left:30.600000px;}
.x37{left:47.700000px;}
.x2f{left:50.940000px;}
.x1{left:106.415987px;}
.x20{left:126.323987px;}
.x21{left:129.563987px;}
.x3{left:136.115987px;}
.x19{left:143.891987px;}
.x1a{left:145.511987px;}
.x2{left:158.429987px;}
.x17{left:168.689987px;}
.x36{left:189.750000px;}
.x18{left:197.669987px;}
.x35{left:198.929987px;}
.x2d{left:201.090000px;}
.x28{left:207.569987px;}
.x40{left:263.129987px;}
.x22{left:271.874987px;}
.x3e{left:274.829987px;}
.x3f{left:275.909987px;}
.x3c{left:279.210000px;}
.x23{left:282.494987px;}
.x1b{left:308.594987px;}
.x1d{left:319.934987px;}
.x1c{left:325.514987px;}
.x3d{left:353.054987px;}
.x38{left:370.695000px;}
.x2e{left:389.595000px;}
.x25{left:407.879987px;}
.x24{left:412.019987px;}
.x43{left:413.609987px;}
.x42{left:423.869987px;}
.x41{left:427.829987px;}
.x14{left:457.274987px;}
.x39{left:482.325000px;}
.x15{left:487.004987px;}
.x1e{left:492.689987px;}
.x1f{left:494.669987px;}
.x6{left:520.484987px;}
.xa{left:527.504987px;}
.x12{left:533.984987px;}
.xe{left:537.944987px;}
.x30{left:546.405000px;}
.x26{left:550.004987px;}
.x7{left:551.444987px;}
.xd{left:557.744987px;}
.x10{left:559.364987px;}
.x5{left:571.244987px;}
.x44{left:572.324987px;}
.x3b{left:583.845000px;}
.x4{left:600.044987px;}
.xf{left:604.184987px;}
.x11{left:681.089987px;}
.x9{left:685.049987px;}
.x27{left:691.049987px;}
.x46{left:697.064987px;}
.x45{left:700.304987px;}
.xc{left:703.589987px;}
.x47{left:704.984987px;}
.x8{left:710.969987px;}
.x34{left:722.309987px;}
.xb{left:733.829987px;}
.x16{left:780.629987px;}
.x13{left:786.749987px;}
@media print{
.v2{vertical-align:-122.880000pt;}
.v1{vertical-align:-62.720000pt;}
.v3{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:55.040000pt;}
.ls14{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.259200pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.157867pt;}
.ls24{letter-spacing:-0.116267pt;}
.lsd{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.097067pt;}
.ls15{letter-spacing:0.137600pt;}
.ls23{letter-spacing:0.150933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.380800pt;}
.ls12{letter-spacing:0.409067pt;}
.ls18{letter-spacing:0.544000pt;}
.ls11{letter-spacing:0.592000pt;}
.ls25{letter-spacing:0.736000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls4{letter-spacing:1.440000pt;}
.lse{letter-spacing:7.200000pt;}
.ls8{letter-spacing:11.040000pt;}
.ls9{letter-spacing:14.880000pt;}
.lsc{letter-spacing:21.280000pt;}
.ls22{letter-spacing:64.800000pt;}
.ls1e{letter-spacing:92.320000pt;}
.ls2{letter-spacing:145.418667pt;}
.ls3{letter-spacing:146.080000pt;}
.ls19{letter-spacing:162.080000pt;}
.ls21{letter-spacing:282.400000pt;}
.ls0{letter-spacing:2030.005333pt;}
.ws11{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.872000pt;}
.ws8{word-spacing:-13.824000pt;}
.ws6{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.417600pt;}
.wsc{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.122133pt;}
.ws5{word-spacing:-13.020800pt;}
.wsf{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws1{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:371.287680pt;}
._20{margin-left:-9.351253pt;}
._1e{margin-left:-6.109653pt;}
._21{margin-left:-5.171413pt;}
._1f{margin-left:-4.089173pt;}
._7{margin-left:-3.135147pt;}
._6{margin-left:-2.124800pt;}
._3{margin-left:-1.008213pt;}
._1{width:0.956160pt;}
._2{width:2.317867pt;}
._a{width:3.917440pt;}
._e{width:4.900480pt;}
._4{width:5.843200pt;}
._5{width:6.798293pt;}
._14{width:7.703253pt;}
._8{width:8.604587pt;}
._9{width:9.562453pt;}
._b{width:10.518613pt;}
._10{width:12.164480pt;}
._13{width:14.714240pt;}
._c{width:15.829760pt;}
._17{width:16.786987pt;}
._15{width:17.687893pt;}
._11{width:18.645120pt;}
._12{width:19.654400pt;}
._d{width:21.354240pt;}
._18{width:22.700160pt;}
._26{width:23.849813pt;}
._19{width:25.019520pt;}
._1a{width:26.241280pt;}
._1b{width:27.941120pt;}
._16{width:29.003520pt;}
._33{width:31.451307pt;}
._39{width:32.425600pt;}
._25{width:34.686293pt;}
._3b{width:35.878827pt;}
._30{width:38.316800pt;}
._29{width:42.071040pt;}
._2b{width:43.025707pt;}
._2c{width:43.920640pt;}
._31{width:45.257173pt;}
._34{width:46.692480pt;}
._24{width:47.914240pt;}
._f{width:49.348480pt;}
._1d{width:53.226240pt;}
._22{width:54.872960pt;}
._28{width:65.022720pt;}
._3f{width:68.045653pt;}
._40{width:69.083733pt;}
._2e{width:74.474240pt;}
._2f{width:75.484587pt;}
._3a{width:82.229760pt;}
._1c{width:108.789760pt;}
._2d{width:115.960960pt;}
._2a{width:118.882560pt;}
._27{width:152.908587pt;}
._3d{width:163.968427pt;}
._3e{width:165.537920pt;}
._35{width:265.281280pt;}
._32{width:405.517013pt;}
._0{width:682.533547pt;}
._3c{width:696.881707pt;}
._23{width:754.858667pt;}
._36{width:783.822507pt;}
._37{width:791.109760pt;}
._38{width:870.318507pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:2.880000pt;}
.y87{bottom:3.200000pt;}
.y9d{bottom:3.840000pt;}
.ya0{bottom:5.120000pt;}
.yab{bottom:5.760000pt;}
.ya3{bottom:5.920000pt;}
.yb0{bottom:7.200000pt;}
.yb5{bottom:7.840000pt;}
.y7b{bottom:13.466667pt;}
.y80{bottom:18.080000pt;}
.y98{bottom:18.400000pt;}
.y86{bottom:18.560000pt;}
.y94{bottom:18.600000pt;}
.y78{bottom:20.346667pt;}
.y9f{bottom:20.480000pt;}
.y114{bottom:20.826667pt;}
.ya2{bottom:21.120000pt;}
.yaf{bottom:22.600000pt;}
.yb4{bottom:23.200000pt;}
.y75{bottom:24.093333pt;}
.y7a{bottom:27.226667pt;}
.y110{bottom:27.680000pt;}
.y72{bottom:31.106667pt;}
.y7f{bottom:33.440000pt;}
.y97{bottom:33.760000pt;}
.y93{bottom:33.800000pt;}
.y85{bottom:33.920000pt;}
.y113{bottom:34.586667pt;}
.y116{bottom:34.720000pt;}
.yae{bottom:37.960000pt;}
.y74{bottom:38.013333pt;}
.yb3{bottom:38.560000pt;}
.y77{bottom:39.546667pt;}
.ya9{bottom:41.600000pt;}
.y71{bottom:44.866667pt;}
.y79{bottom:46.466667pt;}
.y115{bottom:48.480000pt;}
.y112{bottom:48.506667pt;}
.y7e{bottom:48.800000pt;}
.y96{bottom:49.120000pt;}
.y92{bottom:49.160000pt;}
.y84{bottom:49.280000pt;}
.y2{bottom:49.920000pt;}
.y73{bottom:51.773333pt;}
.yad{bottom:53.320000pt;}
.yb2{bottom:53.760000pt;}
.y10f{bottom:55.360000pt;}
.ya8{bottom:56.960000pt;}
.y111{bottom:62.266667pt;}
.y8a{bottom:64.480000pt;}
.y91{bottom:64.520000pt;}
.y83{bottom:64.640000pt;}
.y8e{bottom:64.666667pt;}
.ya7{bottom:72.320000pt;}
.y3f{bottom:78.880000pt;}
.y89{bottom:79.840000pt;}
.y8d{bottom:79.866667pt;}
.y6f{bottom:82.240000pt;}
.ya6{bottom:87.680000pt;}
.y3e{bottom:94.240000pt;}
.y10d{bottom:95.200000pt;}
.y8c{bottom:95.226667pt;}
.y6e{bottom:97.600000pt;}
.ydc{bottom:98.240000pt;}
.y3d{bottom:109.600000pt;}
.y10c{bottom:110.400000pt;}
.y6d{bottom:112.800000pt;}
.ydb{bottom:113.440000pt;}
.y3c{bottom:124.800000pt;}
.y10b{bottom:125.760000pt;}
.y6c{bottom:128.160000pt;}
.yda{bottom:128.800000pt;}
.y117{bottom:139.840000pt;}
.y3b{bottom:140.160000pt;}
.y10a{bottom:141.120000pt;}
.y6b{bottom:143.546667pt;}
.yd9{bottom:144.186667pt;}
.y3a{bottom:155.546667pt;}
.y109{bottom:156.506667pt;}
.y6a{bottom:158.906667pt;}
.yd8{bottom:159.546667pt;}
.y39{bottom:170.906667pt;}
.y108{bottom:171.866667pt;}
.y69{bottom:174.266667pt;}
.yd7{bottom:174.906667pt;}
.y38{bottom:186.266667pt;}
.y76{bottom:186.400000pt;}
.y107{bottom:187.226667pt;}
.yd6{bottom:190.266667pt;}
.y37{bottom:201.626667pt;}
.y106{bottom:202.426667pt;}
.yd5{bottom:205.466667pt;}
.y36{bottom:216.826667pt;}
.y105{bottom:217.786667pt;}
.yd4{bottom:220.826667pt;}
.y9b{bottom:226.906667pt;}
.y35{bottom:232.186667pt;}
.y104{bottom:233.146667pt;}
.yd3{bottom:236.186667pt;}
.y9a{bottom:242.266667pt;}
.y34{bottom:247.546667pt;}
.y103{bottom:248.506667pt;}
.yd2{bottom:251.546667pt;}
.y68{bottom:255.546667pt;}
.y99{bottom:257.626667pt;}
.y33{bottom:262.906667pt;}
.y102{bottom:263.866667pt;}
.yd1{bottom:266.906667pt;}
.y95{bottom:270.426667pt;}
.y67{bottom:270.906667pt;}
.y32{bottom:278.266667pt;}
.y101{bottom:279.066667pt;}
.yd0{bottom:282.266667pt;}
.y66{bottom:286.266667pt;}
.y31{bottom:293.626667pt;}
.y100{bottom:294.426667pt;}
.ycf{bottom:297.466667pt;}
.y65{bottom:301.466667pt;}
.y30{bottom:308.826667pt;}
.yff{bottom:309.786667pt;}
.yce{bottom:312.826667pt;}
.y64{bottom:316.826667pt;}
.y2f{bottom:324.186667pt;}
.yfe{bottom:325.146667pt;}
.ycd{bottom:328.186667pt;}
.y63{bottom:332.186667pt;}
.y2e{bottom:339.546667pt;}
.yfd{bottom:340.506667pt;}
.ycc{bottom:343.546667pt;}
.y62{bottom:347.546667pt;}
.y90{bottom:347.706667pt;}
.y2d{bottom:354.906667pt;}
.yfc{bottom:355.866667pt;}
.ycb{bottom:358.906667pt;}
.y61{bottom:362.946667pt;}
.y2c{bottom:370.306667pt;}
.yfb{bottom:371.106667pt;}
.yca{bottom:374.146667pt;}
.y60{bottom:378.306667pt;}
.y2b{bottom:385.506667pt;}
.yfa{bottom:386.466667pt;}
.yc9{bottom:389.506667pt;}
.y5f{bottom:393.506667pt;}
.y2a{bottom:400.866667pt;}
.yf9{bottom:401.826667pt;}
.yc8{bottom:404.866667pt;}
.y5e{bottom:408.866667pt;}
.y29{bottom:416.226667pt;}
.yf8{bottom:417.186667pt;}
.yc7{bottom:420.226667pt;}
.y5d{bottom:424.226667pt;}
.y8f{bottom:425.026667pt;}
.y28{bottom:431.266667pt;}
.y4a{bottom:431.586667pt;}
.yf7{bottom:432.546667pt;}
.yc6{bottom:435.586667pt;}
.y5c{bottom:439.586667pt;}
.y27{bottom:446.946667pt;}
.yf6{bottom:447.906667pt;}
.yc5{bottom:450.946667pt;}
.y5b{bottom:454.946667pt;}
.y26{bottom:462.306667pt;}
.yf5{bottom:463.106667pt;}
.yc4{bottom:466.146667pt;}
.y5a{bottom:470.306667pt;}
.y49{bottom:477.186667pt;}
.y25{bottom:477.506667pt;}
.yf4{bottom:478.466667pt;}
.yc3{bottom:481.506667pt;}
.y59{bottom:485.506667pt;}
.y24{bottom:492.866667pt;}
.yf3{bottom:493.826667pt;}
.yc2{bottom:496.866667pt;}
.y58{bottom:500.866667pt;}
.y23{bottom:508.226667pt;}
.yf2{bottom:509.186667pt;}
.yc1{bottom:512.226667pt;}
.y57{bottom:516.226667pt;}
.y8b{bottom:517.666667pt;}
.y22{bottom:523.586667pt;}
.yf1{bottom:524.546667pt;}
.yc0{bottom:527.586667pt;}
.y56{bottom:531.586667pt;}
.y21{bottom:538.626667pt;}
.y48{bottom:538.946667pt;}
.yf0{bottom:539.906667pt;}
.ybf{bottom:542.946667pt;}
.y55{bottom:546.946667pt;}
.y20{bottom:554.306667pt;}
.yef{bottom:555.106667pt;}
.ybe{bottom:558.146667pt;}
.y54{bottom:562.146667pt;}
.y1f{bottom:569.506667pt;}
.yee{bottom:570.466667pt;}
.ybd{bottom:573.506667pt;}
.y53{bottom:577.506667pt;}
.y1e{bottom:584.893333pt;}
.yed{bottom:585.853333pt;}
.ybc{bottom:588.893333pt;}
.y52{bottom:592.893333pt;}
.y1d{bottom:600.253333pt;}
.yec{bottom:601.213333pt;}
.ybb{bottom:604.253333pt;}
.y51{bottom:608.253333pt;}
.y1c{bottom:615.613333pt;}
.yeb{bottom:616.573333pt;}
.yba{bottom:619.613333pt;}
.y50{bottom:623.613333pt;}
.y88{bottom:625.693333pt;}
.y1b{bottom:630.973333pt;}
.yea{bottom:631.773333pt;}
.yb9{bottom:634.973333pt;}
.y4f{bottom:638.973333pt;}
.y1a{bottom:645.853333pt;}
.y47{bottom:646.173333pt;}
.ye9{bottom:647.133333pt;}
.yb8{bottom:650.173333pt;}
.y4e{bottom:654.173333pt;}
.y19{bottom:661.533333pt;}
.ye8{bottom:662.493333pt;}
.yb7{bottom:665.533333pt;}
.y4d{bottom:669.533333pt;}
.y18{bottom:676.893333pt;}
.ye7{bottom:677.853333pt;}
.ydd{bottom:680.893333pt;}
.y4c{bottom:681.693333pt;}
.y70{bottom:681.760000pt;}
.y17{bottom:692.253333pt;}
.ye6{bottom:693.213333pt;}
.yb6{bottom:696.253333pt;}
.y16{bottom:707.613333pt;}
.ye5{bottom:708.573333pt;}
.yb1{bottom:709.053333pt;}
.y82{bottom:718.333333pt;}
.y15{bottom:722.973333pt;}
.ye4{bottom:723.773333pt;}
.y14{bottom:737.853333pt;}
.y46{bottom:738.173333pt;}
.ye3{bottom:739.133333pt;}
.y13{bottom:753.533333pt;}
.ye2{bottom:754.493333pt;}
.y12{bottom:768.893333pt;}
.ye1{bottom:769.853333pt;}
.yac{bottom:775.613333pt;}
.y11{bottom:784.253333pt;}
.ye0{bottom:785.213333pt;}
.y7d{bottom:795.813333pt;}
.y10{bottom:799.653333pt;}
.ydf{bottom:800.613333pt;}
.y10e{bottom:812.640000pt;}
.yde{bottom:812.773333pt;}
.yf{bottom:815.013333pt;}
.ye{bottom:829.893333pt;}
.y45{bottom:830.213333pt;}
.ya5{bottom:841.733333pt;}
.y44{bottom:845.573333pt;}
.y7c{bottom:860.613333pt;}
.y43{bottom:860.933333pt;}
.yaa{bottom:875.653333pt;}
.yd{bottom:876.293333pt;}
.yc{bottom:891.653333pt;}
.yb{bottom:907.013333pt;}
.ya4{bottom:908.933333pt;}
.ya{bottom:922.213333pt;}
.y9{bottom:937.253333pt;}
.y42{bottom:937.573333pt;}
.ya1{bottom:942.213333pt;}
.y8{bottom:952.933333pt;}
.y7{bottom:968.293333pt;}
.y9e{bottom:976.133333pt;}
.y6{bottom:983.653333pt;}
.y5{bottom:998.853333pt;}
.y9c{bottom:1009.413333pt;}
.y41{bottom:1014.240000pt;}
.y4b{bottom:1029.280000pt;}
.y4{bottom:1029.600000pt;}
.y3{bottom:1044.640000pt;}
.y40{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h12{height:16.352000pt;}
.h13{height:32.640000pt;}
.h14{height:33.280000pt;}
.h3{height:47.109375pt;}
.h8{height:47.180312pt;}
.hc{height:47.335938pt;}
.h7{height:47.621250pt;}
.h6{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.hd{height:61.280000pt;}
.h16{height:65.312000pt;}
.h17{height:65.920000pt;}
.hb{height:66.080000pt;}
.he{height:76.640000pt;}
.h11{height:76.672000pt;}
.h9{height:84.000000pt;}
.h18{height:91.200000pt;}
.hf{height:92.000000pt;}
.h15{height:99.840000pt;}
.ha{height:102.661250pt;}
.h10{height:107.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:72.800000pt;}
.we{width:78.880000pt;}
.wf{width:80.672000pt;}
.w3{width:82.880000pt;}
.wd{width:89.440000pt;}
.wb{width:89.600000pt;}
.wc{width:89.632000pt;}
.w7{width:90.080000pt;}
.wa{width:98.592000pt;}
.w6{width:122.272000pt;}
.w5{width:138.746667pt;}
.w9{width:160.186667pt;}
.w4{width:166.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:6.880000pt;}
.x2b{left:8.960000pt;}
.x3a{left:10.880000pt;}
.x2a{left:13.280000pt;}
.x29{left:14.880000pt;}
.x32{left:17.280000pt;}
.x31{left:23.040000pt;}
.x2c{left:27.200000pt;}
.x37{left:42.400000pt;}
.x2f{left:45.280000pt;}
.x1{left:94.591988pt;}
.x20{left:112.287988pt;}
.x21{left:115.167988pt;}
.x3{left:120.991988pt;}
.x19{left:127.903988pt;}
.x1a{left:129.343988pt;}
.x2{left:140.826655pt;}
.x17{left:149.946655pt;}
.x36{left:168.666667pt;}
.x18{left:175.706655pt;}
.x35{left:176.826655pt;}
.x2d{left:178.746667pt;}
.x28{left:184.506655pt;}
.x40{left:233.893322pt;}
.x22{left:241.666655pt;}
.x3e{left:244.293322pt;}
.x3f{left:245.253322pt;}
.x3c{left:248.186667pt;}
.x23{left:251.106655pt;}
.x1b{left:274.306655pt;}
.x1d{left:284.386655pt;}
.x1c{left:289.346655pt;}
.x3d{left:313.826655pt;}
.x38{left:329.506667pt;}
.x2e{left:346.306667pt;}
.x25{left:362.559988pt;}
.x24{left:366.239988pt;}
.x43{left:367.653322pt;}
.x42{left:376.773322pt;}
.x41{left:380.293322pt;}
.x14{left:406.466655pt;}
.x39{left:428.733333pt;}
.x15{left:432.893322pt;}
.x1e{left:437.946655pt;}
.x1f{left:439.706655pt;}
.x6{left:462.653322pt;}
.xa{left:468.893322pt;}
.x12{left:474.653322pt;}
.xe{left:478.173322pt;}
.x30{left:485.693333pt;}
.x26{left:488.893322pt;}
.x7{left:490.173322pt;}
.xd{left:495.773322pt;}
.x10{left:497.213322pt;}
.x5{left:507.773322pt;}
.x44{left:508.733322pt;}
.x3b{left:518.973333pt;}
.x4{left:533.373322pt;}
.xf{left:537.053322pt;}
.x11{left:605.413322pt;}
.x9{left:608.933322pt;}
.x27{left:614.266655pt;}
.x46{left:619.613322pt;}
.x45{left:622.493322pt;}
.xc{left:625.413322pt;}
.x47{left:626.653322pt;}
.x8{left:631.973322pt;}
.x34{left:642.053322pt;}
.xb{left:652.293322pt;}
.x16{left:693.893322pt;}
.x13{left:699.333322pt;}
}




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