
    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_203d97c1d29fe21a8be97809.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_85fa8d187fee694eaa6a9923.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c5aa60b97fb5b8f9d9c909a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_7bece65de6978c7a8e64845a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_b9ee68deec365832c214c400.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_2b63e56ea4d4f2b2a1fa8769.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_76af6cd8e9eafb1a9cbca759.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1e441557d4a047b1b6357e4d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_2cf71b1face275f718a15c93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_b57a61337ad461ee43556210.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.103027;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_69b7d422e18ce5584e43eb5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_df77aadb8b7179292252a67d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.953125;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_a320ff705337a2d002f89484.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964844;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_27f1f22d9795f476e03b1984.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.731046;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_a6fa2f1aba395237c0713735.woff2')format("woff");}.fff{font-family:fff;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.246000px;}
.v1{vertical-align:21.978000px;}
.ls1a{letter-spacing:-7.236000px;}
.ls14{letter-spacing:-3.240000px;}
.ls1b{letter-spacing:-1.740000px;}
.ls11{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.200000px;}
.ls21{letter-spacing:-1.026000px;}
.ls1e{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.840000px;}
.ls23{letter-spacing:-0.810000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.714000px;}
.ls7{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.691200px;}
.ls2{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.510000px;}
.lsb{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.408000px;}
.lse{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.204000px;}
.lsa{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.120000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.200000px;}
.ls12{letter-spacing:6.750000px;}
.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;}
}
.ws5{word-spacing:-48.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws76{word-spacing:-16.434000px;}
.ws5e{word-spacing:-15.720000px;}
.ws2c{word-spacing:-15.600000px;}
.ws64{word-spacing:-15.060000px;}
.ws7{word-spacing:-14.940000px;}
.ws8e{word-spacing:-14.880000px;}
.wsb{word-spacing:-14.700000px;}
.ws5f{word-spacing:-14.580000px;}
.ws20{word-spacing:-14.520000px;}
.ws44{word-spacing:-14.400000px;}
.ws38{word-spacing:-14.340000px;}
.ws5c{word-spacing:-14.280000px;}
.ws21{word-spacing:-14.220000px;}
.ws81{word-spacing:-14.100000px;}
.ws1f{word-spacing:-13.980000px;}
.ws47{word-spacing:-13.860000px;}
.ws39{word-spacing:-13.500000px;}
.ws6d{word-spacing:-13.446000px;}
.ws55{word-spacing:-13.440000px;}
.ws8f{word-spacing:-13.392000px;}
.ws94{word-spacing:-13.284000px;}
.ws3a{word-spacing:-13.260000px;}
.ws9{word-spacing:-13.230000px;}
.ws9f{word-spacing:-13.122000px;}
.ws80{word-spacing:-12.960000px;}
.wsa5{word-spacing:-12.852000px;}
.wsa0{word-spacing:-12.798000px;}
.ws91{word-spacing:-12.690000px;}
.ws8{word-spacing:-12.528000px;}
.ws99{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.366000px;}
.ws98{word-spacing:-12.258000px;}
.wse{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.596800px;}
.wsf{word-spacing:-10.992000px;}
.ws1d{word-spacing:-10.800000px;}
.ws6c{word-spacing:-10.206000px;}
.ws6{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws90{word-spacing:-7.807536px;}
.ws6e{word-spacing:-6.210000px;}
.ws84{word-spacing:-4.140000px;}
.ws40{word-spacing:-3.540000px;}
.ws7b{word-spacing:-3.420000px;}
.ws8a{word-spacing:-3.240000px;}
.ws4f{word-spacing:-2.880000px;}
.ws7e{word-spacing:-2.760000px;}
.ws48{word-spacing:-2.580000px;}
.ws35{word-spacing:-2.520000px;}
.ws9c{word-spacing:-2.484000px;}
.ws18{word-spacing:-2.430000px;}
.ws87{word-spacing:-2.280000px;}
.ws93{word-spacing:-2.268000px;}
.ws5d{word-spacing:-2.100000px;}
.ws3d{word-spacing:-2.040000px;}
.ws2d{word-spacing:-1.860000px;}
.ws57{word-spacing:-1.800000px;}
.ws86{word-spacing:-1.680000px;}
.ws85{word-spacing:-1.620000px;}
.ws8b{word-spacing:-1.560000px;}
.ws3e{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.254000px;}
.ws41{word-spacing:-1.200000px;}
.ws71{word-spacing:-1.080000px;}
.ws92{word-spacing:-1.026000px;}
.ws33{word-spacing:-1.020000px;}
.ws46{word-spacing:-0.960000px;}
.ws2b{word-spacing:-0.900000px;}
.wsa7{word-spacing:-0.756000px;}
.ws7d{word-spacing:-0.660000px;}
.wsac{word-spacing:-0.600000px;}
.ws75{word-spacing:-0.594000px;}
.ws42{word-spacing:-0.540000px;}
.ws36{word-spacing:-0.480000px;}
.ws4e{word-spacing:-0.420000px;}
.ws37{word-spacing:-0.360000px;}
.ws88{word-spacing:-0.300000px;}
.ws2a{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.216000px;}
.wsd{word-spacing:-0.054000px;}
.ws1e{word-spacing:-0.048000px;}
.ws10{word-spacing:0.000000px;}
.ws9e{word-spacing:0.054000px;}
.ws1{word-spacing:0.102000px;}
.ws95{word-spacing:0.108000px;}
.ws61{word-spacing:0.120000px;}
.ws23{word-spacing:0.180000px;}
.ws3b{word-spacing:0.240000px;}
.wsa1{word-spacing:0.270000px;}
.ws2{word-spacing:0.306000px;}
.ws3c{word-spacing:0.360000px;}
.ws0{word-spacing:0.408000px;}
.ws59{word-spacing:0.420000px;}
.ws9a{word-spacing:0.432000px;}
.ws29{word-spacing:0.480000px;}
.ws19{word-spacing:0.540000px;}
.wsa2{word-spacing:0.594000px;}
.ws3f{word-spacing:0.600000px;}
.ws11{word-spacing:0.612000px;}
.ws96{word-spacing:0.648000px;}
.ws15{word-spacing:0.691200px;}
.ws17{word-spacing:0.702000px;}
.ws12{word-spacing:0.714000px;}
.ws1c{word-spacing:0.720000px;}
.wsa6{word-spacing:0.810000px;}
.ws52{word-spacing:0.918000px;}
.ws9b{word-spacing:0.972000px;}
.ws6f{word-spacing:1.020000px;}
.wsa4{word-spacing:1.026000px;}
.ws68{word-spacing:1.140000px;}
.ws7f{word-spacing:1.260000px;}
.ws58{word-spacing:1.320000px;}
.wsa3{word-spacing:1.620000px;}
.ws60{word-spacing:1.740000px;}
.ws65{word-spacing:1.860000px;}
.ws82{word-spacing:2.160000px;}
.ws83{word-spacing:2.220000px;}
.wsaa{word-spacing:2.268000px;}
.ws7a{word-spacing:2.280000px;}
.ws8c{word-spacing:2.400000px;}
.ws16{word-spacing:2.430000px;}
.ws2f{word-spacing:2.580000px;}
.ws51{word-spacing:2.646000px;}
.ws69{word-spacing:2.760000px;}
.ws6a{word-spacing:2.820000px;}
.ws72{word-spacing:2.880000px;}
.ws4a{word-spacing:2.940000px;}
.ws56{word-spacing:3.000000px;}
.ws45{word-spacing:3.060000px;}
.ws2e{word-spacing:3.120000px;}
.ws8d{word-spacing:3.180000px;}
.ws54{word-spacing:3.240000px;}
.ws43{word-spacing:3.360000px;}
.ws67{word-spacing:3.420000px;}
.ws79{word-spacing:3.480000px;}
.ws62{word-spacing:3.540000px;}
.ws4b{word-spacing:3.600000px;}
.ws4c{word-spacing:3.660000px;}
.ws5a{word-spacing:3.720000px;}
.ws97{word-spacing:3.996000px;}
.ws34{word-spacing:4.020000px;}
.wsab{word-spacing:4.050000px;}
.ws78{word-spacing:4.140000px;}
.ws53{word-spacing:4.158000px;}
.ws89{word-spacing:4.200000px;}
.ws1a{word-spacing:4.212000px;}
.wsa8{word-spacing:4.320000px;}
.ws27{word-spacing:4.740000px;}
.ws9d{word-spacing:4.806000px;}
.ws1b{word-spacing:4.860000px;}
.ws28{word-spacing:5.340000px;}
.ws70{word-spacing:5.400000px;}
.wsa9{word-spacing:5.454000px;}
.ws63{word-spacing:5.700000px;}
.ws5b{word-spacing:5.778000px;}
.ws74{word-spacing:6.318000px;}
.ws73{word-spacing:6.426000px;}
.ws50{word-spacing:6.804000px;}
.ws26{word-spacing:6.840000px;}
.ws77{word-spacing:6.900000px;}
.ws6b{word-spacing:6.960000px;}
.ws49{word-spacing:7.740000px;}
.ws31{word-spacing:8.160000px;}
.ws7c{word-spacing:8.220000px;}
.ws30{word-spacing:8.280000px;}
.ws32{word-spacing:8.400000px;}
.ws66{word-spacing:8.580000px;}
.ws24{word-spacing:9.060000px;}
.ws25{word-spacing:9.180000px;}
.ws4d{word-spacing:9.420000px;}
.ws22{word-spacing:11.100000px;}
._a{margin-left:-10.638000px;}
._10{margin-left:-9.456000px;}
._18{margin-left:-8.097000px;}
._f{margin-left:-6.782400px;}
._9{margin-left:-5.729400px;}
._5{margin-left:-4.067400px;}
._3{margin-left:-2.958000px;}
._0{margin-left:-1.938000px;}
._1{width:1.336200px;}
._4{width:2.610000px;}
._2{width:3.896400px;}
._6{width:5.036400px;}
._8{width:6.561600px;}
._e{width:7.576800px;}
._b{width:8.645400px;}
._7{width:10.152000px;}
._c{width:11.406000px;}
._d{width:13.404000px;}
._1a{width:14.801400px;}
._16{width:16.428000px;}
._13{width:18.654000px;}
._19{width:20.033400px;}
._12{width:21.444000px;}
._11{width:22.512000px;}
._14{width:23.718000px;}
._15{width:24.731400px;}
._1b{width:25.875600px;}
._1c{width:27.189000px;}
._1d{width:30.083400px;}
._1e{width:31.421400px;}
._17{width:43.619400px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y10d{bottom:112.790850px;}
.y125{bottom:112.934850px;}
.ydd{bottom:113.048850px;}
.y9c{bottom:113.078700px;}
.y6d{bottom:113.078850px;}
.yb{bottom:117.205050px;}
.y2a{bottom:117.212550px;}
.ybf{bottom:120.478200px;}
.ya{bottom:131.601450px;}
.y10c{bottom:133.796850px;}
.y124{bottom:133.940850px;}
.ydc{bottom:134.054850px;}
.y9b{bottom:134.078700px;}
.y6c{bottom:134.078850px;}
.y29{bottom:138.212550px;}
.ybe{bottom:140.282700px;}
.y9{bottom:145.997850px;}
.y10b{bottom:154.802850px;}
.y123{bottom:154.946850px;}
.ydb{bottom:155.060850px;}
.y9a{bottom:155.078700px;}
.y6b{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.ybd{bottom:160.087200px;}
.y8{bottom:160.397850px;}
.y10a{bottom:175.808850px;}
.y122{bottom:175.952850px;}
.yda{bottom:176.066850px;}
.y99{bottom:176.078700px;}
.y6a{bottom:176.078850px;}
.ybc{bottom:179.891700px;}
.y27{bottom:180.212550px;}
.ya2{bottom:190.440900px;}
.yc2{bottom:190.441050px;}
.y109{bottom:196.814850px;}
.y121{bottom:196.958850px;}
.yd9{bottom:197.072850px;}
.y98{bottom:197.078700px;}
.y69{bottom:197.078850px;}
.ybb{bottom:199.696200px;}
.y26{bottom:201.212550px;}
.y37{bottom:203.447400px;}
.y108{bottom:217.820850px;}
.y120{bottom:217.964850px;}
.yd8{bottom:218.012850px;}
.y97{bottom:218.078700px;}
.y68{bottom:218.078850px;}
.yba{bottom:219.500700px;}
.y36{bottom:221.442900px;}
.y25{bottom:222.212550px;}
.y107{bottom:238.826850px;}
.y11f{bottom:238.970850px;}
.yd7{bottom:239.018850px;}
.y96{bottom:239.078700px;}
.y67{bottom:239.078850px;}
.y35{bottom:239.438400px;}
.y24{bottom:243.212550px;}
.y34{bottom:257.433900px;}
.y106{bottom:259.832850px;}
.y11e{bottom:259.976850px;}
.yd6{bottom:260.024850px;}
.y95{bottom:260.078700px;}
.y66{bottom:260.078850px;}
.y23{bottom:264.212550px;}
.yb3{bottom:273.513450px;}
.y33{bottom:275.429400px;}
.y105{bottom:280.838850px;}
.y11d{bottom:280.982850px;}
.yd5{bottom:281.030850px;}
.y94{bottom:281.078700px;}
.y65{bottom:281.078850px;}
.y22{bottom:285.212550px;}
.y32{bottom:293.424900px;}
.y104{bottom:301.844850px;}
.y11c{bottom:301.988850px;}
.yd4{bottom:302.036850px;}
.y93{bottom:302.078700px;}
.y64{bottom:302.078850px;}
.yb2{bottom:305.811000px;}
.y21{bottom:306.212550px;}
.y31{bottom:311.420400px;}
.y103{bottom:322.850850px;}
.y11b{bottom:322.994850px;}
.y13a{bottom:323.036850px;}
.yd3{bottom:323.042850px;}
.y92{bottom:323.078700px;}
.y63{bottom:323.078850px;}
.y20{bottom:327.212550px;}
.y30{bottom:329.415900px;}
.y102{bottom:343.856850px;}
.y11a{bottom:344.000850px;}
.y139{bottom:344.042850px;}
.yd2{bottom:344.048850px;}
.y91{bottom:344.078700px;}
.y62{bottom:344.078850px;}
.y1f{bottom:348.212550px;}
.y2f{bottom:364.421400px;}
.y101{bottom:364.862850px;}
.y119{bottom:365.006850px;}
.y155{bottom:365.036700px;}
.y138{bottom:365.048850px;}
.yd1{bottom:365.054850px;}
.y90{bottom:365.078700px;}
.y61{bottom:365.078850px;}
.y1e{bottom:369.212550px;}
.y2e{bottom:382.421400px;}
.y100{bottom:385.868850px;}
.y118{bottom:386.012850px;}
.y154{bottom:386.042700px;}
.y137{bottom:386.054850px;}
.yd0{bottom:386.060850px;}
.y8f{bottom:386.078700px;}
.y60{bottom:386.078850px;}
.y2d{bottom:400.421400px;}
.y1d{bottom:404.100300px;}
.yff{bottom:406.874850px;}
.y117{bottom:407.018850px;}
.y153{bottom:407.048700px;}
.y136{bottom:407.060850px;}
.ycf{bottom:407.066850px;}
.ya1{bottom:407.078700px;}
.y5f{bottom:407.078850px;}
.y2c{bottom:418.425900px;}
.y6f{bottom:420.513600px;}
.y8e{bottom:421.440900px;}
.yfe{bottom:427.880850px;}
.y116{bottom:428.024850px;}
.y152{bottom:428.054700px;}
.y135{bottom:428.066850px;}
.yce{bottom:428.072850px;}
.ya0{bottom:428.078700px;}
.y5e{bottom:428.078850px;}
.y2b{bottom:436.421400px;}
.yfd{bottom:448.886850px;}
.y115{bottom:449.030850px;}
.y151{bottom:449.060700px;}
.y134{bottom:449.072850px;}
.y9f{bottom:449.078700px;}
.y5d{bottom:449.078850px;}
.y6e{bottom:452.811150px;}
.yfc{bottom:469.892850px;}
.y114{bottom:470.036850px;}
.y150{bottom:470.066700px;}
.y8d{bottom:470.078700px;}
.y5c{bottom:470.078850px;}
.ycd{bottom:484.441050px;}
.y1c{bottom:484.623450px;}
.yfb{bottom:490.898850px;}
.y113{bottom:491.042850px;}
.y14f{bottom:491.072700px;}
.y8c{bottom:491.078700px;}
.y5b{bottom:491.078850px;}
.y1b{bottom:504.427950px;}
.y133{bottom:504.513600px;}
.yfa{bottom:511.904850px;}
.y112{bottom:512.048850px;}
.y8b{bottom:512.078700px;}
.y5a{bottom:512.078850px;}
.yf9{bottom:532.910850px;}
.y111{bottom:533.054850px;}
.y8a{bottom:533.078700px;}
.y59{bottom:533.078850px;}
.y132{bottom:536.811150px;}
.yac{bottom:543.185550px;}
.y1a{bottom:545.433750px;}
.y14e{bottom:546.513450px;}
.yf8{bottom:553.916850px;}
.y110{bottom:554.060850px;}
.y89{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.yab{bottom:562.990050px;}
.y19{bottom:565.238250px;}
.y9e{bottom:568.441050px;}
.yf7{bottom:574.922850px;}
.y10f{bottom:575.066850px;}
.y88{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.y14d{bottom:578.811000px;}
.ycc{bottom:580.529400px;}
.yaa{bottom:582.794550px;}
.y18{bottom:585.042750px;}
.yf6{bottom:595.928850px;}
.y131{bottom:596.018850px;}
.y10e{bottom:596.072850px;}
.y87{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.ya9{bottom:602.599050px;}
.y17{bottom:604.847250px;}
.yf5{bottom:616.934850px;}
.y130{bottom:617.024850px;}
.y86{bottom:617.078700px;}
.y55{bottom:617.078850px;}
.ya8{bottom:622.403550px;}
.y16{bottom:624.651750px;}
.yb9{bottom:631.441050px;}
.yf4{bottom:637.940850px;}
.y12f{bottom:638.030850px;}
.y14c{bottom:638.036700px;}
.y85{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.ya7{bottom:642.208050px;}
.ycb{bottom:643.529400px;}
.y15{bottom:644.456250px;}
.yf3{bottom:658.946850px;}
.y12e{bottom:659.036850px;}
.y14b{bottom:659.042700px;}
.y84{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.ya6{bottom:662.012550px;}
.y14{bottom:664.260750px;}
.yf2{bottom:679.952850px;}
.y12d{bottom:680.042850px;}
.y14a{bottom:680.048700px;}
.yca{bottom:680.072850px;}
.y83{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.ya5{bottom:681.817050px;}
.y13{bottom:684.065250px;}
.yf1{bottom:700.958850px;}
.y12c{bottom:701.048850px;}
.y149{bottom:701.054700px;}
.y82{bottom:701.078700px;}
.y51{bottom:701.078850px;}
.ya4{bottom:701.621550px;}
.y12{bottom:703.869750px;}
.ya3{bottom:721.426050px;}
.yf0{bottom:721.964850px;}
.y12b{bottom:722.054850px;}
.y148{bottom:722.060700px;}
.y81{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.y11{bottom:723.674250px;}
.yc9{bottom:727.529400px;}
.y9d{bottom:736.441050px;}
.yef{bottom:742.970850px;}
.y12a{bottom:743.060850px;}
.y147{bottom:743.066700px;}
.y80{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.y10{bottom:743.478750px;}
.yae{bottom:746.414850px;}
.yb1{bottom:747.041850px;}
.yb0{bottom:747.256350px;}
.yf{bottom:763.283250px;}
.yee{bottom:763.976850px;}
.y129{bottom:764.066850px;}
.y146{bottom:764.072700px;}
.yc8{bottom:764.072850px;}
.y7f{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.yb8{bottom:779.835150px;}
.ye{bottom:783.087750px;}
.yed{bottom:784.982850px;}
.y128{bottom:785.072850px;}
.y7e{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.yb7{bottom:799.639650px;}
.yec{bottom:805.988850px;}
.y7d{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.yc7{bottom:811.529250px;}
.yd{bottom:814.185300px;}
.yb6{bottom:819.444150px;}
.y145{bottom:819.513450px;}
.yeb{bottom:826.994850px;}
.y7c{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yb5{bottom:839.248650px;}
.y127{bottom:840.513600px;}
.yea{bottom:848.000850px;}
.y7b{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.y144{bottom:851.811000px;}
.yb4{bottom:859.053150px;}
.yc1{bottom:862.436550px;}
.ye9{bottom:869.006850px;}
.y7a{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y126{bottom:872.811000px;}
.yc6{bottom:874.529250px;}
.yc0{bottom:883.441050px;}
.ye8{bottom:890.012850px;}
.y79{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.ye7{bottom:911.018850px;}
.y143{bottom:911.036700px;}
.y78{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.ye6{bottom:932.024850px;}
.y142{bottom:932.042700px;}
.y77{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.yc5{bottom:937.529250px;}
.y5{bottom:946.474800px;}
.ye5{bottom:953.030850px;}
.y141{bottom:953.048700px;}
.y76{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.yaf{bottom:963.686850px;}
.ye4{bottom:974.036850px;}
.y140{bottom:974.054700px;}
.y75{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.ye3{bottom:995.042850px;}
.y13f{bottom:995.060700px;}
.y43{bottom:995.078850px;}
.yc4{bottom:1000.937100px;}
.y74{bottom:1009.440900px;}
.ye2{bottom:1016.048850px;}
.y13e{bottom:1016.066700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yc3{bottom:1030.441050px;}
.ye1{bottom:1037.054850px;}
.y13d{bottom:1037.072700px;}
.y41{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.ye0{bottom:1058.060850px;}
.y73{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.ydf{bottom:1079.066850px;}
.y72{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y13c{bottom:1092.029250px;}
.yde{bottom:1100.072850px;}
.y71{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.yad{bottom:1116.757350px;}
.y70{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.y13b{bottom:1124.326650px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.hb{height:40.500000px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.h15{height:45.615234px;}
.ha{height:47.170898px;}
.h9{height:47.343750px;}
.h13{height:47.434898px;}
.h14{height:47.746898px;}
.h12{height:50.176758px;}
.h4{height:50.836500px;}
.h11{height:52.078125px;}
.hd{height:52.412109px;}
.hc{height:56.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.063850px;}
.xc{left:108.289650px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xd{left:125.197050px;}
.x11{left:242.396550px;}
.x4{left:300.189000px;}
.x5{left:317.199000px;}
.x3{left:396.050700px;}
.x10{left:589.061550px;}
.xa{left:645.896250px;}
.x9{left:666.944250px;}
.xe{left:794.321550px;}
.xf{left:796.103550px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.218667pt;}
.v1{vertical-align:19.536000pt;}
.ls1a{letter-spacing:-6.432000pt;}
.ls14{letter-spacing:-2.880000pt;}
.ls1b{letter-spacing:-1.546667pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls21{letter-spacing:-0.912000pt;}
.ls1e{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.746667pt;}
.ls23{letter-spacing:-0.720000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.634667pt;}
.ls7{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls2{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.453333pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.362667pt;}
.lse{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.181333pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.906667pt;}
.lsc{letter-spacing:1.066667pt;}
.ls12{letter-spacing:6.000000pt;}
.ws5{word-spacing:-42.666667pt;}
.wsa{word-spacing:-15.936000pt;}
.ws76{word-spacing:-14.608000pt;}
.ws5e{word-spacing:-13.973333pt;}
.ws2c{word-spacing:-13.866667pt;}
.ws64{word-spacing:-13.386667pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8e{word-spacing:-13.226667pt;}
.wsb{word-spacing:-13.066667pt;}
.ws5f{word-spacing:-12.960000pt;}
.ws20{word-spacing:-12.906667pt;}
.ws44{word-spacing:-12.800000pt;}
.ws38{word-spacing:-12.746667pt;}
.ws5c{word-spacing:-12.693333pt;}
.ws21{word-spacing:-12.640000pt;}
.ws81{word-spacing:-12.533333pt;}
.ws1f{word-spacing:-12.426667pt;}
.ws47{word-spacing:-12.320000pt;}
.ws39{word-spacing:-12.000000pt;}
.ws6d{word-spacing:-11.952000pt;}
.ws55{word-spacing:-11.946667pt;}
.ws8f{word-spacing:-11.904000pt;}
.ws94{word-spacing:-11.808000pt;}
.ws3a{word-spacing:-11.786667pt;}
.ws9{word-spacing:-11.760000pt;}
.ws9f{word-spacing:-11.664000pt;}
.ws80{word-spacing:-11.520000pt;}
.wsa5{word-spacing:-11.424000pt;}
.wsa0{word-spacing:-11.376000pt;}
.ws91{word-spacing:-11.280000pt;}
.ws8{word-spacing:-11.136000pt;}
.ws99{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.992000pt;}
.ws98{word-spacing:-10.896000pt;}
.wse{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.308267pt;}
.wsf{word-spacing:-9.770667pt;}
.ws1d{word-spacing:-9.600000pt;}
.ws6c{word-spacing:-9.072000pt;}
.ws6{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws90{word-spacing:-6.940032pt;}
.ws6e{word-spacing:-5.520000pt;}
.ws84{word-spacing:-3.680000pt;}
.ws40{word-spacing:-3.146667pt;}
.ws7b{word-spacing:-3.040000pt;}
.ws8a{word-spacing:-2.880000pt;}
.ws4f{word-spacing:-2.560000pt;}
.ws7e{word-spacing:-2.453333pt;}
.ws48{word-spacing:-2.293333pt;}
.ws35{word-spacing:-2.240000pt;}
.ws9c{word-spacing:-2.208000pt;}
.ws18{word-spacing:-2.160000pt;}
.ws87{word-spacing:-2.026667pt;}
.ws93{word-spacing:-2.016000pt;}
.ws5d{word-spacing:-1.866667pt;}
.ws3d{word-spacing:-1.813333pt;}
.ws2d{word-spacing:-1.653333pt;}
.ws57{word-spacing:-1.600000pt;}
.ws86{word-spacing:-1.493333pt;}
.ws85{word-spacing:-1.440000pt;}
.ws8b{word-spacing:-1.386667pt;}
.ws3e{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.114667pt;}
.ws41{word-spacing:-1.066667pt;}
.ws71{word-spacing:-0.960000pt;}
.ws92{word-spacing:-0.912000pt;}
.ws33{word-spacing:-0.906667pt;}
.ws46{word-spacing:-0.853333pt;}
.ws2b{word-spacing:-0.800000pt;}
.wsa7{word-spacing:-0.672000pt;}
.ws7d{word-spacing:-0.586667pt;}
.wsac{word-spacing:-0.533333pt;}
.ws75{word-spacing:-0.528000pt;}
.ws42{word-spacing:-0.480000pt;}
.ws36{word-spacing:-0.426667pt;}
.ws4e{word-spacing:-0.373333pt;}
.ws37{word-spacing:-0.320000pt;}
.ws88{word-spacing:-0.266667pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.192000pt;}
.wsd{word-spacing:-0.048000pt;}
.ws1e{word-spacing:-0.042667pt;}
.ws10{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.048000pt;}
.ws1{word-spacing:0.090667pt;}
.ws95{word-spacing:0.096000pt;}
.ws61{word-spacing:0.106667pt;}
.ws23{word-spacing:0.160000pt;}
.ws3b{word-spacing:0.213333pt;}
.wsa1{word-spacing:0.240000pt;}
.ws2{word-spacing:0.272000pt;}
.ws3c{word-spacing:0.320000pt;}
.ws0{word-spacing:0.362667pt;}
.ws59{word-spacing:0.373333pt;}
.ws9a{word-spacing:0.384000pt;}
.ws29{word-spacing:0.426667pt;}
.ws19{word-spacing:0.480000pt;}
.wsa2{word-spacing:0.528000pt;}
.ws3f{word-spacing:0.533333pt;}
.ws11{word-spacing:0.544000pt;}
.ws96{word-spacing:0.576000pt;}
.ws15{word-spacing:0.614400pt;}
.ws17{word-spacing:0.624000pt;}
.ws12{word-spacing:0.634667pt;}
.ws1c{word-spacing:0.640000pt;}
.wsa6{word-spacing:0.720000pt;}
.ws52{word-spacing:0.816000pt;}
.ws9b{word-spacing:0.864000pt;}
.ws6f{word-spacing:0.906667pt;}
.wsa4{word-spacing:0.912000pt;}
.ws68{word-spacing:1.013333pt;}
.ws7f{word-spacing:1.120000pt;}
.ws58{word-spacing:1.173333pt;}
.wsa3{word-spacing:1.440000pt;}
.ws60{word-spacing:1.546667pt;}
.ws65{word-spacing:1.653333pt;}
.ws82{word-spacing:1.920000pt;}
.ws83{word-spacing:1.973333pt;}
.wsaa{word-spacing:2.016000pt;}
.ws7a{word-spacing:2.026667pt;}
.ws8c{word-spacing:2.133333pt;}
.ws16{word-spacing:2.160000pt;}
.ws2f{word-spacing:2.293333pt;}
.ws51{word-spacing:2.352000pt;}
.ws69{word-spacing:2.453333pt;}
.ws6a{word-spacing:2.506667pt;}
.ws72{word-spacing:2.560000pt;}
.ws4a{word-spacing:2.613333pt;}
.ws56{word-spacing:2.666667pt;}
.ws45{word-spacing:2.720000pt;}
.ws2e{word-spacing:2.773333pt;}
.ws8d{word-spacing:2.826667pt;}
.ws54{word-spacing:2.880000pt;}
.ws43{word-spacing:2.986667pt;}
.ws67{word-spacing:3.040000pt;}
.ws79{word-spacing:3.093333pt;}
.ws62{word-spacing:3.146667pt;}
.ws4b{word-spacing:3.200000pt;}
.ws4c{word-spacing:3.253333pt;}
.ws5a{word-spacing:3.306667pt;}
.ws97{word-spacing:3.552000pt;}
.ws34{word-spacing:3.573333pt;}
.wsab{word-spacing:3.600000pt;}
.ws78{word-spacing:3.680000pt;}
.ws53{word-spacing:3.696000pt;}
.ws89{word-spacing:3.733333pt;}
.ws1a{word-spacing:3.744000pt;}
.wsa8{word-spacing:3.840000pt;}
.ws27{word-spacing:4.213333pt;}
.ws9d{word-spacing:4.272000pt;}
.ws1b{word-spacing:4.320000pt;}
.ws28{word-spacing:4.746667pt;}
.ws70{word-spacing:4.800000pt;}
.wsa9{word-spacing:4.848000pt;}
.ws63{word-spacing:5.066667pt;}
.ws5b{word-spacing:5.136000pt;}
.ws74{word-spacing:5.616000pt;}
.ws73{word-spacing:5.712000pt;}
.ws50{word-spacing:6.048000pt;}
.ws26{word-spacing:6.080000pt;}
.ws77{word-spacing:6.133333pt;}
.ws6b{word-spacing:6.186667pt;}
.ws49{word-spacing:6.880000pt;}
.ws31{word-spacing:7.253333pt;}
.ws7c{word-spacing:7.306667pt;}
.ws30{word-spacing:7.360000pt;}
.ws32{word-spacing:7.466667pt;}
.ws66{word-spacing:7.626667pt;}
.ws24{word-spacing:8.053333pt;}
.ws25{word-spacing:8.160000pt;}
.ws4d{word-spacing:8.373333pt;}
.ws22{word-spacing:9.866667pt;}
._a{margin-left:-9.456000pt;}
._10{margin-left:-8.405333pt;}
._18{margin-left:-7.197333pt;}
._f{margin-left:-6.028800pt;}
._9{margin-left:-5.092800pt;}
._5{margin-left:-3.615467pt;}
._3{margin-left:-2.629333pt;}
._0{margin-left:-1.722667pt;}
._1{width:1.187733pt;}
._4{width:2.320000pt;}
._2{width:3.463467pt;}
._6{width:4.476800pt;}
._8{width:5.832533pt;}
._e{width:6.734933pt;}
._b{width:7.684800pt;}
._7{width:9.024000pt;}
._c{width:10.138667pt;}
._d{width:11.914667pt;}
._1a{width:13.156800pt;}
._16{width:14.602667pt;}
._13{width:16.581333pt;}
._19{width:17.807467pt;}
._12{width:19.061333pt;}
._11{width:20.010667pt;}
._14{width:21.082667pt;}
._15{width:21.983467pt;}
._1b{width:23.000533pt;}
._1c{width:24.168000pt;}
._1d{width:26.740800pt;}
._1e{width:27.930133pt;}
._17{width:38.772800pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y10d{bottom:100.258533pt;}
.y125{bottom:100.386533pt;}
.ydd{bottom:100.487867pt;}
.y9c{bottom:100.514400pt;}
.y6d{bottom:100.514533pt;}
.yb{bottom:104.182267pt;}
.y2a{bottom:104.188933pt;}
.ybf{bottom:107.091733pt;}
.ya{bottom:116.979067pt;}
.y10c{bottom:118.930533pt;}
.y124{bottom:119.058533pt;}
.ydc{bottom:119.159867pt;}
.y9b{bottom:119.181067pt;}
.y6c{bottom:119.181200pt;}
.y29{bottom:122.855600pt;}
.ybe{bottom:124.695733pt;}
.y9{bottom:129.775867pt;}
.y10b{bottom:137.602533pt;}
.y123{bottom:137.730533pt;}
.ydb{bottom:137.831867pt;}
.y9a{bottom:137.847733pt;}
.y6b{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.ybd{bottom:142.299733pt;}
.y8{bottom:142.575867pt;}
.y10a{bottom:156.274533pt;}
.y122{bottom:156.402533pt;}
.yda{bottom:156.503867pt;}
.y99{bottom:156.514400pt;}
.y6a{bottom:156.514533pt;}
.ybc{bottom:159.903733pt;}
.y27{bottom:160.188933pt;}
.ya2{bottom:169.280800pt;}
.yc2{bottom:169.280933pt;}
.y109{bottom:174.946533pt;}
.y121{bottom:175.074533pt;}
.yd9{bottom:175.175867pt;}
.y98{bottom:175.181067pt;}
.y69{bottom:175.181200pt;}
.ybb{bottom:177.507733pt;}
.y26{bottom:178.855600pt;}
.y37{bottom:180.842133pt;}
.y108{bottom:193.618533pt;}
.y120{bottom:193.746533pt;}
.yd8{bottom:193.789200pt;}
.y97{bottom:193.847733pt;}
.y68{bottom:193.847867pt;}
.yba{bottom:195.111733pt;}
.y36{bottom:196.838133pt;}
.y25{bottom:197.522267pt;}
.y107{bottom:212.290533pt;}
.y11f{bottom:212.418533pt;}
.yd7{bottom:212.461200pt;}
.y96{bottom:212.514400pt;}
.y67{bottom:212.514533pt;}
.y35{bottom:212.834133pt;}
.y24{bottom:216.188933pt;}
.y34{bottom:228.830133pt;}
.y106{bottom:230.962533pt;}
.y11e{bottom:231.090533pt;}
.yd6{bottom:231.133200pt;}
.y95{bottom:231.181067pt;}
.y66{bottom:231.181200pt;}
.y23{bottom:234.855600pt;}
.yb3{bottom:243.123067pt;}
.y33{bottom:244.826133pt;}
.y105{bottom:249.634533pt;}
.y11d{bottom:249.762533pt;}
.yd5{bottom:249.805200pt;}
.y94{bottom:249.847733pt;}
.y65{bottom:249.847867pt;}
.y22{bottom:253.522267pt;}
.y32{bottom:260.822133pt;}
.y104{bottom:268.306533pt;}
.y11c{bottom:268.434533pt;}
.yd4{bottom:268.477200pt;}
.y93{bottom:268.514400pt;}
.y64{bottom:268.514533pt;}
.yb2{bottom:271.832000pt;}
.y21{bottom:272.188933pt;}
.y31{bottom:276.818133pt;}
.y103{bottom:286.978533pt;}
.y11b{bottom:287.106533pt;}
.y13a{bottom:287.143867pt;}
.yd3{bottom:287.149200pt;}
.y92{bottom:287.181067pt;}
.y63{bottom:287.181200pt;}
.y20{bottom:290.855600pt;}
.y30{bottom:292.814133pt;}
.y102{bottom:305.650533pt;}
.y11a{bottom:305.778533pt;}
.y139{bottom:305.815867pt;}
.yd2{bottom:305.821200pt;}
.y91{bottom:305.847733pt;}
.y62{bottom:305.847867pt;}
.y1f{bottom:309.522267pt;}
.y2f{bottom:323.930133pt;}
.y101{bottom:324.322533pt;}
.y119{bottom:324.450533pt;}
.y155{bottom:324.477067pt;}
.y138{bottom:324.487867pt;}
.yd1{bottom:324.493200pt;}
.y90{bottom:324.514400pt;}
.y61{bottom:324.514533pt;}
.y1e{bottom:328.188933pt;}
.y2e{bottom:339.930133pt;}
.y100{bottom:342.994533pt;}
.y118{bottom:343.122533pt;}
.y154{bottom:343.149067pt;}
.y137{bottom:343.159867pt;}
.yd0{bottom:343.165200pt;}
.y8f{bottom:343.181067pt;}
.y60{bottom:343.181200pt;}
.y2d{bottom:355.930133pt;}
.y1d{bottom:359.200267pt;}
.yff{bottom:361.666533pt;}
.y117{bottom:361.794533pt;}
.y153{bottom:361.821067pt;}
.y136{bottom:361.831867pt;}
.ycf{bottom:361.837200pt;}
.ya1{bottom:361.847733pt;}
.y5f{bottom:361.847867pt;}
.y2c{bottom:371.934133pt;}
.y6f{bottom:373.789867pt;}
.y8e{bottom:374.614133pt;}
.yfe{bottom:380.338533pt;}
.y116{bottom:380.466533pt;}
.y152{bottom:380.493067pt;}
.y135{bottom:380.503867pt;}
.yce{bottom:380.509200pt;}
.ya0{bottom:380.514400pt;}
.y5e{bottom:380.514533pt;}
.y2b{bottom:387.930133pt;}
.yfd{bottom:399.010533pt;}
.y115{bottom:399.138533pt;}
.y151{bottom:399.165067pt;}
.y134{bottom:399.175867pt;}
.y9f{bottom:399.181067pt;}
.y5d{bottom:399.181200pt;}
.y6e{bottom:402.498800pt;}
.yfc{bottom:417.682533pt;}
.y114{bottom:417.810533pt;}
.y150{bottom:417.837067pt;}
.y8d{bottom:417.847733pt;}
.y5c{bottom:417.847867pt;}
.ycd{bottom:430.614267pt;}
.y1c{bottom:430.776400pt;}
.yfb{bottom:436.354533pt;}
.y113{bottom:436.482533pt;}
.y14f{bottom:436.509067pt;}
.y8c{bottom:436.514400pt;}
.y5b{bottom:436.514533pt;}
.y1b{bottom:448.380400pt;}
.y133{bottom:448.456533pt;}
.yfa{bottom:455.026533pt;}
.y112{bottom:455.154533pt;}
.y8b{bottom:455.181067pt;}
.y5a{bottom:455.181200pt;}
.yf9{bottom:473.698533pt;}
.y111{bottom:473.826533pt;}
.y8a{bottom:473.847733pt;}
.y59{bottom:473.847867pt;}
.y132{bottom:477.165467pt;}
.yac{bottom:482.831600pt;}
.y1a{bottom:484.830000pt;}
.y14e{bottom:485.789733pt;}
.yf8{bottom:492.370533pt;}
.y110{bottom:492.498533pt;}
.y89{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.yab{bottom:500.435600pt;}
.y19{bottom:502.434000pt;}
.y9e{bottom:505.280933pt;}
.yf7{bottom:511.042533pt;}
.y10f{bottom:511.170533pt;}
.y88{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.y14d{bottom:514.498667pt;}
.ycc{bottom:516.026133pt;}
.yaa{bottom:518.039600pt;}
.y18{bottom:520.038000pt;}
.yf6{bottom:529.714533pt;}
.y131{bottom:529.794533pt;}
.y10e{bottom:529.842533pt;}
.y87{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.ya9{bottom:535.643600pt;}
.y17{bottom:537.642000pt;}
.yf5{bottom:548.386533pt;}
.y130{bottom:548.466533pt;}
.y86{bottom:548.514400pt;}
.y55{bottom:548.514533pt;}
.ya8{bottom:553.247600pt;}
.y16{bottom:555.246000pt;}
.yb9{bottom:561.280933pt;}
.yf4{bottom:567.058533pt;}
.y12f{bottom:567.138533pt;}
.y14c{bottom:567.143733pt;}
.y85{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.ya7{bottom:570.851600pt;}
.ycb{bottom:572.026133pt;}
.y15{bottom:572.850000pt;}
.yf3{bottom:585.730533pt;}
.y12e{bottom:585.810533pt;}
.y14b{bottom:585.815733pt;}
.y84{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.ya6{bottom:588.455600pt;}
.y14{bottom:590.454000pt;}
.yf2{bottom:604.402533pt;}
.y12d{bottom:604.482533pt;}
.y14a{bottom:604.487733pt;}
.yca{bottom:604.509200pt;}
.y83{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.ya5{bottom:606.059600pt;}
.y13{bottom:608.058000pt;}
.yf1{bottom:623.074533pt;}
.y12c{bottom:623.154533pt;}
.y149{bottom:623.159733pt;}
.y82{bottom:623.181067pt;}
.y51{bottom:623.181200pt;}
.ya4{bottom:623.663600pt;}
.y12{bottom:625.662000pt;}
.ya3{bottom:641.267600pt;}
.yf0{bottom:641.746533pt;}
.y12b{bottom:641.826533pt;}
.y148{bottom:641.831733pt;}
.y81{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.y11{bottom:643.266000pt;}
.yc9{bottom:646.692800pt;}
.y9d{bottom:654.614267pt;}
.yef{bottom:660.418533pt;}
.y12a{bottom:660.498533pt;}
.y147{bottom:660.503733pt;}
.y80{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.y10{bottom:660.870000pt;}
.yae{bottom:663.479867pt;}
.yb1{bottom:664.037200pt;}
.yb0{bottom:664.227867pt;}
.yf{bottom:678.474000pt;}
.yee{bottom:679.090533pt;}
.y129{bottom:679.170533pt;}
.y146{bottom:679.175733pt;}
.yc8{bottom:679.175867pt;}
.y7f{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.yb8{bottom:693.186800pt;}
.ye{bottom:696.078000pt;}
.yed{bottom:697.762533pt;}
.y128{bottom:697.842533pt;}
.y7e{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.yb7{bottom:710.790800pt;}
.yec{bottom:716.434533pt;}
.y7d{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.yc7{bottom:721.359333pt;}
.yd{bottom:723.720267pt;}
.yb6{bottom:728.394800pt;}
.y145{bottom:728.456400pt;}
.yeb{bottom:735.106533pt;}
.y7c{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yb5{bottom:745.998800pt;}
.y127{bottom:747.123200pt;}
.yea{bottom:753.778533pt;}
.y7b{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.y144{bottom:757.165333pt;}
.yb4{bottom:763.602800pt;}
.yc1{bottom:766.610267pt;}
.ye9{bottom:772.450533pt;}
.y7a{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y126{bottom:775.832000pt;}
.yc6{bottom:777.359333pt;}
.yc0{bottom:785.280933pt;}
.ye8{bottom:791.122533pt;}
.y79{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.ye7{bottom:809.794533pt;}
.y143{bottom:809.810400pt;}
.y78{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.ye6{bottom:828.466533pt;}
.y142{bottom:828.482400pt;}
.y77{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.yc5{bottom:833.359333pt;}
.y5{bottom:841.310933pt;}
.ye5{bottom:847.138533pt;}
.y141{bottom:847.154400pt;}
.y76{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.yaf{bottom:856.610533pt;}
.ye4{bottom:865.810533pt;}
.y140{bottom:865.826400pt;}
.y75{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.ye3{bottom:884.482533pt;}
.y13f{bottom:884.498400pt;}
.y43{bottom:884.514533pt;}
.yc4{bottom:889.721867pt;}
.y74{bottom:897.280800pt;}
.ye2{bottom:903.154533pt;}
.y13e{bottom:903.170400pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yc3{bottom:915.947600pt;}
.ye1{bottom:921.826533pt;}
.y13d{bottom:921.842400pt;}
.y41{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.ye0{bottom:940.498533pt;}
.y73{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.ydf{bottom:959.170533pt;}
.y72{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y13c{bottom:970.692667pt;}
.yde{bottom:977.842533pt;}
.y71{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.yad{bottom:992.673200pt;}
.y70{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.y13b{bottom:999.401467pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.hb{height:36.000000pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.h15{height:40.546875pt;}
.ha{height:41.929688pt;}
.h9{height:42.083333pt;}
.h13{height:42.164354pt;}
.h14{height:42.441688pt;}
.h12{height:44.601562pt;}
.h4{height:45.188000pt;}
.h11{height:46.291667pt;}
.hd{height:46.588542pt;}
.hc{height:50.500000pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.167867pt;}
.xc{left:96.257467pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xd{left:111.286267pt;}
.x11{left:215.463600pt;}
.x4{left:266.834667pt;}
.x5{left:281.954667pt;}
.x3{left:352.045067pt;}
.x10{left:523.610267pt;}
.xa{left:574.130000pt;}
.x9{left:592.839333pt;}
.xe{left:706.063600pt;}
.xf{left:707.647600pt;}
.x1{left:712.140000pt;}
}




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