
    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_a2d4a176e9acfda2858c0457.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4e83ff3ee771f26c708f85b1.woff')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_9e1379023f9bc157c25037be.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_855d11391c795d93c34b0f37.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5b7e8fb122038bb6305d714d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_40d82879949a8445b3e0efbd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_168dd0ea1e2f9044d0b337db.woff')format("woff");}.ff7{font-family:ff7;line-height:0.760319;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_6dd2e7e701fd9df24c0780af.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_097f434f05bf53cf20202993.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3fdd71b27d433d8b0fa38f52.woff')format("woff");}.ffa{font-family:ffa;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v4{vertical-align:-17.982000px;}
.v6{vertical-align:-10.800000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.320000px;}
.v8{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls6{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.025200px;}
.lsb{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.780000px;}
.ls12{letter-spacing:2.322000px;}
.ls0{letter-spacing:43.181364px;}
.lsf{letter-spacing:590.299200px;}
.lse{letter-spacing:604.699800px;}
.lsd{letter-spacing:605.419200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-17.928000px;}
.wsa3{word-spacing:-16.434000px;}
.wsbd{word-spacing:-15.714000px;}
.ws4{word-spacing:-14.940000px;}
.ws65{word-spacing:-14.880000px;}
.ws55{word-spacing:-14.700000px;}
.wsa4{word-spacing:-13.392000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-12.150000px;}
.ws22{word-spacing:-10.992000px;}
.ws8a{word-spacing:-10.944000px;}
.ws2{word-spacing:-10.896000px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.ws0{word-spacing:-9.542544px;}
.ws3b{word-spacing:-8.675040px;}
.ws7c{word-spacing:-7.807536px;}
.ws71{word-spacing:-3.360000px;}
.ws62{word-spacing:-3.180000px;}
.ws48{word-spacing:-3.000000px;}
.ws49{word-spacing:-2.940000px;}
.ws2d{word-spacing:-2.820000px;}
.ws16{word-spacing:-2.760000px;}
.ws70{word-spacing:-2.700000px;}
.wsc2{word-spacing:-2.646000px;}
.ws1c{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.592000px;}
.ws6d{word-spacing:-2.580000px;}
.ws56{word-spacing:-2.520000px;}
.ws38{word-spacing:-2.460000px;}
.ws98{word-spacing:-2.400000px;}
.ws25{word-spacing:-2.280000px;}
.ws12{word-spacing:-2.106000px;}
.ws6f{word-spacing:-2.100000px;}
.ws9e{word-spacing:-2.040000px;}
.ws6a{word-spacing:-1.800000px;}
.ws7b{word-spacing:-1.782000px;}
.ws45{word-spacing:-1.620000px;}
.wsac{word-spacing:-1.566000px;}
.ws2e{word-spacing:-1.560000px;}
.ws46{word-spacing:-1.500000px;}
.ws4f{word-spacing:-1.440000px;}
.wsad{word-spacing:-1.350000px;}
.ws5a{word-spacing:-1.320000px;}
.ws43{word-spacing:-1.260000px;}
.ws1b{word-spacing:-1.140000px;}
.ws17{word-spacing:-0.960000px;}
.ws59{word-spacing:-0.900000px;}
.ws90{word-spacing:-0.780000px;}
.ws77{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.702000px;}
.ws2b{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.600000px;}
.wsb1{word-spacing:-0.594000px;}
.ws15{word-spacing:-0.540000px;}
.ws4b{word-spacing:-0.480000px;}
.ws4e{word-spacing:-0.360000px;}
.wsc1{word-spacing:-0.324000px;}
.ws6e{word-spacing:-0.300000px;}
.ws8e{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.216000px;}
.ws52{word-spacing:-0.180000px;}
.wsb4{word-spacing:-0.162000px;}
.ws61{word-spacing:-0.120000px;}
.wse{word-spacing:-0.108000px;}
.wsa9{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws78{word-spacing:0.054000px;}
.ws18{word-spacing:0.060000px;}
.ws36{word-spacing:0.120000px;}
.ws74{word-spacing:0.180000px;}
.ws93{word-spacing:0.240000px;}
.ws50{word-spacing:0.300000px;}
.ws87{word-spacing:0.432000px;}
.ws6c{word-spacing:0.480000px;}
.ws8d{word-spacing:0.540000px;}
.wsa{word-spacing:0.691200px;}
.ws7f{word-spacing:0.720000px;}
.ws58{word-spacing:0.780000px;}
.ws44{word-spacing:0.840000px;}
.ws85{word-spacing:0.900000px;}
.ws5b{word-spacing:0.960000px;}
.wsc{word-spacing:0.972000px;}
.ws10{word-spacing:1.026000px;}
.ws73{word-spacing:1.080000px;}
.wsab{word-spacing:1.134000px;}
.ws57{word-spacing:1.200000px;}
.ws5f{word-spacing:1.260000px;}
.ws9b{word-spacing:1.320000px;}
.wsb6{word-spacing:1.404000px;}
.ws64{word-spacing:1.512000px;}
.ws68{word-spacing:1.560000px;}
.ws33{word-spacing:1.620000px;}
.wsb7{word-spacing:1.674000px;}
.ws66{word-spacing:1.680000px;}
.wsa7{word-spacing:1.740000px;}
.ws30{word-spacing:1.800000px;}
.wsb3{word-spacing:1.836000px;}
.ws67{word-spacing:1.860000px;}
.wsba{word-spacing:1.944000px;}
.ws2f{word-spacing:2.040000px;}
.ws53{word-spacing:2.100000px;}
.ws86{word-spacing:2.106000px;}
.wsae{word-spacing:2.268000px;}
.ws1a{word-spacing:2.280000px;}
.ws1e{word-spacing:2.340000px;}
.wsbb{word-spacing:2.430000px;}
.ws76{word-spacing:2.460000px;}
.ws3d{word-spacing:2.520000px;}
.ws42{word-spacing:2.580000px;}
.ws13{word-spacing:2.700000px;}
.ws23{word-spacing:2.940000px;}
.ws40{word-spacing:3.000000px;}
.ws20{word-spacing:3.060000px;}
.ws4d{word-spacing:3.180000px;}
.wsb2{word-spacing:3.294000px;}
.ws8c{word-spacing:3.300000px;}
.ws41{word-spacing:3.360000px;}
.ws91{word-spacing:3.420000px;}
.wsa5{word-spacing:3.480000px;}
.ws31{word-spacing:3.600000px;}
.ws4a{word-spacing:3.720000px;}
.wsb0{word-spacing:3.726000px;}
.ws97{word-spacing:3.780000px;}
.ws26{word-spacing:3.840000px;}
.ws11{word-spacing:3.888000px;}
.ws24{word-spacing:3.960000px;}
.wsf{word-spacing:3.996000px;}
.ws35{word-spacing:4.020000px;}
.wsc3{word-spacing:4.050000px;}
.ws63{word-spacing:4.200000px;}
.ws5e{word-spacing:4.260000px;}
.ws2c{word-spacing:4.320000px;}
.ws6b{word-spacing:4.380000px;}
.ws9c{word-spacing:4.440000px;}
.ws32{word-spacing:4.500000px;}
.wsbf{word-spacing:4.536000px;}
.wsa6{word-spacing:4.560000px;}
.ws92{word-spacing:4.680000px;}
.ws99{word-spacing:4.740000px;}
.ws9a{word-spacing:4.860000px;}
.wsb5{word-spacing:4.914000px;}
.ws60{word-spacing:4.920000px;}
.ws95{word-spacing:5.040000px;}
.ws83{word-spacing:5.100000px;}
.wsb9{word-spacing:5.130000px;}
.ws37{word-spacing:5.160000px;}
.ws39{word-spacing:5.220000px;}
.ws3f{word-spacing:5.280000px;}
.ws4c{word-spacing:5.640000px;}
.wsd{word-spacing:5.670000px;}
.ws8b{word-spacing:5.760000px;}
.ws5d{word-spacing:5.820000px;}
.ws51{word-spacing:5.880000px;}
.ws75{word-spacing:6.060000px;}
.ws8f{word-spacing:6.120000px;}
.ws84{word-spacing:6.180000px;}
.ws72{word-spacing:6.300000px;}
.wsbe{word-spacing:6.318000px;}
.ws9d{word-spacing:6.420000px;}
.ws7e{word-spacing:6.480000px;}
.ws82{word-spacing:6.540000px;}
.wsaf{word-spacing:6.642000px;}
.wsaa{word-spacing:6.720000px;}
.ws79{word-spacing:6.804000px;}
.ws47{word-spacing:6.900000px;}
.ws34{word-spacing:7.080000px;}
.ws80{word-spacing:7.140000px;}
.ws3a{word-spacing:7.182000px;}
.ws3e{word-spacing:7.320000px;}
.wsb8{word-spacing:7.614000px;}
.ws5c{word-spacing:7.620000px;}
.wsa2{word-spacing:7.740000px;}
.ws69{word-spacing:7.860000px;}
.wsbc{word-spacing:7.884000px;}
.wsa8{word-spacing:7.920000px;}
.ws54{word-spacing:7.938000px;}
.ws94{word-spacing:8.040000px;}
.wsa1{word-spacing:8.220000px;}
.ws9f{word-spacing:8.460000px;}
.ws14{word-spacing:8.520000px;}
.ws2a{word-spacing:8.820000px;}
.ws21{word-spacing:9.000000px;}
.ws81{word-spacing:9.120000px;}
.ws1f{word-spacing:9.840000px;}
.ws1d{word-spacing:10.020000px;}
.ws96{word-spacing:10.140000px;}
.wsc4{word-spacing:10.260000px;}
.ws28{word-spacing:10.500000px;}
.ws27{word-spacing:10.620000px;}
.wsa0{word-spacing:12.600000px;}
.ws29{word-spacing:14.040000px;}
.wsc5{word-spacing:24.786000px;}
.wsc0{word-spacing:70.740000px;}
.ws89{word-spacing:246.148200px;}
.ws88{word-spacing:573.067200px;}
.ws7d{word-spacing:581.278800px;}
.ws3c{word-spacing:824.397600px;}
._7{margin-left:-11.120400px;}
._2b{margin-left:-6.819000px;}
._6{margin-left:-5.791200px;}
._5{margin-left:-4.368000px;}
._1{margin-left:-3.182400px;}
._4{margin-left:-2.160000px;}
._0{margin-left:-1.040400px;}
._3{width:1.278000px;}
._8{width:2.280000px;}
._12{width:4.146000px;}
._11{width:5.304000px;}
._9{width:6.846000px;}
._a{width:8.514000px;}
._b{width:9.636000px;}
._2a{width:10.845000px;}
._28{width:14.797800px;}
._c{width:16.362000px;}
._29{width:24.003000px;}
._2{width:36.369600px;}
._27{width:43.108800px;}
._2c{width:47.459400px;}
._1d{width:358.357800px;}
._1a{width:371.857200px;}
._1e{width:427.516800px;}
._14{width:449.638200px;}
._16{width:471.435000px;}
._18{width:480.157200px;}
._21{width:485.529600px;}
._20{width:487.627200px;}
._25{width:494.721600px;}
._26{width:499.141800px;}
._1f{width:501.250800px;}
._22{width:502.419600px;}
._23{width:507.777000px;}
._24{width:514.326600px;}
._1b{width:772.754400px;}
._1c{width:777.709800px;}
._19{width:804.242400px;}
._13{width:809.058600px;}
._17{width:813.282600px;}
._15{width:827.490600px;}
._10{width:861.372600px;}
._e{width:1022.158200px;}
._d{width:1090.887000px;}
._f{width:1127.058000px;}
.fc3{color:rgb(51,92,126);}
.fc1{color:rgb(133,163,67);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.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;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.y88{bottom:110.551350px;}
.y60{bottom:113.078700px;}
.ya5{bottom:113.078850px;}
.yb{bottom:117.197850px;}
.y2b{bottom:117.212700px;}
.yac{bottom:120.644100px;}
.y87{bottom:128.551350px;}
.ya{bottom:131.597850px;}
.y5f{bottom:134.078700px;}
.ya4{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.yab{bottom:140.444100px;}
.y9{bottom:145.997850px;}
.y86{bottom:146.551350px;}
.y5e{bottom:155.078700px;}
.ya3{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.y8{bottom:160.397850px;}
.ye2{bottom:160.529400px;}
.y5d{bottom:176.078700px;}
.ya2{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.y5c{bottom:197.078700px;}
.ya1{bottom:197.078850px;}
.y27{bottom:201.212700px;}
.y36{bottom:203.413650px;}
.y5b{bottom:218.078700px;}
.y85{bottom:218.078850px;}
.y35{bottom:221.413500px;}
.y26{bottom:222.212700px;}
.ye1{bottom:223.529400px;}
.y5a{bottom:239.078700px;}
.y84{bottom:239.078850px;}
.y34{bottom:239.413500px;}
.y25{bottom:243.212700px;}
.y33{bottom:257.413500px;}
.y59{bottom:260.078700px;}
.y83{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y32{bottom:275.413500px;}
.y58{bottom:281.078700px;}
.y82{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.ye0{bottom:286.529400px;}
.yb1{bottom:293.055150px;}
.y31{bottom:293.413500px;}
.y57{bottom:302.078700px;}
.y81{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y30{bottom:311.413500px;}
.y56{bottom:323.078700px;}
.y80{bottom:323.078850px;}
.y21{bottom:327.212700px;}
.y55{bottom:344.078700px;}
.y7f{bottom:344.078850px;}
.y2f{bottom:346.421400px;}
.y20{bottom:348.212700px;}
.ydf{bottom:349.529400px;}
.y2e{bottom:364.421400px;}
.y54{bottom:365.078700px;}
.y7e{bottom:365.078850px;}
.y1f{bottom:369.212700px;}
.y2d{bottom:382.421400px;}
.y53{bottom:386.078700px;}
.y7d{bottom:386.078850px;}
.y1e{bottom:390.212700px;}
.y2c{bottom:400.421400px;}
.y52{bottom:407.078700px;}
.y7c{bottom:407.078850px;}
.y1d{bottom:411.212700px;}
.yde{bottom:412.529400px;}
.yd9{bottom:419.055150px;}
.y51{bottom:428.078700px;}
.y7b{bottom:428.078850px;}
.y1c{bottom:432.212700px;}
.ya0{bottom:441.253800px;}
.y50{bottom:449.078700px;}
.y7a{bottom:449.078850px;}
.y1b{bottom:453.212700px;}
.yb0{bottom:470.078700px;}
.y79{bottom:470.078850px;}
.y9f{bottom:473.551200px;}
.y1a{bottom:474.212700px;}
.y4f{bottom:483.253650px;}
.y90{bottom:491.078700px;}
.y78{bottom:491.078850px;}
.ydd{bottom:496.529400px;}
.yaf{bottom:503.055150px;}
.y19{bottom:506.804400px;}
.y8f{bottom:512.078700px;}
.y77{bottom:512.078850px;}
.y4e{bottom:515.551200px;}
.yc8{bottom:533.078700px;}
.y76{bottom:533.078850px;}
.yc7{bottom:554.078700px;}
.y75{bottom:554.078850px;}
.ydc{bottom:561.803250px;}
.y92{bottom:561.942300px;}
.ybe{bottom:565.159200px;}
.ye5{bottom:567.513600px;}
.yc6{bottom:575.078700px;}
.y74{bottom:575.078850px;}
.y63{bottom:575.461500px;}
.y18{bottom:578.827950px;}
.y91{bottom:581.742300px;}
.ybd{bottom:586.915200px;}
.ydb{bottom:591.307200px;}
.y62{bottom:595.261350px;}
.yc5{bottom:596.078700px;}
.y73{bottom:596.078850px;}
.y17{bottom:598.627950px;}
.ye4{bottom:599.811150px;}
.ybc{bottom:608.671050px;}
.y61{bottom:615.061500px;}
.yc4{bottom:617.078700px;}
.y9e{bottom:617.078850px;}
.yaa{bottom:619.981950px;}
.y72{bottom:629.055150px;}
.ybb{bottom:630.426900px;}
.yc3{bottom:638.078700px;}
.y9d{bottom:638.078850px;}
.y16{bottom:639.687900px;}
.ya9{bottom:639.781950px;}
.yba{bottom:652.182900px;}
.yc2{bottom:659.078700px;}
.y9c{bottom:659.078850px;}
.y15{bottom:659.487900px;}
.ya8{bottom:659.581950px;}
.y14{bottom:679.287900px;}
.ya7{bottom:679.381950px;}
.yc1{bottom:680.078700px;}
.y9b{bottom:680.078850px;}
.yb9{bottom:683.215050px;}
.y8e{bottom:688.745100px;}
.y13{bottom:699.087900px;}
.ya6{bottom:699.181950px;}
.yc0{bottom:701.078700px;}
.y9a{bottom:701.078850px;}
.yb8{bottom:703.015200px;}
.y8d{bottom:710.500950px;}
.y12{bottom:718.887900px;}
.ybf{bottom:722.078700px;}
.y99{bottom:722.078850px;}
.y8c{bottom:732.256950px;}
.y11{bottom:738.687900px;}
.yae{bottom:743.078700px;}
.y98{bottom:743.078850px;}
.y8b{bottom:754.012800px;}
.y10{bottom:758.487900px;}
.yd8{bottom:762.539400px;}
.y4d{bottom:764.078700px;}
.y97{bottom:764.078850px;}
.y8a{bottom:776.068800px;}
.yf{bottom:778.287900px;}
.yd7{bottom:784.295400px;}
.y4c{bottom:785.078700px;}
.y96{bottom:785.078850px;}
.yda{bottom:797.055150px;}
.ye{bottom:798.087900px;}
.yd6{bottom:806.051250px;}
.y4b{bottom:806.078700px;}
.y95{bottom:806.078850px;}
.y89{bottom:807.400950px;}
.y4a{bottom:827.078700px;}
.y94{bottom:827.078850px;}
.yd5{bottom:827.807250px;}
.yd{bottom:829.185300px;}
.yad{bottom:839.055150px;}
.yd3{bottom:841.318950px;}
.y49{bottom:848.078700px;}
.y71{bottom:848.078850px;}
.yd4{bottom:849.563100px;}
.yd2{bottom:856.318950px;}
.y48{bottom:869.078700px;}
.y70{bottom:869.078850px;}
.yd1{bottom:871.318950px;}
.y47{bottom:890.078700px;}
.y6f{bottom:890.078850px;}
.yd0{bottom:893.074800px;}
.y7{bottom:908.466750px;}
.y46{bottom:911.078700px;}
.y6e{bottom:911.078850px;}
.ycf{bottom:914.979600px;}
.y6{bottom:926.466750px;}
.y45{bottom:932.078700px;}
.y6d{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.y44{bottom:953.078700px;}
.y6c{bottom:953.078850px;}
.y93{bottom:965.055150px;}
.y43{bottom:974.078700px;}
.y6b{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y42{bottom:995.078700px;}
.y6a{bottom:995.078850px;}
.yce{bottom:999.138750px;}
.yb7{bottom:1002.582900px;}
.y41{bottom:1016.078700px;}
.y69{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ycd{bottom:1020.894750px;}
.yb6{bottom:1024.338750px;}
.ycc{bottom:1035.894750px;}
.y40{bottom:1037.078700px;}
.y68{bottom:1037.078850px;}
.yb5{bottom:1046.094750px;}
.y2{bottom:1049.282550px;}
.ycb{bottom:1050.894750px;}
.y3f{bottom:1058.078700px;}
.y67{bottom:1058.078850px;}
.yca{bottom:1065.894750px;}
.yb4{bottom:1068.150600px;}
.y3e{bottom:1079.078700px;}
.y66{bottom:1079.078850px;}
.yc9{bottom:1087.950600px;}
.yb3{bottom:1099.482900px;}
.y3d{bottom:1100.078700px;}
.y65{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.ye3{bottom:1111.570800px;}
.yb2{bottom:1119.282900px;}
.y3c{bottom:1121.078700px;}
.y64{bottom:1121.078850px;}
.y38{bottom:1159.189500px;}
.y37{bottom:1178.689500px;}
.y3b{bottom:1178.691750px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h11{height:36.492188px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h12{height:39.000000px;}
.h8{height:41.053711px;}
.he{height:43.057617px;}
.h13{height:43.320000px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h9{height:45.615234px;}
.hc{height:48.750000px;}
.h10{height:50.176758px;}
.h4{height:53.625000px;}
.hb{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;}
.xb{left:107.068950px;}
.x12{left:112.251900px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x11{left:141.871650px;}
.x13{left:254.621100px;}
.x1d{left:269.379300px;}
.x1c{left:271.011150px;}
.x1e{left:272.496450px;}
.x4{left:300.189000px;}
.xe{left:304.440900px;}
.x5{left:317.196900px;}
.x1b{left:329.801100px;}
.x14{left:386.289300px;}
.x3{left:396.050700px;}
.x15{left:407.692050px;}
.xf{left:410.669400px;}
.xd{left:413.927700px;}
.x1f{left:420.147150px;}
.xc{left:493.376400px;}
.x16{left:520.029750px;}
.x9{left:541.213800px;}
.x10{left:546.654750px;}
.x17{left:555.761850px;}
.xa{left:679.026300px;}
.x19{left:680.184750px;}
.x18{left:696.676950px;}
.x1a{left:717.182550px;}
.x20{left:806.443650px;}
.x1{left:813.005250px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v4{vertical-align:-15.984000pt;}
.v6{vertical-align:-9.600000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.840000pt;}
.v8{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls6{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.022400pt;}
.lsb{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.693333pt;}
.ls12{letter-spacing:2.064000pt;}
.ls0{letter-spacing:38.383435pt;}
.lsf{letter-spacing:524.710400pt;}
.lse{letter-spacing:537.510933pt;}
.lsd{letter-spacing:538.150400pt;}
.ws5{word-spacing:-15.936000pt;}
.wsa3{word-spacing:-14.608000pt;}
.wsbd{word-spacing:-13.968000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws65{word-spacing:-13.226667pt;}
.ws55{word-spacing:-13.066667pt;}
.wsa4{word-spacing:-11.904000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws22{word-spacing:-9.770667pt;}
.ws8a{word-spacing:-9.728000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws3b{word-spacing:-7.711147pt;}
.ws7c{word-spacing:-6.940032pt;}
.ws71{word-spacing:-2.986667pt;}
.ws62{word-spacing:-2.826667pt;}
.ws48{word-spacing:-2.666667pt;}
.ws49{word-spacing:-2.613333pt;}
.ws2d{word-spacing:-2.506667pt;}
.ws16{word-spacing:-2.453333pt;}
.ws70{word-spacing:-2.400000pt;}
.wsc2{word-spacing:-2.352000pt;}
.ws1c{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.304000pt;}
.ws6d{word-spacing:-2.293333pt;}
.ws56{word-spacing:-2.240000pt;}
.ws38{word-spacing:-2.186667pt;}
.ws98{word-spacing:-2.133333pt;}
.ws25{word-spacing:-2.026667pt;}
.ws12{word-spacing:-1.872000pt;}
.ws6f{word-spacing:-1.866667pt;}
.ws9e{word-spacing:-1.813333pt;}
.ws6a{word-spacing:-1.600000pt;}
.ws7b{word-spacing:-1.584000pt;}
.ws45{word-spacing:-1.440000pt;}
.wsac{word-spacing:-1.392000pt;}
.ws2e{word-spacing:-1.386667pt;}
.ws46{word-spacing:-1.333333pt;}
.ws4f{word-spacing:-1.280000pt;}
.wsad{word-spacing:-1.200000pt;}
.ws5a{word-spacing:-1.173333pt;}
.ws43{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-1.013333pt;}
.ws17{word-spacing:-0.853333pt;}
.ws59{word-spacing:-0.800000pt;}
.ws90{word-spacing:-0.693333pt;}
.ws77{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.624000pt;}
.ws2b{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.533333pt;}
.wsb1{word-spacing:-0.528000pt;}
.ws15{word-spacing:-0.480000pt;}
.ws4b{word-spacing:-0.426667pt;}
.ws4e{word-spacing:-0.320000pt;}
.wsc1{word-spacing:-0.288000pt;}
.ws6e{word-spacing:-0.266667pt;}
.ws8e{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.192000pt;}
.ws52{word-spacing:-0.160000pt;}
.wsb4{word-spacing:-0.144000pt;}
.ws61{word-spacing:-0.106667pt;}
.wse{word-spacing:-0.096000pt;}
.wsa9{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws78{word-spacing:0.048000pt;}
.ws18{word-spacing:0.053333pt;}
.ws36{word-spacing:0.106667pt;}
.ws74{word-spacing:0.160000pt;}
.ws93{word-spacing:0.213333pt;}
.ws50{word-spacing:0.266667pt;}
.ws87{word-spacing:0.384000pt;}
.ws6c{word-spacing:0.426667pt;}
.ws8d{word-spacing:0.480000pt;}
.wsa{word-spacing:0.614400pt;}
.ws7f{word-spacing:0.640000pt;}
.ws58{word-spacing:0.693333pt;}
.ws44{word-spacing:0.746667pt;}
.ws85{word-spacing:0.800000pt;}
.ws5b{word-spacing:0.853333pt;}
.wsc{word-spacing:0.864000pt;}
.ws10{word-spacing:0.912000pt;}
.ws73{word-spacing:0.960000pt;}
.wsab{word-spacing:1.008000pt;}
.ws57{word-spacing:1.066667pt;}
.ws5f{word-spacing:1.120000pt;}
.ws9b{word-spacing:1.173333pt;}
.wsb6{word-spacing:1.248000pt;}
.ws64{word-spacing:1.344000pt;}
.ws68{word-spacing:1.386667pt;}
.ws33{word-spacing:1.440000pt;}
.wsb7{word-spacing:1.488000pt;}
.ws66{word-spacing:1.493333pt;}
.wsa7{word-spacing:1.546667pt;}
.ws30{word-spacing:1.600000pt;}
.wsb3{word-spacing:1.632000pt;}
.ws67{word-spacing:1.653333pt;}
.wsba{word-spacing:1.728000pt;}
.ws2f{word-spacing:1.813333pt;}
.ws53{word-spacing:1.866667pt;}
.ws86{word-spacing:1.872000pt;}
.wsae{word-spacing:2.016000pt;}
.ws1a{word-spacing:2.026667pt;}
.ws1e{word-spacing:2.080000pt;}
.wsbb{word-spacing:2.160000pt;}
.ws76{word-spacing:2.186667pt;}
.ws3d{word-spacing:2.240000pt;}
.ws42{word-spacing:2.293333pt;}
.ws13{word-spacing:2.400000pt;}
.ws23{word-spacing:2.613333pt;}
.ws40{word-spacing:2.666667pt;}
.ws20{word-spacing:2.720000pt;}
.ws4d{word-spacing:2.826667pt;}
.wsb2{word-spacing:2.928000pt;}
.ws8c{word-spacing:2.933333pt;}
.ws41{word-spacing:2.986667pt;}
.ws91{word-spacing:3.040000pt;}
.wsa5{word-spacing:3.093333pt;}
.ws31{word-spacing:3.200000pt;}
.ws4a{word-spacing:3.306667pt;}
.wsb0{word-spacing:3.312000pt;}
.ws97{word-spacing:3.360000pt;}
.ws26{word-spacing:3.413333pt;}
.ws11{word-spacing:3.456000pt;}
.ws24{word-spacing:3.520000pt;}
.wsf{word-spacing:3.552000pt;}
.ws35{word-spacing:3.573333pt;}
.wsc3{word-spacing:3.600000pt;}
.ws63{word-spacing:3.733333pt;}
.ws5e{word-spacing:3.786667pt;}
.ws2c{word-spacing:3.840000pt;}
.ws6b{word-spacing:3.893333pt;}
.ws9c{word-spacing:3.946667pt;}
.ws32{word-spacing:4.000000pt;}
.wsbf{word-spacing:4.032000pt;}
.wsa6{word-spacing:4.053333pt;}
.ws92{word-spacing:4.160000pt;}
.ws99{word-spacing:4.213333pt;}
.ws9a{word-spacing:4.320000pt;}
.wsb5{word-spacing:4.368000pt;}
.ws60{word-spacing:4.373333pt;}
.ws95{word-spacing:4.480000pt;}
.ws83{word-spacing:4.533333pt;}
.wsb9{word-spacing:4.560000pt;}
.ws37{word-spacing:4.586667pt;}
.ws39{word-spacing:4.640000pt;}
.ws3f{word-spacing:4.693333pt;}
.ws4c{word-spacing:5.013333pt;}
.wsd{word-spacing:5.040000pt;}
.ws8b{word-spacing:5.120000pt;}
.ws5d{word-spacing:5.173333pt;}
.ws51{word-spacing:5.226667pt;}
.ws75{word-spacing:5.386667pt;}
.ws8f{word-spacing:5.440000pt;}
.ws84{word-spacing:5.493333pt;}
.ws72{word-spacing:5.600000pt;}
.wsbe{word-spacing:5.616000pt;}
.ws9d{word-spacing:5.706667pt;}
.ws7e{word-spacing:5.760000pt;}
.ws82{word-spacing:5.813333pt;}
.wsaf{word-spacing:5.904000pt;}
.wsaa{word-spacing:5.973333pt;}
.ws79{word-spacing:6.048000pt;}
.ws47{word-spacing:6.133333pt;}
.ws34{word-spacing:6.293333pt;}
.ws80{word-spacing:6.346667pt;}
.ws3a{word-spacing:6.384000pt;}
.ws3e{word-spacing:6.506667pt;}
.wsb8{word-spacing:6.768000pt;}
.ws5c{word-spacing:6.773333pt;}
.wsa2{word-spacing:6.880000pt;}
.ws69{word-spacing:6.986667pt;}
.wsbc{word-spacing:7.008000pt;}
.wsa8{word-spacing:7.040000pt;}
.ws54{word-spacing:7.056000pt;}
.ws94{word-spacing:7.146667pt;}
.wsa1{word-spacing:7.306667pt;}
.ws9f{word-spacing:7.520000pt;}
.ws14{word-spacing:7.573333pt;}
.ws2a{word-spacing:7.840000pt;}
.ws21{word-spacing:8.000000pt;}
.ws81{word-spacing:8.106667pt;}
.ws1f{word-spacing:8.746667pt;}
.ws1d{word-spacing:8.906667pt;}
.ws96{word-spacing:9.013333pt;}
.wsc4{word-spacing:9.120000pt;}
.ws28{word-spacing:9.333333pt;}
.ws27{word-spacing:9.440000pt;}
.wsa0{word-spacing:11.200000pt;}
.ws29{word-spacing:12.480000pt;}
.wsc5{word-spacing:22.032000pt;}
.wsc0{word-spacing:62.880000pt;}
.ws89{word-spacing:218.798400pt;}
.ws88{word-spacing:509.393067pt;}
.ws7d{word-spacing:516.692267pt;}
.ws3c{word-spacing:732.797867pt;}
._7{margin-left:-9.884800pt;}
._2b{margin-left:-6.061333pt;}
._6{margin-left:-5.147733pt;}
._5{margin-left:-3.882667pt;}
._1{margin-left:-2.828800pt;}
._4{margin-left:-1.920000pt;}
._0{margin-left:-0.924800pt;}
._3{width:1.136000pt;}
._8{width:2.026667pt;}
._12{width:3.685333pt;}
._11{width:4.714667pt;}
._9{width:6.085333pt;}
._a{width:7.568000pt;}
._b{width:8.565333pt;}
._2a{width:9.640000pt;}
._28{width:13.153600pt;}
._c{width:14.544000pt;}
._29{width:21.336000pt;}
._2{width:32.328533pt;}
._27{width:38.318933pt;}
._2c{width:42.186133pt;}
._1d{width:318.540267pt;}
._1a{width:330.539733pt;}
._1e{width:380.014933pt;}
._14{width:399.678400pt;}
._16{width:419.053333pt;}
._18{width:426.806400pt;}
._21{width:431.581867pt;}
._20{width:433.446400pt;}
._25{width:439.752533pt;}
._26{width:443.681600pt;}
._1f{width:445.556267pt;}
._22{width:446.595200pt;}
._23{width:451.357333pt;}
._24{width:457.179200pt;}
._1b{width:686.892800pt;}
._1c{width:691.297600pt;}
._19{width:714.882133pt;}
._13{width:719.163200pt;}
._17{width:722.917867pt;}
._15{width:735.547200pt;}
._10{width:765.664533pt;}
._e{width:908.585067pt;}
._d{width:969.677333pt;}
._f{width:1001.829333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.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;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.y88{bottom:98.267867pt;}
.y60{bottom:100.514400pt;}
.ya5{bottom:100.514533pt;}
.yb{bottom:104.175867pt;}
.y2b{bottom:104.189067pt;}
.yac{bottom:107.239200pt;}
.y87{bottom:114.267867pt;}
.ya{bottom:116.975867pt;}
.y5f{bottom:119.181067pt;}
.ya4{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.yab{bottom:124.839200pt;}
.y9{bottom:129.775867pt;}
.y86{bottom:130.267867pt;}
.y5e{bottom:137.847733pt;}
.ya3{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.y8{bottom:142.575867pt;}
.ye2{bottom:142.692800pt;}
.y5d{bottom:156.514400pt;}
.ya2{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.y5c{bottom:175.181067pt;}
.ya1{bottom:175.181200pt;}
.y27{bottom:178.855733pt;}
.y36{bottom:180.812133pt;}
.y5b{bottom:193.847733pt;}
.y85{bottom:193.847867pt;}
.y35{bottom:196.812000pt;}
.y26{bottom:197.522400pt;}
.ye1{bottom:198.692800pt;}
.y5a{bottom:212.514400pt;}
.y84{bottom:212.514533pt;}
.y34{bottom:212.812000pt;}
.y25{bottom:216.189067pt;}
.y33{bottom:228.812000pt;}
.y59{bottom:231.181067pt;}
.y83{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y32{bottom:244.812000pt;}
.y58{bottom:249.847733pt;}
.y82{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.ye0{bottom:254.692800pt;}
.yb1{bottom:260.493467pt;}
.y31{bottom:260.812000pt;}
.y57{bottom:268.514400pt;}
.y81{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y30{bottom:276.812000pt;}
.y56{bottom:287.181067pt;}
.y80{bottom:287.181200pt;}
.y21{bottom:290.855733pt;}
.y55{bottom:305.847733pt;}
.y7f{bottom:305.847867pt;}
.y2f{bottom:307.930133pt;}
.y20{bottom:309.522400pt;}
.ydf{bottom:310.692800pt;}
.y2e{bottom:323.930133pt;}
.y54{bottom:324.514400pt;}
.y7e{bottom:324.514533pt;}
.y1f{bottom:328.189067pt;}
.y2d{bottom:339.930133pt;}
.y53{bottom:343.181067pt;}
.y7d{bottom:343.181200pt;}
.y1e{bottom:346.855733pt;}
.y2c{bottom:355.930133pt;}
.y52{bottom:361.847733pt;}
.y7c{bottom:361.847867pt;}
.y1d{bottom:365.522400pt;}
.yde{bottom:366.692800pt;}
.yd9{bottom:372.493467pt;}
.y51{bottom:380.514400pt;}
.y7b{bottom:380.514533pt;}
.y1c{bottom:384.189067pt;}
.ya0{bottom:392.225600pt;}
.y50{bottom:399.181067pt;}
.y7a{bottom:399.181200pt;}
.y1b{bottom:402.855733pt;}
.yb0{bottom:417.847733pt;}
.y79{bottom:417.847867pt;}
.y9f{bottom:420.934400pt;}
.y1a{bottom:421.522400pt;}
.y4f{bottom:429.558800pt;}
.y90{bottom:436.514400pt;}
.y78{bottom:436.514533pt;}
.ydd{bottom:441.359467pt;}
.yaf{bottom:447.160133pt;}
.y19{bottom:450.492800pt;}
.y8f{bottom:455.181067pt;}
.y77{bottom:455.181200pt;}
.y4e{bottom:458.267733pt;}
.yc8{bottom:473.847733pt;}
.y76{bottom:473.847867pt;}
.yc7{bottom:492.514400pt;}
.y75{bottom:492.514533pt;}
.ydc{bottom:499.380667pt;}
.y92{bottom:499.504267pt;}
.ybe{bottom:502.363733pt;}
.ye5{bottom:504.456533pt;}
.yc6{bottom:511.181067pt;}
.y74{bottom:511.181200pt;}
.y63{bottom:511.521333pt;}
.y18{bottom:514.513733pt;}
.y91{bottom:517.104267pt;}
.ybd{bottom:521.702400pt;}
.ydb{bottom:525.606400pt;}
.y62{bottom:529.121200pt;}
.yc5{bottom:529.847733pt;}
.y73{bottom:529.847867pt;}
.y17{bottom:532.113733pt;}
.ye4{bottom:533.165467pt;}
.ybc{bottom:541.040933pt;}
.y61{bottom:546.721333pt;}
.yc4{bottom:548.514400pt;}
.y9e{bottom:548.514533pt;}
.yaa{bottom:551.095067pt;}
.y72{bottom:559.160133pt;}
.ybb{bottom:560.379467pt;}
.yc3{bottom:567.181067pt;}
.y9d{bottom:567.181200pt;}
.y16{bottom:568.611467pt;}
.ya9{bottom:568.695067pt;}
.yba{bottom:579.718133pt;}
.yc2{bottom:585.847733pt;}
.y9c{bottom:585.847867pt;}
.y15{bottom:586.211467pt;}
.ya8{bottom:586.295067pt;}
.y14{bottom:603.811467pt;}
.ya7{bottom:603.895067pt;}
.yc1{bottom:604.514400pt;}
.y9b{bottom:604.514533pt;}
.yb9{bottom:607.302267pt;}
.y8e{bottom:612.217867pt;}
.y13{bottom:621.411467pt;}
.ya6{bottom:621.495067pt;}
.yc0{bottom:623.181067pt;}
.y9a{bottom:623.181200pt;}
.yb8{bottom:624.902400pt;}
.y8d{bottom:631.556400pt;}
.y12{bottom:639.011467pt;}
.ybf{bottom:641.847733pt;}
.y99{bottom:641.847867pt;}
.y8c{bottom:650.895067pt;}
.y11{bottom:656.611467pt;}
.yae{bottom:660.514400pt;}
.y98{bottom:660.514533pt;}
.y8b{bottom:670.233600pt;}
.y10{bottom:674.211467pt;}
.yd8{bottom:677.812800pt;}
.y4d{bottom:679.181067pt;}
.y97{bottom:679.181200pt;}
.y8a{bottom:689.838933pt;}
.yf{bottom:691.811467pt;}
.yd7{bottom:697.151467pt;}
.y4c{bottom:697.847733pt;}
.y96{bottom:697.847867pt;}
.yda{bottom:708.493467pt;}
.ye{bottom:709.411467pt;}
.yd6{bottom:716.490000pt;}
.y4b{bottom:716.514400pt;}
.y95{bottom:716.514533pt;}
.y89{bottom:717.689733pt;}
.y4a{bottom:735.181067pt;}
.y94{bottom:735.181200pt;}
.yd5{bottom:735.828667pt;}
.yd{bottom:737.053600pt;}
.yad{bottom:745.826800pt;}
.yd3{bottom:747.839067pt;}
.y49{bottom:753.847733pt;}
.y71{bottom:753.847867pt;}
.yd4{bottom:755.167200pt;}
.yd2{bottom:761.172400pt;}
.y48{bottom:772.514400pt;}
.y70{bottom:772.514533pt;}
.yd1{bottom:774.505733pt;}
.y47{bottom:791.181067pt;}
.y6f{bottom:791.181200pt;}
.yd0{bottom:793.844267pt;}
.y7{bottom:807.526000pt;}
.y46{bottom:809.847733pt;}
.y6e{bottom:809.847867pt;}
.ycf{bottom:813.315200pt;}
.y6{bottom:823.526000pt;}
.y45{bottom:828.514400pt;}
.y6d{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.y44{bottom:847.181067pt;}
.y6c{bottom:847.181200pt;}
.y93{bottom:857.826800pt;}
.y43{bottom:865.847733pt;}
.y6b{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y42{bottom:884.514400pt;}
.y6a{bottom:884.514533pt;}
.yce{bottom:888.123333pt;}
.yb7{bottom:891.184800pt;}
.y41{bottom:903.181067pt;}
.y69{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ycd{bottom:907.462000pt;}
.yb6{bottom:910.523333pt;}
.ycc{bottom:920.795333pt;}
.y40{bottom:921.847733pt;}
.y68{bottom:921.847867pt;}
.yb5{bottom:929.862000pt;}
.y2{bottom:932.695600pt;}
.ycb{bottom:934.128667pt;}
.y3f{bottom:940.514400pt;}
.y67{bottom:940.514533pt;}
.yca{bottom:947.462000pt;}
.yb4{bottom:949.467200pt;}
.y3e{bottom:959.181067pt;}
.y66{bottom:959.181200pt;}
.yc9{bottom:967.067200pt;}
.yb3{bottom:977.318133pt;}
.y3d{bottom:977.847733pt;}
.y65{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.ye3{bottom:988.062933pt;}
.yb2{bottom:994.918133pt;}
.y3c{bottom:996.514400pt;}
.y64{bottom:996.514533pt;}
.y38{bottom:1030.390667pt;}
.y37{bottom:1047.724000pt;}
.y3b{bottom:1047.726000pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h11{height:32.437500pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h12{height:34.666667pt;}
.h8{height:36.492188pt;}
.he{height:38.273438pt;}
.h13{height:38.506667pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h9{height:40.546875pt;}
.hc{height:43.333333pt;}
.h10{height:44.601562pt;}
.h4{height:47.666667pt;}
.hb{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;}
.xb{left:95.172400pt;}
.x12{left:99.779467pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x11{left:126.108133pt;}
.x13{left:226.329867pt;}
.x1d{left:239.448267pt;}
.x1c{left:240.898800pt;}
.x1e{left:242.219067pt;}
.x4{left:266.834667pt;}
.xe{left:270.614133pt;}
.x5{left:281.952800pt;}
.x1b{left:293.156533pt;}
.x14{left:343.368267pt;}
.x3{left:352.045067pt;}
.x15{left:362.392933pt;}
.xf{left:365.039467pt;}
.xd{left:367.935733pt;}
.x1f{left:373.464133pt;}
.xc{left:438.556800pt;}
.x16{left:462.248667pt;}
.x9{left:481.078933pt;}
.x10{left:485.915333pt;}
.x17{left:494.010533pt;}
.xa{left:603.578933pt;}
.x19{left:604.608667pt;}
.x18{left:619.268400pt;}
.x1a{left:637.495600pt;}
.x20{left:716.838800pt;}
.x1{left:722.671333pt;}
}




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