
    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_dcc82b187a84e1732a8ffbcd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0422647071350a199de1d87d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f0568cef2b02afac214e78fa.woff2')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_2d4eb63b9d1371495c97ddae.woff2')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_f352b9d6f31bdf2e0b091b17.woff2')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_1383a1b4429d82af319c9365.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8c767b34e5eb98203d952f15.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.794496;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_89d9c8be76ea942480c5ac6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136719;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_08a9c0112f17bc55d864f64d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_fe78ce976633715564104bd7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_79f2137d649988cf12f0de89.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.821289;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;}
.v7{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.984600px;}
.v2{vertical-align:18.162000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:30.000000px;}
.ls11{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.702000px;}
.ls2{letter-spacing:-0.691200px;}
.ls16{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.409266px;}
.ls7{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.006600px;}
.lsf{letter-spacing:0.009000px;}
.lse{letter-spacing:0.009720px;}
.lsd{letter-spacing:0.017400px;}
.lsa{letter-spacing:0.023400px;}
.lsb{letter-spacing:0.024600px;}
.ls17{letter-spacing:0.069960px;}
.ls15{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.364560px;}
.ls8{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.804540px;}
.ls13{letter-spacing:0.814620px;}
.ls6{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.960000px;}
.ls12{letter-spacing:1.380000px;}
.ls9{letter-spacing:6.960000px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.wsb5{word-spacing:-16.434000px;}
.ws88{word-spacing:-16.260000px;}
.wsb4{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.940000px;}
.ws39{word-spacing:-14.880000px;}
.ws95{word-spacing:-13.446000px;}
.wsa8{word-spacing:-13.392000px;}
.ws7{word-spacing:-12.366000px;}
.ws8{word-spacing:-12.150000px;}
.ws91{word-spacing:-11.952000px;}
.ws71{word-spacing:-10.992000px;}
.ws7b{word-spacing:-10.944000px;}
.ws1{word-spacing:-10.896000px;}
.ws2{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.ws87{word-spacing:-9.479580px;}
.wsb3{word-spacing:-8.745000px;}
.ws38{word-spacing:-8.675040px;}
.ws94{word-spacing:-7.807536px;}
.ws5{word-spacing:-7.398270px;}
.ws17{word-spacing:-5.040000px;}
.wsac{word-spacing:-3.300000px;}
.ws99{word-spacing:-3.294000px;}
.wsb6{word-spacing:-2.940000px;}
.ws67{word-spacing:-2.880000px;}
.ws36{word-spacing:-2.700000px;}
.ws2d{word-spacing:-2.520000px;}
.ws43{word-spacing:-2.400000px;}
.wsc{word-spacing:-2.376000px;}
.ws21{word-spacing:-2.160000px;}
.ws4f{word-spacing:-2.106000px;}
.ws30{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.920000px;}
.ws3a{word-spacing:-1.800000px;}
.ws9e{word-spacing:-1.680000px;}
.ws8e{word-spacing:-1.620000px;}
.ws20{word-spacing:-1.560000px;}
.ws86{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.404000px;}
.ws5e{word-spacing:-1.380000px;}
.ws55{word-spacing:-1.260000px;}
.ws62{word-spacing:-1.200000px;}
.ws9f{word-spacing:-1.140000px;}
.ws19{word-spacing:-1.026000px;}
.ws1a{word-spacing:-1.020000px;}
.ws16{word-spacing:-0.960000px;}
.wsa0{word-spacing:-0.900000px;}
.ws84{word-spacing:-0.864000px;}
.ws42{word-spacing:-0.840000px;}
.ws1b{word-spacing:-0.780000px;}
.ws22{word-spacing:-0.720000px;}
.ws41{word-spacing:-0.660000px;}
.ws45{word-spacing:-0.540000px;}
.ws23{word-spacing:-0.480000px;}
.ws5c{word-spacing:-0.420000px;}
.wsb7{word-spacing:-0.360000px;}
.ws54{word-spacing:-0.300000px;}
.wsa5{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.216000px;}
.ws5f{word-spacing:-0.180000px;}
.wsa6{word-spacing:-0.144000px;}
.wsaf{word-spacing:-0.120000px;}
.ws4d{word-spacing:-0.060000px;}
.ws70{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws83{word-spacing:0.180000px;}
.ws3d{word-spacing:0.240000px;}
.wsab{word-spacing:0.300000px;}
.ws3b{word-spacing:0.360000px;}
.ws98{word-spacing:0.420000px;}
.ws49{word-spacing:0.432000px;}
.wsa7{word-spacing:0.480000px;}
.ws2f{word-spacing:0.540000px;}
.ws50{word-spacing:0.594000px;}
.ws2c{word-spacing:0.600000px;}
.ws4{word-spacing:0.648000px;}
.ws6b{word-spacing:0.660000px;}
.wsb{word-spacing:0.691200px;}
.wse{word-spacing:0.702000px;}
.ws40{word-spacing:0.720000px;}
.wsbe{word-spacing:0.756000px;}
.ws6c{word-spacing:0.780000px;}
.wsf{word-spacing:0.864000px;}
.ws69{word-spacing:0.900000px;}
.ws73{word-spacing:0.912000px;}
.ws59{word-spacing:0.960000px;}
.wsad{word-spacing:1.020000px;}
.ws51{word-spacing:1.080000px;}
.ws14{word-spacing:1.134000px;}
.ws3e{word-spacing:1.140000px;}
.ws5a{word-spacing:1.200000px;}
.ws1d{word-spacing:1.260000px;}
.ws85{word-spacing:1.344000px;}
.ws53{word-spacing:1.380000px;}
.ws10{word-spacing:1.404000px;}
.wsb9{word-spacing:1.440000px;}
.ws12{word-spacing:1.512000px;}
.wsd{word-spacing:1.566000px;}
.wsc2{word-spacing:1.620000px;}
.ws90{word-spacing:1.860000px;}
.ws58{word-spacing:1.920000px;}
.wsbd{word-spacing:1.944000px;}
.ws68{word-spacing:2.100000px;}
.ws35{word-spacing:2.220000px;}
.ws37{word-spacing:2.280000px;}
.ws15{word-spacing:2.322000px;}
.ws32{word-spacing:2.340000px;}
.ws34{word-spacing:2.460000px;}
.ws6e{word-spacing:2.520000px;}
.ws5b{word-spacing:2.820000px;}
.ws8f{word-spacing:2.880000px;}
.wsa9{word-spacing:2.940000px;}
.ws3c{word-spacing:3.000000px;}
.ws4c{word-spacing:3.060000px;}
.ws3f{word-spacing:3.120000px;}
.ws6f{word-spacing:3.180000px;}
.ws9d{word-spacing:3.240000px;}
.ws26{word-spacing:3.300000px;}
.ws52{word-spacing:3.360000px;}
.ws11{word-spacing:3.564000px;}
.ws2a{word-spacing:3.600000px;}
.ws63{word-spacing:3.780000px;}
.wsaa{word-spacing:3.900000px;}
.wsb2{word-spacing:4.050000px;}
.ws31{word-spacing:4.140000px;}
.wsc0{word-spacing:4.374000px;}
.wsbc{word-spacing:4.440000px;}
.ws48{word-spacing:4.620000px;}
.ws1f{word-spacing:4.680000px;}
.wsbb{word-spacing:5.160000px;}
.ws4a{word-spacing:5.220000px;}
.ws66{word-spacing:5.280000px;}
.ws60{word-spacing:5.400000px;}
.ws61{word-spacing:5.460000px;}
.ws1e{word-spacing:5.520000px;}
.ws8c{word-spacing:5.580000px;}
.ws4e{word-spacing:5.700000px;}
.ws8d{word-spacing:6.000000px;}
.ws2e{word-spacing:6.180000px;}
.ws44{word-spacing:6.240000px;}
.ws27{word-spacing:6.420000px;}
.ws89{word-spacing:6.540000px;}
.ws5d{word-spacing:6.600000px;}
.ws47{word-spacing:6.660000px;}
.ws28{word-spacing:6.780000px;}
.ws29{word-spacing:6.900000px;}
.wsbf{word-spacing:6.966000px;}
.ws64{word-spacing:7.140000px;}
.ws6d{word-spacing:7.200000px;}
.ws8a{word-spacing:7.260000px;}
.wsba{word-spacing:7.620000px;}
.ws46{word-spacing:7.680000px;}
.wsa1{word-spacing:7.800000px;}
.ws2b{word-spacing:7.860000px;}
.wsb0{word-spacing:8.280000px;}
.ws8b{word-spacing:8.400000px;}
.ws33{word-spacing:8.520000px;}
.wsa3{word-spacing:8.580000px;}
.ws24{word-spacing:8.760000px;}
.wsae{word-spacing:8.880000px;}
.ws97{word-spacing:9.180000px;}
.ws96{word-spacing:9.240000px;}
.ws65{word-spacing:9.300000px;}
.ws25{word-spacing:9.480000px;}
.ws4b{word-spacing:9.600000px;}
.wsc1{word-spacing:9.720000px;}
.ws1c{word-spacing:9.840000px;}
.wsa4{word-spacing:11.700000px;}
.wsb8{word-spacing:12.540000px;}
.wsb1{word-spacing:13.020000px;}
.wsa2{word-spacing:16.620000px;}
.ws72{word-spacing:163.200000px;}
.ws78{word-spacing:195.360000px;}
.ws74{word-spacing:196.128000px;}
.ws7f{word-spacing:215.904000px;}
.ws77{word-spacing:228.192000px;}
.ws9b{word-spacing:269.088000px;}
.ws81{word-spacing:298.032000px;}
.ws93{word-spacing:309.072000px;}
.ws79{word-spacing:325.392000px;}
.ws7a{word-spacing:341.712000px;}
.ws82{word-spacing:346.896000px;}
.ws80{word-spacing:348.048000px;}
.ws92{word-spacing:353.184000px;}
.ws76{word-spacing:361.536000px;}
.ws7c{word-spacing:377.424000px;}
.ws9a{word-spacing:389.616000px;}
.ws7d{word-spacing:392.160000px;}
.ws7e{word-spacing:420.240000px;}
.ws75{word-spacing:444.144000px;}
.ws9c{word-spacing:526.872000px;}
.ws6a{word-spacing:692.460000px;}
.ws57{word-spacing:727.500000px;}
.ws56{word-spacing:809.100000px;}
._b{margin-left:-10.924800px;}
._4{margin-left:-7.872000px;}
._4a{margin-left:-6.215400px;}
._a{margin-left:-4.987800px;}
._7{margin-left:-3.427200px;}
._1{margin-left:-2.254200px;}
._0{margin-left:-1.040400px;}
._2{width:1.611600px;}
._9{width:2.865600px;}
._6{width:4.147200px;}
._5{width:5.810400px;}
._8{width:6.852600px;}
._c{width:7.989000px;}
._d{width:9.420000px;}
._49{width:10.476000px;}
._f{width:11.662200px;}
._e{width:12.816000px;}
._54{width:15.365400px;}
._10{width:16.772400px;}
._53{width:19.566000px;}
._3{width:36.369600px;}
._13{width:54.094200px;}
._14{width:72.528000px;}
._12{width:85.728000px;}
._37{width:122.912400px;}
._38{width:135.056400px;}
._39{width:137.707800px;}
._3f{width:197.232000px;}
._4f{width:201.166200px;}
._4c{width:203.904000px;}
._50{width:213.478200px;}
._30{width:227.808000px;}
._22{width:240.096000px;}
._52{width:242.640000px;}
._3b{width:251.328000px;}
._46{width:265.440000px;}
._4e{width:289.536000px;}
._1a{width:300.336000px;}
._40{width:305.856000px;}
._2e{width:309.936000px;}
._48{width:312.816000px;}
._51{width:320.158200px;}
._19{width:321.552000px;}
._47{width:329.520000px;}
._4d{width:331.872000px;}
._32{width:340.128000px;}
._4b{width:347.520000px;}
._36{width:350.400000px;}
._45{width:352.608000px;}
._21{width:353.616000px;}
._2c{width:363.888000px;}
._3d{width:367.920000px;}
._1f{width:370.176000px;}
._1b{width:374.688000px;}
._18{width:381.072000px;}
._2f{width:384.336000px;}
._16{width:404.064000px;}
._43{width:407.328000px;}
._33{width:408.864000px;}
._1c{width:412.224000px;}
._28{width:413.664000px;}
._20{width:424.704000px;}
._2a{width:428.688000px;}
._25{width:432.144000px;}
._2d{width:433.200000px;}
._1d{width:441.024000px;}
._41{width:444.096000px;}
._42{width:445.536000px;}
._3c{width:447.648000px;}
._31{width:449.424000px;}
._3e{width:450.720000px;}
._3a{width:452.208000px;}
._44{width:453.360000px;}
._34{width:456.048000px;}
._24{width:458.064000px;}
._23{width:464.304000px;}
._2b{width:469.200000px;}
._17{width:478.512000px;}
._26{width:486.192000px;}
._29{width:488.160000px;}
._1e{width:495.600000px;}
._27{width:506.016000px;}
._35{width:510.096000px;}
._15{width:529.872000px;}
._11{width:652.080000px;}
.fc5{color:rgb(27,53,84);}
.fc4{color:rgb(27,54,84);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(118,176,227);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fsa{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;}
.fs9{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y11c{bottom:113.054700px;}
.y9a{bottom:113.078700px;}
.y6d{bottom:113.078850px;}
.yc{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.y8a{bottom:120.496200px;}
.yca{bottom:120.543300px;}
.yb{bottom:131.601450px;}
.y11b{bottom:134.060700px;}
.y99{bottom:134.078700px;}
.y6c{bottom:134.078850px;}
.yc9{bottom:135.543300px;}
.y2a{bottom:138.212550px;}
.yf0{bottom:139.529400px;}
.y89{bottom:140.300700px;}
.yd6{bottom:144.023850px;}
.ya{bottom:145.997850px;}
.yc8{bottom:150.543300px;}
.y11a{bottom:155.066700px;}
.y98{bottom:155.078700px;}
.y6b{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.y9{bottom:160.397850px;}
.yd5{bottom:163.828350px;}
.yc7{bottom:175.480350px;}
.y119{bottom:176.072700px;}
.y97{bottom:176.078700px;}
.y6a{bottom:176.078850px;}
.ye9{bottom:190.441050px;}
.y28{bottom:192.352350px;}
.y118{bottom:196.862700px;}
.y96{bottom:197.078700px;}
.y69{bottom:197.078850px;}
.yc6{bottom:197.236350px;}
.yef{bottom:202.529400px;}
.ya4{bottom:211.441050px;}
.y117{bottom:217.868700px;}
.y95{bottom:218.078700px;}
.y68{bottom:218.078850px;}
.yc3{bottom:218.992200px;}
.y37{bottom:221.447400px;}
.y116{bottom:238.874700px;}
.y94{bottom:239.078700px;}
.y67{bottom:239.078850px;}
.y36{bottom:239.442900px;}
.yc5{bottom:240.748050px;}
.y9d{bottom:253.441050px;}
.y35{bottom:257.438400px;}
.y115{bottom:259.880700px;}
.y145{bottom:260.012850px;}
.y93{bottom:260.078700px;}
.y66{bottom:260.078850px;}
.yc4{bottom:262.504200px;}
.yee{bottom:265.529400px;}
.y27{bottom:268.627950px;}
.y34{bottom:275.433900px;}
.ya5{bottom:277.829550px;}
.y114{bottom:280.886700px;}
.y144{bottom:281.018850px;}
.y92{bottom:281.078700px;}
.y65{bottom:281.078850px;}
.yc2{bottom:284.259900px;}
.y33{bottom:293.429400px;}
.y113{bottom:301.892700px;}
.y143{bottom:302.024850px;}
.y91{bottom:302.078700px;}
.y64{bottom:302.078850px;}
.yc1{bottom:306.015600px;}
.y26{bottom:309.629250px;}
.y32{bottom:311.424900px;}
.y112{bottom:322.898700px;}
.y142{bottom:323.030850px;}
.y90{bottom:323.078700px;}
.y63{bottom:323.078850px;}
.yc0{bottom:327.771600px;}
.ybd{bottom:327.771750px;}
.yed{bottom:328.937100px;}
.y31{bottom:329.420400px;}
.y25{bottom:329.433750px;}
.y111{bottom:343.904700px;}
.y141{bottom:344.036850px;}
.y8f{bottom:344.078700px;}
.y62{bottom:344.078850px;}
.y30{bottom:347.415900px;}
.y24{bottom:349.238250px;}
.ybf{bottom:349.527600px;}
.ya1{bottom:356.998050px;}
.ycb{bottom:358.441050px;}
.y110{bottom:364.910700px;}
.y140{bottom:365.042850px;}
.y8e{bottom:365.078700px;}
.y61{bottom:365.078850px;}
.y23{bottom:369.042750px;}
.ybe{bottom:371.283750px;}
.ya0{bottom:376.802550px;}
.y2f{bottom:382.421400px;}
.y10f{bottom:385.916700px;}
.y13f{bottom:386.048850px;}
.y8d{bottom:386.078700px;}
.y60{bottom:386.078850px;}
.y22{bottom:388.847250px;}
.ybc{bottom:393.039300px;}
.y9f{bottom:396.607050px;}
.y2e{bottom:400.421400px;}
.y10e{bottom:406.922700px;}
.y13e{bottom:407.054850px;}
.y5f{bottom:407.078850px;}
.y21{bottom:408.651750px;}
.ybb{bottom:414.795300px;}
.y2d{bottom:418.421400px;}
.yb8{bottom:425.673300px;}
.y10d{bottom:427.928700px;}
.y13d{bottom:428.060850px;}
.y5e{bottom:428.078850px;}
.y20{bottom:428.456250px;}
.y9c{bottom:436.103400px;}
.y2c{bottom:436.421400px;}
.yba{bottom:436.551300px;}
.ya2{bottom:442.441050px;}
.y1f{bottom:448.260750px;}
.y10c{bottom:448.934700px;}
.y13c{bottom:449.066850px;}
.y5d{bottom:449.078850px;}
.y9b{bottom:455.907900px;}
.yb9{bottom:458.301300px;}
.y1e{bottom:468.065250px;}
.y10b{bottom:469.940700px;}
.y13b{bottom:470.072850px;}
.y5c{bottom:470.078850px;}
.yb7{bottom:480.063150px;}
.y1d{bottom:487.869750px;}
.y13a{bottom:490.898850px;}
.y10a{bottom:490.946700px;}
.y5b{bottom:491.078850px;}
.yb6{bottom:501.819000px;}
.yb3{bottom:505.196850px;}
.yec{bottom:505.441050px;}
.y1c{bottom:507.674250px;}
.y139{bottom:511.904850px;}
.y109{bottom:511.952700px;}
.y5a{bottom:512.078850px;}
.yb2{bottom:520.196850px;}
.yb5{bottom:523.568850px;}
.y1b{bottom:527.478750px;}
.y138{bottom:532.910850px;}
.y108{bottom:532.958700px;}
.y59{bottom:533.078850px;}
.yb4{bottom:545.324850px;}
.y1a{bottom:547.283250px;}
.y137{bottom:553.916850px;}
.y107{bottom:553.964700px;}
.y88{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.y19{bottom:567.042750px;}
.yb1{bottom:567.086700px;}
.y136{bottom:574.922850px;}
.y106{bottom:574.970700px;}
.y87{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.y18{bottom:586.847250px;}
.yb0{bottom:588.842250px;}
.y135{bottom:595.928850px;}
.y105{bottom:595.976700px;}
.y86{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.y17{bottom:606.651750px;}
.yaf{bottom:610.598250px;}
.y134{bottom:616.934850px;}
.y104{bottom:616.982700px;}
.y85{bottom:617.078700px;}
.y55{bottom:617.078850px;}
.yab{bottom:621.482100px;}
.ye8{bottom:621.812100px;}
.y16{bottom:626.456250px;}
.yae{bottom:632.354250px;}
.ye7{bottom:636.812100px;}
.y133{bottom:637.940850px;}
.y103{bottom:637.988700px;}
.y84{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.y15{bottom:646.260750px;}
.yad{bottom:654.110250px;}
.ye6{bottom:658.568100px;}
.y132{bottom:658.946850px;}
.y102{bottom:658.994700px;}
.y83{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.y14{bottom:666.065250px;}
.ye5{bottom:673.568100px;}
.yac{bottom:675.866100px;}
.y131{bottom:679.952850px;}
.y101{bottom:680.000700px;}
.y82{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.y13{bottom:685.869750px;}
.y9e{bottom:694.441050px;}
.ye4{bottom:695.324100px;}
.ya9{bottom:697.922100px;}
.y130{bottom:700.958850px;}
.y100{bottom:701.006700px;}
.y81{bottom:701.078700px;}
.y51{bottom:701.078850px;}
.ya8{bottom:705.422100px;}
.y12{bottom:705.674250px;}
.ye3{bottom:710.324100px;}
.yaa{bottom:712.922100px;}
.y12f{bottom:721.964850px;}
.yff{bottom:722.012700px;}
.y80{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.y11{bottom:725.478750px;}
.ye0{bottom:732.080100px;}
.ye2{bottom:739.580100px;}
.y12e{bottom:742.970850px;}
.yfe{bottom:743.018700px;}
.y7f{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.ya7{bottom:744.249900px;}
.y10{bottom:745.283250px;}
.ydf{bottom:747.080100px;}
.yeb{bottom:754.561650px;}
.ye1{bottom:754.580100px;}
.yde{bottom:762.080100px;}
.y12d{bottom:763.976850px;}
.yfd{bottom:764.024700px;}
.ya6{bottom:764.054400px;}
.y7e{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.yf{bottom:765.087750px;}
.yea{bottom:774.366150px;}
.ydd{bottom:783.836100px;}
.y12c{bottom:784.982850px;}
.yfc{bottom:785.030700px;}
.y7d{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.ye{bottom:796.185300px;}
.ydc{bottom:798.836100px;}
.y12b{bottom:805.988850px;}
.yfb{bottom:806.036700px;}
.y7c{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.yda{bottom:820.892100px;}
.y12a{bottom:826.994850px;}
.yfa{bottom:827.042700px;}
.y7b{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yd9{bottom:828.392100px;}
.ydb{bottom:835.892100px;}
.y129{bottom:848.000850px;}
.yf9{bottom:848.048700px;}
.y7a{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.yd8{bottom:867.219900px;}
.y128{bottom:869.006850px;}
.yf8{bottom:869.054700px;}
.y79{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.yd7{bottom:887.024400px;}
.y127{bottom:890.012850px;}
.yf7{bottom:890.060700px;}
.y78{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.ycc{bottom:901.916400px;}
.y126{bottom:911.018850px;}
.yf6{bottom:911.066700px;}
.y77{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.y125{bottom:932.024850px;}
.yf5{bottom:932.072700px;}
.y76{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y5{bottom:946.474800px;}
.y124{bottom:953.030850px;}
.y75{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.yd4{bottom:957.114600px;}
.y123{bottom:974.036850px;}
.y74{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.yd3{bottom:978.870600px;}
.y4{bottom:983.288550px;}
.yf4{bottom:988.440900px;}
.y122{bottom:995.042850px;}
.y73{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.yd2{bottom:1000.626600px;}
.y121{bottom:1016.048850px;}
.y72{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yd1{bottom:1022.382600px;}
.ya3{bottom:1030.441050px;}
.y120{bottom:1037.054850px;}
.y71{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.yd0{bottom:1044.138600px;}
.y2{bottom:1049.282550px;}
.y11f{bottom:1058.060850px;}
.y70{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.yf3{bottom:1063.529250px;}
.ycf{bottom:1065.894600px;}
.y11e{bottom:1079.066850px;}
.y8c{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.yce{bottom:1087.950600px;}
.y6f{bottom:1092.029250px;}
.y11d{bottom:1100.072850px;}
.yf2{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.y8b{bottom:1112.695800px;}
.ycd{bottom:1119.282900px;}
.y3d{bottom:1121.078850px;}
.y6e{bottom:1124.326650px;}
.yf1{bottom:1125.451650px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h15{height:37.875000px;}
.h12{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h17{height:39.000000px;}
.h8{height:41.053711px;}
.h11{height:43.057617px;}
.h10{height:43.321289px;}
.h18{height:43.546875px;}
.ha{height:43.875000px;}
.h1b{height:44.595000px;}
.h9{height:47.343750px;}
.hf{height:48.750000px;}
.hb{height:48.990234px;}
.hc{height:49.170234px;}
.h1a{height:49.854234px;}
.h13{height:52.078125px;}
.h4{height:53.625000px;}
.he{height:54.433594px;}
.hd{height:56.812500px;}
.h14{height:67.875000px;}
.h19{height:73.546875px;}
.h3{height:77.545898px;}
.h16{height:97.875000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.x18{left:112.240200px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x1a{left:148.161450px;}
.x19{left:201.064200px;}
.x12{left:207.496200px;}
.x13{left:248.692200px;}
.x23{left:261.213450px;}
.x22{left:268.137450px;}
.x14{left:276.124200px;}
.x21{left:277.941450px;}
.x24{left:298.245450px;}
.x5{left:300.189000px;}
.xc{left:317.199000px;}
.x4{left:396.050700px;}
.x1b{left:429.213450px;}
.x1c{left:523.545450px;}
.x9{left:533.344650px;}
.x1d{left:542.517450px;}
.x15{left:559.036200px;}
.xe{left:594.181500px;}
.xf{left:614.583450px;}
.x11{left:623.343000px;}
.x10{left:633.431850px;}
.x17{left:640.900200px;}
.x16{left:643.408200px;}
.x1e{left:669.333450px;}
.xa{left:687.004650px;}
.x1f{left:731.757450px;}
.x20{left:743.397450px;}
.x1{left:801.157500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v7{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.208533pt;}
.v2{vertical-align:16.144000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:26.666667pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.624000pt;}
.ls2{letter-spacing:-0.614400pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.363792pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005867pt;}
.lsf{letter-spacing:0.008000pt;}
.lse{letter-spacing:0.008640pt;}
.lsd{letter-spacing:0.015467pt;}
.lsa{letter-spacing:0.020800pt;}
.lsb{letter-spacing:0.021867pt;}
.ls17{letter-spacing:0.062187pt;}
.ls15{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.324053pt;}
.ls8{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.715147pt;}
.ls13{letter-spacing:0.724107pt;}
.ls6{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.853333pt;}
.ls12{letter-spacing:1.226667pt;}
.ls9{letter-spacing:6.186667pt;}
.ws6{word-spacing:-15.936000pt;}
.wsb5{word-spacing:-14.608000pt;}
.ws88{word-spacing:-14.453333pt;}
.wsb4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws39{word-spacing:-13.226667pt;}
.ws95{word-spacing:-11.952000pt;}
.wsa8{word-spacing:-11.904000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws91{word-spacing:-10.624000pt;}
.ws71{word-spacing:-9.770667pt;}
.ws7b{word-spacing:-9.728000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws2{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.ws87{word-spacing:-8.426293pt;}
.wsb3{word-spacing:-7.773333pt;}
.ws38{word-spacing:-7.711147pt;}
.ws94{word-spacing:-6.940032pt;}
.ws5{word-spacing:-6.576240pt;}
.ws17{word-spacing:-4.480000pt;}
.wsac{word-spacing:-2.933333pt;}
.ws99{word-spacing:-2.928000pt;}
.wsb6{word-spacing:-2.613333pt;}
.ws67{word-spacing:-2.560000pt;}
.ws36{word-spacing:-2.400000pt;}
.ws2d{word-spacing:-2.240000pt;}
.ws43{word-spacing:-2.133333pt;}
.wsc{word-spacing:-2.112000pt;}
.ws21{word-spacing:-1.920000pt;}
.ws4f{word-spacing:-1.872000pt;}
.ws30{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.706667pt;}
.ws3a{word-spacing:-1.600000pt;}
.ws9e{word-spacing:-1.493333pt;}
.ws8e{word-spacing:-1.440000pt;}
.ws20{word-spacing:-1.386667pt;}
.ws86{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.248000pt;}
.ws5e{word-spacing:-1.226667pt;}
.ws55{word-spacing:-1.120000pt;}
.ws62{word-spacing:-1.066667pt;}
.ws9f{word-spacing:-1.013333pt;}
.ws19{word-spacing:-0.912000pt;}
.ws1a{word-spacing:-0.906667pt;}
.ws16{word-spacing:-0.853333pt;}
.wsa0{word-spacing:-0.800000pt;}
.ws84{word-spacing:-0.768000pt;}
.ws42{word-spacing:-0.746667pt;}
.ws1b{word-spacing:-0.693333pt;}
.ws22{word-spacing:-0.640000pt;}
.ws41{word-spacing:-0.586667pt;}
.ws45{word-spacing:-0.480000pt;}
.ws23{word-spacing:-0.426667pt;}
.ws5c{word-spacing:-0.373333pt;}
.wsb7{word-spacing:-0.320000pt;}
.ws54{word-spacing:-0.266667pt;}
.wsa5{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws5f{word-spacing:-0.160000pt;}
.wsa6{word-spacing:-0.128000pt;}
.wsaf{word-spacing:-0.106667pt;}
.ws4d{word-spacing:-0.053333pt;}
.ws70{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws83{word-spacing:0.160000pt;}
.ws3d{word-spacing:0.213333pt;}
.wsab{word-spacing:0.266667pt;}
.ws3b{word-spacing:0.320000pt;}
.ws98{word-spacing:0.373333pt;}
.ws49{word-spacing:0.384000pt;}
.wsa7{word-spacing:0.426667pt;}
.ws2f{word-spacing:0.480000pt;}
.ws50{word-spacing:0.528000pt;}
.ws2c{word-spacing:0.533333pt;}
.ws4{word-spacing:0.576000pt;}
.ws6b{word-spacing:0.586667pt;}
.wsb{word-spacing:0.614400pt;}
.wse{word-spacing:0.624000pt;}
.ws40{word-spacing:0.640000pt;}
.wsbe{word-spacing:0.672000pt;}
.ws6c{word-spacing:0.693333pt;}
.wsf{word-spacing:0.768000pt;}
.ws69{word-spacing:0.800000pt;}
.ws73{word-spacing:0.810667pt;}
.ws59{word-spacing:0.853333pt;}
.wsad{word-spacing:0.906667pt;}
.ws51{word-spacing:0.960000pt;}
.ws14{word-spacing:1.008000pt;}
.ws3e{word-spacing:1.013333pt;}
.ws5a{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.120000pt;}
.ws85{word-spacing:1.194667pt;}
.ws53{word-spacing:1.226667pt;}
.ws10{word-spacing:1.248000pt;}
.wsb9{word-spacing:1.280000pt;}
.ws12{word-spacing:1.344000pt;}
.wsd{word-spacing:1.392000pt;}
.wsc2{word-spacing:1.440000pt;}
.ws90{word-spacing:1.653333pt;}
.ws58{word-spacing:1.706667pt;}
.wsbd{word-spacing:1.728000pt;}
.ws68{word-spacing:1.866667pt;}
.ws35{word-spacing:1.973333pt;}
.ws37{word-spacing:2.026667pt;}
.ws15{word-spacing:2.064000pt;}
.ws32{word-spacing:2.080000pt;}
.ws34{word-spacing:2.186667pt;}
.ws6e{word-spacing:2.240000pt;}
.ws5b{word-spacing:2.506667pt;}
.ws8f{word-spacing:2.560000pt;}
.wsa9{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.666667pt;}
.ws4c{word-spacing:2.720000pt;}
.ws3f{word-spacing:2.773333pt;}
.ws6f{word-spacing:2.826667pt;}
.ws9d{word-spacing:2.880000pt;}
.ws26{word-spacing:2.933333pt;}
.ws52{word-spacing:2.986667pt;}
.ws11{word-spacing:3.168000pt;}
.ws2a{word-spacing:3.200000pt;}
.ws63{word-spacing:3.360000pt;}
.wsaa{word-spacing:3.466667pt;}
.wsb2{word-spacing:3.600000pt;}
.ws31{word-spacing:3.680000pt;}
.wsc0{word-spacing:3.888000pt;}
.wsbc{word-spacing:3.946667pt;}
.ws48{word-spacing:4.106667pt;}
.ws1f{word-spacing:4.160000pt;}
.wsbb{word-spacing:4.586667pt;}
.ws4a{word-spacing:4.640000pt;}
.ws66{word-spacing:4.693333pt;}
.ws60{word-spacing:4.800000pt;}
.ws61{word-spacing:4.853333pt;}
.ws1e{word-spacing:4.906667pt;}
.ws8c{word-spacing:4.960000pt;}
.ws4e{word-spacing:5.066667pt;}
.ws8d{word-spacing:5.333333pt;}
.ws2e{word-spacing:5.493333pt;}
.ws44{word-spacing:5.546667pt;}
.ws27{word-spacing:5.706667pt;}
.ws89{word-spacing:5.813333pt;}
.ws5d{word-spacing:5.866667pt;}
.ws47{word-spacing:5.920000pt;}
.ws28{word-spacing:6.026667pt;}
.ws29{word-spacing:6.133333pt;}
.wsbf{word-spacing:6.192000pt;}
.ws64{word-spacing:6.346667pt;}
.ws6d{word-spacing:6.400000pt;}
.ws8a{word-spacing:6.453333pt;}
.wsba{word-spacing:6.773333pt;}
.ws46{word-spacing:6.826667pt;}
.wsa1{word-spacing:6.933333pt;}
.ws2b{word-spacing:6.986667pt;}
.wsb0{word-spacing:7.360000pt;}
.ws8b{word-spacing:7.466667pt;}
.ws33{word-spacing:7.573333pt;}
.wsa3{word-spacing:7.626667pt;}
.ws24{word-spacing:7.786667pt;}
.wsae{word-spacing:7.893333pt;}
.ws97{word-spacing:8.160000pt;}
.ws96{word-spacing:8.213333pt;}
.ws65{word-spacing:8.266667pt;}
.ws25{word-spacing:8.426667pt;}
.ws4b{word-spacing:8.533333pt;}
.wsc1{word-spacing:8.640000pt;}
.ws1c{word-spacing:8.746667pt;}
.wsa4{word-spacing:10.400000pt;}
.wsb8{word-spacing:11.146667pt;}
.wsb1{word-spacing:11.573333pt;}
.wsa2{word-spacing:14.773333pt;}
.ws72{word-spacing:145.066667pt;}
.ws78{word-spacing:173.653333pt;}
.ws74{word-spacing:174.336000pt;}
.ws7f{word-spacing:191.914667pt;}
.ws77{word-spacing:202.837333pt;}
.ws9b{word-spacing:239.189333pt;}
.ws81{word-spacing:264.917333pt;}
.ws93{word-spacing:274.730667pt;}
.ws79{word-spacing:289.237333pt;}
.ws7a{word-spacing:303.744000pt;}
.ws82{word-spacing:308.352000pt;}
.ws80{word-spacing:309.376000pt;}
.ws92{word-spacing:313.941333pt;}
.ws76{word-spacing:321.365333pt;}
.ws7c{word-spacing:335.488000pt;}
.ws9a{word-spacing:346.325333pt;}
.ws7d{word-spacing:348.586667pt;}
.ws7e{word-spacing:373.546667pt;}
.ws75{word-spacing:394.794667pt;}
.ws9c{word-spacing:468.330667pt;}
.ws6a{word-spacing:615.520000pt;}
.ws57{word-spacing:646.666667pt;}
.ws56{word-spacing:719.200000pt;}
._b{margin-left:-9.710933pt;}
._4{margin-left:-6.997333pt;}
._4a{margin-left:-5.524800pt;}
._a{margin-left:-4.433600pt;}
._7{margin-left:-3.046400pt;}
._1{margin-left:-2.003733pt;}
._0{margin-left:-0.924800pt;}
._2{width:1.432533pt;}
._9{width:2.547200pt;}
._6{width:3.686400pt;}
._5{width:5.164800pt;}
._8{width:6.091200pt;}
._c{width:7.101333pt;}
._d{width:8.373333pt;}
._49{width:9.312000pt;}
._f{width:10.366400pt;}
._e{width:11.392000pt;}
._54{width:13.658133pt;}
._10{width:14.908800pt;}
._53{width:17.392000pt;}
._3{width:32.328533pt;}
._13{width:48.083733pt;}
._14{width:64.469333pt;}
._12{width:76.202667pt;}
._37{width:109.255467pt;}
._38{width:120.050133pt;}
._39{width:122.406933pt;}
._3f{width:175.317333pt;}
._4f{width:178.814400pt;}
._4c{width:181.248000pt;}
._50{width:189.758400pt;}
._30{width:202.496000pt;}
._22{width:213.418667pt;}
._52{width:215.680000pt;}
._3b{width:223.402667pt;}
._46{width:235.946667pt;}
._4e{width:257.365333pt;}
._1a{width:266.965333pt;}
._40{width:271.872000pt;}
._2e{width:275.498667pt;}
._48{width:278.058667pt;}
._51{width:284.585067pt;}
._19{width:285.824000pt;}
._47{width:292.906667pt;}
._4d{width:294.997333pt;}
._32{width:302.336000pt;}
._4b{width:308.906667pt;}
._36{width:311.466667pt;}
._45{width:313.429333pt;}
._21{width:314.325333pt;}
._2c{width:323.456000pt;}
._3d{width:327.040000pt;}
._1f{width:329.045333pt;}
._1b{width:333.056000pt;}
._18{width:338.730667pt;}
._2f{width:341.632000pt;}
._16{width:359.168000pt;}
._43{width:362.069333pt;}
._33{width:363.434667pt;}
._1c{width:366.421333pt;}
._28{width:367.701333pt;}
._20{width:377.514667pt;}
._2a{width:381.056000pt;}
._25{width:384.128000pt;}
._2d{width:385.066667pt;}
._1d{width:392.021333pt;}
._41{width:394.752000pt;}
._42{width:396.032000pt;}
._3c{width:397.909333pt;}
._31{width:399.488000pt;}
._3e{width:400.640000pt;}
._3a{width:401.962667pt;}
._44{width:402.986667pt;}
._34{width:405.376000pt;}
._24{width:407.168000pt;}
._23{width:412.714667pt;}
._2b{width:417.066667pt;}
._17{width:425.344000pt;}
._26{width:432.170667pt;}
._29{width:433.920000pt;}
._1e{width:440.533333pt;}
._27{width:449.792000pt;}
._35{width:453.418667pt;}
._15{width:470.997333pt;}
._11{width:579.626667pt;}
.fsb{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fsa{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;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y11c{bottom:100.493067pt;}
.y9a{bottom:100.514400pt;}
.y6d{bottom:100.514533pt;}
.yc{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.y8a{bottom:107.107733pt;}
.yca{bottom:107.149600pt;}
.yb{bottom:116.979067pt;}
.y11b{bottom:119.165067pt;}
.y99{bottom:119.181067pt;}
.y6c{bottom:119.181200pt;}
.yc9{bottom:120.482933pt;}
.y2a{bottom:122.855600pt;}
.yf0{bottom:124.026133pt;}
.y89{bottom:124.711733pt;}
.yd6{bottom:128.021200pt;}
.ya{bottom:129.775867pt;}
.yc8{bottom:133.816267pt;}
.y11a{bottom:137.837067pt;}
.y98{bottom:137.847733pt;}
.y6b{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.y9{bottom:142.575867pt;}
.yd5{bottom:145.625200pt;}
.yc7{bottom:155.982533pt;}
.y119{bottom:156.509067pt;}
.y97{bottom:156.514400pt;}
.y6a{bottom:156.514533pt;}
.ye9{bottom:169.280933pt;}
.y28{bottom:170.979867pt;}
.y118{bottom:174.989067pt;}
.y96{bottom:175.181067pt;}
.y69{bottom:175.181200pt;}
.yc6{bottom:175.321200pt;}
.yef{bottom:180.026133pt;}
.ya4{bottom:187.947600pt;}
.y117{bottom:193.661067pt;}
.y95{bottom:193.847733pt;}
.y68{bottom:193.847867pt;}
.yc3{bottom:194.659733pt;}
.y37{bottom:196.842133pt;}
.y116{bottom:212.333067pt;}
.y94{bottom:212.514400pt;}
.y67{bottom:212.514533pt;}
.y36{bottom:212.838133pt;}
.yc5{bottom:213.998267pt;}
.y9d{bottom:225.280933pt;}
.y35{bottom:228.834133pt;}
.y115{bottom:231.005067pt;}
.y145{bottom:231.122533pt;}
.y93{bottom:231.181067pt;}
.y66{bottom:231.181200pt;}
.yc4{bottom:233.337067pt;}
.yee{bottom:236.026133pt;}
.y27{bottom:238.780400pt;}
.y34{bottom:244.830133pt;}
.ya5{bottom:246.959600pt;}
.y114{bottom:249.677067pt;}
.y144{bottom:249.794533pt;}
.y92{bottom:249.847733pt;}
.y65{bottom:249.847867pt;}
.yc2{bottom:252.675467pt;}
.y33{bottom:260.826133pt;}
.y113{bottom:268.349067pt;}
.y143{bottom:268.466533pt;}
.y91{bottom:268.514400pt;}
.y64{bottom:268.514533pt;}
.yc1{bottom:272.013867pt;}
.y26{bottom:275.226000pt;}
.y32{bottom:276.822133pt;}
.y112{bottom:287.021067pt;}
.y142{bottom:287.138533pt;}
.y90{bottom:287.181067pt;}
.y63{bottom:287.181200pt;}
.yc0{bottom:291.352533pt;}
.ybd{bottom:291.352667pt;}
.yed{bottom:292.388533pt;}
.y31{bottom:292.818133pt;}
.y25{bottom:292.830000pt;}
.y111{bottom:305.693067pt;}
.y141{bottom:305.810533pt;}
.y8f{bottom:305.847733pt;}
.y62{bottom:305.847867pt;}
.y30{bottom:308.814133pt;}
.y24{bottom:310.434000pt;}
.ybf{bottom:310.691200pt;}
.ya1{bottom:317.331600pt;}
.ycb{bottom:318.614267pt;}
.y110{bottom:324.365067pt;}
.y140{bottom:324.482533pt;}
.y8e{bottom:324.514400pt;}
.y61{bottom:324.514533pt;}
.y23{bottom:328.038000pt;}
.ybe{bottom:330.030000pt;}
.ya0{bottom:334.935600pt;}
.y2f{bottom:339.930133pt;}
.y10f{bottom:343.037067pt;}
.y13f{bottom:343.154533pt;}
.y8d{bottom:343.181067pt;}
.y60{bottom:343.181200pt;}
.y22{bottom:345.642000pt;}
.ybc{bottom:349.368267pt;}
.y9f{bottom:352.539600pt;}
.y2e{bottom:355.930133pt;}
.y10e{bottom:361.709067pt;}
.y13e{bottom:361.826533pt;}
.y5f{bottom:361.847867pt;}
.y21{bottom:363.246000pt;}
.ybb{bottom:368.706933pt;}
.y2d{bottom:371.930133pt;}
.yb8{bottom:378.376267pt;}
.y10d{bottom:380.381067pt;}
.y13d{bottom:380.498533pt;}
.y5e{bottom:380.514533pt;}
.y20{bottom:380.850000pt;}
.y9c{bottom:387.647467pt;}
.y2c{bottom:387.930133pt;}
.yba{bottom:388.045600pt;}
.ya2{bottom:393.280933pt;}
.y1f{bottom:398.454000pt;}
.y10c{bottom:399.053067pt;}
.y13c{bottom:399.170533pt;}
.y5d{bottom:399.181200pt;}
.y9b{bottom:405.251467pt;}
.yb9{bottom:407.378933pt;}
.y1e{bottom:416.058000pt;}
.y10b{bottom:417.725067pt;}
.y13b{bottom:417.842533pt;}
.y5c{bottom:417.847867pt;}
.yb7{bottom:426.722800pt;}
.y1d{bottom:433.662000pt;}
.y13a{bottom:436.354533pt;}
.y10a{bottom:436.397067pt;}
.y5b{bottom:436.514533pt;}
.yb6{bottom:446.061333pt;}
.yb3{bottom:449.063867pt;}
.yec{bottom:449.280933pt;}
.y1c{bottom:451.266000pt;}
.y139{bottom:455.026533pt;}
.y109{bottom:455.069067pt;}
.y5a{bottom:455.181200pt;}
.yb2{bottom:462.397200pt;}
.yb5{bottom:465.394533pt;}
.y1b{bottom:468.870000pt;}
.y138{bottom:473.698533pt;}
.y108{bottom:473.741067pt;}
.y59{bottom:473.847867pt;}
.yb4{bottom:484.733200pt;}
.y1a{bottom:486.474000pt;}
.y137{bottom:492.370533pt;}
.y107{bottom:492.413067pt;}
.y88{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.y19{bottom:504.038000pt;}
.yb1{bottom:504.077067pt;}
.y136{bottom:511.042533pt;}
.y106{bottom:511.085067pt;}
.y87{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.y18{bottom:521.642000pt;}
.yb0{bottom:523.415333pt;}
.y135{bottom:529.714533pt;}
.y105{bottom:529.757067pt;}
.y86{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.y17{bottom:539.246000pt;}
.yaf{bottom:542.754000pt;}
.y134{bottom:548.386533pt;}
.y104{bottom:548.429067pt;}
.y85{bottom:548.514400pt;}
.y55{bottom:548.514533pt;}
.yab{bottom:552.428533pt;}
.ye8{bottom:552.721867pt;}
.y16{bottom:556.850000pt;}
.yae{bottom:562.092667pt;}
.ye7{bottom:566.055200pt;}
.y133{bottom:567.058533pt;}
.y103{bottom:567.101067pt;}
.y84{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.y15{bottom:574.454000pt;}
.yad{bottom:581.431333pt;}
.ye6{bottom:585.393867pt;}
.y132{bottom:585.730533pt;}
.y102{bottom:585.773067pt;}
.y83{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.y14{bottom:592.058000pt;}
.ye5{bottom:598.727200pt;}
.yac{bottom:600.769867pt;}
.y131{bottom:604.402533pt;}
.y101{bottom:604.445067pt;}
.y82{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.y13{bottom:609.662000pt;}
.y9e{bottom:617.280933pt;}
.ye4{bottom:618.065867pt;}
.ya9{bottom:620.375200pt;}
.y130{bottom:623.074533pt;}
.y100{bottom:623.117067pt;}
.y81{bottom:623.181067pt;}
.y51{bottom:623.181200pt;}
.ya8{bottom:627.041867pt;}
.y12{bottom:627.266000pt;}
.ye3{bottom:631.399200pt;}
.yaa{bottom:633.708533pt;}
.y12f{bottom:641.746533pt;}
.yff{bottom:641.789067pt;}
.y80{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.y11{bottom:644.870000pt;}
.ye0{bottom:650.737867pt;}
.ye2{bottom:657.404533pt;}
.y12e{bottom:660.418533pt;}
.yfe{bottom:660.461067pt;}
.y7f{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.ya7{bottom:661.555467pt;}
.y10{bottom:662.474000pt;}
.ydf{bottom:664.071200pt;}
.yeb{bottom:670.721467pt;}
.ye1{bottom:670.737867pt;}
.yde{bottom:677.404533pt;}
.y12d{bottom:679.090533pt;}
.yfd{bottom:679.133067pt;}
.ya6{bottom:679.159467pt;}
.y7e{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.yf{bottom:680.078000pt;}
.yea{bottom:688.325467pt;}
.ydd{bottom:696.743200pt;}
.y12c{bottom:697.762533pt;}
.yfc{bottom:697.805067pt;}
.y7d{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.ye{bottom:707.720267pt;}
.ydc{bottom:710.076533pt;}
.y12b{bottom:716.434533pt;}
.yfb{bottom:716.477067pt;}
.y7c{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.yda{bottom:729.681867pt;}
.y12a{bottom:735.106533pt;}
.yfa{bottom:735.149067pt;}
.y7b{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yd9{bottom:736.348533pt;}
.ydb{bottom:743.015200pt;}
.y129{bottom:753.778533pt;}
.yf9{bottom:753.821067pt;}
.y7a{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.yd8{bottom:770.862133pt;}
.y128{bottom:772.450533pt;}
.yf8{bottom:772.493067pt;}
.y79{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.yd7{bottom:788.466133pt;}
.y127{bottom:791.122533pt;}
.yf7{bottom:791.165067pt;}
.y78{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.ycc{bottom:801.703467pt;}
.y126{bottom:809.794533pt;}
.yf6{bottom:809.837067pt;}
.y77{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.y125{bottom:828.466533pt;}
.yf5{bottom:828.509067pt;}
.y76{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y5{bottom:841.310933pt;}
.y124{bottom:847.138533pt;}
.y75{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.yd4{bottom:850.768533pt;}
.y123{bottom:865.810533pt;}
.y74{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.yd3{bottom:870.107200pt;}
.y4{bottom:874.034267pt;}
.yf4{bottom:878.614133pt;}
.y122{bottom:884.482533pt;}
.y73{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.yd2{bottom:889.445867pt;}
.y121{bottom:903.154533pt;}
.y72{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yd1{bottom:908.784533pt;}
.ya3{bottom:915.947600pt;}
.y120{bottom:921.826533pt;}
.y71{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.yd0{bottom:928.123200pt;}
.y2{bottom:932.695600pt;}
.y11f{bottom:940.498533pt;}
.y70{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.yf3{bottom:945.359333pt;}
.ycf{bottom:947.461867pt;}
.y11e{bottom:959.170533pt;}
.y8c{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.yce{bottom:967.067200pt;}
.y6f{bottom:970.692667pt;}
.y11d{bottom:977.842533pt;}
.yf2{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.y8b{bottom:989.062933pt;}
.ycd{bottom:994.918133pt;}
.y3d{bottom:996.514533pt;}
.y6e{bottom:999.401467pt;}
.yf1{bottom:1000.401467pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h15{height:33.666667pt;}
.h12{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h17{height:34.666667pt;}
.h8{height:36.492188pt;}
.h11{height:38.273438pt;}
.h10{height:38.507812pt;}
.h18{height:38.708333pt;}
.ha{height:39.000000pt;}
.h1b{height:39.640000pt;}
.h9{height:42.083333pt;}
.hf{height:43.333333pt;}
.hb{height:43.546875pt;}
.hc{height:43.706875pt;}
.h1a{height:44.314875pt;}
.h13{height:46.291667pt;}
.h4{height:47.666667pt;}
.he{height:48.385417pt;}
.hd{height:50.500000pt;}
.h14{height:60.333333pt;}
.h19{height:65.375000pt;}
.h3{height:68.929688pt;}
.h16{height:87.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.x18{left:99.769067pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x1a{left:131.699067pt;}
.x19{left:178.723733pt;}
.x12{left:184.441067pt;}
.x13{left:221.059733pt;}
.x23{left:232.189733pt;}
.x22{left:238.344400pt;}
.x14{left:245.443733pt;}
.x21{left:247.059067pt;}
.x24{left:265.107067pt;}
.x5{left:266.834667pt;}
.xc{left:281.954667pt;}
.x4{left:352.045067pt;}
.x1b{left:381.523067pt;}
.x1c{left:465.373733pt;}
.x9{left:474.084133pt;}
.x1d{left:482.237733pt;}
.x15{left:496.921067pt;}
.xe{left:528.161333pt;}
.xf{left:546.296400pt;}
.x11{left:554.082667pt;}
.x10{left:563.050533pt;}
.x17{left:569.689067pt;}
.x16{left:571.918400pt;}
.x1e{left:594.963067pt;}
.xa{left:610.670800pt;}
.x1f{left:650.451067pt;}
.x20{left:660.797733pt;}
.x1{left:712.140000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  