
    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_ff5e5ab2bc40f1ce9ab2fa67.woff')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_ff8d9e0faac3a4f870948e39.woff')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_dd5ccc38e14ceb099f3cc320.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_473369224129c30be2a5a79c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_269cb65525ba267833c3c014.woff')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_9d49dfedd28a6fb9fbf56495.woff')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_357d36043d707ca583291229.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1dee8ac6615cd764570547b6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cdd78e122d1e9748a4684493.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a2802c7af1726e140a7239ee.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ce60025c8d49f747783f61c9.woff')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_9317440505310a4d1fb9f743.woff')format("woff");}.ffc{font-family:ffc;line-height:0.731596;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_f570f8bee25344d122ace7f8.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_02c71f915a6d885171c13f6b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.106445;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_cc76d508f412df1137fb354f.woff')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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_fd6bfb88714e271ae5c70f64.woff')format("woff");}.ff10{font-family:ff10;line-height:0.771632;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);}
.v3{vertical-align:-8.409600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:38.409600px;}
.lsc{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.600000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.025800px;}
.ls7{letter-spacing:0.408000px;}
.lse{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.053000px;}
.ls3{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.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;}
}
.ws4{word-spacing:-48.000000px;}
.ws0{word-spacing:-25.602000px;}
.ws8{word-spacing:-17.928000px;}
.wsad{word-spacing:-16.434000px;}
.ws9{word-spacing:-15.900000px;}
.ws7e{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws2c{word-spacing:-14.700000px;}
.wsd1{word-spacing:-14.472000px;}
.wsd2{word-spacing:-14.445000px;}
.ws7{word-spacing:-14.310000px;}
.wsa4{word-spacing:-13.500000px;}
.wsaf{word-spacing:-13.446000px;}
.wsae{word-spacing:-13.392000px;}
.ws7f{word-spacing:-13.230000px;}
.wsc{word-spacing:-12.150000px;}
.ws8c{word-spacing:-11.952000px;}
.wsa{word-spacing:-11.772000px;}
.ws3{word-spacing:-11.371200px;}
.ws2a{word-spacing:-10.800000px;}
.wsd{word-spacing:-10.464000px;}
.ws1{word-spacing:-9.542544px;}
.ws5{word-spacing:-9.417600px;}
.ws82{word-spacing:-3.960000px;}
.ws94{word-spacing:-3.720000px;}
.wsd3{word-spacing:-3.618000px;}
.ws1c{word-spacing:-3.564000px;}
.wsa3{word-spacing:-3.024000px;}
.ws7c{word-spacing:-3.000000px;}
.ws63{word-spacing:-2.916000px;}
.ws74{word-spacing:-2.880000px;}
.ws64{word-spacing:-2.862000px;}
.ws23{word-spacing:-2.700000px;}
.ws75{word-spacing:-2.640000px;}
.ws54{word-spacing:-2.400000px;}
.ws31{word-spacing:-2.340000px;}
.wse2{word-spacing:-2.268000px;}
.ws20{word-spacing:-2.214000px;}
.ws95{word-spacing:-2.160000px;}
.wse6{word-spacing:-2.106000px;}
.ws62{word-spacing:-2.040000px;}
.ws16{word-spacing:-1.998000px;}
.ws33{word-spacing:-1.980000px;}
.ws4a{word-spacing:-1.920000px;}
.wsd4{word-spacing:-1.890000px;}
.ws4b{word-spacing:-1.860000px;}
.ws83{word-spacing:-1.740000px;}
.wsc5{word-spacing:-1.620000px;}
.wsa7{word-spacing:-1.500000px;}
.wsb0{word-spacing:-1.458000px;}
.ws51{word-spacing:-1.440000px;}
.wsc0{word-spacing:-1.404000px;}
.wsb1{word-spacing:-1.350000px;}
.ws89{word-spacing:-1.320000px;}
.wsf{word-spacing:-1.254000px;}
.wsb7{word-spacing:-1.242000px;}
.ws34{word-spacing:-1.200000px;}
.wsb8{word-spacing:-1.188000px;}
.wse7{word-spacing:-1.134000px;}
.ws93{word-spacing:-1.080000px;}
.wsb3{word-spacing:-1.026000px;}
.ws72{word-spacing:-1.020000px;}
.ws3a{word-spacing:-0.960000px;}
.wsc6{word-spacing:-0.918000px;}
.ws57{word-spacing:-0.780000px;}
.ws35{word-spacing:-0.720000px;}
.ws7b{word-spacing:-0.660000px;}
.wsb2{word-spacing:-0.648000px;}
.ws80{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.594000px;}
.ws92{word-spacing:-0.540000px;}
.ws76{word-spacing:-0.420000px;}
.ws5b{word-spacing:-0.360000px;}
.wsdd{word-spacing:-0.324000px;}
.ws10{word-spacing:-0.216000px;}
.ws79{word-spacing:-0.180000px;}
.wse5{word-spacing:-0.162000px;}
.wsb{word-spacing:-0.054000px;}
.ws2b{word-spacing:-0.048000px;}
.wse{word-spacing:0.000000px;}
.wsea{word-spacing:0.054000px;}
.ws46{word-spacing:0.060000px;}
.ws12{word-spacing:0.162000px;}
.ws56{word-spacing:0.180000px;}
.ws70{word-spacing:0.300000px;}
.wscc{word-spacing:0.378000px;}
.ws60{word-spacing:0.420000px;}
.ws73{word-spacing:0.600000px;}
.ws39{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.ws38{word-spacing:0.720000px;}
.ws45{word-spacing:0.780000px;}
.wsb5{word-spacing:0.810000px;}
.wsb4{word-spacing:0.864000px;}
.ws61{word-spacing:0.900000px;}
.wsd6{word-spacing:0.918000px;}
.ws7a{word-spacing:0.960000px;}
.ws59{word-spacing:1.020000px;}
.wsdf{word-spacing:1.026000px;}
.wsb6{word-spacing:1.080000px;}
.wsbc{word-spacing:1.188000px;}
.wsa8{word-spacing:1.200000px;}
.ws50{word-spacing:1.260000px;}
.wsc1{word-spacing:1.296000px;}
.ws97{word-spacing:1.320000px;}
.ws5f{word-spacing:1.380000px;}
.wsa6{word-spacing:1.440000px;}
.wsa5{word-spacing:1.620000px;}
.ws1a{word-spacing:1.728000px;}
.wse9{word-spacing:1.782000px;}
.ws42{word-spacing:1.800000px;}
.ws58{word-spacing:1.980000px;}
.wsc4{word-spacing:2.214000px;}
.ws9d{word-spacing:2.280000px;}
.ws81{word-spacing:2.340000px;}
.ws26{word-spacing:2.400000px;}
.wsd8{word-spacing:2.538000px;}
.ws36{word-spacing:2.820000px;}
.ws37{word-spacing:2.880000px;}
.ws8b{word-spacing:2.916000px;}
.wscd{word-spacing:2.970000px;}
.wsb9{word-spacing:3.024000px;}
.ws78{word-spacing:3.060000px;}
.wsdb{word-spacing:3.078000px;}
.ws30{word-spacing:3.180000px;}
.wsa9{word-spacing:3.240000px;}
.ws24{word-spacing:3.420000px;}
.wsc3{word-spacing:3.510000px;}
.ws44{word-spacing:3.540000px;}
.ws9b{word-spacing:3.600000px;}
.wse3{word-spacing:3.618000px;}
.ws9a{word-spacing:3.660000px;}
.ws47{word-spacing:3.720000px;}
.ws5c{word-spacing:3.780000px;}
.ws5d{word-spacing:3.840000px;}
.wsc9{word-spacing:4.050000px;}
.ws28{word-spacing:4.140000px;}
.ws19{word-spacing:4.320000px;}
.ws18{word-spacing:4.374000px;}
.wscf{word-spacing:4.428000px;}
.ws88{word-spacing:4.440000px;}
.wsce{word-spacing:4.482000px;}
.ws52{word-spacing:4.500000px;}
.ws99{word-spacing:4.560000px;}
.ws98{word-spacing:4.620000px;}
.wscb{word-spacing:4.644000px;}
.ws29{word-spacing:4.680000px;}
.ws3c{word-spacing:4.800000px;}
.ws9e{word-spacing:4.860000px;}
.wsc8{word-spacing:4.914000px;}
.wsaa{word-spacing:4.920000px;}
.wsc7{word-spacing:4.968000px;}
.ws8a{word-spacing:5.040000px;}
.ws3d{word-spacing:5.100000px;}
.ws84{word-spacing:5.220000px;}
.ws85{word-spacing:5.280000px;}
.wsbd{word-spacing:5.292000px;}
.ws2f{word-spacing:5.340000px;}
.wsd5{word-spacing:5.508000px;}
.ws3b{word-spacing:5.520000px;}
.wsac{word-spacing:5.670000px;}
.ws32{word-spacing:5.700000px;}
.wsab{word-spacing:5.724000px;}
.wsbf{word-spacing:5.778000px;}
.wsa0{word-spacing:5.820000px;}
.ws1f{word-spacing:5.832000px;}
.ws3e{word-spacing:6.000000px;}
.ws4c{word-spacing:6.060000px;}
.wsde{word-spacing:6.318000px;}
.ws14{word-spacing:6.372000px;}
.wsc2{word-spacing:6.480000px;}
.wsbb{word-spacing:6.534000px;}
.ws3f{word-spacing:6.540000px;}
.wsd0{word-spacing:6.588000px;}
.wsa2{word-spacing:6.696000px;}
.wsa1{word-spacing:6.750000px;}
.ws40{word-spacing:6.780000px;}
.ws53{word-spacing:6.900000px;}
.ws5a{word-spacing:6.960000px;}
.ws1d{word-spacing:6.966000px;}
.ws25{word-spacing:7.020000px;}
.wsda{word-spacing:7.074000px;}
.wse4{word-spacing:7.128000px;}
.ws21{word-spacing:7.200000px;}
.ws9c{word-spacing:7.260000px;}
.ws4f{word-spacing:7.320000px;}
.ws2d{word-spacing:7.380000px;}
.ws5e{word-spacing:7.440000px;}
.ws77{word-spacing:7.500000px;}
.ws41{word-spacing:7.680000px;}
.wsd9{word-spacing:7.722000px;}
.ws55{word-spacing:7.800000px;}
.ws27{word-spacing:8.160000px;}
.wse1{word-spacing:8.208000px;}
.wse0{word-spacing:8.478000px;}
.ws15{word-spacing:8.532000px;}
.ws71{word-spacing:8.760000px;}
.ws7d{word-spacing:8.940000px;}
.ws43{word-spacing:9.000000px;}
.ws48{word-spacing:9.060000px;}
.ws49{word-spacing:9.180000px;}
.ws9f{word-spacing:9.360000px;}
.ws4e{word-spacing:9.480000px;}
.ws86{word-spacing:9.600000px;}
.ws22{word-spacing:9.660000px;}
.wsdc{word-spacing:10.098000px;}
.wsed{word-spacing:10.260000px;}
.wsd7{word-spacing:10.368000px;}
.wsca{word-spacing:10.638000px;}
.wsbe{word-spacing:11.394000px;}
.ws87{word-spacing:12.120000px;}
.ws1e{word-spacing:12.852000px;}
.ws1b{word-spacing:13.122000px;}
.ws96{word-spacing:13.140000px;}
.ws2e{word-spacing:13.440000px;}
.wseb{word-spacing:14.688000px;}
.wse8{word-spacing:16.470000px;}
.ws4d{word-spacing:17.340000px;}
.wsec{word-spacing:17.604000px;}
.ws17{word-spacing:20.844000px;}
.ws13{word-spacing:23.004000px;}
.wsee{word-spacing:24.786000px;}
.ws2{word-spacing:33.650535px;}
.ws66{word-spacing:103.042800px;}
.ws69{word-spacing:103.045800px;}
.ws6e{word-spacing:103.054800px;}
.ws68{word-spacing:103.066200px;}
.ws6b{word-spacing:116.510400px;}
.ws67{word-spacing:116.511000px;}
.ws6a{word-spacing:116.542800px;}
.ws6d{word-spacing:121.231200px;}
.ws6c{word-spacing:137.570400px;}
.ws65{word-spacing:139.555800px;}
.ws6f{word-spacing:148.206600px;}
.ws8d{word-spacing:212.089800px;}
.ws90{word-spacing:322.956600px;}
.ws91{word-spacing:322.957200px;}
.ws8f{word-spacing:341.144400px;}
.ws8e{word-spacing:369.714000px;}
._6{margin-left:-10.554600px;}
._39{margin-left:-8.802600px;}
._9{margin-left:-7.740000px;}
._38{margin-left:-6.157200px;}
._5{margin-left:-4.941639px;}
._3{margin-left:-3.009000px;}
._1{margin-left:-1.234200px;}
._0{width:1.040400px;}
._4{width:2.080800px;}
._2{width:3.447600px;}
._8{width:4.632000px;}
._7{width:6.396000px;}
._3c{width:7.623039px;}
._3d{width:8.669361px;}
._a{width:11.064000px;}
._b{width:12.211200px;}
._36{width:15.147000px;}
._37{width:16.378200px;}
._3b{width:42.315600px;}
._3a{width:43.675800px;}
._11{width:72.229200px;}
._10{width:76.998600px;}
._1b{width:82.702200px;}
._12{width:85.200000px;}
._1d{width:87.722400px;}
._1c{width:102.267600px;}
._f{width:115.087200px;}
._2d{width:120.072600px;}
._18{width:128.515200px;}
._14{width:133.134600px;}
._15{width:135.519000px;}
._c{width:140.764200px;}
._e{width:145.785000px;}
._19{width:148.856400px;}
._2e{width:152.758800px;}
._d{width:160.330800px;}
._16{width:164.011800px;}
._17{width:165.403800px;}
._1a{width:171.100800px;}
._27{width:178.680000px;}
._28{width:192.498000px;}
._13{width:196.925400px;}
._2b{width:198.195000px;}
._31{width:206.287200px;}
._25{width:218.059200px;}
._24{width:219.201000px;}
._26{width:221.290800px;}
._20{width:232.773600px;}
._22{width:234.744600px;}
._21{width:237.495600px;}
._2a{width:246.456600px;}
._23{width:248.198400px;}
._2f{width:249.379800px;}
._1e{width:250.972200px;}
._2c{width:254.106600px;}
._35{width:273.823200px;}
._1f{width:275.197200px;}
._29{width:300.828600px;}
._32{width:353.048400px;}
._34{width:368.902200px;}
._33{width:386.315400px;}
._30{width:413.293200px;}
.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;}
.y38{bottom:71.212050px;}
.y39{bottom:75.036150px;}
.yac{bottom:113.078700px;}
.yca{bottom:113.078850px;}
.yd{bottom:117.875550px;}
.yc{bottom:132.275550px;}
.yab{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.y9b{bottom:140.631450px;}
.y9d{bottom:144.028350px;}
.yb{bottom:146.675550px;}
.y80{bottom:149.777400px;}
.yaa{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.ya{bottom:161.075550px;}
.y9a{bottom:161.536950px;}
.y9c{bottom:163.828350px;}
.y7f{bottom:169.577400px;}
.ya9{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.yc6{bottom:181.529250px;}
.y99{bottom:182.442600px;}
.ya8{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y35{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.y98{bottom:203.348100px;}
.y34{bottom:217.392600px;}
.ya7{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.y26{bottom:222.212700px;}
.y97{bottom:224.253600px;}
.y33{bottom:235.392600px;}
.ya6{bottom:239.078700px;}
.y65{bottom:239.078850px;}
.y25{bottom:243.212700px;}
.y96{bottom:245.159100px;}
.y95{bottom:247.261350px;}
.y32{bottom:253.392600px;}
.y94{bottom:254.761350px;}
.ya5{bottom:260.078700px;}
.y64{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y31{bottom:271.392600px;}
.ybc{bottom:274.440900px;}
.ya4{bottom:281.078700px;}
.y63{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y30{bottom:289.392600px;}
.y93{bottom:294.845700px;}
.ya3{bottom:302.078700px;}
.y62{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y2f{bottom:307.392600px;}
.y92{bottom:314.645700px;}
.yd0{bottom:315.513600px;}
.ya2{bottom:323.078700px;}
.y61{bottom:323.078850px;}
.y2e{bottom:325.392600px;}
.y21{bottom:327.212700px;}
.ya1{bottom:344.078700px;}
.y60{bottom:344.078850px;}
.ycf{bottom:347.811000px;}
.y2d{bottom:360.400500px;}
.y91{bottom:365.078700px;}
.y5f{bottom:365.078850px;}
.y20{bottom:370.004400px;}
.yc5{bottom:370.529250px;}
.y2c{bottom:378.400500px;}
.y90{bottom:386.078700px;}
.y5e{bottom:386.078850px;}
.y2b{bottom:396.400500px;}
.y8f{bottom:407.078700px;}
.y5d{bottom:407.078850px;}
.y2a{bottom:414.400500px;}
.y8e{bottom:428.078700px;}
.y5c{bottom:428.078850px;}
.y1f{bottom:442.027950px;}
.y8d{bottom:449.078700px;}
.y5b{bottom:449.078850px;}
.y8c{bottom:470.078700px;}
.y5a{bottom:470.078850px;}
.yc4{bottom:475.529250px;}
.y1e{bottom:483.087900px;}
.y8b{bottom:491.078700px;}
.y59{bottom:491.078850px;}
.ybe{bottom:498.677100px;}
.y1d{bottom:502.887750px;}
.ya0{bottom:512.078700px;}
.y58{bottom:512.078850px;}
.ybd{bottom:518.477100px;}
.y1c{bottom:522.687900px;}
.y8a{bottom:526.440900px;}
.y9f{bottom:533.078700px;}
.y57{bottom:533.078850px;}
.y1b{bottom:542.487900px;}
.y9e{bottom:554.078700px;}
.y56{bottom:554.078850px;}
.y1a{bottom:562.287900px;}
.y89{bottom:575.078700px;}
.y55{bottom:575.078850px;}
.y19{bottom:582.087900px;}
.y88{bottom:596.078700px;}
.y54{bottom:596.078850px;}
.y18{bottom:601.887750px;}
.yce{bottom:609.513600px;}
.y87{bottom:617.078700px;}
.y53{bottom:617.078850px;}
.y17{bottom:621.687900px;}
.y86{bottom:638.078700px;}
.y52{bottom:638.078850px;}
.y16{bottom:641.487900px;}
.ycd{bottom:641.811150px;}
.yc3{bottom:643.529250px;}
.y7e{bottom:659.078700px;}
.y51{bottom:659.078850px;}
.y15{bottom:661.287900px;}
.y7d{bottom:680.078700px;}
.y50{bottom:680.078850px;}
.y14{bottom:681.087900px;}
.y13{bottom:700.887750px;}
.y7c{bottom:701.078700px;}
.y4f{bottom:701.078850px;}
.yc2{bottom:706.529250px;}
.y12{bottom:720.687900px;}
.y7b{bottom:722.078700px;}
.y4e{bottom:722.078850px;}
.y11{bottom:740.487900px;}
.y7a{bottom:743.078700px;}
.y4d{bottom:743.078850px;}
.y10{bottom:760.287900px;}
.y79{bottom:764.078700px;}
.y4c{bottom:764.078850px;}
.yc1{bottom:769.529250px;}
.ybb{bottom:776.159100px;}
.y78{bottom:785.078700px;}
.y4b{bottom:785.078850px;}
.yf{bottom:791.385300px;}
.yba{bottom:797.064600px;}
.yd4{bottom:798.513600px;}
.y77{bottom:806.078700px;}
.y4a{bottom:806.078850px;}
.yb9{bottom:817.970100px;}
.y76{bottom:827.078700px;}
.y49{bottom:827.078850px;}
.yd3{bottom:830.811150px;}
.yc0{bottom:832.901550px;}
.yb8{bottom:838.875600px;}
.y85{bottom:848.078700px;}
.y48{bottom:848.078850px;}
.yb7{bottom:859.781100px;}
.ybf{bottom:862.405500px;}
.y75{bottom:862.440900px;}
.y84{bottom:869.078700px;}
.y47{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y8{bottom:888.666900px;}
.y83{bottom:890.078700px;}
.y46{bottom:890.078850px;}
.yb6{bottom:890.263050px;}
.ycc{bottom:903.513600px;}
.y7{bottom:906.666900px;}
.yc8{bottom:907.703100px;}
.y74{bottom:911.078700px;}
.y45{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.yc7{bottom:927.503100px;}
.y73{bottom:932.078700px;}
.y44{bottom:932.078850px;}
.ycb{bottom:935.811000px;}
.yb5{bottom:943.567950px;}
.y72{bottom:953.078700px;}
.y43{bottom:953.078850px;}
.y5{bottom:959.674650px;}
.yb4{bottom:964.473450px;}
.y71{bottom:974.078700px;}
.y42{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yb3{bottom:985.378950px;}
.y70{bottom:995.078700px;}
.y41{bottom:995.078850px;}
.yb2{bottom:1006.284450px;}
.y6f{bottom:1016.078700px;}
.y40{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yb1{bottom:1027.189950px;}
.y6e{bottom:1037.078700px;}
.y3f{bottom:1037.078850px;}
.yb0{bottom:1048.095450px;}
.y2{bottom:1049.282550px;}
.y6d{bottom:1058.078700px;}
.y3e{bottom:1058.078850px;}
.yaf{bottom:1069.001100px;}
.y82{bottom:1079.078700px;}
.y3d{bottom:1079.078850px;}
.yd2{bottom:1089.903300px;}
.y6c{bottom:1092.029250px;}
.yae{bottom:1099.482900px;}
.y3c{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.yc9{bottom:1111.570800px;}
.y81{bottom:1112.695800px;}
.yad{bottom:1119.282900px;}
.y3b{bottom:1121.078850px;}
.yd1{bottom:1122.200850px;}
.y6b{bottom:1124.326650px;}
.y37{bottom:1155.615300px;}
.y36{bottom:1175.115300px;}
.y3a{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h17{height:36.000000px;}
.h13{height:36.492188px;}
.h2{height:38.039062px;}
.h14{height:38.226562px;}
.he{height:38.273438px;}
.h16{height:38.507812px;}
.h5{height:38.531250px;}
.h15{height:42.093750px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h9{height:43.321289px;}
.h8{height:45.615234px;}
.h11{height:47.355469px;}
.hb{height:48.134766px;}
.h10{height:50.176758px;}
.hf{height:52.617188px;}
.h4{height:52.948242px;}
.ha{height:54.738281px;}
.h12{height:74.409600px;}
.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;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x10{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.xd{left:128.241300px;}
.xf{left:195.786450px;}
.x4{left:300.189000px;}
.x12{left:304.440900px;}
.xb{left:317.196900px;}
.x13{left:344.001600px;}
.x11{left:382.854300px;}
.x3{left:396.050700px;}
.x9{left:648.686550px;}
.x8{left:685.940400px;}
.xe{left:756.498900px;}
.x14{left:806.560800px;}
.x1{left:813.069600px;}
@media print{
.v3{vertical-align:-7.475200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:34.141867pt;}
.lsc{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.022933pt;}
.ls7{letter-spacing:0.362667pt;}
.lse{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.936000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ws4{word-spacing:-42.666667pt;}
.ws0{word-spacing:-22.757333pt;}
.ws8{word-spacing:-15.936000pt;}
.wsad{word-spacing:-14.608000pt;}
.ws9{word-spacing:-14.133333pt;}
.ws7e{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2c{word-spacing:-13.066667pt;}
.wsd1{word-spacing:-12.864000pt;}
.wsd2{word-spacing:-12.840000pt;}
.ws7{word-spacing:-12.720000pt;}
.wsa4{word-spacing:-12.000000pt;}
.wsaf{word-spacing:-11.952000pt;}
.wsae{word-spacing:-11.904000pt;}
.ws7f{word-spacing:-11.760000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws8c{word-spacing:-10.624000pt;}
.wsa{word-spacing:-10.464000pt;}
.ws3{word-spacing:-10.107733pt;}
.ws2a{word-spacing:-9.600000pt;}
.wsd{word-spacing:-9.301333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws5{word-spacing:-8.371200pt;}
.ws82{word-spacing:-3.520000pt;}
.ws94{word-spacing:-3.306667pt;}
.wsd3{word-spacing:-3.216000pt;}
.ws1c{word-spacing:-3.168000pt;}
.wsa3{word-spacing:-2.688000pt;}
.ws7c{word-spacing:-2.666667pt;}
.ws63{word-spacing:-2.592000pt;}
.ws74{word-spacing:-2.560000pt;}
.ws64{word-spacing:-2.544000pt;}
.ws23{word-spacing:-2.400000pt;}
.ws75{word-spacing:-2.346667pt;}
.ws54{word-spacing:-2.133333pt;}
.ws31{word-spacing:-2.080000pt;}
.wse2{word-spacing:-2.016000pt;}
.ws20{word-spacing:-1.968000pt;}
.ws95{word-spacing:-1.920000pt;}
.wse6{word-spacing:-1.872000pt;}
.ws62{word-spacing:-1.813333pt;}
.ws16{word-spacing:-1.776000pt;}
.ws33{word-spacing:-1.760000pt;}
.ws4a{word-spacing:-1.706667pt;}
.wsd4{word-spacing:-1.680000pt;}
.ws4b{word-spacing:-1.653333pt;}
.ws83{word-spacing:-1.546667pt;}
.wsc5{word-spacing:-1.440000pt;}
.wsa7{word-spacing:-1.333333pt;}
.wsb0{word-spacing:-1.296000pt;}
.ws51{word-spacing:-1.280000pt;}
.wsc0{word-spacing:-1.248000pt;}
.wsb1{word-spacing:-1.200000pt;}
.ws89{word-spacing:-1.173333pt;}
.wsf{word-spacing:-1.114667pt;}
.wsb7{word-spacing:-1.104000pt;}
.ws34{word-spacing:-1.066667pt;}
.wsb8{word-spacing:-1.056000pt;}
.wse7{word-spacing:-1.008000pt;}
.ws93{word-spacing:-0.960000pt;}
.wsb3{word-spacing:-0.912000pt;}
.ws72{word-spacing:-0.906667pt;}
.ws3a{word-spacing:-0.853333pt;}
.wsc6{word-spacing:-0.816000pt;}
.ws57{word-spacing:-0.693333pt;}
.ws35{word-spacing:-0.640000pt;}
.ws7b{word-spacing:-0.586667pt;}
.wsb2{word-spacing:-0.576000pt;}
.ws80{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.528000pt;}
.ws92{word-spacing:-0.480000pt;}
.ws76{word-spacing:-0.373333pt;}
.ws5b{word-spacing:-0.320000pt;}
.wsdd{word-spacing:-0.288000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws79{word-spacing:-0.160000pt;}
.wse5{word-spacing:-0.144000pt;}
.wsb{word-spacing:-0.048000pt;}
.ws2b{word-spacing:-0.042667pt;}
.wse{word-spacing:0.000000pt;}
.wsea{word-spacing:0.048000pt;}
.ws46{word-spacing:0.053333pt;}
.ws12{word-spacing:0.144000pt;}
.ws56{word-spacing:0.160000pt;}
.ws70{word-spacing:0.266667pt;}
.wscc{word-spacing:0.336000pt;}
.ws60{word-spacing:0.373333pt;}
.ws73{word-spacing:0.533333pt;}
.ws39{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.ws38{word-spacing:0.640000pt;}
.ws45{word-spacing:0.693333pt;}
.wsb5{word-spacing:0.720000pt;}
.wsb4{word-spacing:0.768000pt;}
.ws61{word-spacing:0.800000pt;}
.wsd6{word-spacing:0.816000pt;}
.ws7a{word-spacing:0.853333pt;}
.ws59{word-spacing:0.906667pt;}
.wsdf{word-spacing:0.912000pt;}
.wsb6{word-spacing:0.960000pt;}
.wsbc{word-spacing:1.056000pt;}
.wsa8{word-spacing:1.066667pt;}
.ws50{word-spacing:1.120000pt;}
.wsc1{word-spacing:1.152000pt;}
.ws97{word-spacing:1.173333pt;}
.ws5f{word-spacing:1.226667pt;}
.wsa6{word-spacing:1.280000pt;}
.wsa5{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.536000pt;}
.wse9{word-spacing:1.584000pt;}
.ws42{word-spacing:1.600000pt;}
.ws58{word-spacing:1.760000pt;}
.wsc4{word-spacing:1.968000pt;}
.ws9d{word-spacing:2.026667pt;}
.ws81{word-spacing:2.080000pt;}
.ws26{word-spacing:2.133333pt;}
.wsd8{word-spacing:2.256000pt;}
.ws36{word-spacing:2.506667pt;}
.ws37{word-spacing:2.560000pt;}
.ws8b{word-spacing:2.592000pt;}
.wscd{word-spacing:2.640000pt;}
.wsb9{word-spacing:2.688000pt;}
.ws78{word-spacing:2.720000pt;}
.wsdb{word-spacing:2.736000pt;}
.ws30{word-spacing:2.826667pt;}
.wsa9{word-spacing:2.880000pt;}
.ws24{word-spacing:3.040000pt;}
.wsc3{word-spacing:3.120000pt;}
.ws44{word-spacing:3.146667pt;}
.ws9b{word-spacing:3.200000pt;}
.wse3{word-spacing:3.216000pt;}
.ws9a{word-spacing:3.253333pt;}
.ws47{word-spacing:3.306667pt;}
.ws5c{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.413333pt;}
.wsc9{word-spacing:3.600000pt;}
.ws28{word-spacing:3.680000pt;}
.ws19{word-spacing:3.840000pt;}
.ws18{word-spacing:3.888000pt;}
.wscf{word-spacing:3.936000pt;}
.ws88{word-spacing:3.946667pt;}
.wsce{word-spacing:3.984000pt;}
.ws52{word-spacing:4.000000pt;}
.ws99{word-spacing:4.053333pt;}
.ws98{word-spacing:4.106667pt;}
.wscb{word-spacing:4.128000pt;}
.ws29{word-spacing:4.160000pt;}
.ws3c{word-spacing:4.266667pt;}
.ws9e{word-spacing:4.320000pt;}
.wsc8{word-spacing:4.368000pt;}
.wsaa{word-spacing:4.373333pt;}
.wsc7{word-spacing:4.416000pt;}
.ws8a{word-spacing:4.480000pt;}
.ws3d{word-spacing:4.533333pt;}
.ws84{word-spacing:4.640000pt;}
.ws85{word-spacing:4.693333pt;}
.wsbd{word-spacing:4.704000pt;}
.ws2f{word-spacing:4.746667pt;}
.wsd5{word-spacing:4.896000pt;}
.ws3b{word-spacing:4.906667pt;}
.wsac{word-spacing:5.040000pt;}
.ws32{word-spacing:5.066667pt;}
.wsab{word-spacing:5.088000pt;}
.wsbf{word-spacing:5.136000pt;}
.wsa0{word-spacing:5.173333pt;}
.ws1f{word-spacing:5.184000pt;}
.ws3e{word-spacing:5.333333pt;}
.ws4c{word-spacing:5.386667pt;}
.wsde{word-spacing:5.616000pt;}
.ws14{word-spacing:5.664000pt;}
.wsc2{word-spacing:5.760000pt;}
.wsbb{word-spacing:5.808000pt;}
.ws3f{word-spacing:5.813333pt;}
.wsd0{word-spacing:5.856000pt;}
.wsa2{word-spacing:5.952000pt;}
.wsa1{word-spacing:6.000000pt;}
.ws40{word-spacing:6.026667pt;}
.ws53{word-spacing:6.133333pt;}
.ws5a{word-spacing:6.186667pt;}
.ws1d{word-spacing:6.192000pt;}
.ws25{word-spacing:6.240000pt;}
.wsda{word-spacing:6.288000pt;}
.wse4{word-spacing:6.336000pt;}
.ws21{word-spacing:6.400000pt;}
.ws9c{word-spacing:6.453333pt;}
.ws4f{word-spacing:6.506667pt;}
.ws2d{word-spacing:6.560000pt;}
.ws5e{word-spacing:6.613333pt;}
.ws77{word-spacing:6.666667pt;}
.ws41{word-spacing:6.826667pt;}
.wsd9{word-spacing:6.864000pt;}
.ws55{word-spacing:6.933333pt;}
.ws27{word-spacing:7.253333pt;}
.wse1{word-spacing:7.296000pt;}
.wse0{word-spacing:7.536000pt;}
.ws15{word-spacing:7.584000pt;}
.ws71{word-spacing:7.786667pt;}
.ws7d{word-spacing:7.946667pt;}
.ws43{word-spacing:8.000000pt;}
.ws48{word-spacing:8.053333pt;}
.ws49{word-spacing:8.160000pt;}
.ws9f{word-spacing:8.320000pt;}
.ws4e{word-spacing:8.426667pt;}
.ws86{word-spacing:8.533333pt;}
.ws22{word-spacing:8.586667pt;}
.wsdc{word-spacing:8.976000pt;}
.wsed{word-spacing:9.120000pt;}
.wsd7{word-spacing:9.216000pt;}
.wsca{word-spacing:9.456000pt;}
.wsbe{word-spacing:10.128000pt;}
.ws87{word-spacing:10.773333pt;}
.ws1e{word-spacing:11.424000pt;}
.ws1b{word-spacing:11.664000pt;}
.ws96{word-spacing:11.680000pt;}
.ws2e{word-spacing:11.946667pt;}
.wseb{word-spacing:13.056000pt;}
.wse8{word-spacing:14.640000pt;}
.ws4d{word-spacing:15.413333pt;}
.wsec{word-spacing:15.648000pt;}
.ws17{word-spacing:18.528000pt;}
.ws13{word-spacing:20.448000pt;}
.wsee{word-spacing:22.032000pt;}
.ws2{word-spacing:29.911587pt;}
.ws66{word-spacing:91.593600pt;}
.ws69{word-spacing:91.596267pt;}
.ws6e{word-spacing:91.604267pt;}
.ws68{word-spacing:91.614400pt;}
.ws6b{word-spacing:103.564800pt;}
.ws67{word-spacing:103.565333pt;}
.ws6a{word-spacing:103.593600pt;}
.ws6d{word-spacing:107.761067pt;}
.ws6c{word-spacing:122.284800pt;}
.ws65{word-spacing:124.049600pt;}
.ws6f{word-spacing:131.739200pt;}
.ws8d{word-spacing:188.524267pt;}
.ws90{word-spacing:287.072533pt;}
.ws91{word-spacing:287.073067pt;}
.ws8f{word-spacing:303.239467pt;}
.ws8e{word-spacing:328.634667pt;}
._6{margin-left:-9.381867pt;}
._39{margin-left:-7.824533pt;}
._9{margin-left:-6.880000pt;}
._38{margin-left:-5.473067pt;}
._5{margin-left:-4.392568pt;}
._3{margin-left:-2.674667pt;}
._1{margin-left:-1.097067pt;}
._0{width:0.924800pt;}
._4{width:1.849600pt;}
._2{width:3.064533pt;}
._8{width:4.117333pt;}
._7{width:5.685333pt;}
._3c{width:6.776035pt;}
._3d{width:7.706099pt;}
._a{width:9.834667pt;}
._b{width:10.854400pt;}
._36{width:13.464000pt;}
._37{width:14.558400pt;}
._3b{width:37.613867pt;}
._3a{width:38.822933pt;}
._11{width:64.203733pt;}
._10{width:68.443200pt;}
._1b{width:73.513067pt;}
._12{width:75.733333pt;}
._1d{width:77.975467pt;}
._1c{width:90.904533pt;}
._f{width:102.299733pt;}
._2d{width:106.731200pt;}
._18{width:114.235733pt;}
._14{width:118.341867pt;}
._15{width:120.461333pt;}
._c{width:125.123733pt;}
._e{width:129.586667pt;}
._19{width:132.316800pt;}
._2e{width:135.785600pt;}
._d{width:142.516267pt;}
._16{width:145.788267pt;}
._17{width:147.025600pt;}
._1a{width:152.089600pt;}
._27{width:158.826667pt;}
._28{width:171.109333pt;}
._13{width:175.044800pt;}
._2b{width:176.173333pt;}
._31{width:183.366400pt;}
._25{width:193.830400pt;}
._24{width:194.845333pt;}
._26{width:196.702933pt;}
._20{width:206.909867pt;}
._22{width:208.661867pt;}
._21{width:211.107200pt;}
._2a{width:219.072533pt;}
._23{width:220.620800pt;}
._2f{width:221.670933pt;}
._1e{width:223.086400pt;}
._2c{width:225.872533pt;}
._35{width:243.398400pt;}
._1f{width:244.619733pt;}
._29{width:267.403200pt;}
._32{width:313.820800pt;}
._34{width:327.913067pt;}
._33{width:343.391467pt;}
._30{width:367.371733pt;}
.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;}
.y38{bottom:63.299600pt;}
.y39{bottom:66.698800pt;}
.yac{bottom:100.514400pt;}
.yca{bottom:100.514533pt;}
.yd{bottom:104.778267pt;}
.yc{bottom:117.578267pt;}
.yab{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.y9b{bottom:125.005733pt;}
.y9d{bottom:128.025200pt;}
.yb{bottom:130.378267pt;}
.y80{bottom:133.135467pt;}
.yaa{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.ya{bottom:143.178267pt;}
.y9a{bottom:143.588400pt;}
.y9c{bottom:145.625200pt;}
.y7f{bottom:150.735467pt;}
.ya9{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.yc6{bottom:161.359333pt;}
.y99{bottom:162.171200pt;}
.ya8{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y35{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.y98{bottom:180.753867pt;}
.y34{bottom:193.237867pt;}
.ya7{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.y26{bottom:197.522400pt;}
.y97{bottom:199.336533pt;}
.y33{bottom:209.237867pt;}
.ya6{bottom:212.514400pt;}
.y65{bottom:212.514533pt;}
.y25{bottom:216.189067pt;}
.y96{bottom:217.919200pt;}
.y95{bottom:219.787867pt;}
.y32{bottom:225.237867pt;}
.y94{bottom:226.454533pt;}
.ya5{bottom:231.181067pt;}
.y64{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y31{bottom:241.237867pt;}
.ybc{bottom:243.947467pt;}
.ya4{bottom:249.847733pt;}
.y63{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y30{bottom:257.237867pt;}
.y93{bottom:262.085067pt;}
.ya3{bottom:268.514400pt;}
.y62{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y2f{bottom:273.237867pt;}
.y92{bottom:279.685067pt;}
.yd0{bottom:280.456533pt;}
.ya2{bottom:287.181067pt;}
.y61{bottom:287.181200pt;}
.y2e{bottom:289.237867pt;}
.y21{bottom:290.855733pt;}
.ya1{bottom:305.847733pt;}
.y60{bottom:305.847867pt;}
.ycf{bottom:309.165333pt;}
.y2d{bottom:320.356000pt;}
.y91{bottom:324.514400pt;}
.y5f{bottom:324.514533pt;}
.y20{bottom:328.892800pt;}
.yc5{bottom:329.359333pt;}
.y2c{bottom:336.356000pt;}
.y90{bottom:343.181067pt;}
.y5e{bottom:343.181200pt;}
.y2b{bottom:352.356000pt;}
.y8f{bottom:361.847733pt;}
.y5d{bottom:361.847867pt;}
.y2a{bottom:368.356000pt;}
.y8e{bottom:380.514400pt;}
.y5c{bottom:380.514533pt;}
.y1f{bottom:392.913733pt;}
.y8d{bottom:399.181067pt;}
.y5b{bottom:399.181200pt;}
.y8c{bottom:417.847733pt;}
.y5a{bottom:417.847867pt;}
.yc4{bottom:422.692667pt;}
.y1e{bottom:429.411467pt;}
.y8b{bottom:436.514400pt;}
.y59{bottom:436.514533pt;}
.ybe{bottom:443.268533pt;}
.y1d{bottom:447.011333pt;}
.ya0{bottom:455.181067pt;}
.y58{bottom:455.181200pt;}
.ybd{bottom:460.868533pt;}
.y1c{bottom:464.611467pt;}
.y8a{bottom:467.947467pt;}
.y9f{bottom:473.847733pt;}
.y57{bottom:473.847867pt;}
.y1b{bottom:482.211467pt;}
.y9e{bottom:492.514400pt;}
.y56{bottom:492.514533pt;}
.y1a{bottom:499.811467pt;}
.y89{bottom:511.181067pt;}
.y55{bottom:511.181200pt;}
.y19{bottom:517.411467pt;}
.y88{bottom:529.847733pt;}
.y54{bottom:529.847867pt;}
.y18{bottom:535.011333pt;}
.yce{bottom:541.789867pt;}
.y87{bottom:548.514400pt;}
.y53{bottom:548.514533pt;}
.y17{bottom:552.611467pt;}
.y86{bottom:567.181067pt;}
.y52{bottom:567.181200pt;}
.y16{bottom:570.211467pt;}
.ycd{bottom:570.498800pt;}
.yc3{bottom:572.026000pt;}
.y7e{bottom:585.847733pt;}
.y51{bottom:585.847867pt;}
.y15{bottom:587.811467pt;}
.y7d{bottom:604.514400pt;}
.y50{bottom:604.514533pt;}
.y14{bottom:605.411467pt;}
.y13{bottom:623.011333pt;}
.y7c{bottom:623.181067pt;}
.y4f{bottom:623.181200pt;}
.yc2{bottom:628.026000pt;}
.y12{bottom:640.611467pt;}
.y7b{bottom:641.847733pt;}
.y4e{bottom:641.847867pt;}
.y11{bottom:658.211467pt;}
.y7a{bottom:660.514400pt;}
.y4d{bottom:660.514533pt;}
.y10{bottom:675.811467pt;}
.y79{bottom:679.181067pt;}
.y4c{bottom:679.181200pt;}
.yc1{bottom:684.026000pt;}
.ybb{bottom:689.919200pt;}
.y78{bottom:697.847733pt;}
.y4b{bottom:697.847867pt;}
.yf{bottom:703.453600pt;}
.yba{bottom:708.501867pt;}
.yd4{bottom:709.789867pt;}
.y77{bottom:716.514400pt;}
.y4a{bottom:716.514533pt;}
.yb9{bottom:727.084533pt;}
.y76{bottom:735.181067pt;}
.y49{bottom:735.181200pt;}
.yd3{bottom:738.498800pt;}
.yc0{bottom:740.356933pt;}
.yb8{bottom:745.667200pt;}
.y85{bottom:753.847733pt;}
.y48{bottom:753.847867pt;}
.yb7{bottom:764.249867pt;}
.ybf{bottom:766.582667pt;}
.y75{bottom:766.614133pt;}
.y84{bottom:772.514400pt;}
.y47{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y8{bottom:789.926133pt;}
.y83{bottom:791.181067pt;}
.y46{bottom:791.181200pt;}
.yb6{bottom:791.344933pt;}
.ycc{bottom:803.123200pt;}
.y7{bottom:805.926133pt;}
.yc8{bottom:806.847200pt;}
.y74{bottom:809.847733pt;}
.y45{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.yc7{bottom:824.447200pt;}
.y73{bottom:828.514400pt;}
.y44{bottom:828.514533pt;}
.ycb{bottom:831.832000pt;}
.yb5{bottom:838.727067pt;}
.y72{bottom:847.181067pt;}
.y43{bottom:847.181200pt;}
.y5{bottom:853.044133pt;}
.yb4{bottom:857.309733pt;}
.y71{bottom:865.847733pt;}
.y42{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yb3{bottom:875.892400pt;}
.y70{bottom:884.514400pt;}
.y41{bottom:884.514533pt;}
.yb2{bottom:894.475067pt;}
.y6f{bottom:903.181067pt;}
.y40{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yb1{bottom:913.057733pt;}
.y6e{bottom:921.847733pt;}
.y3f{bottom:921.847867pt;}
.yb0{bottom:931.640400pt;}
.y2{bottom:932.695600pt;}
.y6d{bottom:940.514400pt;}
.y3e{bottom:940.514533pt;}
.yaf{bottom:950.223200pt;}
.y82{bottom:959.181067pt;}
.y3d{bottom:959.181200pt;}
.yd2{bottom:968.802933pt;}
.y6c{bottom:970.692667pt;}
.yae{bottom:977.318133pt;}
.y3c{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.yc9{bottom:988.062933pt;}
.y81{bottom:989.062933pt;}
.yad{bottom:994.918133pt;}
.y3b{bottom:996.514533pt;}
.yd1{bottom:997.511867pt;}
.y6b{bottom:999.401467pt;}
.y37{bottom:1027.213600pt;}
.y36{bottom:1044.546933pt;}
.y3a{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h17{height:32.000000pt;}
.h13{height:32.437500pt;}
.h2{height:33.812500pt;}
.h14{height:33.979167pt;}
.he{height:34.020833pt;}
.h16{height:34.229167pt;}
.h5{height:34.250000pt;}
.h15{height:37.416667pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h9{height:38.507812pt;}
.h8{height:40.546875pt;}
.h11{height:42.093750pt;}
.hb{height:42.786458pt;}
.h10{height:44.601562pt;}
.hf{height:46.770833pt;}
.h4{height:47.065104pt;}
.ha{height:48.656250pt;}
.h12{height:66.141867pt;}
.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;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x10{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.xd{left:113.992267pt;}
.xf{left:174.032400pt;}
.x4{left:266.834667pt;}
.x12{left:270.614133pt;}
.xb{left:281.952800pt;}
.x13{left:305.779200pt;}
.x11{left:340.314933pt;}
.x3{left:352.045067pt;}
.x9{left:576.610267pt;}
.x8{left:609.724800pt;}
.xe{left:672.443467pt;}
.x14{left:716.942933pt;}
.x1{left:722.728533pt;}
}




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