
    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_b611b06427b70307afd769f6.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_626afbd13946cba037490332.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_586f4f1f96838789ef123bd4.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_3121b5968e5e15ecc9e6cabc.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_f0387bd62d7a63fb28593b1f.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_83f21ca4ddfcc6b93d835b7f.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_9f1c664d302311aeb6137294.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964868;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_7b790a5a58a0e80a7618d90a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d39fc557b60e954fe3469660.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_5621a7e94dbd98f5b36ad333.woff2')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);}
.v6{vertical-align:-17.964000px;}
.v8{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v7{vertical-align:17.982000px;}
.v5{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:30.000000px;}
.v3{vertical-align:60.000000px;}
.lsb{letter-spacing:-1.200000px;}
.ls15{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.960000px;}
.ls5{letter-spacing:-0.918000px;}
.ls4{letter-spacing:-0.691200px;}
.ls10{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.535194px;}
.ls11{letter-spacing:-0.314820px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.002208px;}
.ls8{letter-spacing:0.002808px;}
.ls9{letter-spacing:0.003648px;}
.lsf{letter-spacing:0.409266px;}
.ls16{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.629640px;}
.ls17{letter-spacing:0.720000px;}
.lse{letter-spacing:1.043400px;}
.lsd{letter-spacing:1.053000px;}
.ls2{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls13{letter-spacing:98.832000px;}
.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;}
.ws6b{word-spacing:-16.434000px;}
.wsa5{word-spacing:-15.900000px;}
.wsed{word-spacing:-15.660000px;}
.wsec{word-spacing:-15.540000px;}
.ws4{word-spacing:-14.940000px;}
.ws6c{word-spacing:-14.880000px;}
.ws26{word-spacing:-14.700000px;}
.ws80{word-spacing:-14.526000px;}
.ws5{word-spacing:-14.310000px;}
.ws90{word-spacing:-13.446000px;}
.ws8d{word-spacing:-13.392000px;}
.ws8c{word-spacing:-13.230000px;}
.ws7{word-spacing:-12.366000px;}
.wsc8{word-spacing:-12.312000px;}
.wsa{word-spacing:-12.150000px;}
.wsb0{word-spacing:-11.952000px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsb{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws25{word-spacing:-10.800000px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.ws7d{word-spacing:-8.675040px;}
.wsf{word-spacing:-8.640000px;}
.ws7e{word-spacing:-8.437176px;}
.ws7f{word-spacing:-8.122356px;}
.ws8e{word-spacing:-7.807536px;}
.ws8b{word-spacing:-7.492716px;}
.ws8f{word-spacing:-7.177896px;}
.wsaf{word-spacing:-6.968016px;}
.ws55{word-spacing:-3.660000px;}
.wsd1{word-spacing:-3.186000px;}
.ws72{word-spacing:-3.180000px;}
.wscf{word-spacing:-3.132000px;}
.ws39{word-spacing:-3.060000px;}
.wsd0{word-spacing:-2.916000px;}
.wsae{word-spacing:-2.646000px;}
.ws20{word-spacing:-2.640000px;}
.wscd{word-spacing:-2.592000px;}
.wse1{word-spacing:-2.538000px;}
.ws57{word-spacing:-2.520000px;}
.ws54{word-spacing:-2.460000px;}
.ws11{word-spacing:-2.430000px;}
.wsb3{word-spacing:-2.400000px;}
.ws4a{word-spacing:-2.340000px;}
.ws35{word-spacing:-2.280000px;}
.wsd2{word-spacing:-2.268000px;}
.ws64{word-spacing:-2.100000px;}
.ws77{word-spacing:-2.040000px;}
.ws73{word-spacing:-1.920000px;}
.ws91{word-spacing:-1.914000px;}
.ws87{word-spacing:-1.890000px;}
.ws43{word-spacing:-1.860000px;}
.ws5e{word-spacing:-1.800000px;}
.ws81{word-spacing:-1.740000px;}
.wsd8{word-spacing:-1.728000px;}
.ws3a{word-spacing:-1.680000px;}
.wsad{word-spacing:-1.620000px;}
.ws58{word-spacing:-1.500000px;}
.wsee{word-spacing:-1.458000px;}
.wsb4{word-spacing:-1.440000px;}
.wse6{word-spacing:-1.296000px;}
.wsb9{word-spacing:-1.260000px;}
.ws3d{word-spacing:-1.200000px;}
.ws9f{word-spacing:-1.140000px;}
.ws89{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.026000px;}
.ws4c{word-spacing:-1.020000px;}
.ws37{word-spacing:-0.840000px;}
.wsbc{word-spacing:-0.720000px;}
.wsa3{word-spacing:-0.648000px;}
.ws2f{word-spacing:-0.600000px;}
.ws8a{word-spacing:-0.540000px;}
.wsc6{word-spacing:-0.486000px;}
.wsef{word-spacing:-0.480000px;}
.wse8{word-spacing:-0.378000px;}
.ws4e{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.300000px;}
.wse0{word-spacing:-0.270000px;}
.ws46{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.216000px;}
.wsc0{word-spacing:-0.180000px;}
.wsc{word-spacing:0.000000px;}
.wsdc{word-spacing:0.108000px;}
.wsa4{word-spacing:0.216000px;}
.wscc{word-spacing:0.270000px;}
.ws61{word-spacing:0.300000px;}
.wsdd{word-spacing:0.324000px;}
.ws5c{word-spacing:0.360000px;}
.ws9a{word-spacing:0.432000px;}
.ws45{word-spacing:0.480000px;}
.ws53{word-spacing:0.540000px;}
.wsa7{word-spacing:0.600000px;}
.wsa6{word-spacing:0.660000px;}
.wse{word-spacing:0.691200px;}
.ws3c{word-spacing:0.720000px;}
.ws38{word-spacing:0.780000px;}
.ws86{word-spacing:0.864000px;}
.ws62{word-spacing:0.900000px;}
.ws23{word-spacing:0.918000px;}
.ws4f{word-spacing:0.960000px;}
.ws88{word-spacing:0.972000px;}
.wsb7{word-spacing:1.020000px;}
.wsce{word-spacing:1.080000px;}
.ws75{word-spacing:1.200000px;}
.ws13{word-spacing:1.296000px;}
.wsba{word-spacing:1.320000px;}
.ws36{word-spacing:1.380000px;}
.wsea{word-spacing:1.404000px;}
.ws50{word-spacing:1.440000px;}
.wsc7{word-spacing:1.458000px;}
.ws99{word-spacing:1.512000px;}
.wsc1{word-spacing:1.560000px;}
.ws15{word-spacing:1.566000px;}
.ws44{word-spacing:1.620000px;}
.ws69{word-spacing:1.674000px;}
.ws4d{word-spacing:1.680000px;}
.ws7c{word-spacing:1.728000px;}
.ws2e{word-spacing:1.800000px;}
.ws2a{word-spacing:1.860000px;}
.wsd5{word-spacing:1.890000px;}
.wse9{word-spacing:1.944000px;}
.wse3{word-spacing:1.998000px;}
.ws9b{word-spacing:2.040000px;}
.wse2{word-spacing:2.106000px;}
.ws6a{word-spacing:2.160000px;}
.ws56{word-spacing:2.220000px;}
.ws78{word-spacing:2.280000px;}
.wsa8{word-spacing:2.340000px;}
.wsc4{word-spacing:2.376000px;}
.wsa9{word-spacing:2.400000px;}
.ws60{word-spacing:2.460000px;}
.wsd4{word-spacing:2.484000px;}
.ws5d{word-spacing:2.520000px;}
.ws3e{word-spacing:2.580000px;}
.ws48{word-spacing:2.700000px;}
.ws1a{word-spacing:2.862000px;}
.wsd3{word-spacing:2.916000px;}
.ws33{word-spacing:2.940000px;}
.wsbe{word-spacing:3.000000px;}
.wsbf{word-spacing:3.060000px;}
.wsa1{word-spacing:3.120000px;}
.ws59{word-spacing:3.180000px;}
.ws5a{word-spacing:3.240000px;}
.ws49{word-spacing:3.300000px;}
.wsc2{word-spacing:3.348000px;}
.ws41{word-spacing:3.360000px;}
.ws66{word-spacing:3.480000px;}
.ws21{word-spacing:3.540000px;}
.ws1f{word-spacing:3.720000px;}
.wsb8{word-spacing:3.780000px;}
.wsdf{word-spacing:3.834000px;}
.ws42{word-spacing:3.840000px;}
.ws34{word-spacing:3.900000px;}
.ws98{word-spacing:3.942000px;}
.wsb6{word-spacing:3.960000px;}
.ws74{word-spacing:4.080000px;}
.wsda{word-spacing:4.104000px;}
.ws5b{word-spacing:4.200000px;}
.ws22{word-spacing:4.320000px;}
.ws1e{word-spacing:4.380000px;}
.wsc3{word-spacing:4.536000px;}
.wsb5{word-spacing:4.560000px;}
.ws7a{word-spacing:4.620000px;}
.wsa0{word-spacing:4.740000px;}
.wsca{word-spacing:4.752000px;}
.wsf3{word-spacing:4.860000px;}
.ws2b{word-spacing:4.920000px;}
.ws10{word-spacing:5.022000px;}
.ws47{word-spacing:5.040000px;}
.ws5f{word-spacing:5.160000px;}
.ws2c{word-spacing:5.220000px;}
.wsaa{word-spacing:5.340000px;}
.ws14{word-spacing:5.346000px;}
.ws52{word-spacing:5.460000px;}
.ws63{word-spacing:5.520000px;}
.ws1b{word-spacing:5.616000px;}
.ws2d{word-spacing:5.700000px;}
.wsd7{word-spacing:5.724000px;}
.wsa2{word-spacing:5.760000px;}
.wsc5{word-spacing:5.778000px;}
.ws85{word-spacing:5.820000px;}
.ws9d{word-spacing:6.060000px;}
.wscb{word-spacing:6.156000px;}
.ws9c{word-spacing:6.180000px;}
.ws51{word-spacing:6.240000px;}
.ws18{word-spacing:6.264000px;}
.ws29{word-spacing:6.480000px;}
.ws12{word-spacing:6.750000px;}
.wsf0{word-spacing:6.804000px;}
.ws1d{word-spacing:6.840000px;}
.wsdb{word-spacing:6.912000px;}
.ws30{word-spacing:7.020000px;}
.ws31{word-spacing:7.080000px;}
.wseb{word-spacing:7.182000px;}
.ws82{word-spacing:7.260000px;}
.wsd9{word-spacing:7.290000px;}
.ws97{word-spacing:7.500000px;}
.wsac{word-spacing:7.776000px;}
.wsbd{word-spacing:7.800000px;}
.wsab{word-spacing:7.830000px;}
.ws1c{word-spacing:7.980000px;}
.ws79{word-spacing:8.100000px;}
.ws40{word-spacing:8.280000px;}
.ws32{word-spacing:8.520000px;}
.ws65{word-spacing:8.820000px;}
.wsc9{word-spacing:8.910000px;}
.ws3b{word-spacing:8.940000px;}
.ws76{word-spacing:9.240000px;}
.ws67{word-spacing:9.480000px;}
.wse7{word-spacing:9.612000px;}
.ws19{word-spacing:9.774000px;}
.ws16{word-spacing:9.882000px;}
.ws83{word-spacing:10.020000px;}
.wsf1{word-spacing:10.260000px;}
.ws9e{word-spacing:10.320000px;}
.ws17{word-spacing:10.638000px;}
.ws3f{word-spacing:10.680000px;}
.ws84{word-spacing:10.740000px;}
.wsde{word-spacing:11.070000px;}
.ws27{word-spacing:11.160000px;}
.wsb2{word-spacing:11.400000px;}
.ws94{word-spacing:11.580000px;}
.ws95{word-spacing:11.880000px;}
.wsbb{word-spacing:12.060000px;}
.ws68{word-spacing:12.300000px;}
.ws7b{word-spacing:12.420000px;}
.ws28{word-spacing:12.780000px;}
.ws96{word-spacing:12.900000px;}
.ws92{word-spacing:14.880000px;}
.wse5{word-spacing:18.414000px;}
.ws93{word-spacing:18.660000px;}
.wse4{word-spacing:23.490000px;}
.wsf2{word-spacing:24.786000px;}
.wsd6{word-spacing:31.698000px;}
.ws0{word-spacing:33.651135px;}
.ws6f{word-spacing:162.067200px;}
.ws6e{word-spacing:172.478400px;}
.ws6d{word-spacing:233.419200px;}
.ws70{word-spacing:237.888000px;}
.ws71{word-spacing:257.664000px;}
.wsb1{word-spacing:434.544000px;}
._9{margin-left:-11.583600px;}
._1b{margin-left:-10.086000px;}
._3{margin-left:-8.527200px;}
._c{margin-left:-6.306000px;}
._8{margin-left:-5.033400px;}
._4{margin-left:-3.663000px;}
._2{margin-left:-2.305200px;}
._0{margin-left:-1.040400px;}
._1{width:1.315800px;}
._6{width:2.814000px;}
._7{width:3.993600px;}
._b{width:5.316000px;}
._1a{width:6.499200px;}
._a{width:7.638000px;}
._43{width:8.644200px;}
._48{width:10.346400px;}
._42{width:11.394000px;}
._46{width:18.954000px;}
._47{width:20.385000px;}
._5{width:36.369600px;}
._45{width:42.732600px;}
._44{width:43.939200px;}
._1e{width:50.237400px;}
._15{width:56.093400px;}
._1d{width:57.936000px;}
._19{width:61.057200px;}
._f{width:78.144000px;}
._14{width:167.040000px;}
._10{width:172.320000px;}
._1c{width:173.904000px;}
._d{width:178.704000px;}
._18{width:183.024000px;}
._12{width:195.456000px;}
._e{width:200.976000px;}
._17{width:302.640000px;}
._11{width:312.432000px;}
._24{width:321.361200px;}
._16{width:332.256000px;}
._13{width:337.632000px;}
._2a{width:352.912800px;}
._2c{width:360.432000px;}
._27{width:381.776400px;}
._3b{width:404.784000px;}
._2b{width:418.272000px;}
._29{width:431.952000px;}
._28{width:432.960000px;}
._25{width:446.448000px;}
._36{width:450.384000px;}
._2d{width:467.504400px;}
._3a{width:474.752400px;}
._3d{width:476.256000px;}
._32{width:480.048000px;}
._39{width:486.032400px;}
._20{width:489.696000px;}
._35{width:491.664000px;}
._21{width:503.424000px;}
._3e{width:524.784000px;}
._2f{width:538.272000px;}
._37{width:545.904000px;}
._40{width:547.008000px;}
._3c{width:565.488000px;}
._38{width:587.024400px;}
._41{width:594.336000px;}
._33{width:617.520000px;}
._31{width:621.793200px;}
._22{width:637.152000px;}
._30{width:638.304000px;}
._2e{width:642.096000px;}
._1f{width:689.424000px;}
._3f{width:706.032000px;}
._34{width:1015.248000px;}
._26{width:1028.736000px;}
._23{width:1086.672000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fsb{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;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y41{bottom:71.212050px;}
.y42{bottom:75.040050px;}
.y12a{bottom:112.820700px;}
.yfb{bottom:113.072850px;}
.y74{bottom:113.078700px;}
.ya0{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.yd{bottom:131.601450px;}
.y129{bottom:133.826700px;}
.y159{bottom:133.928850px;}
.y177{bottom:134.030850px;}
.y73{bottom:134.078700px;}
.y9f{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.yc{bottom:145.997850px;}
.y128{bottom:154.832700px;}
.y158{bottom:154.934850px;}
.y176{bottom:155.036850px;}
.y72{bottom:155.078700px;}
.y9e{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.yb{bottom:160.397850px;}
.yfa{bottom:160.529400px;}
.y127{bottom:175.838700px;}
.y157{bottom:175.940850px;}
.y175{bottom:176.042850px;}
.y71{bottom:176.078700px;}
.y9d{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.y126{bottom:196.844700px;}
.y156{bottom:196.946850px;}
.y174{bottom:197.048850px;}
.yf9{bottom:197.072850px;}
.y70{bottom:197.078700px;}
.y9c{bottom:197.078850px;}
.y26{bottom:201.212700px;}
.y3e{bottom:203.481450px;}
.y125{bottom:217.850700px;}
.y155{bottom:217.952850px;}
.y173{bottom:218.054850px;}
.yf8{bottom:218.072850px;}
.y6f{bottom:218.078700px;}
.y9b{bottom:218.078850px;}
.y3d{bottom:221.476950px;}
.y25{bottom:222.212700px;}
.y124{bottom:238.856700px;}
.y154{bottom:238.958850px;}
.y172{bottom:239.060850px;}
.yf7{bottom:239.072850px;}
.y6e{bottom:239.078700px;}
.y9a{bottom:239.078850px;}
.y3c{bottom:239.472450px;}
.y24{bottom:243.212700px;}
.y3b{bottom:257.467950px;}
.y123{bottom:259.862700px;}
.y153{bottom:259.964850px;}
.y171{bottom:260.066850px;}
.yf6{bottom:260.072850px;}
.y6d{bottom:260.078700px;}
.y99{bottom:260.078850px;}
.y23{bottom:264.212700px;}
.ya3{bottom:265.058700px;}
.y3a{bottom:275.463450px;}
.y122{bottom:280.868700px;}
.y152{bottom:280.970850px;}
.y170{bottom:281.072850px;}
.y6c{bottom:281.078700px;}
.y98{bottom:281.078850px;}
.ya2{bottom:284.863200px;}
.y22{bottom:285.212700px;}
.y39{bottom:293.458950px;}
.y121{bottom:301.874700px;}
.y151{bottom:301.976850px;}
.y6b{bottom:302.078700px;}
.y97{bottom:302.078850px;}
.ya1{bottom:304.667700px;}
.yf5{bottom:307.529400px;}
.y38{bottom:311.454450px;}
.yc0{bottom:315.026550px;}
.yc4{bottom:316.440900px;}
.y21{bottom:322.240650px;}
.y120{bottom:322.880700px;}
.y150{bottom:322.982850px;}
.y6a{bottom:323.078700px;}
.y96{bottom:323.078850px;}
.y37{bottom:329.449950px;}
.yb1{bottom:335.957100px;}
.y16f{bottom:336.513600px;}
.y11f{bottom:343.886700px;}
.y14f{bottom:343.988850px;}
.yf4{bottom:344.060850px;}
.y69{bottom:344.078700px;}
.y95{bottom:344.078850px;}
.y36{bottom:347.445450px;}
.yb7{bottom:355.420350px;}
.y11e{bottom:364.892700px;}
.y14e{bottom:364.994850px;}
.yf3{bottom:365.066850px;}
.y68{bottom:365.078700px;}
.y94{bottom:365.078850px;}
.y35{bottom:365.440950px;}
.yc3{bottom:365.983200px;}
.y16e{bottom:368.811000px;}
.y34{bottom:383.436450px;}
.yc2{bottom:385.787700px;}
.y11d{bottom:385.898700px;}
.y14d{bottom:386.000850px;}
.yf2{bottom:386.072850px;}
.y67{bottom:386.078700px;}
.y93{bottom:386.078850px;}
.yb6{bottom:388.053750px;}
.y33{bottom:401.431950px;}
.yc1{bottom:405.592200px;}
.y11c{bottom:406.904700px;}
.ybb{bottom:406.979400px;}
.y14c{bottom:407.006850px;}
.y66{bottom:407.078700px;}
.y92{bottom:407.078850px;}
.yb5{bottom:407.858250px;}
.y32{bottom:419.427450px;}
.ya7{bottom:420.513450px;}
.y20{bottom:424.027950px;}
.yba{bottom:426.783900px;}
.yb4{bottom:427.662750px;}
.y11b{bottom:427.910700px;}
.y14b{bottom:428.012850px;}
.y16d{bottom:428.030850px;}
.y65{bottom:428.078700px;}
.y91{bottom:428.078850px;}
.yf1{bottom:433.529400px;}
.yb9{bottom:446.583900px;}
.yb3{bottom:447.462750px;}
.y11a{bottom:448.916700px;}
.y14a{bottom:449.018850px;}
.y16c{bottom:449.036850px;}
.y64{bottom:449.078700px;}
.y90{bottom:449.078850px;}
.ya6{bottom:452.811000px;}
.y31{bottom:454.432950px;}
.y1f{bottom:465.024900px;}
.yb8{bottom:466.388400px;}
.yb2{bottom:467.267250px;}
.y119{bottom:469.922700px;}
.y149{bottom:470.024850px;}
.y16b{bottom:470.042850px;}
.yf0{bottom:470.060850px;}
.y63{bottom:470.078700px;}
.y8f{bottom:470.078850px;}
.y30{bottom:472.428450px;}
.ye8{bottom:484.441050px;}
.y1e{bottom:484.829400px;}
.y2f{bottom:490.423950px;}
.y118{bottom:490.928700px;}
.y148{bottom:491.030850px;}
.y16a{bottom:491.048850px;}
.yef{bottom:491.066850px;}
.y62{bottom:491.078700px;}
.y8e{bottom:491.078850px;}
.y1d{bottom:504.633900px;}
.y117{bottom:511.934700px;}
.y147{bottom:512.036850px;}
.y169{bottom:512.054850px;}
.yee{bottom:512.072850px;}
.y61{bottom:512.078700px;}
.y8d{bottom:512.078850px;}
.y1c{bottom:524.438400px;}
.y2e{bottom:525.429450px;}
.y116{bottom:532.940700px;}
.y146{bottom:533.042850px;}
.y168{bottom:533.060850px;}
.y60{bottom:533.078700px;}
.y8c{bottom:533.078850px;}
.y2d{bottom:543.429450px;}
.y1b{bottom:544.242900px;}
.ybc{bottom:545.633850px;}
.y115{bottom:553.946700px;}
.y145{bottom:554.048850px;}
.y167{bottom:554.066850px;}
.y5f{bottom:554.078700px;}
.y8b{bottom:554.078850px;}
.yed{bottom:559.529400px;}
.y2c{bottom:561.429450px;}
.y1a{bottom:564.047400px;}
.yde{bottom:566.201100px;}
.y114{bottom:574.952700px;}
.y144{bottom:575.054850px;}
.y166{bottom:575.072850px;}
.y5e{bottom:575.078700px;}
.y8a{bottom:575.078850px;}
.y2b{bottom:579.429450px;}
.y19{bottom:583.851900px;}
.ydd{bottom:587.105100px;}
.ybf{bottom:590.326800px;}
.y113{bottom:595.958700px;}
.y143{bottom:596.060850px;}
.y5d{bottom:596.078700px;}
.ye7{bottom:596.078850px;}
.y18{bottom:603.656400px;}
.ydc{bottom:608.009100px;}
.ybe{bottom:610.131300px;}
.y89{bottom:610.441050px;}
.y112{bottom:616.964700px;}
.y142{bottom:617.066850px;}
.y5c{bottom:617.078700px;}
.ye6{bottom:617.078850px;}
.yec{bottom:622.529400px;}
.y17{bottom:623.460900px;}
.ydb{bottom:628.913100px;}
.ybd{bottom:629.935800px;}
.y165{bottom:630.513600px;}
.y111{bottom:637.970700px;}
.y141{bottom:638.072850px;}
.y5b{bottom:638.078700px;}
.ye5{bottom:638.078850px;}
.y16{bottom:643.265400px;}
.yda{bottom:649.817100px;}
.y140{bottom:658.946850px;}
.y110{bottom:658.976700px;}
.y5a{bottom:659.078700px;}
.y88{bottom:659.078850px;}
.y164{bottom:662.811150px;}
.y15{bottom:663.069900px;}
.yd9{bottom:670.721100px;}
.y13f{bottom:679.952850px;}
.y10f{bottom:679.982700px;}
.y59{bottom:680.078700px;}
.y87{bottom:680.078850px;}
.y14{bottom:682.874400px;}
.yeb{bottom:685.937100px;}
.yd8{bottom:691.625100px;}
.y13e{bottom:700.958850px;}
.y10e{bottom:700.988700px;}
.y58{bottom:701.078700px;}
.y86{bottom:701.078850px;}
.y13{bottom:702.678900px;}
.yd7{bottom:712.529100px;}
.yea{bottom:715.441050px;}
.y13d{bottom:721.964850px;}
.y10d{bottom:721.994700px;}
.y163{bottom:722.030850px;}
.y57{bottom:722.078700px;}
.y85{bottom:722.078850px;}
.y12{bottom:722.483400px;}
.yd6{bottom:733.433100px;}
.y11{bottom:742.287900px;}
.y13c{bottom:742.970850px;}
.y10c{bottom:743.000700px;}
.y162{bottom:743.036850px;}
.y56{bottom:743.078700px;}
.y84{bottom:743.078850px;}
.yd5{bottom:754.337100px;}
.ya5{bottom:757.440900px;}
.y13b{bottom:763.976850px;}
.y10b{bottom:764.006700px;}
.y161{bottom:764.042850px;}
.y55{bottom:764.078700px;}
.y83{bottom:764.078850px;}
.y10{bottom:773.385300px;}
.yd4{bottom:775.241100px;}
.ye4{bottom:778.441050px;}
.y13a{bottom:784.982850px;}
.y10a{bottom:785.012700px;}
.y160{bottom:785.048850px;}
.y54{bottom:785.078700px;}
.y82{bottom:785.078850px;}
.yd3{bottom:796.145100px;}
.y139{bottom:805.988850px;}
.y109{bottom:806.018700px;}
.y15f{bottom:806.054850px;}
.y53{bottom:806.078700px;}
.y81{bottom:806.078850px;}
.yd2{bottom:817.049100px;}
.y138{bottom:826.994850px;}
.y108{bottom:827.024700px;}
.y15e{bottom:827.060850px;}
.y52{bottom:827.078700px;}
.y80{bottom:827.078850px;}
.yd1{bottom:837.953100px;}
.y137{bottom:848.000850px;}
.y107{bottom:848.030700px;}
.y15d{bottom:848.066850px;}
.y51{bottom:848.078700px;}
.ye3{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.yd0{bottom:858.857100px;}
.y7f{bottom:861.513600px;}
.y136{bottom:869.006850px;}
.y106{bottom:869.036700px;}
.y15c{bottom:869.072850px;}
.y50{bottom:869.078700px;}
.ye2{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ycf{bottom:879.761100px;}
.y8{bottom:888.666900px;}
.y135{bottom:890.012850px;}
.y105{bottom:890.042700px;}
.y4f{bottom:890.078700px;}
.ye1{bottom:890.078850px;}
.y7e{bottom:893.811000px;}
.yce{bottom:900.665100px;}
.ye9{bottom:904.441050px;}
.y7{bottom:906.666900px;}
.y134{bottom:911.018850px;}
.y104{bottom:911.048700px;}
.y4e{bottom:911.078700px;}
.ye0{bottom:911.078850px;}
.ycd{bottom:921.569100px;}
.ya4{bottom:924.475350px;}
.y15b{bottom:924.513600px;}
.y6{bottom:924.666900px;}
.y133{bottom:932.024850px;}
.y103{bottom:932.054700px;}
.y4d{bottom:932.078700px;}
.ydf{bottom:932.078850px;}
.ycc{bottom:942.473100px;}
.y132{bottom:953.030850px;}
.y102{bottom:953.060700px;}
.y4c{bottom:953.078700px;}
.y7d{bottom:953.078850px;}
.y15a{bottom:956.811000px;}
.y5{bottom:959.674800px;}
.ycb{bottom:963.377100px;}
.yb0{bottom:970.378950px;}
.y131{bottom:974.036850px;}
.y101{bottom:974.066700px;}
.y4b{bottom:974.078700px;}
.y7c{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yca{bottom:984.281100px;}
.yaf{bottom:991.285950px;}
.y130{bottom:995.042850px;}
.y100{bottom:995.072700px;}
.y4a{bottom:995.078700px;}
.y7b{bottom:995.078850px;}
.yc9{bottom:1005.185100px;}
.yae{bottom:1012.189950px;}
.y12f{bottom:1016.048850px;}
.yff{bottom:1016.060700px;}
.y49{bottom:1016.078700px;}
.y7a{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yc8{bottom:1026.089100px;}
.yad{bottom:1033.097100px;}
.y12e{bottom:1037.054850px;}
.yfe{bottom:1037.066700px;}
.y48{bottom:1037.078700px;}
.y79{bottom:1037.078850px;}
.yc7{bottom:1046.993100px;}
.y2{bottom:1049.282550px;}
.yab{bottom:1054.001100px;}
.y12d{bottom:1058.060850px;}
.yfd{bottom:1058.072700px;}
.y47{bottom:1058.078700px;}
.y78{bottom:1058.078850px;}
.yaa{bottom:1061.501100px;}
.yc6{bottom:1067.897100px;}
.yac{bottom:1069.001100px;}
.y12c{bottom:1079.066850px;}
.y46{bottom:1079.078700px;}
.y77{bottom:1079.078850px;}
.yc5{bottom:1088.801100px;}
.ya9{bottom:1099.478400px;}
.y12b{bottom:1100.072850px;}
.y45{bottom:1100.078700px;}
.y76{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.yfc{bottom:1111.570800px;}
.ya8{bottom:1119.282900px;}
.y44{bottom:1121.078700px;}
.y75{bottom:1121.078850px;}
.y40{bottom:1159.189500px;}
.y3f{bottom:1178.689500px;}
.y43{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h13{height:37.875000px;}
.h15{height:38.065125px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h16{height:39.000000px;}
.h8{height:41.053711px;}
.hf{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:43.875000px;}
.h17{height:43.893000px;}
.h19{height:43.899000px;}
.h1a{height:43.947000px;}
.h1b{height:44.403000px;}
.h1c{height:45.615234px;}
.h9{height:47.343750px;}
.he{height:48.134766px;}
.hd{height:48.750000px;}
.h18{height:50.176758px;}
.h11{height:52.078125px;}
.h4{height:53.625000px;}
.hc{height:56.812500px;}
.h12{height:67.875000px;}
.h3{height:77.545898px;}
.h14{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;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.x16{left:112.250100px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.xd{left:143.772600px;}
.x17{left:145.075500px;}
.xe{left:227.964600px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.xf{left:332.508600px;}
.x10{left:342.060600px;}
.x3{left:379.689900px;}
.x11{left:549.840600px;}
.x13{left:619.944600px;}
.x12{left:641.436600px;}
.x9{left:648.907800px;}
.x8{left:669.715800px;}
.x15{left:728.145300px;}
.x14{left:729.828600px;}
.x1{left:801.157500px;}
@media print{
.v6{vertical-align:-15.968000pt;}
.v8{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v7{vertical-align:15.984000pt;}
.v5{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.v3{vertical-align:53.333333pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.853333pt;}
.ls5{letter-spacing:-0.816000pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.475728pt;}
.ls11{letter-spacing:-0.279840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001963pt;}
.ls8{letter-spacing:0.002496pt;}
.ls9{letter-spacing:0.003243pt;}
.lsf{letter-spacing:0.363792pt;}
.ls16{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.559680pt;}
.ls17{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.927467pt;}
.lsd{letter-spacing:0.936000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls13{letter-spacing:87.850667pt;}
.ws6{word-spacing:-15.936000pt;}
.ws6b{word-spacing:-14.608000pt;}
.wsa5{word-spacing:-14.133333pt;}
.wsed{word-spacing:-13.920000pt;}
.wsec{word-spacing:-13.813333pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6c{word-spacing:-13.226667pt;}
.ws26{word-spacing:-13.066667pt;}
.ws80{word-spacing:-12.912000pt;}
.ws5{word-spacing:-12.720000pt;}
.ws90{word-spacing:-11.952000pt;}
.ws8d{word-spacing:-11.904000pt;}
.ws8c{word-spacing:-11.760000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsc8{word-spacing:-10.944000pt;}
.wsa{word-spacing:-10.800000pt;}
.wsb0{word-spacing:-10.624000pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsb{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws25{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.ws7d{word-spacing:-7.711147pt;}
.wsf{word-spacing:-7.680000pt;}
.ws7e{word-spacing:-7.499712pt;}
.ws7f{word-spacing:-7.219872pt;}
.ws8e{word-spacing:-6.940032pt;}
.ws8b{word-spacing:-6.660192pt;}
.ws8f{word-spacing:-6.380352pt;}
.wsaf{word-spacing:-6.193792pt;}
.ws55{word-spacing:-3.253333pt;}
.wsd1{word-spacing:-2.832000pt;}
.ws72{word-spacing:-2.826667pt;}
.wscf{word-spacing:-2.784000pt;}
.ws39{word-spacing:-2.720000pt;}
.wsd0{word-spacing:-2.592000pt;}
.wsae{word-spacing:-2.352000pt;}
.ws20{word-spacing:-2.346667pt;}
.wscd{word-spacing:-2.304000pt;}
.wse1{word-spacing:-2.256000pt;}
.ws57{word-spacing:-2.240000pt;}
.ws54{word-spacing:-2.186667pt;}
.ws11{word-spacing:-2.160000pt;}
.wsb3{word-spacing:-2.133333pt;}
.ws4a{word-spacing:-2.080000pt;}
.ws35{word-spacing:-2.026667pt;}
.wsd2{word-spacing:-2.016000pt;}
.ws64{word-spacing:-1.866667pt;}
.ws77{word-spacing:-1.813333pt;}
.ws73{word-spacing:-1.706667pt;}
.ws91{word-spacing:-1.701333pt;}
.ws87{word-spacing:-1.680000pt;}
.ws43{word-spacing:-1.653333pt;}
.ws5e{word-spacing:-1.600000pt;}
.ws81{word-spacing:-1.546667pt;}
.wsd8{word-spacing:-1.536000pt;}
.ws3a{word-spacing:-1.493333pt;}
.wsad{word-spacing:-1.440000pt;}
.ws58{word-spacing:-1.333333pt;}
.wsee{word-spacing:-1.296000pt;}
.wsb4{word-spacing:-1.280000pt;}
.wse6{word-spacing:-1.152000pt;}
.wsb9{word-spacing:-1.120000pt;}
.ws3d{word-spacing:-1.066667pt;}
.ws9f{word-spacing:-1.013333pt;}
.ws89{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.912000pt;}
.ws4c{word-spacing:-0.906667pt;}
.ws37{word-spacing:-0.746667pt;}
.wsbc{word-spacing:-0.640000pt;}
.wsa3{word-spacing:-0.576000pt;}
.ws2f{word-spacing:-0.533333pt;}
.ws8a{word-spacing:-0.480000pt;}
.wsc6{word-spacing:-0.432000pt;}
.wsef{word-spacing:-0.426667pt;}
.wse8{word-spacing:-0.336000pt;}
.ws4e{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.266667pt;}
.wse0{word-spacing:-0.240000pt;}
.ws46{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.192000pt;}
.wsc0{word-spacing:-0.160000pt;}
.wsc{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.096000pt;}
.wsa4{word-spacing:0.192000pt;}
.wscc{word-spacing:0.240000pt;}
.ws61{word-spacing:0.266667pt;}
.wsdd{word-spacing:0.288000pt;}
.ws5c{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.384000pt;}
.ws45{word-spacing:0.426667pt;}
.ws53{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.533333pt;}
.wsa6{word-spacing:0.586667pt;}
.wse{word-spacing:0.614400pt;}
.ws3c{word-spacing:0.640000pt;}
.ws38{word-spacing:0.693333pt;}
.ws86{word-spacing:0.768000pt;}
.ws62{word-spacing:0.800000pt;}
.ws23{word-spacing:0.816000pt;}
.ws4f{word-spacing:0.853333pt;}
.ws88{word-spacing:0.864000pt;}
.wsb7{word-spacing:0.906667pt;}
.wsce{word-spacing:0.960000pt;}
.ws75{word-spacing:1.066667pt;}
.ws13{word-spacing:1.152000pt;}
.wsba{word-spacing:1.173333pt;}
.ws36{word-spacing:1.226667pt;}
.wsea{word-spacing:1.248000pt;}
.ws50{word-spacing:1.280000pt;}
.wsc7{word-spacing:1.296000pt;}
.ws99{word-spacing:1.344000pt;}
.wsc1{word-spacing:1.386667pt;}
.ws15{word-spacing:1.392000pt;}
.ws44{word-spacing:1.440000pt;}
.ws69{word-spacing:1.488000pt;}
.ws4d{word-spacing:1.493333pt;}
.ws7c{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.600000pt;}
.ws2a{word-spacing:1.653333pt;}
.wsd5{word-spacing:1.680000pt;}
.wse9{word-spacing:1.728000pt;}
.wse3{word-spacing:1.776000pt;}
.ws9b{word-spacing:1.813333pt;}
.wse2{word-spacing:1.872000pt;}
.ws6a{word-spacing:1.920000pt;}
.ws56{word-spacing:1.973333pt;}
.ws78{word-spacing:2.026667pt;}
.wsa8{word-spacing:2.080000pt;}
.wsc4{word-spacing:2.112000pt;}
.wsa9{word-spacing:2.133333pt;}
.ws60{word-spacing:2.186667pt;}
.wsd4{word-spacing:2.208000pt;}
.ws5d{word-spacing:2.240000pt;}
.ws3e{word-spacing:2.293333pt;}
.ws48{word-spacing:2.400000pt;}
.ws1a{word-spacing:2.544000pt;}
.wsd3{word-spacing:2.592000pt;}
.ws33{word-spacing:2.613333pt;}
.wsbe{word-spacing:2.666667pt;}
.wsbf{word-spacing:2.720000pt;}
.wsa1{word-spacing:2.773333pt;}
.ws59{word-spacing:2.826667pt;}
.ws5a{word-spacing:2.880000pt;}
.ws49{word-spacing:2.933333pt;}
.wsc2{word-spacing:2.976000pt;}
.ws41{word-spacing:2.986667pt;}
.ws66{word-spacing:3.093333pt;}
.ws21{word-spacing:3.146667pt;}
.ws1f{word-spacing:3.306667pt;}
.wsb8{word-spacing:3.360000pt;}
.wsdf{word-spacing:3.408000pt;}
.ws42{word-spacing:3.413333pt;}
.ws34{word-spacing:3.466667pt;}
.ws98{word-spacing:3.504000pt;}
.wsb6{word-spacing:3.520000pt;}
.ws74{word-spacing:3.626667pt;}
.wsda{word-spacing:3.648000pt;}
.ws5b{word-spacing:3.733333pt;}
.ws22{word-spacing:3.840000pt;}
.ws1e{word-spacing:3.893333pt;}
.wsc3{word-spacing:4.032000pt;}
.wsb5{word-spacing:4.053333pt;}
.ws7a{word-spacing:4.106667pt;}
.wsa0{word-spacing:4.213333pt;}
.wsca{word-spacing:4.224000pt;}
.wsf3{word-spacing:4.320000pt;}
.ws2b{word-spacing:4.373333pt;}
.ws10{word-spacing:4.464000pt;}
.ws47{word-spacing:4.480000pt;}
.ws5f{word-spacing:4.586667pt;}
.ws2c{word-spacing:4.640000pt;}
.wsaa{word-spacing:4.746667pt;}
.ws14{word-spacing:4.752000pt;}
.ws52{word-spacing:4.853333pt;}
.ws63{word-spacing:4.906667pt;}
.ws1b{word-spacing:4.992000pt;}
.ws2d{word-spacing:5.066667pt;}
.wsd7{word-spacing:5.088000pt;}
.wsa2{word-spacing:5.120000pt;}
.wsc5{word-spacing:5.136000pt;}
.ws85{word-spacing:5.173333pt;}
.ws9d{word-spacing:5.386667pt;}
.wscb{word-spacing:5.472000pt;}
.ws9c{word-spacing:5.493333pt;}
.ws51{word-spacing:5.546667pt;}
.ws18{word-spacing:5.568000pt;}
.ws29{word-spacing:5.760000pt;}
.ws12{word-spacing:6.000000pt;}
.wsf0{word-spacing:6.048000pt;}
.ws1d{word-spacing:6.080000pt;}
.wsdb{word-spacing:6.144000pt;}
.ws30{word-spacing:6.240000pt;}
.ws31{word-spacing:6.293333pt;}
.wseb{word-spacing:6.384000pt;}
.ws82{word-spacing:6.453333pt;}
.wsd9{word-spacing:6.480000pt;}
.ws97{word-spacing:6.666667pt;}
.wsac{word-spacing:6.912000pt;}
.wsbd{word-spacing:6.933333pt;}
.wsab{word-spacing:6.960000pt;}
.ws1c{word-spacing:7.093333pt;}
.ws79{word-spacing:7.200000pt;}
.ws40{word-spacing:7.360000pt;}
.ws32{word-spacing:7.573333pt;}
.ws65{word-spacing:7.840000pt;}
.wsc9{word-spacing:7.920000pt;}
.ws3b{word-spacing:7.946667pt;}
.ws76{word-spacing:8.213333pt;}
.ws67{word-spacing:8.426667pt;}
.wse7{word-spacing:8.544000pt;}
.ws19{word-spacing:8.688000pt;}
.ws16{word-spacing:8.784000pt;}
.ws83{word-spacing:8.906667pt;}
.wsf1{word-spacing:9.120000pt;}
.ws9e{word-spacing:9.173333pt;}
.ws17{word-spacing:9.456000pt;}
.ws3f{word-spacing:9.493333pt;}
.ws84{word-spacing:9.546667pt;}
.wsde{word-spacing:9.840000pt;}
.ws27{word-spacing:9.920000pt;}
.wsb2{word-spacing:10.133333pt;}
.ws94{word-spacing:10.293333pt;}
.ws95{word-spacing:10.560000pt;}
.wsbb{word-spacing:10.720000pt;}
.ws68{word-spacing:10.933333pt;}
.ws7b{word-spacing:11.040000pt;}
.ws28{word-spacing:11.360000pt;}
.ws96{word-spacing:11.466667pt;}
.ws92{word-spacing:13.226667pt;}
.wse5{word-spacing:16.368000pt;}
.ws93{word-spacing:16.586667pt;}
.wse4{word-spacing:20.880000pt;}
.wsf2{word-spacing:22.032000pt;}
.wsd6{word-spacing:28.176000pt;}
.ws0{word-spacing:29.912120pt;}
.ws6f{word-spacing:144.059733pt;}
.ws6e{word-spacing:153.314133pt;}
.ws6d{word-spacing:207.483733pt;}
.ws70{word-spacing:211.456000pt;}
.ws71{word-spacing:229.034667pt;}
.wsb1{word-spacing:386.261333pt;}
._9{margin-left:-10.296533pt;}
._1b{margin-left:-8.965333pt;}
._3{margin-left:-7.579733pt;}
._c{margin-left:-5.605333pt;}
._8{margin-left:-4.474133pt;}
._4{margin-left:-3.256000pt;}
._2{margin-left:-2.049067pt;}
._0{margin-left:-0.924800pt;}
._1{width:1.169600pt;}
._6{width:2.501333pt;}
._7{width:3.549867pt;}
._b{width:4.725333pt;}
._1a{width:5.777067pt;}
._a{width:6.789333pt;}
._43{width:7.683733pt;}
._48{width:9.196800pt;}
._42{width:10.128000pt;}
._46{width:16.848000pt;}
._47{width:18.120000pt;}
._5{width:32.328533pt;}
._45{width:37.984533pt;}
._44{width:39.057067pt;}
._1e{width:44.655467pt;}
._15{width:49.860800pt;}
._1d{width:51.498667pt;}
._19{width:54.273067pt;}
._f{width:69.461333pt;}
._14{width:148.480000pt;}
._10{width:153.173333pt;}
._1c{width:154.581333pt;}
._d{width:158.848000pt;}
._18{width:162.688000pt;}
._12{width:173.738667pt;}
._e{width:178.645333pt;}
._17{width:269.013333pt;}
._11{width:277.717333pt;}
._24{width:285.654400pt;}
._16{width:295.338667pt;}
._13{width:300.117333pt;}
._2a{width:313.700267pt;}
._2c{width:320.384000pt;}
._27{width:339.356800pt;}
._3b{width:359.808000pt;}
._2b{width:371.797333pt;}
._29{width:383.957333pt;}
._28{width:384.853333pt;}
._25{width:396.842667pt;}
._36{width:400.341333pt;}
._2d{width:415.559467pt;}
._3a{width:422.002133pt;}
._3d{width:423.338667pt;}
._32{width:426.709333pt;}
._39{width:432.028800pt;}
._20{width:435.285333pt;}
._35{width:437.034667pt;}
._21{width:447.488000pt;}
._3e{width:466.474667pt;}
._2f{width:478.464000pt;}
._37{width:485.248000pt;}
._40{width:486.229333pt;}
._3c{width:502.656000pt;}
._38{width:521.799467pt;}
._41{width:528.298667pt;}
._33{width:548.906667pt;}
._31{width:552.705067pt;}
._22{width:566.357333pt;}
._30{width:567.381333pt;}
._2e{width:570.752000pt;}
._1f{width:612.821333pt;}
._3f{width:627.584000pt;}
._34{width:902.442667pt;}
._26{width:914.432000pt;}
._23{width:965.930667pt;}
.fs9{font-size:24.874667pt;}
.fsb{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;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y41{bottom:63.299600pt;}
.y42{bottom:66.702267pt;}
.y12a{bottom:100.285067pt;}
.yfb{bottom:100.509200pt;}
.y74{bottom:100.514400pt;}
.ya0{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.yd{bottom:116.979067pt;}
.y129{bottom:118.957067pt;}
.y159{bottom:119.047867pt;}
.y177{bottom:119.138533pt;}
.y73{bottom:119.181067pt;}
.y9f{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.yc{bottom:129.775867pt;}
.y128{bottom:137.629067pt;}
.y158{bottom:137.719867pt;}
.y176{bottom:137.810533pt;}
.y72{bottom:137.847733pt;}
.y9e{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.yb{bottom:142.575867pt;}
.yfa{bottom:142.692800pt;}
.y127{bottom:156.301067pt;}
.y157{bottom:156.391867pt;}
.y175{bottom:156.482533pt;}
.y71{bottom:156.514400pt;}
.y9d{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.y126{bottom:174.973067pt;}
.y156{bottom:175.063867pt;}
.y174{bottom:175.154533pt;}
.yf9{bottom:175.175867pt;}
.y70{bottom:175.181067pt;}
.y9c{bottom:175.181200pt;}
.y26{bottom:178.855733pt;}
.y3e{bottom:180.872400pt;}
.y125{bottom:193.645067pt;}
.y155{bottom:193.735867pt;}
.y173{bottom:193.826533pt;}
.yf8{bottom:193.842533pt;}
.y6f{bottom:193.847733pt;}
.y9b{bottom:193.847867pt;}
.y3d{bottom:196.868400pt;}
.y25{bottom:197.522400pt;}
.y124{bottom:212.317067pt;}
.y154{bottom:212.407867pt;}
.y172{bottom:212.498533pt;}
.yf7{bottom:212.509200pt;}
.y6e{bottom:212.514400pt;}
.y9a{bottom:212.514533pt;}
.y3c{bottom:212.864400pt;}
.y24{bottom:216.189067pt;}
.y3b{bottom:228.860400pt;}
.y123{bottom:230.989067pt;}
.y153{bottom:231.079867pt;}
.y171{bottom:231.170533pt;}
.yf6{bottom:231.175867pt;}
.y6d{bottom:231.181067pt;}
.y99{bottom:231.181200pt;}
.y23{bottom:234.855733pt;}
.ya3{bottom:235.607733pt;}
.y3a{bottom:244.856400pt;}
.y122{bottom:249.661067pt;}
.y152{bottom:249.751867pt;}
.y170{bottom:249.842533pt;}
.y6c{bottom:249.847733pt;}
.y98{bottom:249.847867pt;}
.ya2{bottom:253.211733pt;}
.y22{bottom:253.522400pt;}
.y39{bottom:260.852400pt;}
.y121{bottom:268.333067pt;}
.y151{bottom:268.423867pt;}
.y6b{bottom:268.514400pt;}
.y97{bottom:268.514533pt;}
.ya1{bottom:270.815733pt;}
.yf5{bottom:273.359467pt;}
.y38{bottom:276.848400pt;}
.yc0{bottom:280.023600pt;}
.yc4{bottom:281.280800pt;}
.y21{bottom:286.436133pt;}
.y120{bottom:287.005067pt;}
.y150{bottom:287.095867pt;}
.y6a{bottom:287.181067pt;}
.y96{bottom:287.181200pt;}
.y37{bottom:292.844400pt;}
.yb1{bottom:298.628533pt;}
.y16f{bottom:299.123200pt;}
.y11f{bottom:305.677067pt;}
.y14f{bottom:305.767867pt;}
.yf4{bottom:305.831867pt;}
.y69{bottom:305.847733pt;}
.y95{bottom:305.847867pt;}
.y36{bottom:308.840400pt;}
.yb7{bottom:315.929200pt;}
.y11e{bottom:324.349067pt;}
.y14e{bottom:324.439867pt;}
.yf3{bottom:324.503867pt;}
.y68{bottom:324.514400pt;}
.y94{bottom:324.514533pt;}
.y35{bottom:324.836400pt;}
.yc3{bottom:325.318400pt;}
.y16e{bottom:327.832000pt;}
.y34{bottom:340.832400pt;}
.yc2{bottom:342.922400pt;}
.y11d{bottom:343.021067pt;}
.y14d{bottom:343.111867pt;}
.yf2{bottom:343.175867pt;}
.y67{bottom:343.181067pt;}
.y93{bottom:343.181200pt;}
.yb6{bottom:344.936667pt;}
.y33{bottom:356.828400pt;}
.yc1{bottom:360.526400pt;}
.y11c{bottom:361.693067pt;}
.ybb{bottom:361.759467pt;}
.y14c{bottom:361.783867pt;}
.y66{bottom:361.847733pt;}
.y92{bottom:361.847867pt;}
.yb5{bottom:362.540667pt;}
.y32{bottom:372.824400pt;}
.ya7{bottom:373.789733pt;}
.y20{bottom:376.913733pt;}
.yba{bottom:379.363467pt;}
.yb4{bottom:380.144667pt;}
.y11b{bottom:380.365067pt;}
.y14b{bottom:380.455867pt;}
.y16d{bottom:380.471867pt;}
.y65{bottom:380.514400pt;}
.y91{bottom:380.514533pt;}
.yf1{bottom:385.359467pt;}
.yb9{bottom:396.963467pt;}
.yb3{bottom:397.744667pt;}
.y11a{bottom:399.037067pt;}
.y14a{bottom:399.127867pt;}
.y16c{bottom:399.143867pt;}
.y64{bottom:399.181067pt;}
.y90{bottom:399.181200pt;}
.ya6{bottom:402.498667pt;}
.y31{bottom:403.940400pt;}
.y1f{bottom:413.355467pt;}
.yb8{bottom:414.567467pt;}
.yb2{bottom:415.348667pt;}
.y119{bottom:417.709067pt;}
.y149{bottom:417.799867pt;}
.y16b{bottom:417.815867pt;}
.yf0{bottom:417.831867pt;}
.y63{bottom:417.847733pt;}
.y8f{bottom:417.847867pt;}
.y30{bottom:419.936400pt;}
.ye8{bottom:430.614267pt;}
.y1e{bottom:430.959467pt;}
.y2f{bottom:435.932400pt;}
.y118{bottom:436.381067pt;}
.y148{bottom:436.471867pt;}
.y16a{bottom:436.487867pt;}
.yef{bottom:436.503867pt;}
.y62{bottom:436.514400pt;}
.y8e{bottom:436.514533pt;}
.y1d{bottom:448.563467pt;}
.y117{bottom:455.053067pt;}
.y147{bottom:455.143867pt;}
.y169{bottom:455.159867pt;}
.yee{bottom:455.175867pt;}
.y61{bottom:455.181067pt;}
.y8d{bottom:455.181200pt;}
.y1c{bottom:466.167467pt;}
.y2e{bottom:467.048400pt;}
.y116{bottom:473.725067pt;}
.y146{bottom:473.815867pt;}
.y168{bottom:473.831867pt;}
.y60{bottom:473.847733pt;}
.y8c{bottom:473.847867pt;}
.y2d{bottom:483.048400pt;}
.y1b{bottom:483.771467pt;}
.ybc{bottom:485.007867pt;}
.y115{bottom:492.397067pt;}
.y145{bottom:492.487867pt;}
.y167{bottom:492.503867pt;}
.y5f{bottom:492.514400pt;}
.y8b{bottom:492.514533pt;}
.yed{bottom:497.359467pt;}
.y2c{bottom:499.048400pt;}
.y1a{bottom:501.375467pt;}
.yde{bottom:503.289867pt;}
.y114{bottom:511.069067pt;}
.y144{bottom:511.159867pt;}
.y166{bottom:511.175867pt;}
.y5e{bottom:511.181067pt;}
.y8a{bottom:511.181200pt;}
.y2b{bottom:515.048400pt;}
.y19{bottom:518.979467pt;}
.ydd{bottom:521.871200pt;}
.ybf{bottom:524.734933pt;}
.y113{bottom:529.741067pt;}
.y143{bottom:529.831867pt;}
.y5d{bottom:529.847733pt;}
.ye7{bottom:529.847867pt;}
.y18{bottom:536.583467pt;}
.ydc{bottom:540.452533pt;}
.ybe{bottom:542.338933pt;}
.y89{bottom:542.614267pt;}
.y112{bottom:548.413067pt;}
.y142{bottom:548.503867pt;}
.y5c{bottom:548.514400pt;}
.ye6{bottom:548.514533pt;}
.yec{bottom:553.359467pt;}
.y17{bottom:554.187467pt;}
.ydb{bottom:559.033867pt;}
.ybd{bottom:559.942933pt;}
.y165{bottom:560.456533pt;}
.y111{bottom:567.085067pt;}
.y141{bottom:567.175867pt;}
.y5b{bottom:567.181067pt;}
.ye5{bottom:567.181200pt;}
.y16{bottom:571.791467pt;}
.yda{bottom:577.615200pt;}
.y140{bottom:585.730533pt;}
.y110{bottom:585.757067pt;}
.y5a{bottom:585.847733pt;}
.y88{bottom:585.847867pt;}
.y164{bottom:589.165467pt;}
.y15{bottom:589.395467pt;}
.yd9{bottom:596.196533pt;}
.y13f{bottom:604.402533pt;}
.y10f{bottom:604.429067pt;}
.y59{bottom:604.514400pt;}
.y87{bottom:604.514533pt;}
.y14{bottom:606.999467pt;}
.yeb{bottom:609.721867pt;}
.yd8{bottom:614.777867pt;}
.y13e{bottom:623.074533pt;}
.y10e{bottom:623.101067pt;}
.y58{bottom:623.181067pt;}
.y86{bottom:623.181200pt;}
.y13{bottom:624.603467pt;}
.yd7{bottom:633.359200pt;}
.yea{bottom:635.947600pt;}
.y13d{bottom:641.746533pt;}
.y10d{bottom:641.773067pt;}
.y163{bottom:641.805200pt;}
.y57{bottom:641.847733pt;}
.y85{bottom:641.847867pt;}
.y12{bottom:642.207467pt;}
.yd6{bottom:651.940533pt;}
.y11{bottom:659.811467pt;}
.y13c{bottom:660.418533pt;}
.y10c{bottom:660.445067pt;}
.y162{bottom:660.477200pt;}
.y56{bottom:660.514400pt;}
.y84{bottom:660.514533pt;}
.yd5{bottom:670.521867pt;}
.ya5{bottom:673.280800pt;}
.y13b{bottom:679.090533pt;}
.y10b{bottom:679.117067pt;}
.y161{bottom:679.149200pt;}
.y55{bottom:679.181067pt;}
.y83{bottom:679.181200pt;}
.y10{bottom:687.453600pt;}
.yd4{bottom:689.103200pt;}
.ye4{bottom:691.947600pt;}
.y13a{bottom:697.762533pt;}
.y10a{bottom:697.789067pt;}
.y160{bottom:697.821200pt;}
.y54{bottom:697.847733pt;}
.y82{bottom:697.847867pt;}
.yd3{bottom:707.684533pt;}
.y139{bottom:716.434533pt;}
.y109{bottom:716.461067pt;}
.y15f{bottom:716.493200pt;}
.y53{bottom:716.514400pt;}
.y81{bottom:716.514533pt;}
.yd2{bottom:726.265867pt;}
.y138{bottom:735.106533pt;}
.y108{bottom:735.133067pt;}
.y15e{bottom:735.165200pt;}
.y52{bottom:735.181067pt;}
.y80{bottom:735.181200pt;}
.yd1{bottom:744.847200pt;}
.y137{bottom:753.778533pt;}
.y107{bottom:753.805067pt;}
.y15d{bottom:753.837200pt;}
.y51{bottom:753.847733pt;}
.ye3{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.yd0{bottom:763.428533pt;}
.y7f{bottom:765.789867pt;}
.y136{bottom:772.450533pt;}
.y106{bottom:772.477067pt;}
.y15c{bottom:772.509200pt;}
.y50{bottom:772.514400pt;}
.ye2{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ycf{bottom:782.009867pt;}
.y8{bottom:789.926133pt;}
.y135{bottom:791.122533pt;}
.y105{bottom:791.149067pt;}
.y4f{bottom:791.181067pt;}
.ye1{bottom:791.181200pt;}
.y7e{bottom:794.498667pt;}
.yce{bottom:800.591200pt;}
.ye9{bottom:803.947600pt;}
.y7{bottom:805.926133pt;}
.y134{bottom:809.794533pt;}
.y104{bottom:809.821067pt;}
.y4e{bottom:809.847733pt;}
.ye0{bottom:809.847867pt;}
.ycd{bottom:819.172533pt;}
.ya4{bottom:821.755867pt;}
.y15b{bottom:821.789867pt;}
.y6{bottom:821.926133pt;}
.y133{bottom:828.466533pt;}
.y103{bottom:828.493067pt;}
.y4d{bottom:828.514400pt;}
.ydf{bottom:828.514533pt;}
.ycc{bottom:837.753867pt;}
.y132{bottom:847.138533pt;}
.y102{bottom:847.165067pt;}
.y4c{bottom:847.181067pt;}
.y7d{bottom:847.181200pt;}
.y15a{bottom:850.498667pt;}
.y5{bottom:853.044267pt;}
.ycb{bottom:856.335200pt;}
.yb0{bottom:862.559067pt;}
.y131{bottom:865.810533pt;}
.y101{bottom:865.837067pt;}
.y4b{bottom:865.847733pt;}
.y7c{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yca{bottom:874.916533pt;}
.yaf{bottom:881.143067pt;}
.y130{bottom:884.482533pt;}
.y100{bottom:884.509067pt;}
.y4a{bottom:884.514400pt;}
.y7b{bottom:884.514533pt;}
.yc9{bottom:893.497867pt;}
.yae{bottom:899.724400pt;}
.y12f{bottom:903.154533pt;}
.yff{bottom:903.165067pt;}
.y49{bottom:903.181067pt;}
.y7a{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yc8{bottom:912.079200pt;}
.yad{bottom:918.308533pt;}
.y12e{bottom:921.826533pt;}
.yfe{bottom:921.837067pt;}
.y48{bottom:921.847733pt;}
.y79{bottom:921.847867pt;}
.yc7{bottom:930.660533pt;}
.y2{bottom:932.695600pt;}
.yab{bottom:936.889867pt;}
.y12d{bottom:940.498533pt;}
.yfd{bottom:940.509067pt;}
.y47{bottom:940.514400pt;}
.y78{bottom:940.514533pt;}
.yaa{bottom:943.556533pt;}
.yc6{bottom:949.241867pt;}
.yac{bottom:950.223200pt;}
.y12c{bottom:959.170533pt;}
.y46{bottom:959.181067pt;}
.y77{bottom:959.181200pt;}
.yc5{bottom:967.823200pt;}
.ya9{bottom:977.314133pt;}
.y12b{bottom:977.842533pt;}
.y45{bottom:977.847733pt;}
.y76{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.yfc{bottom:988.062933pt;}
.ya8{bottom:994.918133pt;}
.y44{bottom:996.514400pt;}
.y75{bottom:996.514533pt;}
.y40{bottom:1030.390667pt;}
.y3f{bottom:1047.724000pt;}
.y43{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h13{height:33.666667pt;}
.h15{height:33.835667pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h16{height:34.666667pt;}
.h8{height:36.492188pt;}
.hf{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.000000pt;}
.h17{height:39.016000pt;}
.h19{height:39.021333pt;}
.h1a{height:39.064000pt;}
.h1b{height:39.469333pt;}
.h1c{height:40.546875pt;}
.h9{height:42.083333pt;}
.he{height:42.786458pt;}
.hd{height:43.333333pt;}
.h18{height:44.601562pt;}
.h11{height:46.291667pt;}
.h4{height:47.666667pt;}
.hc{height:50.500000pt;}
.h12{height:60.333333pt;}
.h3{height:68.929688pt;}
.h14{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;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.x16{left:99.777867pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.xd{left:127.797867pt;}
.x17{left:128.956000pt;}
.xe{left:202.635200pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.xf{left:295.563200pt;}
.x10{left:304.053867pt;}
.x3{left:337.502133pt;}
.x11{left:488.747200pt;}
.x13{left:551.061867pt;}
.x12{left:570.165867pt;}
.x9{left:576.806933pt;}
.x8{left:595.302933pt;}
.x15{left:647.240267pt;}
.x14{left:648.736533pt;}
.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; }
  