
    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_790c4ca17b06cf5257e36431.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_682b82fbe63a65390e25b7ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_3fd65effb788ba8bb6a7eb61.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5c022d9193f79b997146d5d8.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb1d675da0f6e43eab05512d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eb9a7d5c132eb7b4674eded1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_7b2aedcdfe6890253f6d62ee.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7485706b2f61ebd542e23f70.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ccf09c4886d3186fcade9e37.woff')format("woff");}.ffa{font-family:ffa;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2fc61e343604b41e6bf39bde.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.288600px;}
.ls7{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.271200px;}
.ls9{letter-spacing:-0.270600px;}
.lsa{letter-spacing:-0.240000px;}
.lsc{letter-spacing:-0.094800px;}
.lsd{letter-spacing:-0.046800px;}
.ls6{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012960px;}
.ls10{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.285600px;}
.lsb{letter-spacing:0.328200px;}
.ls14{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.540000px;}
.ls17{letter-spacing:12.186720px;}
.ls15{letter-spacing:12.906720px;}
.ls13{letter-spacing:15.786720px;}
.ls16{letter-spacing:18.666720px;}
.ls1{letter-spacing:22.986720px;}
.ls12{letter-spacing:32.908800px;}
.ls8{letter-spacing:62.202000px;}
.ls11{letter-spacing:66.186720px;}
.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;}
}
.ws8{word-spacing:-74.406000px;}
.ws10{word-spacing:-13.504200px;}
.ws12{word-spacing:-13.432800px;}
.ws1{word-spacing:-13.160160px;}
.ws14{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.100400px;}
.ws13{word-spacing:-12.876000px;}
.ws11{word-spacing:-12.858600px;}
.ws0{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.342200px;}
.ws6{word-spacing:-9.092400px;}
.ws2{word-spacing:-7.884000px;}
.ws3{word-spacing:-7.632000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:20.502000px;}
.wsc{word-spacing:20.814000px;}
.wse{word-spacing:20.934000px;}
.wsa{word-spacing:22.362000px;}
.ws9{word-spacing:22.674000px;}
.wsb{word-spacing:48.258000px;}
.wsf{word-spacing:181.260000px;}
._1e{margin-left:-13.500000px;}
._21{margin-left:-6.062160px;}
._15{margin-left:-3.652800px;}
._c{margin-left:-2.177520px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._4{width:2.498880px;}
._6{width:3.668400px;}
._b{width:4.843200px;}
._12{width:6.454080px;}
._d{width:8.463600px;}
._9{width:9.763200px;}
._8{width:10.936080px;}
._17{width:12.023760px;}
._7{width:13.332480px;}
._22{width:14.342400px;}
._14{width:15.364320px;}
._13{width:17.270640px;}
._a{width:18.352320px;}
._1a{width:19.434000px;}
._1c{width:21.041520px;}
._1b{width:22.350240px;}
._2b{width:23.574960px;}
._20{width:25.041840px;}
._1f{width:26.354160px;}
._27{width:27.370080px;}
._2a{width:28.708560px;}
._24{width:29.826240px;}
._23{width:30.955680px;}
._28{width:32.603280px;}
._29{width:34.899840px;}
._26{width:37.535280px;}
._25{width:38.545200px;}
._18{width:46.620840px;}
._16{width:48.142800px;}
._f{width:49.726320px;}
._e{width:51.094800px;}
._1d{width:53.730240px;}
._10{width:57.256080px;}
._11{width:58.624560px;}
._0{width:75.000000px;}
._3{width:181.080000px;}
._5{width:201.239280px;}
._19{width:1069.687200px;}
.fc4{color:rgb(238,0,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(68,84,106);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.420000px;}
.y89{bottom:16.095000px;}
.yc3{bottom:17.670000px;}
.y84{bottom:32.940000px;}
.y53{bottom:41.040000px;}
.yc1{bottom:47.595000px;}
.y52{bottom:54.360000px;}
.y7{bottom:56.520000px;}
.y51{bottom:64.980000px;}
.yb6{bottom:65.130000px;}
.y85{bottom:68.910000px;}
.y6{bottom:70.596000px;}
.y50{bottom:75.420000px;}
.yb7{bottom:88.350000px;}
.y4f{bottom:93.060000px;}
.y86{bottom:104.835000px;}
.yb8{bottom:111.570000px;}
.yb4{bottom:115.416000px;}
.y82{bottom:117.576000px;}
.y134{bottom:119.016000px;}
.y113{bottom:119.196000px;}
.yb3{bottom:132.876000px;}
.yb9{bottom:134.790000px;}
.y81{bottom:135.216000px;}
.y112{bottom:136.656000px;}
.y135{bottom:139.896000px;}
.y87{bottom:140.760000px;}
.y4e{bottom:145.980000px;}
.yb2{bottom:150.510000px;}
.y80{bottom:152.670000px;}
.y133{bottom:154.110000px;}
.y111{bottom:154.290000px;}
.yf0{bottom:157.350000px;}
.yba{bottom:158.010000px;}
.y4d{bottom:160.020000px;}
.y3e{bottom:163.290000px;}
.yb1{bottom:168.150000px;}
.y7f{bottom:170.310000px;}
.y132{bottom:171.750000px;}
.y110{bottom:171.930000px;}
.y4c{bottom:174.060000px;}
.yef{bottom:174.990000px;}
.y88{bottom:176.730000px;}
.y3d{bottom:180.930000px;}
.ybb{bottom:181.230000px;}
.yb0{bottom:185.610000px;}
.y7e{bottom:187.950000px;}
.y4b{bottom:188.280000px;}
.y131{bottom:189.390000px;}
.y10f{bottom:189.570000px;}
.yee{bottom:192.630000px;}
.y3c{bottom:198.390000px;}
.y4a{bottom:202.320000px;}
.yaf{bottom:203.250000px;}
.ybc{bottom:204.450000px;}
.y7d{bottom:205.590000px;}
.y130{bottom:206.850000px;}
.y10e{bottom:207.030000px;}
.yed{bottom:210.270000px;}
.y3b{bottom:216.030000px;}
.y49{bottom:216.360000px;}
.y8a{bottom:216.390000px;}
.yae{bottom:220.890000px;}
.y7c{bottom:223.050000px;}
.y12f{bottom:224.490000px;}
.y10d{bottom:224.670000px;}
.ybd{bottom:227.670000px;}
.yec{bottom:227.730000px;}
.y48{bottom:230.400000px;}
.y3a{bottom:233.670000px;}
.yad{bottom:238.530000px;}
.y7b{bottom:240.690000px;}
.y12e{bottom:242.130000px;}
.y10c{bottom:242.310000px;}
.y47{bottom:243.000000px;}
.yeb{bottom:245.370000px;}
.ybe{bottom:250.890000px;}
.y39{bottom:251.130000px;}
.y46{bottom:251.460000px;}
.yac{bottom:255.990000px;}
.y7a{bottom:258.330000px;}
.y10b{bottom:259.770000px;}
.yea{bottom:263.010000px;}
.y45{bottom:265.725000px;}
.y38{bottom:268.770000px;}
.yab{bottom:273.630000px;}
.ybf{bottom:274.110000px;}
.y79{bottom:275.790000px;}
.y12d{bottom:277.230000px;}
.y10a{bottom:277.410000px;}
.y44{bottom:279.765000px;}
.ye9{bottom:280.470000px;}
.y37{bottom:286.410000px;}
.yaa{bottom:291.270000px;}
.y78{bottom:293.430000px;}
.y43{bottom:293.805000px;}
.y12c{bottom:294.870000px;}
.y109{bottom:295.050000px;}
.yc0{bottom:297.330000px;}
.ye8{bottom:298.110000px;}
.y36{bottom:303.870000px;}
.y42{bottom:307.845000px;}
.ya9{bottom:308.730000px;}
.y77{bottom:311.070000px;}
.y108{bottom:312.510000px;}
.ye7{bottom:315.750000px;}
.y41{bottom:320.445000px;}
.y35{bottom:321.510000px;}
.yc2{bottom:324.750000px;}
.ya8{bottom:326.370000px;}
.y76{bottom:328.530000px;}
.y12b{bottom:329.970000px;}
.y107{bottom:330.150000px;}
.y40{bottom:331.425000px;}
.ye6{bottom:333.210000px;}
.y34{bottom:339.195000px;}
.ya7{bottom:344.055000px;}
.y75{bottom:346.215000px;}
.y12a{bottom:347.655000px;}
.y106{bottom:347.835000px;}
.ye5{bottom:350.895000px;}
.y33{bottom:356.835000px;}
.ya6{bottom:361.515000px;}
.y74{bottom:363.855000px;}
.y105{bottom:365.295000px;}
.ye4{bottom:368.535000px;}
.y32{bottom:374.295000px;}
.ya5{bottom:375.735000px;}
.yb5{bottom:378.180000px;}
.y73{bottom:381.495000px;}
.y129{bottom:382.755000px;}
.y104{bottom:382.935000px;}
.ye3{bottom:386.175000px;}
.y31{bottom:391.935000px;}
.y72{bottom:398.955000px;}
.y128{bottom:400.395000px;}
.y103{bottom:400.575000px;}
.ye2{bottom:403.635000px;}
.y30{bottom:409.575000px;}
.y71{bottom:416.595000px;}
.y127{bottom:418.035000px;}
.y102{bottom:418.215000px;}
.ye1{bottom:421.275000px;}
.y2f{bottom:427.035000px;}
.y70{bottom:434.235000px;}
.y126{bottom:435.495000px;}
.y101{bottom:435.675000px;}
.ye0{bottom:438.915000px;}
.y2e{bottom:444.675000px;}
.y6f{bottom:451.695000px;}
.y125{bottom:453.135000px;}
.y100{bottom:453.315000px;}
.ydf{bottom:456.375000px;}
.y2d{bottom:462.315000px;}
.y6e{bottom:469.335000px;}
.y124{bottom:470.775000px;}
.yff{bottom:470.955000px;}
.yde{bottom:474.015000px;}
.y2c{bottom:479.775000px;}
.y6d{bottom:486.975000px;}
.yfe{bottom:488.415000px;}
.ydd{bottom:491.655000px;}
.y2b{bottom:497.235000px;}
.y6c{bottom:504.435000px;}
.y123{bottom:505.875000px;}
.yfd{bottom:506.055000px;}
.ydc{bottom:509.115000px;}
.y2a{bottom:514.515000px;}
.y6b{bottom:522.075000px;}
.y122{bottom:523.515000px;}
.yfc{bottom:523.695000px;}
.ydb{bottom:526.755000px;}
.y29{bottom:531.795000px;}
.y6a{bottom:539.715000px;}
.yfb{bottom:541.155000px;}
.yda{bottom:544.395000px;}
.y28{bottom:549.075000px;}
.y69{bottom:557.175000px;}
.y121{bottom:558.615000px;}
.yfa{bottom:558.795000px;}
.yd9{bottom:561.855000px;}
.y27{bottom:566.175000px;}
.y68{bottom:574.815000px;}
.y120{bottom:576.255000px;}
.yf9{bottom:576.435000px;}
.yd8{bottom:579.495000px;}
.y26{bottom:583.455000px;}
.y67{bottom:592.455000px;}
.yf8{bottom:594.075000px;}
.yd7{bottom:597.135000px;}
.y11f{bottom:598.755000px;}
.y25{bottom:600.735000px;}
.y66{bottom:610.125000px;}
.yf7{bottom:611.565000px;}
.y3f{bottom:614.805000px;}
.y24{bottom:618.045000px;}
.y11e{bottom:620.565000px;}
.y65{bottom:627.585000px;}
.yf6{bottom:629.205000px;}
.yd6{bottom:632.265000px;}
.y23{bottom:635.325000px;}
.y11d{bottom:642.165000px;}
.y64{bottom:645.225000px;}
.yf5{bottom:646.845000px;}
.yd5{bottom:649.905000px;}
.y22{bottom:652.605000px;}
.y63{bottom:662.865000px;}
.yf4{bottom:664.305000px;}
.yd4{bottom:667.545000px;}
.y11c{bottom:668.085000px;}
.y21{bottom:669.705000px;}
.y62{bottom:680.325000px;}
.yf3{bottom:681.945000px;}
.yd3{bottom:685.005000px;}
.y20{bottom:689.325000px;}
.y11b{bottom:690.585000px;}
.y61{bottom:697.965000px;}
.yf2{bottom:699.585000px;}
.yd2{bottom:702.645000px;}
.y1f{bottom:706.605000px;}
.y60{bottom:712.185000px;}
.y83{bottom:712.260000px;}
.y11a{bottom:716.505000px;}
.yf1{bottom:717.045000px;}
.yd1{bottom:720.285000px;}
.y1e{bottom:723.705000px;}
.ya4{bottom:734.685000px;}
.yd0{bottom:737.745000px;}
.y119{bottom:739.005000px;}
.y1d{bottom:740.985000px;}
.ya3{bottom:752.325000px;}
.ycf{bottom:755.385000px;}
.y1c{bottom:758.265000px;}
.y118{bottom:760.785000px;}
.ya2{bottom:769.965000px;}
.yce{bottom:773.025000px;}
.y1b{bottom:775.545000px;}
.y117{bottom:782.565000px;}
.ya1{bottom:787.425000px;}
.ycd{bottom:790.665000px;}
.y1a{bottom:792.825000px;}
.ya0{bottom:805.065000px;}
.ycc{bottom:808.125000px;}
.y116{bottom:808.305000px;}
.y19{bottom:810.105000px;}
.y9f{bottom:822.705000px;}
.ycb{bottom:825.765000px;}
.y18{bottom:827.205000px;}
.y114{bottom:834.945000px;}
.y9e{bottom:840.165000px;}
.yca{bottom:843.405000px;}
.y17{bottom:844.485000px;}
.y9d{bottom:857.805000px;}
.yc9{bottom:860.865000px;}
.y16{bottom:861.765000px;}
.y9c{bottom:875.490000px;}
.yc8{bottom:878.550000px;}
.y15{bottom:879.090000px;}
.y9b{bottom:892.950000px;}
.yc7{bottom:896.190000px;}
.y14{bottom:896.370000px;}
.y9a{bottom:910.590000px;}
.y13{bottom:913.470000px;}
.yc6{bottom:913.650000px;}
.y99{bottom:928.230000px;}
.y12{bottom:930.750000px;}
.yc5{bottom:931.290000px;}
.y98{bottom:945.690000px;}
.y11{bottom:948.030000px;}
.yc4{bottom:948.930000px;}
.y97{bottom:963.330000px;}
.y10{bottom:965.310000px;}
.y5f{bottom:966.570000px;}
.y96{bottom:980.970000px;}
.yf{bottom:982.590000px;}
.y5e{bottom:984.030000px;}
.y95{bottom:998.610000px;}
.ye{bottom:999.330000px;}
.y5d{bottom:1001.670000px;}
.yd{bottom:1013.730000px;}
.y94{bottom:1016.070000px;}
.y5c{bottom:1019.310000px;}
.yc{bottom:1030.110000px;}
.y93{bottom:1033.710000px;}
.y5b{bottom:1036.770000px;}
.yb{bottom:1049.550000px;}
.y92{bottom:1051.350000px;}
.y5a{bottom:1054.410000px;}
.y91{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y59{bottom:1072.050000px;}
.y90{bottom:1086.450000px;}
.y58{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.y8f{bottom:1104.090000px;}
.y57{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y8e{bottom:1121.550000px;}
.y56{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y8d{bottom:1139.220000px;}
.y55{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y8c{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y8b{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y54{bottom:1197.540000px;}
.he{height:20.024297px;}
.hd{height:20.117109px;}
.h1c{height:21.600000px;}
.h1b{height:21.780000px;}
.h1d{height:21.816000px;}
.h19{height:22.500000px;}
.h1a{height:23.400000px;}
.h11{height:30.339844px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.hf{height:40.655391px;}
.h4{height:40.843828px;}
.ha{height:41.726953px;}
.h9{height:42.164648px;}
.hb{height:43.681992px;}
.h8{height:45.720703px;}
.h16{height:50.273438px;}
.h5{height:50.597578px;}
.h14{height:53.709961px;}
.h7{height:56.084062px;}
.h12{height:58.819922px;}
.h10{height:60.960938px;}
.h6{height:65.837812px;}
.h18{height:73.722656px;}
.h15{height:98.051133px;}
.h13{height:250.920000px;}
.hc{height:344.190000px;}
.h17{height:353.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:83.160000px;}
.wa{width:91.476000px;}
.w8{width:118.260000px;}
.w7{width:147.636000px;}
.w9{width:180.750000px;}
.w3{width:221.970000px;}
.wc{width:299.010000px;}
.wd{width:390.495000px;}
.w5{width:595.080000px;}
.w4{width:599.580000px;}
.w6{width:621.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.100000px;}
.x1b{left:9.825000px;}
.x1a{left:16.665000px;}
.x11{left:26.280000px;}
.x10{left:33.120000px;}
.x19{left:50.865000px;}
.xf{left:67.320000px;}
.x13{left:76.065000px;}
.x1c{left:77.790000px;}
.x12{left:94.530000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x3{left:114.155987px;}
.x1d{left:124.275000px;}
.xa{left:127.655987px;}
.x4{left:129.995987px;}
.xb{left:134.994000px;}
.x1e{left:138.455987px;}
.xe{left:147.240000px;}
.x17{left:149.580000px;}
.x9{left:159.509987px;}
.xd{left:182.549987px;}
.x6{left:238.529987px;}
.x7{left:272.369987px;}
.x20{left:283.575000px;}
.x8{left:342.614987px;}
.x24{left:360.254987px;}
.x5{left:362.954987px;}
.x21{left:401.835000px;}
.x14{left:446.654987px;}
.x15{left:493.124987px;}
.x18{left:543.600000px;}
.x22{left:582.585000px;}
.x23{left:674.070000px;}
.x16{left:745.889987px;}
.xc{left:748.229987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.256533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.241067pt;}
.ls9{letter-spacing:-0.240533pt;}
.lsa{letter-spacing:-0.213333pt;}
.lsc{letter-spacing:-0.084267pt;}
.lsd{letter-spacing:-0.041600pt;}
.ls6{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011520pt;}
.ls10{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.253867pt;}
.lsb{letter-spacing:0.291733pt;}
.ls14{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls17{letter-spacing:10.832640pt;}
.ls15{letter-spacing:11.472640pt;}
.ls13{letter-spacing:14.032640pt;}
.ls16{letter-spacing:16.592640pt;}
.ls1{letter-spacing:20.432640pt;}
.ls12{letter-spacing:29.252267pt;}
.ls8{letter-spacing:55.290667pt;}
.ls11{letter-spacing:58.832640pt;}
.ws8{word-spacing:-66.138667pt;}
.ws10{word-spacing:-12.003733pt;}
.ws12{word-spacing:-11.940267pt;}
.ws1{word-spacing:-11.697920pt;}
.ws14{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.644800pt;}
.ws13{word-spacing:-11.445333pt;}
.ws11{word-spacing:-11.429867pt;}
.ws0{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.193067pt;}
.ws6{word-spacing:-8.082133pt;}
.ws2{word-spacing:-7.008000pt;}
.ws3{word-spacing:-6.784000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:18.224000pt;}
.wsc{word-spacing:18.501333pt;}
.wse{word-spacing:18.608000pt;}
.wsa{word-spacing:19.877333pt;}
.ws9{word-spacing:20.154667pt;}
.wsb{word-spacing:42.896000pt;}
.wsf{word-spacing:161.120000pt;}
._1e{margin-left:-12.000000pt;}
._21{margin-left:-5.388587pt;}
._15{margin-left:-3.246933pt;}
._c{margin-left:-1.935573pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._4{width:2.221227pt;}
._6{width:3.260800pt;}
._b{width:4.305067pt;}
._12{width:5.736960pt;}
._d{width:7.523200pt;}
._9{width:8.678400pt;}
._8{width:9.720960pt;}
._17{width:10.687787pt;}
._7{width:11.851093pt;}
._22{width:12.748800pt;}
._14{width:13.657173pt;}
._13{width:15.351680pt;}
._a{width:16.313173pt;}
._1a{width:17.274667pt;}
._1c{width:18.703573pt;}
._1b{width:19.866880pt;}
._2b{width:20.955520pt;}
._20{width:22.259413pt;}
._1f{width:23.425920pt;}
._27{width:24.328960pt;}
._2a{width:25.518720pt;}
._24{width:26.512213pt;}
._23{width:27.516160pt;}
._28{width:28.980693pt;}
._29{width:31.022080pt;}
._26{width:33.364693pt;}
._25{width:34.262400pt;}
._18{width:41.440747pt;}
._16{width:42.793600pt;}
._f{width:44.201173pt;}
._e{width:45.417600pt;}
._1d{width:47.760213pt;}
._10{width:50.894293pt;}
._11{width:52.110720pt;}
._0{width:66.666667pt;}
._3{width:160.960000pt;}
._5{width:178.879360pt;}
._19{width:950.833067pt;}
.fs6{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:3.040000pt;}
.y89{bottom:14.306667pt;}
.yc3{bottom:15.706667pt;}
.y84{bottom:29.280000pt;}
.y53{bottom:36.480000pt;}
.yc1{bottom:42.306667pt;}
.y52{bottom:48.320000pt;}
.y7{bottom:50.240000pt;}
.y51{bottom:57.760000pt;}
.yb6{bottom:57.893333pt;}
.y85{bottom:61.253333pt;}
.y6{bottom:62.752000pt;}
.y50{bottom:67.040000pt;}
.yb7{bottom:78.533333pt;}
.y4f{bottom:82.720000pt;}
.y86{bottom:93.186667pt;}
.yb8{bottom:99.173333pt;}
.yb4{bottom:102.592000pt;}
.y82{bottom:104.512000pt;}
.y134{bottom:105.792000pt;}
.y113{bottom:105.952000pt;}
.yb3{bottom:118.112000pt;}
.yb9{bottom:119.813333pt;}
.y81{bottom:120.192000pt;}
.y112{bottom:121.472000pt;}
.y135{bottom:124.352000pt;}
.y87{bottom:125.120000pt;}
.y4e{bottom:129.760000pt;}
.yb2{bottom:133.786667pt;}
.y80{bottom:135.706667pt;}
.y133{bottom:136.986667pt;}
.y111{bottom:137.146667pt;}
.yf0{bottom:139.866667pt;}
.yba{bottom:140.453333pt;}
.y4d{bottom:142.240000pt;}
.y3e{bottom:145.146667pt;}
.yb1{bottom:149.466667pt;}
.y7f{bottom:151.386667pt;}
.y132{bottom:152.666667pt;}
.y110{bottom:152.826667pt;}
.y4c{bottom:154.720000pt;}
.yef{bottom:155.546667pt;}
.y88{bottom:157.093333pt;}
.y3d{bottom:160.826667pt;}
.ybb{bottom:161.093333pt;}
.yb0{bottom:164.986667pt;}
.y7e{bottom:167.066667pt;}
.y4b{bottom:167.360000pt;}
.y131{bottom:168.346667pt;}
.y10f{bottom:168.506667pt;}
.yee{bottom:171.226667pt;}
.y3c{bottom:176.346667pt;}
.y4a{bottom:179.840000pt;}
.yaf{bottom:180.666667pt;}
.ybc{bottom:181.733333pt;}
.y7d{bottom:182.746667pt;}
.y130{bottom:183.866667pt;}
.y10e{bottom:184.026667pt;}
.yed{bottom:186.906667pt;}
.y3b{bottom:192.026667pt;}
.y49{bottom:192.320000pt;}
.y8a{bottom:192.346667pt;}
.yae{bottom:196.346667pt;}
.y7c{bottom:198.266667pt;}
.y12f{bottom:199.546667pt;}
.y10d{bottom:199.706667pt;}
.ybd{bottom:202.373333pt;}
.yec{bottom:202.426667pt;}
.y48{bottom:204.800000pt;}
.y3a{bottom:207.706667pt;}
.yad{bottom:212.026667pt;}
.y7b{bottom:213.946667pt;}
.y12e{bottom:215.226667pt;}
.y10c{bottom:215.386667pt;}
.y47{bottom:216.000000pt;}
.yeb{bottom:218.106667pt;}
.ybe{bottom:223.013333pt;}
.y39{bottom:223.226667pt;}
.y46{bottom:223.520000pt;}
.yac{bottom:227.546667pt;}
.y7a{bottom:229.626667pt;}
.y10b{bottom:230.906667pt;}
.yea{bottom:233.786667pt;}
.y45{bottom:236.200000pt;}
.y38{bottom:238.906667pt;}
.yab{bottom:243.226667pt;}
.ybf{bottom:243.653333pt;}
.y79{bottom:245.146667pt;}
.y12d{bottom:246.426667pt;}
.y10a{bottom:246.586667pt;}
.y44{bottom:248.680000pt;}
.ye9{bottom:249.306667pt;}
.y37{bottom:254.586667pt;}
.yaa{bottom:258.906667pt;}
.y78{bottom:260.826667pt;}
.y43{bottom:261.160000pt;}
.y12c{bottom:262.106667pt;}
.y109{bottom:262.266667pt;}
.yc0{bottom:264.293333pt;}
.ye8{bottom:264.986667pt;}
.y36{bottom:270.106667pt;}
.y42{bottom:273.640000pt;}
.ya9{bottom:274.426667pt;}
.y77{bottom:276.506667pt;}
.y108{bottom:277.786667pt;}
.ye7{bottom:280.666667pt;}
.y41{bottom:284.840000pt;}
.y35{bottom:285.786667pt;}
.yc2{bottom:288.666667pt;}
.ya8{bottom:290.106667pt;}
.y76{bottom:292.026667pt;}
.y12b{bottom:293.306667pt;}
.y107{bottom:293.466667pt;}
.y40{bottom:294.600000pt;}
.ye6{bottom:296.186667pt;}
.y34{bottom:301.506667pt;}
.ya7{bottom:305.826667pt;}
.y75{bottom:307.746667pt;}
.y12a{bottom:309.026667pt;}
.y106{bottom:309.186667pt;}
.ye5{bottom:311.906667pt;}
.y33{bottom:317.186667pt;}
.ya6{bottom:321.346667pt;}
.y74{bottom:323.426667pt;}
.y105{bottom:324.706667pt;}
.ye4{bottom:327.586667pt;}
.y32{bottom:332.706667pt;}
.ya5{bottom:333.986667pt;}
.yb5{bottom:336.160000pt;}
.y73{bottom:339.106667pt;}
.y129{bottom:340.226667pt;}
.y104{bottom:340.386667pt;}
.ye3{bottom:343.266667pt;}
.y31{bottom:348.386667pt;}
.y72{bottom:354.626667pt;}
.y128{bottom:355.906667pt;}
.y103{bottom:356.066667pt;}
.ye2{bottom:358.786667pt;}
.y30{bottom:364.066667pt;}
.y71{bottom:370.306667pt;}
.y127{bottom:371.586667pt;}
.y102{bottom:371.746667pt;}
.ye1{bottom:374.466667pt;}
.y2f{bottom:379.586667pt;}
.y70{bottom:385.986667pt;}
.y126{bottom:387.106667pt;}
.y101{bottom:387.266667pt;}
.ye0{bottom:390.146667pt;}
.y2e{bottom:395.266667pt;}
.y6f{bottom:401.506667pt;}
.y125{bottom:402.786667pt;}
.y100{bottom:402.946667pt;}
.ydf{bottom:405.666667pt;}
.y2d{bottom:410.946667pt;}
.y6e{bottom:417.186667pt;}
.y124{bottom:418.466667pt;}
.yff{bottom:418.626667pt;}
.yde{bottom:421.346667pt;}
.y2c{bottom:426.466667pt;}
.y6d{bottom:432.866667pt;}
.yfe{bottom:434.146667pt;}
.ydd{bottom:437.026667pt;}
.y2b{bottom:441.986667pt;}
.y6c{bottom:448.386667pt;}
.y123{bottom:449.666667pt;}
.yfd{bottom:449.826667pt;}
.ydc{bottom:452.546667pt;}
.y2a{bottom:457.346667pt;}
.y6b{bottom:464.066667pt;}
.y122{bottom:465.346667pt;}
.yfc{bottom:465.506667pt;}
.ydb{bottom:468.226667pt;}
.y29{bottom:472.706667pt;}
.y6a{bottom:479.746667pt;}
.yfb{bottom:481.026667pt;}
.yda{bottom:483.906667pt;}
.y28{bottom:488.066667pt;}
.y69{bottom:495.266667pt;}
.y121{bottom:496.546667pt;}
.yfa{bottom:496.706667pt;}
.yd9{bottom:499.426667pt;}
.y27{bottom:503.266667pt;}
.y68{bottom:510.946667pt;}
.y120{bottom:512.226667pt;}
.yf9{bottom:512.386667pt;}
.yd8{bottom:515.106667pt;}
.y26{bottom:518.626667pt;}
.y67{bottom:526.626667pt;}
.yf8{bottom:528.066667pt;}
.yd7{bottom:530.786667pt;}
.y11f{bottom:532.226667pt;}
.y25{bottom:533.986667pt;}
.y66{bottom:542.333333pt;}
.yf7{bottom:543.613333pt;}
.y3f{bottom:546.493333pt;}
.y24{bottom:549.373333pt;}
.y11e{bottom:551.613333pt;}
.y65{bottom:557.853333pt;}
.yf6{bottom:559.293333pt;}
.yd6{bottom:562.013333pt;}
.y23{bottom:564.733333pt;}
.y11d{bottom:570.813333pt;}
.y64{bottom:573.533333pt;}
.yf5{bottom:574.973333pt;}
.yd5{bottom:577.693333pt;}
.y22{bottom:580.093333pt;}
.y63{bottom:589.213333pt;}
.yf4{bottom:590.493333pt;}
.yd4{bottom:593.373333pt;}
.y11c{bottom:593.853333pt;}
.y21{bottom:595.293333pt;}
.y62{bottom:604.733333pt;}
.yf3{bottom:606.173333pt;}
.yd3{bottom:608.893333pt;}
.y20{bottom:612.733333pt;}
.y11b{bottom:613.853333pt;}
.y61{bottom:620.413333pt;}
.yf2{bottom:621.853333pt;}
.yd2{bottom:624.573333pt;}
.y1f{bottom:628.093333pt;}
.y60{bottom:633.053333pt;}
.y83{bottom:633.120000pt;}
.y11a{bottom:636.893333pt;}
.yf1{bottom:637.373333pt;}
.yd1{bottom:640.253333pt;}
.y1e{bottom:643.293333pt;}
.ya4{bottom:653.053333pt;}
.yd0{bottom:655.773333pt;}
.y119{bottom:656.893333pt;}
.y1d{bottom:658.653333pt;}
.ya3{bottom:668.733333pt;}
.ycf{bottom:671.453333pt;}
.y1c{bottom:674.013333pt;}
.y118{bottom:676.253333pt;}
.ya2{bottom:684.413333pt;}
.yce{bottom:687.133333pt;}
.y1b{bottom:689.373333pt;}
.y117{bottom:695.613333pt;}
.ya1{bottom:699.933333pt;}
.ycd{bottom:702.813333pt;}
.y1a{bottom:704.733333pt;}
.ya0{bottom:715.613333pt;}
.ycc{bottom:718.333333pt;}
.y116{bottom:718.493333pt;}
.y19{bottom:720.093333pt;}
.y9f{bottom:731.293333pt;}
.ycb{bottom:734.013333pt;}
.y18{bottom:735.293333pt;}
.y114{bottom:742.173333pt;}
.y9e{bottom:746.813333pt;}
.yca{bottom:749.693333pt;}
.y17{bottom:750.653333pt;}
.y9d{bottom:762.493333pt;}
.yc9{bottom:765.213333pt;}
.y16{bottom:766.013333pt;}
.y9c{bottom:778.213333pt;}
.yc8{bottom:780.933333pt;}
.y15{bottom:781.413333pt;}
.y9b{bottom:793.733333pt;}
.yc7{bottom:796.613333pt;}
.y14{bottom:796.773333pt;}
.y9a{bottom:809.413333pt;}
.y13{bottom:811.973333pt;}
.yc6{bottom:812.133333pt;}
.y99{bottom:825.093333pt;}
.y12{bottom:827.333333pt;}
.yc5{bottom:827.813333pt;}
.y98{bottom:840.613333pt;}
.y11{bottom:842.693333pt;}
.yc4{bottom:843.493333pt;}
.y97{bottom:856.293333pt;}
.y10{bottom:858.053333pt;}
.y5f{bottom:859.173333pt;}
.y96{bottom:871.973333pt;}
.yf{bottom:873.413333pt;}
.y5e{bottom:874.693333pt;}
.y95{bottom:887.653333pt;}
.ye{bottom:888.293333pt;}
.y5d{bottom:890.373333pt;}
.yd{bottom:901.093333pt;}
.y94{bottom:903.173333pt;}
.y5c{bottom:906.053333pt;}
.yc{bottom:915.653333pt;}
.y93{bottom:918.853333pt;}
.y5b{bottom:921.573333pt;}
.yb{bottom:932.933333pt;}
.y92{bottom:934.533333pt;}
.y5a{bottom:937.253333pt;}
.y91{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y59{bottom:952.933333pt;}
.y90{bottom:965.733333pt;}
.y58{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.y8f{bottom:981.413333pt;}
.y57{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y8e{bottom:996.933333pt;}
.y56{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y8d{bottom:1012.640000pt;}
.y55{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y8c{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y8b{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y54{bottom:1064.480000pt;}
.he{height:17.799375pt;}
.hd{height:17.881875pt;}
.h1c{height:19.200000pt;}
.h1b{height:19.360000pt;}
.h1d{height:19.392000pt;}
.h19{height:20.000000pt;}
.h1a{height:20.800000pt;}
.h11{height:26.968750pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.hf{height:36.138125pt;}
.h4{height:36.305625pt;}
.ha{height:37.090625pt;}
.h9{height:37.479688pt;}
.hb{height:38.828437pt;}
.h8{height:40.640625pt;}
.h16{height:44.687500pt;}
.h5{height:44.975625pt;}
.h14{height:47.742188pt;}
.h7{height:49.852500pt;}
.h12{height:52.284375pt;}
.h10{height:54.187500pt;}
.h6{height:58.522500pt;}
.h18{height:65.531250pt;}
.h15{height:87.156562pt;}
.h13{height:223.040000pt;}
.hc{height:305.946667pt;}
.h17{height:313.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:73.920000pt;}
.wa{width:81.312000pt;}
.w8{width:105.120000pt;}
.w7{width:131.232000pt;}
.w9{width:160.666667pt;}
.w3{width:197.306667pt;}
.wc{width:265.786667pt;}
.wd{width:347.106667pt;}
.w5{width:528.960000pt;}
.w4{width:532.960000pt;}
.w6{width:552.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.200000pt;}
.x1b{left:8.733333pt;}
.x1a{left:14.813333pt;}
.x11{left:23.360000pt;}
.x10{left:29.440000pt;}
.x19{left:45.213333pt;}
.xf{left:59.840000pt;}
.x13{left:67.613333pt;}
.x1c{left:69.146667pt;}
.x12{left:84.026667pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x3{left:101.471988pt;}
.x1d{left:110.466667pt;}
.xa{left:113.471988pt;}
.x4{left:115.551988pt;}
.xb{left:119.994667pt;}
.x1e{left:123.071988pt;}
.xe{left:130.880000pt;}
.x17{left:132.960000pt;}
.x9{left:141.786655pt;}
.xd{left:162.266655pt;}
.x6{left:212.026655pt;}
.x7{left:242.106655pt;}
.x20{left:252.066667pt;}
.x8{left:304.546655pt;}
.x24{left:320.226655pt;}
.x5{left:322.626655pt;}
.x21{left:357.186667pt;}
.x14{left:397.026655pt;}
.x15{left:438.333322pt;}
.x18{left:483.200000pt;}
.x22{left:517.853333pt;}
.x23{left:599.173333pt;}
.x16{left:663.013322pt;}
.xc{left:665.093322pt;}
}




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