
    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_17ff06dfbcc31f47e1658df8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_19a68959862f566f96d4be34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_9c5a2f030a8a097cc9ee9aac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721000;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_caab548f63cd676f74f158cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_e97d08fb8c96c4f611c8e4e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.828000;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_4eaed1befa98a6bbf8a3ee99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_f5cdc14440439cd30f22c53d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_3a4d7e76040756b25dd76de5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_44057fe0561fec6e76520c65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.884000;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_b959754f64864672588cce70.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.590000;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_06197c9f58ec74ae05f4ca22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_240067d65a4fb0675f92a8a9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.460000;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_bcf5096c3063d8a9b3d37e5e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.661000;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_89a7815f65defe8accd533d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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;}
.m5{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.125136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125136,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247039,0.000000,-0.038365,0.247039,0,0);-ms-transform:matrix(0.247039,0.000000,-0.038365,0.247039,0,0);-webkit-transform:matrix(0.247039,0.000000,-0.038365,0.247039,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.305556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305556,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318182,0.000000,0.000000,0.250000,0,0);}
.m6{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:72.000000px;}
.lsa{letter-spacing:-1.671180px;}
.ls9{letter-spacing:-1.058940px;}
.lsf{letter-spacing:-0.886500px;}
.lsb{letter-spacing:-0.819000px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.171000px;}
.ls10{letter-spacing:0.886500px;}
.lse{letter-spacing:0.904500px;}
.ls6{letter-spacing:1.074600px;}
.ls0{letter-spacing:2.880000px;}
.lsc{letter-spacing:3.235140px;}
.ls7{letter-spacing:9.189720px;}
.ls2{letter-spacing:13.041000px;}
.ls5{letter-spacing:13.753800px;}
.ls3{letter-spacing:14.725800px;}
.ls4{letter-spacing:15.951060px;}
.ls1{letter-spacing:31.109400px;}
.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;}
}
.ws2e{word-spacing:-42.951060px;}
.ws3b{word-spacing:-28.074600px;}
.ws15{word-spacing:-27.000000px;}
.ws80{word-spacing:-23.404500px;}
.ws6e{word-spacing:-22.500000px;}
.ws5b{word-spacing:-21.613500px;}
.ws22{word-spacing:-14.985000px;}
.ws50{word-spacing:-14.369400px;}
.ws19{word-spacing:-14.250600px;}
.ws36{word-spacing:-14.131800px;}
.ws10{word-spacing:-13.959000px;}
.ws38{word-spacing:-13.705200px;}
.ws48{word-spacing:-13.467780px;}
.ws49{word-spacing:-13.467600px;}
.ws13{word-spacing:-13.278600px;}
.ws32{word-spacing:-13.246200px;}
.ws56{word-spacing:-13.213800px;}
.ws1c{word-spacing:-13.057200px;}
.ws1b{word-spacing:-13.057020px;}
.ws2f{word-spacing:-13.041000px;}
.ws1a{word-spacing:-12.511800px;}
.ws6a{word-spacing:-12.204000px;}
.ws8c{word-spacing:-12.118500px;}
.ws61{word-spacing:-11.556000px;}
.ws79{word-spacing:-11.439000px;}
.ws89{word-spacing:-11.200500px;}
.ws2b{word-spacing:-11.059200px;}
.ws2d{word-spacing:-11.048400px;}
.ws6d{word-spacing:-10.976850px;}
.ws23{word-spacing:-10.670400px;}
.ws1e{word-spacing:-10.450080px;}
.ws1f{word-spacing:-10.449120px;}
.ws1d{word-spacing:-10.449000px;}
.ws35{word-spacing:-10.362600px;}
.ws25{word-spacing:-10.233000px;}
.ws27{word-spacing:-10.227600px;}
.ws2a{word-spacing:-10.156860px;}
.ws28{word-spacing:-10.156260px;}
.ws78{word-spacing:-9.837000px;}
.ws4e{word-spacing:-9.460800px;}
.ws71{word-spacing:-9.324000px;}
.ws8b{word-spacing:-9.220500px;}
.ws82{word-spacing:-9.189000px;}
.ws5a{word-spacing:-9.171000px;}
.ws5d{word-spacing:-9.135000px;}
.ws39{word-spacing:-9.034440px;}
.ws57{word-spacing:-9.034320px;}
.ws55{word-spacing:-9.034260px;}
.wsc{word-spacing:-9.034200px;}
.ws53{word-spacing:-8.694000px;}
.ws81{word-spacing:-8.626500px;}
.ws5{word-spacing:-8.623800px;}
.ws58{word-spacing:-8.590500px;}
.ws77{word-spacing:-8.046000px;}
.ws6c{word-spacing:-7.825500px;}
.ws14{word-spacing:-7.808400px;}
.ws52{word-spacing:-7.624800px;}
.ws7f{word-spacing:-7.534350px;}
.ws64{word-spacing:-7.524450px;}
.ws74{word-spacing:-7.516800px;}
.ws5f{word-spacing:-7.515000px;}
.ws7b{word-spacing:-7.429500px;}
.ws73{word-spacing:-7.312500px;}
.ws4d{word-spacing:-7.246800px;}
.ws33{word-spacing:-7.176600px;}
.wsb{word-spacing:-7.025400px;}
.ws44{word-spacing:-7.022400px;}
.ws66{word-spacing:-7.006500px;}
.ws7d{word-spacing:-6.853500px;}
.ws85{word-spacing:-6.768000px;}
.ws76{word-spacing:-6.732000px;}
.ws5c{word-spacing:-6.376500px;}
.ws68{word-spacing:-6.322500px;}
.ws7c{word-spacing:-5.949000px;}
.ws8a{word-spacing:-5.845500px;}
.ws86{word-spacing:-5.251500px;}
.ws59{word-spacing:-4.977000px;}
.ws6b{word-spacing:-4.603500px;}
.ws18{word-spacing:-4.519920px;}
.ws16{word-spacing:-4.519800px;}
.wsa{word-spacing:-4.449600px;}
.ws6f{word-spacing:-4.347000px;}
.ws88{word-spacing:-4.090500px;}
.ws3c{word-spacing:-4.077000px;}
.ws69{word-spacing:-3.919500px;}
.ws62{word-spacing:-3.802500px;}
.ws8d{word-spacing:-3.649500px;}
.ws75{word-spacing:-2.439000px;}
.ws87{word-spacing:-2.421000px;}
.ws72{word-spacing:-2.128500px;}
.ws46{word-spacing:-2.095200px;}
.ws37{word-spacing:-2.030400px;}
.ws60{word-spacing:-1.876500px;}
.ws83{word-spacing:-1.755000px;}
.ws3a{word-spacing:-1.539000px;}
.ws47{word-spacing:-1.485000px;}
.ws54{word-spacing:-1.128600px;}
.ws4b{word-spacing:-0.923400px;}
.wsd{word-spacing:-0.159000px;}
.ws20{word-spacing:-0.118800px;}
.wsf{word-spacing:-0.054000px;}
.ws3e{word-spacing:-0.042000px;}
.ws65{word-spacing:-0.000150px;}
.ws45{word-spacing:0.000000px;}
.ws67{word-spacing:0.409500px;}
.ws11{word-spacing:0.529200px;}
.ws7a{word-spacing:0.612000px;}
.ws31{word-spacing:2.284200px;}
.ws30{word-spacing:2.284260px;}
.ws70{word-spacing:2.965500px;}
.ws6{word-spacing:4.104000px;}
.ws9{word-spacing:4.109400px;}
.ws3f{word-spacing:8.736000px;}
.ws40{word-spacing:9.142980px;}
.ws42{word-spacing:9.145800px;}
.ws43{word-spacing:9.147180px;}
.ws41{word-spacing:9.147420px;}
.ws3d{word-spacing:9.147600px;}
.ws2{word-spacing:9.805500px;}
.wse{word-spacing:12.965400px;}
.ws5e{word-spacing:13.320000px;}
.ws4a{word-spacing:13.467600px;}
.ws7e{word-spacing:15.601500px;}
.ws2c{word-spacing:15.892200px;}
.ws24{word-spacing:16.270200px;}
.ws26{word-spacing:16.707600px;}
.ws29{word-spacing:16.789140px;}
.ws4f{word-spacing:17.474400px;}
.ws1{word-spacing:17.911800px;}
.ws4{word-spacing:18.295200px;}
.ws63{word-spacing:18.652500px;}
.ws51{word-spacing:19.305000px;}
.ws34{word-spacing:19.769160px;}
.ws84{word-spacing:20.700000px;}
.ws17{word-spacing:22.420800px;}
.ws4c{word-spacing:26.022600px;}
.ws21{word-spacing:26.827200px;}
.ws12{word-spacing:27.453600px;}
.ws8{word-spacing:31.039200px;}
.ws7{word-spacing:31.050000px;}
.ws0{word-spacing:35.845200px;}
.ws3{word-spacing:42.329400px;}
._4{margin-left:-2541.922020px;}
._5{margin-left:-1250.897340px;}
._0{margin-left:-15.951600px;}
._8{margin-left:-1.809000px;}
._9{width:1.772700px;}
._7{width:5.395950px;}
._1{width:21.000000px;}
._6{width:22.500000px;}
._2{width:36.002400px;}
._3{width:2079.216600px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(169,156,155);}
.fc1{color:rgb(205,56,56);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fs2{font-size:33.000000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:54.647309px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:108.000000px;}
.fs9{font-size:156.170400px;}
.fs6{font-size:159.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:39.000000px;}
.y3a{bottom:68.250180px;}
.y4b{bottom:83.250600px;}
.y39{bottom:86.625300px;}
.y4a{bottom:96.750450px;}
.y38{bottom:105.000165px;}
.y49{bottom:110.250345px;}
.y37{bottom:123.375150px;}
.y48{bottom:126.750120px;}
.y35{bottom:138.750000px;}
.y47{bottom:140.250600px;}
.y36{bottom:141.750000px;}
.y34{bottom:141.750450px;}
.y46{bottom:153.750450px;}
.y33{bottom:160.125300px;}
.y45{bottom:167.250330px;}
.y32{bottom:178.500150px;}
.y44{bottom:183.750135px;}
.y31{bottom:196.875300px;}
.y43{bottom:197.251350px;}
.y42{bottom:210.751200px;}
.y30{bottom:215.250165px;}
.y41{bottom:224.251050px;}
.y2f{bottom:233.625165px;}
.y40{bottom:237.750900px;}
.y3f{bottom:251.250750px;}
.y2e{bottom:252.000150px;}
.y3e{bottom:264.750600px;}
.y2c{bottom:270.375000px;}
.y2b{bottom:270.375150px;}
.y2d{bottom:274.389300px;}
.y3d{bottom:278.250450px;}
.y2a{bottom:288.750000px;}
.y29{bottom:288.750150px;}
.y98{bottom:294.750000px;}
.y3c{bottom:294.750150px;}
.y7c{bottom:294.750488px;}
.y28{bottom:307.125000px;}
.y26{bottom:307.125300px;}
.y3b{bottom:308.250000px;}
.y7b{bottom:308.744812px;}
.y27{bottom:311.139300px;}
.y97{bottom:321.750000px;}
.y7a{bottom:322.739925px;}
.y25{bottom:325.500150px;}
.y96{bottom:335.250000px;}
.y79{bottom:336.733800px;}
.y24{bottom:343.875000px;}
.y95{bottom:348.750000px;}
.y78{bottom:350.727675px;}
.y23{bottom:362.249850px;}
.y94{bottom:362.250000px;}
.y77{bottom:364.722562px;}
.y93{bottom:375.750000px;}
.y76{bottom:378.716437px;}
.y22{bottom:380.624700px;}
.y92{bottom:389.250000px;}
.y75{bottom:392.711100px;}
.y21{bottom:399.016350px;}
.y91{bottom:402.750000px;}
.y74{bottom:406.704975px;}
.y90{bottom:416.250000px;}
.y20{bottom:417.408690px;}
.y73{bottom:420.699412px;}
.y8f{bottom:429.750000px;}
.y72{bottom:434.694525px;}
.y1f{bottom:435.800550px;}
.y8e{bottom:443.250000px;}
.y71{bottom:448.688400px;}
.y1e{bottom:454.192950px;}
.y8d{bottom:456.750000px;}
.y70{bottom:462.682275px;}
.y8c{bottom:470.250000px;}
.y1d{bottom:472.584600px;}
.y6f{bottom:476.676713px;}
.y8b{bottom:483.750000px;}
.y6e{bottom:490.671825px;}
.y1c{bottom:490.977000px;}
.y8a{bottom:497.250000px;}
.y6d{bottom:504.665700px;}
.y1a{bottom:509.368650px;}
.y1b{bottom:509.369400px;}
.y89{bottom:510.750000px;}
.y6c{bottom:518.659537px;}
.y88{bottom:524.250000px;}
.y19{bottom:527.761050px;}
.y18{bottom:528.153450px;}
.y6b{bottom:532.653075px;}
.y87{bottom:537.750000px;}
.y6a{bottom:546.646950px;}
.y86{bottom:551.250000px;}
.y69{bottom:560.658825px;}
.y85{bottom:564.750000px;}
.y68{bottom:574.670700px;}
.y84{bottom:578.250000px;}
.y67{bottom:588.682575px;}
.y17{bottom:591.544050px;}
.y83{bottom:591.750000px;}
.y66{bottom:602.693325px;}
.y82{bottom:605.250000px;}
.y16{bottom:609.936450px;}
.y65{bottom:616.705200px;}
.y81{bottom:618.750000px;}
.y15{bottom:628.328850px;}
.y64{bottom:630.715388px;}
.y80{bottom:632.250000px;}
.y63{bottom:644.726250px;}
.y7f{bottom:645.749963px;}
.y14{bottom:646.721250px;}
.y62{bottom:658.738125px;}
.y4f{bottom:659.206740px;}
.y7e{bottom:659.250525px;}
.y13{bottom:665.113650px;}
.y61{bottom:672.750000px;}
.y7d{bottom:672.750525px;}
.y60{bottom:689.250015px;}
.y12{bottom:697.755750px;}
.y11{bottom:700.968750px;}
.y10{bottom:716.147400px;}
.yf{bottom:731.539650px;}
.ye{bottom:746.931900px;}
.yd{bottom:750.144900px;}
.y5f{bottom:752.999850px;}
.yc{bottom:765.323850px;}
.yb{bottom:768.537000px;}
.y5e{bottom:771.749955px;}
.ya{bottom:783.715950px;}
.y9{bottom:786.929100px;}
.y5d{bottom:790.500105px;}
.y8{bottom:802.107750px;}
.y5c{bottom:810.000045px;}
.y7{bottom:817.500000px;}
.y6{bottom:820.713150px;}
.y5b{bottom:849.749805px;}
.y4{bottom:852.000150px;}
.y5{bottom:856.014150px;}
.y5a{bottom:868.498200px;}
.y59{bottom:887.998950px;}
.y3{bottom:896.250750px;}
.y58{bottom:906.749100px;}
.y57{bottom:925.499250px;}
.y2{bottom:926.250450px;}
.y56{bottom:944.249400px;}
.y1{bottom:956.250150px;}
.y55{bottom:962.999550px;}
.y54{bottom:981.749700px;}
.y53{bottom:1000.499820px;}
.y52{bottom:1019.249700px;}
.y51{bottom:1037.999850px;}
.y4d{bottom:1042.546950px;}
.y50{bottom:1056.750000px;}
.y4c{bottom:1103.250150px;}
.y99{bottom:1104.750000px;}
.h4{height:19.170000px;}
.h3{height:23.793000px;}
.ha{height:30.282000px;}
.hb{height:30.282120px;}
.h5{height:32.445000px;}
.h15{height:32.445150px;}
.h14{height:32.446350px;}
.h13{height:32.447250px;}
.h12{height:32.449050px;}
.h7{height:36.832286px;}
.h11{height:38.394000px;}
.h2{height:38.934000px;}
.he{height:38.934120px;}
.h10{height:38.934180px;}
.h9{height:38.934240px;}
.h8{height:38.937240px;}
.hf{height:38.941020px;}
.hd{height:68.835938px;}
.hc{height:69.964339px;}
.h1{height:77.868000px;}
.h6{height:111.300000px;}
.h0{height:1174.500000px;}
.w0{width:877.500000px;}
.x0{left:0.000000px;}
.x1{left:62.250000px;}
.x25{left:63.750000px;}
.xd{left:65.995200px;}
.x20{left:67.875000px;}
.x11{left:80.249250px;}
.x21{left:81.596625px;}
.xe{left:85.424100px;}
.xf{left:91.003800px;}
.x10{left:100.008000px;}
.x2{left:176.194950px;}
.x3{left:194.683200px;}
.x12{left:196.257000px;}
.x13{left:201.475650px;}
.x4{left:282.236850px;}
.x5{left:292.870950px;}
.x6{left:392.358000px;}
.x7{left:401.564100px;}
.x16{left:407.015100px;}
.x17{left:416.019300px;}
.x18{left:441.998550px;}
.x24{left:449.249813px;}
.x23{left:454.875600px;}
.x19{left:460.120350px;}
.x22{left:468.596550px;}
.x8{left:469.867500px;}
.x9{left:488.355600px;}
.x14{left:501.389700px;}
.x15{left:509.637750px;}
.x1a{left:542.268600px;}
.x1b{left:553.041750px;}
.x1c{left:599.250000px;}
.xa{left:630.271500px;}
.xb{left:640.905600px;}
.x1d{left:718.508550px;}
.xc{left:721.385550px;}
.x1e{left:758.250000px;}
.x1f{left:849.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.lsa{letter-spacing:-1.485493pt;}
.ls9{letter-spacing:-0.941280pt;}
.lsf{letter-spacing:-0.788000pt;}
.lsb{letter-spacing:-0.728000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.152000pt;}
.ls10{letter-spacing:0.788000pt;}
.lse{letter-spacing:0.804000pt;}
.ls6{letter-spacing:0.955200pt;}
.ls0{letter-spacing:2.560000pt;}
.lsc{letter-spacing:2.875680pt;}
.ls7{letter-spacing:8.168640pt;}
.ls2{letter-spacing:11.592000pt;}
.ls5{letter-spacing:12.225600pt;}
.ls3{letter-spacing:13.089600pt;}
.ls4{letter-spacing:14.178720pt;}
.ls1{letter-spacing:27.652800pt;}
.ws2e{word-spacing:-38.178720pt;}
.ws3b{word-spacing:-24.955200pt;}
.ws15{word-spacing:-24.000000pt;}
.ws80{word-spacing:-20.804000pt;}
.ws6e{word-spacing:-20.000000pt;}
.ws5b{word-spacing:-19.212000pt;}
.ws22{word-spacing:-13.320000pt;}
.ws50{word-spacing:-12.772800pt;}
.ws19{word-spacing:-12.667200pt;}
.ws36{word-spacing:-12.561600pt;}
.ws10{word-spacing:-12.408000pt;}
.ws38{word-spacing:-12.182400pt;}
.ws48{word-spacing:-11.971360pt;}
.ws49{word-spacing:-11.971200pt;}
.ws13{word-spacing:-11.803200pt;}
.ws32{word-spacing:-11.774400pt;}
.ws56{word-spacing:-11.745600pt;}
.ws1c{word-spacing:-11.606400pt;}
.ws1b{word-spacing:-11.606240pt;}
.ws2f{word-spacing:-11.592000pt;}
.ws1a{word-spacing:-11.121600pt;}
.ws6a{word-spacing:-10.848000pt;}
.ws8c{word-spacing:-10.772000pt;}
.ws61{word-spacing:-10.272000pt;}
.ws79{word-spacing:-10.168000pt;}
.ws89{word-spacing:-9.956000pt;}
.ws2b{word-spacing:-9.830400pt;}
.ws2d{word-spacing:-9.820800pt;}
.ws6d{word-spacing:-9.757200pt;}
.ws23{word-spacing:-9.484800pt;}
.ws1e{word-spacing:-9.288960pt;}
.ws1f{word-spacing:-9.288107pt;}
.ws1d{word-spacing:-9.288000pt;}
.ws35{word-spacing:-9.211200pt;}
.ws25{word-spacing:-9.096000pt;}
.ws27{word-spacing:-9.091200pt;}
.ws2a{word-spacing:-9.028320pt;}
.ws28{word-spacing:-9.027787pt;}
.ws78{word-spacing:-8.744000pt;}
.ws4e{word-spacing:-8.409600pt;}
.ws71{word-spacing:-8.288000pt;}
.ws8b{word-spacing:-8.196000pt;}
.ws82{word-spacing:-8.168000pt;}
.ws5a{word-spacing:-8.152000pt;}
.ws5d{word-spacing:-8.120000pt;}
.ws39{word-spacing:-8.030613pt;}
.ws57{word-spacing:-8.030507pt;}
.ws55{word-spacing:-8.030453pt;}
.wsc{word-spacing:-8.030400pt;}
.ws53{word-spacing:-7.728000pt;}
.ws81{word-spacing:-7.668000pt;}
.ws5{word-spacing:-7.665600pt;}
.ws58{word-spacing:-7.636000pt;}
.ws77{word-spacing:-7.152000pt;}
.ws6c{word-spacing:-6.956000pt;}
.ws14{word-spacing:-6.940800pt;}
.ws52{word-spacing:-6.777600pt;}
.ws7f{word-spacing:-6.697200pt;}
.ws64{word-spacing:-6.688400pt;}
.ws74{word-spacing:-6.681600pt;}
.ws5f{word-spacing:-6.680000pt;}
.ws7b{word-spacing:-6.604000pt;}
.ws73{word-spacing:-6.500000pt;}
.ws4d{word-spacing:-6.441600pt;}
.ws33{word-spacing:-6.379200pt;}
.wsb{word-spacing:-6.244800pt;}
.ws44{word-spacing:-6.242133pt;}
.ws66{word-spacing:-6.228000pt;}
.ws7d{word-spacing:-6.092000pt;}
.ws85{word-spacing:-6.016000pt;}
.ws76{word-spacing:-5.984000pt;}
.ws5c{word-spacing:-5.668000pt;}
.ws68{word-spacing:-5.620000pt;}
.ws7c{word-spacing:-5.288000pt;}
.ws8a{word-spacing:-5.196000pt;}
.ws86{word-spacing:-4.668000pt;}
.ws59{word-spacing:-4.424000pt;}
.ws6b{word-spacing:-4.092000pt;}
.ws18{word-spacing:-4.017707pt;}
.ws16{word-spacing:-4.017600pt;}
.wsa{word-spacing:-3.955200pt;}
.ws6f{word-spacing:-3.864000pt;}
.ws88{word-spacing:-3.636000pt;}
.ws3c{word-spacing:-3.624000pt;}
.ws69{word-spacing:-3.484000pt;}
.ws62{word-spacing:-3.380000pt;}
.ws8d{word-spacing:-3.244000pt;}
.ws75{word-spacing:-2.168000pt;}
.ws87{word-spacing:-2.152000pt;}
.ws72{word-spacing:-1.892000pt;}
.ws46{word-spacing:-1.862400pt;}
.ws37{word-spacing:-1.804800pt;}
.ws60{word-spacing:-1.668000pt;}
.ws83{word-spacing:-1.560000pt;}
.ws3a{word-spacing:-1.368000pt;}
.ws47{word-spacing:-1.320000pt;}
.ws54{word-spacing:-1.003200pt;}
.ws4b{word-spacing:-0.820800pt;}
.wsd{word-spacing:-0.141333pt;}
.ws20{word-spacing:-0.105600pt;}
.wsf{word-spacing:-0.048000pt;}
.ws3e{word-spacing:-0.037333pt;}
.ws65{word-spacing:-0.000133pt;}
.ws45{word-spacing:0.000000pt;}
.ws67{word-spacing:0.364000pt;}
.ws11{word-spacing:0.470400pt;}
.ws7a{word-spacing:0.544000pt;}
.ws31{word-spacing:2.030400pt;}
.ws30{word-spacing:2.030453pt;}
.ws70{word-spacing:2.636000pt;}
.ws6{word-spacing:3.648000pt;}
.ws9{word-spacing:3.652800pt;}
.ws3f{word-spacing:7.765333pt;}
.ws40{word-spacing:8.127093pt;}
.ws42{word-spacing:8.129600pt;}
.ws43{word-spacing:8.130827pt;}
.ws41{word-spacing:8.131040pt;}
.ws3d{word-spacing:8.131200pt;}
.ws2{word-spacing:8.716000pt;}
.wse{word-spacing:11.524800pt;}
.ws5e{word-spacing:11.840000pt;}
.ws4a{word-spacing:11.971200pt;}
.ws7e{word-spacing:13.868000pt;}
.ws2c{word-spacing:14.126400pt;}
.ws24{word-spacing:14.462400pt;}
.ws26{word-spacing:14.851200pt;}
.ws29{word-spacing:14.923680pt;}
.ws4f{word-spacing:15.532800pt;}
.ws1{word-spacing:15.921600pt;}
.ws4{word-spacing:16.262400pt;}
.ws63{word-spacing:16.580000pt;}
.ws51{word-spacing:17.160000pt;}
.ws34{word-spacing:17.572587pt;}
.ws84{word-spacing:18.400000pt;}
.ws17{word-spacing:19.929600pt;}
.ws4c{word-spacing:23.131200pt;}
.ws21{word-spacing:23.846400pt;}
.ws12{word-spacing:24.403200pt;}
.ws8{word-spacing:27.590400pt;}
.ws7{word-spacing:27.600000pt;}
.ws0{word-spacing:31.862400pt;}
.ws3{word-spacing:37.626133pt;}
._4{margin-left:-2259.486240pt;}
._5{margin-left:-1111.908747pt;}
._0{margin-left:-14.179200pt;}
._8{margin-left:-1.608000pt;}
._9{width:1.575733pt;}
._7{width:4.796400pt;}
._1{width:18.666667pt;}
._6{width:20.000000pt;}
._2{width:32.002133pt;}
._3{width:1848.192533pt;}
.fs3{font-size:24.000000pt;}
.fs2{font-size:29.333333pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:48.575386pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:96.000000pt;}
.fs9{font-size:138.818133pt;}
.fs6{font-size:141.333333pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:34.666667pt;}
.y3a{bottom:60.666827pt;}
.y4b{bottom:74.000533pt;}
.y39{bottom:77.000267pt;}
.y4a{bottom:86.000400pt;}
.y38{bottom:93.333480pt;}
.y49{bottom:98.000307pt;}
.y37{bottom:109.666800pt;}
.y48{bottom:112.666773pt;}
.y35{bottom:123.333333pt;}
.y47{bottom:124.667200pt;}
.y36{bottom:126.000000pt;}
.y34{bottom:126.000400pt;}
.y46{bottom:136.667067pt;}
.y33{bottom:142.333600pt;}
.y45{bottom:148.666960pt;}
.y32{bottom:158.666800pt;}
.y44{bottom:163.333453pt;}
.y31{bottom:175.000267pt;}
.y43{bottom:175.334533pt;}
.y42{bottom:187.334400pt;}
.y30{bottom:191.333480pt;}
.y41{bottom:199.334267pt;}
.y2f{bottom:207.666813pt;}
.y40{bottom:211.334133pt;}
.y3f{bottom:223.334000pt;}
.y2e{bottom:224.000133pt;}
.y3e{bottom:235.333867pt;}
.y2c{bottom:240.333333pt;}
.y2b{bottom:240.333467pt;}
.y2d{bottom:243.901600pt;}
.y3d{bottom:247.333733pt;}
.y2a{bottom:256.666667pt;}
.y29{bottom:256.666800pt;}
.y98{bottom:262.000000pt;}
.y3c{bottom:262.000133pt;}
.y7c{bottom:262.000433pt;}
.y28{bottom:273.000000pt;}
.y26{bottom:273.000267pt;}
.y3b{bottom:274.000000pt;}
.y7b{bottom:274.439833pt;}
.y27{bottom:276.568267pt;}
.y97{bottom:286.000000pt;}
.y7a{bottom:286.879933pt;}
.y25{bottom:289.333467pt;}
.y96{bottom:298.000000pt;}
.y79{bottom:299.318933pt;}
.y24{bottom:305.666667pt;}
.y95{bottom:310.000000pt;}
.y78{bottom:311.757933pt;}
.y23{bottom:321.999867pt;}
.y94{bottom:322.000000pt;}
.y77{bottom:324.197833pt;}
.y93{bottom:334.000000pt;}
.y76{bottom:336.636833pt;}
.y22{bottom:338.333067pt;}
.y92{bottom:346.000000pt;}
.y75{bottom:349.076533pt;}
.y21{bottom:354.681200pt;}
.y91{bottom:358.000000pt;}
.y74{bottom:361.515533pt;}
.y90{bottom:370.000000pt;}
.y20{bottom:371.029947pt;}
.y73{bottom:373.955033pt;}
.y8f{bottom:382.000000pt;}
.y72{bottom:386.395133pt;}
.y1f{bottom:387.378267pt;}
.y8e{bottom:394.000000pt;}
.y71{bottom:398.834133pt;}
.y1e{bottom:403.727067pt;}
.y8d{bottom:406.000000pt;}
.y70{bottom:411.273133pt;}
.y8c{bottom:418.000000pt;}
.y1d{bottom:420.075200pt;}
.y6f{bottom:423.712633pt;}
.y8b{bottom:430.000000pt;}
.y6e{bottom:436.152733pt;}
.y1c{bottom:436.424000pt;}
.y8a{bottom:442.000000pt;}
.y6d{bottom:448.591733pt;}
.y1a{bottom:452.772133pt;}
.y1b{bottom:452.772800pt;}
.y89{bottom:454.000000pt;}
.y6c{bottom:461.030700pt;}
.y88{bottom:466.000000pt;}
.y19{bottom:469.120933pt;}
.y18{bottom:469.469733pt;}
.y6b{bottom:473.469400pt;}
.y87{bottom:478.000000pt;}
.y6a{bottom:485.908400pt;}
.y86{bottom:490.000000pt;}
.y69{bottom:498.363400pt;}
.y85{bottom:502.000000pt;}
.y68{bottom:510.818400pt;}
.y84{bottom:514.000000pt;}
.y67{bottom:523.273400pt;}
.y17{bottom:525.816933pt;}
.y83{bottom:526.000000pt;}
.y66{bottom:535.727400pt;}
.y82{bottom:538.000000pt;}
.y16{bottom:542.165733pt;}
.y65{bottom:548.182400pt;}
.y81{bottom:550.000000pt;}
.y15{bottom:558.514533pt;}
.y64{bottom:560.635900pt;}
.y80{bottom:562.000000pt;}
.y63{bottom:573.090000pt;}
.y7f{bottom:573.999967pt;}
.y14{bottom:574.863333pt;}
.y62{bottom:585.545000pt;}
.y4f{bottom:585.961547pt;}
.y7e{bottom:586.000467pt;}
.y13{bottom:591.212133pt;}
.y61{bottom:598.000000pt;}
.y7d{bottom:598.000467pt;}
.y60{bottom:612.666680pt;}
.y12{bottom:620.227333pt;}
.y11{bottom:623.083333pt;}
.y10{bottom:636.575467pt;}
.yf{bottom:650.257467pt;}
.ye{bottom:663.939467pt;}
.yd{bottom:666.795467pt;}
.y5f{bottom:669.333200pt;}
.yc{bottom:680.287867pt;}
.yb{bottom:683.144000pt;}
.y5e{bottom:685.999960pt;}
.ya{bottom:696.636400pt;}
.y9{bottom:699.492533pt;}
.y5d{bottom:702.666760pt;}
.y8{bottom:712.984667pt;}
.y5c{bottom:720.000040pt;}
.y7{bottom:726.666667pt;}
.y6{bottom:729.522800pt;}
.y5b{bottom:755.333160pt;}
.y4{bottom:757.333467pt;}
.y5{bottom:760.901467pt;}
.y5a{bottom:771.998400pt;}
.y59{bottom:789.332400pt;}
.y3{bottom:796.667333pt;}
.y58{bottom:805.999200pt;}
.y57{bottom:822.666000pt;}
.y2{bottom:823.333733pt;}
.y56{bottom:839.332800pt;}
.y1{bottom:850.000133pt;}
.y55{bottom:855.999600pt;}
.y54{bottom:872.666400pt;}
.y53{bottom:889.333173pt;}
.y52{bottom:905.999733pt;}
.y51{bottom:922.666533pt;}
.y4d{bottom:926.708400pt;}
.y50{bottom:939.333333pt;}
.y4c{bottom:980.666800pt;}
.y99{bottom:982.000000pt;}
.h4{height:17.040000pt;}
.h3{height:21.149333pt;}
.ha{height:26.917333pt;}
.hb{height:26.917440pt;}
.h5{height:28.840000pt;}
.h15{height:28.840133pt;}
.h14{height:28.841200pt;}
.h13{height:28.842000pt;}
.h12{height:28.843600pt;}
.h7{height:32.739810pt;}
.h11{height:34.128000pt;}
.h2{height:34.608000pt;}
.he{height:34.608107pt;}
.h10{height:34.608160pt;}
.h9{height:34.608213pt;}
.h8{height:34.610880pt;}
.hf{height:34.614240pt;}
.hd{height:61.187500pt;}
.hc{height:62.190524pt;}
.h1{height:69.216000pt;}
.h6{height:98.933333pt;}
.h0{height:1044.000000pt;}
.w0{width:780.000000pt;}
.x0{left:0.000000pt;}
.x1{left:55.333333pt;}
.x25{left:56.666667pt;}
.xd{left:58.662400pt;}
.x20{left:60.333333pt;}
.x11{left:71.332667pt;}
.x21{left:72.530333pt;}
.xe{left:75.932533pt;}
.xf{left:80.892267pt;}
.x10{left:88.896000pt;}
.x2{left:156.617733pt;}
.x3{left:173.051733pt;}
.x12{left:174.450667pt;}
.x13{left:179.089467pt;}
.x4{left:250.877200pt;}
.x5{left:260.329733pt;}
.x6{left:348.762667pt;}
.x7{left:356.945867pt;}
.x16{left:361.791200pt;}
.x17{left:369.794933pt;}
.x18{left:392.887600pt;}
.x24{left:399.333167pt;}
.x23{left:404.333867pt;}
.x19{left:408.995867pt;}
.x22{left:416.530267pt;}
.x8{left:417.660000pt;}
.x9{left:434.093867pt;}
.x14{left:445.679733pt;}
.x15{left:453.011333pt;}
.x1a{left:482.016533pt;}
.x1b{left:491.592667pt;}
.x1c{left:532.666667pt;}
.xa{left:560.241333pt;}
.xb{left:569.693867pt;}
.x1d{left:638.674267pt;}
.xc{left:641.231600pt;}
.x1e{left:674.000000pt;}
.x1f{left:754.666667pt;}
}




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