
    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_be00c23bc66f5fa5e204e9e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6e821d56b9fce0a8afaa23f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f7871d9c21bf06b4632dae71.woff2')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_5acd3daf18129d6ec4a0bb2e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7ecbc2f3df2444a0bada3777.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.269400px;}
.lsc{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.178800px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.lse{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:16.506720px;}
.ls2{letter-spacing:37.386720px;}
.ls1{letter-spacing:41.868000px;}
.ls3{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.wsf{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.wse{word-spacing:-11.881200px;}
.wsc{word-spacing:-11.878800px;}
.wsd{word-spacing:-11.790600px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-1.508400px;}
._0{width:1.135440px;}
._4{width:2.994960px;}
._d{width:4.302720px;}
._c{width:5.378400px;}
._10{width:6.573600px;}
._8{width:7.589520px;}
._7{width:8.724960px;}
._14{width:10.099440px;}
._9{width:11.354400px;}
._1c{width:12.905040px;}
._6{width:13.906080px;}
._15{width:15.959280px;}
._16{width:17.748720px;}
._b{width:19.137600px;}
._a{width:20.497680px;}
._17{width:21.991680px;}
._20{width:23.664960px;}
._f{width:25.517520px;}
._e{width:26.533440px;}
._1b{width:28.101600px;}
._1a{width:29.342160px;}
._22{width:30.656880px;}
._28{width:31.792320px;}
._25{width:33.050880px;}
._21{width:34.238880px;}
._13{width:35.262000px;}
._12{width:36.558000px;}
._19{width:37.768320px;}
._18{width:38.784240px;}
._26{width:39.979440px;}
._23{width:41.832000px;}
._1d{width:47.150640px;}
._11{width:48.600000px;}
._27{width:49.780080px;}
._2d{width:51.390480px;}
._2a{width:53.007120px;}
._24{width:54.202320px;}
._2b{width:55.337760px;}
._2e{width:56.473200px;}
._1f{width:58.684320px;}
._1e{width:60.417360px;}
._2c{width:67.528800px;}
._29{width:69.261840px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._5{width:986.578080px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y35{bottom:2.880000px;}
.y14{bottom:3.240000px;}
.y2d{bottom:6.120000px;}
.y4{bottom:8.316000px;}
.ye0{bottom:9.360000px;}
.y33{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y10d{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.ydf{bottom:16.380000px;}
.y2b{bottom:19.260000px;}
.y32{bottom:25.020000px;}
.y10c{bottom:30.060000px;}
.y7{bottom:35.460000px;}
.y2a{bottom:35.850000px;}
.y31{bottom:40.680000px;}
.y10b{bottom:43.920000px;}
.y29{bottom:51.330000px;}
.y30{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.y28{bottom:66.810000px;}
.y2f{bottom:71.640000px;}
.y27{bottom:82.290000px;}
.y26{bottom:97.950000px;}
.y34{bottom:106.200000px;}
.yd6{bottom:112.176000px;}
.ya2{bottom:112.716000px;}
.y25{bottom:113.430000px;}
.y41{bottom:115.956000px;}
.y79{bottom:123.876000px;}
.y107{bottom:125.496000px;}
.yd5{bottom:126.036000px;}
.ya1{bottom:127.476000px;}
.y24{bottom:128.910000px;}
.y40{bottom:133.236000px;}
.yd4{bottom:139.716000px;}
.y78{bottom:141.156000px;}
.ya0{bottom:142.056000px;}
.y106{bottom:142.776000px;}
.y22{bottom:145.800000px;}
.y3f{bottom:150.510000px;}
.yd3{bottom:153.570000px;}
.y9f{bottom:156.450000px;}
.y77{bottom:158.430000px;}
.y105{bottom:160.050000px;}
.y21{bottom:163.080000px;}
.yd2{bottom:167.430000px;}
.y3e{bottom:167.790000px;}
.y9e{bottom:171.030000px;}
.y76{bottom:175.710000px;}
.y104{bottom:177.330000px;}
.y20{bottom:180.360000px;}
.yd1{bottom:181.110000px;}
.y3d{bottom:185.070000px;}
.y9d{bottom:188.850000px;}
.y75{bottom:192.990000px;}
.y103{bottom:194.610000px;}
.yd0{bottom:194.970000px;}
.y1f{bottom:197.640000px;}
.y3c{bottom:202.170000px;}
.y9c{bottom:203.610000px;}
.ycf{bottom:208.830000px;}
.y74{bottom:210.090000px;}
.y102{bottom:211.890000px;}
.y1e{bottom:214.920000px;}
.y9b{bottom:218.190000px;}
.y3b{bottom:219.450000px;}
.yce{bottom:222.510000px;}
.y73{bottom:227.370000px;}
.y101{bottom:228.990000px;}
.y1d{bottom:232.020000px;}
.y9a{bottom:232.770000px;}
.ycd{bottom:236.370000px;}
.y3a{bottom:236.730000px;}
.y72{bottom:244.650000px;}
.y100{bottom:246.270000px;}
.y99{bottom:247.350000px;}
.y1c{bottom:249.330000px;}
.ycc{bottom:250.950000px;}
.y39{bottom:254.010000px;}
.y98{bottom:261.750000px;}
.y71{bottom:261.930000px;}
.yff{bottom:263.550000px;}
.y1b{bottom:266.610000px;}
.ycb{bottom:268.050000px;}
.y38{bottom:271.290000px;}
.y97{bottom:278.850000px;}
.y70{bottom:279.210000px;}
.yfe{bottom:280.830000px;}
.y1a{bottom:283.890000px;}
.yca{bottom:285.330000px;}
.y37{bottom:288.390000px;}
.y96{bottom:292.710000px;}
.y6f{bottom:296.490000px;}
.yfd{bottom:298.110000px;}
.y19{bottom:301.170000px;}
.yc9{bottom:302.610000px;}
.y36{bottom:305.490000px;}
.y95{bottom:306.570000px;}
.y6e{bottom:313.590000px;}
.yfc{bottom:315.390000px;}
.y18{bottom:318.450000px;}
.y15{bottom:318.855000px;}
.yc8{bottom:319.935000px;}
.y94{bottom:321.015000px;}
.y6d{bottom:330.915000px;}
.yfb{bottom:332.535000px;}
.y17{bottom:335.550000px;}
.yc7{bottom:337.215000px;}
.y93{bottom:338.295000px;}
.y6c{bottom:348.195000px;}
.yfa{bottom:349.815000px;}
.y16{bottom:352.830000px;}
.yc6{bottom:354.495000px;}
.y92{bottom:355.575000px;}
.y6b{bottom:365.475000px;}
.yf9{bottom:367.095000px;}
.yc5{bottom:371.595000px;}
.y91{bottom:372.855000px;}
.y6a{bottom:382.755000px;}
.yf8{bottom:384.375000px;}
.yc4{bottom:388.875000px;}
.y90{bottom:389.955000px;}
.y69{bottom:399.855000px;}
.yf7{bottom:401.655000px;}
.yc3{bottom:406.155000px;}
.y8f{bottom:407.235000px;}
.y68{bottom:417.135000px;}
.yf6{bottom:418.755000px;}
.yc2{bottom:423.435000px;}
.y8e{bottom:424.515000px;}
.y67{bottom:434.415000px;}
.yf5{bottom:436.035000px;}
.y2e{bottom:438.375000px;}
.yc1{bottom:440.715000px;}
.y8d{bottom:441.795000px;}
.y66{bottom:451.695000px;}
.yf4{bottom:453.315000px;}
.yc0{bottom:457.995000px;}
.y8c{bottom:459.075000px;}
.y65{bottom:468.975000px;}
.yf3{bottom:470.595000px;}
.ybf{bottom:472.755000px;}
.y8b{bottom:476.355000px;}
.y64{bottom:486.255000px;}
.ybe{bottom:487.155000px;}
.yf2{bottom:487.875000px;}
.y8a{bottom:493.455000px;}
.ybd{bottom:501.735000px;}
.y63{bottom:503.355000px;}
.yf1{bottom:505.155000px;}
.y89{bottom:510.735000px;}
.ybc{bottom:516.315000px;}
.y62{bottom:520.635000px;}
.yf0{bottom:522.255000px;}
.y2c{bottom:523.335000px;}
.y88{bottom:528.015000px;}
.ybb{bottom:533.415000px;}
.y61{bottom:537.915000px;}
.yef{bottom:539.535000px;}
.y23{bottom:544.215000px;}
.y87{bottom:545.295000px;}
.yba{bottom:545.475000px;}
.y60{bottom:555.195000px;}
.yee{bottom:556.815000px;}
.yb9{bottom:559.875000px;}
.y86{bottom:562.575000px;}
.y5f{bottom:572.505000px;}
.yed{bottom:574.125000px;}
.yb8{bottom:574.485000px;}
.y85{bottom:579.885000px;}
.yb7{bottom:589.065000px;}
.y5e{bottom:589.785000px;}
.yec{bottom:591.405000px;}
.y84{bottom:596.985000px;}
.yb6{bottom:605.265000px;}
.y5d{bottom:606.885000px;}
.yeb{bottom:608.685000px;}
.y108{bottom:609.765000px;}
.y83{bottom:614.265000px;}
.yb5{bottom:614.805000px;}
.y5c{bottom:624.165000px;}
.y10a{bottom:624.525000px;}
.yea{bottom:625.785000px;}
.yb4{bottom:628.665000px;}
.y82{bottom:631.545000px;}
.y5b{bottom:641.445000px;}
.yb3{bottom:643.065000px;}
.y81{bottom:648.825000px;}
.y5a{bottom:658.725000px;}
.yb2{bottom:660.345000px;}
.y80{bottom:666.105000px;}
.y59{bottom:676.005000px;}
.yb1{bottom:677.625000px;}
.y109{bottom:680.505000px;}
.y7f{bottom:683.385000px;}
.y13{bottom:686.445000px;}
.y58{bottom:693.285000px;}
.yb0{bottom:694.905000px;}
.y7e{bottom:700.485000px;}
.y57{bottom:710.385000px;}
.yaf{bottom:712.185000px;}
.y7d{bottom:717.765000px;}
.y12{bottom:721.005000px;}
.y56{bottom:727.665000px;}
.yae{bottom:729.285000px;}
.y7c{bottom:732.525000px;}
.y11{bottom:740.985000px;}
.y55{bottom:744.945000px;}
.yad{bottom:746.565000px;}
.y7b{bottom:747.105000px;}
.y7a{bottom:761.685000px;}
.y54{bottom:762.225000px;}
.yac{bottom:763.845000px;}
.y10{bottom:774.645000px;}
.y53{bottom:779.505000px;}
.yab{bottom:781.125000px;}
.yf{bottom:787.065000px;}
.yaa{bottom:795.885000px;}
.y52{bottom:796.605000px;}
.ye9{bottom:798.405000px;}
.ye{bottom:808.125000px;}
.ya9{bottom:810.465000px;}
.y51{bottom:813.885000px;}
.ye8{bottom:815.505000px;}
.ya8{bottom:828.150000px;}
.y50{bottom:831.210000px;}
.ye7{bottom:832.830000px;}
.yd{bottom:839.310000px;}
.ya7{bottom:842.910000px;}
.y4f{bottom:848.490000px;}
.ye6{bottom:850.110000px;}
.ya6{bottom:857.490000px;}
.y4e{bottom:865.770000px;}
.ye5{bottom:867.390000px;}
.yc{bottom:870.270000px;}
.ya5{bottom:872.070000px;}
.y4d{bottom:883.050000px;}
.ye4{bottom:884.670000px;}
.ya4{bottom:889.170000px;}
.y4c{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.ye3{bottom:901.950000px;}
.ya3{bottom:903.030000px;}
.y4b{bottom:917.430000px;}
.ye2{bottom:919.050000px;}
.ya{bottom:930.210000px;}
.ye1{bottom:933.810000px;}
.y4a{bottom:934.710000px;}
.y8{bottom:945.510000px;}
.y49{bottom:951.990000px;}
.yde{bottom:962.250000px;}
.y48{bottom:969.270000px;}
.y47{bottom:986.550000px;}
.ydd{bottom:990.510000px;}
.y46{bottom:1003.650000px;}
.ydc{bottom:1005.090000px;}
.ydb{bottom:1019.670000px;}
.y45{bottom:1020.930000px;}
.yda{bottom:1034.250000px;}
.y44{bottom:1038.210000px;}
.yd9{bottom:1050.810000px;}
.y43{bottom:1055.490000px;}
.yd8{bottom:1061.610000px;}
.y42{bottom:1072.800000px;}
.yd7{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1a{height:13.680000px;}
.h1e{height:13.716000px;}
.h1c{height:13.860000px;}
.h1d{height:13.860150px;}
.h20{height:13.896000px;}
.hf{height:17.280000px;}
.h14{height:20.160000px;}
.h1f{height:21.114844px;}
.h21{height:25.136719px;}
.hc{height:27.147656px;}
.h22{height:27.540000px;}
.h3{height:27.576000px;}
.h23{height:27.720000px;}
.h5{height:33.683203px;}
.h1b{height:34.036523px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.336328px;}
.h12{height:39.999023px;}
.h4{height:41.726953px;}
.he{height:42.164648px;}
.h19{height:43.506914px;}
.h13{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h24{height:55.080000px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h15{height:84.240000px;}
.h18{height:118.800000px;}
.h11{height:141.516000px;}
.h7{height:153.930000px;}
.h10{height:366.870000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w26{width:40.500000px;}
.w28{width:41.580000px;}
.w13{width:41.760000px;}
.w20{width:41.796000px;}
.w10{width:41.976000px;}
.w22{width:42.480000px;}
.w25{width:42.516000px;}
.w27{width:42.840000px;}
.w23{width:52.020000px;}
.w12{width:52.380000px;}
.wc{width:60.300000px;}
.wb{width:60.336000px;}
.w1e{width:61.776000px;}
.w21{width:62.640000px;}
.w11{width:63.000000px;}
.w19{width:64.620000px;}
.w1d{width:66.960000px;}
.wf{width:73.620000px;}
.w15{width:74.160000px;}
.w16{width:74.196000px;}
.w18{width:82.836000px;}
.w1f{width:102.780000px;}
.w8{width:105.516000px;}
.we{width:105.660000px;}
.w1a{width:105.696000px;}
.wd{width:108.720000px;}
.w14{width:108.756000px;}
.w9{width:116.100000px;}
.w17{width:122.760000px;}
.w1b{width:126.720000px;}
.w1c{width:148.176000px;}
.wa{width:150.480000px;}
.w7{width:158.760000px;}
.w24{width:169.200000px;}
.w6{width:220.170000px;}
.w29{width:360.795000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.480000px;}
.x3{left:8.460000px;}
.x33{left:10.260000px;}
.x30{left:11.340000px;}
.x32{left:12.600000px;}
.x27{left:13.680000px;}
.x23{left:15.480000px;}
.x1f{left:16.560000px;}
.x31{left:17.865000px;}
.x10{left:19.980000px;}
.x26{left:21.060000px;}
.x2d{left:22.500000px;}
.x28{left:24.120000px;}
.x21{left:25.740000px;}
.x14{left:27.360000px;}
.x2a{left:30.060000px;}
.x35{left:31.500000px;}
.x39{left:32.760000px;}
.x12{left:34.065000px;}
.x13{left:35.865000px;}
.x1a{left:37.665000px;}
.x34{left:40.140000px;}
.x1c{left:41.220000px;}
.x40{left:42.300000px;}
.x25{left:44.460000px;}
.x6{left:45.540000px;}
.x1d{left:46.665000px;}
.x3c{left:47.880000px;}
.x1e{left:48.960000px;}
.x41{left:52.740000px;}
.x2{left:53.999986px;}
.x18{left:57.060000px;}
.x52{left:58.320000px;}
.x1{left:60.659986px;}
.x46{left:62.136000px;}
.x15{left:65.519986px;}
.x53{left:67.860000px;}
.x9{left:71.999986px;}
.x57{left:84.420000px;}
.x54{left:86.759986px;}
.x58{left:95.790000px;}
.x4{left:100.836000px;}
.x5{left:108.035986px;}
.x42{left:109.835986px;}
.x36{left:115.955986px;}
.x3d{left:149.436000px;}
.x47{left:172.290000px;}
.x38{left:175.350000px;}
.xd{left:184.709986px;}
.x43{left:200.549986px;}
.x3e{left:214.770000px;}
.x48{left:246.630000px;}
.x3a{left:250.230000px;}
.x37{left:252.569986px;}
.x44{left:282.630000px;}
.x49{left:289.335000px;}
.xc{left:315.794986px;}
.x3f{left:321.195000px;}
.x3b{left:325.155000px;}
.x45{left:345.135000px;}
.x4a{left:352.695000px;}
.xa{left:354.314986px;}
.x4b{left:395.895000px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x16{left:478.334986px;}
.x17{left:484.485000px;}
.x55{left:505.364986px;}
.x4c{left:507.524986px;}
.x56{left:526.604986px;}
.x4d{left:573.584986px;}
.x29{left:590.865000px;}
.x20{left:635.685000px;}
.xf{left:642.345000px;}
.x19{left:643.965000px;}
.x4f{left:654.405000px;}
.x2b{left:665.205000px;}
.x4e{left:671.144986px;}
.x22{left:696.750000px;}
.x2c{left:707.910000px;}
.x50{left:740.130000px;}
.x1b{left:750.390000px;}
.x24{left:757.770000px;}
.x2e{left:771.630000px;}
.x51{left:781.350000px;}
.x7{left:812.490000px;}
.x2f{left:824.730000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.239467pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:14.672640pt;}
.ls2{letter-spacing:33.232640pt;}
.ls1{letter-spacing:37.216000pt;}
.ls3{letter-spacing:40.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.561067pt;}
.wsc{word-spacing:-10.558933pt;}
.wsd{word-spacing:-10.480533pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-1.340800pt;}
._0{width:1.009280pt;}
._4{width:2.662187pt;}
._d{width:3.824640pt;}
._c{width:4.780800pt;}
._10{width:5.843200pt;}
._8{width:6.746240pt;}
._7{width:7.755520pt;}
._14{width:8.977280pt;}
._9{width:10.092800pt;}
._1c{width:11.471147pt;}
._6{width:12.360960pt;}
._15{width:14.186027pt;}
._16{width:15.776640pt;}
._b{width:17.011200pt;}
._a{width:18.220160pt;}
._17{width:19.548160pt;}
._20{width:21.035520pt;}
._f{width:22.682240pt;}
._e{width:23.585280pt;}
._1b{width:24.979200pt;}
._1a{width:26.081920pt;}
._22{width:27.250560pt;}
._28{width:28.259840pt;}
._25{width:29.378560pt;}
._21{width:30.434560pt;}
._13{width:31.344000pt;}
._12{width:32.496000pt;}
._19{width:33.571840pt;}
._18{width:34.474880pt;}
._26{width:35.537280pt;}
._23{width:37.184000pt;}
._1d{width:41.911680pt;}
._11{width:43.200000pt;}
._27{width:44.248960pt;}
._2d{width:45.680427pt;}
._2a{width:47.117440pt;}
._24{width:48.179840pt;}
._2b{width:49.189120pt;}
._2e{width:50.198400pt;}
._1f{width:52.163840pt;}
._1e{width:53.704320pt;}
._2c{width:60.025600pt;}
._29{width:61.566080pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._5{width:876.958293pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y35{bottom:2.560000pt;}
.y14{bottom:2.880000pt;}
.y2d{bottom:5.440000pt;}
.y4{bottom:7.392000pt;}
.ye0{bottom:8.320000pt;}
.y33{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y10d{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.ydf{bottom:14.560000pt;}
.y2b{bottom:17.120000pt;}
.y32{bottom:22.240000pt;}
.y10c{bottom:26.720000pt;}
.y7{bottom:31.520000pt;}
.y2a{bottom:31.866667pt;}
.y31{bottom:36.160000pt;}
.y10b{bottom:39.040000pt;}
.y29{bottom:45.626667pt;}
.y30{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.y28{bottom:59.386667pt;}
.y2f{bottom:63.680000pt;}
.y27{bottom:73.146667pt;}
.y26{bottom:87.066667pt;}
.y34{bottom:94.400000pt;}
.yd6{bottom:99.712000pt;}
.ya2{bottom:100.192000pt;}
.y25{bottom:100.826667pt;}
.y41{bottom:103.072000pt;}
.y79{bottom:110.112000pt;}
.y107{bottom:111.552000pt;}
.yd5{bottom:112.032000pt;}
.ya1{bottom:113.312000pt;}
.y24{bottom:114.586667pt;}
.y40{bottom:118.432000pt;}
.yd4{bottom:124.192000pt;}
.y78{bottom:125.472000pt;}
.ya0{bottom:126.272000pt;}
.y106{bottom:126.912000pt;}
.y22{bottom:129.600000pt;}
.y3f{bottom:133.786667pt;}
.yd3{bottom:136.506667pt;}
.y9f{bottom:139.066667pt;}
.y77{bottom:140.826667pt;}
.y105{bottom:142.266667pt;}
.y21{bottom:144.960000pt;}
.yd2{bottom:148.826667pt;}
.y3e{bottom:149.146667pt;}
.y9e{bottom:152.026667pt;}
.y76{bottom:156.186667pt;}
.y104{bottom:157.626667pt;}
.y20{bottom:160.320000pt;}
.yd1{bottom:160.986667pt;}
.y3d{bottom:164.506667pt;}
.y9d{bottom:167.866667pt;}
.y75{bottom:171.546667pt;}
.y103{bottom:172.986667pt;}
.yd0{bottom:173.306667pt;}
.y1f{bottom:175.680000pt;}
.y3c{bottom:179.706667pt;}
.y9c{bottom:180.986667pt;}
.ycf{bottom:185.626667pt;}
.y74{bottom:186.746667pt;}
.y102{bottom:188.346667pt;}
.y1e{bottom:191.040000pt;}
.y9b{bottom:193.946667pt;}
.y3b{bottom:195.066667pt;}
.yce{bottom:197.786667pt;}
.y73{bottom:202.106667pt;}
.y101{bottom:203.546667pt;}
.y1d{bottom:206.240000pt;}
.y9a{bottom:206.906667pt;}
.ycd{bottom:210.106667pt;}
.y3a{bottom:210.426667pt;}
.y72{bottom:217.466667pt;}
.y100{bottom:218.906667pt;}
.y99{bottom:219.866667pt;}
.y1c{bottom:221.626667pt;}
.ycc{bottom:223.066667pt;}
.y39{bottom:225.786667pt;}
.y98{bottom:232.666667pt;}
.y71{bottom:232.826667pt;}
.yff{bottom:234.266667pt;}
.y1b{bottom:236.986667pt;}
.ycb{bottom:238.266667pt;}
.y38{bottom:241.146667pt;}
.y97{bottom:247.866667pt;}
.y70{bottom:248.186667pt;}
.yfe{bottom:249.626667pt;}
.y1a{bottom:252.346667pt;}
.yca{bottom:253.626667pt;}
.y37{bottom:256.346667pt;}
.y96{bottom:260.186667pt;}
.y6f{bottom:263.546667pt;}
.yfd{bottom:264.986667pt;}
.y19{bottom:267.706667pt;}
.yc9{bottom:268.986667pt;}
.y36{bottom:271.546667pt;}
.y95{bottom:272.506667pt;}
.y6e{bottom:278.746667pt;}
.yfc{bottom:280.346667pt;}
.y18{bottom:283.066667pt;}
.y15{bottom:283.426667pt;}
.yc8{bottom:284.386667pt;}
.y94{bottom:285.346667pt;}
.y6d{bottom:294.146667pt;}
.yfb{bottom:295.586667pt;}
.y17{bottom:298.266667pt;}
.yc7{bottom:299.746667pt;}
.y93{bottom:300.706667pt;}
.y6c{bottom:309.506667pt;}
.yfa{bottom:310.946667pt;}
.y16{bottom:313.626667pt;}
.yc6{bottom:315.106667pt;}
.y92{bottom:316.066667pt;}
.y6b{bottom:324.866667pt;}
.yf9{bottom:326.306667pt;}
.yc5{bottom:330.306667pt;}
.y91{bottom:331.426667pt;}
.y6a{bottom:340.226667pt;}
.yf8{bottom:341.666667pt;}
.yc4{bottom:345.666667pt;}
.y90{bottom:346.626667pt;}
.y69{bottom:355.426667pt;}
.yf7{bottom:357.026667pt;}
.yc3{bottom:361.026667pt;}
.y8f{bottom:361.986667pt;}
.y68{bottom:370.786667pt;}
.yf6{bottom:372.226667pt;}
.yc2{bottom:376.386667pt;}
.y8e{bottom:377.346667pt;}
.y67{bottom:386.146667pt;}
.yf5{bottom:387.586667pt;}
.y2e{bottom:389.666667pt;}
.yc1{bottom:391.746667pt;}
.y8d{bottom:392.706667pt;}
.y66{bottom:401.506667pt;}
.yf4{bottom:402.946667pt;}
.yc0{bottom:407.106667pt;}
.y8c{bottom:408.066667pt;}
.y65{bottom:416.866667pt;}
.yf3{bottom:418.306667pt;}
.ybf{bottom:420.226667pt;}
.y8b{bottom:423.426667pt;}
.y64{bottom:432.226667pt;}
.ybe{bottom:433.026667pt;}
.yf2{bottom:433.666667pt;}
.y8a{bottom:438.626667pt;}
.ybd{bottom:445.986667pt;}
.y63{bottom:447.426667pt;}
.yf1{bottom:449.026667pt;}
.y89{bottom:453.986667pt;}
.ybc{bottom:458.946667pt;}
.y62{bottom:462.786667pt;}
.yf0{bottom:464.226667pt;}
.y2c{bottom:465.186667pt;}
.y88{bottom:469.346667pt;}
.ybb{bottom:474.146667pt;}
.y61{bottom:478.146667pt;}
.yef{bottom:479.586667pt;}
.y23{bottom:483.746667pt;}
.y87{bottom:484.706667pt;}
.yba{bottom:484.866667pt;}
.y60{bottom:493.506667pt;}
.yee{bottom:494.946667pt;}
.yb9{bottom:497.666667pt;}
.y86{bottom:500.066667pt;}
.y5f{bottom:508.893333pt;}
.yed{bottom:510.333333pt;}
.yb8{bottom:510.653333pt;}
.y85{bottom:515.453333pt;}
.yb7{bottom:523.613333pt;}
.y5e{bottom:524.253333pt;}
.yec{bottom:525.693333pt;}
.y84{bottom:530.653333pt;}
.yb6{bottom:538.013333pt;}
.y5d{bottom:539.453333pt;}
.yeb{bottom:541.053333pt;}
.y108{bottom:542.013333pt;}
.y83{bottom:546.013333pt;}
.yb5{bottom:546.493333pt;}
.y5c{bottom:554.813333pt;}
.y10a{bottom:555.133333pt;}
.yea{bottom:556.253333pt;}
.yb4{bottom:558.813333pt;}
.y82{bottom:561.373333pt;}
.y5b{bottom:570.173333pt;}
.yb3{bottom:571.613333pt;}
.y81{bottom:576.733333pt;}
.y5a{bottom:585.533333pt;}
.yb2{bottom:586.973333pt;}
.y80{bottom:592.093333pt;}
.y59{bottom:600.893333pt;}
.yb1{bottom:602.333333pt;}
.y109{bottom:604.893333pt;}
.y7f{bottom:607.453333pt;}
.y13{bottom:610.173333pt;}
.y58{bottom:616.253333pt;}
.yb0{bottom:617.693333pt;}
.y7e{bottom:622.653333pt;}
.y57{bottom:631.453333pt;}
.yaf{bottom:633.053333pt;}
.y7d{bottom:638.013333pt;}
.y12{bottom:640.893333pt;}
.y56{bottom:646.813333pt;}
.yae{bottom:648.253333pt;}
.y7c{bottom:651.133333pt;}
.y11{bottom:658.653333pt;}
.y55{bottom:662.173333pt;}
.yad{bottom:663.613333pt;}
.y7b{bottom:664.093333pt;}
.y7a{bottom:677.053333pt;}
.y54{bottom:677.533333pt;}
.yac{bottom:678.973333pt;}
.y10{bottom:688.573333pt;}
.y53{bottom:692.893333pt;}
.yab{bottom:694.333333pt;}
.yf{bottom:699.613333pt;}
.yaa{bottom:707.453333pt;}
.y52{bottom:708.093333pt;}
.ye9{bottom:709.693333pt;}
.ye{bottom:718.333333pt;}
.ya9{bottom:720.413333pt;}
.y51{bottom:723.453333pt;}
.ye8{bottom:724.893333pt;}
.ya8{bottom:736.133333pt;}
.y50{bottom:738.853333pt;}
.ye7{bottom:740.293333pt;}
.yd{bottom:746.053333pt;}
.ya7{bottom:749.253333pt;}
.y4f{bottom:754.213333pt;}
.ye6{bottom:755.653333pt;}
.ya6{bottom:762.213333pt;}
.y4e{bottom:769.573333pt;}
.ye5{bottom:771.013333pt;}
.yc{bottom:773.573333pt;}
.ya5{bottom:775.173333pt;}
.y4d{bottom:784.933333pt;}
.ye4{bottom:786.373333pt;}
.ya4{bottom:790.373333pt;}
.y4c{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.ye3{bottom:801.733333pt;}
.ya3{bottom:802.693333pt;}
.y4b{bottom:815.493333pt;}
.ye2{bottom:816.933333pt;}
.ya{bottom:826.853333pt;}
.ye1{bottom:830.053333pt;}
.y4a{bottom:830.853333pt;}
.y8{bottom:840.453333pt;}
.y49{bottom:846.213333pt;}
.yde{bottom:855.333333pt;}
.y48{bottom:861.573333pt;}
.y47{bottom:876.933333pt;}
.ydd{bottom:880.453333pt;}
.y46{bottom:892.133333pt;}
.ydc{bottom:893.413333pt;}
.ydb{bottom:906.373333pt;}
.y45{bottom:907.493333pt;}
.yda{bottom:919.333333pt;}
.y44{bottom:922.853333pt;}
.yd9{bottom:934.053333pt;}
.y43{bottom:938.213333pt;}
.yd8{bottom:943.653333pt;}
.y42{bottom:953.600000pt;}
.yd7{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1a{height:12.160000pt;}
.h1e{height:12.192000pt;}
.h1c{height:12.320000pt;}
.h1d{height:12.320133pt;}
.h20{height:12.352000pt;}
.hf{height:15.360000pt;}
.h14{height:17.920000pt;}
.h1f{height:18.768750pt;}
.h21{height:22.343750pt;}
.hc{height:24.131250pt;}
.h22{height:24.480000pt;}
.h3{height:24.512000pt;}
.h23{height:24.640000pt;}
.h5{height:29.940625pt;}
.h1b{height:30.254687pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.965625pt;}
.h12{height:35.554688pt;}
.h4{height:37.090625pt;}
.he{height:37.479688pt;}
.h19{height:38.672812pt;}
.h13{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h24{height:48.960000pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h15{height:74.880000pt;}
.h18{height:105.600000pt;}
.h11{height:125.792000pt;}
.h7{height:136.826667pt;}
.h10{height:326.106667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w26{width:36.000000pt;}
.w28{width:36.960000pt;}
.w13{width:37.120000pt;}
.w20{width:37.152000pt;}
.w10{width:37.312000pt;}
.w22{width:37.760000pt;}
.w25{width:37.792000pt;}
.w27{width:38.080000pt;}
.w23{width:46.240000pt;}
.w12{width:46.560000pt;}
.wc{width:53.600000pt;}
.wb{width:53.632000pt;}
.w1e{width:54.912000pt;}
.w21{width:55.680000pt;}
.w11{width:56.000000pt;}
.w19{width:57.440000pt;}
.w1d{width:59.520000pt;}
.wf{width:65.440000pt;}
.w15{width:65.920000pt;}
.w16{width:65.952000pt;}
.w18{width:73.632000pt;}
.w1f{width:91.360000pt;}
.w8{width:93.792000pt;}
.we{width:93.920000pt;}
.w1a{width:93.952000pt;}
.wd{width:96.640000pt;}
.w14{width:96.672000pt;}
.w9{width:103.200000pt;}
.w17{width:109.120000pt;}
.w1b{width:112.640000pt;}
.w1c{width:131.712000pt;}
.wa{width:133.760000pt;}
.w7{width:141.120000pt;}
.w24{width:150.400000pt;}
.w6{width:195.706667pt;}
.w29{width:320.706667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.760000pt;}
.x3{left:7.520000pt;}
.x33{left:9.120000pt;}
.x30{left:10.080000pt;}
.x32{left:11.200000pt;}
.x27{left:12.160000pt;}
.x23{left:13.760000pt;}
.x1f{left:14.720000pt;}
.x31{left:15.880000pt;}
.x10{left:17.760000pt;}
.x26{left:18.720000pt;}
.x2d{left:20.000000pt;}
.x28{left:21.440000pt;}
.x21{left:22.880000pt;}
.x14{left:24.320000pt;}
.x2a{left:26.720000pt;}
.x35{left:28.000000pt;}
.x39{left:29.120000pt;}
.x12{left:30.280000pt;}
.x13{left:31.880000pt;}
.x1a{left:33.480000pt;}
.x34{left:35.680000pt;}
.x1c{left:36.640000pt;}
.x40{left:37.600000pt;}
.x25{left:39.520000pt;}
.x6{left:40.480000pt;}
.x1d{left:41.480000pt;}
.x3c{left:42.560000pt;}
.x1e{left:43.520000pt;}
.x41{left:46.880000pt;}
.x2{left:47.999988pt;}
.x18{left:50.720000pt;}
.x52{left:51.840000pt;}
.x1{left:53.919988pt;}
.x46{left:55.232000pt;}
.x15{left:58.239988pt;}
.x53{left:60.320000pt;}
.x9{left:63.999988pt;}
.x57{left:75.040000pt;}
.x54{left:77.119988pt;}
.x58{left:85.146667pt;}
.x4{left:89.632000pt;}
.x5{left:96.031988pt;}
.x42{left:97.631988pt;}
.x36{left:103.071988pt;}
.x3d{left:132.832000pt;}
.x47{left:153.146667pt;}
.x38{left:155.866667pt;}
.xd{left:164.186655pt;}
.x43{left:178.266655pt;}
.x3e{left:190.906667pt;}
.x48{left:219.226667pt;}
.x3a{left:222.426667pt;}
.x37{left:224.506655pt;}
.x44{left:251.226667pt;}
.x49{left:257.186667pt;}
.xc{left:280.706655pt;}
.x3f{left:285.506667pt;}
.x3b{left:289.026667pt;}
.x45{left:306.786667pt;}
.x4a{left:313.506667pt;}
.xa{left:314.946655pt;}
.x4b{left:351.906667pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x16{left:425.186655pt;}
.x17{left:430.653333pt;}
.x55{left:449.213321pt;}
.x4c{left:451.133321pt;}
.x56{left:468.093321pt;}
.x4d{left:509.853321pt;}
.x29{left:525.213333pt;}
.x20{left:565.053333pt;}
.xf{left:570.973333pt;}
.x19{left:572.413333pt;}
.x4f{left:581.693333pt;}
.x2b{left:591.293333pt;}
.x4e{left:596.573321pt;}
.x22{left:619.333333pt;}
.x2c{left:629.253333pt;}
.x50{left:657.893333pt;}
.x1b{left:667.013333pt;}
.x24{left:673.573333pt;}
.x2e{left:685.893333pt;}
.x51{left:694.533333pt;}
.x7{left:722.213333pt;}
.x2f{left:733.093333pt;}
}




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