
    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_0f639e2c9219f7559581581c.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_e60def5ca999119d9480c889.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fb4a0206a50e4a4191047f9f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f381291ed997e6f82e008c99.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ab12192d4f69198be6754ba.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_045ebcb897b7ee4e183101e9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_95f1d8f197044b2d18939aa2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.ls3{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls1{letter-spacing:2004.036000px;}
.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;}
}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.280000px;}
.ws8{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1b{margin-left:-9.732000px;}
._1e{margin-left:-8.280000px;}
._18{margin-left:-7.080000px;}
._1{margin-left:-5.472480px;}
._4{margin-left:-4.355280px;}
._5{margin-left:-2.490720px;}
._0{margin-left:-1.457280px;}
._2{width:1.166880px;}
._3{width:2.843760px;}
._10{width:4.161600px;}
._14{width:5.709600px;}
._13{width:6.840000px;}
._21{width:7.848000px;}
._a{width:8.856000px;}
._9{width:9.864000px;}
._8{width:11.753280px;}
._7{width:12.888000px;}
._25{width:13.970160px;}
._11{width:15.048000px;}
._12{width:16.416000px;}
._e{width:19.545120px;}
._d{width:20.706720px;}
._b{width:21.816000px;}
._c{width:23.328000px;}
._15{width:24.730560px;}
._f{width:25.776000px;}
._19{width:26.856000px;}
._1f{width:28.296000px;}
._20{width:29.736000px;}
._1a{width:30.818400px;}
._17{width:32.797440px;}
._16{width:34.217280px;}
._22{width:37.080000px;}
._23{width:38.321280px;}
._24{width:39.933120px;}
._6{width:43.056000px;}
._1c{width:54.146400px;}
._1d{width:55.221600px;}
._26{width:892.380000px;}
.fc2{color:rgb(0,123,184);}
.fc1{color:rgb(33,95,154);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.240000px;}
.ye0{bottom:3.600000px;}
.ye1{bottom:3.960000px;}
.yc7{bottom:11.880000px;}
.yc6{bottom:20.520000px;}
.y3{bottom:57.060000px;}
.yc2{bottom:90.936000px;}
.y8e{bottom:93.096000px;}
.y124{bottom:93.456000px;}
.y34{bottom:99.396000px;}
.y83{bottom:102.816000px;}
.y107{bottom:103.896000px;}
.y121{bottom:110.016000px;}
.y123{bottom:110.736000px;}
.ye5{bottom:114.516000px;}
.yae{bottom:116.136000px;}
.y33{bottom:120.096000px;}
.y112{bottom:120.816000px;}
.y106{bottom:121.176000px;}
.yc1{bottom:121.896000px;}
.y8d{bottom:124.236000px;}
.y122{bottom:124.776000px;}
.y10f{bottom:126.576000px;}
.yf5{bottom:129.276000px;}
.y82{bottom:133.776000px;}
.y61{bottom:134.496000px;}
.y105{bottom:135.216000px;}
.y111{bottom:138.096000px;}
.y32{bottom:140.796000px;}
.y120{bottom:140.976000px;}
.y10e{bottom:143.856000px;}
.y13b{bottom:144.936000px;}
.yad{bottom:147.276000px;}
.yf4{bottom:149.256000px;}
.y91{bottom:150.150000px;}
.ye4{bottom:151.770000px;}
.y110{bottom:152.130000px;}
.yc0{bottom:153.030000px;}
.y8c{bottom:155.190000px;}
.y10a{bottom:160.770000px;}
.y10d{bottom:161.130000px;}
.y31{bottom:161.490000px;}
.y81{bottom:164.910000px;}
.y60{bottom:165.630000px;}
.ye3{bottom:166.530000px;}
.y90{bottom:167.430000px;}
.y11f{bottom:172.110000px;}
.y109{bottom:178.050000px;}
.yac{bottom:178.230000px;}
.y10c{bottom:178.410000px;}
.yf3{bottom:180.570000px;}
.y8f{bottom:181.470000px;}
.y30{bottom:182.190000px;}
.ye2{bottom:183.810000px;}
.ybf{bottom:183.990000px;}
.y8b{bottom:186.330000px;}
.y108{bottom:192.090000px;}
.y10b{bottom:192.450000px;}
.y80{bottom:195.870000px;}
.y5f{bottom:196.590000px;}
.ydf{bottom:201.090000px;}
.y2f{bottom:202.890000px;}
.y11e{bottom:203.070000px;}
.y13a{bottom:207.030000px;}
.yab{bottom:209.370000px;}
.ybe{bottom:215.130000px;}
.y8a{bottom:217.290000px;}
.yde{bottom:219.990000px;}
.y2e{bottom:223.590000px;}
.y7f{bottom:227.010000px;}
.y5e{bottom:227.730000px;}
.yf9{bottom:234.210000px;}
.ydd{bottom:237.270000px;}
.yaa{bottom:240.330000px;}
.y2d{bottom:244.290000px;}
.ybd{bottom:246.090000px;}
.y7e{bottom:247.710000px;}
.y89{bottom:248.430000px;}
.ydc{bottom:255.270000px;}
.y5d{bottom:258.690000px;}
.y2c{bottom:264.990000px;}
.yf8{bottom:265.170000px;}
.y7d{bottom:268.410000px;}
.y139{bottom:269.130000px;}
.ya9{bottom:271.470000px;}
.ybc{bottom:277.230000px;}
.y88{bottom:279.390000px;}
.yf7{bottom:285.150000px;}
.y2b{bottom:285.690000px;}
.y5c{bottom:289.830000px;}
.ydb{bottom:292.170000px;}
.y11d{bottom:296.310000px;}
.y7c{bottom:299.370000px;}
.ya8{bottom:302.430000px;}
.y2a{bottom:306.390000px;}
.ybb{bottom:308.190000px;}
.y87{bottom:310.530000px;}
.yf6{bottom:316.470000px;}
.y5b{bottom:320.790000px;}
.y29{bottom:327.090000px;}
.y11c{bottom:327.270000px;}
.y7b{bottom:330.330000px;}
.yda{bottom:330.690000px;}
.y138{bottom:331.230000px;}
.ya7{bottom:333.570000px;}
.yba{bottom:339.375000px;}
.y86{bottom:341.535000px;}
.y28{bottom:347.835000px;}
.y5a{bottom:351.975000px;}
.y11b{bottom:358.455000px;}
.y7a{bottom:361.515000px;}
.yd9{bottom:361.695000px;}
.ya6{bottom:364.575000px;}
.y104{bottom:365.475000px;}
.y27{bottom:368.535000px;}
.yb9{bottom:370.335000px;}
.y85{bottom:372.675000px;}
.y59{bottom:382.935000px;}
.y26{bottom:389.235000px;}
.y11a{bottom:389.415000px;}
.y79{bottom:392.475000px;}
.yd8{bottom:392.835000px;}
.y84{bottom:393.375000px;}
.ya5{bottom:395.535000px;}
.y103{bottom:396.615000px;}
.yb8{bottom:401.475000px;}
.y58{bottom:403.635000px;}
.y25{bottom:409.935000px;}
.y6d{bottom:414.075000px;}
.y119{bottom:420.555000px;}
.y78{bottom:423.615000px;}
.yd7{bottom:423.795000px;}
.y57{bottom:424.335000px;}
.ya4{bottom:426.675000px;}
.y102{bottom:427.575000px;}
.y24{bottom:430.635000px;}
.yb7{bottom:432.435000px;}
.y12f{bottom:434.775000px;}
.y56{bottom:445.035000px;}
.y23{bottom:451.335000px;}
.y118{bottom:451.515000px;}
.y77{bottom:454.575000px;}
.yd6{bottom:454.935000px;}
.y137{bottom:455.475000px;}
.ya3{bottom:457.635000px;}
.y101{bottom:458.715000px;}
.yb6{bottom:463.575000px;}
.y55{bottom:465.735000px;}
.y22{bottom:472.035000px;}
.y6c{bottom:476.175000px;}
.ya2{bottom:477.615000px;}
.y117{bottom:482.655000px;}
.y76{bottom:485.715000px;}
.yd5{bottom:485.895000px;}
.y54{bottom:486.435000px;}
.y100{bottom:489.675000px;}
.ya1{bottom:492.375000px;}
.y21{bottom:492.735000px;}
.yb5{bottom:494.535000px;}
.y12e{bottom:496.875000px;}
.y53{bottom:507.135000px;}
.ya0{bottom:509.655000px;}
.y116{bottom:513.615000px;}
.y20{bottom:515.055000px;}
.y75{bottom:516.675000px;}
.yd4{bottom:517.035000px;}
.y136{bottom:517.575000px;}
.yff{bottom:520.815000px;}
.yb4{bottom:525.675000px;}
.y9f{bottom:526.935000px;}
.y52{bottom:527.835000px;}
.y1f{bottom:537.735000px;}
.y6b{bottom:538.275000px;}
.yf2{bottom:539.175000px;}
.y9e{bottom:544.215000px;}
.y115{bottom:544.575000px;}
.y74{bottom:547.815000px;}
.yd3{bottom:547.995000px;}
.y51{bottom:548.535000px;}
.yfe{bottom:551.775000px;}
.yb3{bottom:556.635000px;}
.y12d{bottom:558.975000px;}
.yf1{bottom:559.155000px;}
.y1e{bottom:560.055000px;}
.y9d{bottom:561.495000px;}
.y114{bottom:564.555000px;}
.y50{bottom:569.235000px;}
.yf0{bottom:576.255000px;}
.yb2{bottom:576.615000px;}
.y73{bottom:578.775000px;}
.yd2{bottom:579.135000px;}
.y135{bottom:579.675000px;}
.y1d{bottom:580.755000px;}
.y113{bottom:581.835000px;}
.yfd{bottom:582.915000px;}
.y4f{bottom:589.935000px;}
.yef{bottom:591.015000px;}
.yb1{bottom:593.895000px;}
.y9c{bottom:595.875000px;}
.y6a{bottom:600.375000px;}
.y1c{bottom:601.455000px;}
.yfc{bottom:602.895000px;}
.yee{bottom:608.325000px;}
.y72{bottom:609.945000px;}
.yd1{bottom:610.125000px;}
.y4e{bottom:610.665000px;}
.yb0{bottom:611.205000px;}
.y9b{bottom:613.185000px;}
.yfb{bottom:620.205000px;}
.y12c{bottom:621.105000px;}
.y1b{bottom:622.185000px;}
.yaf{bottom:625.065000px;}
.yed{bottom:625.605000px;}
.y9a{bottom:630.465000px;}
.yd0{bottom:630.825000px;}
.y4d{bottom:631.365000px;}
.yfa{bottom:634.065000px;}
.y71{bottom:640.905000px;}
.y134{bottom:641.805000px;}
.y1a{bottom:642.885000px;}
.y98{bottom:648.465000px;}
.ycf{bottom:651.525000px;}
.y4c{bottom:652.065000px;}
.yec{bottom:660.165000px;}
.y70{bottom:660.885000px;}
.y69{bottom:662.505000px;}
.y19{bottom:663.585000px;}
.y97{bottom:668.085000px;}
.y4b{bottom:672.765000px;}
.y6f{bottom:678.165000px;}
.y96{bottom:678.345000px;}
.yce{bottom:682.665000px;}
.y12b{bottom:683.205000px;}
.y18{bottom:684.285000px;}
.y6e{bottom:692.205000px;}
.y4a{bottom:693.465000px;}
.ycd{bottom:702.645000px;}
.y133{bottom:703.905000px;}
.y17{bottom:704.985000px;}
.y95{bottom:706.605000px;}
.y49{bottom:714.165000px;}
.yeb{bottom:715.065000px;}
.ycc{bottom:717.405000px;}
.y68{bottom:724.605000px;}
.yea{bottom:725.145000px;}
.y16{bottom:725.685000px;}
.y94{bottom:726.585000px;}
.ycb{bottom:734.685000px;}
.y48{bottom:734.865000px;}
.y93{bottom:743.865000px;}
.y12a{bottom:745.305000px;}
.y15{bottom:746.385000px;}
.yca{bottom:751.785000px;}
.ye9{bottom:753.585000px;}
.y47{bottom:755.565000px;}
.y92{bottom:757.905000px;}
.y132{bottom:766.005000px;}
.y14{bottom:767.085000px;}
.yc9{bottom:769.065000px;}
.ye8{bottom:773.565000px;}
.y46{bottom:776.265000px;}
.yc8{bottom:786.345000px;}
.y67{bottom:786.705000px;}
.y13{bottom:787.785000px;}
.ye7{bottom:790.845000px;}
.y45{bottom:796.965000px;}
.yc5{bottom:804.345000px;}
.ye6{bottom:804.705000px;}
.y129{bottom:807.405000px;}
.y12{bottom:808.485000px;}
.y44{bottom:817.665000px;}
.y131{bottom:828.105000px;}
.y11{bottom:829.185000px;}
.y43{bottom:838.365000px;}
.yc4{bottom:841.245000px;}
.y66{bottom:848.805000px;}
.y10{bottom:849.885000px;}
.yc3{bottom:851.505000px;}
.y42{bottom:859.065000px;}
.y128{bottom:869.505000px;}
.yf{bottom:870.630000px;}
.y41{bottom:879.810000px;}
.ye{bottom:891.330000px;}
.y40{bottom:900.510000px;}
.y65{bottom:910.950000px;}
.yd{bottom:912.030000px;}
.y3f{bottom:921.210000px;}
.y127{bottom:931.650000px;}
.yc{bottom:932.730000px;}
.y3e{bottom:941.910000px;}
.yb{bottom:953.250000px;}
.y3d{bottom:962.610000px;}
.y64{bottom:973.050000px;}
.ya{bottom:975.750000px;}
.y3c{bottom:983.310000px;}
.y126{bottom:993.750000px;}
.y9{bottom:998.070000px;}
.y3b{bottom:1004.010000px;}
.y130{bottom:1014.450000px;}
.y8{bottom:1019.310000px;}
.y3a{bottom:1024.710000px;}
.y63{bottom:1035.150000px;}
.y7{bottom:1043.430000px;}
.y39{bottom:1045.410000px;}
.y125{bottom:1055.850000px;}
.y38{bottom:1066.110000px;}
.y6{bottom:1068.630000px;}
.y37{bottom:1086.810000px;}
.y5{bottom:1092.930000px;}
.y62{bottom:1097.250000px;}
.y36{bottom:1107.510000px;}
.y4{bottom:1122.630000px;}
.y35{bottom:1128.210000px;}
.y2{bottom:1172.700000px;}
.y1{bottom:1194.120000px;}
.hc{height:17.100000px;}
.h9{height:17.280000px;}
.hb{height:17.316000px;}
.he{height:18.900000px;}
.h8{height:27.109688px;}
.h10{height:34.380000px;}
.hd{height:34.560000px;}
.ha{height:53.077852px;}
.h7{height:53.573906px;}
.hf{height:59.383125px;}
.h5{height:63.949219px;}
.h2{height:64.546875px;}
.h3{height:65.884219px;}
.h6{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:54.720000px;}
.we{width:59.580000px;}
.w13{width:60.660000px;}
.w12{width:60.876000px;}
.w11{width:63.720000px;}
.w9{width:64.440000px;}
.wc{width:64.476000px;}
.wd{width:64.620000px;}
.wa{width:64.656000px;}
.wb{width:68.220000px;}
.w10{width:86.400000px;}
.w8{width:95.760000px;}
.w3{width:103.500000px;}
.w7{width:127.476000px;}
.w5{width:148.860000px;}
.w6{width:244.695000px;}
.w4{width:492.045000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:1.260000px;}
.x3f{left:3.780000px;}
.x28{left:5.085000px;}
.x38{left:6.300000px;}
.x26{left:8.100000px;}
.x45{left:11.340000px;}
.x23{left:13.140000px;}
.x44{left:16.380000px;}
.x43{left:17.820000px;}
.x41{left:19.800000px;}
.x2e{left:22.320000px;}
.x13{left:25.014000px;}
.x33{left:26.865000px;}
.x31{left:28.800000px;}
.x2a{left:30.780000px;}
.x2d{left:31.905000px;}
.x32{left:32.940000px;}
.x25{left:34.740000px;}
.x2f{left:38.160000px;}
.x16{left:44.274000px;}
.x29{left:50.985000px;}
.x21{left:53.454000px;}
.x30{left:56.385000px;}
.x2b{left:63.045000px;}
.x2c{left:66.960000px;}
.x1d{left:71.505000px;}
.x15{left:72.585000px;}
.x1c{left:73.665000px;}
.x7{left:83.879987px;}
.x1{left:84.959987px;}
.x1e{left:87.119987px;}
.x1a{left:94.905000px;}
.x17{left:109.845000px;}
.x18{left:111.645000px;}
.x36{left:113.976000px;}
.x4a{left:115.416000px;}
.x19{left:124.785000px;}
.x2{left:128.195987px;}
.x3{left:132.155987px;}
.x8{left:138.095987px;}
.x12{left:148.896000px;}
.x1b{left:160.965000px;}
.x48{left:191.549987px;}
.x4b{left:201.810000px;}
.x37{left:209.730000px;}
.x35{left:220.709987px;}
.x57{left:230.429987px;}
.xa{left:236.189987px;}
.x6{left:243.569987px;}
.x46{left:245.909987px;}
.x54{left:249.689987px;}
.x14{left:252.390000px;}
.x5d{left:256.169987px;}
.x22{left:260.490000px;}
.x59{left:261.569987px;}
.xe{left:264.269987px;}
.x4c{left:265.530000px;}
.x5b{left:269.669987px;}
.x60{left:273.269987px;}
.x20{left:274.709987px;}
.xd{left:275.969987px;}
.x11{left:327.494987px;}
.x4d{left:330.195000px;}
.x39{left:338.835000px;}
.xb{left:349.994987px;}
.x34{left:356.654987px;}
.x10{left:366.194987px;}
.x49{left:367.634987px;}
.x4{left:390.314987px;}
.x4e{left:398.415000px;}
.x3a{left:407.055000px;}
.x1f{left:432.614987px;}
.x5{left:446.654987px;}
.x5f{left:447.914987px;}
.x4f{left:462.855000px;}
.x3b{left:471.525000px;}
.x24{left:505.185000px;}
.x50{left:523.725000px;}
.x3c{left:536.145000px;}
.x51{left:588.165000px;}
.x3d{left:600.585000px;}
.x58{left:626.684987px;}
.x52{left:652.605000px;}
.x27{left:654.045000px;}
.x5a{left:658.229987px;}
.x3e{left:665.070000px;}
.x56{left:669.389987px;}
.x53{left:717.270000px;}
.x40{left:724.650000px;}
.x5e{left:732.749987px;}
.xf{left:746.969987px;}
.x47{left:772.889987px;}
.x55{left:777.389987px;}
.xc{left:779.729987px;}
.x5c{left:782.069987px;}
.x9{left:794.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1{letter-spacing:1781.365333pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.360000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1b{margin-left:-8.650667pt;}
._1e{margin-left:-7.360000pt;}
._18{margin-left:-6.293333pt;}
._1{margin-left:-4.864427pt;}
._4{margin-left:-3.871360pt;}
._5{margin-left:-2.213973pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.037227pt;}
._3{width:2.527787pt;}
._10{width:3.699200pt;}
._14{width:5.075200pt;}
._13{width:6.080000pt;}
._21{width:6.976000pt;}
._a{width:7.872000pt;}
._9{width:8.768000pt;}
._8{width:10.447360pt;}
._7{width:11.456000pt;}
._25{width:12.417920pt;}
._11{width:13.376000pt;}
._12{width:14.592000pt;}
._e{width:17.373440pt;}
._d{width:18.405973pt;}
._b{width:19.392000pt;}
._c{width:20.736000pt;}
._15{width:21.982720pt;}
._f{width:22.912000pt;}
._19{width:23.872000pt;}
._1f{width:25.152000pt;}
._20{width:26.432000pt;}
._1a{width:27.394133pt;}
._17{width:29.153280pt;}
._16{width:30.415360pt;}
._22{width:32.960000pt;}
._23{width:34.063360pt;}
._24{width:35.496107pt;}
._6{width:38.272000pt;}
._1c{width:48.130133pt;}
._1d{width:49.085867pt;}
._26{width:793.226667pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:2.880000pt;}
.ye0{bottom:3.200000pt;}
.ye1{bottom:3.520000pt;}
.yc7{bottom:10.560000pt;}
.yc6{bottom:18.240000pt;}
.y3{bottom:50.720000pt;}
.yc2{bottom:80.832000pt;}
.y8e{bottom:82.752000pt;}
.y124{bottom:83.072000pt;}
.y34{bottom:88.352000pt;}
.y83{bottom:91.392000pt;}
.y107{bottom:92.352000pt;}
.y121{bottom:97.792000pt;}
.y123{bottom:98.432000pt;}
.ye5{bottom:101.792000pt;}
.yae{bottom:103.232000pt;}
.y33{bottom:106.752000pt;}
.y112{bottom:107.392000pt;}
.y106{bottom:107.712000pt;}
.yc1{bottom:108.352000pt;}
.y8d{bottom:110.432000pt;}
.y122{bottom:110.912000pt;}
.y10f{bottom:112.512000pt;}
.yf5{bottom:114.912000pt;}
.y82{bottom:118.912000pt;}
.y61{bottom:119.552000pt;}
.y105{bottom:120.192000pt;}
.y111{bottom:122.752000pt;}
.y32{bottom:125.152000pt;}
.y120{bottom:125.312000pt;}
.y10e{bottom:127.872000pt;}
.y13b{bottom:128.832000pt;}
.yad{bottom:130.912000pt;}
.yf4{bottom:132.672000pt;}
.y91{bottom:133.466667pt;}
.ye4{bottom:134.906667pt;}
.y110{bottom:135.226667pt;}
.yc0{bottom:136.026667pt;}
.y8c{bottom:137.946667pt;}
.y10a{bottom:142.906667pt;}
.y10d{bottom:143.226667pt;}
.y31{bottom:143.546667pt;}
.y81{bottom:146.586667pt;}
.y60{bottom:147.226667pt;}
.ye3{bottom:148.026667pt;}
.y90{bottom:148.826667pt;}
.y11f{bottom:152.986667pt;}
.y109{bottom:158.266667pt;}
.yac{bottom:158.426667pt;}
.y10c{bottom:158.586667pt;}
.yf3{bottom:160.506667pt;}
.y8f{bottom:161.306667pt;}
.y30{bottom:161.946667pt;}
.ye2{bottom:163.386667pt;}
.ybf{bottom:163.546667pt;}
.y8b{bottom:165.626667pt;}
.y108{bottom:170.746667pt;}
.y10b{bottom:171.066667pt;}
.y80{bottom:174.106667pt;}
.y5f{bottom:174.746667pt;}
.ydf{bottom:178.746667pt;}
.y2f{bottom:180.346667pt;}
.y11e{bottom:180.506667pt;}
.y13a{bottom:184.026667pt;}
.yab{bottom:186.106667pt;}
.ybe{bottom:191.226667pt;}
.y8a{bottom:193.146667pt;}
.yde{bottom:195.546667pt;}
.y2e{bottom:198.746667pt;}
.y7f{bottom:201.786667pt;}
.y5e{bottom:202.426667pt;}
.yf9{bottom:208.186667pt;}
.ydd{bottom:210.906667pt;}
.yaa{bottom:213.626667pt;}
.y2d{bottom:217.146667pt;}
.ybd{bottom:218.746667pt;}
.y7e{bottom:220.186667pt;}
.y89{bottom:220.826667pt;}
.ydc{bottom:226.906667pt;}
.y5d{bottom:229.946667pt;}
.y2c{bottom:235.546667pt;}
.yf8{bottom:235.706667pt;}
.y7d{bottom:238.586667pt;}
.y139{bottom:239.226667pt;}
.ya9{bottom:241.306667pt;}
.ybc{bottom:246.426667pt;}
.y88{bottom:248.346667pt;}
.yf7{bottom:253.466667pt;}
.y2b{bottom:253.946667pt;}
.y5c{bottom:257.626667pt;}
.ydb{bottom:259.706667pt;}
.y11d{bottom:263.386667pt;}
.y7c{bottom:266.106667pt;}
.ya8{bottom:268.826667pt;}
.y2a{bottom:272.346667pt;}
.ybb{bottom:273.946667pt;}
.y87{bottom:276.026667pt;}
.yf6{bottom:281.306667pt;}
.y5b{bottom:285.146667pt;}
.y29{bottom:290.746667pt;}
.y11c{bottom:290.906667pt;}
.y7b{bottom:293.626667pt;}
.yda{bottom:293.946667pt;}
.y138{bottom:294.426667pt;}
.ya7{bottom:296.506667pt;}
.yba{bottom:301.666667pt;}
.y86{bottom:303.586667pt;}
.y28{bottom:309.186667pt;}
.y5a{bottom:312.866667pt;}
.y11b{bottom:318.626667pt;}
.y7a{bottom:321.346667pt;}
.yd9{bottom:321.506667pt;}
.ya6{bottom:324.066667pt;}
.y104{bottom:324.866667pt;}
.y27{bottom:327.586667pt;}
.yb9{bottom:329.186667pt;}
.y85{bottom:331.266667pt;}
.y59{bottom:340.386667pt;}
.y26{bottom:345.986667pt;}
.y11a{bottom:346.146667pt;}
.y79{bottom:348.866667pt;}
.yd8{bottom:349.186667pt;}
.y84{bottom:349.666667pt;}
.ya5{bottom:351.586667pt;}
.y103{bottom:352.546667pt;}
.yb8{bottom:356.866667pt;}
.y58{bottom:358.786667pt;}
.y25{bottom:364.386667pt;}
.y6d{bottom:368.066667pt;}
.y119{bottom:373.826667pt;}
.y78{bottom:376.546667pt;}
.yd7{bottom:376.706667pt;}
.y57{bottom:377.186667pt;}
.ya4{bottom:379.266667pt;}
.y102{bottom:380.066667pt;}
.y24{bottom:382.786667pt;}
.yb7{bottom:384.386667pt;}
.y12f{bottom:386.466667pt;}
.y56{bottom:395.586667pt;}
.y23{bottom:401.186667pt;}
.y118{bottom:401.346667pt;}
.y77{bottom:404.066667pt;}
.yd6{bottom:404.386667pt;}
.y137{bottom:404.866667pt;}
.ya3{bottom:406.786667pt;}
.y101{bottom:407.746667pt;}
.yb6{bottom:412.066667pt;}
.y55{bottom:413.986667pt;}
.y22{bottom:419.586667pt;}
.y6c{bottom:423.266667pt;}
.ya2{bottom:424.546667pt;}
.y117{bottom:429.026667pt;}
.y76{bottom:431.746667pt;}
.yd5{bottom:431.906667pt;}
.y54{bottom:432.386667pt;}
.y100{bottom:435.266667pt;}
.ya1{bottom:437.666667pt;}
.y21{bottom:437.986667pt;}
.yb5{bottom:439.586667pt;}
.y12e{bottom:441.666667pt;}
.y53{bottom:450.786667pt;}
.ya0{bottom:453.026667pt;}
.y116{bottom:456.546667pt;}
.y20{bottom:457.826667pt;}
.y75{bottom:459.266667pt;}
.yd4{bottom:459.586667pt;}
.y136{bottom:460.066667pt;}
.yff{bottom:462.946667pt;}
.yb4{bottom:467.266667pt;}
.y9f{bottom:468.386667pt;}
.y52{bottom:469.186667pt;}
.y1f{bottom:477.986667pt;}
.y6b{bottom:478.466667pt;}
.yf2{bottom:479.266667pt;}
.y9e{bottom:483.746667pt;}
.y115{bottom:484.066667pt;}
.y74{bottom:486.946667pt;}
.yd3{bottom:487.106667pt;}
.y51{bottom:487.586667pt;}
.yfe{bottom:490.466667pt;}
.yb3{bottom:494.786667pt;}
.y12d{bottom:496.866667pt;}
.yf1{bottom:497.026667pt;}
.y1e{bottom:497.826667pt;}
.y9d{bottom:499.106667pt;}
.y114{bottom:501.826667pt;}
.y50{bottom:505.986667pt;}
.yf0{bottom:512.226667pt;}
.yb2{bottom:512.546667pt;}
.y73{bottom:514.466667pt;}
.yd2{bottom:514.786667pt;}
.y135{bottom:515.266667pt;}
.y1d{bottom:516.226667pt;}
.y113{bottom:517.186667pt;}
.yfd{bottom:518.146667pt;}
.y4f{bottom:524.386667pt;}
.yef{bottom:525.346667pt;}
.yb1{bottom:527.906667pt;}
.y9c{bottom:529.666667pt;}
.y6a{bottom:533.666667pt;}
.y1c{bottom:534.626667pt;}
.yfc{bottom:535.906667pt;}
.yee{bottom:540.733333pt;}
.y72{bottom:542.173333pt;}
.yd1{bottom:542.333333pt;}
.y4e{bottom:542.813333pt;}
.yb0{bottom:543.293333pt;}
.y9b{bottom:545.053333pt;}
.yfb{bottom:551.293333pt;}
.y12c{bottom:552.093333pt;}
.y1b{bottom:553.053333pt;}
.yaf{bottom:555.613333pt;}
.yed{bottom:556.093333pt;}
.y9a{bottom:560.413333pt;}
.yd0{bottom:560.733333pt;}
.y4d{bottom:561.213333pt;}
.yfa{bottom:563.613333pt;}
.y71{bottom:569.693333pt;}
.y134{bottom:570.493333pt;}
.y1a{bottom:571.453333pt;}
.y98{bottom:576.413333pt;}
.ycf{bottom:579.133333pt;}
.y4c{bottom:579.613333pt;}
.yec{bottom:586.813333pt;}
.y70{bottom:587.453333pt;}
.y69{bottom:588.893333pt;}
.y19{bottom:589.853333pt;}
.y97{bottom:593.853333pt;}
.y4b{bottom:598.013333pt;}
.y6f{bottom:602.813333pt;}
.y96{bottom:602.973333pt;}
.yce{bottom:606.813333pt;}
.y12b{bottom:607.293333pt;}
.y18{bottom:608.253333pt;}
.y6e{bottom:615.293333pt;}
.y4a{bottom:616.413333pt;}
.ycd{bottom:624.573333pt;}
.y133{bottom:625.693333pt;}
.y17{bottom:626.653333pt;}
.y95{bottom:628.093333pt;}
.y49{bottom:634.813333pt;}
.yeb{bottom:635.613333pt;}
.ycc{bottom:637.693333pt;}
.y68{bottom:644.093333pt;}
.yea{bottom:644.573333pt;}
.y16{bottom:645.053333pt;}
.y94{bottom:645.853333pt;}
.ycb{bottom:653.053333pt;}
.y48{bottom:653.213333pt;}
.y93{bottom:661.213333pt;}
.y12a{bottom:662.493333pt;}
.y15{bottom:663.453333pt;}
.yca{bottom:668.253333pt;}
.ye9{bottom:669.853333pt;}
.y47{bottom:671.613333pt;}
.y92{bottom:673.693333pt;}
.y132{bottom:680.893333pt;}
.y14{bottom:681.853333pt;}
.yc9{bottom:683.613333pt;}
.ye8{bottom:687.613333pt;}
.y46{bottom:690.013333pt;}
.yc8{bottom:698.973333pt;}
.y67{bottom:699.293333pt;}
.y13{bottom:700.253333pt;}
.ye7{bottom:702.973333pt;}
.y45{bottom:708.413333pt;}
.yc5{bottom:714.973333pt;}
.ye6{bottom:715.293333pt;}
.y129{bottom:717.693333pt;}
.y12{bottom:718.653333pt;}
.y44{bottom:726.813333pt;}
.y131{bottom:736.093333pt;}
.y11{bottom:737.053333pt;}
.y43{bottom:745.213333pt;}
.yc4{bottom:747.773333pt;}
.y66{bottom:754.493333pt;}
.y10{bottom:755.453333pt;}
.yc3{bottom:756.893333pt;}
.y42{bottom:763.613333pt;}
.y128{bottom:772.893333pt;}
.yf{bottom:773.893333pt;}
.y41{bottom:782.053333pt;}
.ye{bottom:792.293333pt;}
.y40{bottom:800.453333pt;}
.y65{bottom:809.733333pt;}
.yd{bottom:810.693333pt;}
.y3f{bottom:818.853333pt;}
.y127{bottom:828.133333pt;}
.yc{bottom:829.093333pt;}
.y3e{bottom:837.253333pt;}
.yb{bottom:847.333333pt;}
.y3d{bottom:855.653333pt;}
.y64{bottom:864.933333pt;}
.ya{bottom:867.333333pt;}
.y3c{bottom:874.053333pt;}
.y126{bottom:883.333333pt;}
.y9{bottom:887.173333pt;}
.y3b{bottom:892.453333pt;}
.y130{bottom:901.733333pt;}
.y8{bottom:906.053333pt;}
.y3a{bottom:910.853333pt;}
.y63{bottom:920.133333pt;}
.y7{bottom:927.493333pt;}
.y39{bottom:929.253333pt;}
.y125{bottom:938.533333pt;}
.y38{bottom:947.653333pt;}
.y6{bottom:949.893333pt;}
.y37{bottom:966.053333pt;}
.y5{bottom:971.493333pt;}
.y62{bottom:975.333333pt;}
.y36{bottom:984.453333pt;}
.y4{bottom:997.893333pt;}
.y35{bottom:1002.853333pt;}
.y2{bottom:1042.400000pt;}
.y1{bottom:1061.440000pt;}
.hc{height:15.200000pt;}
.h9{height:15.360000pt;}
.hb{height:15.392000pt;}
.he{height:16.800000pt;}
.h8{height:24.097500pt;}
.h10{height:30.560000pt;}
.hd{height:30.720000pt;}
.ha{height:47.180312pt;}
.h7{height:47.621250pt;}
.hf{height:52.785000pt;}
.h5{height:56.843750pt;}
.h2{height:57.375000pt;}
.h3{height:58.563750pt;}
.h6{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:48.640000pt;}
.we{width:52.960000pt;}
.w13{width:53.920000pt;}
.w12{width:54.112000pt;}
.w11{width:56.640000pt;}
.w9{width:57.280000pt;}
.wc{width:57.312000pt;}
.wd{width:57.440000pt;}
.wa{width:57.472000pt;}
.wb{width:60.640000pt;}
.w10{width:76.800000pt;}
.w8{width:85.120000pt;}
.w3{width:92.000000pt;}
.w7{width:113.312000pt;}
.w5{width:132.320000pt;}
.w6{width:217.506667pt;}
.w4{width:437.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:1.120000pt;}
.x3f{left:3.360000pt;}
.x28{left:4.520000pt;}
.x38{left:5.600000pt;}
.x26{left:7.200000pt;}
.x45{left:10.080000pt;}
.x23{left:11.680000pt;}
.x44{left:14.560000pt;}
.x43{left:15.840000pt;}
.x41{left:17.600000pt;}
.x2e{left:19.840000pt;}
.x13{left:22.234667pt;}
.x33{left:23.880000pt;}
.x31{left:25.600000pt;}
.x2a{left:27.360000pt;}
.x2d{left:28.360000pt;}
.x32{left:29.280000pt;}
.x25{left:30.880000pt;}
.x2f{left:33.920000pt;}
.x16{left:39.354667pt;}
.x29{left:45.320000pt;}
.x21{left:47.514667pt;}
.x30{left:50.120000pt;}
.x2b{left:56.040000pt;}
.x2c{left:59.520000pt;}
.x1d{left:63.560000pt;}
.x15{left:64.520000pt;}
.x1c{left:65.480000pt;}
.x7{left:74.559988pt;}
.x1{left:75.519988pt;}
.x1e{left:77.439988pt;}
.x1a{left:84.360000pt;}
.x17{left:97.640000pt;}
.x18{left:99.240000pt;}
.x36{left:101.312000pt;}
.x4a{left:102.592000pt;}
.x19{left:110.920000pt;}
.x2{left:113.951988pt;}
.x3{left:117.471988pt;}
.x8{left:122.751988pt;}
.x12{left:132.352000pt;}
.x1b{left:143.080000pt;}
.x48{left:170.266655pt;}
.x4b{left:179.386667pt;}
.x37{left:186.426667pt;}
.x35{left:196.186655pt;}
.x57{left:204.826655pt;}
.xa{left:209.946655pt;}
.x6{left:216.506655pt;}
.x46{left:218.586655pt;}
.x54{left:221.946655pt;}
.x14{left:224.346667pt;}
.x5d{left:227.706655pt;}
.x22{left:231.546667pt;}
.x59{left:232.506655pt;}
.xe{left:234.906655pt;}
.x4c{left:236.026667pt;}
.x5b{left:239.706655pt;}
.x60{left:242.906655pt;}
.x20{left:244.186655pt;}
.xd{left:245.306655pt;}
.x11{left:291.106655pt;}
.x4d{left:293.506667pt;}
.x39{left:301.186667pt;}
.xb{left:311.106655pt;}
.x34{left:317.026655pt;}
.x10{left:325.506655pt;}
.x49{left:326.786655pt;}
.x4{left:346.946655pt;}
.x4e{left:354.146667pt;}
.x3a{left:361.826667pt;}
.x1f{left:384.546655pt;}
.x5{left:397.026655pt;}
.x5f{left:398.146655pt;}
.x4f{left:411.426667pt;}
.x3b{left:419.133333pt;}
.x24{left:449.053333pt;}
.x50{left:465.533333pt;}
.x3c{left:476.573333pt;}
.x51{left:522.813333pt;}
.x3d{left:533.853333pt;}
.x58{left:557.053322pt;}
.x52{left:580.093333pt;}
.x27{left:581.373333pt;}
.x5a{left:585.093322pt;}
.x3e{left:591.173333pt;}
.x56{left:595.013322pt;}
.x53{left:637.573333pt;}
.x40{left:644.133333pt;}
.x5e{left:651.333322pt;}
.xf{left:663.973322pt;}
.x47{left:687.013322pt;}
.x55{left:691.013322pt;}
.xc{left:693.093322pt;}
.x5c{left:695.173322pt;}
.x9{left:706.373322pt;}
}




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