
    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_285d2491b2e608b3832c59a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_e17b22e5580257ae2d13b647.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_e8c6805a9e732446407957b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_81e827ba3cc2112f512adf2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_2d8e3aec9e060390dd31526c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_2673df2d4de47a47ab88f0b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_b861418b08cc76f209c5b66c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_666c40c4fb1d4c9cc9aec884.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_e17b22e5580257ae2d13b647.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_027cd55f1019033fc1367575.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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_e17b22e5580257ae2d13b647.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_da50d8c5f3bdf9e4302ac3a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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;}
.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);}
.v6{vertical-align:-20.579400px;}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.984000px;}
.v5{vertical-align:17.982000px;}
.v4{vertical-align:20.579400px;}
.v1{vertical-align:27.971400px;}
.ls3{letter-spacing:-2.100000px;}
.lsd{letter-spacing:-1.998000px;}
.lsb{letter-spacing:-1.164834px;}
.ls4{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-1.035408px;}
.ls18{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.618000px;}
.ls17{letter-spacing:-0.559680px;}
.ls2{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.360294px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000300px;}
.lse{letter-spacing:0.075600px;}
.ls13{letter-spacing:0.884400px;}
.ls16{letter-spacing:1.458600px;}
.ls11{letter-spacing:1.741200px;}
.ls1{letter-spacing:1.755000px;}
.ls7{letter-spacing:1.932000px;}
.ls9{letter-spacing:1.980000px;}
.ls0{letter-spacing:2.145000px;}
.ls6{letter-spacing:2.772000px;}
.lsf{letter-spacing:3.421800px;}
.ls10{letter-spacing:3.422400px;}
.ls15{letter-spacing:5.229600px;}
.ls19{letter-spacing:6.211200px;}
.ls14{letter-spacing:6.485400px;}
.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;}
}
.ws3d{word-spacing:-15.450000px;}
.ws29{word-spacing:-14.832000px;}
.ws94{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.000000px;}
.ws52{word-spacing:-11.502000px;}
.wsc8{word-spacing:-11.040000px;}
.wsf{word-spacing:-9.007350px;}
.ws84{word-spacing:-8.647056px;}
.ws67{word-spacing:-7.870500px;}
.wsed{word-spacing:-6.996000px;}
.ws11c{word-spacing:-6.983400px;}
.ws3e{word-spacing:-6.705666px;}
.ws19{word-spacing:-5.809200px;}
.ws5{word-spacing:-5.340000px;}
.ws14{word-spacing:-5.191200px;}
.ws11f{word-spacing:-4.944000px;}
.ws11b{word-spacing:-4.758600px;}
.wsa6{word-spacing:-4.511400px;}
.wsc2{word-spacing:-4.416000px;}
.ws89{word-spacing:-4.326000px;}
.wsb4{word-spacing:-4.264200px;}
.wsbf{word-spacing:-4.212000px;}
.ws1a{word-spacing:-3.708000px;}
.ws35{word-spacing:-3.552000px;}
.ws113{word-spacing:-3.399000px;}
.wsd8{word-spacing:-3.348000px;}
.wsd0{word-spacing:-3.337200px;}
.wsba{word-spacing:-3.275400px;}
.wsc6{word-spacing:-2.976000px;}
.ws74{word-spacing:-2.928000px;}
.ws57{word-spacing:-2.904600px;}
.wse8{word-spacing:-2.862000px;}
.wscf{word-spacing:-2.842800px;}
.wse3{word-spacing:-2.719200px;}
.ws10b{word-spacing:-2.472000px;}
.ws9c{word-spacing:-2.352000px;}
.wsbe{word-spacing:-2.348400px;}
.ws2a{word-spacing:-2.286600px;}
.wscb{word-spacing:-2.268000px;}
.ws23{word-spacing:-2.160000px;}
.wsa0{word-spacing:-2.064000px;}
.wsac{word-spacing:-1.977600px;}
.ws126{word-spacing:-1.915800px;}
.ws100{word-spacing:-1.854000px;}
.wsca{word-spacing:-1.836000px;}
.ws1b{word-spacing:-1.792200px;}
.wsa{word-spacing:-1.776000px;}
.ws10d{word-spacing:-1.730400px;}
.wsda{word-spacing:-1.668600px;}
.wsc{word-spacing:-1.632000px;}
.ws96{word-spacing:-1.545000px;}
.wsa5{word-spacing:-1.483200px;}
.ws111{word-spacing:-1.421400px;}
.wsef{word-spacing:-1.297800px;}
.ws11d{word-spacing:-1.236000px;}
.ws2b{word-spacing:-1.174200px;}
.ws6a{word-spacing:-1.134000px;}
.ws105{word-spacing:-1.112400px;}
.wseb{word-spacing:-1.104000px;}
.ws63{word-spacing:-1.056000px;}
.ws31{word-spacing:-1.050600px;}
.wsc7{word-spacing:-0.960000px;}
.wsfa{word-spacing:-0.865200px;}
.ws50{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.816000px;}
.ws3b{word-spacing:-0.768000px;}
.ws81{word-spacing:-0.720000px;}
.ws3{word-spacing:-0.714000px;}
.ws104{word-spacing:-0.679800px;}
.wsa1{word-spacing:-0.672000px;}
.ws10e{word-spacing:-0.618000px;}
.ws5b{word-spacing:-0.556200px;}
.wsf0{word-spacing:-0.432600px;}
.ws1c{word-spacing:-0.432000px;}
.ws80{word-spacing:-0.384000px;}
.ws2f{word-spacing:-0.370800px;}
.wsbb{word-spacing:-0.309000px;}
.wsb{word-spacing:-0.288000px;}
.wse7{word-spacing:-0.270000px;}
.wsd1{word-spacing:-0.247200px;}
.wsf9{word-spacing:-0.240000px;}
.ws101{word-spacing:-0.185400px;}
.wsd6{word-spacing:-0.144000px;}
.ws0{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws7a{word-spacing:0.096000px;}
.ws17{word-spacing:0.123600px;}
.wsec{word-spacing:0.144000px;}
.ws79{word-spacing:0.192000px;}
.ws119{word-spacing:0.247200px;}
.wsb9{word-spacing:0.270000px;}
.ws7b{word-spacing:0.336000px;}
.ws10{word-spacing:0.370800px;}
.ws58{word-spacing:0.432600px;}
.ws43{word-spacing:0.494400px;}
.ws18{word-spacing:0.556200px;}
.wsd2{word-spacing:0.559680px;}
.ws9d{word-spacing:0.576000px;}
.ws2d{word-spacing:0.618000px;}
.wsd{word-spacing:0.624000px;}
.ws36{word-spacing:0.720000px;}
.wsb7{word-spacing:0.756000px;}
.ws10a{word-spacing:0.768000px;}
.ws5f{word-spacing:0.816000px;}
.wsd7{word-spacing:0.839520px;}
.ws120{word-spacing:0.865200px;}
.wsd4{word-spacing:0.960000px;}
.ws51{word-spacing:1.035408px;}
.wsf4{word-spacing:1.050600px;}
.wse2{word-spacing:1.056000px;}
.ws4{word-spacing:1.080000px;}
.ws60{word-spacing:1.104000px;}
.ws44{word-spacing:1.112400px;}
.ws73{word-spacing:1.152000px;}
.ws3c{word-spacing:1.200000px;}
.ws103{word-spacing:1.236000px;}
.ws4b{word-spacing:1.359600px;}
.wsfe{word-spacing:1.421400px;}
.ws83{word-spacing:1.440000px;}
.wsee{word-spacing:1.483200px;}
.ws22{word-spacing:1.488000px;}
.ws106{word-spacing:1.545000px;}
.ws5e{word-spacing:1.632000px;}
.wscc{word-spacing:1.668600px;}
.ws4f{word-spacing:1.680000px;}
.ws93{word-spacing:1.728000px;}
.ws9a{word-spacing:1.730400px;}
.wsb2{word-spacing:1.792200px;}
.ws7c{word-spacing:1.824000px;}
.wsff{word-spacing:1.854000px;}
.wsc3{word-spacing:1.958880px;}
.ws7d{word-spacing:1.968000px;}
.ws2e{word-spacing:2.039400px;}
.ws33{word-spacing:2.064000px;}
.ws25{word-spacing:2.070816px;}
.wsd3{word-spacing:2.160000px;}
.ws45{word-spacing:2.163000px;}
.ws2c{word-spacing:2.224800px;}
.ws78{word-spacing:2.256000px;}
.ws28{word-spacing:2.352000px;}
.ws48{word-spacing:2.410200px;}
.ws11{word-spacing:2.472000px;}
.wsc5{word-spacing:2.496000px;}
.wsdf{word-spacing:2.592000px;}
.ws62{word-spacing:2.688000px;}
.ws91{word-spacing:2.832000px;}
.ws98{word-spacing:2.904600px;}
.ws9e{word-spacing:2.928000px;}
.wse6{word-spacing:3.028200px;}
.wsa7{word-spacing:3.090000px;}
.ws54{word-spacing:3.151800px;}
.ws61{word-spacing:3.168000px;}
.ws13{word-spacing:3.213600px;}
.wsc9{word-spacing:3.275400px;}
.ws85{word-spacing:3.337200px;}
.wsc4{word-spacing:3.360000px;}
.ws5c{word-spacing:3.399000px;}
.ws27{word-spacing:3.456000px;}
.ws15{word-spacing:3.460800px;}
.wsc0{word-spacing:3.504000px;}
.ws6c{word-spacing:3.510000px;}
.ws26{word-spacing:3.552000px;}
.wsae{word-spacing:3.584400px;}
.wsdb{word-spacing:3.708000px;}
.ws7e{word-spacing:3.744000px;}
.wsb3{word-spacing:3.769800px;}
.wsea{word-spacing:3.888000px;}
.ws70{word-spacing:3.955200px;}
.ws7{word-spacing:3.960000px;}
.ws1e{word-spacing:3.984000px;}
.ws49{word-spacing:4.017000px;}
.wsbd{word-spacing:4.078800px;}
.ws8a{word-spacing:4.140600px;}
.ws8d{word-spacing:4.202400px;}
.ws64{word-spacing:4.225584px;}
.ws8{word-spacing:4.260000px;}
.ws6b{word-spacing:4.320000px;}
.wsa9{word-spacing:4.326000px;}
.ws4e{word-spacing:4.368000px;}
.ws41{word-spacing:4.387800px;}
.ws7f{word-spacing:4.416000px;}
.ws71{word-spacing:4.449600px;}
.wsf5{word-spacing:4.573200px;}
.ws32{word-spacing:4.608000px;}
.wscd{word-spacing:4.696800px;}
.wsa4{word-spacing:4.758600px;}
.wsb5{word-spacing:4.820400px;}
.ws90{word-spacing:4.848000px;}
.ws3f{word-spacing:4.882200px;}
.ws95{word-spacing:4.944000px;}
.ws59{word-spacing:5.067600px;}
.wsc1{word-spacing:5.280000px;}
.wsdc{word-spacing:5.314800px;}
.ws8b{word-spacing:5.376600px;}
.ws24{word-spacing:5.424000px;}
.ws88{word-spacing:5.438400px;}
.ws10c{word-spacing:5.500200px;}
.ws21{word-spacing:5.664000px;}
.ws16{word-spacing:5.685600px;}
.ws38{word-spacing:5.856000px;}
.wsb0{word-spacing:5.871000px;}
.ws76{word-spacing:5.904000px;}
.ws53{word-spacing:5.932800px;}
.ws37{word-spacing:5.952000px;}
.ws82{word-spacing:6.096000px;}
.ws40{word-spacing:6.118200px;}
.wsce{word-spacing:6.180000px;}
.wsd5{word-spacing:6.192000px;}
.wsa3{word-spacing:6.241800px;}
.ws4a{word-spacing:6.303600px;}
.ws4c{word-spacing:6.427200px;}
.ws92{word-spacing:6.480000px;}
.wsf8{word-spacing:6.489000px;}
.ws4d{word-spacing:6.528000px;}
.wsf6{word-spacing:6.612600px;}
.ws9b{word-spacing:6.859800px;}
.ws6d{word-spacing:6.983400px;}
.wsde{word-spacing:6.996000px;}
.ws65{word-spacing:7.248000px;}
.ws9f{word-spacing:7.296000px;}
.wse9{word-spacing:7.354200px;}
.ws112{word-spacing:7.416000px;}
.ws107{word-spacing:7.477800px;}
.wsa8{word-spacing:7.601400px;}
.ws8f{word-spacing:7.663200px;}
.ws108{word-spacing:7.848600px;}
.ws3a{word-spacing:7.872000px;}
.ws12{word-spacing:7.910400px;}
.ws30{word-spacing:7.972200px;}
.wsad{word-spacing:8.034000px;}
.wsfc{word-spacing:8.157600px;}
.ws34{word-spacing:8.160000px;}
.wse5{word-spacing:8.219400px;}
.ws6e{word-spacing:8.466600px;}
.wsa2{word-spacing:8.544000px;}
.wse0{word-spacing:8.688000px;}
.ws11e{word-spacing:8.713800px;}
.ws46{word-spacing:8.748000px;}
.wsab{word-spacing:8.775600px;}
.ws102{word-spacing:8.837400px;}
.wsb8{word-spacing:8.910000px;}
.ws20{word-spacing:8.928000px;}
.ws42{word-spacing:9.022800px;}
.ws66{word-spacing:9.024000px;}
.ws8e{word-spacing:9.146400px;}
.ws72{word-spacing:9.270000px;}
.ws125{word-spacing:9.331800px;}
.ws5d{word-spacing:9.408000px;}
.ws75{word-spacing:9.552000px;}
.wsf3{word-spacing:9.579000px;}
.ws39{word-spacing:9.600000px;}
.ws8c{word-spacing:9.764400px;}
.ws68{word-spacing:9.949800px;}
.wse1{word-spacing:9.984000px;}
.ws87{word-spacing:10.011600px;}
.ws77{word-spacing:10.032000px;}
.wsbc{word-spacing:10.135200px;}
.ws11a{word-spacing:10.506000px;}
.wsd9{word-spacing:10.962000px;}
.wsb6{word-spacing:11.070000px;}
.ws10f{word-spacing:11.178000px;}
.ws6f{word-spacing:11.185800px;}
.wse4{word-spacing:11.309400px;}
.ws97{word-spacing:11.371200px;}
.wsfb{word-spacing:11.433000px;}
.ws6{word-spacing:11.580000px;}
.ws69{word-spacing:11.927400px;}
.ws99{word-spacing:11.989200px;}
.wsaf{word-spacing:12.236400px;}
.ws55{word-spacing:12.298200px;}
.wsf7{word-spacing:12.360000px;}
.ws1d{word-spacing:12.528000px;}
.ws110{word-spacing:12.690000px;}
.ws5a{word-spacing:13.348800px;}
.ws47{word-spacing:13.596000px;}
.ws109{word-spacing:13.905000px;}
.ws86{word-spacing:14.214000px;}
.ws56{word-spacing:14.399400px;}
.wsf2{word-spacing:14.770200px;}
.ws121{word-spacing:14.893800px;}
.ws127{word-spacing:15.141000px;}
.wsaa{word-spacing:15.450000px;}
.ws115{word-spacing:15.635400px;}
.ws124{word-spacing:16.006200px;}
.wsf1{word-spacing:16.562400px;}
.wsdd{word-spacing:16.933200px;}
.ws114{word-spacing:17.613000px;}
.ws117{word-spacing:17.736600px;}
.wsb1{word-spacing:19.034400px;}
.wsfd{word-spacing:19.652400px;}
.ws118{word-spacing:19.899600px;}
.ws122{word-spacing:27.624600px;}
.ws116{word-spacing:31.579800px;}
.ws123{word-spacing:44.434200px;}
.ws9{word-spacing:52.406400px;}
.wse{word-spacing:618.645000px;}
._16{margin-left:-26.759400px;}
._17{margin-left:-16.933200px;}
._15{margin-left:-7.516260px;}
._2{margin-left:-6.145200px;}
._13{margin-left:-5.097360px;}
._7{margin-left:-4.010820px;}
._5{margin-left:-2.553600px;}
._0{margin-left:-1.549800px;}
._1{width:1.069200px;}
._4{width:2.203200px;}
._6{width:3.302400px;}
._d{width:4.377600px;}
._3{width:5.394000px;}
._8{width:6.595200px;}
._f{width:7.643820px;}
._b{width:8.647800px;}
._9{width:9.826200px;}
._c{width:10.977600px;}
._e{width:12.121800px;}
._a{width:13.385400px;}
._10{width:14.425080px;}
._12{width:15.713040px;}
._14{width:17.138760px;}
._18{width:18.692880px;}
._11{width:20.579400px;}
._1c{width:22.472940px;}
._1b{width:23.584140px;}
._19{width:28.217880px;}
._1a{width:31.807860px;}
._1e{width:32.897400px;}
._1d{width:44.360280px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fsa{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y1f{bottom:76.500000px;}
.yab{bottom:76.500150px;}
.y78{bottom:80.496000px;}
.yce{bottom:80.496150px;}
.y1e{bottom:90.000000px;}
.yaa{bottom:90.000150px;}
.y77{bottom:93.996000px;}
.y149{bottom:93.996150px;}
.y1d{bottom:103.500000px;}
.ycd{bottom:103.500150px;}
.y7b{bottom:107.496000px;}
.ya9{bottom:107.496150px;}
.y17c{bottom:111.176100px;}
.y1c{bottom:117.000000px;}
.ya8{bottom:117.000150px;}
.y67{bottom:120.996000px;}
.ycc{bottom:120.996150px;}
.y17b{bottom:129.629100px;}
.yeb{bottom:129.716100px;}
.y1b{bottom:130.500000px;}
.ya7{bottom:130.500150px;}
.y7a{bottom:134.496000px;}
.ycb{bottom:134.496150px;}
.y1a{bottom:144.000000px;}
.ya6{bottom:144.000150px;}
.y46{bottom:147.996000px;}
.yca{bottom:147.996150px;}
.y17a{bottom:148.169100px;}
.y148{bottom:148.241100px;}
.yea{bottom:148.256100px;}
.y19{bottom:157.500000px;}
.ya5{bottom:157.500150px;}
.y76{bottom:161.496000px;}
.y179{bottom:166.709100px;}
.y147{bottom:166.781100px;}
.ye9{bottom:166.796100px;}
.y45{bottom:171.000000px;}
.ya4{bottom:171.000150px;}
.y18{bottom:174.996000px;}
.yc9{bottom:174.996150px;}
.y44{bottom:184.500000px;}
.ya3{bottom:184.500150px;}
.y178{bottom:185.249100px;}
.y146{bottom:185.321100px;}
.ye8{bottom:185.336100px;}
.y140{bottom:188.496000px;}
.yc8{bottom:188.496150px;}
.y75{bottom:195.236100px;}
.y43{bottom:198.000000px;}
.ya2{bottom:198.000150px;}
.y66{bottom:201.996000px;}
.y177{bottom:203.789100px;}
.y145{bottom:203.861100px;}
.ye7{bottom:203.876100px;}
.y13f{bottom:211.436100px;}
.y42{bottom:211.500000px;}
.ya1{bottom:211.500150px;}
.y74{bottom:213.776100px;}
.yde{bottom:215.496000px;}
.yc7{bottom:215.496150px;}
.y176{bottom:222.329100px;}
.y144{bottom:222.401100px;}
.ye6{bottom:222.416100px;}
.y41{bottom:225.000000px;}
.ya0{bottom:225.000150px;}
.y13e{bottom:229.976100px;}
.y11d{bottom:230.516100px;}
.y73{bottom:232.316100px;}
.y156{bottom:234.116100px;}
.y40{bottom:238.500000px;}
.y9f{bottom:238.500150px;}
.y17{bottom:238.595850px;}
.y175{bottom:240.869100px;}
.y143{bottom:240.941100px;}
.ye5{bottom:240.956100px;}
.y65{bottom:242.496000px;}
.y13d{bottom:248.516100px;}
.y11c{bottom:249.056100px;}
.y72{bottom:250.856100px;}
.y3f{bottom:252.000000px;}
.y9e{bottom:252.000150px;}
.yc6{bottom:255.996150px;}
.y16{bottom:257.135850px;}
.y174{bottom:259.409100px;}
.y142{bottom:259.481100px;}
.ye4{bottom:259.496100px;}
.y3e{bottom:265.500000px;}
.y13c{bottom:267.056100px;}
.y11b{bottom:267.596100px;}
.y71{bottom:269.396100px;}
.y104{bottom:269.496000px;}
.y9d{bottom:269.496150px;}
.y155{bottom:271.196100px;}
.y173{bottom:277.949100px;}
.y141{bottom:278.021100px;}
.ye3{bottom:278.036100px;}
.y3d{bottom:279.000000px;}
.y9c{bottom:279.000150px;}
.y137{bottom:282.996000px;}
.y13b{bottom:285.596100px;}
.y11a{bottom:286.136100px;}
.y70{bottom:287.936100px;}
.y154{bottom:289.736100px;}
.y64{bottom:292.500000px;}
.y9b{bottom:292.500150px;}
.y15{bottom:293.675850px;}
.y172{bottom:296.489100px;}
.y3c{bottom:296.496000px;}
.yc5{bottom:296.561100px;}
.ye2{bottom:296.576100px;}
.y119{bottom:304.676100px;}
.y3b{bottom:306.000000px;}
.y9a{bottom:306.000150px;}
.y6f{bottom:306.476100px;}
.y153{bottom:308.276100px;}
.y63{bottom:309.996000px;}
.y14{bottom:311.675850px;}
.y171{bottom:315.029100px;}
.yc4{bottom:315.101100px;}
.ye1{bottom:315.116100px;}
.y3a{bottom:319.500000px;}
.y13a{bottom:322.136100px;}
.y118{bottom:323.216100px;}
.y99{bottom:323.496150px;}
.y6e{bottom:325.016100px;}
.y152{bottom:326.816100px;}
.y13{bottom:329.675850px;}
.y39{bottom:333.000000px;}
.y98{bottom:333.000150px;}
.y170{bottom:333.569100px;}
.yc3{bottom:333.641100px;}
.ye0{bottom:333.656100px;}
.y103{bottom:336.716100px;}
.y139{bottom:338.336100px;}
.ydd{bottom:341.216100px;}
.y117{bottom:341.756100px;}
.y6d{bottom:343.556100px;}
.y151{bottom:345.356100px;}
.y38{bottom:346.500000px;}
.y97{bottom:346.500150px;}
.y12{bottom:347.675850px;}
.y136{bottom:350.496000px;}
.y16f{bottom:352.109100px;}
.yc2{bottom:352.181100px;}
.ydf{bottom:352.196100px;}
.y102{bottom:352.916100px;}
.y138{bottom:354.536100px;}
.ydc{bottom:359.756100px;}
.y37{bottom:360.000000px;}
.y96{bottom:360.000150px;}
.y116{bottom:360.296100px;}
.y6c{bottom:362.096100px;}
.y150{bottom:363.896100px;}
.y79{bottom:363.996000px;}
.y11{bottom:365.675850px;}
.y101{bottom:369.116100px;}
.y16e{bottom:370.649100px;}
.yc1{bottom:370.721100px;}
.y62{bottom:370.736100px;}
.y95{bottom:373.500150px;}
.y36{bottom:377.496000px;}
.ydb{bottom:378.296100px;}
.y115{bottom:378.836100px;}
.y14f{bottom:382.436100px;}
.y10{bottom:383.675850px;}
.y100{bottom:385.316100px;}
.y35{bottom:387.000000px;}
.y94{bottom:387.000150px;}
.y16d{bottom:389.189100px;}
.yc0{bottom:389.261100px;}
.y61{bottom:389.276100px;}
.yda{bottom:396.836100px;}
.y114{bottom:397.376100px;}
.y135{bottom:398.188200px;}
.y6b{bottom:398.636100px;}
.y14e{bottom:400.976100px;}
.yf{bottom:401.675850px;}
.y34{bottom:404.496000px;}
.y93{bottom:404.496150px;}
.y16c{bottom:407.729100px;}
.ybf{bottom:407.801100px;}
.y60{bottom:407.816100px;}
.y92{bottom:414.000150px;}
.y6a{bottom:414.836100px;}
.yd9{bottom:415.376100px;}
.y113{bottom:415.916100px;}
.y134{bottom:416.728200px;}
.yff{bottom:419.516100px;}
.y16b{bottom:426.269100px;}
.ybe{bottom:426.341100px;}
.y5f{bottom:426.356100px;}
.ye{bottom:427.175850px;}
.y91{bottom:427.500150px;}
.y69{bottom:431.036100px;}
.yd8{bottom:433.916100px;}
.y112{bottom:434.456100px;}
.y133{bottom:435.268200px;}
.y33{bottom:437.309100px;}
.yfe{bottom:438.056100px;}
.y16a{bottom:444.809100px;}
.ybd{bottom:444.881100px;}
.y5e{bottom:444.896100px;}
.y90{bottom:444.996150px;}
.y68{bottom:447.236100px;}
.yd7{bottom:452.456100px;}
.y111{bottom:452.996100px;}
.y132{bottom:453.808200px;}
.y8f{bottom:454.500150px;}
.y32{bottom:455.849100px;}
.yfd{bottom:456.596100px;}
.y169{bottom:463.349100px;}
.ybc{bottom:463.421100px;}
.y5d{bottom:463.436100px;}
.y8e{bottom:468.000150px;}
.yd6{bottom:470.996100px;}
.y110{bottom:471.536100px;}
.y131{bottom:472.348200px;}
.y31{bottom:474.389100px;}
.yfc{bottom:475.136100px;}
.y8d{bottom:481.500150px;}
.y168{bottom:481.889100px;}
.ybb{bottom:481.961100px;}
.y5c{bottom:481.976100px;}
.yd{bottom:485.975850px;}
.yd5{bottom:489.536100px;}
.y10f{bottom:490.076100px;}
.y130{bottom:490.888200px;}
.y30{bottom:492.929100px;}
.yfb{bottom:493.676100px;}
.y8c{bottom:498.996150px;}
.y167{bottom:500.429100px;}
.yba{bottom:500.501100px;}
.y5b{bottom:500.516100px;}
.yc{bottom:507.575850px;}
.yd4{bottom:508.076100px;}
.y10e{bottom:508.616100px;}
.y12f{bottom:509.428200px;}
.y2f{bottom:511.469100px;}
.yfa{bottom:512.216100px;}
.y166{bottom:518.969100px;}
.yb9{bottom:519.041100px;}
.y5a{bottom:519.056100px;}
.yd3{bottom:526.616100px;}
.y10d{bottom:527.156100px;}
.y12e{bottom:527.968200px;}
.y8b{bottom:528.401100px;}
.y14d{bottom:528.416100px;}
.y2e{bottom:530.009100px;}
.yf9{bottom:530.756100px;}
.y165{bottom:537.509100px;}
.yb8{bottom:537.581100px;}
.y59{bottom:537.596100px;}
.yb{bottom:543.275850px;}
.y14c{bottom:544.616100px;}
.yd2{bottom:545.156100px;}
.y10c{bottom:545.696100px;}
.y12d{bottom:546.508200px;}
.y8a{bottom:546.941100px;}
.y2d{bottom:548.549100px;}
.yf8{bottom:549.296100px;}
.y164{bottom:556.049100px;}
.yb7{bottom:556.121100px;}
.y58{bottom:556.136100px;}
.y14b{bottom:560.816100px;}
.y10b{bottom:564.236100px;}
.y12c{bottom:565.048200px;}
.y89{bottom:565.481100px;}
.y2c{bottom:567.089100px;}
.ya{bottom:567.327750px;}
.yf7{bottom:567.836100px;}
.y163{bottom:574.589100px;}
.yb6{bottom:574.661100px;}
.y57{bottom:574.676100px;}
.y14a{bottom:577.016100px;}
.yd1{bottom:581.696100px;}
.y10a{bottom:582.776100px;}
.y12b{bottom:583.588200px;}
.y88{bottom:584.021100px;}
.y2b{bottom:585.629100px;}
.yf6{bottom:586.376100px;}
.y162{bottom:593.129100px;}
.yb5{bottom:593.201100px;}
.y56{bottom:593.216100px;}
.y9{bottom:594.027900px;}
.yd0{bottom:597.896100px;}
.y109{bottom:601.316100px;}
.y12a{bottom:602.128200px;}
.y87{bottom:602.561100px;}
.y2a{bottom:604.169100px;}
.yf5{bottom:604.916100px;}
.y161{bottom:611.669100px;}
.yb4{bottom:611.741100px;}
.y55{bottom:611.756100px;}
.ycf{bottom:614.096100px;}
.y108{bottom:619.856100px;}
.y129{bottom:620.668200px;}
.y86{bottom:621.101100px;}
.y29{bottom:622.708950px;}
.yf4{bottom:623.456100px;}
.y160{bottom:630.208950px;}
.yb3{bottom:630.281100px;}
.y54{bottom:630.296100px;}
.y128{bottom:639.208200px;}
.y85{bottom:639.641100px;}
.yf3{bottom:641.996100px;}
.y15f{bottom:648.749100px;}
.yb2{bottom:648.821100px;}
.y53{bottom:648.836100px;}
.y8{bottom:655.227750px;}
.y107{bottom:656.396100px;}
.y127{bottom:657.748200px;}
.y84{bottom:658.181100px;}
.yf2{bottom:660.536100px;}
.y15e{bottom:667.289100px;}
.yb1{bottom:667.361100px;}
.y52{bottom:667.376100px;}
.y106{bottom:672.596100px;}
.y126{bottom:676.288200px;}
.y28{bottom:678.329100px;}
.yf1{bottom:679.076100px;}
.y7{bottom:682.227750px;}
.y15d{bottom:685.829100px;}
.yb0{bottom:685.901100px;}
.y51{bottom:685.916100px;}
.y105{bottom:688.796100px;}
.y125{bottom:694.828200px;}
.y83{bottom:695.261100px;}
.y15c{bottom:704.369100px;}
.yaf{bottom:704.441100px;}
.y50{bottom:704.456100px;}
.y6{bottom:709.227750px;}
.y82{bottom:711.461100px;}
.y124{bottom:713.368200px;}
.y27{bottom:715.409100px;}
.yf0{bottom:716.156100px;}
.y15b{bottom:722.909100px;}
.yae{bottom:722.981100px;}
.y4f{bottom:722.996100px;}
.y81{bottom:727.661100px;}
.y123{bottom:731.908200px;}
.yef{bottom:732.356100px;}
.y26{bottom:733.949100px;}
.y15a{bottom:741.449100px;}
.yad{bottom:741.521100px;}
.y4e{bottom:741.536100px;}
.y80{bottom:743.861100px;}
.yee{bottom:748.556100px;}
.y122{bottom:750.448200px;}
.y25{bottom:752.489100px;}
.y159{bottom:759.989100px;}
.yac{bottom:760.061100px;}
.y4d{bottom:760.076100px;}
.yed{bottom:764.756100px;}
.y24{bottom:771.028950px;}
.y5{bottom:772.227750px;}
.y158{bottom:778.528950px;}
.y7f{bottom:778.601100px;}
.y4c{bottom:778.616100px;}
.yec{bottom:780.956100px;}
.y121{bottom:786.988200px;}
.y23{bottom:789.569100px;}
.y157{bottom:797.069100px;}
.y7e{bottom:797.141100px;}
.y4b{bottom:797.156100px;}
.y4{bottom:799.227750px;}
.y120{bottom:803.188200px;}
.y22{bottom:808.109100px;}
.y7d{bottom:815.681100px;}
.y4a{bottom:815.696100px;}
.y11f{bottom:819.388200px;}
.y3{bottom:826.227750px;}
.y21{bottom:834.149100px;}
.y7c{bottom:834.220950px;}
.y49{bottom:834.236100px;}
.y11e{bottom:835.588200px;}
.y48{bottom:893.470500px;}
.y47{bottom:905.470500px;}
.y20{bottom:906.525150px;}
.hb{height:26.133187px;}
.hf{height:26.250375px;}
.h3{height:36.852539px;}
.h2{height:36.955078px;}
.hc{height:42.117188px;}
.hd{height:42.234375px;}
.h8{height:44.601562px;}
.h12{height:45.181641px;}
.h7{height:47.381836px;}
.h11{height:47.513672px;}
.h9{height:52.646484px;}
.h10{height:52.792969px;}
.ha{height:54.225879px;}
.he{height:54.376758px;}
.h6{height:57.911133px;}
.h5{height:73.705078px;}
.h4{height:94.763672px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x8{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.x3{left:106.663050px;}
.xa{left:141.225000px;}
.xb{left:195.127650px;}
.x9{left:541.222350px;}
@media print{
.v6{vertical-align:-18.292800pt;}
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.208000pt;}
.v5{vertical-align:15.984000pt;}
.v4{vertical-align:18.292800pt;}
.v1{vertical-align:24.863467pt;}
.ls3{letter-spacing:-1.866667pt;}
.lsd{letter-spacing:-1.776000pt;}
.lsb{letter-spacing:-1.035408pt;}
.ls4{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.920363pt;}
.ls18{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.549333pt;}
.ls17{letter-spacing:-0.497493pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.320261pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000267pt;}
.lse{letter-spacing:0.067200pt;}
.ls13{letter-spacing:0.786133pt;}
.ls16{letter-spacing:1.296533pt;}
.ls11{letter-spacing:1.547733pt;}
.ls1{letter-spacing:1.560000pt;}
.ls7{letter-spacing:1.717333pt;}
.ls9{letter-spacing:1.760000pt;}
.ls0{letter-spacing:1.906667pt;}
.ls6{letter-spacing:2.464000pt;}
.lsf{letter-spacing:3.041600pt;}
.ls10{letter-spacing:3.042133pt;}
.ls15{letter-spacing:4.648533pt;}
.ls19{letter-spacing:5.521067pt;}
.ls14{letter-spacing:5.764800pt;}
.ws3d{word-spacing:-13.733333pt;}
.ws29{word-spacing:-13.184000pt;}
.ws94{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws52{word-spacing:-10.224000pt;}
.wsc8{word-spacing:-9.813333pt;}
.wsf{word-spacing:-8.006533pt;}
.ws84{word-spacing:-7.686272pt;}
.ws67{word-spacing:-6.996000pt;}
.wsed{word-spacing:-6.218667pt;}
.ws11c{word-spacing:-6.207467pt;}
.ws3e{word-spacing:-5.960592pt;}
.ws19{word-spacing:-5.163733pt;}
.ws5{word-spacing:-4.746667pt;}
.ws14{word-spacing:-4.614400pt;}
.ws11f{word-spacing:-4.394667pt;}
.ws11b{word-spacing:-4.229867pt;}
.wsa6{word-spacing:-4.010133pt;}
.wsc2{word-spacing:-3.925333pt;}
.ws89{word-spacing:-3.845333pt;}
.wsb4{word-spacing:-3.790400pt;}
.wsbf{word-spacing:-3.744000pt;}
.ws1a{word-spacing:-3.296000pt;}
.ws35{word-spacing:-3.157333pt;}
.ws113{word-spacing:-3.021333pt;}
.wsd8{word-spacing:-2.976000pt;}
.wsd0{word-spacing:-2.966400pt;}
.wsba{word-spacing:-2.911467pt;}
.wsc6{word-spacing:-2.645333pt;}
.ws74{word-spacing:-2.602667pt;}
.ws57{word-spacing:-2.581867pt;}
.wse8{word-spacing:-2.544000pt;}
.wscf{word-spacing:-2.526933pt;}
.wse3{word-spacing:-2.417067pt;}
.ws10b{word-spacing:-2.197333pt;}
.ws9c{word-spacing:-2.090667pt;}
.wsbe{word-spacing:-2.087467pt;}
.ws2a{word-spacing:-2.032533pt;}
.wscb{word-spacing:-2.016000pt;}
.ws23{word-spacing:-1.920000pt;}
.wsa0{word-spacing:-1.834667pt;}
.wsac{word-spacing:-1.757867pt;}
.ws126{word-spacing:-1.702933pt;}
.ws100{word-spacing:-1.648000pt;}
.wsca{word-spacing:-1.632000pt;}
.ws1b{word-spacing:-1.593067pt;}
.wsa{word-spacing:-1.578667pt;}
.ws10d{word-spacing:-1.538133pt;}
.wsda{word-spacing:-1.483200pt;}
.wsc{word-spacing:-1.450667pt;}
.ws96{word-spacing:-1.373333pt;}
.wsa5{word-spacing:-1.318400pt;}
.ws111{word-spacing:-1.263467pt;}
.wsef{word-spacing:-1.153600pt;}
.ws11d{word-spacing:-1.098667pt;}
.ws2b{word-spacing:-1.043733pt;}
.ws6a{word-spacing:-1.008000pt;}
.ws105{word-spacing:-0.988800pt;}
.wseb{word-spacing:-0.981333pt;}
.ws63{word-spacing:-0.938667pt;}
.ws31{word-spacing:-0.933867pt;}
.wsc7{word-spacing:-0.853333pt;}
.wsfa{word-spacing:-0.769067pt;}
.ws50{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.725333pt;}
.ws3b{word-spacing:-0.682667pt;}
.ws81{word-spacing:-0.640000pt;}
.ws3{word-spacing:-0.634667pt;}
.ws104{word-spacing:-0.604267pt;}
.wsa1{word-spacing:-0.597333pt;}
.ws10e{word-spacing:-0.549333pt;}
.ws5b{word-spacing:-0.494400pt;}
.wsf0{word-spacing:-0.384533pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws80{word-spacing:-0.341333pt;}
.ws2f{word-spacing:-0.329600pt;}
.wsbb{word-spacing:-0.274667pt;}
.wsb{word-spacing:-0.256000pt;}
.wse7{word-spacing:-0.240000pt;}
.wsd1{word-spacing:-0.219733pt;}
.wsf9{word-spacing:-0.213333pt;}
.ws101{word-spacing:-0.164800pt;}
.wsd6{word-spacing:-0.128000pt;}
.ws0{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.085333pt;}
.ws17{word-spacing:0.109867pt;}
.wsec{word-spacing:0.128000pt;}
.ws79{word-spacing:0.170667pt;}
.ws119{word-spacing:0.219733pt;}
.wsb9{word-spacing:0.240000pt;}
.ws7b{word-spacing:0.298667pt;}
.ws10{word-spacing:0.329600pt;}
.ws58{word-spacing:0.384533pt;}
.ws43{word-spacing:0.439467pt;}
.ws18{word-spacing:0.494400pt;}
.wsd2{word-spacing:0.497493pt;}
.ws9d{word-spacing:0.512000pt;}
.ws2d{word-spacing:0.549333pt;}
.wsd{word-spacing:0.554667pt;}
.ws36{word-spacing:0.640000pt;}
.wsb7{word-spacing:0.672000pt;}
.ws10a{word-spacing:0.682667pt;}
.ws5f{word-spacing:0.725333pt;}
.wsd7{word-spacing:0.746240pt;}
.ws120{word-spacing:0.769067pt;}
.wsd4{word-spacing:0.853333pt;}
.ws51{word-spacing:0.920363pt;}
.wsf4{word-spacing:0.933867pt;}
.wse2{word-spacing:0.938667pt;}
.ws4{word-spacing:0.960000pt;}
.ws60{word-spacing:0.981333pt;}
.ws44{word-spacing:0.988800pt;}
.ws73{word-spacing:1.024000pt;}
.ws3c{word-spacing:1.066667pt;}
.ws103{word-spacing:1.098667pt;}
.ws4b{word-spacing:1.208533pt;}
.wsfe{word-spacing:1.263467pt;}
.ws83{word-spacing:1.280000pt;}
.wsee{word-spacing:1.318400pt;}
.ws22{word-spacing:1.322667pt;}
.ws106{word-spacing:1.373333pt;}
.ws5e{word-spacing:1.450667pt;}
.wscc{word-spacing:1.483200pt;}
.ws4f{word-spacing:1.493333pt;}
.ws93{word-spacing:1.536000pt;}
.ws9a{word-spacing:1.538133pt;}
.wsb2{word-spacing:1.593067pt;}
.ws7c{word-spacing:1.621333pt;}
.wsff{word-spacing:1.648000pt;}
.wsc3{word-spacing:1.741227pt;}
.ws7d{word-spacing:1.749333pt;}
.ws2e{word-spacing:1.812800pt;}
.ws33{word-spacing:1.834667pt;}
.ws25{word-spacing:1.840725pt;}
.wsd3{word-spacing:1.920000pt;}
.ws45{word-spacing:1.922667pt;}
.ws2c{word-spacing:1.977600pt;}
.ws78{word-spacing:2.005333pt;}
.ws28{word-spacing:2.090667pt;}
.ws48{word-spacing:2.142400pt;}
.ws11{word-spacing:2.197333pt;}
.wsc5{word-spacing:2.218667pt;}
.wsdf{word-spacing:2.304000pt;}
.ws62{word-spacing:2.389333pt;}
.ws91{word-spacing:2.517333pt;}
.ws98{word-spacing:2.581867pt;}
.ws9e{word-spacing:2.602667pt;}
.wse6{word-spacing:2.691733pt;}
.wsa7{word-spacing:2.746667pt;}
.ws54{word-spacing:2.801600pt;}
.ws61{word-spacing:2.816000pt;}
.ws13{word-spacing:2.856533pt;}
.wsc9{word-spacing:2.911467pt;}
.ws85{word-spacing:2.966400pt;}
.wsc4{word-spacing:2.986667pt;}
.ws5c{word-spacing:3.021333pt;}
.ws27{word-spacing:3.072000pt;}
.ws15{word-spacing:3.076267pt;}
.wsc0{word-spacing:3.114667pt;}
.ws6c{word-spacing:3.120000pt;}
.ws26{word-spacing:3.157333pt;}
.wsae{word-spacing:3.186133pt;}
.wsdb{word-spacing:3.296000pt;}
.ws7e{word-spacing:3.328000pt;}
.wsb3{word-spacing:3.350933pt;}
.wsea{word-spacing:3.456000pt;}
.ws70{word-spacing:3.515733pt;}
.ws7{word-spacing:3.520000pt;}
.ws1e{word-spacing:3.541333pt;}
.ws49{word-spacing:3.570667pt;}
.wsbd{word-spacing:3.625600pt;}
.ws8a{word-spacing:3.680533pt;}
.ws8d{word-spacing:3.735467pt;}
.ws64{word-spacing:3.756075pt;}
.ws8{word-spacing:3.786667pt;}
.ws6b{word-spacing:3.840000pt;}
.wsa9{word-spacing:3.845333pt;}
.ws4e{word-spacing:3.882667pt;}
.ws41{word-spacing:3.900267pt;}
.ws7f{word-spacing:3.925333pt;}
.ws71{word-spacing:3.955200pt;}
.wsf5{word-spacing:4.065067pt;}
.ws32{word-spacing:4.096000pt;}
.wscd{word-spacing:4.174933pt;}
.wsa4{word-spacing:4.229867pt;}
.wsb5{word-spacing:4.284800pt;}
.ws90{word-spacing:4.309333pt;}
.ws3f{word-spacing:4.339733pt;}
.ws95{word-spacing:4.394667pt;}
.ws59{word-spacing:4.504533pt;}
.wsc1{word-spacing:4.693333pt;}
.wsdc{word-spacing:4.724267pt;}
.ws8b{word-spacing:4.779200pt;}
.ws24{word-spacing:4.821333pt;}
.ws88{word-spacing:4.834133pt;}
.ws10c{word-spacing:4.889067pt;}
.ws21{word-spacing:5.034667pt;}
.ws16{word-spacing:5.053867pt;}
.ws38{word-spacing:5.205333pt;}
.wsb0{word-spacing:5.218667pt;}
.ws76{word-spacing:5.248000pt;}
.ws53{word-spacing:5.273600pt;}
.ws37{word-spacing:5.290667pt;}
.ws82{word-spacing:5.418667pt;}
.ws40{word-spacing:5.438400pt;}
.wsce{word-spacing:5.493333pt;}
.wsd5{word-spacing:5.504000pt;}
.wsa3{word-spacing:5.548267pt;}
.ws4a{word-spacing:5.603200pt;}
.ws4c{word-spacing:5.713067pt;}
.ws92{word-spacing:5.760000pt;}
.wsf8{word-spacing:5.768000pt;}
.ws4d{word-spacing:5.802667pt;}
.wsf6{word-spacing:5.877867pt;}
.ws9b{word-spacing:6.097600pt;}
.ws6d{word-spacing:6.207467pt;}
.wsde{word-spacing:6.218667pt;}
.ws65{word-spacing:6.442667pt;}
.ws9f{word-spacing:6.485333pt;}
.wse9{word-spacing:6.537067pt;}
.ws112{word-spacing:6.592000pt;}
.ws107{word-spacing:6.646933pt;}
.wsa8{word-spacing:6.756800pt;}
.ws8f{word-spacing:6.811733pt;}
.ws108{word-spacing:6.976533pt;}
.ws3a{word-spacing:6.997333pt;}
.ws12{word-spacing:7.031467pt;}
.ws30{word-spacing:7.086400pt;}
.wsad{word-spacing:7.141333pt;}
.wsfc{word-spacing:7.251200pt;}
.ws34{word-spacing:7.253333pt;}
.wse5{word-spacing:7.306133pt;}
.ws6e{word-spacing:7.525867pt;}
.wsa2{word-spacing:7.594667pt;}
.wse0{word-spacing:7.722667pt;}
.ws11e{word-spacing:7.745600pt;}
.ws46{word-spacing:7.776000pt;}
.wsab{word-spacing:7.800533pt;}
.ws102{word-spacing:7.855467pt;}
.wsb8{word-spacing:7.920000pt;}
.ws20{word-spacing:7.936000pt;}
.ws42{word-spacing:8.020267pt;}
.ws66{word-spacing:8.021333pt;}
.ws8e{word-spacing:8.130133pt;}
.ws72{word-spacing:8.240000pt;}
.ws125{word-spacing:8.294933pt;}
.ws5d{word-spacing:8.362667pt;}
.ws75{word-spacing:8.490667pt;}
.wsf3{word-spacing:8.514667pt;}
.ws39{word-spacing:8.533333pt;}
.ws8c{word-spacing:8.679467pt;}
.ws68{word-spacing:8.844267pt;}
.wse1{word-spacing:8.874667pt;}
.ws87{word-spacing:8.899200pt;}
.ws77{word-spacing:8.917333pt;}
.wsbc{word-spacing:9.009067pt;}
.ws11a{word-spacing:9.338667pt;}
.wsd9{word-spacing:9.744000pt;}
.wsb6{word-spacing:9.840000pt;}
.ws10f{word-spacing:9.936000pt;}
.ws6f{word-spacing:9.942933pt;}
.wse4{word-spacing:10.052800pt;}
.ws97{word-spacing:10.107733pt;}
.wsfb{word-spacing:10.162667pt;}
.ws6{word-spacing:10.293333pt;}
.ws69{word-spacing:10.602133pt;}
.ws99{word-spacing:10.657067pt;}
.wsaf{word-spacing:10.876800pt;}
.ws55{word-spacing:10.931733pt;}
.wsf7{word-spacing:10.986667pt;}
.ws1d{word-spacing:11.136000pt;}
.ws110{word-spacing:11.280000pt;}
.ws5a{word-spacing:11.865600pt;}
.ws47{word-spacing:12.085333pt;}
.ws109{word-spacing:12.360000pt;}
.ws86{word-spacing:12.634667pt;}
.ws56{word-spacing:12.799467pt;}
.wsf2{word-spacing:13.129067pt;}
.ws121{word-spacing:13.238933pt;}
.ws127{word-spacing:13.458667pt;}
.wsaa{word-spacing:13.733333pt;}
.ws115{word-spacing:13.898133pt;}
.ws124{word-spacing:14.227733pt;}
.wsf1{word-spacing:14.722133pt;}
.wsdd{word-spacing:15.051733pt;}
.ws114{word-spacing:15.656000pt;}
.ws117{word-spacing:15.765867pt;}
.wsb1{word-spacing:16.919467pt;}
.wsfd{word-spacing:17.468800pt;}
.ws118{word-spacing:17.688533pt;}
.ws122{word-spacing:24.555200pt;}
.ws116{word-spacing:28.070933pt;}
.ws123{word-spacing:39.497067pt;}
.ws9{word-spacing:46.583467pt;}
.wse{word-spacing:549.906667pt;}
._16{margin-left:-23.786133pt;}
._17{margin-left:-15.051733pt;}
._15{margin-left:-6.681120pt;}
._2{margin-left:-5.462400pt;}
._13{margin-left:-4.530987pt;}
._7{margin-left:-3.565173pt;}
._5{margin-left:-2.269867pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.950400pt;}
._4{width:1.958400pt;}
._6{width:2.935467pt;}
._d{width:3.891200pt;}
._3{width:4.794667pt;}
._8{width:5.862400pt;}
._f{width:6.794507pt;}
._b{width:7.686933pt;}
._9{width:8.734400pt;}
._c{width:9.757867pt;}
._e{width:10.774933pt;}
._a{width:11.898133pt;}
._10{width:12.822293pt;}
._12{width:13.967147pt;}
._14{width:15.234453pt;}
._18{width:16.615893pt;}
._11{width:18.292800pt;}
._1c{width:19.975947pt;}
._1b{width:20.963680pt;}
._19{width:25.082560pt;}
._1a{width:28.273653pt;}
._1e{width:29.242133pt;}
._1d{width:39.431360pt;}
.fs8{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y1f{bottom:68.000000pt;}
.yab{bottom:68.000133pt;}
.y78{bottom:71.552000pt;}
.yce{bottom:71.552133pt;}
.y1e{bottom:80.000000pt;}
.yaa{bottom:80.000133pt;}
.y77{bottom:83.552000pt;}
.y149{bottom:83.552133pt;}
.y1d{bottom:92.000000pt;}
.ycd{bottom:92.000133pt;}
.y7b{bottom:95.552000pt;}
.ya9{bottom:95.552133pt;}
.y17c{bottom:98.823200pt;}
.y1c{bottom:104.000000pt;}
.ya8{bottom:104.000133pt;}
.y67{bottom:107.552000pt;}
.ycc{bottom:107.552133pt;}
.y17b{bottom:115.225867pt;}
.yeb{bottom:115.303200pt;}
.y1b{bottom:116.000000pt;}
.ya7{bottom:116.000133pt;}
.y7a{bottom:119.552000pt;}
.ycb{bottom:119.552133pt;}
.y1a{bottom:128.000000pt;}
.ya6{bottom:128.000133pt;}
.y46{bottom:131.552000pt;}
.yca{bottom:131.552133pt;}
.y17a{bottom:131.705867pt;}
.y148{bottom:131.769867pt;}
.yea{bottom:131.783200pt;}
.y19{bottom:140.000000pt;}
.ya5{bottom:140.000133pt;}
.y76{bottom:143.552000pt;}
.y179{bottom:148.185867pt;}
.y147{bottom:148.249867pt;}
.ye9{bottom:148.263200pt;}
.y45{bottom:152.000000pt;}
.ya4{bottom:152.000133pt;}
.y18{bottom:155.552000pt;}
.yc9{bottom:155.552133pt;}
.y44{bottom:164.000000pt;}
.ya3{bottom:164.000133pt;}
.y178{bottom:164.665867pt;}
.y146{bottom:164.729867pt;}
.ye8{bottom:164.743200pt;}
.y140{bottom:167.552000pt;}
.yc8{bottom:167.552133pt;}
.y75{bottom:173.543200pt;}
.y43{bottom:176.000000pt;}
.ya2{bottom:176.000133pt;}
.y66{bottom:179.552000pt;}
.y177{bottom:181.145867pt;}
.y145{bottom:181.209867pt;}
.ye7{bottom:181.223200pt;}
.y13f{bottom:187.943200pt;}
.y42{bottom:188.000000pt;}
.ya1{bottom:188.000133pt;}
.y74{bottom:190.023200pt;}
.yde{bottom:191.552000pt;}
.yc7{bottom:191.552133pt;}
.y176{bottom:197.625867pt;}
.y144{bottom:197.689867pt;}
.ye6{bottom:197.703200pt;}
.y41{bottom:200.000000pt;}
.ya0{bottom:200.000133pt;}
.y13e{bottom:204.423200pt;}
.y11d{bottom:204.903200pt;}
.y73{bottom:206.503200pt;}
.y156{bottom:208.103200pt;}
.y40{bottom:212.000000pt;}
.y9f{bottom:212.000133pt;}
.y17{bottom:212.085200pt;}
.y175{bottom:214.105867pt;}
.y143{bottom:214.169867pt;}
.ye5{bottom:214.183200pt;}
.y65{bottom:215.552000pt;}
.y13d{bottom:220.903200pt;}
.y11c{bottom:221.383200pt;}
.y72{bottom:222.983200pt;}
.y3f{bottom:224.000000pt;}
.y9e{bottom:224.000133pt;}
.yc6{bottom:227.552133pt;}
.y16{bottom:228.565200pt;}
.y174{bottom:230.585867pt;}
.y142{bottom:230.649867pt;}
.ye4{bottom:230.663200pt;}
.y3e{bottom:236.000000pt;}
.y13c{bottom:237.383200pt;}
.y11b{bottom:237.863200pt;}
.y71{bottom:239.463200pt;}
.y104{bottom:239.552000pt;}
.y9d{bottom:239.552133pt;}
.y155{bottom:241.063200pt;}
.y173{bottom:247.065867pt;}
.y141{bottom:247.129867pt;}
.ye3{bottom:247.143200pt;}
.y3d{bottom:248.000000pt;}
.y9c{bottom:248.000133pt;}
.y137{bottom:251.552000pt;}
.y13b{bottom:253.863200pt;}
.y11a{bottom:254.343200pt;}
.y70{bottom:255.943200pt;}
.y154{bottom:257.543200pt;}
.y64{bottom:260.000000pt;}
.y9b{bottom:260.000133pt;}
.y15{bottom:261.045200pt;}
.y172{bottom:263.545867pt;}
.y3c{bottom:263.552000pt;}
.yc5{bottom:263.609867pt;}
.ye2{bottom:263.623200pt;}
.y119{bottom:270.823200pt;}
.y3b{bottom:272.000000pt;}
.y9a{bottom:272.000133pt;}
.y6f{bottom:272.423200pt;}
.y153{bottom:274.023200pt;}
.y63{bottom:275.552000pt;}
.y14{bottom:277.045200pt;}
.y171{bottom:280.025867pt;}
.yc4{bottom:280.089867pt;}
.ye1{bottom:280.103200pt;}
.y3a{bottom:284.000000pt;}
.y13a{bottom:286.343200pt;}
.y118{bottom:287.303200pt;}
.y99{bottom:287.552133pt;}
.y6e{bottom:288.903200pt;}
.y152{bottom:290.503200pt;}
.y13{bottom:293.045200pt;}
.y39{bottom:296.000000pt;}
.y98{bottom:296.000133pt;}
.y170{bottom:296.505867pt;}
.yc3{bottom:296.569867pt;}
.ye0{bottom:296.583200pt;}
.y103{bottom:299.303200pt;}
.y139{bottom:300.743200pt;}
.ydd{bottom:303.303200pt;}
.y117{bottom:303.783200pt;}
.y6d{bottom:305.383200pt;}
.y151{bottom:306.983200pt;}
.y38{bottom:308.000000pt;}
.y97{bottom:308.000133pt;}
.y12{bottom:309.045200pt;}
.y136{bottom:311.552000pt;}
.y16f{bottom:312.985867pt;}
.yc2{bottom:313.049867pt;}
.ydf{bottom:313.063200pt;}
.y102{bottom:313.703200pt;}
.y138{bottom:315.143200pt;}
.ydc{bottom:319.783200pt;}
.y37{bottom:320.000000pt;}
.y96{bottom:320.000133pt;}
.y116{bottom:320.263200pt;}
.y6c{bottom:321.863200pt;}
.y150{bottom:323.463200pt;}
.y79{bottom:323.552000pt;}
.y11{bottom:325.045200pt;}
.y101{bottom:328.103200pt;}
.y16e{bottom:329.465867pt;}
.yc1{bottom:329.529867pt;}
.y62{bottom:329.543200pt;}
.y95{bottom:332.000133pt;}
.y36{bottom:335.552000pt;}
.ydb{bottom:336.263200pt;}
.y115{bottom:336.743200pt;}
.y14f{bottom:339.943200pt;}
.y10{bottom:341.045200pt;}
.y100{bottom:342.503200pt;}
.y35{bottom:344.000000pt;}
.y94{bottom:344.000133pt;}
.y16d{bottom:345.945867pt;}
.yc0{bottom:346.009867pt;}
.y61{bottom:346.023200pt;}
.yda{bottom:352.743200pt;}
.y114{bottom:353.223200pt;}
.y135{bottom:353.945067pt;}
.y6b{bottom:354.343200pt;}
.y14e{bottom:356.423200pt;}
.yf{bottom:357.045200pt;}
.y34{bottom:359.552000pt;}
.y93{bottom:359.552133pt;}
.y16c{bottom:362.425867pt;}
.ybf{bottom:362.489867pt;}
.y60{bottom:362.503200pt;}
.y92{bottom:368.000133pt;}
.y6a{bottom:368.743200pt;}
.yd9{bottom:369.223200pt;}
.y113{bottom:369.703200pt;}
.y134{bottom:370.425067pt;}
.yff{bottom:372.903200pt;}
.y16b{bottom:378.905867pt;}
.ybe{bottom:378.969867pt;}
.y5f{bottom:378.983200pt;}
.ye{bottom:379.711867pt;}
.y91{bottom:380.000133pt;}
.y69{bottom:383.143200pt;}
.yd8{bottom:385.703200pt;}
.y112{bottom:386.183200pt;}
.y133{bottom:386.905067pt;}
.y33{bottom:388.719200pt;}
.yfe{bottom:389.383200pt;}
.y16a{bottom:395.385867pt;}
.ybd{bottom:395.449867pt;}
.y5e{bottom:395.463200pt;}
.y90{bottom:395.552133pt;}
.y68{bottom:397.543200pt;}
.yd7{bottom:402.183200pt;}
.y111{bottom:402.663200pt;}
.y132{bottom:403.385067pt;}
.y8f{bottom:404.000133pt;}
.y32{bottom:405.199200pt;}
.yfd{bottom:405.863200pt;}
.y169{bottom:411.865867pt;}
.ybc{bottom:411.929867pt;}
.y5d{bottom:411.943200pt;}
.y8e{bottom:416.000133pt;}
.yd6{bottom:418.663200pt;}
.y110{bottom:419.143200pt;}
.y131{bottom:419.865067pt;}
.y31{bottom:421.679200pt;}
.yfc{bottom:422.343200pt;}
.y8d{bottom:428.000133pt;}
.y168{bottom:428.345867pt;}
.ybb{bottom:428.409867pt;}
.y5c{bottom:428.423200pt;}
.yd{bottom:431.978533pt;}
.yd5{bottom:435.143200pt;}
.y10f{bottom:435.623200pt;}
.y130{bottom:436.345067pt;}
.y30{bottom:438.159200pt;}
.yfb{bottom:438.823200pt;}
.y8c{bottom:443.552133pt;}
.y167{bottom:444.825867pt;}
.yba{bottom:444.889867pt;}
.y5b{bottom:444.903200pt;}
.yc{bottom:451.178533pt;}
.yd4{bottom:451.623200pt;}
.y10e{bottom:452.103200pt;}
.y12f{bottom:452.825067pt;}
.y2f{bottom:454.639200pt;}
.yfa{bottom:455.303200pt;}
.y166{bottom:461.305867pt;}
.yb9{bottom:461.369867pt;}
.y5a{bottom:461.383200pt;}
.yd3{bottom:468.103200pt;}
.y10d{bottom:468.583200pt;}
.y12e{bottom:469.305067pt;}
.y8b{bottom:469.689867pt;}
.y14d{bottom:469.703200pt;}
.y2e{bottom:471.119200pt;}
.yf9{bottom:471.783200pt;}
.y165{bottom:477.785867pt;}
.yb8{bottom:477.849867pt;}
.y59{bottom:477.863200pt;}
.yb{bottom:482.911867pt;}
.y14c{bottom:484.103200pt;}
.yd2{bottom:484.583200pt;}
.y10c{bottom:485.063200pt;}
.y12d{bottom:485.785067pt;}
.y8a{bottom:486.169867pt;}
.y2d{bottom:487.599200pt;}
.yf8{bottom:488.263200pt;}
.y164{bottom:494.265867pt;}
.yb7{bottom:494.329867pt;}
.y58{bottom:494.343200pt;}
.y14b{bottom:498.503200pt;}
.y10b{bottom:501.543200pt;}
.y12c{bottom:502.265067pt;}
.y89{bottom:502.649867pt;}
.y2c{bottom:504.079200pt;}
.ya{bottom:504.291333pt;}
.yf7{bottom:504.743200pt;}
.y163{bottom:510.745867pt;}
.yb6{bottom:510.809867pt;}
.y57{bottom:510.823200pt;}
.y14a{bottom:512.903200pt;}
.yd1{bottom:517.063200pt;}
.y10a{bottom:518.023200pt;}
.y12b{bottom:518.745067pt;}
.y88{bottom:519.129867pt;}
.y2b{bottom:520.559200pt;}
.yf6{bottom:521.223200pt;}
.y162{bottom:527.225867pt;}
.yb5{bottom:527.289867pt;}
.y56{bottom:527.303200pt;}
.y9{bottom:528.024800pt;}
.yd0{bottom:531.463200pt;}
.y109{bottom:534.503200pt;}
.y12a{bottom:535.225067pt;}
.y87{bottom:535.609867pt;}
.y2a{bottom:537.039200pt;}
.yf5{bottom:537.703200pt;}
.y161{bottom:543.705867pt;}
.yb4{bottom:543.769867pt;}
.y55{bottom:543.783200pt;}
.ycf{bottom:545.863200pt;}
.y108{bottom:550.983200pt;}
.y129{bottom:551.705067pt;}
.y86{bottom:552.089867pt;}
.y29{bottom:553.519067pt;}
.yf4{bottom:554.183200pt;}
.y160{bottom:560.185733pt;}
.yb3{bottom:560.249867pt;}
.y54{bottom:560.263200pt;}
.y128{bottom:568.185067pt;}
.y85{bottom:568.569867pt;}
.yf3{bottom:570.663200pt;}
.y15f{bottom:576.665867pt;}
.yb2{bottom:576.729867pt;}
.y53{bottom:576.743200pt;}
.y8{bottom:582.424667pt;}
.y107{bottom:583.463200pt;}
.y127{bottom:584.665067pt;}
.y84{bottom:585.049867pt;}
.yf2{bottom:587.143200pt;}
.y15e{bottom:593.145867pt;}
.yb1{bottom:593.209867pt;}
.y52{bottom:593.223200pt;}
.y106{bottom:597.863200pt;}
.y126{bottom:601.145067pt;}
.y28{bottom:602.959200pt;}
.yf1{bottom:603.623200pt;}
.y7{bottom:606.424667pt;}
.y15d{bottom:609.625867pt;}
.yb0{bottom:609.689867pt;}
.y51{bottom:609.703200pt;}
.y105{bottom:612.263200pt;}
.y125{bottom:617.625067pt;}
.y83{bottom:618.009867pt;}
.y15c{bottom:626.105867pt;}
.yaf{bottom:626.169867pt;}
.y50{bottom:626.183200pt;}
.y6{bottom:630.424667pt;}
.y82{bottom:632.409867pt;}
.y124{bottom:634.105067pt;}
.y27{bottom:635.919200pt;}
.yf0{bottom:636.583200pt;}
.y15b{bottom:642.585867pt;}
.yae{bottom:642.649867pt;}
.y4f{bottom:642.663200pt;}
.y81{bottom:646.809867pt;}
.y123{bottom:650.585067pt;}
.yef{bottom:650.983200pt;}
.y26{bottom:652.399200pt;}
.y15a{bottom:659.065867pt;}
.yad{bottom:659.129867pt;}
.y4e{bottom:659.143200pt;}
.y80{bottom:661.209867pt;}
.yee{bottom:665.383200pt;}
.y122{bottom:667.065067pt;}
.y25{bottom:668.879200pt;}
.y159{bottom:675.545867pt;}
.yac{bottom:675.609867pt;}
.y4d{bottom:675.623200pt;}
.yed{bottom:679.783200pt;}
.y24{bottom:685.359067pt;}
.y5{bottom:686.424667pt;}
.y158{bottom:692.025733pt;}
.y7f{bottom:692.089867pt;}
.y4c{bottom:692.103200pt;}
.yec{bottom:694.183200pt;}
.y121{bottom:699.545067pt;}
.y23{bottom:701.839200pt;}
.y157{bottom:708.505867pt;}
.y7e{bottom:708.569867pt;}
.y4b{bottom:708.583200pt;}
.y4{bottom:710.424667pt;}
.y120{bottom:713.945067pt;}
.y22{bottom:718.319200pt;}
.y7d{bottom:725.049867pt;}
.y4a{bottom:725.063200pt;}
.y11f{bottom:728.345067pt;}
.y3{bottom:734.424667pt;}
.y21{bottom:741.465867pt;}
.y7c{bottom:741.529733pt;}
.y49{bottom:741.543200pt;}
.y11e{bottom:742.745067pt;}
.y48{bottom:794.196000pt;}
.y47{bottom:804.862667pt;}
.y20{bottom:805.800133pt;}
.hb{height:23.229500pt;}
.hf{height:23.333667pt;}
.h3{height:32.757812pt;}
.h2{height:32.848958pt;}
.hc{height:37.437500pt;}
.hd{height:37.541667pt;}
.h8{height:39.645833pt;}
.h12{height:40.161458pt;}
.h7{height:42.117188pt;}
.h11{height:42.234375pt;}
.h9{height:46.796875pt;}
.h10{height:46.927083pt;}
.ha{height:48.200781pt;}
.he{height:48.334896pt;}
.h6{height:51.476562pt;}
.h5{height:65.515625pt;}
.h4{height:84.234375pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x8{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.x3{left:94.811600pt;}
.xa{left:125.533333pt;}
.xb{left:173.446800pt;}
.x9{left:481.086533pt;}
}




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