
    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_a7b6eef35c3ef64aef9fcabf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9d28f1e4e18c464cccc2b002.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_e575894f90fb3eb617e34c3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_1cacccf315c8d0f409632c71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_dda934c543ff4e397c37e600.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0071430c8e1944e02123cf83.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0b7b51d63148d5a3280eea72.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:-69.120000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v9{vertical-align:-61.200000px;}
.v4{vertical-align:-18.000000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v8{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.220800px;}
.ls11{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.234000px;}
.ls1b{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.738000px;}
.ls13{letter-spacing:1.620000px;}
.ls28{letter-spacing:2.988000px;}
.ls4{letter-spacing:6.660000px;}
.ls27{letter-spacing:30.492000px;}
.ls5{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls1f{letter-spacing:588.540000px;}
.ls20{letter-spacing:669.180000px;}
.ls24{letter-spacing:728.220000px;}
.ls22{letter-spacing:728.940000px;}
.ls23{letter-spacing:869.520000px;}
.ls25{letter-spacing:936.480000px;}
.ls8{letter-spacing:1071.300000px;}
.ls6{letter-spacing:1226.940000px;}
.ls26{letter-spacing:1356.240000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.254600px;}
.ws3{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.734000px;}
.ws10{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.392000px;}
.ws14{word-spacing:-13.356000px;}
.wsc{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.248000px;}
.wsa{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.996000px;}
.ws13{word-spacing:-12.780000px;}
.ws11{word-spacing:-12.528000px;}
.ws8{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.188000px;}
._2{width:1.524240px;}
._6{width:2.554800px;}
._4{width:3.672000px;}
._5{width:4.728000px;}
._7{width:5.957760px;}
._8{width:7.104000px;}
._d{width:8.165760px;}
._9{width:9.180000px;}
._e{width:10.224960px;}
._b{width:17.604000px;}
._c{width:19.031520px;}
._11{width:377.711760px;}
._f{width:744.414000px;}
._a{width:1041.420000px;}
._10{width:1075.812000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8a{bottom:2.880000px;}
.yad{bottom:3.060000px;}
.y8c{bottom:3.240000px;}
.yb3{bottom:3.420000px;}
.yda{bottom:18.360000px;}
.yae{bottom:18.540000px;}
.yc4{bottom:18.585000px;}
.y95{bottom:18.720000px;}
.ye5{bottom:34.020000px;}
.yc6{bottom:34.065000px;}
.yb1{bottom:45.180000px;}
.yc5{bottom:49.545000px;}
.y2{bottom:57.960000px;}
.y1{bottom:76.860000px;}
.y75{bottom:97.740000px;}
.yd5{bottom:100.440000px;}
.y65{bottom:103.140000px;}
.y74{bottom:109.980000px;}
.yd4{bottom:112.680000px;}
.y2d{bottom:113.580000px;}
.yab{bottom:114.480000px;}
.y64{bottom:115.560000px;}
.y100{bottom:118.620000px;}
.y2c{bottom:126.000000px;}
.yaa{bottom:130.140000px;}
.yff{bottom:133.920000px;}
.ya9{bottom:145.836000px;}
.ycd{bottom:151.050000px;}
.ya8{bottom:160.950000px;}
.yfe{bottom:165.450000px;}
.ycc{bottom:166.530000px;}
.ya7{bottom:176.970000px;}
.yfd{bottom:180.930000px;}
.ycb{bottom:182.190000px;}
.ya6{bottom:192.630000px;}
.yca{bottom:195.150000px;}
.yfc{bottom:196.410000px;}
.ya5{bottom:207.750000px;}
.yfb{bottom:212.070000px;}
.ya4{bottom:223.410000px;}
.yfa{bottom:227.370000px;}
.ya3{bottom:239.430000px;}
.yc9{bottom:242.310000px;}
.ya2{bottom:254.910000px;}
.yf9{bottom:258.510000px;}
.ya1{bottom:270.390000px;}
.yf8{bottom:274.530000px;}
.ya0{bottom:286.050000px;}
.yc8{bottom:289.470000px;}
.yf7{bottom:289.650000px;}
.y9f{bottom:301.710000px;}
.yf6{bottom:303.150000px;}
.y9e{bottom:317.190000px;}
.y9d{bottom:332.850000px;}
.y2b{bottom:336.300000px;}
.yc7{bottom:336.630000px;}
.yf5{bottom:338.430000px;}
.y9c{bottom:348.510000px;}
.y2a{bottom:351.960000px;}
.y9b{bottom:363.990000px;}
.y63{bottom:365.070000px;}
.y29{bottom:367.440000px;}
.yf4{bottom:373.890000px;}
.y9a{bottom:379.650000px;}
.y62{bottom:380.550000px;}
.y28{bottom:382.920000px;}
.yc3{bottom:383.790000px;}
.y73{bottom:386.130000px;}
.y99{bottom:394.995000px;}
.y61{bottom:396.075000px;}
.y27{bottom:398.445000px;}
.y72{bottom:401.655000px;}
.yd3{bottom:408.855000px;}
.y98{bottom:410.475000px;}
.y60{bottom:411.555000px;}
.y26{bottom:413.925000px;}
.y71{bottom:417.135000px;}
.y97{bottom:426.495000px;}
.y5f{bottom:427.215000px;}
.y25{bottom:429.585000px;}
.y70{bottom:432.615000px;}
.yf3{bottom:435.675000px;}
.yd2{bottom:439.815000px;}
.y96{bottom:442.155000px;}
.y5e{bottom:442.695000px;}
.y24{bottom:444.885000px;}
.y6f{bottom:448.275000px;}
.yc2{bottom:450.075000px;}
.yf2{bottom:451.515000px;}
.yd1{bottom:452.415000px;}
.y94{bottom:455.115000px;}
.y5d{bottom:458.175000px;}
.y6e{bottom:463.755000px;}
.yf1{bottom:466.995000px;}
.y5c{bottom:473.835000px;}
.y23{bottom:475.845000px;}
.y6d{bottom:479.235000px;}
.yc1{bottom:481.395000px;}
.yf0{bottom:482.655000px;}
.y93{bottom:486.975000px;}
.y5b{bottom:489.135000px;}
.y6c{bottom:494.535000px;}
.y22{bottom:496.185000px;}
.yc0{bottom:496.875000px;}
.yef{bottom:497.775000px;}
.y5a{bottom:504.975000px;}
.y6b{bottom:510.195000px;}
.ybf{bottom:512.355000px;}
.yee{bottom:513.435000px;}
.y92{bottom:517.935000px;}
.y59{bottom:520.635000px;}
.y21{bottom:525.165000px;}
.y6a{bottom:525.675000px;}
.ybe{bottom:527.655000px;}
.yed{bottom:529.095000px;}
.y58{bottom:536.115000px;}
.ybd{bottom:543.315000px;}
.y20{bottom:543.345000px;}
.yec{bottom:544.935000px;}
.y91{bottom:549.075000px;}
.y69{bottom:549.435000px;}
.y57{bottom:551.595000px;}
.ybc{bottom:558.795000px;}
.y1f{bottom:558.825000px;}
.yeb{bottom:560.595000px;}
.y56{bottom:567.255000px;}
.y68{bottom:571.215000px;}
.y1e{bottom:574.485000px;}
.yea{bottom:575.715000px;}
.y90{bottom:580.035000px;}
.y55{bottom:582.375000px;}
.ye9{bottom:589.035000px;}
.y1d{bottom:589.965000px;}
.ybb{bottom:590.115000px;}
.y54{bottom:598.035000px;}
.yba{bottom:602.715000px;}
.y1c{bottom:605.445000px;}
.y8f{bottom:611.175000px;}
.y53{bottom:614.055000px;}
.ye8{bottom:618.735000px;}
.y1b{bottom:620.925000px;}
.y52{bottom:629.535000px;}
.y1a{bottom:636.585000px;}
.y8e{bottom:642.165000px;}
.y51{bottom:644.865000px;}
.ye7{bottom:648.285000px;}
.y19{bottom:652.095000px;}
.y50{bottom:660.525000px;}
.y18{bottom:667.755000px;}
.y8d{bottom:673.305000px;}
.y4f{bottom:676.005000px;}
.ye6{bottom:677.805000px;}
.y17{bottom:689.895000px;}
.y4e{bottom:692.025000px;}
.y8b{bottom:704.265000px;}
.y4d{bottom:707.325000px;}
.y16{bottom:721.035000px;}
.y4c{bottom:722.805000px;}
.y89{bottom:735.405000px;}
.y15{bottom:736.515000px;}
.y4b{bottom:738.825000px;}
.y14{bottom:752.175000px;}
.y4a{bottom:754.305000px;}
.y88{bottom:769.785000px;}
.y49{bottom:769.965000px;}
.ye4{bottom:781.305000px;}
.y48{bottom:785.265000px;}
.y13{bottom:786.735000px;}
.ye3{bottom:796.785000px;}
.y47{bottom:800.745000px;}
.y87{bottom:800.925000px;}
.y12{bottom:806.895000px;}
.yd0{bottom:807.225000px;}
.ye2{bottom:812.265000px;}
.y86{bottom:816.405000px;}
.y46{bottom:816.765000px;}
.ye1{bottom:827.925000px;}
.y67{bottom:831.885000px;}
.y45{bottom:832.245000px;}
.ycf{bottom:838.365000px;}
.ye0{bottom:843.405000px;}
.y11{bottom:843.795000px;}
.y66{bottom:844.305000px;}
.y85{bottom:847.365000px;}
.y44{bottom:847.725000px;}
.yce{bottom:850.785000px;}
.y10{bottom:852.255000px;}
.ydf{bottom:858.705000px;}
.y84{bottom:863.025000px;}
.y43{bottom:863.385000px;}
.yde{bottom:872.025000px;}
.yf{bottom:877.815000px;}
.y83{bottom:878.325000px;}
.y42{bottom:878.685000px;}
.y82{bottom:893.850000px;}
.y41{bottom:894.210000px;}
.y40{bottom:909.870000px;}
.ydd{bottom:914.730000px;}
.ye{bottom:916.920000px;}
.y81{bottom:925.350000px;}
.y3f{bottom:925.530000px;}
.y80{bottom:940.830000px;}
.y3e{bottom:941.010000px;}
.yd{bottom:941.220000px;}
.y7f{bottom:956.490000px;}
.y3d{bottom:957.030000px;}
.ydc{bottom:957.390000px;}
.y7e{bottom:971.970000px;}
.y3c{bottom:972.510000px;}
.yb9{bottom:979.710000px;}
.y7d{bottom:987.630000px;}
.y102{bottom:987.990000px;}
.y3b{bottom:988.170000px;}
.yb8{bottom:995.190000px;}
.ydb{bottom:1000.050000px;}
.yc{bottom:1000.620000px;}
.y7c{bottom:1002.930000px;}
.y101{bottom:1003.470000px;}
.y3a{bottom:1003.650000px;}
.yb7{bottom:1010.490000px;}
.y7b{bottom:1018.410000px;}
.y39{bottom:1019.130000px;}
.yb0{bottom:1023.810000px;}
.y9{bottom:1034.100000px;}
.y7a{bottom:1034.430000px;}
.y38{bottom:1034.610000px;}
.yb{bottom:1039.320000px;}
.yb6{bottom:1040.550000px;}
.yd9{bottom:1042.890000px;}
.y79{bottom:1049.910000px;}
.y37{bottom:1050.090000px;}
.yb5{bottom:1057.110000px;}
.y8{bottom:1057.320000px;}
.y78{bottom:1065.570000px;}
.y36{bottom:1065.750000px;}
.ya{bottom:1071.360000px;}
.yb4{bottom:1073.850000px;}
.y77{bottom:1080.870000px;}
.y35{bottom:1081.230000px;}
.y7{bottom:1086.660000px;}
.yb2{bottom:1090.410000px;}
.y76{bottom:1096.350000px;}
.y34{bottom:1096.710000px;}
.y6{bottom:1105.740000px;}
.yaf{bottom:1107.150000px;}
.y33{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.yac{bottom:1123.710000px;}
.yd8{bottom:1127.670000px;}
.y32{bottom:1127.850000px;}
.y4{bottom:1140.300000px;}
.yd7{bottom:1142.970000px;}
.y31{bottom:1143.330000px;}
.y3{bottom:1158.360000px;}
.yd6{bottom:1158.660000px;}
.y30{bottom:1159.020000px;}
.y2f{bottom:1175.220000px;}
.y2e{bottom:1193.760000px;}
.ha{height:12.335625px;}
.h17{height:15.840000px;}
.h19{height:16.020000px;}
.h20{height:28.800000px;}
.h21{height:28.836000px;}
.h12{height:30.240000px;}
.h13{height:30.276000px;}
.h15{height:30.960000px;}
.h16{height:31.176000px;}
.h24{height:34.560000px;}
.h22{height:34.596000px;}
.h23{height:34.740000px;}
.hb{height:35.314453px;}
.hf{height:38.158594px;}
.h1c{height:41.760000px;}
.h1d{height:41.940000px;}
.h1e{height:41.976000px;}
.h1b{height:46.440000px;}
.h1f{height:46.620000px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hc{height:52.971680px;}
.h11{height:52.998047px;}
.h14{height:53.332031px;}
.hd{height:54.421875px;}
.h25{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.h1a{height:62.136000px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h18{height:99.180000px;}
.h0{height:1263.000000px;}
.wb{width:84.240000px;}
.we{width:84.780000px;}
.w10{width:85.320000px;}
.w5{width:99.900000px;}
.w9{width:100.260000px;}
.w17{width:102.420000px;}
.w19{width:102.780000px;}
.w1a{width:102.816000px;}
.w1b{width:113.976000px;}
.wd{width:117.576000px;}
.wc{width:132.336000px;}
.w7{width:133.416000px;}
.wf{width:137.556000px;}
.w18{width:138.276000px;}
.wa{width:138.456000px;}
.w8{width:138.996000px;}
.w1d{width:139.716000px;}
.w12{width:140.040000px;}
.w1e{width:140.256000px;}
.w15{width:140.436000px;}
.w6{width:156.450000px;}
.w13{width:180.930000px;}
.w14{width:195.510000px;}
.w3{width:246.090000px;}
.w2{width:271.875000px;}
.w4{width:518.505000px;}
.w1f{width:561.525000px;}
.w11{width:643.605000px;}
.w16{width:658.230000px;}
.w1c{width:700.350000px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x49{left:7.560000px;}
.x42{left:8.640000px;}
.x30{left:11.160000px;}
.x2b{left:12.240000px;}
.x54{left:16.380000px;}
.x52{left:17.640000px;}
.x34{left:20.160000px;}
.x43{left:22.320000px;}
.x4c{left:23.580000px;}
.x3f{left:24.840000px;}
.x37{left:28.260000px;}
.x2{left:29.970000px;}
.x41{left:31.140000px;}
.x32{left:32.400000px;}
.x2e{left:34.554000px;}
.x59{left:36.405000px;}
.x45{left:38.880000px;}
.x35{left:40.680000px;}
.x5a{left:41.940000px;}
.x23{left:43.200000px;}
.x5b{left:44.820000px;}
.x38{left:46.434000px;}
.x4f{left:48.420000px;}
.x3a{left:51.690000px;}
.x8{left:53.040000px;}
.x3b{left:55.110000px;}
.x60{left:58.139987px;}
.x48{left:59.625000px;}
.x58{left:60.885000px;}
.x47{left:62.865000px;}
.x29{left:63.900000px;}
.x21{left:65.700000px;}
.xd{left:69.780000px;}
.x9{left:70.980000px;}
.xe{left:73.524000px;}
.x39{left:74.925000px;}
.x50{left:82.080000px;}
.x51{left:87.120000px;}
.x22{left:90.720000px;}
.x1f{left:91.800000px;}
.x24{left:94.680000px;}
.x28{left:101.340000px;}
.x1d{left:102.645000px;}
.x26{left:104.760000px;}
.x2a{left:108.000000px;}
.x20{left:110.205000px;}
.x25{left:112.005000px;}
.x3d{left:119.556000px;}
.x27{left:120.645000px;}
.x61{left:124.415987px;}
.x2d{left:126.036000px;}
.x2c{left:131.805000px;}
.xb{left:147.150000px;}
.x5c{left:160.590000px;}
.x1c{left:182.010000px;}
.x53{left:193.890000px;}
.x3e{left:204.150000px;}
.x2f{left:226.290000px;}
.x4b{left:238.349987px;}
.x5{left:244.050000px;}
.x3{left:252.120000px;}
.x14{left:262.154987px;}
.x1b{left:264.854987px;}
.x16{left:270.794987px;}
.x4{left:290.610000px;}
.x1a{left:294.914987px;}
.x5d{left:300.675000px;}
.x55{left:332.535000px;}
.x40{left:336.855000px;}
.x12{left:347.834987px;}
.x18{left:351.254987px;}
.x31{left:383.115000px;}
.x5f{left:395.894987px;}
.xa{left:400.260000px;}
.x1{left:422.700000px;}
.x10{left:428.864987px;}
.x4d{left:434.085000px;}
.xc{left:437.070000px;}
.x11{left:441.284987px;}
.x1e{left:454.425000px;}
.x56{left:471.165000px;}
.x6{left:478.845000px;}
.x7{left:506.340000px;}
.x33{left:516.885000px;}
.x44{left:539.925000px;}
.x57{left:574.305000px;}
.x5e{left:581.685000px;}
.xf{left:605.289000px;}
.x13{left:612.329987px;}
.x4e{left:629.970000px;}
.x19{left:634.829987px;}
.x36{left:656.250000px;}
.x15{left:658.769987px;}
.x17{left:667.409987px;}
.x3c{left:671.009987px;}
.x46{left:677.850000px;}
.x4a{left:772.379987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v9{vertical-align:-54.400000pt;}
.v4{vertical-align:-16.000000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v8{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.208000pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.656000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls28{letter-spacing:2.656000pt;}
.ls4{letter-spacing:5.920000pt;}
.ls27{letter-spacing:27.104000pt;}
.ls5{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1f{letter-spacing:523.146667pt;}
.ls20{letter-spacing:594.826667pt;}
.ls24{letter-spacing:647.306667pt;}
.ls22{letter-spacing:647.946667pt;}
.ls23{letter-spacing:772.906667pt;}
.ls25{letter-spacing:832.426667pt;}
.ls8{letter-spacing:952.266667pt;}
.ls6{letter-spacing:1090.613333pt;}
.ls26{letter-spacing:1205.546667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.448533pt;}
.ws3{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.208000pt;}
.ws10{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.872000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.776000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.552000pt;}
.ws13{word-spacing:-11.360000pt;}
.ws11{word-spacing:-11.136000pt;}
.ws8{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.354880pt;}
._6{width:2.270933pt;}
._4{width:3.264000pt;}
._5{width:4.202667pt;}
._7{width:5.295787pt;}
._8{width:6.314667pt;}
._d{width:7.258453pt;}
._9{width:8.160000pt;}
._e{width:9.088853pt;}
._b{width:15.648000pt;}
._c{width:16.916907pt;}
._11{width:335.743787pt;}
._f{width:661.701333pt;}
._a{width:925.706667pt;}
._10{width:956.277333pt;}
._3{width:1399.520000pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:2.560000pt;}
.yad{bottom:2.720000pt;}
.y8c{bottom:2.880000pt;}
.yb3{bottom:3.040000pt;}
.yda{bottom:16.320000pt;}
.yae{bottom:16.480000pt;}
.yc4{bottom:16.520000pt;}
.y95{bottom:16.640000pt;}
.ye5{bottom:30.240000pt;}
.yc6{bottom:30.280000pt;}
.yb1{bottom:40.160000pt;}
.yc5{bottom:44.040000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:68.320000pt;}
.y75{bottom:86.880000pt;}
.yd5{bottom:89.280000pt;}
.y65{bottom:91.680000pt;}
.y74{bottom:97.760000pt;}
.yd4{bottom:100.160000pt;}
.y2d{bottom:100.960000pt;}
.yab{bottom:101.760000pt;}
.y64{bottom:102.720000pt;}
.y100{bottom:105.440000pt;}
.y2c{bottom:112.000000pt;}
.yaa{bottom:115.680000pt;}
.yff{bottom:119.040000pt;}
.ya9{bottom:129.632000pt;}
.ycd{bottom:134.266667pt;}
.ya8{bottom:143.066667pt;}
.yfe{bottom:147.066667pt;}
.ycc{bottom:148.026667pt;}
.ya7{bottom:157.306667pt;}
.yfd{bottom:160.826667pt;}
.ycb{bottom:161.946667pt;}
.ya6{bottom:171.226667pt;}
.yca{bottom:173.466667pt;}
.yfc{bottom:174.586667pt;}
.ya5{bottom:184.666667pt;}
.yfb{bottom:188.506667pt;}
.ya4{bottom:198.586667pt;}
.yfa{bottom:202.106667pt;}
.ya3{bottom:212.826667pt;}
.yc9{bottom:215.386667pt;}
.ya2{bottom:226.586667pt;}
.yf9{bottom:229.786667pt;}
.ya1{bottom:240.346667pt;}
.yf8{bottom:244.026667pt;}
.ya0{bottom:254.266667pt;}
.yc8{bottom:257.306667pt;}
.yf7{bottom:257.466667pt;}
.y9f{bottom:268.186667pt;}
.yf6{bottom:269.466667pt;}
.y9e{bottom:281.946667pt;}
.y9d{bottom:295.866667pt;}
.y2b{bottom:298.933333pt;}
.yc7{bottom:299.226667pt;}
.yf5{bottom:300.826667pt;}
.y9c{bottom:309.786667pt;}
.y2a{bottom:312.853333pt;}
.y9b{bottom:323.546667pt;}
.y63{bottom:324.506667pt;}
.y29{bottom:326.613333pt;}
.yf4{bottom:332.346667pt;}
.y9a{bottom:337.466667pt;}
.y62{bottom:338.266667pt;}
.y28{bottom:340.373333pt;}
.yc3{bottom:341.146667pt;}
.y73{bottom:343.226667pt;}
.y99{bottom:351.106667pt;}
.y61{bottom:352.066667pt;}
.y27{bottom:354.173333pt;}
.y72{bottom:357.026667pt;}
.yd3{bottom:363.426667pt;}
.y98{bottom:364.866667pt;}
.y60{bottom:365.826667pt;}
.y26{bottom:367.933333pt;}
.y71{bottom:370.786667pt;}
.y97{bottom:379.106667pt;}
.y5f{bottom:379.746667pt;}
.y25{bottom:381.853333pt;}
.y70{bottom:384.546667pt;}
.yf3{bottom:387.266667pt;}
.yd2{bottom:390.946667pt;}
.y96{bottom:393.026667pt;}
.y5e{bottom:393.506667pt;}
.y24{bottom:395.453333pt;}
.y6f{bottom:398.466667pt;}
.yc2{bottom:400.066667pt;}
.yf2{bottom:401.346667pt;}
.yd1{bottom:402.146667pt;}
.y94{bottom:404.546667pt;}
.y5d{bottom:407.266667pt;}
.y6e{bottom:412.226667pt;}
.yf1{bottom:415.106667pt;}
.y5c{bottom:421.186667pt;}
.y23{bottom:422.973333pt;}
.y6d{bottom:425.986667pt;}
.yc1{bottom:427.906667pt;}
.yf0{bottom:429.026667pt;}
.y93{bottom:432.866667pt;}
.y5b{bottom:434.786667pt;}
.y6c{bottom:439.586667pt;}
.y22{bottom:441.053333pt;}
.yc0{bottom:441.666667pt;}
.yef{bottom:442.466667pt;}
.y5a{bottom:448.866667pt;}
.y6b{bottom:453.506667pt;}
.ybf{bottom:455.426667pt;}
.yee{bottom:456.386667pt;}
.y92{bottom:460.386667pt;}
.y59{bottom:462.786667pt;}
.y21{bottom:466.813333pt;}
.y6a{bottom:467.266667pt;}
.ybe{bottom:469.026667pt;}
.yed{bottom:470.306667pt;}
.y58{bottom:476.546667pt;}
.ybd{bottom:482.946667pt;}
.y20{bottom:482.973333pt;}
.yec{bottom:484.386667pt;}
.y91{bottom:488.066667pt;}
.y69{bottom:488.386667pt;}
.y57{bottom:490.306667pt;}
.ybc{bottom:496.706667pt;}
.y1f{bottom:496.733333pt;}
.yeb{bottom:498.306667pt;}
.y56{bottom:504.226667pt;}
.y68{bottom:507.746667pt;}
.y1e{bottom:510.653333pt;}
.yea{bottom:511.746667pt;}
.y90{bottom:515.586667pt;}
.y55{bottom:517.666667pt;}
.ye9{bottom:523.586667pt;}
.y1d{bottom:524.413333pt;}
.ybb{bottom:524.546667pt;}
.y54{bottom:531.586667pt;}
.yba{bottom:535.746667pt;}
.y1c{bottom:538.173333pt;}
.y8f{bottom:543.266667pt;}
.y53{bottom:545.826667pt;}
.ye8{bottom:549.986667pt;}
.y1b{bottom:551.933333pt;}
.y52{bottom:559.586667pt;}
.y1a{bottom:565.853333pt;}
.y8e{bottom:570.813333pt;}
.y51{bottom:573.213333pt;}
.ye7{bottom:576.253333pt;}
.y19{bottom:579.640000pt;}
.y50{bottom:587.133333pt;}
.y18{bottom:593.560000pt;}
.y8d{bottom:598.493333pt;}
.y4f{bottom:600.893333pt;}
.ye6{bottom:602.493333pt;}
.y17{bottom:613.240000pt;}
.y4e{bottom:615.133333pt;}
.y8b{bottom:626.013333pt;}
.y4d{bottom:628.733333pt;}
.y16{bottom:640.920000pt;}
.y4c{bottom:642.493333pt;}
.y89{bottom:653.693333pt;}
.y15{bottom:654.680000pt;}
.y4b{bottom:656.733333pt;}
.y14{bottom:668.600000pt;}
.y4a{bottom:670.493333pt;}
.y88{bottom:684.253333pt;}
.y49{bottom:684.413333pt;}
.ye4{bottom:694.493333pt;}
.y48{bottom:698.013333pt;}
.y13{bottom:699.320000pt;}
.ye3{bottom:708.253333pt;}
.y47{bottom:711.773333pt;}
.y87{bottom:711.933333pt;}
.y12{bottom:717.240000pt;}
.yd0{bottom:717.533333pt;}
.ye2{bottom:722.013333pt;}
.y86{bottom:725.693333pt;}
.y46{bottom:726.013333pt;}
.ye1{bottom:735.933333pt;}
.y67{bottom:739.453333pt;}
.y45{bottom:739.773333pt;}
.ycf{bottom:745.213333pt;}
.ye0{bottom:749.693333pt;}
.y11{bottom:750.040000pt;}
.y66{bottom:750.493333pt;}
.y85{bottom:753.213333pt;}
.y44{bottom:753.533333pt;}
.yce{bottom:756.253333pt;}
.y10{bottom:757.560000pt;}
.ydf{bottom:763.293333pt;}
.y84{bottom:767.133333pt;}
.y43{bottom:767.453333pt;}
.yde{bottom:775.133333pt;}
.yf{bottom:780.280000pt;}
.y83{bottom:780.733333pt;}
.y42{bottom:781.053333pt;}
.y82{bottom:794.533333pt;}
.y41{bottom:794.853333pt;}
.y40{bottom:808.773333pt;}
.ydd{bottom:813.093333pt;}
.ye{bottom:815.040000pt;}
.y81{bottom:822.533333pt;}
.y3f{bottom:822.693333pt;}
.y80{bottom:836.293333pt;}
.y3e{bottom:836.453333pt;}
.yd{bottom:836.640000pt;}
.y7f{bottom:850.213333pt;}
.y3d{bottom:850.693333pt;}
.ydc{bottom:851.013333pt;}
.y7e{bottom:863.973333pt;}
.y3c{bottom:864.453333pt;}
.yb9{bottom:870.853333pt;}
.y7d{bottom:877.893333pt;}
.y102{bottom:878.213333pt;}
.y3b{bottom:878.373333pt;}
.yb8{bottom:884.613333pt;}
.ydb{bottom:888.933333pt;}
.yc{bottom:889.440000pt;}
.y7c{bottom:891.493333pt;}
.y101{bottom:891.973333pt;}
.y3a{bottom:892.133333pt;}
.yb7{bottom:898.213333pt;}
.y7b{bottom:905.253333pt;}
.y39{bottom:905.893333pt;}
.yb0{bottom:910.053333pt;}
.y9{bottom:919.200000pt;}
.y7a{bottom:919.493333pt;}
.y38{bottom:919.653333pt;}
.yb{bottom:923.840000pt;}
.yb6{bottom:924.933333pt;}
.yd9{bottom:927.013333pt;}
.y79{bottom:933.253333pt;}
.y37{bottom:933.413333pt;}
.yb5{bottom:939.653333pt;}
.y8{bottom:939.840000pt;}
.y78{bottom:947.173333pt;}
.y36{bottom:947.333333pt;}
.ya{bottom:952.320000pt;}
.yb4{bottom:954.533333pt;}
.y77{bottom:960.773333pt;}
.y35{bottom:961.093333pt;}
.y7{bottom:965.920000pt;}
.yb2{bottom:969.253333pt;}
.y76{bottom:974.533333pt;}
.y34{bottom:974.853333pt;}
.y6{bottom:982.880000pt;}
.yaf{bottom:984.133333pt;}
.y33{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.yac{bottom:998.853333pt;}
.yd8{bottom:1002.373333pt;}
.y32{bottom:1002.533333pt;}
.y4{bottom:1013.600000pt;}
.yd7{bottom:1015.973333pt;}
.y31{bottom:1016.293333pt;}
.y3{bottom:1029.653333pt;}
.yd6{bottom:1029.920000pt;}
.y30{bottom:1030.240000pt;}
.y2f{bottom:1044.640000pt;}
.y2e{bottom:1061.120000pt;}
.ha{height:10.965000pt;}
.h17{height:14.080000pt;}
.h19{height:14.240000pt;}
.h20{height:25.600000pt;}
.h21{height:25.632000pt;}
.h12{height:26.880000pt;}
.h13{height:26.912000pt;}
.h15{height:27.520000pt;}
.h16{height:27.712000pt;}
.h24{height:30.720000pt;}
.h22{height:30.752000pt;}
.h23{height:30.880000pt;}
.hb{height:31.390625pt;}
.hf{height:33.918750pt;}
.h1c{height:37.120000pt;}
.h1d{height:37.280000pt;}
.h1e{height:37.312000pt;}
.h1b{height:41.280000pt;}
.h1f{height:41.440000pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hc{height:47.085938pt;}
.h11{height:47.109375pt;}
.h14{height:47.406250pt;}
.hd{height:48.375000pt;}
.h25{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.h1a{height:55.232000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h18{height:88.160000pt;}
.h0{height:1122.666667pt;}
.wb{width:74.880000pt;}
.we{width:75.360000pt;}
.w10{width:75.840000pt;}
.w5{width:88.800000pt;}
.w9{width:89.120000pt;}
.w17{width:91.040000pt;}
.w19{width:91.360000pt;}
.w1a{width:91.392000pt;}
.w1b{width:101.312000pt;}
.wd{width:104.512000pt;}
.wc{width:117.632000pt;}
.w7{width:118.592000pt;}
.wf{width:122.272000pt;}
.w18{width:122.912000pt;}
.wa{width:123.072000pt;}
.w8{width:123.552000pt;}
.w1d{width:124.192000pt;}
.w12{width:124.480000pt;}
.w1e{width:124.672000pt;}
.w15{width:124.832000pt;}
.w6{width:139.066667pt;}
.w13{width:160.826667pt;}
.w14{width:173.786667pt;}
.w3{width:218.746667pt;}
.w2{width:241.666667pt;}
.w4{width:460.893333pt;}
.w1f{width:499.133333pt;}
.w11{width:572.093333pt;}
.w16{width:585.093333pt;}
.w1c{width:622.533333pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x49{left:6.720000pt;}
.x42{left:7.680000pt;}
.x30{left:9.920000pt;}
.x2b{left:10.880000pt;}
.x54{left:14.560000pt;}
.x52{left:15.680000pt;}
.x34{left:17.920000pt;}
.x43{left:19.840000pt;}
.x4c{left:20.960000pt;}
.x3f{left:22.080000pt;}
.x37{left:25.120000pt;}
.x2{left:26.640000pt;}
.x41{left:27.680000pt;}
.x32{left:28.800000pt;}
.x2e{left:30.714667pt;}
.x59{left:32.360000pt;}
.x45{left:34.560000pt;}
.x35{left:36.160000pt;}
.x5a{left:37.280000pt;}
.x23{left:38.400000pt;}
.x5b{left:39.840000pt;}
.x38{left:41.274667pt;}
.x4f{left:43.040000pt;}
.x3a{left:45.946667pt;}
.x8{left:47.146667pt;}
.x3b{left:48.986667pt;}
.x60{left:51.679988pt;}
.x48{left:53.000000pt;}
.x58{left:54.120000pt;}
.x47{left:55.880000pt;}
.x29{left:56.800000pt;}
.x21{left:58.400000pt;}
.xd{left:62.026667pt;}
.x9{left:63.093333pt;}
.xe{left:65.354667pt;}
.x39{left:66.600000pt;}
.x50{left:72.960000pt;}
.x51{left:77.440000pt;}
.x22{left:80.640000pt;}
.x1f{left:81.600000pt;}
.x24{left:84.160000pt;}
.x28{left:90.080000pt;}
.x1d{left:91.240000pt;}
.x26{left:93.120000pt;}
.x2a{left:96.000000pt;}
.x20{left:97.960000pt;}
.x25{left:99.560000pt;}
.x3d{left:106.272000pt;}
.x27{left:107.240000pt;}
.x61{left:110.591988pt;}
.x2d{left:112.032000pt;}
.x2c{left:117.160000pt;}
.xb{left:130.800000pt;}
.x5c{left:142.746667pt;}
.x1c{left:161.786667pt;}
.x53{left:172.346667pt;}
.x3e{left:181.466667pt;}
.x2f{left:201.146667pt;}
.x4b{left:211.866655pt;}
.x5{left:216.933333pt;}
.x3{left:224.106667pt;}
.x14{left:233.026655pt;}
.x1b{left:235.426655pt;}
.x16{left:240.706655pt;}
.x4{left:258.320000pt;}
.x1a{left:262.146655pt;}
.x5d{left:267.266667pt;}
.x55{left:295.586667pt;}
.x40{left:299.426667pt;}
.x12{left:309.186655pt;}
.x18{left:312.226655pt;}
.x31{left:340.546667pt;}
.x5f{left:351.906655pt;}
.xa{left:355.786667pt;}
.x1{left:375.733333pt;}
.x10{left:381.213321pt;}
.x4d{left:385.853333pt;}
.xc{left:388.506667pt;}
.x11{left:392.253321pt;}
.x1e{left:403.933333pt;}
.x56{left:418.813333pt;}
.x6{left:425.640000pt;}
.x7{left:450.080000pt;}
.x33{left:459.453333pt;}
.x44{left:479.933333pt;}
.x57{left:510.493333pt;}
.x5e{left:517.053333pt;}
.xf{left:538.034667pt;}
.x13{left:544.293321pt;}
.x4e{left:559.973333pt;}
.x19{left:564.293321pt;}
.x36{left:583.333333pt;}
.x15{left:585.573321pt;}
.x17{left:593.253321pt;}
.x3c{left:596.453321pt;}
.x46{left:602.533333pt;}
.x4a{left:686.559988pt;}
}




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