
    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_9ec7f835c1f4432dae46e191.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dda1ab8d55bc30b5e8c41457.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5da9f8d8f1f65020a9173f21.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4e4ddf12eb4f7f7f058799d5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a060c996ef526ebc85f82d2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffa{font-family:ffa;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(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.085440px;}
.lse{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.lsd{letter-spacing:11.466720px;}
.ls15{letter-spacing:12.906720px;}
.lsb{letter-spacing:15.066720px;}
.ls11{letter-spacing:16.506720px;}
.ls16{letter-spacing:17.226720px;}
.ls4{letter-spacing:26.586720px;}
.lsf{letter-spacing:42.426720px;}
.ls10{letter-spacing:46.026720px;}
.ls13{letter-spacing:50.346720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.080000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._2c{margin-left:-6.035760px;}
._2e{margin-left:-2.928240px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._5{width:2.290560px;}
._6{width:4.242960px;}
._8{width:5.374320px;}
._7{width:6.611520px;}
._9{width:8.426160px;}
._c{width:9.942480px;}
._b{width:11.033280px;}
._a{width:12.967920px;}
._d{width:16.673040px;}
._4{width:18.098640px;}
._17{width:19.390560px;}
._f{width:20.423760px;}
._e{width:21.838800px;}
._11{width:23.127120px;}
._14{width:25.099200px;}
._15{width:26.892000px;}
._13{width:28.206720px;}
._12{width:29.282400px;}
._18{width:31.194720px;}
._1c{width:33.107040px;}
._1d{width:34.286880px;}
._25{width:36.035280px;}
._1b{width:37.801440px;}
._1a{width:39.262320px;}
._16{width:40.397760px;}
._10{width:41.712480px;}
._19{width:43.385760px;}
._26{width:44.848080px;}
._20{width:45.955440px;}
._29{width:47.090880px;}
._1f{width:48.584880px;}
._21{width:50.198400px;}
._22{width:51.333840px;}
._2a{width:53.425440px;}
._1e{width:55.576800px;}
._23{width:56.652480px;}
._2b{width:58.624560px;}
._33{width:59.640480px;}
._34{width:60.801120px;}
._24{width:63.763920px;}
._2{width:64.800000px;}
._2f{width:69.739920px;}
._39{width:70.815600px;}
._3d{width:73.445040px;}
._30{width:74.460960px;}
._32{width:77.269680px;}
._31{width:78.345360px;}
._35{width:79.899120px;}
._37{width:81.333360px;}
._36{width:82.349280px;}
._3c{width:83.604240px;}
._3b{width:84.978720px;}
._40{width:87.130080px;}
._3a{width:89.341200px;}
._3f{width:103.803120px;}
._38{width:104.998320px;}
._28{width:106.313040px;}
._27{width:107.388720px;}
._3e{width:109.301040px;}
._2d{width:163.414560px;}
._3{width:674.100000px;}
.fc3{color:rgb(24,23,23);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.yf4{bottom:5.805000px;}
.y2a{bottom:5.940000px;}
.y11{bottom:6.480000px;}
.y8{bottom:7.920000px;}
.ye7{bottom:8.280000px;}
.y1b{bottom:8.820000px;}
.ye8{bottom:10.800000px;}
.yd{bottom:25.560000px;}
.yee{bottom:25.590000px;}
.y29{bottom:25.740000px;}
.y2{bottom:26.820000px;}
.y7{bottom:27.720000px;}
.yec{bottom:45.360000px;}
.y13{bottom:45.540000px;}
.y6{bottom:47.520000px;}
.yc{bottom:54.360000px;}
.yea{bottom:55.800000px;}
.y10{bottom:59.580000px;}
.y28{bottom:65.340000px;}
.y5{bottom:69.660000px;}
.yb{bottom:74.340000px;}
.y27{bottom:85.170000px;}
.y92{bottom:86.580000px;}
.yd4{bottom:95.220000px;}
.y79{bottom:95.580000px;}
.y41{bottom:97.020000px;}
.y102{bottom:97.380000px;}
.y4{bottom:97.590000px;}
.ya{bottom:103.170000px;}
.y26{bottom:105.150000px;}
.y91{bottom:106.380000px;}
.y101{bottom:107.820000px;}
.yd3{bottom:115.020000px;}
.y78{bottom:115.380000px;}
.y40{bottom:116.820000px;}
.ya8{bottom:117.180000px;}
.y9{bottom:122.970000px;}
.y25{bottom:124.950000px;}
.y90{bottom:126.180000px;}
.y3{bottom:131.970000px;}
.yd2{bottom:134.820000px;}
.y77{bottom:135.180000px;}
.y3f{bottom:136.620000px;}
.ya7{bottom:136.980000px;}
.y24{bottom:144.750000px;}
.y8f{bottom:145.980000px;}
.yd1{bottom:154.650000px;}
.y76{bottom:155.010000px;}
.y3e{bottom:156.450000px;}
.ya6{bottom:156.990000px;}
.y23{bottom:164.550000px;}
.y100{bottom:165.450000px;}
.y8e{bottom:165.990000px;}
.yd0{bottom:174.450000px;}
.y75{bottom:174.990000px;}
.y3d{bottom:176.250000px;}
.ya5{bottom:176.790000px;}
.y22{bottom:184.350000px;}
.yff{bottom:185.250000px;}
.y8d{bottom:185.790000px;}
.y74{bottom:194.790000px;}
.y3c{bottom:196.230000px;}
.ya4{bottom:196.590000px;}
.ycf{bottom:203.430000px;}
.y21{bottom:204.330000px;}
.yfe{bottom:205.050000px;}
.y8c{bottom:205.590000px;}
.y73{bottom:214.590000px;}
.y3b{bottom:216.030000px;}
.ya3{bottom:216.390000px;}
.yce{bottom:223.230000px;}
.y20{bottom:224.130000px;}
.yfd{bottom:225.030000px;}
.y8b{bottom:225.390000px;}
.y72{bottom:234.390000px;}
.y3a{bottom:235.830000px;}
.ya2{bottom:236.190000px;}
.ycd{bottom:243.030000px;}
.y1f{bottom:243.930000px;}
.yfc{bottom:244.830000px;}
.y8a{bottom:245.190000px;}
.y71{bottom:254.190000px;}
.y39{bottom:255.630000px;}
.ya1{bottom:256.170000px;}
.ycc{bottom:262.830000px;}
.y1e{bottom:263.730000px;}
.yfb{bottom:264.630000px;}
.y89{bottom:265.170000px;}
.y70{bottom:274.170000px;}
.y38{bottom:275.430000px;}
.ya0{bottom:275.970000px;}
.ycb{bottom:282.630000px;}
.y1d{bottom:283.530000px;}
.yfa{bottom:284.430000px;}
.y88{bottom:284.970000px;}
.y6f{bottom:293.970000px;}
.y37{bottom:295.410000px;}
.yca{bottom:302.610000px;}
.yf9{bottom:304.230000px;}
.y87{bottom:304.770000px;}
.y6e{bottom:313.770000px;}
.y36{bottom:315.210000px;}
.yc9{bottom:322.410000px;}
.yf8{bottom:324.210000px;}
.y86{bottom:324.570000px;}
.y6d{bottom:333.570000px;}
.y35{bottom:335.010000px;}
.yc8{bottom:342.210000px;}
.yf7{bottom:344.010000px;}
.y85{bottom:344.370000px;}
.y6c{bottom:353.370000px;}
.y34{bottom:354.810000px;}
.yc7{bottom:362.010000px;}
.yf6{bottom:363.810000px;}
.y84{bottom:364.350000px;}
.y6b{bottom:373.350000px;}
.y33{bottom:374.610000px;}
.yf5{bottom:383.610000px;}
.y83{bottom:384.150000px;}
.yc6{bottom:390.810000px;}
.y6a{bottom:393.150000px;}
.y32{bottom:394.590000px;}
.yf3{bottom:397.650000px;}
.y82{bottom:403.995000px;}
.yc5{bottom:410.835000px;}
.y69{bottom:412.995000px;}
.y31{bottom:414.435000px;}
.yf2{bottom:418.215000px;}
.y81{bottom:423.795000px;}
.yc4{bottom:430.635000px;}
.y68{bottom:432.795000px;}
.y30{bottom:434.235000px;}
.y80{bottom:443.595000px;}
.yc3{bottom:450.435000px;}
.y67{bottom:452.595000px;}
.y2f{bottom:454.035000px;}
.yf1{bottom:457.995000px;}
.y7f{bottom:463.575000px;}
.yc2{bottom:470.235000px;}
.y66{bottom:472.575000px;}
.y2e{bottom:473.835000px;}
.y7e{bottom:483.375000px;}
.yc1{bottom:490.035000px;}
.y65{bottom:492.375000px;}
.y2d{bottom:493.815000px;}
.y7d{bottom:503.175000px;}
.yc0{bottom:510.015000px;}
.y64{bottom:512.175000px;}
.y2c{bottom:513.615000px;}
.yf0{bottom:517.395000px;}
.y7c{bottom:522.975000px;}
.ybf{bottom:529.815000px;}
.y63{bottom:531.975000px;}
.y7b{bottom:542.775000px;}
.y2b{bottom:548.175000px;}
.ybe{bottom:549.615000px;}
.y62{bottom:551.775000px;}
.yef{bottom:557.175000px;}
.y7a{bottom:562.755000px;}
.y1c{bottom:568.695000px;}
.ybd{bottom:569.415000px;}
.y61{bottom:571.755000px;}
.y9f{bottom:582.555000px;}
.ybc{bottom:589.215000px;}
.y60{bottom:591.555000px;}
.y9e{bottom:602.355000px;}
.ybb{bottom:609.195000px;}
.y5f{bottom:611.355000px;}
.y9d{bottom:622.155000px;}
.yba{bottom:628.995000px;}
.y5e{bottom:631.155000px;}
.yed{bottom:636.555000px;}
.y9c{bottom:641.955000px;}
.yb9{bottom:648.795000px;}
.y5d{bottom:650.985000px;}
.y9b{bottom:661.965000px;}
.yb8{bottom:668.625000px;}
.y5c{bottom:670.965000px;}
.ye9{bottom:676.905000px;}
.y9a{bottom:681.765000px;}
.yb7{bottom:688.425000px;}
.y5b{bottom:690.765000px;}
.y99{bottom:701.565000px;}
.yb6{bottom:708.405000px;}
.y5a{bottom:710.565000px;}
.yeb{bottom:717.405000px;}
.y98{bottom:721.365000px;}
.yb5{bottom:728.205000px;}
.y59{bottom:730.365000px;}
.y97{bottom:741.165000px;}
.yb4{bottom:748.005000px;}
.y58{bottom:750.165000px;}
.y96{bottom:761.145000px;}
.yb3{bottom:767.805000px;}
.y57{bottom:770.145000px;}
.y95{bottom:780.945000px;}
.yb2{bottom:787.605000px;}
.y56{bottom:789.945000px;}
.ye6{bottom:797.505000px;}
.y94{bottom:800.745000px;}
.yb1{bottom:807.585000px;}
.y55{bottom:809.745000px;}
.y93{bottom:820.545000px;}
.yb0{bottom:827.385000px;}
.ye5{bottom:828.105000px;}
.y54{bottom:829.545000px;}
.yaf{bottom:847.185000px;}
.ye4{bottom:847.905000px;}
.y53{bottom:849.345000px;}
.yae{bottom:866.985000px;}
.y1a{bottom:867.165000px;}
.ye3{bottom:867.705000px;}
.y52{bottom:869.325000px;}
.yad{bottom:881.745000px;}
.ye2{bottom:887.505000px;}
.y51{bottom:889.125000px;}
.y19{bottom:896.505000px;}
.yac{bottom:901.590000px;}
.ye1{bottom:907.530000px;}
.y50{bottom:908.970000px;}
.y18{bottom:921.570000px;}
.ye0{bottom:927.330000px;}
.y4f{bottom:928.770000px;}
.y17{bottom:936.690000px;}
.yab{bottom:941.370000px;}
.ydf{bottom:947.130000px;}
.y4e{bottom:948.570000px;}
.y16{bottom:958.110000px;}
.yaa{bottom:961.170000px;}
.yde{bottom:966.930000px;}
.y4d{bottom:968.550000px;}
.y15{bottom:981.510000px;}
.ya9{bottom:981.690000px;}
.ydd{bottom:986.730000px;}
.y4c{bottom:988.350000px;}
.ydc{bottom:1006.710000px;}
.y4b{bottom:1008.150000px;}
.y14{bottom:1013.190000px;}
.ydb{bottom:1026.510000px;}
.y4a{bottom:1027.950000px;}
.yf{bottom:1040.010000px;}
.yda{bottom:1046.310000px;}
.y49{bottom:1047.750000px;}
.yd9{bottom:1061.070000px;}
.y1{bottom:1062.510000px;}
.y48{bottom:1067.730000px;}
.yd8{bottom:1080.870000px;}
.y47{bottom:1087.530000px;}
.yd7{bottom:1100.850000px;}
.y46{bottom:1107.330000px;}
.yd6{bottom:1120.650000px;}
.y45{bottom:1127.130000px;}
.yd5{bottom:1140.450000px;}
.y44{bottom:1146.960000px;}
.y43{bottom:1166.940000px;}
.y42{bottom:1193.400000px;}
.h3{height:2.082656px;}
.h11{height:19.800000px;}
.h15{height:19.836000px;}
.h14{height:19.980000px;}
.ha{height:21.960000px;}
.hf{height:22.860000px;}
.h16{height:24.840000px;}
.hd{height:28.115859px;}
.h1a{height:39.636000px;}
.h13{height:39.780000px;}
.h4{height:42.164648px;}
.h7{height:43.215117px;}
.h18{height:43.302656px;}
.h12{height:43.506914px;}
.h6{height:46.736719px;}
.h8{height:47.901094px;}
.he{height:49.255313px;}
.hb{height:53.224453px;}
.h1b{height:59.400000px;}
.h5{height:59.436914px;}
.h1c{height:59.439023px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h19{height:79.380000px;}
.h17{height:119.880000px;}
.h2{height:146.016000px;}
.h10{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:52.200000px;}
.w12{width:52.776000px;}
.w19{width:52.920000px;}
.w11{width:53.100000px;}
.w16{width:53.136000px;}
.w18{width:53.496000px;}
.w6{width:55.476000px;}
.w13{width:72.000000px;}
.w10{width:84.600000px;}
.w15{width:85.140000px;}
.we{width:85.500000px;}
.w14{width:95.616000px;}
.wc{width:117.036000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.wd{width:159.150000px;}
.wb{width:159.480000px;}
.wf{width:176.250000px;}
.w8{width:192.270000px;}
.w1a{width:366.735000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:745.170000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:5.940000px;}
.x5{left:8.640000px;}
.x27{left:10.080000px;}
.xb{left:45.900000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xd{left:57.600000px;}
.x1d{left:75.239987px;}
.x32{left:80.999987px;}
.x22{left:98.496000px;}
.xc{left:102.096000px;}
.x33{left:108.035987px;}
.x4{left:127.665000px;}
.x8{left:135.585000px;}
.x2{left:147.450000px;}
.x1f{left:148.715987px;}
.x7{left:154.305000px;}
.x10{left:182.370000px;}
.x11{left:192.270000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.xe{left:249.870000px;}
.x23{left:257.970000px;}
.x12{left:259.275000px;}
.x13{left:317.595000px;}
.x14{left:327.315000px;}
.x15{left:393.405000px;}
.x16{left:403.125000px;}
.x17{left:461.625000px;}
.x18{left:471.525000px;}
.x1e{left:473.504987px;}
.x21{left:494.744987px;}
.x34{left:500.504987px;}
.x19{left:501.945000px;}
.x1a{left:511.665000px;}
.x20{left:527.504987px;}
.x24{left:533.985000px;}
.x2a{left:544.245000px;}
.x1b{left:570.030000px;}
.x1c{left:579.750000px;}
.x2e{left:596.445000px;}
.x2b{left:639.870000px;}
.x26{left:648.510000px;}
.x2f{left:649.950000px;}
.x25{left:693.150000px;}
.x9{left:703.050000px;}
.x2c{left:725.010000px;}
.x28{left:733.110000px;}
.x30{left:734.550000px;}
.x2d{left:778.110000px;}
.x29{left:786.210000px;}
.x31{left:787.470000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.075947pt;}
.lse{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.lsd{letter-spacing:10.192640pt;}
.ls15{letter-spacing:11.472640pt;}
.lsb{letter-spacing:13.392640pt;}
.ls11{letter-spacing:14.672640pt;}
.ls16{letter-spacing:15.312640pt;}
.ls4{letter-spacing:23.632640pt;}
.lsf{letter-spacing:37.712640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls13{letter-spacing:44.752640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.wsb{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._2c{margin-left:-5.365120pt;}
._2e{margin-left:-2.602880pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._5{width:2.036053pt;}
._6{width:3.771520pt;}
._8{width:4.777173pt;}
._7{width:5.876907pt;}
._9{width:7.489920pt;}
._c{width:8.837760pt;}
._b{width:9.807360pt;}
._a{width:11.527040pt;}
._d{width:14.820480pt;}
._4{width:16.087680pt;}
._17{width:17.236053pt;}
._f{width:18.154453pt;}
._e{width:19.412267pt;}
._11{width:20.557440pt;}
._14{width:22.310400pt;}
._15{width:23.904000pt;}
._13{width:25.072640pt;}
._12{width:26.028800pt;}
._18{width:27.728640pt;}
._1c{width:29.428480pt;}
._1d{width:30.477227pt;}
._25{width:32.031360pt;}
._1b{width:33.601280pt;}
._1a{width:34.899840pt;}
._16{width:35.909120pt;}
._10{width:37.077760pt;}
._19{width:38.565120pt;}
._26{width:39.864960pt;}
._20{width:40.849280pt;}
._29{width:41.858560pt;}
._1f{width:43.186560pt;}
._21{width:44.620800pt;}
._22{width:45.630080pt;}
._2a{width:47.489280pt;}
._1e{width:49.401600pt;}
._23{width:50.357760pt;}
._2b{width:52.110720pt;}
._33{width:53.013760pt;}
._34{width:54.045440pt;}
._24{width:56.679040pt;}
._2{width:57.600000pt;}
._2f{width:61.991040pt;}
._39{width:62.947200pt;}
._3d{width:65.284480pt;}
._30{width:66.187520pt;}
._32{width:68.684160pt;}
._31{width:69.640320pt;}
._35{width:71.021440pt;}
._37{width:72.296320pt;}
._36{width:73.199360pt;}
._3c{width:74.314880pt;}
._3b{width:75.536640pt;}
._40{width:77.448960pt;}
._3a{width:79.414400pt;}
._3f{width:92.269440pt;}
._38{width:93.331840pt;}
._28{width:94.500480pt;}
._27{width:95.456640pt;}
._3e{width:97.156480pt;}
._2d{width:145.257387pt;}
._3{width:599.200000pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.yf4{bottom:5.160000pt;}
.y2a{bottom:5.280000pt;}
.y11{bottom:5.760000pt;}
.y8{bottom:7.040000pt;}
.ye7{bottom:7.360000pt;}
.y1b{bottom:7.840000pt;}
.ye8{bottom:9.600000pt;}
.yd{bottom:22.720000pt;}
.yee{bottom:22.746667pt;}
.y29{bottom:22.880000pt;}
.y2{bottom:23.840000pt;}
.y7{bottom:24.640000pt;}
.yec{bottom:40.320000pt;}
.y13{bottom:40.480000pt;}
.y6{bottom:42.240000pt;}
.yc{bottom:48.320000pt;}
.yea{bottom:49.600000pt;}
.y10{bottom:52.960000pt;}
.y28{bottom:58.080000pt;}
.y5{bottom:61.920000pt;}
.yb{bottom:66.080000pt;}
.y27{bottom:75.706667pt;}
.y92{bottom:76.960000pt;}
.yd4{bottom:84.640000pt;}
.y79{bottom:84.960000pt;}
.y41{bottom:86.240000pt;}
.y102{bottom:86.560000pt;}
.y4{bottom:86.746667pt;}
.ya{bottom:91.706667pt;}
.y26{bottom:93.466667pt;}
.y91{bottom:94.560000pt;}
.y101{bottom:95.840000pt;}
.yd3{bottom:102.240000pt;}
.y78{bottom:102.560000pt;}
.y40{bottom:103.840000pt;}
.ya8{bottom:104.160000pt;}
.y9{bottom:109.306667pt;}
.y25{bottom:111.066667pt;}
.y90{bottom:112.160000pt;}
.y3{bottom:117.306667pt;}
.yd2{bottom:119.840000pt;}
.y77{bottom:120.160000pt;}
.y3f{bottom:121.440000pt;}
.ya7{bottom:121.760000pt;}
.y24{bottom:128.666667pt;}
.y8f{bottom:129.760000pt;}
.yd1{bottom:137.466667pt;}
.y76{bottom:137.786667pt;}
.y3e{bottom:139.066667pt;}
.ya6{bottom:139.546667pt;}
.y23{bottom:146.266667pt;}
.y100{bottom:147.066667pt;}
.y8e{bottom:147.546667pt;}
.yd0{bottom:155.066667pt;}
.y75{bottom:155.546667pt;}
.y3d{bottom:156.666667pt;}
.ya5{bottom:157.146667pt;}
.y22{bottom:163.866667pt;}
.yff{bottom:164.666667pt;}
.y8d{bottom:165.146667pt;}
.y74{bottom:173.146667pt;}
.y3c{bottom:174.426667pt;}
.ya4{bottom:174.746667pt;}
.ycf{bottom:180.826667pt;}
.y21{bottom:181.626667pt;}
.yfe{bottom:182.266667pt;}
.y8c{bottom:182.746667pt;}
.y73{bottom:190.746667pt;}
.y3b{bottom:192.026667pt;}
.ya3{bottom:192.346667pt;}
.yce{bottom:198.426667pt;}
.y20{bottom:199.226667pt;}
.yfd{bottom:200.026667pt;}
.y8b{bottom:200.346667pt;}
.y72{bottom:208.346667pt;}
.y3a{bottom:209.626667pt;}
.ya2{bottom:209.946667pt;}
.ycd{bottom:216.026667pt;}
.y1f{bottom:216.826667pt;}
.yfc{bottom:217.626667pt;}
.y8a{bottom:217.946667pt;}
.y71{bottom:225.946667pt;}
.y39{bottom:227.226667pt;}
.ya1{bottom:227.706667pt;}
.ycc{bottom:233.626667pt;}
.y1e{bottom:234.426667pt;}
.yfb{bottom:235.226667pt;}
.y89{bottom:235.706667pt;}
.y70{bottom:243.706667pt;}
.y38{bottom:244.826667pt;}
.ya0{bottom:245.306667pt;}
.ycb{bottom:251.226667pt;}
.y1d{bottom:252.026667pt;}
.yfa{bottom:252.826667pt;}
.y88{bottom:253.306667pt;}
.y6f{bottom:261.306667pt;}
.y37{bottom:262.586667pt;}
.yca{bottom:268.986667pt;}
.yf9{bottom:270.426667pt;}
.y87{bottom:270.906667pt;}
.y6e{bottom:278.906667pt;}
.y36{bottom:280.186667pt;}
.yc9{bottom:286.586667pt;}
.yf8{bottom:288.186667pt;}
.y86{bottom:288.506667pt;}
.y6d{bottom:296.506667pt;}
.y35{bottom:297.786667pt;}
.yc8{bottom:304.186667pt;}
.yf7{bottom:305.786667pt;}
.y85{bottom:306.106667pt;}
.y6c{bottom:314.106667pt;}
.y34{bottom:315.386667pt;}
.yc7{bottom:321.786667pt;}
.yf6{bottom:323.386667pt;}
.y84{bottom:323.866667pt;}
.y6b{bottom:331.866667pt;}
.y33{bottom:332.986667pt;}
.yf5{bottom:340.986667pt;}
.y83{bottom:341.466667pt;}
.yc6{bottom:347.386667pt;}
.y6a{bottom:349.466667pt;}
.y32{bottom:350.746667pt;}
.yf3{bottom:353.466667pt;}
.y82{bottom:359.106667pt;}
.yc5{bottom:365.186667pt;}
.y69{bottom:367.106667pt;}
.y31{bottom:368.386667pt;}
.yf2{bottom:371.746667pt;}
.y81{bottom:376.706667pt;}
.yc4{bottom:382.786667pt;}
.y68{bottom:384.706667pt;}
.y30{bottom:385.986667pt;}
.y80{bottom:394.306667pt;}
.yc3{bottom:400.386667pt;}
.y67{bottom:402.306667pt;}
.y2f{bottom:403.586667pt;}
.yf1{bottom:407.106667pt;}
.y7f{bottom:412.066667pt;}
.yc2{bottom:417.986667pt;}
.y66{bottom:420.066667pt;}
.y2e{bottom:421.186667pt;}
.y7e{bottom:429.666667pt;}
.yc1{bottom:435.586667pt;}
.y65{bottom:437.666667pt;}
.y2d{bottom:438.946667pt;}
.y7d{bottom:447.266667pt;}
.yc0{bottom:453.346667pt;}
.y64{bottom:455.266667pt;}
.y2c{bottom:456.546667pt;}
.yf0{bottom:459.906667pt;}
.y7c{bottom:464.866667pt;}
.ybf{bottom:470.946667pt;}
.y63{bottom:472.866667pt;}
.y7b{bottom:482.466667pt;}
.y2b{bottom:487.266667pt;}
.ybe{bottom:488.546667pt;}
.y62{bottom:490.466667pt;}
.yef{bottom:495.266667pt;}
.y7a{bottom:500.226667pt;}
.y1c{bottom:505.506667pt;}
.ybd{bottom:506.146667pt;}
.y61{bottom:508.226667pt;}
.y9f{bottom:517.826667pt;}
.ybc{bottom:523.746667pt;}
.y60{bottom:525.826667pt;}
.y9e{bottom:535.426667pt;}
.ybb{bottom:541.506667pt;}
.y5f{bottom:543.426667pt;}
.y9d{bottom:553.026667pt;}
.yba{bottom:559.106667pt;}
.y5e{bottom:561.026667pt;}
.yed{bottom:565.826667pt;}
.y9c{bottom:570.626667pt;}
.yb9{bottom:576.706667pt;}
.y5d{bottom:578.653333pt;}
.y9b{bottom:588.413333pt;}
.yb8{bottom:594.333333pt;}
.y5c{bottom:596.413333pt;}
.ye9{bottom:601.693333pt;}
.y9a{bottom:606.013333pt;}
.yb7{bottom:611.933333pt;}
.y5b{bottom:614.013333pt;}
.y99{bottom:623.613333pt;}
.yb6{bottom:629.693333pt;}
.y5a{bottom:631.613333pt;}
.yeb{bottom:637.693333pt;}
.y98{bottom:641.213333pt;}
.yb5{bottom:647.293333pt;}
.y59{bottom:649.213333pt;}
.y97{bottom:658.813333pt;}
.yb4{bottom:664.893333pt;}
.y58{bottom:666.813333pt;}
.y96{bottom:676.573333pt;}
.yb3{bottom:682.493333pt;}
.y57{bottom:684.573333pt;}
.y95{bottom:694.173333pt;}
.yb2{bottom:700.093333pt;}
.y56{bottom:702.173333pt;}
.ye6{bottom:708.893333pt;}
.y94{bottom:711.773333pt;}
.yb1{bottom:717.853333pt;}
.y55{bottom:719.773333pt;}
.y93{bottom:729.373333pt;}
.yb0{bottom:735.453333pt;}
.ye5{bottom:736.093333pt;}
.y54{bottom:737.373333pt;}
.yaf{bottom:753.053333pt;}
.ye4{bottom:753.693333pt;}
.y53{bottom:754.973333pt;}
.yae{bottom:770.653333pt;}
.y1a{bottom:770.813333pt;}
.ye3{bottom:771.293333pt;}
.y52{bottom:772.733333pt;}
.yad{bottom:783.773333pt;}
.ye2{bottom:788.893333pt;}
.y51{bottom:790.333333pt;}
.y19{bottom:796.893333pt;}
.yac{bottom:801.413333pt;}
.ye1{bottom:806.693333pt;}
.y50{bottom:807.973333pt;}
.y18{bottom:819.173333pt;}
.ye0{bottom:824.293333pt;}
.y4f{bottom:825.573333pt;}
.y17{bottom:832.613333pt;}
.yab{bottom:836.773333pt;}
.ydf{bottom:841.893333pt;}
.y4e{bottom:843.173333pt;}
.y16{bottom:851.653333pt;}
.yaa{bottom:854.373333pt;}
.yde{bottom:859.493333pt;}
.y4d{bottom:860.933333pt;}
.y15{bottom:872.453333pt;}
.ya9{bottom:872.613333pt;}
.ydd{bottom:877.093333pt;}
.y4c{bottom:878.533333pt;}
.ydc{bottom:894.853333pt;}
.y4b{bottom:896.133333pt;}
.y14{bottom:900.613333pt;}
.ydb{bottom:912.453333pt;}
.y4a{bottom:913.733333pt;}
.yf{bottom:924.453333pt;}
.yda{bottom:930.053333pt;}
.y49{bottom:931.333333pt;}
.yd9{bottom:943.173333pt;}
.y1{bottom:944.453333pt;}
.y48{bottom:949.093333pt;}
.yd8{bottom:960.773333pt;}
.y47{bottom:966.693333pt;}
.yd7{bottom:978.533333pt;}
.y46{bottom:984.293333pt;}
.yd6{bottom:996.133333pt;}
.y45{bottom:1001.893333pt;}
.yd5{bottom:1013.733333pt;}
.y44{bottom:1019.520000pt;}
.y43{bottom:1037.280000pt;}
.y42{bottom:1060.800000pt;}
.h3{height:1.851250pt;}
.h11{height:17.600000pt;}
.h15{height:17.632000pt;}
.h14{height:17.760000pt;}
.ha{height:19.520000pt;}
.hf{height:20.320000pt;}
.h16{height:22.080000pt;}
.hd{height:24.991875pt;}
.h1a{height:35.232000pt;}
.h13{height:35.360000pt;}
.h4{height:37.479688pt;}
.h7{height:38.413438pt;}
.h18{height:38.491250pt;}
.h12{height:38.672812pt;}
.h6{height:41.543750pt;}
.h8{height:42.578750pt;}
.he{height:43.782500pt;}
.hb{height:47.310625pt;}
.h1b{height:52.800000pt;}
.h5{height:52.832812pt;}
.h1c{height:52.834688pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h19{height:70.560000pt;}
.h17{height:106.560000pt;}
.h2{height:129.792000pt;}
.h10{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:46.400000pt;}
.w12{width:46.912000pt;}
.w19{width:47.040000pt;}
.w11{width:47.200000pt;}
.w16{width:47.232000pt;}
.w18{width:47.552000pt;}
.w6{width:49.312000pt;}
.w13{width:64.000000pt;}
.w10{width:75.200000pt;}
.w15{width:75.680000pt;}
.we{width:76.000000pt;}
.w14{width:84.992000pt;}
.wc{width:104.032000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.wd{width:141.466667pt;}
.wb{width:141.760000pt;}
.wf{width:156.666667pt;}
.w8{width:170.906667pt;}
.w1a{width:325.986667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:662.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:5.280000pt;}
.x5{left:7.680000pt;}
.x27{left:8.960000pt;}
.xb{left:40.800000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xd{left:51.200000pt;}
.x1d{left:66.879988pt;}
.x32{left:71.999988pt;}
.x22{left:87.552000pt;}
.xc{left:90.752000pt;}
.x33{left:96.031988pt;}
.x4{left:113.480000pt;}
.x8{left:120.520000pt;}
.x2{left:131.066667pt;}
.x1f{left:132.191988pt;}
.x7{left:137.160000pt;}
.x10{left:162.106667pt;}
.x11{left:170.906667pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.xe{left:222.106667pt;}
.x23{left:229.306667pt;}
.x12{left:230.466667pt;}
.x13{left:282.306667pt;}
.x14{left:290.946667pt;}
.x15{left:349.693333pt;}
.x16{left:358.333333pt;}
.x17{left:410.333333pt;}
.x18{left:419.133333pt;}
.x1e{left:420.893322pt;}
.x21{left:439.773322pt;}
.x34{left:444.893322pt;}
.x19{left:446.173333pt;}
.x1a{left:454.813333pt;}
.x20{left:468.893322pt;}
.x24{left:474.653333pt;}
.x2a{left:483.773333pt;}
.x1b{left:506.693333pt;}
.x1c{left:515.333333pt;}
.x2e{left:530.173333pt;}
.x2b{left:568.773333pt;}
.x26{left:576.453333pt;}
.x2f{left:577.733333pt;}
.x25{left:616.133333pt;}
.x9{left:624.933333pt;}
.x2c{left:644.453333pt;}
.x28{left:651.653333pt;}
.x30{left:652.933333pt;}
.x2d{left:691.653333pt;}
.x29{left:698.853333pt;}
.x31{left:699.973333pt;}
}




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