
    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_a615dd6d8c6b7dbe32996664.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bba9d4925b232ee7768c5310.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_aaa256bf975ae1021986caaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_96a9254a4d32e4da69232cb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_fbf9d211e57e3b716dcb7b2b.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_297aebca806c8cbad8c2561c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_96a9254a4d32e4da69232cb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_8b156e036922dea3390973d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_e923a5ccc2c5a8d501281b0b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_efa6b15c9a75072da413cc48.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_12e9c18a860ffa79e954698b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104004;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_96a9254a4d32e4da69232cb2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.989000;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.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.ls1{letter-spacing:-81.000000px;}
.ls6{letter-spacing:-4.140000px;}
.ls9{letter-spacing:-3.552000px;}
.lsc{letter-spacing:-2.109000px;}
.lsb{letter-spacing:-1.998000px;}
.ls8{letter-spacing:-1.229547px;}
.lsf{letter-spacing:-0.570000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000300px;}
.lse{letter-spacing:0.332310px;}
.lsa{letter-spacing:0.448000px;}
.lsd{letter-spacing:0.570000px;}
.ls0{letter-spacing:0.660000px;}
.ls3{letter-spacing:0.780000px;}
.ls10{letter-spacing:1.425000px;}
.ls5{letter-spacing:4.441200px;}
.ls7{letter-spacing:30.750000px;}
.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;}
}
.ws155{word-spacing:-15.675000px;}
.ws10f{word-spacing:-14.820000px;}
.wsc{word-spacing:-14.250000px;}
.ws120{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.500000px;}
.ws4d{word-spacing:-13.344000px;}
.ws10e{word-spacing:-12.141000px;}
.wsbe{word-spacing:-11.502000px;}
.ws110{word-spacing:-8.640060px;}
.wsd{word-spacing:-8.307750px;}
.ws7d{word-spacing:-7.078203px;}
.ws127{word-spacing:-3.648000px;}
.ws104{word-spacing:-3.192000px;}
.ws16a{word-spacing:-3.135000px;}
.ws16f{word-spacing:-3.078000px;}
.ws118{word-spacing:-3.021000px;}
.ws134{word-spacing:-2.928000px;}
.ws66{word-spacing:-2.793000px;}
.wscb{word-spacing:-2.679000px;}
.ws7c{word-spacing:-2.640000px;}
.ws49{word-spacing:-2.622000px;}
.wsee{word-spacing:-2.592000px;}
.ws138{word-spacing:-2.565000px;}
.ws8{word-spacing:-2.538000px;}
.ws105{word-spacing:-2.508000px;}
.wsf2{word-spacing:-2.400000px;}
.ws3f{word-spacing:-2.394000px;}
.ws5a{word-spacing:-2.337000px;}
.ws36{word-spacing:-2.280000px;}
.ws97{word-spacing:-2.256000px;}
.ws89{word-spacing:-2.223000px;}
.ws79{word-spacing:-2.208000px;}
.ws34{word-spacing:-2.166000px;}
.ws5e{word-spacing:-2.109000px;}
.ws91{word-spacing:-2.052000px;}
.ws6{word-spacing:-1.998000px;}
.ws29{word-spacing:-1.995000px;}
.wsd5{word-spacing:-1.968000px;}
.ws159{word-spacing:-1.938000px;}
.ws53{word-spacing:-1.881000px;}
.ws3c{word-spacing:-1.824000px;}
.wsbc{word-spacing:-1.776000px;}
.ws4c{word-spacing:-1.767000px;}
.ws144{word-spacing:-1.710000px;}
.ws9c{word-spacing:-1.680000px;}
.ws1e{word-spacing:-1.653000px;}
.ws46{word-spacing:-1.596000px;}
.wse7{word-spacing:-1.539000px;}
.wsd4{word-spacing:-1.536000px;}
.ws86{word-spacing:-1.482000px;}
.ws76{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.425000px;}
.wsae{word-spacing:-1.311000px;}
.wsf8{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.254000px;}
.ws147{word-spacing:-1.248000px;}
.ws7f{word-spacing:-1.197000px;}
.ws13{word-spacing:-1.140000px;}
.ws12a{word-spacing:-1.104000px;}
.ws65{word-spacing:-1.083000px;}
.ws145{word-spacing:-1.056000px;}
.ws40{word-spacing:-1.026000px;}
.ws3{word-spacing:-0.972000px;}
.wsfe{word-spacing:-0.969000px;}
.wsb1{word-spacing:-0.960000px;}
.ws3e{word-spacing:-0.912000px;}
.ws33{word-spacing:-0.855000px;}
.ws12c{word-spacing:-0.816000px;}
.ws2b{word-spacing:-0.798000px;}
.ws30{word-spacing:-0.741000px;}
.ws82{word-spacing:-0.684000px;}
.ws9e{word-spacing:-0.672000px;}
.ws1a{word-spacing:-0.627000px;}
.ws74{word-spacing:-0.624000px;}
.ws77{word-spacing:-0.576000px;}
.wsc0{word-spacing:-0.570000px;}
.wsd0{word-spacing:-0.528000px;}
.wse5{word-spacing:-0.513000px;}
.ws153{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.456000px;}
.ws44{word-spacing:-0.399000px;}
.ws9d{word-spacing:-0.384000px;}
.ws132{word-spacing:-0.342000px;}
.ws12b{word-spacing:-0.336000px;}
.ws135{word-spacing:-0.288000px;}
.wsca{word-spacing:-0.285000px;}
.wsd2{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.228000px;}
.ws146{word-spacing:-0.192000px;}
.ws19{word-spacing:-0.171000px;}
.ws12{word-spacing:-0.144000px;}
.wsde{word-spacing:-0.114000px;}
.ws18{word-spacing:-0.057000px;}
.ws136{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws151{word-spacing:0.057000px;}
.ws7a{word-spacing:0.096000px;}
.ws5{word-spacing:0.108000px;}
.wsc3{word-spacing:0.114000px;}
.wsd3{word-spacing:0.144000px;}
.ws7{word-spacing:0.162000px;}
.ws43{word-spacing:0.171000px;}
.wsc8{word-spacing:0.228000px;}
.ws2e{word-spacing:0.285000px;}
.wsb5{word-spacing:0.288000px;}
.wsda{word-spacing:0.336000px;}
.ws26{word-spacing:0.342000px;}
.wsef{word-spacing:0.384000px;}
.wsaa{word-spacing:0.399000px;}
.ws11c{word-spacing:0.456000px;}
.wsb6{word-spacing:0.480000px;}
.ws4e{word-spacing:0.513000px;}
.ws11{word-spacing:0.528000px;}
.ws51{word-spacing:0.570000px;}
.ws78{word-spacing:0.576000px;}
.ws31{word-spacing:0.627000px;}
.ws99{word-spacing:0.672000px;}
.ws124{word-spacing:0.684000px;}
.ws73{word-spacing:0.720000px;}
.ws83{word-spacing:0.741000px;}
.wsf5{word-spacing:0.768000px;}
.ws111{word-spacing:0.798000px;}
.wsbf{word-spacing:0.855000px;}
.ws9b{word-spacing:0.864000px;}
.ws41{word-spacing:0.912000px;}
.wsd7{word-spacing:0.960000px;}
.ws2c{word-spacing:0.969000px;}
.wsa0{word-spacing:1.008000px;}
.ws92{word-spacing:1.026000px;}
.ws10b{word-spacing:1.056000px;}
.ws108{word-spacing:1.083000px;}
.wsba{word-spacing:1.104000px;}
.ws8b{word-spacing:1.140000px;}
.ws94{word-spacing:1.197000px;}
.wsa1{word-spacing:1.248000px;}
.ws93{word-spacing:1.254000px;}
.wsa{word-spacing:1.296000px;}
.ws102{word-spacing:1.311000px;}
.wsd8{word-spacing:1.344000px;}
.ws141{word-spacing:1.368000px;}
.ws96{word-spacing:1.392000px;}
.ws60{word-spacing:1.425000px;}
.wsb4{word-spacing:1.440000px;}
.wse3{word-spacing:1.482000px;}
.wsbd{word-spacing:1.488000px;}
.ws154{word-spacing:1.536000px;}
.ws32{word-spacing:1.539000px;}
.ws133{word-spacing:1.596000px;}
.wsb{word-spacing:1.620000px;}
.wsa5{word-spacing:1.710000px;}
.ws98{word-spacing:1.728000px;}
.ws23{word-spacing:1.767000px;}
.ws10c{word-spacing:1.776000px;}
.ws2f{word-spacing:1.824000px;}
.ws5f{word-spacing:1.881000px;}
.ws4{word-spacing:1.890000px;}
.wsc1{word-spacing:1.938000px;}
.ws24{word-spacing:1.995000px;}
.ws11f{word-spacing:2.016000px;}
.ws52{word-spacing:2.052000px;}
.wsdb{word-spacing:2.109000px;}
.wsf0{word-spacing:2.112000px;}
.ws1d{word-spacing:2.166000px;}
.wsf6{word-spacing:2.208000px;}
.ws57{word-spacing:2.223000px;}
.ws137{word-spacing:2.280000px;}
.ws47{word-spacing:2.337000px;}
.ws6e{word-spacing:2.394000px;}
.wsd6{word-spacing:2.448000px;}
.ws45{word-spacing:2.451000px;}
.ws7e{word-spacing:2.508000px;}
.wsf3{word-spacing:2.544000px;}
.ws80{word-spacing:2.565000px;}
.wscc{word-spacing:2.622000px;}
.ws10d{word-spacing:2.640000px;}
.ws112{word-spacing:2.679000px;}
.ws4a{word-spacing:2.736000px;}
.wsed{word-spacing:2.793000px;}
.ws9{word-spacing:2.808000px;}
.ws75{word-spacing:2.832000px;}
.ws143{word-spacing:2.850000px;}
.wsf1{word-spacing:2.880000px;}
.ws22{word-spacing:2.907000px;}
.wsb9{word-spacing:2.928000px;}
.ws6d{word-spacing:2.964000px;}
.ws150{word-spacing:3.021000px;}
.wsf7{word-spacing:3.024000px;}
.wse9{word-spacing:3.078000px;}
.ws9a{word-spacing:3.120000px;}
.ws15{word-spacing:3.135000px;}
.wsfa{word-spacing:3.249000px;}
.ws14b{word-spacing:3.264000px;}
.ws88{word-spacing:3.306000px;}
.wsf{word-spacing:3.312000px;}
.ws28{word-spacing:3.363000px;}
.wsf4{word-spacing:3.408000px;}
.wse1{word-spacing:3.420000px;}
.ws11e{word-spacing:3.456000px;}
.ws100{word-spacing:3.477000px;}
.wsc6{word-spacing:3.534000px;}
.wse{word-spacing:3.552000px;}
.ws59{word-spacing:3.591000px;}
.ws17{word-spacing:3.648000px;}
.ws9f{word-spacing:3.696000px;}
.wse6{word-spacing:3.705000px;}
.ws106{word-spacing:3.762000px;}
.wsff{word-spacing:3.819000px;}
.ws139{word-spacing:3.876000px;}
.wsd1{word-spacing:3.888000px;}
.ws54{word-spacing:3.933000px;}
.ws101{word-spacing:3.990000px;}
.wsb8{word-spacing:4.032000px;}
.ws109{word-spacing:4.047000px;}
.wsce{word-spacing:4.104000px;}
.wsdc{word-spacing:4.161000px;}
.ws11a{word-spacing:4.218000px;}
.wsd9{word-spacing:4.224000px;}
.wscf{word-spacing:4.272000px;}
.ws1f{word-spacing:4.275000px;}
.ws3b{word-spacing:4.332000px;}
.ws107{word-spacing:4.389000px;}
.ws2a{word-spacing:4.446000px;}
.ws2d{word-spacing:4.503000px;}
.wsb7{word-spacing:4.512000px;}
.ws128{word-spacing:4.560000px;}
.ws126{word-spacing:4.617000px;}
.ws16{word-spacing:4.674000px;}
.ws37{word-spacing:4.731000px;}
.ws6a{word-spacing:4.845000px;}
.ws63{word-spacing:4.902000px;}
.wsbb{word-spacing:4.944000px;}
.ws13f{word-spacing:4.959000px;}
.wsa7{word-spacing:5.016000px;}
.ws62{word-spacing:5.073000px;}
.ws8c{word-spacing:5.130000px;}
.ws122{word-spacing:5.187000px;}
.wsa3{word-spacing:5.244000px;}
.ws10{word-spacing:5.280000px;}
.ws72{word-spacing:5.301000px;}
.ws21{word-spacing:5.358000px;}
.ws121{word-spacing:5.415000px;}
.ws8e{word-spacing:5.472000px;}
.wsb3{word-spacing:5.520000px;}
.ws56{word-spacing:5.529000px;}
.wsc9{word-spacing:5.586000px;}
.ws67{word-spacing:5.643000px;}
.ws116{word-spacing:5.700000px;}
.wsc7{word-spacing:5.757000px;}
.ws119{word-spacing:5.814000px;}
.ws140{word-spacing:5.871000px;}
.ws1b{word-spacing:5.928000px;}
.ws8a{word-spacing:5.985000px;}
.ws7b{word-spacing:6.000000px;}
.wsc2{word-spacing:6.042000px;}
.ws42{word-spacing:6.099000px;}
.ws81{word-spacing:6.156000px;}
.ws130{word-spacing:6.213000px;}
.wscd{word-spacing:6.270000px;}
.ws5d{word-spacing:6.327000px;}
.wseb{word-spacing:6.384000px;}
.ws90{word-spacing:6.441000px;}
.ws20{word-spacing:6.498000px;}
.ws8f{word-spacing:6.555000px;}
.ws71{word-spacing:6.612000px;}
.ws5b{word-spacing:6.669000px;}
.ws3a{word-spacing:6.726000px;}
.ws103{word-spacing:6.840000px;}
.ws165{word-spacing:6.897000px;}
.wsb2{word-spacing:6.912000px;}
.ws39{word-spacing:6.954000px;}
.wsaf{word-spacing:7.011000px;}
.wsa2{word-spacing:7.068000px;}
.ws14c{word-spacing:7.125000px;}
.ws69{word-spacing:7.182000px;}
.wsab{word-spacing:7.239000px;}
.ws27{word-spacing:7.296000px;}
.ws48{word-spacing:7.353000px;}
.ws64{word-spacing:7.410000px;}
.ws142{word-spacing:7.467000px;}
.ws10a{word-spacing:7.524000px;}
.ws6f{word-spacing:7.581000px;}
.wsa8{word-spacing:7.638000px;}
.ws123{word-spacing:7.695000px;}
.wse4{word-spacing:7.752000px;}
.ws38{word-spacing:7.809000px;}
.ws14{word-spacing:7.866000px;}
.ws87{word-spacing:8.037000px;}
.ws1c{word-spacing:8.094000px;}
.ws13d{word-spacing:8.151000px;}
.ws50{word-spacing:8.208000px;}
.wsdf{word-spacing:8.265000px;}
.ws6c{word-spacing:8.322000px;}
.ws14e{word-spacing:8.379000px;}
.ws129{word-spacing:8.436000px;}
.ws115{word-spacing:8.607000px;}
.ws114{word-spacing:8.664000px;}
.ws55{word-spacing:8.721000px;}
.ws4b{word-spacing:8.778000px;}
.ws95{word-spacing:8.835000px;}
.wsfd{word-spacing:8.892000px;}
.ws168{word-spacing:8.949000px;}
.ws13b{word-spacing:9.006000px;}
.ws11b{word-spacing:9.063000px;}
.wsac{word-spacing:9.120000px;}
.ws148{word-spacing:9.177000px;}
.ws11d{word-spacing:9.234000px;}
.ws15a{word-spacing:9.291000px;}
.ws13a{word-spacing:9.348000px;}
.ws15d{word-spacing:9.405000px;}
.wsb0{word-spacing:9.462000px;}
.wsec{word-spacing:9.633000px;}
.wsa6{word-spacing:9.690000px;}
.ws169{word-spacing:9.747000px;}
.wse0{word-spacing:9.861000px;}
.wsc5{word-spacing:9.975000px;}
.ws149{word-spacing:10.146000px;}
.ws58{word-spacing:10.203000px;}
.ws85{word-spacing:10.260000px;}
.ws161{word-spacing:10.317000px;}
.ws152{word-spacing:10.488000px;}
.ws113{word-spacing:10.545000px;}
.ws131{word-spacing:10.602000px;}
.ws157{word-spacing:10.716000px;}
.ws166{word-spacing:10.773000px;}
.ws12e{word-spacing:10.830000px;}
.wse8{word-spacing:10.887000px;}
.ws70{word-spacing:11.001000px;}
.ws61{word-spacing:11.058000px;}
.wsfc{word-spacing:11.286000px;}
.wsa4{word-spacing:11.457000px;}
.ws15c{word-spacing:11.514000px;}
.ws12f{word-spacing:11.571000px;}
.wsf9{word-spacing:11.628000px;}
.ws14f{word-spacing:11.799000px;}
.ws164{word-spacing:11.856000px;}
.wse2{word-spacing:12.141000px;}
.wsea{word-spacing:12.198000px;}
.ws13c{word-spacing:12.369000px;}
.ws167{word-spacing:12.426000px;}
.wsad{word-spacing:12.597000px;}
.ws14a{word-spacing:12.711000px;}
.wsc4{word-spacing:12.882000px;}
.ws6b{word-spacing:12.996000px;}
.wsdd{word-spacing:13.053000px;}
.ws14d{word-spacing:13.167000px;}
.ws5c{word-spacing:13.395000px;}
.ws158{word-spacing:13.680000px;}
.ws15f{word-spacing:13.737000px;}
.ws156{word-spacing:13.794000px;}
.ws12d{word-spacing:13.851000px;}
.ws4f{word-spacing:13.908000px;}
.ws68{word-spacing:13.965000px;}
.ws13e{word-spacing:14.193000px;}
.ws171{word-spacing:15.105000px;}
.wsfb{word-spacing:15.162000px;}
.ws15b{word-spacing:15.390000px;}
.ws163{word-spacing:15.447000px;}
.ws125{word-spacing:15.846000px;}
.wsa9{word-spacing:16.074000px;}
.ws16e{word-spacing:17.214000px;}
.ws15e{word-spacing:17.613000px;}
.ws170{word-spacing:18.696000px;}
.ws84{word-spacing:19.323000px;}
.ws117{word-spacing:20.691000px;}
.ws16b{word-spacing:21.489000px;}
.ws16c{word-spacing:24.624000px;}
.ws160{word-spacing:24.909000px;}
.ws16d{word-spacing:25.422000px;}
.ws162{word-spacing:28.899000px;}
.ws1{word-spacing:81.000000px;}
._0{margin-left:-81.000000px;}
._1{margin-left:-75.000000px;}
._20{margin-left:-25.935000px;}
._1c{margin-left:-20.577000px;}
._1d{margin-left:-18.468000px;}
._1b{margin-left:-15.840000px;}
._18{margin-left:-14.596000px;}
._16{margin-left:-13.296000px;}
._1a{margin-left:-11.707200px;}
._5{margin-left:-6.922800px;}
._8{margin-left:-5.880600px;}
._b{margin-left:-4.405800px;}
._2{margin-left:-2.730000px;}
._a{margin-left:-1.663200px;}
._9{width:1.166400px;}
._7{width:2.311200px;}
._4{width:4.109400px;}
._6{width:5.124600px;}
._13{width:6.367333px;}
._e{width:7.902600px;}
._10{width:9.137100px;}
._f{width:10.750200px;}
._1f{width:12.876300px;}
._17{width:23.232000px;}
._1e{width:24.288000px;}
._14{width:27.768000px;}
._19{width:29.280000px;}
._15{width:30.762600px;}
._12{width:48.432000px;}
._c{width:50.880000px;}
._d{width:54.456000px;}
._11{width:55.872000px;}
._3{width:946.769400px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.231000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:75.000000px;}
.fs2{font-size:78.000000px;}
.fs5{font-size:138.000000px;}
.fs0{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:31.576350px;}
.y21{bottom:32.096400px;}
.y2{bottom:46.812450px;}
.yfc{bottom:76.190850px;}
.y14b{bottom:76.359750px;}
.y17b{bottom:77.380200px;}
.y16c{bottom:77.394300px;}
.y18c{bottom:78.131400px;}
.y185{bottom:78.386550px;}
.ydc{bottom:78.400650px;}
.yf3{bottom:78.590100px;}
.yc5{bottom:79.023150px;}
.y9a{bottom:79.378650px;}
.y166{bottom:79.477800px;}
.y15a{bottom:80.030550px;}
.y2c{bottom:82.284150px;}
.yae{bottom:82.624350px;}
.y19e{bottom:83.294700px;}
.y196{bottom:87.882300px;}
.yfb{bottom:90.590850px;}
.y14a{bottom:90.759750px;}
.y17a{bottom:91.780200px;}
.y16b{bottom:91.794300px;}
.y18b{bottom:92.531400px;}
.y184{bottom:92.786550px;}
.ydb{bottom:92.800650px;}
.yf2{bottom:92.990100px;}
.yc4{bottom:93.423150px;}
.y99{bottom:93.778650px;}
.y165{bottom:93.877800px;}
.y159{bottom:94.430550px;}
.y2b{bottom:96.684150px;}
.yad{bottom:97.024200px;}
.y19d{bottom:100.394700px;}
.y195{bottom:104.982300px;}
.yfa{bottom:104.990850px;}
.y149{bottom:105.159750px;}
.y179{bottom:106.180200px;}
.y16a{bottom:106.194300px;}
.y18a{bottom:106.931400px;}
.y183{bottom:107.186550px;}
.yda{bottom:107.200650px;}
.yf1{bottom:107.390100px;}
.yc3{bottom:107.823150px;}
.y98{bottom:108.178650px;}
.y164{bottom:108.277800px;}
.y158{bottom:108.830550px;}
.y2a{bottom:111.084150px;}
.yac{bottom:111.424350px;}
.y19c{bottom:117.494700px;}
.yf9{bottom:119.390850px;}
.y148{bottom:119.559750px;}
.y178{bottom:120.580200px;}
.y169{bottom:120.594300px;}
.y189{bottom:121.331400px;}
.y182{bottom:121.586550px;}
.yd9{bottom:121.600650px;}
.yf0{bottom:121.790100px;}
.y194{bottom:122.082300px;}
.yc2{bottom:122.223150px;}
.y97{bottom:122.578650px;}
.y163{bottom:122.677800px;}
.y157{bottom:123.230550px;}
.y29{bottom:125.484150px;}
.yab{bottom:125.824200px;}
.yf8{bottom:133.790850px;}
.y147{bottom:133.959750px;}
.y19b{bottom:134.594700px;}
.y177{bottom:134.980200px;}
.y188{bottom:135.731400px;}
.y181{bottom:135.986550px;}
.yd8{bottom:136.000650px;}
.yef{bottom:136.190100px;}
.yc1{bottom:136.623150px;}
.y96{bottom:136.978650px;}
.y162{bottom:137.077800px;}
.y156{bottom:137.630550px;}
.y193{bottom:139.182300px;}
.y28{bottom:139.884150px;}
.yaa{bottom:140.224200px;}
.yf7{bottom:148.190850px;}
.y146{bottom:148.359750px;}
.y176{bottom:149.380200px;}
.y187{bottom:150.131400px;}
.y180{bottom:150.386550px;}
.yd7{bottom:150.400650px;}
.yee{bottom:150.590100px;}
.yc0{bottom:151.023150px;}
.y95{bottom:151.378650px;}
.y161{bottom:151.477800px;}
.y19a{bottom:151.694700px;}
.y155{bottom:152.030550px;}
.y27{bottom:154.284150px;}
.ya9{bottom:154.624350px;}
.y192{bottom:156.282300px;}
.y145{bottom:162.759750px;}
.y20{bottom:163.295100px;}
.y175{bottom:163.780200px;}
.y186{bottom:164.531400px;}
.y17f{bottom:164.786550px;}
.yd6{bottom:164.800650px;}
.yed{bottom:164.990100px;}
.ybf{bottom:165.423150px;}
.y94{bottom:165.778650px;}
.y160{bottom:165.877800px;}
.y154{bottom:166.430550px;}
.y26{bottom:168.684150px;}
.y199{bottom:168.794700px;}
.ya8{bottom:169.024200px;}
.y191{bottom:173.382300px;}
.y174{bottom:178.180200px;}
.y17e{bottom:179.186550px;}
.yd5{bottom:179.200650px;}
.yec{bottom:179.390100px;}
.y1f{bottom:179.495100px;}
.ybe{bottom:179.823150px;}
.y93{bottom:180.178650px;}
.y15f{bottom:180.277800px;}
.y153{bottom:180.830550px;}
.y25{bottom:183.084150px;}
.ya7{bottom:183.424350px;}
.y198{bottom:185.894700px;}
.y168{bottom:185.908650px;}
.y190{bottom:190.482300px;}
.y173{bottom:192.580200px;}
.y17d{bottom:193.586550px;}
.yd4{bottom:193.600650px;}
.yeb{bottom:193.790100px;}
.ybd{bottom:194.223150px;}
.y92{bottom:194.578650px;}
.y15e{bottom:194.677800px;}
.y1e{bottom:195.695100px;}
.y24{bottom:197.484150px;}
.ya6{bottom:197.824200px;}
.y197{bottom:202.994700px;}
.y167{bottom:203.008650px;}
.y172{bottom:206.980200px;}
.y18f{bottom:207.582300px;}
.yd3{bottom:208.000650px;}
.yea{bottom:208.190100px;}
.ybc{bottom:208.623150px;}
.y91{bottom:208.978650px;}
.y15d{bottom:209.077800px;}
.ya5{bottom:212.224200px;}
.y119{bottom:216.040950px;}
.y144{bottom:220.094700px;}
.yf6{bottom:220.108650px;}
.y171{bottom:221.380200px;}
.yd2{bottom:222.400650px;}
.ye9{bottom:222.590100px;}
.ybb{bottom:223.023150px;}
.y90{bottom:223.378650px;}
.y15c{bottom:223.477800px;}
.y18e{bottom:224.682300px;}
.ya4{bottom:226.624350px;}
.y152{bottom:228.796800px;}
.y1d{bottom:228.903000px;}
.y118{bottom:233.140800px;}
.y170{bottom:235.780200px;}
.yd1{bottom:236.800650px;}
.ye8{bottom:236.990100px;}
.y143{bottom:237.194700px;}
.yf5{bottom:237.208650px;}
.yba{bottom:237.423150px;}
.y8f{bottom:237.778650px;}
.y15b{bottom:237.877800px;}
.ya3{bottom:241.024200px;}
.y18d{bottom:241.782300px;}
.y1c{bottom:245.103000px;}
.y151{bottom:245.896800px;}
.y16f{bottom:250.180200px;}
.y117{bottom:250.240800px;}
.yd0{bottom:251.200650px;}
.ye7{bottom:251.390100px;}
.yb9{bottom:251.823150px;}
.y8e{bottom:252.178650px;}
.y142{bottom:254.294700px;}
.yf4{bottom:254.308650px;}
.ya2{bottom:255.424350px;}
.y54{bottom:258.882300px;}
.y1b{bottom:261.303000px;}
.y150{bottom:262.996800px;}
.y16e{bottom:264.580200px;}
.ycf{bottom:265.600650px;}
.ye6{bottom:265.790100px;}
.yb8{bottom:266.223150px;}
.y8d{bottom:266.578650px;}
.y116{bottom:267.340950px;}
.ya1{bottom:269.824200px;}
.y141{bottom:271.394700px;}
.y7c{bottom:271.408650px;}
.y53{bottom:275.982300px;}
.y1a{bottom:277.503000px;}
.y16d{bottom:278.980200px;}
.yce{bottom:280.000650px;}
.y14f{bottom:280.096800px;}
.ye5{bottom:280.190100px;}
.yb7{bottom:280.623150px;}
.ya0{bottom:284.224200px;}
.y115{bottom:284.440950px;}
.y140{bottom:288.494700px;}
.y7b{bottom:288.508650px;}
.y52{bottom:293.082300px;}
.y19{bottom:293.703000px;}
.ycd{bottom:294.400650px;}
.ye4{bottom:294.590100px;}
.yb6{bottom:295.023150px;}
.y14e{bottom:297.196800px;}
.y9f{bottom:298.624350px;}
.y114{bottom:301.540950px;}
.y13f{bottom:305.594700px;}
.y7a{bottom:305.608650px;}
.ycc{bottom:308.800650px;}
.ye3{bottom:308.990100px;}
.yb5{bottom:309.423150px;}
.y18{bottom:309.903000px;}
.y51{bottom:310.182300px;}
.y9e{bottom:313.024350px;}
.y14d{bottom:314.296800px;}
.y113{bottom:318.640800px;}
.y13e{bottom:322.694700px;}
.y79{bottom:322.708650px;}
.ycb{bottom:323.200650px;}
.ye2{bottom:323.390100px;}
.yb4{bottom:323.823150px;}
.y17{bottom:326.103000px;}
.y50{bottom:327.282300px;}
.y9d{bottom:327.424350px;}
.y8c{bottom:331.396800px;}
.y112{bottom:335.740800px;}
.yca{bottom:337.600650px;}
.ye1{bottom:337.790100px;}
.yb3{bottom:338.223150px;}
.y13d{bottom:339.794700px;}
.y78{bottom:339.808650px;}
.y9c{bottom:341.824350px;}
.y4f{bottom:344.382300px;}
.y8b{bottom:348.496800px;}
.yc9{bottom:352.000650px;}
.ye0{bottom:352.190100px;}
.yb2{bottom:352.623150px;}
.y111{bottom:352.840950px;}
.y9b{bottom:356.224350px;}
.y13c{bottom:356.894700px;}
.y77{bottom:356.908650px;}
.y16{bottom:359.310900px;}
.y4e{bottom:361.482300px;}
.y8a{bottom:365.596800px;}
.yc8{bottom:366.400650px;}
.ydf{bottom:366.590100px;}
.yb1{bottom:367.023150px;}
.y110{bottom:369.940950px;}
.y13b{bottom:373.994700px;}
.y76{bottom:374.008650px;}
.y15{bottom:375.510900px;}
.y4d{bottom:378.582300px;}
.yc7{bottom:380.800650px;}
.yde{bottom:380.990100px;}
.yb0{bottom:381.423150px;}
.y89{bottom:382.696800px;}
.y10f{bottom:387.040950px;}
.y13a{bottom:391.094700px;}
.y75{bottom:391.108650px;}
.y14{bottom:391.710900px;}
.yc6{bottom:395.200650px;}
.ydd{bottom:395.390100px;}
.y4c{bottom:395.682300px;}
.y88{bottom:399.796800px;}
.y10e{bottom:404.140800px;}
.y13{bottom:407.910900px;}
.y139{bottom:408.194700px;}
.y74{bottom:408.208650px;}
.y4b{bottom:412.782300px;}
.y87{bottom:416.896800px;}
.y10d{bottom:421.240800px;}
.y12{bottom:424.110900px;}
.y138{bottom:425.294700px;}
.y73{bottom:425.308650px;}
.y4a{bottom:429.882300px;}
.y86{bottom:433.996800px;}
.y10c{bottom:438.340950px;}
.y11{bottom:440.310900px;}
.y137{bottom:442.394700px;}
.y72{bottom:442.408650px;}
.y49{bottom:446.982300px;}
.y85{bottom:451.096800px;}
.y10b{bottom:455.440950px;}
.y10{bottom:456.510900px;}
.y136{bottom:459.494700px;}
.y71{bottom:459.508650px;}
.y48{bottom:464.082300px;}
.y84{bottom:468.196800px;}
.y10a{bottom:472.540950px;}
.yf{bottom:472.710900px;}
.y135{bottom:476.594700px;}
.y70{bottom:476.608650px;}
.y47{bottom:481.182300px;}
.y83{bottom:485.296800px;}
.ye{bottom:488.910900px;}
.y109{bottom:489.640800px;}
.y134{bottom:493.694700px;}
.y6f{bottom:493.708650px;}
.y46{bottom:498.282300px;}
.y82{bottom:502.396800px;}
.yd{bottom:505.110900px;}
.y108{bottom:506.740800px;}
.y133{bottom:510.794700px;}
.y6e{bottom:510.808650px;}
.y14c{bottom:515.152650px;}
.y45{bottom:515.382300px;}
.y81{bottom:519.496800px;}
.y107{bottom:523.840950px;}
.y132{bottom:527.894700px;}
.y6d{bottom:527.908650px;}
.y17c{bottom:532.252650px;}
.y44{bottom:532.482300px;}
.yc{bottom:538.318800px;}
.y106{bottom:540.940950px;}
.y131{bottom:544.994700px;}
.y6c{bottom:545.008650px;}
.y80{bottom:549.352650px;}
.y43{bottom:549.582300px;}
.yb{bottom:554.518800px;}
.y105{bottom:558.040950px;}
.y130{bottom:562.094700px;}
.y6b{bottom:562.108650px;}
.y7f{bottom:566.452650px;}
.y42{bottom:566.682300px;}
.ya{bottom:570.718800px;}
.y104{bottom:575.140800px;}
.y12f{bottom:579.194700px;}
.y6a{bottom:579.208650px;}
.y41{bottom:583.782300px;}
.y9{bottom:586.918800px;}
.y103{bottom:592.240950px;}
.y12e{bottom:596.294700px;}
.y69{bottom:596.308650px;}
.y40{bottom:600.882300px;}
.y102{bottom:609.340800px;}
.y12d{bottom:613.394700px;}
.y68{bottom:613.408650px;}
.y3f{bottom:617.982300px;}
.y8{bottom:620.126700px;}
.y101{bottom:626.440950px;}
.y12c{bottom:630.494700px;}
.y67{bottom:630.508650px;}
.y3e{bottom:635.082300px;}
.y7{bottom:636.326550px;}
.y100{bottom:643.540950px;}
.y12b{bottom:647.594700px;}
.y66{bottom:647.608650px;}
.y3d{bottom:652.182300px;}
.y12a{bottom:664.694700px;}
.y65{bottom:664.708650px;}
.y3c{bottom:669.282300px;}
.y6{bottom:669.534450px;}
.yff{bottom:673.396800px;}
.y129{bottom:681.794700px;}
.y64{bottom:681.808650px;}
.y3b{bottom:686.382300px;}
.y128{bottom:698.894700px;}
.y63{bottom:698.908650px;}
.yfe{bottom:703.252650px;}
.y3a{bottom:703.482300px;}
.y127{bottom:715.994700px;}
.y62{bottom:716.008650px;}
.yfd{bottom:720.352650px;}
.y39{bottom:720.582300px;}
.y126{bottom:733.094700px;}
.y61{bottom:733.108650px;}
.y38{bottom:737.682300px;}
.y125{bottom:750.194700px;}
.y60{bottom:750.208650px;}
.y37{bottom:754.782300px;}
.y5{bottom:756.305850px;}
.y124{bottom:767.294700px;}
.y5f{bottom:767.308650px;}
.y36{bottom:771.882300px;}
.y123{bottom:784.394700px;}
.y5e{bottom:784.408650px;}
.y35{bottom:788.982300px;}
.y122{bottom:801.494700px;}
.y5d{bottom:801.508650px;}
.y34{bottom:806.082300px;}
.y4{bottom:807.811950px;}
.y121{bottom:818.594700px;}
.y5c{bottom:818.608650px;}
.y33{bottom:823.182300px;}
.y120{bottom:835.694700px;}
.y5b{bottom:835.708500px;}
.y32{bottom:840.282300px;}
.y11f{bottom:852.794700px;}
.y5a{bottom:852.808650px;}
.y31{bottom:857.382300px;}
.y11e{bottom:869.894700px;}
.y59{bottom:869.908650px;}
.y30{bottom:874.482300px;}
.y11d{bottom:886.994700px;}
.y58{bottom:887.008650px;}
.y1{bottom:887.080950px;}
.y2f{bottom:891.582300px;}
.y11c{bottom:904.094700px;}
.y57{bottom:904.108650px;}
.y2e{bottom:908.682300px;}
.y11b{bottom:921.194700px;}
.y56{bottom:921.208500px;}
.yaf{bottom:921.438150px;}
.y11a{bottom:938.294700px;}
.y55{bottom:938.308650px;}
.y2d{bottom:938.538150px;}
.y3{bottom:965.311950px;}
.y23{bottom:994.372350px;}
.y22{bottom:1035.375150px;}
.y7e{bottom:1037.537850px;}
.he{height:34.945312px;}
.ha{height:39.042000px;}
.hf{height:39.577148px;}
.hb{height:43.031250px;}
.h8{height:47.381836px;}
.h7{height:47.961914px;}
.h3{height:50.014160px;}
.hc{height:50.626465px;}
.h5{height:56.394000px;}
.h6{height:58.620117px;}
.hd{height:66.613770px;}
.h2{height:99.975586px;}
.h9{height:122.569336px;}
.h4{height:133.227539px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:765.000000px;}
.w0{width:765.354000px;}
.x0{left:0.000000px;}
.x1{left:37.204650px;}
.x5{left:46.771650px;}
.x7{left:55.581150px;}
.x8{left:59.527500px;}
.x4{left:68.031450px;}
.xa{left:72.179700px;}
.x9{left:80.980200px;}
.x11{left:85.039350px;}
.xc{left:281.387550px;}
.x3{left:303.996300px;}
.x6{left:335.671200px;}
.xe{left:393.307050px;}
.xb{left:405.687900px;}
.xf{left:418.818900px;}
.x12{left:431.574900px;}
.xd{left:483.563250px;}
.x2{left:684.555750px;}
.x10{left:685.613400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.ls1{letter-spacing:-72.000000pt;}
.ls6{letter-spacing:-3.680000pt;}
.ls9{letter-spacing:-3.157333pt;}
.lsc{letter-spacing:-1.874667pt;}
.lsb{letter-spacing:-1.776000pt;}
.ls8{letter-spacing:-1.092931pt;}
.lsf{letter-spacing:-0.506667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000267pt;}
.lse{letter-spacing:0.295387pt;}
.lsa{letter-spacing:0.398222pt;}
.lsd{letter-spacing:0.506667pt;}
.ls0{letter-spacing:0.586667pt;}
.ls3{letter-spacing:0.693333pt;}
.ls10{letter-spacing:1.266667pt;}
.ls5{letter-spacing:3.947733pt;}
.ls7{letter-spacing:27.333333pt;}
.ws155{word-spacing:-13.933333pt;}
.ws10f{word-spacing:-13.173333pt;}
.wsc{word-spacing:-12.666667pt;}
.ws120{word-spacing:-12.160000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4d{word-spacing:-11.861333pt;}
.ws10e{word-spacing:-10.792000pt;}
.wsbe{word-spacing:-10.224000pt;}
.ws110{word-spacing:-7.680053pt;}
.wsd{word-spacing:-7.384667pt;}
.ws7d{word-spacing:-6.291736pt;}
.ws127{word-spacing:-3.242667pt;}
.ws104{word-spacing:-2.837333pt;}
.ws16a{word-spacing:-2.786667pt;}
.ws16f{word-spacing:-2.736000pt;}
.ws118{word-spacing:-2.685333pt;}
.ws134{word-spacing:-2.602667pt;}
.ws66{word-spacing:-2.482667pt;}
.wscb{word-spacing:-2.381333pt;}
.ws7c{word-spacing:-2.346667pt;}
.ws49{word-spacing:-2.330667pt;}
.wsee{word-spacing:-2.304000pt;}
.ws138{word-spacing:-2.280000pt;}
.ws8{word-spacing:-2.256000pt;}
.ws105{word-spacing:-2.229333pt;}
.wsf2{word-spacing:-2.133333pt;}
.ws3f{word-spacing:-2.128000pt;}
.ws5a{word-spacing:-2.077333pt;}
.ws36{word-spacing:-2.026667pt;}
.ws97{word-spacing:-2.005333pt;}
.ws89{word-spacing:-1.976000pt;}
.ws79{word-spacing:-1.962667pt;}
.ws34{word-spacing:-1.925333pt;}
.ws5e{word-spacing:-1.874667pt;}
.ws91{word-spacing:-1.824000pt;}
.ws6{word-spacing:-1.776000pt;}
.ws29{word-spacing:-1.773333pt;}
.wsd5{word-spacing:-1.749333pt;}
.ws159{word-spacing:-1.722667pt;}
.ws53{word-spacing:-1.672000pt;}
.ws3c{word-spacing:-1.621333pt;}
.wsbc{word-spacing:-1.578667pt;}
.ws4c{word-spacing:-1.570667pt;}
.ws144{word-spacing:-1.520000pt;}
.ws9c{word-spacing:-1.493333pt;}
.ws1e{word-spacing:-1.469333pt;}
.ws46{word-spacing:-1.418667pt;}
.wse7{word-spacing:-1.368000pt;}
.wsd4{word-spacing:-1.365333pt;}
.ws86{word-spacing:-1.317333pt;}
.ws76{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.266667pt;}
.wsae{word-spacing:-1.165333pt;}
.wsf8{word-spacing:-1.152000pt;}
.ws25{word-spacing:-1.114667pt;}
.ws147{word-spacing:-1.109333pt;}
.ws7f{word-spacing:-1.064000pt;}
.ws13{word-spacing:-1.013333pt;}
.ws12a{word-spacing:-0.981333pt;}
.ws65{word-spacing:-0.962667pt;}
.ws145{word-spacing:-0.938667pt;}
.ws40{word-spacing:-0.912000pt;}
.ws3{word-spacing:-0.864000pt;}
.wsfe{word-spacing:-0.861333pt;}
.wsb1{word-spacing:-0.853333pt;}
.ws3e{word-spacing:-0.810667pt;}
.ws33{word-spacing:-0.760000pt;}
.ws12c{word-spacing:-0.725333pt;}
.ws2b{word-spacing:-0.709333pt;}
.ws30{word-spacing:-0.658667pt;}
.ws82{word-spacing:-0.608000pt;}
.ws9e{word-spacing:-0.597333pt;}
.ws1a{word-spacing:-0.557333pt;}
.ws74{word-spacing:-0.554667pt;}
.ws77{word-spacing:-0.512000pt;}
.wsc0{word-spacing:-0.506667pt;}
.wsd0{word-spacing:-0.469333pt;}
.wse5{word-spacing:-0.456000pt;}
.ws153{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.405333pt;}
.ws44{word-spacing:-0.354667pt;}
.ws9d{word-spacing:-0.341333pt;}
.ws132{word-spacing:-0.304000pt;}
.ws12b{word-spacing:-0.298667pt;}
.ws135{word-spacing:-0.256000pt;}
.wsca{word-spacing:-0.253333pt;}
.wsd2{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.202667pt;}
.ws146{word-spacing:-0.170667pt;}
.ws19{word-spacing:-0.152000pt;}
.ws12{word-spacing:-0.128000pt;}
.wsde{word-spacing:-0.101333pt;}
.ws18{word-spacing:-0.050667pt;}
.ws136{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws151{word-spacing:0.050667pt;}
.ws7a{word-spacing:0.085333pt;}
.ws5{word-spacing:0.096000pt;}
.wsc3{word-spacing:0.101333pt;}
.wsd3{word-spacing:0.128000pt;}
.ws7{word-spacing:0.144000pt;}
.ws43{word-spacing:0.152000pt;}
.wsc8{word-spacing:0.202667pt;}
.ws2e{word-spacing:0.253333pt;}
.wsb5{word-spacing:0.256000pt;}
.wsda{word-spacing:0.298667pt;}
.ws26{word-spacing:0.304000pt;}
.wsef{word-spacing:0.341333pt;}
.wsaa{word-spacing:0.354667pt;}
.ws11c{word-spacing:0.405333pt;}
.wsb6{word-spacing:0.426667pt;}
.ws4e{word-spacing:0.456000pt;}
.ws11{word-spacing:0.469333pt;}
.ws51{word-spacing:0.506667pt;}
.ws78{word-spacing:0.512000pt;}
.ws31{word-spacing:0.557333pt;}
.ws99{word-spacing:0.597333pt;}
.ws124{word-spacing:0.608000pt;}
.ws73{word-spacing:0.640000pt;}
.ws83{word-spacing:0.658667pt;}
.wsf5{word-spacing:0.682667pt;}
.ws111{word-spacing:0.709333pt;}
.wsbf{word-spacing:0.760000pt;}
.ws9b{word-spacing:0.768000pt;}
.ws41{word-spacing:0.810667pt;}
.wsd7{word-spacing:0.853333pt;}
.ws2c{word-spacing:0.861333pt;}
.wsa0{word-spacing:0.896000pt;}
.ws92{word-spacing:0.912000pt;}
.ws10b{word-spacing:0.938667pt;}
.ws108{word-spacing:0.962667pt;}
.wsba{word-spacing:0.981333pt;}
.ws8b{word-spacing:1.013333pt;}
.ws94{word-spacing:1.064000pt;}
.wsa1{word-spacing:1.109333pt;}
.ws93{word-spacing:1.114667pt;}
.wsa{word-spacing:1.152000pt;}
.ws102{word-spacing:1.165333pt;}
.wsd8{word-spacing:1.194667pt;}
.ws141{word-spacing:1.216000pt;}
.ws96{word-spacing:1.237333pt;}
.ws60{word-spacing:1.266667pt;}
.wsb4{word-spacing:1.280000pt;}
.wse3{word-spacing:1.317333pt;}
.wsbd{word-spacing:1.322667pt;}
.ws154{word-spacing:1.365333pt;}
.ws32{word-spacing:1.368000pt;}
.ws133{word-spacing:1.418667pt;}
.wsb{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.520000pt;}
.ws98{word-spacing:1.536000pt;}
.ws23{word-spacing:1.570667pt;}
.ws10c{word-spacing:1.578667pt;}
.ws2f{word-spacing:1.621333pt;}
.ws5f{word-spacing:1.672000pt;}
.ws4{word-spacing:1.680000pt;}
.wsc1{word-spacing:1.722667pt;}
.ws24{word-spacing:1.773333pt;}
.ws11f{word-spacing:1.792000pt;}
.ws52{word-spacing:1.824000pt;}
.wsdb{word-spacing:1.874667pt;}
.wsf0{word-spacing:1.877333pt;}
.ws1d{word-spacing:1.925333pt;}
.wsf6{word-spacing:1.962667pt;}
.ws57{word-spacing:1.976000pt;}
.ws137{word-spacing:2.026667pt;}
.ws47{word-spacing:2.077333pt;}
.ws6e{word-spacing:2.128000pt;}
.wsd6{word-spacing:2.176000pt;}
.ws45{word-spacing:2.178667pt;}
.ws7e{word-spacing:2.229333pt;}
.wsf3{word-spacing:2.261333pt;}
.ws80{word-spacing:2.280000pt;}
.wscc{word-spacing:2.330667pt;}
.ws10d{word-spacing:2.346667pt;}
.ws112{word-spacing:2.381333pt;}
.ws4a{word-spacing:2.432000pt;}
.wsed{word-spacing:2.482667pt;}
.ws9{word-spacing:2.496000pt;}
.ws75{word-spacing:2.517333pt;}
.ws143{word-spacing:2.533333pt;}
.wsf1{word-spacing:2.560000pt;}
.ws22{word-spacing:2.584000pt;}
.wsb9{word-spacing:2.602667pt;}
.ws6d{word-spacing:2.634667pt;}
.ws150{word-spacing:2.685333pt;}
.wsf7{word-spacing:2.688000pt;}
.wse9{word-spacing:2.736000pt;}
.ws9a{word-spacing:2.773333pt;}
.ws15{word-spacing:2.786667pt;}
.wsfa{word-spacing:2.888000pt;}
.ws14b{word-spacing:2.901333pt;}
.ws88{word-spacing:2.938667pt;}
.wsf{word-spacing:2.944000pt;}
.ws28{word-spacing:2.989333pt;}
.wsf4{word-spacing:3.029333pt;}
.wse1{word-spacing:3.040000pt;}
.ws11e{word-spacing:3.072000pt;}
.ws100{word-spacing:3.090667pt;}
.wsc6{word-spacing:3.141333pt;}
.wse{word-spacing:3.157333pt;}
.ws59{word-spacing:3.192000pt;}
.ws17{word-spacing:3.242667pt;}
.ws9f{word-spacing:3.285333pt;}
.wse6{word-spacing:3.293333pt;}
.ws106{word-spacing:3.344000pt;}
.wsff{word-spacing:3.394667pt;}
.ws139{word-spacing:3.445333pt;}
.wsd1{word-spacing:3.456000pt;}
.ws54{word-spacing:3.496000pt;}
.ws101{word-spacing:3.546667pt;}
.wsb8{word-spacing:3.584000pt;}
.ws109{word-spacing:3.597333pt;}
.wsce{word-spacing:3.648000pt;}
.wsdc{word-spacing:3.698667pt;}
.ws11a{word-spacing:3.749333pt;}
.wsd9{word-spacing:3.754667pt;}
.wscf{word-spacing:3.797333pt;}
.ws1f{word-spacing:3.800000pt;}
.ws3b{word-spacing:3.850667pt;}
.ws107{word-spacing:3.901333pt;}
.ws2a{word-spacing:3.952000pt;}
.ws2d{word-spacing:4.002667pt;}
.wsb7{word-spacing:4.010667pt;}
.ws128{word-spacing:4.053333pt;}
.ws126{word-spacing:4.104000pt;}
.ws16{word-spacing:4.154667pt;}
.ws37{word-spacing:4.205333pt;}
.ws6a{word-spacing:4.306667pt;}
.ws63{word-spacing:4.357333pt;}
.wsbb{word-spacing:4.394667pt;}
.ws13f{word-spacing:4.408000pt;}
.wsa7{word-spacing:4.458667pt;}
.ws62{word-spacing:4.509333pt;}
.ws8c{word-spacing:4.560000pt;}
.ws122{word-spacing:4.610667pt;}
.wsa3{word-spacing:4.661333pt;}
.ws10{word-spacing:4.693333pt;}
.ws72{word-spacing:4.712000pt;}
.ws21{word-spacing:4.762667pt;}
.ws121{word-spacing:4.813333pt;}
.ws8e{word-spacing:4.864000pt;}
.wsb3{word-spacing:4.906667pt;}
.ws56{word-spacing:4.914667pt;}
.wsc9{word-spacing:4.965333pt;}
.ws67{word-spacing:5.016000pt;}
.ws116{word-spacing:5.066667pt;}
.wsc7{word-spacing:5.117333pt;}
.ws119{word-spacing:5.168000pt;}
.ws140{word-spacing:5.218667pt;}
.ws1b{word-spacing:5.269333pt;}
.ws8a{word-spacing:5.320000pt;}
.ws7b{word-spacing:5.333333pt;}
.wsc2{word-spacing:5.370667pt;}
.ws42{word-spacing:5.421333pt;}
.ws81{word-spacing:5.472000pt;}
.ws130{word-spacing:5.522667pt;}
.wscd{word-spacing:5.573333pt;}
.ws5d{word-spacing:5.624000pt;}
.wseb{word-spacing:5.674667pt;}
.ws90{word-spacing:5.725333pt;}
.ws20{word-spacing:5.776000pt;}
.ws8f{word-spacing:5.826667pt;}
.ws71{word-spacing:5.877333pt;}
.ws5b{word-spacing:5.928000pt;}
.ws3a{word-spacing:5.978667pt;}
.ws103{word-spacing:6.080000pt;}
.ws165{word-spacing:6.130667pt;}
.wsb2{word-spacing:6.144000pt;}
.ws39{word-spacing:6.181333pt;}
.wsaf{word-spacing:6.232000pt;}
.wsa2{word-spacing:6.282667pt;}
.ws14c{word-spacing:6.333333pt;}
.ws69{word-spacing:6.384000pt;}
.wsab{word-spacing:6.434667pt;}
.ws27{word-spacing:6.485333pt;}
.ws48{word-spacing:6.536000pt;}
.ws64{word-spacing:6.586667pt;}
.ws142{word-spacing:6.637333pt;}
.ws10a{word-spacing:6.688000pt;}
.ws6f{word-spacing:6.738667pt;}
.wsa8{word-spacing:6.789333pt;}
.ws123{word-spacing:6.840000pt;}
.wse4{word-spacing:6.890667pt;}
.ws38{word-spacing:6.941333pt;}
.ws14{word-spacing:6.992000pt;}
.ws87{word-spacing:7.144000pt;}
.ws1c{word-spacing:7.194667pt;}
.ws13d{word-spacing:7.245333pt;}
.ws50{word-spacing:7.296000pt;}
.wsdf{word-spacing:7.346667pt;}
.ws6c{word-spacing:7.397333pt;}
.ws14e{word-spacing:7.448000pt;}
.ws129{word-spacing:7.498667pt;}
.ws115{word-spacing:7.650667pt;}
.ws114{word-spacing:7.701333pt;}
.ws55{word-spacing:7.752000pt;}
.ws4b{word-spacing:7.802667pt;}
.ws95{word-spacing:7.853333pt;}
.wsfd{word-spacing:7.904000pt;}
.ws168{word-spacing:7.954667pt;}
.ws13b{word-spacing:8.005333pt;}
.ws11b{word-spacing:8.056000pt;}
.wsac{word-spacing:8.106667pt;}
.ws148{word-spacing:8.157333pt;}
.ws11d{word-spacing:8.208000pt;}
.ws15a{word-spacing:8.258667pt;}
.ws13a{word-spacing:8.309333pt;}
.ws15d{word-spacing:8.360000pt;}
.wsb0{word-spacing:8.410667pt;}
.wsec{word-spacing:8.562667pt;}
.wsa6{word-spacing:8.613333pt;}
.ws169{word-spacing:8.664000pt;}
.wse0{word-spacing:8.765333pt;}
.wsc5{word-spacing:8.866667pt;}
.ws149{word-spacing:9.018667pt;}
.ws58{word-spacing:9.069333pt;}
.ws85{word-spacing:9.120000pt;}
.ws161{word-spacing:9.170667pt;}
.ws152{word-spacing:9.322667pt;}
.ws113{word-spacing:9.373333pt;}
.ws131{word-spacing:9.424000pt;}
.ws157{word-spacing:9.525333pt;}
.ws166{word-spacing:9.576000pt;}
.ws12e{word-spacing:9.626667pt;}
.wse8{word-spacing:9.677333pt;}
.ws70{word-spacing:9.778667pt;}
.ws61{word-spacing:9.829333pt;}
.wsfc{word-spacing:10.032000pt;}
.wsa4{word-spacing:10.184000pt;}
.ws15c{word-spacing:10.234667pt;}
.ws12f{word-spacing:10.285333pt;}
.wsf9{word-spacing:10.336000pt;}
.ws14f{word-spacing:10.488000pt;}
.ws164{word-spacing:10.538667pt;}
.wse2{word-spacing:10.792000pt;}
.wsea{word-spacing:10.842667pt;}
.ws13c{word-spacing:10.994667pt;}
.ws167{word-spacing:11.045333pt;}
.wsad{word-spacing:11.197333pt;}
.ws14a{word-spacing:11.298667pt;}
.wsc4{word-spacing:11.450667pt;}
.ws6b{word-spacing:11.552000pt;}
.wsdd{word-spacing:11.602667pt;}
.ws14d{word-spacing:11.704000pt;}
.ws5c{word-spacing:11.906667pt;}
.ws158{word-spacing:12.160000pt;}
.ws15f{word-spacing:12.210667pt;}
.ws156{word-spacing:12.261333pt;}
.ws12d{word-spacing:12.312000pt;}
.ws4f{word-spacing:12.362667pt;}
.ws68{word-spacing:12.413333pt;}
.ws13e{word-spacing:12.616000pt;}
.ws171{word-spacing:13.426667pt;}
.wsfb{word-spacing:13.477333pt;}
.ws15b{word-spacing:13.680000pt;}
.ws163{word-spacing:13.730667pt;}
.ws125{word-spacing:14.085333pt;}
.wsa9{word-spacing:14.288000pt;}
.ws16e{word-spacing:15.301333pt;}
.ws15e{word-spacing:15.656000pt;}
.ws170{word-spacing:16.618667pt;}
.ws84{word-spacing:17.176000pt;}
.ws117{word-spacing:18.392000pt;}
.ws16b{word-spacing:19.101333pt;}
.ws16c{word-spacing:21.888000pt;}
.ws160{word-spacing:22.141333pt;}
.ws16d{word-spacing:22.597333pt;}
.ws162{word-spacing:25.688000pt;}
.ws1{word-spacing:72.000000pt;}
._0{margin-left:-72.000000pt;}
._1{margin-left:-66.666667pt;}
._20{margin-left:-23.053333pt;}
._1c{margin-left:-18.290667pt;}
._1d{margin-left:-16.416000pt;}
._1b{margin-left:-14.080000pt;}
._18{margin-left:-12.974222pt;}
._16{margin-left:-11.818667pt;}
._1a{margin-left:-10.406400pt;}
._5{margin-left:-6.153600pt;}
._8{margin-left:-5.227200pt;}
._b{margin-left:-3.916267pt;}
._2{margin-left:-2.426667pt;}
._a{margin-left:-1.478400pt;}
._9{width:1.036800pt;}
._7{width:2.054400pt;}
._4{width:3.652800pt;}
._6{width:4.555200pt;}
._13{width:5.659852pt;}
._e{width:7.024533pt;}
._10{width:8.121867pt;}
._f{width:9.555733pt;}
._1f{width:11.445600pt;}
._17{width:20.650667pt;}
._1e{width:21.589333pt;}
._14{width:24.682667pt;}
._19{width:26.026667pt;}
._15{width:27.344533pt;}
._12{width:43.050667pt;}
._c{width:45.226667pt;}
._d{width:48.405333pt;}
._11{width:49.664000pt;}
._3{width:841.572800pt;}
.fs7{font-size:29.538667pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:66.666667pt;}
.fs2{font-size:69.333333pt;}
.fs5{font-size:122.666667pt;}
.fs0{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:28.067867pt;}
.y21{bottom:28.530133pt;}
.y2{bottom:41.611067pt;}
.yfc{bottom:67.725200pt;}
.y14b{bottom:67.875333pt;}
.y17b{bottom:68.782400pt;}
.y16c{bottom:68.794933pt;}
.y18c{bottom:69.450133pt;}
.y185{bottom:69.676933pt;}
.ydc{bottom:69.689467pt;}
.yf3{bottom:69.857867pt;}
.yc5{bottom:70.242800pt;}
.y9a{bottom:70.558800pt;}
.y166{bottom:70.646933pt;}
.y15a{bottom:71.138267pt;}
.y2c{bottom:73.141467pt;}
.yae{bottom:73.443867pt;}
.y19e{bottom:74.039733pt;}
.y196{bottom:78.117600pt;}
.yfb{bottom:80.525200pt;}
.y14a{bottom:80.675333pt;}
.y17a{bottom:81.582400pt;}
.y16b{bottom:81.594933pt;}
.y18b{bottom:82.250133pt;}
.y184{bottom:82.476933pt;}
.ydb{bottom:82.489467pt;}
.yf2{bottom:82.657867pt;}
.yc4{bottom:83.042800pt;}
.y99{bottom:83.358800pt;}
.y165{bottom:83.446933pt;}
.y159{bottom:83.938267pt;}
.y2b{bottom:85.941467pt;}
.yad{bottom:86.243733pt;}
.y19d{bottom:89.239733pt;}
.y195{bottom:93.317600pt;}
.yfa{bottom:93.325200pt;}
.y149{bottom:93.475333pt;}
.y179{bottom:94.382400pt;}
.y16a{bottom:94.394933pt;}
.y18a{bottom:95.050133pt;}
.y183{bottom:95.276933pt;}
.yda{bottom:95.289467pt;}
.yf1{bottom:95.457867pt;}
.yc3{bottom:95.842800pt;}
.y98{bottom:96.158800pt;}
.y164{bottom:96.246933pt;}
.y158{bottom:96.738267pt;}
.y2a{bottom:98.741467pt;}
.yac{bottom:99.043867pt;}
.y19c{bottom:104.439733pt;}
.yf9{bottom:106.125200pt;}
.y148{bottom:106.275333pt;}
.y178{bottom:107.182400pt;}
.y169{bottom:107.194933pt;}
.y189{bottom:107.850133pt;}
.y182{bottom:108.076933pt;}
.yd9{bottom:108.089467pt;}
.yf0{bottom:108.257867pt;}
.y194{bottom:108.517600pt;}
.yc2{bottom:108.642800pt;}
.y97{bottom:108.958800pt;}
.y163{bottom:109.046933pt;}
.y157{bottom:109.538267pt;}
.y29{bottom:111.541467pt;}
.yab{bottom:111.843733pt;}
.yf8{bottom:118.925200pt;}
.y147{bottom:119.075333pt;}
.y19b{bottom:119.639733pt;}
.y177{bottom:119.982400pt;}
.y188{bottom:120.650133pt;}
.y181{bottom:120.876933pt;}
.yd8{bottom:120.889467pt;}
.yef{bottom:121.057867pt;}
.yc1{bottom:121.442800pt;}
.y96{bottom:121.758800pt;}
.y162{bottom:121.846933pt;}
.y156{bottom:122.338267pt;}
.y193{bottom:123.717600pt;}
.y28{bottom:124.341467pt;}
.yaa{bottom:124.643733pt;}
.yf7{bottom:131.725200pt;}
.y146{bottom:131.875333pt;}
.y176{bottom:132.782400pt;}
.y187{bottom:133.450133pt;}
.y180{bottom:133.676933pt;}
.yd7{bottom:133.689467pt;}
.yee{bottom:133.857867pt;}
.yc0{bottom:134.242800pt;}
.y95{bottom:134.558800pt;}
.y161{bottom:134.646933pt;}
.y19a{bottom:134.839733pt;}
.y155{bottom:135.138267pt;}
.y27{bottom:137.141467pt;}
.ya9{bottom:137.443867pt;}
.y192{bottom:138.917600pt;}
.y145{bottom:144.675333pt;}
.y20{bottom:145.151200pt;}
.y175{bottom:145.582400pt;}
.y186{bottom:146.250133pt;}
.y17f{bottom:146.476933pt;}
.yd6{bottom:146.489467pt;}
.yed{bottom:146.657867pt;}
.ybf{bottom:147.042800pt;}
.y94{bottom:147.358800pt;}
.y160{bottom:147.446933pt;}
.y154{bottom:147.938267pt;}
.y26{bottom:149.941467pt;}
.y199{bottom:150.039733pt;}
.ya8{bottom:150.243733pt;}
.y191{bottom:154.117600pt;}
.y174{bottom:158.382400pt;}
.y17e{bottom:159.276933pt;}
.yd5{bottom:159.289467pt;}
.yec{bottom:159.457867pt;}
.y1f{bottom:159.551200pt;}
.ybe{bottom:159.842800pt;}
.y93{bottom:160.158800pt;}
.y15f{bottom:160.246933pt;}
.y153{bottom:160.738267pt;}
.y25{bottom:162.741467pt;}
.ya7{bottom:163.043867pt;}
.y198{bottom:165.239733pt;}
.y168{bottom:165.252133pt;}
.y190{bottom:169.317600pt;}
.y173{bottom:171.182400pt;}
.y17d{bottom:172.076933pt;}
.yd4{bottom:172.089467pt;}
.yeb{bottom:172.257867pt;}
.ybd{bottom:172.642800pt;}
.y92{bottom:172.958800pt;}
.y15e{bottom:173.046933pt;}
.y1e{bottom:173.951200pt;}
.y24{bottom:175.541467pt;}
.ya6{bottom:175.843733pt;}
.y197{bottom:180.439733pt;}
.y167{bottom:180.452133pt;}
.y172{bottom:183.982400pt;}
.y18f{bottom:184.517600pt;}
.yd3{bottom:184.889467pt;}
.yea{bottom:185.057867pt;}
.ybc{bottom:185.442800pt;}
.y91{bottom:185.758800pt;}
.y15d{bottom:185.846933pt;}
.ya5{bottom:188.643733pt;}
.y119{bottom:192.036400pt;}
.y144{bottom:195.639733pt;}
.yf6{bottom:195.652133pt;}
.y171{bottom:196.782400pt;}
.yd2{bottom:197.689467pt;}
.ye9{bottom:197.857867pt;}
.ybb{bottom:198.242800pt;}
.y90{bottom:198.558800pt;}
.y15c{bottom:198.646933pt;}
.y18e{bottom:199.717600pt;}
.ya4{bottom:201.443867pt;}
.y152{bottom:203.374933pt;}
.y1d{bottom:203.469333pt;}
.y118{bottom:207.236267pt;}
.y170{bottom:209.582400pt;}
.yd1{bottom:210.489467pt;}
.ye8{bottom:210.657867pt;}
.y143{bottom:210.839733pt;}
.yf5{bottom:210.852133pt;}
.yba{bottom:211.042800pt;}
.y8f{bottom:211.358800pt;}
.y15b{bottom:211.446933pt;}
.ya3{bottom:214.243733pt;}
.y18d{bottom:214.917600pt;}
.y1c{bottom:217.869333pt;}
.y151{bottom:218.574933pt;}
.y16f{bottom:222.382400pt;}
.y117{bottom:222.436267pt;}
.yd0{bottom:223.289467pt;}
.ye7{bottom:223.457867pt;}
.yb9{bottom:223.842800pt;}
.y8e{bottom:224.158800pt;}
.y142{bottom:226.039733pt;}
.yf4{bottom:226.052133pt;}
.ya2{bottom:227.043867pt;}
.y54{bottom:230.117600pt;}
.y1b{bottom:232.269333pt;}
.y150{bottom:233.774933pt;}
.y16e{bottom:235.182400pt;}
.ycf{bottom:236.089467pt;}
.ye6{bottom:236.257867pt;}
.yb8{bottom:236.642800pt;}
.y8d{bottom:236.958800pt;}
.y116{bottom:237.636400pt;}
.ya1{bottom:239.843733pt;}
.y141{bottom:241.239733pt;}
.y7c{bottom:241.252133pt;}
.y53{bottom:245.317600pt;}
.y1a{bottom:246.669333pt;}
.y16d{bottom:247.982400pt;}
.yce{bottom:248.889467pt;}
.y14f{bottom:248.974933pt;}
.ye5{bottom:249.057867pt;}
.yb7{bottom:249.442800pt;}
.ya0{bottom:252.643733pt;}
.y115{bottom:252.836400pt;}
.y140{bottom:256.439733pt;}
.y7b{bottom:256.452133pt;}
.y52{bottom:260.517600pt;}
.y19{bottom:261.069333pt;}
.ycd{bottom:261.689467pt;}
.ye4{bottom:261.857867pt;}
.yb6{bottom:262.242800pt;}
.y14e{bottom:264.174933pt;}
.y9f{bottom:265.443867pt;}
.y114{bottom:268.036400pt;}
.y13f{bottom:271.639733pt;}
.y7a{bottom:271.652133pt;}
.ycc{bottom:274.489467pt;}
.ye3{bottom:274.657867pt;}
.yb5{bottom:275.042800pt;}
.y18{bottom:275.469333pt;}
.y51{bottom:275.717600pt;}
.y9e{bottom:278.243867pt;}
.y14d{bottom:279.374933pt;}
.y113{bottom:283.236267pt;}
.y13e{bottom:286.839733pt;}
.y79{bottom:286.852133pt;}
.ycb{bottom:287.289467pt;}
.ye2{bottom:287.457867pt;}
.yb4{bottom:287.842800pt;}
.y17{bottom:289.869333pt;}
.y50{bottom:290.917600pt;}
.y9d{bottom:291.043867pt;}
.y8c{bottom:294.574933pt;}
.y112{bottom:298.436267pt;}
.yca{bottom:300.089467pt;}
.ye1{bottom:300.257867pt;}
.yb3{bottom:300.642800pt;}
.y13d{bottom:302.039733pt;}
.y78{bottom:302.052133pt;}
.y9c{bottom:303.843867pt;}
.y4f{bottom:306.117600pt;}
.y8b{bottom:309.774933pt;}
.yc9{bottom:312.889467pt;}
.ye0{bottom:313.057867pt;}
.yb2{bottom:313.442800pt;}
.y111{bottom:313.636400pt;}
.y9b{bottom:316.643867pt;}
.y13c{bottom:317.239733pt;}
.y77{bottom:317.252133pt;}
.y16{bottom:319.387467pt;}
.y4e{bottom:321.317600pt;}
.y8a{bottom:324.974933pt;}
.yc8{bottom:325.689467pt;}
.ydf{bottom:325.857867pt;}
.yb1{bottom:326.242800pt;}
.y110{bottom:328.836400pt;}
.y13b{bottom:332.439733pt;}
.y76{bottom:332.452133pt;}
.y15{bottom:333.787467pt;}
.y4d{bottom:336.517600pt;}
.yc7{bottom:338.489467pt;}
.yde{bottom:338.657867pt;}
.yb0{bottom:339.042800pt;}
.y89{bottom:340.174933pt;}
.y10f{bottom:344.036400pt;}
.y13a{bottom:347.639733pt;}
.y75{bottom:347.652133pt;}
.y14{bottom:348.187467pt;}
.yc6{bottom:351.289467pt;}
.ydd{bottom:351.457867pt;}
.y4c{bottom:351.717600pt;}
.y88{bottom:355.374933pt;}
.y10e{bottom:359.236267pt;}
.y13{bottom:362.587467pt;}
.y139{bottom:362.839733pt;}
.y74{bottom:362.852133pt;}
.y4b{bottom:366.917600pt;}
.y87{bottom:370.574933pt;}
.y10d{bottom:374.436267pt;}
.y12{bottom:376.987467pt;}
.y138{bottom:378.039733pt;}
.y73{bottom:378.052133pt;}
.y4a{bottom:382.117600pt;}
.y86{bottom:385.774933pt;}
.y10c{bottom:389.636400pt;}
.y11{bottom:391.387467pt;}
.y137{bottom:393.239733pt;}
.y72{bottom:393.252133pt;}
.y49{bottom:397.317600pt;}
.y85{bottom:400.974933pt;}
.y10b{bottom:404.836400pt;}
.y10{bottom:405.787467pt;}
.y136{bottom:408.439733pt;}
.y71{bottom:408.452133pt;}
.y48{bottom:412.517600pt;}
.y84{bottom:416.174933pt;}
.y10a{bottom:420.036400pt;}
.yf{bottom:420.187467pt;}
.y135{bottom:423.639733pt;}
.y70{bottom:423.652133pt;}
.y47{bottom:427.717600pt;}
.y83{bottom:431.374933pt;}
.ye{bottom:434.587467pt;}
.y109{bottom:435.236267pt;}
.y134{bottom:438.839733pt;}
.y6f{bottom:438.852133pt;}
.y46{bottom:442.917600pt;}
.y82{bottom:446.574933pt;}
.yd{bottom:448.987467pt;}
.y108{bottom:450.436267pt;}
.y133{bottom:454.039733pt;}
.y6e{bottom:454.052133pt;}
.y14c{bottom:457.913467pt;}
.y45{bottom:458.117600pt;}
.y81{bottom:461.774933pt;}
.y107{bottom:465.636400pt;}
.y132{bottom:469.239733pt;}
.y6d{bottom:469.252133pt;}
.y17c{bottom:473.113467pt;}
.y44{bottom:473.317600pt;}
.yc{bottom:478.505600pt;}
.y106{bottom:480.836400pt;}
.y131{bottom:484.439733pt;}
.y6c{bottom:484.452133pt;}
.y80{bottom:488.313467pt;}
.y43{bottom:488.517600pt;}
.yb{bottom:492.905600pt;}
.y105{bottom:496.036400pt;}
.y130{bottom:499.639733pt;}
.y6b{bottom:499.652133pt;}
.y7f{bottom:503.513467pt;}
.y42{bottom:503.717600pt;}
.ya{bottom:507.305600pt;}
.y104{bottom:511.236267pt;}
.y12f{bottom:514.839733pt;}
.y6a{bottom:514.852133pt;}
.y41{bottom:518.917600pt;}
.y9{bottom:521.705600pt;}
.y103{bottom:526.436400pt;}
.y12e{bottom:530.039733pt;}
.y69{bottom:530.052133pt;}
.y40{bottom:534.117600pt;}
.y102{bottom:541.636267pt;}
.y12d{bottom:545.239733pt;}
.y68{bottom:545.252133pt;}
.y3f{bottom:549.317600pt;}
.y8{bottom:551.223733pt;}
.y101{bottom:556.836400pt;}
.y12c{bottom:560.439733pt;}
.y67{bottom:560.452133pt;}
.y3e{bottom:564.517600pt;}
.y7{bottom:565.623600pt;}
.y100{bottom:572.036400pt;}
.y12b{bottom:575.639733pt;}
.y66{bottom:575.652133pt;}
.y3d{bottom:579.717600pt;}
.y12a{bottom:590.839733pt;}
.y65{bottom:590.852133pt;}
.y3c{bottom:594.917600pt;}
.y6{bottom:595.141733pt;}
.yff{bottom:598.574933pt;}
.y129{bottom:606.039733pt;}
.y64{bottom:606.052133pt;}
.y3b{bottom:610.117600pt;}
.y128{bottom:621.239733pt;}
.y63{bottom:621.252133pt;}
.yfe{bottom:625.113467pt;}
.y3a{bottom:625.317600pt;}
.y127{bottom:636.439733pt;}
.y62{bottom:636.452133pt;}
.yfd{bottom:640.313467pt;}
.y39{bottom:640.517600pt;}
.y126{bottom:651.639733pt;}
.y61{bottom:651.652133pt;}
.y38{bottom:655.717600pt;}
.y125{bottom:666.839733pt;}
.y60{bottom:666.852133pt;}
.y37{bottom:670.917600pt;}
.y5{bottom:672.271867pt;}
.y124{bottom:682.039733pt;}
.y5f{bottom:682.052133pt;}
.y36{bottom:686.117600pt;}
.y123{bottom:697.239733pt;}
.y5e{bottom:697.252133pt;}
.y35{bottom:701.317600pt;}
.y122{bottom:712.439733pt;}
.y5d{bottom:712.452133pt;}
.y34{bottom:716.517600pt;}
.y4{bottom:718.055067pt;}
.y121{bottom:727.639733pt;}
.y5c{bottom:727.652133pt;}
.y33{bottom:731.717600pt;}
.y120{bottom:742.839733pt;}
.y5b{bottom:742.852000pt;}
.y32{bottom:746.917600pt;}
.y11f{bottom:758.039733pt;}
.y5a{bottom:758.052133pt;}
.y31{bottom:762.117600pt;}
.y11e{bottom:773.239733pt;}
.y59{bottom:773.252133pt;}
.y30{bottom:777.317600pt;}
.y11d{bottom:788.439733pt;}
.y58{bottom:788.452133pt;}
.y1{bottom:788.516400pt;}
.y2f{bottom:792.517600pt;}
.y11c{bottom:803.639733pt;}
.y57{bottom:803.652133pt;}
.y2e{bottom:807.717600pt;}
.y11b{bottom:818.839733pt;}
.y56{bottom:818.852000pt;}
.yaf{bottom:819.056133pt;}
.y11a{bottom:834.039733pt;}
.y55{bottom:834.052133pt;}
.y2d{bottom:834.256133pt;}
.y3{bottom:858.055067pt;}
.y23{bottom:883.886533pt;}
.y22{bottom:920.333467pt;}
.y7e{bottom:922.255867pt;}
.he{height:31.062500pt;}
.ha{height:34.704000pt;}
.hf{height:35.179688pt;}
.hb{height:38.250000pt;}
.h8{height:42.117188pt;}
.h7{height:42.632812pt;}
.h3{height:44.457031pt;}
.hc{height:45.001302pt;}
.h5{height:50.128000pt;}
.h6{height:52.106771pt;}
.hd{height:59.212240pt;}
.h2{height:88.867188pt;}
.h9{height:108.950521pt;}
.h4{height:118.424479pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:680.000000pt;}
.w0{width:680.314667pt;}
.x0{left:0.000000pt;}
.x1{left:33.070800pt;}
.x5{left:41.574800pt;}
.x7{left:49.405467pt;}
.x8{left:52.913333pt;}
.x4{left:60.472400pt;}
.xa{left:64.159733pt;}
.x9{left:71.982400pt;}
.x11{left:75.590533pt;}
.xc{left:250.122267pt;}
.x3{left:270.218933pt;}
.x6{left:298.374400pt;}
.xe{left:349.606267pt;}
.xb{left:360.611467pt;}
.xf{left:372.283467pt;}
.x12{left:383.622133pt;}
.xd{left:429.834000pt;}
.x2{left:608.494000pt;}
.x10{left:609.434133pt;}
}




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