
    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_90a287f427a896024dcdac18.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ec9289802a932cd5d8e43ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_22628e3ded6d8e49a618ad7f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0968d9542a25f9563cdbbaa0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2dcb0fb49280a30d4f4a4240.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_f1ddad996912643e87164fa0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f098001170f8cc3f6fce04cc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_221c1ef06e7291968e8f5699.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3d9c767a4e5c27453a270b98.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859375;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);}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-63.360000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls3e{letter-spacing:-1.998000px;}
.lsc{letter-spacing:-1.944000px;}
.ls40{letter-spacing:-1.914000px;}
.lsb{letter-spacing:-1.908000px;}
.ls3c{letter-spacing:-1.440000px;}
.ls44{letter-spacing:-1.254000px;}
.ls43{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.678000px;}
.ls2e{letter-spacing:-0.544200px;}
.ls10{letter-spacing:-0.510000px;}
.ls3f{letter-spacing:-0.492600px;}
.ls11{letter-spacing:-0.489600px;}
.ls42{letter-spacing:-0.475200px;}
.lsa{letter-spacing:-0.466800px;}
.lsf{letter-spacing:-0.397200px;}
.ls26{letter-spacing:-0.316800px;}
.ls3d{letter-spacing:-0.276600px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020160px;}
.ls25{letter-spacing:0.120000px;}
.ls38{letter-spacing:0.140160px;}
.ls8{letter-spacing:0.172800px;}
.ls21{letter-spacing:0.200160px;}
.ls12{letter-spacing:0.466800px;}
.ls41{letter-spacing:0.630000px;}
.ls1{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.840000px;}
.ls31{letter-spacing:0.900000px;}
.ls5{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.280000px;}
.ls19{letter-spacing:3.600000px;}
.ls1a{letter-spacing:5.040000px;}
.ls22{letter-spacing:5.160000px;}
.ls14{letter-spacing:6.480000px;}
.ls4{letter-spacing:7.920000px;}
.ls3{letter-spacing:9.360000px;}
.ls2a{letter-spacing:9.540000px;}
.ls18{letter-spacing:10.800000px;}
.ls16{letter-spacing:12.240000px;}
.ls23{letter-spacing:12.360000px;}
.ls0{letter-spacing:16.560000px;}
.ls6{letter-spacing:16.680000px;}
.ls1f{letter-spacing:19.440000px;}
.ls13{letter-spacing:20.880000px;}
.ls20{letter-spacing:22.320000px;}
.ls3a{letter-spacing:23.760000px;}
.ls37{letter-spacing:23.880000px;}
.ls36{letter-spacing:23.940000px;}
.ls39{letter-spacing:25.200000px;}
.ls15{letter-spacing:28.080000px;}
.ls17{letter-spacing:29.520000px;}
.ls32{letter-spacing:29.532000px;}
.ls33{letter-spacing:29.700000px;}
.ls34{letter-spacing:30.960000px;}
.ls2{letter-spacing:31.140000px;}
.ls35{letter-spacing:32.400000px;}
.ls1c{letter-spacing:35.280000px;}
.ls2c{letter-spacing:36.720000px;}
.ls2b{letter-spacing:36.732000px;}
.ls1b{letter-spacing:62.760000px;}
.ls24{letter-spacing:68.580000px;}
.ls29{letter-spacing:98.760000px;}
.ls7{letter-spacing:154.944000px;}
.ls30{letter-spacing:163.318560px;}
.ls2f{letter-spacing:193.558560px;}
.ls27{letter-spacing:781.680000px;}
.ls28{letter-spacing:928.680000px;}
.ls3b{letter-spacing:1151.832000px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.wsd{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.586800px;}
.ws1{word-spacing:-15.120000px;}
.ws10{word-spacing:-14.843400px;}
.wsc{word-spacing:-14.803200px;}
.ws6{word-spacing:-14.722800px;}
.ws0{word-spacing:-14.653200px;}
.ws8{word-spacing:-14.630400px;}
.ws7{word-spacing:-14.610000px;}
.wsf{word-spacing:-14.575800px;}
.wse{word-spacing:-14.442000px;}
.ws14{word-spacing:-14.310000px;}
.ws3{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.212000px;}
.ws15{word-spacing:-13.204800px;}
.ws12{word-spacing:-13.187400px;}
.ws5{word-spacing:-13.176000px;}
.ws16{word-spacing:-12.870000px;}
.ws17{word-spacing:-12.426000px;}
.ws11{word-spacing:-12.240000px;}
.ws13{word-spacing:-11.766000px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._c{margin-left:-3.744480px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.320000px;}
._1{width:1.302480px;}
._5{width:2.687760px;}
._7{width:4.044480px;}
._6{width:5.180160px;}
._10{width:6.764160px;}
._12{width:8.065200px;}
._11{width:9.177360px;}
._17{width:10.309680px;}
._e{width:11.523600px;}
._d{width:12.728880px;}
._f{width:13.884960px;}
._16{width:16.512000px;}
._15{width:17.538240px;}
._9{width:18.617280px;}
._a{width:19.837440px;}
._b{width:21.198000px;}
._14{width:22.752960px;}
._13{width:24.369840px;}
._8{width:26.339040px;}
._1a{width:27.574320px;}
._4{width:28.877040px;}
._3{width:30.824160px;}
._22{width:31.840560px;}
._29{width:33.160800px;}
._23{width:34.370160px;}
._24{width:35.562240px;}
._2a{width:37.547520px;}
._2b{width:38.916720px;}
._2e{width:39.998640px;}
._1d{width:41.428800px;}
._1e{width:42.673440px;}
._1b{width:43.716480px;}
._1c{width:44.744640px;}
._21{width:45.998160px;}
._2f{width:47.463120px;}
._2c{width:49.600560px;}
._2d{width:51.034560px;}
._28{width:52.062720px;}
._26{width:53.323200px;}
._27{width:54.656160px;}
._1f{width:62.475840px;}
._20{width:63.539040px;}
._18{width:65.731200px;}
._19{width:67.011840px;}
._25{width:187.951440px;}
.fc5{color:rgb(16,0,12);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y90{bottom:3.600000px;}
.y93{bottom:4.320000px;}
.y92{bottom:5.760000px;}
.y97{bottom:6.120000px;}
.yd3{bottom:20.874000px;}
.yab{bottom:20.880000px;}
.y2{bottom:24.480000px;}
.y1{bottom:65.520000px;}
.y38{bottom:102.600000px;}
.y6a{bottom:113.436000px;}
.ya7{bottom:114.516000px;}
.y8d{bottom:115.596000px;}
.yd4{bottom:116.316000px;}
.yda{bottom:116.676000px;}
.y37{bottom:118.116000px;}
.y69{bottom:130.716000px;}
.ya6{bottom:131.436000px;}
.y8c{bottom:132.876000px;}
.y36{bottom:133.956000px;}
.y68{bottom:147.996000px;}
.ya5{bottom:148.716000px;}
.y8b{bottom:150.150000px;}
.y67{bottom:165.270000px;}
.ya4{bottom:165.990000px;}
.y8a{bottom:167.430000px;}
.y35{bottom:168.510000px;}
.y66{bottom:182.190000px;}
.ya3{bottom:183.270000px;}
.yd2{bottom:183.990000px;}
.y89{bottom:184.710000px;}
.y34{bottom:185.790000px;}
.yd9{bottom:199.110000px;}
.y65{bottom:199.470000px;}
.ya2{bottom:200.550000px;}
.y88{bottom:201.630000px;}
.yd1{bottom:201.990000px;}
.y33{bottom:203.070000px;}
.y64{bottom:216.750000px;}
.ya1{bottom:217.875000px;}
.y87{bottom:218.955000px;}
.yd0{bottom:220.035000px;}
.y32{bottom:220.395000px;}
.y63{bottom:234.075000px;}
.ya0{bottom:235.155000px;}
.y86{bottom:236.235000px;}
.y31{bottom:237.675000px;}
.ycf{bottom:238.035000px;}
.y62{bottom:251.355000px;}
.y9f{bottom:252.435000px;}
.y85{bottom:253.515000px;}
.y30{bottom:254.955000px;}
.yce{bottom:256.035000px;}
.y61{bottom:268.635000px;}
.y9e{bottom:269.715000px;}
.y84{bottom:270.795000px;}
.y2f{bottom:272.235000px;}
.ycd{bottom:274.035000px;}
.y60{bottom:285.915000px;}
.y9d{bottom:286.995000px;}
.y83{bottom:288.075000px;}
.y2e{bottom:289.515000px;}
.ycc{bottom:295.275000px;}
.y5f{bottom:303.195000px;}
.y9c{bottom:304.275000px;}
.y82{bottom:305.355000px;}
.y2d{bottom:306.435000px;}
.ycb{bottom:312.555000px;}
.y5e{bottom:320.475000px;}
.y9b{bottom:321.195000px;}
.y81{bottom:322.665000px;}
.y2c{bottom:323.385000px;}
.yca{bottom:330.225000px;}
.yd5{bottom:337.425000px;}
.y5d{bottom:337.785000px;}
.y9a{bottom:338.505000px;}
.y80{bottom:339.945000px;}
.y2b{bottom:341.025000px;}
.y5c{bottom:355.065000px;}
.y99{bottom:355.785000px;}
.y7f{bottom:357.225000px;}
.y2a{bottom:359.385000px;}
.yc9{bottom:364.785000px;}
.y98{bottom:370.185000px;}
.yd8{bottom:371.625000px;}
.y5b{bottom:371.985000px;}
.y7e{bottom:374.505000px;}
.y29{bottom:379.185000px;}
.yc8{bottom:382.065000px;}
.y5a{bottom:389.265000px;}
.y96{bottom:390.345000px;}
.y7d{bottom:391.425000px;}
.y28{bottom:396.465000px;}
.yc7{bottom:398.985000px;}
.yd7{bottom:406.185000px;}
.y59{bottom:406.545000px;}
.y7c{bottom:409.785000px;}
.y95{bottom:410.865000px;}
.y27{bottom:413.385000px;}
.yc6{bottom:416.265000px;}
.y58{bottom:423.825000px;}
.y7b{bottom:428.190000px;}
.y26{bottom:430.710000px;}
.y94{bottom:431.070000px;}
.yc5{bottom:433.590000px;}
.y57{bottom:441.150000px;}
.y7a{bottom:445.470000px;}
.y25{bottom:447.990000px;}
.yc4{bottom:450.870000px;}
.y91{bottom:451.230000px;}
.yd6{bottom:458.070000px;}
.y56{bottom:458.430000px;}
.y79{bottom:463.830000px;}
.y24{bottom:465.270000px;}
.yc3{bottom:468.150000px;}
.y8f{bottom:471.390000px;}
.y55{bottom:475.710000px;}
.y78{bottom:482.190000px;}
.y23{bottom:482.550000px;}
.yc2{bottom:485.430000px;}
.y54{bottom:492.990000px;}
.y22{bottom:499.830000px;}
.y77{bottom:500.550000px;}
.yc1{bottom:502.710000px;}
.y8e{bottom:509.910000px;}
.y53{bottom:510.270000px;}
.y21{bottom:517.110000px;}
.y76{bottom:518.910000px;}
.yc0{bottom:519.990000px;}
.y52{bottom:527.550000px;}
.y20{bottom:534.420000px;}
.y75{bottom:536.220000px;}
.ybf{bottom:537.300000px;}
.y51{bottom:544.860000px;}
.y1f{bottom:551.700000px;}
.y74{bottom:554.580000px;}
.y50{bottom:562.140000px;}
.y1e{bottom:568.980000px;}
.ybe{bottom:571.860000px;}
.y73{bottom:572.940000px;}
.y4f{bottom:579.060000px;}
.y1d{bottom:586.260000px;}
.ybd{bottom:589.140000px;}
.y72{bottom:590.940000px;}
.y4e{bottom:596.340000px;}
.y1c{bottom:603.540000px;}
.ybc{bottom:606.060000px;}
.y71{bottom:609.300000px;}
.y4d{bottom:613.620000px;}
.y1b{bottom:620.460000px;}
.ybb{bottom:623.340000px;}
.y70{bottom:627.660000px;}
.y4c{bottom:630.900000px;}
.y1a{bottom:637.770000px;}
.yba{bottom:640.650000px;}
.y6f{bottom:644.970000px;}
.y4b{bottom:648.210000px;}
.y19{bottom:655.050000px;}
.y6e{bottom:662.250000px;}
.y4a{bottom:665.490000px;}
.y18{bottom:672.330000px;}
.yb9{bottom:673.050000px;}
.y6d{bottom:680.610000px;}
.y49{bottom:682.770000px;}
.y17{bottom:689.610000px;}
.yb8{bottom:691.050000px;}
.y6c{bottom:698.970000px;}
.y48{bottom:700.050000px;}
.y16{bottom:706.890000px;}
.yb7{bottom:709.050000px;}
.y47{bottom:717.330000px;}
.y15{bottom:724.170000px;}
.y46{bottom:734.250000px;}
.y6b{bottom:734.610000px;}
.y14{bottom:741.450000px;}
.yb6{bottom:747.615000px;}
.y45{bottom:751.935000px;}
.y13{bottom:758.775000px;}
.yb5{bottom:764.895000px;}
.y44{bottom:768.855000px;}
.y12{bottom:775.695000px;}
.y43{bottom:786.135000px;}
.y11{bottom:793.335000px;}
.yb4{bottom:799.815000px;}
.y42{bottom:803.415000px;}
.y10{bottom:810.255000px;}
.yb3{bottom:817.095000px;}
.y41{bottom:820.695000px;}
.yf{bottom:827.535000px;}
.yb2{bottom:834.375000px;}
.y40{bottom:837.975000px;}
.ye{bottom:843.015000px;}
.yb1{bottom:851.685000px;}
.y3f{bottom:855.285000px;}
.yd{bottom:858.165000px;}
.yb0{bottom:868.965000px;}
.y3e{bottom:872.565000px;}
.yc{bottom:873.645000px;}
.yaf{bottom:885.885000px;}
.y3d{bottom:889.845000px;}
.yb{bottom:895.245000px;}
.yae{bottom:900.285000px;}
.y3c{bottom:907.125000px;}
.ya{bottom:912.525000px;}
.yad{bottom:918.285000px;}
.y9{bottom:924.045000px;}
.y3b{bottom:924.405000px;}
.yac{bottom:936.285000px;}
.y8{bottom:941.325000px;}
.y3a{bottom:941.685000px;}
.yaa{bottom:954.330000px;}
.y39{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.ya9{bottom:992.850000px;}
.y6{bottom:993.210000px;}
.ya8{bottom:1010.130000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.hd{height:17.280000px;}
.h11{height:17.316000px;}
.he{height:19.440000px;}
.hf{height:19.476000px;}
.h10{height:34.560000px;}
.h12{height:34.596000px;}
.h7{height:38.158594px;}
.ha{height:52.299844px;}
.h9{height:53.704687px;}
.hb{height:54.219375px;}
.h8{height:55.147500px;}
.h5{height:59.328281px;}
.h2{height:59.357813px;}
.h4{height:59.739609px;}
.h6{height:60.952500px;}
.hc{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w6{width:104.832000px;}
.w5{width:110.916000px;}
.w4{width:110.952000px;}
.we{width:115.272000px;}
.wa{width:115.632000px;}
.wd{width:115.992000px;}
.w9{width:119.952000px;}
.w10{width:121.392000px;}
.w11{width:121.752000px;}
.wc{width:125.316000px;}
.w8{width:125.676000px;}
.w7{width:125.712000px;}
.wb{width:130.392000px;}
.w12{width:131.472000px;}
.w3{width:148.032000px;}
.wf{width:220.065000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x1b{left:11.520000px;}
.xe{left:16.920000px;}
.x10{left:21.600000px;}
.x1f{left:22.680000px;}
.x23{left:27.360000px;}
.x2d{left:30.630000px;}
.x17{left:32.796000px;}
.x2f{left:33.870000px;}
.x1d{left:35.325000px;}
.x20{left:36.360000px;}
.x21{left:38.565000px;}
.x26{left:40.005000px;}
.x19{left:42.840000px;}
.x15{left:47.925000px;}
.xb{left:51.155989px;}
.x2e{left:52.605000px;}
.x16{left:55.440000px;}
.x30{left:58.005000px;}
.x3{left:76.715989px;}
.x29{left:78.879000px;}
.xa{left:93.635989px;}
.x2{left:119.231989px;}
.x5{left:163.514989px;}
.x7{left:179.384989px;}
.x18{left:182.625000px;}
.xf{left:200.265000px;}
.x28{left:220.784989px;}
.x8{left:231.224989px;}
.x31{left:235.184989px;}
.xc{left:244.589989px;}
.x22{left:256.109989px;}
.x4{left:271.589989px;}
.x2a{left:297.870000px;}
.x1a{left:309.060000px;}
.x11{left:311.940000px;}
.x24{left:313.740000px;}
.x9{left:337.859989px;}
.xd{left:349.019989px;}
.x1{left:363.419989px;}
.x6{left:374.609989px;}
.x2b{left:419.970000px;}
.x12{left:423.570000px;}
.x1c{left:435.450000px;}
.x25{left:439.770000px;}
.x13{left:535.245000px;}
.x2c{left:542.445000px;}
.x1e{left:556.125000px;}
.x27{left:607.289989px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-56.320000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls3e{letter-spacing:-1.776000pt;}
.lsc{letter-spacing:-1.728000pt;}
.ls40{letter-spacing:-1.701333pt;}
.lsb{letter-spacing:-1.696000pt;}
.ls3c{letter-spacing:-1.280000pt;}
.ls44{letter-spacing:-1.114667pt;}
.ls43{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.602667pt;}
.ls2e{letter-spacing:-0.483733pt;}
.ls10{letter-spacing:-0.453333pt;}
.ls3f{letter-spacing:-0.437867pt;}
.ls11{letter-spacing:-0.435200pt;}
.ls42{letter-spacing:-0.422400pt;}
.lsa{letter-spacing:-0.414933pt;}
.lsf{letter-spacing:-0.353067pt;}
.ls26{letter-spacing:-0.281600pt;}
.ls3d{letter-spacing:-0.245867pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017920pt;}
.ls25{letter-spacing:0.106667pt;}
.ls38{letter-spacing:0.124587pt;}
.ls8{letter-spacing:0.153600pt;}
.ls21{letter-spacing:0.177920pt;}
.ls12{letter-spacing:0.414933pt;}
.ls41{letter-spacing:0.560000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls31{letter-spacing:0.800000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls19{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:4.480000pt;}
.ls22{letter-spacing:4.586667pt;}
.ls14{letter-spacing:5.760000pt;}
.ls4{letter-spacing:7.040000pt;}
.ls3{letter-spacing:8.320000pt;}
.ls2a{letter-spacing:8.480000pt;}
.ls18{letter-spacing:9.600000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls23{letter-spacing:10.986667pt;}
.ls0{letter-spacing:14.720000pt;}
.ls6{letter-spacing:14.826667pt;}
.ls1f{letter-spacing:17.280000pt;}
.ls13{letter-spacing:18.560000pt;}
.ls20{letter-spacing:19.840000pt;}
.ls3a{letter-spacing:21.120000pt;}
.ls37{letter-spacing:21.226667pt;}
.ls36{letter-spacing:21.280000pt;}
.ls39{letter-spacing:22.400000pt;}
.ls15{letter-spacing:24.960000pt;}
.ls17{letter-spacing:26.240000pt;}
.ls32{letter-spacing:26.250667pt;}
.ls33{letter-spacing:26.400000pt;}
.ls34{letter-spacing:27.520000pt;}
.ls2{letter-spacing:27.680000pt;}
.ls35{letter-spacing:28.800000pt;}
.ls1c{letter-spacing:31.360000pt;}
.ls2c{letter-spacing:32.640000pt;}
.ls2b{letter-spacing:32.650667pt;}
.ls1b{letter-spacing:55.786667pt;}
.ls24{letter-spacing:60.960000pt;}
.ls29{letter-spacing:87.786667pt;}
.ls7{letter-spacing:137.728000pt;}
.ls30{letter-spacing:145.172053pt;}
.ls2f{letter-spacing:172.052053pt;}
.ls27{letter-spacing:694.826667pt;}
.ls28{letter-spacing:825.493333pt;}
.ls3b{letter-spacing:1023.850667pt;}
.wsb{word-spacing:-53.760000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.854933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.194133pt;}
.wsc{word-spacing:-13.158400pt;}
.ws6{word-spacing:-13.086933pt;}
.ws0{word-spacing:-13.025067pt;}
.ws8{word-spacing:-13.004800pt;}
.ws7{word-spacing:-12.986667pt;}
.wsf{word-spacing:-12.956267pt;}
.wse{word-spacing:-12.837333pt;}
.ws14{word-spacing:-12.720000pt;}
.ws3{word-spacing:-12.160000pt;}
.ws4{word-spacing:-11.744000pt;}
.ws15{word-spacing:-11.737600pt;}
.ws12{word-spacing:-11.722133pt;}
.ws5{word-spacing:-11.712000pt;}
.ws16{word-spacing:-11.440000pt;}
.ws17{word-spacing:-11.045333pt;}
.ws11{word-spacing:-10.880000pt;}
.ws13{word-spacing:-10.458667pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._c{margin-left:-3.328427pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.157760pt;}
._5{width:2.389120pt;}
._7{width:3.595093pt;}
._6{width:4.604587pt;}
._10{width:6.012587pt;}
._12{width:7.169067pt;}
._11{width:8.157653pt;}
._17{width:9.164160pt;}
._e{width:10.243200pt;}
._d{width:11.314560pt;}
._f{width:12.342187pt;}
._16{width:14.677333pt;}
._15{width:15.589547pt;}
._9{width:16.548693pt;}
._a{width:17.633280pt;}
._b{width:18.842667pt;}
._14{width:20.224853pt;}
._13{width:21.662080pt;}
._8{width:23.412480pt;}
._1a{width:24.510507pt;}
._4{width:25.668480pt;}
._3{width:27.399253pt;}
._22{width:28.302720pt;}
._29{width:29.476267pt;}
._23{width:30.551253pt;}
._24{width:31.610880pt;}
._2a{width:33.375573pt;}
._2b{width:34.592640pt;}
._2e{width:35.554347pt;}
._1d{width:36.825600pt;}
._1e{width:37.931947pt;}
._1b{width:38.859093pt;}
._1c{width:39.773013pt;}
._21{width:40.887253pt;}
._2f{width:42.189440pt;}
._2c{width:44.089387pt;}
._2d{width:45.364053pt;}
._28{width:46.277973pt;}
._26{width:47.398400pt;}
._27{width:48.583253pt;}
._1f{width:55.534080pt;}
._20{width:56.479147pt;}
._18{width:58.427733pt;}
._19{width:59.566080pt;}
._25{width:167.067947pt;}
.fs2{font-size:34.560000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.200000pt;}
.y93{bottom:3.840000pt;}
.y92{bottom:5.120000pt;}
.y97{bottom:5.440000pt;}
.yd3{bottom:18.554667pt;}
.yab{bottom:18.560000pt;}
.y2{bottom:21.760000pt;}
.y1{bottom:58.240000pt;}
.y38{bottom:91.200000pt;}
.y6a{bottom:100.832000pt;}
.ya7{bottom:101.792000pt;}
.y8d{bottom:102.752000pt;}
.yd4{bottom:103.392000pt;}
.yda{bottom:103.712000pt;}
.y37{bottom:104.992000pt;}
.y69{bottom:116.192000pt;}
.ya6{bottom:116.832000pt;}
.y8c{bottom:118.112000pt;}
.y36{bottom:119.072000pt;}
.y68{bottom:131.552000pt;}
.ya5{bottom:132.192000pt;}
.y8b{bottom:133.466667pt;}
.y67{bottom:146.906667pt;}
.ya4{bottom:147.546667pt;}
.y8a{bottom:148.826667pt;}
.y35{bottom:149.786667pt;}
.y66{bottom:161.946667pt;}
.ya3{bottom:162.906667pt;}
.yd2{bottom:163.546667pt;}
.y89{bottom:164.186667pt;}
.y34{bottom:165.146667pt;}
.yd9{bottom:176.986667pt;}
.y65{bottom:177.306667pt;}
.ya2{bottom:178.266667pt;}
.y88{bottom:179.226667pt;}
.yd1{bottom:179.546667pt;}
.y33{bottom:180.506667pt;}
.y64{bottom:192.666667pt;}
.ya1{bottom:193.666667pt;}
.y87{bottom:194.626667pt;}
.yd0{bottom:195.586667pt;}
.y32{bottom:195.906667pt;}
.y63{bottom:208.066667pt;}
.ya0{bottom:209.026667pt;}
.y86{bottom:209.986667pt;}
.y31{bottom:211.266667pt;}
.ycf{bottom:211.586667pt;}
.y62{bottom:223.426667pt;}
.y9f{bottom:224.386667pt;}
.y85{bottom:225.346667pt;}
.y30{bottom:226.626667pt;}
.yce{bottom:227.586667pt;}
.y61{bottom:238.786667pt;}
.y9e{bottom:239.746667pt;}
.y84{bottom:240.706667pt;}
.y2f{bottom:241.986667pt;}
.ycd{bottom:243.586667pt;}
.y60{bottom:254.146667pt;}
.y9d{bottom:255.106667pt;}
.y83{bottom:256.066667pt;}
.y2e{bottom:257.346667pt;}
.ycc{bottom:262.466667pt;}
.y5f{bottom:269.506667pt;}
.y9c{bottom:270.466667pt;}
.y82{bottom:271.426667pt;}
.y2d{bottom:272.386667pt;}
.ycb{bottom:277.826667pt;}
.y5e{bottom:284.866667pt;}
.y9b{bottom:285.506667pt;}
.y81{bottom:286.813333pt;}
.y2c{bottom:287.453333pt;}
.yca{bottom:293.533333pt;}
.yd5{bottom:299.933333pt;}
.y5d{bottom:300.253333pt;}
.y9a{bottom:300.893333pt;}
.y80{bottom:302.173333pt;}
.y2b{bottom:303.133333pt;}
.y5c{bottom:315.613333pt;}
.y99{bottom:316.253333pt;}
.y7f{bottom:317.533333pt;}
.y2a{bottom:319.453333pt;}
.yc9{bottom:324.253333pt;}
.y98{bottom:329.053333pt;}
.yd8{bottom:330.333333pt;}
.y5b{bottom:330.653333pt;}
.y7e{bottom:332.893333pt;}
.y29{bottom:337.053333pt;}
.yc8{bottom:339.613333pt;}
.y5a{bottom:346.013333pt;}
.y96{bottom:346.973333pt;}
.y7d{bottom:347.933333pt;}
.y28{bottom:352.413333pt;}
.yc7{bottom:354.653333pt;}
.yd7{bottom:361.053333pt;}
.y59{bottom:361.373333pt;}
.y7c{bottom:364.253333pt;}
.y95{bottom:365.213333pt;}
.y27{bottom:367.453333pt;}
.yc6{bottom:370.013333pt;}
.y58{bottom:376.733333pt;}
.y7b{bottom:380.613333pt;}
.y26{bottom:382.853333pt;}
.y94{bottom:383.173333pt;}
.yc5{bottom:385.413333pt;}
.y57{bottom:392.133333pt;}
.y7a{bottom:395.973333pt;}
.y25{bottom:398.213333pt;}
.yc4{bottom:400.773333pt;}
.y91{bottom:401.093333pt;}
.yd6{bottom:407.173333pt;}
.y56{bottom:407.493333pt;}
.y79{bottom:412.293333pt;}
.y24{bottom:413.573333pt;}
.yc3{bottom:416.133333pt;}
.y8f{bottom:419.013333pt;}
.y55{bottom:422.853333pt;}
.y78{bottom:428.613333pt;}
.y23{bottom:428.933333pt;}
.yc2{bottom:431.493333pt;}
.y54{bottom:438.213333pt;}
.y22{bottom:444.293333pt;}
.y77{bottom:444.933333pt;}
.yc1{bottom:446.853333pt;}
.y8e{bottom:453.253333pt;}
.y53{bottom:453.573333pt;}
.y21{bottom:459.653333pt;}
.y76{bottom:461.253333pt;}
.yc0{bottom:462.213333pt;}
.y52{bottom:468.933333pt;}
.y20{bottom:475.040000pt;}
.y75{bottom:476.640000pt;}
.ybf{bottom:477.600000pt;}
.y51{bottom:484.320000pt;}
.y1f{bottom:490.400000pt;}
.y74{bottom:492.960000pt;}
.y50{bottom:499.680000pt;}
.y1e{bottom:505.760000pt;}
.ybe{bottom:508.320000pt;}
.y73{bottom:509.280000pt;}
.y4f{bottom:514.720000pt;}
.y1d{bottom:521.120000pt;}
.ybd{bottom:523.680000pt;}
.y72{bottom:525.280000pt;}
.y4e{bottom:530.080000pt;}
.y1c{bottom:536.480000pt;}
.ybc{bottom:538.720000pt;}
.y71{bottom:541.600000pt;}
.y4d{bottom:545.440000pt;}
.y1b{bottom:551.520000pt;}
.ybb{bottom:554.080000pt;}
.y70{bottom:557.920000pt;}
.y4c{bottom:560.800000pt;}
.y1a{bottom:566.906667pt;}
.yba{bottom:569.466667pt;}
.y6f{bottom:573.306667pt;}
.y4b{bottom:576.186667pt;}
.y19{bottom:582.266667pt;}
.y6e{bottom:588.666667pt;}
.y4a{bottom:591.546667pt;}
.y18{bottom:597.626667pt;}
.yb9{bottom:598.266667pt;}
.y6d{bottom:604.986667pt;}
.y49{bottom:606.906667pt;}
.y17{bottom:612.986667pt;}
.yb8{bottom:614.266667pt;}
.y6c{bottom:621.306667pt;}
.y48{bottom:622.266667pt;}
.y16{bottom:628.346667pt;}
.yb7{bottom:630.266667pt;}
.y47{bottom:637.626667pt;}
.y15{bottom:643.706667pt;}
.y46{bottom:652.666667pt;}
.y6b{bottom:652.986667pt;}
.y14{bottom:659.066667pt;}
.yb6{bottom:664.546667pt;}
.y45{bottom:668.386667pt;}
.y13{bottom:674.466667pt;}
.yb5{bottom:679.906667pt;}
.y44{bottom:683.426667pt;}
.y12{bottom:689.506667pt;}
.y43{bottom:698.786667pt;}
.y11{bottom:705.186667pt;}
.yb4{bottom:710.946667pt;}
.y42{bottom:714.146667pt;}
.y10{bottom:720.226667pt;}
.yb3{bottom:726.306667pt;}
.y41{bottom:729.506667pt;}
.yf{bottom:735.586667pt;}
.yb2{bottom:741.666667pt;}
.y40{bottom:744.866667pt;}
.ye{bottom:749.346667pt;}
.yb1{bottom:757.053333pt;}
.y3f{bottom:760.253333pt;}
.yd{bottom:762.813333pt;}
.yb0{bottom:772.413333pt;}
.y3e{bottom:775.613333pt;}
.yc{bottom:776.573333pt;}
.yaf{bottom:787.453333pt;}
.y3d{bottom:790.973333pt;}
.yb{bottom:795.773333pt;}
.yae{bottom:800.253333pt;}
.y3c{bottom:806.333333pt;}
.ya{bottom:811.133333pt;}
.yad{bottom:816.253333pt;}
.y9{bottom:821.373333pt;}
.y3b{bottom:821.693333pt;}
.yac{bottom:832.253333pt;}
.y8{bottom:836.733333pt;}
.y3a{bottom:837.053333pt;}
.yaa{bottom:848.293333pt;}
.y39{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.ya9{bottom:882.533333pt;}
.y6{bottom:882.853333pt;}
.ya8{bottom:897.893333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.hd{height:15.360000pt;}
.h11{height:15.392000pt;}
.he{height:17.280000pt;}
.hf{height:17.312000pt;}
.h10{height:30.720000pt;}
.h12{height:30.752000pt;}
.h7{height:33.918750pt;}
.ha{height:46.488750pt;}
.h9{height:47.737500pt;}
.hb{height:48.195000pt;}
.h8{height:49.020000pt;}
.h5{height:52.736250pt;}
.h2{height:52.762500pt;}
.h4{height:53.101875pt;}
.h6{height:54.180000pt;}
.hc{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w6{width:93.184000pt;}
.w5{width:98.592000pt;}
.w4{width:98.624000pt;}
.we{width:102.464000pt;}
.wa{width:102.784000pt;}
.wd{width:103.104000pt;}
.w9{width:106.624000pt;}
.w10{width:107.904000pt;}
.w11{width:108.224000pt;}
.wc{width:111.392000pt;}
.w8{width:111.712000pt;}
.w7{width:111.744000pt;}
.wb{width:115.904000pt;}
.w12{width:116.864000pt;}
.w3{width:131.584000pt;}
.wf{width:195.613333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x1b{left:10.240000pt;}
.xe{left:15.040000pt;}
.x10{left:19.200000pt;}
.x1f{left:20.160000pt;}
.x23{left:24.320000pt;}
.x2d{left:27.226667pt;}
.x17{left:29.152000pt;}
.x2f{left:30.106667pt;}
.x1d{left:31.400000pt;}
.x20{left:32.320000pt;}
.x21{left:34.280000pt;}
.x26{left:35.560000pt;}
.x19{left:38.080000pt;}
.x15{left:42.600000pt;}
.xb{left:45.471990pt;}
.x2e{left:46.760000pt;}
.x16{left:49.280000pt;}
.x30{left:51.560000pt;}
.x3{left:68.191990pt;}
.x29{left:70.114667pt;}
.xa{left:83.231990pt;}
.x2{left:105.983990pt;}
.x5{left:145.346657pt;}
.x7{left:159.453324pt;}
.x18{left:162.333333pt;}
.xf{left:178.013333pt;}
.x28{left:196.253324pt;}
.x8{left:205.533324pt;}
.x31{left:209.053324pt;}
.xc{left:217.413324pt;}
.x22{left:227.653324pt;}
.x4{left:241.413324pt;}
.x2a{left:264.773333pt;}
.x1a{left:274.720000pt;}
.x11{left:277.280000pt;}
.x24{left:278.880000pt;}
.x9{left:300.319990pt;}
.xd{left:310.239990pt;}
.x1{left:323.039990pt;}
.x6{left:332.986657pt;}
.x2b{left:373.306667pt;}
.x12{left:376.506667pt;}
.x1c{left:387.066667pt;}
.x25{left:390.906667pt;}
.x13{left:475.773333pt;}
.x2c{left:482.173333pt;}
.x1e{left:494.333333pt;}
.x27{left:539.813324pt;}
}




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