
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_8099f990fe35601a5149b842.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_adab1ce40b63b80b24efa007.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_9795c16a003dcd518de97a48.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_7d345c6f8edffb72d8c60ff8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_e51d43a6acf310ac9de066bf.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f1e380d818247660312ac548.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_1ec3e340e511029d64e49e5a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_dca86cb457dcbf5e5684f3c4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_80d8fd17e727fac7ba3051c2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909668;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_435605c0844c85f8075594cf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_7d2e33fa72f2487873c0d8ca.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_e2b77709072d87b2af3af230.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_9db7e4eeb6d40f6e8761fe0b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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;}
.m7{transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.213888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213888,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225086,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.226594,0.000000,-0.075524,0.238319,0,0);-ms-transform:matrix(0.226594,0.000000,-0.075524,0.238319,0,0);-webkit-transform:matrix(0.226594,0.000000,-0.075524,0.238319,0,0);}
.mc{transform:matrix(0.230428,0.000000,-0.076802,0.237911,0,0);-ms-transform:matrix(0.230428,0.000000,-0.076802,0.237911,0,0);-webkit-transform:matrix(0.230428,0.000000,-0.076802,0.237911,0,0);}
.m9{transform:matrix(0.233654,0.000000,-0.077877,0.237561,0,0);-ms-transform:matrix(0.233654,0.000000,-0.077877,0.237561,0,0);-webkit-transform:matrix(0.233654,0.000000,-0.077877,0.237561,0,0);}
.m12{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.239306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239306,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242137,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.244882,0.000000,-0.081619,0.236301,0,0);-ms-transform:matrix(0.244882,0.000000,-0.081619,0.236301,0,0);-webkit-transform:matrix(0.244882,0.000000,-0.081619,0.236301,0,0);}
.m8{transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247336,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);}
.md{transform:matrix(0.259078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259078,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.271929,0.000000,-0.090634,0.232992,0,0);-ms-transform:matrix(0.271929,0.000000,-0.090634,0.232992,0,0);-webkit-transform:matrix(0.271929,0.000000,-0.090634,0.232992,0,0);}
.m6{transform:matrix(0.283499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283499,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.291779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291779,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.291922,0.000000,-0.097297,0.230289,0,0);-ms-transform:matrix(0.291922,0.000000,-0.097297,0.230289,0,0);-webkit-transform:matrix(0.291922,0.000000,-0.097297,0.230289,0,0);}
.m15{transform:matrix(0.303351,0.000000,-0.101107,0.228642,0,0);-ms-transform:matrix(0.303351,0.000000,-0.101107,0.228642,0,0);-webkit-transform:matrix(0.303351,0.000000,-0.101107,0.228642,0,0);}
.m4{transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316907,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331687,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);}
.v8{vertical-align:-95.760000px;}
.v7{vertical-align:-63.026305px;}
.va{vertical-align:-60.435646px;}
.v5{vertical-align:-57.502358px;}
.v6{vertical-align:-51.636602px;}
.v4{vertical-align:-46.265918px;}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.v3{vertical-align:20.723542px;}
.vb{vertical-align:38.880000px;}
.v9{vertical-align:51.303541px;}
.ls31{letter-spacing:-0.690000px;}
.ls3a{letter-spacing:-0.378600px;}
.ls14{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.341400px;}
.ls10{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.161400px;}
.ls3{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.010080px;}
.lsc{letter-spacing:0.013440px;}
.ls17{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.187479px;}
.ls21{letter-spacing:0.229800px;}
.ls2d{letter-spacing:0.286560px;}
.ls6{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.336000px;}
.ls16{letter-spacing:0.341280px;}
.ls26{letter-spacing:0.341400px;}
.ls1c{letter-spacing:0.350640px;}
.ls7{letter-spacing:0.360000px;}
.ls2{letter-spacing:1.980000px;}
.ls37{letter-spacing:12.060000px;}
.ls5{letter-spacing:12.780000px;}
.ls2e{letter-spacing:14.221721px;}
.lsf{letter-spacing:20.820000px;}
.lse{letter-spacing:21.420000px;}
.ls2f{letter-spacing:22.715248px;}
.ls38{letter-spacing:23.580000px;}
.ls4{letter-spacing:28.080000px;}
.ls35{letter-spacing:38.429219px;}
.ls18{letter-spacing:47.702841px;}
.ls1d{letter-spacing:49.500000px;}
.ls1e{letter-spacing:50.154034px;}
.ls23{letter-spacing:91.078154px;}
.ls2c{letter-spacing:92.865796px;}
.ls15{letter-spacing:100.836893px;}
.ls32{letter-spacing:109.833928px;}
.ls20{letter-spacing:116.699556px;}
.ls30{letter-spacing:124.058827px;}
.ls22{letter-spacing:133.276365px;}
.ls33{letter-spacing:133.740000px;}
.ls36{letter-spacing:139.809942px;}
.ls19{letter-spacing:153.621711px;}
.ls13{letter-spacing:156.470137px;}
.ls12{letter-spacing:157.124667px;}
.ls1f{letter-spacing:161.759820px;}
.ls34{letter-spacing:168.101280px;}
.ls1a{letter-spacing:168.900951px;}
.ls1b{letter-spacing:185.865539px;}
.lsa{letter-spacing:187.740000px;}
.ls2a{letter-spacing:191.340000px;}
.ls0{letter-spacing:197.429760px;}
.ls28{letter-spacing:199.081541px;}
.ls29{letter-spacing:207.240101px;}
.ls27{letter-spacing:209.788159px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws19{word-spacing:-52.758092px;}
.ws4{word-spacing:-21.420000px;}
.ws16{word-spacing:-21.078000px;}
.ws2{word-spacing:-21.060000px;}
.ws1c{word-spacing:-20.898600px;}
.wsa{word-spacing:-20.729354px;}
.ws15{word-spacing:-20.718600px;}
.ws17{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.169142px;}
.wsd{word-spacing:-19.107609px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:11.003871px;}
.wsc{word-spacing:15.313489px;}
.ws18{word-spacing:20.448764px;}
.ws1a{word-spacing:21.378679px;}
.ws14{word-spacing:55.131868px;}
.wsb{word-spacing:76.864446px;}
.ws8{word-spacing:79.305068px;}
.wsf{word-spacing:93.550852px;}
.ws6{word-spacing:105.098820px;}
.ws9{word-spacing:105.232385px;}
.ws13{word-spacing:112.377938px;}
.wse{word-spacing:113.865273px;}
.ws1b{word-spacing:141.528411px;}
.ws10{word-spacing:181.347674px;}
.ws11{word-spacing:289.157951px;}
._1e{margin-left:-405.492837px;}
._19{margin-left:-404.196795px;}
._2c{margin-left:-362.723581px;}
._40{margin-left:-351.436870px;}
._27{margin-left:-334.507143px;}
._1b{margin-left:-296.671507px;}
._0{margin-left:-196.973760px;}
._37{margin-left:-187.080000px;}
._3d{margin-left:-138.547209px;}
._26{margin-left:-6.120000px;}
._16{margin-left:-2.272320px;}
._1{margin-left:-1.126080px;}
._3{width:1.579440px;}
._4{width:2.741760px;}
._13{width:4.334400px;}
._35{width:5.626800px;}
._42{width:6.883920px;}
._e{width:8.002800px;}
._23{width:9.255840px;}
._6{width:10.698480px;}
._5{width:11.806320px;}
._d{width:13.153200px;}
._17{width:14.970240px;}
._11{width:16.511040px;}
._10{width:17.889840px;}
._2d{width:19.038240px;}
._36{width:22.637037px;}
._3a{width:23.858880px;}
._18{width:25.218720px;}
._43{width:26.289378px;}
._c{width:27.293760px;}
._f{width:29.062800px;}
._3b{width:31.780568px;}
._12{width:35.296560px;}
._a{width:36.759600px;}
._b{width:37.992240px;}
._14{width:40.098240px;}
._15{width:41.391600px;}
._24{width:44.655600px;}
._7{width:45.773040px;}
._3c{width:47.090160px;}
._34{width:48.274560px;}
._33{width:49.564080px;}
._41{width:52.411440px;}
._39{width:55.211760px;}
._38{width:56.371440px;}
._21{width:58.209840px;}
._22{width:59.657040px;}
._8{width:60.768000px;}
._9{width:62.083920px;}
._2a{width:98.595260px;}
._25{width:106.643321px;}
._2b{width:114.110639px;}
._29{width:121.128558px;}
._28{width:122.811514px;}
._30{width:128.559711px;}
._2e{width:134.209604px;}
._2f{width:135.479282px;}
._31{width:143.684383px;}
._1c{width:148.180560px;}
._1f{width:156.796837px;}
._1a{width:159.739608px;}
._20{width:174.681120px;}
._32{width:184.140000px;}
._1d{width:191.340000px;}
._3e{width:199.873804px;}
._3f{width:205.553169px;}
._2{width:638.842080px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:42.659287px;}
.fsa{font-size:44.288321px;}
.fs17{font-size:44.865817px;}
.fs13{font-size:46.337132px;}
.fs4{font-size:46.586356px;}
.fs11{font-size:46.788066px;}
.fsd{font-size:47.025089px;}
.fs6{font-size:47.854654px;}
.fs3{font-size:54.000000px;}
.fs1e{font-size:57.315493px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs19{font-size:73.738612px;}
.fsf{font-size:73.745949px;}
.fs9{font-size:76.430434px;}
.fs1b{font-size:77.352711px;}
.fs18{font-size:77.552705px;}
.fs14{font-size:80.095941px;}
.fs1c{font-size:80.253961px;}
.fs5{font-size:80.676570px;}
.fs10{font-size:80.875403px;}
.fsc{font-size:81.315440px;}
.fs7{font-size:82.917418px;}
.fs2{font-size:84.240000px;}
.fs15{font-size:84.739194px;}
.fs12{font-size:84.985045px;}
.fse{font-size:85.573251px;}
.fs16{font-size:85.942644px;}
.fs1d{font-size:87.750489px;}
.fs8{font-size:90.014373px;}
.fs1f{font-size:99.109532px;}
.fsb{font-size:106.620179px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.947880px;}
.y88{bottom:4.152082px;}
.y9f{bottom:4.248574px;}
.y79{bottom:4.288244px;}
.y3e{bottom:4.607739px;}
.y3b{bottom:5.302370px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y56{bottom:6.595463px;}
.y5d{bottom:7.003026px;}
.y5e{bottom:7.695226px;}
.yaa{bottom:8.485904px;}
.y92{bottom:8.699823px;}
.y7d{bottom:9.449873px;}
.y4e{bottom:9.924197px;}
.y5b{bottom:10.748775px;}
.y55{bottom:11.541981px;}
.y5c{bottom:12.214532px;}
.yab{bottom:14.887414px;}
.y6d{bottom:15.114692px;}
.y94{bottom:18.313422px;}
.y8a{bottom:19.260675px;}
.y78{bottom:19.892303px;}
.y6e{bottom:20.286995px;}
.y66{bottom:22.986241px;}
.y96{bottom:23.065668px;}
.y8c{bottom:24.258728px;}
.y9e{bottom:25.014756px;}
.y7c{bottom:25.054261px;}
.y2{bottom:26.100000px;}
.y6c{bottom:28.023843px;}
.y4{bottom:28.980000px;}
.y93{bottom:30.121299px;}
.y89{bottom:31.679308px;}
.ya0{bottom:32.677037px;}
.y7a{bottom:32.718188px;}
.y6b{bottom:33.196145px;}
.y65{bottom:34.552721px;}
.y91{bottom:34.872029px;}
.y8b{bottom:36.675767px;}
.ya1{bottom:37.838995px;}
.y7b{bottom:37.878500px;}
.y74{bottom:84.960000px;}
.ybb{bottom:92.520000px;}
.y31{bottom:97.920000px;}
.y4c{bottom:113.220000px;}
.y73{bottom:121.140000px;}
.y1d{bottom:126.000000px;}
.yba{bottom:128.736000px;}
.y30{bottom:149.256000px;}
.y1c{bottom:162.210000px;}
.y4b{bottom:164.370000px;}
.yb9{bottom:164.910000px;}
.y72{bottom:172.290000px;}
.y9c{bottom:177.690000px;}
.y1b{bottom:198.570000px;}
.y2f{bottom:200.010000px;}
.y4a{bottom:200.550000px;}
.yb8{bottom:202.170000px;}
.y9b{bottom:214.050000px;}
.y71{bottom:223.590000px;}
.y1a{bottom:234.750000px;}
.y49{bottom:236.910000px;}
.yb7{bottom:238.350000px;}
.y2e{bottom:246.630000px;}
.y9a{bottom:250.230000px;}
.y48{bottom:273.090000px;}
.y70{bottom:274.890000px;}
.yb6{bottom:275.610000px;}
.y19{bottom:285.870000px;}
.y99{bottom:286.410000px;}
.yb5{bottom:311.970000px;}
.y6a{bottom:321.015000px;}
.y98{bottom:322.590000px;}
.y47{bottom:324.210000px;}
.y18{bottom:337.170000px;}
.y6f{bottom:338.970000px;}
.yb4{bottom:349.230000px;}
.y90{bottom:360.465000px;}
.y46{bottom:360.570000px;}
.y17{bottom:373.350000px;}
.y97{bottom:382.935000px;}
.yb3{bottom:385.455000px;}
.y45{bottom:396.795000px;}
.y69{bottom:405.435000px;}
.yb2{bottom:421.635000px;}
.y16{bottom:424.335000px;}
.y44{bottom:432.975000px;}
.y8f{bottom:436.395000px;}
.y68{bottom:441.615000px;}
.yc8{bottom:459.615000px;}
.y8e{bottom:464.115000px;}
.yb1{bottom:472.575000px;}
.y15{bottom:475.815000px;}
.y43{bottom:484.275000px;}
.y64{bottom:487.740000px;}
.y67{bottom:510.195000px;}
.y87{bottom:510.240000px;}
.yc7{bottom:510.915000px;}
.yb0{bottom:524.055000px;}
.y14{bottom:527.115000px;}
.y8d{bottom:532.695000px;}
.y42{bottom:535.395000px;}
.yc6{bottom:548.175000px;}
.yaf{bottom:560.415000px;}
.y13{bottom:563.295000px;}
.y63{bottom:576.615000px;}
.yc5{bottom:584.355000px;}
.y41{bottom:586.695000px;}
.y2d{bottom:593.715000px;}
.y86{bottom:597.315000px;}
.yae{bottom:611.535000px;}
.y62{bottom:612.795000px;}
.y12{bottom:614.235000px;}
.yc4{bottom:620.715000px;}
.y2c{bottom:630.075000px;}
.y85{bottom:633.345000px;}
.y40{bottom:637.845000px;}
.yad{bottom:647.745000px;}
.yc3{bottom:656.925000px;}
.y61{bottom:664.125000px;}
.y11{bottom:665.745000px;}
.y83{bottom:666.840000px;}
.y2b{bottom:681.225000px;}
.y3d{bottom:684.090000px;}
.y84{bottom:687.885000px;}
.y3f{bottom:693.105000px;}
.ya9{bottom:693.990000px;}
.yc2{bottom:694.185000px;}
.y60{bottom:700.305000px;}
.yac{bottom:704.445000px;}
.y10{bottom:717.045000px;}
.y2a{bottom:717.405000px;}
.yc1{bottom:730.365000px;}
.y3a{bottom:741.690000px;}
.y5a{bottom:746.340000px;}
.y3c{bottom:750.705000px;}
.yf{bottom:753.225000px;}
.y5f{bottom:756.825000px;}
.ya8{bottom:765.645000px;}
.yc0{bottom:766.545000px;}
.y29{bottom:768.705000px;}
.y82{bottom:780.945000px;}
.ya7{bottom:801.825000px;}
.ybf{bottom:803.805000px;}
.ye{bottom:804.165000px;}
.y39{bottom:804.525000px;}
.y28{bottom:804.885000px;}
.y59{bottom:812.805000px;}
.y81{bottom:817.125000px;}
.ya6{bottom:838.185000px;}
.ybe{bottom:840.165000px;}
.y38{bottom:840.705000px;}
.y27{bottom:841.065000px;}
.y58{bottom:848.985000px;}
.yd{bottom:855.645000px;}
.y80{bottom:868.245000px;}
.ya5{bottom:874.365000px;}
.ybd{bottom:876.345000px;}
.y37{bottom:876.885000px;}
.y26{bottom:877.425000px;}
.y54{bottom:895.215000px;}
.y57{bottom:905.730000px;}
.yc{bottom:906.990000px;}
.y36{bottom:913.110000px;}
.y25{bottom:913.650000px;}
.y7f{bottom:919.590000px;}
.ya4{bottom:925.710000px;}
.yb{bottom:943.170000px;}
.y24{bottom:949.830000px;}
.y53{bottom:957.930000px;}
.ya3{bottom:961.890000px;}
.y35{bottom:964.410000px;}
.y77{bottom:972.090000px;}
.y23{bottom:986.010000px;}
.ya{bottom:994.110000px;}
.y7e{bottom:994.650000px;}
.y9d{bottom:1007.940000px;}
.y52{bottom:1009.230000px;}
.y34{bottom:1015.710000px;}
.y22{bottom:1022.370000px;}
.ybc{bottom:1023.270000px;}
.ya2{bottom:1030.470000px;}
.y9{bottom:1045.230000px;}
.y21{bottom:1059.630000px;}
.y51{bottom:1060.350000px;}
.y76{bottom:1060.710000px;}
.y33{bottom:1066.830000px;}
.y8{bottom:1081.410000px;}
.y20{bottom:1095.810000px;}
.y75{bottom:1096.890000px;}
.y50{bottom:1111.650000px;}
.y7{bottom:1117.770000px;}
.y32{bottom:1118.130000px;}
.y1f{bottom:1133.070000px;}
.y4d{bottom:1157.640000px;}
.y4f{bottom:1166.760000px;}
.y6{bottom:1168.920000px;}
.y1e{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h36{height:29.619876px;}
.h10{height:30.599198px;}
.h8{height:30.599374px;}
.ha{height:30.600165px;}
.h31{height:31.151949px;}
.h1a{height:32.651209px;}
.h14{height:34.199881px;}
.h40{height:39.599788px;}
.h37{height:41.846928px;}
.h12{height:43.444940px;}
.h30{height:44.011439px;}
.h2f{height:44.033346px;}
.h28{height:45.454735px;}
.h27{height:45.477361px;}
.h22{height:45.897083px;}
.h17{height:46.129592px;}
.hc{height:46.943360px;}
.h3a{height:51.199368px;}
.h1f{height:51.204462px;}
.h34{height:52.198936px;}
.h20{height:52.200037px;}
.h39{height:53.708767px;}
.h33{height:53.847630px;}
.h2e{height:54.898900px;}
.h2b{height:55.613491px;}
.h3f{height:55.723209px;}
.h25{height:56.154699px;}
.h41{height:56.252022px;}
.h1b{height:56.460232px;}
.h26{height:56.699235px;}
.h1c{height:56.699496px;}
.hf{height:57.572543px;}
.h2a{height:58.837468px;}
.h24{height:59.008171px;}
.h19{height:59.416583px;}
.h2d{height:59.673066px;}
.h3e{height:60.928318px;}
.he{height:62.500214px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h38{height:72.334410px;}
.h1e{height:72.341607px;}
.h35{height:72.370415px;}
.h1d{height:72.377616px;}
.h15{height:74.030222px;}
.h7{height:74.244727px;}
.h13{height:74.974972px;}
.h11{height:75.012292px;}
.h32{height:76.075871px;}
.h29{height:78.570677px;}
.h3d{height:78.725687px;}
.h3c{height:78.764873px;}
.h23{height:79.335296px;}
.h21{height:79.374786px;}
.h18{height:79.766953px;}
.h16{height:79.806658px;}
.hd{height:81.338424px;}
.h6{height:82.676953px;}
.h2c{height:83.477077px;}
.h5{height:84.898125px;}
.h43{height:86.585445px;}
.h3b{height:91.851680px;}
.h42{height:97.222192px;}
.h9{height:99.903183px;}
.hb{height:102.644744px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w8{width:68.400416px;}
.wd{width:78.298957px;}
.wc{width:89.103610px;}
.wa{width:92.698405px;}
.w3{width:96.302166px;}
.w4{width:96.303147px;}
.wb{width:104.398969px;}
.w9{width:107.101744px;}
.we{width:109.805064px;}
.wf{width:131.402160px;}
.w5{width:150.303525px;}
.w6{width:159.300755px;}
.w7{width:160.195344px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:1.069973px;}
.x1e{left:3.003132px;}
.x51{left:4.383685px;}
.x1d{left:10.010232px;}
.x28{left:12.486458px;}
.x4c{left:13.589753px;}
.x24{left:14.692011px;}
.x45{left:15.718154px;}
.x38{left:19.430792px;}
.x4{left:20.550000px;}
.x3e{left:21.883383px;}
.x2b{left:24.410466px;}
.x4e{left:25.437832px;}
.x48{left:27.449941px;}
.x50{left:28.838024px;}
.x36{left:31.456670px;}
.x3b{left:36.674746px;}
.x18{left:39.106145px;}
.x2e{left:40.677514px;}
.x20{left:42.744596px;}
.x4a{left:45.577736px;}
.x32{left:48.236995px;}
.x2f{left:50.160405px;}
.x3a{left:53.052152px;}
.x4d{left:55.195268px;}
.x35{left:57.034431px;}
.x41{left:59.748493px;}
.x4b{left:61.467195px;}
.x40{left:64.906677px;}
.x46{left:66.264002px;}
.x34{left:69.843434px;}
.x26{left:74.034899px;}
.x1c{left:77.128188px;}
.x44{left:78.291753px;}
.x39{left:80.652030px;}
.x33{left:86.544880px;}
.x3f{left:88.228972px;}
.x2a{left:93.106405px;}
.x1{left:95.796000px;}
.x7{left:104.796000px;}
.x2{left:111.636000px;}
.x27{left:120.367305px;}
.x1f{left:121.975451px;}
.x29{left:128.477011px;}
.x14{left:138.276000px;}
.x1a{left:149.796000px;}
.x23{left:151.278933px;}
.x5{left:159.690000px;}
.x6{left:190.290000px;}
.xa{left:205.770000px;}
.x12{left:218.190000px;}
.x16{left:219.450000px;}
.x8{left:245.370000px;}
.x11{left:264.270000px;}
.xb{left:309.495000px;}
.xe{left:316.695000px;}
.x10{left:330.195000px;}
.x13{left:338.835000px;}
.x9{left:340.635000px;}
.xf{left:341.715000px;}
.x43{left:355.965000px;}
.xc{left:368.535000px;}
.xd{left:388.335000px;}
.x52{left:395.190000px;}
.x22{left:398.790000px;}
.x25{left:403.815000px;}
.x1b{left:408.690000px;}
.x3d{left:416.940000px;}
.x31{left:419.490000px;}
.x17{left:428.115000px;}
.x49{left:435.840000px;}
.x3{left:438.915000px;}
.x37{left:444.315000px;}
.x2d{left:458.190000px;}
.x4f{left:514.185000px;}
.x42{left:521.385000px;}
.x19{left:524.445000px;}
.x30{left:526.605000px;}
.x3c{left:537.045000px;}
.x21{left:559.005000px;}
.x2c{left:564.045000px;}
.x15{left:669.030000px;}
@media print{
.v8{vertical-align:-85.120000pt;}
.v7{vertical-align:-56.023382pt;}
.va{vertical-align:-53.720575pt;}
.v5{vertical-align:-51.113207pt;}
.v6{vertical-align:-45.899201pt;}
.v4{vertical-align:-41.125260pt;}
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.v3{vertical-align:18.420926pt;}
.vb{vertical-align:34.560000pt;}
.v9{vertical-align:45.603148pt;}
.ls31{letter-spacing:-0.613333pt;}
.ls3a{letter-spacing:-0.336533pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.303467pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.143467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.008960pt;}
.lsc{letter-spacing:0.011947pt;}
.ls17{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.166648pt;}
.ls21{letter-spacing:0.204267pt;}
.ls2d{letter-spacing:0.254720pt;}
.ls6{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.298667pt;}
.ls16{letter-spacing:0.303360pt;}
.ls26{letter-spacing:0.303467pt;}
.ls1c{letter-spacing:0.311680pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2{letter-spacing:1.760000pt;}
.ls37{letter-spacing:10.720000pt;}
.ls5{letter-spacing:11.360000pt;}
.ls2e{letter-spacing:12.641530pt;}
.lsf{letter-spacing:18.506667pt;}
.lse{letter-spacing:19.040000pt;}
.ls2f{letter-spacing:20.191332pt;}
.ls38{letter-spacing:20.960000pt;}
.ls4{letter-spacing:24.960000pt;}
.ls35{letter-spacing:34.159306pt;}
.ls18{letter-spacing:42.402526pt;}
.ls1d{letter-spacing:44.000000pt;}
.ls1e{letter-spacing:44.581364pt;}
.ls23{letter-spacing:80.958359pt;}
.ls2c{letter-spacing:82.547374pt;}
.ls15{letter-spacing:89.632793pt;}
.ls32{letter-spacing:97.630159pt;}
.ls20{letter-spacing:103.732938pt;}
.ls30{letter-spacing:110.274513pt;}
.ls22{letter-spacing:118.467880pt;}
.ls33{letter-spacing:118.880000pt;}
.ls36{letter-spacing:124.275504pt;}
.ls19{letter-spacing:136.552632pt;}
.ls13{letter-spacing:139.084566pt;}
.ls12{letter-spacing:139.666371pt;}
.ls1f{letter-spacing:143.786507pt;}
.ls34{letter-spacing:149.423360pt;}
.ls1a{letter-spacing:150.134178pt;}
.ls1b{letter-spacing:165.213812pt;}
.lsa{letter-spacing:166.880000pt;}
.ls2a{letter-spacing:170.080000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls28{letter-spacing:176.961369pt;}
.ls29{letter-spacing:184.213423pt;}
.ls27{letter-spacing:186.478364pt;}
.ls1{letter-spacing:962.959787pt;}
.ws19{word-spacing:-46.896082pt;}
.ws4{word-spacing:-19.040000pt;}
.ws16{word-spacing:-18.736000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1c{word-spacing:-18.576533pt;}
.wsa{word-spacing:-18.426093pt;}
.ws15{word-spacing:-18.416533pt;}
.ws17{word-spacing:-18.400000pt;}
.ws7{word-spacing:-17.928127pt;}
.wsd{word-spacing:-16.984541pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:9.781219pt;}
.wsc{word-spacing:13.611991pt;}
.ws18{word-spacing:18.176679pt;}
.ws1a{word-spacing:19.003270pt;}
.ws14{word-spacing:49.006105pt;}
.wsb{word-spacing:68.323952pt;}
.ws8{word-spacing:70.493394pt;}
.wsf{word-spacing:83.156313pt;}
.ws6{word-spacing:93.421173pt;}
.ws9{word-spacing:93.539898pt;}
.ws13{word-spacing:99.891501pt;}
.wse{word-spacing:101.213576pt;}
.ws1b{word-spacing:125.803032pt;}
.ws10{word-spacing:161.197933pt;}
.ws11{word-spacing:257.029290pt;}
._1e{margin-left:-360.438077pt;}
._19{margin-left:-359.286040pt;}
._2c{margin-left:-322.420961pt;}
._40{margin-left:-312.388329pt;}
._27{margin-left:-297.339683pt;}
._1b{margin-left:-263.708006pt;}
._0{margin-left:-175.087787pt;}
._37{margin-left:-166.293333pt;}
._3d{margin-left:-123.153075pt;}
._26{margin-left:-5.440000pt;}
._16{margin-left:-2.019840pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.403947pt;}
._4{width:2.437120pt;}
._13{width:3.852800pt;}
._35{width:5.001600pt;}
._42{width:6.119040pt;}
._e{width:7.113600pt;}
._23{width:8.227413pt;}
._6{width:9.509760pt;}
._5{width:10.494507pt;}
._d{width:11.691733pt;}
._17{width:13.306880pt;}
._11{width:14.676480pt;}
._10{width:15.902080pt;}
._2d{width:16.922880pt;}
._36{width:20.121811pt;}
._3a{width:21.207893pt;}
._18{width:22.416640pt;}
._43{width:23.368336pt;}
._c{width:24.261120pt;}
._f{width:25.833600pt;}
._3b{width:28.249394pt;}
._12{width:31.374720pt;}
._a{width:32.675200pt;}
._b{width:33.770880pt;}
._14{width:35.642880pt;}
._15{width:36.792533pt;}
._24{width:39.693867pt;}
._7{width:40.687147pt;}
._3c{width:41.857920pt;}
._34{width:42.910720pt;}
._33{width:44.056960pt;}
._41{width:46.587947pt;}
._39{width:49.077120pt;}
._38{width:50.107947pt;}
._21{width:51.742080pt;}
._22{width:53.028480pt;}
._8{width:54.016000pt;}
._9{width:55.185707pt;}
._2a{width:87.640231pt;}
._25{width:94.794063pt;}
._2b{width:101.431679pt;}
._29{width:107.669829pt;}
._28{width:109.165790pt;}
._30{width:114.275299pt;}
._2e{width:119.297426pt;}
._2f{width:120.426028pt;}
._31{width:127.719451pt;}
._1c{width:131.716053pt;}
._1f{width:139.374966pt;}
._1a{width:141.990763pt;}
._20{width:155.272107pt;}
._32{width:163.680000pt;}
._1d{width:170.080000pt;}
._3e{width:177.665604pt;}
._3f{width:182.713928pt;}
._2{width:567.859627pt;}
.fs1a{font-size:37.919367pt;}
.fsa{font-size:39.367396pt;}
.fs17{font-size:39.880727pt;}
.fs13{font-size:41.188562pt;}
.fs4{font-size:41.410094pt;}
.fs11{font-size:41.589392pt;}
.fsd{font-size:41.800079pt;}
.fs6{font-size:42.537471pt;}
.fs3{font-size:48.000000pt;}
.fs1e{font-size:50.947105pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs19{font-size:65.545433pt;}
.fsf{font-size:65.551954pt;}
.fs9{font-size:67.938164pt;}
.fs1b{font-size:68.757965pt;}
.fs18{font-size:68.935737pt;}
.fs14{font-size:71.196392pt;}
.fs1c{font-size:71.336854pt;}
.fs5{font-size:71.712506pt;}
.fs10{font-size:71.889248pt;}
.fsc{font-size:72.280391pt;}
.fs7{font-size:73.704371pt;}
.fs2{font-size:74.880000pt;}
.fs15{font-size:75.323728pt;}
.fs12{font-size:75.542262pt;}
.fse{font-size:76.065112pt;}
.fs16{font-size:76.393461pt;}
.fs1d{font-size:78.000435pt;}
.fs8{font-size:80.012776pt;}
.fs1f{font-size:88.097362pt;}
.fsb{font-size:94.773492pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.509227pt;}
.y88{bottom:3.690739pt;}
.y9f{bottom:3.776511pt;}
.y79{bottom:3.811772pt;}
.y3e{bottom:4.095768pt;}
.y3b{bottom:4.713218pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y56{bottom:5.862634pt;}
.y5d{bottom:6.224912pt;}
.y5e{bottom:6.840201pt;}
.yaa{bottom:7.543026pt;}
.y92{bottom:7.733176pt;}
.y7d{bottom:8.399887pt;}
.y4e{bottom:8.821508pt;}
.y5b{bottom:9.554467pt;}
.y55{bottom:10.259539pt;}
.y5c{bottom:10.857362pt;}
.yab{bottom:13.233257pt;}
.y6d{bottom:13.435282pt;}
.y94{bottom:16.278598pt;}
.y8a{bottom:17.120600pt;}
.y78{bottom:17.682047pt;}
.y6e{bottom:18.032884pt;}
.y66{bottom:20.432215pt;}
.y96{bottom:20.502816pt;}
.y8c{bottom:21.563314pt;}
.y9e{bottom:22.235339pt;}
.y7c{bottom:22.270454pt;}
.y2{bottom:23.200000pt;}
.y6c{bottom:24.910082pt;}
.y4{bottom:25.760000pt;}
.y93{bottom:26.774488pt;}
.y89{bottom:28.159385pt;}
.ya0{bottom:29.046255pt;}
.y7a{bottom:29.082834pt;}
.y6b{bottom:29.507685pt;}
.y65{bottom:30.713530pt;}
.y91{bottom:30.997359pt;}
.y8b{bottom:32.600682pt;}
.ya1{bottom:33.634662pt;}
.y7b{bottom:33.669778pt;}
.y74{bottom:75.520000pt;}
.ybb{bottom:82.240000pt;}
.y31{bottom:87.040000pt;}
.y4c{bottom:100.640000pt;}
.y73{bottom:107.680000pt;}
.y1d{bottom:112.000000pt;}
.yba{bottom:114.432000pt;}
.y30{bottom:132.672000pt;}
.y1c{bottom:144.186667pt;}
.y4b{bottom:146.106667pt;}
.yb9{bottom:146.586667pt;}
.y72{bottom:153.146667pt;}
.y9c{bottom:157.946667pt;}
.y1b{bottom:176.506667pt;}
.y2f{bottom:177.786667pt;}
.y4a{bottom:178.266667pt;}
.yb8{bottom:179.706667pt;}
.y9b{bottom:190.266667pt;}
.y71{bottom:198.746667pt;}
.y1a{bottom:208.666667pt;}
.y49{bottom:210.586667pt;}
.yb7{bottom:211.866667pt;}
.y2e{bottom:219.226667pt;}
.y9a{bottom:222.426667pt;}
.y48{bottom:242.746667pt;}
.y70{bottom:244.346667pt;}
.yb6{bottom:244.986667pt;}
.y19{bottom:254.106667pt;}
.y99{bottom:254.586667pt;}
.yb5{bottom:277.306667pt;}
.y6a{bottom:285.346667pt;}
.y98{bottom:286.746667pt;}
.y47{bottom:288.186667pt;}
.y18{bottom:299.706667pt;}
.y6f{bottom:301.306667pt;}
.yb4{bottom:310.426667pt;}
.y90{bottom:320.413333pt;}
.y46{bottom:320.506667pt;}
.y17{bottom:331.866667pt;}
.y97{bottom:340.386667pt;}
.yb3{bottom:342.626667pt;}
.y45{bottom:352.706667pt;}
.y69{bottom:360.386667pt;}
.yb2{bottom:374.786667pt;}
.y16{bottom:377.186667pt;}
.y44{bottom:384.866667pt;}
.y8f{bottom:387.906667pt;}
.y68{bottom:392.546667pt;}
.yc8{bottom:408.546667pt;}
.y8e{bottom:412.546667pt;}
.yb1{bottom:420.066667pt;}
.y15{bottom:422.946667pt;}
.y43{bottom:430.466667pt;}
.y64{bottom:433.546667pt;}
.y67{bottom:453.506667pt;}
.y87{bottom:453.546667pt;}
.yc7{bottom:454.146667pt;}
.yb0{bottom:465.826667pt;}
.y14{bottom:468.546667pt;}
.y8d{bottom:473.506667pt;}
.y42{bottom:475.906667pt;}
.yc6{bottom:487.266667pt;}
.yaf{bottom:498.146667pt;}
.y13{bottom:500.706667pt;}
.y63{bottom:512.546667pt;}
.yc5{bottom:519.426667pt;}
.y41{bottom:521.506667pt;}
.y2d{bottom:527.746667pt;}
.y86{bottom:530.946667pt;}
.yae{bottom:543.586667pt;}
.y62{bottom:544.706667pt;}
.y12{bottom:545.986667pt;}
.yc4{bottom:551.746667pt;}
.y2c{bottom:560.066667pt;}
.y85{bottom:562.973333pt;}
.y40{bottom:566.973333pt;}
.yad{bottom:575.773333pt;}
.yc3{bottom:583.933333pt;}
.y61{bottom:590.333333pt;}
.y11{bottom:591.773333pt;}
.y83{bottom:592.746667pt;}
.y2b{bottom:605.533333pt;}
.y3d{bottom:608.080000pt;}
.y84{bottom:611.453333pt;}
.y3f{bottom:616.093333pt;}
.ya9{bottom:616.880000pt;}
.yc2{bottom:617.053333pt;}
.y60{bottom:622.493333pt;}
.yac{bottom:626.173333pt;}
.y10{bottom:637.373333pt;}
.y2a{bottom:637.693333pt;}
.yc1{bottom:649.213333pt;}
.y3a{bottom:659.280000pt;}
.y5a{bottom:663.413333pt;}
.y3c{bottom:667.293333pt;}
.yf{bottom:669.533333pt;}
.y5f{bottom:672.733333pt;}
.ya8{bottom:680.573333pt;}
.yc0{bottom:681.373333pt;}
.y29{bottom:683.293333pt;}
.y82{bottom:694.173333pt;}
.ya7{bottom:712.733333pt;}
.ybf{bottom:714.493333pt;}
.ye{bottom:714.813333pt;}
.y39{bottom:715.133333pt;}
.y28{bottom:715.453333pt;}
.y59{bottom:722.493333pt;}
.y81{bottom:726.333333pt;}
.ya6{bottom:745.053333pt;}
.ybe{bottom:746.813333pt;}
.y38{bottom:747.293333pt;}
.y27{bottom:747.613333pt;}
.y58{bottom:754.653333pt;}
.yd{bottom:760.573333pt;}
.y80{bottom:771.773333pt;}
.ya5{bottom:777.213333pt;}
.ybd{bottom:778.973333pt;}
.y37{bottom:779.453333pt;}
.y26{bottom:779.933333pt;}
.y54{bottom:795.746667pt;}
.y57{bottom:805.093333pt;}
.yc{bottom:806.213333pt;}
.y36{bottom:811.653333pt;}
.y25{bottom:812.133333pt;}
.y7f{bottom:817.413333pt;}
.ya4{bottom:822.853333pt;}
.yb{bottom:838.373333pt;}
.y24{bottom:844.293333pt;}
.y53{bottom:851.493333pt;}
.ya3{bottom:855.013333pt;}
.y35{bottom:857.253333pt;}
.y77{bottom:864.080000pt;}
.y23{bottom:876.453333pt;}
.ya{bottom:883.653333pt;}
.y7e{bottom:884.133333pt;}
.y9d{bottom:895.946667pt;}
.y52{bottom:897.093333pt;}
.y34{bottom:902.853333pt;}
.y22{bottom:908.773333pt;}
.ybc{bottom:909.573333pt;}
.ya2{bottom:915.973333pt;}
.y9{bottom:929.093333pt;}
.y21{bottom:941.893333pt;}
.y51{bottom:942.533333pt;}
.y76{bottom:942.853333pt;}
.y33{bottom:948.293333pt;}
.y8{bottom:961.253333pt;}
.y20{bottom:974.053333pt;}
.y75{bottom:975.013333pt;}
.y50{bottom:988.133333pt;}
.y7{bottom:993.573333pt;}
.y32{bottom:993.893333pt;}
.y1f{bottom:1007.173333pt;}
.y4d{bottom:1029.013333pt;}
.y4f{bottom:1037.120000pt;}
.y6{bottom:1039.040000pt;}
.y1e{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h36{height:26.328779pt;}
.h10{height:27.199287pt;}
.h8{height:27.199444pt;}
.ha{height:27.200146pt;}
.h31{height:27.690622pt;}
.h1a{height:29.023297pt;}
.h14{height:30.399894pt;}
.h40{height:35.199811pt;}
.h37{height:37.197269pt;}
.h12{height:38.617724pt;}
.h30{height:39.121279pt;}
.h2f{height:39.140752pt;}
.h28{height:40.404209pt;}
.h27{height:40.424321pt;}
.h22{height:40.797407pt;}
.h17{height:41.004082pt;}
.hc{height:41.727431pt;}
.h3a{height:45.510550pt;}
.h1f{height:45.515078pt;}
.h34{height:46.399054pt;}
.h20{height:46.400033pt;}
.h39{height:47.741126pt;}
.h33{height:47.864560pt;}
.h2e{height:48.799022pt;}
.h2b{height:49.434214pt;}
.h3f{height:49.531741pt;}
.h25{height:49.915288pt;}
.h41{height:50.001797pt;}
.h1b{height:50.186873pt;}
.h26{height:50.399320pt;}
.h1c{height:50.399552pt;}
.hf{height:51.175594pt;}
.h2a{height:52.299972pt;}
.h24{height:52.451707pt;}
.h19{height:52.814741pt;}
.h2d{height:53.042726pt;}
.h3e{height:54.158505pt;}
.he{height:55.555746pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h38{height:64.297253pt;}
.h1e{height:64.303651pt;}
.h35{height:64.329258pt;}
.h1d{height:64.335658pt;}
.h15{height:65.804641pt;}
.h7{height:65.995312pt;}
.h13{height:66.644420pt;}
.h11{height:66.677593pt;}
.h32{height:67.622996pt;}
.h29{height:69.840602pt;}
.h3d{height:69.978388pt;}
.h3c{height:70.013221pt;}
.h23{height:70.520263pt;}
.h21{height:70.555365pt;}
.h18{height:70.903958pt;}
.h16{height:70.939251pt;}
.hd{height:72.300821pt;}
.h6{height:73.490625pt;}
.h2c{height:74.201846pt;}
.h5{height:75.465000pt;}
.h43{height:76.964840pt;}
.h3b{height:81.645938pt;}
.h42{height:86.419726pt;}
.h9{height:88.802830pt;}
.hb{height:91.239772pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w8{width:60.800370pt;}
.wd{width:69.599073pt;}
.wc{width:79.203208pt;}
.wa{width:82.398582pt;}
.w3{width:85.601925pt;}
.w4{width:85.602798pt;}
.wb{width:92.799084pt;}
.w9{width:95.201550pt;}
.we{width:97.604501pt;}
.wf{width:116.801920pt;}
.w5{width:133.603133pt;}
.w6{width:141.600671pt;}
.w7{width:142.395861pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:0.951087pt;}
.x1e{left:2.669450pt;}
.x51{left:3.896609pt;}
.x1d{left:8.897984pt;}
.x28{left:11.099074pt;}
.x4c{left:12.079780pt;}
.x24{left:13.059565pt;}
.x45{left:13.971692pt;}
.x38{left:17.271815pt;}
.x4{left:18.266667pt;}
.x3e{left:19.451896pt;}
.x2b{left:21.698192pt;}
.x4e{left:22.611406pt;}
.x48{left:24.399947pt;}
.x50{left:25.633800pt;}
.x36{left:27.961485pt;}
.x3b{left:32.599774pt;}
.x18{left:34.761017pt;}
.x2e{left:36.157791pt;}
.x20{left:37.995196pt;}
.x4a{left:40.513543pt;}
.x32{left:42.877329pt;}
.x2f{left:44.587026pt;}
.x3a{left:47.157468pt;}
.x4d{left:49.062460pt;}
.x35{left:50.697272pt;}
.x41{left:53.109771pt;}
.x4b{left:54.637507pt;}
.x40{left:57.694824pt;}
.x46{left:58.901335pt;}
.x34{left:62.083053pt;}
.x26{left:65.808799pt;}
.x1c{left:68.558389pt;}
.x44{left:69.592670pt;}
.x39{left:71.690694pt;}
.x33{left:76.928782pt;}
.x3f{left:78.425753pt;}
.x2a{left:82.761249pt;}
.x1{left:85.152000pt;}
.x7{left:93.152000pt;}
.x2{left:99.232000pt;}
.x27{left:106.993160pt;}
.x1f{left:108.422623pt;}
.x29{left:114.201788pt;}
.x14{left:122.912000pt;}
.x1a{left:133.152000pt;}
.x23{left:134.470163pt;}
.x5{left:141.946667pt;}
.x6{left:169.146667pt;}
.xa{left:182.906667pt;}
.x12{left:193.946667pt;}
.x16{left:195.066667pt;}
.x8{left:218.106667pt;}
.x11{left:234.906667pt;}
.xb{left:275.106667pt;}
.xe{left:281.506667pt;}
.x10{left:293.506667pt;}
.x13{left:301.186667pt;}
.x9{left:302.786667pt;}
.xf{left:303.746667pt;}
.x43{left:316.413333pt;}
.xc{left:327.586667pt;}
.xd{left:345.186667pt;}
.x52{left:351.280000pt;}
.x22{left:354.480000pt;}
.x25{left:358.946667pt;}
.x1b{left:363.280000pt;}
.x3d{left:370.613333pt;}
.x31{left:372.880000pt;}
.x17{left:380.546667pt;}
.x49{left:387.413333pt;}
.x3{left:390.146667pt;}
.x37{left:394.946667pt;}
.x2d{left:407.280000pt;}
.x4f{left:457.053333pt;}
.x42{left:463.453333pt;}
.x19{left:466.173333pt;}
.x30{left:468.093333pt;}
.x3c{left:477.373333pt;}
.x21{left:496.893333pt;}
.x2c{left:501.373333pt;}
.x15{left:594.693333pt;}
}




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