
    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_5d634e0d508aa4640965381b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_8934f86f9201821da2ffe02a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.138672;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_5777e798742fae2b40679c87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138672;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_73152b6e01e3c7c674f06ed9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.816895;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_f2d6314ad39b4af9d8184085.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921875;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_c5a259d178bef43f2660313c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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;}
.m2{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m3{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.800000px;}
.ls4{letter-spacing:-1.680000px;}
.ls6{letter-spacing:-1.440000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.320000px;}
.ls1{letter-spacing:1.680000px;}
.ls0{letter-spacing:2.880000px;}
.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;}
}
.ws6{word-spacing:-27.900000px;}
.ws0{word-spacing:-25.200000px;}
.ws61{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.820000px;}
.wsc0{word-spacing:-16.560000px;}
.ws8{word-spacing:-13.020000px;}
.ws56{word-spacing:-12.852000px;}
.wse{word-spacing:-12.768000px;}
.ws3f{word-spacing:-12.684000px;}
.wsd{word-spacing:-12.600000px;}
.ws4f{word-spacing:-12.516000px;}
.ws47{word-spacing:-12.432000px;}
.ws1d{word-spacing:-12.348000px;}
.ws27{word-spacing:-12.012000px;}
.ws1b{word-spacing:-11.760000px;}
.ws43{word-spacing:-11.676000px;}
.ws44{word-spacing:-11.508000px;}
.ws19{word-spacing:-11.340000px;}
.wsb{word-spacing:-11.172000px;}
.ws3a{word-spacing:-11.004000px;}
.ws57{word-spacing:-10.836000px;}
.ws2c{word-spacing:-10.668000px;}
.ws1c{word-spacing:-10.584000px;}
.ws40{word-spacing:-10.416000px;}
.ws1a{word-spacing:-10.332000px;}
.ws25{word-spacing:-10.164000px;}
.ws60{word-spacing:-10.080000px;}
.ws4c{word-spacing:-9.996000px;}
.ws34{word-spacing:-9.912000px;}
.ws59{word-spacing:-9.828000px;}
.ws2f{word-spacing:-9.744000px;}
.ws49{word-spacing:-9.156000px;}
.ws5f{word-spacing:-8.988000px;}
.ws22{word-spacing:-8.904000px;}
.ws38{word-spacing:-8.820000px;}
.ws36{word-spacing:-8.736000px;}
.ws5a{word-spacing:-8.652000px;}
.wsa4{word-spacing:-8.424000px;}
.ws17{word-spacing:-8.400000px;}
.ws24{word-spacing:-8.232000px;}
.ws41{word-spacing:-8.064000px;}
.ws89{word-spacing:-7.992000px;}
.ws35{word-spacing:-7.812000px;}
.ws4d{word-spacing:-7.560000px;}
.ws3d{word-spacing:-7.476000px;}
.ws39{word-spacing:-7.308000px;}
.ws63{word-spacing:-7.272000px;}
.ws5e{word-spacing:-7.224000px;}
.ws11{word-spacing:-7.056000px;}
.ws4e{word-spacing:-6.972000px;}
.ws58{word-spacing:-6.720000px;}
.wsf0{word-spacing:-6.624000px;}
.ws6a{word-spacing:-6.264000px;}
.wsa{word-spacing:-6.216000px;}
.ws77{word-spacing:-6.192000px;}
.ws5d{word-spacing:-5.964000px;}
.wscf{word-spacing:-5.832000px;}
.ws12{word-spacing:-5.544000px;}
.ws10{word-spacing:-5.376000px;}
.ws90{word-spacing:-5.256000px;}
.ws13{word-spacing:-5.208000px;}
.ws7a{word-spacing:-4.968000px;}
.ws9{word-spacing:-4.956000px;}
.ws92{word-spacing:-4.896000px;}
.wsf{word-spacing:-4.788000px;}
.ws5b{word-spacing:-4.704000px;}
.ws15{word-spacing:-4.452000px;}
.ws2d{word-spacing:-4.200000px;}
.ws7e{word-spacing:-4.176000px;}
.ws84{word-spacing:-3.960000px;}
.ws53{word-spacing:-3.948000px;}
.ws5c{word-spacing:-3.780000px;}
.wsec{word-spacing:-3.744000px;}
.ws4b{word-spacing:-3.696000px;}
.ws1f{word-spacing:-3.612000px;}
.ws9b{word-spacing:-3.600000px;}
.ws30{word-spacing:-3.444000px;}
.wsdc{word-spacing:-3.384000px;}
.ws16{word-spacing:-2.940000px;}
.ws3{word-spacing:-2.880000px;}
.ws1e{word-spacing:-2.856000px;}
.ws3e{word-spacing:-2.772000px;}
.ws70{word-spacing:-2.664000px;}
.ws55{word-spacing:-2.604000px;}
.ws74{word-spacing:-2.376000px;}
.ws3b{word-spacing:-2.184000px;}
.wsd0{word-spacing:-2.160000px;}
.ws21{word-spacing:-2.016000px;}
.ws97{word-spacing:-1.944000px;}
.ws18{word-spacing:-1.932000px;}
.ws37{word-spacing:-1.764000px;}
.ws4{word-spacing:-1.680000px;}
.wsa8{word-spacing:-1.584000px;}
.ws51{word-spacing:-1.512000px;}
.ws9a{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.368000px;}
.ws33{word-spacing:-1.344000px;}
.ws5{word-spacing:-1.320000px;}
.ws50{word-spacing:-1.260000px;}
.ws68{word-spacing:-1.224000px;}
.ws23{word-spacing:-1.092000px;}
.ws26{word-spacing:-0.924000px;}
.ws4a{word-spacing:-0.756000px;}
.ws9c{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.672000px;}
.ws76{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.588000px;}
.ws20{word-spacing:-0.504000px;}
.wsce{word-spacing:-0.432000px;}
.wsc1{word-spacing:-0.360000px;}
.wsd8{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.168000px;}
.ws75{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.wsea{word-spacing:0.072000px;}
.wsd7{word-spacing:0.144000px;}
.ws83{word-spacing:0.216000px;}
.wsda{word-spacing:0.288000px;}
.ws48{word-spacing:0.336000px;}
.ws6b{word-spacing:0.360000px;}
.wsc2{word-spacing:0.432000px;}
.ws80{word-spacing:0.576000px;}
.ws42{word-spacing:0.588000px;}
.wsc5{word-spacing:0.648000px;}
.wse4{word-spacing:0.720000px;}
.ws45{word-spacing:0.756000px;}
.ws14{word-spacing:0.840000px;}
.ws31{word-spacing:0.924000px;}
.wsa9{word-spacing:0.936000px;}
.ws2e{word-spacing:1.008000px;}
.ws95{word-spacing:1.080000px;}
.wsc6{word-spacing:1.152000px;}
.wsd2{word-spacing:1.224000px;}
.wsd4{word-spacing:1.296000px;}
.ws2a{word-spacing:1.344000px;}
.ws54{word-spacing:1.428000px;}
.ws82{word-spacing:1.440000px;}
.ws32{word-spacing:1.512000px;}
.ws52{word-spacing:1.680000px;}
.ws3c{word-spacing:1.764000px;}
.wsad{word-spacing:1.800000px;}
.ws28{word-spacing:1.848000px;}
.ws46{word-spacing:1.932000px;}
.ws7b{word-spacing:2.160000px;}
.wsa2{word-spacing:2.232000px;}
.wsd6{word-spacing:2.304000px;}
.wsde{word-spacing:2.376000px;}
.ws6c{word-spacing:2.448000px;}
.wsa0{word-spacing:2.736000px;}
.wsc8{word-spacing:3.024000px;}
.wsbb{word-spacing:3.312000px;}
.ws85{word-spacing:3.456000px;}
.wsef{word-spacing:3.528000px;}
.ws94{word-spacing:3.600000px;}
.ws6f{word-spacing:3.672000px;}
.wsbd{word-spacing:3.744000px;}
.wsd1{word-spacing:3.960000px;}
.wsd5{word-spacing:4.032000px;}
.ws8e{word-spacing:4.104000px;}
.ws7{word-spacing:4.176000px;}
.ws96{word-spacing:4.248000px;}
.ws66{word-spacing:4.392000px;}
.wsc9{word-spacing:4.464000px;}
.wsb4{word-spacing:4.536000px;}
.wscc{word-spacing:4.608000px;}
.wsb2{word-spacing:4.752000px;}
.wse7{word-spacing:4.824000px;}
.wsbf{word-spacing:4.896000px;}
.wsc3{word-spacing:4.968000px;}
.ws73{word-spacing:5.040000px;}
.wse0{word-spacing:5.184000px;}
.ws91{word-spacing:5.256000px;}
.wsba{word-spacing:5.400000px;}
.ws87{word-spacing:5.472000px;}
.wsb1{word-spacing:5.688000px;}
.ws65{word-spacing:5.760000px;}
.wsdb{word-spacing:5.832000px;}
.ws78{word-spacing:5.976000px;}
.wsab{word-spacing:6.048000px;}
.wsbc{word-spacing:6.192000px;}
.ws9e{word-spacing:6.264000px;}
.wse3{word-spacing:6.480000px;}
.ws64{word-spacing:6.552000px;}
.ws9f{word-spacing:6.768000px;}
.ws7d{word-spacing:6.840000px;}
.wsb0{word-spacing:6.984000px;}
.wsc7{word-spacing:7.272000px;}
.wse9{word-spacing:7.344000px;}
.ws7c{word-spacing:7.416000px;}
.wsaa{word-spacing:7.488000px;}
.ws7f{word-spacing:7.560000px;}
.wsb3{word-spacing:7.632000px;}
.ws69{word-spacing:7.776000px;}
.wsd3{word-spacing:7.992000px;}
.ws6d{word-spacing:8.280000px;}
.ws86{word-spacing:8.496000px;}
.ws6e{word-spacing:8.640000px;}
.wsa3{word-spacing:8.784000px;}
.wsb7{word-spacing:8.856000px;}
.ws8c{word-spacing:8.928000px;}
.ws8a{word-spacing:9.144000px;}
.wsac{word-spacing:9.216000px;}
.ws71{word-spacing:9.288000px;}
.wsed{word-spacing:9.360000px;}
.wsae{word-spacing:9.432000px;}
.wsdd{word-spacing:9.576000px;}
.ws88{word-spacing:9.864000px;}
.wse5{word-spacing:9.936000px;}
.ws8f{word-spacing:10.008000px;}
.ws79{word-spacing:10.080000px;}
.wsa7{word-spacing:10.152000px;}
.ws8d{word-spacing:10.368000px;}
.wsb5{word-spacing:10.440000px;}
.wscd{word-spacing:10.512000px;}
.wsa6{word-spacing:10.584000px;}
.ws67{word-spacing:10.656000px;}
.ws99{word-spacing:10.800000px;}
.wsc4{word-spacing:10.944000px;}
.wse1{word-spacing:11.160000px;}
.wsa5{word-spacing:11.376000px;}
.wseb{word-spacing:11.448000px;}
.wsb9{word-spacing:11.664000px;}
.ws93{word-spacing:11.736000px;}
.ws9d{word-spacing:12.528000px;}
.wsd9{word-spacing:12.600000px;}
.wse6{word-spacing:12.816000px;}
.ws8b{word-spacing:13.104000px;}
.wscb{word-spacing:13.176000px;}
.wsb8{word-spacing:13.464000px;}
.wsb6{word-spacing:13.896000px;}
.wse8{word-spacing:13.968000px;}
.wsaf{word-spacing:14.544000px;}
.wse2{word-spacing:15.192000px;}
.wsdf{word-spacing:16.632000px;}
.ws98{word-spacing:16.776000px;}
.wsbe{word-spacing:16.848000px;}
.ws72{word-spacing:17.856000px;}
.wsee{word-spacing:18.504000px;}
.wsa1{word-spacing:19.440000px;}
.wsca{word-spacing:21.600000px;}
.ws81{word-spacing:29.592000px;}
._20{margin-left:-18.189600px;}
._24{margin-left:-13.939200px;}
._1c{margin-left:-11.539200px;}
._26{margin-left:-10.473600px;}
._21{margin-left:-9.406800px;}
._a{margin-left:-8.208000px;}
._2{margin-left:-7.207200px;}
._4{margin-left:-5.502000px;}
._1{margin-left:-3.855600px;}
._0{margin-left:-2.553600px;}
._3{margin-left:-1.503600px;}
._5{width:1.680000px;}
._b{width:3.103200px;}
._c{width:4.412400px;}
._e{width:5.575200px;}
._1d{width:6.602400px;}
._11{width:7.635600px;}
._10{width:8.972400px;}
._f{width:10.776000px;}
._14{width:11.883600px;}
._8{width:12.916800px;}
._9{width:14.565600px;}
._13{width:15.624000px;}
._12{width:16.646400px;}
._7{width:19.084800px;}
._d{width:20.247600px;}
._16{width:21.489600px;}
._19{width:22.680000px;}
._1a{width:23.918400px;}
._1e{width:25.430400px;}
._23{width:26.784000px;}
._1f{width:27.992400px;}
._1b{width:29.044800px;}
._25{width:30.194400px;}
._22{width:31.906800px;}
._15{width:34.106400px;}
._28{width:41.672400px;}
._18{width:49.778400px;}
._17{width:50.871600px;}
._27{width:62.874000px;}
._6{width:73.872000px;}
.fc3{color:transparent;}
.fc2{color:rgb(76,0,0);}
.fc1{color:rgb(87,87,86);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:53.400000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs5{font-size:86.963217px;}
.fs6{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.fs3{font-size:180.000000px;}
.fs9{font-size:186.349750px;}
.y0{bottom:0.000000px;}
.yd6{bottom:44.761650px;}
.ye{bottom:86.410500px;}
.y2d1{bottom:106.245900px;}
.y290{bottom:107.255850px;}
.y203{bottom:109.252050px;}
.yc8{bottom:113.941650px;}
.yf3{bottom:116.692950px;}
.y7c{bottom:117.931650px;}
.yd5{bottom:117.949800px;}
.y125{bottom:118.251900px;}
.y2ce{bottom:118.724700px;}
.yb7{bottom:126.436650px;}
.ya7{bottom:127.486650px;}
.y243{bottom:129.194850px;}
.y53{bottom:129.962700px;}
.y2d9{bottom:130.753950px;}
.yd{bottom:134.227350px;}
.y1a2{bottom:134.255850px;}
.yc7{bottom:134.941650px;}
.y202{bottom:136.252050px;}
.y1bf{bottom:137.279850px;}
.y10d{bottom:139.753950px;}
.y2b5{bottom:143.692950px;}
.y124{bottom:145.251900px;}
.y7b{bottom:147.436650px;}
.yd4{bottom:147.454800px;}
.ya6{bottom:148.486650px;}
.y2a9{bottom:149.279850px;}
.y246{bottom:150.696750px;}
.y52{bottom:150.962700px;}
.y21e{bottom:152.692950px;}
.y2be{bottom:154.198800px;}
.y2b2{bottom:154.251900px;}
.yb6{bottom:155.941650px;}
.yc{bottom:161.221350px;}
.y2b6{bottom:161.255850px;}
.yf2{bottom:161.692950px;}
.y248{bottom:163.252050px;}
.y7a{bottom:168.436650px;}
.yd3{bottom:168.454800px;}
.y51{bottom:171.962700px;}
.y152{bottom:172.251900px;}
.y2d8{bottom:175.753950px;}
.yb5{bottom:176.941650px;}
.ya5{bottom:177.991650px;}
.y230{bottom:181.251900px;}
.y206{bottom:184.753950px;}
.yb{bottom:188.215350px;}
.y1a1{bottom:188.255850px;}
.y2b4{bottom:188.692950px;}
.yd2{bottom:189.436650px;}
.yf0{bottom:190.252050px;}
.y1be{bottom:191.279850px;}
.y10c{bottom:193.753950px;}
.y28e{bottom:194.279850px;}
.y245{bottom:195.696750px;}
.y79{bottom:197.941650px;}
.ya4{bottom:198.991650px;}
.y2bd{bottom:199.198800px;}
.y123{bottom:199.251900px;}
.y50{bottom:201.467700px;}
.y2d7{bottom:202.753950px;}
.y1da{bottom:203.279700px;}
.yc6{bottom:206.446650px;}
.yf1{bottom:206.692950px;}
.y22f{bottom:208.251900px;}
.y13a{bottom:211.753950px;}
.y1a0{bottom:215.255850px;}
.y167{bottom:217.252050px;}
.y1bd{bottom:218.279850px;}
.y78{bottom:218.941650px;}
.y2a{bottom:219.761850px;}
.ya3{bottom:219.991650px;}
.y10b{bottom:220.753950px;}
.y2a8{bottom:221.279850px;}
.y4f{bottom:222.467700px;}
.y122{bottom:226.251900px;}
.yb4{bottom:227.446650px;}
.y292{bottom:227.757900px;}
.y2d6{bottom:229.753950px;}
.y2b3{bottom:233.692950px;}
.y2b1{bottom:235.251900px;}
.y294{bottom:235.252050px;}
.y205{bottom:238.753950px;}
.yd1{bottom:239.941650px;}
.ya2{bottom:240.991650px;}
.y19f{bottom:242.255850px;}
.y2bc{bottom:244.198800px;}
.yef{bottom:244.252050px;}
.y1bc{bottom:245.279850px;}
.y10a{bottom:247.753950px;}
.y28d{bottom:248.279850px;}
.y77{bottom:248.446650px;}
.y21d{bottom:251.255850px;}
.y4e{bottom:251.972700px;}
.y121{bottom:253.251900px;}
.y2d5{bottom:256.753950px;}
.yc5{bottom:256.951650px;}
.y1d9{bottom:257.279700px;}
.y2aa{bottom:260.255850px;}
.yd0{bottom:260.941650px;}
.y22e{bottom:262.251900px;}
.y275{bottom:262.252050px;}
.y139{bottom:265.753950px;}
.y19e{bottom:269.255850px;}
.y76{bottom:269.446650px;}
.ya1{bottom:270.496650px;}
.yee{bottom:271.252050px;}
.y1bb{bottom:272.279850px;}
.y4d{bottom:272.972700px;}
.y29{bottom:273.761850px;}
.y109{bottom:274.753950px;}
.y28c{bottom:275.279850px;}
.yc4{bottom:277.951650px;}
.y21c{bottom:278.255850px;}
.y273{bottom:278.279700px;}
.y120{bottom:280.251900px;}
.y166{bottom:281.757900px;}
.y2d4{bottom:283.753950px;}
.y1d8{bottom:284.279700px;}
.y201{bottom:287.255850px;}
.y2a7{bottom:287.509800px;}
.y22d{bottom:289.251900px;}
.y293{bottom:289.252050px;}
.y75{bottom:290.446650px;}
.y178{bottom:290.752050px;}
.ya0{bottom:291.496650px;}
.y138{bottom:292.753950px;}
.y19d{bottom:296.255850px;}
.y242{bottom:297.005850px;}
.y151{bottom:297.761850px;}
.yed{bottom:298.252050px;}
.yb3{bottom:298.951650px;}
.y1ba{bottom:299.279850px;}
.y28{bottom:300.761850px;}
.y108{bottom:301.753950px;}
.y28b{bottom:302.279850px;}
.y4c{bottom:302.477700px;}
.y21b{bottom:305.255850px;}
.y11f{bottom:307.251900px;}
.y165{bottom:308.757900px;}
.y2d3{bottom:310.753950px;}
.y1d7{bottom:311.279700px;}
.ycf{bottom:311.446650px;}
.y204{bottom:314.255850px;}
.y22c{bottom:316.251900px;}
.y25b{bottom:316.252050px;}
.y2cd{bottom:318.283800px;}
.y137{bottom:319.753950px;}
.y74{bottom:319.951650px;}
.y9f{bottom:321.001650px;}
.y19c{bottom:323.255850px;}
.y4b{bottom:323.477700px;}
.yec{bottom:325.252050px;}
.y1b9{bottom:326.279850px;}
.y27{bottom:327.761850px;}
.yc3{bottom:328.456650px;}
.y107{bottom:328.753950px;}
.y28a{bottom:329.279850px;}
.y21a{bottom:332.255850px;}
.y272{bottom:332.279700px;}
.y11e{bottom:334.251900px;}
.y291{bottom:335.757900px;}
.y2d0{bottom:337.753950px;}
.y1d6{bottom:338.279700px;}
.y73{bottom:340.951650px;}
.y200{bottom:341.255850px;}
.y2a6{bottom:341.509800px;}
.y9e{bottom:342.001650px;}
.y150{bottom:342.761850px;}
.y22b{bottom:343.251900px;}
.y25a{bottom:343.252050px;}
.y177{bottom:344.752050px;}
.y136{bottom:346.753950px;}
.yb2{bottom:349.456650px;}
.y19b{bottom:350.255850px;}
.y241{bottom:351.005850px;}
.y1ef{bottom:351.502050px;}
.yeb{bottom:352.252050px;}
.y4a{bottom:352.982700px;}
.y1b8{bottom:353.279850px;}
.y26{bottom:354.761850px;}
.y106{bottom:355.753950px;}
.y289{bottom:356.279850px;}
.y219{bottom:359.255850px;}
.y271{bottom:359.279700px;}
.y11d{bottom:361.251900px;}
.yce{bottom:361.951650px;}
.y164{bottom:362.757900px;}
.y2d2{bottom:364.753950px;}
.y1d5{bottom:365.279700px;}
.y1ff{bottom:368.255850px;}
.y2a5{bottom:368.509800px;}
.y14f{bottom:369.761850px;}
.y22a{bottom:370.251900px;}
.y259{bottom:370.252050px;}
.y72{bottom:370.456650px;}
.y9d{bottom:371.506650px;}
.y176{bottom:371.752050px;}
.y2cc{bottom:372.283800px;}
.y135{bottom:373.753950px;}
.y49{bottom:373.982700px;}
.y19a{bottom:377.255850px;}
.y240{bottom:378.005850px;}
.y1ee{bottom:378.502050px;}
.yea{bottom:379.252050px;}
.y1b7{bottom:380.279850px;}
.y25{bottom:381.761850px;}
.y105{bottom:382.753950px;}
.y288{bottom:383.279850px;}
.y218{bottom:386.255850px;}
.y270{bottom:386.279700px;}
.y11c{bottom:388.251900px;}
.y163{bottom:389.757900px;}
.y71{bottom:391.456650px;}
.y18c{bottom:391.753950px;}
.y1d4{bottom:392.279700px;}
.y9c{bottom:392.506650px;}
.y48{bottom:394.982700px;}
.y1fe{bottom:395.255850px;}
.y2a4{bottom:395.509800px;}
.y14e{bottom:396.761850px;}
.y229{bottom:397.251900px;}
.y258{bottom:397.252050px;}
.y175{bottom:398.752050px;}
.y2cb{bottom:399.283800px;}
.yb1{bottom:399.961650px;}
.y134{bottom:400.753950px;}
.y199{bottom:404.255850px;}
.y23f{bottom:405.005850px;}
.ye9{bottom:406.252050px;}
.y1b6{bottom:407.279850px;}
.y24{bottom:408.761850px;}
.y104{bottom:409.753950px;}
.y287{bottom:410.279850px;}
.ycd{bottom:412.456650px;}
.y217{bottom:413.255850px;}
.y26f{bottom:413.279700px;}
.y11b{bottom:415.251900px;}
.y162{bottom:416.757900px;}
.y2cf{bottom:418.753950px;}
.y1d3{bottom:419.279700px;}
.y70{bottom:420.961650px;}
.y9b{bottom:422.011650px;}
.y1fd{bottom:422.255850px;}
.y2a3{bottom:422.509800px;}
.y14d{bottom:423.761850px;}
.y228{bottom:424.251900px;}
.y257{bottom:424.252050px;}
.y47{bottom:424.487700px;}
.y174{bottom:425.752050px;}
.y2ca{bottom:426.283800px;}
.y133{bottom:427.753950px;}
.y198{bottom:431.255850px;}
.y23e{bottom:432.005850px;}
.y1ed{bottom:432.502050px;}
.ye8{bottom:433.252050px;}
.y1b5{bottom:434.279850px;}
.y23{bottom:435.761850px;}
.y103{bottom:436.753950px;}
.y286{bottom:437.279850px;}
.y216{bottom:440.255850px;}
.y26e{bottom:440.279700px;}
.y6f{bottom:441.961650px;}
.y11a{bottom:442.251900px;}
.y9a{bottom:443.011650px;}
.y161{bottom:443.757900px;}
.y46{bottom:445.487700px;}
.y18b{bottom:445.753950px;}
.y1d2{bottom:446.279700px;}
.y1fc{bottom:449.255850px;}
.y2a2{bottom:449.509800px;}
.yca{bottom:450.466650px;}
.y14c{bottom:450.761850px;}
.y227{bottom:451.251900px;}
.y256{bottom:451.252050px;}
.y173{bottom:452.752050px;}
.y2c9{bottom:453.283800px;}
.y132{bottom:454.753950px;}
.ya{bottom:456.945450px;}
.y197{bottom:458.255850px;}
.y23d{bottom:459.005850px;}
.y1ec{bottom:459.502050px;}
.ye7{bottom:460.252050px;}
.y1b4{bottom:461.279850px;}
.y22{bottom:462.761850px;}
.ycc{bottom:462.961650px;}
.y102{bottom:463.753950px;}
.y99{bottom:464.011650px;}
.y285{bottom:464.279850px;}
.y45{bottom:466.487700px;}
.y215{bottom:467.255850px;}
.y26d{bottom:467.279700px;}
.y119{bottom:469.251900px;}
.y160{bottom:470.757900px;}
.y6e{bottom:471.466650px;}
.y18a{bottom:472.753950px;}
.y1d1{bottom:473.279700px;}
.y1fb{bottom:476.255850px;}
.y2a1{bottom:476.509800px;}
.y14b{bottom:477.761850px;}
.y226{bottom:478.251900px;}
.y255{bottom:478.252050px;}
.y172{bottom:479.752050px;}
.y2c8{bottom:480.283800px;}
.y131{bottom:481.753950px;}
.y98{bottom:485.011650px;}
.y196{bottom:485.255850px;}
.y23c{bottom:486.005850px;}
.y1eb{bottom:486.502050px;}
.y9{bottom:486.945450px;}
.ye6{bottom:487.252050px;}
.y1b3{bottom:488.279850px;}
.y21{bottom:489.761850px;}
.y101{bottom:490.753950px;}
.y284{bottom:491.279850px;}
.y6d{bottom:492.466650px;}
.y214{bottom:494.255850px;}
.y26c{bottom:494.279700px;}
.y44{bottom:495.992700px;}
.y118{bottom:496.251900px;}
.y15f{bottom:497.757900px;}
.y189{bottom:499.753950px;}
.y1d0{bottom:500.279700px;}
.y1fa{bottom:503.255850px;}
.y2a0{bottom:503.509800px;}
.y14a{bottom:504.761850px;}
.y225{bottom:505.251900px;}
.y254{bottom:505.252050px;}
.y171{bottom:506.752050px;}
.y2c7{bottom:507.283800px;}
.y130{bottom:508.753950px;}
.y195{bottom:512.255850px;}
.y23b{bottom:513.005850px;}
.yb0{bottom:513.466650px;}
.y1ea{bottom:513.502050px;}
.ye5{bottom:514.252050px;}
.y97{bottom:514.516650px;}
.y1b2{bottom:515.279850px;}
.y20{bottom:516.761850px;}
.y43{bottom:516.992700px;}
.y100{bottom:517.753950px;}
.y283{bottom:518.279850px;}
.y213{bottom:521.255850px;}
.y26b{bottom:521.279700px;}
.y6c{bottom:521.971650px;}
.y117{bottom:523.251900px;}
.y15e{bottom:524.757900px;}
.y188{bottom:526.753950px;}
.y1cf{bottom:527.279700px;}
.y1f9{bottom:530.255850px;}
.y29f{bottom:530.509800px;}
.y149{bottom:531.761850px;}
.y224{bottom:532.251900px;}
.y253{bottom:532.252050px;}
.y170{bottom:533.752050px;}
.y2c6{bottom:534.283800px;}
.y96{bottom:535.516650px;}
.y12f{bottom:535.753950px;}
.y194{bottom:539.255850px;}
.y23a{bottom:540.005850px;}
.y1e9{bottom:540.502050px;}
.ye4{bottom:541.252050px;}
.y1b1{bottom:542.279850px;}
.y6b{bottom:542.971650px;}
.y1f{bottom:543.761850px;}
.yff{bottom:544.753950px;}
.y282{bottom:545.279850px;}
.y42{bottom:546.497700px;}
.y212{bottom:548.255850px;}
.y26a{bottom:548.279700px;}
.y116{bottom:550.251900px;}
.y15d{bottom:551.757900px;}
.y187{bottom:553.753950px;}
.y1ce{bottom:554.279700px;}
.y1f8{bottom:557.255850px;}
.y29e{bottom:557.509800px;}
.y148{bottom:558.761850px;}
.y8{bottom:558.945450px;}
.y223{bottom:559.251900px;}
.y252{bottom:559.252050px;}
.y16f{bottom:560.752050px;}
.y2c5{bottom:561.283800px;}
.y12e{bottom:562.753950px;}
.yaf{bottom:563.971650px;}
.y95{bottom:565.021650px;}
.y193{bottom:566.255850px;}
.y239{bottom:567.005850px;}
.y41{bottom:567.497700px;}
.y1e8{bottom:567.502050px;}
.ye3{bottom:568.252050px;}
.y1b0{bottom:569.279850px;}
.y1e{bottom:570.761850px;}
.yfe{bottom:571.753950px;}
.y281{bottom:572.279850px;}
.y6a{bottom:572.476650px;}
.y211{bottom:575.255850px;}
.y269{bottom:575.279700px;}
.y115{bottom:577.251900px;}
.y15c{bottom:578.757900px;}
.y186{bottom:580.753950px;}
.y1cd{bottom:581.279700px;}
.y1f7{bottom:584.255850px;}
.y29d{bottom:584.509800px;}
.yc2{bottom:584.971650px;}
.y147{bottom:585.761850px;}
.y94{bottom:586.021650px;}
.y222{bottom:586.251900px;}
.y251{bottom:586.252050px;}
.y16e{bottom:587.752050px;}
.y2c4{bottom:588.283800px;}
.y7{bottom:588.945450px;}
.y12d{bottom:589.753950px;}
.y192{bottom:593.255850px;}
.y69{bottom:593.476650px;}
.y238{bottom:594.005850px;}
.y1e7{bottom:594.502050px;}
.ye2{bottom:595.252050px;}
.y1af{bottom:596.279850px;}
.y40{bottom:597.002700px;}
.y1d{bottom:597.761850px;}
.yfd{bottom:598.753950px;}
.y280{bottom:599.279850px;}
.y210{bottom:602.255850px;}
.y268{bottom:602.279700px;}
.y114{bottom:604.251900px;}
.y15b{bottom:605.757900px;}
.y93{bottom:607.021650px;}
.y185{bottom:607.753950px;}
.y1cc{bottom:608.279700px;}
.y1f6{bottom:611.255850px;}
.y29c{bottom:611.509800px;}
.y146{bottom:612.761850px;}
.y221{bottom:613.251900px;}
.y250{bottom:613.252050px;}
.yae{bottom:614.476650px;}
.y16d{bottom:614.752050px;}
.y2c3{bottom:615.283800px;}
.y12c{bottom:616.753950px;}
.y3f{bottom:618.002700px;}
.y191{bottom:620.255850px;}
.y237{bottom:621.005850px;}
.y1e6{bottom:621.502050px;}
.ye1{bottom:622.252050px;}
.y68{bottom:622.981650px;}
.y1ae{bottom:623.279850px;}
.y1c{bottom:624.761850px;}
.yfc{bottom:625.753950px;}
.y27f{bottom:626.279850px;}
.y92{bottom:628.021650px;}
.y20f{bottom:629.255850px;}
.y267{bottom:629.279700px;}
.y113{bottom:631.251900px;}
.y15a{bottom:632.757900px;}
.y184{bottom:634.753950px;}
.y1cb{bottom:635.279700px;}
.yc1{bottom:635.476650px;}
.y1f5{bottom:638.255850px;}
.y29b{bottom:638.509800px;}
.y3e{bottom:639.002700px;}
.y145{bottom:639.761850px;}
.y220{bottom:640.251900px;}
.y24f{bottom:640.252050px;}
.y16c{bottom:641.752050px;}
.y2c2{bottom:642.283800px;}
.y12b{bottom:643.753950px;}
.y67{bottom:643.981650px;}
.y190{bottom:647.255850px;}
.y236{bottom:648.005850px;}
.y1e5{bottom:648.502050px;}
.y91{bottom:649.021650px;}
.ye0{bottom:649.252050px;}
.y1ad{bottom:650.279850px;}
.y1b{bottom:651.761850px;}
.yfb{bottom:652.753950px;}
.y27e{bottom:653.279850px;}
.y20e{bottom:656.255850px;}
.y266{bottom:656.279700px;}
.yc0{bottom:656.476650px;}
.y112{bottom:658.251900px;}
.y159{bottom:659.757900px;}
.y6{bottom:660.945450px;}
.y183{bottom:661.753950px;}
.y1ca{bottom:662.279700px;}
.yad{bottom:664.981650px;}
.y1f4{bottom:665.255850px;}
.y29a{bottom:665.509800px;}
.y144{bottom:666.761850px;}
.y21f{bottom:667.251900px;}
.y24e{bottom:667.252050px;}
.y3d{bottom:668.507700px;}
.y16b{bottom:668.752050px;}
.y2c1{bottom:669.283800px;}
.y90{bottom:670.021650px;}
.y12a{bottom:670.753950px;}
.y66{bottom:673.486650px;}
.y18f{bottom:674.255850px;}
.y235{bottom:675.005850px;}
.y1e4{bottom:675.502050px;}
.ydf{bottom:676.252050px;}
.y1ac{bottom:677.279850px;}
.y1a{bottom:678.761850px;}
.yfa{bottom:679.753950px;}
.y27d{bottom:680.279850px;}
.y20d{bottom:683.255850px;}
.y265{bottom:683.279700px;}
.y111{bottom:685.251900px;}
.ybf{bottom:685.981650px;}
.y158{bottom:686.757900px;}
.y182{bottom:688.753950px;}
.y1c9{bottom:689.279700px;}
.y3c{bottom:689.507700px;}
.y8f{bottom:691.021650px;}
.y1f3{bottom:692.255850px;}
.y299{bottom:692.509800px;}
.y143{bottom:693.761850px;}
.y5{bottom:693.945450px;}
.y24d{bottom:694.252050px;}
.y65{bottom:694.486650px;}
.y16a{bottom:695.752050px;}
.y2c0{bottom:696.283800px;}
.y129{bottom:697.753950px;}
.y2b0{bottom:698.531850px;}
.y18e{bottom:701.255850px;}
.y234{bottom:702.005850px;}
.y1e3{bottom:702.502050px;}
.yde{bottom:703.252050px;}
.y1ab{bottom:704.279850px;}
.y19{bottom:705.761850px;}
.yf9{bottom:706.753950px;}
.ybe{bottom:706.981650px;}
.y20c{bottom:710.255850px;}
.y264{bottom:710.279700px;}
.y3b{bottom:710.507700px;}
.y8e{bottom:712.021650px;}
.y110{bottom:712.251900px;}
.y157{bottom:713.757900px;}
.yac{bottom:715.486650px;}
.y181{bottom:715.753950px;}
.y1c8{bottom:716.279700px;}
.y1f2{bottom:719.255850px;}
.y298{bottom:719.509800px;}
.y2af{bottom:720.026850px;}
.y142{bottom:720.761850px;}
.y24c{bottom:721.252050px;}
.y169{bottom:722.752050px;}
.y2bf{bottom:723.283800px;}
.y64{bottom:723.991650px;}
.y128{bottom:724.753950px;}
.y18d{bottom:728.255850px;}
.y233{bottom:729.005850px;}
.y1e2{bottom:729.502050px;}
.ydd{bottom:730.252050px;}
.y3a{bottom:731.507700px;}
.y18{bottom:732.761850px;}
.y8d{bottom:733.021650px;}
.y247{bottom:733.753950px;}
.y1aa{bottom:735.559650px;}
.ybd{bottom:736.486650px;}
.y20b{bottom:737.255850px;}
.y263{bottom:737.279700px;}
.y27c{bottom:738.559650px;}
.y156{bottom:740.757900px;}
.y2ae{bottom:741.521850px;}
.y180{bottom:742.753950px;}
.y1c7{bottom:743.279700px;}
.y10f{bottom:743.531850px;}
.y63{bottom:744.991650px;}
.y1f1{bottom:746.255850px;}
.y141{bottom:747.761850px;}
.y24b{bottom:748.252050px;}
.y127{bottom:751.753950px;}
.y39{bottom:752.507700px;}
.y8c{bottom:754.021650px;}
.y28f{bottom:755.255850px;}
.y232{bottom:756.005850px;}
.y1e1{bottom:756.502050px;}
.y1a9{bottom:757.054650px;}
.y10e{bottom:757.252050px;}
.ybc{bottom:757.486650px;}
.y17{bottom:759.761850px;}
.y27b{bottom:760.054650px;}
.y2ad{bottom:763.016850px;}
.y20a{bottom:764.255850px;}
.yf8{bottom:765.026850px;}
.y4{bottom:765.939450px;}
.yab{bottom:765.991650px;}
.y155{bottom:767.757900px;}
.y262{bottom:768.559650px;}
.y17f{bottom:769.753950px;}
.y1c6{bottom:770.279700px;}
.y168{bottom:771.281850px;}
.y1f0{bottom:773.255850px;}
.y38{bottom:773.507700px;}
.y62{bottom:774.496650px;}
.y140{bottom:774.761850px;}
.y8b{bottom:775.021650px;}
.y24a{bottom:775.252050px;}
.y297{bottom:777.761850px;}
.y1a8{bottom:778.549650px;}
.y126{bottom:778.753950px;}
.y27a{bottom:781.549650px;}
.y231{bottom:783.005850px;}
.y1e0{bottom:783.502050px;}
.y2ac{bottom:784.511850px;}
.yf7{bottom:786.521850px;}
.y16{bottom:786.761850px;}
.yaa{bottom:786.991650px;}
.ydc{bottom:788.531850px;}
.y3{bottom:789.942450px;}
.y261{bottom:790.054650px;}
.y209{bottom:791.255850px;}
.y37{bottom:794.507700px;}
.y154{bottom:794.757900px;}
.y296{bottom:795.011850px;}
.y61{bottom:795.496650px;}
.y8a{bottom:796.021650px;}
.y17e{bottom:796.753950px;}
.y1a7{bottom:800.044650px;}
.y244{bottom:800.255850px;}
.y13f{bottom:801.761850px;}
.y274{bottom:802.252050px;}
.y279{bottom:803.044650px;}
.ybb{bottom:807.991650px;}
.yf6{bottom:808.016850px;}
.ydb{bottom:810.026850px;}
.y260{bottom:811.549650px;}
.y295{bottom:812.261850px;}
.y15{bottom:813.761850px;}
.y2{bottom:813.945450px;}
.y1df{bottom:814.774050px;}
.y36{bottom:815.507700px;}
.y60{bottom:816.496650px;}
.y89{bottom:817.021650px;}
.y208{bottom:818.255850px;}
.y1a6{bottom:821.539650px;}
.y153{bottom:821.757900px;}
.y2ab{bottom:823.021650px;}
.y17d{bottom:823.753950px;}
.y278{bottom:824.539650px;}
.y1c5{bottom:828.559650px;}
.y13e{bottom:828.761850px;}
.yf5{bottom:829.511850px;}
.y1de{bottom:831.021000px;}
.yda{bottom:831.521850px;}
.y25f{bottom:833.044650px;}
.y249{bottom:833.531850px;}
.y35{bottom:836.507700px;}
.ya9{bottom:837.496650px;}
.y88{bottom:838.021650px;}
.y14{bottom:840.761850px;}
.y1{bottom:843.945450px;}
.y207{bottom:845.255850px;}
.y5f{bottom:846.001650px;}
.y1dd{bottom:847.267950px;}
.y1c4{bottom:850.054650px;}
.yd9{bottom:853.016850px;}
.y25e{bottom:854.539650px;}
.y17c{bottom:855.026850px;}
.y13d{bottom:855.761850px;}
.y34{bottom:857.507700px;}
.yba{bottom:858.496650px;}
.y87{bottom:859.021650px;}
.y1a5{bottom:860.049450px;}
.y277{bottom:863.049450px;}
.y1dc{bottom:863.514900px;}
.y5e{bottom:867.001650px;}
.y13{bottom:867.761850px;}
.yf4{bottom:868.021650px;}
.y1c3{bottom:871.549650px;}
.yd8{bottom:874.511850px;}
.y17b{bottom:876.521850px;}
.y33{bottom:878.507700px;}
.y1db{bottom:879.761850px;}
.y86{bottom:880.021650px;}
.y13c{bottom:882.761850px;}
.y5d{bottom:888.001650px;}
.y1c2{bottom:893.044650px;}
.y25d{bottom:893.049450px;}
.y17a{bottom:898.016850px;}
.y32{bottom:899.507700px;}
.y85{bottom:901.021650px;}
.y1a4{bottom:905.049450px;}
.y276{bottom:908.049450px;}
.yb9{bottom:909.001650px;}
.y13b{bottom:909.761850px;}
.yd7{bottom:913.021650px;}
.y1c1{bottom:914.539650px;}
.y5c{bottom:917.506650px;}
.y179{bottom:919.511850px;}
.y31{bottom:920.507700px;}
.y84{bottom:922.021650px;}
.y25c{bottom:938.049450px;}
.y5b{bottom:938.506650px;}
.y30{bottom:941.507700px;}
.y83{bottom:943.021650px;}
.y1a3{bottom:950.049450px;}
.y1c0{bottom:953.049450px;}
.y12{bottom:958.021650px;}
.yb8{bottom:959.506650px;}
.y2f{bottom:962.507700px;}
.y82{bottom:964.021650px;}
.y5a{bottom:968.011650px;}
.y2bb{bottom:975.608550px;}
.ycb{bottom:980.506650px;}
.y81{bottom:985.021650px;}
.y59{bottom:989.011650px;}
.y2e{bottom:992.012700px;}
.y11{bottom:1003.021650px;}
.y80{bottom:1006.021650px;}
.ya8{bottom:1010.011650px;}
.y2d{bottom:1013.012700px;}
.y58{bottom:1018.516650px;}
.y7f{bottom:1027.021650px;}
.y2ba{bottom:1029.608550px;}
.yc9{bottom:1031.011650px;}
.y57{bottom:1039.516650px;}
.y2c{bottom:1042.517700px;}
.y10{bottom:1048.021650px;}
.y2b9{bottom:1056.608550px;}
.y56{bottom:1060.516650px;}
.y2b{bottom:1063.517700px;}
.y7e{bottom:1069.021650px;}
.y55{bottom:1081.516650px;}
.y2b8{bottom:1083.608550px;}
.y7d{bottom:1090.021650px;}
.yf{bottom:1093.021650px;}
.y2b7{bottom:1110.608550px;}
.y54{bottom:1111.021650px;}
.h5{height:45.987305px;}
.hd{height:47.663672px;}
.h8{height:48.550781px;}
.hc{height:53.554688px;}
.h4{height:58.910156px;}
.h7{height:64.265625px;}
.h9{height:71.232000px;}
.ha{height:73.744808px;}
.h3{height:74.976562px;}
.hb{height:96.398438px;}
.h2{height:122.112000px;}
.h6{height:152.640000px;}
.he{height:158.024588px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:110.551050px;}
.x7b{left:111.994200px;}
.x69{left:113.839200px;}
.x41{left:115.324200px;}
.x7c{left:116.584200px;}
.x5d{left:118.744200px;}
.x3c{left:120.454200px;}
.x92{left:122.479200px;}
.x48{left:124.639200px;}
.x8f{left:125.989200px;}
.x25{left:127.294200px;}
.x86{left:128.689200px;}
.x6b{left:129.814200px;}
.x62{left:131.777400px;}
.x89{left:133.054200px;}
.x28{left:135.034200px;}
.x65{left:137.104200px;}
.x73{left:138.814200px;}
.x20{left:140.299200px;}
.x61{left:141.969000px;}
.x6e{left:143.404200px;}
.x77{left:145.114200px;}
.x37{left:147.184200px;}
.x54{left:149.794200px;}
.x63{left:151.009200px;}
.xa{left:153.907350px;}
.x7e{left:155.554200px;}
.x53{left:157.039200px;}
.x8c{left:158.614200px;}
.x6a{left:160.324200px;}
.x99{left:161.584200px;}
.x74{left:163.609200px;}
.x9{left:165.308850px;}
.x19{left:166.444200px;}
.x46{left:168.154200px;}
.x4f{left:171.034200px;}
.x6c{left:173.104200px;}
.xb{left:174.499350px;}
.x4e{left:175.714200px;}
.x60{left:181.839000px;}
.x81{left:183.364200px;}
.x94{left:185.794200px;}
.x93{left:187.555200px;}
.x9d{left:188.629200px;}
.x1f{left:191.104200px;}
.x7f{left:192.454200px;}
.x75{left:194.524200px;}
.xe{left:195.590550px;}
.x6d{left:196.729200px;}
.x5a{left:199.114200px;}
.x45{left:200.824200px;}
.x71{left:203.254200px;}
.x3d{left:205.954200px;}
.x8b{left:207.574200px;}
.x5e{left:208.744200px;}
.x26{left:211.669200px;}
.x14{left:213.469200px;}
.x11{left:214.856100px;}
.x76{left:216.574200px;}
.x98{left:218.194200px;}
.x82{left:220.174200px;}
.x8e{left:221.389200px;}
.x56{left:222.604200px;}
.x97{left:224.359200px;}
.x2e{left:226.429200px;}
.x87{left:232.504200px;}
.x78{left:234.394200px;}
.xa0{left:236.920500px;}
.x8d{left:238.264200px;}
.x32{left:239.434200px;}
.x83{left:242.629200px;}
.x9e{left:244.879200px;}
.x2f{left:246.904200px;}
.x9f{left:248.119200px;}
.x5c{left:250.414200px;}
.x52{left:251.539200px;}
.x9c{left:252.574200px;}
.x42{left:255.769200px;}
.x7d{left:258.559200px;}
.x4{left:259.560600px;}
.x31{left:262.339200px;}
.x59{left:265.129200px;}
.x90{left:268.234200px;}
.x72{left:269.539200px;}
.x84{left:271.339200px;}
.x57{left:274.219200px;}
.x88{left:278.224200px;}
.x29{left:280.294200px;}
.xa1{left:281.779200px;}
.x6{left:283.019400px;}
.x95{left:286.909200px;}
.x1a{left:288.214200px;}
.x85{left:289.429200px;}
.x9b{left:292.039200px;}
.x49{left:294.199200px;}
.x96{left:296.269200px;}
.x3b{left:298.531050px;}
.x2b{left:304.012050px;}
.x47{left:306.439200px;}
.x3{left:308.364600px;}
.x3e{left:311.164200px;}
.x12{left:313.910550px;}
.x80{left:315.747900px;}
.x66{left:316.834200px;}
.x8{left:318.703500px;}
.x38{left:320.527050px;}
.x36{left:323.183550px;}
.x7a{left:324.286350px;}
.x5{left:325.391100px;}
.x27{left:326.701500px;}
.x70{left:328.899600px;}
.x21{left:330.154200px;}
.x51{left:331.633350px;}
.x5f{left:333.030900px;}
.x16{left:334.354350px;}
.x43{left:335.428800px;}
.x35{left:336.848550px;}
.x23{left:338.350350px;}
.x30{left:340.337400px;}
.x2{left:342.132600px;}
.x64{left:343.284450px;}
.x9a{left:344.749950px;}
.x55{left:346.369650px;}
.x1d{left:348.344400px;}
.x40{left:349.789800px;}
.xa4{left:350.926200px;}
.x1c{left:351.929400px;}
.x67{left:352.949550px;}
.x2c{left:354.007050px;}
.x1b{left:355.094400px;}
.x79{left:356.250000px;}
.x39{left:357.823050px;}
.x4a{left:359.338800px;}
.x33{left:360.803550px;}
.x2a{left:361.807050px;}
.x4b{left:363.628800px;}
.x7{left:364.720050px;}
.x3a{left:365.725050px;}
.x1{left:367.671750px;}
.x8a{left:369.532050px;}
.x24{left:370.960350px;}
.x22{left:372.115350px;}
.x18{left:373.534350px;}
.x4d{left:375.088800px;}
.x34{left:376.493550px;}
.x4c{left:377.638800px;}
.x50{left:379.168350px;}
.x15{left:381.139350px;}
.x44{left:383.008800px;}
.x2d{left:384.847050px;}
.x1e{left:386.294400px;}
.x68{left:388.020000px;}
.x58{left:389.484600px;}
.x17{left:391.684350px;}
.x3f{left:394.879800px;}
.xa3{left:404.931600px;}
.x6f{left:411.289200px;}
.x91{left:426.206700px;}
.x13{left:432.956700px;}
.xd{left:442.969200px;}
.x5b{left:444.583350px;}
.xf{left:498.170550px;}
.xc{left:538.039500px;}
.xa2{left:638.849550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.600000pt;}
.ls4{letter-spacing:-1.493333pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls1{letter-spacing:1.493333pt;}
.ls0{letter-spacing:2.560000pt;}
.ws6{word-spacing:-24.800000pt;}
.ws0{word-spacing:-22.400000pt;}
.ws61{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.840000pt;}
.wsc0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-11.573333pt;}
.ws56{word-spacing:-11.424000pt;}
.wse{word-spacing:-11.349333pt;}
.ws3f{word-spacing:-11.274667pt;}
.wsd{word-spacing:-11.200000pt;}
.ws4f{word-spacing:-11.125333pt;}
.ws47{word-spacing:-11.050667pt;}
.ws1d{word-spacing:-10.976000pt;}
.ws27{word-spacing:-10.677333pt;}
.ws1b{word-spacing:-10.453333pt;}
.ws43{word-spacing:-10.378667pt;}
.ws44{word-spacing:-10.229333pt;}
.ws19{word-spacing:-10.080000pt;}
.wsb{word-spacing:-9.930667pt;}
.ws3a{word-spacing:-9.781333pt;}
.ws57{word-spacing:-9.632000pt;}
.ws2c{word-spacing:-9.482667pt;}
.ws1c{word-spacing:-9.408000pt;}
.ws40{word-spacing:-9.258667pt;}
.ws1a{word-spacing:-9.184000pt;}
.ws25{word-spacing:-9.034667pt;}
.ws60{word-spacing:-8.960000pt;}
.ws4c{word-spacing:-8.885333pt;}
.ws34{word-spacing:-8.810667pt;}
.ws59{word-spacing:-8.736000pt;}
.ws2f{word-spacing:-8.661333pt;}
.ws49{word-spacing:-8.138667pt;}
.ws5f{word-spacing:-7.989333pt;}
.ws22{word-spacing:-7.914667pt;}
.ws38{word-spacing:-7.840000pt;}
.ws36{word-spacing:-7.765333pt;}
.ws5a{word-spacing:-7.690667pt;}
.wsa4{word-spacing:-7.488000pt;}
.ws17{word-spacing:-7.466667pt;}
.ws24{word-spacing:-7.317333pt;}
.ws41{word-spacing:-7.168000pt;}
.ws89{word-spacing:-7.104000pt;}
.ws35{word-spacing:-6.944000pt;}
.ws4d{word-spacing:-6.720000pt;}
.ws3d{word-spacing:-6.645333pt;}
.ws39{word-spacing:-6.496000pt;}
.ws63{word-spacing:-6.464000pt;}
.ws5e{word-spacing:-6.421333pt;}
.ws11{word-spacing:-6.272000pt;}
.ws4e{word-spacing:-6.197333pt;}
.ws58{word-spacing:-5.973333pt;}
.wsf0{word-spacing:-5.888000pt;}
.ws6a{word-spacing:-5.568000pt;}
.wsa{word-spacing:-5.525333pt;}
.ws77{word-spacing:-5.504000pt;}
.ws5d{word-spacing:-5.301333pt;}
.wscf{word-spacing:-5.184000pt;}
.ws12{word-spacing:-4.928000pt;}
.ws10{word-spacing:-4.778667pt;}
.ws90{word-spacing:-4.672000pt;}
.ws13{word-spacing:-4.629333pt;}
.ws7a{word-spacing:-4.416000pt;}
.ws9{word-spacing:-4.405333pt;}
.ws92{word-spacing:-4.352000pt;}
.wsf{word-spacing:-4.256000pt;}
.ws5b{word-spacing:-4.181333pt;}
.ws15{word-spacing:-3.957333pt;}
.ws2d{word-spacing:-3.733333pt;}
.ws7e{word-spacing:-3.712000pt;}
.ws84{word-spacing:-3.520000pt;}
.ws53{word-spacing:-3.509333pt;}
.ws5c{word-spacing:-3.360000pt;}
.wsec{word-spacing:-3.328000pt;}
.ws4b{word-spacing:-3.285333pt;}
.ws1f{word-spacing:-3.210667pt;}
.ws9b{word-spacing:-3.200000pt;}
.ws30{word-spacing:-3.061333pt;}
.wsdc{word-spacing:-3.008000pt;}
.ws16{word-spacing:-2.613333pt;}
.ws3{word-spacing:-2.560000pt;}
.ws1e{word-spacing:-2.538667pt;}
.ws3e{word-spacing:-2.464000pt;}
.ws70{word-spacing:-2.368000pt;}
.ws55{word-spacing:-2.314667pt;}
.ws74{word-spacing:-2.112000pt;}
.ws3b{word-spacing:-1.941333pt;}
.wsd0{word-spacing:-1.920000pt;}
.ws21{word-spacing:-1.792000pt;}
.ws97{word-spacing:-1.728000pt;}
.ws18{word-spacing:-1.717333pt;}
.ws37{word-spacing:-1.568000pt;}
.ws4{word-spacing:-1.493333pt;}
.wsa8{word-spacing:-1.408000pt;}
.ws51{word-spacing:-1.344000pt;}
.ws9a{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.216000pt;}
.ws33{word-spacing:-1.194667pt;}
.ws5{word-spacing:-1.173333pt;}
.ws50{word-spacing:-1.120000pt;}
.ws68{word-spacing:-1.088000pt;}
.ws23{word-spacing:-0.970667pt;}
.ws26{word-spacing:-0.821333pt;}
.ws4a{word-spacing:-0.672000pt;}
.ws9c{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.597333pt;}
.ws76{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.522667pt;}
.ws20{word-spacing:-0.448000pt;}
.wsce{word-spacing:-0.384000pt;}
.wsc1{word-spacing:-0.320000pt;}
.wsd8{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.149333pt;}
.ws75{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.wsea{word-spacing:0.064000pt;}
.wsd7{word-spacing:0.128000pt;}
.ws83{word-spacing:0.192000pt;}
.wsda{word-spacing:0.256000pt;}
.ws48{word-spacing:0.298667pt;}
.ws6b{word-spacing:0.320000pt;}
.wsc2{word-spacing:0.384000pt;}
.ws80{word-spacing:0.512000pt;}
.ws42{word-spacing:0.522667pt;}
.wsc5{word-spacing:0.576000pt;}
.wse4{word-spacing:0.640000pt;}
.ws45{word-spacing:0.672000pt;}
.ws14{word-spacing:0.746667pt;}
.ws31{word-spacing:0.821333pt;}
.wsa9{word-spacing:0.832000pt;}
.ws2e{word-spacing:0.896000pt;}
.ws95{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.024000pt;}
.wsd2{word-spacing:1.088000pt;}
.wsd4{word-spacing:1.152000pt;}
.ws2a{word-spacing:1.194667pt;}
.ws54{word-spacing:1.269333pt;}
.ws82{word-spacing:1.280000pt;}
.ws32{word-spacing:1.344000pt;}
.ws52{word-spacing:1.493333pt;}
.ws3c{word-spacing:1.568000pt;}
.wsad{word-spacing:1.600000pt;}
.ws28{word-spacing:1.642667pt;}
.ws46{word-spacing:1.717333pt;}
.ws7b{word-spacing:1.920000pt;}
.wsa2{word-spacing:1.984000pt;}
.wsd6{word-spacing:2.048000pt;}
.wsde{word-spacing:2.112000pt;}
.ws6c{word-spacing:2.176000pt;}
.wsa0{word-spacing:2.432000pt;}
.wsc8{word-spacing:2.688000pt;}
.wsbb{word-spacing:2.944000pt;}
.ws85{word-spacing:3.072000pt;}
.wsef{word-spacing:3.136000pt;}
.ws94{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.264000pt;}
.wsbd{word-spacing:3.328000pt;}
.wsd1{word-spacing:3.520000pt;}
.wsd5{word-spacing:3.584000pt;}
.ws8e{word-spacing:3.648000pt;}
.ws7{word-spacing:3.712000pt;}
.ws96{word-spacing:3.776000pt;}
.ws66{word-spacing:3.904000pt;}
.wsc9{word-spacing:3.968000pt;}
.wsb4{word-spacing:4.032000pt;}
.wscc{word-spacing:4.096000pt;}
.wsb2{word-spacing:4.224000pt;}
.wse7{word-spacing:4.288000pt;}
.wsbf{word-spacing:4.352000pt;}
.wsc3{word-spacing:4.416000pt;}
.ws73{word-spacing:4.480000pt;}
.wse0{word-spacing:4.608000pt;}
.ws91{word-spacing:4.672000pt;}
.wsba{word-spacing:4.800000pt;}
.ws87{word-spacing:4.864000pt;}
.wsb1{word-spacing:5.056000pt;}
.ws65{word-spacing:5.120000pt;}
.wsdb{word-spacing:5.184000pt;}
.ws78{word-spacing:5.312000pt;}
.wsab{word-spacing:5.376000pt;}
.wsbc{word-spacing:5.504000pt;}
.ws9e{word-spacing:5.568000pt;}
.wse3{word-spacing:5.760000pt;}
.ws64{word-spacing:5.824000pt;}
.ws9f{word-spacing:6.016000pt;}
.ws7d{word-spacing:6.080000pt;}
.wsb0{word-spacing:6.208000pt;}
.wsc7{word-spacing:6.464000pt;}
.wse9{word-spacing:6.528000pt;}
.ws7c{word-spacing:6.592000pt;}
.wsaa{word-spacing:6.656000pt;}
.ws7f{word-spacing:6.720000pt;}
.wsb3{word-spacing:6.784000pt;}
.ws69{word-spacing:6.912000pt;}
.wsd3{word-spacing:7.104000pt;}
.ws6d{word-spacing:7.360000pt;}
.ws86{word-spacing:7.552000pt;}
.ws6e{word-spacing:7.680000pt;}
.wsa3{word-spacing:7.808000pt;}
.wsb7{word-spacing:7.872000pt;}
.ws8c{word-spacing:7.936000pt;}
.ws8a{word-spacing:8.128000pt;}
.wsac{word-spacing:8.192000pt;}
.ws71{word-spacing:8.256000pt;}
.wsed{word-spacing:8.320000pt;}
.wsae{word-spacing:8.384000pt;}
.wsdd{word-spacing:8.512000pt;}
.ws88{word-spacing:8.768000pt;}
.wse5{word-spacing:8.832000pt;}
.ws8f{word-spacing:8.896000pt;}
.ws79{word-spacing:8.960000pt;}
.wsa7{word-spacing:9.024000pt;}
.ws8d{word-spacing:9.216000pt;}
.wsb5{word-spacing:9.280000pt;}
.wscd{word-spacing:9.344000pt;}
.wsa6{word-spacing:9.408000pt;}
.ws67{word-spacing:9.472000pt;}
.ws99{word-spacing:9.600000pt;}
.wsc4{word-spacing:9.728000pt;}
.wse1{word-spacing:9.920000pt;}
.wsa5{word-spacing:10.112000pt;}
.wseb{word-spacing:10.176000pt;}
.wsb9{word-spacing:10.368000pt;}
.ws93{word-spacing:10.432000pt;}
.ws9d{word-spacing:11.136000pt;}
.wsd9{word-spacing:11.200000pt;}
.wse6{word-spacing:11.392000pt;}
.ws8b{word-spacing:11.648000pt;}
.wscb{word-spacing:11.712000pt;}
.wsb8{word-spacing:11.968000pt;}
.wsb6{word-spacing:12.352000pt;}
.wse8{word-spacing:12.416000pt;}
.wsaf{word-spacing:12.928000pt;}
.wse2{word-spacing:13.504000pt;}
.wsdf{word-spacing:14.784000pt;}
.ws98{word-spacing:14.912000pt;}
.wsbe{word-spacing:14.976000pt;}
.ws72{word-spacing:15.872000pt;}
.wsee{word-spacing:16.448000pt;}
.wsa1{word-spacing:17.280000pt;}
.wsca{word-spacing:19.200000pt;}
.ws81{word-spacing:26.304000pt;}
._20{margin-left:-16.168533pt;}
._24{margin-left:-12.390400pt;}
._1c{margin-left:-10.257067pt;}
._26{margin-left:-9.309867pt;}
._21{margin-left:-8.361600pt;}
._a{margin-left:-7.296000pt;}
._2{margin-left:-6.406400pt;}
._4{margin-left:-4.890667pt;}
._1{margin-left:-3.427200pt;}
._0{margin-left:-2.269867pt;}
._3{margin-left:-1.336533pt;}
._5{width:1.493333pt;}
._b{width:2.758400pt;}
._c{width:3.922133pt;}
._e{width:4.955733pt;}
._1d{width:5.868800pt;}
._11{width:6.787200pt;}
._10{width:7.975467pt;}
._f{width:9.578667pt;}
._14{width:10.563200pt;}
._8{width:11.481600pt;}
._9{width:12.947200pt;}
._13{width:13.888000pt;}
._12{width:14.796800pt;}
._7{width:16.964267pt;}
._d{width:17.997867pt;}
._16{width:19.101867pt;}
._19{width:20.160000pt;}
._1a{width:21.260800pt;}
._1e{width:22.604800pt;}
._23{width:23.808000pt;}
._1f{width:24.882133pt;}
._1b{width:25.817600pt;}
._25{width:26.839467pt;}
._22{width:28.361600pt;}
._15{width:30.316800pt;}
._28{width:37.042133pt;}
._18{width:44.247467pt;}
._17{width:45.219200pt;}
._27{width:55.888000pt;}
._6{width:65.664000pt;}
.fs8{font-size:47.466667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs5{font-size:77.300637pt;}
.fs6{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.fs3{font-size:160.000000pt;}
.fs9{font-size:165.644222pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:39.788133pt;}
.ye{bottom:76.809333pt;}
.y2d1{bottom:94.440800pt;}
.y290{bottom:95.338533pt;}
.y203{bottom:97.112933pt;}
.yc8{bottom:101.281467pt;}
.yf3{bottom:103.727067pt;}
.y7c{bottom:104.828133pt;}
.yd5{bottom:104.844267pt;}
.y125{bottom:105.112800pt;}
.y2ce{bottom:105.533067pt;}
.yb7{bottom:112.388133pt;}
.ya7{bottom:113.321467pt;}
.y243{bottom:114.839867pt;}
.y53{bottom:115.522400pt;}
.y2d9{bottom:116.225733pt;}
.yd{bottom:119.313200pt;}
.y1a2{bottom:119.338533pt;}
.yc7{bottom:119.948133pt;}
.y202{bottom:121.112933pt;}
.y1bf{bottom:122.026533pt;}
.y10d{bottom:124.225733pt;}
.y2b5{bottom:127.727067pt;}
.y124{bottom:129.112800pt;}
.y7b{bottom:131.054800pt;}
.yd4{bottom:131.070933pt;}
.ya6{bottom:131.988133pt;}
.y2a9{bottom:132.693200pt;}
.y246{bottom:133.952667pt;}
.y52{bottom:134.189067pt;}
.y21e{bottom:135.727067pt;}
.y2be{bottom:137.065600pt;}
.y2b2{bottom:137.112800pt;}
.yb6{bottom:138.614800pt;}
.yc{bottom:143.307867pt;}
.y2b6{bottom:143.338533pt;}
.yf2{bottom:143.727067pt;}
.y248{bottom:145.112933pt;}
.y7a{bottom:149.721467pt;}
.yd3{bottom:149.737600pt;}
.y51{bottom:152.855733pt;}
.y152{bottom:153.112800pt;}
.y2d8{bottom:156.225733pt;}
.yb5{bottom:157.281467pt;}
.ya5{bottom:158.214800pt;}
.y230{bottom:161.112800pt;}
.y206{bottom:164.225733pt;}
.yb{bottom:167.302533pt;}
.y1a1{bottom:167.338533pt;}
.y2b4{bottom:167.727067pt;}
.yd2{bottom:168.388133pt;}
.yf0{bottom:169.112933pt;}
.y1be{bottom:170.026533pt;}
.y10c{bottom:172.225733pt;}
.y28e{bottom:172.693200pt;}
.y245{bottom:173.952667pt;}
.y79{bottom:175.948133pt;}
.ya4{bottom:176.881467pt;}
.y2bd{bottom:177.065600pt;}
.y123{bottom:177.112800pt;}
.y50{bottom:179.082400pt;}
.y2d7{bottom:180.225733pt;}
.y1da{bottom:180.693067pt;}
.yc6{bottom:183.508133pt;}
.yf1{bottom:183.727067pt;}
.y22f{bottom:185.112800pt;}
.y13a{bottom:188.225733pt;}
.y1a0{bottom:191.338533pt;}
.y167{bottom:193.112933pt;}
.y1bd{bottom:194.026533pt;}
.y78{bottom:194.614800pt;}
.y2a{bottom:195.343867pt;}
.ya3{bottom:195.548133pt;}
.y10b{bottom:196.225733pt;}
.y2a8{bottom:196.693200pt;}
.y4f{bottom:197.749067pt;}
.y122{bottom:201.112800pt;}
.yb4{bottom:202.174800pt;}
.y292{bottom:202.451467pt;}
.y2d6{bottom:204.225733pt;}
.y2b3{bottom:207.727067pt;}
.y2b1{bottom:209.112800pt;}
.y294{bottom:209.112933pt;}
.y205{bottom:212.225733pt;}
.yd1{bottom:213.281467pt;}
.ya2{bottom:214.214800pt;}
.y19f{bottom:215.338533pt;}
.y2bc{bottom:217.065600pt;}
.yef{bottom:217.112933pt;}
.y1bc{bottom:218.026533pt;}
.y10a{bottom:220.225733pt;}
.y28d{bottom:220.693200pt;}
.y77{bottom:220.841467pt;}
.y21d{bottom:223.338533pt;}
.y4e{bottom:223.975733pt;}
.y121{bottom:225.112800pt;}
.y2d5{bottom:228.225733pt;}
.yc5{bottom:228.401467pt;}
.y1d9{bottom:228.693067pt;}
.y2aa{bottom:231.338533pt;}
.yd0{bottom:231.948133pt;}
.y22e{bottom:233.112800pt;}
.y275{bottom:233.112933pt;}
.y139{bottom:236.225733pt;}
.y19e{bottom:239.338533pt;}
.y76{bottom:239.508133pt;}
.ya1{bottom:240.441467pt;}
.yee{bottom:241.112933pt;}
.y1bb{bottom:242.026533pt;}
.y4d{bottom:242.642400pt;}
.y29{bottom:243.343867pt;}
.y109{bottom:244.225733pt;}
.y28c{bottom:244.693200pt;}
.yc4{bottom:247.068133pt;}
.y21c{bottom:247.338533pt;}
.y273{bottom:247.359733pt;}
.y120{bottom:249.112800pt;}
.y166{bottom:250.451467pt;}
.y2d4{bottom:252.225733pt;}
.y1d8{bottom:252.693067pt;}
.y201{bottom:255.338533pt;}
.y2a7{bottom:255.564267pt;}
.y22d{bottom:257.112800pt;}
.y293{bottom:257.112933pt;}
.y75{bottom:258.174800pt;}
.y178{bottom:258.446267pt;}
.ya0{bottom:259.108133pt;}
.y138{bottom:260.225733pt;}
.y19d{bottom:263.338533pt;}
.y242{bottom:264.005200pt;}
.y151{bottom:264.677200pt;}
.yed{bottom:265.112933pt;}
.yb3{bottom:265.734800pt;}
.y1ba{bottom:266.026533pt;}
.y28{bottom:267.343867pt;}
.y108{bottom:268.225733pt;}
.y28b{bottom:268.693200pt;}
.y4c{bottom:268.869067pt;}
.y21b{bottom:271.338533pt;}
.y11f{bottom:273.112800pt;}
.y165{bottom:274.451467pt;}
.y2d3{bottom:276.225733pt;}
.y1d7{bottom:276.693067pt;}
.ycf{bottom:276.841467pt;}
.y204{bottom:279.338533pt;}
.y22c{bottom:281.112800pt;}
.y25b{bottom:281.112933pt;}
.y2cd{bottom:282.918933pt;}
.y137{bottom:284.225733pt;}
.y74{bottom:284.401467pt;}
.y9f{bottom:285.334800pt;}
.y19c{bottom:287.338533pt;}
.y4b{bottom:287.535733pt;}
.yec{bottom:289.112933pt;}
.y1b9{bottom:290.026533pt;}
.y27{bottom:291.343867pt;}
.yc3{bottom:291.961467pt;}
.y107{bottom:292.225733pt;}
.y28a{bottom:292.693200pt;}
.y21a{bottom:295.338533pt;}
.y272{bottom:295.359733pt;}
.y11e{bottom:297.112800pt;}
.y291{bottom:298.451467pt;}
.y2d0{bottom:300.225733pt;}
.y1d6{bottom:300.693067pt;}
.y73{bottom:303.068133pt;}
.y200{bottom:303.338533pt;}
.y2a6{bottom:303.564267pt;}
.y9e{bottom:304.001467pt;}
.y150{bottom:304.677200pt;}
.y22b{bottom:305.112800pt;}
.y25a{bottom:305.112933pt;}
.y177{bottom:306.446267pt;}
.y136{bottom:308.225733pt;}
.yb2{bottom:310.628133pt;}
.y19b{bottom:311.338533pt;}
.y241{bottom:312.005200pt;}
.y1ef{bottom:312.446267pt;}
.yeb{bottom:313.112933pt;}
.y4a{bottom:313.762400pt;}
.y1b8{bottom:314.026533pt;}
.y26{bottom:315.343867pt;}
.y106{bottom:316.225733pt;}
.y289{bottom:316.693200pt;}
.y219{bottom:319.338533pt;}
.y271{bottom:319.359733pt;}
.y11d{bottom:321.112800pt;}
.yce{bottom:321.734800pt;}
.y164{bottom:322.451467pt;}
.y2d2{bottom:324.225733pt;}
.y1d5{bottom:324.693067pt;}
.y1ff{bottom:327.338533pt;}
.y2a5{bottom:327.564267pt;}
.y14f{bottom:328.677200pt;}
.y22a{bottom:329.112800pt;}
.y259{bottom:329.112933pt;}
.y72{bottom:329.294800pt;}
.y9d{bottom:330.228133pt;}
.y176{bottom:330.446267pt;}
.y2cc{bottom:330.918933pt;}
.y135{bottom:332.225733pt;}
.y49{bottom:332.429067pt;}
.y19a{bottom:335.338533pt;}
.y240{bottom:336.005200pt;}
.y1ee{bottom:336.446267pt;}
.yea{bottom:337.112933pt;}
.y1b7{bottom:338.026533pt;}
.y25{bottom:339.343867pt;}
.y105{bottom:340.225733pt;}
.y288{bottom:340.693200pt;}
.y218{bottom:343.338533pt;}
.y270{bottom:343.359733pt;}
.y11c{bottom:345.112800pt;}
.y163{bottom:346.451467pt;}
.y71{bottom:347.961467pt;}
.y18c{bottom:348.225733pt;}
.y1d4{bottom:348.693067pt;}
.y9c{bottom:348.894800pt;}
.y48{bottom:351.095733pt;}
.y1fe{bottom:351.338533pt;}
.y2a4{bottom:351.564267pt;}
.y14e{bottom:352.677200pt;}
.y229{bottom:353.112800pt;}
.y258{bottom:353.112933pt;}
.y175{bottom:354.446267pt;}
.y2cb{bottom:354.918933pt;}
.yb1{bottom:355.521467pt;}
.y134{bottom:356.225733pt;}
.y199{bottom:359.338533pt;}
.y23f{bottom:360.005200pt;}
.ye9{bottom:361.112933pt;}
.y1b6{bottom:362.026533pt;}
.y24{bottom:363.343867pt;}
.y104{bottom:364.225733pt;}
.y287{bottom:364.693200pt;}
.ycd{bottom:366.628133pt;}
.y217{bottom:367.338533pt;}
.y26f{bottom:367.359733pt;}
.y11b{bottom:369.112800pt;}
.y162{bottom:370.451467pt;}
.y2cf{bottom:372.225733pt;}
.y1d3{bottom:372.693067pt;}
.y70{bottom:374.188133pt;}
.y9b{bottom:375.121467pt;}
.y1fd{bottom:375.338533pt;}
.y2a3{bottom:375.564267pt;}
.y14d{bottom:376.677200pt;}
.y228{bottom:377.112800pt;}
.y257{bottom:377.112933pt;}
.y47{bottom:377.322400pt;}
.y174{bottom:378.446267pt;}
.y2ca{bottom:378.918933pt;}
.y133{bottom:380.225733pt;}
.y198{bottom:383.338533pt;}
.y23e{bottom:384.005200pt;}
.y1ed{bottom:384.446267pt;}
.ye8{bottom:385.112933pt;}
.y1b5{bottom:386.026533pt;}
.y23{bottom:387.343867pt;}
.y103{bottom:388.225733pt;}
.y286{bottom:388.693200pt;}
.y216{bottom:391.338533pt;}
.y26e{bottom:391.359733pt;}
.y6f{bottom:392.854800pt;}
.y11a{bottom:393.112800pt;}
.y9a{bottom:393.788133pt;}
.y161{bottom:394.451467pt;}
.y46{bottom:395.989067pt;}
.y18b{bottom:396.225733pt;}
.y1d2{bottom:396.693067pt;}
.y1fc{bottom:399.338533pt;}
.y2a2{bottom:399.564267pt;}
.yca{bottom:400.414800pt;}
.y14c{bottom:400.677200pt;}
.y227{bottom:401.112800pt;}
.y256{bottom:401.112933pt;}
.y173{bottom:402.446267pt;}
.y2c9{bottom:402.918933pt;}
.y132{bottom:404.225733pt;}
.ya{bottom:406.173733pt;}
.y197{bottom:407.338533pt;}
.y23d{bottom:408.005200pt;}
.y1ec{bottom:408.446267pt;}
.ye7{bottom:409.112933pt;}
.y1b4{bottom:410.026533pt;}
.y22{bottom:411.343867pt;}
.ycc{bottom:411.521467pt;}
.y102{bottom:412.225733pt;}
.y99{bottom:412.454800pt;}
.y285{bottom:412.693200pt;}
.y45{bottom:414.655733pt;}
.y215{bottom:415.338533pt;}
.y26d{bottom:415.359733pt;}
.y119{bottom:417.112800pt;}
.y160{bottom:418.451467pt;}
.y6e{bottom:419.081467pt;}
.y18a{bottom:420.225733pt;}
.y1d1{bottom:420.693067pt;}
.y1fb{bottom:423.338533pt;}
.y2a1{bottom:423.564267pt;}
.y14b{bottom:424.677200pt;}
.y226{bottom:425.112800pt;}
.y255{bottom:425.112933pt;}
.y172{bottom:426.446267pt;}
.y2c8{bottom:426.918933pt;}
.y131{bottom:428.225733pt;}
.y98{bottom:431.121467pt;}
.y196{bottom:431.338533pt;}
.y23c{bottom:432.005200pt;}
.y1eb{bottom:432.446267pt;}
.y9{bottom:432.840400pt;}
.ye6{bottom:433.112933pt;}
.y1b3{bottom:434.026533pt;}
.y21{bottom:435.343867pt;}
.y101{bottom:436.225733pt;}
.y284{bottom:436.693200pt;}
.y6d{bottom:437.748133pt;}
.y214{bottom:439.338533pt;}
.y26c{bottom:439.359733pt;}
.y44{bottom:440.882400pt;}
.y118{bottom:441.112800pt;}
.y15f{bottom:442.451467pt;}
.y189{bottom:444.225733pt;}
.y1d0{bottom:444.693067pt;}
.y1fa{bottom:447.338533pt;}
.y2a0{bottom:447.564267pt;}
.y14a{bottom:448.677200pt;}
.y225{bottom:449.112800pt;}
.y254{bottom:449.112933pt;}
.y171{bottom:450.446267pt;}
.y2c7{bottom:450.918933pt;}
.y130{bottom:452.225733pt;}
.y195{bottom:455.338533pt;}
.y23b{bottom:456.005200pt;}
.yb0{bottom:456.414800pt;}
.y1ea{bottom:456.446267pt;}
.ye5{bottom:457.112933pt;}
.y97{bottom:457.348133pt;}
.y1b2{bottom:458.026533pt;}
.y20{bottom:459.343867pt;}
.y43{bottom:459.549067pt;}
.y100{bottom:460.225733pt;}
.y283{bottom:460.693200pt;}
.y213{bottom:463.338533pt;}
.y26b{bottom:463.359733pt;}
.y6c{bottom:463.974800pt;}
.y117{bottom:465.112800pt;}
.y15e{bottom:466.451467pt;}
.y188{bottom:468.225733pt;}
.y1cf{bottom:468.693067pt;}
.y1f9{bottom:471.338533pt;}
.y29f{bottom:471.564267pt;}
.y149{bottom:472.677200pt;}
.y224{bottom:473.112800pt;}
.y253{bottom:473.112933pt;}
.y170{bottom:474.446267pt;}
.y2c6{bottom:474.918933pt;}
.y96{bottom:476.014800pt;}
.y12f{bottom:476.225733pt;}
.y194{bottom:479.338533pt;}
.y23a{bottom:480.005200pt;}
.y1e9{bottom:480.446267pt;}
.ye4{bottom:481.112933pt;}
.y1b1{bottom:482.026533pt;}
.y6b{bottom:482.641467pt;}
.y1f{bottom:483.343867pt;}
.yff{bottom:484.225733pt;}
.y282{bottom:484.693200pt;}
.y42{bottom:485.775733pt;}
.y212{bottom:487.338533pt;}
.y26a{bottom:487.359733pt;}
.y116{bottom:489.112800pt;}
.y15d{bottom:490.451467pt;}
.y187{bottom:492.225733pt;}
.y1ce{bottom:492.693067pt;}
.y1f8{bottom:495.338533pt;}
.y29e{bottom:495.564267pt;}
.y148{bottom:496.677200pt;}
.y8{bottom:496.840400pt;}
.y223{bottom:497.112800pt;}
.y252{bottom:497.112933pt;}
.y16f{bottom:498.446267pt;}
.y2c5{bottom:498.918933pt;}
.y12e{bottom:500.225733pt;}
.yaf{bottom:501.308133pt;}
.y95{bottom:502.241467pt;}
.y193{bottom:503.338533pt;}
.y239{bottom:504.005200pt;}
.y41{bottom:504.442400pt;}
.y1e8{bottom:504.446267pt;}
.ye3{bottom:505.112933pt;}
.y1b0{bottom:506.026533pt;}
.y1e{bottom:507.343867pt;}
.yfe{bottom:508.225733pt;}
.y281{bottom:508.693200pt;}
.y6a{bottom:508.868133pt;}
.y211{bottom:511.338533pt;}
.y269{bottom:511.359733pt;}
.y115{bottom:513.112800pt;}
.y15c{bottom:514.451467pt;}
.y186{bottom:516.225733pt;}
.y1cd{bottom:516.693067pt;}
.y1f7{bottom:519.338533pt;}
.y29d{bottom:519.564267pt;}
.yc2{bottom:519.974800pt;}
.y147{bottom:520.677200pt;}
.y94{bottom:520.908133pt;}
.y222{bottom:521.112800pt;}
.y251{bottom:521.112933pt;}
.y16e{bottom:522.446267pt;}
.y2c4{bottom:522.918933pt;}
.y7{bottom:523.507067pt;}
.y12d{bottom:524.225733pt;}
.y192{bottom:527.338533pt;}
.y69{bottom:527.534800pt;}
.y238{bottom:528.005200pt;}
.y1e7{bottom:528.446267pt;}
.ye2{bottom:529.112933pt;}
.y1af{bottom:530.026533pt;}
.y40{bottom:530.669067pt;}
.y1d{bottom:531.343867pt;}
.yfd{bottom:532.225733pt;}
.y280{bottom:532.693200pt;}
.y210{bottom:535.338533pt;}
.y268{bottom:535.359733pt;}
.y114{bottom:537.112800pt;}
.y15b{bottom:538.451467pt;}
.y93{bottom:539.574800pt;}
.y185{bottom:540.225733pt;}
.y1cc{bottom:540.693067pt;}
.y1f6{bottom:543.338533pt;}
.y29c{bottom:543.564267pt;}
.y146{bottom:544.677200pt;}
.y221{bottom:545.112800pt;}
.y250{bottom:545.112933pt;}
.yae{bottom:546.201467pt;}
.y16d{bottom:546.446267pt;}
.y2c3{bottom:546.918933pt;}
.y12c{bottom:548.225733pt;}
.y3f{bottom:549.335733pt;}
.y191{bottom:551.338533pt;}
.y237{bottom:552.005200pt;}
.y1e6{bottom:552.446267pt;}
.ye1{bottom:553.112933pt;}
.y68{bottom:553.761467pt;}
.y1ae{bottom:554.026533pt;}
.y1c{bottom:555.343867pt;}
.yfc{bottom:556.225733pt;}
.y27f{bottom:556.693200pt;}
.y92{bottom:558.241467pt;}
.y20f{bottom:559.338533pt;}
.y267{bottom:559.359733pt;}
.y113{bottom:561.112800pt;}
.y15a{bottom:562.451467pt;}
.y184{bottom:564.225733pt;}
.y1cb{bottom:564.693067pt;}
.yc1{bottom:564.868133pt;}
.y1f5{bottom:567.338533pt;}
.y29b{bottom:567.564267pt;}
.y3e{bottom:568.002400pt;}
.y145{bottom:568.677200pt;}
.y220{bottom:569.112800pt;}
.y24f{bottom:569.112933pt;}
.y16c{bottom:570.446267pt;}
.y2c2{bottom:570.918933pt;}
.y12b{bottom:572.225733pt;}
.y67{bottom:572.428133pt;}
.y190{bottom:575.338533pt;}
.y236{bottom:576.005200pt;}
.y1e5{bottom:576.446267pt;}
.y91{bottom:576.908133pt;}
.ye0{bottom:577.112933pt;}
.y1ad{bottom:578.026533pt;}
.y1b{bottom:579.343867pt;}
.yfb{bottom:580.225733pt;}
.y27e{bottom:580.693200pt;}
.y20e{bottom:583.338533pt;}
.y266{bottom:583.359733pt;}
.yc0{bottom:583.534800pt;}
.y112{bottom:585.112800pt;}
.y159{bottom:586.451467pt;}
.y6{bottom:587.507067pt;}
.y183{bottom:588.225733pt;}
.y1ca{bottom:588.693067pt;}
.yad{bottom:591.094800pt;}
.y1f4{bottom:591.338533pt;}
.y29a{bottom:591.564267pt;}
.y144{bottom:592.677200pt;}
.y21f{bottom:593.112800pt;}
.y24e{bottom:593.112933pt;}
.y3d{bottom:594.229067pt;}
.y16b{bottom:594.446267pt;}
.y2c1{bottom:594.918933pt;}
.y90{bottom:595.574800pt;}
.y12a{bottom:596.225733pt;}
.y66{bottom:598.654800pt;}
.y18f{bottom:599.338533pt;}
.y235{bottom:600.005200pt;}
.y1e4{bottom:600.446267pt;}
.ydf{bottom:601.112933pt;}
.y1ac{bottom:602.026533pt;}
.y1a{bottom:603.343867pt;}
.yfa{bottom:604.225733pt;}
.y27d{bottom:604.693200pt;}
.y20d{bottom:607.338533pt;}
.y265{bottom:607.359733pt;}
.y111{bottom:609.112800pt;}
.ybf{bottom:609.761467pt;}
.y158{bottom:610.451467pt;}
.y182{bottom:612.225733pt;}
.y1c9{bottom:612.693067pt;}
.y3c{bottom:612.895733pt;}
.y8f{bottom:614.241467pt;}
.y1f3{bottom:615.338533pt;}
.y299{bottom:615.564267pt;}
.y143{bottom:616.677200pt;}
.y5{bottom:616.840400pt;}
.y24d{bottom:617.112933pt;}
.y65{bottom:617.321467pt;}
.y16a{bottom:618.446267pt;}
.y2c0{bottom:618.918933pt;}
.y129{bottom:620.225733pt;}
.y2b0{bottom:620.917200pt;}
.y18e{bottom:623.338533pt;}
.y234{bottom:624.005200pt;}
.y1e3{bottom:624.446267pt;}
.yde{bottom:625.112933pt;}
.y1ab{bottom:626.026533pt;}
.y19{bottom:627.343867pt;}
.yf9{bottom:628.225733pt;}
.ybe{bottom:628.428133pt;}
.y20c{bottom:631.338533pt;}
.y264{bottom:631.359733pt;}
.y3b{bottom:631.562400pt;}
.y8e{bottom:632.908133pt;}
.y110{bottom:633.112800pt;}
.y157{bottom:634.451467pt;}
.yac{bottom:635.988133pt;}
.y181{bottom:636.225733pt;}
.y1c8{bottom:636.693067pt;}
.y1f2{bottom:639.338533pt;}
.y298{bottom:639.564267pt;}
.y2af{bottom:640.023867pt;}
.y142{bottom:640.677200pt;}
.y24c{bottom:641.112933pt;}
.y169{bottom:642.446267pt;}
.y2bf{bottom:642.918933pt;}
.y64{bottom:643.548133pt;}
.y128{bottom:644.225733pt;}
.y18d{bottom:647.338533pt;}
.y233{bottom:648.005200pt;}
.y1e2{bottom:648.446267pt;}
.ydd{bottom:649.112933pt;}
.y3a{bottom:650.229067pt;}
.y18{bottom:651.343867pt;}
.y8d{bottom:651.574800pt;}
.y247{bottom:652.225733pt;}
.y1aa{bottom:653.830800pt;}
.ybd{bottom:654.654800pt;}
.y20b{bottom:655.338533pt;}
.y263{bottom:655.359733pt;}
.y27c{bottom:656.497467pt;}
.y156{bottom:658.451467pt;}
.y2ae{bottom:659.130533pt;}
.y180{bottom:660.225733pt;}
.y1c7{bottom:660.693067pt;}
.y10f{bottom:660.917200pt;}
.y63{bottom:662.214800pt;}
.y1f1{bottom:663.338533pt;}
.y141{bottom:664.677200pt;}
.y24b{bottom:665.112933pt;}
.y127{bottom:668.225733pt;}
.y39{bottom:668.895733pt;}
.y8c{bottom:670.241467pt;}
.y28f{bottom:671.338533pt;}
.y232{bottom:672.005200pt;}
.y1e1{bottom:672.446267pt;}
.y1a9{bottom:672.937467pt;}
.y10e{bottom:673.112933pt;}
.ybc{bottom:673.321467pt;}
.y17{bottom:675.343867pt;}
.y27b{bottom:675.604133pt;}
.y2ad{bottom:678.237200pt;}
.y20a{bottom:679.338533pt;}
.yf8{bottom:680.023867pt;}
.y4{bottom:680.835067pt;}
.yab{bottom:680.881467pt;}
.y155{bottom:682.451467pt;}
.y262{bottom:683.164133pt;}
.y17f{bottom:684.225733pt;}
.y1c6{bottom:684.693067pt;}
.y168{bottom:685.583867pt;}
.y1f0{bottom:687.338533pt;}
.y38{bottom:687.562400pt;}
.y62{bottom:688.441467pt;}
.y140{bottom:688.677200pt;}
.y8b{bottom:688.908133pt;}
.y24a{bottom:689.112933pt;}
.y297{bottom:691.343867pt;}
.y1a8{bottom:692.044133pt;}
.y126{bottom:692.225733pt;}
.y27a{bottom:694.710800pt;}
.y231{bottom:696.005200pt;}
.y1e0{bottom:696.446267pt;}
.y2ac{bottom:697.343867pt;}
.yf7{bottom:699.130533pt;}
.y16{bottom:699.343867pt;}
.yaa{bottom:699.548133pt;}
.ydc{bottom:700.917200pt;}
.y3{bottom:702.171067pt;}
.y261{bottom:702.270800pt;}
.y209{bottom:703.338533pt;}
.y37{bottom:706.229067pt;}
.y154{bottom:706.451467pt;}
.y296{bottom:706.677200pt;}
.y61{bottom:707.108133pt;}
.y8a{bottom:707.574800pt;}
.y17e{bottom:708.225733pt;}
.y1a7{bottom:711.150800pt;}
.y244{bottom:711.338533pt;}
.y13f{bottom:712.677200pt;}
.y274{bottom:713.112933pt;}
.y279{bottom:713.817467pt;}
.ybb{bottom:718.214800pt;}
.yf6{bottom:718.237200pt;}
.ydb{bottom:720.023867pt;}
.y260{bottom:721.377467pt;}
.y295{bottom:722.010533pt;}
.y15{bottom:723.343867pt;}
.y2{bottom:723.507067pt;}
.y1df{bottom:724.243600pt;}
.y36{bottom:724.895733pt;}
.y60{bottom:725.774800pt;}
.y89{bottom:726.241467pt;}
.y208{bottom:727.338533pt;}
.y1a6{bottom:730.257467pt;}
.y153{bottom:730.451467pt;}
.y2ab{bottom:731.574800pt;}
.y17d{bottom:732.225733pt;}
.y278{bottom:732.924133pt;}
.y1c5{bottom:736.497467pt;}
.y13e{bottom:736.677200pt;}
.yf5{bottom:737.343867pt;}
.y1de{bottom:738.685333pt;}
.yda{bottom:739.130533pt;}
.y25f{bottom:740.484133pt;}
.y249{bottom:740.917200pt;}
.y35{bottom:743.562400pt;}
.ya9{bottom:744.441467pt;}
.y88{bottom:744.908133pt;}
.y14{bottom:747.343867pt;}
.y1{bottom:750.173733pt;}
.y207{bottom:751.338533pt;}
.y5f{bottom:752.001467pt;}
.y1dd{bottom:753.127067pt;}
.y1c4{bottom:755.604133pt;}
.yd9{bottom:758.237200pt;}
.y25e{bottom:759.590800pt;}
.y17c{bottom:760.023867pt;}
.y13d{bottom:760.677200pt;}
.y34{bottom:762.229067pt;}
.yba{bottom:763.108133pt;}
.y87{bottom:763.574800pt;}
.y1a5{bottom:764.488400pt;}
.y277{bottom:767.155067pt;}
.y1dc{bottom:767.568800pt;}
.y5e{bottom:770.668133pt;}
.y13{bottom:771.343867pt;}
.yf4{bottom:771.574800pt;}
.y1c3{bottom:774.710800pt;}
.yd8{bottom:777.343867pt;}
.y17b{bottom:779.130533pt;}
.y33{bottom:780.895733pt;}
.y1db{bottom:782.010533pt;}
.y86{bottom:782.241467pt;}
.y13c{bottom:784.677200pt;}
.y5d{bottom:789.334800pt;}
.y1c2{bottom:793.817467pt;}
.y25d{bottom:793.821733pt;}
.y17a{bottom:798.237200pt;}
.y32{bottom:799.562400pt;}
.y85{bottom:800.908133pt;}
.y1a4{bottom:804.488400pt;}
.y276{bottom:807.155067pt;}
.yb9{bottom:808.001467pt;}
.y13b{bottom:808.677200pt;}
.yd7{bottom:811.574800pt;}
.y1c1{bottom:812.924133pt;}
.y5c{bottom:815.561467pt;}
.y179{bottom:817.343867pt;}
.y31{bottom:818.229067pt;}
.y84{bottom:819.574800pt;}
.y25c{bottom:833.821733pt;}
.y5b{bottom:834.228133pt;}
.y30{bottom:836.895733pt;}
.y83{bottom:838.241467pt;}
.y1a3{bottom:844.488400pt;}
.y1c0{bottom:847.155067pt;}
.y12{bottom:851.574800pt;}
.yb8{bottom:852.894800pt;}
.y2f{bottom:855.562400pt;}
.y82{bottom:856.908133pt;}
.y5a{bottom:860.454800pt;}
.y2bb{bottom:867.207600pt;}
.ycb{bottom:871.561467pt;}
.y81{bottom:875.574800pt;}
.y59{bottom:879.121467pt;}
.y2e{bottom:881.789067pt;}
.y11{bottom:891.574800pt;}
.y80{bottom:894.241467pt;}
.ya8{bottom:897.788133pt;}
.y2d{bottom:900.455733pt;}
.y58{bottom:905.348133pt;}
.y7f{bottom:912.908133pt;}
.y2ba{bottom:915.207600pt;}
.yc9{bottom:916.454800pt;}
.y57{bottom:924.014800pt;}
.y2c{bottom:926.682400pt;}
.y10{bottom:931.574800pt;}
.y2b9{bottom:939.207600pt;}
.y56{bottom:942.681467pt;}
.y2b{bottom:945.349067pt;}
.y7e{bottom:950.241467pt;}
.y55{bottom:961.348133pt;}
.y2b8{bottom:963.207600pt;}
.y7d{bottom:968.908133pt;}
.yf{bottom:971.574800pt;}
.y2b7{bottom:987.207600pt;}
.y54{bottom:987.574800pt;}
.h5{height:40.877604pt;}
.hd{height:42.367708pt;}
.h8{height:43.156250pt;}
.hc{height:47.604167pt;}
.h4{height:52.364583pt;}
.h7{height:57.125000pt;}
.h9{height:63.317333pt;}
.ha{height:65.550940pt;}
.h3{height:66.645833pt;}
.hb{height:85.687500pt;}
.h2{height:108.544000pt;}
.h6{height:135.680000pt;}
.he{height:140.466301pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:98.267600pt;}
.x7b{left:99.550400pt;}
.x69{left:101.190400pt;}
.x41{left:102.510400pt;}
.x7c{left:103.630400pt;}
.x5d{left:105.550400pt;}
.x3c{left:107.070400pt;}
.x92{left:108.870400pt;}
.x48{left:110.790400pt;}
.x8f{left:111.990400pt;}
.x25{left:113.150400pt;}
.x86{left:114.390400pt;}
.x6b{left:115.390400pt;}
.x62{left:117.135467pt;}
.x89{left:118.270400pt;}
.x28{left:120.030400pt;}
.x65{left:121.870400pt;}
.x73{left:123.390400pt;}
.x20{left:124.710400pt;}
.x61{left:126.194667pt;}
.x6e{left:127.470400pt;}
.x77{left:128.990400pt;}
.x37{left:130.830400pt;}
.x54{left:133.150400pt;}
.x63{left:134.230400pt;}
.xa{left:136.806533pt;}
.x7e{left:138.270400pt;}
.x53{left:139.590400pt;}
.x8c{left:140.990400pt;}
.x6a{left:142.510400pt;}
.x99{left:143.630400pt;}
.x74{left:145.430400pt;}
.x9{left:146.941200pt;}
.x19{left:147.950400pt;}
.x46{left:149.470400pt;}
.x4f{left:152.030400pt;}
.x6c{left:153.870400pt;}
.xb{left:155.110533pt;}
.x4e{left:156.190400pt;}
.x60{left:161.634667pt;}
.x81{left:162.990400pt;}
.x94{left:165.150400pt;}
.x93{left:166.715733pt;}
.x9d{left:167.670400pt;}
.x1f{left:169.870400pt;}
.x7f{left:171.070400pt;}
.x75{left:172.910400pt;}
.xe{left:173.858267pt;}
.x6d{left:174.870400pt;}
.x5a{left:176.990400pt;}
.x45{left:178.510400pt;}
.x71{left:180.670400pt;}
.x3d{left:183.070400pt;}
.x8b{left:184.510400pt;}
.x5e{left:185.550400pt;}
.x26{left:188.150400pt;}
.x14{left:189.750400pt;}
.x11{left:190.983200pt;}
.x76{left:192.510400pt;}
.x98{left:193.950400pt;}
.x82{left:195.710400pt;}
.x8e{left:196.790400pt;}
.x56{left:197.870400pt;}
.x97{left:199.430400pt;}
.x2e{left:201.270400pt;}
.x87{left:206.670400pt;}
.x78{left:208.350400pt;}
.xa0{left:210.596000pt;}
.x8d{left:211.790400pt;}
.x32{left:212.830400pt;}
.x83{left:215.670400pt;}
.x9e{left:217.670400pt;}
.x2f{left:219.470400pt;}
.x9f{left:220.550400pt;}
.x5c{left:222.590400pt;}
.x52{left:223.590400pt;}
.x9c{left:224.510400pt;}
.x42{left:227.350400pt;}
.x7d{left:229.830400pt;}
.x4{left:230.720533pt;}
.x31{left:233.190400pt;}
.x59{left:235.670400pt;}
.x90{left:238.430400pt;}
.x72{left:239.590400pt;}
.x84{left:241.190400pt;}
.x57{left:243.750400pt;}
.x88{left:247.310400pt;}
.x29{left:249.150400pt;}
.xa1{left:250.470400pt;}
.x6{left:251.572800pt;}
.x95{left:255.030400pt;}
.x1a{left:256.190400pt;}
.x85{left:257.270400pt;}
.x9b{left:259.590400pt;}
.x49{left:261.510400pt;}
.x96{left:263.350400pt;}
.x3b{left:265.360933pt;}
.x2b{left:270.232933pt;}
.x47{left:272.390400pt;}
.x3{left:274.101867pt;}
.x3e{left:276.590400pt;}
.x12{left:279.031600pt;}
.x80{left:280.664800pt;}
.x66{left:281.630400pt;}
.x8{left:283.292000pt;}
.x38{left:284.912933pt;}
.x36{left:287.274267pt;}
.x7a{left:288.254533pt;}
.x5{left:289.236533pt;}
.x27{left:290.401333pt;}
.x70{left:292.355200pt;}
.x21{left:293.470400pt;}
.x51{left:294.785200pt;}
.x5f{left:296.027467pt;}
.x16{left:297.203867pt;}
.x43{left:298.158933pt;}
.x35{left:299.420933pt;}
.x23{left:300.755867pt;}
.x30{left:302.522133pt;}
.x2{left:304.117867pt;}
.x64{left:305.141733pt;}
.x9a{left:306.444400pt;}
.x55{left:307.884133pt;}
.x1d{left:309.639467pt;}
.x40{left:310.924267pt;}
.xa4{left:311.934400pt;}
.x1c{left:312.826133pt;}
.x67{left:313.732933pt;}
.x2c{left:314.672933pt;}
.x1b{left:315.639467pt;}
.x79{left:316.666667pt;}
.x39{left:318.064933pt;}
.x4a{left:319.412267pt;}
.x33{left:320.714267pt;}
.x2a{left:321.606267pt;}
.x4b{left:323.225600pt;}
.x7{left:324.195600pt;}
.x3a{left:325.088933pt;}
.x1{left:326.819333pt;}
.x8a{left:328.472933pt;}
.x24{left:329.742533pt;}
.x22{left:330.769200pt;}
.x18{left:332.030533pt;}
.x4d{left:333.412267pt;}
.x34{left:334.660933pt;}
.x4c{left:335.678933pt;}
.x50{left:337.038533pt;}
.x15{left:338.790533pt;}
.x44{left:340.452267pt;}
.x2d{left:342.086267pt;}
.x1e{left:343.372800pt;}
.x68{left:344.906667pt;}
.x58{left:346.208533pt;}
.x17{left:348.163867pt;}
.x3f{left:351.004267pt;}
.xa3{left:359.939200pt;}
.x6f{left:365.590400pt;}
.x91{left:378.850400pt;}
.x13{left:384.850400pt;}
.xd{left:393.750400pt;}
.x5b{left:395.185200pt;}
.xf{left:442.818267pt;}
.xc{left:478.257333pt;}
.xa2{left:567.866267pt;}
}




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