
    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_9ad6c64c06087d851ef2c0d8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ad849a099d0be147452e832c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bb6bc6ec8eb7ab944f10b02d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_b12b13bb1cddb74eae0e2f56.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_a5e45989bfbab9117116a418.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.466800px;}
.ls6{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.181200px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.253200px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.720000px;}
.ls2{letter-spacing:171.360000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.790600px;}
.wsb{word-spacing:-7.813200px;}
.ws9{word-spacing:-7.560000px;}
.wsd{word-spacing:-7.093200px;}
.wsc{word-spacing:-6.840000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.008000px;}
._0{width:1.195200px;}
._2{width:2.381520px;}
._3{width:3.960000px;}
._4{width:5.080800px;}
._a{width:6.168000px;}
._5{width:7.848000px;}
._12{width:9.220800px;}
._11{width:10.656000px;}
._d{width:12.072000px;}
._b{width:13.608000px;}
._c{width:14.640000px;}
._e{width:16.284000px;}
._f{width:19.416000px;}
._9{width:20.676000px;}
._10{width:22.248000px;}
._8{width:23.256000px;}
._13{width:25.248000px;}
._16{width:27.144000px;}
._17{width:28.252800px;}
._32{width:29.260800px;}
._18{width:30.312000px;}
._19{width:31.795200px;}
._14{width:33.600000px;}
._15{width:34.752000px;}
._1b{width:36.936000px;}
._1a{width:37.944000px;}
._3a{width:39.456000px;}
._39{width:40.464000px;}
._27{width:43.272000px;}
._26{width:44.280000px;}
._33{width:46.008000px;}
._1c{width:49.608000px;}
._1d{width:50.832000px;}
._3d{width:55.548000px;}
._3e{width:56.844000px;}
._2a{width:85.464000px;}
._2b{width:86.508000px;}
._34{width:92.016000px;}
._35{width:93.124800px;}
._20{width:94.176000px;}
._21{width:95.364000px;}
._25{width:114.048000px;}
._24{width:115.488000px;}
._37{width:132.696000px;}
._36{width:134.100000px;}
._2c{width:145.800000px;}
._2d{width:146.988000px;}
._1e{width:150.912000px;}
._1f{width:152.028000px;}
._38{width:164.952000px;}
._22{width:166.608000px;}
._23{width:167.688000px;}
._6{width:168.840000px;}
._7{width:169.888800px;}
._3b{width:200.664000px;}
._3c{width:201.672000px;}
._28{width:234.576000px;}
._29{width:236.016000px;}
._2e{width:248.796000px;}
._2f{width:249.912000px;}
._30{width:351.900000px;}
._31{width:352.944000px;}
.fc6{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(237,125,49);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:12.240000px;}
.fs6{font-size:18.000000px;}
.fs8{font-size:23.760000px;}
.fs5{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:0.720000px;}
.ya1{bottom:2.520000px;}
.y77{bottom:4.320000px;}
.y71{bottom:5.580000px;}
.yc0{bottom:5.940000px;}
.y9b{bottom:7.020000px;}
.y75{bottom:8.460000px;}
.ya2{bottom:9.360000px;}
.yba{bottom:9.540000px;}
.yb2{bottom:9.720000px;}
.y96{bottom:10.260000px;}
.y9c{bottom:14.040000px;}
.y73{bottom:14.220000px;}
.y98{bottom:14.760000px;}
.ya3{bottom:16.200000px;}
.ya0{bottom:16.380000px;}
.yb3{bottom:16.740000px;}
.y97{bottom:18.000000px;}
.ybf{bottom:19.620000px;}
.y9a{bottom:20.880000px;}
.y6f{bottom:22.860000px;}
.yaa{bottom:23.400000px;}
.y9e{bottom:25.380000px;}
.y9d{bottom:25.560000px;}
.yd3{bottom:30.090000px;}
.y72{bottom:31.500000px;}
.ybe{bottom:33.480000px;}
.y70{bottom:40.140000px;}
.ya9{bottom:41.760000px;}
.yd2{bottom:48.450000px;}
.ya8{bottom:50.970000px;}
.ybd{bottom:51.840000px;}
.y6{bottom:56.880000px;}
.yd1{bottom:57.810000px;}
.ybc{bottom:61.050000px;}
.yb0{bottom:110.340000px;}
.yeb{bottom:110.880000px;}
.y2d{bottom:112.140000px;}
.yc8{bottom:115.020000px;}
.y91{bottom:117.900000px;}
.ydb{bottom:125.640000px;}
.yaf{bottom:127.440000px;}
.yc7{bottom:132.300000px;}
.y7b{bottom:135.720000px;}
.y6c{bottom:136.080000px;}
.y2c{bottom:137.700000px;}
.yfa{bottom:138.060000px;}
.yda{bottom:138.600000px;}
.yea{bottom:142.020000px;}
.yae{bottom:144.720000px;}
.y90{bottom:149.040000px;}
.yc6{bottom:149.580000px;}
.yd9{bottom:155.880000px;}
.y2b{bottom:158.400000px;}
.y7a{bottom:166.860000px;}
.y6b{bottom:167.040000px;}
.yad{bottom:167.400000px;}
.yf9{bottom:169.020000px;}
.yc5{bottom:172.080000px;}
.ye9{bottom:172.980000px;}
.yd8{bottom:173.160000px;}
.y2a{bottom:179.130000px;}
.y8f{bottom:180.030000px;}
.y56{bottom:182.910000px;}
.yd7{bottom:195.870000px;}
.y6a{bottom:198.210000px;}
.y29{bottom:199.830000px;}
.yf8{bottom:200.190000px;}
.y55{bottom:203.610000px;}
.y79{bottom:204.150000px;}
.y8e{bottom:211.170000px;}
.y78{bottom:218.910000px;}
.y54{bottom:224.310000px;}
.y69{bottom:229.170000px;}
.yf7{bottom:231.150000px;}
.ye8{bottom:235.110000px;}
.y28{bottom:238.530000px;}
.y76{bottom:239.070000px;}
.y8d{bottom:242.130000px;}
.y53{bottom:245.010000px;}
.y74{bottom:259.410000px;}
.y68{bottom:260.310000px;}
.yf6{bottom:262.290000px;}
.y52{bottom:265.710000px;}
.ye7{bottom:266.250000px;}
.y8c{bottom:273.270000px;}
.y27{bottom:277.230000px;}
.y51{bottom:286.410000px;}
.y6e{bottom:287.850000px;}
.y67{bottom:291.270000px;}
.yf5{bottom:293.250000px;}
.ye6{bottom:297.210000px;}
.y26{bottom:297.930000px;}
.y8b{bottom:304.230000px;}
.y50{bottom:307.110000px;}
.y25{bottom:318.630000px;}
.y66{bottom:322.410000px;}
.yf4{bottom:324.390000px;}
.y4f{bottom:327.810000px;}
.ye5{bottom:328.350000px;}
.y8a{bottom:335.190000px;}
.y24{bottom:339.330000px;}
.y4e{bottom:348.510000px;}
.y65{bottom:353.370000px;}
.yf3{bottom:355.350000px;}
.y6d{bottom:356.070000px;}
.ye4{bottom:359.310000px;}
.y89{bottom:366.330000px;}
.y4d{bottom:369.210000px;}
.y23{bottom:378.030000px;}
.y64{bottom:384.510000px;}
.yf2{bottom:386.490000px;}
.y4c{bottom:389.910000px;}
.ye3{bottom:390.450000px;}
.y88{bottom:397.290000px;}
.y22{bottom:398.730000px;}
.y4b{bottom:410.610000px;}
.y63{bottom:415.470000px;}
.yf1{bottom:417.450000px;}
.y21{bottom:419.430000px;}
.ye2{bottom:421.455000px;}
.y87{bottom:428.475000px;}
.y4a{bottom:431.355000px;}
.y20{bottom:440.175000px;}
.y62{bottom:446.655000px;}
.yf0{bottom:448.635000px;}
.y49{bottom:452.055000px;}
.ye1{bottom:452.595000px;}
.y86{bottom:459.435000px;}
.y1f{bottom:460.875000px;}
.y48{bottom:472.755000px;}
.y61{bottom:477.615000px;}
.yef{bottom:479.595000px;}
.ye0{bottom:483.555000px;}
.y85{bottom:490.575000px;}
.y47{bottom:493.455000px;}
.y1e{bottom:499.575000px;}
.y60{bottom:508.755000px;}
.yee{bottom:510.735000px;}
.y46{bottom:514.155000px;}
.ydf{bottom:514.695000px;}
.y1d{bottom:520.275000px;}
.y84{bottom:521.535000px;}
.yc4{bottom:528.195000px;}
.y45{bottom:534.675000px;}
.y5f{bottom:539.715000px;}
.y1c{bottom:540.975000px;}
.yed{bottom:541.695000px;}
.yde{bottom:551.955000px;}
.yac{bottom:552.495000px;}
.y83{bottom:552.675000px;}
.yd6{bottom:555.195000px;}
.yc3{bottom:559.155000px;}
.y1b{bottom:561.675000px;}
.y44{bottom:567.435000px;}
.ydd{bottom:569.055000px;}
.y5e{bottom:570.675000px;}
.yec{bottom:571.755000px;}
.y1a{bottom:582.375000px;}
.y82{bottom:583.635000px;}
.yd5{bottom:586.335000px;}
.yc2{bottom:590.295000px;}
.ydc{bottom:591.735000px;}
.y43{bottom:600.195000px;}
.y5d{bottom:601.815000px;}
.y19{bottom:603.795000px;}
.ybb{bottom:607.035000px;}
.yab{bottom:607.395000px;}
.y18{bottom:612.615000px;}
.y81{bottom:614.775000px;}
.ya7{bottom:615.855000px;}
.yd4{bottom:617.295000px;}
.y42{bottom:632.775000px;}
.yd0{bottom:634.035000px;}
.y17{bottom:638.535000px;}
.y80{bottom:645.735000px;}
.y41{bottom:653.475000px;}
.y16{bottom:654.195000px;}
.y5c{bottom:663.945000px;}
.y92{bottom:670.965000px;}
.y40{bottom:674.205000px;}
.y15{bottom:676.185000px;}
.y7f{bottom:676.905000px;}
.ya6{bottom:678.885000px;}
.yb9{bottom:680.145000px;}
.y14{bottom:693.465000px;}
.y3f{bottom:694.905000px;}
.ycf{bottom:703.725000px;}
.ya5{bottom:707.325000px;}
.y7e{bottom:707.865000px;}
.yb8{bottom:708.585000px;}
.y13{bottom:712.365000px;}
.y3e{bottom:715.605000px;}
.y5b{bottom:726.045000px;}
.yce{bottom:732.165000px;}
.ya4{bottom:735.585000px;}
.y3d{bottom:736.305000px;}
.yb7{bottom:736.845000px;}
.y7d{bottom:739.005000px;}
.y12{bottom:741.525000px;}
.y3c{bottom:757.005000px;}
.ycd{bottom:760.425000px;}
.y7c{bottom:764.025000px;}
.yb6{bottom:765.285000px;}
.y11{bottom:769.065000px;}
.y3b{bottom:777.705000px;}
.y5a{bottom:788.145000px;}
.ycc{bottom:788.865000px;}
.y9f{bottom:792.285000px;}
.yb5{bottom:793.545000px;}
.y10{bottom:798.225000px;}
.y3a{bottom:798.405000px;}
.ycb{bottom:817.125000px;}
.y39{bottom:819.105000px;}
.y99{bottom:820.725000px;}
.yb4{bottom:821.985000px;}
.yf{bottom:825.765000px;}
.y38{bottom:839.805000px;}
.yca{bottom:845.565000px;}
.y59{bottom:850.245000px;}
.ye{bottom:854.925000px;}
.y95{bottom:858.345000px;}
.yb1{bottom:859.605000px;}
.y37{bottom:860.505000px;}
.yc9{bottom:873.825000px;}
.yd{bottom:879.585000px;}
.y36{bottom:881.205000px;}
.y94{bottom:888.405000px;}
.yc{bottom:900.105000px;}
.y35{bottom:901.905000px;}
.y58{bottom:912.390000px;}
.y93{bottom:919.410000px;}
.yb{bottom:922.470000px;}
.y34{bottom:922.650000px;}
.y33{bottom:943.350000px;}
.y32{bottom:964.050000px;}
.ya{bottom:965.490000px;}
.y57{bottom:974.490000px;}
.y31{bottom:984.750000px;}
.y9{bottom:996.450000px;}
.y30{bottom:1005.450000px;}
.y2f{bottom:1026.150000px;}
.y8{bottom:1036.590000px;}
.y2e{bottom:1046.850000px;}
.y7{bottom:1067.550000px;}
.y5{bottom:1087.530000px;}
.y4{bottom:1104.810000px;}
.y3{bottom:1122.090000px;}
.y2{bottom:1138.650000px;}
.y1{bottom:1149.840000px;}
.h9{height:5.163750px;}
.h8{height:10.871367px;}
.h20{height:10.972969px;}
.h21{height:13.860000px;}
.h12{height:19.440000px;}
.h11{height:19.620000px;}
.h15{height:22.536000px;}
.h18{height:26.858672px;}
.ha{height:27.109688px;}
.h1a{height:27.540000px;}
.h10{height:27.720000px;}
.h1e{height:28.080000px;}
.h16{height:29.340000px;}
.hc{height:32.273438px;}
.h13{height:34.419375px;}
.h19{height:36.900000px;}
.h14{height:37.437188px;}
.h17{height:42.845977px;}
.h2{height:43.246406px;}
.h1c{height:44.858672px;}
.h1b{height:45.109688px;}
.hb{height:53.077852px;}
.h3{height:53.573906px;}
.h23{height:55.825312px;}
.hf{height:56.340000px;}
.he{height:59.343750px;}
.hd{height:60.679688px;}
.h1d{height:62.316000px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h22{height:68.976000px;}
.h6{height:70.606406px;}
.h7{height:70.786406px;}
.h1f{height:72.396000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:10.800000px;}
.wd{width:10.980000px;}
.w12{width:37.440000px;}
.w1d{width:37.800000px;}
.w21{width:62.496000px;}
.w1f{width:62.676000px;}
.w1a{width:67.140000px;}
.wb{width:67.356000px;}
.w14{width:74.556000px;}
.w16{width:74.736000px;}
.w20{width:76.140000px;}
.w1e{width:77.400000px;}
.w5{width:84.420000px;}
.w18{width:85.500000px;}
.w17{width:86.580000px;}
.w7{width:88.740000px;}
.w6{width:88.776000px;}
.w15{width:89.280000px;}
.w13{width:91.080000px;}
.w4{width:92.016000px;}
.w8{width:92.736000px;}
.w9{width:94.356000px;}
.w3{width:127.080000px;}
.w1c{width:138.636000px;}
.w1b{width:140.076000px;}
.w11{width:160.230000px;}
.w10{width:161.130000px;}
.we{width:164.010000px;}
.wc{width:165.630000px;}
.w19{width:726.810000px;}
.wa{width:821.340000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:5.220000px;}
.x50{left:7.020000px;}
.x17{left:8.100000px;}
.x26{left:9.720000px;}
.x53{left:10.800000px;}
.x27{left:11.910000px;}
.x1b{left:12.960000px;}
.x28{left:14.580000px;}
.x2a{left:15.705000px;}
.x2b{left:16.740000px;}
.x2c{left:19.305000px;}
.x2d{left:20.520000px;}
.x1d{left:21.600000px;}
.x25{left:22.860000px;}
.x1f{left:23.970000px;}
.x19{left:25.425000px;}
.x1c{left:29.160000px;}
.x20{left:31.350000px;}
.x23{left:33.345000px;}
.x29{left:34.920000px;}
.x18{left:36.765000px;}
.x44{left:54.540000px;}
.x15{left:63.534000px;}
.x38{left:64.980000px;}
.x31{left:67.314000px;}
.x43{left:83.196000px;}
.x30{left:102.996000px;}
.x14{left:112.536000px;}
.x3{left:121.355987px;}
.x12{left:127.655987px;}
.x9{left:135.575987px;}
.x10{left:144.395987px;}
.x4{left:150.149987px;}
.x6{left:153.029987px;}
.x56{left:159.689987px;}
.x57{left:170.129987px;}
.x13{left:180.749987px;}
.x3d{left:194.070000px;}
.xd{left:211.349987px;}
.x4e{left:227.730000px;}
.x16{left:239.610000px;}
.x11{left:261.974987px;}
.x32{left:268.635000px;}
.x33{left:279.615000px;}
.x34{left:290.595000px;}
.x45{left:301.395000px;}
.x46{left:312.375000px;}
.x2e{left:314.534987px;}
.xf{left:322.094987px;}
.x1a{left:331.635000px;}
.xe{left:334.514987px;}
.x8{left:349.094987px;}
.x7{left:356.294987px;}
.xa{left:363.314987px;}
.x3e{left:379.875000px;}
.x4f{left:388.515000px;}
.x2{left:409.214987px;}
.x1e{left:416.055000px;}
.xc{left:418.214987px;}
.x42{left:437.504987px;}
.x5{left:442.004987px;}
.xb{left:446.504987px;}
.x47{left:451.005000px;}
.x35{left:454.605000px;}
.x48{left:461.985000px;}
.x36{left:465.405000px;}
.x49{left:472.965000px;}
.x37{left:476.385000px;}
.x21{left:504.825000px;}
.x51{left:549.105000px;}
.x3f{left:562.965000px;}
.x22{left:593.565000px;}
.x4a{left:611.610000px;}
.x4b{left:622.590000px;}
.x4c{left:633.570000px;}
.x39{left:637.530000px;}
.x3a{left:648.510000px;}
.x3b{left:659.490000px;}
.x41{left:667.409987px;}
.x54{left:680.549987px;}
.x24{left:686.310000px;}
.x52{left:709.710000px;}
.x55{left:743.729987px;}
.x40{left:744.990000px;}
.x4d{left:772.200000px;}
.x3c{left:819.720000px;}
.x1{left:869.039987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.414933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.225067pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls2{letter-spacing:152.320000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.480533pt;}
.wsb{word-spacing:-6.945067pt;}
.ws9{word-spacing:-6.720000pt;}
.wsd{word-spacing:-6.305067pt;}
.wsc{word-spacing:-6.080000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._2{width:2.116907pt;}
._3{width:3.520000pt;}
._4{width:4.516267pt;}
._a{width:5.482667pt;}
._5{width:6.976000pt;}
._12{width:8.196267pt;}
._11{width:9.472000pt;}
._d{width:10.730667pt;}
._b{width:12.096000pt;}
._c{width:13.013333pt;}
._e{width:14.474667pt;}
._f{width:17.258667pt;}
._9{width:18.378667pt;}
._10{width:19.776000pt;}
._8{width:20.672000pt;}
._13{width:22.442667pt;}
._16{width:24.128000pt;}
._17{width:25.113600pt;}
._32{width:26.009600pt;}
._18{width:26.944000pt;}
._19{width:28.262400pt;}
._14{width:29.866667pt;}
._15{width:30.890667pt;}
._1b{width:32.832000pt;}
._1a{width:33.728000pt;}
._3a{width:35.072000pt;}
._39{width:35.968000pt;}
._27{width:38.464000pt;}
._26{width:39.360000pt;}
._33{width:40.896000pt;}
._1c{width:44.096000pt;}
._1d{width:45.184000pt;}
._3d{width:49.376000pt;}
._3e{width:50.528000pt;}
._2a{width:75.968000pt;}
._2b{width:76.896000pt;}
._34{width:81.792000pt;}
._35{width:82.777600pt;}
._20{width:83.712000pt;}
._21{width:84.768000pt;}
._25{width:101.376000pt;}
._24{width:102.656000pt;}
._37{width:117.952000pt;}
._36{width:119.200000pt;}
._2c{width:129.600000pt;}
._2d{width:130.656000pt;}
._1e{width:134.144000pt;}
._1f{width:135.136000pt;}
._38{width:146.624000pt;}
._22{width:148.096000pt;}
._23{width:149.056000pt;}
._6{width:150.080000pt;}
._7{width:151.012267pt;}
._3b{width:178.368000pt;}
._3c{width:179.264000pt;}
._28{width:208.512000pt;}
._29{width:209.792000pt;}
._2e{width:221.152000pt;}
._2f{width:222.144000pt;}
._30{width:312.800000pt;}
._31{width:313.728000pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:10.880000pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:21.120000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:0.640000pt;}
.ya1{bottom:2.240000pt;}
.y77{bottom:3.840000pt;}
.y71{bottom:4.960000pt;}
.yc0{bottom:5.280000pt;}
.y9b{bottom:6.240000pt;}
.y75{bottom:7.520000pt;}
.ya2{bottom:8.320000pt;}
.yba{bottom:8.480000pt;}
.yb2{bottom:8.640000pt;}
.y96{bottom:9.120000pt;}
.y9c{bottom:12.480000pt;}
.y73{bottom:12.640000pt;}
.y98{bottom:13.120000pt;}
.ya3{bottom:14.400000pt;}
.ya0{bottom:14.560000pt;}
.yb3{bottom:14.880000pt;}
.y97{bottom:16.000000pt;}
.ybf{bottom:17.440000pt;}
.y9a{bottom:18.560000pt;}
.y6f{bottom:20.320000pt;}
.yaa{bottom:20.800000pt;}
.y9e{bottom:22.560000pt;}
.y9d{bottom:22.720000pt;}
.yd3{bottom:26.746667pt;}
.y72{bottom:28.000000pt;}
.ybe{bottom:29.760000pt;}
.y70{bottom:35.680000pt;}
.ya9{bottom:37.120000pt;}
.yd2{bottom:43.066667pt;}
.ya8{bottom:45.306667pt;}
.ybd{bottom:46.080000pt;}
.y6{bottom:50.560000pt;}
.yd1{bottom:51.386667pt;}
.ybc{bottom:54.266667pt;}
.yb0{bottom:98.080000pt;}
.yeb{bottom:98.560000pt;}
.y2d{bottom:99.680000pt;}
.yc8{bottom:102.240000pt;}
.y91{bottom:104.800000pt;}
.ydb{bottom:111.680000pt;}
.yaf{bottom:113.280000pt;}
.yc7{bottom:117.600000pt;}
.y7b{bottom:120.640000pt;}
.y6c{bottom:120.960000pt;}
.y2c{bottom:122.400000pt;}
.yfa{bottom:122.720000pt;}
.yda{bottom:123.200000pt;}
.yea{bottom:126.240000pt;}
.yae{bottom:128.640000pt;}
.y90{bottom:132.480000pt;}
.yc6{bottom:132.960000pt;}
.yd9{bottom:138.560000pt;}
.y2b{bottom:140.800000pt;}
.y7a{bottom:148.320000pt;}
.y6b{bottom:148.480000pt;}
.yad{bottom:148.800000pt;}
.yf9{bottom:150.240000pt;}
.yc5{bottom:152.960000pt;}
.ye9{bottom:153.760000pt;}
.yd8{bottom:153.920000pt;}
.y2a{bottom:159.226667pt;}
.y8f{bottom:160.026667pt;}
.y56{bottom:162.586667pt;}
.yd7{bottom:174.106667pt;}
.y6a{bottom:176.186667pt;}
.y29{bottom:177.626667pt;}
.yf8{bottom:177.946667pt;}
.y55{bottom:180.986667pt;}
.y79{bottom:181.466667pt;}
.y8e{bottom:187.706667pt;}
.y78{bottom:194.586667pt;}
.y54{bottom:199.386667pt;}
.y69{bottom:203.706667pt;}
.yf7{bottom:205.466667pt;}
.ye8{bottom:208.986667pt;}
.y28{bottom:212.026667pt;}
.y76{bottom:212.506667pt;}
.y8d{bottom:215.226667pt;}
.y53{bottom:217.786667pt;}
.y74{bottom:230.586667pt;}
.y68{bottom:231.386667pt;}
.yf6{bottom:233.146667pt;}
.y52{bottom:236.186667pt;}
.ye7{bottom:236.666667pt;}
.y8c{bottom:242.906667pt;}
.y27{bottom:246.426667pt;}
.y51{bottom:254.586667pt;}
.y6e{bottom:255.866667pt;}
.y67{bottom:258.906667pt;}
.yf5{bottom:260.666667pt;}
.ye6{bottom:264.186667pt;}
.y26{bottom:264.826667pt;}
.y8b{bottom:270.426667pt;}
.y50{bottom:272.986667pt;}
.y25{bottom:283.226667pt;}
.y66{bottom:286.586667pt;}
.yf4{bottom:288.346667pt;}
.y4f{bottom:291.386667pt;}
.ye5{bottom:291.866667pt;}
.y8a{bottom:297.946667pt;}
.y24{bottom:301.626667pt;}
.y4e{bottom:309.786667pt;}
.y65{bottom:314.106667pt;}
.yf3{bottom:315.866667pt;}
.y6d{bottom:316.506667pt;}
.ye4{bottom:319.386667pt;}
.y89{bottom:325.626667pt;}
.y4d{bottom:328.186667pt;}
.y23{bottom:336.026667pt;}
.y64{bottom:341.786667pt;}
.yf2{bottom:343.546667pt;}
.y4c{bottom:346.586667pt;}
.ye3{bottom:347.066667pt;}
.y88{bottom:353.146667pt;}
.y22{bottom:354.426667pt;}
.y4b{bottom:364.986667pt;}
.y63{bottom:369.306667pt;}
.yf1{bottom:371.066667pt;}
.y21{bottom:372.826667pt;}
.ye2{bottom:374.626667pt;}
.y87{bottom:380.866667pt;}
.y4a{bottom:383.426667pt;}
.y20{bottom:391.266667pt;}
.y62{bottom:397.026667pt;}
.yf0{bottom:398.786667pt;}
.y49{bottom:401.826667pt;}
.ye1{bottom:402.306667pt;}
.y86{bottom:408.386667pt;}
.y1f{bottom:409.666667pt;}
.y48{bottom:420.226667pt;}
.y61{bottom:424.546667pt;}
.yef{bottom:426.306667pt;}
.ye0{bottom:429.826667pt;}
.y85{bottom:436.066667pt;}
.y47{bottom:438.626667pt;}
.y1e{bottom:444.066667pt;}
.y60{bottom:452.226667pt;}
.yee{bottom:453.986667pt;}
.y46{bottom:457.026667pt;}
.ydf{bottom:457.506667pt;}
.y1d{bottom:462.466667pt;}
.y84{bottom:463.586667pt;}
.yc4{bottom:469.506667pt;}
.y45{bottom:475.266667pt;}
.y5f{bottom:479.746667pt;}
.y1c{bottom:480.866667pt;}
.yed{bottom:481.506667pt;}
.yde{bottom:490.626667pt;}
.yac{bottom:491.106667pt;}
.y83{bottom:491.266667pt;}
.yd6{bottom:493.506667pt;}
.yc3{bottom:497.026667pt;}
.y1b{bottom:499.266667pt;}
.y44{bottom:504.386667pt;}
.ydd{bottom:505.826667pt;}
.y5e{bottom:507.266667pt;}
.yec{bottom:508.226667pt;}
.y1a{bottom:517.666667pt;}
.y82{bottom:518.786667pt;}
.yd5{bottom:521.186667pt;}
.yc2{bottom:524.706667pt;}
.ydc{bottom:525.986667pt;}
.y43{bottom:533.506667pt;}
.y5d{bottom:534.946667pt;}
.y19{bottom:536.706667pt;}
.ybb{bottom:539.586667pt;}
.yab{bottom:539.906667pt;}
.y18{bottom:544.546667pt;}
.y81{bottom:546.466667pt;}
.ya7{bottom:547.426667pt;}
.yd4{bottom:548.706667pt;}
.y42{bottom:562.466667pt;}
.yd0{bottom:563.586667pt;}
.y17{bottom:567.586667pt;}
.y80{bottom:573.986667pt;}
.y41{bottom:580.866667pt;}
.y16{bottom:581.506667pt;}
.y5c{bottom:590.173333pt;}
.y92{bottom:596.413333pt;}
.y40{bottom:599.293333pt;}
.y15{bottom:601.053333pt;}
.y7f{bottom:601.693333pt;}
.ya6{bottom:603.453333pt;}
.yb9{bottom:604.573333pt;}
.y14{bottom:616.413333pt;}
.y3f{bottom:617.693333pt;}
.ycf{bottom:625.533333pt;}
.ya5{bottom:628.733333pt;}
.y7e{bottom:629.213333pt;}
.yb8{bottom:629.853333pt;}
.y13{bottom:633.213333pt;}
.y3e{bottom:636.093333pt;}
.y5b{bottom:645.373333pt;}
.yce{bottom:650.813333pt;}
.ya4{bottom:653.853333pt;}
.y3d{bottom:654.493333pt;}
.yb7{bottom:654.973333pt;}
.y7d{bottom:656.893333pt;}
.y12{bottom:659.133333pt;}
.y3c{bottom:672.893333pt;}
.ycd{bottom:675.933333pt;}
.y7c{bottom:679.133333pt;}
.yb6{bottom:680.253333pt;}
.y11{bottom:683.613333pt;}
.y3b{bottom:691.293333pt;}
.y5a{bottom:700.573333pt;}
.ycc{bottom:701.213333pt;}
.y9f{bottom:704.253333pt;}
.yb5{bottom:705.373333pt;}
.y10{bottom:709.533333pt;}
.y3a{bottom:709.693333pt;}
.ycb{bottom:726.333333pt;}
.y39{bottom:728.093333pt;}
.y99{bottom:729.533333pt;}
.yb4{bottom:730.653333pt;}
.yf{bottom:734.013333pt;}
.y38{bottom:746.493333pt;}
.yca{bottom:751.613333pt;}
.y59{bottom:755.773333pt;}
.ye{bottom:759.933333pt;}
.y95{bottom:762.973333pt;}
.yb1{bottom:764.093333pt;}
.y37{bottom:764.893333pt;}
.yc9{bottom:776.733333pt;}
.yd{bottom:781.853333pt;}
.y36{bottom:783.293333pt;}
.y94{bottom:789.693333pt;}
.yc{bottom:800.093333pt;}
.y35{bottom:801.693333pt;}
.y58{bottom:811.013333pt;}
.y93{bottom:817.253333pt;}
.yb{bottom:819.973333pt;}
.y34{bottom:820.133333pt;}
.y33{bottom:838.533333pt;}
.y32{bottom:856.933333pt;}
.ya{bottom:858.213333pt;}
.y57{bottom:866.213333pt;}
.y31{bottom:875.333333pt;}
.y9{bottom:885.733333pt;}
.y30{bottom:893.733333pt;}
.y2f{bottom:912.133333pt;}
.y8{bottom:921.413333pt;}
.y2e{bottom:930.533333pt;}
.y7{bottom:948.933333pt;}
.y5{bottom:966.693333pt;}
.y4{bottom:982.053333pt;}
.y3{bottom:997.413333pt;}
.y2{bottom:1012.133333pt;}
.y1{bottom:1022.080000pt;}
.h9{height:4.590000pt;}
.h8{height:9.663438pt;}
.h20{height:9.753750pt;}
.h21{height:12.320000pt;}
.h12{height:17.280000pt;}
.h11{height:17.440000pt;}
.h15{height:20.032000pt;}
.h18{height:23.874375pt;}
.ha{height:24.097500pt;}
.h1a{height:24.480000pt;}
.h10{height:24.640000pt;}
.h1e{height:24.960000pt;}
.h16{height:26.080000pt;}
.hc{height:28.687500pt;}
.h13{height:30.595000pt;}
.h19{height:32.800000pt;}
.h14{height:33.277500pt;}
.h17{height:38.085312pt;}
.h2{height:38.441250pt;}
.h1c{height:39.874375pt;}
.h1b{height:40.097500pt;}
.hb{height:47.180312pt;}
.h3{height:47.621250pt;}
.h23{height:49.622500pt;}
.hf{height:50.080000pt;}
.he{height:52.750000pt;}
.hd{height:53.937500pt;}
.h1d{height:55.392000pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h22{height:61.312000pt;}
.h6{height:62.761250pt;}
.h7{height:62.921250pt;}
.h1f{height:64.352000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:9.600000pt;}
.wd{width:9.760000pt;}
.w12{width:33.280000pt;}
.w1d{width:33.600000pt;}
.w21{width:55.552000pt;}
.w1f{width:55.712000pt;}
.w1a{width:59.680000pt;}
.wb{width:59.872000pt;}
.w14{width:66.272000pt;}
.w16{width:66.432000pt;}
.w20{width:67.680000pt;}
.w1e{width:68.800000pt;}
.w5{width:75.040000pt;}
.w18{width:76.000000pt;}
.w17{width:76.960000pt;}
.w7{width:78.880000pt;}
.w6{width:78.912000pt;}
.w15{width:79.360000pt;}
.w13{width:80.960000pt;}
.w4{width:81.792000pt;}
.w8{width:82.432000pt;}
.w9{width:83.872000pt;}
.w3{width:112.960000pt;}
.w1c{width:123.232000pt;}
.w1b{width:124.512000pt;}
.w11{width:142.426667pt;}
.w10{width:143.226667pt;}
.we{width:145.786667pt;}
.wc{width:147.226667pt;}
.w19{width:646.053333pt;}
.wa{width:730.080000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:4.640000pt;}
.x50{left:6.240000pt;}
.x17{left:7.200000pt;}
.x26{left:8.640000pt;}
.x53{left:9.600000pt;}
.x27{left:10.586667pt;}
.x1b{left:11.520000pt;}
.x28{left:12.960000pt;}
.x2a{left:13.960000pt;}
.x2b{left:14.880000pt;}
.x2c{left:17.160000pt;}
.x2d{left:18.240000pt;}
.x1d{left:19.200000pt;}
.x25{left:20.320000pt;}
.x1f{left:21.306667pt;}
.x19{left:22.600000pt;}
.x1c{left:25.920000pt;}
.x20{left:27.866667pt;}
.x23{left:29.640000pt;}
.x29{left:31.040000pt;}
.x18{left:32.680000pt;}
.x44{left:48.480000pt;}
.x15{left:56.474667pt;}
.x38{left:57.760000pt;}
.x31{left:59.834667pt;}
.x43{left:73.952000pt;}
.x30{left:91.552000pt;}
.x14{left:100.032000pt;}
.x3{left:107.871988pt;}
.x12{left:113.471988pt;}
.x9{left:120.511988pt;}
.x10{left:128.351988pt;}
.x4{left:133.466655pt;}
.x6{left:136.026655pt;}
.x56{left:141.946655pt;}
.x57{left:151.226655pt;}
.x13{left:160.666655pt;}
.x3d{left:172.506667pt;}
.xd{left:187.866655pt;}
.x4e{left:202.426667pt;}
.x16{left:212.986667pt;}
.x11{left:232.866655pt;}
.x32{left:238.786667pt;}
.x33{left:248.546667pt;}
.x34{left:258.306667pt;}
.x45{left:267.906667pt;}
.x46{left:277.666667pt;}
.x2e{left:279.586655pt;}
.xf{left:286.306655pt;}
.x1a{left:294.786667pt;}
.xe{left:297.346655pt;}
.x8{left:310.306655pt;}
.x7{left:316.706655pt;}
.xa{left:322.946655pt;}
.x3e{left:337.666667pt;}
.x4f{left:345.346667pt;}
.x2{left:363.746655pt;}
.x1e{left:369.826667pt;}
.xc{left:371.746655pt;}
.x42{left:388.893322pt;}
.x5{left:392.893322pt;}
.xb{left:396.893322pt;}
.x47{left:400.893333pt;}
.x35{left:404.093333pt;}
.x48{left:410.653333pt;}
.x36{left:413.693333pt;}
.x49{left:420.413333pt;}
.x37{left:423.453333pt;}
.x21{left:448.733333pt;}
.x51{left:488.093333pt;}
.x3f{left:500.413333pt;}
.x22{left:527.613333pt;}
.x4a{left:543.653333pt;}
.x4b{left:553.413333pt;}
.x4c{left:563.173333pt;}
.x39{left:566.693333pt;}
.x3a{left:576.453333pt;}
.x3b{left:586.213333pt;}
.x41{left:593.253322pt;}
.x54{left:604.933322pt;}
.x24{left:610.053333pt;}
.x52{left:630.853333pt;}
.x55{left:661.093322pt;}
.x40{left:662.213333pt;}
.x4d{left:686.400000pt;}
.x3c{left:728.640000pt;}
.x1{left:772.479988pt;}
}




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