
    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_31710eb9e1a44aa4264e6e7f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_5d5a290332023ad365fc3551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_51f69dd1473fffbb6b6b61e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.917000;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_979a2ee041e0b9a71af243cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721000;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_489f23d944d64a155ab66369.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032000;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_ca17576d74e76b0cf8966a8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010254;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_d9134fc780584256b2f81b44.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001465;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_92fe9ad2258f7d4ce19f9087.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e9d1e5d790804fdae2adb033.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_042e4b9f0b2d889ff151af68.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dbc882f915c55df70a77e1d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;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:ffc;src:url('chunks/assets/font_aca2ee9562a08feb904e9a4f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.917000;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:ffd;src:url('chunks/assets/font_b2deb2e38f9a6e7d8b14fcdf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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:-23.051520px;}
.ws0{word-spacing:-18.984000px;}
.ws5{word-spacing:-16.852320px;}
.ws3{word-spacing:-16.473600px;}
.ws2{word-spacing:-14.700960px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._4{width:1.532160px;}
._0{width:5.587200px;}
._5{width:414.318240px;}
.fc6{color:transparent;}
.fc5{color:rgb(107,104,103);}
.fc4{color:rgb(102,102,102);}
.fc3{color:rgb(91,143,0);}
.fc2{color:rgb(68,68,68);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:59.040000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:67.680000px;}
.fs4{font-size:80.640000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs8{font-size:99.360000px;}
.fs3{font-size:135.360000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:4.680000px;}
.y5e{bottom:7.560000px;}
.yc{bottom:8.040000px;}
.ye9{bottom:8.280000px;}
.ye5{bottom:8.640000px;}
.y21{bottom:10.440000px;}
.y28{bottom:10.800000px;}
.y3f{bottom:12.600000px;}
.y1d{bottom:17.280000px;}
.y1a{bottom:69.510000px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y78{bottom:111.600000px;}
.yf4{bottom:112.680000px;}
.yb8{bottom:113.400000px;}
.y18{bottom:113.670000px;}
.y79{bottom:116.280000px;}
.y92{bottom:125.280000px;}
.y10{bottom:133.935000px;}
.y77{bottom:135.000000px;}
.y17{bottom:135.750000px;}
.yb7{bottom:137.160000px;}
.y91{bottom:149.040000px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.yf6{bottom:157.320000px;}
.y16{bottom:157.830000px;}
.y76{bottom:158.760000px;}
.yb6{bottom:160.920000px;}
.y35{bottom:163.440000px;}
.y90{bottom:172.800000px;}
.yf5{bottom:179.640000px;}
.yc6{bottom:182.520000px;}
.yb5{bottom:184.320000px;}
.y34{bottom:186.840000px;}
.y5b{bottom:189.720000px;}
.y5c{bottom:194.400000px;}
.y8f{bottom:196.200000px;}
.y75{bottom:205.920000px;}
.yc5{bottom:206.280000px;}
.yb4{bottom:208.080000px;}
.yf3{bottom:208.440000px;}
.y33{bottom:210.600000px;}
.y5a{bottom:213.480000px;}
.y8e{bottom:219.960000px;}
.y74{bottom:229.680000px;}
.yb3{bottom:231.480000px;}
.y32{bottom:234.360000px;}
.y59{bottom:236.880000px;}
.y8d{bottom:243.720000px;}
.yf2{bottom:251.280000px;}
.y73{bottom:253.080000px;}
.yc4{bottom:253.440000px;}
.yd0{bottom:255.240000px;}
.y58{bottom:260.640000px;}
.y72{bottom:276.840000px;}
.yb2{bottom:279.000000px;}
.y31{bottom:281.520000px;}
.y57{bottom:284.400000px;}
.y8b{bottom:290.880000px;}
.y8c{bottom:295.560000px;}
.yc3{bottom:300.600000px;}
.yb1{bottom:302.400000px;}
.y30{bottom:305.280000px;}
.yf1{bottom:307.080000px;}
.y56{bottom:307.800000px;}
.y89{bottom:314.280000px;}
.y8a{bottom:318.960000px;}
.y71{bottom:324.000000px;}
.yc2{bottom:324.360000px;}
.yb0{bottom:326.160000px;}
.y2e{bottom:328.680000px;}
.y55{bottom:331.560000px;}
.y88{bottom:338.040000px;}
.ya{bottom:344.680500px;}
.y70{bottom:347.760000px;}
.yaf{bottom:349.920000px;}
.y54{bottom:355.320000px;}
.y87{bottom:361.800000px;}
.y6f{bottom:371.160000px;}
.yc1{bottom:371.520000px;}
.yae{bottom:373.320000px;}
.yd{bottom:386.490000px;}
.y2d{bottom:392.040000px;}
.y6e{bottom:394.920000px;}
.yc0{bottom:395.280000px;}
.y9{bottom:395.689500px;}
.yad{bottom:397.080000px;}
.y53{bottom:402.480000px;}
.y86{bottom:408.960000px;}
.y2c{bottom:411.120000px;}
.yf0{bottom:416.160000px;}
.y6d{bottom:418.680000px;}
.ycf{bottom:420.480000px;}
.y52{bottom:425.880000px;}
.y2b{bottom:430.200000px;}
.y85{bottom:432.720000px;}
.yb{bottom:434.850000px;}
.yef{bottom:437.760000px;}
.ybf{bottom:442.440000px;}
.yac{bottom:444.240000px;}
.y8{bottom:446.698500px;}
.y2a{bottom:449.280000px;}
.y51{bottom:449.640000px;}
.y84{bottom:456.120000px;}
.yee{bottom:459.000000px;}
.y6c{bottom:465.840000px;}
.yab{bottom:468.000000px;}
.y7c{bottom:470.520000px;}
.y50{bottom:473.400000px;}
.y83{bottom:479.880000px;}
.yed{bottom:480.600000px;}
.y11{bottom:488.055000px;}
.y6b{bottom:489.600000px;}
.yaa{bottom:491.400000px;}
.yce{bottom:496.080000px;}
.y4f{bottom:496.800000px;}
.y7{bottom:497.707500px;}
.yec{bottom:501.840000px;}
.y82{bottom:503.280000px;}
.y6a{bottom:513.000000px;}
.ybe{bottom:513.360000px;}
.ya9{bottom:515.160000px;}
.y4e{bottom:520.560000px;}
.yeb{bottom:523.080000px;}
.y81{bottom:527.040000px;}
.y69{bottom:536.760000px;}
.y12{bottom:538.230000px;}
.ya8{bottom:538.920000px;}
.y6{bottom:548.716500px;}
.y80{bottom:550.800000px;}
.y68{bottom:560.160000px;}
.ybd{bottom:560.520000px;}
.ya7{bottom:562.320000px;}
.yea{bottom:566.280000px;}
.y4d{bottom:567.720000px;}
.y67{bottom:583.920000px;}
.ybc{bottom:584.280000px;}
.ya6{bottom:586.080000px;}
.y1b{bottom:589.605000px;}
.y4c{bottom:591.480000px;}
.y5{bottom:599.725500px;}
.y66{bottom:607.680000px;}
.ya5{bottom:609.480000px;}
.y4b{bottom:614.880000px;}
.yde{bottom:616.680000px;}
.ye8{bottom:622.080000px;}
.y65{bottom:631.080000px;}
.ye{bottom:631.920000px;}
.ya4{bottom:633.240000px;}
.y4a{bottom:638.640000px;}
.ybb{bottom:640.800000px;}
.ya3{bottom:657.000000px;}
.y95{bottom:660.600000px;}
.y49{bottom:662.400000px;}
.ye7{bottom:665.280000px;}
.y7f{bottom:668.160000px;}
.y64{bottom:678.600000px;}
.y94{bottom:679.680000px;}
.ycd{bottom:680.400000px;}
.y48{bottom:685.800000px;}
.y7e{bottom:687.240000px;}
.y7d{bottom:699.840000px;}
.y63{bottom:702.000000px;}
.ya2{bottom:704.160000px;}
.y93{bottom:707.400000px;}
.ye6{bottom:708.840000px;}
.ydd{bottom:709.560000px;}
.yc8{bottom:717.480000px;}
.yba{bottom:725.040000px;}
.y62{bottom:725.760000px;}
.ya1{bottom:727.920000px;}
.y47{bottom:733.320000px;}
.yb9{bottom:736.560000px;}
.ydc{bottom:738.000000px;}
.yc7{bottom:744.120000px;}
.y61{bottom:749.160000px;}
.ya0{bottom:751.320000px;}
.ycc{bottom:756.000000px;}
.y46{bottom:756.720000px;}
.ye2{bottom:761.400000px;}
.y9f{bottom:775.080000px;}
.y4{bottom:778.225500px;}
.y27{bottom:780.480000px;}
.y60{bottom:782.640000px;}
.ye1{bottom:785.160000px;}
.y29{bottom:791.280000px;}
.ycb{bottom:798.480000px;}
.yd1{bottom:803.160000px;}
.y45{bottom:803.880000px;}
.ydb{bottom:808.560000px;}
.y26{bottom:815.400000px;}
.y13{bottom:815.670000px;}
.y9e{bottom:822.240000px;}
.y25{bottom:843.840000px;}
.y9d{bottom:846.000000px;}
.y44{bottom:851.400000px;}
.yda{bottom:856.080000px;}
.y7b{bottom:859.320000px;}
.y5f{bottom:866.880000px;}
.y9c{bottom:869.400000px;}
.y24{bottom:872.280000px;}
.y43{bottom:874.800000px;}
.y5d{bottom:878.400000px;}
.y7a{bottom:885.960000px;}
.y9b{bottom:893.160000px;}
.y42{bottom:898.560000px;}
.y23{bottom:900.720000px;}
.yd9{bottom:903.240000px;}
.y3{bottom:905.716500px;}
.yca{bottom:916.920000px;}
.y41{bottom:922.320000px;}
.y20{bottom:928.800000px;}
.y22{bottom:939.240000px;}
.y9a{bottom:940.320000px;}
.y40{bottom:945.720000px;}
.yd8{bottom:950.400000px;}
.y99{bottom:964.080000px;}
.y2{bottom:964.228500px;}
.ye0{bottom:969.480000px;}
.yd7{bottom:974.160000px;}
.y3e{bottom:978.840000px;}
.y1f{bottom:979.920000px;}
.y98{bottom:987.480000px;}
.y1{bottom:989.716500px;}
.yc9{bottom:992.160000px;}
.yfc{bottom:1006.200000px;}
.y97{bottom:1011.240000px;}
.yd6{bottom:1016.640000px;}
.y1e{bottom:1020.600000px;}
.yf8{bottom:1034.640000px;}
.y96{bottom:1035.000000px;}
.yd4{bottom:1040.400000px;}
.ye4{bottom:1043.640000px;}
.yd5{bottom:1045.080000px;}
.y3c{bottom:1058.400000px;}
.y1c{bottom:1060.920000px;}
.ye3{bottom:1061.640000px;}
.y3d{bottom:1063.080000px;}
.ydf{bottom:1063.800000px;}
.yd3{bottom:1068.480000px;}
.yfb{bottom:1079.280000px;}
.y3a{bottom:1082.160000px;}
.y3b{bottom:1086.840000px;}
.yd2{bottom:1096.920000px;}
.y39{bottom:1105.920000px;}
.yf7{bottom:1108.080000px;}
.y38{bottom:1129.320000px;}
.yfa{bottom:1152.360000px;}
.y37{bottom:1153.080000px;}
.yf9{bottom:1175.040000px;}
.y36{bottom:1176.480000px;}
.h12{height:21.600000px;}
.h17{height:23.040000px;}
.h1f{height:23.760000px;}
.h1c{height:24.840000px;}
.h1a{height:26.280000px;}
.hc{height:31.320000px;}
.hf{height:32.400000px;}
.h4{height:33.000000px;}
.h15{height:38.520000px;}
.h18{height:42.390720px;}
.h1d{height:45.492480px;}
.h11{height:47.586240px;}
.h14{height:48.231563px;}
.h1b{height:48.594240px;}
.h1e{height:48.729600px;}
.h13{height:48.788438px;}
.ha{height:52.560000px;}
.hd{height:57.657600px;}
.h3{height:58.406250px;}
.he{height:64.995840px;}
.h2{height:66.750000px;}
.h10{height:67.317120px;}
.h5{height:67.740234px;}
.h19{height:71.340480px;}
.h16{height:71.539200px;}
.hb{height:97.459200px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb0{width:15.120000px;}
.wb3{width:18.360000px;}
.w1f{width:37.080000px;}
.w69{width:46.080000px;}
.w34{width:50.760000px;}
.we{width:59.040000px;}
.w29{width:68.040000px;}
.wc5{width:69.120000px;}
.w94{width:76.680000px;}
.wb9{width:78.480000px;}
.wc3{width:83.160000px;}
.wae{width:86.400000px;}
.w66{width:90.000000px;}
.w4a{width:92.160000px;}
.wbb{width:95.400000px;}
.wc6{width:108.000000px;}
.wad{width:116.640000px;}
.w6a{width:118.440000px;}
.wc2{width:124.200000px;}
.wc1{width:133.920000px;}
.w4e{width:136.080000px;}
.w5a{width:140.400000px;}
.w95{width:149.040000px;}
.wc8{width:149.400000px;}
.wab{width:152.640000px;}
.wac{width:161.640000px;}
.wa6{width:165.240000px;}
.w1a{width:166.680000px;}
.w55{width:167.400000px;}
.wb6{width:176.760000px;}
.w13{width:178.200000px;}
.wba{width:183.960000px;}
.w8f{width:201.240000px;}
.wb8{width:233.280000px;}
.w3d{width:239.400000px;}
.w81{width:240.840000px;}
.wa0{width:251.640000px;}
.w8b{width:259.200000px;}
.wb4{width:263.160000px;}
.w3e{width:270.360000px;}
.w97{width:276.480000px;}
.w5b{width:295.560000px;}
.w8a{width:296.640000px;}
.w8{width:301.170000px;}
.wbf{width:301.320000px;}
.w98{width:307.440000px;}
.wd{width:327.960000px;}
.w6c{width:343.800000px;}
.wca{width:345.600000px;}
.w9c{width:354.960000px;}
.w6{width:366.465000px;}
.w74{width:373.680000px;}
.w12{width:375.480000px;}
.w86{width:376.200000px;}
.wb7{width:378.000000px;}
.wa2{width:379.440000px;}
.w20{width:380.160000px;}
.wc0{width:386.640000px;}
.wb2{width:395.640000px;}
.w42{width:406.080000px;}
.w62{width:414.000000px;}
.w25{width:425.520000px;}
.w3c{width:433.080000px;}
.w9b{width:437.040000px;}
.w65{width:451.440000px;}
.wc9{width:461.880000px;}
.w2f{width:488.880000px;}
.w52{width:493.200000px;}
.w2{width:494.625000px;}
.w54{width:517.680000px;}
.wb1{width:529.200000px;}
.wb{width:531.000000px;}
.w8c{width:531.720000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w77{width:597.240000px;}
.w4{width:597.405000px;}
.wc{width:597.960000px;}
.w96{width:607.680000px;}
.wa3{width:617.760000px;}
.wa9{width:629.640000px;}
.w85{width:634.320000px;}
.w2c{width:639.000000px;}
.w27{width:640.440000px;}
.w56{width:641.160000px;}
.wa5{width:642.960000px;}
.w4c{width:644.040000px;}
.w8e{width:644.760000px;}
.w68{width:646.200000px;}
.w63{width:646.560000px;}
.w16{width:646.920000px;}
.w7f{width:648.000000px;}
.w51{width:651.600000px;}
.w7{width:651.810000px;}
.w28{width:652.680000px;}
.w38{width:653.040000px;}
.w67{width:653.400000px;}
.w1b{width:653.760000px;}
.w79{width:654.840000px;}
.w30{width:655.560000px;}
.w9d{width:660.600000px;}
.w84{width:660.960000px;}
.w64{width:661.320000px;}
.w36{width:662.760000px;}
.wc4{width:663.480000px;}
.w40{width:664.560000px;}
.w1d{width:665.280000px;}
.w21{width:666.360000px;}
.w9a{width:667.440000px;}
.w22{width:668.520000px;}
.w11{width:669.960000px;}
.w60{width:670.320000px;}
.w39{width:672.120000px;}
.w9e{width:672.480000px;}
.w23{width:672.840000px;}
.w73{width:673.560000px;}
.w71{width:674.280000px;}
.w58{width:674.640000px;}
.w6e{width:675.000000px;}
.w87{width:675.720000px;}
.w33{width:676.800000px;}
.wa7{width:677.880000px;}
.w10{width:678.240000px;}
.w59{width:678.960000px;}
.w7a{width:679.320000px;}
.w5c{width:679.680000px;}
.w2d{width:680.040000px;}
.wc7{width:680.400000px;}
.w41{width:681.120000px;}
.wbe{width:681.840000px;}
.w50{width:682.200000px;}
.waf{width:682.560000px;}
.w70{width:683.640000px;}
.w5e{width:684.000000px;}
.w92{width:684.360000px;}
.w46{width:684.720000px;}
.w31{width:685.800000px;}
.w3b{width:686.160000px;}
.wa1{width:686.520000px;}
.w24{width:687.600000px;}
.w7b{width:687.960000px;}
.wbd{width:689.760000px;}
.w45{width:690.480000px;}
.w83{width:691.200000px;}
.w6d{width:691.560000px;}
.w61{width:692.640000px;}
.w80{width:693.000000px;}
.w17{width:693.720000px;}
.w32{width:694.080000px;}
.w4f{width:694.800000px;}
.w6f{width:695.160000px;}
.w82{width:695.520000px;}
.w2b{width:695.880000px;}
.w91{width:696.600000px;}
.w43{width:696.960000px;}
.w9f{width:697.320000px;}
.w14{width:698.040000px;}
.w4d{width:698.760000px;}
.wb5{width:699.480000px;}
.w7d{width:700.200000px;}
.w78{width:700.560000px;}
.w1e{width:701.280000px;}
.wbc{width:702.000000px;}
.w5d{width:702.360000px;}
.w49{width:702.720000px;}
.w6b{width:703.080000px;}
.w88{width:704.520000px;}
.w7e{width:705.240000px;}
.w5f{width:705.600000px;}
.w93{width:705.960000px;}
.wa4{width:706.320000px;}
.w4b{width:706.680000px;}
.wa8{width:707.760000px;}
.w89{width:708.480000px;}
.w8d{width:709.200000px;}
.w48{width:709.920000px;}
.w1c{width:710.280000px;}
.w15{width:710.640000px;}
.waa{width:711.000000px;}
.w19{width:712.440000px;}
.w3a{width:712.800000px;}
.w7c{width:713.160000px;}
.w3f{width:713.520000px;}
.wf{width:714.960000px;}
.w2e{width:715.320000px;}
.w47{width:715.680000px;}
.w26{width:716.040000px;}
.w37{width:716.400000px;}
.w99{width:716.760000px;}
.w90{width:717.840000px;}
.w76{width:718.200000px;}
.w75{width:718.560000px;}
.w44{width:718.920000px;}
.w53{width:719.280000px;}
.w72{width:719.640000px;}
.w57{width:720.000000px;}
.w18{width:720.360000px;}
.w2a{width:720.720000px;}
.w35{width:721.080000px;}
.wa{width:892.500000px;}
.w9{width:892.800000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:85.320000px;}
.xd{left:96.120000px;}
.x26{left:104.040000px;}
.x23{left:105.120000px;}
.x10{left:122.760000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x16{left:131.400000px;}
.xb{left:156.960000px;}
.x29{left:172.080000px;}
.x5{left:174.105000px;}
.x19{left:175.680000px;}
.x15{left:178.560000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x17{left:204.840000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x1a{left:226.440000px;}
.x1d{left:235.440000px;}
.x24{left:250.560000px;}
.x12{left:253.800000px;}
.xc{left:268.560000px;}
.xe{left:294.480000px;}
.x14{left:327.960000px;}
.x1e{left:347.760000px;}
.x2b{left:348.840000px;}
.x1f{left:365.760000px;}
.x1b{left:384.120000px;}
.x1c{left:431.280000px;}
.x28{left:435.240000px;}
.x20{left:440.640000px;}
.x21{left:468.360000px;}
.x11{left:519.120000px;}
.x22{left:523.080000px;}
.x18{left:540.360000px;}
.x13{left:606.600000px;}
.x2a{left:618.120000px;}
.x2c{left:625.680000px;}
.xf{left:687.240000px;}
.x25{left:777.240000px;}
.x27{left:788.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-20.490240pt;}
.ws0{word-spacing:-16.874667pt;}
.ws5{word-spacing:-14.979840pt;}
.ws3{word-spacing:-14.643200pt;}
.ws2{word-spacing:-13.067520pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.361920pt;}
._0{width:4.966400pt;}
._5{width:368.282880pt;}
.fs6{font-size:52.480000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:60.160000pt;}
.fs4{font-size:71.680000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs8{font-size:88.320000pt;}
.fs3{font-size:120.320000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:4.160000pt;}
.y5e{bottom:6.720000pt;}
.yc{bottom:7.146667pt;}
.ye9{bottom:7.360000pt;}
.ye5{bottom:7.680000pt;}
.y21{bottom:9.280000pt;}
.y28{bottom:9.600000pt;}
.y3f{bottom:11.200000pt;}
.y1d{bottom:15.360000pt;}
.y1a{bottom:61.786667pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y78{bottom:99.200000pt;}
.yf4{bottom:100.160000pt;}
.yb8{bottom:100.800000pt;}
.y18{bottom:101.040000pt;}
.y79{bottom:103.360000pt;}
.y92{bottom:111.360000pt;}
.y10{bottom:119.053333pt;}
.y77{bottom:120.000000pt;}
.y17{bottom:120.666667pt;}
.yb7{bottom:121.920000pt;}
.y91{bottom:132.480000pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.yf6{bottom:139.840000pt;}
.y16{bottom:140.293333pt;}
.y76{bottom:141.120000pt;}
.yb6{bottom:143.040000pt;}
.y35{bottom:145.280000pt;}
.y90{bottom:153.600000pt;}
.yf5{bottom:159.680000pt;}
.yc6{bottom:162.240000pt;}
.yb5{bottom:163.840000pt;}
.y34{bottom:166.080000pt;}
.y5b{bottom:168.640000pt;}
.y5c{bottom:172.800000pt;}
.y8f{bottom:174.400000pt;}
.y75{bottom:183.040000pt;}
.yc5{bottom:183.360000pt;}
.yb4{bottom:184.960000pt;}
.yf3{bottom:185.280000pt;}
.y33{bottom:187.200000pt;}
.y5a{bottom:189.760000pt;}
.y8e{bottom:195.520000pt;}
.y74{bottom:204.160000pt;}
.yb3{bottom:205.760000pt;}
.y32{bottom:208.320000pt;}
.y59{bottom:210.560000pt;}
.y8d{bottom:216.640000pt;}
.yf2{bottom:223.360000pt;}
.y73{bottom:224.960000pt;}
.yc4{bottom:225.280000pt;}
.yd0{bottom:226.880000pt;}
.y58{bottom:231.680000pt;}
.y72{bottom:246.080000pt;}
.yb2{bottom:248.000000pt;}
.y31{bottom:250.240000pt;}
.y57{bottom:252.800000pt;}
.y8b{bottom:258.560000pt;}
.y8c{bottom:262.720000pt;}
.yc3{bottom:267.200000pt;}
.yb1{bottom:268.800000pt;}
.y30{bottom:271.360000pt;}
.yf1{bottom:272.960000pt;}
.y56{bottom:273.600000pt;}
.y89{bottom:279.360000pt;}
.y8a{bottom:283.520000pt;}
.y71{bottom:288.000000pt;}
.yc2{bottom:288.320000pt;}
.yb0{bottom:289.920000pt;}
.y2e{bottom:292.160000pt;}
.y55{bottom:294.720000pt;}
.y88{bottom:300.480000pt;}
.ya{bottom:306.382667pt;}
.y70{bottom:309.120000pt;}
.yaf{bottom:311.040000pt;}
.y54{bottom:315.840000pt;}
.y87{bottom:321.600000pt;}
.y6f{bottom:329.920000pt;}
.yc1{bottom:330.240000pt;}
.yae{bottom:331.840000pt;}
.yd{bottom:343.546667pt;}
.y2d{bottom:348.480000pt;}
.y6e{bottom:351.040000pt;}
.yc0{bottom:351.360000pt;}
.y9{bottom:351.724000pt;}
.yad{bottom:352.960000pt;}
.y53{bottom:357.760000pt;}
.y86{bottom:363.520000pt;}
.y2c{bottom:365.440000pt;}
.yf0{bottom:369.920000pt;}
.y6d{bottom:372.160000pt;}
.ycf{bottom:373.760000pt;}
.y52{bottom:378.560000pt;}
.y2b{bottom:382.400000pt;}
.y85{bottom:384.640000pt;}
.yb{bottom:386.533333pt;}
.yef{bottom:389.120000pt;}
.ybf{bottom:393.280000pt;}
.yac{bottom:394.880000pt;}
.y8{bottom:397.065333pt;}
.y2a{bottom:399.360000pt;}
.y51{bottom:399.680000pt;}
.y84{bottom:405.440000pt;}
.yee{bottom:408.000000pt;}
.y6c{bottom:414.080000pt;}
.yab{bottom:416.000000pt;}
.y7c{bottom:418.240000pt;}
.y50{bottom:420.800000pt;}
.y83{bottom:426.560000pt;}
.yed{bottom:427.200000pt;}
.y11{bottom:433.826667pt;}
.y6b{bottom:435.200000pt;}
.yaa{bottom:436.800000pt;}
.yce{bottom:440.960000pt;}
.y4f{bottom:441.600000pt;}
.y7{bottom:442.406667pt;}
.yec{bottom:446.080000pt;}
.y82{bottom:447.360000pt;}
.y6a{bottom:456.000000pt;}
.ybe{bottom:456.320000pt;}
.ya9{bottom:457.920000pt;}
.y4e{bottom:462.720000pt;}
.yeb{bottom:464.960000pt;}
.y81{bottom:468.480000pt;}
.y69{bottom:477.120000pt;}
.y12{bottom:478.426667pt;}
.ya8{bottom:479.040000pt;}
.y6{bottom:487.748000pt;}
.y80{bottom:489.600000pt;}
.y68{bottom:497.920000pt;}
.ybd{bottom:498.240000pt;}
.ya7{bottom:499.840000pt;}
.yea{bottom:503.360000pt;}
.y4d{bottom:504.640000pt;}
.y67{bottom:519.040000pt;}
.ybc{bottom:519.360000pt;}
.ya6{bottom:520.960000pt;}
.y1b{bottom:524.093333pt;}
.y4c{bottom:525.760000pt;}
.y5{bottom:533.089333pt;}
.y66{bottom:540.160000pt;}
.ya5{bottom:541.760000pt;}
.y4b{bottom:546.560000pt;}
.yde{bottom:548.160000pt;}
.ye8{bottom:552.960000pt;}
.y65{bottom:560.960000pt;}
.ye{bottom:561.706667pt;}
.ya4{bottom:562.880000pt;}
.y4a{bottom:567.680000pt;}
.ybb{bottom:569.600000pt;}
.ya3{bottom:584.000000pt;}
.y95{bottom:587.200000pt;}
.y49{bottom:588.800000pt;}
.ye7{bottom:591.360000pt;}
.y7f{bottom:593.920000pt;}
.y64{bottom:603.200000pt;}
.y94{bottom:604.160000pt;}
.ycd{bottom:604.800000pt;}
.y48{bottom:609.600000pt;}
.y7e{bottom:610.880000pt;}
.y7d{bottom:622.080000pt;}
.y63{bottom:624.000000pt;}
.ya2{bottom:625.920000pt;}
.y93{bottom:628.800000pt;}
.ye6{bottom:630.080000pt;}
.ydd{bottom:630.720000pt;}
.yc8{bottom:637.760000pt;}
.yba{bottom:644.480000pt;}
.y62{bottom:645.120000pt;}
.ya1{bottom:647.040000pt;}
.y47{bottom:651.840000pt;}
.yb9{bottom:654.720000pt;}
.ydc{bottom:656.000000pt;}
.yc7{bottom:661.440000pt;}
.y61{bottom:665.920000pt;}
.ya0{bottom:667.840000pt;}
.ycc{bottom:672.000000pt;}
.y46{bottom:672.640000pt;}
.ye2{bottom:676.800000pt;}
.y9f{bottom:688.960000pt;}
.y4{bottom:691.756000pt;}
.y27{bottom:693.760000pt;}
.y60{bottom:695.680000pt;}
.ye1{bottom:697.920000pt;}
.y29{bottom:703.360000pt;}
.ycb{bottom:709.760000pt;}
.yd1{bottom:713.920000pt;}
.y45{bottom:714.560000pt;}
.ydb{bottom:718.720000pt;}
.y26{bottom:724.800000pt;}
.y13{bottom:725.040000pt;}
.y9e{bottom:730.880000pt;}
.y25{bottom:750.080000pt;}
.y9d{bottom:752.000000pt;}
.y44{bottom:756.800000pt;}
.yda{bottom:760.960000pt;}
.y7b{bottom:763.840000pt;}
.y5f{bottom:770.560000pt;}
.y9c{bottom:772.800000pt;}
.y24{bottom:775.360000pt;}
.y43{bottom:777.600000pt;}
.y5d{bottom:780.800000pt;}
.y7a{bottom:787.520000pt;}
.y9b{bottom:793.920000pt;}
.y42{bottom:798.720000pt;}
.y23{bottom:800.640000pt;}
.yd9{bottom:802.880000pt;}
.y3{bottom:805.081333pt;}
.yca{bottom:815.040000pt;}
.y41{bottom:819.840000pt;}
.y20{bottom:825.600000pt;}
.y22{bottom:834.880000pt;}
.y9a{bottom:835.840000pt;}
.y40{bottom:840.640000pt;}
.yd8{bottom:844.800000pt;}
.y99{bottom:856.960000pt;}
.y2{bottom:857.092000pt;}
.ye0{bottom:861.760000pt;}
.yd7{bottom:865.920000pt;}
.y3e{bottom:870.080000pt;}
.y1f{bottom:871.040000pt;}
.y98{bottom:877.760000pt;}
.y1{bottom:879.748000pt;}
.yc9{bottom:881.920000pt;}
.yfc{bottom:894.400000pt;}
.y97{bottom:898.880000pt;}
.yd6{bottom:903.680000pt;}
.y1e{bottom:907.200000pt;}
.yf8{bottom:919.680000pt;}
.y96{bottom:920.000000pt;}
.yd4{bottom:924.800000pt;}
.ye4{bottom:927.680000pt;}
.yd5{bottom:928.960000pt;}
.y3c{bottom:940.800000pt;}
.y1c{bottom:943.040000pt;}
.ye3{bottom:943.680000pt;}
.y3d{bottom:944.960000pt;}
.ydf{bottom:945.600000pt;}
.yd3{bottom:949.760000pt;}
.yfb{bottom:959.360000pt;}
.y3a{bottom:961.920000pt;}
.y3b{bottom:966.080000pt;}
.yd2{bottom:975.040000pt;}
.y39{bottom:983.040000pt;}
.yf7{bottom:984.960000pt;}
.y38{bottom:1003.840000pt;}
.yfa{bottom:1024.320000pt;}
.y37{bottom:1024.960000pt;}
.yf9{bottom:1044.480000pt;}
.y36{bottom:1045.760000pt;}
.h12{height:19.200000pt;}
.h17{height:20.480000pt;}
.h1f{height:21.120000pt;}
.h1c{height:22.080000pt;}
.h1a{height:23.360000pt;}
.hc{height:27.840000pt;}
.hf{height:28.800000pt;}
.h4{height:29.333333pt;}
.h15{height:34.240000pt;}
.h18{height:37.680640pt;}
.h1d{height:40.437760pt;}
.h11{height:42.298880pt;}
.h14{height:42.872500pt;}
.h1b{height:43.194880pt;}
.h1e{height:43.315200pt;}
.h13{height:43.367500pt;}
.ha{height:46.720000pt;}
.hd{height:51.251200pt;}
.h3{height:51.916667pt;}
.he{height:57.774080pt;}
.h2{height:59.333333pt;}
.h10{height:59.837440pt;}
.h5{height:60.213542pt;}
.h19{height:63.413760pt;}
.h16{height:63.590400pt;}
.hb{height:86.630400pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb0{width:13.440000pt;}
.wb3{width:16.320000pt;}
.w1f{width:32.960000pt;}
.w69{width:40.960000pt;}
.w34{width:45.120000pt;}
.we{width:52.480000pt;}
.w29{width:60.480000pt;}
.wc5{width:61.440000pt;}
.w94{width:68.160000pt;}
.wb9{width:69.760000pt;}
.wc3{width:73.920000pt;}
.wae{width:76.800000pt;}
.w66{width:80.000000pt;}
.w4a{width:81.920000pt;}
.wbb{width:84.800000pt;}
.wc6{width:96.000000pt;}
.wad{width:103.680000pt;}
.w6a{width:105.280000pt;}
.wc2{width:110.400000pt;}
.wc1{width:119.040000pt;}
.w4e{width:120.960000pt;}
.w5a{width:124.800000pt;}
.w95{width:132.480000pt;}
.wc8{width:132.800000pt;}
.wab{width:135.680000pt;}
.wac{width:143.680000pt;}
.wa6{width:146.880000pt;}
.w1a{width:148.160000pt;}
.w55{width:148.800000pt;}
.wb6{width:157.120000pt;}
.w13{width:158.400000pt;}
.wba{width:163.520000pt;}
.w8f{width:178.880000pt;}
.wb8{width:207.360000pt;}
.w3d{width:212.800000pt;}
.w81{width:214.080000pt;}
.wa0{width:223.680000pt;}
.w8b{width:230.400000pt;}
.wb4{width:233.920000pt;}
.w3e{width:240.320000pt;}
.w97{width:245.760000pt;}
.w5b{width:262.720000pt;}
.w8a{width:263.680000pt;}
.w8{width:267.706667pt;}
.wbf{width:267.840000pt;}
.w98{width:273.280000pt;}
.wd{width:291.520000pt;}
.w6c{width:305.600000pt;}
.wca{width:307.200000pt;}
.w9c{width:315.520000pt;}
.w6{width:325.746667pt;}
.w74{width:332.160000pt;}
.w12{width:333.760000pt;}
.w86{width:334.400000pt;}
.wb7{width:336.000000pt;}
.wa2{width:337.280000pt;}
.w20{width:337.920000pt;}
.wc0{width:343.680000pt;}
.wb2{width:351.680000pt;}
.w42{width:360.960000pt;}
.w62{width:368.000000pt;}
.w25{width:378.240000pt;}
.w3c{width:384.960000pt;}
.w9b{width:388.480000pt;}
.w65{width:401.280000pt;}
.wc9{width:410.560000pt;}
.w2f{width:434.560000pt;}
.w52{width:438.400000pt;}
.w2{width:439.666667pt;}
.w54{width:460.160000pt;}
.wb1{width:470.400000pt;}
.wb{width:472.000000pt;}
.w8c{width:472.640000pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w77{width:530.880000pt;}
.w4{width:531.026667pt;}
.wc{width:531.520000pt;}
.w96{width:540.160000pt;}
.wa3{width:549.120000pt;}
.wa9{width:559.680000pt;}
.w85{width:563.840000pt;}
.w2c{width:568.000000pt;}
.w27{width:569.280000pt;}
.w56{width:569.920000pt;}
.wa5{width:571.520000pt;}
.w4c{width:572.480000pt;}
.w8e{width:573.120000pt;}
.w68{width:574.400000pt;}
.w63{width:574.720000pt;}
.w16{width:575.040000pt;}
.w7f{width:576.000000pt;}
.w51{width:579.200000pt;}
.w7{width:579.386667pt;}
.w28{width:580.160000pt;}
.w38{width:580.480000pt;}
.w67{width:580.800000pt;}
.w1b{width:581.120000pt;}
.w79{width:582.080000pt;}
.w30{width:582.720000pt;}
.w9d{width:587.200000pt;}
.w84{width:587.520000pt;}
.w64{width:587.840000pt;}
.w36{width:589.120000pt;}
.wc4{width:589.760000pt;}
.w40{width:590.720000pt;}
.w1d{width:591.360000pt;}
.w21{width:592.320000pt;}
.w9a{width:593.280000pt;}
.w22{width:594.240000pt;}
.w11{width:595.520000pt;}
.w60{width:595.840000pt;}
.w39{width:597.440000pt;}
.w9e{width:597.760000pt;}
.w23{width:598.080000pt;}
.w73{width:598.720000pt;}
.w71{width:599.360000pt;}
.w58{width:599.680000pt;}
.w6e{width:600.000000pt;}
.w87{width:600.640000pt;}
.w33{width:601.600000pt;}
.wa7{width:602.560000pt;}
.w10{width:602.880000pt;}
.w59{width:603.520000pt;}
.w7a{width:603.840000pt;}
.w5c{width:604.160000pt;}
.w2d{width:604.480000pt;}
.wc7{width:604.800000pt;}
.w41{width:605.440000pt;}
.wbe{width:606.080000pt;}
.w50{width:606.400000pt;}
.waf{width:606.720000pt;}
.w70{width:607.680000pt;}
.w5e{width:608.000000pt;}
.w92{width:608.320000pt;}
.w46{width:608.640000pt;}
.w31{width:609.600000pt;}
.w3b{width:609.920000pt;}
.wa1{width:610.240000pt;}
.w24{width:611.200000pt;}
.w7b{width:611.520000pt;}
.wbd{width:613.120000pt;}
.w45{width:613.760000pt;}
.w83{width:614.400000pt;}
.w6d{width:614.720000pt;}
.w61{width:615.680000pt;}
.w80{width:616.000000pt;}
.w17{width:616.640000pt;}
.w32{width:616.960000pt;}
.w4f{width:617.600000pt;}
.w6f{width:617.920000pt;}
.w82{width:618.240000pt;}
.w2b{width:618.560000pt;}
.w91{width:619.200000pt;}
.w43{width:619.520000pt;}
.w9f{width:619.840000pt;}
.w14{width:620.480000pt;}
.w4d{width:621.120000pt;}
.wb5{width:621.760000pt;}
.w7d{width:622.400000pt;}
.w78{width:622.720000pt;}
.w1e{width:623.360000pt;}
.wbc{width:624.000000pt;}
.w5d{width:624.320000pt;}
.w49{width:624.640000pt;}
.w6b{width:624.960000pt;}
.w88{width:626.240000pt;}
.w7e{width:626.880000pt;}
.w5f{width:627.200000pt;}
.w93{width:627.520000pt;}
.wa4{width:627.840000pt;}
.w4b{width:628.160000pt;}
.wa8{width:629.120000pt;}
.w89{width:629.760000pt;}
.w8d{width:630.400000pt;}
.w48{width:631.040000pt;}
.w1c{width:631.360000pt;}
.w15{width:631.680000pt;}
.waa{width:632.000000pt;}
.w19{width:633.280000pt;}
.w3a{width:633.600000pt;}
.w7c{width:633.920000pt;}
.w3f{width:634.240000pt;}
.wf{width:635.520000pt;}
.w2e{width:635.840000pt;}
.w47{width:636.160000pt;}
.w26{width:636.480000pt;}
.w37{width:636.800000pt;}
.w99{width:637.120000pt;}
.w90{width:638.080000pt;}
.w76{width:638.400000pt;}
.w75{width:638.720000pt;}
.w44{width:639.040000pt;}
.w53{width:639.360000pt;}
.w72{width:639.680000pt;}
.w57{width:640.000000pt;}
.w18{width:640.320000pt;}
.w2a{width:640.640000pt;}
.w35{width:640.960000pt;}
.wa{width:793.333333pt;}
.w9{width:793.600000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:75.840000pt;}
.xd{left:85.440000pt;}
.x26{left:92.480000pt;}
.x23{left:93.440000pt;}
.x10{left:109.120000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x16{left:116.800000pt;}
.xb{left:139.520000pt;}
.x29{left:152.960000pt;}
.x5{left:154.760000pt;}
.x19{left:156.160000pt;}
.x15{left:158.720000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x17{left:182.080000pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x1a{left:201.280000pt;}
.x1d{left:209.280000pt;}
.x24{left:222.720000pt;}
.x12{left:225.600000pt;}
.xc{left:238.720000pt;}
.xe{left:261.760000pt;}
.x14{left:291.520000pt;}
.x1e{left:309.120000pt;}
.x2b{left:310.080000pt;}
.x1f{left:325.120000pt;}
.x1b{left:341.440000pt;}
.x1c{left:383.360000pt;}
.x28{left:386.880000pt;}
.x20{left:391.680000pt;}
.x21{left:416.320000pt;}
.x11{left:461.440000pt;}
.x22{left:464.960000pt;}
.x18{left:480.320000pt;}
.x13{left:539.200000pt;}
.x2a{left:549.440000pt;}
.x2c{left:556.160000pt;}
.xf{left:610.880000pt;}
.x25{left:690.880000pt;}
.x27{left:701.120000pt;}
}




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