
    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_c355560aba6a0ab05337778c.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_8b08bb4e087d742ebac5cbe0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_735ed6915a1057e355c5659e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_caec0afbae5fe70ad1a61f7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_fbcd22bfcff8c8ac3f7385fe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018720px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206640px;}
.ls1a{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.262200px;}
.ls1c{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.511800px;}
.ls6{letter-spacing:0.756000px;}
.ls1e{letter-spacing:11.466720px;}
.ls15{letter-spacing:11.610720px;}
.ls10{letter-spacing:38.970720px;}
.ls1b{letter-spacing:41.706720px;}
.ls19{letter-spacing:46.890720px;}
.ls16{letter-spacing:57.690720px;}
.ls1{letter-spacing:62.730720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.921280px;}
.ws1{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws11{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.120000px;}
.wse{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.166000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._8{margin-left:-8.942400px;}
._1b{margin-left:-5.786640px;}
._9{margin-left:-4.360560px;}
._7{margin-left:-2.361840px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.265840px;}
._d{width:4.230480px;}
._12{width:5.328720px;}
._11{width:6.573600px;}
._a{width:8.522640px;}
._b{width:9.592080px;}
._16{width:10.886400px;}
._10{width:12.260880px;}
._15{width:13.549680px;}
._19{width:16.124400px;}
._e{width:17.220960px;}
._f{width:18.286560px;}
._1a{width:19.856400px;}
._20{width:22.947840px;}
._17{width:24.631200px;}
._18{width:25.686720px;}
._13{width:27.595200px;}
._14{width:29.795520px;}
._1c{width:35.856000px;}
._1d{width:37.675680px;}
._1f{width:42.391200px;}
._1e{width:43.575120px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:0.360000px;}
.y9e{bottom:4.350000px;}
.y8a{bottom:5.760000px;}
.y94{bottom:5.940000px;}
.y9a{bottom:6.480000px;}
.y97{bottom:6.840000px;}
.ycd{bottom:7.020000px;}
.ycb{bottom:7.920000px;}
.ycf{bottom:9.900000px;}
.y12a{bottom:10.620000px;}
.y91{bottom:12.420000px;}
.yd9{bottom:13.320000px;}
.yfd{bottom:13.500000px;}
.y93{bottom:23.220000px;}
.y99{bottom:23.760000px;}
.y96{bottom:24.120000px;}
.y8e{bottom:25.560000px;}
.yab{bottom:25.605000px;}
.y90{bottom:29.700000px;}
.y129{bottom:30.420000px;}
.yfc{bottom:33.300000px;}
.y126{bottom:34.740000px;}
.y8d{bottom:45.540000px;}
.yaa{bottom:45.585000px;}
.y128{bottom:50.400000px;}
.y6{bottom:59.580000px;}
.y8c{bottom:65.340000px;}
.ya9{bottom:65.385000px;}
.y127{bottom:70.200000px;}
.ya8{bottom:85.185000px;}
.y6b{bottom:87.840000px;}
.y34{bottom:90.000000px;}
.y124{bottom:95.040000px;}
.y8b{bottom:98.640000px;}
.yd5{bottom:100.260000px;}
.ya7{bottom:104.985000px;}
.y6a{bottom:107.820000px;}
.y33{bottom:109.800000px;}
.y123{bottom:114.840000px;}
.y106{bottom:119.700000px;}
.yd4{bottom:120.060000px;}
.ya6{bottom:124.785000px;}
.y69{bottom:127.620000px;}
.y32{bottom:129.600000px;}
.y125{bottom:131.580000px;}
.y122{bottom:134.820000px;}
.y105{bottom:139.500000px;}
.yd3{bottom:140.040000px;}
.ya5{bottom:144.765000px;}
.y68{bottom:147.420000px;}
.y31{bottom:149.580000px;}
.y121{bottom:154.620000px;}
.y104{bottom:159.300000px;}
.yd2{bottom:159.840000px;}
.ya4{bottom:164.565000px;}
.y67{bottom:167.220000px;}
.y30{bottom:169.380000px;}
.y120{bottom:174.420000px;}
.y89{bottom:178.740000px;}
.y103{bottom:179.280000px;}
.yd1{bottom:179.640000px;}
.ya3{bottom:184.365000px;}
.y66{bottom:187.020000px;}
.y2f{bottom:189.180000px;}
.yd0{bottom:193.680000px;}
.y11f{bottom:194.220000px;}
.y102{bottom:199.080000px;}
.ya2{bottom:204.165000px;}
.y88{bottom:205.020000px;}
.y65{bottom:207.000000px;}
.y2e{bottom:208.980000px;}
.y11e{bottom:214.050000px;}
.yce{bottom:216.390000px;}
.y101{bottom:218.910000px;}
.ya1{bottom:223.965000px;}
.y87{bottom:225.030000px;}
.y64{bottom:226.830000px;}
.y2d{bottom:228.810000px;}
.y11d{bottom:234.030000px;}
.y100{bottom:238.710000px;}
.ya0{bottom:243.945000px;}
.y86{bottom:244.830000px;}
.y63{bottom:246.630000px;}
.y2c{bottom:248.790000px;}
.y11c{bottom:253.830000px;}
.yff{bottom:258.510000px;}
.ycc{bottom:260.850000px;}
.y85{bottom:264.630000px;}
.y2b{bottom:268.590000px;}
.yfe{bottom:272.550000px;}
.y11b{bottom:273.630000px;}
.y62{bottom:275.430000px;}
.yca{bottom:282.630000px;}
.y84{bottom:284.430000px;}
.y2a{bottom:288.390000px;}
.yfb{bottom:293.250000px;}
.y11a{bottom:293.430000px;}
.y61{bottom:295.230000px;}
.y83{bottom:304.230000px;}
.yc9{bottom:305.310000px;}
.y29{bottom:308.190000px;}
.y119{bottom:313.230000px;}
.y60{bottom:315.210000px;}
.y82{bottom:324.210000px;}
.y28{bottom:327.990000px;}
.yc8{bottom:331.590000px;}
.y118{bottom:333.210000px;}
.y5f{bottom:335.010000px;}
.yfa{bottom:341.310000px;}
.y81{bottom:344.010000px;}
.y27{bottom:347.970000px;}
.yc7{bottom:351.390000px;}
.y117{bottom:353.010000px;}
.y5e{bottom:354.810000px;}
.yf9{bottom:361.830000px;}
.y80{bottom:363.810000px;}
.y26{bottom:367.770000px;}
.yc6{bottom:371.370000px;}
.y116{bottom:372.810000px;}
.y5d{bottom:374.610000px;}
.yf8{bottom:382.530000px;}
.y7f{bottom:383.610000px;}
.y25{bottom:387.570000px;}
.yc5{bottom:391.170000px;}
.y115{bottom:392.610000px;}
.y5c{bottom:394.410000px;}
.y7e{bottom:403.410000px;}
.y24{bottom:407.370000px;}
.yf7{bottom:408.090000px;}
.yc4{bottom:410.970000px;}
.y114{bottom:412.410000px;}
.y5b{bottom:414.390000px;}
.y7d{bottom:423.390000px;}
.y23{bottom:427.170000px;}
.yf6{bottom:427.890000px;}
.yc3{bottom:430.770000px;}
.y113{bottom:432.390000px;}
.y5a{bottom:443.190000px;}
.y22{bottom:447.195000px;}
.yf5{bottom:447.735000px;}
.yc2{bottom:450.615000px;}
.y112{bottom:452.235000px;}
.y59{bottom:463.035000px;}
.y21{bottom:466.995000px;}
.yf4{bottom:467.715000px;}
.yc1{bottom:470.595000px;}
.y111{bottom:472.035000px;}
.y58{bottom:482.835000px;}
.y20{bottom:486.795000px;}
.yf3{bottom:487.515000px;}
.yc0{bottom:490.395000px;}
.y110{bottom:491.835000px;}
.y57{bottom:502.635000px;}
.y1f{bottom:506.595000px;}
.yf2{bottom:507.315000px;}
.ybf{bottom:510.195000px;}
.y10f{bottom:511.635000px;}
.y56{bottom:522.615000px;}
.y1e{bottom:526.395000px;}
.yf1{bottom:527.115000px;}
.ybe{bottom:529.995000px;}
.y10e{bottom:531.615000px;}
.yf0{bottom:541.155000px;}
.y55{bottom:542.415000px;}
.y1d{bottom:546.375000px;}
.ybd{bottom:549.795000px;}
.y10d{bottom:551.415000px;}
.yef{bottom:561.855000px;}
.y54{bottom:562.215000px;}
.y1c{bottom:566.175000px;}
.ybc{bottom:569.775000px;}
.y98{bottom:570.675000px;}
.y10c{bottom:571.215000px;}
.y53{bottom:582.015000px;}
.yee{bottom:582.375000px;}
.y1b{bottom:585.975000px;}
.ybb{bottom:589.575000px;}
.y10b{bottom:591.015000px;}
.y52{bottom:601.815000px;}
.y1a{bottom:605.775000px;}
.yba{bottom:609.375000px;}
.y10a{bottom:610.815000px;}
.y51{bottom:621.795000px;}
.yed{bottom:622.875000px;}
.y19{bottom:627.915000px;}
.yb9{bottom:629.175000px;}
.y109{bottom:630.795000px;}
.y50{bottom:641.595000px;}
.y8f{bottom:641.775000px;}
.yec{bottom:643.395000px;}
.y18{bottom:647.715000px;}
.yb8{bottom:648.975000px;}
.y95{bottom:649.155000px;}
.y108{bottom:650.595000px;}
.y4f{bottom:661.395000px;}
.yb7{bottom:668.955000px;}
.y107{bottom:670.395000px;}
.y17{bottom:676.515000px;}
.y9d{bottom:678.315000px;}
.y7c{bottom:681.225000px;}
.yb6{bottom:688.785000px;}
.y4e{bottom:690.225000px;}
.y16{bottom:696.345000px;}
.y7b{bottom:701.025000px;}
.yb5{bottom:708.585000px;}
.yeb{bottom:708.765000px;}
.y4d{bottom:710.025000px;}
.y15{bottom:716.325000px;}
.y7a{bottom:721.005000px;}
.y92{bottom:726.945000px;}
.yb4{bottom:728.385000px;}
.yea{bottom:728.565000px;}
.y4c{bottom:730.005000px;}
.y14{bottom:736.125000px;}
.y79{bottom:740.805000px;}
.yb3{bottom:748.185000px;}
.ye9{bottom:748.365000px;}
.y4b{bottom:749.805000px;}
.y13{bottom:755.925000px;}
.y78{bottom:760.605000px;}
.ye8{bottom:762.405000px;}
.yb2{bottom:768.165000px;}
.y4a{bottom:769.605000px;}
.y12{bottom:775.725000px;}
.y77{bottom:780.405000px;}
.ye7{bottom:782.925000px;}
.yb1{bottom:787.965000px;}
.y49{bottom:789.405000px;}
.y9b{bottom:792.825000px;}
.y11{bottom:795.525000px;}
.y76{bottom:800.205000px;}
.ye6{bottom:803.625000px;}
.yb0{bottom:807.765000px;}
.y48{bottom:809.205000px;}
.y10{bottom:815.505000px;}
.y75{bottom:820.185000px;}
.yaf{bottom:827.565000px;}
.y47{bottom:829.185000px;}
.yf{bottom:835.305000px;}
.y74{bottom:839.985000px;}
.ye5{bottom:843.945000px;}
.yae{bottom:847.365000px;}
.y46{bottom:848.985000px;}
.ye{bottom:855.105000px;}
.y73{bottom:859.785000px;}
.ye4{bottom:864.645000px;}
.yad{bottom:867.345000px;}
.y45{bottom:868.785000px;}
.yd{bottom:877.245000px;}
.y72{bottom:879.585000px;}
.yac{bottom:887.145000px;}
.y44{bottom:888.585000px;}
.ye3{bottom:890.205000px;}
.y71{bottom:899.385000px;}
.y9f{bottom:901.905000px;}
.yc{bottom:902.265000px;}
.y43{bottom:908.385000px;}
.ye2{bottom:910.005000px;}
.y70{bottom:919.410000px;}
.yb{bottom:922.110000px;}
.y42{bottom:928.410000px;}
.ye1{bottom:930.030000px;}
.ya{bottom:937.230000px;}
.y6f{bottom:939.210000px;}
.y41{bottom:948.210000px;}
.ye0{bottom:949.830000px;}
.y9{bottom:958.650000px;}
.y6e{bottom:959.010000px;}
.y40{bottom:968.010000px;}
.ydf{bottom:969.630000px;}
.y6d{bottom:978.810000px;}
.y8{bottom:982.050000px;}
.y3f{bottom:987.810000px;}
.yde{bottom:989.430000px;}
.y6c{bottom:998.610000px;}
.y3e{bottom:1007.610000px;}
.ydd{bottom:1009.230000px;}
.y7{bottom:1013.730000px;}
.y3d{bottom:1027.590000px;}
.ydc{bottom:1029.210000px;}
.ydb{bottom:1043.250000px;}
.y3c{bottom:1047.390000px;}
.y5{bottom:1052.250000px;}
.yda{bottom:1063.770000px;}
.y3b{bottom:1067.190000px;}
.y4{bottom:1083.030000px;}
.y3a{bottom:1086.990000px;}
.yd8{bottom:1092.030000px;}
.y39{bottom:1106.790000px;}
.y3{bottom:1113.810000px;}
.yd7{bottom:1120.110000px;}
.y38{bottom:1126.770000px;}
.yd6{bottom:1140.810000px;}
.y2{bottom:1144.590000px;}
.y37{bottom:1146.570000px;}
.y36{bottom:1174.140000px;}
.y1{bottom:1178.640000px;}
.y35{bottom:1194.300000px;}
.h21{height:2.082656px;}
.h11{height:14.400000px;}
.h12{height:18.396000px;}
.hb{height:19.800000px;}
.h1a{height:19.836000px;}
.h1c{height:19.980000px;}
.h14{height:20.520000px;}
.h17{height:21.060000px;}
.h15{height:21.960000px;}
.h19{height:21.996000px;}
.h1b{height:27.360000px;}
.h7{height:28.115859px;}
.h1d{height:39.600000px;}
.he{height:39.960000px;}
.h10{height:41.040000px;}
.hf{height:41.796000px;}
.h5{height:42.164648px;}
.h8{height:43.215117px;}
.h9{height:43.506914px;}
.h18{height:43.740000px;}
.h3{height:46.736719px;}
.h1f{height:47.340000px;}
.h4{height:47.901094px;}
.h16{height:49.255313px;}
.h1e{height:52.925625px;}
.hd{height:52.956000px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.hc{height:79.380000px;}
.h20{height:84.276000px;}
.h13{height:258.015000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wa{width:42.480000px;}
.w13{width:61.920000px;}
.w19{width:65.916000px;}
.w16{width:66.600000px;}
.w17{width:66.636000px;}
.w18{width:66.780000px;}
.w15{width:66.816000px;}
.w14{width:69.480000px;}
.w21{width:71.136000px;}
.w1f{width:72.540000px;}
.w1e{width:72.576000px;}
.w20{width:72.720000px;}
.w1c{width:74.196000px;}
.w1d{width:75.600000px;}
.w27{width:79.920000px;}
.w24{width:79.956000px;}
.w28{width:80.136000px;}
.w26{width:80.856000px;}
.w2a{width:81.036000px;}
.w25{width:82.260000px;}
.w29{width:82.980000px;}
.w6{width:102.960000px;}
.w23{width:103.500000px;}
.w1b{width:110.520000px;}
.w4{width:113.940000px;}
.w7{width:117.180000px;}
.w8{width:119.880000px;}
.wf{width:124.956000px;}
.wd{width:126.756000px;}
.we{width:128.556000px;}
.wc{width:139.860000px;}
.w5{width:148.176000px;}
.w12{width:157.710000px;}
.w10{width:186.150000px;}
.w9{width:196.050000px;}
.w2b{width:210.855000px;}
.w3{width:224.535000px;}
.w2c{width:580.965000px;}
.w22{width:676.770000px;}
.w11{width:695.130000px;}
.w1a{width:701.430000px;}
.wb{width:709.890000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x13{left:10.800000px;}
.xd{left:18.900000px;}
.x10{left:20.340000px;}
.x11{left:21.960000px;}
.xf{left:27.900000px;}
.xa{left:28.974000px;}
.xc{left:30.060000px;}
.x15{left:34.740000px;}
.x1{left:54.179987px;}
.x3{left:56.159987px;}
.x33{left:72.899987px;}
.x17{left:91.476000px;}
.x16{left:95.075987px;}
.x1c{left:98.856000px;}
.x34{left:99.935987px;}
.x2{left:108.035987px;}
.x9{left:145.296000px;}
.x35{left:191.370000px;}
.x25{left:207.210000px;}
.x5{left:208.290000px;}
.x2d{left:212.610000px;}
.x18{left:232.410000px;}
.x1d{left:257.655000px;}
.x36{left:264.855000px;}
.x26{left:282.315000px;}
.x2e{left:293.295000px;}
.x14{left:319.215000px;}
.x1e{left:320.295000px;}
.x27{left:358.815000px;}
.x19{left:359.895000px;}
.x4{left:363.854987px;}
.x2f{left:376.275000px;}
.x12{left:385.275000px;}
.x1f{left:390.495000px;}
.xe{left:419.685000px;}
.xb{left:423.105000px;}
.x28{left:432.105000px;}
.x7{left:433.545000px;}
.x20{left:458.025000px;}
.x1a{left:489.165000px;}
.x29{left:505.365000px;}
.x21{left:525.525000px;}
.x30{left:538.665000px;}
.x8{left:548.205000px;}
.x2a{left:578.805000px;}
.x22{left:592.890000px;}
.x1b{left:614.850000px;}
.x31{left:619.530000px;}
.x2b{left:652.110000px;}
.x23{left:660.390000px;}
.x32{left:703.230000px;}
.x2c{left:725.550000px;}
.x24{left:727.710000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016640pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183680pt;}
.ls1a{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.233067pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.454933pt;}
.ls6{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:10.192640pt;}
.ls15{letter-spacing:10.320640pt;}
.ls10{letter-spacing:34.640640pt;}
.ls1b{letter-spacing:37.072640pt;}
.ls19{letter-spacing:41.680640pt;}
.ls16{letter-spacing:51.280640pt;}
.ls1{letter-spacing:55.760640pt;}
.ws3{word-spacing:-21.263360pt;}
.ws1{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsc{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws11{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.592000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._8{margin-left:-7.948800pt;}
._1b{margin-left:-5.143680pt;}
._9{margin-left:-3.876053pt;}
._7{margin-left:-2.099413pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.014080pt;}
._d{width:3.760427pt;}
._12{width:4.736640pt;}
._11{width:5.843200pt;}
._a{width:7.575680pt;}
._b{width:8.526293pt;}
._16{width:9.676800pt;}
._10{width:10.898560pt;}
._15{width:12.044160pt;}
._19{width:14.332800pt;}
._e{width:15.307520pt;}
._f{width:16.254720pt;}
._1a{width:17.650133pt;}
._20{width:20.398080pt;}
._17{width:21.894400pt;}
._18{width:22.832640pt;}
._13{width:24.529067pt;}
._14{width:26.484907pt;}
._1c{width:31.872000pt;}
._1d{width:33.489493pt;}
._1f{width:37.681067pt;}
._1e{width:38.733440pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:0.320000pt;}
.y9e{bottom:3.866667pt;}
.y8a{bottom:5.120000pt;}
.y94{bottom:5.280000pt;}
.y9a{bottom:5.760000pt;}
.y97{bottom:6.080000pt;}
.ycd{bottom:6.240000pt;}
.ycb{bottom:7.040000pt;}
.ycf{bottom:8.800000pt;}
.y12a{bottom:9.440000pt;}
.y91{bottom:11.040000pt;}
.yd9{bottom:11.840000pt;}
.yfd{bottom:12.000000pt;}
.y93{bottom:20.640000pt;}
.y99{bottom:21.120000pt;}
.y96{bottom:21.440000pt;}
.y8e{bottom:22.720000pt;}
.yab{bottom:22.760000pt;}
.y90{bottom:26.400000pt;}
.y129{bottom:27.040000pt;}
.yfc{bottom:29.600000pt;}
.y126{bottom:30.880000pt;}
.y8d{bottom:40.480000pt;}
.yaa{bottom:40.520000pt;}
.y128{bottom:44.800000pt;}
.y6{bottom:52.960000pt;}
.y8c{bottom:58.080000pt;}
.ya9{bottom:58.120000pt;}
.y127{bottom:62.400000pt;}
.ya8{bottom:75.720000pt;}
.y6b{bottom:78.080000pt;}
.y34{bottom:80.000000pt;}
.y124{bottom:84.480000pt;}
.y8b{bottom:87.680000pt;}
.yd5{bottom:89.120000pt;}
.ya7{bottom:93.320000pt;}
.y6a{bottom:95.840000pt;}
.y33{bottom:97.600000pt;}
.y123{bottom:102.080000pt;}
.y106{bottom:106.400000pt;}
.yd4{bottom:106.720000pt;}
.ya6{bottom:110.920000pt;}
.y69{bottom:113.440000pt;}
.y32{bottom:115.200000pt;}
.y125{bottom:116.960000pt;}
.y122{bottom:119.840000pt;}
.y105{bottom:124.000000pt;}
.yd3{bottom:124.480000pt;}
.ya5{bottom:128.680000pt;}
.y68{bottom:131.040000pt;}
.y31{bottom:132.960000pt;}
.y121{bottom:137.440000pt;}
.y104{bottom:141.600000pt;}
.yd2{bottom:142.080000pt;}
.ya4{bottom:146.280000pt;}
.y67{bottom:148.640000pt;}
.y30{bottom:150.560000pt;}
.y120{bottom:155.040000pt;}
.y89{bottom:158.880000pt;}
.y103{bottom:159.360000pt;}
.yd1{bottom:159.680000pt;}
.ya3{bottom:163.880000pt;}
.y66{bottom:166.240000pt;}
.y2f{bottom:168.160000pt;}
.yd0{bottom:172.160000pt;}
.y11f{bottom:172.640000pt;}
.y102{bottom:176.960000pt;}
.ya2{bottom:181.480000pt;}
.y88{bottom:182.240000pt;}
.y65{bottom:184.000000pt;}
.y2e{bottom:185.760000pt;}
.y11e{bottom:190.266667pt;}
.yce{bottom:192.346667pt;}
.y101{bottom:194.586667pt;}
.ya1{bottom:199.080000pt;}
.y87{bottom:200.026667pt;}
.y64{bottom:201.626667pt;}
.y2d{bottom:203.386667pt;}
.y11d{bottom:208.026667pt;}
.y100{bottom:212.186667pt;}
.ya0{bottom:216.840000pt;}
.y86{bottom:217.626667pt;}
.y63{bottom:219.226667pt;}
.y2c{bottom:221.146667pt;}
.y11c{bottom:225.626667pt;}
.yff{bottom:229.786667pt;}
.ycc{bottom:231.866667pt;}
.y85{bottom:235.226667pt;}
.y2b{bottom:238.746667pt;}
.yfe{bottom:242.266667pt;}
.y11b{bottom:243.226667pt;}
.y62{bottom:244.826667pt;}
.yca{bottom:251.226667pt;}
.y84{bottom:252.826667pt;}
.y2a{bottom:256.346667pt;}
.yfb{bottom:260.666667pt;}
.y11a{bottom:260.826667pt;}
.y61{bottom:262.426667pt;}
.y83{bottom:270.426667pt;}
.yc9{bottom:271.386667pt;}
.y29{bottom:273.946667pt;}
.y119{bottom:278.426667pt;}
.y60{bottom:280.186667pt;}
.y82{bottom:288.186667pt;}
.y28{bottom:291.546667pt;}
.yc8{bottom:294.746667pt;}
.y118{bottom:296.186667pt;}
.y5f{bottom:297.786667pt;}
.yfa{bottom:303.386667pt;}
.y81{bottom:305.786667pt;}
.y27{bottom:309.306667pt;}
.yc7{bottom:312.346667pt;}
.y117{bottom:313.786667pt;}
.y5e{bottom:315.386667pt;}
.yf9{bottom:321.626667pt;}
.y80{bottom:323.386667pt;}
.y26{bottom:326.906667pt;}
.yc6{bottom:330.106667pt;}
.y116{bottom:331.386667pt;}
.y5d{bottom:332.986667pt;}
.yf8{bottom:340.026667pt;}
.y7f{bottom:340.986667pt;}
.y25{bottom:344.506667pt;}
.yc5{bottom:347.706667pt;}
.y115{bottom:348.986667pt;}
.y5c{bottom:350.586667pt;}
.y7e{bottom:358.586667pt;}
.y24{bottom:362.106667pt;}
.yf7{bottom:362.746667pt;}
.yc4{bottom:365.306667pt;}
.y114{bottom:366.586667pt;}
.y5b{bottom:368.346667pt;}
.y7d{bottom:376.346667pt;}
.y23{bottom:379.706667pt;}
.yf6{bottom:380.346667pt;}
.yc3{bottom:382.906667pt;}
.y113{bottom:384.346667pt;}
.y5a{bottom:393.946667pt;}
.y22{bottom:397.506667pt;}
.yf5{bottom:397.986667pt;}
.yc2{bottom:400.546667pt;}
.y112{bottom:401.986667pt;}
.y59{bottom:411.586667pt;}
.y21{bottom:415.106667pt;}
.yf4{bottom:415.746667pt;}
.yc1{bottom:418.306667pt;}
.y111{bottom:419.586667pt;}
.y58{bottom:429.186667pt;}
.y20{bottom:432.706667pt;}
.yf3{bottom:433.346667pt;}
.yc0{bottom:435.906667pt;}
.y110{bottom:437.186667pt;}
.y57{bottom:446.786667pt;}
.y1f{bottom:450.306667pt;}
.yf2{bottom:450.946667pt;}
.ybf{bottom:453.506667pt;}
.y10f{bottom:454.786667pt;}
.y56{bottom:464.546667pt;}
.y1e{bottom:467.906667pt;}
.yf1{bottom:468.546667pt;}
.ybe{bottom:471.106667pt;}
.y10e{bottom:472.546667pt;}
.yf0{bottom:481.026667pt;}
.y55{bottom:482.146667pt;}
.y1d{bottom:485.666667pt;}
.ybd{bottom:488.706667pt;}
.y10d{bottom:490.146667pt;}
.yef{bottom:499.426667pt;}
.y54{bottom:499.746667pt;}
.y1c{bottom:503.266667pt;}
.ybc{bottom:506.466667pt;}
.y98{bottom:507.266667pt;}
.y10c{bottom:507.746667pt;}
.y53{bottom:517.346667pt;}
.yee{bottom:517.666667pt;}
.y1b{bottom:520.866667pt;}
.ybb{bottom:524.066667pt;}
.y10b{bottom:525.346667pt;}
.y52{bottom:534.946667pt;}
.y1a{bottom:538.466667pt;}
.yba{bottom:541.666667pt;}
.y10a{bottom:542.946667pt;}
.y51{bottom:552.706667pt;}
.yed{bottom:553.666667pt;}
.y19{bottom:558.146667pt;}
.yb9{bottom:559.266667pt;}
.y109{bottom:560.706667pt;}
.y50{bottom:570.306667pt;}
.y8f{bottom:570.466667pt;}
.yec{bottom:571.906667pt;}
.y18{bottom:575.746667pt;}
.yb8{bottom:576.866667pt;}
.y95{bottom:577.026667pt;}
.y108{bottom:578.306667pt;}
.y4f{bottom:587.906667pt;}
.yb7{bottom:594.626667pt;}
.y107{bottom:595.906667pt;}
.y17{bottom:601.346667pt;}
.y9d{bottom:602.946667pt;}
.y7c{bottom:605.533333pt;}
.yb6{bottom:612.253333pt;}
.y4e{bottom:613.533333pt;}
.y16{bottom:618.973333pt;}
.y7b{bottom:623.133333pt;}
.yb5{bottom:629.853333pt;}
.yeb{bottom:630.013333pt;}
.y4d{bottom:631.133333pt;}
.y15{bottom:636.733333pt;}
.y7a{bottom:640.893333pt;}
.y92{bottom:646.173333pt;}
.yb4{bottom:647.453333pt;}
.yea{bottom:647.613333pt;}
.y4c{bottom:648.893333pt;}
.y14{bottom:654.333333pt;}
.y79{bottom:658.493333pt;}
.yb3{bottom:665.053333pt;}
.ye9{bottom:665.213333pt;}
.y4b{bottom:666.493333pt;}
.y13{bottom:671.933333pt;}
.y78{bottom:676.093333pt;}
.ye8{bottom:677.693333pt;}
.yb2{bottom:682.813333pt;}
.y4a{bottom:684.093333pt;}
.y12{bottom:689.533333pt;}
.y77{bottom:693.693333pt;}
.ye7{bottom:695.933333pt;}
.yb1{bottom:700.413333pt;}
.y49{bottom:701.693333pt;}
.y9b{bottom:704.733333pt;}
.y11{bottom:707.133333pt;}
.y76{bottom:711.293333pt;}
.ye6{bottom:714.333333pt;}
.yb0{bottom:718.013333pt;}
.y48{bottom:719.293333pt;}
.y10{bottom:724.893333pt;}
.y75{bottom:729.053333pt;}
.yaf{bottom:735.613333pt;}
.y47{bottom:737.053333pt;}
.yf{bottom:742.493333pt;}
.y74{bottom:746.653333pt;}
.ye5{bottom:750.173333pt;}
.yae{bottom:753.213333pt;}
.y46{bottom:754.653333pt;}
.ye{bottom:760.093333pt;}
.y73{bottom:764.253333pt;}
.ye4{bottom:768.573333pt;}
.yad{bottom:770.973333pt;}
.y45{bottom:772.253333pt;}
.yd{bottom:779.773333pt;}
.y72{bottom:781.853333pt;}
.yac{bottom:788.573333pt;}
.y44{bottom:789.853333pt;}
.ye3{bottom:791.293333pt;}
.y71{bottom:799.453333pt;}
.y9f{bottom:801.693333pt;}
.yc{bottom:802.013333pt;}
.y43{bottom:807.453333pt;}
.ye2{bottom:808.893333pt;}
.y70{bottom:817.253333pt;}
.yb{bottom:819.653333pt;}
.y42{bottom:825.253333pt;}
.ye1{bottom:826.693333pt;}
.ya{bottom:833.093333pt;}
.y6f{bottom:834.853333pt;}
.y41{bottom:842.853333pt;}
.ye0{bottom:844.293333pt;}
.y9{bottom:852.133333pt;}
.y6e{bottom:852.453333pt;}
.y40{bottom:860.453333pt;}
.ydf{bottom:861.893333pt;}
.y6d{bottom:870.053333pt;}
.y8{bottom:872.933333pt;}
.y3f{bottom:878.053333pt;}
.yde{bottom:879.493333pt;}
.y6c{bottom:887.653333pt;}
.y3e{bottom:895.653333pt;}
.ydd{bottom:897.093333pt;}
.y7{bottom:901.093333pt;}
.y3d{bottom:913.413333pt;}
.ydc{bottom:914.853333pt;}
.ydb{bottom:927.333333pt;}
.y3c{bottom:931.013333pt;}
.y5{bottom:935.333333pt;}
.yda{bottom:945.573333pt;}
.y3b{bottom:948.613333pt;}
.y4{bottom:962.693333pt;}
.y3a{bottom:966.213333pt;}
.yd8{bottom:970.693333pt;}
.y39{bottom:983.813333pt;}
.y3{bottom:990.053333pt;}
.yd7{bottom:995.653333pt;}
.y38{bottom:1001.573333pt;}
.yd6{bottom:1014.053333pt;}
.y2{bottom:1017.413333pt;}
.y37{bottom:1019.173333pt;}
.y36{bottom:1043.680000pt;}
.y1{bottom:1047.680000pt;}
.y35{bottom:1061.600000pt;}
.h21{height:1.851250pt;}
.h11{height:12.800000pt;}
.h12{height:16.352000pt;}
.hb{height:17.600000pt;}
.h1a{height:17.632000pt;}
.h1c{height:17.760000pt;}
.h14{height:18.240000pt;}
.h17{height:18.720000pt;}
.h15{height:19.520000pt;}
.h19{height:19.552000pt;}
.h1b{height:24.320000pt;}
.h7{height:24.991875pt;}
.h1d{height:35.200000pt;}
.he{height:35.520000pt;}
.h10{height:36.480000pt;}
.hf{height:37.152000pt;}
.h5{height:37.479688pt;}
.h8{height:38.413438pt;}
.h9{height:38.672812pt;}
.h18{height:38.880000pt;}
.h3{height:41.543750pt;}
.h1f{height:42.080000pt;}
.h4{height:42.578750pt;}
.h16{height:43.782500pt;}
.h1e{height:47.045000pt;}
.hd{height:47.072000pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.hc{height:70.560000pt;}
.h20{height:74.912000pt;}
.h13{height:229.346667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wa{width:37.760000pt;}
.w13{width:55.040000pt;}
.w19{width:58.592000pt;}
.w16{width:59.200000pt;}
.w17{width:59.232000pt;}
.w18{width:59.360000pt;}
.w15{width:59.392000pt;}
.w14{width:61.760000pt;}
.w21{width:63.232000pt;}
.w1f{width:64.480000pt;}
.w1e{width:64.512000pt;}
.w20{width:64.640000pt;}
.w1c{width:65.952000pt;}
.w1d{width:67.200000pt;}
.w27{width:71.040000pt;}
.w24{width:71.072000pt;}
.w28{width:71.232000pt;}
.w26{width:71.872000pt;}
.w2a{width:72.032000pt;}
.w25{width:73.120000pt;}
.w29{width:73.760000pt;}
.w6{width:91.520000pt;}
.w23{width:92.000000pt;}
.w1b{width:98.240000pt;}
.w4{width:101.280000pt;}
.w7{width:104.160000pt;}
.w8{width:106.560000pt;}
.wf{width:111.072000pt;}
.wd{width:112.672000pt;}
.we{width:114.272000pt;}
.wc{width:124.320000pt;}
.w5{width:131.712000pt;}
.w12{width:140.186667pt;}
.w10{width:165.466667pt;}
.w9{width:174.266667pt;}
.w2b{width:187.426667pt;}
.w3{width:199.586667pt;}
.w2c{width:516.413333pt;}
.w22{width:601.573333pt;}
.w11{width:617.893333pt;}
.w1a{width:623.493333pt;}
.wb{width:631.013333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x13{left:9.600000pt;}
.xd{left:16.800000pt;}
.x10{left:18.080000pt;}
.x11{left:19.520000pt;}
.xf{left:24.800000pt;}
.xa{left:25.754667pt;}
.xc{left:26.720000pt;}
.x15{left:30.880000pt;}
.x1{left:48.159988pt;}
.x3{left:49.919988pt;}
.x33{left:64.799988pt;}
.x17{left:81.312000pt;}
.x16{left:84.511988pt;}
.x1c{left:87.872000pt;}
.x34{left:88.831988pt;}
.x2{left:96.031988pt;}
.x9{left:129.152000pt;}
.x35{left:170.106667pt;}
.x25{left:184.186667pt;}
.x5{left:185.146667pt;}
.x2d{left:188.986667pt;}
.x18{left:206.586667pt;}
.x1d{left:229.026667pt;}
.x36{left:235.426667pt;}
.x26{left:250.946667pt;}
.x2e{left:260.706667pt;}
.x14{left:283.746667pt;}
.x1e{left:284.706667pt;}
.x27{left:318.946667pt;}
.x19{left:319.906667pt;}
.x4{left:323.426655pt;}
.x2f{left:334.466667pt;}
.x12{left:342.466667pt;}
.x1f{left:347.106667pt;}
.xe{left:373.053333pt;}
.xb{left:376.093333pt;}
.x28{left:384.093333pt;}
.x7{left:385.373333pt;}
.x20{left:407.133333pt;}
.x1a{left:434.813333pt;}
.x29{left:449.213333pt;}
.x21{left:467.133333pt;}
.x30{left:478.813333pt;}
.x8{left:487.293333pt;}
.x2a{left:514.493333pt;}
.x22{left:527.013333pt;}
.x1b{left:546.533333pt;}
.x31{left:550.693333pt;}
.x2b{left:579.653333pt;}
.x23{left:587.013333pt;}
.x32{left:625.093333pt;}
.x2c{left:644.933333pt;}
.x24{left:646.853333pt;}
}




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