
    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_d05e45887f4c2594a4209267.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_64cf0d232d171625ec8f09df.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_305e33136823d5296a79efc4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_7aba8009bddf53e64db9bbf5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_f415dc682ae6b0450577a149.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_eacfea3da72652451a4e6123.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0e37a1d74be6e158690d7006.woff')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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_70d1ababbc6365e822917fdb.woff')format("woff");}.ffc{font-family:ffc;line-height:1.041992;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_b8a61c38182bd186fd527fd8.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_318135734b0b45879c0c4380.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892578;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_0dd5c31185df1a2ecb37dd3b.woff')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_3c368bebad9b531275ac55cc.woff')format("woff");}.ff11{font-family:ff11;line-height:1.435059;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_66f575a515b2258239413fa0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-12.143025px;}
.v8{vertical-align:-9.360000px;}
.v1{vertical-align:-7.920000px;}
.v2{vertical-align:-6.480000px;}
.v4{vertical-align:-4.553634px;}
.v6{vertical-align:-3.035756px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.035756px;}
.v5{vertical-align:4.553634px;}
.v3{vertical-align:6.480000px;}
.v9{vertical-align:9.360000px;}
.ls44{letter-spacing:-0.810000px;}
.ls43{letter-spacing:-0.270000px;}
.ls31{letter-spacing:-0.190200px;}
.ls34{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.151788px;}
.ls33{letter-spacing:-0.144000px;}
.ls42{letter-spacing:-0.114000px;}
.ls37{letter-spacing:-0.094867px;}
.ls36{letter-spacing:-0.090000px;}
.ls30{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.072000px;}
.ls32{letter-spacing:0.078000px;}
.ls2b{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.094867px;}
.ls41{letter-spacing:0.118268px;}
.ls39{letter-spacing:0.118394px;}
.ls3f{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.189735px;}
.ls2d{letter-spacing:0.246000px;}
.ls2e{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.284602px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.379470px;}
.ls40{letter-spacing:0.443347px;}
.ls5d{letter-spacing:0.450000px;}
.ls2a{letter-spacing:0.474337px;}
.lsb{letter-spacing:0.531257px;}
.ls35{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.569204px;}
.ls6{letter-spacing:0.630000px;}
.ls9{letter-spacing:0.664072px;}
.ls60{letter-spacing:0.696000px;}
.ls4{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.756000px;}
.ls8{letter-spacing:0.758939px;}
.ls3c{letter-spacing:0.810000px;}
.lsd{letter-spacing:0.828508px;}
.ls1f{letter-spacing:0.853806px;}
.ls2f{letter-spacing:0.990000px;}
.ls14{letter-spacing:1.043541px;}
.ls1a{letter-spacing:1.423011px;}
.ls62{letter-spacing:1.440000px;}
.ls4b{letter-spacing:1.620000px;}
.ls66{letter-spacing:1.707613px;}
.ls48{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.181950px;}
.ls1c{letter-spacing:2.308440px;}
.ls19{letter-spacing:2.371685px;}
.ls64{letter-spacing:2.790000px;}
.ls1d{letter-spacing:2.940889px;}
.lsc{letter-spacing:3.035756px;}
.ls7{letter-spacing:3.600000px;}
.ls16{letter-spacing:3.794695px;}
.ls57{letter-spacing:4.230000px;}
.ls5c{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.217706px;}
.ls20{letter-spacing:5.407441px;}
.ls29{letter-spacing:5.976645px;}
.ls49{letter-spacing:7.110000px;}
.ls17{letter-spacing:7.494523px;}
.ls4a{letter-spacing:7.920000px;}
.ls5a{letter-spacing:8.100000px;}
.ls13{letter-spacing:8.228164px;}
.ls15{letter-spacing:8.253462px;}
.ls46{letter-spacing:9.270000px;}
.ls3a{letter-spacing:11.520000px;}
.ls5e{letter-spacing:12.126000px;}
.ls24{letter-spacing:12.143025px;}
.ls55{letter-spacing:12.240000px;}
.ls5b{letter-spacing:12.960000px;}
.ls51{letter-spacing:14.310000px;}
.ls11{letter-spacing:14.324975px;}
.ls58{letter-spacing:15.030000px;}
.lse{letter-spacing:15.083914px;}
.ls10{letter-spacing:15.273648px;}
.ls21{letter-spacing:16.601792px;}
.ls22{letter-spacing:17.360731px;}
.ls5f{letter-spacing:21.510000px;}
.ls25{letter-spacing:21.914365px;}
.ls50{letter-spacing:22.230000px;}
.ls26{letter-spacing:22.673304px;}
.ls4d{letter-spacing:22.950000px;}
.ls28{letter-spacing:24.191182px;}
.ls27{letter-spacing:24.950121px;}
.ls2c{letter-spacing:28.710000px;}
.ls3d{letter-spacing:30.420000px;}
.ls54{letter-spacing:33.030000px;}
.ls65{letter-spacing:35.190000px;}
.ls4f{letter-spacing:40.230000px;}
.ls56{letter-spacing:41.940000px;}
.ls45{letter-spacing:48.870000px;}
.ls47{letter-spacing:60.636000px;}
.ls4c{letter-spacing:60.660000px;}
.ls52{letter-spacing:61.356000px;}
.ls4e{letter-spacing:61.380000px;}
.ls59{letter-spacing:78.390000px;}
.ls53{letter-spacing:111.510000px;}
.ls63{letter-spacing:164.046000px;}
.ls61{letter-spacing:164.070000px;}
.ls3b{letter-spacing:181.326000px;}
.ls3e{letter-spacing:181.350000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-90.000000px;}
.ws12{word-spacing:-24.062880px;}
.ws6{word-spacing:-20.844000px;}
.ws0{word-spacing:-19.010880px;}
.wsd{word-spacing:-18.594007px;}
.ws2{word-spacing:-18.532800px;}
.wsc{word-spacing:-18.404272px;}
.ws1{word-spacing:-18.342600px;}
.ws9{word-spacing:-18.309405px;}
.ws7{word-spacing:-17.910000px;}
.ws17{word-spacing:-17.820000px;}
.wse{word-spacing:-17.640000px;}
.ws16{word-spacing:-17.460000px;}
.ws8{word-spacing:-17.370000px;}
.ws18{word-spacing:-17.280000px;}
.ws15{word-spacing:-17.190000px;}
.ws13{word-spacing:-17.100000px;}
.ws10{word-spacing:-16.262672px;}
.ws4{word-spacing:-15.912000px;}
.ws11{word-spacing:-15.819326px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsb{word-spacing:-14.647524px;}
.wsa{word-spacing:-14.495736px;}
.wsf{word-spacing:0.000000px;}
._4{margin-left:-14.544809px;}
._c{margin-left:-12.561328px;}
._1e{margin-left:-11.430955px;}
._33{margin-left:-7.740000px;}
._4a{margin-left:-5.760000px;}
._2{margin-left:-4.200000px;}
._3{margin-left:-3.187544px;}
._34{margin-left:-2.097363px;}
._0{margin-left:-1.095120px;}
._1{width:1.260000px;}
._8{width:2.454886px;}
._9{width:3.458071px;}
._a{width:4.768224px;}
._10{width:6.056992px;}
._6{width:7.898847px;}
._11{width:9.000000px;}
._26{width:10.506000px;}
._17{width:12.201328px;}
._5{width:13.566036px;}
._7{width:14.723858px;}
._b{width:16.666116px;}
._15{width:18.720000px;}
._16{width:19.890000px;}
._19{width:21.573988px;}
._d{width:22.648006px;}
._e{width:24.261195px;}
._f{width:25.493045px;}
._1a{width:26.503911px;}
._23{width:28.530000px;}
._14{width:29.610000px;}
._3d{width:30.960000px;}
._22{width:32.310000px;}
._24{width:33.456000px;}
._21{width:34.470000px;}
._28{width:35.640000px;}
._39{width:36.900000px;}
._1f{width:38.250000px;}
._20{width:39.342658px;}
._18{width:40.590000px;}
._3c{width:42.030000px;}
._38{width:43.587363px;}
._36{width:44.910000px;}
._35{width:46.260000px;}
._12{width:47.790000px;}
._13{width:48.846000px;}
._27{width:50.268000px;}
._47{width:51.390000px;}
._45{width:52.608000px;}
._29{width:53.616000px;}
._2a{width:55.053120px;}
._4d{width:56.573760px;}
._2e{width:57.960000px;}
._2f{width:59.220000px;}
._25{width:60.480000px;}
._49{width:61.563363px;}
._2b{width:63.450000px;}
._46{width:64.620000px;}
._2c{width:65.970000px;}
._2d{width:67.050000px;}
._30{width:68.570234px;}
._4f{width:72.383812px;}
._42{width:73.710000px;}
._3b{width:77.760000px;}
._3a{width:78.840000px;}
._4e{width:81.450000px;}
._32{width:83.070000px;}
._40{width:84.960000px;}
._4c{width:96.390000px;}
._31{width:102.510000px;}
._50{width:111.510000px;}
._37{width:112.590000px;}
._48{width:114.045120px;}
._3f{width:115.650000px;}
._3e{width:117.117363px;}
._44{width:127.800000px;}
._43{width:128.880000px;}
._4b{width:134.346000px;}
._1d{width:153.608160px;}
._41{width:176.400000px;}
._1b{width:189.617520px;}
._1c{width:197.647200px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs7{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fse{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs1{font-size:77.760000px;}
.fsd{font-size:81.965417px;}
.fs0{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs8{font-size:94.867381px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y17{bottom:1.260000px;}
.y11{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y9f{bottom:7.410000px;}
.y6{bottom:8.460000px;}
.yf{bottom:13.680000px;}
.y9a{bottom:20.340000px;}
.y5{bottom:33.120000px;}
.y9b{bottom:33.300000px;}
.ye{bottom:49.500000px;}
.y1{bottom:51.480000px;}
.y15{bottom:59.985000px;}
.y35{bottom:78.300000px;}
.y14{bottom:89.865000px;}
.y13{bottom:119.745000px;}
.y55{bottom:121.140000px;}
.ycf{bottom:124.020000px;}
.y30{bottom:128.700000px;}
.yb0{bottom:138.420000px;}
.y54{bottom:154.800000px;}
.y82{bottom:158.040000px;}
.y2f{bottom:162.540000px;}
.yaf{bottom:172.080000px;}
.y64{bottom:176.400000px;}
.y53{bottom:188.640000px;}
.y81{bottom:191.880000px;}
.y2e{bottom:196.200000px;}
.yce{bottom:201.600000px;}
.yae{bottom:205.950000px;}
.y63{bottom:210.090000px;}
.y52{bottom:222.330000px;}
.y80{bottom:225.570000px;}
.ycd{bottom:227.550000px;}
.y2d{bottom:229.890000px;}
.yad{bottom:239.610000px;}
.y62{bottom:243.930000px;}
.ycc{bottom:253.470000px;}
.y51{bottom:255.990000px;}
.y7f{bottom:259.230000px;}
.y2c{bottom:263.730000px;}
.yac{bottom:273.270000px;}
.y61{bottom:277.590000px;}
.ycb{bottom:279.390000px;}
.y50{bottom:289.830000px;}
.y87{bottom:292.890000px;}
.y2b{bottom:297.390000px;}
.y7e{bottom:299.010000px;}
.yca{bottom:305.310000px;}
.yab{bottom:307.110000px;}
.y60{bottom:311.250000px;}
.y4f{bottom:323.490000px;}
.y2a{bottom:331.050000px;}
.yc9{bottom:331.230000px;}
.y7d{bottom:332.850000px;}
.yaa{bottom:340.770000px;}
.y5f{bottom:345.090000px;}
.y4e{bottom:357.150000px;}
.y29{bottom:361.110000px;}
.y7c{bottom:366.510000px;}
.ya9{bottom:374.430000px;}
.y5e{bottom:378.750000px;}
.yc8{bottom:383.070000px;}
.y4d{bottom:390.990000px;}
.y28{bottom:392.970000px;}
.y7b{bottom:400.170000px;}
.ya8{bottom:408.270000px;}
.yc7{bottom:409.170000px;}
.y98{bottom:412.410000px;}
.y5d{bottom:418.530000px;}
.y27{bottom:423.030000px;}
.y4c{bottom:424.650000px;}
.y86{bottom:434.010000px;}
.yc6{bottom:435.090000px;}
.y7a{bottom:440.130000px;}
.ya7{bottom:441.975000px;}
.y26{bottom:445.215000px;}
.y97{bottom:446.295000px;}
.y5c{bottom:452.235000px;}
.y4b{bottom:458.355000px;}
.yc5{bottom:461.055000px;}
.y25{bottom:464.835000px;}
.y85{bottom:467.715000px;}
.y79{bottom:473.835000px;}
.ya6{bottom:475.635000px;}
.y96{bottom:479.955000px;}
.y5b{bottom:486.075000px;}
.yc4{bottom:486.975000px;}
.y4a{bottom:492.195000px;}
.y24{bottom:494.895000px;}
.y92{bottom:501.375000px;}
.y78{bottom:507.495000px;}
.ya5{bottom:509.475000px;}
.yc3{bottom:512.895000px;}
.y95{bottom:513.615000px;}
.y5a{bottom:519.735000px;}
.y23{bottom:524.775000px;}
.y49{bottom:525.855000px;}
.y91{bottom:535.215000px;}
.yc2{bottom:538.815000px;}
.y77{bottom:541.335000px;}
.ya4{bottom:543.135000px;}
.y94{bottom:547.455000px;}
.y59{bottom:553.395000px;}
.y22{bottom:554.655000px;}
.y48{bottom:559.515000px;}
.yc1{bottom:564.735000px;}
.y90{bottom:568.875000px;}
.y76{bottom:574.995000px;}
.ya3{bottom:576.795000px;}
.y93{bottom:581.115000px;}
.y21{bottom:584.355000px;}
.y58{bottom:587.235000px;}
.yc0{bottom:590.655000px;}
.y47{bottom:593.355000px;}
.y8f{bottom:602.535000px;}
.y84{bottom:608.655000px;}
.ya2{bottom:610.635000px;}
.y20{bottom:614.235000px;}
.y75{bottom:614.775000px;}
.ybf{bottom:616.575000px;}
.y57{bottom:620.895000px;}
.y46{bottom:627.015000px;}
.ya1{bottom:632.235000px;}
.y8e{bottom:636.375000px;}
.ya0{bottom:641.235000px;}
.ybe{bottom:642.495000px;}
.y1f{bottom:644.115000px;}
.y74{bottom:648.615000px;}
.y56{bottom:654.555000px;}
.y45{bottom:660.675000px;}
.ybd{bottom:668.595000px;}
.y9e{bottom:672.375000px;}
.y1e{bottom:673.815000px;}
.y8d{bottom:676.185000px;}
.y73{bottom:682.305000px;}
.y44{bottom:694.545000px;}
.y9d{bottom:703.545000px;}
.y1d{bottom:703.725000px;}
.y8c{bottom:709.845000px;}
.y72{bottom:715.965000px;}
.ybc{bottom:720.465000px;}
.y43{bottom:728.205000px;}
.y1c{bottom:733.605000px;}
.y9c{bottom:734.865000px;}
.y8b{bottom:743.685000px;}
.ybb{bottom:746.385000px;}
.y71{bottom:749.805000px;}
.y42{bottom:761.865000px;}
.y1b{bottom:763.485000px;}
.yba{bottom:772.305000px;}
.y70{bottom:783.465000px;}
.y99{bottom:791.925000px;}
.y1a{bottom:793.185000px;}
.y41{bottom:795.705000px;}
.yb9{bottom:798.225000px;}
.y6f{bottom:817.125000px;}
.y19{bottom:823.065000px;}
.yb8{bottom:824.145000px;}
.y40{bottom:829.365000px;}
.y18{bottom:845.925000px;}
.yb7{bottom:850.065000px;}
.y8a{bottom:850.785000px;}
.y6e{bottom:850.965000px;}
.y16{bottom:853.305000px;}
.y12{bottom:860.505000px;}
.y3f{bottom:863.025000px;}
.y32{bottom:863.589156px;}
.yb6{bottom:875.985000px;}
.y6d{bottom:884.625000px;}
.y31{bottom:890.391156px;}
.y89{bottom:890.745000px;}
.y3e{bottom:896.865000px;}
.yb5{bottom:901.905000px;}
.y6c{bottom:918.330000px;}
.y88{bottom:924.450000px;}
.yb4{bottom:928.050000px;}
.y3d{bottom:930.570000px;}
.y83{bottom:951.990000px;}
.yb3{bottom:953.970000px;}
.y6b{bottom:958.110000px;}
.y3c{bottom:964.230000px;}
.yb2{bottom:979.890000px;}
.y6a{bottom:991.950000px;}
.y3b{bottom:998.070000px;}
.y10{bottom:998.610000px;}
.yd{bottom:1004.910000px;}
.yb1{bottom:1005.810000px;}
.y69{bottom:1025.610000px;}
.y3a{bottom:1031.730000px;}
.y68{bottom:1059.270000px;}
.y39{bottom:1065.390000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y67{bottom:1093.110000px;}
.y38{bottom:1099.230000px;}
.y2{bottom:1106.250000px;}
.y66{bottom:1126.770000px;}
.y7{bottom:1128.570000px;}
.y37{bottom:1132.890000px;}
.y4{bottom:1156.860000px;}
.y65{bottom:1160.460000px;}
.y36{bottom:1166.580000px;}
.y34{bottom:1187.280000px;}
.y33{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h17{height:7.200000px;}
.hd{height:13.324219px;}
.h27{height:16.242188px;}
.h18{height:17.587969px;}
.h11{height:19.008000px;}
.h1a{height:20.671875px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h19{height:24.609375px;}
.h26{height:25.905000px;}
.h24{height:25.920000px;}
.h25{height:25.950000px;}
.h7{height:28.290000px;}
.h1e{height:30.480469px;}
.h23{height:51.840000px;}
.h1c{height:51.880599px;}
.h5{height:52.920000px;}
.h16{height:55.586356px;}
.h9{height:56.084062px;}
.h15{height:58.621992px;}
.h1f{height:60.033265px;}
.hb{height:60.960938px;}
.h1b{height:61.523438px;}
.h2{height:62.275078px;}
.h28{height:64.850749px;}
.h13{height:65.917969px;}
.h14{height:69.482945px;}
.h29{height:71.044468px;}
.h6{height:71.324297px;}
.he{height:71.625000px;}
.h1d{height:72.562500px;}
.h20{height:76.279219px;}
.hf{height:79.101562px;}
.h4{height:79.925027px;}
.h21{height:92.505818px;}
.h22{height:93.691406px;}
.h3{height:103.530000px;}
.h12{height:138.082500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:77.925000px;}
.wb{width:79.761000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wc{width:110.325000px;}
.w8{width:143.269500px;}
.w9{width:247.560000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:1.260000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x35{left:15.465000px;}
.x38{left:16.725000px;}
.x10{left:20.685000px;}
.x34{left:24.645000px;}
.x3a{left:25.725000px;}
.x30{left:30.229500px;}
.x39{left:32.040000px;}
.xb{left:34.185000px;}
.x13{left:44.623500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x32{left:59.790000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x2e{left:113.076000px;}
.x27{left:118.656000px;}
.x2f{left:140.076000px;}
.x1d{left:145.476000px;}
.x28{left:150.510000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x1c{left:177.870000px;}
.x1e{left:189.570000px;}
.x18{left:198.388500px;}
.x17{left:200.728500px;}
.x6{left:209.010000px;}
.x25{left:236.370000px;}
.x31{left:253.125000px;}
.x15{left:261.388500px;}
.x14{left:264.808500px;}
.x16{left:285.868500px;}
.x24{left:322.815010px;}
.x12{left:335.578500px;}
.x19{left:353.938500px;}
.x1f{left:432.795000px;}
.xa{left:445.620000px;}
.x21{left:473.505000px;}
.x2b{left:478.545000px;}
.x29{left:484.125000px;}
.x20{left:486.645000px;}
.x26{left:500.505000px;}
.x33{left:503.760000px;}
.x2c{left:505.545000px;}
.x2a{left:515.985000px;}
.x2d{left:527.505000px;}
.x44{left:548.385000px;}
.x22{left:582.663110px;}
.x23{left:585.135210px;}
.x41{left:596.085000px;}
.x46{left:614.985000px;}
.x40{left:624.210000px;}
.x47{left:634.290000px;}
.x43{left:642.750000px;}
.x3b{left:651.030000px;}
.x3d{left:656.970000px;}
.x36{left:667.410000px;}
.x7{left:722.490000px;}
.x3e{left:723.930000px;}
.x3f{left:731.130000px;}
.x42{left:736.350000px;}
.x45{left:738.150000px;}
.x1{left:748.950000px;}
.x3c{left:780.630000px;}
@media print{
.va{vertical-align:-10.793800pt;}
.v8{vertical-align:-8.320000pt;}
.v1{vertical-align:-7.040000pt;}
.v2{vertical-align:-5.760000pt;}
.v4{vertical-align:-4.047675pt;}
.v6{vertical-align:-2.698450pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.698450pt;}
.v5{vertical-align:4.047675pt;}
.v3{vertical-align:5.760000pt;}
.v9{vertical-align:8.320000pt;}
.ls44{letter-spacing:-0.720000pt;}
.ls43{letter-spacing:-0.240000pt;}
.ls31{letter-spacing:-0.169067pt;}
.ls34{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.134922pt;}
.ls33{letter-spacing:-0.128000pt;}
.ls42{letter-spacing:-0.101333pt;}
.ls37{letter-spacing:-0.084327pt;}
.ls36{letter-spacing:-0.080000pt;}
.ls30{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls32{letter-spacing:0.069333pt;}
.ls2b{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.084327pt;}
.ls41{letter-spacing:0.105127pt;}
.ls39{letter-spacing:0.105240pt;}
.ls3f{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.168653pt;}
.ls2d{letter-spacing:0.218667pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.252980pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.337306pt;}
.ls40{letter-spacing:0.394086pt;}
.ls5d{letter-spacing:0.400000pt;}
.ls2a{letter-spacing:0.421633pt;}
.lsb{letter-spacing:0.472229pt;}
.ls35{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.505959pt;}
.ls6{letter-spacing:0.560000pt;}
.ls9{letter-spacing:0.590286pt;}
.ls60{letter-spacing:0.618667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.672000pt;}
.ls8{letter-spacing:0.674612pt;}
.ls3c{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.736452pt;}
.ls1f{letter-spacing:0.758939pt;}
.ls2f{letter-spacing:0.880000pt;}
.ls14{letter-spacing:0.927592pt;}
.ls1a{letter-spacing:1.264898pt;}
.ls62{letter-spacing:1.280000pt;}
.ls4b{letter-spacing:1.440000pt;}
.ls66{letter-spacing:1.517878pt;}
.ls48{letter-spacing:1.920000pt;}
.ls18{letter-spacing:1.939511pt;}
.ls1c{letter-spacing:2.051946pt;}
.ls19{letter-spacing:2.108164pt;}
.ls64{letter-spacing:2.480000pt;}
.ls1d{letter-spacing:2.614123pt;}
.lsc{letter-spacing:2.698450pt;}
.ls7{letter-spacing:3.200000pt;}
.ls16{letter-spacing:3.373062pt;}
.ls57{letter-spacing:3.760000pt;}
.ls5c{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.637961pt;}
.ls20{letter-spacing:4.806614pt;}
.ls29{letter-spacing:5.312573pt;}
.ls49{letter-spacing:6.320000pt;}
.ls17{letter-spacing:6.661798pt;}
.ls4a{letter-spacing:7.040000pt;}
.ls5a{letter-spacing:7.200000pt;}
.ls13{letter-spacing:7.313924pt;}
.ls15{letter-spacing:7.336411pt;}
.ls46{letter-spacing:8.240000pt;}
.ls3a{letter-spacing:10.240000pt;}
.ls5e{letter-spacing:10.778667pt;}
.ls24{letter-spacing:10.793800pt;}
.ls55{letter-spacing:10.880000pt;}
.ls5b{letter-spacing:11.520000pt;}
.ls51{letter-spacing:12.720000pt;}
.ls11{letter-spacing:12.733311pt;}
.ls58{letter-spacing:13.360000pt;}
.lse{letter-spacing:13.407923pt;}
.ls10{letter-spacing:13.576576pt;}
.ls21{letter-spacing:14.757148pt;}
.ls22{letter-spacing:15.431761pt;}
.ls5f{letter-spacing:19.120000pt;}
.ls25{letter-spacing:19.479436pt;}
.ls50{letter-spacing:19.760000pt;}
.ls26{letter-spacing:20.154048pt;}
.ls4d{letter-spacing:20.400000pt;}
.ls28{letter-spacing:21.503273pt;}
.ls27{letter-spacing:22.177886pt;}
.ls2c{letter-spacing:25.520000pt;}
.ls3d{letter-spacing:27.040000pt;}
.ls54{letter-spacing:29.360000pt;}
.ls65{letter-spacing:31.280000pt;}
.ls4f{letter-spacing:35.760000pt;}
.ls56{letter-spacing:37.280000pt;}
.ls45{letter-spacing:43.440000pt;}
.ls47{letter-spacing:53.898667pt;}
.ls4c{letter-spacing:53.920000pt;}
.ls52{letter-spacing:54.538667pt;}
.ls4e{letter-spacing:54.560000pt;}
.ls59{letter-spacing:69.680000pt;}
.ls53{letter-spacing:99.120000pt;}
.ls63{letter-spacing:145.818667pt;}
.ls61{letter-spacing:145.840000pt;}
.ls3b{letter-spacing:161.178667pt;}
.ls3e{letter-spacing:161.200000pt;}
.ws14{word-spacing:-80.000000pt;}
.ws12{word-spacing:-21.389227pt;}
.ws6{word-spacing:-18.528000pt;}
.ws0{word-spacing:-16.898560pt;}
.wsd{word-spacing:-16.528006pt;}
.ws2{word-spacing:-16.473600pt;}
.wsc{word-spacing:-16.359353pt;}
.ws1{word-spacing:-16.304533pt;}
.ws9{word-spacing:-16.275026pt;}
.ws7{word-spacing:-15.920000pt;}
.ws17{word-spacing:-15.840000pt;}
.wse{word-spacing:-15.680000pt;}
.ws16{word-spacing:-15.520000pt;}
.ws8{word-spacing:-15.440000pt;}
.ws18{word-spacing:-15.360000pt;}
.ws15{word-spacing:-15.280000pt;}
.ws13{word-spacing:-15.200000pt;}
.ws10{word-spacing:-14.455709pt;}
.ws4{word-spacing:-14.144000pt;}
.ws11{word-spacing:-14.061623pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsb{word-spacing:-13.020021pt;}
.wsa{word-spacing:-12.885099pt;}
.wsf{word-spacing:0.000000pt;}
._4{margin-left:-12.928719pt;}
._c{margin-left:-11.165625pt;}
._1e{margin-left:-10.160849pt;}
._33{margin-left:-6.880000pt;}
._4a{margin-left:-5.120000pt;}
._2{margin-left:-3.733333pt;}
._3{margin-left:-2.833372pt;}
._34{margin-left:-1.864323pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.120000pt;}
._8{width:2.182121pt;}
._9{width:3.073841pt;}
._a{width:4.238421pt;}
._10{width:5.383993pt;}
._6{width:7.021198pt;}
._11{width:8.000000pt;}
._26{width:9.338667pt;}
._17{width:10.845625pt;}
._5{width:12.058698pt;}
._7{width:13.087874pt;}
._b{width:14.814325pt;}
._15{width:16.640000pt;}
._16{width:17.680000pt;}
._19{width:19.176878pt;}
._d{width:20.131561pt;}
._e{width:21.565507pt;}
._f{width:22.660484pt;}
._1a{width:23.559032pt;}
._23{width:25.360000pt;}
._14{width:26.320000pt;}
._3d{width:27.520000pt;}
._22{width:28.720000pt;}
._24{width:29.738667pt;}
._21{width:30.640000pt;}
._28{width:31.680000pt;}
._39{width:32.800000pt;}
._1f{width:34.000000pt;}
._20{width:34.971252pt;}
._18{width:36.080000pt;}
._3c{width:37.360000pt;}
._38{width:38.744323pt;}
._36{width:39.920000pt;}
._35{width:41.120000pt;}
._12{width:42.480000pt;}
._13{width:43.418667pt;}
._27{width:44.682667pt;}
._47{width:45.680000pt;}
._45{width:46.762667pt;}
._29{width:47.658667pt;}
._2a{width:48.936107pt;}
._4d{width:50.287787pt;}
._2e{width:51.520000pt;}
._2f{width:52.640000pt;}
._25{width:53.760000pt;}
._49{width:54.722989pt;}
._2b{width:56.400000pt;}
._46{width:57.440000pt;}
._2c{width:58.640000pt;}
._2d{width:59.600000pt;}
._30{width:60.951319pt;}
._4f{width:64.341166pt;}
._42{width:65.520000pt;}
._3b{width:69.120000pt;}
._3a{width:70.080000pt;}
._4e{width:72.400000pt;}
._32{width:73.840000pt;}
._40{width:75.520000pt;}
._4c{width:85.680000pt;}
._31{width:91.120000pt;}
._50{width:99.120000pt;}
._37{width:100.080000pt;}
._48{width:101.373440pt;}
._3f{width:102.800000pt;}
._3e{width:104.104323pt;}
._44{width:113.600000pt;}
._43{width:114.560000pt;}
._4b{width:119.418667pt;}
._1d{width:136.540587pt;}
._41{width:156.800000pt;}
._1b{width:168.548907pt;}
._1c{width:175.686400pt;}
.fs4{font-size:16.000000pt;}
.fs7{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fse{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs1{font-size:69.120000pt;}
.fsd{font-size:72.858149pt;}
.fs0{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs8{font-size:84.326561pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y17{bottom:1.120000pt;}
.y11{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y9f{bottom:6.586667pt;}
.y6{bottom:7.520000pt;}
.yf{bottom:12.160000pt;}
.y9a{bottom:18.080000pt;}
.y5{bottom:29.440000pt;}
.y9b{bottom:29.600000pt;}
.ye{bottom:44.000000pt;}
.y1{bottom:45.760000pt;}
.y15{bottom:53.320000pt;}
.y35{bottom:69.600000pt;}
.y14{bottom:79.880000pt;}
.y13{bottom:106.440000pt;}
.y55{bottom:107.680000pt;}
.ycf{bottom:110.240000pt;}
.y30{bottom:114.400000pt;}
.yb0{bottom:123.040000pt;}
.y54{bottom:137.600000pt;}
.y82{bottom:140.480000pt;}
.y2f{bottom:144.480000pt;}
.yaf{bottom:152.960000pt;}
.y64{bottom:156.800000pt;}
.y53{bottom:167.680000pt;}
.y81{bottom:170.560000pt;}
.y2e{bottom:174.400000pt;}
.yce{bottom:179.200000pt;}
.yae{bottom:183.066667pt;}
.y63{bottom:186.746667pt;}
.y52{bottom:197.626667pt;}
.y80{bottom:200.506667pt;}
.ycd{bottom:202.266667pt;}
.y2d{bottom:204.346667pt;}
.yad{bottom:212.986667pt;}
.y62{bottom:216.826667pt;}
.ycc{bottom:225.306667pt;}
.y51{bottom:227.546667pt;}
.y7f{bottom:230.426667pt;}
.y2c{bottom:234.426667pt;}
.yac{bottom:242.906667pt;}
.y61{bottom:246.746667pt;}
.ycb{bottom:248.346667pt;}
.y50{bottom:257.626667pt;}
.y87{bottom:260.346667pt;}
.y2b{bottom:264.346667pt;}
.y7e{bottom:265.786667pt;}
.yca{bottom:271.386667pt;}
.yab{bottom:272.986667pt;}
.y60{bottom:276.666667pt;}
.y4f{bottom:287.546667pt;}
.y2a{bottom:294.266667pt;}
.yc9{bottom:294.426667pt;}
.y7d{bottom:295.866667pt;}
.yaa{bottom:302.906667pt;}
.y5f{bottom:306.746667pt;}
.y4e{bottom:317.466667pt;}
.y29{bottom:320.986667pt;}
.y7c{bottom:325.786667pt;}
.ya9{bottom:332.826667pt;}
.y5e{bottom:336.666667pt;}
.yc8{bottom:340.506667pt;}
.y4d{bottom:347.546667pt;}
.y28{bottom:349.306667pt;}
.y7b{bottom:355.706667pt;}
.ya8{bottom:362.906667pt;}
.yc7{bottom:363.706667pt;}
.y98{bottom:366.586667pt;}
.y5d{bottom:372.026667pt;}
.y27{bottom:376.026667pt;}
.y4c{bottom:377.466667pt;}
.y86{bottom:385.786667pt;}
.yc6{bottom:386.746667pt;}
.y7a{bottom:391.226667pt;}
.ya7{bottom:392.866667pt;}
.y26{bottom:395.746667pt;}
.y97{bottom:396.706667pt;}
.y5c{bottom:401.986667pt;}
.y4b{bottom:407.426667pt;}
.yc5{bottom:409.826667pt;}
.y25{bottom:413.186667pt;}
.y85{bottom:415.746667pt;}
.y79{bottom:421.186667pt;}
.ya6{bottom:422.786667pt;}
.y96{bottom:426.626667pt;}
.y5b{bottom:432.066667pt;}
.yc4{bottom:432.866667pt;}
.y4a{bottom:437.506667pt;}
.y24{bottom:439.906667pt;}
.y92{bottom:445.666667pt;}
.y78{bottom:451.106667pt;}
.ya5{bottom:452.866667pt;}
.yc3{bottom:455.906667pt;}
.y95{bottom:456.546667pt;}
.y5a{bottom:461.986667pt;}
.y23{bottom:466.466667pt;}
.y49{bottom:467.426667pt;}
.y91{bottom:475.746667pt;}
.yc2{bottom:478.946667pt;}
.y77{bottom:481.186667pt;}
.ya4{bottom:482.786667pt;}
.y94{bottom:486.626667pt;}
.y59{bottom:491.906667pt;}
.y22{bottom:493.026667pt;}
.y48{bottom:497.346667pt;}
.yc1{bottom:501.986667pt;}
.y90{bottom:505.666667pt;}
.y76{bottom:511.106667pt;}
.ya3{bottom:512.706667pt;}
.y93{bottom:516.546667pt;}
.y21{bottom:519.426667pt;}
.y58{bottom:521.986667pt;}
.yc0{bottom:525.026667pt;}
.y47{bottom:527.426667pt;}
.y8f{bottom:535.586667pt;}
.y84{bottom:541.026667pt;}
.ya2{bottom:542.786667pt;}
.y20{bottom:545.986667pt;}
.y75{bottom:546.466667pt;}
.ybf{bottom:548.066667pt;}
.y57{bottom:551.906667pt;}
.y46{bottom:557.346667pt;}
.ya1{bottom:561.986667pt;}
.y8e{bottom:565.666667pt;}
.ya0{bottom:569.986667pt;}
.ybe{bottom:571.106667pt;}
.y1f{bottom:572.546667pt;}
.y74{bottom:576.546667pt;}
.y56{bottom:581.826667pt;}
.y45{bottom:587.266667pt;}
.ybd{bottom:594.306667pt;}
.y9e{bottom:597.666667pt;}
.y1e{bottom:598.946667pt;}
.y8d{bottom:601.053333pt;}
.y73{bottom:606.493333pt;}
.y44{bottom:617.373333pt;}
.y9d{bottom:625.373333pt;}
.y1d{bottom:625.533333pt;}
.y8c{bottom:630.973333pt;}
.y72{bottom:636.413333pt;}
.ybc{bottom:640.413333pt;}
.y43{bottom:647.293333pt;}
.y1c{bottom:652.093333pt;}
.y9c{bottom:653.213333pt;}
.y8b{bottom:661.053333pt;}
.ybb{bottom:663.453333pt;}
.y71{bottom:666.493333pt;}
.y42{bottom:677.213333pt;}
.y1b{bottom:678.653333pt;}
.yba{bottom:686.493333pt;}
.y70{bottom:696.413333pt;}
.y99{bottom:703.933333pt;}
.y1a{bottom:705.053333pt;}
.y41{bottom:707.293333pt;}
.yb9{bottom:709.533333pt;}
.y6f{bottom:726.333333pt;}
.y19{bottom:731.613333pt;}
.yb8{bottom:732.573333pt;}
.y40{bottom:737.213333pt;}
.y18{bottom:751.933333pt;}
.yb7{bottom:755.613333pt;}
.y8a{bottom:756.253333pt;}
.y6e{bottom:756.413333pt;}
.y16{bottom:758.493333pt;}
.y12{bottom:764.893333pt;}
.y3f{bottom:767.133333pt;}
.y32{bottom:767.634805pt;}
.yb6{bottom:778.653333pt;}
.y6d{bottom:786.333333pt;}
.y31{bottom:791.458805pt;}
.y89{bottom:791.773333pt;}
.y3e{bottom:797.213333pt;}
.yb5{bottom:801.693333pt;}
.y6c{bottom:816.293333pt;}
.y88{bottom:821.733333pt;}
.yb4{bottom:824.933333pt;}
.y3d{bottom:827.173333pt;}
.y83{bottom:846.213333pt;}
.yb3{bottom:847.973333pt;}
.y6b{bottom:851.653333pt;}
.y3c{bottom:857.093333pt;}
.yb2{bottom:871.013333pt;}
.y6a{bottom:881.733333pt;}
.y3b{bottom:887.173333pt;}
.y10{bottom:887.653333pt;}
.yd{bottom:893.253333pt;}
.yb1{bottom:894.053333pt;}
.y69{bottom:911.653333pt;}
.y3a{bottom:917.093333pt;}
.y68{bottom:941.573333pt;}
.y39{bottom:947.013333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y67{bottom:971.653333pt;}
.y38{bottom:977.093333pt;}
.y2{bottom:983.333333pt;}
.y66{bottom:1001.573333pt;}
.y7{bottom:1003.173333pt;}
.y37{bottom:1007.013333pt;}
.y4{bottom:1028.320000pt;}
.y65{bottom:1031.520000pt;}
.y36{bottom:1036.960000pt;}
.y34{bottom:1055.360000pt;}
.y33{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h17{height:6.400000pt;}
.hd{height:11.843750pt;}
.h27{height:14.437500pt;}
.h18{height:15.633750pt;}
.h11{height:16.896000pt;}
.h1a{height:18.375000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h19{height:21.875000pt;}
.h26{height:23.026667pt;}
.h24{height:23.040000pt;}
.h25{height:23.066667pt;}
.h7{height:25.146667pt;}
.h1e{height:27.093750pt;}
.h23{height:46.080000pt;}
.h1c{height:46.116088pt;}
.h5{height:47.040000pt;}
.h16{height:49.410094pt;}
.h9{height:49.852500pt;}
.h15{height:52.108438pt;}
.h1f{height:53.362902pt;}
.hb{height:54.187500pt;}
.h1b{height:54.687500pt;}
.h2{height:55.355625pt;}
.h28{height:57.645110pt;}
.h13{height:58.593750pt;}
.h14{height:61.762618pt;}
.h29{height:63.150638pt;}
.h6{height:63.399375pt;}
.he{height:63.666667pt;}
.h1d{height:64.500000pt;}
.h20{height:67.803750pt;}
.hf{height:70.312500pt;}
.h4{height:71.044468pt;}
.h21{height:82.227394pt;}
.h22{height:83.281250pt;}
.h3{height:92.026667pt;}
.h12{height:122.740000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:69.266667pt;}
.wb{width:70.898667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wc{width:98.066667pt;}
.w8{width:127.350667pt;}
.w9{width:220.053333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:1.120000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x35{left:13.746667pt;}
.x38{left:14.866667pt;}
.x10{left:18.386667pt;}
.x34{left:21.906667pt;}
.x3a{left:22.866667pt;}
.x30{left:26.870667pt;}
.x39{left:28.480000pt;}
.xb{left:30.386667pt;}
.x13{left:39.665333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x32{left:53.146667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x2e{left:100.512000pt;}
.x27{left:105.472000pt;}
.x2f{left:124.512000pt;}
.x1d{left:129.312000pt;}
.x28{left:133.786667pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x1c{left:158.106667pt;}
.x1e{left:168.506667pt;}
.x18{left:176.345333pt;}
.x17{left:178.425333pt;}
.x6{left:185.786667pt;}
.x25{left:210.106667pt;}
.x31{left:225.000000pt;}
.x15{left:232.345333pt;}
.x14{left:235.385333pt;}
.x16{left:254.105333pt;}
.x24{left:286.946676pt;}
.x12{left:298.292000pt;}
.x19{left:314.612000pt;}
.x1f{left:384.706667pt;}
.xa{left:396.106667pt;}
.x21{left:420.893333pt;}
.x2b{left:425.373333pt;}
.x29{left:430.333333pt;}
.x20{left:432.573333pt;}
.x26{left:444.893333pt;}
.x33{left:447.786667pt;}
.x2c{left:449.373333pt;}
.x2a{left:458.653333pt;}
.x2d{left:468.893333pt;}
.x44{left:487.453333pt;}
.x22{left:517.922765pt;}
.x23{left:520.120187pt;}
.x41{left:529.853333pt;}
.x46{left:546.653333pt;}
.x40{left:554.853333pt;}
.x47{left:563.813333pt;}
.x43{left:571.333333pt;}
.x3b{left:578.693333pt;}
.x3d{left:583.973333pt;}
.x36{left:593.253333pt;}
.x7{left:642.213333pt;}
.x3e{left:643.493333pt;}
.x3f{left:649.893333pt;}
.x42{left:654.533333pt;}
.x45{left:656.133333pt;}
.x1{left:665.733333pt;}
.x3c{left:693.893333pt;}
}




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