
    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_a661c755447f279d17c97fbe.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_740ab6331099d4c62dcc903b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_4bb68f3a53d8686d76f98abe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_81aaa39cb54a42981fd9a5eb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_f6c459e03cad13b28d36e8a9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2389fae8aa3331b48c89c724.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_c7b3d4061892961429b62e1e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_970f00d6413bb6c2281096f3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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_f78db11105ffcc01c472897c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_f44ac0d3f7ebc00cce624aed.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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_4fa69749b07b0e8674307ad3.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_1e6e0a7370293099bbb74f53.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_780162c1ef2dd6eb2093e8ba.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_1600d184260652c7f7346afe.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.180000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.180000px;}
.ls1b{letter-spacing:-2.802000px;}
.ls19{letter-spacing:-2.766000px;}
.ls14{letter-spacing:-2.724000px;}
.ls24{letter-spacing:-2.652000px;}
.ls1e{letter-spacing:-2.610000px;}
.ls23{letter-spacing:-1.848000px;}
.ls2d{letter-spacing:-1.740000px;}
.ls1d{letter-spacing:-1.698000px;}
.ls25{letter-spacing:-1.590000px;}
.ls3c{letter-spacing:-1.482000px;}
.ls12{letter-spacing:-1.458000px;}
.ls45{letter-spacing:-1.224000px;}
.ls3d{letter-spacing:-1.164000px;}
.ls18{letter-spacing:-1.128000px;}
.ls4a{letter-spacing:-1.110000px;}
.ls4d{letter-spacing:-1.074000px;}
.ls3b{letter-spacing:-0.876000px;}
.ls15{letter-spacing:-0.792000px;}
.ls26{letter-spacing:-0.780000px;}
.ls13{letter-spacing:-0.378000px;}
.ls1c{letter-spacing:-0.315000px;}
.ls2f{letter-spacing:-0.256200px;}
.ls4e{letter-spacing:-0.106200px;}
.ls10{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.165000px;}
.ls4f{letter-spacing:0.256200px;}
.ls48{letter-spacing:0.406200px;}
.ls16{letter-spacing:0.690000px;}
.ls1f{letter-spacing:0.960000px;}
.ls46{letter-spacing:1.026000px;}
.ls11{letter-spacing:1.080000px;}
.ls4b{letter-spacing:1.176000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls49{letter-spacing:1.482000px;}
.ls4c{letter-spacing:1.632000px;}
.ls2b{letter-spacing:1.698000px;}
.ls29{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls2e{letter-spacing:1.884000px;}
.ls17{letter-spacing:1.944000px;}
.ls3{letter-spacing:1.966500px;}
.ls40{letter-spacing:2.111400px;}
.ls3a{letter-spacing:2.142000px;}
.ls4{letter-spacing:2.146500px;}
.ls43{letter-spacing:2.164500px;}
.lsd{letter-spacing:2.178000px;}
.ls5{letter-spacing:2.250000px;}
.lsc{letter-spacing:2.328000px;}
.ls41{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.370000px;}
.ls1a{letter-spacing:2.400000px;}
.ls8{letter-spacing:2.430000px;}
.ls28{letter-spacing:2.970000px;}
.ls27{letter-spacing:3.018000px;}
.ls3e{letter-spacing:3.120000px;}
.ls30{letter-spacing:3.337500px;}
.ls6{letter-spacing:3.375000px;}
.lsb{letter-spacing:3.397500px;}
.ls38{letter-spacing:3.486000px;}
.ls36{letter-spacing:3.495000px;}
.ls33{letter-spacing:3.517500px;}
.ls32{letter-spacing:3.555000px;}
.ls39{letter-spacing:3.990000px;}
.lsa{letter-spacing:4.779000px;}
.ls21{letter-spacing:5.460000px;}
.ls2c{letter-spacing:5.526000px;}
.ls37{letter-spacing:5.610000px;}
.ls20{letter-spacing:5.676000px;}
.ls7{letter-spacing:7.837500px;}
.ls2a{letter-spacing:7.860000px;}
.ls9{letter-spacing:7.875000px;}
.ls42{letter-spacing:7.935000px;}
.lse{letter-spacing:8.055000px;}
.ls22{letter-spacing:12.360000px;}
.lsf{letter-spacing:12.375000px;}
.ls35{letter-spacing:12.555000px;}
.ls44{letter-spacing:15.387000px;}
.ls34{letter-spacing:16.995000px;}
.ls3f{letter-spacing:46.887000px;}
.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;}
}
.ws27{word-spacing:-58.500000px;}
.ws6{word-spacing:-25.926000px;}
.ws13{word-spacing:-20.301000px;}
.ws23{word-spacing:-20.272500px;}
.ws1d{word-spacing:-20.151000px;}
.ws14{word-spacing:-20.122500px;}
.ws24{word-spacing:-18.615000px;}
.ws29{word-spacing:-17.782500px;}
.ws19{word-spacing:-17.643000px;}
.ws1a{word-spacing:-17.632500px;}
.wsb{word-spacing:-17.025000px;}
.wse{word-spacing:-16.990500px;}
.ws9{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.840500px;}
.ws32{word-spacing:-16.789500px;}
.ws25{word-spacing:-16.767000px;}
.ws1f{word-spacing:-16.509000px;}
.ws1b{word-spacing:-16.365000px;}
.ws1c{word-spacing:-16.360500px;}
.ws33{word-spacing:-16.257000px;}
.ws5{word-spacing:-16.146000px;}
.ws2e{word-spacing:-16.107000px;}
.ws31{word-spacing:-15.801000px;}
.ws2b{word-spacing:-15.651000px;}
.ws12{word-spacing:-15.622500px;}
.ws4{word-spacing:-15.354000px;}
.ws2d{word-spacing:-15.031200px;}
.ws36{word-spacing:-14.881200px;}
.ws2c{word-spacing:-14.827500px;}
.ws22{word-spacing:-14.662500px;}
.ws8{word-spacing:-14.625000px;}
.ws35{word-spacing:-14.518800px;}
.ws20{word-spacing:-14.368800px;}
.wsf{word-spacing:-14.347500px;}
.ws26{word-spacing:-13.749000px;}
.ws30{word-spacing:-13.552500px;}
.ws34{word-spacing:-13.551000px;}
.ws2a{word-spacing:-13.401000px;}
.ws0{word-spacing:-13.284000px;}
.ws18{word-spacing:-13.221000px;}
.ws28{word-spacing:-13.143000px;}
.ws17{word-spacing:-13.035000px;}
.ws10{word-spacing:-12.964500px;}
.ws1e{word-spacing:-12.885000px;}
.ws15{word-spacing:-12.814500px;}
.ws3{word-spacing:-12.531000px;}
.ws11{word-spacing:-12.015000px;}
.ws16{word-spacing:-12.010500px;}
.wsd{word-spacing:-11.860500px;}
.wsa{word-spacing:-11.859000px;}
.ws2{word-spacing:-11.826000px;}
.ws1{word-spacing:-10.746000px;}
.ws7{word-spacing:-8.136000px;}
.ws2f{word-spacing:-5.635500px;}
.ws21{word-spacing:0.000000px;}
._7{margin-left:-10.579050px;}
._8{margin-left:-8.131500px;}
._17{margin-left:-6.927000px;}
._c{margin-left:-5.875500px;}
._10{margin-left:-4.857900px;}
._2{margin-left:-3.672000px;}
._3{margin-left:-2.538000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.360000px;}
._5{width:4.986000px;}
._d{width:6.416400px;}
._b{width:8.320500px;}
._9{width:9.675000px;}
._6{width:10.884000px;}
._14{width:12.085350px;}
._13{width:13.247100px;}
._a{width:14.542500px;}
._12{width:16.831800px;}
._11{width:17.883900px;}
._16{width:21.414750px;}
._f{width:25.764900px;}
._15{width:26.815650px;}
._e{width:30.529500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc7{color:rgb(34,34,34);}
.fc6{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs8{font-size:58.650000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y17{bottom:4.500000px;}
.y44{bottom:4.515000px;}
.ye{bottom:11.250000px;}
.y42{bottom:11.265000px;}
.y19{bottom:12.420000px;}
.yc{bottom:13.530000px;}
.y4{bottom:16.875000px;}
.y2{bottom:20.250000px;}
.y3f{bottom:20.700000px;}
.y43{bottom:22.515000px;}
.y41{bottom:25.890000px;}
.y16{bottom:29.280000px;}
.yb{bottom:30.405000px;}
.y5{bottom:32.625000px;}
.y3e{bottom:37.620000px;}
.y15{bottom:41.655000px;}
.ya{bottom:46.185000px;}
.y3d{bottom:54.495000px;}
.y14{bottom:55.155000px;}
.y1{bottom:55.162500px;}
.y13{bottom:69.825000px;}
.y3c{bottom:72.480000px;}
.y9{bottom:73.185000px;}
.y2a{bottom:81.075000px;}
.y12{bottom:88.950000px;}
.y3b{bottom:89.400000px;}
.y8{bottom:93.480000px;}
.y29{bottom:95.700000px;}
.y3a{bottom:106.275000px;}
.y7{bottom:110.355000px;}
.y8f{bottom:111.450000px;}
.y28{bottom:114.825000px;}
.y11{bottom:114.855000px;}
.y58{bottom:122.737500px;}
.y39{bottom:124.320000px;}
.y8e{bottom:129.487500px;}
.y27{bottom:131.745000px;}
.y10{bottom:139.605000px;}
.y57{bottom:139.612500px;}
.y38{bottom:141.195000px;}
.y8d{bottom:142.987500px;}
.y26{bottom:148.620000px;}
.y56{bottom:157.620000px;}
.y37{bottom:158.100000px;}
.y25{bottom:166.650000px;}
.y55{bottom:174.525000px;}
.y36{bottom:176.100000px;}
.y24{bottom:183.525000px;}
.y54{bottom:191.400000px;}
.y35{bottom:192.975000px;}
.y23{bottom:201.555000px;}
.y53{bottom:209.445000px;}
.y34{bottom:209.895000px;}
.y22{bottom:218.430000px;}
.y52{bottom:226.320000px;}
.y33{bottom:227.880000px;}
.y21{bottom:236.430000px;}
.y51{bottom:243.225000px;}
.y32{bottom:244.800000px;}
.y20{bottom:253.350000px;}
.y50{bottom:261.225000px;}
.y31{bottom:261.675000px;}
.y1f{bottom:271.350000px;}
.y4f{bottom:278.100000px;}
.y30{bottom:279.675000px;}
.y1e{bottom:288.255000px;}
.y4e{bottom:295.020000px;}
.y2f{bottom:296.580000px;}
.y8c{bottom:301.770000px;}
.y1d{bottom:305.130000px;}
.y4d{bottom:313.005000px;}
.y2e{bottom:313.455000px;}
.y8b{bottom:318.645000px;}
.y4c{bottom:329.925000px;}
.y2d{bottom:331.500000px;}
.y1c{bottom:333.300000px;}
.y8a{bottom:336.675000px;}
.y4b{bottom:346.800000px;}
.y2c{bottom:348.375000px;}
.y1b{bottom:351.300000px;}
.y89{bottom:353.550000px;}
.y4a{bottom:364.800000px;}
.y88{bottom:370.455000px;}
.y49{bottom:381.705000px;}
.y87{bottom:388.455000px;}
.y48{bottom:398.580000px;}
.y86{bottom:405.330000px;}
.y47{bottom:416.625000px;}
.y85{bottom:422.250000px;}
.y46{bottom:433.500000px;}
.y84{bottom:440.250000px;}
.y45{bottom:450.375000px;}
.y83{bottom:457.170000px;}
.y40{bottom:465.030000px;}
.y82{bottom:474.045000px;}
.y81{bottom:492.030000px;}
.y1a{bottom:502.200000px;}
.y2b{bottom:502.875000px;}
.y80{bottom:508.950000px;}
.y7f{bottom:525.825000px;}
.y7e{bottom:543.870000px;}
.y7d{bottom:560.745000px;}
.y7c{bottom:577.650000px;}
.y7b{bottom:595.650000px;}
.y7a{bottom:612.525000px;}
.y79{bottom:629.445000px;}
.y78{bottom:647.445000px;}
.y77{bottom:664.350000px;}
.y76{bottom:681.225000px;}
.y75{bottom:699.225000px;}
.y74{bottom:716.145000px;}
.y73{bottom:733.020000px;}
.y72{bottom:751.050000px;}
.y71{bottom:767.925000px;}
.y70{bottom:784.800000px;}
.y6f{bottom:802.830000px;}
.y6e{bottom:819.705000px;}
.y6d{bottom:836.625000px;}
.y6c{bottom:854.625000px;}
.y18{bottom:864.750000px;}
.y6b{bottom:871.545000px;}
.y6a{bottom:888.420000px;}
.yf{bottom:894.045000px;}
.y69{bottom:906.420000px;}
.y68{bottom:923.325000px;}
.y67{bottom:940.200000px;}
.y66{bottom:958.245000px;}
.y65{bottom:975.120000px;}
.y64{bottom:991.995000px;}
.y90{bottom:1010.025000px;}
.y63{bottom:1014.525000px;}
.y62{bottom:1026.900000px;}
.y61{bottom:1043.820000px;}
.yd{bottom:1048.320000px;}
.y60{bottom:1061.820000px;}
.y6{bottom:1074.195000px;}
.y5f{bottom:1078.725000px;}
.y5e{bottom:1095.600000px;}
.y5d{bottom:1113.600000px;}
.y5c{bottom:1130.505000px;}
.y5b{bottom:1147.380000px;}
.y5a{bottom:1165.425000px;}
.y59{bottom:1182.300000px;}
.hb{height:25.875000px;}
.h21{height:28.278809px;}
.h13{height:29.287500px;}
.h12{height:29.953125px;}
.h2{height:32.662500px;}
.h8{height:37.125000px;}
.h20{height:37.162500px;}
.h19{height:39.832031px;}
.h1d{height:40.847168px;}
.h1c{height:40.951904px;}
.h1b{height:41.275635px;}
.h1e{height:41.381470px;}
.h18{height:41.389893px;}
.h23{height:41.496021px;}
.h22{height:42.589600px;}
.hd{height:43.075195px;}
.h4{height:43.453125px;}
.ha{height:43.875000px;}
.h1f{height:46.218809px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h11{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:154.275000px;}
.h1a{height:362.250000px;}
.h15{height:362.550000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:152.055000px;}
.w7{width:223.020000px;}
.w9{width:524.250000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x13{left:12.420000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x16{left:90.112487px;}
.x14{left:95.737487px;}
.x6{left:97.987500px;}
.x17{left:108.149987px;}
.x18{left:135.187487px;}
.x10{left:165.562500px;}
.xf{left:188.107500px;}
.x11{left:214.012500px;}
.x7{left:225.300000px;}
.xb{left:290.625000px;}
.x12{left:296.250000px;}
.xe{left:321.007500px;}
.x15{left:344.699987px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.xc{left:453.945000px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.160000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.160000pt;}
.ls1b{letter-spacing:-2.490667pt;}
.ls19{letter-spacing:-2.458667pt;}
.ls14{letter-spacing:-2.421333pt;}
.ls24{letter-spacing:-2.357333pt;}
.ls1e{letter-spacing:-2.320000pt;}
.ls23{letter-spacing:-1.642667pt;}
.ls2d{letter-spacing:-1.546667pt;}
.ls1d{letter-spacing:-1.509333pt;}
.ls25{letter-spacing:-1.413333pt;}
.ls3c{letter-spacing:-1.317333pt;}
.ls12{letter-spacing:-1.296000pt;}
.ls45{letter-spacing:-1.088000pt;}
.ls3d{letter-spacing:-1.034667pt;}
.ls18{letter-spacing:-1.002667pt;}
.ls4a{letter-spacing:-0.986667pt;}
.ls4d{letter-spacing:-0.954667pt;}
.ls3b{letter-spacing:-0.778667pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls26{letter-spacing:-0.693333pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls1c{letter-spacing:-0.280000pt;}
.ls2f{letter-spacing:-0.227733pt;}
.ls4e{letter-spacing:-0.094400pt;}
.ls10{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.146667pt;}
.ls4f{letter-spacing:0.227733pt;}
.ls48{letter-spacing:0.361067pt;}
.ls16{letter-spacing:0.613333pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls46{letter-spacing:0.912000pt;}
.ls11{letter-spacing:0.960000pt;}
.ls4b{letter-spacing:1.045333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls49{letter-spacing:1.317333pt;}
.ls4c{letter-spacing:1.450667pt;}
.ls2b{letter-spacing:1.509333pt;}
.ls29{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls2e{letter-spacing:1.674667pt;}
.ls17{letter-spacing:1.728000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls40{letter-spacing:1.876800pt;}
.ls3a{letter-spacing:1.904000pt;}
.ls4{letter-spacing:1.908000pt;}
.ls43{letter-spacing:1.924000pt;}
.lsd{letter-spacing:1.936000pt;}
.ls5{letter-spacing:2.000000pt;}
.lsc{letter-spacing:2.069333pt;}
.ls41{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.106667pt;}
.ls1a{letter-spacing:2.133333pt;}
.ls8{letter-spacing:2.160000pt;}
.ls28{letter-spacing:2.640000pt;}
.ls27{letter-spacing:2.682667pt;}
.ls3e{letter-spacing:2.773333pt;}
.ls30{letter-spacing:2.966667pt;}
.ls6{letter-spacing:3.000000pt;}
.lsb{letter-spacing:3.020000pt;}
.ls38{letter-spacing:3.098667pt;}
.ls36{letter-spacing:3.106667pt;}
.ls33{letter-spacing:3.126667pt;}
.ls32{letter-spacing:3.160000pt;}
.ls39{letter-spacing:3.546667pt;}
.lsa{letter-spacing:4.248000pt;}
.ls21{letter-spacing:4.853333pt;}
.ls2c{letter-spacing:4.912000pt;}
.ls37{letter-spacing:4.986667pt;}
.ls20{letter-spacing:5.045333pt;}
.ls7{letter-spacing:6.966667pt;}
.ls2a{letter-spacing:6.986667pt;}
.ls9{letter-spacing:7.000000pt;}
.ls42{letter-spacing:7.053333pt;}
.lse{letter-spacing:7.160000pt;}
.ls22{letter-spacing:10.986667pt;}
.lsf{letter-spacing:11.000000pt;}
.ls35{letter-spacing:11.160000pt;}
.ls44{letter-spacing:13.677333pt;}
.ls34{letter-spacing:15.106667pt;}
.ls3f{letter-spacing:41.677333pt;}
.ws27{word-spacing:-52.000000pt;}
.ws6{word-spacing:-23.045333pt;}
.ws13{word-spacing:-18.045333pt;}
.ws23{word-spacing:-18.020000pt;}
.ws1d{word-spacing:-17.912000pt;}
.ws14{word-spacing:-17.886667pt;}
.ws24{word-spacing:-16.546667pt;}
.ws29{word-spacing:-15.806667pt;}
.ws19{word-spacing:-15.682667pt;}
.ws1a{word-spacing:-15.673333pt;}
.wsb{word-spacing:-15.133333pt;}
.wse{word-spacing:-15.102667pt;}
.ws9{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.969333pt;}
.ws32{word-spacing:-14.924000pt;}
.ws25{word-spacing:-14.904000pt;}
.ws1f{word-spacing:-14.674667pt;}
.ws1b{word-spacing:-14.546667pt;}
.ws1c{word-spacing:-14.542667pt;}
.ws33{word-spacing:-14.450667pt;}
.ws5{word-spacing:-14.352000pt;}
.ws2e{word-spacing:-14.317333pt;}
.ws31{word-spacing:-14.045333pt;}
.ws2b{word-spacing:-13.912000pt;}
.ws12{word-spacing:-13.886667pt;}
.ws4{word-spacing:-13.648000pt;}
.ws2d{word-spacing:-13.361067pt;}
.ws36{word-spacing:-13.227733pt;}
.ws2c{word-spacing:-13.180000pt;}
.ws22{word-spacing:-13.033333pt;}
.ws8{word-spacing:-13.000000pt;}
.ws35{word-spacing:-12.905600pt;}
.ws20{word-spacing:-12.772267pt;}
.wsf{word-spacing:-12.753333pt;}
.ws26{word-spacing:-12.221333pt;}
.ws30{word-spacing:-12.046667pt;}
.ws34{word-spacing:-12.045333pt;}
.ws2a{word-spacing:-11.912000pt;}
.ws0{word-spacing:-11.808000pt;}
.ws18{word-spacing:-11.752000pt;}
.ws28{word-spacing:-11.682667pt;}
.ws17{word-spacing:-11.586667pt;}
.ws10{word-spacing:-11.524000pt;}
.ws1e{word-spacing:-11.453333pt;}
.ws15{word-spacing:-11.390667pt;}
.ws3{word-spacing:-11.138667pt;}
.ws11{word-spacing:-10.680000pt;}
.ws16{word-spacing:-10.676000pt;}
.wsd{word-spacing:-10.542667pt;}
.wsa{word-spacing:-10.541333pt;}
.ws2{word-spacing:-10.512000pt;}
.ws1{word-spacing:-9.552000pt;}
.ws7{word-spacing:-7.232000pt;}
.ws2f{word-spacing:-5.009333pt;}
.ws21{word-spacing:0.000000pt;}
._7{margin-left:-9.403600pt;}
._8{margin-left:-7.228000pt;}
._17{margin-left:-6.157333pt;}
._c{margin-left:-5.222667pt;}
._10{margin-left:-4.318133pt;}
._2{margin-left:-3.264000pt;}
._3{margin-left:-2.256000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.986667pt;}
._5{width:4.432000pt;}
._d{width:5.703467pt;}
._b{width:7.396000pt;}
._9{width:8.600000pt;}
._6{width:9.674667pt;}
._14{width:10.742533pt;}
._13{width:11.775200pt;}
._a{width:12.926667pt;}
._12{width:14.961600pt;}
._11{width:15.896800pt;}
._16{width:19.035333pt;}
._f{width:22.902133pt;}
._15{width:23.836133pt;}
._e{width:27.137333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs8{font-size:52.133333pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y17{bottom:4.000000pt;}
.y44{bottom:4.013333pt;}
.ye{bottom:10.000000pt;}
.y42{bottom:10.013333pt;}
.y19{bottom:11.040000pt;}
.yc{bottom:12.026667pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:18.000000pt;}
.y3f{bottom:18.400000pt;}
.y43{bottom:20.013333pt;}
.y41{bottom:23.013333pt;}
.y16{bottom:26.026667pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:29.000000pt;}
.y3e{bottom:33.440000pt;}
.y15{bottom:37.026667pt;}
.ya{bottom:41.053333pt;}
.y3d{bottom:48.440000pt;}
.y14{bottom:49.026667pt;}
.y1{bottom:49.033333pt;}
.y13{bottom:62.066667pt;}
.y3c{bottom:64.426667pt;}
.y9{bottom:65.053333pt;}
.y2a{bottom:72.066667pt;}
.y12{bottom:79.066667pt;}
.y3b{bottom:79.466667pt;}
.y8{bottom:83.093333pt;}
.y29{bottom:85.066667pt;}
.y3a{bottom:94.466667pt;}
.y7{bottom:98.093333pt;}
.y8f{bottom:99.066667pt;}
.y28{bottom:102.066667pt;}
.y11{bottom:102.093333pt;}
.y58{bottom:109.100000pt;}
.y39{bottom:110.506667pt;}
.y8e{bottom:115.100000pt;}
.y27{bottom:117.106667pt;}
.y10{bottom:124.093333pt;}
.y57{bottom:124.100000pt;}
.y38{bottom:125.506667pt;}
.y8d{bottom:127.100000pt;}
.y26{bottom:132.106667pt;}
.y56{bottom:140.106667pt;}
.y37{bottom:140.533333pt;}
.y25{bottom:148.133333pt;}
.y55{bottom:155.133333pt;}
.y36{bottom:156.533333pt;}
.y24{bottom:163.133333pt;}
.y54{bottom:170.133333pt;}
.y35{bottom:171.533333pt;}
.y23{bottom:179.160000pt;}
.y53{bottom:186.173333pt;}
.y34{bottom:186.573333pt;}
.y22{bottom:194.160000pt;}
.y52{bottom:201.173333pt;}
.y33{bottom:202.560000pt;}
.y21{bottom:210.160000pt;}
.y51{bottom:216.200000pt;}
.y32{bottom:217.600000pt;}
.y20{bottom:225.200000pt;}
.y50{bottom:232.200000pt;}
.y31{bottom:232.600000pt;}
.y1f{bottom:241.200000pt;}
.y4f{bottom:247.200000pt;}
.y30{bottom:248.600000pt;}
.y1e{bottom:256.226667pt;}
.y4e{bottom:262.240000pt;}
.y2f{bottom:263.626667pt;}
.y8c{bottom:268.240000pt;}
.y1d{bottom:271.226667pt;}
.y4d{bottom:278.226667pt;}
.y2e{bottom:278.626667pt;}
.y8b{bottom:283.240000pt;}
.y4c{bottom:293.266667pt;}
.y2d{bottom:294.666667pt;}
.y1c{bottom:296.266667pt;}
.y8a{bottom:299.266667pt;}
.y4b{bottom:308.266667pt;}
.y2c{bottom:309.666667pt;}
.y1b{bottom:312.266667pt;}
.y89{bottom:314.266667pt;}
.y4a{bottom:324.266667pt;}
.y88{bottom:329.293333pt;}
.y49{bottom:339.293333pt;}
.y87{bottom:345.293333pt;}
.y48{bottom:354.293333pt;}
.y86{bottom:360.293333pt;}
.y47{bottom:370.333333pt;}
.y85{bottom:375.333333pt;}
.y46{bottom:385.333333pt;}
.y84{bottom:391.333333pt;}
.y45{bottom:400.333333pt;}
.y83{bottom:406.373333pt;}
.y40{bottom:413.360000pt;}
.y82{bottom:421.373333pt;}
.y81{bottom:437.360000pt;}
.y1a{bottom:446.400000pt;}
.y2b{bottom:447.000000pt;}
.y80{bottom:452.400000pt;}
.y7f{bottom:467.400000pt;}
.y7e{bottom:483.440000pt;}
.y7d{bottom:498.440000pt;}
.y7c{bottom:513.466667pt;}
.y7b{bottom:529.466667pt;}
.y7a{bottom:544.466667pt;}
.y79{bottom:559.506667pt;}
.y78{bottom:575.506667pt;}
.y77{bottom:590.533333pt;}
.y76{bottom:605.533333pt;}
.y75{bottom:621.533333pt;}
.y74{bottom:636.573333pt;}
.y73{bottom:651.573333pt;}
.y72{bottom:667.600000pt;}
.y71{bottom:682.600000pt;}
.y70{bottom:697.600000pt;}
.y6f{bottom:713.626667pt;}
.y6e{bottom:728.626667pt;}
.y6d{bottom:743.666667pt;}
.y6c{bottom:759.666667pt;}
.y18{bottom:768.666667pt;}
.y6b{bottom:774.706667pt;}
.y6a{bottom:789.706667pt;}
.yf{bottom:794.706667pt;}
.y69{bottom:805.706667pt;}
.y68{bottom:820.733333pt;}
.y67{bottom:835.733333pt;}
.y66{bottom:851.773333pt;}
.y65{bottom:866.773333pt;}
.y64{bottom:881.773333pt;}
.y90{bottom:897.800000pt;}
.y63{bottom:901.800000pt;}
.y62{bottom:912.800000pt;}
.y61{bottom:927.840000pt;}
.yd{bottom:931.840000pt;}
.y60{bottom:943.840000pt;}
.y6{bottom:954.840000pt;}
.y5f{bottom:958.866667pt;}
.y5e{bottom:973.866667pt;}
.y5d{bottom:989.866667pt;}
.y5c{bottom:1004.893333pt;}
.y5b{bottom:1019.893333pt;}
.y5a{bottom:1035.933333pt;}
.y59{bottom:1050.933333pt;}
.hb{height:23.000000pt;}
.h21{height:25.136719pt;}
.h13{height:26.033333pt;}
.h12{height:26.625000pt;}
.h2{height:29.033333pt;}
.h8{height:33.000000pt;}
.h20{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.401693pt;}
.h1b{height:36.689453pt;}
.h1e{height:36.783529pt;}
.h18{height:36.791016pt;}
.h23{height:36.885352pt;}
.h22{height:37.857422pt;}
.hd{height:38.289062pt;}
.h4{height:38.625000pt;}
.ha{height:39.000000pt;}
.h1f{height:41.083385pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h11{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:137.133333pt;}
.h1a{height:322.000000pt;}
.h15{height:322.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:135.160000pt;}
.w7{width:198.240000pt;}
.w9{width:466.000000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x13{left:11.040000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x16{left:80.099988pt;}
.x14{left:85.099988pt;}
.x6{left:87.100000pt;}
.x17{left:96.133322pt;}
.x18{left:120.166655pt;}
.x10{left:147.166667pt;}
.xf{left:167.206667pt;}
.x11{left:190.233333pt;}
.x7{left:200.266667pt;}
.xb{left:258.333333pt;}
.x12{left:263.333333pt;}
.xe{left:285.340000pt;}
.x15{left:306.399988pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.xc{left:403.506667pt;}
.x3{left:663.840000pt;}
}




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