
    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_6c80a800452b63f2142c205c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_d0f48b57baa9fb579ee5c699.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_10b5474708b0cab944b52da7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.770020;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_082e8fe42dc4cfb9ad087211.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919567;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_a8aad8c3aa9e53eb6a1fd2d1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c65a314f8ccb3e91d87dfec2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_7f991ebfb471fdf05614f2b3.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_b1ba506f173a7a7b651b2043.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_2884edd27a23bb3e85c28b0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964860;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_640bc2d15da3f8e614620a7c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_df4f66f5633a057b4d2c953c.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_4dce20c0b89bdc38c88c136f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770020;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_5d988c367ab7e381798eafd6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921985;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_074ba88342279a71488dcb94.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_40705cb312f9cd2e68e7d27f.woff2')format("woff");}.fff{font-family:fff;line-height:0.919494;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;}
.v1{vertical-align:21.978000px;}
.ls8{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-1.020000px;}
.lsc{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.691200px;}
.ls6{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.120000px;}
.ls13{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.102000px;}
.ls12{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.025800px;}
.lse{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws8{word-spacing:-17.928000px;}
.ws57{word-spacing:-16.434000px;}
.ws4d{word-spacing:-15.420000px;}
.ws79{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.940000px;}
.ws78{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.700000px;}
.ws1e{word-spacing:-14.100000px;}
.ws62{word-spacing:-13.980000px;}
.ws84{word-spacing:-13.920000px;}
.ws5d{word-spacing:-13.800000px;}
.ws86{word-spacing:-13.740000px;}
.ws3c{word-spacing:-13.680000px;}
.ws85{word-spacing:-13.560000px;}
.ws3b{word-spacing:-13.500000px;}
.ws93{word-spacing:-13.392000px;}
.ws9a{word-spacing:-13.338000px;}
.wsa5{word-spacing:-13.284000px;}
.ws7{word-spacing:-13.230000px;}
.ws99{word-spacing:-13.176000px;}
.wsb2{word-spacing:-13.068000px;}
.wsb4{word-spacing:-12.960000px;}
.wsc{word-spacing:-12.150000px;}
.wsa{word-spacing:-11.772000px;}
.ws4{word-spacing:-10.896000px;}
.ws1c{word-spacing:-10.800000px;}
.wsd{word-spacing:-10.464000px;}
.ws3{word-spacing:-9.542544px;}
.ws5{word-spacing:-9.417600px;}
.ws89{word-spacing:-6.840000px;}
.wsa4{word-spacing:-6.372000px;}
.wsa2{word-spacing:-4.374000px;}
.ws5f{word-spacing:-3.180000px;}
.ws2d{word-spacing:-2.880000px;}
.ws90{word-spacing:-2.700000px;}
.ws6b{word-spacing:-2.520000px;}
.ws46{word-spacing:-2.400000px;}
.ws3f{word-spacing:-2.280000px;}
.ws30{word-spacing:-2.220000px;}
.wsa9{word-spacing:-2.214000px;}
.ws8d{word-spacing:-2.040000px;}
.ws25{word-spacing:-1.920000px;}
.ws4f{word-spacing:-1.860000px;}
.wsb6{word-spacing:-1.836000px;}
.ws3d{word-spacing:-1.740000px;}
.ws47{word-spacing:-1.560000px;}
.ws41{word-spacing:-1.500000px;}
.ws49{word-spacing:-1.380000px;}
.ws48{word-spacing:-1.320000px;}
.ws24{word-spacing:-1.260000px;}
.wse{word-spacing:-1.254000px;}
.ws4a{word-spacing:-1.200000px;}
.ws8b{word-spacing:-1.140000px;}
.wsae{word-spacing:-1.134000px;}
.ws98{word-spacing:-1.026000px;}
.ws21{word-spacing:-1.020000px;}
.wsaf{word-spacing:-0.864000px;}
.ws95{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.720000px;}
.wsb3{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.420000px;}
.ws1b{word-spacing:-0.360000px;}
.ws52{word-spacing:-0.300000px;}
.ws37{word-spacing:-0.240000px;}
.wsf{word-spacing:-0.216000px;}
.ws7a{word-spacing:-0.180000px;}
.wsa6{word-spacing:-0.108000px;}
.ws70{word-spacing:-0.066000px;}
.wsb{word-spacing:-0.054000px;}
.ws1d{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsa3{word-spacing:0.054000px;}
.wsad{word-spacing:0.108000px;}
.ws75{word-spacing:0.120000px;}
.ws20{word-spacing:0.180000px;}
.ws2c{word-spacing:0.240000px;}
.wsb7{word-spacing:0.270000px;}
.wsb5{word-spacing:0.324000px;}
.ws5c{word-spacing:0.378000px;}
.ws4b{word-spacing:0.420000px;}
.ws7f{word-spacing:0.480000px;}
.ws31{word-spacing:0.540000px;}
.ws76{word-spacing:0.594000px;}
.ws22{word-spacing:0.600000px;}
.ws11{word-spacing:0.648000px;}
.ws10{word-spacing:0.691200px;}
.ws17{word-spacing:0.702000px;}
.ws6a{word-spacing:0.720000px;}
.ws88{word-spacing:0.780000px;}
.ws50{word-spacing:0.840000px;}
.ws13{word-spacing:0.864000px;}
.ws59{word-spacing:0.900000px;}
.ws42{word-spacing:1.020000px;}
.ws6f{word-spacing:1.026000px;}
.ws4c{word-spacing:1.080000px;}
.ws8f{word-spacing:1.140000px;}
.ws40{word-spacing:1.200000px;}
.ws38{word-spacing:1.320000px;}
.ws3a{word-spacing:1.440000px;}
.ws16{word-spacing:1.458000px;}
.ws28{word-spacing:1.560000px;}
.ws9f{word-spacing:1.566000px;}
.ws91{word-spacing:1.620000px;}
.wsb1{word-spacing:1.728000px;}
.ws6d{word-spacing:1.860000px;}
.ws29{word-spacing:2.220000px;}
.ws5b{word-spacing:2.322000px;}
.ws33{word-spacing:2.460000px;}
.ws14{word-spacing:2.538000px;}
.wsb0{word-spacing:2.646000px;}
.ws2f{word-spacing:2.700000px;}
.ws55{word-spacing:2.760000px;}
.ws56{word-spacing:2.820000px;}
.ws77{word-spacing:2.862000px;}
.ws80{word-spacing:3.060000px;}
.wsa8{word-spacing:3.132000px;}
.ws92{word-spacing:3.180000px;}
.ws19{word-spacing:3.186000px;}
.ws18{word-spacing:3.240000px;}
.ws87{word-spacing:3.300000px;}
.ws51{word-spacing:3.360000px;}
.ws5a{word-spacing:3.402000px;}
.ws94{word-spacing:3.420000px;}
.ws1f{word-spacing:3.600000px;}
.ws32{word-spacing:3.660000px;}
.ws81{word-spacing:3.840000px;}
.ws3e{word-spacing:3.900000px;}
.wsaa{word-spacing:3.996000px;}
.ws54{word-spacing:4.020000px;}
.ws1a{word-spacing:4.140000px;}
.ws36{word-spacing:4.260000px;}
.ws7c{word-spacing:4.320000px;}
.ws96{word-spacing:4.482000px;}
.ws5e{word-spacing:4.500000px;}
.ws26{word-spacing:4.740000px;}
.ws45{word-spacing:4.800000px;}
.ws12{word-spacing:4.806000px;}
.ws27{word-spacing:4.980000px;}
.ws6e{word-spacing:5.400000px;}
.ws44{word-spacing:5.820000px;}
.ws9d{word-spacing:6.048000px;}
.ws9e{word-spacing:6.156000px;}
.ws8c{word-spacing:6.180000px;}
.ws8a{word-spacing:6.420000px;}
.ws2e{word-spacing:6.540000px;}
.ws6c{word-spacing:6.780000px;}
.ws4e{word-spacing:6.840000px;}
.ws83{word-spacing:7.020000px;}
.ws9c{word-spacing:7.074000px;}
.ws23{word-spacing:7.200000px;}
.ws39{word-spacing:7.260000px;}
.wsac{word-spacing:7.344000px;}
.ws97{word-spacing:7.452000px;}
.wsa1{word-spacing:7.560000px;}
.ws61{word-spacing:7.938000px;}
.ws60{word-spacing:7.992000px;}
.ws53{word-spacing:8.040000px;}
.ws58{word-spacing:8.580000px;}
.wsab{word-spacing:8.694000px;}
.ws35{word-spacing:9.000000px;}
.wsa7{word-spacing:9.018000px;}
.ws7e{word-spacing:9.060000px;}
.ws15{word-spacing:9.666000px;}
.ws82{word-spacing:9.900000px;}
.ws9b{word-spacing:10.692000px;}
.ws8e{word-spacing:10.800000px;}
.ws43{word-spacing:11.820000px;}
.ws34{word-spacing:14.880000px;}
.ws2b{word-spacing:17.760000px;}
.ws7b{word-spacing:22.860000px;}
.wsa0{word-spacing:28.674000px;}
.ws1{word-spacing:33.650535px;}
.ws2{word-spacing:33.662250px;}
.ws66{word-spacing:246.327000px;}
.ws67{word-spacing:246.397200px;}
.ws73{word-spacing:297.384600px;}
.ws65{word-spacing:389.084400px;}
.ws68{word-spacing:414.501000px;}
.ws64{word-spacing:429.654000px;}
.ws71{word-spacing:465.525000px;}
.ws72{word-spacing:473.376600px;}
.ws69{word-spacing:479.774400px;}
.ws63{word-spacing:484.521600px;}
.ws74{word-spacing:489.067800px;}
._b{margin-left:-10.515000px;}
._77{margin-left:-9.463200px;}
._2{margin-left:-7.999200px;}
._79{margin-left:-6.987600px;}
._6{margin-left:-5.975400px;}
._3{margin-left:-4.023600px;}
._5{margin-left:-2.550600px;}
._0{margin-left:-1.234200px;}
._1{width:1.468800px;}
._9{width:3.052200px;}
._7{width:4.085400px;}
._8{width:6.037200px;}
._14{width:7.047000px;}
._a{width:8.058000px;}
._10{width:9.180600px;}
._13{width:10.312200px;}
._e{width:11.346000px;}
._f{width:12.420000px;}
._15{width:13.802400px;}
._c{width:16.002000px;}
._d{width:17.118000px;}
._11{width:18.348000px;}
._12{width:19.392000px;}
._7a{width:23.233800px;}
._7b{width:24.737400px;}
._78{width:28.185600px;}
._4{width:36.624000px;}
._76{width:42.528000px;}
._75{width:43.529400px;}
._51{width:180.634200px;}
._1e{width:226.673400px;}
._2f{width:240.017400px;}
._33{width:266.515800px;}
._4e{width:309.217800px;}
._50{width:313.013400px;}
._6b{width:314.878800px;}
._45{width:326.262000px;}
._16{width:330.661200px;}
._26{width:337.483200px;}
._4b{width:346.239000px;}
._46{width:349.284000px;}
._63{width:353.856000px;}
._47{width:357.778200px;}
._23{width:359.064000px;}
._64{width:370.050000px;}
._38{width:374.417400px;}
._1c{width:379.215600px;}
._17{width:384.293400px;}
._57{width:386.645400px;}
._18{width:391.889400px;}
._36{width:398.949600px;}
._1d{width:401.270400px;}
._73{width:402.321000px;}
._37{width:407.495400px;}
._2e{width:408.672600px;}
._3d{width:409.895400px;}
._5d{width:416.686800px;}
._60{width:418.119000px;}
._43{width:434.737200px;}
._3e{width:442.073400px;}
._58{width:443.702400px;}
._27{width:447.132600px;}
._28{width:449.968800px;}
._59{width:452.514000px;}
._4f{width:453.838800px;}
._2c{width:455.529600px;}
._21{width:460.288200px;}
._1f{width:462.792600px;}
._5a{width:468.702000px;}
._24{width:469.707000px;}
._22{width:481.860000px;}
._20{width:484.738800px;}
._40{width:486.088800px;}
._25{width:491.648400px;}
._41{width:494.525400px;}
._39{width:495.640800px;}
._61{width:498.028800px;}
._1b{width:499.901400px;}
._5e{width:502.156800px;}
._3a{width:504.066000px;}
._29{width:505.531200px;}
._4c{width:510.294000px;}
._2a{width:514.971000px;}
._1a{width:517.777800px;}
._30{width:521.914200px;}
._4a{width:525.668400px;}
._5b{width:528.275400px;}
._31{width:530.352600px;}
._55{width:535.331400px;}
._52{width:537.149400px;}
._6a{width:541.771200px;}
._5c{width:544.278000px;}
._56{width:551.946000px;}
._53{width:554.052600px;}
._66{width:557.155200px;}
._32{width:560.177400px;}
._35{width:561.336000px;}
._74{width:567.550800px;}
._62{width:569.002200px;}
._6c{width:572.896200px;}
._67{width:574.498800px;}
._70{width:577.534200px;}
._68{width:581.806800px;}
._6f{width:584.995200px;}
._6d{width:589.879800px;}
._71{width:592.366800px;}
._3f{width:607.878000px;}
._3c{width:628.518000px;}
._34{width:641.345400px;}
._6e{width:664.318800px;}
._54{width:684.574800px;}
._4d{width:685.822800px;}
._5f{width:688.462800px;}
._72{width:708.979200px;}
._65{width:716.590800px;}
._42{width:723.846000px;}
._69{width:730.065000px;}
._19{width:731.873400px;}
._2b{width:744.102000px;}
._2d{width:748.001400px;}
._48{width:768.506400px;}
._44{width:776.118000px;}
._49{width:783.990000px;}
._3b{width:789.592200px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.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;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.036150px;}
.y6f{bottom:113.078850px;}
.yaa{bottom:116.678700px;}
.y2b{bottom:117.212550px;}
.y11{bottom:117.875550px;}
.y8c{bottom:120.500700px;}
.y88{bottom:120.500850px;}
.y10{bottom:132.275550px;}
.y6e{bottom:134.078850px;}
.ya9{bottom:135.883500px;}
.y2a{bottom:138.212550px;}
.y8b{bottom:140.300700px;}
.y87{bottom:140.300850px;}
.yf{bottom:146.675550px;}
.y6d{bottom:155.078850px;}
.ya8{bottom:155.088150px;}
.y29{bottom:159.212550px;}
.y8a{bottom:160.100700px;}
.y86{bottom:160.100850px;}
.ye{bottom:161.075550px;}
.ybb{bottom:169.441050px;}
.ya7{bottom:174.292950px;}
.y6c{bottom:176.078850px;}
.y85{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.ya6{bottom:193.497600px;}
.y6b{bottom:197.078850px;}
.y39{bottom:199.392600px;}
.ya5{bottom:212.702250px;}
.y38{bottom:217.392600px;}
.y6a{bottom:218.078850px;}
.y27{bottom:219.352350px;}
.ya4{bottom:231.907050px;}
.y37{bottom:235.392600px;}
.y69{bottom:239.078850px;}
.ya3{bottom:251.111850px;}
.y36{bottom:253.392600px;}
.y68{bottom:260.078850px;}
.yba{bottom:265.529400px;}
.ya2{bottom:270.316500px;}
.y35{bottom:271.392600px;}
.y67{bottom:281.078850px;}
.y34{bottom:289.392600px;}
.ya1{bottom:289.521300px;}
.y26{bottom:295.627950px;}
.y66{bottom:302.078850px;}
.y33{bottom:307.392600px;}
.ya0{bottom:308.725950px;}
.y81{bottom:309.542550px;}
.y25{bottom:315.427950px;}
.y65{bottom:323.078850px;}
.y32{bottom:325.392600px;}
.y9f{bottom:327.930750px;}
.y80{bottom:329.342550px;}
.y82{bottom:337.441050px;}
.y31{bottom:343.392600px;}
.y64{bottom:344.078850px;}
.y9e{bottom:347.135400px;}
.y24{bottom:356.487750px;}
.y30{bottom:361.392600px;}
.y63{bottom:365.078850px;}
.y9d{bottom:366.340200px;}
.y23{bottom:376.287750px;}
.y7f{bottom:379.441050px;}
.y9c{bottom:385.544850px;}
.y62{bottom:386.078850px;}
.y22{bottom:396.087750px;}
.y2f{bottom:396.400500px;}
.y9b{bottom:404.749650px;}
.y61{bottom:407.078850px;}
.y2e{bottom:414.400500px;}
.y21{bottom:415.887750px;}
.y9a{bottom:423.954300px;}
.y60{bottom:428.078850px;}
.y2d{bottom:432.400500px;}
.yb9{bottom:433.529400px;}
.y20{bottom:435.687750px;}
.y99{bottom:443.159100px;}
.y5f{bottom:449.078850px;}
.y2c{bottom:450.400500px;}
.y1f{bottom:455.487750px;}
.y98{bottom:462.363750px;}
.y5e{bottom:470.078850px;}
.y1e{bottom:475.287750px;}
.y97{bottom:481.568550px;}
.y5d{bottom:491.078850px;}
.y1d{bottom:495.087750px;}
.y96{bottom:500.773200px;}
.y5c{bottom:512.078850px;}
.y1c{bottom:514.887750px;}
.y95{bottom:519.977850px;}
.y5b{bottom:533.078850px;}
.y1b{bottom:534.687750px;}
.yb8{bottom:538.529400px;}
.y94{bottom:539.182650px;}
.y5a{bottom:554.078850px;}
.y1a{bottom:554.487750px;}
.y93{bottom:558.387300px;}
.y19{bottom:574.287750px;}
.y59{bottom:575.078850px;}
.y92{bottom:577.592100px;}
.y18{bottom:594.087750px;}
.y58{bottom:596.078850px;}
.y91{bottom:597.096750px;}
.y17{bottom:613.887750px;}
.y57{bottom:617.078850px;}
.yb7{bottom:622.529400px;}
.y90{bottom:627.578700px;}
.yc0{bottom:630.513600px;}
.y16{bottom:633.687750px;}
.y56{bottom:638.078850px;}
.y8f{bottom:647.378700px;}
.ybf{bottom:651.513600px;}
.y15{bottom:653.487750px;}
.y55{bottom:659.078850px;}
.y8e{bottom:667.178700px;}
.y14{bottom:673.287750px;}
.y54{bottom:680.078850px;}
.ybe{bottom:683.811150px;}
.yb6{bottom:685.529400px;}
.yb0{bottom:686.978700px;}
.yb1{bottom:694.441050px;}
.y53{bottom:701.078850px;}
.y13{bottom:704.385150px;}
.y52{bottom:722.078850px;}
.yaf{bottom:743.078550px;}
.y51{bottom:743.078850px;}
.yb5{bottom:748.529400px;}
.yae{bottom:764.078550px;}
.y50{bottom:764.078850px;}
.y7e{bottom:777.513600px;}
.yd{bottom:783.666900px;}
.y4f{bottom:785.078850px;}
.yad{bottom:799.440900px;}
.yc{bottom:801.666900px;}
.y4e{bottom:806.078850px;}
.y7d{bottom:809.811000px;}
.yb4{bottom:811.937100px;}
.yb{bottom:819.666900px;}
.yac{bottom:820.440900px;}
.y4d{bottom:827.078850px;}
.ya{bottom:837.666900px;}
.yb3{bottom:841.441050px;}
.y4c{bottom:848.078850px;}
.y9{bottom:855.666900px;}
.y7c{bottom:869.078700px;}
.y4b{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.y7b{bottom:890.078700px;}
.y4a{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.y7a{bottom:911.078700px;}
.y49{bottom:911.078850px;}
.y6{bottom:926.674650px;}
.y79{bottom:932.078700px;}
.y48{bottom:932.078850px;}
.y89{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.y78{bottom:953.078700px;}
.y47{bottom:953.078850px;}
.y84{bottom:966.513600px;}
.y77{bottom:974.078700px;}
.y46{bottom:974.078850px;}
.y4{bottom:983.282550px;}
.ybd{bottom:987.513600px;}
.yb2{bottom:988.441050px;}
.y76{bottom:995.078700px;}
.y45{bottom:995.078850px;}
.y83{bottom:998.811000px;}
.y75{bottom:1016.078700px;}
.y44{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ybc{bottom:1019.811000px;}
.y74{bottom:1037.078700px;}
.y43{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y73{bottom:1058.078700px;}
.y42{bottom:1058.078850px;}
.y72{bottom:1079.078700px;}
.y41{bottom:1079.078850px;}
.y71{bottom:1100.078700px;}
.y40{bottom:1100.078850px;}
.y12{bottom:1109.815500px;}
.yab{bottom:1114.821750px;}
.y8d{bottom:1114.821900px;}
.y70{bottom:1121.078700px;}
.y3f{bottom:1121.078850px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y3e{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h10{height:36.492188px;}
.h2{height:38.039062px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.h11{height:39.000000px;}
.h7{height:41.053711px;}
.hd{height:42.793945px;}
.hc{height:43.057617px;}
.h9{height:43.875000px;}
.h8{height:45.615234px;}
.h13{height:47.343750px;}
.hb{height:48.750000px;}
.hf{height:50.176758px;}
.h12{height:52.078125px;}
.h4{height:53.625000px;}
.ha{height:54.738281px;}
.h3{height:77.545898px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.xe{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.xd{left:185.946600px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x3{left:396.050700px;}
.x9{left:648.674850px;}
.x8{left:668.350500px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.906667pt;}
.lsc{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.090667pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.022933pt;}
.lse{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ws8{word-spacing:-15.936000pt;}
.ws57{word-spacing:-14.608000pt;}
.ws4d{word-spacing:-13.706667pt;}
.ws79{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws78{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.066667pt;}
.ws1e{word-spacing:-12.533333pt;}
.ws62{word-spacing:-12.426667pt;}
.ws84{word-spacing:-12.373333pt;}
.ws5d{word-spacing:-12.266667pt;}
.ws86{word-spacing:-12.213333pt;}
.ws3c{word-spacing:-12.160000pt;}
.ws85{word-spacing:-12.053333pt;}
.ws3b{word-spacing:-12.000000pt;}
.ws93{word-spacing:-11.904000pt;}
.ws9a{word-spacing:-11.856000pt;}
.wsa5{word-spacing:-11.808000pt;}
.ws7{word-spacing:-11.760000pt;}
.ws99{word-spacing:-11.712000pt;}
.wsb2{word-spacing:-11.616000pt;}
.wsb4{word-spacing:-11.520000pt;}
.wsc{word-spacing:-10.800000pt;}
.wsa{word-spacing:-10.464000pt;}
.ws4{word-spacing:-9.685333pt;}
.ws1c{word-spacing:-9.600000pt;}
.wsd{word-spacing:-9.301333pt;}
.ws3{word-spacing:-8.482261pt;}
.ws5{word-spacing:-8.371200pt;}
.ws89{word-spacing:-6.080000pt;}
.wsa4{word-spacing:-5.664000pt;}
.wsa2{word-spacing:-3.888000pt;}
.ws5f{word-spacing:-2.826667pt;}
.ws2d{word-spacing:-2.560000pt;}
.ws90{word-spacing:-2.400000pt;}
.ws6b{word-spacing:-2.240000pt;}
.ws46{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-2.026667pt;}
.ws30{word-spacing:-1.973333pt;}
.wsa9{word-spacing:-1.968000pt;}
.ws8d{word-spacing:-1.813333pt;}
.ws25{word-spacing:-1.706667pt;}
.ws4f{word-spacing:-1.653333pt;}
.wsb6{word-spacing:-1.632000pt;}
.ws3d{word-spacing:-1.546667pt;}
.ws47{word-spacing:-1.386667pt;}
.ws41{word-spacing:-1.333333pt;}
.ws49{word-spacing:-1.226667pt;}
.ws48{word-spacing:-1.173333pt;}
.ws24{word-spacing:-1.120000pt;}
.wse{word-spacing:-1.114667pt;}
.ws4a{word-spacing:-1.066667pt;}
.ws8b{word-spacing:-1.013333pt;}
.wsae{word-spacing:-1.008000pt;}
.ws98{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.906667pt;}
.wsaf{word-spacing:-0.768000pt;}
.ws95{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.640000pt;}
.wsb3{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.373333pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws52{word-spacing:-0.266667pt;}
.ws37{word-spacing:-0.213333pt;}
.wsf{word-spacing:-0.192000pt;}
.ws7a{word-spacing:-0.160000pt;}
.wsa6{word-spacing:-0.096000pt;}
.ws70{word-spacing:-0.058667pt;}
.wsb{word-spacing:-0.048000pt;}
.ws1d{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.048000pt;}
.wsad{word-spacing:0.096000pt;}
.ws75{word-spacing:0.106667pt;}
.ws20{word-spacing:0.160000pt;}
.ws2c{word-spacing:0.213333pt;}
.wsb7{word-spacing:0.240000pt;}
.wsb5{word-spacing:0.288000pt;}
.ws5c{word-spacing:0.336000pt;}
.ws4b{word-spacing:0.373333pt;}
.ws7f{word-spacing:0.426667pt;}
.ws31{word-spacing:0.480000pt;}
.ws76{word-spacing:0.528000pt;}
.ws22{word-spacing:0.533333pt;}
.ws11{word-spacing:0.576000pt;}
.ws10{word-spacing:0.614400pt;}
.ws17{word-spacing:0.624000pt;}
.ws6a{word-spacing:0.640000pt;}
.ws88{word-spacing:0.693333pt;}
.ws50{word-spacing:0.746667pt;}
.ws13{word-spacing:0.768000pt;}
.ws59{word-spacing:0.800000pt;}
.ws42{word-spacing:0.906667pt;}
.ws6f{word-spacing:0.912000pt;}
.ws4c{word-spacing:0.960000pt;}
.ws8f{word-spacing:1.013333pt;}
.ws40{word-spacing:1.066667pt;}
.ws38{word-spacing:1.173333pt;}
.ws3a{word-spacing:1.280000pt;}
.ws16{word-spacing:1.296000pt;}
.ws28{word-spacing:1.386667pt;}
.ws9f{word-spacing:1.392000pt;}
.ws91{word-spacing:1.440000pt;}
.wsb1{word-spacing:1.536000pt;}
.ws6d{word-spacing:1.653333pt;}
.ws29{word-spacing:1.973333pt;}
.ws5b{word-spacing:2.064000pt;}
.ws33{word-spacing:2.186667pt;}
.ws14{word-spacing:2.256000pt;}
.wsb0{word-spacing:2.352000pt;}
.ws2f{word-spacing:2.400000pt;}
.ws55{word-spacing:2.453333pt;}
.ws56{word-spacing:2.506667pt;}
.ws77{word-spacing:2.544000pt;}
.ws80{word-spacing:2.720000pt;}
.wsa8{word-spacing:2.784000pt;}
.ws92{word-spacing:2.826667pt;}
.ws19{word-spacing:2.832000pt;}
.ws18{word-spacing:2.880000pt;}
.ws87{word-spacing:2.933333pt;}
.ws51{word-spacing:2.986667pt;}
.ws5a{word-spacing:3.024000pt;}
.ws94{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.200000pt;}
.ws32{word-spacing:3.253333pt;}
.ws81{word-spacing:3.413333pt;}
.ws3e{word-spacing:3.466667pt;}
.wsaa{word-spacing:3.552000pt;}
.ws54{word-spacing:3.573333pt;}
.ws1a{word-spacing:3.680000pt;}
.ws36{word-spacing:3.786667pt;}
.ws7c{word-spacing:3.840000pt;}
.ws96{word-spacing:3.984000pt;}
.ws5e{word-spacing:4.000000pt;}
.ws26{word-spacing:4.213333pt;}
.ws45{word-spacing:4.266667pt;}
.ws12{word-spacing:4.272000pt;}
.ws27{word-spacing:4.426667pt;}
.ws6e{word-spacing:4.800000pt;}
.ws44{word-spacing:5.173333pt;}
.ws9d{word-spacing:5.376000pt;}
.ws9e{word-spacing:5.472000pt;}
.ws8c{word-spacing:5.493333pt;}
.ws8a{word-spacing:5.706667pt;}
.ws2e{word-spacing:5.813333pt;}
.ws6c{word-spacing:6.026667pt;}
.ws4e{word-spacing:6.080000pt;}
.ws83{word-spacing:6.240000pt;}
.ws9c{word-spacing:6.288000pt;}
.ws23{word-spacing:6.400000pt;}
.ws39{word-spacing:6.453333pt;}
.wsac{word-spacing:6.528000pt;}
.ws97{word-spacing:6.624000pt;}
.wsa1{word-spacing:6.720000pt;}
.ws61{word-spacing:7.056000pt;}
.ws60{word-spacing:7.104000pt;}
.ws53{word-spacing:7.146667pt;}
.ws58{word-spacing:7.626667pt;}
.wsab{word-spacing:7.728000pt;}
.ws35{word-spacing:8.000000pt;}
.wsa7{word-spacing:8.016000pt;}
.ws7e{word-spacing:8.053333pt;}
.ws15{word-spacing:8.592000pt;}
.ws82{word-spacing:8.800000pt;}
.ws9b{word-spacing:9.504000pt;}
.ws8e{word-spacing:9.600000pt;}
.ws43{word-spacing:10.506667pt;}
.ws34{word-spacing:13.226667pt;}
.ws2b{word-spacing:15.786667pt;}
.ws7b{word-spacing:20.320000pt;}
.wsa0{word-spacing:25.488000pt;}
.ws1{word-spacing:29.911587pt;}
.ws2{word-spacing:29.922000pt;}
.ws66{word-spacing:218.957333pt;}
.ws67{word-spacing:219.019733pt;}
.ws73{word-spacing:264.341867pt;}
.ws65{word-spacing:345.852800pt;}
.ws68{word-spacing:368.445333pt;}
.ws64{word-spacing:381.914667pt;}
.ws71{word-spacing:413.800000pt;}
.ws72{word-spacing:420.779200pt;}
.ws69{word-spacing:426.466133pt;}
.ws63{word-spacing:430.685867pt;}
.ws74{word-spacing:434.726933pt;}
._b{margin-left:-9.346667pt;}
._77{margin-left:-8.411733pt;}
._2{margin-left:-7.110400pt;}
._79{margin-left:-6.211200pt;}
._6{margin-left:-5.311467pt;}
._3{margin-left:-3.576533pt;}
._5{margin-left:-2.267200pt;}
._0{margin-left:-1.097067pt;}
._1{width:1.305600pt;}
._9{width:2.713067pt;}
._7{width:3.631467pt;}
._8{width:5.366400pt;}
._14{width:6.264000pt;}
._a{width:7.162667pt;}
._10{width:8.160533pt;}
._13{width:9.166400pt;}
._e{width:10.085333pt;}
._f{width:11.040000pt;}
._15{width:12.268800pt;}
._c{width:14.224000pt;}
._d{width:15.216000pt;}
._11{width:16.309333pt;}
._12{width:17.237333pt;}
._7a{width:20.652267pt;}
._7b{width:21.988800pt;}
._78{width:25.053867pt;}
._4{width:32.554667pt;}
._76{width:37.802667pt;}
._75{width:38.692800pt;}
._51{width:160.563733pt;}
._1e{width:201.487467pt;}
._2f{width:213.348800pt;}
._33{width:236.902933pt;}
._4e{width:274.860267pt;}
._50{width:278.234133pt;}
._6b{width:279.892267pt;}
._45{width:290.010667pt;}
._16{width:293.921067pt;}
._26{width:299.985067pt;}
._4b{width:307.768000pt;}
._46{width:310.474667pt;}
._63{width:314.538667pt;}
._47{width:318.025067pt;}
._23{width:319.168000pt;}
._64{width:328.933333pt;}
._38{width:332.815467pt;}
._1c{width:337.080533pt;}
._17{width:341.594133pt;}
._57{width:343.684800pt;}
._18{width:348.346133pt;}
._36{width:354.621867pt;}
._1d{width:356.684800pt;}
._73{width:357.618667pt;}
._37{width:362.218133pt;}
._2e{width:363.264533pt;}
._3d{width:364.351467pt;}
._5d{width:370.388267pt;}
._60{width:371.661333pt;}
._43{width:386.433067pt;}
._3e{width:392.954133pt;}
._58{width:394.402133pt;}
._27{width:397.451200pt;}
._28{width:399.972267pt;}
._59{width:402.234667pt;}
._4f{width:403.412267pt;}
._2c{width:404.915200pt;}
._21{width:409.145067pt;}
._1f{width:411.371200pt;}
._5a{width:416.624000pt;}
._24{width:417.517333pt;}
._22{width:428.320000pt;}
._20{width:430.878933pt;}
._40{width:432.078933pt;}
._25{width:437.020800pt;}
._41{width:439.578133pt;}
._39{width:440.569600pt;}
._61{width:442.692267pt;}
._1b{width:444.356800pt;}
._5e{width:446.361600pt;}
._3a{width:448.058667pt;}
._29{width:449.361067pt;}
._4c{width:453.594667pt;}
._2a{width:457.752000pt;}
._1a{width:460.246933pt;}
._30{width:463.923733pt;}
._4a{width:467.260800pt;}
._5b{width:469.578133pt;}
._31{width:471.424533pt;}
._55{width:475.850133pt;}
._52{width:477.466133pt;}
._6a{width:481.574400pt;}
._5c{width:483.802667pt;}
._56{width:490.618667pt;}
._53{width:492.491200pt;}
._66{width:495.249067pt;}
._32{width:497.935467pt;}
._35{width:498.965333pt;}
._74{width:504.489600pt;}
._62{width:505.779733pt;}
._6c{width:509.241067pt;}
._67{width:510.665600pt;}
._70{width:513.363733pt;}
._68{width:517.161600pt;}
._6f{width:519.995733pt;}
._6d{width:524.337600pt;}
._71{width:526.548267pt;}
._3f{width:540.336000pt;}
._3c{width:558.682667pt;}
._34{width:570.084800pt;}
._6e{width:590.505600pt;}
._54{width:608.510933pt;}
._4d{width:609.620267pt;}
._5f{width:611.966933pt;}
._72{width:630.203733pt;}
._65{width:636.969600pt;}
._42{width:643.418667pt;}
._69{width:648.946667pt;}
._19{width:650.554133pt;}
._2b{width:661.424000pt;}
._2d{width:664.890133pt;}
._48{width:683.116800pt;}
._44{width:689.882667pt;}
._49{width:696.880000pt;}
._3b{width:701.859733pt;}
.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;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.698800pt;}
.y6f{bottom:100.514533pt;}
.yaa{bottom:103.714400pt;}
.y2b{bottom:104.188933pt;}
.y11{bottom:104.778267pt;}
.y8c{bottom:107.111733pt;}
.y88{bottom:107.111867pt;}
.y10{bottom:117.578267pt;}
.y6e{bottom:119.181200pt;}
.ya9{bottom:120.785333pt;}
.y2a{bottom:122.855600pt;}
.y8b{bottom:124.711733pt;}
.y87{bottom:124.711867pt;}
.yf{bottom:130.378267pt;}
.y6d{bottom:137.847867pt;}
.ya8{bottom:137.856133pt;}
.y29{bottom:141.522267pt;}
.y8a{bottom:142.311733pt;}
.y86{bottom:142.311867pt;}
.ye{bottom:143.178267pt;}
.ybb{bottom:150.614267pt;}
.ya7{bottom:154.927067pt;}
.y6c{bottom:156.514533pt;}
.y85{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.ya6{bottom:171.997867pt;}
.y6b{bottom:175.181200pt;}
.y39{bottom:177.237867pt;}
.ya5{bottom:189.068667pt;}
.y38{bottom:193.237867pt;}
.y6a{bottom:193.847867pt;}
.y27{bottom:194.979867pt;}
.ya4{bottom:206.139600pt;}
.y37{bottom:209.237867pt;}
.y69{bottom:212.514533pt;}
.ya3{bottom:223.210533pt;}
.y36{bottom:225.237867pt;}
.y68{bottom:231.181200pt;}
.yba{bottom:236.026133pt;}
.ya2{bottom:240.281333pt;}
.y35{bottom:241.237867pt;}
.y67{bottom:249.847867pt;}
.y34{bottom:257.237867pt;}
.ya1{bottom:257.352267pt;}
.y26{bottom:262.780400pt;}
.y66{bottom:268.514533pt;}
.y33{bottom:273.237867pt;}
.ya0{bottom:274.423067pt;}
.y81{bottom:275.148933pt;}
.y25{bottom:280.380400pt;}
.y65{bottom:287.181200pt;}
.y32{bottom:289.237867pt;}
.y9f{bottom:291.494000pt;}
.y80{bottom:292.748933pt;}
.y82{bottom:299.947600pt;}
.y31{bottom:305.237867pt;}
.y64{bottom:305.847867pt;}
.y9e{bottom:308.564800pt;}
.y24{bottom:316.878000pt;}
.y30{bottom:321.237867pt;}
.y63{bottom:324.514533pt;}
.y9d{bottom:325.635733pt;}
.y23{bottom:334.478000pt;}
.y7f{bottom:337.280933pt;}
.y9c{bottom:342.706533pt;}
.y62{bottom:343.181200pt;}
.y22{bottom:352.078000pt;}
.y2f{bottom:352.356000pt;}
.y9b{bottom:359.777467pt;}
.y61{bottom:361.847867pt;}
.y2e{bottom:368.356000pt;}
.y21{bottom:369.678000pt;}
.y9a{bottom:376.848267pt;}
.y60{bottom:380.514533pt;}
.y2d{bottom:384.356000pt;}
.yb9{bottom:385.359467pt;}
.y20{bottom:387.278000pt;}
.y99{bottom:393.919200pt;}
.y5f{bottom:399.181200pt;}
.y2c{bottom:400.356000pt;}
.y1f{bottom:404.878000pt;}
.y98{bottom:410.990000pt;}
.y5e{bottom:417.847867pt;}
.y1e{bottom:422.478000pt;}
.y97{bottom:428.060933pt;}
.y5d{bottom:436.514533pt;}
.y1d{bottom:440.078000pt;}
.y96{bottom:445.131733pt;}
.y5c{bottom:455.181200pt;}
.y1c{bottom:457.678000pt;}
.y95{bottom:462.202533pt;}
.y5b{bottom:473.847867pt;}
.y1b{bottom:475.278000pt;}
.yb8{bottom:478.692800pt;}
.y94{bottom:479.273467pt;}
.y5a{bottom:492.514533pt;}
.y1a{bottom:492.878000pt;}
.y93{bottom:496.344267pt;}
.y19{bottom:510.478000pt;}
.y59{bottom:511.181200pt;}
.y92{bottom:513.415200pt;}
.y18{bottom:528.078000pt;}
.y58{bottom:529.847867pt;}
.y91{bottom:530.752667pt;}
.y17{bottom:545.678000pt;}
.y57{bottom:548.514533pt;}
.yb7{bottom:553.359467pt;}
.y90{bottom:557.847733pt;}
.yc0{bottom:560.456533pt;}
.y16{bottom:563.278000pt;}
.y56{bottom:567.181200pt;}
.y8f{bottom:575.447733pt;}
.ybf{bottom:579.123200pt;}
.y15{bottom:580.878000pt;}
.y55{bottom:585.847867pt;}
.y8e{bottom:593.047733pt;}
.y14{bottom:598.478000pt;}
.y54{bottom:604.514533pt;}
.ybe{bottom:607.832133pt;}
.yb6{bottom:609.359467pt;}
.yb0{bottom:610.647733pt;}
.yb1{bottom:617.280933pt;}
.y53{bottom:623.181200pt;}
.y13{bottom:626.120133pt;}
.y52{bottom:641.847867pt;}
.yaf{bottom:660.514267pt;}
.y51{bottom:660.514533pt;}
.yb5{bottom:665.359467pt;}
.yae{bottom:679.180933pt;}
.y50{bottom:679.181200pt;}
.y7e{bottom:691.123200pt;}
.yd{bottom:696.592800pt;}
.y4f{bottom:697.847867pt;}
.yad{bottom:710.614133pt;}
.yc{bottom:712.592800pt;}
.y4e{bottom:716.514533pt;}
.y7d{bottom:719.832000pt;}
.yb4{bottom:721.721867pt;}
.yb{bottom:728.592800pt;}
.yac{bottom:729.280800pt;}
.y4d{bottom:735.181200pt;}
.ya{bottom:744.592800pt;}
.yb3{bottom:747.947600pt;}
.y4c{bottom:753.847867pt;}
.y9{bottom:760.592800pt;}
.y7c{bottom:772.514400pt;}
.y4b{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.y7b{bottom:791.181067pt;}
.y4a{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.y7a{bottom:809.847733pt;}
.y49{bottom:809.847867pt;}
.y6{bottom:823.710800pt;}
.y79{bottom:828.514400pt;}
.y48{bottom:828.514533pt;}
.y89{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.y78{bottom:847.181067pt;}
.y47{bottom:847.181200pt;}
.y84{bottom:859.123200pt;}
.y77{bottom:865.847733pt;}
.y46{bottom:865.847867pt;}
.y4{bottom:874.028933pt;}
.ybd{bottom:877.789867pt;}
.yb2{bottom:878.614267pt;}
.y76{bottom:884.514400pt;}
.y45{bottom:884.514533pt;}
.y83{bottom:887.832000pt;}
.y75{bottom:903.181067pt;}
.y44{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ybc{bottom:906.498667pt;}
.y74{bottom:921.847733pt;}
.y43{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y73{bottom:940.514400pt;}
.y42{bottom:940.514533pt;}
.y72{bottom:959.181067pt;}
.y41{bottom:959.181200pt;}
.y71{bottom:977.847733pt;}
.y40{bottom:977.847867pt;}
.y12{bottom:986.502667pt;}
.yab{bottom:990.952667pt;}
.y8d{bottom:990.952800pt;}
.y70{bottom:996.514400pt;}
.y3f{bottom:996.514533pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y3e{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h10{height:32.437500pt;}
.h2{height:33.812500pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.h11{height:34.666667pt;}
.h7{height:36.492188pt;}
.hd{height:38.039062pt;}
.hc{height:38.273438pt;}
.h9{height:39.000000pt;}
.h8{height:40.546875pt;}
.h13{height:42.083333pt;}
.hb{height:43.333333pt;}
.hf{height:44.601562pt;}
.h12{height:46.291667pt;}
.h4{height:47.666667pt;}
.ha{height:48.656250pt;}
.h3{height:68.929688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.xe{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.xd{left:165.285867pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x3{left:352.045067pt;}
.x9{left:576.599867pt;}
.x8{left:594.089333pt;}
.x1{left:712.311867pt;}
}




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