
    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_79d2b95ae488c3bd7775baf9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_005cc6655f9b1351ab1d97e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_44103ce8b8ba597e5cdef5e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.750000;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_024a05c0c8302ee59113f454.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_25c4fba271d8a2fcd59ecc10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_80cdb6ddc693444c1245332c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774902;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_dc2a71b6b4e272617bbca59d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cb4ec2f2b57379474f80a714.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3212d48ef54570b603f192fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_d5d1e44365844767ad834be7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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:ffb;src:url('chunks/assets/font_d81eaad35b8db0c90650a437.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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:ffc;src:url('chunks/assets/font_9e85c4bc4ef81ae6f9191833.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952148;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:ffd;src:url('chunks/assets/font_a37d43a693357bafc200013d.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m6{transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210937,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256579,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-44.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.640000px;}
.ls35{letter-spacing:-1.034208px;}
.ls36{letter-spacing:-0.898128px;}
.ls30{letter-spacing:-0.733248px;}
.ls2c{letter-spacing:-0.675360px;}
.ls25{letter-spacing:-0.665712px;}
.ls2f{letter-spacing:-0.636768px;}
.ls13{letter-spacing:-0.139104px;}
.ls12{letter-spacing:-0.125856px;}
.ls34{letter-spacing:-0.018144px;}
.ls10{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.015552px;}
.ls1f{letter-spacing:0.036000px;}
.ls29{letter-spacing:0.036144px;}
.ls28{letter-spacing:0.036288px;}
.ls33{letter-spacing:0.038880px;}
.ls20{letter-spacing:0.077760px;}
.ls2a{letter-spacing:0.085536px;}
.ls1d{letter-spacing:0.093312px;}
.ls19{letter-spacing:0.101088px;}
.ls31{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.108864px;}
.ls2b{letter-spacing:0.109008px;}
.ls27{letter-spacing:0.109152px;}
.ls1a{letter-spacing:0.109440px;}
.ls16{letter-spacing:0.116640px;}
.ls1e{letter-spacing:0.124416px;}
.ls1b{letter-spacing:0.132192px;}
.ls1c{letter-spacing:0.139968px;}
.ls23{letter-spacing:0.155520px;}
.ls24{letter-spacing:0.163296px;}
.ls32{letter-spacing:0.171072px;}
.ls2e{letter-spacing:0.186624px;}
.ls0{letter-spacing:0.192240px;}
.ls22{letter-spacing:0.194400px;}
.ls18{letter-spacing:0.231840px;}
.ls26{letter-spacing:0.434160px;}
.ls4{letter-spacing:0.790560px;}
.ls8{letter-spacing:1.649376px;}
.ls6{letter-spacing:1.662624px;}
.ls7{letter-spacing:1.689120px;}
.ls5{letter-spacing:3.464352px;}
.ls1{letter-spacing:3.517344px;}
.ls11{letter-spacing:5.014368px;}
.lsc{letter-spacing:6.039677px;}
.lsf{letter-spacing:6.039689px;}
.lse{letter-spacing:6.039691px;}
.lsd{letter-spacing:6.148800px;}
.ls15{letter-spacing:6.206400px;}
.ls14{letter-spacing:7.408800px;}
.lsa{letter-spacing:10.497600px;}
.lsb{letter-spacing:10.540800px;}
.ls9{letter-spacing:10.555200px;}
.ls2d{letter-spacing:43.568352px;}
.ls2{letter-spacing:507.300048px;}
.ls3{letter-spacing:1427.366880px;}
.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;}
}
.wsa{word-spacing:-29.474640px;}
.ws11{word-spacing:-27.631872px;}
.ws9{word-spacing:-27.602928px;}
.ws12{word-spacing:-27.535392px;}
.ws1a{word-spacing:-27.497232px;}
.ws0{word-spacing:-25.747488px;}
.ws16{word-spacing:-24.533280px;}
.ws19{word-spacing:-24.525504px;}
.wse{word-spacing:-24.502176px;}
.ws17{word-spacing:-24.494400px;}
.ws13{word-spacing:-24.478848px;}
.wsc{word-spacing:-24.471072px;}
.ws10{word-spacing:-24.463296px;}
.ws8{word-spacing:-24.455520px;}
.wsb{word-spacing:-24.447744px;}
.wsf{word-spacing:-24.439968px;}
.ws15{word-spacing:-24.432192px;}
.ws18{word-spacing:-24.424416px;}
.ws14{word-spacing:-24.416640px;}
.wsd{word-spacing:-24.354432px;}
.ws2{word-spacing:-24.250464px;}
.ws3{word-spacing:-24.197472px;}
.ws4{word-spacing:-22.395744px;}
.ws1{word-spacing:-20.607264px;}
.ws5{word-spacing:-6.278400px;}
.ws6{word-spacing:-6.220800px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-13.723200px;}
._5{margin-left:-1.008000px;}
._7{width:1.020960px;}
._6{width:6.573006px;}
._8{width:43.494624px;}
._3{width:71.788320px;}
._2{width:87.088896px;}
._1{width:180.908064px;}
._4{width:196.888320px;}
.fc4{color:rgb(235,231,231);}
.fc3{color:transparent;}
.fc2{color:rgb(0,129,129);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:90.720000px;}
.fs8{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y83{bottom:21.180000px;}
.yc1{bottom:21.420000px;}
.y43{bottom:22.320000px;}
.yc3{bottom:22.440000px;}
.y45{bottom:23.640000px;}
.y8{bottom:56.640000px;}
.y7{bottom:76.440000px;}
.yfc{bottom:89.040000px;}
.y6{bottom:107.760000px;}
.y5{bottom:116.400000px;}
.y4{bottom:139.440000px;}
.ya0{bottom:161.400000px;}
.ya1{bottom:164.640000px;}
.yfb{bottom:171.480000px;}
.ybf{bottom:173.640000px;}
.y41{bottom:182.280000px;}
.y9f{bottom:184.800000px;}
.y6e{bottom:188.400000px;}
.ybe{bottom:197.040000px;}
.yfa{bottom:198.480000px;}
.y40{bottom:205.680000px;}
.y9e{bottom:208.560000px;}
.y6d{bottom:211.800000px;}
.y1e{bottom:214.320000px;}
.ybd{bottom:220.800000px;}
.yf9{bottom:225.120000px;}
.y3f{bottom:229.080000px;}
.y9d{bottom:231.960000px;}
.y6c{bottom:235.560000px;}
.y1d{bottom:242.040000px;}
.ybc{bottom:244.200000px;}
.yf8{bottom:252.480000px;}
.y3e{bottom:252.840000px;}
.y9c{bottom:255.360000px;}
.y6b{bottom:258.960000px;}
.ybb{bottom:267.600000px;}
.y1c{bottom:270.120000px;}
.y3d{bottom:276.240000px;}
.y9b{bottom:279.120000px;}
.y81{bottom:279.480000px;}
.y6a{bottom:282.360000px;}
.yba{bottom:291.360000px;}
.yf7{bottom:294.240000px;}
.y1b{bottom:297.840000px;}
.y3c{bottom:300.000000px;}
.y9a{bottom:302.520000px;}
.y80{bottom:302.880000px;}
.y69{bottom:306.120000px;}
.yb9{bottom:314.760000px;}
.y3b{bottom:323.400000px;}
.y99{bottom:325.920000px;}
.y7f{bottom:326.640000px;}
.y68{bottom:329.520000px;}
.y1a{bottom:330.240000px;}
.yc2{bottom:333.000000px;}
.yf6{bottom:336.000000px;}
.y3a{bottom:346.800000px;}
.ydf{bottom:348.240000px;}
.y98{bottom:349.680000px;}
.y7e{bottom:350.040000px;}
.y67{bottom:352.920000px;}
.y19{bottom:363.000000px;}
.y39{bottom:370.560000px;}
.yde{bottom:371.640000px;}
.y97{bottom:373.080000px;}
.y7d{bottom:373.440000px;}
.y66{bottom:376.680000px;}
.yf5{bottom:377.760000px;}
.y18{bottom:393.960000px;}
.ydd{bottom:395.400000px;}
.y96{bottom:396.840000px;}
.y7c{bottom:397.200000px;}
.y65{bottom:400.080000px;}
.yb8{bottom:412.320000px;}
.y17{bottom:417.360000px;}
.y38{bottom:417.720000px;}
.ydc{bottom:418.800000px;}
.yf4{bottom:419.880000px;}
.y95{bottom:420.240000px;}
.y7b{bottom:420.600000px;}
.y64{bottom:423.840000px;}
.yb7{bottom:435.720000px;}
.y37{bottom:441.120000px;}
.ydb{bottom:442.560000px;}
.y94{bottom:443.640000px;}
.y7a{bottom:444.360000px;}
.y63{bottom:447.240000px;}
.y16{bottom:449.760000px;}
.yb6{bottom:459.480000px;}
.yf3{bottom:461.640000px;}
.y36{bottom:464.520000px;}
.yda{bottom:465.960000px;}
.y93{bottom:467.400000px;}
.y79{bottom:467.760000px;}
.y62{bottom:470.640000px;}
.y15{bottom:482.520000px;}
.yb5{bottom:482.880000px;}
.y44{bottom:483.000000px;}
.yd9{bottom:489.360000px;}
.y92{bottom:490.800000px;}
.y78{bottom:491.160000px;}
.y61{bottom:494.400000px;}
.yf2{bottom:503.400000px;}
.yb4{bottom:506.280000px;}
.y77{bottom:510.600000px;}
.yd8{bottom:513.120000px;}
.y91{bottom:514.200000px;}
.y14{bottom:514.920000px;}
.y60{bottom:517.800000px;}
.yb3{bottom:530.040000px;}
.yd7{bottom:536.520000px;}
.y90{bottom:537.960000px;}
.y5f{bottom:541.560000px;}
.yf1{bottom:545.520000px;}
.y35{bottom:546.960000px;}
.y13{bottom:552.720000px;}
.yb2{bottom:553.440000px;}
.yd6{bottom:559.920000px;}
.y8f{bottom:561.360000px;}
.y5e{bottom:564.960000px;}
.y34{bottom:570.720000px;}
.yb1{bottom:577.200000px;}
.yd5{bottom:583.680000px;}
.y8e{bottom:585.120000px;}
.yf0{bottom:587.280000px;}
.y5d{bottom:588.360000px;}
.y33{bottom:594.120000px;}
.y12{bottom:598.800000px;}
.yb0{bottom:600.600000px;}
.yd4{bottom:607.080000px;}
.y8d{bottom:608.520000px;}
.y5c{bottom:612.120000px;}
.y32{bottom:617.880000px;}
.yaf{bottom:624.000000px;}
.yef{bottom:629.040000px;}
.yd3{bottom:630.840000px;}
.y8c{bottom:631.920000px;}
.y5b{bottom:635.520000px;}
.y31{bottom:641.280000px;}
.y11{bottom:645.240000px;}
.yae{bottom:647.760000px;}
.yd2{bottom:654.240000px;}
.y8b{bottom:655.680000px;}
.y5a{bottom:658.920000px;}
.y30{bottom:664.680000px;}
.yee{bottom:670.800000px;}
.yad{bottom:671.160000px;}
.yd1{bottom:677.640000px;}
.y8a{bottom:679.080000px;}
.y59{bottom:682.680000px;}
.y2f{bottom:688.440000px;}
.y10{bottom:691.680000px;}
.yac{bottom:694.560000px;}
.yd0{bottom:701.400000px;}
.y89{bottom:702.840000px;}
.y58{bottom:706.080000px;}
.y2e{bottom:711.840000px;}
.yed{bottom:712.920000px;}
.yab{bottom:718.320000px;}
.ycf{bottom:724.800000px;}
.y88{bottom:726.240000px;}
.y57{bottom:729.840000px;}
.y2d{bottom:735.240000px;}
.yf{bottom:738.120000px;}
.yaa{bottom:741.720000px;}
.yce{bottom:748.200000px;}
.y87{bottom:749.640000px;}
.y56{bottom:753.240000px;}
.yec{bottom:754.680000px;}
.y2c{bottom:759.000000px;}
.ya9{bottom:765.480000px;}
.ycd{bottom:771.960000px;}
.y86{bottom:773.400000px;}
.y55{bottom:776.640000px;}
.ye{bottom:782.040000px;}
.y2b{bottom:782.400000px;}
.ya8{bottom:788.880000px;}
.ycc{bottom:795.360000px;}
.yeb{bottom:796.440000px;}
.y85{bottom:796.800000px;}
.y54{bottom:800.400000px;}
.y2a{bottom:806.160000px;}
.ya7{bottom:812.280000px;}
.y84{bottom:816.240000px;}
.ycb{bottom:819.120000px;}
.y53{bottom:823.800000px;}
.y29{bottom:829.560000px;}
.ya6{bottom:836.040000px;}
.yea{bottom:838.200000px;}
.yca{bottom:842.520000px;}
.y52{bottom:847.200000px;}
.y28{bottom:852.960000px;}
.ya5{bottom:859.440000px;}
.yc9{bottom:865.920000px;}
.yd{bottom:867.360000px;}
.y51{bottom:870.960000px;}
.y76{bottom:873.480000px;}
.y27{bottom:876.720000px;}
.ye9{bottom:880.320000px;}
.ya4{bottom:882.840000px;}
.yc8{bottom:889.680000px;}
.y50{bottom:894.360000px;}
.y75{bottom:896.880000px;}
.y26{bottom:900.120000px;}
.ya3{bottom:906.600000px;}
.yc7{bottom:913.080000px;}
.yc{bottom:914.520000px;}
.y4f{bottom:918.120000px;}
.y74{bottom:920.280000px;}
.ye8{bottom:922.080000px;}
.y25{bottom:923.880000px;}
.yc0{bottom:925.500000px;}
.ya2{bottom:926.040000px;}
.yc6{bottom:936.840000px;}
.y4e{bottom:941.520000px;}
.y73{bottom:944.040000px;}
.y24{bottom:947.280000px;}
.yc5{bottom:960.240000px;}
.yb{bottom:961.680000px;}
.ye7{bottom:963.840000px;}
.y4d{bottom:964.920000px;}
.y72{bottom:967.440000px;}
.y23{bottom:970.680000px;}
.yc4{bottom:983.640000px;}
.y4c{bottom:988.680000px;}
.y71{bottom:990.840000px;}
.ye6{bottom:991.200000px;}
.y22{bottom:994.440000px;}
.ye0{bottom:1002.000000px;}
.y9{bottom:1003.080000px;}
.ya{bottom:1003.800000px;}
.y4b{bottom:1012.080000px;}
.y70{bottom:1014.600000px;}
.y21{bottom:1017.840000px;}
.ye5{bottom:1018.200000px;}
.y4a{bottom:1035.840000px;}
.y6f{bottom:1038.000000px;}
.y20{bottom:1041.240000px;}
.ye4{bottom:1045.560000px;}
.y82{bottom:1057.500000px;}
.y49{bottom:1059.240000px;}
.y1f{bottom:1065.000000px;}
.ye3{bottom:1072.560000px;}
.y48{bottom:1082.640000px;}
.y42{bottom:1083.000000px;}
.ye2{bottom:1099.920000px;}
.y47{bottom:1106.400000px;}
.ye1{bottom:1126.920000px;}
.y46{bottom:1129.800000px;}
.y3{bottom:1152.480000px;}
.y2{bottom:1172.640000px;}
.y1{bottom:1192.440000px;}
.h3{height:40.310156px;}
.h5{height:45.360000px;}
.h2{height:50.326875px;}
.h9{height:54.703125px;}
.hc{height:58.320000px;}
.h10{height:58.500000px;}
.hd{height:60.000000px;}
.hb{height:63.635625px;}
.ha{height:68.925938px;}
.hf{height:72.077344px;}
.he{height:73.773281px;}
.h8{height:82.054688px;}
.h4{height:94.966875px;}
.h7{height:109.406250px;}
.h6{height:116.640000px;}
.h1{height:1236.000000px;}
.h0{height:1263.000000px;}
.w2{width:298.500000px;}
.w3{width:300.000000px;}
.w4{width:306.000000px;}
.w1{width:865.500000px;}
.w0{width:892.500000px;}
.x2{left:-27.000000px;}
.x0{left:0.000000px;}
.xc{left:3.149788px;}
.x1{left:27.000000px;}
.x7{left:44.699710px;}
.x3{left:47.250000px;}
.x16{left:69.000000px;}
.x6{left:74.474856px;}
.xe{left:76.500000px;}
.x5{left:111.825072px;}
.x11{left:126.814080px;}
.xd{left:142.140036px;}
.xf{left:160.617924px;}
.x17{left:163.892568px;}
.x14{left:175.212516px;}
.x15{left:266.036520px;}
.x1a{left:275.259888px;}
.x19{left:279.839340px;}
.x18{left:316.061280px;}
.xa{left:361.713145px;}
.x13{left:372.914820px;}
.x4{left:382.724856px;}
.xb{left:420.450120px;}
.x9{left:507.336131px;}
.x12{left:713.475000px;}
.x10{left:719.595000px;}
.x8{left:807.975025px;}
@media print{
.v2{vertical-align:-39.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.680000pt;}
.ls35{letter-spacing:-0.919296pt;}
.ls36{letter-spacing:-0.798336pt;}
.ls30{letter-spacing:-0.651776pt;}
.ls2c{letter-spacing:-0.600320pt;}
.ls25{letter-spacing:-0.591744pt;}
.ls2f{letter-spacing:-0.566016pt;}
.ls13{letter-spacing:-0.123648pt;}
.ls12{letter-spacing:-0.111872pt;}
.ls34{letter-spacing:-0.016128pt;}
.ls10{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.013824pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls29{letter-spacing:0.032128pt;}
.ls28{letter-spacing:0.032256pt;}
.ls33{letter-spacing:0.034560pt;}
.ls20{letter-spacing:0.069120pt;}
.ls2a{letter-spacing:0.076032pt;}
.ls1d{letter-spacing:0.082944pt;}
.ls19{letter-spacing:0.089856pt;}
.ls31{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.096768pt;}
.ls2b{letter-spacing:0.096896pt;}
.ls27{letter-spacing:0.097024pt;}
.ls1a{letter-spacing:0.097280pt;}
.ls16{letter-spacing:0.103680pt;}
.ls1e{letter-spacing:0.110592pt;}
.ls1b{letter-spacing:0.117504pt;}
.ls1c{letter-spacing:0.124416pt;}
.ls23{letter-spacing:0.138240pt;}
.ls24{letter-spacing:0.145152pt;}
.ls32{letter-spacing:0.152064pt;}
.ls2e{letter-spacing:0.165888pt;}
.ls0{letter-spacing:0.170880pt;}
.ls22{letter-spacing:0.172800pt;}
.ls18{letter-spacing:0.206080pt;}
.ls26{letter-spacing:0.385920pt;}
.ls4{letter-spacing:0.702720pt;}
.ls8{letter-spacing:1.466112pt;}
.ls6{letter-spacing:1.477888pt;}
.ls7{letter-spacing:1.501440pt;}
.ls5{letter-spacing:3.079424pt;}
.ls1{letter-spacing:3.126528pt;}
.ls11{letter-spacing:4.457216pt;}
.lsc{letter-spacing:5.368602pt;}
.lsf{letter-spacing:5.368612pt;}
.lse{letter-spacing:5.368614pt;}
.lsd{letter-spacing:5.465600pt;}
.ls15{letter-spacing:5.516800pt;}
.ls14{letter-spacing:6.585600pt;}
.lsa{letter-spacing:9.331200pt;}
.lsb{letter-spacing:9.369600pt;}
.ls9{letter-spacing:9.382400pt;}
.ls2d{letter-spacing:38.727424pt;}
.ls2{letter-spacing:450.933376pt;}
.ls3{letter-spacing:1268.770560pt;}
.wsa{word-spacing:-26.199680pt;}
.ws11{word-spacing:-24.561664pt;}
.ws9{word-spacing:-24.535936pt;}
.ws12{word-spacing:-24.475904pt;}
.ws1a{word-spacing:-24.441984pt;}
.ws0{word-spacing:-22.886656pt;}
.ws16{word-spacing:-21.807360pt;}
.ws19{word-spacing:-21.800448pt;}
.wse{word-spacing:-21.779712pt;}
.ws17{word-spacing:-21.772800pt;}
.ws13{word-spacing:-21.758976pt;}
.wsc{word-spacing:-21.752064pt;}
.ws10{word-spacing:-21.745152pt;}
.ws8{word-spacing:-21.738240pt;}
.wsb{word-spacing:-21.731328pt;}
.wsf{word-spacing:-21.724416pt;}
.ws15{word-spacing:-21.717504pt;}
.ws18{word-spacing:-21.710592pt;}
.ws14{word-spacing:-21.703680pt;}
.wsd{word-spacing:-21.648384pt;}
.ws2{word-spacing:-21.555968pt;}
.ws3{word-spacing:-21.508864pt;}
.ws4{word-spacing:-19.907328pt;}
.ws1{word-spacing:-18.317568pt;}
.ws5{word-spacing:-5.580800pt;}
.ws6{word-spacing:-5.529600pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-12.198400pt;}
._5{margin-left:-0.896000pt;}
._7{width:0.907520pt;}
._6{width:5.842672pt;}
._8{width:38.661888pt;}
._3{width:63.811840pt;}
._2{width:77.412352pt;}
._1{width:160.807168pt;}
._4{width:175.011840pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:80.640000pt;}
.fs8{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:18.826667pt;}
.yc1{bottom:19.040000pt;}
.y43{bottom:19.840000pt;}
.yc3{bottom:19.946667pt;}
.y45{bottom:21.013333pt;}
.y8{bottom:50.346667pt;}
.y7{bottom:67.946667pt;}
.yfc{bottom:79.146667pt;}
.y6{bottom:95.786667pt;}
.y5{bottom:103.466667pt;}
.y4{bottom:123.946667pt;}
.ya0{bottom:143.466667pt;}
.ya1{bottom:146.346667pt;}
.yfb{bottom:152.426667pt;}
.ybf{bottom:154.346667pt;}
.y41{bottom:162.026667pt;}
.y9f{bottom:164.266667pt;}
.y6e{bottom:167.466667pt;}
.ybe{bottom:175.146667pt;}
.yfa{bottom:176.426667pt;}
.y40{bottom:182.826667pt;}
.y9e{bottom:185.386667pt;}
.y6d{bottom:188.266667pt;}
.y1e{bottom:190.506667pt;}
.ybd{bottom:196.266667pt;}
.yf9{bottom:200.106667pt;}
.y3f{bottom:203.626667pt;}
.y9d{bottom:206.186667pt;}
.y6c{bottom:209.386667pt;}
.y1d{bottom:215.146667pt;}
.ybc{bottom:217.066667pt;}
.yf8{bottom:224.426667pt;}
.y3e{bottom:224.746667pt;}
.y9c{bottom:226.986667pt;}
.y6b{bottom:230.186667pt;}
.ybb{bottom:237.866667pt;}
.y1c{bottom:240.106667pt;}
.y3d{bottom:245.546667pt;}
.y9b{bottom:248.106667pt;}
.y81{bottom:248.426667pt;}
.y6a{bottom:250.986667pt;}
.yba{bottom:258.986667pt;}
.yf7{bottom:261.546667pt;}
.y1b{bottom:264.746667pt;}
.y3c{bottom:266.666667pt;}
.y9a{bottom:268.906667pt;}
.y80{bottom:269.226667pt;}
.y69{bottom:272.106667pt;}
.yb9{bottom:279.786667pt;}
.y3b{bottom:287.466667pt;}
.y99{bottom:289.706667pt;}
.y7f{bottom:290.346667pt;}
.y68{bottom:292.906667pt;}
.y1a{bottom:293.546667pt;}
.yc2{bottom:296.000000pt;}
.yf6{bottom:298.666667pt;}
.y3a{bottom:308.266667pt;}
.ydf{bottom:309.546667pt;}
.y98{bottom:310.826667pt;}
.y7e{bottom:311.146667pt;}
.y67{bottom:313.706667pt;}
.y19{bottom:322.666667pt;}
.y39{bottom:329.386667pt;}
.yde{bottom:330.346667pt;}
.y97{bottom:331.626667pt;}
.y7d{bottom:331.946667pt;}
.y66{bottom:334.826667pt;}
.yf5{bottom:335.786667pt;}
.y18{bottom:350.186667pt;}
.ydd{bottom:351.466667pt;}
.y96{bottom:352.746667pt;}
.y7c{bottom:353.066667pt;}
.y65{bottom:355.626667pt;}
.yb8{bottom:366.506667pt;}
.y17{bottom:370.986667pt;}
.y38{bottom:371.306667pt;}
.ydc{bottom:372.266667pt;}
.yf4{bottom:373.226667pt;}
.y95{bottom:373.546667pt;}
.y7b{bottom:373.866667pt;}
.y64{bottom:376.746667pt;}
.yb7{bottom:387.306667pt;}
.y37{bottom:392.106667pt;}
.ydb{bottom:393.386667pt;}
.y94{bottom:394.346667pt;}
.y7a{bottom:394.986667pt;}
.y63{bottom:397.546667pt;}
.y16{bottom:399.786667pt;}
.yb6{bottom:408.426667pt;}
.yf3{bottom:410.346667pt;}
.y36{bottom:412.906667pt;}
.yda{bottom:414.186667pt;}
.y93{bottom:415.466667pt;}
.y79{bottom:415.786667pt;}
.y62{bottom:418.346667pt;}
.y15{bottom:428.906667pt;}
.yb5{bottom:429.226667pt;}
.y44{bottom:429.333333pt;}
.yd9{bottom:434.986667pt;}
.y92{bottom:436.266667pt;}
.y78{bottom:436.586667pt;}
.y61{bottom:439.466667pt;}
.yf2{bottom:447.466667pt;}
.yb4{bottom:450.026667pt;}
.y77{bottom:453.866667pt;}
.yd8{bottom:456.106667pt;}
.y91{bottom:457.066667pt;}
.y14{bottom:457.706667pt;}
.y60{bottom:460.266667pt;}
.yb3{bottom:471.146667pt;}
.yd7{bottom:476.906667pt;}
.y90{bottom:478.186667pt;}
.y5f{bottom:481.386667pt;}
.yf1{bottom:484.906667pt;}
.y35{bottom:486.186667pt;}
.y13{bottom:491.306667pt;}
.yb2{bottom:491.946667pt;}
.yd6{bottom:497.706667pt;}
.y8f{bottom:498.986667pt;}
.y5e{bottom:502.186667pt;}
.y34{bottom:507.306667pt;}
.yb1{bottom:513.066667pt;}
.yd5{bottom:518.826667pt;}
.y8e{bottom:520.106667pt;}
.yf0{bottom:522.026667pt;}
.y5d{bottom:522.986667pt;}
.y33{bottom:528.106667pt;}
.y12{bottom:532.266667pt;}
.yb0{bottom:533.866667pt;}
.yd4{bottom:539.626667pt;}
.y8d{bottom:540.906667pt;}
.y5c{bottom:544.106667pt;}
.y32{bottom:549.226667pt;}
.yaf{bottom:554.666667pt;}
.yef{bottom:559.146667pt;}
.yd3{bottom:560.746667pt;}
.y8c{bottom:561.706667pt;}
.y5b{bottom:564.906667pt;}
.y31{bottom:570.026667pt;}
.y11{bottom:573.546667pt;}
.yae{bottom:575.786667pt;}
.yd2{bottom:581.546667pt;}
.y8b{bottom:582.826667pt;}
.y5a{bottom:585.706667pt;}
.y30{bottom:590.826667pt;}
.yee{bottom:596.266667pt;}
.yad{bottom:596.586667pt;}
.yd1{bottom:602.346667pt;}
.y8a{bottom:603.626667pt;}
.y59{bottom:606.826667pt;}
.y2f{bottom:611.946667pt;}
.y10{bottom:614.826667pt;}
.yac{bottom:617.386667pt;}
.yd0{bottom:623.466667pt;}
.y89{bottom:624.746667pt;}
.y58{bottom:627.626667pt;}
.y2e{bottom:632.746667pt;}
.yed{bottom:633.706667pt;}
.yab{bottom:638.506667pt;}
.ycf{bottom:644.266667pt;}
.y88{bottom:645.546667pt;}
.y57{bottom:648.746667pt;}
.y2d{bottom:653.546667pt;}
.yf{bottom:656.106667pt;}
.yaa{bottom:659.306667pt;}
.yce{bottom:665.066667pt;}
.y87{bottom:666.346667pt;}
.y56{bottom:669.546667pt;}
.yec{bottom:670.826667pt;}
.y2c{bottom:674.666667pt;}
.ya9{bottom:680.426667pt;}
.ycd{bottom:686.186667pt;}
.y86{bottom:687.466667pt;}
.y55{bottom:690.346667pt;}
.ye{bottom:695.146667pt;}
.y2b{bottom:695.466667pt;}
.ya8{bottom:701.226667pt;}
.ycc{bottom:706.986667pt;}
.yeb{bottom:707.946667pt;}
.y85{bottom:708.266667pt;}
.y54{bottom:711.466667pt;}
.y2a{bottom:716.586667pt;}
.ya7{bottom:722.026667pt;}
.y84{bottom:725.546667pt;}
.ycb{bottom:728.106667pt;}
.y53{bottom:732.266667pt;}
.y29{bottom:737.386667pt;}
.ya6{bottom:743.146667pt;}
.yea{bottom:745.066667pt;}
.yca{bottom:748.906667pt;}
.y52{bottom:753.066667pt;}
.y28{bottom:758.186667pt;}
.ya5{bottom:763.946667pt;}
.yc9{bottom:769.706667pt;}
.yd{bottom:770.986667pt;}
.y51{bottom:774.186667pt;}
.y76{bottom:776.426667pt;}
.y27{bottom:779.306667pt;}
.ye9{bottom:782.506667pt;}
.ya4{bottom:784.746667pt;}
.yc8{bottom:790.826667pt;}
.y50{bottom:794.986667pt;}
.y75{bottom:797.226667pt;}
.y26{bottom:800.106667pt;}
.ya3{bottom:805.866667pt;}
.yc7{bottom:811.626667pt;}
.yc{bottom:812.906667pt;}
.y4f{bottom:816.106667pt;}
.y74{bottom:818.026667pt;}
.ye8{bottom:819.626667pt;}
.y25{bottom:821.226667pt;}
.yc0{bottom:822.666667pt;}
.ya2{bottom:823.146667pt;}
.yc6{bottom:832.746667pt;}
.y4e{bottom:836.906667pt;}
.y73{bottom:839.146667pt;}
.y24{bottom:842.026667pt;}
.yc5{bottom:853.546667pt;}
.yb{bottom:854.826667pt;}
.ye7{bottom:856.746667pt;}
.y4d{bottom:857.706667pt;}
.y72{bottom:859.946667pt;}
.y23{bottom:862.826667pt;}
.yc4{bottom:874.346667pt;}
.y4c{bottom:878.826667pt;}
.y71{bottom:880.746667pt;}
.ye6{bottom:881.066667pt;}
.y22{bottom:883.946667pt;}
.ye0{bottom:890.666667pt;}
.y9{bottom:891.626667pt;}
.ya{bottom:892.266667pt;}
.y4b{bottom:899.626667pt;}
.y70{bottom:901.866667pt;}
.y21{bottom:904.746667pt;}
.ye5{bottom:905.066667pt;}
.y4a{bottom:920.746667pt;}
.y6f{bottom:922.666667pt;}
.y20{bottom:925.546667pt;}
.ye4{bottom:929.386667pt;}
.y82{bottom:940.000000pt;}
.y49{bottom:941.546667pt;}
.y1f{bottom:946.666667pt;}
.ye3{bottom:953.386667pt;}
.y48{bottom:962.346667pt;}
.y42{bottom:962.666667pt;}
.ye2{bottom:977.706667pt;}
.y47{bottom:983.466667pt;}
.ye1{bottom:1001.706667pt;}
.y46{bottom:1004.266667pt;}
.y3{bottom:1024.426667pt;}
.y2{bottom:1042.346667pt;}
.y1{bottom:1059.946667pt;}
.h3{height:35.831250pt;}
.h5{height:40.320000pt;}
.h2{height:44.735000pt;}
.h9{height:48.625000pt;}
.hc{height:51.840000pt;}
.h10{height:52.000000pt;}
.hd{height:53.333333pt;}
.hb{height:56.565000pt;}
.ha{height:61.267500pt;}
.hf{height:64.068750pt;}
.he{height:65.576250pt;}
.h8{height:72.937500pt;}
.h4{height:84.415000pt;}
.h7{height:97.250000pt;}
.h6{height:103.680000pt;}
.h1{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:265.333333pt;}
.w3{width:266.666667pt;}
.w4{width:272.000000pt;}
.w1{width:769.333333pt;}
.w0{width:793.333333pt;}
.x2{left:-24.000000pt;}
.x0{left:0.000000pt;}
.xc{left:2.799812pt;}
.x1{left:24.000000pt;}
.x7{left:39.733076pt;}
.x3{left:42.000000pt;}
.x16{left:61.333333pt;}
.x6{left:66.199872pt;}
.xe{left:68.000000pt;}
.x5{left:99.400064pt;}
.x11{left:112.723627pt;}
.xd{left:126.346699pt;}
.xf{left:142.771488pt;}
.x17{left:145.682283pt;}
.x14{left:155.744459pt;}
.x15{left:236.476907pt;}
.x1a{left:244.675456pt;}
.x19{left:248.746080pt;}
.x18{left:280.943360pt;}
.xa{left:321.522795pt;}
.x13{left:331.479840pt;}
.x4{left:340.199872pt;}
.xb{left:373.733440pt;}
.x9{left:450.965450pt;}
.x12{left:634.200000pt;}
.x10{left:639.640000pt;}
.x8{left:718.200022pt;}
}




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