
    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_3a4adb230632cff438e0606d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e1f651f8f1d450a8919b1e51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_e37be8b7dcd7744a6e0749b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_48b901d1483c75c957d54ca9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f0eedf06960e6945e77c2b4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_6a690f11b8ae4786754b833c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_c90ac8727a048b8494c07be9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.061035;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_30215f66525cf79812ebc367.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls9{letter-spacing:-2.880000px;}
.ls13{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.659520px;}
.ls11{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.894240px;}
.lsb{letter-spacing:2.880000px;}
.ls12{letter-spacing:188.040000px;}
.lsf{letter-spacing:224.040000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.120000px;}
.ws2{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.447440px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-8.640000px;}
._20{margin-left:-7.344000px;}
._4{margin-left:-5.855760px;}
._2{margin-left:-4.536000px;}
._1{margin-left:-2.568240px;}
._3{margin-left:-1.152000px;}
._0{width:1.513440px;}
._9{width:2.571360px;}
._10{width:3.668640px;}
._13{width:5.160240px;}
._1c{width:6.264000px;}
._f{width:8.208000px;}
._21{width:10.008000px;}
._7{width:11.520000px;}
._8{width:12.672000px;}
._b{width:13.896000px;}
._e{width:14.976000px;}
._14{width:16.632000px;}
._19{width:19.584000px;}
._16{width:21.456000px;}
._a{width:22.896000px;}
._26{width:24.216240px;}
._6{width:25.344000px;}
._11{width:26.856000px;}
._12{width:28.008000px;}
._1d{width:29.880000px;}
._5{width:31.320000px;}
._1f{width:32.832000px;}
._1a{width:34.272000px;}
._1b{width:35.424000px;}
._17{width:37.440000px;}
._18{width:38.520000px;}
._1e{width:39.816000px;}
._22{width:41.112000px;}
._2c{width:43.200000px;}
._27{width:46.512000px;}
._28{width:47.592000px;}
._29{width:49.104000px;}
._c{width:51.984000px;}
._d{width:53.002560px;}
._24{width:55.080000px;}
._25{width:56.232000px;}
._2a{width:58.104000px;}
._2b{width:59.326560px;}
._23{width:62.568000px;}
._2d{width:115.344000px;}
._2e{width:116.964000px;}
.fc5{color:transparent;}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:0.180000px;}
.y5f{bottom:1.260000px;}
.y70{bottom:3.600000px;}
.y68{bottom:3.780000px;}
.y5e{bottom:5.400000px;}
.y5b{bottom:5.580000px;}
.y37{bottom:7.020000px;}
.yd9{bottom:7.050000px;}
.yde{bottom:7.200000px;}
.y3e{bottom:8.820000px;}
.yd6{bottom:10.080000px;}
.ydb{bottom:10.260000px;}
.y73{bottom:11.520000px;}
.y7b{bottom:11.550000px;}
.y6b{bottom:11.700000px;}
.ycd{bottom:13.860000px;}
.ycc{bottom:16.560000px;}
.yca{bottom:19.080000px;}
.ycf{bottom:21.600000px;}
.y6f{bottom:22.500000px;}
.y67{bottom:22.680000px;}
.y78{bottom:22.710000px;}
.y36{bottom:23.760000px;}
.y41{bottom:25.200000px;}
.y3b{bottom:27.360000px;}
.y39{bottom:30.960000px;}
.y72{bottom:35.280000px;}
.y7a{bottom:35.310000px;}
.y6a{bottom:35.505000px;}
.yd4{bottom:38.520000px;}
.y6e{bottom:41.580000px;}
.y77{bottom:41.610000px;}
.y66{bottom:41.805000px;}
.y40{bottom:48.960000px;}
.yd3{bottom:52.020000px;}
.y71{bottom:59.040000px;}
.y7e{bottom:59.220000px;}
.y79{bottom:59.250000px;}
.y69{bottom:59.265000px;}
.y6d{bottom:60.480000px;}
.y7d{bottom:60.660000px;}
.y76{bottom:60.690000px;}
.y65{bottom:60.705000px;}
.yc9{bottom:66.060000px;}
.yd1{bottom:67.320000px;}
.y6{bottom:69.480000px;}
.yd0{bottom:80.280000px;}
.yd7{bottom:86.580000px;}
.y33{bottom:93.060000px;}
.yd2{bottom:95.220000px;}
.y32{bottom:98.280000px;}
.y60{bottom:110.340000px;}
.y5a{bottom:111.240000px;}
.y50{bottom:111.420000px;}
.y102{bottom:111.600000px;}
.y31{bottom:111.960000px;}
.yd5{bottom:115.380000px;}
.ya5{bottom:115.740000px;}
.y4f{bottom:116.640000px;}
.yc5{bottom:120.780000px;}
.y55{bottom:121.680000px;}
.y54{bottom:129.780000px;}
.y4e{bottom:130.320000px;}
.y62{bottom:133.920000px;}
.y53{bottom:135.000000px;}
.y101{bottom:135.360000px;}
.ycb{bottom:136.980000px;}
.ya4{bottom:139.500000px;}
.y61{bottom:140.580000px;}
.y75{bottom:142.020000px;}
.yc4{bottom:144.540000px;}
.y30{bottom:145.440000px;}
.yc8{bottom:147.240000px;}
.yd8{bottom:147.960000px;}
.y52{bottom:148.680000px;}
.y100{bottom:159.150000px;}
.y5d{bottom:160.200000px;}
.yce{bottom:162.720000px;}
.ya3{bottom:163.290000px;}
.yc3{bottom:168.330000px;}
.y2f{bottom:169.410000px;}
.yc7{bottom:173.910000px;}
.yff{bottom:182.910000px;}
.y59{bottom:184.500000px;}
.ya2{bottom:187.230000px;}
.y63{bottom:191.520000px;}
.yc2{bottom:192.270000px;}
.y2e{bottom:193.170000px;}
.y4c{bottom:193.890000px;}
.y4d{bottom:200.730000px;}
.yfe{bottom:206.850000px;}
.ya1{bottom:210.990000px;}
.yc1{bottom:216.030000px;}
.y2d{bottom:216.930000px;}
.y4b{bottom:217.650000px;}
.y74{bottom:218.730000px;}
.yfd{bottom:230.610000px;}
.ya0{bottom:234.750000px;}
.yc0{bottom:239.790000px;}
.y2c{bottom:240.690000px;}
.y4a{bottom:241.410000px;}
.yfc{bottom:254.370000px;}
.y9f{bottom:258.510000px;}
.ybf{bottom:263.550000px;}
.y2b{bottom:264.630000px;}
.y49{bottom:265.170000px;}
.yfb{bottom:278.130000px;}
.y9e{bottom:282.450000px;}
.ybe{bottom:287.490000px;}
.y2a{bottom:288.390000px;}
.y48{bottom:289.110000px;}
.y6c{bottom:295.410000px;}
.yfa{bottom:302.070000px;}
.y9d{bottom:306.210000px;}
.ybd{bottom:311.250000px;}
.y29{bottom:312.150000px;}
.y47{bottom:312.870000px;}
.yf9{bottom:325.830000px;}
.y9c{bottom:329.970000px;}
.ybc{bottom:335.010000px;}
.y28{bottom:335.910000px;}
.y46{bottom:336.630000px;}
.yf8{bottom:349.590000px;}
.y9b{bottom:353.730000px;}
.ybb{bottom:358.770000px;}
.y27{bottom:359.670000px;}
.y45{bottom:360.390000px;}
.y64{bottom:371.910000px;}
.yf7{bottom:373.350000px;}
.y9a{bottom:377.490000px;}
.yba{bottom:382.710000px;}
.y26{bottom:383.610000px;}
.y44{bottom:384.330000px;}
.yf6{bottom:397.290000px;}
.y99{bottom:401.475000px;}
.yb9{bottom:406.515000px;}
.y25{bottom:407.415000px;}
.y43{bottom:408.135000px;}
.yf5{bottom:421.095000px;}
.y98{bottom:425.235000px;}
.y58{bottom:426.990000px;}
.yb8{bottom:430.275000px;}
.y24{bottom:431.175000px;}
.y42{bottom:431.895000px;}
.yf4{bottom:444.855000px;}
.y57{bottom:448.635000px;}
.y97{bottom:448.995000px;}
.y3f{bottom:449.355000px;}
.yb7{bottom:454.035000px;}
.y23{bottom:454.935000px;}
.yf3{bottom:468.615000px;}
.y96{bottom:472.755000px;}
.yb6{bottom:477.795000px;}
.y22{bottom:478.875000px;}
.yf2{bottom:492.555000px;}
.y95{bottom:496.695000px;}
.yb5{bottom:501.735000px;}
.y21{bottom:502.635000px;}
.y3d{bottom:515.775000px;}
.yf1{bottom:516.315000px;}
.y94{bottom:520.455000px;}
.yb4{bottom:525.495000px;}
.y20{bottom:526.395000px;}
.yf0{bottom:540.075000px;}
.y3c{bottom:542.235000px;}
.y93{bottom:544.215000px;}
.yb3{bottom:549.255000px;}
.y1f{bottom:550.155000px;}
.yc6{bottom:556.995000px;}
.yef{bottom:563.835000px;}
.y3a{bottom:566.715000px;}
.y92{bottom:567.975000px;}
.yb2{bottom:573.015000px;}
.y1e{bottom:574.095000px;}
.yee{bottom:587.775000px;}
.y91{bottom:591.915000px;}
.yb1{bottom:596.955000px;}
.y1d{bottom:597.855000px;}
.y38{bottom:611.535000px;}
.y90{bottom:615.675000px;}
.yb0{bottom:620.715000px;}
.y1b{bottom:621.615000px;}
.y1c{bottom:628.455000px;}
.yed{bottom:635.295000px;}
.y8f{bottom:639.435000px;}
.yaf{bottom:644.475000px;}
.y1a{bottom:645.375000px;}
.yec{bottom:659.085000px;}
.y35{bottom:661.425000px;}
.y8e{bottom:663.225000px;}
.yae{bottom:668.445000px;}
.y19{bottom:669.345000px;}
.yeb{bottom:682.845000px;}
.y8d{bottom:687.165000px;}
.yad{bottom:692.565000px;}
.y18{bottom:693.105000px;}
.y34{bottom:699.945000px;}
.yea{bottom:706.785000px;}
.y8c{bottom:710.925000px;}
.yac{bottom:716.325000px;}
.y17{bottom:716.865000px;}
.ye9{bottom:730.545000px;}
.y8b{bottom:734.685000px;}
.yab{bottom:740.265000px;}
.y16{bottom:740.625000px;}
.ye8{bottom:754.305000px;}
.y8a{bottom:758.445000px;}
.yaa{bottom:764.025000px;}
.y15{bottom:764.565000px;}
.ye7{bottom:778.065000px;}
.y89{bottom:782.385000px;}
.ya9{bottom:787.785000px;}
.y14{bottom:788.325000px;}
.ye6{bottom:802.005000px;}
.y88{bottom:806.145000px;}
.ya8{bottom:811.545000px;}
.y13{bottom:812.085000px;}
.ye5{bottom:825.765000px;}
.y87{bottom:829.905000px;}
.ya7{bottom:835.485000px;}
.y12{bottom:835.845000px;}
.ye4{bottom:849.525000px;}
.y86{bottom:853.665000px;}
.ya6{bottom:859.245000px;}
.y11{bottom:859.605000px;}
.ye3{bottom:873.285000px;}
.y85{bottom:877.425000px;}
.y10{bottom:883.545000px;}
.y56{bottom:890.385000px;}
.ye2{bottom:897.225000px;}
.y84{bottom:901.410000px;}
.yf{bottom:907.350000px;}
.y51{bottom:914.190000px;}
.ye1{bottom:921.030000px;}
.y83{bottom:925.170000px;}
.ye{bottom:931.110000px;}
.ye0{bottom:944.790000px;}
.y82{bottom:948.930000px;}
.yd{bottom:954.870000px;}
.ydf{bottom:962.250000px;}
.y81{bottom:972.690000px;}
.yc{bottom:978.810000px;}
.ydd{bottom:989.970000px;}
.y80{bottom:996.630000px;}
.yb{bottom:1002.570000px;}
.y7f{bottom:1020.390000px;}
.ya{bottom:1026.330000px;}
.y7c{bottom:1037.850000px;}
.ydc{bottom:1038.390000px;}
.y9{bottom:1050.090000px;}
.y8{bottom:1074.030000px;}
.yda{bottom:1086.810000px;}
.y7{bottom:1097.790000px;}
.y5{bottom:1130.550000px;}
.y4{bottom:1162.440000px;}
.y3{bottom:1191.780000px;}
.y2{bottom:1220.940000px;}
.y1{bottom:1238.220000px;}
.hc{height:23.760000px;}
.h2b{height:23.796000px;}
.hf{height:25.560000px;}
.h2c{height:27.000000px;}
.ha{height:38.671172px;}
.h2{height:42.164648px;}
.he{height:44.100000px;}
.h9{height:47.344922px;}
.h2d{height:47.700000px;}
.hd{height:47.736000px;}
.h25{height:50.800781px;}
.h16{height:58.380469px;}
.hb{height:59.439023px;}
.h3{height:62.211094px;}
.h8{height:63.457031px;}
.h18{height:65.010863px;}
.h15{height:65.010864px;}
.h14{height:65.010902px;}
.h17{height:65.010919px;}
.h1a{height:65.010922px;}
.h19{height:65.010923px;}
.h13{height:65.010927px;}
.h12{height:65.010937px;}
.h10{height:65.700000px;}
.h1b{height:70.664045px;}
.h1c{height:70.664055px;}
.h7{height:70.664062px;}
.h2e{height:74.004654px;}
.h23{height:74.953067px;}
.h22{height:74.953083px;}
.h28{height:74.953085px;}
.h29{height:74.953094px;}
.h27{height:74.953095px;}
.h2a{height:74.953101px;}
.h24{height:74.953108px;}
.h21{height:74.953112px;}
.h26{height:74.953117px;}
.h6{height:74.953125px;}
.h1e{height:75.780000px;}
.h1f{height:75.960000px;}
.h1d{height:75.996000px;}
.h5{height:82.676953px;}
.h4{height:87.695156px;}
.h20{height:368.490000px;}
.h11{height:426.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:20.160000px;}
.w8{width:31.140000px;}
.we{width:31.500000px;}
.wf{width:31.536000px;}
.wa{width:31.716000px;}
.w10{width:40.320000px;}
.wb{width:41.220000px;}
.w11{width:41.760000px;}
.wc{width:42.120000px;}
.wd{width:42.300000px;}
.w12{width:43.380000px;}
.w18{width:45.900000px;}
.w16{width:51.840000px;}
.w15{width:52.380000px;}
.w1a{width:52.560000px;}
.w14{width:53.100000px;}
.w13{width:53.676000px;}
.w19{width:54.756000px;}
.w9{width:63.000000px;}
.w1b{width:63.036000px;}
.w1d{width:63.180000px;}
.w6{width:71.100000px;}
.w5{width:71.136000px;}
.w17{width:73.440000px;}
.w1e{width:73.620000px;}
.w1c{width:73.800000px;}
.w4{width:338.970000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x3d{left:8.820000px;}
.x37{left:11.520000px;}
.x38{left:12.780000px;}
.x3f{left:13.860000px;}
.x35{left:15.120000px;}
.x1b{left:16.920000px;}
.x3c{left:19.080000px;}
.x1a{left:22.890000px;}
.x39{left:24.300000px;}
.x1c{left:25.920000px;}
.x14{left:27.390000px;}
.x3a{left:28.440000px;}
.x3b{left:30.060000px;}
.x19{left:31.890000px;}
.x36{left:34.740000px;}
.x40{left:36.360000px;}
.x2a{left:37.440000px;}
.x3e{left:39.420000px;}
.x1d{left:40.860000px;}
.x2c{left:42.885000px;}
.x4f{left:46.470000px;}
.x48{left:49.320000px;}
.x49{left:73.800000px;}
.x3{left:84.995987px;}
.xd{left:89.855987px;}
.x6{left:99.215987px;}
.x27{left:106.776000px;}
.x41{left:108.035987px;}
.x28{left:138.636000px;}
.x24{left:148.355987px;}
.x29{left:170.490000px;}
.x8{left:205.229987px;}
.x45{left:212.790000px;}
.x2b{left:234.390000px;}
.x50{left:246.629987px;}
.x46{left:259.410000px;}
.x2d{left:266.835000px;}
.xc{left:301.034987px;}
.x2e{left:308.775000px;}
.x47{left:314.895000px;}
.x4{left:350.714987px;}
.xf{left:366.374987px;}
.x42{left:369.074987px;}
.x4a{left:378.615000px;}
.x9{left:380.954987px;}
.x2f{left:394.635000px;}
.xa{left:404.894973px;}
.xb{left:411.014987px;}
.x13{left:425.775000px;}
.x30{left:426.855000px;}
.x5{left:430.634987px;}
.x4b{left:431.895000px;}
.x7{left:446.504987px;}
.x2{left:457.124987px;}
.x31{left:459.105000px;}
.x22{left:481.964973px;}
.x23{left:488.084987px;}
.x4c{left:495.645000px;}
.x15{left:497.805000px;}
.x32{left:500.145000px;}
.x1{left:510.404987px;}
.x43{left:517.604973px;}
.x10{left:520.304973px;}
.x44{left:523.724987px;}
.x11{left:526.424987px;}
.x33{left:542.805000px;}
.x16{left:569.805000px;}
.x34{left:586.905000px;}
.x4d{left:633.930000px;}
.x17{left:641.850000px;}
.x20{left:689.549973px;}
.x21{left:695.669987px;}
.x4e{left:697.830000px;}
.x18{left:713.850000px;}
.x25{left:738.329973px;}
.x1e{left:741.569973px;}
.x26{left:744.449987px;}
.x1f{left:747.689987px;}
.xe{left:748.949987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.560000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.586240pt;}
.ls11{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.794880pt;}
.lsb{letter-spacing:2.560000pt;}
.ls12{letter-spacing:167.146667pt;}
.lsf{letter-spacing:199.146667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.440000pt;}
.ws2{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.953280pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-7.680000pt;}
._20{margin-left:-6.528000pt;}
._4{margin-left:-5.205120pt;}
._2{margin-left:-4.032000pt;}
._1{margin-left:-2.282880pt;}
._3{margin-left:-1.024000pt;}
._0{width:1.345280pt;}
._9{width:2.285653pt;}
._10{width:3.261013pt;}
._13{width:4.586880pt;}
._1c{width:5.568000pt;}
._f{width:7.296000pt;}
._21{width:8.896000pt;}
._7{width:10.240000pt;}
._8{width:11.264000pt;}
._b{width:12.352000pt;}
._e{width:13.312000pt;}
._14{width:14.784000pt;}
._19{width:17.408000pt;}
._16{width:19.072000pt;}
._a{width:20.352000pt;}
._26{width:21.525547pt;}
._6{width:22.528000pt;}
._11{width:23.872000pt;}
._12{width:24.896000pt;}
._1d{width:26.560000pt;}
._5{width:27.840000pt;}
._1f{width:29.184000pt;}
._1a{width:30.464000pt;}
._1b{width:31.488000pt;}
._17{width:33.280000pt;}
._18{width:34.240000pt;}
._1e{width:35.392000pt;}
._22{width:36.544000pt;}
._2c{width:38.400000pt;}
._27{width:41.344000pt;}
._28{width:42.304000pt;}
._29{width:43.648000pt;}
._c{width:46.208000pt;}
._d{width:47.113387pt;}
._24{width:48.960000pt;}
._25{width:49.984000pt;}
._2a{width:51.648000pt;}
._2b{width:52.734720pt;}
._23{width:55.616000pt;}
._2d{width:102.528000pt;}
._2e{width:103.968000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:0.160000pt;}
.y5f{bottom:1.120000pt;}
.y70{bottom:3.200000pt;}
.y68{bottom:3.360000pt;}
.y5e{bottom:4.800000pt;}
.y5b{bottom:4.960000pt;}
.y37{bottom:6.240000pt;}
.yd9{bottom:6.266667pt;}
.yde{bottom:6.400000pt;}
.y3e{bottom:7.840000pt;}
.yd6{bottom:8.960000pt;}
.ydb{bottom:9.120000pt;}
.y73{bottom:10.240000pt;}
.y7b{bottom:10.266667pt;}
.y6b{bottom:10.400000pt;}
.ycd{bottom:12.320000pt;}
.ycc{bottom:14.720000pt;}
.yca{bottom:16.960000pt;}
.ycf{bottom:19.200000pt;}
.y6f{bottom:20.000000pt;}
.y67{bottom:20.160000pt;}
.y78{bottom:20.186667pt;}
.y36{bottom:21.120000pt;}
.y41{bottom:22.400000pt;}
.y3b{bottom:24.320000pt;}
.y39{bottom:27.520000pt;}
.y72{bottom:31.360000pt;}
.y7a{bottom:31.386667pt;}
.y6a{bottom:31.560000pt;}
.yd4{bottom:34.240000pt;}
.y6e{bottom:36.960000pt;}
.y77{bottom:36.986667pt;}
.y66{bottom:37.160000pt;}
.y40{bottom:43.520000pt;}
.yd3{bottom:46.240000pt;}
.y71{bottom:52.480000pt;}
.y7e{bottom:52.640000pt;}
.y79{bottom:52.666667pt;}
.y69{bottom:52.680000pt;}
.y6d{bottom:53.760000pt;}
.y7d{bottom:53.920000pt;}
.y76{bottom:53.946667pt;}
.y65{bottom:53.960000pt;}
.yc9{bottom:58.720000pt;}
.yd1{bottom:59.840000pt;}
.y6{bottom:61.760000pt;}
.yd0{bottom:71.360000pt;}
.yd7{bottom:76.960000pt;}
.y33{bottom:82.720000pt;}
.yd2{bottom:84.640000pt;}
.y32{bottom:87.360000pt;}
.y60{bottom:98.080000pt;}
.y5a{bottom:98.880000pt;}
.y50{bottom:99.040000pt;}
.y102{bottom:99.200000pt;}
.y31{bottom:99.520000pt;}
.yd5{bottom:102.560000pt;}
.ya5{bottom:102.880000pt;}
.y4f{bottom:103.680000pt;}
.yc5{bottom:107.360000pt;}
.y55{bottom:108.160000pt;}
.y54{bottom:115.360000pt;}
.y4e{bottom:115.840000pt;}
.y62{bottom:119.040000pt;}
.y53{bottom:120.000000pt;}
.y101{bottom:120.320000pt;}
.ycb{bottom:121.760000pt;}
.ya4{bottom:124.000000pt;}
.y61{bottom:124.960000pt;}
.y75{bottom:126.240000pt;}
.yc4{bottom:128.480000pt;}
.y30{bottom:129.280000pt;}
.yc8{bottom:130.880000pt;}
.yd8{bottom:131.520000pt;}
.y52{bottom:132.160000pt;}
.y100{bottom:141.466667pt;}
.y5d{bottom:142.400000pt;}
.yce{bottom:144.640000pt;}
.ya3{bottom:145.146667pt;}
.yc3{bottom:149.626667pt;}
.y2f{bottom:150.586667pt;}
.yc7{bottom:154.586667pt;}
.yff{bottom:162.586667pt;}
.y59{bottom:164.000000pt;}
.ya2{bottom:166.426667pt;}
.y63{bottom:170.240000pt;}
.yc2{bottom:170.906667pt;}
.y2e{bottom:171.706667pt;}
.y4c{bottom:172.346667pt;}
.y4d{bottom:178.426667pt;}
.yfe{bottom:183.866667pt;}
.ya1{bottom:187.546667pt;}
.yc1{bottom:192.026667pt;}
.y2d{bottom:192.826667pt;}
.y4b{bottom:193.466667pt;}
.y74{bottom:194.426667pt;}
.yfd{bottom:204.986667pt;}
.ya0{bottom:208.666667pt;}
.yc0{bottom:213.146667pt;}
.y2c{bottom:213.946667pt;}
.y4a{bottom:214.586667pt;}
.yfc{bottom:226.106667pt;}
.y9f{bottom:229.786667pt;}
.ybf{bottom:234.266667pt;}
.y2b{bottom:235.226667pt;}
.y49{bottom:235.706667pt;}
.yfb{bottom:247.226667pt;}
.y9e{bottom:251.066667pt;}
.ybe{bottom:255.546667pt;}
.y2a{bottom:256.346667pt;}
.y48{bottom:256.986667pt;}
.y6c{bottom:262.586667pt;}
.yfa{bottom:268.506667pt;}
.y9d{bottom:272.186667pt;}
.ybd{bottom:276.666667pt;}
.y29{bottom:277.466667pt;}
.y47{bottom:278.106667pt;}
.yf9{bottom:289.626667pt;}
.y9c{bottom:293.306667pt;}
.ybc{bottom:297.786667pt;}
.y28{bottom:298.586667pt;}
.y46{bottom:299.226667pt;}
.yf8{bottom:310.746667pt;}
.y9b{bottom:314.426667pt;}
.ybb{bottom:318.906667pt;}
.y27{bottom:319.706667pt;}
.y45{bottom:320.346667pt;}
.y64{bottom:330.586667pt;}
.yf7{bottom:331.866667pt;}
.y9a{bottom:335.546667pt;}
.yba{bottom:340.186667pt;}
.y26{bottom:340.986667pt;}
.y44{bottom:341.626667pt;}
.yf6{bottom:353.146667pt;}
.y99{bottom:356.866667pt;}
.yb9{bottom:361.346667pt;}
.y25{bottom:362.146667pt;}
.y43{bottom:362.786667pt;}
.yf5{bottom:374.306667pt;}
.y98{bottom:377.986667pt;}
.y58{bottom:379.546667pt;}
.yb8{bottom:382.466667pt;}
.y24{bottom:383.266667pt;}
.y42{bottom:383.906667pt;}
.yf4{bottom:395.426667pt;}
.y57{bottom:398.786667pt;}
.y97{bottom:399.106667pt;}
.y3f{bottom:399.426667pt;}
.yb7{bottom:403.586667pt;}
.y23{bottom:404.386667pt;}
.yf3{bottom:416.546667pt;}
.y96{bottom:420.226667pt;}
.yb6{bottom:424.706667pt;}
.y22{bottom:425.666667pt;}
.yf2{bottom:437.826667pt;}
.y95{bottom:441.506667pt;}
.yb5{bottom:445.986667pt;}
.y21{bottom:446.786667pt;}
.y3d{bottom:458.466667pt;}
.yf1{bottom:458.946667pt;}
.y94{bottom:462.626667pt;}
.yb4{bottom:467.106667pt;}
.y20{bottom:467.906667pt;}
.yf0{bottom:480.066667pt;}
.y3c{bottom:481.986667pt;}
.y93{bottom:483.746667pt;}
.yb3{bottom:488.226667pt;}
.y1f{bottom:489.026667pt;}
.yc6{bottom:495.106667pt;}
.yef{bottom:501.186667pt;}
.y3a{bottom:503.746667pt;}
.y92{bottom:504.866667pt;}
.yb2{bottom:509.346667pt;}
.y1e{bottom:510.306667pt;}
.yee{bottom:522.466667pt;}
.y91{bottom:526.146667pt;}
.yb1{bottom:530.626667pt;}
.y1d{bottom:531.426667pt;}
.y38{bottom:543.586667pt;}
.y90{bottom:547.266667pt;}
.yb0{bottom:551.746667pt;}
.y1b{bottom:552.546667pt;}
.y1c{bottom:558.626667pt;}
.yed{bottom:564.706667pt;}
.y8f{bottom:568.386667pt;}
.yaf{bottom:572.866667pt;}
.y1a{bottom:573.666667pt;}
.yec{bottom:585.853333pt;}
.y35{bottom:587.933333pt;}
.y8e{bottom:589.533333pt;}
.yae{bottom:594.173333pt;}
.y19{bottom:594.973333pt;}
.yeb{bottom:606.973333pt;}
.y8d{bottom:610.813333pt;}
.yad{bottom:615.613333pt;}
.y18{bottom:616.093333pt;}
.y34{bottom:622.173333pt;}
.yea{bottom:628.253333pt;}
.y8c{bottom:631.933333pt;}
.yac{bottom:636.733333pt;}
.y17{bottom:637.213333pt;}
.ye9{bottom:649.373333pt;}
.y8b{bottom:653.053333pt;}
.yab{bottom:658.013333pt;}
.y16{bottom:658.333333pt;}
.ye8{bottom:670.493333pt;}
.y8a{bottom:674.173333pt;}
.yaa{bottom:679.133333pt;}
.y15{bottom:679.613333pt;}
.ye7{bottom:691.613333pt;}
.y89{bottom:695.453333pt;}
.ya9{bottom:700.253333pt;}
.y14{bottom:700.733333pt;}
.ye6{bottom:712.893333pt;}
.y88{bottom:716.573333pt;}
.ya8{bottom:721.373333pt;}
.y13{bottom:721.853333pt;}
.ye5{bottom:734.013333pt;}
.y87{bottom:737.693333pt;}
.ya7{bottom:742.653333pt;}
.y12{bottom:742.973333pt;}
.ye4{bottom:755.133333pt;}
.y86{bottom:758.813333pt;}
.ya6{bottom:763.773333pt;}
.y11{bottom:764.093333pt;}
.ye3{bottom:776.253333pt;}
.y85{bottom:779.933333pt;}
.y10{bottom:785.373333pt;}
.y56{bottom:791.453333pt;}
.ye2{bottom:797.533333pt;}
.y84{bottom:801.253333pt;}
.yf{bottom:806.533333pt;}
.y51{bottom:812.613333pt;}
.ye1{bottom:818.693333pt;}
.y83{bottom:822.373333pt;}
.ye{bottom:827.653333pt;}
.ye0{bottom:839.813333pt;}
.y82{bottom:843.493333pt;}
.yd{bottom:848.773333pt;}
.ydf{bottom:855.333333pt;}
.y81{bottom:864.613333pt;}
.yc{bottom:870.053333pt;}
.ydd{bottom:879.973333pt;}
.y80{bottom:885.893333pt;}
.yb{bottom:891.173333pt;}
.y7f{bottom:907.013333pt;}
.ya{bottom:912.293333pt;}
.y7c{bottom:922.533333pt;}
.ydc{bottom:923.013333pt;}
.y9{bottom:933.413333pt;}
.y8{bottom:954.693333pt;}
.yda{bottom:966.053333pt;}
.y7{bottom:975.813333pt;}
.y5{bottom:1004.933333pt;}
.y4{bottom:1033.280000pt;}
.y3{bottom:1059.360000pt;}
.y2{bottom:1085.280000pt;}
.y1{bottom:1100.640000pt;}
.hc{height:21.120000pt;}
.h2b{height:21.152000pt;}
.hf{height:22.720000pt;}
.h2c{height:24.000000pt;}
.ha{height:34.374375pt;}
.h2{height:37.479688pt;}
.he{height:39.200000pt;}
.h9{height:42.084375pt;}
.h2d{height:42.400000pt;}
.hd{height:42.432000pt;}
.h25{height:45.156250pt;}
.h16{height:51.893750pt;}
.hb{height:52.834688pt;}
.h3{height:55.298750pt;}
.h8{height:56.406250pt;}
.h18{height:57.787434pt;}
.h15{height:57.787435pt;}
.h14{height:57.787468pt;}
.h17{height:57.787483pt;}
.h1a{height:57.787486pt;}
.h19{height:57.787487pt;}
.h13{height:57.787491pt;}
.h12{height:57.787500pt;}
.h10{height:58.400000pt;}
.h1b{height:62.812485pt;}
.h1c{height:62.812493pt;}
.h7{height:62.812500pt;}
.h2e{height:65.781915pt;}
.h23{height:66.624948pt;}
.h22{height:66.624963pt;}
.h28{height:66.624964pt;}
.h29{height:66.624972pt;}
.h27{height:66.624973pt;}
.h2a{height:66.624978pt;}
.h24{height:66.624985pt;}
.h21{height:66.624988pt;}
.h26{height:66.624993pt;}
.h6{height:66.625000pt;}
.h1e{height:67.360000pt;}
.h1f{height:67.520000pt;}
.h1d{height:67.552000pt;}
.h5{height:73.490625pt;}
.h4{height:77.951250pt;}
.h20{height:327.546667pt;}
.h11{height:379.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:17.920000pt;}
.w8{width:27.680000pt;}
.we{width:28.000000pt;}
.wf{width:28.032000pt;}
.wa{width:28.192000pt;}
.w10{width:35.840000pt;}
.wb{width:36.640000pt;}
.w11{width:37.120000pt;}
.wc{width:37.440000pt;}
.wd{width:37.600000pt;}
.w12{width:38.560000pt;}
.w18{width:40.800000pt;}
.w16{width:46.080000pt;}
.w15{width:46.560000pt;}
.w1a{width:46.720000pt;}
.w14{width:47.200000pt;}
.w13{width:47.712000pt;}
.w19{width:48.672000pt;}
.w9{width:56.000000pt;}
.w1b{width:56.032000pt;}
.w1d{width:56.160000pt;}
.w6{width:63.200000pt;}
.w5{width:63.232000pt;}
.w17{width:65.280000pt;}
.w1e{width:65.440000pt;}
.w1c{width:65.600000pt;}
.w4{width:301.306667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x3d{left:7.840000pt;}
.x37{left:10.240000pt;}
.x38{left:11.360000pt;}
.x3f{left:12.320000pt;}
.x35{left:13.440000pt;}
.x1b{left:15.040000pt;}
.x3c{left:16.960000pt;}
.x1a{left:20.346667pt;}
.x39{left:21.600000pt;}
.x1c{left:23.040000pt;}
.x14{left:24.346667pt;}
.x3a{left:25.280000pt;}
.x3b{left:26.720000pt;}
.x19{left:28.346667pt;}
.x36{left:30.880000pt;}
.x40{left:32.320000pt;}
.x2a{left:33.280000pt;}
.x3e{left:35.040000pt;}
.x1d{left:36.320000pt;}
.x2c{left:38.120000pt;}
.x4f{left:41.306667pt;}
.x48{left:43.840000pt;}
.x49{left:65.600000pt;}
.x3{left:75.551988pt;}
.xd{left:79.871988pt;}
.x6{left:88.191988pt;}
.x27{left:94.912000pt;}
.x41{left:96.031988pt;}
.x28{left:123.232000pt;}
.x24{left:131.871988pt;}
.x29{left:151.546667pt;}
.x8{left:182.426655pt;}
.x45{left:189.146667pt;}
.x2b{left:208.346667pt;}
.x50{left:219.226655pt;}
.x46{left:230.586667pt;}
.x2d{left:237.186667pt;}
.xc{left:267.586655pt;}
.x2e{left:274.466667pt;}
.x47{left:279.906667pt;}
.x4{left:311.746655pt;}
.xf{left:325.666655pt;}
.x42{left:328.066655pt;}
.x4a{left:336.546667pt;}
.x9{left:338.626655pt;}
.x2f{left:350.786667pt;}
.xa{left:359.906643pt;}
.xb{left:365.346655pt;}
.x13{left:378.466667pt;}
.x30{left:379.426667pt;}
.x5{left:382.786655pt;}
.x4b{left:383.906667pt;}
.x7{left:396.893322pt;}
.x2{left:406.333322pt;}
.x31{left:408.093333pt;}
.x22{left:428.413310pt;}
.x23{left:433.853322pt;}
.x4c{left:440.573333pt;}
.x15{left:442.493333pt;}
.x32{left:444.573333pt;}
.x1{left:453.693322pt;}
.x43{left:460.093310pt;}
.x10{left:462.493310pt;}
.x44{left:465.533322pt;}
.x11{left:467.933322pt;}
.x33{left:482.493333pt;}
.x16{left:506.493333pt;}
.x34{left:521.693333pt;}
.x4d{left:563.493333pt;}
.x17{left:570.533333pt;}
.x20{left:612.933310pt;}
.x21{left:618.373322pt;}
.x4e{left:620.293333pt;}
.x18{left:634.533333pt;}
.x25{left:656.293310pt;}
.x1e{left:659.173310pt;}
.x26{left:661.733322pt;}
.x1f{left:664.613322pt;}
.xe{left:665.733322pt;}
}




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