
    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_22553ba2500f138e1ebf7946.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f8f64c64a246609fac4c0ffc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_95477baad05485d6976ea4d1.woff')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_3b4976b8f9b6d10b4d881e80.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_62baf95671a802cee77636f4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fcc2859d0e34cfac1959fcd9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_1e28cf473acfb37780e1df35.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b40fb2da6cb5ea43f5861cc7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.ls1b{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.066000px;}
.ls16{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.014760px;}
.ls13{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.098400px;}
.ls17{letter-spacing:0.111000px;}
.ls15{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.374760px;}
.ls3{letter-spacing:1.893600px;}
.ls0{letter-spacing:13.347360px;}
.ls1a{letter-spacing:47.726640px;}
.lsd{letter-spacing:70.406640px;}
.ls19{letter-spacing:80.846640px;}
.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;}
}
.wsf{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.424400px;}
.ws8{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.344600px;}
.ws3{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.278240px;}
.wse{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.213080px;}
.ws13{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.160400px;}
.ws14{word-spacing:-13.101000px;}
.ws9{word-spacing:-13.064400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._32{margin-left:-4.421040px;}
._c{margin-left:-3.306600px;}
._8{margin-left:-2.302200px;}
._0{margin-left:-1.110000px;}
._3{width:1.426800px;}
._4{width:2.508840px;}
._2{width:3.557532px;}
._1{width:4.764000px;}
._a{width:5.817120px;}
._7{width:7.033800px;}
._b{width:8.104920px;}
._6{width:9.172080px;}
._9{width:10.396800px;}
._5{width:11.462520px;}
._f{width:15.001080px;}
._17{width:16.052040px;}
._1b{width:17.134200px;}
._14{width:18.817560px;}
._d{width:20.418480px;}
._e{width:21.552720px;}
._30{width:23.176560px;}
._2d{width:24.829560px;}
._1f{width:25.851600px;}
._31{width:26.873640px;}
._1a{width:31.983840px;}
._10{width:33.306480px;}
._20{width:34.629120px;}
._15{width:36.913680px;}
._11{width:40.280400px;}
._21{width:42.023880px;}
._29{width:43.166160px;}
._22{width:46.653120px;}
._2f{width:48.877560px;}
._27{width:50.560920px;}
._33{width:52.159200px;}
._13{width:57.594960px;}
._36{width:58.936680px;}
._1c{width:62.524800px;}
._34{width:67.294800px;}
._35{width:68.851200px;}
._18{width:70.701120px;}
._19{width:71.843400px;}
._28{width:77.915520px;}
._12{width:79.358400px;}
._24{width:85.550760px;}
._2c{width:92.584800px;}
._1d{width:95.590800px;}
._1e{width:97.241880px;}
._23{width:103.303920px;}
._2e{width:109.478520px;}
._26{width:114.889320px;}
._16{width:156.372120px;}
._25{width:157.394160px;}
._2a{width:178.315920px;}
._2b{width:213.546240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y80{bottom:7.830000px;}
.ya5{bottom:7.860000px;}
.y7d{bottom:7.920000px;}
.y8a{bottom:25.380000px;}
.ybb{bottom:25.410000px;}
.y7c{bottom:25.470000px;}
.y7f{bottom:43.020000px;}
.yd7{bottom:43.050000px;}
.y82{bottom:43.110000px;}
.yd6{bottom:60.600000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y56{bottom:114.690000px;}
.y10e{bottom:115.860000px;}
.y10d{bottom:133.500000px;}
.y24{bottom:138.540000px;}
.y7a{bottom:139.530000px;}
.y161{bottom:144.390000px;}
.ya0{bottom:145.830000px;}
.y55{bottom:150.330000px;}
.y10c{bottom:151.140000px;}
.y13b{bottom:154.740000px;}
.y23{bottom:156.090000px;}
.yc5{bottom:159.330000px;}
.y160{bottom:161.940000px;}
.y9f{bottom:163.380000px;}
.ydf{bottom:164.280000px;}
.y10b{bottom:168.690000px;}
.y13a{bottom:172.290000px;}
.y79{bottom:175.170000px;}
.yc4{bottom:176.880000px;}
.y15f{bottom:179.580000px;}
.y54{bottom:179.760000px;}
.y9e{bottom:181.020000px;}
.yde{bottom:181.830000px;}
.y10a{bottom:186.330000px;}
.y139{bottom:189.840000px;}
.y22{bottom:191.730000px;}
.yc3{bottom:194.520000px;}
.y15e{bottom:197.130000px;}
.y53{bottom:197.490000px;}
.y9d{bottom:198.570000px;}
.ydd{bottom:199.380000px;}
.y109{bottom:203.880000px;}
.y138{bottom:207.480000px;}
.y21{bottom:209.280000px;}
.y78{bottom:210.720000px;}
.yc2{bottom:212.070000px;}
.y15d{bottom:214.680000px;}
.y52{bottom:215.040000px;}
.y9c{bottom:216.210000px;}
.ydc{bottom:217.020000px;}
.y108{bottom:221.430000px;}
.y20{bottom:226.920000px;}
.yc1{bottom:229.620000px;}
.y137{bottom:234.030000px;}
.y107{bottom:239.070000px;}
.y15c{bottom:241.320000px;}
.y1f{bottom:244.470000px;}
.y77{bottom:246.270000px;}
.ydb{bottom:249.960000px;}
.y51{bottom:250.680000px;}
.y136{bottom:251.580000px;}
.y9b{bottom:251.760000px;}
.yc0{bottom:256.260000px;}
.y15b{bottom:258.870000px;}
.y1e{bottom:262.020000px;}
.y76{bottom:263.910000px;}
.y135{bottom:269.220000px;}
.y9a{bottom:269.310000px;}
.y15a{bottom:276.510000px;}
.y106{bottom:277.590000px;}
.y1d{bottom:279.660000px;}
.y50{bottom:280.110000px;}
.y75{bottom:281.460000px;}
.y134{bottom:286.770000px;}
.y99{bottom:286.950000px;}
.ybf{bottom:288.840000px;}
.y105{bottom:295.230000px;}
.y4f{bottom:297.840000px;}
.y74{bottom:299.010000px;}
.y159{bottom:303.060000px;}
.y98{bottom:304.500000px;}
.y1c{bottom:306.570000px;}
.yda{bottom:312.510000px;}
.y104{bottom:312.780000px;}
.y133{bottom:313.410000px;}
.y4e{bottom:315.390000px;}
.y73{bottom:316.650000px;}
.y158{bottom:320.610000px;}
.ybe{bottom:321.780000px;}
.y97{bottom:322.140000px;}
.y103{bottom:330.420000px;}
.y132{bottom:330.960000px;}
.y4d{bottom:332.940000px;}
.y72{bottom:334.200000px;}
.y157{bottom:338.250000px;}
.y96{bottom:339.690000px;}
.y102{bottom:347.970000px;}
.y131{bottom:348.510000px;}
.y1b{bottom:354.810000px;}
.y156{bottom:355.800000px;}
.y95{bottom:357.240000px;}
.y71{bottom:360.840000px;}
.y101{bottom:365.610000px;}
.ybd{bottom:366.690000px;}
.y4c{bottom:368.580000px;}
.y1a{bottom:372.720000px;}
.y130{bottom:375.150000px;}
.yd9{bottom:378.750000px;}
.y155{bottom:382.440000px;}
.y100{bottom:383.160000px;}
.y12f{bottom:392.700000px;}
.y94{bottom:392.880000px;}
.y4b{bottom:395.130000px;}
.y70{bottom:396.750000px;}
.y154{bottom:399.990000px;}
.yff{bottom:400.710000px;}
.yd8{bottom:405.300000px;}
.y19{bottom:409.800000px;}
.y93{bottom:410.430000px;}
.ybc{bottom:411.690000px;}
.y153{bottom:417.540000px;}
.yfe{bottom:418.350000px;}
.y12e{bottom:419.340000px;}
.y18{bottom:427.350000px;}
.y92{bottom:427.980000px;}
.y4a{bottom:430.770000px;}
.y152{bottom:435.180000px;}
.y12d{bottom:436.890000px;}
.yd5{bottom:438.330000px;}
.y17{bottom:444.900000px;}
.y6f{bottom:444.990000px;}
.y91{bottom:445.620000px;}
.y49{bottom:448.320000px;}
.y151{bottom:452.730000px;}
.y12c{bottom:454.440000px;}
.yba{bottom:456.600000px;}
.yfd{bottom:456.780000px;}
.y90{bottom:463.170000px;}
.y48{bottom:465.870000px;}
.y150{bottom:470.400000px;}
.yfc{bottom:474.540000px;}
.y6e{bottom:477.240000px;}
.y16{bottom:480.570000px;}
.y8f{bottom:480.840000px;}
.y12b{bottom:481.110000px;}
.y47{bottom:483.540000px;}
.yfb{bottom:492.090000px;}
.y14f{bottom:496.950000px;}
.y15{bottom:498.120000px;}
.y8e{bottom:498.390000px;}
.y12a{bottom:498.660000px;}
.y46{bottom:501.090000px;}
.yb9{bottom:501.540000px;}
.yfa{bottom:509.730000px;}
.y14e{bottom:514.500000px;}
.y14{bottom:515.670000px;}
.yd4{bottom:518.460000px;}
.y45{bottom:518.730000px;}
.y8d{bottom:524.940000px;}
.y129{bottom:525.300000px;}
.yf9{bottom:527.280000px;}
.y14d{bottom:532.140000px;}
.y44{bottom:536.280000px;}
.y128{bottom:542.850000px;}
.yf8{bottom:544.830000px;}
.yb8{bottom:546.450000px;}
.y14c{bottom:549.690000px;}
.y13{bottom:551.310000px;}
.y43{bottom:553.830000px;}
.y8c{bottom:559.860000px;}
.y127{bottom:560.400000px;}
.yf7{bottom:562.470000px;}
.y12{bottom:568.860000px;}
.y42{bottom:571.470000px;}
.y8b{bottom:572.010000px;}
.y14b{bottom:576.330000px;}
.yf6{bottom:580.020000px;}
.yd3{bottom:580.920000px;}
.y11{bottom:586.500000px;}
.y126{bottom:587.040000px;}
.y14a{bottom:593.880000px;}
.yb7{bottom:595.140000px;}
.yf5{bottom:597.660000px;}
.y41{bottom:598.020000px;}
.y10{bottom:604.050000px;}
.y125{bottom:604.590000px;}
.y6d{bottom:615.840000px;}
.y149{bottom:620.430000px;}
.y124{bottom:622.230000px;}
.yd2{bottom:629.610000px;}
.yb6{bottom:630.690000px;}
.y6c{bottom:633.390000px;}
.y40{bottom:633.930000px;}
.y89{bottom:634.560000px;}
.yf4{bottom:636.090000px;}
.y148{bottom:638.070000px;}
.yf{bottom:639.600000px;}
.yb5{bottom:648.330000px;}
.y123{bottom:648.780000px;}
.y6b{bottom:650.940000px;}
.yf3{bottom:653.820000px;}
.y147{bottom:655.620000px;}
.ye{bottom:657.240000px;}
.yd1{bottom:665.250000px;}
.yb4{bottom:665.880000px;}
.y122{bottom:666.330000px;}
.yf2{bottom:671.370000px;}
.y146{bottom:673.260000px;}
.y6a{bottom:677.580000px;}
.y88{bottom:679.470000px;}
.y3f{bottom:682.260000px;}
.yd0{bottom:682.800000px;}
.yb3{bottom:683.520000px;}
.y121{bottom:683.970000px;}
.yf1{bottom:689.010000px;}
.yd{bottom:692.790000px;}
.y3e{bottom:699.810000px;}
.ycf{bottom:700.440000px;}
.yb2{bottom:701.070000px;}
.y120{bottom:701.520000px;}
.yf0{bottom:706.560000px;}
.yc{bottom:710.430000px;}
.y69{bottom:713.130000px;}
.y3d{bottom:717.360000px;}
.yce{bottom:717.990000px;}
.yef{bottom:724.110000px;}
.y87{bottom:724.380000px;}
.yb{bottom:727.980000px;}
.y11f{bottom:728.160000px;}
.y68{bottom:730.770000px;}
.y3c{bottom:735.000000px;}
.ycd{bottom:735.540000px;}
.yb1{bottom:736.620000px;}
.yee{bottom:741.750000px;}
.y11e{bottom:745.710000px;}
.y67{bottom:748.320000px;}
.y3b{bottom:752.550000px;}
.yb0{bottom:754.260000px;}
.ya{bottom:754.890000px;}
.yed{bottom:759.300000px;}
.ycc{bottom:762.180000px;}
.y11d{bottom:763.260000px;}
.y86{bottom:769.290000px;}
.y3a{bottom:770.190000px;}
.yaf{bottom:771.810000px;}
.y66{bottom:774.870000px;}
.yec{bottom:776.850000px;}
.y39{bottom:787.740000px;}
.yae{bottom:789.450000px;}
.y11c{bottom:789.900000px;}
.ycb{bottom:795.120000px;}
.y145{bottom:796.740000px;}
.y9{bottom:803.130000px;}
.y38{bottom:805.290000px;}
.yad{bottom:807.000000px;}
.y11b{bottom:807.450000px;}
.y65{bottom:810.510000px;}
.y85{bottom:814.200000px;}
.y144{bottom:814.290000px;}
.yeb{bottom:815.370000px;}
.y37{bottom:822.930000px;}
.y11a{bottom:825.090000px;}
.y64{bottom:828.060000px;}
.y143{bottom:831.930000px;}
.yea{bottom:833.100000px;}
.y8{bottom:838.950000px;}
.y36{bottom:840.480000px;}
.yac{bottom:842.550000px;}
.y63{bottom:845.700000px;}
.y142{bottom:849.480000px;}
.ye9{bottom:850.650000px;}
.y119{bottom:851.910000px;}
.yca{bottom:857.670000px;}
.y84{bottom:859.110000px;}
.yab{bottom:860.190000px;}
.y62{bottom:863.250000px;}
.y141{bottom:867.030000px;}
.ye8{bottom:868.200000px;}
.y7{bottom:874.950000px;}
.y35{bottom:876.030000px;}
.yaa{bottom:877.740000px;}
.y61{bottom:880.800000px;}
.y140{bottom:884.670000px;}
.ye7{bottom:885.840000px;}
.y34{bottom:893.670000px;}
.ya9{bottom:895.380000px;}
.y118{bottom:900.240000px;}
.y13f{bottom:902.220000px;}
.yc9{bottom:902.580000px;}
.ye6{bottom:903.390000px;}
.y83{bottom:904.020000px;}
.y60{bottom:907.440000px;}
.y6{bottom:910.950000px;}
.y33{bottom:911.220000px;}
.ye5{bottom:920.940000px;}
.ya8{bottom:921.930000px;}
.y117{bottom:927.150000px;}
.y32{bottom:928.860000px;}
.y5f{bottom:942.990000px;}
.y31{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.yc8{bottom:947.490000px;}
.y81{bottom:948.930000px;}
.ya7{bottom:954.870000px;}
.ye4{bottom:959.550000px;}
.y5e{bottom:960.630000px;}
.y30{bottom:963.960000px;}
.y116{bottom:964.500000px;}
.ye3{bottom:977.190000px;}
.y5d{bottom:978.180000px;}
.y2f{bottom:981.600000px;}
.ya6{bottom:982.230000px;}
.y4{bottom:985.380000px;}
.y165{bottom:990.600000px;}
.ye2{bottom:994.740000px;}
.y2e{bottom:999.150000px;}
.y5c{bottom:1007.700000px;}
.y164{bottom:1008.150000px;}
.ya4{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.y7e{bottom:1011.510000px;}
.ye1{bottom:1012.320000px;}
.y115{bottom:1012.770000px;}
.yc7{bottom:1013.760000px;}
.y2d{bottom:1016.820000px;}
.y5b{bottom:1025.370000px;}
.y163{bottom:1025.820000px;}
.y114{bottom:1030.320000px;}
.y13e{bottom:1034.370000px;}
.ya3{bottom:1036.890000px;}
.ye0{bottom:1039.230000px;}
.y5a{bottom:1042.920000px;}
.y162{bottom:1043.370000px;}
.y113{bottom:1047.960000px;}
.yc6{bottom:1052.280000px;}
.y2c{bottom:1052.370000px;}
.y59{bottom:1060.560000px;}
.y13d{bottom:1060.920000px;}
.ya2{bottom:1064.250000px;}
.y112{bottom:1065.510000px;}
.y2b{bottom:1069.920000px;}
.y7b{bottom:1073.970000px;}
.y13c{bottom:1078.560000px;}
.y111{bottom:1083.150000px;}
.y2a{bottom:1087.560000px;}
.ya1{bottom:1091.610000px;}
.y58{bottom:1096.110000px;}
.y110{bottom:1100.700000px;}
.y29{bottom:1105.110000px;}
.y57{bottom:1113.750000px;}
.y28{bottom:1122.750000px;}
.y10f{bottom:1127.610000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h13{height:26.580000px;}
.h12{height:26.640000px;}
.h2{height:32.918906px;}
.h3{height:39.155273px;}
.h10{height:41.661211px;}
.hf{height:44.100000px;}
.h14{height:44.130000px;}
.hc{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h15{height:59.973223px;}
.hd{height:61.740000px;}
.hb{height:61.793886px;}
.he{height:61.860000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h16{height:79.320000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1e{width:54.480000px;}
.w12{width:61.830000px;}
.w5{width:71.280000px;}
.w15{width:93.630000px;}
.w18{width:98.220000px;}
.w6{width:98.670000px;}
.w11{width:104.400000px;}
.w3{width:105.780000px;}
.w1b{width:109.470000px;}
.w13{width:116.040000px;}
.wf{width:116.130000px;}
.w16{width:117.450000px;}
.w19{width:122.310000px;}
.w1c{width:127.350000px;}
.we{width:127.530000px;}
.w1f{width:132.660000px;}
.w17{width:135.090000px;}
.wb{width:139.440000px;}
.w10{width:146.700000px;}
.w1d{width:160.740000px;}
.w20{width:167.130000px;}
.w8{width:170.760000px;}
.w1a{width:185.130000px;}
.w4{width:186.750000px;}
.wa{width:206.640000px;}
.w14{width:206.730000px;}
.wd{width:227.820000px;}
.wc{width:258.660000px;}
.w7{width:289.980000px;}
.w9{width:327.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:93.420000px;}
.x4{left:95.039987px;}
.x23{left:111.239987px;}
.x5{left:122.039987px;}
.x1a{left:163.200000px;}
.x9{left:175.350000px;}
.x1f{left:178.950000px;}
.x15{left:185.700000px;}
.x2{left:192.719987px;}
.xd{left:201.899987px;}
.x12{left:208.920000px;}
.x10{left:264.990000px;}
.x1b{left:281.460000px;}
.x20{left:307.110000px;}
.x16{left:333.210000px;}
.x7{left:344.909987px;}
.xa{left:362.910000px;}
.x1c{left:417.360000px;}
.xb{left:435.000000px;}
.x17{left:438.330000px;}
.x13{left:468.300000px;}
.x18{left:500.880000px;}
.x1d{left:516.300000px;}
.x21{left:523.860000px;}
.xc{left:534.480000px;}
.x11{left:593.160000px;}
.x19{left:617.730000px;}
.x1e{left:639.330000px;}
.x22{left:657.330000px;}
.x14{left:696.930000px;}
.x6{left:729.059987px;}
.xe{left:800.339987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls1b{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.013120pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.087467pt;}
.ls17{letter-spacing:0.098667pt;}
.ls15{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.333120pt;}
.ls3{letter-spacing:1.683200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls1a{letter-spacing:42.423680pt;}
.lsd{letter-spacing:62.583680pt;}
.ls19{letter-spacing:71.863680pt;}
.wsf{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.932800pt;}
.ws8{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.861867pt;}
.ws3{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.802880pt;}
.wse{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.744960pt;}
.ws13{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.698133pt;}
.ws14{word-spacing:-11.645333pt;}
.ws9{word-spacing:-11.612800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._32{margin-left:-3.929813pt;}
._c{margin-left:-2.939200pt;}
._8{margin-left:-2.046400pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.268267pt;}
._4{width:2.230080pt;}
._2{width:3.162250pt;}
._1{width:4.234667pt;}
._a{width:5.170773pt;}
._7{width:6.252266pt;}
._b{width:7.204373pt;}
._6{width:8.152960pt;}
._9{width:9.241600pt;}
._5{width:10.188907pt;}
._f{width:13.334293pt;}
._17{width:14.268480pt;}
._1b{width:15.230400pt;}
._14{width:16.726720pt;}
._d{width:18.149760pt;}
._e{width:19.157973pt;}
._30{width:20.601387pt;}
._2d{width:22.070720pt;}
._1f{width:22.979200pt;}
._31{width:23.887680pt;}
._1a{width:28.430080pt;}
._10{width:29.605760pt;}
._20{width:30.781440pt;}
._15{width:32.812160pt;}
._11{width:35.804800pt;}
._21{width:37.354560pt;}
._29{width:38.369920pt;}
._22{width:41.469440pt;}
._2f{width:43.446720pt;}
._27{width:44.943040pt;}
._33{width:46.363733pt;}
._13{width:51.195520pt;}
._36{width:52.388160pt;}
._1c{width:55.577600pt;}
._34{width:59.817600pt;}
._35{width:61.201067pt;}
._18{width:62.845440pt;}
._19{width:63.860800pt;}
._28{width:69.258240pt;}
._12{width:70.540800pt;}
._24{width:76.045120pt;}
._2c{width:82.297600pt;}
._1d{width:84.969600pt;}
._1e{width:86.437227pt;}
._23{width:91.825707pt;}
._2e{width:97.314240pt;}
._26{width:102.123840pt;}
._16{width:138.997440pt;}
._25{width:139.905920pt;}
._2a{width:158.503040pt;}
._2b{width:189.818880pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:6.960000pt;}
.ya5{bottom:6.986667pt;}
.y7d{bottom:7.040000pt;}
.y8a{bottom:22.560000pt;}
.ybb{bottom:22.586667pt;}
.y7c{bottom:22.640000pt;}
.y7f{bottom:38.240000pt;}
.yd7{bottom:38.266667pt;}
.y82{bottom:38.320000pt;}
.yd6{bottom:53.866667pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y56{bottom:101.946667pt;}
.y10e{bottom:102.986667pt;}
.y10d{bottom:118.666667pt;}
.y24{bottom:123.146667pt;}
.y7a{bottom:124.026667pt;}
.y161{bottom:128.346667pt;}
.ya0{bottom:129.626667pt;}
.y55{bottom:133.626667pt;}
.y10c{bottom:134.346667pt;}
.y13b{bottom:137.546667pt;}
.y23{bottom:138.746667pt;}
.yc5{bottom:141.626667pt;}
.y160{bottom:143.946667pt;}
.y9f{bottom:145.226667pt;}
.ydf{bottom:146.026667pt;}
.y10b{bottom:149.946667pt;}
.y13a{bottom:153.146667pt;}
.y79{bottom:155.706667pt;}
.yc4{bottom:157.226667pt;}
.y15f{bottom:159.626667pt;}
.y54{bottom:159.786667pt;}
.y9e{bottom:160.906667pt;}
.yde{bottom:161.626667pt;}
.y10a{bottom:165.626667pt;}
.y139{bottom:168.746667pt;}
.y22{bottom:170.426667pt;}
.yc3{bottom:172.906667pt;}
.y15e{bottom:175.226667pt;}
.y53{bottom:175.546667pt;}
.y9d{bottom:176.506667pt;}
.ydd{bottom:177.226667pt;}
.y109{bottom:181.226667pt;}
.y138{bottom:184.426667pt;}
.y21{bottom:186.026667pt;}
.y78{bottom:187.306667pt;}
.yc2{bottom:188.506667pt;}
.y15d{bottom:190.826667pt;}
.y52{bottom:191.146667pt;}
.y9c{bottom:192.186667pt;}
.ydc{bottom:192.906667pt;}
.y108{bottom:196.826667pt;}
.y20{bottom:201.706667pt;}
.yc1{bottom:204.106667pt;}
.y137{bottom:208.026667pt;}
.y107{bottom:212.506667pt;}
.y15c{bottom:214.506667pt;}
.y1f{bottom:217.306667pt;}
.y77{bottom:218.906667pt;}
.ydb{bottom:222.186667pt;}
.y51{bottom:222.826667pt;}
.y136{bottom:223.626667pt;}
.y9b{bottom:223.786667pt;}
.yc0{bottom:227.786667pt;}
.y15b{bottom:230.106667pt;}
.y1e{bottom:232.906667pt;}
.y76{bottom:234.586667pt;}
.y135{bottom:239.306667pt;}
.y9a{bottom:239.386667pt;}
.y15a{bottom:245.786667pt;}
.y106{bottom:246.746667pt;}
.y1d{bottom:248.586667pt;}
.y50{bottom:248.986667pt;}
.y75{bottom:250.186667pt;}
.y134{bottom:254.906667pt;}
.y99{bottom:255.066667pt;}
.ybf{bottom:256.746667pt;}
.y105{bottom:262.426667pt;}
.y4f{bottom:264.746667pt;}
.y74{bottom:265.786667pt;}
.y159{bottom:269.386667pt;}
.y98{bottom:270.666667pt;}
.y1c{bottom:272.506667pt;}
.yda{bottom:277.786667pt;}
.y104{bottom:278.026667pt;}
.y133{bottom:278.586667pt;}
.y4e{bottom:280.346667pt;}
.y73{bottom:281.466667pt;}
.y158{bottom:284.986667pt;}
.ybe{bottom:286.026667pt;}
.y97{bottom:286.346667pt;}
.y103{bottom:293.706667pt;}
.y132{bottom:294.186667pt;}
.y4d{bottom:295.946667pt;}
.y72{bottom:297.066667pt;}
.y157{bottom:300.666667pt;}
.y96{bottom:301.946667pt;}
.y102{bottom:309.306667pt;}
.y131{bottom:309.786667pt;}
.y1b{bottom:315.386667pt;}
.y156{bottom:316.266667pt;}
.y95{bottom:317.546667pt;}
.y71{bottom:320.746667pt;}
.y101{bottom:324.986667pt;}
.ybd{bottom:325.946667pt;}
.y4c{bottom:327.626667pt;}
.y1a{bottom:331.306667pt;}
.y130{bottom:333.466667pt;}
.yd9{bottom:336.666667pt;}
.y155{bottom:339.946667pt;}
.y100{bottom:340.586667pt;}
.y12f{bottom:349.066667pt;}
.y94{bottom:349.226667pt;}
.y4b{bottom:351.226667pt;}
.y70{bottom:352.666667pt;}
.y154{bottom:355.546667pt;}
.yff{bottom:356.186667pt;}
.yd8{bottom:360.266667pt;}
.y19{bottom:364.266667pt;}
.y93{bottom:364.826667pt;}
.ybc{bottom:365.946667pt;}
.y153{bottom:371.146667pt;}
.yfe{bottom:371.866667pt;}
.y12e{bottom:372.746667pt;}
.y18{bottom:379.866667pt;}
.y92{bottom:380.426667pt;}
.y4a{bottom:382.906667pt;}
.y152{bottom:386.826667pt;}
.y12d{bottom:388.346667pt;}
.yd5{bottom:389.626667pt;}
.y17{bottom:395.466667pt;}
.y6f{bottom:395.546667pt;}
.y91{bottom:396.106667pt;}
.y49{bottom:398.506667pt;}
.y151{bottom:402.426667pt;}
.y12c{bottom:403.946667pt;}
.yba{bottom:405.866667pt;}
.yfd{bottom:406.026667pt;}
.y90{bottom:411.706667pt;}
.y48{bottom:414.106667pt;}
.y150{bottom:418.133333pt;}
.yfc{bottom:421.813333pt;}
.y6e{bottom:424.213333pt;}
.y16{bottom:427.173333pt;}
.y8f{bottom:427.413333pt;}
.y12b{bottom:427.653333pt;}
.y47{bottom:429.813333pt;}
.yfb{bottom:437.413333pt;}
.y14f{bottom:441.733333pt;}
.y15{bottom:442.773333pt;}
.y8e{bottom:443.013333pt;}
.y12a{bottom:443.253333pt;}
.y46{bottom:445.413333pt;}
.yb9{bottom:445.813333pt;}
.yfa{bottom:453.093333pt;}
.y14e{bottom:457.333333pt;}
.y14{bottom:458.373333pt;}
.yd4{bottom:460.853333pt;}
.y45{bottom:461.093333pt;}
.y8d{bottom:466.613333pt;}
.y129{bottom:466.933333pt;}
.yf9{bottom:468.693333pt;}
.y14d{bottom:473.013333pt;}
.y44{bottom:476.693333pt;}
.y128{bottom:482.533333pt;}
.yf8{bottom:484.293333pt;}
.yb8{bottom:485.733333pt;}
.y14c{bottom:488.613333pt;}
.y13{bottom:490.053333pt;}
.y43{bottom:492.293333pt;}
.y8c{bottom:497.653333pt;}
.y127{bottom:498.133333pt;}
.yf7{bottom:499.973333pt;}
.y12{bottom:505.653333pt;}
.y42{bottom:507.973333pt;}
.y8b{bottom:508.453333pt;}
.y14b{bottom:512.293333pt;}
.yf6{bottom:515.573333pt;}
.yd3{bottom:516.373333pt;}
.y11{bottom:521.333333pt;}
.y126{bottom:521.813333pt;}
.y14a{bottom:527.893333pt;}
.yb7{bottom:529.013333pt;}
.yf5{bottom:531.253333pt;}
.y41{bottom:531.573333pt;}
.y10{bottom:536.933333pt;}
.y125{bottom:537.413333pt;}
.y6d{bottom:547.413333pt;}
.y149{bottom:551.493333pt;}
.y124{bottom:553.093333pt;}
.yd2{bottom:559.653333pt;}
.yb6{bottom:560.613333pt;}
.y6c{bottom:563.013333pt;}
.y40{bottom:563.493333pt;}
.y89{bottom:564.053333pt;}
.yf4{bottom:565.413333pt;}
.y148{bottom:567.173333pt;}
.yf{bottom:568.533333pt;}
.yb5{bottom:576.293333pt;}
.y123{bottom:576.693333pt;}
.y6b{bottom:578.613333pt;}
.yf3{bottom:581.173333pt;}
.y147{bottom:582.773333pt;}
.ye{bottom:584.213333pt;}
.yd1{bottom:591.333333pt;}
.yb4{bottom:591.893333pt;}
.y122{bottom:592.293333pt;}
.yf2{bottom:596.773333pt;}
.y146{bottom:598.453333pt;}
.y6a{bottom:602.293333pt;}
.y88{bottom:603.973333pt;}
.y3f{bottom:606.453333pt;}
.yd0{bottom:606.933333pt;}
.yb3{bottom:607.573333pt;}
.y121{bottom:607.973333pt;}
.yf1{bottom:612.453333pt;}
.yd{bottom:615.813333pt;}
.y3e{bottom:622.053333pt;}
.ycf{bottom:622.613333pt;}
.yb2{bottom:623.173333pt;}
.y120{bottom:623.573333pt;}
.yf0{bottom:628.053333pt;}
.yc{bottom:631.493333pt;}
.y69{bottom:633.893333pt;}
.y3d{bottom:637.653333pt;}
.yce{bottom:638.213333pt;}
.yef{bottom:643.653333pt;}
.y87{bottom:643.893333pt;}
.yb{bottom:647.093333pt;}
.y11f{bottom:647.253333pt;}
.y68{bottom:649.573333pt;}
.y3c{bottom:653.333333pt;}
.ycd{bottom:653.813333pt;}
.yb1{bottom:654.773333pt;}
.yee{bottom:659.333333pt;}
.y11e{bottom:662.853333pt;}
.y67{bottom:665.173333pt;}
.y3b{bottom:668.933333pt;}
.yb0{bottom:670.453333pt;}
.ya{bottom:671.013333pt;}
.yed{bottom:674.933333pt;}
.ycc{bottom:677.493333pt;}
.y11d{bottom:678.453333pt;}
.y86{bottom:683.813333pt;}
.y3a{bottom:684.613333pt;}
.yaf{bottom:686.053333pt;}
.y66{bottom:688.773333pt;}
.yec{bottom:690.533333pt;}
.y39{bottom:700.213333pt;}
.yae{bottom:701.733333pt;}
.y11c{bottom:702.133333pt;}
.ycb{bottom:706.773333pt;}
.y145{bottom:708.213333pt;}
.y9{bottom:713.893333pt;}
.y38{bottom:715.813333pt;}
.yad{bottom:717.333333pt;}
.y11b{bottom:717.733333pt;}
.y65{bottom:720.453333pt;}
.y85{bottom:723.733333pt;}
.y144{bottom:723.813333pt;}
.yeb{bottom:724.773333pt;}
.y37{bottom:731.493333pt;}
.y11a{bottom:733.413333pt;}
.y64{bottom:736.053333pt;}
.y143{bottom:739.493333pt;}
.yea{bottom:740.533333pt;}
.y8{bottom:745.733333pt;}
.y36{bottom:747.093333pt;}
.yac{bottom:748.933333pt;}
.y63{bottom:751.733333pt;}
.y142{bottom:755.093333pt;}
.ye9{bottom:756.133333pt;}
.y119{bottom:757.253333pt;}
.yca{bottom:762.373333pt;}
.y84{bottom:763.653333pt;}
.yab{bottom:764.613333pt;}
.y62{bottom:767.333333pt;}
.y141{bottom:770.693333pt;}
.ye8{bottom:771.733333pt;}
.y7{bottom:777.733333pt;}
.y35{bottom:778.693333pt;}
.yaa{bottom:780.213333pt;}
.y61{bottom:782.933333pt;}
.y140{bottom:786.373333pt;}
.ye7{bottom:787.413333pt;}
.y34{bottom:794.373333pt;}
.ya9{bottom:795.893333pt;}
.y118{bottom:800.213333pt;}
.y13f{bottom:801.973333pt;}
.yc9{bottom:802.293333pt;}
.ye6{bottom:803.013333pt;}
.y83{bottom:803.573333pt;}
.y60{bottom:806.613333pt;}
.y6{bottom:809.733333pt;}
.y33{bottom:809.973333pt;}
.ye5{bottom:818.613333pt;}
.ya8{bottom:819.493333pt;}
.y117{bottom:824.133333pt;}
.y32{bottom:825.653333pt;}
.y5f{bottom:838.213333pt;}
.y31{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.yc8{bottom:842.213333pt;}
.y81{bottom:843.493333pt;}
.ya7{bottom:848.773333pt;}
.ye4{bottom:852.933333pt;}
.y5e{bottom:853.893333pt;}
.y30{bottom:856.853333pt;}
.y116{bottom:857.333333pt;}
.ye3{bottom:868.613333pt;}
.y5d{bottom:869.493333pt;}
.y2f{bottom:872.533333pt;}
.ya6{bottom:873.093333pt;}
.y4{bottom:875.893333pt;}
.y165{bottom:880.533333pt;}
.ye2{bottom:884.213333pt;}
.y2e{bottom:888.133333pt;}
.y5c{bottom:895.733333pt;}
.y164{bottom:896.133333pt;}
.ya4{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.y7e{bottom:899.120000pt;}
.ye1{bottom:899.840000pt;}
.y115{bottom:900.240000pt;}
.yc7{bottom:901.120000pt;}
.y2d{bottom:903.840000pt;}
.y5b{bottom:911.440000pt;}
.y163{bottom:911.840000pt;}
.y114{bottom:915.840000pt;}
.y13e{bottom:919.440000pt;}
.ya3{bottom:921.680000pt;}
.ye0{bottom:923.760000pt;}
.y5a{bottom:927.040000pt;}
.y162{bottom:927.440000pt;}
.y113{bottom:931.520000pt;}
.yc6{bottom:935.360000pt;}
.y2c{bottom:935.440000pt;}
.y59{bottom:942.720000pt;}
.y13d{bottom:943.040000pt;}
.ya2{bottom:946.000000pt;}
.y112{bottom:947.120000pt;}
.y2b{bottom:951.040000pt;}
.y7b{bottom:954.640000pt;}
.y13c{bottom:958.720000pt;}
.y111{bottom:962.800000pt;}
.y2a{bottom:966.720000pt;}
.ya1{bottom:970.320000pt;}
.y58{bottom:974.320000pt;}
.y110{bottom:978.400000pt;}
.y29{bottom:982.320000pt;}
.y57{bottom:990.000000pt;}
.y28{bottom:998.000000pt;}
.y10f{bottom:1002.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h13{height:23.626667pt;}
.h12{height:23.680000pt;}
.h2{height:29.261250pt;}
.h3{height:34.804688pt;}
.h10{height:37.032187pt;}
.hf{height:39.200000pt;}
.h14{height:39.226667pt;}
.hc{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h15{height:53.309531pt;}
.hd{height:54.880000pt;}
.hb{height:54.927899pt;}
.he{height:54.986667pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h16{height:70.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1e{width:48.426667pt;}
.w12{width:54.960000pt;}
.w5{width:63.360000pt;}
.w15{width:83.226667pt;}
.w18{width:87.306667pt;}
.w6{width:87.706667pt;}
.w11{width:92.800000pt;}
.w3{width:94.026667pt;}
.w1b{width:97.306667pt;}
.w13{width:103.146667pt;}
.wf{width:103.226667pt;}
.w16{width:104.400000pt;}
.w19{width:108.720000pt;}
.w1c{width:113.200000pt;}
.we{width:113.360000pt;}
.w1f{width:117.920000pt;}
.w17{width:120.080000pt;}
.wb{width:123.946667pt;}
.w10{width:130.400000pt;}
.w1d{width:142.880000pt;}
.w20{width:148.560000pt;}
.w8{width:151.786667pt;}
.w1a{width:164.560000pt;}
.w4{width:166.000000pt;}
.wa{width:183.680000pt;}
.w14{width:183.760000pt;}
.wd{width:202.506667pt;}
.wc{width:229.920000pt;}
.w7{width:257.760000pt;}
.w9{width:290.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:83.040000pt;}
.x4{left:84.479988pt;}
.x23{left:98.879988pt;}
.x5{left:108.479988pt;}
.x1a{left:145.066667pt;}
.x9{left:155.866667pt;}
.x1f{left:159.066667pt;}
.x15{left:165.066667pt;}
.x2{left:171.306655pt;}
.xd{left:179.466655pt;}
.x12{left:185.706667pt;}
.x10{left:235.546667pt;}
.x1b{left:250.186667pt;}
.x20{left:272.986667pt;}
.x16{left:296.186667pt;}
.x7{left:306.586655pt;}
.xa{left:322.586667pt;}
.x1c{left:370.986667pt;}
.xb{left:386.666667pt;}
.x17{left:389.626667pt;}
.x13{left:416.266667pt;}
.x18{left:445.226667pt;}
.x1d{left:458.933333pt;}
.x21{left:465.653333pt;}
.xc{left:475.093333pt;}
.x11{left:527.253333pt;}
.x19{left:549.093333pt;}
.x1e{left:568.293333pt;}
.x22{left:584.293333pt;}
.x14{left:619.493333pt;}
.x6{left:648.053322pt;}
.xe{left:711.413322pt;}
.x3{left:718.773322pt;}
}




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