
    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_0295b891d097d2c826c3f6a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_0970d62c20bf53205a67e4d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975000;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_6092f5bab4c03c54e30dd542.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_1efe3a635a4f7b356e2bfd72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_2a2aea4bbecd4e2b76132f3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_3ffa14361f679c3264b21cbe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_e13566a32520f8ef68c6193c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689453;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_646b2885e61423b1cf468e6c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_61304e547ace71fc4ff4b763.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9e0e63d49266435cc8ef2e81.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1efc1af2f17c467037402ac2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e052e2ace55182c27b0ca16b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_34535ef0c96cb1b9d360054d.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m4{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls6c{letter-spacing:-0.324648px;}
.ls70{letter-spacing:-0.288576px;}
.ls74{letter-spacing:-0.270540px;}
.ls48{letter-spacing:-0.223200px;}
.ls7d{letter-spacing:-0.222444px;}
.ls71{letter-spacing:-0.216432px;}
.ls77{letter-spacing:-0.210420px;}
.ls81{letter-spacing:-0.192384px;}
.ls62{letter-spacing:-0.180360px;}
.ls78{letter-spacing:-0.174348px;}
.ls79{letter-spacing:-0.168336px;}
.ls42{letter-spacing:-0.163800px;}
.ls11{letter-spacing:-0.162324px;}
.ls65{letter-spacing:-0.156312px;}
.ls6f{letter-spacing:-0.150300px;}
.ls51{letter-spacing:-0.144288px;}
.ls3b{letter-spacing:-0.138600px;}
.ls6a{letter-spacing:-0.138276px;}
.ls52{letter-spacing:-0.132264px;}
.ls12{letter-spacing:-0.126252px;}
.ls61{letter-spacing:-0.120240px;}
.ls67{letter-spacing:-0.114228px;}
.ls45{letter-spacing:-0.113400px;}
.ls66{letter-spacing:-0.108216px;}
.ls56{letter-spacing:-0.102204px;}
.ls64{letter-spacing:-0.096192px;}
.ls57{letter-spacing:-0.090180px;}
.ls47{letter-spacing:-0.088200px;}
.ls80{letter-spacing:-0.084168px;}
.ls32{letter-spacing:-0.081900px;}
.ls28{letter-spacing:-0.079200px;}
.ls69{letter-spacing:-0.078156px;}
.ls41{letter-spacing:-0.075600px;}
.ls6d{letter-spacing:-0.072144px;}
.ls17{letter-spacing:-0.067284px;}
.ls7a{letter-spacing:-0.066132px;}
.ls3c{letter-spacing:-0.064800px;}
.ls31{letter-spacing:-0.063000px;}
.ls53{letter-spacing:-0.060120px;}
.ls40{letter-spacing:-0.057600px;}
.ls49{letter-spacing:-0.056700px;}
.ls13{letter-spacing:-0.048096px;}
.ls15{letter-spacing:-0.048060px;}
.ls3f{letter-spacing:-0.043200px;}
.ls55{letter-spacing:-0.042084px;}
.ls68{letter-spacing:-0.036072px;}
.ls22{letter-spacing:-0.036000px;}
.ls46{letter-spacing:-0.031500px;}
.ls25{letter-spacing:-0.030060px;}
.ls16{letter-spacing:-0.028836px;}
.ls20{letter-spacing:-0.028800px;}
.ls63{letter-spacing:-0.024048px;}
.ls27{letter-spacing:-0.021600px;}
.ls14{letter-spacing:-0.019224px;}
.ls54{letter-spacing:-0.018036px;}
.ls19{letter-spacing:-0.014400px;}
.ls58{letter-spacing:-0.012024px;}
.ls44{letter-spacing:-0.008388px;}
.ls18{letter-spacing:-0.007200px;}
.ls7e{letter-spacing:-0.006012px;}
.ls10{letter-spacing:-0.005688px;}
.ls0{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.006012px;}
.lsd{letter-spacing:0.007200px;}
.ls4c{letter-spacing:0.012024px;}
.ls3a{letter-spacing:0.012600px;}
.lsa{letter-spacing:0.014400px;}
.ls23{letter-spacing:0.016776px;}
.ls2{letter-spacing:0.018036px;}
.ls35{letter-spacing:0.018900px;}
.ls7{letter-spacing:0.021600px;}
.ls7c{letter-spacing:0.024048px;}
.ls2d{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.030060px;}
.ls39{letter-spacing:0.031500px;}
.ls1b{letter-spacing:0.033552px;}
.lsc{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.041940px;}
.lsb{letter-spacing:0.043200px;}
.ls2e{letter-spacing:0.044100px;}
.ls73{letter-spacing:0.048096px;}
.ls26{letter-spacing:0.050328px;}
.ls8{letter-spacing:0.050400px;}
.ls3{letter-spacing:0.054108px;}
.ls43{letter-spacing:0.056700px;}
.ls9{letter-spacing:0.057600px;}
.ls1a{letter-spacing:0.058716px;}
.ls50{letter-spacing:0.060120px;}
.ls3d{letter-spacing:0.063000px;}
.ls1d{letter-spacing:0.064800px;}
.ls5b{letter-spacing:0.066132px;}
.ls1f{letter-spacing:0.067104px;}
.ls37{letter-spacing:0.069300px;}
.ls1c{letter-spacing:0.072000px;}
.ls60{letter-spacing:0.072144px;}
.ls38{letter-spacing:0.075600px;}
.ls76{letter-spacing:0.078156px;}
.ls2b{letter-spacing:0.079200px;}
.ls3e{letter-spacing:0.081900px;}
.ls6{letter-spacing:0.083880px;}
.ls4e{letter-spacing:0.084168px;}
.lse{letter-spacing:0.086400px;}
.ls34{letter-spacing:0.088200px;}
.ls59{letter-spacing:0.090180px;}
.ls24{letter-spacing:0.093600px;}
.ls36{letter-spacing:0.094500px;}
.ls7f{letter-spacing:0.096192px;}
.ls29{letter-spacing:0.100800px;}
.ls5c{letter-spacing:0.102204px;}
.ls2c{letter-spacing:0.107100px;}
.lsf{letter-spacing:0.108000px;}
.ls7b{letter-spacing:0.108216px;}
.ls33{letter-spacing:0.113400px;}
.ls6e{letter-spacing:0.114228px;}
.ls2f{letter-spacing:0.119700px;}
.ls5f{letter-spacing:0.120240px;}
.ls4b{letter-spacing:0.126000px;}
.ls5e{letter-spacing:0.126252px;}
.ls5a{letter-spacing:0.138276px;}
.ls4f{letter-spacing:0.142596px;}
.ls4a{letter-spacing:0.144000px;}
.ls6b{letter-spacing:0.144288px;}
.ls75{letter-spacing:0.150300px;}
.ls72{letter-spacing:0.156312px;}
.ls21{letter-spacing:0.158400px;}
.ls1e{letter-spacing:0.180000px;}
.ls5d{letter-spacing:0.180360px;}
.ls30{letter-spacing:0.182700px;}
.ls2a{letter-spacing:54.144000px;}
.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;}
}
.ws1c{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.681600px;}
.ws1d{word-spacing:-18.158400px;}
.ws2{word-spacing:-18.086400px;}
.ws1e{word-spacing:-18.072000px;}
.ws78{word-spacing:-18.028800px;}
.ws76{word-spacing:-18.021600px;}
.ws36{word-spacing:-18.007200px;}
.ws35{word-spacing:-17.992800px;}
.ws3e{word-spacing:-17.978400px;}
.ws37{word-spacing:-17.920800px;}
.wsc1{word-spacing:-15.210360px;}
.ws8b{word-spacing:-15.174288px;}
.ws8f{word-spacing:-15.150240px;}
.wsc2{word-spacing:-15.102144px;}
.ws88{word-spacing:-15.030000px;}
.wsc3{word-spacing:-14.981904px;}
.ws90{word-spacing:-14.969880px;}
.ws89{word-spacing:-14.933808px;}
.ws8e{word-spacing:-14.921784px;}
.ws87{word-spacing:-14.903748px;}
.ws7a{word-spacing:-14.885712px;}
.ws8a{word-spacing:-14.873688px;}
.ws8d{word-spacing:-14.849640px;}
.ws8c{word-spacing:-14.705352px;}
.ws79{word-spacing:-9.720000px;}
.ws7c{word-spacing:-0.439200px;}
.wsce{word-spacing:-0.426852px;}
.wsa5{word-spacing:-0.414828px;}
.ws7b{word-spacing:-0.410400px;}
.ws5d{word-spacing:-0.403200px;}
.wsb7{word-spacing:-0.396792px;}
.ws4a{word-spacing:-0.396000px;}
.ws92{word-spacing:-0.390780px;}
.ws64{word-spacing:-0.388800px;}
.wsac{word-spacing:-0.384768px;}
.ws5a{word-spacing:-0.381600px;}
.wsbd{word-spacing:-0.378756px;}
.ws73{word-spacing:-0.378000px;}
.ws4d{word-spacing:-0.374400px;}
.ws99{word-spacing:-0.372744px;}
.ws72{word-spacing:-0.371700px;}
.ws3b{word-spacing:-0.367200px;}
.wscc{word-spacing:-0.366732px;}
.ws62{word-spacing:-0.365400px;}
.ws97{word-spacing:-0.360720px;}
.ws30{word-spacing:-0.360000px;}
.wsdc{word-spacing:-0.354708px;}
.wsd9{word-spacing:-0.348696px;}
.ws5f{word-spacing:-0.340200px;}
.ws96{word-spacing:-0.336672px;}
.ws9d{word-spacing:-0.330660px;}
.wsb6{word-spacing:-0.324648px;}
.ws25{word-spacing:-0.324000px;}
.wsd7{word-spacing:-0.318636px;}
.ws77{word-spacing:-0.316800px;}
.ws43{word-spacing:-0.309600px;}
.ws40{word-spacing:-0.302400px;}
.wsca{word-spacing:-0.300600px;}
.ws63{word-spacing:-0.295200px;}
.wsc6{word-spacing:-0.288576px;}
.ws2f{word-spacing:-0.288000px;}
.ws41{word-spacing:-0.280800px;}
.ws47{word-spacing:-0.273600px;}
.ws98{word-spacing:-0.270540px;}
.ws24{word-spacing:-0.266400px;}
.wsd2{word-spacing:-0.264528px;}
.ws45{word-spacing:-0.259200px;}
.wsc8{word-spacing:-0.258516px;}
.ws80{word-spacing:-0.252504px;}
.ws48{word-spacing:-0.252000px;}
.wsd5{word-spacing:-0.246492px;}
.ws39{word-spacing:-0.244800px;}
.wsd3{word-spacing:-0.240480px;}
.ws46{word-spacing:-0.237600px;}
.ws3f{word-spacing:-0.230400px;}
.ws31{word-spacing:-0.223200px;}
.ws16{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.211464px;}
.ws22{word-spacing:-0.208800px;}
.ws29{word-spacing:-0.201600px;}
.wscb{word-spacing:-0.198396px;}
.ws33{word-spacing:-0.194400px;}
.wsbe{word-spacing:-0.192384px;}
.ws8{word-spacing:-0.192240px;}
.ws20{word-spacing:-0.187200px;}
.wscd{word-spacing:-0.180360px;}
.ws3d{word-spacing:-0.180000px;}
.wsa3{word-spacing:-0.174348px;}
.ws2a{word-spacing:-0.172800px;}
.wsa0{word-spacing:-0.168336px;}
.ws12{word-spacing:-0.165600px;}
.ws9a{word-spacing:-0.162324px;}
.ws19{word-spacing:-0.158400px;}
.ws2d{word-spacing:-0.151200px;}
.ws91{word-spacing:-0.150300px;}
.wsd0{word-spacing:-0.144288px;}
.ws2e{word-spacing:-0.144000px;}
.wsb3{word-spacing:-0.138276px;}
.wsf{word-spacing:-0.136800px;}
.wsba{word-spacing:-0.132264px;}
.ws2b{word-spacing:-0.129600px;}
.wsb8{word-spacing:-0.126252px;}
.ws27{word-spacing:-0.122400px;}
.wsb0{word-spacing:-0.120240px;}
.ws18{word-spacing:-0.115200px;}
.wsd4{word-spacing:-0.114228px;}
.ws14{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.105732px;}
.wsd1{word-spacing:-0.102204px;}
.ws1b{word-spacing:-0.100800px;}
.ws1a{word-spacing:-0.093600px;}
.ws94{word-spacing:-0.090180px;}
.ws23{word-spacing:-0.086400px;}
.ws17{word-spacing:-0.079200px;}
.wsd6{word-spacing:-0.078156px;}
.ws10{word-spacing:-0.072000px;}
.wsb1{word-spacing:-0.066132px;}
.ws2c{word-spacing:-0.064800px;}
.wsb5{word-spacing:-0.060120px;}
.wsa{word-spacing:-0.057672px;}
.ws26{word-spacing:-0.057600px;}
.wsaf{word-spacing:-0.054108px;}
.ws21{word-spacing:-0.050400px;}
.ws93{word-spacing:-0.048096px;}
.ws3c{word-spacing:-0.043200px;}
.ws74{word-spacing:-0.037800px;}
.ws42{word-spacing:-0.036000px;}
.ws52{word-spacing:-0.031500px;}
.ws34{word-spacing:-0.028800px;}
.ws54{word-spacing:-0.025200px;}
.wsd{word-spacing:-0.021600px;}
.ws4e{word-spacing:-0.018900px;}
.wsc0{word-spacing:-0.018036px;}
.ws11{word-spacing:-0.014400px;}
.ws67{word-spacing:-0.012600px;}
.wsa6{word-spacing:-0.012024px;}
.ws13{word-spacing:-0.007200px;}
.ws57{word-spacing:-0.006300px;}
.wscf{word-spacing:-0.006012px;}
.ws1{word-spacing:0.000000px;}
.ws86{word-spacing:0.006012px;}
.ws6b{word-spacing:0.006300px;}
.ws28{word-spacing:0.007200px;}
.wsb4{word-spacing:0.012024px;}
.ws5e{word-spacing:0.012600px;}
.wsc{word-spacing:0.014400px;}
.wsa7{word-spacing:0.018036px;}
.ws58{word-spacing:0.018900px;}
.ws15{word-spacing:0.021600px;}
.wsa8{word-spacing:0.024048px;}
.ws68{word-spacing:0.025200px;}
.ws75{word-spacing:0.028800px;}
.wsdb{word-spacing:0.030060px;}
.ws6c{word-spacing:0.031500px;}
.ws32{word-spacing:0.036000px;}
.wsbc{word-spacing:0.036072px;}
.ws56{word-spacing:0.037800px;}
.wse{word-spacing:0.041940px;}
.wsb2{word-spacing:0.042084px;}
.ws65{word-spacing:0.043200px;}
.ws50{word-spacing:0.044100px;}
.ws60{word-spacing:0.056700px;}
.ws66{word-spacing:0.057600px;}
.ws1f{word-spacing:0.060120px;}
.ws4f{word-spacing:0.063000px;}
.ws3{word-spacing:0.066132px;}
.ws4c{word-spacing:0.067104px;}
.ws55{word-spacing:0.069300px;}
.ws61{word-spacing:0.075600px;}
.ws6{word-spacing:0.078156px;}
.wsb{word-spacing:0.083880px;}
.ws84{word-spacing:0.084168px;}
.wsc7{word-spacing:0.096192px;}
.ws85{word-spacing:0.102204px;}
.wsa9{word-spacing:0.108216px;}
.ws4{word-spacing:0.113760px;}
.ws95{word-spacing:0.114228px;}
.ws6e{word-spacing:0.119700px;}
.ws38{word-spacing:0.120240px;}
.ws5c{word-spacing:0.125820px;}
.ws9f{word-spacing:0.126252px;}
.ws81{word-spacing:0.132264px;}
.ws71{word-spacing:0.144900px;}
.ws7f{word-spacing:0.150300px;}
.ws3a{word-spacing:0.150984px;}
.ws51{word-spacing:0.151200px;}
.wsbf{word-spacing:0.156312px;}
.ws44{word-spacing:0.159372px;}
.wsab{word-spacing:0.162324px;}
.ws69{word-spacing:0.163800px;}
.ws4b{word-spacing:0.167760px;}
.wsa1{word-spacing:0.168336px;}
.ws53{word-spacing:0.170100px;}
.wsa4{word-spacing:0.174348px;}
.ws6f{word-spacing:0.176400px;}
.ws83{word-spacing:0.180360px;}
.wsaa{word-spacing:0.186372px;}
.ws82{word-spacing:0.192384px;}
.wsbb{word-spacing:0.198396px;}
.ws6d{word-spacing:0.201600px;}
.ws9e{word-spacing:0.204408px;}
.ws9b{word-spacing:0.210420px;}
.wsc4{word-spacing:0.216432px;}
.ws7e{word-spacing:0.222444px;}
.ws70{word-spacing:0.223200px;}
.ws59{word-spacing:0.226800px;}
.wsa2{word-spacing:0.228456px;}
.ws9c{word-spacing:0.234468px;}
.wsad{word-spacing:0.240480px;}
.ws49{word-spacing:0.251640px;}
.ws6a{word-spacing:0.252000px;}
.wsc5{word-spacing:0.252504px;}
.ws5{word-spacing:0.258516px;}
.wsb9{word-spacing:0.264528px;}
.wsda{word-spacing:0.270540px;}
.wsd8{word-spacing:0.300600px;}
.wsc9{word-spacing:0.312624px;}
.wsae{word-spacing:0.378756px;}
.ws5b{word-spacing:0.424800px;}
.ws7d{word-spacing:135.750960px;}
._d{margin-left:-135.961380px;}
._c{margin-left:-2.192220px;}
._b{margin-left:-1.148292px;}
._5{width:1.050000px;}
._a{width:4.536000px;}
._3{width:8.316000px;}
._7{width:9.324000px;}
._8{width:10.332000px;}
._6{width:16.044000px;}
._2{width:17.052000px;}
._4{width:29.862000px;}
._1{width:36.036000px;}
._9{width:57.540000px;}
._e{width:120.600720px;}
._0{width:1044.756000px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fse{font-size:47.880000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:52.800000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs2{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fsf{font-size:63.000000px;}
.fsa{font-size:65.880000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:67.200000px;}
.fsc{font-size:72.000000px;}
.fsd{font-size:83.880000px;}
.fs0{font-size:84.000000px;}
.fsb{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:63.975000px;}
.y26{bottom:76.530450px;}
.y1d{bottom:80.985000px;}
.y1c{bottom:97.995000px;}
.y195{bottom:99.570450px;}
.y13b{bottom:101.459550px;}
.y77{bottom:102.630450px;}
.y1ea{bottom:108.480450px;}
.yfe{bottom:111.450450px;}
.yc9{bottom:112.080450px;}
.y223{bottom:112.351467px;}
.yf5{bottom:113.160450px;}
.y1b{bottom:115.005000px;}
.y113{bottom:115.140600px;}
.y25{bottom:117.299217px;}
.y13a{bottom:119.550000px;}
.y194{bottom:120.270450px;}
.y76{bottom:123.330450px;}
.y1e9{bottom:129.180450px;}
.y1a{bottom:129.540000px;}
.y222{bottom:129.541278px;}
.y16c{bottom:130.710450px;}
.yfd{bottom:132.150450px;}
.ya5{bottom:132.780450px;}
.yf4{bottom:133.770450px;}
.y24{bottom:135.748542px;}
.y1b9{bottom:135.840450px;}
.y112{bottom:135.840600px;}
.y139{bottom:137.640450px;}
.y1e1{bottom:137.730450px;}
.y193{bottom:140.970450px;}
.y75{bottom:144.030450px;}
.y221{bottom:146.821269px;}
.y16b{bottom:151.410450px;}
.yfc{bottom:152.850450px;}
.ya4{bottom:153.480450px;}
.y23{bottom:154.019010px;}
.yf3{bottom:154.470450px;}
.y25c{bottom:155.912727px;}
.y138{bottom:156.180450px;}
.y1b8{bottom:156.540450px;}
.y111{bottom:156.540600px;}
.y19{bottom:157.080000px;}
.y1e0{bottom:158.430450px;}
.y192{bottom:161.219325px;}
.y220{bottom:164.101260px;}
.y74{bottom:164.730450px;}
.y1e8{bottom:169.590450px;}
.y16a{bottom:172.110450px;}
.y22{bottom:172.379658px;}
.y25b{bottom:173.192718px;}
.yfb{bottom:173.550450px;}
.ya3{bottom:174.180450px;}
.yf2{bottom:175.170450px;}
.y137{bottom:176.880450px;}
.y1b7{bottom:177.240450px;}
.y110{bottom:177.240600px;}
.y1df{bottom:179.130450px;}
.y191{bottom:179.399550px;}
.y21f{bottom:181.291071px;}
.y73{bottom:185.430450px;}
.y25a{bottom:190.472709px;}
.y21{bottom:190.650126px;}
.y169{bottom:192.810450px;}
.ya2{bottom:194.880450px;}
.y190{bottom:197.490000px;}
.y136{bottom:197.580450px;}
.y1b6{bottom:197.940450px;}
.y10f{bottom:197.940600px;}
.y21e{bottom:198.571062px;}
.y1de{bottom:199.740450px;}
.y72{bottom:206.130450px;}
.y259{bottom:207.662520px;}
.y168{bottom:213.510450px;}
.yc8{bottom:214.589946px;}
.ya1{bottom:215.580450px;}
.yf1{bottom:215.670450px;}
.y21d{bottom:215.760873px;}
.yfa{bottom:217.020450px;}
.y135{bottom:218.280450px;}
.y1b5{bottom:218.640450px;}
.y10e{bottom:218.640600px;}
.y1e7{bottom:219.810459px;}
.y1dd{bottom:220.440450px;}
.y258{bottom:224.942511px;}
.y71{bottom:226.740450px;}
.y20{bottom:229.890450px;}
.y21c{bottom:233.040864px;}
.y18f{bottom:234.120450px;}
.y167{bottom:234.210450px;}
.ya0{bottom:236.280450px;}
.y18{bottom:237.090000px;}
.y134{bottom:238.980450px;}
.y1b4{bottom:239.340450px;}
.y10d{bottom:239.340600px;}
.yc7{bottom:240.240450px;}
.y1dc{bottom:241.140450px;}
.y257{bottom:242.222502px;}
.y1e6{bottom:242.310450px;}
.y70{bottom:247.440450px;}
.y17{bottom:249.840000px;}
.y21b{bottom:250.320855px;}
.y18e{bottom:254.820450px;}
.y166{bottom:254.910450px;}
.y9f{bottom:256.980450px;}
.y256{bottom:259.412313px;}
.y1e5{bottom:259.590450px;}
.y133{bottom:259.680450px;}
.y1b3{bottom:260.040450px;}
.y10c{bottom:260.040600px;}
.y16{bottom:261.540000px;}
.yf9{bottom:261.840450px;}
.yf0{bottom:266.520450px;}
.y21a{bottom:267.510666px;}
.y6f{bottom:268.140450px;}
.y1e4{bottom:271.560468px;}
.y15{bottom:272.160000px;}
.y18d{bottom:275.520450px;}
.y165{bottom:275.610450px;}
.y255{bottom:276.692304px;}
.y9e{bottom:277.680450px;}
.y132{bottom:280.380450px;}
.y1b2{bottom:280.740450px;}
.y10b{bottom:280.740600px;}
.yf8{bottom:282.540450px;}
.y14{bottom:282.795000px;}
.y219{bottom:284.790657px;}
.yef{bottom:287.220450px;}
.y6e{bottom:288.840450px;}
.y1e3{bottom:288.840459px;}
.yc6{bottom:291.090450px;}
.y13{bottom:293.430000px;}
.y254{bottom:293.972295px;}
.y18c{bottom:296.220450px;}
.y164{bottom:296.310450px;}
.y9d{bottom:298.380450px;}
.y131{bottom:301.080450px;}
.y1b1{bottom:301.440450px;}
.y10a{bottom:301.440600px;}
.y218{bottom:302.070648px;}
.yf7{bottom:303.240450px;}
.y12{bottom:304.050000px;}
.yee{bottom:307.920450px;}
.y6d{bottom:309.540450px;}
.y253{bottom:311.162106px;}
.y1e2{bottom:311.340450px;}
.yc5{bottom:311.790450px;}
.y11{bottom:314.685000px;}
.y163{bottom:316.559325px;}
.y18b{bottom:316.920450px;}
.y9c{bottom:319.080450px;}
.y217{bottom:319.260459px;}
.y130{bottom:321.780450px;}
.y1b0{bottom:322.140450px;}
.y109{bottom:322.140600px;}
.y1db{bottom:323.940450px;}
.y252{bottom:328.442097px;}
.yed{bottom:328.620450px;}
.y6c{bottom:330.240450px;}
.yc4{bottom:332.490450px;}
.y162{bottom:334.649775px;}
.y216{bottom:336.543537px;}
.y10{bottom:336.555000px;}
.y18a{bottom:337.620450px;}
.y9b{bottom:339.780450px;}
.y46{bottom:341.850600px;}
.y12f{bottom:342.480450px;}
.y1af{bottom:342.840450px;}
.y108{bottom:342.840600px;}
.yf6{bottom:343.740450px;}
.y1da{bottom:344.640450px;}
.y251{bottom:345.722088px;}
.yec{bottom:349.320450px;}
.y6b{bottom:350.940450px;}
.y161{bottom:352.740225px;}
.yc3{bottom:353.190450px;}
.y215{bottom:353.823528px;}
.y189{bottom:358.320450px;}
.y9a{bottom:360.390450px;}
.y45{bottom:362.550600px;}
.y250{bottom:362.911899px;}
.y12e{bottom:363.180450px;}
.y1ae{bottom:363.540450px;}
.y107{bottom:363.540600px;}
.y1d9{bottom:365.340450px;}
.yeb{bottom:370.020450px;}
.y160{bottom:370.920450px;}
.y214{bottom:371.013339px;}
.y6a{bottom:371.640450px;}
.yc2{bottom:373.890450px;}
.y188{bottom:379.020450px;}
.y24f{bottom:380.191890px;}
.y99{bottom:381.090450px;}
.y44{bottom:383.250600px;}
.y12d{bottom:383.880450px;}
.y1ad{bottom:384.240450px;}
.y106{bottom:384.240600px;}
.y1d8{bottom:386.040450px;}
.y213{bottom:388.293330px;}
.y15f{bottom:389.460450px;}
.yea{bottom:390.720450px;}
.y69{bottom:392.340450px;}
.yc1{bottom:394.590450px;}
.y24e{bottom:397.471881px;}
.y187{bottom:399.720450px;}
.y98{bottom:401.790450px;}
.y1ac{bottom:404.940450px;}
.y105{bottom:404.940600px;}
.y212{bottom:405.573321px;}
.y43{bottom:405.750600px;}
.y1d7{bottom:406.740450px;}
.y15e{bottom:410.160450px;}
.ye9{bottom:411.420450px;}
.y68{bottom:413.040450px;}
.y24d{bottom:414.661692px;}
.yc0{bottom:415.290450px;}
.y186{bottom:420.420450px;}
.y97{bottom:422.490450px;}
.y211{bottom:422.763132px;}
.y1ab{bottom:425.640450px;}
.y104{bottom:425.640600px;}
.y12c{bottom:427.440450px;}
.y42{bottom:429.600450px;}
.y15d{bottom:430.860450px;}
.y24c{bottom:431.941683px;}
.ye8{bottom:432.120450px;}
.y67{bottom:433.740450px;}
.ybf{bottom:435.990450px;}
.y210{bottom:440.043123px;}
.y185{bottom:441.120450px;}
.yf{bottom:442.995000px;}
.y96{bottom:443.190450px;}
.y1aa{bottom:446.340450px;}
.y103{bottom:446.340600px;}
.y1d6{bottom:448.140450px;}
.y24b{bottom:449.131494px;}
.y41{bottom:450.300450px;}
.y15c{bottom:451.560450px;}
.ye7{bottom:452.820450px;}
.y66{bottom:454.440450px;}
.ybe{bottom:456.690450px;}
.y20f{bottom:457.323114px;}
.y184{bottom:461.820450px;}
.y95{bottom:463.890450px;}
.y24a{bottom:466.411485px;}
.y102{bottom:466.589475px;}
.y1a9{bottom:467.040450px;}
.y1d5{bottom:468.840450px;}
.y40{bottom:471.000450px;}
.y12b{bottom:472.260450px;}
.ye6{bottom:473.520450px;}
.y20e{bottom:474.512925px;}
.y65{bottom:475.140450px;}
.ybd{bottom:477.390450px;}
.y183{bottom:482.520450px;}
.y249{bottom:483.691476px;}
.y94{bottom:484.590450px;}
.y101{bottom:484.769700px;}
.y1a8{bottom:487.740450px;}
.y1d4{bottom:489.540450px;}
.y3f{bottom:491.700450px;}
.y20d{bottom:491.792916px;}
.y15b{bottom:492.509325px;}
.y12a{bottom:492.960450px;}
.ye5{bottom:494.220450px;}
.y64{bottom:495.840450px;}
.ybc{bottom:498.090450px;}
.y248{bottom:500.881287px;}
.y100{bottom:502.860150px;}
.y182{bottom:503.220450px;}
.y93{bottom:505.290450px;}
.y1a7{bottom:508.440450px;}
.y20c{bottom:509.072907px;}
.y1d3{bottom:510.240450px;}
.y15a{bottom:510.599775px;}
.y3e{bottom:512.400450px;}
.y129{bottom:513.660450px;}
.ye4{bottom:514.920450px;}
.y63{bottom:516.540450px;}
.y247{bottom:518.161278px;}
.ybb{bottom:518.790450px;}
.yff{bottom:520.950600px;}
.y181{bottom:523.920450px;}
.y92{bottom:525.990450px;}
.y20b{bottom:526.262718px;}
.y159{bottom:528.690225px;}
.y1a6{bottom:529.140450px;}
.y1d2{bottom:530.940450px;}
.y3d{bottom:533.100450px;}
.y128{bottom:534.360450px;}
.y246{bottom:535.441269px;}
.ye3{bottom:535.620450px;}
.y62{bottom:537.240450px;}
.yba{bottom:539.490450px;}
.y20a{bottom:543.542709px;}
.y180{bottom:544.620450px;}
.y91{bottom:546.690450px;}
.y158{bottom:546.870450px;}
.y1a5{bottom:549.840450px;}
.y1d1{bottom:551.640450px;}
.y245{bottom:552.631080px;}
.y3c{bottom:553.800450px;}
.y127{bottom:555.060450px;}
.ye2{bottom:556.320450px;}
.y61{bottom:557.940450px;}
.yb9{bottom:560.190450px;}
.y209{bottom:560.822700px;}
.y17f{bottom:565.320450px;}
.y157{bottom:565.410450px;}
.y90{bottom:567.390450px;}
.y244{bottom:569.911071px;}
.y1a4{bottom:570.540450px;}
.y1d0{bottom:572.340450px;}
.y3b{bottom:574.500450px;}
.y126{bottom:575.760450px;}
.ye1{bottom:577.020450px;}
.y208{bottom:578.012511px;}
.y60{bottom:578.640450px;}
.yb8{bottom:580.890450px;}
.y17e{bottom:586.020450px;}
.y156{bottom:586.110450px;}
.y243{bottom:587.191062px;}
.y8f{bottom:588.090450px;}
.y1a3{bottom:591.240450px;}
.y1cf{bottom:593.040450px;}
.y3a{bottom:595.200450px;}
.y207{bottom:595.292502px;}
.y125{bottom:596.460450px;}
.ye0{bottom:597.720450px;}
.y5f{bottom:599.340450px;}
.yb7{bottom:601.590450px;}
.y242{bottom:604.380873px;}
.y17d{bottom:606.720450px;}
.y155{bottom:606.810450px;}
.y8e{bottom:608.790450px;}
.y1a2{bottom:611.940450px;}
.y206{bottom:612.482313px;}
.y1ce{bottom:613.740450px;}
.y39{bottom:615.900450px;}
.y124{bottom:617.070450px;}
.ydf{bottom:618.420450px;}
.y5e{bottom:620.040450px;}
.y241{bottom:621.660864px;}
.yb6{bottom:622.290450px;}
.y154{bottom:627.420450px;}
.y8d{bottom:629.490450px;}
.y205{bottom:629.762304px;}
.y1a1{bottom:632.640450px;}
.y1cd{bottom:634.440450px;}
.y38{bottom:636.600450px;}
.y123{bottom:637.770450px;}
.y240{bottom:638.940855px;}
.yde{bottom:639.120450px;}
.y5d{bottom:640.740450px;}
.yb5{bottom:642.990450px;}
.y204{bottom:647.042295px;}
.y153{bottom:648.120450px;}
.y8c{bottom:650.190450px;}
.y1a0{bottom:653.340450px;}
.y1cc{bottom:655.140450px;}
.y23f{bottom:656.130666px;}
.y37{bottom:657.300450px;}
.y122{bottom:658.470450px;}
.ydd{bottom:659.820450px;}
.y5c{bottom:661.440450px;}
.yb4{bottom:663.690450px;}
.y203{bottom:664.232106px;}
.ye{bottom:667.305000px;}
.y152{bottom:668.820450px;}
.y8b{bottom:670.890450px;}
.y23e{bottom:673.410657px;}
.y19f{bottom:674.040450px;}
.y1cb{bottom:675.840450px;}
.y36{bottom:678.000450px;}
.y121{bottom:679.170450px;}
.ydc{bottom:680.520450px;}
.y202{bottom:681.512097px;}
.y5b{bottom:682.140450px;}
.yb3{bottom:684.390450px;}
.y151{bottom:689.520450px;}
.y23d{bottom:690.690648px;}
.y8a{bottom:691.590450px;}
.y19e{bottom:694.740450px;}
.y1ca{bottom:696.540450px;}
.y35{bottom:698.700450px;}
.y201{bottom:698.792088px;}
.y120{bottom:699.870450px;}
.yd{bottom:700.095000px;}
.ydb{bottom:701.220450px;}
.y5a{bottom:702.840450px;}
.yb2{bottom:705.090450px;}
.y23c{bottom:707.880459px;}
.y150{bottom:710.220450px;}
.y89{bottom:712.290450px;}
.y19d{bottom:715.440450px;}
.y200{bottom:715.981899px;}
.yc{bottom:717.105000px;}
.y1c9{bottom:717.240450px;}
.y34{bottom:719.400450px;}
.y11f{bottom:720.570450px;}
.yda{bottom:721.920450px;}
.y59{bottom:723.540450px;}
.y23b{bottom:725.160450px;}
.yb1{bottom:725.790450px;}
.y14f{bottom:730.920450px;}
.y88{bottom:732.990450px;}
.y1ff{bottom:733.261890px;}
.y19c{bottom:736.140450px;}
.y1c8{bottom:737.940450px;}
.y11e{bottom:741.270450px;}
.y23a{bottom:742.442088px;}
.yd9{bottom:742.620450px;}
.y58{bottom:744.240450px;}
.yb0{bottom:746.490450px;}
.yb{bottom:750.225000px;}
.y1fe{bottom:750.541881px;}
.y14e{bottom:751.620450px;}
.y87{bottom:753.690450px;}
.y19b{bottom:756.840450px;}
.y1c7{bottom:758.640450px;}
.y239{bottom:759.631899px;}
.y33{bottom:759.810450px;}
.y11d{bottom:761.970450px;}
.yd8{bottom:763.320450px;}
.y57{bottom:764.940450px;}
.yaf{bottom:767.190450px;}
.ya{bottom:767.235000px;}
.y1fd{bottom:767.731692px;}
.y14d{bottom:772.320450px;}
.y86{bottom:774.390450px;}
.y238{bottom:776.911890px;}
.y19a{bottom:777.540450px;}
.y1c6{bottom:779.340450px;}
.y11c{bottom:782.670450px;}
.yd7{bottom:784.020450px;}
.y9{bottom:784.245000px;}
.y1fc{bottom:785.011683px;}
.y56{bottom:785.640450px;}
.yae{bottom:787.890450px;}
.y17c{bottom:792.569475px;}
.y14c{bottom:793.020450px;}
.y237{bottom:794.101701px;}
.y85{bottom:795.090450px;}
.y199{bottom:798.240450px;}
.y1c5{bottom:800.040450px;}
.y8{bottom:801.255000px;}
.y1fb{bottom:802.291674px;}
.y11b{bottom:803.370450px;}
.yd6{bottom:804.720450px;}
.y55{bottom:806.340450px;}
.yad{bottom:808.590450px;}
.y17b{bottom:810.659925px;}
.y32{bottom:810.660600px;}
.y236{bottom:811.381692px;}
.y14b{bottom:813.720450px;}
.y84{bottom:815.790450px;}
.y7{bottom:818.250000px;}
.y198{bottom:818.940450px;}
.y1fa{bottom:819.481485px;}
.y1c4{bottom:820.740450px;}
.y11a{bottom:824.070450px;}
.yd5{bottom:825.420450px;}
.y54{bottom:827.040450px;}
.y235{bottom:828.661683px;}
.y17a{bottom:828.750375px;}
.yac{bottom:829.290450px;}
.y31{bottom:831.360600px;}
.y14a{bottom:834.420450px;}
.y6{bottom:835.260000px;}
.y83{bottom:836.490450px;}
.y1f9{bottom:836.761476px;}
.y197{bottom:839.640450px;}
.y1c3{bottom:841.440450px;}
.y119{bottom:844.408425px;}
.y234{bottom:845.851494px;}
.yd4{bottom:846.120450px;}
.y179{bottom:846.930600px;}
.y53{bottom:847.740450px;}
.yab{bottom:849.990450px;}
.y30{bottom:853.860600px;}
.y1f8{bottom:854.041467px;}
.y149{bottom:855.120450px;}
.y82{bottom:857.190450px;}
.y196{bottom:860.340450px;}
.y1c2{bottom:862.140450px;}
.y118{bottom:862.498875px;}
.y233{bottom:863.131485px;}
.y178{bottom:865.470450px;}
.yd3{bottom:866.820450px;}
.y52{bottom:868.440450px;}
.yaa{bottom:870.690450px;}
.y1f7{bottom:871.231278px;}
.y148{bottom:875.820450px;}
.y2f{bottom:877.710450px;}
.y232{bottom:880.411476px;}
.y117{bottom:880.589325px;}
.y1c1{bottom:882.840450px;}
.y177{bottom:886.170450px;}
.yd2{bottom:887.520450px;}
.y1f6{bottom:888.511269px;}
.y51{bottom:889.140450px;}
.ya9{bottom:891.390450px;}
.y147{bottom:896.520450px;}
.y231{bottom:897.601287px;}
.y81{bottom:897.689946px;}
.y2e{bottom:898.410450px;}
.y116{bottom:898.679775px;}
.y1c0{bottom:903.540450px;}
.y1f5{bottom:905.791260px;}
.y176{bottom:906.870450px;}
.yd1{bottom:908.220450px;}
.y50{bottom:909.840450px;}
.ya8{bottom:912.090450px;}
.y5{bottom:914.535000px;}
.y230{bottom:914.881278px;}
.y115{bottom:916.770225px;}
.y146{bottom:917.220450px;}
.y2d{bottom:920.910450px;}
.y1f4{bottom:922.981071px;}
.y80{bottom:923.340450px;}
.y1bf{bottom:924.240450px;}
.y175{bottom:927.480450px;}
.yd0{bottom:928.920450px;}
.y4f{bottom:930.540450px;}
.y22f{bottom:932.161269px;}
.ya7{bottom:932.790450px;}
.y114{bottom:934.950450px;}
.y145{bottom:937.920450px;}
.y4{bottom:939.765000px;}
.y1f3{bottom:940.261062px;}
.y2c{bottom:944.760450px;}
.y1be{bottom:944.940450px;}
.y174{bottom:948.180450px;}
.y22e{bottom:949.351080px;}
.ycf{bottom:950.880450px;}
.y4e{bottom:951.240450px;}
.ya6{bottom:953.490450px;}
.y1f2{bottom:957.450873px;}
.y144{bottom:958.620450px;}
.y2b{bottom:965.460450px;}
.y1bd{bottom:965.640450px;}
.y22d{bottom:966.631071px;}
.y173{bottom:968.880450px;}
.y3{bottom:969.525000px;}
.yce{bottom:971.580450px;}
.y4d{bottom:971.940450px;}
.y7f{bottom:974.190450px;}
.y1f1{bottom:974.730864px;}
.y143{bottom:979.320450px;}
.y22c{bottom:983.911062px;}
.y2a{bottom:986.160450px;}
.y1bc{bottom:986.340450px;}
.y172{bottom:989.580450px;}
.y1f0{bottom:992.010855px;}
.ycd{bottom:992.280450px;}
.y4c{bottom:992.640450px;}
.y7e{bottom:994.890450px;}
.y2{bottom:999.285000px;}
.y142{bottom:1000.020450px;}
.y22b{bottom:1001.100873px;}
.y1bb{bottom:1007.040450px;}
.y1ef{bottom:1009.200666px;}
.y171{bottom:1010.280450px;}
.ycc{bottom:1012.980450px;}
.y4b{bottom:1013.340450px;}
.y7d{bottom:1015.590450px;}
.y22a{bottom:1018.380864px;}
.y141{bottom:1020.720450px;}
.y1ee{bottom:1026.480657px;}
.y29{bottom:1027.379190px;}
.y1{bottom:1029.060000px;}
.y170{bottom:1030.980450px;}
.y4a{bottom:1034.040450px;}
.ycb{bottom:1034.940450px;}
.y229{bottom:1035.660855px;}
.y7c{bottom:1036.290450px;}
.y140{bottom:1041.420450px;}
.y1ed{bottom:1043.760648px;}
.y1ba{bottom:1047.540450px;}
.y16f{bottom:1051.680450px;}
.y228{bottom:1052.850666px;}
.y49{bottom:1054.740450px;}
.yca{bottom:1055.730450px;}
.y28{bottom:1056.719820px;}
.y7b{bottom:1056.990450px;}
.y1ec{bottom:1060.950459px;}
.y13f{bottom:1062.120450px;}
.y227{bottom:1070.130657px;}
.y16e{bottom:1072.380450px;}
.y48{bottom:1075.440450px;}
.y7a{bottom:1077.690450px;}
.y1eb{bottom:1078.230450px;}
.y13e{bottom:1082.820450px;}
.y27{bottom:1086.060450px;}
.y226{bottom:1087.410648px;}
.y79{bottom:1098.390450px;}
.y13d{bottom:1103.070000px;}
.y225{bottom:1104.600459px;}
.y47{bottom:1115.850450px;}
.y16d{bottom:1115.940450px;}
.y78{bottom:1119.090450px;}
.y13c{bottom:1121.160450px;}
.y224{bottom:1121.880450px;}
.y1f{bottom:1163.640450px;}
.h17{height:27.014766px;}
.h8{height:31.122000px;}
.h6{height:35.568000px;}
.h7{height:36.336000px;}
.hb{height:40.014000px;}
.hd{height:40.826953px;}
.h1b{height:41.743477px;}
.h19{height:41.760484px;}
.h18{height:41.772832px;}
.hc{height:43.152539px;}
.h16{height:43.773926px;}
.h5{height:44.460000px;}
.h9{height:45.420000px;}
.he{height:47.286914px;}
.h4{height:48.906000px;}
.ha{height:49.795200px;}
.h13{height:49.992188px;}
.h1a{height:50.020792px;}
.h10{height:50.027344px;}
.h11{height:57.053145px;}
.h15{height:57.339844px;}
.h12{height:57.503672px;}
.h14{height:60.268184px;}
.h2{height:62.244000px;}
.h3{height:63.588000px;}
.hf{height:65.894766px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:892.500000px;}
.w2{width:892.830000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:46.770000px;}
.x1{left:55.275000px;}
.x5{left:127.620000px;}
.x2{left:148.815000px;}
.x8{left:161.640000px;}
.xb{left:170.190270px;}
.xa{left:188.460000px;}
.x7{left:219.420000px;}
.x9{left:398.160000px;}
.x4{left:437.955000px;}
.x6{left:695.340000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls6c{letter-spacing:-0.288576pt;}
.ls70{letter-spacing:-0.256512pt;}
.ls74{letter-spacing:-0.240480pt;}
.ls48{letter-spacing:-0.198400pt;}
.ls7d{letter-spacing:-0.197728pt;}
.ls71{letter-spacing:-0.192384pt;}
.ls77{letter-spacing:-0.187040pt;}
.ls81{letter-spacing:-0.171008pt;}
.ls62{letter-spacing:-0.160320pt;}
.ls78{letter-spacing:-0.154976pt;}
.ls79{letter-spacing:-0.149632pt;}
.ls42{letter-spacing:-0.145600pt;}
.ls11{letter-spacing:-0.144288pt;}
.ls65{letter-spacing:-0.138944pt;}
.ls6f{letter-spacing:-0.133600pt;}
.ls51{letter-spacing:-0.128256pt;}
.ls3b{letter-spacing:-0.123200pt;}
.ls6a{letter-spacing:-0.122912pt;}
.ls52{letter-spacing:-0.117568pt;}
.ls12{letter-spacing:-0.112224pt;}
.ls61{letter-spacing:-0.106880pt;}
.ls67{letter-spacing:-0.101536pt;}
.ls45{letter-spacing:-0.100800pt;}
.ls66{letter-spacing:-0.096192pt;}
.ls56{letter-spacing:-0.090848pt;}
.ls64{letter-spacing:-0.085504pt;}
.ls57{letter-spacing:-0.080160pt;}
.ls47{letter-spacing:-0.078400pt;}
.ls80{letter-spacing:-0.074816pt;}
.ls32{letter-spacing:-0.072800pt;}
.ls28{letter-spacing:-0.070400pt;}
.ls69{letter-spacing:-0.069472pt;}
.ls41{letter-spacing:-0.067200pt;}
.ls6d{letter-spacing:-0.064128pt;}
.ls17{letter-spacing:-0.059808pt;}
.ls7a{letter-spacing:-0.058784pt;}
.ls3c{letter-spacing:-0.057600pt;}
.ls31{letter-spacing:-0.056000pt;}
.ls53{letter-spacing:-0.053440pt;}
.ls40{letter-spacing:-0.051200pt;}
.ls49{letter-spacing:-0.050400pt;}
.ls13{letter-spacing:-0.042752pt;}
.ls15{letter-spacing:-0.042720pt;}
.ls3f{letter-spacing:-0.038400pt;}
.ls55{letter-spacing:-0.037408pt;}
.ls68{letter-spacing:-0.032064pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls46{letter-spacing:-0.028000pt;}
.ls25{letter-spacing:-0.026720pt;}
.ls16{letter-spacing:-0.025632pt;}
.ls20{letter-spacing:-0.025600pt;}
.ls63{letter-spacing:-0.021376pt;}
.ls27{letter-spacing:-0.019200pt;}
.ls14{letter-spacing:-0.017088pt;}
.ls54{letter-spacing:-0.016032pt;}
.ls19{letter-spacing:-0.012800pt;}
.ls58{letter-spacing:-0.010688pt;}
.ls44{letter-spacing:-0.007456pt;}
.ls18{letter-spacing:-0.006400pt;}
.ls7e{letter-spacing:-0.005344pt;}
.ls10{letter-spacing:-0.005056pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.005344pt;}
.lsd{letter-spacing:0.006400pt;}
.ls4c{letter-spacing:0.010688pt;}
.ls3a{letter-spacing:0.011200pt;}
.lsa{letter-spacing:0.012800pt;}
.ls23{letter-spacing:0.014912pt;}
.ls2{letter-spacing:0.016032pt;}
.ls35{letter-spacing:0.016800pt;}
.ls7{letter-spacing:0.019200pt;}
.ls7c{letter-spacing:0.021376pt;}
.ls2d{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.026720pt;}
.ls39{letter-spacing:0.028000pt;}
.ls1b{letter-spacing:0.029824pt;}
.lsc{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.037280pt;}
.lsb{letter-spacing:0.038400pt;}
.ls2e{letter-spacing:0.039200pt;}
.ls73{letter-spacing:0.042752pt;}
.ls26{letter-spacing:0.044736pt;}
.ls8{letter-spacing:0.044800pt;}
.ls3{letter-spacing:0.048096pt;}
.ls43{letter-spacing:0.050400pt;}
.ls9{letter-spacing:0.051200pt;}
.ls1a{letter-spacing:0.052192pt;}
.ls50{letter-spacing:0.053440pt;}
.ls3d{letter-spacing:0.056000pt;}
.ls1d{letter-spacing:0.057600pt;}
.ls5b{letter-spacing:0.058784pt;}
.ls1f{letter-spacing:0.059648pt;}
.ls37{letter-spacing:0.061600pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls60{letter-spacing:0.064128pt;}
.ls38{letter-spacing:0.067200pt;}
.ls76{letter-spacing:0.069472pt;}
.ls2b{letter-spacing:0.070400pt;}
.ls3e{letter-spacing:0.072800pt;}
.ls6{letter-spacing:0.074560pt;}
.ls4e{letter-spacing:0.074816pt;}
.lse{letter-spacing:0.076800pt;}
.ls34{letter-spacing:0.078400pt;}
.ls59{letter-spacing:0.080160pt;}
.ls24{letter-spacing:0.083200pt;}
.ls36{letter-spacing:0.084000pt;}
.ls7f{letter-spacing:0.085504pt;}
.ls29{letter-spacing:0.089600pt;}
.ls5c{letter-spacing:0.090848pt;}
.ls2c{letter-spacing:0.095200pt;}
.lsf{letter-spacing:0.096000pt;}
.ls7b{letter-spacing:0.096192pt;}
.ls33{letter-spacing:0.100800pt;}
.ls6e{letter-spacing:0.101536pt;}
.ls2f{letter-spacing:0.106400pt;}
.ls5f{letter-spacing:0.106880pt;}
.ls4b{letter-spacing:0.112000pt;}
.ls5e{letter-spacing:0.112224pt;}
.ls5a{letter-spacing:0.122912pt;}
.ls4f{letter-spacing:0.126752pt;}
.ls4a{letter-spacing:0.128000pt;}
.ls6b{letter-spacing:0.128256pt;}
.ls75{letter-spacing:0.133600pt;}
.ls72{letter-spacing:0.138944pt;}
.ls21{letter-spacing:0.140800pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls5d{letter-spacing:0.160320pt;}
.ls30{letter-spacing:0.162400pt;}
.ls2a{letter-spacing:48.128000pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.605867pt;}
.ws1d{word-spacing:-16.140800pt;}
.ws2{word-spacing:-16.076800pt;}
.ws1e{word-spacing:-16.064000pt;}
.ws78{word-spacing:-16.025600pt;}
.ws76{word-spacing:-16.019200pt;}
.ws36{word-spacing:-16.006400pt;}
.ws35{word-spacing:-15.993600pt;}
.ws3e{word-spacing:-15.980800pt;}
.ws37{word-spacing:-15.929600pt;}
.wsc1{word-spacing:-13.520320pt;}
.ws8b{word-spacing:-13.488256pt;}
.ws8f{word-spacing:-13.466880pt;}
.wsc2{word-spacing:-13.424128pt;}
.ws88{word-spacing:-13.360000pt;}
.wsc3{word-spacing:-13.317248pt;}
.ws90{word-spacing:-13.306560pt;}
.ws89{word-spacing:-13.274496pt;}
.ws8e{word-spacing:-13.263808pt;}
.ws87{word-spacing:-13.247776pt;}
.ws7a{word-spacing:-13.231744pt;}
.ws8a{word-spacing:-13.221056pt;}
.ws8d{word-spacing:-13.199680pt;}
.ws8c{word-spacing:-13.071424pt;}
.ws79{word-spacing:-8.640000pt;}
.ws7c{word-spacing:-0.390400pt;}
.wsce{word-spacing:-0.379424pt;}
.wsa5{word-spacing:-0.368736pt;}
.ws7b{word-spacing:-0.364800pt;}
.ws5d{word-spacing:-0.358400pt;}
.wsb7{word-spacing:-0.352704pt;}
.ws4a{word-spacing:-0.352000pt;}
.ws92{word-spacing:-0.347360pt;}
.ws64{word-spacing:-0.345600pt;}
.wsac{word-spacing:-0.342016pt;}
.ws5a{word-spacing:-0.339200pt;}
.wsbd{word-spacing:-0.336672pt;}
.ws73{word-spacing:-0.336000pt;}
.ws4d{word-spacing:-0.332800pt;}
.ws99{word-spacing:-0.331328pt;}
.ws72{word-spacing:-0.330400pt;}
.ws3b{word-spacing:-0.326400pt;}
.wscc{word-spacing:-0.325984pt;}
.ws62{word-spacing:-0.324800pt;}
.ws97{word-spacing:-0.320640pt;}
.ws30{word-spacing:-0.320000pt;}
.wsdc{word-spacing:-0.315296pt;}
.wsd9{word-spacing:-0.309952pt;}
.ws5f{word-spacing:-0.302400pt;}
.ws96{word-spacing:-0.299264pt;}
.ws9d{word-spacing:-0.293920pt;}
.wsb6{word-spacing:-0.288576pt;}
.ws25{word-spacing:-0.288000pt;}
.wsd7{word-spacing:-0.283232pt;}
.ws77{word-spacing:-0.281600pt;}
.ws43{word-spacing:-0.275200pt;}
.ws40{word-spacing:-0.268800pt;}
.wsca{word-spacing:-0.267200pt;}
.ws63{word-spacing:-0.262400pt;}
.wsc6{word-spacing:-0.256512pt;}
.ws2f{word-spacing:-0.256000pt;}
.ws41{word-spacing:-0.249600pt;}
.ws47{word-spacing:-0.243200pt;}
.ws98{word-spacing:-0.240480pt;}
.ws24{word-spacing:-0.236800pt;}
.wsd2{word-spacing:-0.235136pt;}
.ws45{word-spacing:-0.230400pt;}
.wsc8{word-spacing:-0.229792pt;}
.ws80{word-spacing:-0.224448pt;}
.ws48{word-spacing:-0.224000pt;}
.wsd5{word-spacing:-0.219104pt;}
.ws39{word-spacing:-0.217600pt;}
.wsd3{word-spacing:-0.213760pt;}
.ws46{word-spacing:-0.211200pt;}
.ws3f{word-spacing:-0.204800pt;}
.ws31{word-spacing:-0.198400pt;}
.ws16{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.187968pt;}
.ws22{word-spacing:-0.185600pt;}
.ws29{word-spacing:-0.179200pt;}
.wscb{word-spacing:-0.176352pt;}
.ws33{word-spacing:-0.172800pt;}
.wsbe{word-spacing:-0.171008pt;}
.ws8{word-spacing:-0.170880pt;}
.ws20{word-spacing:-0.166400pt;}
.wscd{word-spacing:-0.160320pt;}
.ws3d{word-spacing:-0.160000pt;}
.wsa3{word-spacing:-0.154976pt;}
.ws2a{word-spacing:-0.153600pt;}
.wsa0{word-spacing:-0.149632pt;}
.ws12{word-spacing:-0.147200pt;}
.ws9a{word-spacing:-0.144288pt;}
.ws19{word-spacing:-0.140800pt;}
.ws2d{word-spacing:-0.134400pt;}
.ws91{word-spacing:-0.133600pt;}
.wsd0{word-spacing:-0.128256pt;}
.ws2e{word-spacing:-0.128000pt;}
.wsb3{word-spacing:-0.122912pt;}
.wsf{word-spacing:-0.121600pt;}
.wsba{word-spacing:-0.117568pt;}
.ws2b{word-spacing:-0.115200pt;}
.wsb8{word-spacing:-0.112224pt;}
.ws27{word-spacing:-0.108800pt;}
.wsb0{word-spacing:-0.106880pt;}
.ws18{word-spacing:-0.102400pt;}
.wsd4{word-spacing:-0.101536pt;}
.ws14{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.093984pt;}
.wsd1{word-spacing:-0.090848pt;}
.ws1b{word-spacing:-0.089600pt;}
.ws1a{word-spacing:-0.083200pt;}
.ws94{word-spacing:-0.080160pt;}
.ws23{word-spacing:-0.076800pt;}
.ws17{word-spacing:-0.070400pt;}
.wsd6{word-spacing:-0.069472pt;}
.ws10{word-spacing:-0.064000pt;}
.wsb1{word-spacing:-0.058784pt;}
.ws2c{word-spacing:-0.057600pt;}
.wsb5{word-spacing:-0.053440pt;}
.wsa{word-spacing:-0.051264pt;}
.ws26{word-spacing:-0.051200pt;}
.wsaf{word-spacing:-0.048096pt;}
.ws21{word-spacing:-0.044800pt;}
.ws93{word-spacing:-0.042752pt;}
.ws3c{word-spacing:-0.038400pt;}
.ws74{word-spacing:-0.033600pt;}
.ws42{word-spacing:-0.032000pt;}
.ws52{word-spacing:-0.028000pt;}
.ws34{word-spacing:-0.025600pt;}
.ws54{word-spacing:-0.022400pt;}
.wsd{word-spacing:-0.019200pt;}
.ws4e{word-spacing:-0.016800pt;}
.wsc0{word-spacing:-0.016032pt;}
.ws11{word-spacing:-0.012800pt;}
.ws67{word-spacing:-0.011200pt;}
.wsa6{word-spacing:-0.010688pt;}
.ws13{word-spacing:-0.006400pt;}
.ws57{word-spacing:-0.005600pt;}
.wscf{word-spacing:-0.005344pt;}
.ws1{word-spacing:0.000000pt;}
.ws86{word-spacing:0.005344pt;}
.ws6b{word-spacing:0.005600pt;}
.ws28{word-spacing:0.006400pt;}
.wsb4{word-spacing:0.010688pt;}
.ws5e{word-spacing:0.011200pt;}
.wsc{word-spacing:0.012800pt;}
.wsa7{word-spacing:0.016032pt;}
.ws58{word-spacing:0.016800pt;}
.ws15{word-spacing:0.019200pt;}
.wsa8{word-spacing:0.021376pt;}
.ws68{word-spacing:0.022400pt;}
.ws75{word-spacing:0.025600pt;}
.wsdb{word-spacing:0.026720pt;}
.ws6c{word-spacing:0.028000pt;}
.ws32{word-spacing:0.032000pt;}
.wsbc{word-spacing:0.032064pt;}
.ws56{word-spacing:0.033600pt;}
.wse{word-spacing:0.037280pt;}
.wsb2{word-spacing:0.037408pt;}
.ws65{word-spacing:0.038400pt;}
.ws50{word-spacing:0.039200pt;}
.ws60{word-spacing:0.050400pt;}
.ws66{word-spacing:0.051200pt;}
.ws1f{word-spacing:0.053440pt;}
.ws4f{word-spacing:0.056000pt;}
.ws3{word-spacing:0.058784pt;}
.ws4c{word-spacing:0.059648pt;}
.ws55{word-spacing:0.061600pt;}
.ws61{word-spacing:0.067200pt;}
.ws6{word-spacing:0.069472pt;}
.wsb{word-spacing:0.074560pt;}
.ws84{word-spacing:0.074816pt;}
.wsc7{word-spacing:0.085504pt;}
.ws85{word-spacing:0.090848pt;}
.wsa9{word-spacing:0.096192pt;}
.ws4{word-spacing:0.101120pt;}
.ws95{word-spacing:0.101536pt;}
.ws6e{word-spacing:0.106400pt;}
.ws38{word-spacing:0.106880pt;}
.ws5c{word-spacing:0.111840pt;}
.ws9f{word-spacing:0.112224pt;}
.ws81{word-spacing:0.117568pt;}
.ws71{word-spacing:0.128800pt;}
.ws7f{word-spacing:0.133600pt;}
.ws3a{word-spacing:0.134208pt;}
.ws51{word-spacing:0.134400pt;}
.wsbf{word-spacing:0.138944pt;}
.ws44{word-spacing:0.141664pt;}
.wsab{word-spacing:0.144288pt;}
.ws69{word-spacing:0.145600pt;}
.ws4b{word-spacing:0.149120pt;}
.wsa1{word-spacing:0.149632pt;}
.ws53{word-spacing:0.151200pt;}
.wsa4{word-spacing:0.154976pt;}
.ws6f{word-spacing:0.156800pt;}
.ws83{word-spacing:0.160320pt;}
.wsaa{word-spacing:0.165664pt;}
.ws82{word-spacing:0.171008pt;}
.wsbb{word-spacing:0.176352pt;}
.ws6d{word-spacing:0.179200pt;}
.ws9e{word-spacing:0.181696pt;}
.ws9b{word-spacing:0.187040pt;}
.wsc4{word-spacing:0.192384pt;}
.ws7e{word-spacing:0.197728pt;}
.ws70{word-spacing:0.198400pt;}
.ws59{word-spacing:0.201600pt;}
.wsa2{word-spacing:0.203072pt;}
.ws9c{word-spacing:0.208416pt;}
.wsad{word-spacing:0.213760pt;}
.ws49{word-spacing:0.223680pt;}
.ws6a{word-spacing:0.224000pt;}
.wsc5{word-spacing:0.224448pt;}
.ws5{word-spacing:0.229792pt;}
.wsb9{word-spacing:0.235136pt;}
.wsda{word-spacing:0.240480pt;}
.wsd8{word-spacing:0.267200pt;}
.wsc9{word-spacing:0.277888pt;}
.wsae{word-spacing:0.336672pt;}
.ws5b{word-spacing:0.377600pt;}
.ws7d{word-spacing:120.667520pt;}
._d{margin-left:-120.854560pt;}
._c{margin-left:-1.948640pt;}
._b{margin-left:-1.020704pt;}
._5{width:0.933333pt;}
._a{width:4.032000pt;}
._3{width:7.392000pt;}
._7{width:8.288000pt;}
._8{width:9.184000pt;}
._6{width:14.261333pt;}
._2{width:15.157333pt;}
._4{width:26.544000pt;}
._1{width:32.032000pt;}
._9{width:51.146667pt;}
._e{width:107.200640pt;}
._0{width:928.672000pt;}
.fs10{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:42.560000pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:46.933333pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs2{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fsf{font-size:56.000000pt;}
.fsa{font-size:58.560000pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:59.733333pt;}
.fsc{font-size:64.000000pt;}
.fsd{font-size:74.560000pt;}
.fs0{font-size:74.666667pt;}
.fsb{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:56.866667pt;}
.y26{bottom:68.027067pt;}
.y1d{bottom:71.986667pt;}
.y1c{bottom:87.106667pt;}
.y195{bottom:88.507067pt;}
.y13b{bottom:90.186267pt;}
.y77{bottom:91.227067pt;}
.y1ea{bottom:96.427067pt;}
.yfe{bottom:99.067067pt;}
.yc9{bottom:99.627067pt;}
.y223{bottom:99.867971pt;}
.yf5{bottom:100.587067pt;}
.y1b{bottom:102.226667pt;}
.y113{bottom:102.347200pt;}
.y25{bottom:104.265971pt;}
.y13a{bottom:106.266667pt;}
.y194{bottom:106.907067pt;}
.y76{bottom:109.627067pt;}
.y1e9{bottom:114.827067pt;}
.y1a{bottom:115.146667pt;}
.y222{bottom:115.147803pt;}
.y16c{bottom:116.187067pt;}
.yfd{bottom:117.467067pt;}
.ya5{bottom:118.027067pt;}
.yf4{bottom:118.907067pt;}
.y24{bottom:120.665371pt;}
.y1b9{bottom:120.747067pt;}
.y112{bottom:120.747200pt;}
.y139{bottom:122.347067pt;}
.y1e1{bottom:122.427067pt;}
.y193{bottom:125.307067pt;}
.y75{bottom:128.027067pt;}
.y221{bottom:130.507795pt;}
.y16b{bottom:134.587067pt;}
.yfc{bottom:135.867067pt;}
.ya4{bottom:136.427067pt;}
.y23{bottom:136.905787pt;}
.yf3{bottom:137.307067pt;}
.y25c{bottom:138.589091pt;}
.y138{bottom:138.827067pt;}
.y1b8{bottom:139.147067pt;}
.y111{bottom:139.147200pt;}
.y19{bottom:139.626667pt;}
.y1e0{bottom:140.827067pt;}
.y192{bottom:143.306067pt;}
.y220{bottom:145.867787pt;}
.y74{bottom:146.427067pt;}
.y1e8{bottom:150.747067pt;}
.y16a{bottom:152.987067pt;}
.y22{bottom:153.226363pt;}
.y25b{bottom:153.949083pt;}
.yfb{bottom:154.267067pt;}
.ya3{bottom:154.827067pt;}
.yf2{bottom:155.707067pt;}
.y137{bottom:157.227067pt;}
.y1b7{bottom:157.547067pt;}
.y110{bottom:157.547200pt;}
.y1df{bottom:159.227067pt;}
.y191{bottom:159.466267pt;}
.y21f{bottom:161.147619pt;}
.y73{bottom:164.827067pt;}
.y25a{bottom:169.309075pt;}
.y21{bottom:169.466779pt;}
.y169{bottom:171.387067pt;}
.ya2{bottom:173.227067pt;}
.y190{bottom:175.546667pt;}
.y136{bottom:175.627067pt;}
.y1b6{bottom:175.947067pt;}
.y10f{bottom:175.947200pt;}
.y21e{bottom:176.507611pt;}
.y1de{bottom:177.547067pt;}
.y72{bottom:183.227067pt;}
.y259{bottom:184.588907pt;}
.y168{bottom:189.787067pt;}
.yc8{bottom:190.746619pt;}
.ya1{bottom:191.627067pt;}
.yf1{bottom:191.707067pt;}
.y21d{bottom:191.787443pt;}
.yfa{bottom:192.907067pt;}
.y135{bottom:194.027067pt;}
.y1b5{bottom:194.347067pt;}
.y10e{bottom:194.347200pt;}
.y1e7{bottom:195.387075pt;}
.y1dd{bottom:195.947067pt;}
.y258{bottom:199.948899pt;}
.y71{bottom:201.547067pt;}
.y20{bottom:204.347067pt;}
.y21c{bottom:207.147435pt;}
.y18f{bottom:208.107067pt;}
.y167{bottom:208.187067pt;}
.ya0{bottom:210.027067pt;}
.y18{bottom:210.746667pt;}
.y134{bottom:212.427067pt;}
.y1b4{bottom:212.747067pt;}
.y10d{bottom:212.747200pt;}
.yc7{bottom:213.547067pt;}
.y1dc{bottom:214.347067pt;}
.y257{bottom:215.308891pt;}
.y1e6{bottom:215.387067pt;}
.y70{bottom:219.947067pt;}
.y17{bottom:222.080000pt;}
.y21b{bottom:222.507427pt;}
.y18e{bottom:226.507067pt;}
.y166{bottom:226.587067pt;}
.y9f{bottom:228.427067pt;}
.y256{bottom:230.588723pt;}
.y1e5{bottom:230.747067pt;}
.y133{bottom:230.827067pt;}
.y1b3{bottom:231.147067pt;}
.y10c{bottom:231.147200pt;}
.y16{bottom:232.480000pt;}
.yf9{bottom:232.747067pt;}
.yf0{bottom:236.907067pt;}
.y21a{bottom:237.787259pt;}
.y6f{bottom:238.347067pt;}
.y1e4{bottom:241.387083pt;}
.y15{bottom:241.920000pt;}
.y18d{bottom:244.907067pt;}
.y165{bottom:244.987067pt;}
.y255{bottom:245.948715pt;}
.y9e{bottom:246.827067pt;}
.y132{bottom:249.227067pt;}
.y1b2{bottom:249.547067pt;}
.y10b{bottom:249.547200pt;}
.yf8{bottom:251.147067pt;}
.y14{bottom:251.373333pt;}
.y219{bottom:253.147251pt;}
.yef{bottom:255.307067pt;}
.y6e{bottom:256.747067pt;}
.y1e3{bottom:256.747075pt;}
.yc6{bottom:258.747067pt;}
.y13{bottom:260.826667pt;}
.y254{bottom:261.308707pt;}
.y18c{bottom:263.307067pt;}
.y164{bottom:263.387067pt;}
.y9d{bottom:265.227067pt;}
.y131{bottom:267.627067pt;}
.y1b1{bottom:267.947067pt;}
.y10a{bottom:267.947200pt;}
.y218{bottom:268.507243pt;}
.yf7{bottom:269.547067pt;}
.y12{bottom:270.266667pt;}
.yee{bottom:273.707067pt;}
.y6d{bottom:275.147067pt;}
.y253{bottom:276.588539pt;}
.y1e2{bottom:276.747067pt;}
.yc5{bottom:277.147067pt;}
.y11{bottom:279.720000pt;}
.y163{bottom:281.386067pt;}
.y18b{bottom:281.707067pt;}
.y9c{bottom:283.627067pt;}
.y217{bottom:283.787075pt;}
.y130{bottom:286.027067pt;}
.y1b0{bottom:286.347067pt;}
.y109{bottom:286.347200pt;}
.y1db{bottom:287.947067pt;}
.y252{bottom:291.948531pt;}
.yed{bottom:292.107067pt;}
.y6c{bottom:293.547067pt;}
.yc4{bottom:295.547067pt;}
.y162{bottom:297.466467pt;}
.y216{bottom:299.149811pt;}
.y10{bottom:299.160000pt;}
.y18a{bottom:300.107067pt;}
.y9b{bottom:302.027067pt;}
.y46{bottom:303.867200pt;}
.y12f{bottom:304.427067pt;}
.y1af{bottom:304.747067pt;}
.y108{bottom:304.747200pt;}
.yf6{bottom:305.547067pt;}
.y1da{bottom:306.347067pt;}
.y251{bottom:307.308523pt;}
.yec{bottom:310.507067pt;}
.y6b{bottom:311.947067pt;}
.y161{bottom:313.546867pt;}
.yc3{bottom:313.947067pt;}
.y215{bottom:314.509803pt;}
.y189{bottom:318.507067pt;}
.y9a{bottom:320.347067pt;}
.y45{bottom:322.267200pt;}
.y250{bottom:322.588355pt;}
.y12e{bottom:322.827067pt;}
.y1ae{bottom:323.147067pt;}
.y107{bottom:323.147200pt;}
.y1d9{bottom:324.747067pt;}
.yeb{bottom:328.907067pt;}
.y160{bottom:329.707067pt;}
.y214{bottom:329.789635pt;}
.y6a{bottom:330.347067pt;}
.yc2{bottom:332.347067pt;}
.y188{bottom:336.907067pt;}
.y24f{bottom:337.948347pt;}
.y99{bottom:338.747067pt;}
.y44{bottom:340.667200pt;}
.y12d{bottom:341.227067pt;}
.y1ad{bottom:341.547067pt;}
.y106{bottom:341.547200pt;}
.y1d8{bottom:343.147067pt;}
.y213{bottom:345.149627pt;}
.y15f{bottom:346.187067pt;}
.yea{bottom:347.307067pt;}
.y69{bottom:348.747067pt;}
.yc1{bottom:350.747067pt;}
.y24e{bottom:353.308339pt;}
.y187{bottom:355.307067pt;}
.y98{bottom:357.147067pt;}
.y1ac{bottom:359.947067pt;}
.y105{bottom:359.947200pt;}
.y212{bottom:360.509619pt;}
.y43{bottom:360.667200pt;}
.y1d7{bottom:361.547067pt;}
.y15e{bottom:364.587067pt;}
.ye9{bottom:365.707067pt;}
.y68{bottom:367.147067pt;}
.y24d{bottom:368.588171pt;}
.yc0{bottom:369.147067pt;}
.y186{bottom:373.707067pt;}
.y97{bottom:375.547067pt;}
.y211{bottom:375.789451pt;}
.y1ab{bottom:378.347067pt;}
.y104{bottom:378.347200pt;}
.y12c{bottom:379.947067pt;}
.y42{bottom:381.867067pt;}
.y15d{bottom:382.987067pt;}
.y24c{bottom:383.948163pt;}
.ye8{bottom:384.107067pt;}
.y67{bottom:385.547067pt;}
.ybf{bottom:387.547067pt;}
.y210{bottom:391.149443pt;}
.y185{bottom:392.107067pt;}
.yf{bottom:393.773333pt;}
.y96{bottom:393.947067pt;}
.y1aa{bottom:396.747067pt;}
.y103{bottom:396.747200pt;}
.y1d6{bottom:398.347067pt;}
.y24b{bottom:399.227995pt;}
.y41{bottom:400.267067pt;}
.y15c{bottom:401.387067pt;}
.ye7{bottom:402.507067pt;}
.y66{bottom:403.947067pt;}
.ybe{bottom:405.947067pt;}
.y20f{bottom:406.509435pt;}
.y184{bottom:410.507067pt;}
.y95{bottom:412.347067pt;}
.y24a{bottom:414.587987pt;}
.y102{bottom:414.746200pt;}
.y1a9{bottom:415.147067pt;}
.y1d5{bottom:416.747067pt;}
.y40{bottom:418.667067pt;}
.y12b{bottom:419.787067pt;}
.ye6{bottom:420.907067pt;}
.y20e{bottom:421.789267pt;}
.y65{bottom:422.347067pt;}
.ybd{bottom:424.347067pt;}
.y183{bottom:428.907067pt;}
.y249{bottom:429.947979pt;}
.y94{bottom:430.747067pt;}
.y101{bottom:430.906400pt;}
.y1a8{bottom:433.547067pt;}
.y1d4{bottom:435.147067pt;}
.y3f{bottom:437.067067pt;}
.y20d{bottom:437.149259pt;}
.y15b{bottom:437.786067pt;}
.y12a{bottom:438.187067pt;}
.ye5{bottom:439.307067pt;}
.y64{bottom:440.747067pt;}
.ybc{bottom:442.747067pt;}
.y248{bottom:445.227811pt;}
.y100{bottom:446.986800pt;}
.y182{bottom:447.307067pt;}
.y93{bottom:449.147067pt;}
.y1a7{bottom:451.947067pt;}
.y20c{bottom:452.509251pt;}
.y1d3{bottom:453.547067pt;}
.y15a{bottom:453.866467pt;}
.y3e{bottom:455.467067pt;}
.y129{bottom:456.587067pt;}
.ye4{bottom:457.707067pt;}
.y63{bottom:459.147067pt;}
.y247{bottom:460.587803pt;}
.ybb{bottom:461.147067pt;}
.yff{bottom:463.067200pt;}
.y181{bottom:465.707067pt;}
.y92{bottom:467.547067pt;}
.y20b{bottom:467.789083pt;}
.y159{bottom:469.946867pt;}
.y1a6{bottom:470.347067pt;}
.y1d2{bottom:471.947067pt;}
.y3d{bottom:473.867067pt;}
.y128{bottom:474.987067pt;}
.y246{bottom:475.947795pt;}
.ye3{bottom:476.107067pt;}
.y62{bottom:477.547067pt;}
.yba{bottom:479.547067pt;}
.y20a{bottom:483.149075pt;}
.y180{bottom:484.107067pt;}
.y91{bottom:485.947067pt;}
.y158{bottom:486.107067pt;}
.y1a5{bottom:488.747067pt;}
.y1d1{bottom:490.347067pt;}
.y245{bottom:491.227627pt;}
.y3c{bottom:492.267067pt;}
.y127{bottom:493.387067pt;}
.ye2{bottom:494.507067pt;}
.y61{bottom:495.947067pt;}
.yb9{bottom:497.947067pt;}
.y209{bottom:498.509067pt;}
.y17f{bottom:502.507067pt;}
.y157{bottom:502.587067pt;}
.y90{bottom:504.347067pt;}
.y244{bottom:506.587619pt;}
.y1a4{bottom:507.147067pt;}
.y1d0{bottom:508.747067pt;}
.y3b{bottom:510.667067pt;}
.y126{bottom:511.787067pt;}
.ye1{bottom:512.907067pt;}
.y208{bottom:513.788899pt;}
.y60{bottom:514.347067pt;}
.yb8{bottom:516.347067pt;}
.y17e{bottom:520.907067pt;}
.y156{bottom:520.987067pt;}
.y243{bottom:521.947611pt;}
.y8f{bottom:522.747067pt;}
.y1a3{bottom:525.547067pt;}
.y1cf{bottom:527.147067pt;}
.y3a{bottom:529.067067pt;}
.y207{bottom:529.148891pt;}
.y125{bottom:530.187067pt;}
.ye0{bottom:531.307067pt;}
.y5f{bottom:532.747067pt;}
.yb7{bottom:534.747067pt;}
.y242{bottom:537.227443pt;}
.y17d{bottom:539.307067pt;}
.y155{bottom:539.387067pt;}
.y8e{bottom:541.147067pt;}
.y1a2{bottom:543.947067pt;}
.y206{bottom:544.428723pt;}
.y1ce{bottom:545.547067pt;}
.y39{bottom:547.467067pt;}
.y124{bottom:548.507067pt;}
.ydf{bottom:549.707067pt;}
.y5e{bottom:551.147067pt;}
.y241{bottom:552.587435pt;}
.yb6{bottom:553.147067pt;}
.y154{bottom:557.707067pt;}
.y8d{bottom:559.547067pt;}
.y205{bottom:559.788715pt;}
.y1a1{bottom:562.347067pt;}
.y1cd{bottom:563.947067pt;}
.y38{bottom:565.867067pt;}
.y123{bottom:566.907067pt;}
.y240{bottom:567.947427pt;}
.yde{bottom:568.107067pt;}
.y5d{bottom:569.547067pt;}
.yb5{bottom:571.547067pt;}
.y204{bottom:575.148707pt;}
.y153{bottom:576.107067pt;}
.y8c{bottom:577.947067pt;}
.y1a0{bottom:580.747067pt;}
.y1cc{bottom:582.347067pt;}
.y23f{bottom:583.227259pt;}
.y37{bottom:584.267067pt;}
.y122{bottom:585.307067pt;}
.ydd{bottom:586.507067pt;}
.y5c{bottom:587.947067pt;}
.yb4{bottom:589.947067pt;}
.y203{bottom:590.428539pt;}
.ye{bottom:593.160000pt;}
.y152{bottom:594.507067pt;}
.y8b{bottom:596.347067pt;}
.y23e{bottom:598.587251pt;}
.y19f{bottom:599.147067pt;}
.y1cb{bottom:600.747067pt;}
.y36{bottom:602.667067pt;}
.y121{bottom:603.707067pt;}
.ydc{bottom:604.907067pt;}
.y202{bottom:605.788531pt;}
.y5b{bottom:606.347067pt;}
.yb3{bottom:608.347067pt;}
.y151{bottom:612.907067pt;}
.y23d{bottom:613.947243pt;}
.y8a{bottom:614.747067pt;}
.y19e{bottom:617.547067pt;}
.y1ca{bottom:619.147067pt;}
.y35{bottom:621.067067pt;}
.y201{bottom:621.148523pt;}
.y120{bottom:622.107067pt;}
.yd{bottom:622.306667pt;}
.ydb{bottom:623.307067pt;}
.y5a{bottom:624.747067pt;}
.yb2{bottom:626.747067pt;}
.y23c{bottom:629.227075pt;}
.y150{bottom:631.307067pt;}
.y89{bottom:633.147067pt;}
.y19d{bottom:635.947067pt;}
.y200{bottom:636.428355pt;}
.yc{bottom:637.426667pt;}
.y1c9{bottom:637.547067pt;}
.y34{bottom:639.467067pt;}
.y11f{bottom:640.507067pt;}
.yda{bottom:641.707067pt;}
.y59{bottom:643.147067pt;}
.y23b{bottom:644.587067pt;}
.yb1{bottom:645.147067pt;}
.y14f{bottom:649.707067pt;}
.y88{bottom:651.547067pt;}
.y1ff{bottom:651.788347pt;}
.y19c{bottom:654.347067pt;}
.y1c8{bottom:655.947067pt;}
.y11e{bottom:658.907067pt;}
.y23a{bottom:659.948523pt;}
.yd9{bottom:660.107067pt;}
.y58{bottom:661.547067pt;}
.yb0{bottom:663.547067pt;}
.yb{bottom:666.866667pt;}
.y1fe{bottom:667.148339pt;}
.y14e{bottom:668.107067pt;}
.y87{bottom:669.947067pt;}
.y19b{bottom:672.747067pt;}
.y1c7{bottom:674.347067pt;}
.y239{bottom:675.228355pt;}
.y33{bottom:675.387067pt;}
.y11d{bottom:677.307067pt;}
.yd8{bottom:678.507067pt;}
.y57{bottom:679.947067pt;}
.yaf{bottom:681.947067pt;}
.ya{bottom:681.986667pt;}
.y1fd{bottom:682.428171pt;}
.y14d{bottom:686.507067pt;}
.y86{bottom:688.347067pt;}
.y238{bottom:690.588347pt;}
.y19a{bottom:691.147067pt;}
.y1c6{bottom:692.747067pt;}
.y11c{bottom:695.707067pt;}
.yd7{bottom:696.907067pt;}
.y9{bottom:697.106667pt;}
.y1fc{bottom:697.788163pt;}
.y56{bottom:698.347067pt;}
.yae{bottom:700.347067pt;}
.y17c{bottom:704.506200pt;}
.y14c{bottom:704.907067pt;}
.y237{bottom:705.868179pt;}
.y85{bottom:706.747067pt;}
.y199{bottom:709.547067pt;}
.y1c5{bottom:711.147067pt;}
.y8{bottom:712.226667pt;}
.y1fb{bottom:713.148155pt;}
.y11b{bottom:714.107067pt;}
.yd6{bottom:715.307067pt;}
.y55{bottom:716.747067pt;}
.yad{bottom:718.747067pt;}
.y17b{bottom:720.586600pt;}
.y32{bottom:720.587200pt;}
.y236{bottom:721.228171pt;}
.y14b{bottom:723.307067pt;}
.y84{bottom:725.147067pt;}
.y7{bottom:727.333333pt;}
.y198{bottom:727.947067pt;}
.y1fa{bottom:728.427987pt;}
.y1c4{bottom:729.547067pt;}
.y11a{bottom:732.507067pt;}
.yd5{bottom:733.707067pt;}
.y54{bottom:735.147067pt;}
.y235{bottom:736.588163pt;}
.y17a{bottom:736.667000pt;}
.yac{bottom:737.147067pt;}
.y31{bottom:738.987200pt;}
.y14a{bottom:741.707067pt;}
.y6{bottom:742.453333pt;}
.y83{bottom:743.547067pt;}
.y1f9{bottom:743.787979pt;}
.y197{bottom:746.347067pt;}
.y1c3{bottom:747.947067pt;}
.y119{bottom:750.585267pt;}
.y234{bottom:751.867995pt;}
.yd4{bottom:752.107067pt;}
.y179{bottom:752.827200pt;}
.y53{bottom:753.547067pt;}
.yab{bottom:755.547067pt;}
.y30{bottom:758.987200pt;}
.y1f8{bottom:759.147971pt;}
.y149{bottom:760.107067pt;}
.y82{bottom:761.947067pt;}
.y196{bottom:764.747067pt;}
.y1c2{bottom:766.347067pt;}
.y118{bottom:766.665667pt;}
.y233{bottom:767.227987pt;}
.y178{bottom:769.307067pt;}
.yd3{bottom:770.507067pt;}
.y52{bottom:771.947067pt;}
.yaa{bottom:773.947067pt;}
.y1f7{bottom:774.427803pt;}
.y148{bottom:778.507067pt;}
.y2f{bottom:780.187067pt;}
.y232{bottom:782.587979pt;}
.y117{bottom:782.746067pt;}
.y1c1{bottom:784.747067pt;}
.y177{bottom:787.707067pt;}
.yd2{bottom:788.907067pt;}
.y1f6{bottom:789.787795pt;}
.y51{bottom:790.347067pt;}
.ya9{bottom:792.347067pt;}
.y147{bottom:796.907067pt;}
.y231{bottom:797.867811pt;}
.y81{bottom:797.946619pt;}
.y2e{bottom:798.587067pt;}
.y116{bottom:798.826467pt;}
.y1c0{bottom:803.147067pt;}
.y1f5{bottom:805.147787pt;}
.y176{bottom:806.107067pt;}
.yd1{bottom:807.307067pt;}
.y50{bottom:808.747067pt;}
.ya8{bottom:810.747067pt;}
.y5{bottom:812.920000pt;}
.y230{bottom:813.227803pt;}
.y115{bottom:814.906867pt;}
.y146{bottom:815.307067pt;}
.y2d{bottom:818.587067pt;}
.y1f4{bottom:820.427619pt;}
.y80{bottom:820.747067pt;}
.y1bf{bottom:821.547067pt;}
.y175{bottom:824.427067pt;}
.yd0{bottom:825.707067pt;}
.y4f{bottom:827.147067pt;}
.y22f{bottom:828.587795pt;}
.ya7{bottom:829.147067pt;}
.y114{bottom:831.067067pt;}
.y145{bottom:833.707067pt;}
.y4{bottom:835.346667pt;}
.y1f3{bottom:835.787611pt;}
.y2c{bottom:839.787067pt;}
.y1be{bottom:839.947067pt;}
.y174{bottom:842.827067pt;}
.y22e{bottom:843.867627pt;}
.ycf{bottom:845.227067pt;}
.y4e{bottom:845.547067pt;}
.ya6{bottom:847.547067pt;}
.y1f2{bottom:851.067443pt;}
.y144{bottom:852.107067pt;}
.y2b{bottom:858.187067pt;}
.y1bd{bottom:858.347067pt;}
.y22d{bottom:859.227619pt;}
.y173{bottom:861.227067pt;}
.y3{bottom:861.800000pt;}
.yce{bottom:863.627067pt;}
.y4d{bottom:863.947067pt;}
.y7f{bottom:865.947067pt;}
.y1f1{bottom:866.427435pt;}
.y143{bottom:870.507067pt;}
.y22c{bottom:874.587611pt;}
.y2a{bottom:876.587067pt;}
.y1bc{bottom:876.747067pt;}
.y172{bottom:879.627067pt;}
.y1f0{bottom:881.787427pt;}
.ycd{bottom:882.027067pt;}
.y4c{bottom:882.347067pt;}
.y7e{bottom:884.347067pt;}
.y2{bottom:888.253333pt;}
.y142{bottom:888.907067pt;}
.y22b{bottom:889.867443pt;}
.y1bb{bottom:895.147067pt;}
.y1ef{bottom:897.067259pt;}
.y171{bottom:898.027067pt;}
.ycc{bottom:900.427067pt;}
.y4b{bottom:900.747067pt;}
.y7d{bottom:902.747067pt;}
.y22a{bottom:905.227435pt;}
.y141{bottom:907.307067pt;}
.y1ee{bottom:912.427251pt;}
.y29{bottom:913.225947pt;}
.y1{bottom:914.720000pt;}
.y170{bottom:916.427067pt;}
.y4a{bottom:919.147067pt;}
.ycb{bottom:919.947067pt;}
.y229{bottom:920.587427pt;}
.y7c{bottom:921.147067pt;}
.y140{bottom:925.707067pt;}
.y1ed{bottom:927.787243pt;}
.y1ba{bottom:931.147067pt;}
.y16f{bottom:934.827067pt;}
.y228{bottom:935.867259pt;}
.y49{bottom:937.547067pt;}
.yca{bottom:938.427067pt;}
.y28{bottom:939.306507pt;}
.y7b{bottom:939.547067pt;}
.y1ec{bottom:943.067075pt;}
.y13f{bottom:944.107067pt;}
.y227{bottom:951.227251pt;}
.y16e{bottom:953.227067pt;}
.y48{bottom:955.947067pt;}
.y7a{bottom:957.947067pt;}
.y1eb{bottom:958.427067pt;}
.y13e{bottom:962.507067pt;}
.y27{bottom:965.387067pt;}
.y226{bottom:966.587243pt;}
.y79{bottom:976.347067pt;}
.y13d{bottom:980.506667pt;}
.y225{bottom:981.867075pt;}
.y47{bottom:991.867067pt;}
.y16d{bottom:991.947067pt;}
.y78{bottom:994.747067pt;}
.y13c{bottom:996.587067pt;}
.y224{bottom:997.227067pt;}
.y1f{bottom:1034.347067pt;}
.h17{height:24.013125pt;}
.h8{height:27.664000pt;}
.h6{height:31.616000pt;}
.h7{height:32.298667pt;}
.hb{height:35.568000pt;}
.hd{height:36.290625pt;}
.h1b{height:37.105312pt;}
.h19{height:37.120430pt;}
.h18{height:37.131406pt;}
.hc{height:38.357812pt;}
.h16{height:38.910156pt;}
.h5{height:39.520000pt;}
.h9{height:40.373333pt;}
.he{height:42.032812pt;}
.h4{height:43.472000pt;}
.ha{height:44.262400pt;}
.h13{height:44.437500pt;}
.h1a{height:44.462926pt;}
.h10{height:44.468750pt;}
.h11{height:50.713906pt;}
.h15{height:50.968750pt;}
.h12{height:51.114375pt;}
.h14{height:53.571719pt;}
.h2{height:55.328000pt;}
.h3{height:56.522667pt;}
.hf{height:58.573125pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.333333pt;}
.w2{width:793.626667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:41.573333pt;}
.x1{left:49.133333pt;}
.x5{left:113.440000pt;}
.x2{left:132.280000pt;}
.x8{left:143.680000pt;}
.xb{left:151.280240pt;}
.xa{left:167.520000pt;}
.x7{left:195.040000pt;}
.x9{left:353.920000pt;}
.x4{left:389.293333pt;}
.x6{left:618.080000pt;}
}




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