
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_feea73ffa862813e4b05d118.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8d1c100dcf93fe163ba58943.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b5a562c2a4d66375c15bb84c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_7cac0bf7483770c9f4ee8b8a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_6c43cde109bf65b494e6f4ed.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ba180006a19bc7d8e8b84d44.woff')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.378600px;}
.ls24{letter-spacing:-0.299400px;}
.ls17{letter-spacing:-0.244200px;}
.ls15{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.lsb{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.066000px;}
.ls2a{letter-spacing:-0.060600px;}
.ls23{letter-spacing:-0.038880px;}
.ls20{letter-spacing:-0.037800px;}
.ls1f{letter-spacing:-0.014760px;}
.ls19{letter-spacing:-0.013320px;}
.ls25{letter-spacing:-0.011160px;}
.ls21{letter-spacing:-0.009000px;}
.lsc{letter-spacing:-0.008400px;}
.ls18{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.005400px;}
.ls13{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.051840px;}
.ls1a{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.105600px;}
.ls10{letter-spacing:0.116400px;}
.ls9{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.181200px;}
.ls28{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:13.440000px;}
.ls5{letter-spacing:16.293600px;}
.ls27{letter-spacing:47.726640px;}
.ls1b{letter-spacing:63.566640px;}
.ls26{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wse{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.342800px;}
.ws17{word-spacing:-13.332000px;}
.ws15{word-spacing:-13.324800px;}
.ws16{word-spacing:-13.278240px;}
.wsc{word-spacing:-13.275360px;}
.ws1a{word-spacing:-13.231800px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.218840px;}
.ws12{word-spacing:-13.217400px;}
.ws19{word-spacing:-13.215240px;}
.ws10{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.188600px;}
.ws14{word-spacing:-13.187520px;}
.ws1b{word-spacing:-13.165800px;}
.ws13{word-spacing:-13.160400px;}
.ws5{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.982800px;}
.ws18{word-spacing:-12.927000px;}
.ws7{word-spacing:-12.847800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._12{margin-left:-3.265200px;}
._4{margin-left:-2.141040px;}
._0{margin-left:-1.110000px;}
._2{width:1.595398px;}
._1{width:2.767788px;}
._b{width:4.263732px;}
._a{width:5.591400px;}
._6{width:6.974401px;}
._5{width:8.176200px;}
._7{width:9.925798px;}
._10{width:11.332080px;}
._11{width:13.167360px;}
._d{width:14.308800px;}
._e{width:15.450600px;}
._f{width:16.454281px;}
._8{width:17.795400px;}
._9{width:18.998401px;}
._c{width:20.017796px;}
._13{width:21.763440px;}
._14{width:22.950720px;}
._3{width:24.660636px;}
._2f{width:26.216882px;}
._2c{width:27.595080px;}
._1c{width:29.218320px;}
._1a{width:30.480840px;}
._21{width:31.743360px;}
._26{width:34.328520px;}
._36{width:37.033920px;}
._33{width:38.837520px;}
._15{width:42.204240px;}
._30{width:43.406640px;}
._29{width:44.576760px;}
._18{width:45.991800px;}
._19{width:50.140080px;}
._31{width:53.266320px;}
._35{width:56.332440px;}
._25{width:58.196160px;}
._2e{width:60.901560px;}
._20{width:62.705160px;}
._24{width:66.071880px;}
._34{width:67.875480px;}
._37{width:68.897520px;}
._22{width:78.636960px;}
._1f{width:83.687040px;}
._1d{width:88.436520px;}
._28{width:89.699040px;}
._23{width:90.901440px;}
._2d{width:93.005640px;}
._17{width:102.684960px;}
._2a{width:104.368320px;}
._27{width:139.839120px;}
._1e{width:160.821000px;}
._2b{width:251.361720px;}
._16{width:270.239400px;}
._1b{width:301.501800px;}
._32{width:308.896560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:7.830000px;}
.y87{bottom:7.920000px;}
.y8d{bottom:12.420000px;}
.y80{bottom:25.380000px;}
.y7c{bottom:25.470000px;}
.y86{bottom:25.500000px;}
.y8c{bottom:29.970000px;}
.y7f{bottom:43.020000px;}
.y90{bottom:43.110000px;}
.y8b{bottom:47.610000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y79{bottom:74.280000px;}
.y1{bottom:101.640000px;}
.yac{bottom:118.020000px;}
.yd8{bottom:128.100000px;}
.y26{bottom:131.970000px;}
.yab{bottom:135.660000px;}
.y101{bottom:139.170000px;}
.y25{bottom:149.520000px;}
.yaa{bottom:153.210000px;}
.yd7{bottom:155.010000px;}
.y100{bottom:156.720000px;}
.y54{bottom:157.260000px;}
.y24{bottom:167.070000px;}
.ya9{bottom:170.850000px;}
.yff{bottom:174.270000px;}
.y53{bottom:174.900000px;}
.y23{bottom:184.710000px;}
.yd6{bottom:192.360000px;}
.y52{bottom:192.450000px;}
.yfe{bottom:200.910000px;}
.y22{bottom:202.260000px;}
.y77{bottom:202.440000px;}
.ya8{bottom:206.400000px;}
.y51{bottom:210.090000px;}
.yfd{bottom:218.460000px;}
.ya7{bottom:223.950000px;}
.y21{bottom:229.170000px;}
.yfc{bottom:236.100000px;}
.y50{bottom:237.000000px;}
.y76{bottom:237.990000px;}
.yd5{bottom:240.600000px;}
.ya6{bottom:241.590000px;}
.yd4{bottom:258.150000px;}
.ya5{bottom:259.140000px;}
.yfb{bottom:262.650000px;}
.y75{bottom:273.540000px;}
.yd3{bottom:275.790000px;}
.y20{bottom:277.410000px;}
.yfa{bottom:280.200000px;}
.y4f{bottom:285.240000px;}
.yd2{bottom:293.340000px;}
.ya4{bottom:294.690000px;}
.y1f{bottom:295.320000px;}
.yf9{bottom:297.840000px;}
.y74{bottom:309.180000px;}
.y88{bottom:312.060000px;}
.ya3{bottom:312.330000px;}
.y4e{bottom:317.460000px;}
.yd1{bottom:320.250000px;}
.yf8{bottom:324.390000px;}
.ya2{bottom:329.880000px;}
.y1e{bottom:332.400000px;}
.yf7{bottom:341.940000px;}
.y73{bottom:344.730000px;}
.ya1{bottom:347.520000px;}
.y1d{bottom:349.950000px;}
.yf6{bottom:359.580000px;}
.y1c{bottom:367.590000px;}
.yd0{bottom:368.490000px;}
.y85{bottom:374.520000px;}
.y72{bottom:380.370000px;}
.ya0{bottom:383.070000px;}
.y4d{bottom:386.130000px;}
.ycf{bottom:386.940000px;}
.y9f{bottom:400.620000px;}
.y1b{bottom:403.140000px;}
.y4c{bottom:403.770000px;}
.yce{bottom:405.300000px;}
.y71{bottom:415.920000px;}
.y9e{bottom:418.260000px;}
.y84{bottom:419.550000px;}
.y1a{bottom:420.690000px;}
.y4b{bottom:421.320000px;}
.ycd{bottom:423.750000px;}
.y9d{bottom:435.810000px;}
.y19{bottom:438.330000px;}
.y4a{bottom:438.870000px;}
.ycc{bottom:442.200000px;}
.y70{bottom:451.470000px;}
.y18{bottom:455.880000px;}
.y49{bottom:456.510000px;}
.ycb{bottom:460.650000px;}
.yf5{bottom:465.510000px;}
.y9c{bottom:471.480000px;}
.y48{bottom:474.090000px;}
.yca{bottom:478.230000px;}
.y83{bottom:482.010000px;}
.yf4{bottom:483.090000px;}
.y6f{bottom:487.140000px;}
.y9b{bottom:489.030000px;}
.y17{bottom:491.550000px;}
.yc9{bottom:496.590000px;}
.yf3{bottom:500.730000px;}
.y9a{bottom:506.580000px;}
.y16{bottom:509.100000px;}
.y47{bottom:509.730000px;}
.yc8{bottom:515.040000px;}
.y6e{bottom:522.690000px;}
.y99{bottom:524.220000px;}
.y15{bottom:526.650000px;}
.y46{bottom:527.280000px;}
.yc7{bottom:533.400000px;}
.y6d{bottom:540.330000px;}
.y98{bottom:541.770000px;}
.y14{bottom:544.290000px;}
.y82{bottom:544.560000px;}
.y45{bottom:544.830000px;}
.yc6{bottom:551.850000px;}
.y6c{bottom:557.880000px;}
.y97{bottom:559.410000px;}
.y44{bottom:562.470000px;}
.yc5{bottom:570.210000px;}
.y6b{bottom:575.430000px;}
.y96{bottom:576.960000px;}
.y13{bottom:579.840000px;}
.yc4{bottom:588.660000px;}
.yf2{bottom:589.020000px;}
.y6a{bottom:593.070000px;}
.y12{bottom:597.390000px;}
.y43{bottom:598.020000px;}
.y95{bottom:603.870000px;}
.yf1{bottom:606.660000px;}
.y81{bottom:607.020000px;}
.yc3{bottom:607.110000px;}
.y69{bottom:610.620000px;}
.y11{bottom:615.030000px;}
.y42{bottom:615.660000px;}
.yf0{bottom:624.210000px;}
.yc2{bottom:625.470000px;}
.y68{bottom:628.260000px;}
.y10{bottom:632.580000px;}
.y41{bottom:633.210000px;}
.yc1{bottom:643.920000px;}
.y94{bottom:649.500000px;}
.yf{bottom:650.220000px;}
.y40{bottom:650.760000px;}
.yc0{bottom:662.280000px;}
.y67{bottom:663.810000px;}
.ye{bottom:667.770000px;}
.yef{bottom:668.400000px;}
.y7e{bottom:669.570000px;}
.y3f{bottom:677.400000px;}
.ybf{bottom:680.730000px;}
.y66{bottom:681.360000px;}
.yee{bottom:685.950000px;}
.yd{bottom:694.680000px;}
.y65{bottom:699.000000px;}
.ybe{bottom:699.180000px;}
.y93{bottom:712.050000px;}
.yed{bottom:712.590000px;}
.y3e{bottom:712.950000px;}
.ybd{bottom:717.540000px;}
.yec{bottom:730.140000px;}
.y3d{bottom:730.590000px;}
.y7b{bottom:732.060000px;}
.y64{bottom:734.550000px;}
.ybc{bottom:735.990000px;}
.yc{bottom:742.920000px;}
.yeb{bottom:747.690000px;}
.y3c{bottom:748.140000px;}
.y63{bottom:752.190000px;}
.ybb{bottom:754.350000px;}
.y3b{bottom:765.690000px;}
.y62{bottom:769.740000px;}
.yba{bottom:772.800000px;}
.yea{bottom:774.330000px;}
.y92{bottom:774.510000px;}
.yb{bottom:778.560000px;}
.y61{bottom:787.290000px;}
.yb9{bottom:791.250000px;}
.ye9{bottom:791.880000px;}
.y3a{bottom:792.600000px;}
.y7a{bottom:798.390000px;}
.y60{bottom:804.930000px;}
.yb8{bottom:809.610000px;}
.ya{bottom:814.380000px;}
.ye8{bottom:818.520000px;}
.y5f{bottom:822.480000px;}
.y78{bottom:824.940000px;}
.yb7{bottom:828.060000px;}
.ye7{bottom:836.070000px;}
.y91{bottom:837.060000px;}
.y5e{bottom:840.030000px;}
.y39{bottom:840.930000px;}
.ye6{bottom:853.620000px;}
.y9{bottom:854.160000px;}
.yb6{bottom:855.780000px;}
.y38{bottom:858.480000px;}
.y8{bottom:868.380000px;}
.y5d{bottom:875.670000px;}
.y37{bottom:876.030000px;}
.ye5{bottom:880.260000px;}
.y7{bottom:890.160000px;}
.yb5{bottom:892.860000px;}
.y5c{bottom:893.220000px;}
.y36{bottom:893.670000px;}
.ye4{bottom:897.810000px;}
.y8f{bottom:899.520000px;}
.yb4{bottom:910.410000px;}
.y5b{bottom:910.860000px;}
.y35{bottom:911.220000px;}
.ye3{bottom:915.450000px;}
.y6{bottom:922.470000px;}
.yb3{bottom:927.960000px;}
.y5a{bottom:928.410000px;}
.y34{bottom:928.860000px;}
.ye2{bottom:942.000000px;}
.yb2{bottom:945.600000px;}
.y59{bottom:945.960000px;}
.y33{bottom:946.410000px;}
.ye1{bottom:959.550000px;}
.y5{bottom:960.720000px;}
.y8e{bottom:962.070000px;}
.y58{bottom:963.600000px;}
.y32{bottom:963.960000px;}
.ye0{bottom:977.190000px;}
.yb1{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yb0{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.ydf{bottom:1003.740000px;}
.y3{bottom:1010.070000px;}
.yaf{bottom:1016.370000px;}
.y57{bottom:1016.820000px;}
.yde{bottom:1021.320000px;}
.y8a{bottom:1024.560000px;}
.y56{bottom:1034.370000px;}
.y2f{bottom:1034.820000px;}
.ydd{bottom:1038.960000px;}
.y55{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.ydc{bottom:1065.510000px;}
.yae{bottom:1069.560000px;}
.y2d{bottom:1069.920000px;}
.ydb{bottom:1083.150000px;}
.yad{bottom:1087.110000px;}
.y2c{bottom:1087.560000px;}
.y89{bottom:1091.610000px;}
.yda{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.yd9{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h13{height:26.550000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hf{height:44.190000px;}
.h12{height:44.220000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.ha{height:60.960938px;}
.h11{height:61.740000px;}
.h10{height:61.770000px;}
.h16{height:61.793886px;}
.h15{height:61.830000px;}
.hc{height:62.585859px;}
.h14{height:66.330000px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:893.160000px;}
.he{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:64.260000px;}
.w6{width:84.600000px;}
.w7{width:98.130000px;}
.wd{width:141.420000px;}
.wa{width:157.350000px;}
.we{width:168.930000px;}
.wf{width:184.890000px;}
.w10{width:193.140000px;}
.wb{width:209.880000px;}
.w8{width:239.130000px;}
.w9{width:252.270000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w4{width:1262.250000px;}
.w5{width:1262.519981px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.xe{left:3.960000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x13{left:95.039987px;}
.x8{left:107.999981px;}
.x15{left:111.239987px;}
.x14{left:122.039987px;}
.xf{left:133.830000px;}
.xa{left:194.040000px;}
.x2{left:202.799987px;}
.x10{left:275.970000px;}
.x5{left:281.819987px;}
.xb{left:292.890000px;}
.x6{left:387.389981px;}
.x11{left:445.710000px;}
.xc{left:532.740000px;}
.x12{left:631.320000px;}
.x4{left:786.389987px;}
.x3{left:792.059987px;}
.xd{left:943.980000px;}
.x7{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.336533pt;}
.ls24{letter-spacing:-0.266133pt;}
.ls17{letter-spacing:-0.217067pt;}
.ls15{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.058667pt;}
.ls2a{letter-spacing:-0.053867pt;}
.ls23{letter-spacing:-0.034560pt;}
.ls20{letter-spacing:-0.033600pt;}
.ls1f{letter-spacing:-0.013120pt;}
.ls19{letter-spacing:-0.011840pt;}
.ls25{letter-spacing:-0.009920pt;}
.ls21{letter-spacing:-0.008000pt;}
.lsc{letter-spacing:-0.007467pt;}
.ls18{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.004800pt;}
.ls13{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.046080pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.093867pt;}
.ls10{letter-spacing:0.103467pt;}
.ls9{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.161067pt;}
.ls28{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:11.946667pt;}
.ls5{letter-spacing:14.483200pt;}
.ls27{letter-spacing:42.423680pt;}
.ls1b{letter-spacing:56.503680pt;}
.ls26{letter-spacing:71.863680pt;}
.ws9{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.860267pt;}
.ws17{word-spacing:-11.850667pt;}
.ws15{word-spacing:-11.844267pt;}
.ws16{word-spacing:-11.802880pt;}
.wsc{word-spacing:-11.800320pt;}
.ws1a{word-spacing:-11.761600pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.750080pt;}
.ws12{word-spacing:-11.748800pt;}
.ws19{word-spacing:-11.746880pt;}
.ws10{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.723200pt;}
.ws14{word-spacing:-11.722240pt;}
.ws1b{word-spacing:-11.702933pt;}
.ws13{word-spacing:-11.698133pt;}
.ws5{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.540267pt;}
.ws18{word-spacing:-11.490667pt;}
.ws7{word-spacing:-11.420267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._12{margin-left:-2.902400pt;}
._4{margin-left:-1.903147pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.418131pt;}
._1{width:2.460256pt;}
._b{width:3.789984pt;}
._a{width:4.970134pt;}
._6{width:6.199468pt;}
._5{width:7.267733pt;}
._7{width:8.822931pt;}
._10{width:10.072960pt;}
._11{width:11.704320pt;}
._d{width:12.718934pt;}
._e{width:13.733866pt;}
._f{width:14.626028pt;}
._8{width:15.818133pt;}
._9{width:16.887468pt;}
._c{width:17.793596pt;}
._13{width:19.345280pt;}
._14{width:20.400640pt;}
._3{width:21.920565pt;}
._2f{width:23.303895pt;}
._2c{width:24.528960pt;}
._1c{width:25.971840pt;}
._1a{width:27.094080pt;}
._21{width:28.216320pt;}
._26{width:30.514240pt;}
._36{width:32.919040pt;}
._33{width:34.522240pt;}
._15{width:37.514880pt;}
._30{width:38.583680pt;}
._29{width:39.623787pt;}
._18{width:40.881600pt;}
._19{width:44.568960pt;}
._31{width:47.347840pt;}
._35{width:50.073280pt;}
._25{width:51.729920pt;}
._2e{width:54.134720pt;}
._20{width:55.737920pt;}
._24{width:58.730560pt;}
._34{width:60.333760pt;}
._37{width:61.242240pt;}
._22{width:69.899520pt;}
._1f{width:74.388480pt;}
._1d{width:78.610240pt;}
._28{width:79.732480pt;}
._23{width:80.801280pt;}
._2d{width:82.671680pt;}
._17{width:91.275520pt;}
._2a{width:92.771840pt;}
._27{width:124.301440pt;}
._1e{width:142.952000pt;}
._2b{width:223.432640pt;}
._16{width:240.212800pt;}
._1b{width:268.001600pt;}
._32{width:274.574720pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:6.960000pt;}
.y87{bottom:7.040000pt;}
.y8d{bottom:11.040000pt;}
.y80{bottom:22.560000pt;}
.y7c{bottom:22.640000pt;}
.y86{bottom:22.666667pt;}
.y8c{bottom:26.640000pt;}
.y7f{bottom:38.240000pt;}
.y90{bottom:38.320000pt;}
.y8b{bottom:42.320000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y79{bottom:66.026667pt;}
.y1{bottom:90.346667pt;}
.yac{bottom:104.906667pt;}
.yd8{bottom:113.866667pt;}
.y26{bottom:117.306667pt;}
.yab{bottom:120.586667pt;}
.y101{bottom:123.706667pt;}
.y25{bottom:132.906667pt;}
.yaa{bottom:136.186667pt;}
.yd7{bottom:137.786667pt;}
.y100{bottom:139.306667pt;}
.y54{bottom:139.786667pt;}
.y24{bottom:148.506667pt;}
.ya9{bottom:151.866667pt;}
.yff{bottom:154.906667pt;}
.y53{bottom:155.466667pt;}
.y23{bottom:164.186667pt;}
.yd6{bottom:170.986667pt;}
.y52{bottom:171.066667pt;}
.yfe{bottom:178.586667pt;}
.y22{bottom:179.786667pt;}
.y77{bottom:179.946667pt;}
.ya8{bottom:183.466667pt;}
.y51{bottom:186.746667pt;}
.yfd{bottom:194.186667pt;}
.ya7{bottom:199.066667pt;}
.y21{bottom:203.706667pt;}
.yfc{bottom:209.866667pt;}
.y50{bottom:210.666667pt;}
.y76{bottom:211.546667pt;}
.yd5{bottom:213.866667pt;}
.ya6{bottom:214.746667pt;}
.yd4{bottom:229.466667pt;}
.ya5{bottom:230.346667pt;}
.yfb{bottom:233.466667pt;}
.y75{bottom:243.146667pt;}
.yd3{bottom:245.146667pt;}
.y20{bottom:246.586667pt;}
.yfa{bottom:249.066667pt;}
.y4f{bottom:253.546667pt;}
.yd2{bottom:260.746667pt;}
.ya4{bottom:261.946667pt;}
.y1f{bottom:262.506667pt;}
.yf9{bottom:264.746667pt;}
.y74{bottom:274.826667pt;}
.y88{bottom:277.386667pt;}
.ya3{bottom:277.626667pt;}
.y4e{bottom:282.186667pt;}
.yd1{bottom:284.666667pt;}
.yf8{bottom:288.346667pt;}
.ya2{bottom:293.226667pt;}
.y1e{bottom:295.466667pt;}
.yf7{bottom:303.946667pt;}
.y73{bottom:306.426667pt;}
.ya1{bottom:308.906667pt;}
.y1d{bottom:311.066667pt;}
.yf6{bottom:319.626667pt;}
.y1c{bottom:326.746667pt;}
.yd0{bottom:327.546667pt;}
.y85{bottom:332.906667pt;}
.y72{bottom:338.106667pt;}
.ya0{bottom:340.506667pt;}
.y4d{bottom:343.226667pt;}
.ycf{bottom:343.946667pt;}
.y9f{bottom:356.106667pt;}
.y1b{bottom:358.346667pt;}
.y4c{bottom:358.906667pt;}
.yce{bottom:360.266667pt;}
.y71{bottom:369.706667pt;}
.y9e{bottom:371.786667pt;}
.y84{bottom:372.933333pt;}
.y1a{bottom:373.946667pt;}
.y4b{bottom:374.506667pt;}
.ycd{bottom:376.666667pt;}
.y9d{bottom:387.386667pt;}
.y19{bottom:389.626667pt;}
.y4a{bottom:390.106667pt;}
.ycc{bottom:393.066667pt;}
.y70{bottom:401.306667pt;}
.y18{bottom:405.226667pt;}
.y49{bottom:405.786667pt;}
.ycb{bottom:409.466667pt;}
.yf5{bottom:413.786667pt;}
.y9c{bottom:419.093333pt;}
.y48{bottom:421.413333pt;}
.yca{bottom:425.093333pt;}
.y83{bottom:428.453333pt;}
.yf4{bottom:429.413333pt;}
.y6f{bottom:433.013333pt;}
.y9b{bottom:434.693333pt;}
.y17{bottom:436.933333pt;}
.yc9{bottom:441.413333pt;}
.yf3{bottom:445.093333pt;}
.y9a{bottom:450.293333pt;}
.y16{bottom:452.533333pt;}
.y47{bottom:453.093333pt;}
.yc8{bottom:457.813333pt;}
.y6e{bottom:464.613333pt;}
.y99{bottom:465.973333pt;}
.y15{bottom:468.133333pt;}
.y46{bottom:468.693333pt;}
.yc7{bottom:474.133333pt;}
.y6d{bottom:480.293333pt;}
.y98{bottom:481.573333pt;}
.y14{bottom:483.813333pt;}
.y82{bottom:484.053333pt;}
.y45{bottom:484.293333pt;}
.yc6{bottom:490.533333pt;}
.y6c{bottom:495.893333pt;}
.y97{bottom:497.253333pt;}
.y44{bottom:499.973333pt;}
.yc5{bottom:506.853333pt;}
.y6b{bottom:511.493333pt;}
.y96{bottom:512.853333pt;}
.y13{bottom:515.413333pt;}
.yc4{bottom:523.253333pt;}
.yf2{bottom:523.573333pt;}
.y6a{bottom:527.173333pt;}
.y12{bottom:531.013333pt;}
.y43{bottom:531.573333pt;}
.y95{bottom:536.773333pt;}
.yf1{bottom:539.253333pt;}
.y81{bottom:539.573333pt;}
.yc3{bottom:539.653333pt;}
.y69{bottom:542.773333pt;}
.y11{bottom:546.693333pt;}
.y42{bottom:547.253333pt;}
.yf0{bottom:554.853333pt;}
.yc2{bottom:555.973333pt;}
.y68{bottom:558.453333pt;}
.y10{bottom:562.293333pt;}
.y41{bottom:562.853333pt;}
.yc1{bottom:572.373333pt;}
.y94{bottom:577.333333pt;}
.yf{bottom:577.973333pt;}
.y40{bottom:578.453333pt;}
.yc0{bottom:588.693333pt;}
.y67{bottom:590.053333pt;}
.ye{bottom:593.573333pt;}
.yef{bottom:594.133333pt;}
.y7e{bottom:595.173333pt;}
.y3f{bottom:602.133333pt;}
.ybf{bottom:605.093333pt;}
.y66{bottom:605.653333pt;}
.yee{bottom:609.733333pt;}
.yd{bottom:617.493333pt;}
.y65{bottom:621.333333pt;}
.ybe{bottom:621.493333pt;}
.y93{bottom:632.933333pt;}
.yed{bottom:633.413333pt;}
.y3e{bottom:633.733333pt;}
.ybd{bottom:637.813333pt;}
.yec{bottom:649.013333pt;}
.y3d{bottom:649.413333pt;}
.y7b{bottom:650.720000pt;}
.y64{bottom:652.933333pt;}
.ybc{bottom:654.213333pt;}
.yc{bottom:660.373333pt;}
.yeb{bottom:664.613333pt;}
.y3c{bottom:665.013333pt;}
.y63{bottom:668.613333pt;}
.ybb{bottom:670.533333pt;}
.y3b{bottom:680.613333pt;}
.y62{bottom:684.213333pt;}
.yba{bottom:686.933333pt;}
.yea{bottom:688.293333pt;}
.y92{bottom:688.453333pt;}
.yb{bottom:692.053333pt;}
.y61{bottom:699.813333pt;}
.yb9{bottom:703.333333pt;}
.ye9{bottom:703.893333pt;}
.y3a{bottom:704.533333pt;}
.y7a{bottom:709.680000pt;}
.y60{bottom:715.493333pt;}
.yb8{bottom:719.653333pt;}
.ya{bottom:723.893333pt;}
.ye8{bottom:727.573333pt;}
.y5f{bottom:731.093333pt;}
.y78{bottom:733.280000pt;}
.yb7{bottom:736.053333pt;}
.ye7{bottom:743.173333pt;}
.y91{bottom:744.053333pt;}
.y5e{bottom:746.693333pt;}
.y39{bottom:747.493333pt;}
.ye6{bottom:758.773333pt;}
.y9{bottom:759.253333pt;}
.yb6{bottom:760.693333pt;}
.y38{bottom:763.093333pt;}
.y8{bottom:771.893333pt;}
.y5d{bottom:778.373333pt;}
.y37{bottom:778.693333pt;}
.ye5{bottom:782.453333pt;}
.y7{bottom:791.253333pt;}
.yb5{bottom:793.653333pt;}
.y5c{bottom:793.973333pt;}
.y36{bottom:794.373333pt;}
.ye4{bottom:798.053333pt;}
.y8f{bottom:799.573333pt;}
.yb4{bottom:809.253333pt;}
.y5b{bottom:809.653333pt;}
.y35{bottom:809.973333pt;}
.ye3{bottom:813.733333pt;}
.y6{bottom:819.973333pt;}
.yb3{bottom:824.853333pt;}
.y5a{bottom:825.253333pt;}
.y34{bottom:825.653333pt;}
.ye2{bottom:837.333333pt;}
.yb2{bottom:840.533333pt;}
.y59{bottom:840.853333pt;}
.y33{bottom:841.253333pt;}
.ye1{bottom:852.933333pt;}
.y5{bottom:853.973333pt;}
.y8e{bottom:855.173333pt;}
.y58{bottom:856.533333pt;}
.y32{bottom:856.853333pt;}
.ye0{bottom:868.613333pt;}
.yb1{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yb0{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.ydf{bottom:892.213333pt;}
.y3{bottom:897.840000pt;}
.yaf{bottom:903.440000pt;}
.y57{bottom:903.840000pt;}
.yde{bottom:907.840000pt;}
.y8a{bottom:910.720000pt;}
.y56{bottom:919.440000pt;}
.y2f{bottom:919.840000pt;}
.ydd{bottom:923.520000pt;}
.y55{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.ydc{bottom:947.120000pt;}
.yae{bottom:950.720000pt;}
.y2d{bottom:951.040000pt;}
.ydb{bottom:962.800000pt;}
.yad{bottom:966.320000pt;}
.y2c{bottom:966.720000pt;}
.y89{bottom:970.320000pt;}
.yda{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.yd9{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h13{height:23.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hf{height:39.280000pt;}
.h12{height:39.306667pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.ha{height:54.187500pt;}
.h11{height:54.880000pt;}
.h10{height:54.906667pt;}
.h16{height:54.927899pt;}
.h15{height:54.960000pt;}
.hc{height:55.631875pt;}
.h14{height:58.960000pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:793.920000pt;}
.he{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:57.120000pt;}
.w6{width:75.200000pt;}
.w7{width:87.226667pt;}
.wd{width:125.706667pt;}
.wa{width:139.866667pt;}
.we{width:150.160000pt;}
.wf{width:164.346667pt;}
.w10{width:171.680000pt;}
.wb{width:186.560000pt;}
.w8{width:212.560000pt;}
.w9{width:224.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w4{width:1122.000000pt;}
.w5{width:1122.239983pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xe{left:3.520000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x13{left:84.479988pt;}
.x8{left:95.999983pt;}
.x15{left:98.879988pt;}
.x14{left:108.479988pt;}
.xf{left:118.960000pt;}
.xa{left:172.480000pt;}
.x2{left:180.266655pt;}
.x10{left:245.306667pt;}
.x5{left:250.506655pt;}
.xb{left:260.346667pt;}
.x6{left:344.346650pt;}
.x11{left:396.186667pt;}
.xc{left:473.546667pt;}
.x12{left:561.173333pt;}
.x4{left:699.013322pt;}
.x3{left:704.053322pt;}
.xd{left:839.093333pt;}
.x7{left:996.773317pt;}
}




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