
    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_33ba77d856bd4b2092459a81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.149414;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_3f6082cd53893efa7bed6c12.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_6a4385aa170b292d0d207ea4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125488;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_b24ec6e6b569255cddff1861.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_fadd95d4c0814beca7d84f26.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.125488;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_4c4054db8756e384d5c602f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_670a31f12b5de49186970518.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_530f079b09da8c65efc01c75.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987305;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_0cc04eb0b7f54afa0a56c616.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917000;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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.738000px;}
.ls3{letter-spacing:-0.553200px;}
.ls22{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.166800px;}
.ls1a{letter-spacing:-0.125400px;}
.ls1d{letter-spacing:-0.090000px;}
.ls1f{letter-spacing:-0.085200px;}
.ls23{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.068400px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.133800px;}
.ls2{letter-spacing:0.166800px;}
.ls15{letter-spacing:0.181440px;}
.ls21{letter-spacing:0.196200px;}
.ls1b{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.223800px;}
.ls1e{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.296400px;}
.ls0{letter-spacing:0.311040px;}
.ls7{letter-spacing:0.324000px;}
.ls10{letter-spacing:8.010720px;}
.ls11{letter-spacing:8.089200px;}
.lsf{letter-spacing:23.299776px;}
.ls12{letter-spacing:23.391360px;}
.ls20{letter-spacing:26.429760px;}
.ls17{letter-spacing:45.592128px;}
.ls16{letter-spacing:45.658080px;}
.ls14{letter-spacing:51.825600px;}
.lsa{letter-spacing:56.109600px;}
.lsb{letter-spacing:56.160000px;}
.ls6{letter-spacing:59.184000px;}
.ls18{letter-spacing:59.220000px;}
.ls5{letter-spacing:59.328000px;}
.ls9{letter-spacing:97.509600px;}
.ls8{letter-spacing:97.560000px;}
.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;}
}
.ws2c{word-spacing:-55.692000px;}
.ws13{word-spacing:-55.453248px;}
.wsb{word-spacing:-55.404000px;}
.ws20{word-spacing:-48.240000px;}
.wsc{word-spacing:-38.066688px;}
.wsd{word-spacing:-38.016000px;}
.ws1c{word-spacing:-36.629280px;}
.ws5{word-spacing:-33.707520px;}
.ws4{word-spacing:-32.799168px;}
.ws3{word-spacing:-32.749920px;}
.ws2e{word-spacing:-29.703168px;}
.ws2d{word-spacing:-29.652480px;}
.ws11{word-spacing:-25.394688px;}
.ws12{word-spacing:-25.344000px;}
.ws2f{word-spacing:-25.272000px;}
.wsf{word-spacing:-24.624000px;}
.ws1b{word-spacing:-23.388480px;}
.ws1a{word-spacing:-23.316480px;}
.ws18{word-spacing:-22.703328px;}
.ws14{word-spacing:-22.654080px;}
.ws16{word-spacing:-22.353408px;}
.ws6{word-spacing:-22.302720px;}
.ws0{word-spacing:-21.835920px;}
.ws1{word-spacing:-21.669120px;}
.ws10{word-spacing:-21.035520px;}
.ws19{word-spacing:-20.487168px;}
.ws21{word-spacing:-20.437920px;}
.ws26{word-spacing:-19.058688px;}
.ws27{word-spacing:-19.008000px;}
.ws24{word-spacing:-18.918000px;}
.ws23{word-spacing:-18.517248px;}
.ws22{word-spacing:-18.468000px;}
.ws1f{word-spacing:-13.285320px;}
.ws7{word-spacing:-1.513920px;}
.wsa{word-spacing:-1.400640px;}
.ws9{word-spacing:-1.190016px;}
.ws17{word-spacing:-0.449280px;}
.ws1d{word-spacing:-0.391680px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:1.036800px;}
.ws2b{word-spacing:1.236000px;}
.ws30{word-spacing:4.630320px;}
.ws15{word-spacing:5.192352px;}
.wse{word-spacing:5.376000px;}
.ws25{word-spacing:131.172000px;}
.ws29{word-spacing:151.638000px;}
.ws1e{word-spacing:170.742960px;}
.ws2a{word-spacing:173.116608px;}
.ws28{word-spacing:200.076000px;}
._c{margin-left:-12.109824px;}
._16{margin-left:-10.812000px;}
._3{margin-left:-9.356544px;}
._6{margin-left:-7.262928px;}
._b{margin-left:-5.237136px;}
._5{margin-left:-3.586032px;}
._9{margin-left:-2.534400px;}
._1{margin-left:-1.297728px;}
._2{width:1.189584px;}
._0{width:2.518560px;}
._4{width:4.109088px;}
._13{width:17.820000px;}
._a{width:20.178720px;}
._d{width:21.484800px;}
._e{width:26.352000px;}
._f{width:27.572880px;}
._11{width:95.369328px;}
._10{width:175.596240px;}
._17{width:298.800000px;}
._15{width:377.131008px;}
._8{width:538.104000px;}
._7{width:704.026416px;}
._12{width:821.656416px;}
._14{width:883.002144px;}
.fc7{color:rgb(0,135,94);}
.fc9{color:rgb(13,83,158);}
.fc6{color:rgb(2,47,99);}
.fc4{color:rgb(6,142,202);}
.fc2{color:rgb(5,99,193);}
.fc5{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc8{color:transparent;}
.fc0{color:rgb(20,140,203);}
.fsc{font-size:36.000000px;}
.fs17{font-size:48.240000px;}
.fs19{font-size:54.000000px;}
.fs1a{font-size:54.144000px;}
.fsf{font-size:59.760000px;}
.fs10{font-size:59.904000px;}
.fs4{font-size:63.360000px;}
.fsb{font-size:63.504000px;}
.fs11{font-size:66.240000px;}
.fs12{font-size:66.384000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs15{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs8{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fsd{font-size:126.000000px;}
.fse{font-size:126.144000px;}
.fs16{font-size:131.760000px;}
.fs13{font-size:144.000000px;}
.fs18{font-size:144.144000px;}
.fs7{font-size:162.000000px;}
.fsa{font-size:162.144000px;}
.fs0{font-size:167.760000px;}
.fs1{font-size:167.904000px;}
.fs1b{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:10.980000px;}
.y50{bottom:23.580000px;}
.yad{bottom:24.624000px;}
.ya7{bottom:27.216000px;}
.y7b{bottom:30.564000px;}
.y8d{bottom:33.552000px;}
.y64{bottom:41.472000px;}
.y66{bottom:44.136000px;}
.yac{bottom:47.664000px;}
.y8e{bottom:48.420000px;}
.y7a{bottom:53.604000px;}
.y33{bottom:57.672000px;}
.y8c{bottom:58.752000px;}
.ya6{bottom:61.812000px;}
.y4e{bottom:62.790000px;}
.y58{bottom:64.800000px;}
.y65{bottom:65.412000px;}
.yb4{bottom:68.688000px;}
.yc9{bottom:69.012000px;}
.yab{bottom:70.740000px;}
.y14{bottom:72.684000px;}
.y4b{bottom:76.284000px;}
.y9{bottom:79.488000px;}
.y79{bottom:85.824000px;}
.y46{bottom:87.048000px;}
.ya5{bottom:88.812000px;}
.y32{bottom:90.108000px;}
.yb3{bottom:91.728000px;}
.y8b{bottom:92.232000px;}
.yaa{bottom:93.600000px;}
.yc8{bottom:93.852000px;}
.y23{bottom:95.508000px;}
.y4a{bottom:97.920000px;}
.y13{bottom:101.520000px;}
.y78{bottom:103.824000px;}
.ya4{bottom:105.012000px;}
.y45{bottom:105.084000px;}
.y61{bottom:107.460000px;}
.y63{bottom:109.944000px;}
.y8{bottom:110.844000px;}
.y22{bottom:114.408000px;}
.yb2{bottom:114.768000px;}
.ya9{bottom:116.640000px;}
.y8a{bottom:118.332000px;}
.yc7{bottom:118.692000px;}
.y49{bottom:119.520000px;}
.ya3{bottom:121.248000px;}
.y31{bottom:122.508000px;}
.y44{bottom:123.084000px;}
.y7{bottom:130.284000px;}
.y12{bottom:130.320000px;}
.y62{bottom:131.184000px;}
.y21{bottom:133.344000px;}
.y77{bottom:133.524000px;}
.ya2{bottom:137.448000px;}
.yb1{bottom:137.664000px;}
.y43{bottom:141.084000px;}
.yc6{bottom:143.532000px;}
.y89{bottom:145.188000px;}
.y20{bottom:152.250000px;}
.ya1{bottom:153.645000px;}
.yd1{bottom:154.905000px;}
.y76{bottom:156.390000px;}
.y11{bottom:159.120000px;}
.yb0{bottom:160.710000px;}
.y6{bottom:161.250000px;}
.y68{bottom:164.055000px;}
.y3e{bottom:169.305000px;}
.ya0{bottom:169.845000px;}
.y1f{bottom:171.150000px;}
.y60{bottom:175.290000px;}
.yd0{bottom:176.505000px;}
.y75{bottom:179.430000px;}
.y26{bottom:180.150000px;}
.y67{bottom:182.055000px;}
.y88{bottom:183.165000px;}
.yaf{bottom:183.750000px;}
.y5c{bottom:184.215000px;}
.y9f{bottom:186.045000px;}
.y30{bottom:187.305000px;}
.y27{bottom:190.050000px;}
.yc5{bottom:193.245000px;}
.y5f{bottom:196.890000px;}
.ycf{bottom:198.105000px;}
.y1e{bottom:199.050000px;}
.y9e{bottom:202.245000px;}
.y5b{bottom:203.655000px;}
.y3b{bottom:204.225000px;}
.y39{bottom:204.690000px;}
.yae{bottom:206.610000px;}
.y87{bottom:209.265000px;}
.y74{bottom:211.650000px;}
.y8f{bottom:214.020000px;}
.y10{bottom:216.750000px;}
.y1d{bottom:217.950000px;}
.yc4{bottom:218.085000px;}
.y5e{bottom:218.130000px;}
.y2f{bottom:219.750000px;}
.yce{bottom:220.605000px;}
.y5{bottom:221.730000px;}
.y59{bottom:224.895000px;}
.y3a{bottom:225.825000px;}
.y38{bottom:226.290000px;}
.y73{bottom:229.650000px;}
.y86{bottom:235.365000px;}
.y1c{bottom:236.850000px;}
.yc3{bottom:242.925000px;}
.yb7{bottom:243.795000px;}
.y9d{bottom:245.490000px;}
.yf{bottom:245.550000px;}
.y25{bottom:245.850000px;}
.y5d{bottom:249.015000px;}
.y4{bottom:250.920000px;}
.y2e{bottom:252.150000px;}
.y1b{bottom:255.750000px;}
.y9c{bottom:261.690000px;}
.y85{bottom:262.230000px;}
.y72{bottom:262.725000px;}
.y24{bottom:264.780000px;}
.yb6{bottom:266.835000px;}
.ycd{bottom:270.150000px;}
.ybc{bottom:271.800000px;}
.y9b{bottom:277.890000px;}
.y42{bottom:282.345000px;}
.y1a{bottom:283.680000px;}
.y2d{bottom:284.550000px;}
.y71{bottom:285.810000px;}
.y4f{bottom:289.545000px;}
.y5a{bottom:289.695000px;}
.ycc{bottom:291.750000px;}
.yc2{bottom:292.650000px;}
.ybb{bottom:294.870000px;}
.y41{bottom:300.345000px;}
.y84{bottom:300.930000px;}
.y19{bottom:302.580000px;}
.y37{bottom:303.045000px;}
.ye{bottom:303.150000px;}
.y48{bottom:304.275000px;}
.y9a{bottom:304.890000px;}
.y57{bottom:305.715000px;}
.yb5{bottom:312.735000px;}
.y70{bottom:313.890000px;}
.y2c{bottom:316.980000px;}
.yc1{bottom:317.490000px;}
.yba{bottom:317.910000px;}
.y40{bottom:318.345000px;}
.y99{bottom:321.090000px;}
.y18{bottom:321.480000px;}
.y47{bottom:322.275000px;}
.y56{bottom:324.615000px;}
.y3{bottom:326.520000px;}
.y6f{bottom:336.930000px;}
.y36{bottom:337.110000px;}
.y98{bottom:337.290000px;}
.ycb{bottom:339.090000px;}
.y83{bottom:339.630000px;}
.yb9{bottom:340.770000px;}
.yc0{bottom:342.330000px;}
.y55{bottom:344.055000px;}
.y3d{bottom:348.195000px;}
.y2b{bottom:349.380000px;}
.y3c{bottom:350.820000px;}
.y6e{bottom:359.790000px;}
.yd{bottom:360.795000px;}
.yb8{bottom:363.810000px;}
.y97{bottom:364.320000px;}
.y53{bottom:365.655000px;}
.y35{bottom:371.130000px;}
.y2{bottom:371.910000px;}
.y17{bottom:373.320000px;}
.y90{bottom:379.800000px;}
.y96{bottom:380.520000px;}
.y2a{bottom:381.780000px;}
.y82{bottom:382.830000px;}
.y51{bottom:386.925000px;}
.y6d{bottom:387.870000px;}
.y54{bottom:389.235000px;}
.yc{bottom:389.595000px;}
.ybf{bottom:392.010000px;}
.y4d{bottom:401.040000px;}
.y95{bottom:407.700000px;}
.y81{bottom:408.060000px;}
.y52{bottom:410.505000px;}
.y6c{bottom:410.940000px;}
.y29{bottom:414.180000px;}
.y28{bottom:416.010000px;}
.ybe{bottom:416.880000px;}
.y1{bottom:417.270000px;}
.y94{bottom:425.700000px;}
.y3f{bottom:429.585000px;}
.yca{bottom:438.510000px;}
.ybd{bottom:441.720000px;}
.y80{bottom:442.260000px;}
.y6b{bottom:443.130000px;}
.y7c{bottom:460.410000px;}
.y6a{bottom:461.160000px;}
.y93{bottom:467.205000px;}
.y7f{bottom:476.460000px;}
.yb{bottom:477.510000px;}
.y16{bottom:503.205000px;}
.y92{bottom:507.705000px;}
.y34{bottom:509.505000px;}
.y7e{bottom:514.515000px;}
.y4c{bottom:517.170000px;}
.ya{bottom:518.010000px;}
.y69{bottom:532.650000px;}
.y15{bottom:543.750000px;}
.y91{bottom:548.205000px;}
.y7d{bottom:550.155000px;}
.h11{height:32.906250px;}
.h31{height:43.269961px;}
.h1c{height:48.138750px;}
.h1e{height:48.248156px;}
.h35{height:49.359375px;}
.h36{height:49.491000px;}
.h33{height:50.862305px;}
.h34{height:50.997937px;}
.h16{height:54.624375px;}
.h17{height:54.756000px;}
.h24{height:56.287617px;}
.h25{height:56.423250px;}
.he{height:57.915000px;}
.h10{height:58.046625px;}
.h5{height:59.678438px;}
.hf{height:59.814070px;}
.h28{height:60.547500px;}
.h38{height:60.652800px;}
.h27{height:60.679125px;}
.h19{height:62.391094px;}
.h1a{height:62.526727px;}
.h30{height:64.582031px;}
.h6{height:65.812500px;}
.h7{height:65.944125px;}
.hd{height:67.816406px;}
.h2e{height:75.560977px;}
.h2f{height:75.690141px;}
.h2a{height:77.000625px;}
.h2c{height:77.132250px;}
.h2b{height:79.345195px;}
.h29{height:79.480828px;}
.hb{height:87.530625px;}
.h9{height:90.195820px;}
.ha{height:90.331453px;}
.h12{height:98.718750px;}
.h13{height:98.850375px;}
.h4{height:101.724609px;}
.h3{height:101.860242px;}
.h14{height:115.171875px;}
.h15{height:115.303500px;}
.h2d{height:118.185117px;}
.h26{height:135.632812px;}
.h32{height:135.768445px;}
.h18{height:138.780000px;}
.h8{height:152.586914px;}
.hc{height:152.722547px;}
.h1{height:158.012227px;}
.h2{height:158.147859px;}
.h22{height:218.340000px;}
.h37{height:249.021844px;}
.h23{height:271.080000px;}
.h20{height:284.220000px;}
.h21{height:336.780000px;}
.h1d{height:422.280000px;}
.h1f{height:488.520000px;}
.h1b{height:583.920000px;}
.h0{height:607.500000px;}
.w2{width:290.520000px;}
.w3{width:609.840000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x32{left:-17.028016px;}
.x0{left:0.000000px;}
.x18{left:3.276000px;}
.x1a{left:8.895000px;}
.x16{left:17.531984px;}
.xe{left:25.487984px;}
.xb{left:29.159984px;}
.x17{left:30.960000px;}
.x1{left:33.551984px;}
.x24{left:37.979984px;}
.x1b{left:43.235984px;}
.x29{left:46.763984px;}
.x4{left:47.987984px;}
.x3{left:52.955984px;}
.x23{left:54.035984px;}
.x2{left:57.239984px;}
.x25{left:60.083984px;}
.x20{left:61.235984px;}
.xc{left:62.999984px;}
.x5{left:68.363984px;}
.x26{left:73.583984px;}
.x2a{left:79.307984px;}
.xd{left:83.159984px;}
.x13{left:113.651984px;}
.x31{left:145.007984px;}
.x2d{left:164.444984px;}
.x2b{left:220.289984px;}
.x19{left:321.300000px;}
.x2e{left:327.314984px;}
.x10{left:353.699984px;}
.x21{left:360.974984px;}
.x1f{left:366.764984px;}
.x15{left:375.269984px;}
.x14{left:380.594984px;}
.xf{left:382.679984px;}
.x6{left:389.369984px;}
.x7{left:409.709984px;}
.x1c{left:431.744984px;}
.x1d{left:482.144984px;}
.x2f{left:505.079984px;}
.x27{left:520.664984px;}
.x28{left:541.724984px;}
.x11{left:548.789984px;}
.x1e{left:600.629984px;}
.x2c{left:608.399984px;}
.x30{left:709.664984px;}
.x8{left:730.769984px;}
.x12{left:738.569984px;}
.x9{left:751.109984px;}
.x22{left:870.554984px;}
.xa{left:958.349984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.656000pt;}
.ls3{letter-spacing:-0.491733pt;}
.ls22{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.148267pt;}
.ls1a{letter-spacing:-0.111467pt;}
.ls1d{letter-spacing:-0.080000pt;}
.ls1f{letter-spacing:-0.075733pt;}
.ls23{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.060800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.118933pt;}
.ls2{letter-spacing:0.148267pt;}
.ls15{letter-spacing:0.161280pt;}
.ls21{letter-spacing:0.174400pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.198933pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.263467pt;}
.ls0{letter-spacing:0.276480pt;}
.ls7{letter-spacing:0.288000pt;}
.ls10{letter-spacing:7.120640pt;}
.ls11{letter-spacing:7.190400pt;}
.lsf{letter-spacing:20.710912pt;}
.ls12{letter-spacing:20.792320pt;}
.ls20{letter-spacing:23.493120pt;}
.ls17{letter-spacing:40.526336pt;}
.ls16{letter-spacing:40.584960pt;}
.ls14{letter-spacing:46.067200pt;}
.lsa{letter-spacing:49.875200pt;}
.lsb{letter-spacing:49.920000pt;}
.ls6{letter-spacing:52.608000pt;}
.ls18{letter-spacing:52.640000pt;}
.ls5{letter-spacing:52.736000pt;}
.ls9{letter-spacing:86.675200pt;}
.ls8{letter-spacing:86.720000pt;}
.ws2c{word-spacing:-49.504000pt;}
.ws13{word-spacing:-49.291776pt;}
.wsb{word-spacing:-49.248000pt;}
.ws20{word-spacing:-42.880000pt;}
.wsc{word-spacing:-33.837056pt;}
.wsd{word-spacing:-33.792000pt;}
.ws1c{word-spacing:-32.559360pt;}
.ws5{word-spacing:-29.962240pt;}
.ws4{word-spacing:-29.154816pt;}
.ws3{word-spacing:-29.111040pt;}
.ws2e{word-spacing:-26.402816pt;}
.ws2d{word-spacing:-26.357760pt;}
.ws11{word-spacing:-22.573056pt;}
.ws12{word-spacing:-22.528000pt;}
.ws2f{word-spacing:-22.464000pt;}
.wsf{word-spacing:-21.888000pt;}
.ws1b{word-spacing:-20.789760pt;}
.ws1a{word-spacing:-20.725760pt;}
.ws18{word-spacing:-20.180736pt;}
.ws14{word-spacing:-20.136960pt;}
.ws16{word-spacing:-19.869696pt;}
.ws6{word-spacing:-19.824640pt;}
.ws0{word-spacing:-19.409707pt;}
.ws1{word-spacing:-19.261440pt;}
.ws10{word-spacing:-18.698240pt;}
.ws19{word-spacing:-18.210816pt;}
.ws21{word-spacing:-18.167040pt;}
.ws26{word-spacing:-16.941056pt;}
.ws27{word-spacing:-16.896000pt;}
.ws24{word-spacing:-16.816000pt;}
.ws23{word-spacing:-16.459776pt;}
.ws22{word-spacing:-16.416000pt;}
.ws1f{word-spacing:-11.809173pt;}
.ws7{word-spacing:-1.345707pt;}
.wsa{word-spacing:-1.245013pt;}
.ws9{word-spacing:-1.057792pt;}
.ws17{word-spacing:-0.399360pt;}
.ws1d{word-spacing:-0.348160pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.921600pt;}
.ws2b{word-spacing:1.098667pt;}
.ws30{word-spacing:4.115840pt;}
.ws15{word-spacing:4.615424pt;}
.wse{word-spacing:4.778667pt;}
.ws25{word-spacing:116.597333pt;}
.ws29{word-spacing:134.789333pt;}
.ws1e{word-spacing:151.771520pt;}
.ws2a{word-spacing:153.881429pt;}
.ws28{word-spacing:177.845333pt;}
._c{margin-left:-10.764288pt;}
._16{margin-left:-9.610667pt;}
._3{margin-left:-8.316928pt;}
._6{margin-left:-6.455936pt;}
._b{margin-left:-4.655232pt;}
._5{margin-left:-3.187584pt;}
._9{margin-left:-2.252800pt;}
._1{margin-left:-1.153536pt;}
._2{width:1.057408pt;}
._0{width:2.238720pt;}
._4{width:3.652523pt;}
._13{width:15.840000pt;}
._a{width:17.936640pt;}
._d{width:19.097600pt;}
._e{width:23.424000pt;}
._f{width:24.509227pt;}
._11{width:84.772736pt;}
._10{width:156.085547pt;}
._17{width:265.600000pt;}
._15{width:335.227563pt;}
._8{width:478.314667pt;}
._7{width:625.801259pt;}
._12{width:730.361259pt;}
._14{width:784.890795pt;}
.fsc{font-size:32.000000pt;}
.fs17{font-size:42.880000pt;}
.fs19{font-size:48.000000pt;}
.fs1a{font-size:48.128000pt;}
.fsf{font-size:53.120000pt;}
.fs10{font-size:53.248000pt;}
.fs4{font-size:56.320000pt;}
.fsb{font-size:56.448000pt;}
.fs11{font-size:58.880000pt;}
.fs12{font-size:59.008000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs15{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fsd{font-size:112.000000pt;}
.fse{font-size:112.128000pt;}
.fs16{font-size:117.120000pt;}
.fs13{font-size:128.000000pt;}
.fs18{font-size:128.128000pt;}
.fs7{font-size:144.000000pt;}
.fsa{font-size:144.128000pt;}
.fs0{font-size:149.120000pt;}
.fs1{font-size:149.248000pt;}
.fs1b{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:9.760000pt;}
.y50{bottom:20.960000pt;}
.yad{bottom:21.888000pt;}
.ya7{bottom:24.192000pt;}
.y7b{bottom:27.168000pt;}
.y8d{bottom:29.824000pt;}
.y64{bottom:36.864000pt;}
.y66{bottom:39.232000pt;}
.yac{bottom:42.368000pt;}
.y8e{bottom:43.040000pt;}
.y7a{bottom:47.648000pt;}
.y33{bottom:51.264000pt;}
.y8c{bottom:52.224000pt;}
.ya6{bottom:54.944000pt;}
.y4e{bottom:55.813333pt;}
.y58{bottom:57.600000pt;}
.y65{bottom:58.144000pt;}
.yb4{bottom:61.056000pt;}
.yc9{bottom:61.344000pt;}
.yab{bottom:62.880000pt;}
.y14{bottom:64.608000pt;}
.y4b{bottom:67.808000pt;}
.y9{bottom:70.656000pt;}
.y79{bottom:76.288000pt;}
.y46{bottom:77.376000pt;}
.ya5{bottom:78.944000pt;}
.y32{bottom:80.096000pt;}
.yb3{bottom:81.536000pt;}
.y8b{bottom:81.984000pt;}
.yaa{bottom:83.200000pt;}
.yc8{bottom:83.424000pt;}
.y23{bottom:84.896000pt;}
.y4a{bottom:87.040000pt;}
.y13{bottom:90.240000pt;}
.y78{bottom:92.288000pt;}
.ya4{bottom:93.344000pt;}
.y45{bottom:93.408000pt;}
.y61{bottom:95.520000pt;}
.y63{bottom:97.728000pt;}
.y8{bottom:98.528000pt;}
.y22{bottom:101.696000pt;}
.yb2{bottom:102.016000pt;}
.ya9{bottom:103.680000pt;}
.y8a{bottom:105.184000pt;}
.yc7{bottom:105.504000pt;}
.y49{bottom:106.240000pt;}
.ya3{bottom:107.776000pt;}
.y31{bottom:108.896000pt;}
.y44{bottom:109.408000pt;}
.y7{bottom:115.808000pt;}
.y12{bottom:115.840000pt;}
.y62{bottom:116.608000pt;}
.y21{bottom:118.528000pt;}
.y77{bottom:118.688000pt;}
.ya2{bottom:122.176000pt;}
.yb1{bottom:122.368000pt;}
.y43{bottom:125.408000pt;}
.yc6{bottom:127.584000pt;}
.y89{bottom:129.056000pt;}
.y20{bottom:135.333333pt;}
.ya1{bottom:136.573333pt;}
.yd1{bottom:137.693333pt;}
.y76{bottom:139.013333pt;}
.y11{bottom:141.440000pt;}
.yb0{bottom:142.853333pt;}
.y6{bottom:143.333333pt;}
.y68{bottom:145.826667pt;}
.y3e{bottom:150.493333pt;}
.ya0{bottom:150.973333pt;}
.y1f{bottom:152.133333pt;}
.y60{bottom:155.813333pt;}
.yd0{bottom:156.893333pt;}
.y75{bottom:159.493333pt;}
.y26{bottom:160.133333pt;}
.y67{bottom:161.826667pt;}
.y88{bottom:162.813333pt;}
.yaf{bottom:163.333333pt;}
.y5c{bottom:163.746667pt;}
.y9f{bottom:165.373333pt;}
.y30{bottom:166.493333pt;}
.y27{bottom:168.933333pt;}
.yc5{bottom:171.773333pt;}
.y5f{bottom:175.013333pt;}
.ycf{bottom:176.093333pt;}
.y1e{bottom:176.933333pt;}
.y9e{bottom:179.773333pt;}
.y5b{bottom:181.026667pt;}
.y3b{bottom:181.533333pt;}
.y39{bottom:181.946667pt;}
.yae{bottom:183.653333pt;}
.y87{bottom:186.013333pt;}
.y74{bottom:188.133333pt;}
.y8f{bottom:190.240000pt;}
.y10{bottom:192.666667pt;}
.y1d{bottom:193.733333pt;}
.yc4{bottom:193.853333pt;}
.y5e{bottom:193.893333pt;}
.y2f{bottom:195.333333pt;}
.yce{bottom:196.093333pt;}
.y5{bottom:197.093333pt;}
.y59{bottom:199.906667pt;}
.y3a{bottom:200.733333pt;}
.y38{bottom:201.146667pt;}
.y73{bottom:204.133333pt;}
.y86{bottom:209.213333pt;}
.y1c{bottom:210.533333pt;}
.yc3{bottom:215.933333pt;}
.yb7{bottom:216.706667pt;}
.y9d{bottom:218.213333pt;}
.yf{bottom:218.266667pt;}
.y25{bottom:218.533333pt;}
.y5d{bottom:221.346667pt;}
.y4{bottom:223.040000pt;}
.y2e{bottom:224.133333pt;}
.y1b{bottom:227.333333pt;}
.y9c{bottom:232.613333pt;}
.y85{bottom:233.093333pt;}
.y72{bottom:233.533333pt;}
.y24{bottom:235.360000pt;}
.yb6{bottom:237.186667pt;}
.ycd{bottom:240.133333pt;}
.ybc{bottom:241.600000pt;}
.y9b{bottom:247.013333pt;}
.y42{bottom:250.973333pt;}
.y1a{bottom:252.160000pt;}
.y2d{bottom:252.933333pt;}
.y71{bottom:254.053333pt;}
.y4f{bottom:257.373333pt;}
.y5a{bottom:257.506667pt;}
.ycc{bottom:259.333333pt;}
.yc2{bottom:260.133333pt;}
.ybb{bottom:262.106667pt;}
.y41{bottom:266.973333pt;}
.y84{bottom:267.493333pt;}
.y19{bottom:268.960000pt;}
.y37{bottom:269.373333pt;}
.ye{bottom:269.466667pt;}
.y48{bottom:270.466667pt;}
.y9a{bottom:271.013333pt;}
.y57{bottom:271.746667pt;}
.yb5{bottom:277.986667pt;}
.y70{bottom:279.013333pt;}
.y2c{bottom:281.760000pt;}
.yc1{bottom:282.213333pt;}
.yba{bottom:282.586667pt;}
.y40{bottom:282.973333pt;}
.y99{bottom:285.413333pt;}
.y18{bottom:285.760000pt;}
.y47{bottom:286.466667pt;}
.y56{bottom:288.546667pt;}
.y3{bottom:290.240000pt;}
.y6f{bottom:299.493333pt;}
.y36{bottom:299.653333pt;}
.y98{bottom:299.813333pt;}
.ycb{bottom:301.413333pt;}
.y83{bottom:301.893333pt;}
.yb9{bottom:302.906667pt;}
.yc0{bottom:304.293333pt;}
.y55{bottom:305.826667pt;}
.y3d{bottom:309.506667pt;}
.y2b{bottom:310.560000pt;}
.y3c{bottom:311.840000pt;}
.y6e{bottom:319.813333pt;}
.yd{bottom:320.706667pt;}
.yb8{bottom:323.386667pt;}
.y97{bottom:323.840000pt;}
.y53{bottom:325.026667pt;}
.y35{bottom:329.893333pt;}
.y2{bottom:330.586667pt;}
.y17{bottom:331.840000pt;}
.y90{bottom:337.600000pt;}
.y96{bottom:338.240000pt;}
.y2a{bottom:339.360000pt;}
.y82{bottom:340.293333pt;}
.y51{bottom:343.933333pt;}
.y6d{bottom:344.773333pt;}
.y54{bottom:345.986667pt;}
.yc{bottom:346.306667pt;}
.ybf{bottom:348.453333pt;}
.y4d{bottom:356.480000pt;}
.y95{bottom:362.400000pt;}
.y81{bottom:362.720000pt;}
.y52{bottom:364.893333pt;}
.y6c{bottom:365.280000pt;}
.y29{bottom:368.160000pt;}
.y28{bottom:369.786667pt;}
.ybe{bottom:370.560000pt;}
.y1{bottom:370.906667pt;}
.y94{bottom:378.400000pt;}
.y3f{bottom:381.853333pt;}
.yca{bottom:389.786667pt;}
.ybd{bottom:392.640000pt;}
.y80{bottom:393.120000pt;}
.y6b{bottom:393.893333pt;}
.y7c{bottom:409.253333pt;}
.y6a{bottom:409.920000pt;}
.y93{bottom:415.293333pt;}
.y7f{bottom:423.520000pt;}
.yb{bottom:424.453333pt;}
.y16{bottom:447.293333pt;}
.y92{bottom:451.293333pt;}
.y34{bottom:452.893333pt;}
.y7e{bottom:457.346667pt;}
.y4c{bottom:459.706667pt;}
.ya{bottom:460.453333pt;}
.y69{bottom:473.466667pt;}
.y15{bottom:483.333333pt;}
.y91{bottom:487.293333pt;}
.y7d{bottom:489.026667pt;}
.h11{height:29.250000pt;}
.h31{height:38.462187pt;}
.h1c{height:42.790000pt;}
.h1e{height:42.887250pt;}
.h35{height:43.875000pt;}
.h36{height:43.992000pt;}
.h33{height:45.210938pt;}
.h34{height:45.331500pt;}
.h16{height:48.555000pt;}
.h17{height:48.672000pt;}
.h24{height:50.033437pt;}
.h25{height:50.154000pt;}
.he{height:51.480000pt;}
.h10{height:51.597000pt;}
.h5{height:53.047500pt;}
.hf{height:53.168062pt;}
.h28{height:53.820000pt;}
.h38{height:53.913600pt;}
.h27{height:53.937000pt;}
.h19{height:55.458750pt;}
.h1a{height:55.579313pt;}
.h30{height:57.406250pt;}
.h6{height:58.500000pt;}
.h7{height:58.617000pt;}
.hd{height:60.281250pt;}
.h2e{height:67.165312pt;}
.h2f{height:67.280125pt;}
.h2a{height:68.445000pt;}
.h2c{height:68.562000pt;}
.h2b{height:70.529062pt;}
.h29{height:70.649625pt;}
.hb{height:77.805000pt;}
.h9{height:80.174063pt;}
.ha{height:80.294625pt;}
.h12{height:87.750000pt;}
.h13{height:87.867000pt;}
.h4{height:90.421875pt;}
.h3{height:90.542438pt;}
.h14{height:102.375000pt;}
.h15{height:102.492000pt;}
.h2d{height:105.053437pt;}
.h26{height:120.562500pt;}
.h32{height:120.683063pt;}
.h18{height:123.360000pt;}
.h8{height:135.632812pt;}
.hc{height:135.753375pt;}
.h1{height:140.455312pt;}
.h2{height:140.575875pt;}
.h22{height:194.080000pt;}
.h37{height:221.352750pt;}
.h23{height:240.960000pt;}
.h20{height:252.640000pt;}
.h21{height:299.360000pt;}
.h1d{height:375.360000pt;}
.h1f{height:434.240000pt;}
.h1b{height:519.040000pt;}
.h0{height:540.000000pt;}
.w2{width:258.240000pt;}
.w3{width:542.080000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x32{left:-15.136014pt;}
.x0{left:0.000000pt;}
.x18{left:2.912000pt;}
.x1a{left:7.906667pt;}
.x16{left:15.583986pt;}
.xe{left:22.655986pt;}
.xb{left:25.919986pt;}
.x17{left:27.520000pt;}
.x1{left:29.823986pt;}
.x24{left:33.759986pt;}
.x1b{left:38.431986pt;}
.x29{left:41.567986pt;}
.x4{left:42.655986pt;}
.x3{left:47.071986pt;}
.x23{left:48.031986pt;}
.x2{left:50.879986pt;}
.x25{left:53.407986pt;}
.x20{left:54.431986pt;}
.xc{left:55.999986pt;}
.x5{left:60.767986pt;}
.x26{left:65.407986pt;}
.x2a{left:70.495986pt;}
.xd{left:73.919986pt;}
.x13{left:101.023986pt;}
.x31{left:128.895986pt;}
.x2d{left:146.173319pt;}
.x2b{left:195.813319pt;}
.x19{left:285.600000pt;}
.x2e{left:290.946652pt;}
.x10{left:314.399986pt;}
.x21{left:320.866652pt;}
.x1f{left:326.013319pt;}
.x15{left:333.573319pt;}
.x14{left:338.306652pt;}
.xf{left:340.159986pt;}
.x6{left:346.106652pt;}
.x7{left:364.186652pt;}
.x1c{left:383.773319pt;}
.x1d{left:428.573319pt;}
.x2f{left:448.959986pt;}
.x27{left:462.813319pt;}
.x28{left:481.533319pt;}
.x11{left:487.813319pt;}
.x1e{left:533.893319pt;}
.x2c{left:540.799986pt;}
.x30{left:630.813319pt;}
.x8{left:649.573319pt;}
.x12{left:656.506652pt;}
.x9{left:667.653319pt;}
.x22{left:773.826652pt;}
.xa{left:851.866652pt;}
}




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