
    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_a1173d30033834e8c881e086.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a18910a1d6d5cf6701f530ce.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_fa07a7f25c7ba6b597a591d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_09344e8cd53b8a1d1d69037c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_16d768261069cfb13e49d647.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_d705624d8f665d018598a004.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a1173d30033834e8c881e086.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a18910a1d6d5cf6701f530ce.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f0d4878b079e659b108c016.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a18910a1d6d5cf6701f530ce.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_35c79a0492a21ac8f3637ddc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_3ce2832e24408bc4b54fad1e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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:ffd;src:url('chunks/assets/font_8fc3bdeff59bb4b6266b30b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;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:ffe;src:url('chunks/assets/font_122ceb4e44ef9de38dc879f2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904297;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:fff;src:url('chunks/assets/font_4bf6fde409c6f672ea51fd5a.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v3{vertical-align:-15.984000px;}
.v4{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.982000px;}
.v5{vertical-align:20.579400px;}
.v2{vertical-align:27.972000px;}
.v1{vertical-align:35.964600px;}
.lse{letter-spacing:-1.998000px;}
.ls14{letter-spacing:-1.854000px;}
.ls3{letter-spacing:-1.680000px;}
.lsf{letter-spacing:-1.333088px;}
.ls9{letter-spacing:-1.236000px;}
.ls10{letter-spacing:-1.035408px;}
.lsd{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.618000px;}
.lsc{letter-spacing:-0.559680px;}
.ls2{letter-spacing:-0.420000px;}
.ls11{letter-spacing:-0.360294px;}
.ls13{letter-spacing:-0.247200px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000300px;}
.lsb{letter-spacing:0.000600px;}
.ls15{letter-spacing:0.009000px;}
.ls0{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.755000px;}
.ls6{letter-spacing:1.932000px;}
.ls8{letter-spacing:1.950000px;}
.ls12{letter-spacing:2.472000px;}
.ls5{letter-spacing:2.772000px;}
.ls16{letter-spacing:10.996200px;}
.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;}
}
.ws0{word-spacing:-27.000000px;}
.ws10c{word-spacing:-17.922000px;}
.ws13{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.450000px;}
.ws10d{word-spacing:-15.202800px;}
.ws125{word-spacing:-14.214000px;}
.ws100{word-spacing:-11.502000px;}
.ws11f{word-spacing:-9.517200px;}
.ws4d{word-spacing:-9.007350px;}
.wsad{word-spacing:-7.870500px;}
.wsd3{word-spacing:-7.674262px;}
.ws4f{word-spacing:-7.539600px;}
.ws76{word-spacing:-7.292400px;}
.wsb{word-spacing:-6.427200px;}
.ws11b{word-spacing:-6.180000px;}
.ws11e{word-spacing:-6.118200px;}
.wsde{word-spacing:-5.685600px;}
.ws14{word-spacing:-5.438400px;}
.ws112{word-spacing:-5.005800px;}
.ws115{word-spacing:-4.758600px;}
.ws128{word-spacing:-4.078800px;}
.wse0{word-spacing:-3.708000px;}
.ws39{word-spacing:-3.584400px;}
.ws30{word-spacing:-3.522600px;}
.ws6f{word-spacing:-3.460800px;}
.ws87{word-spacing:-3.337200px;}
.wse1{word-spacing:-3.213600px;}
.ws137{word-spacing:-3.090000px;}
.ws110{word-spacing:-3.028200px;}
.ws10{word-spacing:-2.976000px;}
.wse8{word-spacing:-2.784000px;}
.ws1c{word-spacing:-2.781000px;}
.wsb4{word-spacing:-2.719200px;}
.ws41{word-spacing:-2.657400px;}
.wsc5{word-spacing:-2.592000px;}
.wsb2{word-spacing:-2.538000px;}
.ws1d{word-spacing:-2.533800px;}
.ws18{word-spacing:-2.410200px;}
.wsf7{word-spacing:-2.348400px;}
.ws24{word-spacing:-2.286600px;}
.ws32{word-spacing:-2.224800px;}
.ws68{word-spacing:-2.163000px;}
.ws10b{word-spacing:-2.101200px;}
.wsb9{word-spacing:-2.052000px;}
.ws37{word-spacing:-1.977600px;}
.ws59{word-spacing:-1.915800px;}
.ws44{word-spacing:-1.854000px;}
.ws61{word-spacing:-1.730400px;}
.ws72{word-spacing:-1.728000px;}
.ws129{word-spacing:-1.606800px;}
.ws6e{word-spacing:-1.545000px;}
.ws118{word-spacing:-1.483200px;}
.ws7c{word-spacing:-1.421400px;}
.ws47{word-spacing:-1.297800px;}
.wsa7{word-spacing:-1.296000px;}
.ws8f{word-spacing:-1.174200px;}
.ws11c{word-spacing:-1.112400px;}
.ws3{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.050600px;}
.wsd6{word-spacing:-0.927000px;}
.ws84{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.803400px;}
.ws51{word-spacing:-0.741600px;}
.ws2d{word-spacing:-0.679800px;}
.ws71{word-spacing:-0.672000px;}
.ws2b{word-spacing:-0.618000px;}
.ws28{word-spacing:-0.494400px;}
.wse9{word-spacing:-0.480000px;}
.ws11a{word-spacing:-0.432600px;}
.wsc4{word-spacing:-0.378000px;}
.ws45{word-spacing:-0.370800px;}
.ws98{word-spacing:-0.336000px;}
.wsc3{word-spacing:-0.324000px;}
.ws135{word-spacing:-0.309000px;}
.wse3{word-spacing:-0.247200px;}
.ws2a{word-spacing:-0.185400px;}
.ws70{word-spacing:-0.144000px;}
.wsdf{word-spacing:-0.123600px;}
.ws46{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.wsef{word-spacing:0.061800px;}
.wsaf{word-spacing:0.108000px;}
.wsc9{word-spacing:0.123600px;}
.ws19{word-spacing:0.185400px;}
.ws57{word-spacing:0.309000px;}
.wsf6{word-spacing:0.360294px;}
.ws7f{word-spacing:0.370800px;}
.ws5c{word-spacing:0.432600px;}
.ws9a{word-spacing:0.480000px;}
.ws6a{word-spacing:0.494400px;}
.ws5b{word-spacing:0.556200px;}
.wsd0{word-spacing:0.559680px;}
.ws34{word-spacing:0.618000px;}
.ws108{word-spacing:0.741600px;}
.ws136{word-spacing:0.803400px;}
.ws22{word-spacing:0.865200px;}
.ws80{word-spacing:0.927000px;}
.wsd1{word-spacing:0.960000px;}
.ws38{word-spacing:0.988800px;}
.wse7{word-spacing:1.035408px;}
.wsa1{word-spacing:1.080000px;}
.ws2f{word-spacing:1.174200px;}
.ws130{word-spacing:1.236000px;}
.wsb7{word-spacing:1.242000px;}
.ws7a{word-spacing:1.359600px;}
.ws64{word-spacing:1.421400px;}
.ws6{word-spacing:1.500000px;}
.ws50{word-spacing:1.545000px;}
.ws9{word-spacing:1.560000px;}
.ws20{word-spacing:1.606800px;}
.wsa{word-spacing:1.620000px;}
.wsdd{word-spacing:1.668600px;}
.ws8{word-spacing:1.680000px;}
.ws48{word-spacing:1.730400px;}
.ws4e{word-spacing:1.792200px;}
.ws12a{word-spacing:1.854000px;}
.ws55{word-spacing:1.915800px;}
.ws42{word-spacing:1.977600px;}
.wsea{word-spacing:1.998000px;}
.ws78{word-spacing:2.039400px;}
.ws25{word-spacing:2.101200px;}
.ws3a{word-spacing:2.163000px;}
.wse2{word-spacing:2.224800px;}
.wsfc{word-spacing:2.286600px;}
.wsa3{word-spacing:2.322000px;}
.ws5{word-spacing:2.400000px;}
.ws36{word-spacing:2.410200px;}
.ws3b{word-spacing:2.472000px;}
.ws56{word-spacing:2.533800px;}
.ws134{word-spacing:2.595600px;}
.ws9d{word-spacing:2.657400px;}
.ws83{word-spacing:2.688000px;}
.ws77{word-spacing:2.719200px;}
.wsbb{word-spacing:2.781000px;}
.wsc8{word-spacing:2.842800px;}
.ws79{word-spacing:2.904600px;}
.ws126{word-spacing:2.966400px;}
.ws54{word-spacing:3.028200px;}
.wsd8{word-spacing:3.090000px;}
.ws1f{word-spacing:3.151800px;}
.ws3c{word-spacing:3.213600px;}
.ws89{word-spacing:3.275400px;}
.wsb3{word-spacing:3.337200px;}
.wsf4{word-spacing:3.399000px;}
.ws53{word-spacing:3.460800px;}
.ws4b{word-spacing:3.584400px;}
.ws12f{word-spacing:3.646200px;}
.wsa2{word-spacing:3.672000px;}
.ws88{word-spacing:3.708000px;}
.ws90{word-spacing:3.769800px;}
.ws91{word-spacing:3.831600px;}
.wsfe{word-spacing:3.893400px;}
.ws2e{word-spacing:3.955200px;}
.ws23{word-spacing:4.017000px;}
.wsdb{word-spacing:4.078800px;}
.ws6d{word-spacing:4.140600px;}
.wsda{word-spacing:4.264200px;}
.wsfd{word-spacing:4.326000px;}
.ws60{word-spacing:4.387800px;}
.wsb1{word-spacing:4.428000px;}
.wse6{word-spacing:4.449600px;}
.ws3d{word-spacing:4.511400px;}
.wsc2{word-spacing:4.573200px;}
.wsa4{word-spacing:4.590000px;}
.ws119{word-spacing:4.635000px;}
.ws73{word-spacing:4.656000px;}
.ws11{word-spacing:4.704000px;}
.wsd{word-spacing:4.752000px;}
.ws124{word-spacing:4.758600px;}
.ws9f{word-spacing:4.820400px;}
.ws5f{word-spacing:4.882200px;}
.wsf8{word-spacing:4.944000px;}
.ws29{word-spacing:5.005800px;}
.ws31{word-spacing:5.129400px;}
.wse4{word-spacing:5.191200px;}
.wsd4{word-spacing:5.253000px;}
.ws94{word-spacing:5.314800px;}
.wsb8{word-spacing:5.346000px;}
.ws96{word-spacing:5.376600px;}
.ws81{word-spacing:5.400000px;}
.ws40{word-spacing:5.438400px;}
.ws4c{word-spacing:5.500200px;}
.ws8e{word-spacing:5.562000px;}
.wsf0{word-spacing:5.623800px;}
.wsab{word-spacing:5.670000px;}
.wsf3{word-spacing:5.685600px;}
.wsa6{word-spacing:5.724000px;}
.ws21{word-spacing:5.747400px;}
.ws3e{word-spacing:5.809200px;}
.ws10f{word-spacing:5.871000px;}
.ws12d{word-spacing:5.932800px;}
.ws7b{word-spacing:5.994600px;}
.wsbc{word-spacing:6.048000px;}
.wsf2{word-spacing:6.056400px;}
.ws16{word-spacing:6.118200px;}
.wsbe{word-spacing:6.180000px;}
.wsc7{word-spacing:6.241800px;}
.wsba{word-spacing:6.318000px;}
.wse5{word-spacing:6.365400px;}
.wsce{word-spacing:6.427200px;}
.wsac{word-spacing:6.432000px;}
.wsdc{word-spacing:6.550800px;}
.ws117{word-spacing:6.612600px;}
.ws4a{word-spacing:6.736200px;}
.ws43{word-spacing:6.798000px;}
.ws82{word-spacing:6.858000px;}
.ws67{word-spacing:6.859800px;}
.wsc6{word-spacing:6.983400px;}
.wsc{word-spacing:6.996000px;}
.ws52{word-spacing:7.045200px;}
.ws97{word-spacing:7.056000px;}
.ws4{word-spacing:7.080000px;}
.ws123{word-spacing:7.107000px;}
.ws131{word-spacing:7.168800px;}
.ws132{word-spacing:7.230600px;}
.ws92{word-spacing:7.292400px;}
.ws5d{word-spacing:7.354200px;}
.ws75{word-spacing:7.416000px;}
.ws9e{word-spacing:7.477800px;}
.wsed{word-spacing:7.539600px;}
.ws9b{word-spacing:7.601400px;}
.ws74{word-spacing:7.725000px;}
.ws1b{word-spacing:7.786800px;}
.ws12b{word-spacing:7.848600px;}
.ws1a{word-spacing:7.910400px;}
.wsb0{word-spacing:7.938000px;}
.ws63{word-spacing:8.034000px;}
.wsa8{word-spacing:8.095800px;}
.ws35{word-spacing:8.157600px;}
.wsa9{word-spacing:8.219400px;}
.wscc{word-spacing:8.404800px;}
.ws49{word-spacing:8.466600px;}
.wsae{word-spacing:8.478000px;}
.ws11d{word-spacing:8.528400px;}
.ws101{word-spacing:8.713800px;}
.wsaa{word-spacing:8.748000px;}
.ws65{word-spacing:8.775600px;}
.ws66{word-spacing:8.899200px;}
.wscd{word-spacing:8.961000px;}
.ws1e{word-spacing:9.084600px;}
.ws2c{word-spacing:9.146400px;}
.ws10e{word-spacing:9.270000px;}
.wscb{word-spacing:9.331800px;}
.wsf{word-spacing:9.408000px;}
.ws5e{word-spacing:9.455400px;}
.ws95{word-spacing:9.517200px;}
.ws102{word-spacing:9.640800px;}
.wsd9{word-spacing:9.702600px;}
.ws7d{word-spacing:9.764400px;}
.ws93{word-spacing:9.826200px;}
.wsff{word-spacing:9.949800px;}
.ws58{word-spacing:10.073400px;}
.wsfa{word-spacing:10.135200px;}
.wsbf{word-spacing:10.197000px;}
.ws86{word-spacing:10.382400px;}
.ws122{word-spacing:10.506000px;}
.wsc1{word-spacing:10.629600px;}
.ws114{word-spacing:10.938600px;}
.ws7{word-spacing:10.980000px;}
.ws26{word-spacing:11.000400px;}
.ws99{word-spacing:11.280000px;}
.wsbd{word-spacing:11.371200px;}
.wsf5{word-spacing:11.433000px;}
.wse{word-spacing:11.616000px;}
.ws105{word-spacing:11.742000px;}
.ws8d{word-spacing:11.803800px;}
.ws103{word-spacing:11.927400px;}
.ws10a{word-spacing:11.989200px;}
.ws15{word-spacing:12.051000px;}
.ws8b{word-spacing:12.174600px;}
.ws8c{word-spacing:12.236400px;}
.wsa5{word-spacing:12.312000px;}
.wsfb{word-spacing:12.607200px;}
.ws7e{word-spacing:12.669000px;}
.ws69{word-spacing:12.730800px;}
.ws9c{word-spacing:12.854400px;}
.ws106{word-spacing:13.101600px;}
.wsec{word-spacing:13.163400px;}
.ws127{word-spacing:13.225200px;}
.ws107{word-spacing:13.348800px;}
.wsd5{word-spacing:13.596000px;}
.ws133{word-spacing:13.719600px;}
.ws113{word-spacing:13.781400px;}
.wsee{word-spacing:14.275800px;}
.ws8a{word-spacing:14.461200px;}
.ws121{word-spacing:14.832000px;}
.wsa0{word-spacing:14.850000px;}
.ws116{word-spacing:15.017400px;}
.ws109{word-spacing:15.141000px;}
.wsca{word-spacing:15.388200px;}
.ws85{word-spacing:15.820800px;}
.wscf{word-spacing:15.882600px;}
.ws120{word-spacing:15.944400px;}
.ws62{word-spacing:16.006200px;}
.ws3f{word-spacing:16.315200px;}
.wsc0{word-spacing:16.562400px;}
.ws5a{word-spacing:17.674800px;}
.wsf9{word-spacing:17.736600px;}
.wsf1{word-spacing:17.952000px;}
.ws33{word-spacing:18.169200px;}
.ws104{word-spacing:18.910800px;}
.wsd7{word-spacing:19.405200px;}
.ws111{word-spacing:21.135600px;}
.ws6b{word-spacing:21.186000px;}
.wseb{word-spacing:22.989600px;}
.ws6c{word-spacing:24.225600px;}
.wsb5{word-spacing:25.399800px;}
.wsb6{word-spacing:27.624600px;}
.ws12c{word-spacing:33.804600px;}
.ws12e{word-spacing:36.276600px;}
.ws12{word-spacing:435.014400px;}
.wsd2{word-spacing:441.008400px;}
._15{margin-left:-9.282360px;}
._14{margin-left:-7.753260px;}
._10{margin-left:-6.451920px;}
._3{margin-left:-4.579380px;}
._1{margin-left:-3.360000px;}
._0{margin-left:-1.549800px;}
._2{width:1.165500px;}
._4{width:2.233500px;}
._5{width:3.269220px;}
._6{width:4.307460px;}
._7{width:5.759760px;}
._c{width:7.601400px;}
._e{width:8.923920px;}
._f{width:10.289700px;}
._9{width:12.013920px;}
._d{width:13.169580px;}
._12{width:14.430300px;}
._11{width:16.138260px;}
._8{width:17.260740px;}
._b{width:19.584420px;}
._a{width:20.696820px;}
._13{width:26.530740px;}
._16{width:33.697800px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fsc{font-size:31.482000px;}
.fsb{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs2{font-size:62.964000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y24{bottom:76.500000px;}
.yae{bottom:80.495850px;}
.y86{bottom:80.496000px;}
.y73{bottom:82.376100px;}
.y4a{bottom:84.869100px;}
.y13d{bottom:88.856100px;}
.y23{bottom:90.000000px;}
.y177{bottom:92.636100px;}
.y10d{bottom:93.996000px;}
.y72{bottom:100.916100px;}
.y49{bottom:103.409100px;}
.y22{bottom:103.500000px;}
.y125{bottom:104.336100px;}
.y13c{bottom:107.396100px;}
.y127{bottom:107.496000px;}
.y164{bottom:110.713800px;}
.y176{bottom:111.176100px;}
.y21{bottom:117.000000px;}
.y71{bottom:119.456100px;}
.yb6{bottom:120.996000px;}
.yad{bottom:121.269750px;}
.y48{bottom:121.949100px;}
.y124{bottom:122.876100px;}
.y13b{bottom:125.936100px;}
.y163{bottom:129.253950px;}
.y13e{bottom:129.716100px;}
.y20{bottom:130.500000px;}
.yc5{bottom:134.496000px;}
.y70{bottom:137.996100px;}
.yac{bottom:139.809750px;}
.y47{bottom:140.489100px;}
.yc0{bottom:141.416100px;}
.y1f{bottom:144.000000px;}
.y13a{bottom:144.476100px;}
.y10c{bottom:144.523500px;}
.y85{bottom:145.736100px;}
.y162{bottom:147.793800px;}
.y126{bottom:148.256100px;}
.y6f{bottom:156.536100px;}
.y1e{bottom:157.500000px;}
.ybf{bottom:157.616100px;}
.yab{bottom:158.349750px;}
.y46{bottom:159.029100px;}
.y123{bottom:159.956100px;}
.y139{bottom:163.016100px;}
.y10b{bottom:163.063500px;}
.y84{bottom:164.276100px;}
.y161{bottom:166.333950px;}
.yc4{bottom:166.796100px;}
.ye7{bottom:173.353950px;}
.ybe{bottom:173.816100px;}
.y1d{bottom:174.996000px;}
.y6e{bottom:175.076100px;}
.yaa{bottom:176.889750px;}
.y45{bottom:177.569100px;}
.y122{bottom:178.496100px;}
.y138{bottom:181.556100px;}
.y10a{bottom:181.603500px;}
.y83{bottom:182.816100px;}
.y1c{bottom:184.500000px;}
.y160{bottom:184.873800px;}
.yc3{bottom:185.336100px;}
.ye6{bottom:189.553950px;}
.ybd{bottom:190.016100px;}
.y6d{bottom:193.616100px;}
.ya9{bottom:195.429750px;}
.y44{bottom:196.109100px;}
.y121{bottom:197.036100px;}
.y1b{bottom:198.000000px;}
.y137{bottom:200.096100px;}
.y109{bottom:200.143500px;}
.y82{bottom:201.356100px;}
.y1a{bottom:201.996000px;}
.y15f{bottom:203.413950px;}
.yc2{bottom:203.876100px;}
.ybc{bottom:206.216100px;}
.y6c{bottom:212.156100px;}
.ya8{bottom:213.969750px;}
.y43{bottom:214.649100px;}
.y120{bottom:215.576100px;}
.y136{bottom:218.636100px;}
.y108{bottom:218.683500px;}
.y81{bottom:219.896100px;}
.y15e{bottom:221.953800px;}
.yc1{bottom:222.416100px;}
.ye5{bottom:224.293950px;}
.y6b{bottom:230.696100px;}
.ya7{bottom:232.509750px;}
.y42{bottom:233.189100px;}
.y11f{bottom:234.116100px;}
.y135{bottom:237.176100px;}
.y107{bottom:237.223500px;}
.y80{bottom:238.436100px;}
.y15d{bottom:240.493950px;}
.ybb{bottom:240.956100px;}
.ye4{bottom:242.833950px;}
.y6a{bottom:249.236100px;}
.y19{bottom:249.398550px;}
.ya6{bottom:251.049750px;}
.y41{bottom:251.729100px;}
.y11e{bottom:252.656100px;}
.y134{bottom:255.716100px;}
.y7f{bottom:256.976100px;}
.y15c{bottom:259.033800px;}
.yba{bottom:259.496100px;}
.ye3{bottom:261.373950px;}
.y69{bottom:267.776100px;}
.ya5{bottom:269.589750px;}
.y40{bottom:270.269100px;}
.y11d{bottom:271.196100px;}
.y106{bottom:271.963500px;}
.y133{bottom:274.256100px;}
.y7e{bottom:275.516100px;}
.yb5{bottom:276.776100px;}
.y15b{bottom:277.573950px;}
.yb9{bottom:278.036100px;}
.ye2{bottom:279.913950px;}
.y18{bottom:285.938550px;}
.y68{bottom:286.316100px;}
.ya4{bottom:288.129750px;}
.y105{bottom:288.163500px;}
.y3f{bottom:288.809100px;}
.y11c{bottom:289.736100px;}
.y132{bottom:292.796100px;}
.y7d{bottom:294.056100px;}
.y15a{bottom:296.113800px;}
.yb8{bottom:296.576100px;}
.ye1{bottom:298.453950px;}
.y17{bottom:303.938550px;}
.y104{bottom:304.363500px;}
.y67{bottom:304.856100px;}
.ya3{bottom:306.669750px;}
.y3e{bottom:307.349100px;}
.y11b{bottom:308.276100px;}
.y131{bottom:311.336100px;}
.y7c{bottom:312.596100px;}
.y159{bottom:314.653950px;}
.yb7{bottom:315.116100px;}
.ye0{bottom:316.993950px;}
.y103{bottom:320.563500px;}
.y16{bottom:321.938550px;}
.y66{bottom:323.396100px;}
.ya2{bottom:325.209750px;}
.y3d{bottom:325.889100px;}
.y11a{bottom:326.816100px;}
.y130{bottom:329.876100px;}
.y7b{bottom:331.136100px;}
.y158{bottom:333.193800px;}
.yb4{bottom:333.656100px;}
.ydf{bottom:335.533950px;}
.y102{bottom:336.763500px;}
.y15{bottom:339.938550px;}
.y65{bottom:341.936100px;}
.ya1{bottom:343.749750px;}
.y3c{bottom:344.429100px;}
.y119{bottom:345.356100px;}
.y12f{bottom:348.416100px;}
.y7a{bottom:349.676100px;}
.y157{bottom:351.733950px;}
.yb3{bottom:352.196100px;}
.y101{bottom:352.963500px;}
.y14{bottom:357.938550px;}
.y64{bottom:360.476100px;}
.ya0{bottom:362.289750px;}
.y3b{bottom:362.969100px;}
.y118{bottom:363.896100px;}
.y12e{bottom:366.956100px;}
.y79{bottom:368.216100px;}
.y156{bottom:370.273800px;}
.yde{bottom:370.273950px;}
.yb2{bottom:370.736100px;}
.y13{bottom:375.938550px;}
.y175{bottom:379.016100px;}
.y9f{bottom:380.829750px;}
.y3a{bottom:381.509100px;}
.y117{bottom:382.436100px;}
.y12d{bottom:385.496100px;}
.ydd{bottom:386.473950px;}
.y78{bottom:386.756100px;}
.y100{bottom:387.703500px;}
.y63{bottom:388.016100px;}
.y155{bottom:388.813800px;}
.yb1{bottom:389.276100px;}
.y12{bottom:393.938550px;}
.y174{bottom:397.556100px;}
.y9e{bottom:399.369750px;}
.y39{bottom:400.049100px;}
.y116{bottom:400.976100px;}
.ydc{bottom:402.673950px;}
.y12c{bottom:404.036100px;}
.y77{bottom:405.296100px;}
.yff{bottom:406.243500px;}
.y154{bottom:407.353800px;}
.yb0{bottom:407.816100px;}
.y11{bottom:411.938550px;}
.y173{bottom:416.096100px;}
.y9d{bottom:417.909750px;}
.y38{bottom:418.589100px;}
.ydb{bottom:418.873950px;}
.y115{bottom:419.516100px;}
.y12b{bottom:422.576100px;}
.y76{bottom:423.836100px;}
.yfe{bottom:424.783500px;}
.y153{bottom:425.893800px;}
.yaf{bottom:426.356100px;}
.y10{bottom:429.938550px;}
.y172{bottom:434.636100px;}
.yda{bottom:435.073950px;}
.y9c{bottom:436.449750px;}
.y37{bottom:437.129100px;}
.y114{bottom:438.056100px;}
.y12a{bottom:441.116100px;}
.y75{bottom:442.376100px;}
.yfd{bottom:443.323500px;}
.y152{bottom:444.433800px;}
.y62{bottom:444.896100px;}
.yf{bottom:447.938550px;}
.yd9{bottom:451.273950px;}
.y171{bottom:453.176100px;}
.y9b{bottom:454.989750px;}
.y36{bottom:455.669100px;}
.y113{bottom:456.596100px;}
.yfc{bottom:461.863500px;}
.y151{bottom:462.973800px;}
.y61{bottom:463.436100px;}
.ye{bottom:465.938550px;}
.yd8{bottom:467.473950px;}
.y170{bottom:471.716100px;}
.y9a{bottom:473.529750px;}
.y35{bottom:474.208950px;}
.y129{bottom:479.456100px;}
.yfb{bottom:480.403500px;}
.y74{bottom:480.716100px;}
.y150{bottom:481.513800px;}
.y60{bottom:481.976100px;}
.yd7{bottom:483.673950px;}
.y16f{bottom:490.256100px;}
.yd{bottom:491.438550px;}
.y99{bottom:492.069750px;}
.y34{bottom:492.749100px;}
.y112{bottom:493.676100px;}
.yfa{bottom:498.943500px;}
.y128{bottom:499.256100px;}
.yd6{bottom:499.873950px;}
.y14f{bottom:500.053950px;}
.y5f{bottom:500.516100px;}
.y16e{bottom:508.796100px;}
.y111{bottom:509.876100px;}
.y98{bottom:510.609750px;}
.yf9{bottom:517.483500px;}
.y14e{bottom:518.593800px;}
.y5e{bottom:519.056100px;}
.y110{bottom:526.076100px;}
.y16d{bottom:527.336100px;}
.y97{bottom:529.149750px;}
.y33{bottom:529.829100px;}
.yd5{bottom:534.613950px;}
.yf8{bottom:536.023500px;}
.y14d{bottom:537.133800px;}
.y5d{bottom:537.596100px;}
.y10f{bottom:542.276100px;}
.y16c{bottom:545.876100px;}
.y96{bottom:547.689750px;}
.yc{bottom:550.238550px;}
.yd4{bottom:553.153950px;}
.yf7{bottom:554.563500px;}
.y14c{bottom:555.673800px;}
.y5c{bottom:556.136100px;}
.y10e{bottom:558.476100px;}
.y16b{bottom:564.416100px;}
.y95{bottom:566.229750px;}
.yd3{bottom:571.693950px;}
.yb{bottom:571.838550px;}
.yf6{bottom:573.103500px;}
.y14b{bottom:574.213950px;}
.y5b{bottom:574.676100px;}
.y16a{bottom:582.956100px;}
.y94{bottom:584.769750px;}
.y32{bottom:585.629100px;}
.yd2{bottom:590.233950px;}
.yf5{bottom:591.643500px;}
.y14a{bottom:592.753950px;}
.y5a{bottom:593.216100px;}
.y169{bottom:601.496100px;}
.y93{bottom:603.309750px;}
.ya{bottom:607.538550px;}
.yd1{bottom:608.773950px;}
.yf4{bottom:610.183500px;}
.y149{bottom:611.293800px;}
.y59{bottom:611.756100px;}
.y168{bottom:620.036100px;}
.y92{bottom:621.849750px;}
.y31{bottom:622.708950px;}
.yd0{bottom:627.313950px;}
.yf3{bottom:628.723500px;}
.y148{bottom:629.833800px;}
.y58{bottom:630.296100px;}
.y9{bottom:634.238550px;}
.y167{bottom:638.576100px;}
.y91{bottom:640.389750px;}
.y30{bottom:641.249100px;}
.ycf{bottom:645.853950px;}
.yf2{bottom:647.263500px;}
.y147{bottom:648.373800px;}
.y57{bottom:648.836100px;}
.y166{bottom:657.116100px;}
.y90{bottom:658.929750px;}
.y2f{bottom:659.789100px;}
.yce{bottom:664.393950px;}
.yf1{bottom:665.803500px;}
.y146{bottom:666.913950px;}
.y56{bottom:667.376100px;}
.y8f{bottom:677.469750px;}
.y2e{bottom:678.329100px;}
.ycd{bottom:682.933950px;}
.yf0{bottom:684.343500px;}
.y165{bottom:684.656100px;}
.y145{bottom:685.453800px;}
.y55{bottom:685.916100px;}
.y8{bottom:695.438550px;}
.y8e{bottom:696.009750px;}
.y2d{bottom:696.869100px;}
.ycc{bottom:701.473950px;}
.y144{bottom:703.993950px;}
.y54{bottom:704.456100px;}
.y8d{bottom:714.549750px;}
.y2c{bottom:715.409100px;}
.ycb{bottom:720.013950px;}
.yef{bottom:721.423500px;}
.y7{bottom:722.438550px;}
.y143{bottom:722.533800px;}
.y53{bottom:722.996100px;}
.y8c{bottom:733.089750px;}
.y2b{bottom:733.949100px;}
.yee{bottom:737.623500px;}
.yca{bottom:738.553950px;}
.y142{bottom:741.073950px;}
.y52{bottom:741.536100px;}
.y6{bottom:749.438550px;}
.y8b{bottom:751.629750px;}
.y2a{bottom:752.489100px;}
.yed{bottom:753.823500px;}
.yc9{bottom:757.093950px;}
.y141{bottom:759.613800px;}
.y51{bottom:760.076100px;}
.yec{bottom:770.023500px;}
.y8a{bottom:770.169750px;}
.y29{bottom:771.028950px;}
.yc8{bottom:775.633950px;}
.y140{bottom:778.153800px;}
.y50{bottom:778.616100px;}
.yeb{bottom:786.223500px;}
.y89{bottom:788.709750px;}
.y28{bottom:789.569100px;}
.y13f{bottom:796.693950px;}
.y4f{bottom:797.156100px;}
.yea{bottom:802.423500px;}
.y88{bottom:807.249900px;}
.y27{bottom:808.109100px;}
.y5{bottom:812.438550px;}
.yc7{bottom:813.973950px;}
.y4e{bottom:815.696100px;}
.ye9{bottom:818.623500px;}
.yc6{bottom:833.773950px;}
.y26{bottom:834.149100px;}
.y4d{bottom:834.236100px;}
.y87{bottom:834.789900px;}
.ye8{bottom:834.823500px;}
.y4{bottom:839.438550px;}
.y3{bottom:866.438550px;}
.y4c{bottom:893.470500px;}
.y4b{bottom:905.470500px;}
.y25{bottom:906.525150px;}
.h9{height:24.554320px;}
.hb{height:26.133187px;}
.h2{height:36.852539px;}
.he{height:37.019531px;}
.hf{height:39.564387px;}
.hd{height:40.634766px;}
.hc{height:41.660156px;}
.ha{height:42.117188px;}
.h10{height:42.909961px;}
.h6{height:44.730469px;}
.h5{height:47.381836px;}
.h7{height:52.646484px;}
.h8{height:54.225879px;}
.h4{height:73.705078px;}
.h3{height:94.763672px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x6{left:55.062900px;}
.x7{left:56.976450px;}
.xc{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x8{left:85.062900px;}
.x4{left:90.694500px;}
.x5{left:99.310950px;}
.x3{left:106.663050px;}
.xa{left:117.432300px;}
.xb{left:240.105600px;}
.x9{left:541.222350px;}
.xd{left:542.224350px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v4{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.984000pt;}
.v5{vertical-align:18.292800pt;}
.v2{vertical-align:24.864000pt;}
.v1{vertical-align:31.968533pt;}
.lse{letter-spacing:-1.776000pt;}
.ls14{letter-spacing:-1.648000pt;}
.ls3{letter-spacing:-1.493333pt;}
.lsf{letter-spacing:-1.184967pt;}
.ls9{letter-spacing:-1.098667pt;}
.ls10{letter-spacing:-0.920363pt;}
.lsd{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.549333pt;}
.lsc{letter-spacing:-0.497493pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls11{letter-spacing:-0.320261pt;}
.ls13{letter-spacing:-0.219733pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000267pt;}
.lsb{letter-spacing:0.000533pt;}
.ls15{letter-spacing:0.008000pt;}
.ls0{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.560000pt;}
.ls6{letter-spacing:1.717333pt;}
.ls8{letter-spacing:1.733333pt;}
.ls12{letter-spacing:2.197333pt;}
.ls5{letter-spacing:2.464000pt;}
.ls16{letter-spacing:9.774400pt;}
.ws0{word-spacing:-24.000000pt;}
.ws10c{word-spacing:-15.930667pt;}
.ws13{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.733333pt;}
.ws10d{word-spacing:-13.513600pt;}
.ws125{word-spacing:-12.634667pt;}
.ws100{word-spacing:-10.224000pt;}
.ws11f{word-spacing:-8.459733pt;}
.ws4d{word-spacing:-8.006533pt;}
.wsad{word-spacing:-6.996000pt;}
.wsd3{word-spacing:-6.821566pt;}
.ws4f{word-spacing:-6.701867pt;}
.ws76{word-spacing:-6.482133pt;}
.wsb{word-spacing:-5.713067pt;}
.ws11b{word-spacing:-5.493333pt;}
.ws11e{word-spacing:-5.438400pt;}
.wsde{word-spacing:-5.053867pt;}
.ws14{word-spacing:-4.834133pt;}
.ws112{word-spacing:-4.449600pt;}
.ws115{word-spacing:-4.229867pt;}
.ws128{word-spacing:-3.625600pt;}
.wse0{word-spacing:-3.296000pt;}
.ws39{word-spacing:-3.186133pt;}
.ws30{word-spacing:-3.131200pt;}
.ws6f{word-spacing:-3.076267pt;}
.ws87{word-spacing:-2.966400pt;}
.wse1{word-spacing:-2.856533pt;}
.ws137{word-spacing:-2.746667pt;}
.ws110{word-spacing:-2.691733pt;}
.ws10{word-spacing:-2.645333pt;}
.wse8{word-spacing:-2.474667pt;}
.ws1c{word-spacing:-2.472000pt;}
.wsb4{word-spacing:-2.417067pt;}
.ws41{word-spacing:-2.362133pt;}
.wsc5{word-spacing:-2.304000pt;}
.wsb2{word-spacing:-2.256000pt;}
.ws1d{word-spacing:-2.252267pt;}
.ws18{word-spacing:-2.142400pt;}
.wsf7{word-spacing:-2.087467pt;}
.ws24{word-spacing:-2.032533pt;}
.ws32{word-spacing:-1.977600pt;}
.ws68{word-spacing:-1.922667pt;}
.ws10b{word-spacing:-1.867733pt;}
.wsb9{word-spacing:-1.824000pt;}
.ws37{word-spacing:-1.757867pt;}
.ws59{word-spacing:-1.702933pt;}
.ws44{word-spacing:-1.648000pt;}
.ws61{word-spacing:-1.538133pt;}
.ws72{word-spacing:-1.536000pt;}
.ws129{word-spacing:-1.428267pt;}
.ws6e{word-spacing:-1.373333pt;}
.ws118{word-spacing:-1.318400pt;}
.ws7c{word-spacing:-1.263467pt;}
.ws47{word-spacing:-1.153600pt;}
.wsa7{word-spacing:-1.152000pt;}
.ws8f{word-spacing:-1.043733pt;}
.ws11c{word-spacing:-0.988800pt;}
.ws3{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.933867pt;}
.wsd6{word-spacing:-0.824000pt;}
.ws84{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.714133pt;}
.ws51{word-spacing:-0.659200pt;}
.ws2d{word-spacing:-0.604267pt;}
.ws71{word-spacing:-0.597333pt;}
.ws2b{word-spacing:-0.549333pt;}
.ws28{word-spacing:-0.439467pt;}
.wse9{word-spacing:-0.426667pt;}
.ws11a{word-spacing:-0.384533pt;}
.wsc4{word-spacing:-0.336000pt;}
.ws45{word-spacing:-0.329600pt;}
.ws98{word-spacing:-0.298667pt;}
.wsc3{word-spacing:-0.288000pt;}
.ws135{word-spacing:-0.274667pt;}
.wse3{word-spacing:-0.219733pt;}
.ws2a{word-spacing:-0.164800pt;}
.ws70{word-spacing:-0.128000pt;}
.wsdf{word-spacing:-0.109867pt;}
.ws46{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.wsef{word-spacing:0.054933pt;}
.wsaf{word-spacing:0.096000pt;}
.wsc9{word-spacing:0.109867pt;}
.ws19{word-spacing:0.164800pt;}
.ws57{word-spacing:0.274667pt;}
.wsf6{word-spacing:0.320261pt;}
.ws7f{word-spacing:0.329600pt;}
.ws5c{word-spacing:0.384533pt;}
.ws9a{word-spacing:0.426667pt;}
.ws6a{word-spacing:0.439467pt;}
.ws5b{word-spacing:0.494400pt;}
.wsd0{word-spacing:0.497493pt;}
.ws34{word-spacing:0.549333pt;}
.ws108{word-spacing:0.659200pt;}
.ws136{word-spacing:0.714133pt;}
.ws22{word-spacing:0.769067pt;}
.ws80{word-spacing:0.824000pt;}
.wsd1{word-spacing:0.853333pt;}
.ws38{word-spacing:0.878933pt;}
.wse7{word-spacing:0.920363pt;}
.wsa1{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.043733pt;}
.ws130{word-spacing:1.098667pt;}
.wsb7{word-spacing:1.104000pt;}
.ws7a{word-spacing:1.208533pt;}
.ws64{word-spacing:1.263467pt;}
.ws6{word-spacing:1.333333pt;}
.ws50{word-spacing:1.373333pt;}
.ws9{word-spacing:1.386667pt;}
.ws20{word-spacing:1.428267pt;}
.wsa{word-spacing:1.440000pt;}
.wsdd{word-spacing:1.483200pt;}
.ws8{word-spacing:1.493333pt;}
.ws48{word-spacing:1.538133pt;}
.ws4e{word-spacing:1.593067pt;}
.ws12a{word-spacing:1.648000pt;}
.ws55{word-spacing:1.702933pt;}
.ws42{word-spacing:1.757867pt;}
.wsea{word-spacing:1.776000pt;}
.ws78{word-spacing:1.812800pt;}
.ws25{word-spacing:1.867733pt;}
.ws3a{word-spacing:1.922667pt;}
.wse2{word-spacing:1.977600pt;}
.wsfc{word-spacing:2.032533pt;}
.wsa3{word-spacing:2.064000pt;}
.ws5{word-spacing:2.133333pt;}
.ws36{word-spacing:2.142400pt;}
.ws3b{word-spacing:2.197333pt;}
.ws56{word-spacing:2.252267pt;}
.ws134{word-spacing:2.307200pt;}
.ws9d{word-spacing:2.362133pt;}
.ws83{word-spacing:2.389333pt;}
.ws77{word-spacing:2.417067pt;}
.wsbb{word-spacing:2.472000pt;}
.wsc8{word-spacing:2.526933pt;}
.ws79{word-spacing:2.581867pt;}
.ws126{word-spacing:2.636800pt;}
.ws54{word-spacing:2.691733pt;}
.wsd8{word-spacing:2.746667pt;}
.ws1f{word-spacing:2.801600pt;}
.ws3c{word-spacing:2.856533pt;}
.ws89{word-spacing:2.911467pt;}
.wsb3{word-spacing:2.966400pt;}
.wsf4{word-spacing:3.021333pt;}
.ws53{word-spacing:3.076267pt;}
.ws4b{word-spacing:3.186133pt;}
.ws12f{word-spacing:3.241067pt;}
.wsa2{word-spacing:3.264000pt;}
.ws88{word-spacing:3.296000pt;}
.ws90{word-spacing:3.350933pt;}
.ws91{word-spacing:3.405867pt;}
.wsfe{word-spacing:3.460800pt;}
.ws2e{word-spacing:3.515733pt;}
.ws23{word-spacing:3.570667pt;}
.wsdb{word-spacing:3.625600pt;}
.ws6d{word-spacing:3.680533pt;}
.wsda{word-spacing:3.790400pt;}
.wsfd{word-spacing:3.845333pt;}
.ws60{word-spacing:3.900267pt;}
.wsb1{word-spacing:3.936000pt;}
.wse6{word-spacing:3.955200pt;}
.ws3d{word-spacing:4.010133pt;}
.wsc2{word-spacing:4.065067pt;}
.wsa4{word-spacing:4.080000pt;}
.ws119{word-spacing:4.120000pt;}
.ws73{word-spacing:4.138667pt;}
.ws11{word-spacing:4.181333pt;}
.wsd{word-spacing:4.224000pt;}
.ws124{word-spacing:4.229867pt;}
.ws9f{word-spacing:4.284800pt;}
.ws5f{word-spacing:4.339733pt;}
.wsf8{word-spacing:4.394667pt;}
.ws29{word-spacing:4.449600pt;}
.ws31{word-spacing:4.559467pt;}
.wse4{word-spacing:4.614400pt;}
.wsd4{word-spacing:4.669333pt;}
.ws94{word-spacing:4.724267pt;}
.wsb8{word-spacing:4.752000pt;}
.ws96{word-spacing:4.779200pt;}
.ws81{word-spacing:4.800000pt;}
.ws40{word-spacing:4.834133pt;}
.ws4c{word-spacing:4.889067pt;}
.ws8e{word-spacing:4.944000pt;}
.wsf0{word-spacing:4.998933pt;}
.wsab{word-spacing:5.040000pt;}
.wsf3{word-spacing:5.053867pt;}
.wsa6{word-spacing:5.088000pt;}
.ws21{word-spacing:5.108800pt;}
.ws3e{word-spacing:5.163733pt;}
.ws10f{word-spacing:5.218667pt;}
.ws12d{word-spacing:5.273600pt;}
.ws7b{word-spacing:5.328533pt;}
.wsbc{word-spacing:5.376000pt;}
.wsf2{word-spacing:5.383467pt;}
.ws16{word-spacing:5.438400pt;}
.wsbe{word-spacing:5.493333pt;}
.wsc7{word-spacing:5.548267pt;}
.wsba{word-spacing:5.616000pt;}
.wse5{word-spacing:5.658133pt;}
.wsce{word-spacing:5.713067pt;}
.wsac{word-spacing:5.717333pt;}
.wsdc{word-spacing:5.822933pt;}
.ws117{word-spacing:5.877867pt;}
.ws4a{word-spacing:5.987733pt;}
.ws43{word-spacing:6.042667pt;}
.ws82{word-spacing:6.096000pt;}
.ws67{word-spacing:6.097600pt;}
.wsc6{word-spacing:6.207467pt;}
.wsc{word-spacing:6.218667pt;}
.ws52{word-spacing:6.262400pt;}
.ws97{word-spacing:6.272000pt;}
.ws4{word-spacing:6.293333pt;}
.ws123{word-spacing:6.317333pt;}
.ws131{word-spacing:6.372267pt;}
.ws132{word-spacing:6.427200pt;}
.ws92{word-spacing:6.482133pt;}
.ws5d{word-spacing:6.537067pt;}
.ws75{word-spacing:6.592000pt;}
.ws9e{word-spacing:6.646933pt;}
.wsed{word-spacing:6.701867pt;}
.ws9b{word-spacing:6.756800pt;}
.ws74{word-spacing:6.866667pt;}
.ws1b{word-spacing:6.921600pt;}
.ws12b{word-spacing:6.976533pt;}
.ws1a{word-spacing:7.031467pt;}
.wsb0{word-spacing:7.056000pt;}
.ws63{word-spacing:7.141333pt;}
.wsa8{word-spacing:7.196267pt;}
.ws35{word-spacing:7.251200pt;}
.wsa9{word-spacing:7.306133pt;}
.wscc{word-spacing:7.470933pt;}
.ws49{word-spacing:7.525867pt;}
.wsae{word-spacing:7.536000pt;}
.ws11d{word-spacing:7.580800pt;}
.ws101{word-spacing:7.745600pt;}
.wsaa{word-spacing:7.776000pt;}
.ws65{word-spacing:7.800533pt;}
.ws66{word-spacing:7.910400pt;}
.wscd{word-spacing:7.965333pt;}
.ws1e{word-spacing:8.075200pt;}
.ws2c{word-spacing:8.130133pt;}
.ws10e{word-spacing:8.240000pt;}
.wscb{word-spacing:8.294933pt;}
.wsf{word-spacing:8.362667pt;}
.ws5e{word-spacing:8.404800pt;}
.ws95{word-spacing:8.459733pt;}
.ws102{word-spacing:8.569600pt;}
.wsd9{word-spacing:8.624533pt;}
.ws7d{word-spacing:8.679467pt;}
.ws93{word-spacing:8.734400pt;}
.wsff{word-spacing:8.844267pt;}
.ws58{word-spacing:8.954133pt;}
.wsfa{word-spacing:9.009067pt;}
.wsbf{word-spacing:9.064000pt;}
.ws86{word-spacing:9.228800pt;}
.ws122{word-spacing:9.338667pt;}
.wsc1{word-spacing:9.448533pt;}
.ws114{word-spacing:9.723200pt;}
.ws7{word-spacing:9.760000pt;}
.ws26{word-spacing:9.778133pt;}
.ws99{word-spacing:10.026667pt;}
.wsbd{word-spacing:10.107733pt;}
.wsf5{word-spacing:10.162667pt;}
.wse{word-spacing:10.325333pt;}
.ws105{word-spacing:10.437333pt;}
.ws8d{word-spacing:10.492267pt;}
.ws103{word-spacing:10.602133pt;}
.ws10a{word-spacing:10.657067pt;}
.ws15{word-spacing:10.712000pt;}
.ws8b{word-spacing:10.821867pt;}
.ws8c{word-spacing:10.876800pt;}
.wsa5{word-spacing:10.944000pt;}
.wsfb{word-spacing:11.206400pt;}
.ws7e{word-spacing:11.261333pt;}
.ws69{word-spacing:11.316267pt;}
.ws9c{word-spacing:11.426133pt;}
.ws106{word-spacing:11.645867pt;}
.wsec{word-spacing:11.700800pt;}
.ws127{word-spacing:11.755733pt;}
.ws107{word-spacing:11.865600pt;}
.wsd5{word-spacing:12.085333pt;}
.ws133{word-spacing:12.195200pt;}
.ws113{word-spacing:12.250133pt;}
.wsee{word-spacing:12.689600pt;}
.ws8a{word-spacing:12.854400pt;}
.ws121{word-spacing:13.184000pt;}
.wsa0{word-spacing:13.200000pt;}
.ws116{word-spacing:13.348800pt;}
.ws109{word-spacing:13.458667pt;}
.wsca{word-spacing:13.678400pt;}
.ws85{word-spacing:14.062933pt;}
.wscf{word-spacing:14.117867pt;}
.ws120{word-spacing:14.172800pt;}
.ws62{word-spacing:14.227733pt;}
.ws3f{word-spacing:14.502400pt;}
.wsc0{word-spacing:14.722133pt;}
.ws5a{word-spacing:15.710933pt;}
.wsf9{word-spacing:15.765867pt;}
.wsf1{word-spacing:15.957333pt;}
.ws33{word-spacing:16.150400pt;}
.ws104{word-spacing:16.809600pt;}
.wsd7{word-spacing:17.249067pt;}
.ws111{word-spacing:18.787200pt;}
.ws6b{word-spacing:18.832000pt;}
.wseb{word-spacing:20.435200pt;}
.ws6c{word-spacing:21.533867pt;}
.wsb5{word-spacing:22.577600pt;}
.wsb6{word-spacing:24.555200pt;}
.ws12c{word-spacing:30.048533pt;}
.ws12e{word-spacing:32.245867pt;}
.ws12{word-spacing:386.679467pt;}
.wsd2{word-spacing:392.007467pt;}
._15{margin-left:-8.250987pt;}
._14{margin-left:-6.891787pt;}
._10{margin-left:-5.735040pt;}
._3{margin-left:-4.070560pt;}
._1{margin-left:-2.986667pt;}
._0{margin-left:-1.377600pt;}
._2{width:1.036000pt;}
._4{width:1.985333pt;}
._5{width:2.905973pt;}
._6{width:3.828853pt;}
._7{width:5.119787pt;}
._c{width:6.756800pt;}
._e{width:7.932373pt;}
._f{width:9.146400pt;}
._9{width:10.679040pt;}
._d{width:11.706293pt;}
._12{width:12.826933pt;}
._11{width:14.345120pt;}
._8{width:15.342880pt;}
._b{width:17.408373pt;}
._a{width:18.397173pt;}
._13{width:23.582880pt;}
._16{width:29.953600pt;}
.fs9{font-size:24.874667pt;}
.fsc{font-size:27.984000pt;}
.fsb{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs2{font-size:55.968000pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y24{bottom:68.000000pt;}
.yae{bottom:71.551867pt;}
.y86{bottom:71.552000pt;}
.y73{bottom:73.223200pt;}
.y4a{bottom:75.439200pt;}
.y13d{bottom:78.983200pt;}
.y23{bottom:80.000000pt;}
.y177{bottom:82.343200pt;}
.y10d{bottom:83.552000pt;}
.y72{bottom:89.703200pt;}
.y49{bottom:91.919200pt;}
.y22{bottom:92.000000pt;}
.y125{bottom:92.743200pt;}
.y13c{bottom:95.463200pt;}
.y127{bottom:95.552000pt;}
.y164{bottom:98.412267pt;}
.y176{bottom:98.823200pt;}
.y21{bottom:104.000000pt;}
.y71{bottom:106.183200pt;}
.yb6{bottom:107.552000pt;}
.yad{bottom:107.795333pt;}
.y48{bottom:108.399200pt;}
.y124{bottom:109.223200pt;}
.y13b{bottom:111.943200pt;}
.y163{bottom:114.892400pt;}
.y13e{bottom:115.303200pt;}
.y20{bottom:116.000000pt;}
.yc5{bottom:119.552000pt;}
.y70{bottom:122.663200pt;}
.yac{bottom:124.275333pt;}
.y47{bottom:124.879200pt;}
.yc0{bottom:125.703200pt;}
.y1f{bottom:128.000000pt;}
.y13a{bottom:128.423200pt;}
.y10c{bottom:128.465333pt;}
.y85{bottom:129.543200pt;}
.y162{bottom:131.372267pt;}
.y126{bottom:131.783200pt;}
.y6f{bottom:139.143200pt;}
.y1e{bottom:140.000000pt;}
.ybf{bottom:140.103200pt;}
.yab{bottom:140.755333pt;}
.y46{bottom:141.359200pt;}
.y123{bottom:142.183200pt;}
.y139{bottom:144.903200pt;}
.y10b{bottom:144.945333pt;}
.y84{bottom:146.023200pt;}
.y161{bottom:147.852400pt;}
.yc4{bottom:148.263200pt;}
.ye7{bottom:154.092400pt;}
.ybe{bottom:154.503200pt;}
.y1d{bottom:155.552000pt;}
.y6e{bottom:155.623200pt;}
.yaa{bottom:157.235333pt;}
.y45{bottom:157.839200pt;}
.y122{bottom:158.663200pt;}
.y138{bottom:161.383200pt;}
.y10a{bottom:161.425333pt;}
.y83{bottom:162.503200pt;}
.y1c{bottom:164.000000pt;}
.y160{bottom:164.332267pt;}
.yc3{bottom:164.743200pt;}
.ye6{bottom:168.492400pt;}
.ybd{bottom:168.903200pt;}
.y6d{bottom:172.103200pt;}
.ya9{bottom:173.715333pt;}
.y44{bottom:174.319200pt;}
.y121{bottom:175.143200pt;}
.y1b{bottom:176.000000pt;}
.y137{bottom:177.863200pt;}
.y109{bottom:177.905333pt;}
.y82{bottom:178.983200pt;}
.y1a{bottom:179.552000pt;}
.y15f{bottom:180.812400pt;}
.yc2{bottom:181.223200pt;}
.ybc{bottom:183.303200pt;}
.y6c{bottom:188.583200pt;}
.ya8{bottom:190.195333pt;}
.y43{bottom:190.799200pt;}
.y120{bottom:191.623200pt;}
.y136{bottom:194.343200pt;}
.y108{bottom:194.385333pt;}
.y81{bottom:195.463200pt;}
.y15e{bottom:197.292267pt;}
.yc1{bottom:197.703200pt;}
.ye5{bottom:199.372400pt;}
.y6b{bottom:205.063200pt;}
.ya7{bottom:206.675333pt;}
.y42{bottom:207.279200pt;}
.y11f{bottom:208.103200pt;}
.y135{bottom:210.823200pt;}
.y107{bottom:210.865333pt;}
.y80{bottom:211.943200pt;}
.y15d{bottom:213.772400pt;}
.ybb{bottom:214.183200pt;}
.ye4{bottom:215.852400pt;}
.y6a{bottom:221.543200pt;}
.y19{bottom:221.687600pt;}
.ya6{bottom:223.155333pt;}
.y41{bottom:223.759200pt;}
.y11e{bottom:224.583200pt;}
.y134{bottom:227.303200pt;}
.y7f{bottom:228.423200pt;}
.y15c{bottom:230.252267pt;}
.yba{bottom:230.663200pt;}
.ye3{bottom:232.332400pt;}
.y69{bottom:238.023200pt;}
.ya5{bottom:239.635333pt;}
.y40{bottom:240.239200pt;}
.y11d{bottom:241.063200pt;}
.y106{bottom:241.745333pt;}
.y133{bottom:243.783200pt;}
.y7e{bottom:244.903200pt;}
.yb5{bottom:246.023200pt;}
.y15b{bottom:246.732400pt;}
.yb9{bottom:247.143200pt;}
.ye2{bottom:248.812400pt;}
.y18{bottom:254.167600pt;}
.y68{bottom:254.503200pt;}
.ya4{bottom:256.115333pt;}
.y105{bottom:256.145333pt;}
.y3f{bottom:256.719200pt;}
.y11c{bottom:257.543200pt;}
.y132{bottom:260.263200pt;}
.y7d{bottom:261.383200pt;}
.y15a{bottom:263.212267pt;}
.yb8{bottom:263.623200pt;}
.ye1{bottom:265.292400pt;}
.y17{bottom:270.167600pt;}
.y104{bottom:270.545333pt;}
.y67{bottom:270.983200pt;}
.ya3{bottom:272.595333pt;}
.y3e{bottom:273.199200pt;}
.y11b{bottom:274.023200pt;}
.y131{bottom:276.743200pt;}
.y7c{bottom:277.863200pt;}
.y159{bottom:279.692400pt;}
.yb7{bottom:280.103200pt;}
.ye0{bottom:281.772400pt;}
.y103{bottom:284.945333pt;}
.y16{bottom:286.167600pt;}
.y66{bottom:287.463200pt;}
.ya2{bottom:289.075333pt;}
.y3d{bottom:289.679200pt;}
.y11a{bottom:290.503200pt;}
.y130{bottom:293.223200pt;}
.y7b{bottom:294.343200pt;}
.y158{bottom:296.172267pt;}
.yb4{bottom:296.583200pt;}
.ydf{bottom:298.252400pt;}
.y102{bottom:299.345333pt;}
.y15{bottom:302.167600pt;}
.y65{bottom:303.943200pt;}
.ya1{bottom:305.555333pt;}
.y3c{bottom:306.159200pt;}
.y119{bottom:306.983200pt;}
.y12f{bottom:309.703200pt;}
.y7a{bottom:310.823200pt;}
.y157{bottom:312.652400pt;}
.yb3{bottom:313.063200pt;}
.y101{bottom:313.745333pt;}
.y14{bottom:318.167600pt;}
.y64{bottom:320.423200pt;}
.ya0{bottom:322.035333pt;}
.y3b{bottom:322.639200pt;}
.y118{bottom:323.463200pt;}
.y12e{bottom:326.183200pt;}
.y79{bottom:327.303200pt;}
.y156{bottom:329.132267pt;}
.yde{bottom:329.132400pt;}
.yb2{bottom:329.543200pt;}
.y13{bottom:334.167600pt;}
.y175{bottom:336.903200pt;}
.y9f{bottom:338.515333pt;}
.y3a{bottom:339.119200pt;}
.y117{bottom:339.943200pt;}
.y12d{bottom:342.663200pt;}
.ydd{bottom:343.532400pt;}
.y78{bottom:343.783200pt;}
.y100{bottom:344.625333pt;}
.y63{bottom:344.903200pt;}
.y155{bottom:345.612267pt;}
.yb1{bottom:346.023200pt;}
.y12{bottom:350.167600pt;}
.y174{bottom:353.383200pt;}
.y9e{bottom:354.995333pt;}
.y39{bottom:355.599200pt;}
.y116{bottom:356.423200pt;}
.ydc{bottom:357.932400pt;}
.y12c{bottom:359.143200pt;}
.y77{bottom:360.263200pt;}
.yff{bottom:361.105333pt;}
.y154{bottom:362.092267pt;}
.yb0{bottom:362.503200pt;}
.y11{bottom:366.167600pt;}
.y173{bottom:369.863200pt;}
.y9d{bottom:371.475333pt;}
.y38{bottom:372.079200pt;}
.ydb{bottom:372.332400pt;}
.y115{bottom:372.903200pt;}
.y12b{bottom:375.623200pt;}
.y76{bottom:376.743200pt;}
.yfe{bottom:377.585333pt;}
.y153{bottom:378.572267pt;}
.yaf{bottom:378.983200pt;}
.y10{bottom:382.167600pt;}
.y172{bottom:386.343200pt;}
.yda{bottom:386.732400pt;}
.y9c{bottom:387.955333pt;}
.y37{bottom:388.559200pt;}
.y114{bottom:389.383200pt;}
.y12a{bottom:392.103200pt;}
.y75{bottom:393.223200pt;}
.yfd{bottom:394.065333pt;}
.y152{bottom:395.052267pt;}
.y62{bottom:395.463200pt;}
.yf{bottom:398.167600pt;}
.yd9{bottom:401.132400pt;}
.y171{bottom:402.823200pt;}
.y9b{bottom:404.435333pt;}
.y36{bottom:405.039200pt;}
.y113{bottom:405.863200pt;}
.yfc{bottom:410.545333pt;}
.y151{bottom:411.532267pt;}
.y61{bottom:411.943200pt;}
.ye{bottom:414.167600pt;}
.yd8{bottom:415.532400pt;}
.y170{bottom:419.303200pt;}
.y9a{bottom:420.915333pt;}
.y35{bottom:421.519067pt;}
.y129{bottom:426.183200pt;}
.yfb{bottom:427.025333pt;}
.y74{bottom:427.303200pt;}
.y150{bottom:428.012267pt;}
.y60{bottom:428.423200pt;}
.yd7{bottom:429.932400pt;}
.y16f{bottom:435.783200pt;}
.yd{bottom:436.834267pt;}
.y99{bottom:437.395333pt;}
.y34{bottom:437.999200pt;}
.y112{bottom:438.823200pt;}
.yfa{bottom:443.505333pt;}
.y128{bottom:443.783200pt;}
.yd6{bottom:444.332400pt;}
.y14f{bottom:444.492400pt;}
.y5f{bottom:444.903200pt;}
.y16e{bottom:452.263200pt;}
.y111{bottom:453.223200pt;}
.y98{bottom:453.875333pt;}
.yf9{bottom:459.985333pt;}
.y14e{bottom:460.972267pt;}
.y5e{bottom:461.383200pt;}
.y110{bottom:467.623200pt;}
.y16d{bottom:468.743200pt;}
.y97{bottom:470.355333pt;}
.y33{bottom:470.959200pt;}
.yd5{bottom:475.212400pt;}
.yf8{bottom:476.465333pt;}
.y14d{bottom:477.452267pt;}
.y5d{bottom:477.863200pt;}
.y10f{bottom:482.023200pt;}
.y16c{bottom:485.223200pt;}
.y96{bottom:486.835333pt;}
.yc{bottom:489.100933pt;}
.yd4{bottom:491.692400pt;}
.yf7{bottom:492.945333pt;}
.y14c{bottom:493.932267pt;}
.y5c{bottom:494.343200pt;}
.y10e{bottom:496.423200pt;}
.y16b{bottom:501.703200pt;}
.y95{bottom:503.315333pt;}
.yd3{bottom:508.172400pt;}
.yb{bottom:508.300933pt;}
.yf6{bottom:509.425333pt;}
.y14b{bottom:510.412400pt;}
.y5b{bottom:510.823200pt;}
.y16a{bottom:518.183200pt;}
.y94{bottom:519.795333pt;}
.y32{bottom:520.559200pt;}
.yd2{bottom:524.652400pt;}
.yf5{bottom:525.905333pt;}
.y14a{bottom:526.892400pt;}
.y5a{bottom:527.303200pt;}
.y169{bottom:534.663200pt;}
.y93{bottom:536.275333pt;}
.ya{bottom:540.034267pt;}
.yd1{bottom:541.132400pt;}
.yf4{bottom:542.385333pt;}
.y149{bottom:543.372267pt;}
.y59{bottom:543.783200pt;}
.y168{bottom:551.143200pt;}
.y92{bottom:552.755333pt;}
.y31{bottom:553.519067pt;}
.yd0{bottom:557.612400pt;}
.yf3{bottom:558.865333pt;}
.y148{bottom:559.852267pt;}
.y58{bottom:560.263200pt;}
.y9{bottom:563.767600pt;}
.y167{bottom:567.623200pt;}
.y91{bottom:569.235333pt;}
.y30{bottom:569.999200pt;}
.ycf{bottom:574.092400pt;}
.yf2{bottom:575.345333pt;}
.y147{bottom:576.332267pt;}
.y57{bottom:576.743200pt;}
.y166{bottom:584.103200pt;}
.y90{bottom:585.715333pt;}
.y2f{bottom:586.479200pt;}
.yce{bottom:590.572400pt;}
.yf1{bottom:591.825333pt;}
.y146{bottom:592.812400pt;}
.y56{bottom:593.223200pt;}
.y8f{bottom:602.195333pt;}
.y2e{bottom:602.959200pt;}
.ycd{bottom:607.052400pt;}
.yf0{bottom:608.305333pt;}
.y165{bottom:608.583200pt;}
.y145{bottom:609.292267pt;}
.y55{bottom:609.703200pt;}
.y8{bottom:618.167600pt;}
.y8e{bottom:618.675333pt;}
.y2d{bottom:619.439200pt;}
.ycc{bottom:623.532400pt;}
.y144{bottom:625.772400pt;}
.y54{bottom:626.183200pt;}
.y8d{bottom:635.155333pt;}
.y2c{bottom:635.919200pt;}
.ycb{bottom:640.012400pt;}
.yef{bottom:641.265333pt;}
.y7{bottom:642.167600pt;}
.y143{bottom:642.252267pt;}
.y53{bottom:642.663200pt;}
.y8c{bottom:651.635333pt;}
.y2b{bottom:652.399200pt;}
.yee{bottom:655.665333pt;}
.yca{bottom:656.492400pt;}
.y142{bottom:658.732400pt;}
.y52{bottom:659.143200pt;}
.y6{bottom:666.167600pt;}
.y8b{bottom:668.115333pt;}
.y2a{bottom:668.879200pt;}
.yed{bottom:670.065333pt;}
.yc9{bottom:672.972400pt;}
.y141{bottom:675.212267pt;}
.y51{bottom:675.623200pt;}
.yec{bottom:684.465333pt;}
.y8a{bottom:684.595333pt;}
.y29{bottom:685.359067pt;}
.yc8{bottom:689.452400pt;}
.y140{bottom:691.692267pt;}
.y50{bottom:692.103200pt;}
.yeb{bottom:698.865333pt;}
.y89{bottom:701.075333pt;}
.y28{bottom:701.839200pt;}
.y13f{bottom:708.172400pt;}
.y4f{bottom:708.583200pt;}
.yea{bottom:713.265333pt;}
.y88{bottom:717.555467pt;}
.y27{bottom:718.319200pt;}
.y5{bottom:722.167600pt;}
.yc7{bottom:723.532400pt;}
.y4e{bottom:725.063200pt;}
.ye9{bottom:727.665333pt;}
.yc6{bottom:741.132400pt;}
.y26{bottom:741.465867pt;}
.y4d{bottom:741.543200pt;}
.y87{bottom:742.035467pt;}
.ye8{bottom:742.065333pt;}
.y4{bottom:746.167600pt;}
.y3{bottom:770.167600pt;}
.y4c{bottom:794.196000pt;}
.y4b{bottom:804.862667pt;}
.y25{bottom:805.800133pt;}
.h9{height:21.826062pt;}
.hb{height:23.229500pt;}
.h2{height:32.757812pt;}
.he{height:32.906250pt;}
.hf{height:35.168344pt;}
.hd{height:36.119792pt;}
.hc{height:37.031250pt;}
.ha{height:37.437500pt;}
.h10{height:38.142187pt;}
.h6{height:39.760417pt;}
.h5{height:42.117188pt;}
.h7{height:46.796875pt;}
.h8{height:48.200781pt;}
.h4{height:65.515625pt;}
.h3{height:84.234375pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x6{left:48.944800pt;}
.x7{left:50.645733pt;}
.xc{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x8{left:75.611467pt;}
.x4{left:80.617333pt;}
.x5{left:88.276400pt;}
.x3{left:94.811600pt;}
.xa{left:104.384267pt;}
.xb{left:213.427200pt;}
.x9{left:481.086533pt;}
.xd{left:481.977200pt;}
}




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