
    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_6561cc85bc19c00f8243e838.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_2ec4ffdd6a8bbf58008591b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759870;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_afc18dcbfb80df1d1dbb436d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_90ebae3dfbc6f1dda2d966db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.129883;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_56cb4e85e63d063d7c107119.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_edae07c1dc48cb487b6a26b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_63b4202210aa2fdb3c35d6fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_34e5b3196e263f5bbdc981a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969881;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_ce9fe536c69486abf36848f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.710938;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_2d0ceb2f8cfb041422ecd7d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.760342;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_043c35e0aafcb005cea304f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.129883;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_38a3ad242693c0673389e68c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976094;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_ff5eb83f20c9cb596cea3787.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925781;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:ffe;src:url('chunks/assets/font_3b2484fa812e8d598bd5803c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.731445;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:fff;src:url('chunks/assets/font_3239e3162888972e690cd44f.woff2')format("woff");}.fff{font-family:fff;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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(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;}
.v1{vertical-align:21.978000px;}
.lsd{letter-spacing:-7.236000px;}
.lsc{letter-spacing:-3.240000px;}
.ls11{letter-spacing:-0.810000px;}
.ls5{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.120000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009000px;}
.ls0{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025200px;}
.ls2{letter-spacing:0.540000px;}
.lse{letter-spacing:0.628200px;}
.ls7{letter-spacing:0.900000px;}
.ls1{letter-spacing:0.960000px;}
.ls6{letter-spacing:1.020000px;}
.ls10{letter-spacing:1.080000px;}
.ls8{letter-spacing:3.224400px;}
.ls9{letter-spacing:5.738400px;}
.lsf{letter-spacing:28.599000px;}
.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;}
}
.ws4b{word-spacing:-60.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws7a{word-spacing:-16.434000px;}
.ws5d{word-spacing:-16.302000px;}
.ws29{word-spacing:-15.720000px;}
.ws6{word-spacing:-15.660000px;}
.ws5b{word-spacing:-15.480000px;}
.ws5c{word-spacing:-15.420000px;}
.ws7{word-spacing:-15.240000px;}
.ws3{word-spacing:-14.940000px;}
.ws2a{word-spacing:-14.880000px;}
.ws2b{word-spacing:-14.820000px;}
.ws5{word-spacing:-14.700000px;}
.ws70{word-spacing:-14.220000px;}
.ws57{word-spacing:-13.446000px;}
.ws7c{word-spacing:-13.392000px;}
.ws7b{word-spacing:-13.230000px;}
.ws6f{word-spacing:-12.720000px;}
.ws6a{word-spacing:-12.600000px;}
.ws9{word-spacing:-12.150000px;}
.ws76{word-spacing:-11.940000px;}
.ws73{word-spacing:-11.880000px;}
.ws8{word-spacing:-11.772000px;}
.ws6b{word-spacing:-11.760000px;}
.ws1{word-spacing:-10.896000px;}
.ws28{word-spacing:-10.800000px;}
.wsa{word-spacing:-10.464000px;}
.ws58{word-spacing:-10.206000px;}
.ws0{word-spacing:-9.542544px;}
.ws2{word-spacing:-9.417600px;}
.ws74{word-spacing:-8.820000px;}
.ws59{word-spacing:-6.210000px;}
.ws71{word-spacing:-6.120000px;}
.ws55{word-spacing:-3.480000px;}
.ws72{word-spacing:-3.180000px;}
.ws6d{word-spacing:-2.580000px;}
.ws7d{word-spacing:-2.430000px;}
.ws69{word-spacing:-2.340000px;}
.ws78{word-spacing:-1.800000px;}
.ws8f{word-spacing:-1.566000px;}
.ws68{word-spacing:-1.560000px;}
.ws48{word-spacing:-1.440000px;}
.ws5a{word-spacing:-1.404000px;}
.ws16{word-spacing:-1.134000px;}
.ws67{word-spacing:-1.080000px;}
.ws32{word-spacing:-1.020000px;}
.ws3b{word-spacing:-0.900000px;}
.ws15{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.378000px;}
.ws43{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.324000px;}
.ws51{word-spacing:-0.300000px;}
.wse{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.204000px;}
.ws2f{word-spacing:-0.060000px;}
.wsb{word-spacing:0.000000px;}
.ws8a{word-spacing:0.054000px;}
.ws31{word-spacing:0.060000px;}
.ws45{word-spacing:0.120000px;}
.ws34{word-spacing:0.180000px;}
.ws88{word-spacing:0.270000px;}
.ws6e{word-spacing:0.300000px;}
.ws23{word-spacing:0.600000px;}
.ws4e{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws83{word-spacing:0.756000px;}
.ws77{word-spacing:0.780000px;}
.ws82{word-spacing:0.810000px;}
.ws39{word-spacing:0.900000px;}
.ws7e{word-spacing:0.918000px;}
.ws1c{word-spacing:1.020000px;}
.ws26{word-spacing:1.140000px;}
.ws50{word-spacing:1.200000px;}
.ws7f{word-spacing:1.242000px;}
.ws1d{word-spacing:1.620000px;}
.ws4c{word-spacing:1.740000px;}
.ws4f{word-spacing:1.800000px;}
.ws80{word-spacing:1.836000px;}
.ws18{word-spacing:1.890000px;}
.ws53{word-spacing:1.920000px;}
.ws1a{word-spacing:2.040000px;}
.ws22{word-spacing:2.100000px;}
.ws19{word-spacing:2.106000px;}
.ws12{word-spacing:2.376000px;}
.ws33{word-spacing:2.580000px;}
.ws6c{word-spacing:2.640000px;}
.ws4a{word-spacing:2.820000px;}
.ws42{word-spacing:3.240000px;}
.ws41{word-spacing:3.300000px;}
.ws3d{word-spacing:3.360000px;}
.ws79{word-spacing:3.480000px;}
.ws75{word-spacing:3.720000px;}
.ws1f{word-spacing:4.260000px;}
.ws20{word-spacing:4.320000px;}
.ws81{word-spacing:4.374000px;}
.ws1b{word-spacing:4.560000px;}
.ws61{word-spacing:4.620000px;}
.ws54{word-spacing:4.680000px;}
.ws85{word-spacing:4.698000px;}
.ws36{word-spacing:4.800000px;}
.ws89{word-spacing:4.914000px;}
.ws17{word-spacing:5.022000px;}
.ws2d{word-spacing:5.280000px;}
.ws14{word-spacing:5.400000px;}
.ws13{word-spacing:5.454000px;}
.ws3f{word-spacing:5.640000px;}
.ws44{word-spacing:5.760000px;}
.ws64{word-spacing:5.940000px;}
.ws25{word-spacing:6.000000px;}
.ws40{word-spacing:6.120000px;}
.ws2c{word-spacing:6.360000px;}
.ws56{word-spacing:6.480000px;}
.ws3e{word-spacing:6.540000px;}
.ws8e{word-spacing:6.696000px;}
.ws52{word-spacing:6.840000px;}
.ws46{word-spacing:7.200000px;}
.ws8c{word-spacing:7.452000px;}
.ws8b{word-spacing:7.560000px;}
.ws21{word-spacing:8.280000px;}
.ws1e{word-spacing:8.400000px;}
.ws30{word-spacing:8.640000px;}
.ws35{word-spacing:8.820000px;}
.ws38{word-spacing:8.880000px;}
.ws37{word-spacing:8.940000px;}
.ws49{word-spacing:9.300000px;}
.ws63{word-spacing:9.480000px;}
.ws62{word-spacing:9.540000px;}
.ws66{word-spacing:10.260000px;}
.ws65{word-spacing:10.320000px;}
.ws4d{word-spacing:10.740000px;}
.ws3a{word-spacing:10.920000px;}
.wsd{word-spacing:12.210000px;}
.ws24{word-spacing:12.780000px;}
.ws84{word-spacing:13.284000px;}
.ws47{word-spacing:15.300000px;}
.ws87{word-spacing:17.172000px;}
.ws5e{word-spacing:18.000000px;}
.ws27{word-spacing:19.440000px;}
.ws3c{word-spacing:20.700000px;}
.ws8d{word-spacing:25.164000px;}
.ws5f{word-spacing:27.840000px;}
.ws60{word-spacing:28.080000px;}
.ws86{word-spacing:37.098000px;}
._3{margin-left:-17.328300px;}
._6{margin-left:-10.072200px;}
._c{margin-left:-8.367000px;}
._15{margin-left:-6.724800px;}
._5{margin-left:-5.490000px;}
._2{margin-left:-3.834600px;}
._9{margin-left:-2.750400px;}
._1{margin-left:-1.703400px;}
._0{width:1.989000px;}
._b{width:3.861600px;}
._7{width:4.894800px;}
._a{width:5.922000px;}
._16{width:7.096800px;}
._d{width:8.466000px;}
._e{width:9.642000px;}
._f{width:11.607000px;}
._8{width:15.924000px;}
._4{width:36.624000px;}
._14{width:78.120000px;}
._11{width:81.840000px;}
._12{width:84.840000px;}
._13{width:86.340000px;}
._10{width:87.480000px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.y7a{bottom:113.078700px;}
.y67{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.yd{bottom:117.875550px;}
.y7b{bottom:120.500850px;}
.yc{bottom:132.275550px;}
.y79{bottom:134.078700px;}
.y66{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y88{bottom:139.529400px;}
.yb{bottom:146.675550px;}
.y78{bottom:155.078700px;}
.y65{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.ya{bottom:161.075550px;}
.y77{bottom:176.078700px;}
.y64{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.y76{bottom:197.078700px;}
.y63{bottom:197.078850px;}
.y36{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.y87{bottom:202.529400px;}
.y35{bottom:217.392600px;}
.y75{bottom:218.078700px;}
.y62{bottom:218.078850px;}
.y26{bottom:222.212700px;}
.y34{bottom:235.392600px;}
.y74{bottom:239.078700px;}
.y61{bottom:239.078850px;}
.y25{bottom:243.212700px;}
.y33{bottom:253.392600px;}
.y73{bottom:260.078700px;}
.y60{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y86{bottom:265.937100px;}
.y32{bottom:271.392600px;}
.y72{bottom:281.078700px;}
.y5f{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y31{bottom:289.392600px;}
.y85{bottom:295.441050px;}
.y71{bottom:302.078700px;}
.y5e{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y30{bottom:307.392600px;}
.y70{bottom:323.078700px;}
.y5d{bottom:323.078850px;}
.y21{bottom:327.212700px;}
.y2f{bottom:342.400500px;}
.y6f{bottom:344.078700px;}
.y5c{bottom:344.078850px;}
.y20{bottom:348.212700px;}
.y2e{bottom:360.400500px;}
.y6e{bottom:365.078700px;}
.y5b{bottom:365.078850px;}
.y1f{bottom:369.212700px;}
.y2d{bottom:378.400500px;}
.y6d{bottom:386.078700px;}
.y84{bottom:386.078850px;}
.y1e{bottom:390.212700px;}
.y2c{bottom:396.400500px;}
.y6c{bottom:407.078700px;}
.y5a{bottom:407.078850px;}
.y1d{bottom:411.212700px;}
.y6b{bottom:428.078700px;}
.y59{bottom:428.078850px;}
.y1c{bottom:432.212550px;}
.y6a{bottom:449.078700px;}
.y58{bottom:449.078850px;}
.y1b{bottom:453.212550px;}
.y69{bottom:470.078700px;}
.y83{bottom:470.078850px;}
.y57{bottom:484.441050px;}
.y1a{bottom:488.804400px;}
.ya3{bottom:491.078700px;}
.y82{bottom:491.078850px;}
.ya2{bottom:512.078700px;}
.y81{bottom:512.078850px;}
.y68{bottom:516.244200px;}
.ya1{bottom:533.078700px;}
.y56{bottom:533.078850px;}
.ya0{bottom:554.078700px;}
.y55{bottom:554.078850px;}
.y19{bottom:560.827950px;}
.y9f{bottom:575.078700px;}
.y54{bottom:575.078850px;}
.y9e{bottom:596.078700px;}
.y53{bottom:596.078850px;}
.y18{bottom:601.887750px;}
.y9d{bottom:617.078700px;}
.y52{bottom:617.078850px;}
.y17{bottom:621.687900px;}
.y7d{bottom:624.964350px;}
.y9c{bottom:638.078700px;}
.y51{bottom:638.078850px;}
.y16{bottom:641.487900px;}
.y7c{bottom:644.764350px;}
.y9b{bottom:659.078700px;}
.y50{bottom:659.078850px;}
.y15{bottom:661.287900px;}
.y9a{bottom:680.078700px;}
.y4f{bottom:680.078850px;}
.y14{bottom:681.087900px;}
.y13{bottom:700.887750px;}
.y99{bottom:701.078700px;}
.y4e{bottom:701.078850px;}
.y12{bottom:720.687900px;}
.y98{bottom:722.078700px;}
.y80{bottom:722.078850px;}
.y4d{bottom:736.441050px;}
.y11{bottom:740.487900px;}
.y7f{bottom:743.078850px;}
.y97{bottom:757.440900px;}
.y10{bottom:760.287900px;}
.y7e{bottom:778.441050px;}
.y4c{bottom:785.078850px;}
.yf{bottom:791.385300px;}
.y96{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.y4a{bottom:827.078850px;}
.y95{bottom:832.529250px;}
.y49{bottom:848.078850px;}
.y94{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y8{bottom:888.666900px;}
.y93{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.y7{bottom:906.666900px;}
.y92{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.y91{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.y90{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.y5{bottom:959.674650px;}
.y8f{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y42{bottom:995.078850px;}
.y8e{bottom:1000.529250px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y8d{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y8c{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.y8b{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.y8a{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.y3c{bottom:1121.078850px;}
.y89{bottom:1125.451650px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3b{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h8{height:45.615234px;}
.hf{height:45.674994px;}
.h9{height:48.621094px;}
.h11{height:50.176758px;}
.h10{height:50.242494px;}
.hb{height:54.023438px;}
.ha{height:54.738281px;}
.h4{height:59.425781px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x6{left:119.536650px;}
.x7{left:121.008000px;}
.x8{left:123.381000px;}
.x4{left:300.189000px;}
.x5{left:317.196900px;}
.xd{left:334.204650px;}
.x3{left:396.050700px;}
.xa{left:648.674850px;}
.x9{left:680.081100px;}
.x1{left:807.210300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.lsd{letter-spacing:-6.432000pt;}
.lsc{letter-spacing:-2.880000pt;}
.ls11{letter-spacing:-0.720000pt;}
.ls5{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022400pt;}
.ls2{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.558400pt;}
.ls7{letter-spacing:0.800000pt;}
.ls1{letter-spacing:0.853333pt;}
.ls6{letter-spacing:0.906667pt;}
.ls10{letter-spacing:0.960000pt;}
.ls8{letter-spacing:2.866133pt;}
.ls9{letter-spacing:5.100800pt;}
.lsf{letter-spacing:25.421333pt;}
.ws4b{word-spacing:-53.333333pt;}
.ws4{word-spacing:-15.936000pt;}
.ws7a{word-spacing:-14.608000pt;}
.ws5d{word-spacing:-14.490667pt;}
.ws29{word-spacing:-13.973333pt;}
.ws6{word-spacing:-13.920000pt;}
.ws5b{word-spacing:-13.760000pt;}
.ws5c{word-spacing:-13.706667pt;}
.ws7{word-spacing:-13.546667pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2a{word-spacing:-13.226667pt;}
.ws2b{word-spacing:-13.173333pt;}
.ws5{word-spacing:-13.066667pt;}
.ws70{word-spacing:-12.640000pt;}
.ws57{word-spacing:-11.952000pt;}
.ws7c{word-spacing:-11.904000pt;}
.ws7b{word-spacing:-11.760000pt;}
.ws6f{word-spacing:-11.306667pt;}
.ws6a{word-spacing:-11.200000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws76{word-spacing:-10.613333pt;}
.ws73{word-spacing:-10.560000pt;}
.ws8{word-spacing:-10.464000pt;}
.ws6b{word-spacing:-10.453333pt;}
.ws1{word-spacing:-9.685333pt;}
.ws28{word-spacing:-9.600000pt;}
.wsa{word-spacing:-9.301333pt;}
.ws58{word-spacing:-9.072000pt;}
.ws0{word-spacing:-8.482261pt;}
.ws2{word-spacing:-8.371200pt;}
.ws74{word-spacing:-7.840000pt;}
.ws59{word-spacing:-5.520000pt;}
.ws71{word-spacing:-5.440000pt;}
.ws55{word-spacing:-3.093333pt;}
.ws72{word-spacing:-2.826667pt;}
.ws6d{word-spacing:-2.293333pt;}
.ws7d{word-spacing:-2.160000pt;}
.ws69{word-spacing:-2.080000pt;}
.ws78{word-spacing:-1.600000pt;}
.ws8f{word-spacing:-1.392000pt;}
.ws68{word-spacing:-1.386667pt;}
.ws48{word-spacing:-1.280000pt;}
.ws5a{word-spacing:-1.248000pt;}
.ws16{word-spacing:-1.008000pt;}
.ws67{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.906667pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws15{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.336000pt;}
.ws43{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.288000pt;}
.ws51{word-spacing:-0.266667pt;}
.wse{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.181333pt;}
.ws2f{word-spacing:-0.053333pt;}
.wsb{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.048000pt;}
.ws31{word-spacing:0.053333pt;}
.ws45{word-spacing:0.106667pt;}
.ws34{word-spacing:0.160000pt;}
.ws88{word-spacing:0.240000pt;}
.ws6e{word-spacing:0.266667pt;}
.ws23{word-spacing:0.533333pt;}
.ws4e{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws83{word-spacing:0.672000pt;}
.ws77{word-spacing:0.693333pt;}
.ws82{word-spacing:0.720000pt;}
.ws39{word-spacing:0.800000pt;}
.ws7e{word-spacing:0.816000pt;}
.ws1c{word-spacing:0.906667pt;}
.ws26{word-spacing:1.013333pt;}
.ws50{word-spacing:1.066667pt;}
.ws7f{word-spacing:1.104000pt;}
.ws1d{word-spacing:1.440000pt;}
.ws4c{word-spacing:1.546667pt;}
.ws4f{word-spacing:1.600000pt;}
.ws80{word-spacing:1.632000pt;}
.ws18{word-spacing:1.680000pt;}
.ws53{word-spacing:1.706667pt;}
.ws1a{word-spacing:1.813333pt;}
.ws22{word-spacing:1.866667pt;}
.ws19{word-spacing:1.872000pt;}
.ws12{word-spacing:2.112000pt;}
.ws33{word-spacing:2.293333pt;}
.ws6c{word-spacing:2.346667pt;}
.ws4a{word-spacing:2.506667pt;}
.ws42{word-spacing:2.880000pt;}
.ws41{word-spacing:2.933333pt;}
.ws3d{word-spacing:2.986667pt;}
.ws79{word-spacing:3.093333pt;}
.ws75{word-spacing:3.306667pt;}
.ws1f{word-spacing:3.786667pt;}
.ws20{word-spacing:3.840000pt;}
.ws81{word-spacing:3.888000pt;}
.ws1b{word-spacing:4.053333pt;}
.ws61{word-spacing:4.106667pt;}
.ws54{word-spacing:4.160000pt;}
.ws85{word-spacing:4.176000pt;}
.ws36{word-spacing:4.266667pt;}
.ws89{word-spacing:4.368000pt;}
.ws17{word-spacing:4.464000pt;}
.ws2d{word-spacing:4.693333pt;}
.ws14{word-spacing:4.800000pt;}
.ws13{word-spacing:4.848000pt;}
.ws3f{word-spacing:5.013333pt;}
.ws44{word-spacing:5.120000pt;}
.ws64{word-spacing:5.280000pt;}
.ws25{word-spacing:5.333333pt;}
.ws40{word-spacing:5.440000pt;}
.ws2c{word-spacing:5.653333pt;}
.ws56{word-spacing:5.760000pt;}
.ws3e{word-spacing:5.813333pt;}
.ws8e{word-spacing:5.952000pt;}
.ws52{word-spacing:6.080000pt;}
.ws46{word-spacing:6.400000pt;}
.ws8c{word-spacing:6.624000pt;}
.ws8b{word-spacing:6.720000pt;}
.ws21{word-spacing:7.360000pt;}
.ws1e{word-spacing:7.466667pt;}
.ws30{word-spacing:7.680000pt;}
.ws35{word-spacing:7.840000pt;}
.ws38{word-spacing:7.893333pt;}
.ws37{word-spacing:7.946667pt;}
.ws49{word-spacing:8.266667pt;}
.ws63{word-spacing:8.426667pt;}
.ws62{word-spacing:8.480000pt;}
.ws66{word-spacing:9.120000pt;}
.ws65{word-spacing:9.173333pt;}
.ws4d{word-spacing:9.546667pt;}
.ws3a{word-spacing:9.706667pt;}
.wsd{word-spacing:10.853333pt;}
.ws24{word-spacing:11.360000pt;}
.ws84{word-spacing:11.808000pt;}
.ws47{word-spacing:13.600000pt;}
.ws87{word-spacing:15.264000pt;}
.ws5e{word-spacing:16.000000pt;}
.ws27{word-spacing:17.280000pt;}
.ws3c{word-spacing:18.400000pt;}
.ws8d{word-spacing:22.368000pt;}
.ws5f{word-spacing:24.746667pt;}
.ws60{word-spacing:24.960000pt;}
.ws86{word-spacing:32.976000pt;}
._3{margin-left:-15.402933pt;}
._6{margin-left:-8.953067pt;}
._c{margin-left:-7.437333pt;}
._15{margin-left:-5.977600pt;}
._5{margin-left:-4.880000pt;}
._2{margin-left:-3.408533pt;}
._9{margin-left:-2.444800pt;}
._1{margin-left:-1.514133pt;}
._0{width:1.768000pt;}
._b{width:3.432533pt;}
._7{width:4.350933pt;}
._a{width:5.264000pt;}
._16{width:6.308267pt;}
._d{width:7.525333pt;}
._e{width:8.570667pt;}
._f{width:10.317333pt;}
._8{width:14.154667pt;}
._4{width:32.554667pt;}
._14{width:69.440000pt;}
._11{width:72.746667pt;}
._12{width:75.413333pt;}
._13{width:76.746667pt;}
._10{width:77.760000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.y7a{bottom:100.514400pt;}
.y67{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.yd{bottom:104.778267pt;}
.y7b{bottom:107.111867pt;}
.yc{bottom:117.578267pt;}
.y79{bottom:119.181067pt;}
.y66{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y88{bottom:124.026133pt;}
.yb{bottom:130.378267pt;}
.y78{bottom:137.847733pt;}
.y65{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.ya{bottom:143.178267pt;}
.y77{bottom:156.514400pt;}
.y64{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.y76{bottom:175.181067pt;}
.y63{bottom:175.181200pt;}
.y36{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.y87{bottom:180.026133pt;}
.y35{bottom:193.237867pt;}
.y75{bottom:193.847733pt;}
.y62{bottom:193.847867pt;}
.y26{bottom:197.522400pt;}
.y34{bottom:209.237867pt;}
.y74{bottom:212.514400pt;}
.y61{bottom:212.514533pt;}
.y25{bottom:216.189067pt;}
.y33{bottom:225.237867pt;}
.y73{bottom:231.181067pt;}
.y60{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y86{bottom:236.388533pt;}
.y32{bottom:241.237867pt;}
.y72{bottom:249.847733pt;}
.y5f{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y31{bottom:257.237867pt;}
.y85{bottom:262.614267pt;}
.y71{bottom:268.514400pt;}
.y5e{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y30{bottom:273.237867pt;}
.y70{bottom:287.181067pt;}
.y5d{bottom:287.181200pt;}
.y21{bottom:290.855733pt;}
.y2f{bottom:304.356000pt;}
.y6f{bottom:305.847733pt;}
.y5c{bottom:305.847867pt;}
.y20{bottom:309.522400pt;}
.y2e{bottom:320.356000pt;}
.y6e{bottom:324.514400pt;}
.y5b{bottom:324.514533pt;}
.y1f{bottom:328.189067pt;}
.y2d{bottom:336.356000pt;}
.y6d{bottom:343.181067pt;}
.y84{bottom:343.181200pt;}
.y1e{bottom:346.855733pt;}
.y2c{bottom:352.356000pt;}
.y6c{bottom:361.847733pt;}
.y5a{bottom:361.847867pt;}
.y1d{bottom:365.522400pt;}
.y6b{bottom:380.514400pt;}
.y59{bottom:380.514533pt;}
.y1c{bottom:384.188933pt;}
.y6a{bottom:399.181067pt;}
.y58{bottom:399.181200pt;}
.y1b{bottom:402.855600pt;}
.y69{bottom:417.847733pt;}
.y83{bottom:417.847867pt;}
.y57{bottom:430.614267pt;}
.y1a{bottom:434.492800pt;}
.ya3{bottom:436.514400pt;}
.y82{bottom:436.514533pt;}
.ya2{bottom:455.181067pt;}
.y81{bottom:455.181200pt;}
.y68{bottom:458.883733pt;}
.ya1{bottom:473.847733pt;}
.y56{bottom:473.847867pt;}
.ya0{bottom:492.514400pt;}
.y55{bottom:492.514533pt;}
.y19{bottom:498.513733pt;}
.y9f{bottom:511.181067pt;}
.y54{bottom:511.181200pt;}
.y9e{bottom:529.847733pt;}
.y53{bottom:529.847867pt;}
.y18{bottom:535.011333pt;}
.y9d{bottom:548.514400pt;}
.y52{bottom:548.514533pt;}
.y17{bottom:552.611467pt;}
.y7d{bottom:555.523867pt;}
.y9c{bottom:567.181067pt;}
.y51{bottom:567.181200pt;}
.y16{bottom:570.211467pt;}
.y7c{bottom:573.123867pt;}
.y9b{bottom:585.847733pt;}
.y50{bottom:585.847867pt;}
.y15{bottom:587.811467pt;}
.y9a{bottom:604.514400pt;}
.y4f{bottom:604.514533pt;}
.y14{bottom:605.411467pt;}
.y13{bottom:623.011333pt;}
.y99{bottom:623.181067pt;}
.y4e{bottom:623.181200pt;}
.y12{bottom:640.611467pt;}
.y98{bottom:641.847733pt;}
.y80{bottom:641.847867pt;}
.y4d{bottom:654.614267pt;}
.y11{bottom:658.211467pt;}
.y7f{bottom:660.514533pt;}
.y97{bottom:673.280800pt;}
.y10{bottom:675.811467pt;}
.y7e{bottom:691.947600pt;}
.y4c{bottom:697.847867pt;}
.yf{bottom:703.453600pt;}
.y96{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.y4a{bottom:735.181200pt;}
.y95{bottom:740.026000pt;}
.y49{bottom:753.847867pt;}
.y94{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y8{bottom:789.926133pt;}
.y93{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.y7{bottom:805.926133pt;}
.y92{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.y91{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.y90{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.y5{bottom:853.044133pt;}
.y8f{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y42{bottom:884.514533pt;}
.y8e{bottom:889.359333pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y8d{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y8c{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.y8b{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.y8a{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.y3c{bottom:996.514533pt;}
.y89{bottom:1000.401467pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3b{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h8{height:40.546875pt;}
.hf{height:40.599995pt;}
.h9{height:43.218750pt;}
.h11{height:44.601562pt;}
.h10{height:44.659994pt;}
.hb{height:48.020833pt;}
.ha{height:48.656250pt;}
.h4{height:52.822917pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x6{left:106.254800pt;}
.x7{left:107.562667pt;}
.x8{left:109.672000pt;}
.x4{left:266.834667pt;}
.x5{left:281.952800pt;}
.xd{left:297.070800pt;}
.x3{left:352.045067pt;}
.xa{left:576.599867pt;}
.x9{left:604.516533pt;}
.x1{left:717.520267pt;}
}




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