
    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_829c7035e6429500fed24378.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_61a7b810b0bd0d8c5773efea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_add7fdd16eae8495f5b16302.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4b7b717db37b7996a75f548f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4268f07095a52138307e16a2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfefae83f76f97cf2b34e600.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_01602e962aea0bfae79f969e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_34d3870a65921302f0ccce54.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_59d54103f745b1ffb65db552.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_001d5a53d557dd702f5ed4a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961426;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_2fe454d0ad471088908166fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694336;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);}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:24.120000px;}
.v2{vertical-align:82.800000px;}
.ls2c{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.446400px;}
.ls17{letter-spacing:-0.201600px;}
.ls34{letter-spacing:-0.194400px;}
.ls3b{letter-spacing:-0.165600px;}
.ls55{letter-spacing:-0.151200px;}
.ls19{letter-spacing:-0.129600px;}
.ls2f{letter-spacing:-0.122400px;}
.ls38{letter-spacing:-0.115200px;}
.ls46{letter-spacing:-0.108072px;}
.ls2d{letter-spacing:-0.108000px;}
.ls37{letter-spacing:-0.100800px;}
.ls4b{letter-spacing:-0.096696px;}
.ls35{letter-spacing:-0.093600px;}
.ls30{letter-spacing:-0.086400px;}
.ls16{letter-spacing:-0.079200px;}
.ls18{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.057600px;}
.ls15{letter-spacing:-0.050400px;}
.lsa{letter-spacing:-0.043200px;}
.ls7{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.021600px;}
.ls4a{letter-spacing:-0.017064px;}
.ls9{letter-spacing:-0.014400px;}
.lsc{letter-spacing:-0.007200px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.007200px;}
.ls10{letter-spacing:0.014400px;}
.ls43{letter-spacing:0.017064px;}
.ls36{letter-spacing:0.018720px;}
.ls20{letter-spacing:0.021600px;}
.ls4{letter-spacing:0.023940px;}
.ls0{letter-spacing:0.024048px;}
.ls39{letter-spacing:0.026352px;}
.ls3e{letter-spacing:0.028440px;}
.ls12{letter-spacing:0.028800px;}
.ls48{letter-spacing:0.034128px;}
.ls11{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.043092px;}
.ls29{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.048096px;}
.lse{letter-spacing:0.050400px;}
.ls23{letter-spacing:0.057600px;}
.lsf{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.071820px;}
.ls22{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.079200px;}
.ls3c{letter-spacing:0.079632px;}
.ls1b{letter-spacing:0.086400px;}
.ls40{letter-spacing:0.091008px;}
.ls24{letter-spacing:0.093600px;}
.ls47{letter-spacing:0.096696px;}
.ls2b{letter-spacing:0.100800px;}
.ls28{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.108072px;}
.ls42{letter-spacing:0.119448px;}
.ls27{letter-spacing:0.122400px;}
.ls3f{letter-spacing:0.136512px;}
.ls1c{letter-spacing:0.144000px;}
.ls44{letter-spacing:0.151200px;}
.ls31{letter-spacing:0.158400px;}
.ls33{letter-spacing:0.172800px;}
.ls25{letter-spacing:0.223200px;}
.ls49{letter-spacing:0.261648px;}
.ls13{letter-spacing:0.273600px;}
.ls1d{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.504000px;}
.ls54{letter-spacing:0.518400px;}
.ls2e{letter-spacing:2.678400px;}
.ls1a{letter-spacing:5.904000px;}
.ls21{letter-spacing:12.168000px;}
.ls26{letter-spacing:12.528000px;}
.ls1e{letter-spacing:37.224000px;}
.ls32{letter-spacing:37.238400px;}
.ls53{letter-spacing:53.064000px;}
.ls4c{letter-spacing:60.984000px;}
.ls4e{letter-spacing:157.104000px;}
.ls4d{letter-spacing:216.864000px;}
.ls4f{letter-spacing:294.264000px;}
.ls50{letter-spacing:405.144000px;}
.ls52{letter-spacing:504.864000px;}
.ls45{letter-spacing:581.760000px;}
.ls51{letter-spacing:824.904000px;}
.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;}
}
.ws55{word-spacing:-72.000000px;}
.wsf1{word-spacing:-20.174400px;}
.wsbd{word-spacing:-20.109600px;}
.wsf0{word-spacing:-20.095200px;}
.wsd7{word-spacing:-20.088000px;}
.ws19{word-spacing:-20.080800px;}
.ws1f{word-spacing:-20.066400px;}
.ws106{word-spacing:-20.052000px;}
.ws45{word-spacing:-20.044800px;}
.wsef{word-spacing:-20.037600px;}
.wsbc{word-spacing:-20.030400px;}
.ws11b{word-spacing:-20.023200px;}
.ws42{word-spacing:-20.016000px;}
.ws1b{word-spacing:-20.008800px;}
.ws1d{word-spacing:-20.001600px;}
.ws120{word-spacing:-19.994400px;}
.wsbb{word-spacing:-19.987200px;}
.ws44{word-spacing:-19.980000px;}
.ws48{word-spacing:-19.972800px;}
.wsf2{word-spacing:-19.965600px;}
.ws47{word-spacing:-19.958400px;}
.ws1a{word-spacing:-19.951200px;}
.ws11f{word-spacing:-19.944000px;}
.ws1c{word-spacing:-19.936800px;}
.ws46{word-spacing:-19.929600px;}
.ws104{word-spacing:-19.915200px;}
.ws43{word-spacing:-19.908000px;}
.wsbe{word-spacing:-19.900800px;}
.ws1e{word-spacing:-19.886400px;}
.ws103{word-spacing:-16.074288px;}
.ws101{word-spacing:-15.932088px;}
.ws102{word-spacing:-15.829704px;}
.ws105{word-spacing:-15.795576px;}
.ws107{word-spacing:-15.715944px;}
.wsfd{word-spacing:-14.356512px;}
.wsfb{word-spacing:-14.328072px;}
.wsff{word-spacing:-14.316696px;}
.ws100{word-spacing:-14.311008px;}
.wsfa{word-spacing:-14.299632px;}
.wsfc{word-spacing:-14.248440px;}
.wsfe{word-spacing:-14.111928px;}
.wsdb{word-spacing:-13.500000px;}
.ws38{word-spacing:-4.730400px;}
.ws2b{word-spacing:-4.557600px;}
.ws39{word-spacing:-4.514400px;}
.ws2a{word-spacing:-4.492800px;}
.ws96{word-spacing:-3.441600px;}
.ws94{word-spacing:-3.427200px;}
.ws93{word-spacing:-3.283200px;}
.ws95{word-spacing:-3.225600px;}
.wsaf{word-spacing:-2.340000px;}
.wsad{word-spacing:-2.332800px;}
.wsaa{word-spacing:-2.325600px;}
.wsab{word-spacing:-2.282400px;}
.wsae{word-spacing:-2.203200px;}
.ws69{word-spacing:-2.008800px;}
.wsa7{word-spacing:-2.001600px;}
.wsa6{word-spacing:-1.980000px;}
.ws68{word-spacing:-1.965600px;}
.wsa3{word-spacing:-1.944000px;}
.wsf8{word-spacing:-1.627200px;}
.ws25{word-spacing:-1.612800px;}
.wsf7{word-spacing:-1.605600px;}
.ws6a{word-spacing:-1.425600px;}
.ws91{word-spacing:-1.346400px;}
.ws90{word-spacing:-1.274400px;}
.ws92{word-spacing:-1.202400px;}
.ws9f{word-spacing:-0.885600px;}
.ws9e{word-spacing:-0.799200px;}
.ws9d{word-spacing:-0.561600px;}
.ws9c{word-spacing:-0.525600px;}
.ws110{word-spacing:-0.417600px;}
.ws112{word-spacing:-0.410400px;}
.ws114{word-spacing:-0.367200px;}
.wsd6{word-spacing:-0.360000px;}
.ws115{word-spacing:-0.338400px;}
.ws2{word-spacing:-0.318636px;}
.ws4d{word-spacing:-0.295200px;}
.ws4f{word-spacing:-0.244800px;}
.ws50{word-spacing:-0.194400px;}
.ws52{word-spacing:-0.180000px;}
.ws5d{word-spacing:-0.172800px;}
.ws4c{word-spacing:-0.165600px;}
.ws3{word-spacing:-0.162792px;}
.ws9b{word-spacing:-0.158400px;}
.ws3f{word-spacing:-0.151200px;}
.ws5b{word-spacing:-0.144000px;}
.ws61{word-spacing:-0.136800px;}
.ws4{word-spacing:-0.134064px;}
.ws4a{word-spacing:-0.129600px;}
.ws3e{word-spacing:-0.122400px;}
.ws54{word-spacing:-0.115200px;}
.ws5{word-spacing:-0.114912px;}
.ws40{word-spacing:-0.108000px;}
.ws58{word-spacing:-0.100800px;}
.ws49{word-spacing:-0.093600px;}
.ws51{word-spacing:-0.086400px;}
.ws5a{word-spacing:-0.079200px;}
.ws26{word-spacing:-0.072000px;}
.ws4e{word-spacing:-0.064800px;}
.ws56{word-spacing:-0.057600px;}
.ws5f{word-spacing:-0.050400px;}
.ws4b{word-spacing:-0.043200px;}
.ws59{word-spacing:-0.036000px;}
.ws57{word-spacing:-0.028800px;}
.ws5c{word-spacing:-0.021600px;}
.ws53{word-spacing:-0.007200px;}
.ws0{word-spacing:0.000000px;}
.ws5e{word-spacing:0.007200px;}
.ws62{word-spacing:0.014400px;}
.ws63{word-spacing:0.021600px;}
.wsed{word-spacing:0.028800px;}
.ws2f{word-spacing:0.036000px;}
.ws121{word-spacing:0.043200px;}
.ws60{word-spacing:0.050400px;}
.ws13{word-spacing:0.057600px;}
.wsee{word-spacing:0.065880px;}
.ws1{word-spacing:0.066132px;}
.wsc1{word-spacing:0.072000px;}
.ws11a{word-spacing:0.079200px;}
.ws118{word-spacing:0.086400px;}
.wsb{word-spacing:0.093600px;}
.ws3b{word-spacing:0.100800px;}
.ws12{word-spacing:0.108000px;}
.ws86{word-spacing:0.115200px;}
.ws14{word-spacing:0.122400px;}
.wsbf{word-spacing:0.129600px;}
.wsc5{word-spacing:0.136800px;}
.ws37{word-spacing:0.144000px;}
.ws6{word-spacing:0.151200px;}
.ws11{word-spacing:0.158400px;}
.wsf{word-spacing:0.165600px;}
.ws10{word-spacing:0.172800px;}
.ws9{word-spacing:0.180000px;}
.ws8{word-spacing:0.187200px;}
.ws7{word-spacing:0.194400px;}
.wsa{word-spacing:0.201600px;}
.wsc2{word-spacing:0.208800px;}
.wsc6{word-spacing:0.216000px;}
.ws3a{word-spacing:0.223200px;}
.ws11d{word-spacing:0.237600px;}
.wse{word-spacing:0.244800px;}
.wsd{word-spacing:0.252000px;}
.wse6{word-spacing:0.259200px;}
.wsc{word-spacing:0.266400px;}
.ws41{word-spacing:0.273600px;}
.ws119{word-spacing:0.280800px;}
.wsf9{word-spacing:0.295200px;}
.wsdc{word-spacing:0.302400px;}
.ws123{word-spacing:0.324000px;}
.wsc0{word-spacing:0.338400px;}
.ws122{word-spacing:0.396000px;}
.wsc4{word-spacing:0.518400px;}
.ws9a{word-spacing:0.540000px;}
.ws81{word-spacing:0.561600px;}
.wsdd{word-spacing:0.604800px;}
.wsc3{word-spacing:0.633600px;}
.wsa1{word-spacing:0.799200px;}
.wsa2{word-spacing:0.835200px;}
.wsb1{word-spacing:0.914400px;}
.wsb0{word-spacing:0.928800px;}
.wsa0{word-spacing:0.950400px;}
.wsa9{word-spacing:1.260000px;}
.wsa8{word-spacing:1.274400px;}
.ws87{word-spacing:1.584000px;}
.ws88{word-spacing:1.598400px;}
.wsa4{word-spacing:1.620000px;}
.wsa5{word-spacing:1.627200px;}
.wsc9{word-spacing:1.994400px;}
.wsc8{word-spacing:2.001600px;}
.ws74{word-spacing:2.325600px;}
.ws75{word-spacing:2.440800px;}
.wsf4{word-spacing:3.052800px;}
.wsf3{word-spacing:3.067200px;}
.ws85{word-spacing:3.398400px;}
.ws84{word-spacing:3.427200px;}
.ws17{word-spacing:3.434400px;}
.ws18{word-spacing:3.499200px;}
.wsce{word-spacing:3.823200px;}
.wsd1{word-spacing:3.830400px;}
.wsd0{word-spacing:3.844800px;}
.wscf{word-spacing:3.909600px;}
.ws21{word-spacing:4.053600px;}
.ws22{word-spacing:4.132800px;}
.ws36{word-spacing:4.140000px;}
.ws20{word-spacing:4.147200px;}
.ws34{word-spacing:4.161600px;}
.ws76{word-spacing:4.176000px;}
.ws35{word-spacing:4.190400px;}
.ws77{word-spacing:4.262400px;}
.wsb2{word-spacing:4.464000px;}
.wscb{word-spacing:4.492800px;}
.wsac{word-spacing:4.507200px;}
.wsca{word-spacing:4.521600px;}
.wsb7{word-spacing:5.162400px;}
.wsb9{word-spacing:5.227200px;}
.wsb8{word-spacing:5.292000px;}
.ws70{word-spacing:5.832000px;}
.ws73{word-spacing:5.947200px;}
.wsec{word-spacing:5.968800px;}
.ws6f{word-spacing:5.976000px;}
.ws71{word-spacing:5.990400px;}
.ws72{word-spacing:6.134400px;}
.wsb5{word-spacing:6.192000px;}
.ws8f{word-spacing:6.285600px;}
.wse7{word-spacing:6.307200px;}
.ws8d{word-spacing:6.314400px;}
.wse8{word-spacing:6.321600px;}
.ws8e{word-spacing:6.336000px;}
.wsb6{word-spacing:6.343200px;}
.ws32{word-spacing:7.351200px;}
.ws7f{word-spacing:7.401600px;}
.ws80{word-spacing:7.416000px;}
.ws31{word-spacing:7.466400px;}
.ws30{word-spacing:7.524000px;}
.wsba{word-spacing:8.812800px;}
.ws28{word-spacing:8.820000px;}
.ws29{word-spacing:8.884800px;}
.ws27{word-spacing:8.892000px;}
.wsb4{word-spacing:9.144000px;}
.wsb3{word-spacing:9.165600px;}
.ws6c{word-spacing:10.216800px;}
.ws97{word-spacing:10.245600px;}
.ws6e{word-spacing:10.252800px;}
.ws6b{word-spacing:10.281600px;}
.ws6d{word-spacing:10.296000px;}
.wsd5{word-spacing:12.319200px;}
.wsf5{word-spacing:12.420000px;}
.wsf6{word-spacing:12.434400px;}
.wsd4{word-spacing:12.441600px;}
.wsd3{word-spacing:12.463200px;}
.wseb{word-spacing:12.470400px;}
.ws2e{word-spacing:12.722400px;}
.ws2c{word-spacing:12.744000px;}
.ws15{word-spacing:12.801600px;}
.ws16{word-spacing:12.808800px;}
.ws2d{word-spacing:12.837600px;}
.wsea{word-spacing:13.420800px;}
.ws82{word-spacing:13.492800px;}
.wse9{word-spacing:13.521600px;}
.ws83{word-spacing:13.536000px;}
.ws33{word-spacing:13.881600px;}
.wscd{word-spacing:13.939200px;}
.wscc{word-spacing:13.960800px;}
.ws98{word-spacing:14.947200px;}
.ws99{word-spacing:14.961600px;}
.ws66{word-spacing:15.292800px;}
.ws67{word-spacing:15.422400px;}
.ws79{word-spacing:16.228800px;}
.ws8c{word-spacing:16.387200px;}
.ws78{word-spacing:16.394400px;}
.ws7a{word-spacing:16.444800px;}
.ws24{word-spacing:17.445600px;}
.ws23{word-spacing:17.460000px;}
.ws65{word-spacing:20.332800px;}
.ws64{word-spacing:20.347200px;}
.wse1{word-spacing:22.132800px;}
.wse0{word-spacing:22.140000px;}
.wsd8{word-spacing:22.312800px;}
.ws8a{word-spacing:23.918400px;}
.ws8b{word-spacing:23.925600px;}
.ws89{word-spacing:23.954400px;}
.ws3c{word-spacing:24.292800px;}
.ws3d{word-spacing:24.307200px;}
.wsd2{word-spacing:24.674400px;}
.ws7c{word-spacing:33.645600px;}
.ws7b{word-spacing:33.732000px;}
.ws7e{word-spacing:37.058400px;}
.ws7d{word-spacing:37.252800px;}
.ws11c{word-spacing:44.510400px;}
.ws10e{word-spacing:128.505600px;}
.wsdf{word-spacing:142.020000px;}
.ws113{word-spacing:146.779200px;}
.ws117{word-spacing:174.628800px;}
.ws10c{word-spacing:179.546400px;}
.wse5{word-spacing:190.324800px;}
.wsc7{word-spacing:192.412800px;}
.ws11e{word-spacing:201.038400px;}
.wsda{word-spacing:222.393600px;}
.wsd9{word-spacing:222.408000px;}
.ws10d{word-spacing:224.575200px;}
.ws111{word-spacing:230.385600px;}
.wse3{word-spacing:230.644800px;}
.ws108{word-spacing:236.181600px;}
.ws10f{word-spacing:258.811200px;}
.ws10a{word-spacing:264.600000px;}
.wse2{word-spacing:270.604800px;}
.ws10b{word-spacing:284.781600px;}
.ws109{word-spacing:287.294400px;}
.wse4{word-spacing:326.728800px;}
.wsde{word-spacing:370.245600px;}
.ws116{word-spacing:423.417600px;}
._3e{margin-left:-423.144000px;}
._26{margin-left:-287.718768px;}
._2a{margin-left:-264.960000px;}
._33{margin-left:-258.818040px;}
._34{margin-left:-229.982400px;}
._30{margin-left:-225.302400px;}
._47{margin-left:-200.880000px;}
._f{margin-left:-192.340800px;}
._2d{margin-left:-179.339184px;}
._43{margin-left:-174.240000px;}
._10{margin-left:-167.558400px;}
._39{margin-left:-147.198024px;}
._27{margin-left:-130.406400px;}
._3f{margin-left:-128.880000px;}
._2b{margin-left:-123.480000px;}
._14{margin-left:-119.520000px;}
._24{margin-left:-115.502400px;}
._1d{margin-left:-104.169600px;}
._2f{margin-left:-98.971200px;}
._25{margin-left:-86.760000px;}
._23{margin-left:-76.442400px;}
._28{margin-left:-70.200000px;}
._41{margin-left:-60.120000px;}
._40{margin-left:-44.784000px;}
._29{margin-left:-41.400000px;}
._8{margin-left:-38.246400px;}
._2e{margin-left:-35.373600px;}
._3d{margin-left:-20.890800px;}
._19{margin-left:-8.611200px;}
._2{margin-left:-4.824000px;}
._0{margin-left:-1.406808px;}
._1{width:1.080000px;}
._4{width:3.009600px;}
._3{width:12.319200px;}
._6{width:16.927200px;}
._52{width:23.716800px;}
._5{width:24.768000px;}
._d{width:32.925600px;}
._7{width:37.310400px;}
._44{width:47.880000px;}
._11{width:52.214400px;}
._45{width:60.840000px;}
._48{width:79.920000px;}
._3a{width:81.619200px;}
._b{width:92.160000px;}
._4c{width:109.728000px;}
._37{width:110.916000px;}
._c{width:129.585600px;}
._9{width:132.120000px;}
._a{width:141.400800px;}
._46{width:151.920000px;}
._12{width:161.733600px;}
._4b{width:164.556000px;}
._51{width:168.696000px;}
._2c{width:173.520000px;}
._1f{width:181.698600px;}
._22{width:191.102400px;}
._e{width:192.240000px;}
._21{width:202.003200px;}
._16{width:222.364800px;}
._1e{width:231.062400px;}
._36{width:232.560000px;}
._17{width:241.948800px;}
._38{width:242.956800px;}
._18{width:250.560000px;}
._4e{width:257.918400px;}
._1b{width:262.324800px;}
._1a{width:270.475200px;}
._42{width:277.166448px;}
._13{width:289.440000px;}
._1c{width:290.505600px;}
._15{width:306.864000px;}
._4d{width:318.340800px;}
._3c{width:327.952800px;}
._31{width:329.760000px;}
._4f{width:336.628800px;}
._35{width:337.752144px;}
._3b{width:339.120000px;}
._50{width:341.049600px;}
._20{width:350.676000px;}
._32{width:358.560000px;}
._4a{width:398.383200px;}
._49{width:458.258400px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:25.590450px;}
.y1{bottom:46.290450px;}
.y6c{bottom:71.220450px;}
.yba{bottom:75.630450px;}
.y23{bottom:79.140450px;}
.y46{bottom:80.220450px;}
.yf9{bottom:87.240600px;}
.yb9{bottom:92.190450px;}
.y119{bottom:101.370450px;}
.yd2{bottom:103.890450px;}
.y22{bottom:110.190450px;}
.y13f{bottom:110.550450px;}
.y45{bottom:111.270450px;}
.y12c{bottom:114.240450px;}
.yf8{bottom:118.290600px;}
.yb8{bottom:125.580450px;}
.y6b{bottom:127.020450px;}
.y81{bottom:132.240450px;}
.y118{bottom:132.420450px;}
.yd1{bottom:134.940450px;}
.y21{bottom:141.240450px;}
.y13e{bottom:141.690450px;}
.y44{bottom:142.320450px;}
.y12b{bottom:145.290450px;}
.yb7{bottom:148.440450px;}
.y6a{bottom:149.070450px;}
.yf7{bottom:149.250600px;}
.y80{bottom:163.290450px;}
.y117{bottom:163.470450px;}
.yd0{bottom:165.990450px;}
.y69{bottom:171.120600px;}
.y13d{bottom:172.740450px;}
.y43{bottom:173.370450px;}
.yb6{bottom:173.640450px;}
.y12a{bottom:176.340450px;}
.yf6{bottom:180.390600px;}
.y68{bottom:193.080450px;}
.y20{bottom:193.170450px;}
.y7f{bottom:194.340450px;}
.y116{bottom:194.520450px;}
.ycf{bottom:197.040450px;}
.y13c{bottom:203.790450px;}
.y42{bottom:204.420450px;}
.y129{bottom:209.550450px;}
.yf5{bottom:211.440600px;}
.y67{bottom:215.040600px;}
.y1f{bottom:224.310450px;}
.y7e{bottom:225.390450px;}
.y115{bottom:225.570450px;}
.yce{bottom:228.090450px;}
.y13b{bottom:234.840450px;}
.y41{bottom:235.470450px;}
.yb5{bottom:235.740450px;}
.y66{bottom:237.000450px;}
.yf4{bottom:242.490600px;}
.y128{bottom:242.940450px;}
.y1e{bottom:255.360450px;}
.y7d{bottom:256.440450px;}
.y114{bottom:256.620450px;}
.y65{bottom:258.960450px;}
.ycd{bottom:259.140450px;}
.y13a{bottom:265.890450px;}
.y40{bottom:266.430450px;}
.y9b{bottom:272.010450px;}
.yf3{bottom:273.540600px;}
.y127{bottom:273.990450px;}
.y64{bottom:280.920450px;}
.yb4{bottom:286.140450px;}
.y1d{bottom:286.410450px;}
.y7c{bottom:287.490450px;}
.y113{bottom:287.670450px;}
.ycc{bottom:290.190450px;}
.y139{bottom:296.940450px;}
.y3f{bottom:297.480450px;}
.y63{bottom:302.880450px;}
.yf2{bottom:304.590600px;}
.y9a{bottom:305.220450px;}
.yb3{bottom:306.840450px;}
.y126{bottom:307.200450px;}
.y112{bottom:309.090450px;}
.y7b{bottom:318.540450px;}
.ycb{bottom:321.240450px;}
.y62{bottom:324.930450px;}
.yb2{bottom:327.540450px;}
.y138{bottom:327.990450px;}
.y3e{bottom:328.530450px;}
.y111{bottom:329.700450px;}
.yf1{bottom:335.640600px;}
.y99{bottom:336.360450px;}
.y1c{bottom:338.340450px;}
.y61{bottom:346.890450px;}
.yb1{bottom:348.240450px;}
.y137{bottom:348.690450px;}
.y7a{bottom:349.590450px;}
.y10f{bottom:350.400450px;}
.y110{bottom:350.490450px;}
.yca{bottom:352.290450px;}
.y3d{bottom:359.580450px;}
.yf0{bottom:366.690600px;}
.y98{bottom:367.410450px;}
.y1b{bottom:369.480450px;}
.y10e{bottom:371.100450px;}
.y125{bottom:371.640450px;}
.y136{bottom:379.740450px;}
.y60{bottom:380.640450px;}
.yc9{bottom:383.340450px;}
.y3c{bottom:390.630450px;}
.y10d{bottom:391.800450px;}
.yef{bottom:397.740600px;}
.y97{bottom:398.460600px;}
.y1a{bottom:400.530450px;}
.y124{bottom:402.690450px;}
.y135{bottom:410.790450px;}
.y5f{bottom:411.690450px;}
.y10c{bottom:413.220450px;}
.yc8{bottom:414.390450px;}
.yb0{bottom:421.680450px;}
.y3b{bottom:423.120600px;}
.yee{bottom:428.790450px;}
.y96{bottom:429.510450px;}
.y19{bottom:431.580450px;}
.y10b{bottom:434.820450px;}
.y123{bottom:435.900600px;}
.y134{bottom:441.840450px;}
.y5e{bottom:442.740450px;}
.yc7{bottom:445.440450px;}
.yaf{bottom:452.730450px;}
.y10a{bottom:455.520450px;}
.y3a{bottom:456.420450px;}
.yed{bottom:459.840450px;}
.y18{bottom:462.630450px;}
.y95{bottom:462.810450px;}
.y122{bottom:469.290600px;}
.y133{bottom:472.890450px;}
.y5d{bottom:473.790450px;}
.y109{bottom:476.220450px;}
.yc6{bottom:476.490450px;}
.yae{bottom:483.780450px;}
.y39{bottom:488.280450px;}
.yec{bottom:490.890450px;}
.y17{bottom:493.680450px;}
.y94{bottom:493.860450px;}
.y108{bottom:496.830450px;}
.y121{bottom:500.340600px;}
.y132{bottom:503.940450px;}
.y5c{bottom:504.840450px;}
.yc5{bottom:507.450450px;}
.yad{bottom:514.830450px;}
.y107{bottom:518.250450px;}
.y38{bottom:519.330450px;}
.yeb{bottom:521.940450px;}
.y93{bottom:524.910450px;}
.y120{bottom:533.550450px;}
.y131{bottom:534.990450px;}
.y5b{bottom:535.890450px;}
.yc4{bottom:538.500450px;}
.y106{bottom:538.950450px;}
.y16{bottom:545.610450px;}
.yac{bottom:545.880450px;}
.y37{bottom:550.380450px;}
.yea{bottom:552.990450px;}
.y92{bottom:555.960450px;}
.y105{bottom:559.650450px;}
.y11f{bottom:564.690450px;}
.y5a{bottom:566.940450px;}
.yc3{bottom:569.550450px;}
.y15{bottom:576.750450px;}
.yab{bottom:576.930450px;}
.y104{bottom:581.070450px;}
.y36{bottom:581.430450px;}
.ye9{bottom:584.040450px;}
.y130{bottom:586.830450px;}
.y91{bottom:587.010450px;}
.y59{bottom:597.990450px;}
.y103{bottom:601.770450px;}
.y14{bottom:607.800450px;}
.yaa{bottom:607.980450px;}
.y90{bottom:609.870450px;}
.y35{bottom:612.480450px;}
.ye8{bottom:615.090450px;}
.yc2{bottom:621.480450px;}
.y102{bottom:623.280450px;}
.y58{bottom:628.950450px;}
.y8f{bottom:630.660450px;}
.y12f{bottom:638.850450px;}
.ya9{bottom:639.030450px;}
.y34{bottom:643.530450px;}
.y101{bottom:644.700450px;}
.ye7{bottom:646.140450px;}
.y8e{bottom:651.360450px;}
.y13{bottom:659.820450px;}
.y57{bottom:660.000450px;}
.y100{bottom:666.120450px;}
.yc1{bottom:673.500450px;}
.y33{bottom:674.580450px;}
.ye6{bottom:677.190450px;}
.y8d{bottom:682.410450px;}
.yff{bottom:687.630450px;}
.y12{bottom:690.960450px;}
.y56{bottom:691.050450px;}
.y12e{bottom:693.210450px;}
.y32{bottom:705.630450px;}
.ye5{bottom:708.240450px;}
.y8c{bottom:713.460450px;}
.yfe{bottom:718.320450px;}
.y11{bottom:722.010450px;}
.y55{bottom:722.100450px;}
.y11e{bottom:724.260450px;}
.y12d{bottom:724.350450px;}
.yc0{bottom:725.520450px;}
.y8b{bottom:734.160450px;}
.y31{bottom:736.680450px;}
.ye4{bottom:739.290450px;}
.yfd{bottom:739.380450px;}
.ya8{bottom:743.070450px;}
.y10{bottom:753.060450px;}
.y54{bottom:753.150450px;}
.y8a{bottom:754.860450px;}
.y11d{bottom:755.400450px;}
.y30{bottom:767.730450px;}
.ye3{bottom:770.340450px;}
.ya7{bottom:774.210450px;}
.y89{bottom:775.560450px;}
.ybf{bottom:777.630450px;}
.yf{bottom:784.110450px;}
.y53{bottom:784.200450px;}
.y79{bottom:786.360600px;}
.y11c{bottom:786.450450px;}
.yfc{bottom:788.700450px;}
.y2f{bottom:798.780450px;}
.ye2{bottom:801.390450px;}
.ya6{bottom:805.170450px;}
.y88{bottom:806.610450px;}
.ye{bottom:815.160450px;}
.y52{bottom:815.250450px;}
.y11b{bottom:817.410450px;}
.y78{bottom:817.500450px;}
.yfb{bottom:819.750450px;}
.ybe{bottom:829.650450px;}
.y2e{bottom:829.830450px;}
.ye1{bottom:832.440450px;}
.ya5{bottom:836.220450px;}
.y87{bottom:839.910450px;}
.y51{bottom:846.300450px;}
.y77{bottom:848.550450px;}
.yfa{bottom:850.800450px;}
.y2d{bottom:860.880450px;}
.ye0{bottom:863.400600px;}
.yd{bottom:867.090450px;}
.y86{bottom:870.960450px;}
.y50{bottom:877.350450px;}
.y76{bottom:879.600450px;}
.ybd{bottom:881.850450px;}
.ya4{bottom:888.330450px;}
.y2c{bottom:891.930450px;}
.ydf{bottom:894.540600px;}
.y85{bottom:902.010450px;}
.y4f{bottom:908.400450px;}
.ya3{bottom:909.660450px;}
.y75{bottom:910.650450px;}
.ybc{bottom:912.900450px;}
.yde{bottom:916.050450px;}
.yc{bottom:919.110450px;}
.y2b{bottom:922.980450px;}
.ydd{bottom:937.470450px;}
.y4e{bottom:939.450450px;}
.ya2{bottom:939.720450px;}
.y74{bottom:941.700450px;}
.ybb{bottom:943.950450px;}
.yb{bottom:950.250450px;}
.y84{bottom:953.940450px;}
.y2a{bottom:954.030450px;}
.ydc{bottom:958.890450px;}
.ya1{bottom:969.690450px;}
.y4d{bottom:972.660450px;}
.y11a{bottom:972.750450px;}
.y73{bottom:975.000450px;}
.ydb{bottom:980.400450px;}
.ya{bottom:981.300450px;}
.y29{bottom:985.080450px;}
.ya0{bottom:999.660450px;}
.yda{bottom:1001.820450px;}
.y4c{bottom:1003.800450px;}
.y72{bottom:1006.050450px;}
.y9{bottom:1012.350450px;}
.y28{bottom:1016.130450px;}
.yd9{bottom:1023.240450px;}
.y9f{bottom:1034.040450px;}
.y4b{bottom:1034.850450px;}
.y71{bottom:1037.100450px;}
.yd8{bottom:1044.750450px;}
.y27{bottom:1047.180450px;}
.y9e{bottom:1059.780450px;}
.y8{bottom:1064.280450px;}
.y4a{bottom:1065.900450px;}
.yd7{bottom:1066.170450px;}
.y83{bottom:1068.060450px;}
.y70{bottom:1068.150450px;}
.y26{bottom:1078.230450px;}
.y9d{bottom:1080.480450px;}
.yd6{bottom:1087.590450px;}
.y49{bottom:1096.950450px;}
.y6f{bottom:1099.200450px;}
.y7{bottom:1104.690099px;}
.yd5{bottom:1109.100450px;}
.y25{bottom:1109.280450px;}
.y6{bottom:1118.460387px;}
.y48{bottom:1128.000450px;}
.y9c{bottom:1130.160450px;}
.y6e{bottom:1130.250450px;}
.yd4{bottom:1130.340450px;}
.y5{bottom:1132.320450px;}
.y4{bottom:1146.720459px;}
.y47{bottom:1159.050450px;}
.yd3{bottom:1161.030450px;}
.y24{bottom:1161.120450px;}
.y82{bottom:1161.210450px;}
.y6d{bottom:1161.300450px;}
.y3{bottom:1164.000450px;}
.h3{height:48.254063px;}
.h5{height:49.289062px;}
.h9{height:52.417969px;}
.hc{height:52.910156px;}
.hb{height:54.421875px;}
.h2{height:60.589687px;}
.h1{height:70.664062px;}
.hd{height:72.562500px;}
.h4{height:75.093750px;}
.h6{height:75.094350px;}
.h8{height:75.453750px;}
.ha{height:93.093750px;}
.h7{height:157.893750px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x10{left:82.440000px;}
.x2{left:85.050000px;}
.x13{left:93.510000px;}
.xd{left:100.800000px;}
.x11{left:105.030000px;}
.x3{left:112.140000px;}
.xf{left:120.780000px;}
.xc{left:130.860000px;}
.x18{left:139.050000px;}
.xa{left:144.360000px;}
.x15{left:199.800000px;}
.x8{left:223.110000px;}
.x9{left:235.080000px;}
.xe{left:249.930000px;}
.x4{left:312.029982px;}
.x12{left:339.930000px;}
.x6{left:364.499622px;}
.xb{left:370.350000px;}
.x7{left:397.439865px;}
.x5{left:399.780000px;}
.x16{left:411.030000px;}
.x14{left:542.250000px;}
.x17{left:811.170000px;}
.x1{left:820.170000px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.440000pt;}
.v2{vertical-align:73.600000pt;}
.ls2c{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.396800pt;}
.ls17{letter-spacing:-0.179200pt;}
.ls34{letter-spacing:-0.172800pt;}
.ls3b{letter-spacing:-0.147200pt;}
.ls55{letter-spacing:-0.134400pt;}
.ls19{letter-spacing:-0.115200pt;}
.ls2f{letter-spacing:-0.108800pt;}
.ls38{letter-spacing:-0.102400pt;}
.ls46{letter-spacing:-0.096064pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls37{letter-spacing:-0.089600pt;}
.ls4b{letter-spacing:-0.085952pt;}
.ls35{letter-spacing:-0.083200pt;}
.ls30{letter-spacing:-0.076800pt;}
.ls16{letter-spacing:-0.070400pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051200pt;}
.ls15{letter-spacing:-0.044800pt;}
.lsa{letter-spacing:-0.038400pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls4a{letter-spacing:-0.015168pt;}
.ls9{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.006400pt;}
.ls10{letter-spacing:0.012800pt;}
.ls43{letter-spacing:0.015168pt;}
.ls36{letter-spacing:0.016640pt;}
.ls20{letter-spacing:0.019200pt;}
.ls4{letter-spacing:0.021280pt;}
.ls0{letter-spacing:0.021376pt;}
.ls39{letter-spacing:0.023424pt;}
.ls3e{letter-spacing:0.025280pt;}
.ls12{letter-spacing:0.025600pt;}
.ls48{letter-spacing:0.030336pt;}
.ls11{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.038304pt;}
.ls29{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.042752pt;}
.lse{letter-spacing:0.044800pt;}
.ls23{letter-spacing:0.051200pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.063840pt;}
.ls22{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.070400pt;}
.ls3c{letter-spacing:0.070784pt;}
.ls1b{letter-spacing:0.076800pt;}
.ls40{letter-spacing:0.080896pt;}
.ls24{letter-spacing:0.083200pt;}
.ls47{letter-spacing:0.085952pt;}
.ls2b{letter-spacing:0.089600pt;}
.ls28{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.096064pt;}
.ls42{letter-spacing:0.106176pt;}
.ls27{letter-spacing:0.108800pt;}
.ls3f{letter-spacing:0.121344pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls44{letter-spacing:0.134400pt;}
.ls31{letter-spacing:0.140800pt;}
.ls33{letter-spacing:0.153600pt;}
.ls25{letter-spacing:0.198400pt;}
.ls49{letter-spacing:0.232576pt;}
.ls13{letter-spacing:0.243200pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls54{letter-spacing:0.460800pt;}
.ls2e{letter-spacing:2.380800pt;}
.ls1a{letter-spacing:5.248000pt;}
.ls21{letter-spacing:10.816000pt;}
.ls26{letter-spacing:11.136000pt;}
.ls1e{letter-spacing:33.088000pt;}
.ls32{letter-spacing:33.100800pt;}
.ls53{letter-spacing:47.168000pt;}
.ls4c{letter-spacing:54.208000pt;}
.ls4e{letter-spacing:139.648000pt;}
.ls4d{letter-spacing:192.768000pt;}
.ls4f{letter-spacing:261.568000pt;}
.ls50{letter-spacing:360.128000pt;}
.ls52{letter-spacing:448.768000pt;}
.ls45{letter-spacing:517.120000pt;}
.ls51{letter-spacing:733.248000pt;}
.ws55{word-spacing:-64.000000pt;}
.wsf1{word-spacing:-17.932800pt;}
.wsbd{word-spacing:-17.875200pt;}
.wsf0{word-spacing:-17.862400pt;}
.wsd7{word-spacing:-17.856000pt;}
.ws19{word-spacing:-17.849600pt;}
.ws1f{word-spacing:-17.836800pt;}
.ws106{word-spacing:-17.824000pt;}
.ws45{word-spacing:-17.817600pt;}
.wsef{word-spacing:-17.811200pt;}
.wsbc{word-spacing:-17.804800pt;}
.ws11b{word-spacing:-17.798400pt;}
.ws42{word-spacing:-17.792000pt;}
.ws1b{word-spacing:-17.785600pt;}
.ws1d{word-spacing:-17.779200pt;}
.ws120{word-spacing:-17.772800pt;}
.wsbb{word-spacing:-17.766400pt;}
.ws44{word-spacing:-17.760000pt;}
.ws48{word-spacing:-17.753600pt;}
.wsf2{word-spacing:-17.747200pt;}
.ws47{word-spacing:-17.740800pt;}
.ws1a{word-spacing:-17.734400pt;}
.ws11f{word-spacing:-17.728000pt;}
.ws1c{word-spacing:-17.721600pt;}
.ws46{word-spacing:-17.715200pt;}
.ws104{word-spacing:-17.702400pt;}
.ws43{word-spacing:-17.696000pt;}
.wsbe{word-spacing:-17.689600pt;}
.ws1e{word-spacing:-17.676800pt;}
.ws103{word-spacing:-14.288256pt;}
.ws101{word-spacing:-14.161856pt;}
.ws102{word-spacing:-14.070848pt;}
.ws105{word-spacing:-14.040512pt;}
.ws107{word-spacing:-13.969728pt;}
.wsfd{word-spacing:-12.761344pt;}
.wsfb{word-spacing:-12.736064pt;}
.wsff{word-spacing:-12.725952pt;}
.ws100{word-spacing:-12.720896pt;}
.wsfa{word-spacing:-12.710784pt;}
.wsfc{word-spacing:-12.665280pt;}
.wsfe{word-spacing:-12.543936pt;}
.wsdb{word-spacing:-12.000000pt;}
.ws38{word-spacing:-4.204800pt;}
.ws2b{word-spacing:-4.051200pt;}
.ws39{word-spacing:-4.012800pt;}
.ws2a{word-spacing:-3.993600pt;}
.ws96{word-spacing:-3.059200pt;}
.ws94{word-spacing:-3.046400pt;}
.ws93{word-spacing:-2.918400pt;}
.ws95{word-spacing:-2.867200pt;}
.wsaf{word-spacing:-2.080000pt;}
.wsad{word-spacing:-2.073600pt;}
.wsaa{word-spacing:-2.067200pt;}
.wsab{word-spacing:-2.028800pt;}
.wsae{word-spacing:-1.958400pt;}
.ws69{word-spacing:-1.785600pt;}
.wsa7{word-spacing:-1.779200pt;}
.wsa6{word-spacing:-1.760000pt;}
.ws68{word-spacing:-1.747200pt;}
.wsa3{word-spacing:-1.728000pt;}
.wsf8{word-spacing:-1.446400pt;}
.ws25{word-spacing:-1.433600pt;}
.wsf7{word-spacing:-1.427200pt;}
.ws6a{word-spacing:-1.267200pt;}
.ws91{word-spacing:-1.196800pt;}
.ws90{word-spacing:-1.132800pt;}
.ws92{word-spacing:-1.068800pt;}
.ws9f{word-spacing:-0.787200pt;}
.ws9e{word-spacing:-0.710400pt;}
.ws9d{word-spacing:-0.499200pt;}
.ws9c{word-spacing:-0.467200pt;}
.ws110{word-spacing:-0.371200pt;}
.ws112{word-spacing:-0.364800pt;}
.ws114{word-spacing:-0.326400pt;}
.wsd6{word-spacing:-0.320000pt;}
.ws115{word-spacing:-0.300800pt;}
.ws2{word-spacing:-0.283232pt;}
.ws4d{word-spacing:-0.262400pt;}
.ws4f{word-spacing:-0.217600pt;}
.ws50{word-spacing:-0.172800pt;}
.ws52{word-spacing:-0.160000pt;}
.ws5d{word-spacing:-0.153600pt;}
.ws4c{word-spacing:-0.147200pt;}
.ws3{word-spacing:-0.144704pt;}
.ws9b{word-spacing:-0.140800pt;}
.ws3f{word-spacing:-0.134400pt;}
.ws5b{word-spacing:-0.128000pt;}
.ws61{word-spacing:-0.121600pt;}
.ws4{word-spacing:-0.119168pt;}
.ws4a{word-spacing:-0.115200pt;}
.ws3e{word-spacing:-0.108800pt;}
.ws54{word-spacing:-0.102400pt;}
.ws5{word-spacing:-0.102144pt;}
.ws40{word-spacing:-0.096000pt;}
.ws58{word-spacing:-0.089600pt;}
.ws49{word-spacing:-0.083200pt;}
.ws51{word-spacing:-0.076800pt;}
.ws5a{word-spacing:-0.070400pt;}
.ws26{word-spacing:-0.064000pt;}
.ws4e{word-spacing:-0.057600pt;}
.ws56{word-spacing:-0.051200pt;}
.ws5f{word-spacing:-0.044800pt;}
.ws4b{word-spacing:-0.038400pt;}
.ws59{word-spacing:-0.032000pt;}
.ws57{word-spacing:-0.025600pt;}
.ws5c{word-spacing:-0.019200pt;}
.ws53{word-spacing:-0.006400pt;}
.ws0{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.006400pt;}
.ws62{word-spacing:0.012800pt;}
.ws63{word-spacing:0.019200pt;}
.wsed{word-spacing:0.025600pt;}
.ws2f{word-spacing:0.032000pt;}
.ws121{word-spacing:0.038400pt;}
.ws60{word-spacing:0.044800pt;}
.ws13{word-spacing:0.051200pt;}
.wsee{word-spacing:0.058560pt;}
.ws1{word-spacing:0.058784pt;}
.wsc1{word-spacing:0.064000pt;}
.ws11a{word-spacing:0.070400pt;}
.ws118{word-spacing:0.076800pt;}
.wsb{word-spacing:0.083200pt;}
.ws3b{word-spacing:0.089600pt;}
.ws12{word-spacing:0.096000pt;}
.ws86{word-spacing:0.102400pt;}
.ws14{word-spacing:0.108800pt;}
.wsbf{word-spacing:0.115200pt;}
.wsc5{word-spacing:0.121600pt;}
.ws37{word-spacing:0.128000pt;}
.ws6{word-spacing:0.134400pt;}
.ws11{word-spacing:0.140800pt;}
.wsf{word-spacing:0.147200pt;}
.ws10{word-spacing:0.153600pt;}
.ws9{word-spacing:0.160000pt;}
.ws8{word-spacing:0.166400pt;}
.ws7{word-spacing:0.172800pt;}
.wsa{word-spacing:0.179200pt;}
.wsc2{word-spacing:0.185600pt;}
.wsc6{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.198400pt;}
.ws11d{word-spacing:0.211200pt;}
.wse{word-spacing:0.217600pt;}
.wsd{word-spacing:0.224000pt;}
.wse6{word-spacing:0.230400pt;}
.wsc{word-spacing:0.236800pt;}
.ws41{word-spacing:0.243200pt;}
.ws119{word-spacing:0.249600pt;}
.wsf9{word-spacing:0.262400pt;}
.wsdc{word-spacing:0.268800pt;}
.ws123{word-spacing:0.288000pt;}
.wsc0{word-spacing:0.300800pt;}
.ws122{word-spacing:0.352000pt;}
.wsc4{word-spacing:0.460800pt;}
.ws9a{word-spacing:0.480000pt;}
.ws81{word-spacing:0.499200pt;}
.wsdd{word-spacing:0.537600pt;}
.wsc3{word-spacing:0.563200pt;}
.wsa1{word-spacing:0.710400pt;}
.wsa2{word-spacing:0.742400pt;}
.wsb1{word-spacing:0.812800pt;}
.wsb0{word-spacing:0.825600pt;}
.wsa0{word-spacing:0.844800pt;}
.wsa9{word-spacing:1.120000pt;}
.wsa8{word-spacing:1.132800pt;}
.ws87{word-spacing:1.408000pt;}
.ws88{word-spacing:1.420800pt;}
.wsa4{word-spacing:1.440000pt;}
.wsa5{word-spacing:1.446400pt;}
.wsc9{word-spacing:1.772800pt;}
.wsc8{word-spacing:1.779200pt;}
.ws74{word-spacing:2.067200pt;}
.ws75{word-spacing:2.169600pt;}
.wsf4{word-spacing:2.713600pt;}
.wsf3{word-spacing:2.726400pt;}
.ws85{word-spacing:3.020800pt;}
.ws84{word-spacing:3.046400pt;}
.ws17{word-spacing:3.052800pt;}
.ws18{word-spacing:3.110400pt;}
.wsce{word-spacing:3.398400pt;}
.wsd1{word-spacing:3.404800pt;}
.wsd0{word-spacing:3.417600pt;}
.wscf{word-spacing:3.475200pt;}
.ws21{word-spacing:3.603200pt;}
.ws22{word-spacing:3.673600pt;}
.ws36{word-spacing:3.680000pt;}
.ws20{word-spacing:3.686400pt;}
.ws34{word-spacing:3.699200pt;}
.ws76{word-spacing:3.712000pt;}
.ws35{word-spacing:3.724800pt;}
.ws77{word-spacing:3.788800pt;}
.wsb2{word-spacing:3.968000pt;}
.wscb{word-spacing:3.993600pt;}
.wsac{word-spacing:4.006400pt;}
.wsca{word-spacing:4.019200pt;}
.wsb7{word-spacing:4.588800pt;}
.wsb9{word-spacing:4.646400pt;}
.wsb8{word-spacing:4.704000pt;}
.ws70{word-spacing:5.184000pt;}
.ws73{word-spacing:5.286400pt;}
.wsec{word-spacing:5.305600pt;}
.ws6f{word-spacing:5.312000pt;}
.ws71{word-spacing:5.324800pt;}
.ws72{word-spacing:5.452800pt;}
.wsb5{word-spacing:5.504000pt;}
.ws8f{word-spacing:5.587200pt;}
.wse7{word-spacing:5.606400pt;}
.ws8d{word-spacing:5.612800pt;}
.wse8{word-spacing:5.619200pt;}
.ws8e{word-spacing:5.632000pt;}
.wsb6{word-spacing:5.638400pt;}
.ws32{word-spacing:6.534400pt;}
.ws7f{word-spacing:6.579200pt;}
.ws80{word-spacing:6.592000pt;}
.ws31{word-spacing:6.636800pt;}
.ws30{word-spacing:6.688000pt;}
.wsba{word-spacing:7.833600pt;}
.ws28{word-spacing:7.840000pt;}
.ws29{word-spacing:7.897600pt;}
.ws27{word-spacing:7.904000pt;}
.wsb4{word-spacing:8.128000pt;}
.wsb3{word-spacing:8.147200pt;}
.ws6c{word-spacing:9.081600pt;}
.ws97{word-spacing:9.107200pt;}
.ws6e{word-spacing:9.113600pt;}
.ws6b{word-spacing:9.139200pt;}
.ws6d{word-spacing:9.152000pt;}
.wsd5{word-spacing:10.950400pt;}
.wsf5{word-spacing:11.040000pt;}
.wsf6{word-spacing:11.052800pt;}
.wsd4{word-spacing:11.059200pt;}
.wsd3{word-spacing:11.078400pt;}
.wseb{word-spacing:11.084800pt;}
.ws2e{word-spacing:11.308800pt;}
.ws2c{word-spacing:11.328000pt;}
.ws15{word-spacing:11.379200pt;}
.ws16{word-spacing:11.385600pt;}
.ws2d{word-spacing:11.411200pt;}
.wsea{word-spacing:11.929600pt;}
.ws82{word-spacing:11.993600pt;}
.wse9{word-spacing:12.019200pt;}
.ws83{word-spacing:12.032000pt;}
.ws33{word-spacing:12.339200pt;}
.wscd{word-spacing:12.390400pt;}
.wscc{word-spacing:12.409600pt;}
.ws98{word-spacing:13.286400pt;}
.ws99{word-spacing:13.299200pt;}
.ws66{word-spacing:13.593600pt;}
.ws67{word-spacing:13.708800pt;}
.ws79{word-spacing:14.425600pt;}
.ws8c{word-spacing:14.566400pt;}
.ws78{word-spacing:14.572800pt;}
.ws7a{word-spacing:14.617600pt;}
.ws24{word-spacing:15.507200pt;}
.ws23{word-spacing:15.520000pt;}
.ws65{word-spacing:18.073600pt;}
.ws64{word-spacing:18.086400pt;}
.wse1{word-spacing:19.673600pt;}
.wse0{word-spacing:19.680000pt;}
.wsd8{word-spacing:19.833600pt;}
.ws8a{word-spacing:21.260800pt;}
.ws8b{word-spacing:21.267200pt;}
.ws89{word-spacing:21.292800pt;}
.ws3c{word-spacing:21.593600pt;}
.ws3d{word-spacing:21.606400pt;}
.wsd2{word-spacing:21.932800pt;}
.ws7c{word-spacing:29.907200pt;}
.ws7b{word-spacing:29.984000pt;}
.ws7e{word-spacing:32.940800pt;}
.ws7d{word-spacing:33.113600pt;}
.ws11c{word-spacing:39.564800pt;}
.ws10e{word-spacing:114.227200pt;}
.wsdf{word-spacing:126.240000pt;}
.ws113{word-spacing:130.470400pt;}
.ws117{word-spacing:155.225600pt;}
.ws10c{word-spacing:159.596800pt;}
.wse5{word-spacing:169.177600pt;}
.wsc7{word-spacing:171.033600pt;}
.ws11e{word-spacing:178.700800pt;}
.wsda{word-spacing:197.683200pt;}
.wsd9{word-spacing:197.696000pt;}
.ws10d{word-spacing:199.622400pt;}
.ws111{word-spacing:204.787200pt;}
.wse3{word-spacing:205.017600pt;}
.ws108{word-spacing:209.939200pt;}
.ws10f{word-spacing:230.054400pt;}
.ws10a{word-spacing:235.200000pt;}
.wse2{word-spacing:240.537600pt;}
.ws10b{word-spacing:253.139200pt;}
.ws109{word-spacing:255.372800pt;}
.wse4{word-spacing:290.425600pt;}
.wsde{word-spacing:329.107200pt;}
.ws116{word-spacing:376.371200pt;}
._3e{margin-left:-376.128000pt;}
._26{margin-left:-255.750016pt;}
._2a{margin-left:-235.520000pt;}
._33{margin-left:-230.060480pt;}
._34{margin-left:-204.428800pt;}
._30{margin-left:-200.268800pt;}
._47{margin-left:-178.560000pt;}
._f{margin-left:-170.969600pt;}
._2d{margin-left:-159.412608pt;}
._43{margin-left:-154.880000pt;}
._10{margin-left:-148.940800pt;}
._39{margin-left:-130.842688pt;}
._27{margin-left:-115.916800pt;}
._3f{margin-left:-114.560000pt;}
._2b{margin-left:-109.760000pt;}
._14{margin-left:-106.240000pt;}
._24{margin-left:-102.668800pt;}
._1d{margin-left:-92.595200pt;}
._2f{margin-left:-87.974400pt;}
._25{margin-left:-77.120000pt;}
._23{margin-left:-67.948800pt;}
._28{margin-left:-62.400000pt;}
._41{margin-left:-53.440000pt;}
._40{margin-left:-39.808000pt;}
._29{margin-left:-36.800000pt;}
._8{margin-left:-33.996800pt;}
._2e{margin-left:-31.443200pt;}
._3d{margin-left:-18.569600pt;}
._19{margin-left:-7.654400pt;}
._2{margin-left:-4.288000pt;}
._0{margin-left:-1.250496pt;}
._1{width:0.960000pt;}
._4{width:2.675200pt;}
._3{width:10.950400pt;}
._6{width:15.046400pt;}
._52{width:21.081600pt;}
._5{width:22.016000pt;}
._d{width:29.267200pt;}
._7{width:33.164800pt;}
._44{width:42.560000pt;}
._11{width:46.412800pt;}
._45{width:54.080000pt;}
._48{width:71.040000pt;}
._3a{width:72.550400pt;}
._b{width:81.920000pt;}
._4c{width:97.536000pt;}
._37{width:98.592000pt;}
._c{width:115.187200pt;}
._9{width:117.440000pt;}
._a{width:125.689600pt;}
._46{width:135.040000pt;}
._12{width:143.763200pt;}
._4b{width:146.272000pt;}
._51{width:149.952000pt;}
._2c{width:154.240000pt;}
._1f{width:161.509867pt;}
._22{width:169.868800pt;}
._e{width:170.880000pt;}
._21{width:179.558400pt;}
._16{width:197.657600pt;}
._1e{width:205.388800pt;}
._36{width:206.720000pt;}
._17{width:215.065600pt;}
._38{width:215.961600pt;}
._18{width:222.720000pt;}
._4e{width:229.260800pt;}
._1b{width:233.177600pt;}
._1a{width:240.422400pt;}
._42{width:246.370176pt;}
._13{width:257.280000pt;}
._1c{width:258.227200pt;}
._15{width:272.768000pt;}
._4d{width:282.969600pt;}
._3c{width:291.513600pt;}
._31{width:293.120000pt;}
._4f{width:299.225600pt;}
._35{width:300.224128pt;}
._3b{width:301.440000pt;}
._50{width:303.155200pt;}
._20{width:311.712000pt;}
._32{width:318.720000pt;}
._4a{width:354.118400pt;}
._49{width:407.340800pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:22.747067pt;}
.y1{bottom:41.147067pt;}
.y6c{bottom:63.307067pt;}
.yba{bottom:67.227067pt;}
.y23{bottom:70.347067pt;}
.y46{bottom:71.307067pt;}
.yf9{bottom:77.547200pt;}
.yb9{bottom:81.947067pt;}
.y119{bottom:90.107067pt;}
.yd2{bottom:92.347067pt;}
.y22{bottom:97.947067pt;}
.y13f{bottom:98.267067pt;}
.y45{bottom:98.907067pt;}
.y12c{bottom:101.547067pt;}
.yf8{bottom:105.147200pt;}
.yb8{bottom:111.627067pt;}
.y6b{bottom:112.907067pt;}
.y81{bottom:117.547067pt;}
.y118{bottom:117.707067pt;}
.yd1{bottom:119.947067pt;}
.y21{bottom:125.547067pt;}
.y13e{bottom:125.947067pt;}
.y44{bottom:126.507067pt;}
.y12b{bottom:129.147067pt;}
.yb7{bottom:131.947067pt;}
.y6a{bottom:132.507067pt;}
.yf7{bottom:132.667200pt;}
.y80{bottom:145.147067pt;}
.y117{bottom:145.307067pt;}
.yd0{bottom:147.547067pt;}
.y69{bottom:152.107200pt;}
.y13d{bottom:153.547067pt;}
.y43{bottom:154.107067pt;}
.yb6{bottom:154.347067pt;}
.y12a{bottom:156.747067pt;}
.yf6{bottom:160.347200pt;}
.y68{bottom:171.627067pt;}
.y20{bottom:171.707067pt;}
.y7f{bottom:172.747067pt;}
.y116{bottom:172.907067pt;}
.ycf{bottom:175.147067pt;}
.y13c{bottom:181.147067pt;}
.y42{bottom:181.707067pt;}
.y129{bottom:186.267067pt;}
.yf5{bottom:187.947200pt;}
.y67{bottom:191.147200pt;}
.y1f{bottom:199.387067pt;}
.y7e{bottom:200.347067pt;}
.y115{bottom:200.507067pt;}
.yce{bottom:202.747067pt;}
.y13b{bottom:208.747067pt;}
.y41{bottom:209.307067pt;}
.yb5{bottom:209.547067pt;}
.y66{bottom:210.667067pt;}
.yf4{bottom:215.547200pt;}
.y128{bottom:215.947067pt;}
.y1e{bottom:226.987067pt;}
.y7d{bottom:227.947067pt;}
.y114{bottom:228.107067pt;}
.y65{bottom:230.187067pt;}
.ycd{bottom:230.347067pt;}
.y13a{bottom:236.347067pt;}
.y40{bottom:236.827067pt;}
.y9b{bottom:241.787067pt;}
.yf3{bottom:243.147200pt;}
.y127{bottom:243.547067pt;}
.y64{bottom:249.707067pt;}
.yb4{bottom:254.347067pt;}
.y1d{bottom:254.587067pt;}
.y7c{bottom:255.547067pt;}
.y113{bottom:255.707067pt;}
.ycc{bottom:257.947067pt;}
.y139{bottom:263.947067pt;}
.y3f{bottom:264.427067pt;}
.y63{bottom:269.227067pt;}
.yf2{bottom:270.747200pt;}
.y9a{bottom:271.307067pt;}
.yb3{bottom:272.747067pt;}
.y126{bottom:273.067067pt;}
.y112{bottom:274.747067pt;}
.y7b{bottom:283.147067pt;}
.ycb{bottom:285.547067pt;}
.y62{bottom:288.827067pt;}
.yb2{bottom:291.147067pt;}
.y138{bottom:291.547067pt;}
.y3e{bottom:292.027067pt;}
.y111{bottom:293.067067pt;}
.yf1{bottom:298.347200pt;}
.y99{bottom:298.987067pt;}
.y1c{bottom:300.747067pt;}
.y61{bottom:308.347067pt;}
.yb1{bottom:309.547067pt;}
.y137{bottom:309.947067pt;}
.y7a{bottom:310.747067pt;}
.y10f{bottom:311.467067pt;}
.y110{bottom:311.547067pt;}
.yca{bottom:313.147067pt;}
.y3d{bottom:319.627067pt;}
.yf0{bottom:325.947200pt;}
.y98{bottom:326.587067pt;}
.y1b{bottom:328.427067pt;}
.y10e{bottom:329.867067pt;}
.y125{bottom:330.347067pt;}
.y136{bottom:337.547067pt;}
.y60{bottom:338.347067pt;}
.yc9{bottom:340.747067pt;}
.y3c{bottom:347.227067pt;}
.y10d{bottom:348.267067pt;}
.yef{bottom:353.547200pt;}
.y97{bottom:354.187200pt;}
.y1a{bottom:356.027067pt;}
.y124{bottom:357.947067pt;}
.y135{bottom:365.147067pt;}
.y5f{bottom:365.947067pt;}
.y10c{bottom:367.307067pt;}
.yc8{bottom:368.347067pt;}
.yb0{bottom:374.827067pt;}
.y3b{bottom:376.107200pt;}
.yee{bottom:381.147067pt;}
.y96{bottom:381.787067pt;}
.y19{bottom:383.627067pt;}
.y10b{bottom:386.507067pt;}
.y123{bottom:387.467200pt;}
.y134{bottom:392.747067pt;}
.y5e{bottom:393.547067pt;}
.yc7{bottom:395.947067pt;}
.yaf{bottom:402.427067pt;}
.y10a{bottom:404.907067pt;}
.y3a{bottom:405.707067pt;}
.yed{bottom:408.747067pt;}
.y18{bottom:411.227067pt;}
.y95{bottom:411.387067pt;}
.y122{bottom:417.147200pt;}
.y133{bottom:420.347067pt;}
.y5d{bottom:421.147067pt;}
.y109{bottom:423.307067pt;}
.yc6{bottom:423.547067pt;}
.yae{bottom:430.027067pt;}
.y39{bottom:434.027067pt;}
.yec{bottom:436.347067pt;}
.y17{bottom:438.827067pt;}
.y94{bottom:438.987067pt;}
.y108{bottom:441.627067pt;}
.y121{bottom:444.747200pt;}
.y132{bottom:447.947067pt;}
.y5c{bottom:448.747067pt;}
.yc5{bottom:451.067067pt;}
.yad{bottom:457.627067pt;}
.y107{bottom:460.667067pt;}
.y38{bottom:461.627067pt;}
.yeb{bottom:463.947067pt;}
.y93{bottom:466.587067pt;}
.y120{bottom:474.267067pt;}
.y131{bottom:475.547067pt;}
.y5b{bottom:476.347067pt;}
.yc4{bottom:478.667067pt;}
.y106{bottom:479.067067pt;}
.y16{bottom:484.987067pt;}
.yac{bottom:485.227067pt;}
.y37{bottom:489.227067pt;}
.yea{bottom:491.547067pt;}
.y92{bottom:494.187067pt;}
.y105{bottom:497.467067pt;}
.y11f{bottom:501.947067pt;}
.y5a{bottom:503.947067pt;}
.yc3{bottom:506.267067pt;}
.y15{bottom:512.667067pt;}
.yab{bottom:512.827067pt;}
.y104{bottom:516.507067pt;}
.y36{bottom:516.827067pt;}
.ye9{bottom:519.147067pt;}
.y130{bottom:521.627067pt;}
.y91{bottom:521.787067pt;}
.y59{bottom:531.547067pt;}
.y103{bottom:534.907067pt;}
.y14{bottom:540.267067pt;}
.yaa{bottom:540.427067pt;}
.y90{bottom:542.107067pt;}
.y35{bottom:544.427067pt;}
.ye8{bottom:546.747067pt;}
.yc2{bottom:552.427067pt;}
.y102{bottom:554.027067pt;}
.y58{bottom:559.067067pt;}
.y8f{bottom:560.587067pt;}
.y12f{bottom:567.867067pt;}
.ya9{bottom:568.027067pt;}
.y34{bottom:572.027067pt;}
.y101{bottom:573.067067pt;}
.ye7{bottom:574.347067pt;}
.y8e{bottom:578.987067pt;}
.y13{bottom:586.507067pt;}
.y57{bottom:586.667067pt;}
.y100{bottom:592.107067pt;}
.yc1{bottom:598.667067pt;}
.y33{bottom:599.627067pt;}
.ye6{bottom:601.947067pt;}
.y8d{bottom:606.587067pt;}
.yff{bottom:611.227067pt;}
.y12{bottom:614.187067pt;}
.y56{bottom:614.267067pt;}
.y12e{bottom:616.187067pt;}
.y32{bottom:627.227067pt;}
.ye5{bottom:629.547067pt;}
.y8c{bottom:634.187067pt;}
.yfe{bottom:638.507067pt;}
.y11{bottom:641.787067pt;}
.y55{bottom:641.867067pt;}
.y11e{bottom:643.787067pt;}
.y12d{bottom:643.867067pt;}
.yc0{bottom:644.907067pt;}
.y8b{bottom:652.587067pt;}
.y31{bottom:654.827067pt;}
.ye4{bottom:657.147067pt;}
.yfd{bottom:657.227067pt;}
.ya8{bottom:660.507067pt;}
.y10{bottom:669.387067pt;}
.y54{bottom:669.467067pt;}
.y8a{bottom:670.987067pt;}
.y11d{bottom:671.467067pt;}
.y30{bottom:682.427067pt;}
.ye3{bottom:684.747067pt;}
.ya7{bottom:688.187067pt;}
.y89{bottom:689.387067pt;}
.ybf{bottom:691.227067pt;}
.yf{bottom:696.987067pt;}
.y53{bottom:697.067067pt;}
.y79{bottom:698.987200pt;}
.y11c{bottom:699.067067pt;}
.yfc{bottom:701.067067pt;}
.y2f{bottom:710.027067pt;}
.ye2{bottom:712.347067pt;}
.ya6{bottom:715.707067pt;}
.y88{bottom:716.987067pt;}
.ye{bottom:724.587067pt;}
.y52{bottom:724.667067pt;}
.y11b{bottom:726.587067pt;}
.y78{bottom:726.667067pt;}
.yfb{bottom:728.667067pt;}
.ybe{bottom:737.467067pt;}
.y2e{bottom:737.627067pt;}
.ye1{bottom:739.947067pt;}
.ya5{bottom:743.307067pt;}
.y87{bottom:746.587067pt;}
.y51{bottom:752.267067pt;}
.y77{bottom:754.267067pt;}
.yfa{bottom:756.267067pt;}
.y2d{bottom:765.227067pt;}
.ye0{bottom:767.467200pt;}
.yd{bottom:770.747067pt;}
.y86{bottom:774.187067pt;}
.y50{bottom:779.867067pt;}
.y76{bottom:781.867067pt;}
.ybd{bottom:783.867067pt;}
.ya4{bottom:789.627067pt;}
.y2c{bottom:792.827067pt;}
.ydf{bottom:795.147200pt;}
.y85{bottom:801.787067pt;}
.y4f{bottom:807.467067pt;}
.ya3{bottom:808.587067pt;}
.y75{bottom:809.467067pt;}
.ybc{bottom:811.467067pt;}
.yde{bottom:814.267067pt;}
.yc{bottom:816.987067pt;}
.y2b{bottom:820.427067pt;}
.ydd{bottom:833.307067pt;}
.y4e{bottom:835.067067pt;}
.ya2{bottom:835.307067pt;}
.y74{bottom:837.067067pt;}
.ybb{bottom:839.067067pt;}
.yb{bottom:844.667067pt;}
.y84{bottom:847.947067pt;}
.y2a{bottom:848.027067pt;}
.ydc{bottom:852.347067pt;}
.ya1{bottom:861.947067pt;}
.y4d{bottom:864.587067pt;}
.y11a{bottom:864.667067pt;}
.y73{bottom:866.667067pt;}
.ydb{bottom:871.467067pt;}
.ya{bottom:872.267067pt;}
.y29{bottom:875.627067pt;}
.ya0{bottom:888.587067pt;}
.yda{bottom:890.507067pt;}
.y4c{bottom:892.267067pt;}
.y72{bottom:894.267067pt;}
.y9{bottom:899.867067pt;}
.y28{bottom:903.227067pt;}
.yd9{bottom:909.547067pt;}
.y9f{bottom:919.147067pt;}
.y4b{bottom:919.867067pt;}
.y71{bottom:921.867067pt;}
.yd8{bottom:928.667067pt;}
.y27{bottom:930.827067pt;}
.y9e{bottom:942.027067pt;}
.y8{bottom:946.027067pt;}
.y4a{bottom:947.467067pt;}
.yd7{bottom:947.707067pt;}
.y83{bottom:949.387067pt;}
.y70{bottom:949.467067pt;}
.y26{bottom:958.427067pt;}
.y9d{bottom:960.427067pt;}
.yd6{bottom:966.747067pt;}
.y49{bottom:975.067067pt;}
.y6f{bottom:977.067067pt;}
.y7{bottom:981.946755pt;}
.yd5{bottom:985.867067pt;}
.y25{bottom:986.027067pt;}
.y6{bottom:994.187011pt;}
.y48{bottom:1002.667067pt;}
.y9c{bottom:1004.587067pt;}
.y6e{bottom:1004.667067pt;}
.yd4{bottom:1004.747067pt;}
.y5{bottom:1006.507067pt;}
.y4{bottom:1019.307075pt;}
.y47{bottom:1030.267067pt;}
.yd3{bottom:1032.027067pt;}
.y24{bottom:1032.107067pt;}
.y82{bottom:1032.187067pt;}
.y6d{bottom:1032.267067pt;}
.y3{bottom:1034.667067pt;}
.h3{height:42.892500pt;}
.h5{height:43.812500pt;}
.h9{height:46.593750pt;}
.hc{height:47.031250pt;}
.hb{height:48.375000pt;}
.h2{height:53.857500pt;}
.h1{height:62.812500pt;}
.hd{height:64.500000pt;}
.h4{height:66.750000pt;}
.h6{height:66.750533pt;}
.h8{height:67.070000pt;}
.ha{height:82.750000pt;}
.h7{height:140.350000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x10{left:73.280000pt;}
.x2{left:75.600000pt;}
.x13{left:83.120000pt;}
.xd{left:89.600000pt;}
.x11{left:93.360000pt;}
.x3{left:99.680000pt;}
.xf{left:107.360000pt;}
.xc{left:116.320000pt;}
.x18{left:123.600000pt;}
.xa{left:128.320000pt;}
.x15{left:177.600000pt;}
.x8{left:198.320000pt;}
.x9{left:208.960000pt;}
.xe{left:222.160000pt;}
.x4{left:277.359984pt;}
.x12{left:302.160000pt;}
.x6{left:323.999664pt;}
.xb{left:329.200000pt;}
.x7{left:353.279880pt;}
.x5{left:355.360000pt;}
.x16{left:365.360000pt;}
.x14{left:482.000000pt;}
.x17{left:721.040000pt;}
.x1{left:729.040000pt;}
}




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