
    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_370dc2de57831517b79f7dd7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074000;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_ef37546d69cea237d02fe832.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080000;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_c2d24ad1d8c9868fa134920d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.074000;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_1491f26546d3d8281ad6b99c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925000;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_6d26e4cff1c4df67e9b1d955.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.945312;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_ef37546d69cea237d02fe832.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080000;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_fddcd47a684acf5c6f036188.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f4cb044eb86e9b81d3190da2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.074000;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_5c11e591b98abae80011fac9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914551;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-27.972000px;}
.v1{vertical-align:-19.580400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.474800px;}
.ls1a{letter-spacing:-4.800000px;}
.ls1f{letter-spacing:-3.840000px;}
.lsb{letter-spacing:-2.880000px;}
.ls17{letter-spacing:-2.400000px;}
.lsf{letter-spacing:-2.160000px;}
.ls18{letter-spacing:-1.920000px;}
.ls1d{letter-spacing:-1.824000px;}
.ls10{letter-spacing:-1.584000px;}
.ls12{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.368000px;}
.ls14{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-1.248000px;}
.ls16{letter-spacing:-1.176000px;}
.ls15{letter-spacing:-1.152000px;}
.ls1b{letter-spacing:-1.104000px;}
.ls13{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.588000px;}
.ls1c{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.384000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.180000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.lse{letter-spacing:0.960000px;}
.ls8{letter-spacing:3.024000px;}
.ls2{letter-spacing:4.200000px;}
.ls0{letter-spacing:5.760000px;}
.ls1{letter-spacing:29.400000px;}
.ls6{letter-spacing:55.624800px;}
.ls7{letter-spacing:123.984000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsaf{word-spacing:-126.624000px;}
.wsb1{word-spacing:-126.528000px;}
.wsb6{word-spacing:-121.296000px;}
.ws0{word-spacing:-17.136000px;}
.wsfe{word-spacing:-14.190000px;}
.ws21{word-spacing:-13.935600px;}
.ws66{word-spacing:-12.936000px;}
.ws107{word-spacing:-11.376000px;}
.ws100{word-spacing:-10.320000px;}
.ws1{word-spacing:-9.954000px;}
.ws123{word-spacing:-9.936000px;}
.wsb9{word-spacing:-9.600000px;}
.wsba{word-spacing:-8.124455px;}
.wscf{word-spacing:-8.055600px;}
.wseb{word-spacing:-7.761600px;}
.ws9e{word-spacing:-7.164000px;}
.ws78{word-spacing:-6.232800px;}
.ws5d{word-spacing:-5.938800px;}
.wsd6{word-spacing:-5.586000px;}
.wsbf{word-spacing:-5.350800px;}
.ws133{word-spacing:-5.115600px;}
.ws4a{word-spacing:-4.704000px;}
.wsd5{word-spacing:-4.468800px;}
.wsbe{word-spacing:-4.292400px;}
.ws2e{word-spacing:-3.763200px;}
.ws80{word-spacing:-3.704400px;}
.ws60{word-spacing:-3.645600px;}
.ws5f{word-spacing:-3.586800px;}
.wse7{word-spacing:-3.469200px;}
.wsed{word-spacing:-3.351600px;}
.wsf1{word-spacing:-3.057600px;}
.ws5c{word-spacing:-2.998800px;}
.ws45{word-spacing:-2.940000px;}
.ws69{word-spacing:-2.881200px;}
.wsbd{word-spacing:-2.822400px;}
.ws70{word-spacing:-2.763600px;}
.ws6a{word-spacing:-2.704800px;}
.wsf4{word-spacing:-2.646000px;}
.ws46{word-spacing:-2.528400px;}
.ws92{word-spacing:-2.469600px;}
.wsf6{word-spacing:-2.410800px;}
.ws77{word-spacing:-2.352000px;}
.wse4{word-spacing:-2.293200px;}
.wsd0{word-spacing:-2.234400px;}
.wsca{word-spacing:-2.175600px;}
.wscd{word-spacing:-2.116800px;}
.ws52{word-spacing:-2.058000px;}
.wsec{word-spacing:-1.940400px;}
.ws73{word-spacing:-1.881600px;}
.wscc{word-spacing:-1.764000px;}
.ws131{word-spacing:-1.705200px;}
.ws18{word-spacing:-1.646400px;}
.ws44{word-spacing:-1.587600px;}
.ws132{word-spacing:-1.528800px;}
.wsbc{word-spacing:-1.411200px;}
.wse8{word-spacing:-1.293600px;}
.wsbb{word-spacing:-1.234800px;}
.ws51{word-spacing:-1.176000px;}
.ws58{word-spacing:-1.058400px;}
.ws84{word-spacing:-0.999600px;}
.ws75{word-spacing:-0.940800px;}
.ws8b{word-spacing:-0.882000px;}
.ws19{word-spacing:-0.823200px;}
.ws3f{word-spacing:-0.764400px;}
.ws82{word-spacing:-0.705600px;}
.ws26{word-spacing:-0.646800px;}
.ws39{word-spacing:-0.588000px;}
.ws27{word-spacing:-0.529200px;}
.ws85{word-spacing:-0.470400px;}
.ws5{word-spacing:-0.352800px;}
.ws5e{word-spacing:-0.294000px;}
.ws49{word-spacing:-0.235200px;}
.wsd3{word-spacing:-0.176400px;}
.wsc{word-spacing:-0.117600px;}
.ws71{word-spacing:-0.058800px;}
.ws20{word-spacing:-0.006000px;}
.ws2{word-spacing:0.000000px;}
.wse0{word-spacing:0.117600px;}
.ws79{word-spacing:0.176400px;}
.ws7c{word-spacing:0.235200px;}
.ws23{word-spacing:0.294000px;}
.ws4c{word-spacing:0.352800px;}
.ws1a{word-spacing:0.411600px;}
.wsd9{word-spacing:0.470400px;}
.ws3d{word-spacing:0.588000px;}
.wsc6{word-spacing:0.624000px;}
.wse9{word-spacing:0.646800px;}
.ws4b{word-spacing:0.705600px;}
.ws81{word-spacing:0.764400px;}
.ws1d{word-spacing:0.823200px;}
.ws12{word-spacing:0.999600px;}
.wse2{word-spacing:1.117200px;}
.ws30{word-spacing:1.176000px;}
.ws3c{word-spacing:1.234800px;}
.ws33{word-spacing:1.293600px;}
.wsc4{word-spacing:1.344000px;}
.ws91{word-spacing:1.352400px;}
.wsda{word-spacing:1.411200px;}
.wsc1{word-spacing:1.440000px;}
.ws1e{word-spacing:1.470000px;}
.ws130{word-spacing:1.528800px;}
.wsc8{word-spacing:1.536000px;}
.ws53{word-spacing:1.587600px;}
.ws4{word-spacing:1.646400px;}
.ws6b{word-spacing:1.705200px;}
.wsa{word-spacing:1.764000px;}
.wsb{word-spacing:1.822800px;}
.ws25{word-spacing:1.881600px;}
.ws3{word-spacing:1.940400px;}
.ws12f{word-spacing:1.999200px;}
.ws8c{word-spacing:2.116800px;}
.wsea{word-spacing:2.175600px;}
.wsc9{word-spacing:2.208000px;}
.ws1b{word-spacing:2.234400px;}
.ws32{word-spacing:2.293200px;}
.ws8d{word-spacing:2.352000px;}
.ws42{word-spacing:2.410800px;}
.wsdb{word-spacing:2.469600px;}
.ws41{word-spacing:2.528400px;}
.ws7e{word-spacing:2.704800px;}
.ws35{word-spacing:2.763600px;}
.wsd1{word-spacing:2.822400px;}
.wsf2{word-spacing:2.881200px;}
.ws13{word-spacing:2.998800px;}
.ws74{word-spacing:3.057600px;}
.ws89{word-spacing:3.116400px;}
.ws76{word-spacing:3.175200px;}
.wsf{word-spacing:3.292800px;}
.wsc2{word-spacing:3.312000px;}
.ws9{word-spacing:3.351600px;}
.ws34{word-spacing:3.410400px;}
.ws5b{word-spacing:3.469200px;}
.ws6e{word-spacing:3.528000px;}
.ws67{word-spacing:3.586800px;}
.ws57{word-spacing:3.645600px;}
.wsfb{word-spacing:3.704400px;}
.ws7d{word-spacing:3.822000px;}
.wsc5{word-spacing:3.888000px;}
.ws1c{word-spacing:3.939600px;}
.ws38{word-spacing:3.998400px;}
.wscb{word-spacing:4.057200px;}
.ws65{word-spacing:4.116000px;}
.wsf7{word-spacing:4.233600px;}
.ws28{word-spacing:4.292400px;}
.ws36{word-spacing:4.351200px;}
.ws7a{word-spacing:4.468800px;}
.wsef{word-spacing:4.527600px;}
.ws2d{word-spacing:4.586400px;}
.ws88{word-spacing:4.645200px;}
.ws29{word-spacing:4.704000px;}
.wsdc{word-spacing:4.762800px;}
.ws134{word-spacing:4.821600px;}
.ws55{word-spacing:4.880400px;}
.ws8a{word-spacing:4.939200px;}
.ws24{word-spacing:4.998000px;}
.wse3{word-spacing:5.056800px;}
.ws63{word-spacing:5.115600px;}
.wse1{word-spacing:5.174400px;}
.wse5{word-spacing:5.233200px;}
.ws7{word-spacing:5.350800px;}
.wsd8{word-spacing:5.409600px;}
.ws2a{word-spacing:5.468400px;}
.wsc3{word-spacing:5.520000px;}
.ws56{word-spacing:5.527200px;}
.ws48{word-spacing:5.644800px;}
.ws43{word-spacing:5.821200px;}
.ws12e{word-spacing:5.880000px;}
.ws6c{word-spacing:5.938800px;}
.ws16{word-spacing:5.997600px;}
.ws6{word-spacing:6.115200px;}
.wsc7{word-spacing:6.144000px;}
.ws47{word-spacing:6.174000px;}
.ws1f{word-spacing:6.232800px;}
.ws8f{word-spacing:6.291600px;}
.ws40{word-spacing:6.350400px;}
.wse{word-spacing:6.468000px;}
.ws31{word-spacing:6.526800px;}
.wsd7{word-spacing:6.585600px;}
.ws3a{word-spacing:6.644400px;}
.ws5a{word-spacing:6.703200px;}
.ws4f{word-spacing:6.762000px;}
.ws86{word-spacing:6.820800px;}
.ws10{word-spacing:6.879600px;}
.ws93{word-spacing:6.938400px;}
.wsd{word-spacing:7.056000px;}
.ws4d{word-spacing:7.114800px;}
.ws37{word-spacing:7.173600px;}
.ws8{word-spacing:7.232400px;}
.ws17{word-spacing:7.291200px;}
.ws22{word-spacing:7.350000px;}
.ws2f{word-spacing:7.526400px;}
.ws7b{word-spacing:7.585200px;}
.ws3b{word-spacing:7.761600px;}
.ws83{word-spacing:7.879200px;}
.ws11{word-spacing:7.938000px;}
.ws50{word-spacing:8.114400px;}
.ws61{word-spacing:8.349600px;}
.ws64{word-spacing:8.408400px;}
.ws54{word-spacing:8.526000px;}
.ws3e{word-spacing:8.584800px;}
.ws6f{word-spacing:8.643600px;}
.wsfc{word-spacing:8.878800px;}
.ws8e{word-spacing:8.996400px;}
.ws4e{word-spacing:9.055200px;}
.wsd2{word-spacing:9.114000px;}
.wsd4{word-spacing:9.172800px;}
.ws2c{word-spacing:9.231600px;}
.ws72{word-spacing:9.525600px;}
.ws87{word-spacing:9.643200px;}
.ws90{word-spacing:9.760800px;}
.ws2b{word-spacing:9.878400px;}
.wsfa{word-spacing:9.996000px;}
.ws59{word-spacing:10.054800px;}
.wsc0{word-spacing:10.113600px;}
.wsf3{word-spacing:10.172400px;}
.ws68{word-spacing:10.348800px;}
.wsf9{word-spacing:10.760400px;}
.wsce{word-spacing:10.819200px;}
.wsf5{word-spacing:11.054400px;}
.ws7f{word-spacing:11.289600px;}
.ws6d{word-spacing:11.583600px;}
.wsfd{word-spacing:12.583200px;}
.wsdd{word-spacing:12.759600px;}
.wsf0{word-spacing:12.818400px;}
.wsee{word-spacing:13.406400px;}
.wse6{word-spacing:13.465200px;}
.ws62{word-spacing:13.818000px;}
.ws12d{word-spacing:13.935600px;}
.wsde{word-spacing:16.228800px;}
.ws14{word-spacing:16.993200px;}
.ws15{word-spacing:18.757200px;}
.wsf8{word-spacing:20.638800px;}
.wsdf{word-spacing:22.755600px;}
.ws94{word-spacing:64.332000px;}
.ws96{word-spacing:67.428000px;}
.ws9d{word-spacing:67.680000px;}
.ws99{word-spacing:68.724000px;}
.ws135{word-spacing:69.600000px;}
.ws95{word-spacing:69.768000px;}
.ws155{word-spacing:70.128000px;}
.wsb7{word-spacing:72.816000px;}
.ws157{word-spacing:73.584000px;}
.ws11e{word-spacing:73.632000px;}
.ws97{word-spacing:74.916000px;}
.ws144{word-spacing:75.264000px;}
.ws98{word-spacing:76.068000px;}
.ws9a{word-spacing:77.400000px;}
.ws159{word-spacing:77.424000px;}
.ws9b{word-spacing:77.544000px;}
.ws13b{word-spacing:78.816000px;}
.ws9c{word-spacing:79.128000px;}
.ws14f{word-spacing:79.200000px;}
.ws149{word-spacing:80.160000px;}
.ws151{word-spacing:80.784000px;}
.ws153{word-spacing:83.232000px;}
.ws13c{word-spacing:83.328000px;}
.wsff{word-spacing:83.716800px;}
.ws146{word-spacing:84.240000px;}
.ws148{word-spacing:84.528000px;}
.ws120{word-spacing:85.488000px;}
.ws13a{word-spacing:85.536000px;}
.wsb8{word-spacing:85.728000px;}
.ws12a{word-spacing:85.920000px;}
.ws13d{word-spacing:86.544000px;}
.ws143{word-spacing:86.976000px;}
.ws10c{word-spacing:87.312000px;}
.ws127{word-spacing:87.792000px;}
.ws109{word-spacing:88.416000px;}
.ws14c{word-spacing:90.960000px;}
.ws11c{word-spacing:93.936000px;}
.wsa0{word-spacing:95.376000px;}
.ws10d{word-spacing:95.520000px;}
.ws114{word-spacing:95.568000px;}
.ws14a{word-spacing:95.712000px;}
.ws125{word-spacing:96.048000px;}
.ws139{word-spacing:97.296000px;}
.wsa1{word-spacing:99.600000px;}
.ws117{word-spacing:105.216000px;}
.ws103{word-spacing:105.648000px;}
.ws141{word-spacing:106.512000px;}
.ws140{word-spacing:107.568000px;}
.wsa5{word-spacing:109.728000px;}
.ws128{word-spacing:110.352000px;}
.wsa2{word-spacing:112.608000px;}
.ws116{word-spacing:113.280000px;}
.ws13e{word-spacing:113.568000px;}
.ws110{word-spacing:114.240000px;}
.ws104{word-spacing:114.864000px;}
.ws137{word-spacing:115.248000px;}
.ws10f{word-spacing:115.392000px;}
.ws14d{word-spacing:117.696000px;}
.ws12c{word-spacing:118.224000px;}
.ws124{word-spacing:118.272000px;}
.ws11f{word-spacing:118.464000px;}
.ws9f{word-spacing:119.664000px;}
.ws112{word-spacing:124.464000px;}
.ws10b{word-spacing:124.608000px;}
.ws122{word-spacing:127.632000px;}
.ws111{word-spacing:129.888000px;}
.ws11b{word-spacing:131.472000px;}
.wsae{word-spacing:131.856000px;}
.wsb0{word-spacing:132.912000px;}
.wsa4{word-spacing:133.008000px;}
.wsa3{word-spacing:134.688000px;}
.wsa8{word-spacing:134.928000px;}
.ws105{word-spacing:135.024000px;}
.ws106{word-spacing:135.504000px;}
.wsab{word-spacing:137.664000px;}
.wsa9{word-spacing:138.192000px;}
.wsac{word-spacing:140.016000px;}
.ws142{word-spacing:140.400000px;}
.wsa6{word-spacing:141.024000px;}
.wsad{word-spacing:143.232000px;}
.wsa7{word-spacing:145.200000px;}
.wsb4{word-spacing:145.824000px;}
.ws102{word-spacing:146.976000px;}
.ws11a{word-spacing:147.120000px;}
.wsb5{word-spacing:147.888000px;}
.wsb3{word-spacing:148.704000px;}
.ws12b{word-spacing:150.048000px;}
.ws118{word-spacing:156.336000px;}
.wsaa{word-spacing:157.536000px;}
.ws14b{word-spacing:159.936000px;}
.ws119{word-spacing:164.592000px;}
.wsb2{word-spacing:165.552000px;}
.ws121{word-spacing:168.912000px;}
.ws136{word-spacing:178.368000px;}
.ws101{word-spacing:180.480000px;}
.ws115{word-spacing:235.872000px;}
.ws10a{word-spacing:238.800000px;}
.ws108{word-spacing:238.848000px;}
.ws126{word-spacing:239.424000px;}
.ws113{word-spacing:239.712000px;}
.ws129{word-spacing:239.904000px;}
.ws10e{word-spacing:241.776000px;}
.ws11d{word-spacing:247.920000px;}
.ws145{word-spacing:259.200000px;}
.ws138{word-spacing:259.920000px;}
.ws147{word-spacing:267.792000px;}
.ws13f{word-spacing:268.896000px;}
.ws154{word-spacing:269.712000px;}
.ws14e{word-spacing:273.648000px;}
.ws152{word-spacing:276.768000px;}
.ws156{word-spacing:278.112000px;}
.ws158{word-spacing:279.072000px;}
.ws150{word-spacing:281.712000px;}
._2e{margin-left:-2891.322000px;}
._b{margin-left:-1096.380000px;}
._d{margin-left:-220.176000px;}
._29{margin-left:-123.325200px;}
._10{margin-left:-43.335600px;}
._30{margin-left:-22.556280px;}
._33{margin-left:-21.489720px;}
._32{margin-left:-20.400000px;}
._8{margin-left:-18.051600px;}
._2f{margin-left:-15.860160px;}
._11{margin-left:-13.472280px;}
._12{margin-left:-12.038160px;}
._f{margin-left:-10.761600px;}
._e{margin-left:-9.275760px;}
._7{margin-left:-7.999200px;}
._6{margin-left:-6.474960px;}
._1{margin-left:-4.914000px;}
._3{margin-left:-3.028800px;}
._0{margin-left:-1.440000px;}
._2{width:1.675200px;}
._9{width:3.509358px;}
._a{width:5.263200px;}
._28{width:7.209600px;}
._31{width:8.371320px;}
._2b{width:9.979200px;}
._4{width:11.466000px;}
._2a{width:13.857600px;}
._5{width:15.006000px;}
._13{width:74.592000px;}
._15{width:76.212000px;}
._14{width:77.508000px;}
._5c{width:85.204800px;}
._16{width:87.873600px;}
._68{width:91.584000px;}
._75{width:93.561600px;}
._6f{width:96.052800px;}
._74{width:97.195200px;}
._70{width:98.908800px;}
._17{width:100.992000px;}
._18{width:102.096000px;}
._2c{width:103.113600px;}
._4c{width:104.601600px;}
._6a{width:107.068800px;}
._2d{width:109.008000px;}
._64{width:110.025600px;}
._1a{width:111.072000px;}
._3f{width:112.452000px;}
._53{width:114.681600px;}
._1f{width:116.112000px;}
._19{width:117.504000px;}
._25{width:118.862400px;}
._24{width:120.576000px;}
._58{width:121.737600px;}
._26{width:122.980800px;}
._21{width:124.459200px;}
._1b{width:125.760000px;}
._22{width:127.056000px;}
._20{width:128.836800px;}
._45{width:130.003200px;}
._1e{width:131.040000px;}
._1c{width:132.336000px;}
._23{width:133.728000px;}
._27{width:136.420800px;}
._1d{width:138.048000px;}
._5a{width:139.156800px;}
._4f{width:140.366400px;}
._3d{width:141.609600px;}
._5f{width:142.852800px;}
._3e{width:143.952000px;}
._43{width:145.348800px;}
._55{width:146.356800px;}
._38{width:147.566400px;}
._44{width:148.756800px;}
._59{width:151.401600px;}
._51{width:153.700800px;}
._40{width:155.044800px;}
._3b{width:156.048000px;}
._3a{width:157.876800px;}
._4d{width:159.225600px;}
._56{width:160.420800px;}
._46{width:161.476800px;}
._42{width:163.228800px;}
._41{width:165.508800px;}
._39{width:166.996800px;}
._50{width:168.436800px;}
._48{width:169.910400px;}
._47{width:171.364800px;}
._5e{width:172.560000px;}
._4a{width:173.902326px;}
._60{width:175.732800px;}
._3c{width:179.236800px;}
._6e{width:185.793600px;}
._65{width:187.396800px;}
._73{width:189.552000px;}
._67{width:191.287200px;}
._77{width:192.772800px;}
._6c{width:196.766400px;}
._71{width:198.987600px;}
._76{width:201.542400px;}
._5d{width:204.806400px;}
._36{width:206.208000px;}
._63{width:214.992000px;}
._61{width:219.408000px;}
._35{width:222.960000px;}
._34{width:239.712000px;}
._37{width:243.216000px;}
._4b{width:245.040000px;}
._52{width:246.816000px;}
._4e{width:247.968000px;}
._57{width:249.456000px;}
._5b{width:255.504000px;}
._62{width:264.720000px;}
._6d{width:265.776000px;}
._72{width:267.408000px;}
._49{width:270.288000px;}
._6b{width:275.088000px;}
._66{width:276.576000px;}
._54{width:280.896000px;}
._69{width:281.904000px;}
._c{width:2163.273600px;}
.fc8{color:rgb(48,88,159);}
.fc7{color:rgb(207,0,61);}
.fc5{color:transparent;}
.fc4{color:rgb(209,25,62);}
.fc3{color:rgb(217,30,98);}
.fc2{color:rgb(79,76,77);}
.fc6{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(57,53,54);}
.fs3{font-size:34.280400px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:48.972000px;}
.fs4{font-size:58.800000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.y33{bottom:-20.763900px;}
.y0{bottom:0.000000px;}
.y38{bottom:6.824550px;}
.y3{bottom:7.800750px;}
.y1{bottom:51.010950px;}
.yab{bottom:78.871500px;}
.ye3{bottom:79.006500px;}
.y109{bottom:79.560000px;}
.y74{bottom:82.847250px;}
.y176{bottom:90.400050px;}
.yaa{bottom:95.364900px;}
.ye2{bottom:95.499900px;}
.y108{bottom:96.053400px;}
.y1b2{bottom:97.147200px;}
.y73{bottom:99.340650px;}
.y13e{bottom:101.916450px;}
.y193{bottom:106.721850px;}
.y175{bottom:106.893450px;}
.ye1{bottom:111.993300px;}
.y107{bottom:112.546800px;}
.y72{bottom:115.834050px;}
.ya9{bottom:116.121300px;}
.y13d{bottom:118.409850px;}
.y1b1{bottom:121.435200px;}
.y192{bottom:123.215250px;}
.y174{bottom:123.386850px;}
.ye0{bottom:128.486700px;}
.y106{bottom:129.040200px;}
.y71{bottom:132.327450px;}
.y13c{bottom:134.903250px;}
.y191{bottom:139.708650px;}
.y173{bottom:139.880250px;}
.ydf{bottom:144.980100px;}
.y105{bottom:145.533600px;}
.y1b0{bottom:145.723200px;}
.y70{bottom:148.820850px;}
.ya8{bottom:150.475200px;}
.y13b{bottom:151.396650px;}
.y32{bottom:152.992050px;}
.y190{bottom:156.202050px;}
.y172{bottom:156.373650px;}
.yde{bottom:161.473500px;}
.y104{bottom:162.027000px;}
.y6f{bottom:165.314250px;}
.ya7{bottom:166.968600px;}
.y13a{bottom:167.890050px;}
.y31{bottom:169.485450px;}
.y1af{bottom:170.011200px;}
.y18f{bottom:172.695450px;}
.y171{bottom:172.867050px;}
.y130{bottom:175.015500px;}
.ydd{bottom:177.966900px;}
.y103{bottom:178.520400px;}
.y6e{bottom:181.807650px;}
.ya6{bottom:183.462000px;}
.y30{bottom:185.978850px;}
.y18e{bottom:189.188850px;}
.y170{bottom:189.360450px;}
.y12f{bottom:191.508900px;}
.y1ae{bottom:194.299200px;}
.ydc{bottom:194.460300px;}
.y102{bottom:195.013800px;}
.y6d{bottom:198.301050px;}
.ya5{bottom:199.955400px;}
.y2f{bottom:202.472250px;}
.y18d{bottom:205.682250px;}
.y16f{bottom:205.853850px;}
.y12e{bottom:208.002300px;}
.ydb{bottom:210.953700px;}
.y101{bottom:211.507200px;}
.y6c{bottom:214.794450px;}
.ya4{bottom:216.448800px;}
.y1ad{bottom:218.587200px;}
.y2e{bottom:218.965650px;}
.y18c{bottom:222.175650px;}
.y16e{bottom:222.347250px;}
.y12d{bottom:224.495700px;}
.yda{bottom:227.447100px;}
.y100{bottom:228.000600px;}
.y6b{bottom:231.287850px;}
.ya3{bottom:232.942200px;}
.y2d{bottom:235.459050px;}
.y18b{bottom:238.669050px;}
.y16d{bottom:238.840650px;}
.y12c{bottom:240.989100px;}
.y1ac{bottom:242.875200px;}
.yd9{bottom:243.940500px;}
.yff{bottom:244.494000px;}
.y6a{bottom:247.781250px;}
.ya2{bottom:249.435600px;}
.y2c{bottom:251.952450px;}
.y18a{bottom:255.162450px;}
.y16c{bottom:255.334050px;}
.yd8{bottom:260.433900px;}
.yfe{bottom:260.987400px;}
.y69{bottom:264.274650px;}
.ya1{bottom:265.929000px;}
.y1ab{bottom:267.163200px;}
.y2b{bottom:268.445850px;}
.y12b{bottom:270.237300px;}
.y189{bottom:271.655850px;}
.y16b{bottom:271.827450px;}
.yd7{bottom:276.927300px;}
.yfd{bottom:277.480800px;}
.y68{bottom:280.768050px;}
.y12a{bottom:283.737300px;}
.y2a{bottom:284.939250px;}
.ya0{bottom:286.685400px;}
.y188{bottom:288.149250px;}
.y16a{bottom:288.320850px;}
.y1aa{bottom:291.451200px;}
.yd6{bottom:293.420700px;}
.yfc{bottom:293.974200px;}
.y129{bottom:297.237300px;}
.y67{bottom:297.261450px;}
.y29{bottom:301.432650px;}
.y187{bottom:304.642650px;}
.y169{bottom:304.814250px;}
.yd5{bottom:309.914100px;}
.yfb{bottom:310.467600px;}
.y128{bottom:310.737300px;}
.y66{bottom:313.754850px;}
.y1a9{bottom:315.739200px;}
.y186{bottom:321.136050px;}
.y168{bottom:321.307650px;}
.y28{bottom:322.821150px;}
.y127{bottom:324.237300px;}
.y9f{bottom:325.295550px;}
.yd4{bottom:326.407500px;}
.yfa{bottom:326.961000px;}
.y65{bottom:330.248250px;}
.y185{bottom:337.629450px;}
.y126{bottom:337.737300px;}
.y167{bottom:337.801050px;}
.y1a8{bottom:340.027200px;}
.yd3{bottom:342.900900px;}
.yf9{bottom:343.454400px;}
.y64{bottom:346.741650px;}
.y27{bottom:347.190900px;}
.y125{bottom:351.237300px;}
.y184{bottom:354.122850px;}
.y166{bottom:354.294450px;}
.yd2{bottom:359.394300px;}
.yf8{bottom:359.947800px;}
.y9e{bottom:359.962500px;}
.y63{bottom:363.235050px;}
.y1a7{bottom:364.315200px;}
.y124{bottom:364.737300px;}
.y183{bottom:370.616250px;}
.y165{bottom:370.787850px;}
.yd1{bottom:375.887700px;}
.yf7{bottom:376.441200px;}
.y9d{bottom:376.455900px;}
.y26{bottom:376.674900px;}
.y123{bottom:378.237300px;}
.y62{bottom:379.728450px;}
.y182{bottom:387.109650px;}
.y164{bottom:387.281250px;}
.y1a6{bottom:388.603200px;}
.y122{bottom:391.737300px;}
.yd0{bottom:392.381100px;}
.yf6{bottom:392.934600px;}
.y9c{bottom:392.949300px;}
.y61{bottom:396.221850px;}
.y181{bottom:403.603050px;}
.y163{bottom:403.774650px;}
.ycf{bottom:408.874500px;}
.yf5{bottom:409.428000px;}
.y9b{bottom:409.442700px;}
.y60{bottom:412.715250px;}
.y1a5{bottom:412.891200px;}
.y121{bottom:417.369300px;}
.y180{bottom:420.096450px;}
.y162{bottom:420.268050px;}
.yce{bottom:425.367900px;}
.yf4{bottom:425.921400px;}
.y9a{bottom:425.936100px;}
.y5f{bottom:429.208650px;}
.y17f{bottom:436.589850px;}
.y161{bottom:436.761450px;}
.y1a4{bottom:437.179200px;}
.y120{bottom:441.657300px;}
.ycd{bottom:441.861300px;}
.yf3{bottom:442.414800px;}
.y99{bottom:442.429500px;}
.y25{bottom:443.573850px;}
.y5e{bottom:445.702050px;}
.y17e{bottom:453.083250px;}
.y160{bottom:453.254850px;}
.ycc{bottom:458.354700px;}
.yf2{bottom:458.908200px;}
.y24{bottom:460.067250px;}
.y1a3{bottom:461.467200px;}
.y5d{bottom:462.195450px;}
.y11f{bottom:465.945300px;}
.y17d{bottom:469.576650px;}
.y15f{bottom:469.748250px;}
.ycb{bottom:474.848100px;}
.yf1{bottom:475.401600px;}
.y98{bottom:475.431000px;}
.y23{bottom:476.560650px;}
.y5c{bottom:478.688850px;}
.y1a2{bottom:485.755200px;}
.y17c{bottom:486.070050px;}
.y15e{bottom:486.241650px;}
.y11e{bottom:490.233300px;}
.yf0{bottom:491.895000px;}
.y97{bottom:491.924400px;}
.y22{bottom:493.054050px;}
.y5b{bottom:495.182250px;}
.y17b{bottom:502.563450px;}
.y15d{bottom:502.735050px;}
.yca{bottom:507.849600px;}
.yef{bottom:508.388400px;}
.y96{bottom:508.417800px;}
.y21{bottom:509.547450px;}
.y1a1{bottom:510.043200px;}
.y5a{bottom:511.675650px;}
.y11d{bottom:514.521300px;}
.y17a{bottom:519.056850px;}
.y15c{bottom:519.228450px;}
.yc9{bottom:524.343000px;}
.yee{bottom:524.881800px;}
.y95{bottom:524.911200px;}
.y20{bottom:526.040850px;}
.y59{bottom:528.169050px;}
.y179{bottom:535.550250px;}
.y15b{bottom:535.721850px;}
.y11c{bottom:538.809300px;}
.yc8{bottom:540.836400px;}
.yed{bottom:541.375200px;}
.y94{bottom:541.404600px;}
.y1f{bottom:542.534250px;}
.y1a0{bottom:542.623200px;}
.y58{bottom:544.662450px;}
.y178{bottom:552.043650px;}
.y15a{bottom:552.215250px;}
.yc7{bottom:557.329800px;}
.yec{bottom:557.868600px;}
.y93{bottom:557.898000px;}
.y1e{bottom:559.027650px;}
.y57{bottom:561.155850px;}
.y11b{bottom:563.097300px;}
.y19a{bottom:568.279200px;}
.y159{bottom:568.708650px;}
.y139{bottom:572.394000px;}
.y177{bottom:572.795550px;}
.yc6{bottom:573.823200px;}
.yeb{bottom:574.362000px;}
.y92{bottom:574.391400px;}
.y19d{bottom:575.215200px;}
.y1d{bottom:575.521050px;}
.y56{bottom:577.649250px;}
.y19f{bottom:581.959200px;}
.y158{bottom:585.202050px;}
.y196{bottom:587.179200px;}
.y11a{bottom:587.385300px;}
.y19c{bottom:588.715200px;}
.yea{bottom:590.855400px;}
.y91{bottom:590.884800px;}
.y1c{bottom:592.014450px;}
.y55{bottom:594.142650px;}
.yc5{bottom:594.575100px;}
.y19e{bottom:595.459200px;}
.y138{bottom:598.696050px;}
.y157{bottom:601.695450px;}
.y19b{bottom:602.215200px;}
.ye9{bottom:607.348800px;}
.y90{bottom:607.378200px;}
.y1b{bottom:608.507850px;}
.y54{bottom:610.636050px;}
.y119{bottom:611.673300px;}
.y1cb{bottom:614.250600px;}
.y137{bottom:615.189450px;}
.y156{bottom:618.188850px;}
.ye8{bottom:623.842200px;}
.y8f{bottom:623.871600px;}
.y1a{bottom:625.001250px;}
.y198{bottom:626.515200px;}
.y53{bottom:627.129450px;}
.yc4{bottom:629.104800px;}
.y136{bottom:631.682850px;}
.y199{bottom:633.259200px;}
.y155{bottom:634.682250px;}
.y118{bottom:635.961300px;}
.y1ca{bottom:638.538600px;}
.y197{bottom:640.015200px;}
.ye7{bottom:640.335600px;}
.y8e{bottom:640.365000px;}
.y19{bottom:641.494650px;}
.y52{bottom:643.622850px;}
.yc3{bottom:645.598200px;}
.y135{bottom:648.176250px;}
.y154{bottom:651.175650px;}
.y8d{bottom:656.858400px;}
.y18{bottom:657.988050px;}
.y51{bottom:660.116250px;}
.y117{bottom:660.249300px;}
.yc2{bottom:662.091600px;}
.y1c9{bottom:662.826600px;}
.y134{bottom:664.669650px;}
.y153{bottom:667.669050px;}
.ye6{bottom:673.337100px;}
.y8c{bottom:673.351800px;}
.y17{bottom:674.481450px;}
.y50{bottom:676.609650px;}
.yc1{bottom:678.585000px;}
.y133{bottom:681.163050px;}
.y195{bottom:682.685400px;}
.y152{bottom:684.162450px;}
.y116{bottom:684.537300px;}
.y1c8{bottom:687.114600px;}
.ye5{bottom:689.830500px;}
.y8b{bottom:689.845200px;}
.y16{bottom:690.974850px;}
.y4f{bottom:693.103050px;}
.yc0{bottom:695.078400px;}
.y132{bottom:697.656450px;}
.y151{bottom:700.655850px;}
.ye4{bottom:706.323900px;}
.y8a{bottom:706.338600px;}
.y15{bottom:707.468250px;}
.y115{bottom:708.825300px;}
.y4e{bottom:709.596450px;}
.y1c7{bottom:711.402600px;}
.ybf{bottom:711.571800px;}
.y131{bottom:714.149850px;}
.y150{bottom:717.149250px;}
.y194{bottom:721.295550px;}
.y89{bottom:722.832000px;}
.y14{bottom:723.961650px;}
.y4d{bottom:726.089850px;}
.ybe{bottom:728.065200px;}
.y114{bottom:733.113300px;}
.y14f{bottom:733.642650px;}
.y1c6{bottom:735.690600px;}
.y88{bottom:739.325400px;}
.y13{bottom:740.455050px;}
.y4c{bottom:742.583250px;}
.ybd{bottom:744.558600px;}
.y14e{bottom:750.136050px;}
.y87{bottom:755.818800px;}
.y12{bottom:756.948450px;}
.y113{bottom:757.401300px;}
.y4b{bottom:759.076650px;}
.y1c5{bottom:759.978600px;}
.ybc{bottom:761.052000px;}
.y14d{bottom:766.629450px;}
.y86{bottom:772.312200px;}
.y4a{bottom:775.570050px;}
.ybb{bottom:777.545400px;}
.y11{bottom:778.336950px;}
.y112{bottom:781.689300px;}
.y14c{bottom:783.122850px;}
.y1c4{bottom:784.266600px;}
.y85{bottom:788.805600px;}
.y49{bottom:792.063450px;}
.yba{bottom:794.038800px;}
.y14b{bottom:799.616250px;}
.y84{bottom:805.299000px;}
.y111{bottom:805.977300px;}
.y1c3{bottom:808.554600px;}
.y48{bottom:808.556850px;}
.yb9{bottom:810.532200px;}
.yc{bottom:811.222200px;}
.yd{bottom:811.873200px;}
.y14a{bottom:816.109650px;}
.y83{bottom:821.792400px;}
.y47{bottom:825.050250px;}
.yb8{bottom:827.025600px;}
.y110{bottom:830.265300px;}
.y149{bottom:832.603050px;}
.y1c2{bottom:832.842600px;}
.y82{bottom:838.285800px;}
.y46{bottom:841.543650px;}
.yb{bottom:841.779750px;}
.yb7{bottom:843.519000px;}
.y148{bottom:849.096450px;}
.y10f{bottom:854.553150px;}
.y81{bottom:854.779200px;}
.ya{bottom:856.023750px;}
.y1c1{bottom:857.130600px;}
.yb6{bottom:860.012400px;}
.y45{bottom:862.295550px;}
.y147{bottom:865.589850px;}
.y9{bottom:870.267750px;}
.y80{bottom:871.272600px;}
.y10e{bottom:877.897950px;}
.yb5{bottom:880.768800px;}
.y1c0{bottom:881.418600px;}
.y146{bottom:882.083250px;}
.y8{bottom:884.511750px;}
.y7f{bottom:887.766000px;}
.y145{bottom:898.576650px;}
.y7{bottom:898.755750px;}
.y10d{bottom:904.244700px;}
.y7e{bottom:904.259400px;}
.y1bf{bottom:905.706600px;}
.y6{bottom:912.999750px;}
.y144{bottom:915.070050px;}
.yb4{bottom:915.122700px;}
.y10c{bottom:920.738100px;}
.y7d{bottom:920.752800px;}
.y44{bottom:926.721000px;}
.y5{bottom:927.243750px;}
.y1be{bottom:929.994600px;}
.y143{bottom:931.563450px;}
.yb3{bottom:931.616100px;}
.y10b{bottom:937.231500px;}
.y7c{bottom:937.246200px;}
.y4{bottom:941.487750px;}
.y43{bottom:943.214400px;}
.y142{bottom:948.056850px;}
.yb2{bottom:948.109500px;}
.y10a{bottom:953.724900px;}
.y7b{bottom:953.739600px;}
.y1bd{bottom:954.282600px;}
.y42{bottom:959.707800px;}
.y141{bottom:964.550250px;}
.yb1{bottom:964.602900px;}
.y7a{bottom:970.233000px;}
.y1bc{bottom:978.570600px;}
.y140{bottom:981.043650px;}
.yb0{bottom:981.096300px;}
.y10{bottom:984.604650px;}
.y79{bottom:986.726400px;}
.yaf{bottom:997.589700px;}
.y13f{bottom:1001.795550px;}
.y1bb{bottom:1002.858600px;}
.y78{bottom:1003.219800px;}
.y41{bottom:1006.203900px;}
.yf{bottom:1011.609150px;}
.yae{bottom:1014.083100px;}
.y77{bottom:1019.713200px;}
.y40{bottom:1022.697300px;}
.yad{bottom:1030.576500px;}
.y1ba{bottom:1035.438600px;}
.y76{bottom:1036.206600px;}
.ye{bottom:1038.613650px;}
.yac{bottom:1051.332900px;}
.y75{bottom:1052.700000px;}
.y1b7{bottom:1055.874600px;}
.y3f{bottom:1069.193400px;}
.y1b9{bottom:1069.566600px;}
.y1b3{bottom:1076.310600px;}
.y1b8{bottom:1083.066600px;}
.y3e{bottom:1085.686800px;}
.y35{bottom:1098.935400px;}
.y3d{bottom:1102.180200px;}
.y2{bottom:1109.139750px;}
.y1b5{bottom:1110.438600px;}
.y34{bottom:1115.415900px;}
.y1b6{bottom:1117.182600px;}
.y3c{bottom:1118.673600px;}
.y1b4{bottom:1123.938600px;}
.y3b{bottom:1135.167000px;}
.y3a{bottom:1151.660400px;}
.y39{bottom:1168.153800px;}
.y37{bottom:1200.605250px;}
.y36{bottom:1207.429800px;}
.hb{height:18.595500px;}
.ha{height:26.525391px;}
.h3{height:30.913500px;}
.he{height:31.896000px;}
.h6{height:32.516400px;}
.hf{height:35.376000px;}
.h2{height:37.212000px;}
.h4{height:42.528000px;}
.hd{height:43.335600px;}
.h8{height:46.452000px;}
.hc{height:48.642000px;}
.h7{height:52.096800px;}
.h9{height:74.424000px;}
.h5{height:90.372000px;}
.h1{height:1266.000000px;}
.h0{height:1266.308250px;}
.w4{width:178.801800px;}
.w3{width:441.886500px;}
.w2{width:723.907650px;}
.w1{width:896.250000px;}
.w0{width:896.385750px;}
.x0{left:0.000000px;}
.xa{left:16.736100px;}
.x2{left:86.400600px;}
.xb{left:89.569050px;}
.x8{left:91.758900px;}
.xf{left:94.125600px;}
.x6{left:95.315100px;}
.x4{left:99.744000px;}
.xd{left:108.075900px;}
.x15{left:116.543100px;}
.x11{left:148.929600px;}
.x12{left:151.653150px;}
.x20{left:152.945700px;}
.x16{left:157.145700px;}
.x21{left:161.453700px;}
.x9{left:197.692650px;}
.x7{left:279.578100px;}
.x17{left:291.005700px;}
.x22{left:300.737700px;}
.x18{left:302.153700px;}
.x14{left:303.336900px;}
.x13{left:310.657200px;}
.x23{left:311.885700px;}
.x26{left:314.201700px;}
.xc{left:367.724250px;}
.x5{left:377.373000px;}
.x19{left:396.053700px;}
.x24{left:404.849700px;}
.x28{left:464.285700px;}
.x1b{left:474.317700px;}
.x1c{left:475.877700px;}
.x1d{left:480.293700px;}
.x27{left:482.357700px;}
.x2b{left:487.733700px;}
.x1a{left:559.469700px;}
.x25{left:561.053700px;}
.x1e{left:601.481700px;}
.x29{left:609.293700px;}
.x1f{left:614.645700px;}
.x2a{left:622.457700px;}
.x3{left:637.613250px;}
.xe{left:796.831800px;}
.x1{left:797.850450px;}
.x10{left:799.288800px;}
@media print{
.v2{vertical-align:-24.864000pt;}
.v1{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.310933pt;}
.ls1a{letter-spacing:-4.266667pt;}
.ls1f{letter-spacing:-3.413333pt;}
.lsb{letter-spacing:-2.560000pt;}
.ls17{letter-spacing:-2.133333pt;}
.lsf{letter-spacing:-1.920000pt;}
.ls18{letter-spacing:-1.706667pt;}
.ls1d{letter-spacing:-1.621333pt;}
.ls10{letter-spacing:-1.408000pt;}
.ls12{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.216000pt;}
.ls14{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-1.109333pt;}
.ls16{letter-spacing:-1.045333pt;}
.ls15{letter-spacing:-1.024000pt;}
.ls1b{letter-spacing:-0.981333pt;}
.ls13{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.522667pt;}
.ls1c{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.341333pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.853333pt;}
.ls8{letter-spacing:2.688000pt;}
.ls2{letter-spacing:3.733333pt;}
.ls0{letter-spacing:5.120000pt;}
.ls1{letter-spacing:26.133333pt;}
.ls6{letter-spacing:49.444267pt;}
.ls7{letter-spacing:110.208000pt;}
.wsaf{word-spacing:-112.554667pt;}
.wsb1{word-spacing:-112.469333pt;}
.wsb6{word-spacing:-107.818667pt;}
.ws0{word-spacing:-15.232000pt;}
.wsfe{word-spacing:-12.613333pt;}
.ws21{word-spacing:-12.387200pt;}
.ws66{word-spacing:-11.498667pt;}
.ws107{word-spacing:-10.112000pt;}
.ws100{word-spacing:-9.173333pt;}
.ws1{word-spacing:-8.848000pt;}
.ws123{word-spacing:-8.832000pt;}
.wsb9{word-spacing:-8.533333pt;}
.wsba{word-spacing:-7.221738pt;}
.wscf{word-spacing:-7.160533pt;}
.wseb{word-spacing:-6.899200pt;}
.ws9e{word-spacing:-6.368000pt;}
.ws78{word-spacing:-5.540267pt;}
.ws5d{word-spacing:-5.278933pt;}
.wsd6{word-spacing:-4.965333pt;}
.wsbf{word-spacing:-4.756267pt;}
.ws133{word-spacing:-4.547200pt;}
.ws4a{word-spacing:-4.181333pt;}
.wsd5{word-spacing:-3.972267pt;}
.wsbe{word-spacing:-3.815467pt;}
.ws2e{word-spacing:-3.345067pt;}
.ws80{word-spacing:-3.292800pt;}
.ws60{word-spacing:-3.240533pt;}
.ws5f{word-spacing:-3.188267pt;}
.wse7{word-spacing:-3.083733pt;}
.wsed{word-spacing:-2.979200pt;}
.wsf1{word-spacing:-2.717867pt;}
.ws5c{word-spacing:-2.665600pt;}
.ws45{word-spacing:-2.613333pt;}
.ws69{word-spacing:-2.561067pt;}
.wsbd{word-spacing:-2.508800pt;}
.ws70{word-spacing:-2.456533pt;}
.ws6a{word-spacing:-2.404267pt;}
.wsf4{word-spacing:-2.352000pt;}
.ws46{word-spacing:-2.247467pt;}
.ws92{word-spacing:-2.195200pt;}
.wsf6{word-spacing:-2.142933pt;}
.ws77{word-spacing:-2.090667pt;}
.wse4{word-spacing:-2.038400pt;}
.wsd0{word-spacing:-1.986133pt;}
.wsca{word-spacing:-1.933867pt;}
.wscd{word-spacing:-1.881600pt;}
.ws52{word-spacing:-1.829333pt;}
.wsec{word-spacing:-1.724800pt;}
.ws73{word-spacing:-1.672533pt;}
.wscc{word-spacing:-1.568000pt;}
.ws131{word-spacing:-1.515733pt;}
.ws18{word-spacing:-1.463467pt;}
.ws44{word-spacing:-1.411200pt;}
.ws132{word-spacing:-1.358933pt;}
.wsbc{word-spacing:-1.254400pt;}
.wse8{word-spacing:-1.149867pt;}
.wsbb{word-spacing:-1.097600pt;}
.ws51{word-spacing:-1.045333pt;}
.ws58{word-spacing:-0.940800pt;}
.ws84{word-spacing:-0.888533pt;}
.ws75{word-spacing:-0.836267pt;}
.ws8b{word-spacing:-0.784000pt;}
.ws19{word-spacing:-0.731733pt;}
.ws3f{word-spacing:-0.679467pt;}
.ws82{word-spacing:-0.627200pt;}
.ws26{word-spacing:-0.574933pt;}
.ws39{word-spacing:-0.522667pt;}
.ws27{word-spacing:-0.470400pt;}
.ws85{word-spacing:-0.418133pt;}
.ws5{word-spacing:-0.313600pt;}
.ws5e{word-spacing:-0.261333pt;}
.ws49{word-spacing:-0.209067pt;}
.wsd3{word-spacing:-0.156800pt;}
.wsc{word-spacing:-0.104533pt;}
.ws71{word-spacing:-0.052267pt;}
.ws20{word-spacing:-0.005333pt;}
.ws2{word-spacing:0.000000pt;}
.wse0{word-spacing:0.104533pt;}
.ws79{word-spacing:0.156800pt;}
.ws7c{word-spacing:0.209067pt;}
.ws23{word-spacing:0.261333pt;}
.ws4c{word-spacing:0.313600pt;}
.ws1a{word-spacing:0.365867pt;}
.wsd9{word-spacing:0.418133pt;}
.ws3d{word-spacing:0.522667pt;}
.wsc6{word-spacing:0.554667pt;}
.wse9{word-spacing:0.574933pt;}
.ws4b{word-spacing:0.627200pt;}
.ws81{word-spacing:0.679467pt;}
.ws1d{word-spacing:0.731733pt;}
.ws12{word-spacing:0.888533pt;}
.wse2{word-spacing:0.993067pt;}
.ws30{word-spacing:1.045333pt;}
.ws3c{word-spacing:1.097600pt;}
.ws33{word-spacing:1.149867pt;}
.wsc4{word-spacing:1.194667pt;}
.ws91{word-spacing:1.202133pt;}
.wsda{word-spacing:1.254400pt;}
.wsc1{word-spacing:1.280000pt;}
.ws1e{word-spacing:1.306667pt;}
.ws130{word-spacing:1.358933pt;}
.wsc8{word-spacing:1.365333pt;}
.ws53{word-spacing:1.411200pt;}
.ws4{word-spacing:1.463467pt;}
.ws6b{word-spacing:1.515733pt;}
.wsa{word-spacing:1.568000pt;}
.wsb{word-spacing:1.620267pt;}
.ws25{word-spacing:1.672533pt;}
.ws3{word-spacing:1.724800pt;}
.ws12f{word-spacing:1.777067pt;}
.ws8c{word-spacing:1.881600pt;}
.wsea{word-spacing:1.933867pt;}
.wsc9{word-spacing:1.962667pt;}
.ws1b{word-spacing:1.986133pt;}
.ws32{word-spacing:2.038400pt;}
.ws8d{word-spacing:2.090667pt;}
.ws42{word-spacing:2.142933pt;}
.wsdb{word-spacing:2.195200pt;}
.ws41{word-spacing:2.247467pt;}
.ws7e{word-spacing:2.404267pt;}
.ws35{word-spacing:2.456533pt;}
.wsd1{word-spacing:2.508800pt;}
.wsf2{word-spacing:2.561067pt;}
.ws13{word-spacing:2.665600pt;}
.ws74{word-spacing:2.717867pt;}
.ws89{word-spacing:2.770133pt;}
.ws76{word-spacing:2.822400pt;}
.wsf{word-spacing:2.926933pt;}
.wsc2{word-spacing:2.944000pt;}
.ws9{word-spacing:2.979200pt;}
.ws34{word-spacing:3.031467pt;}
.ws5b{word-spacing:3.083733pt;}
.ws6e{word-spacing:3.136000pt;}
.ws67{word-spacing:3.188267pt;}
.ws57{word-spacing:3.240533pt;}
.wsfb{word-spacing:3.292800pt;}
.ws7d{word-spacing:3.397333pt;}
.wsc5{word-spacing:3.456000pt;}
.ws1c{word-spacing:3.501867pt;}
.ws38{word-spacing:3.554133pt;}
.wscb{word-spacing:3.606400pt;}
.ws65{word-spacing:3.658667pt;}
.wsf7{word-spacing:3.763200pt;}
.ws28{word-spacing:3.815467pt;}
.ws36{word-spacing:3.867733pt;}
.ws7a{word-spacing:3.972267pt;}
.wsef{word-spacing:4.024533pt;}
.ws2d{word-spacing:4.076800pt;}
.ws88{word-spacing:4.129067pt;}
.ws29{word-spacing:4.181333pt;}
.wsdc{word-spacing:4.233600pt;}
.ws134{word-spacing:4.285867pt;}
.ws55{word-spacing:4.338133pt;}
.ws8a{word-spacing:4.390400pt;}
.ws24{word-spacing:4.442667pt;}
.wse3{word-spacing:4.494933pt;}
.ws63{word-spacing:4.547200pt;}
.wse1{word-spacing:4.599467pt;}
.wse5{word-spacing:4.651733pt;}
.ws7{word-spacing:4.756267pt;}
.wsd8{word-spacing:4.808533pt;}
.ws2a{word-spacing:4.860800pt;}
.wsc3{word-spacing:4.906667pt;}
.ws56{word-spacing:4.913067pt;}
.ws48{word-spacing:5.017600pt;}
.ws43{word-spacing:5.174400pt;}
.ws12e{word-spacing:5.226667pt;}
.ws6c{word-spacing:5.278933pt;}
.ws16{word-spacing:5.331200pt;}
.ws6{word-spacing:5.435733pt;}
.wsc7{word-spacing:5.461333pt;}
.ws47{word-spacing:5.488000pt;}
.ws1f{word-spacing:5.540267pt;}
.ws8f{word-spacing:5.592533pt;}
.ws40{word-spacing:5.644800pt;}
.wse{word-spacing:5.749333pt;}
.ws31{word-spacing:5.801600pt;}
.wsd7{word-spacing:5.853867pt;}
.ws3a{word-spacing:5.906133pt;}
.ws5a{word-spacing:5.958400pt;}
.ws4f{word-spacing:6.010667pt;}
.ws86{word-spacing:6.062933pt;}
.ws10{word-spacing:6.115200pt;}
.ws93{word-spacing:6.167467pt;}
.wsd{word-spacing:6.272000pt;}
.ws4d{word-spacing:6.324267pt;}
.ws37{word-spacing:6.376533pt;}
.ws8{word-spacing:6.428800pt;}
.ws17{word-spacing:6.481067pt;}
.ws22{word-spacing:6.533333pt;}
.ws2f{word-spacing:6.690133pt;}
.ws7b{word-spacing:6.742400pt;}
.ws3b{word-spacing:6.899200pt;}
.ws83{word-spacing:7.003733pt;}
.ws11{word-spacing:7.056000pt;}
.ws50{word-spacing:7.212800pt;}
.ws61{word-spacing:7.421867pt;}
.ws64{word-spacing:7.474133pt;}
.ws54{word-spacing:7.578667pt;}
.ws3e{word-spacing:7.630933pt;}
.ws6f{word-spacing:7.683200pt;}
.wsfc{word-spacing:7.892267pt;}
.ws8e{word-spacing:7.996800pt;}
.ws4e{word-spacing:8.049067pt;}
.wsd2{word-spacing:8.101333pt;}
.wsd4{word-spacing:8.153600pt;}
.ws2c{word-spacing:8.205867pt;}
.ws72{word-spacing:8.467200pt;}
.ws87{word-spacing:8.571733pt;}
.ws90{word-spacing:8.676267pt;}
.ws2b{word-spacing:8.780800pt;}
.wsfa{word-spacing:8.885333pt;}
.ws59{word-spacing:8.937600pt;}
.wsc0{word-spacing:8.989867pt;}
.wsf3{word-spacing:9.042133pt;}
.ws68{word-spacing:9.198933pt;}
.wsf9{word-spacing:9.564800pt;}
.wsce{word-spacing:9.617067pt;}
.wsf5{word-spacing:9.826133pt;}
.ws7f{word-spacing:10.035200pt;}
.ws6d{word-spacing:10.296533pt;}
.wsfd{word-spacing:11.185067pt;}
.wsdd{word-spacing:11.341867pt;}
.wsf0{word-spacing:11.394133pt;}
.wsee{word-spacing:11.916800pt;}
.wse6{word-spacing:11.969067pt;}
.ws62{word-spacing:12.282667pt;}
.ws12d{word-spacing:12.387200pt;}
.wsde{word-spacing:14.425600pt;}
.ws14{word-spacing:15.105067pt;}
.ws15{word-spacing:16.673067pt;}
.wsf8{word-spacing:18.345600pt;}
.wsdf{word-spacing:20.227200pt;}
.ws94{word-spacing:57.184000pt;}
.ws96{word-spacing:59.936000pt;}
.ws9d{word-spacing:60.160000pt;}
.ws99{word-spacing:61.088000pt;}
.ws135{word-spacing:61.866667pt;}
.ws95{word-spacing:62.016000pt;}
.ws155{word-spacing:62.336000pt;}
.wsb7{word-spacing:64.725333pt;}
.ws157{word-spacing:65.408000pt;}
.ws11e{word-spacing:65.450667pt;}
.ws97{word-spacing:66.592000pt;}
.ws144{word-spacing:66.901333pt;}
.ws98{word-spacing:67.616000pt;}
.ws9a{word-spacing:68.800000pt;}
.ws159{word-spacing:68.821333pt;}
.ws9b{word-spacing:68.928000pt;}
.ws13b{word-spacing:70.058667pt;}
.ws9c{word-spacing:70.336000pt;}
.ws14f{word-spacing:70.400000pt;}
.ws149{word-spacing:71.253333pt;}
.ws151{word-spacing:71.808000pt;}
.ws153{word-spacing:73.984000pt;}
.ws13c{word-spacing:74.069333pt;}
.wsff{word-spacing:74.414933pt;}
.ws146{word-spacing:74.880000pt;}
.ws148{word-spacing:75.136000pt;}
.ws120{word-spacing:75.989333pt;}
.ws13a{word-spacing:76.032000pt;}
.wsb8{word-spacing:76.202667pt;}
.ws12a{word-spacing:76.373333pt;}
.ws13d{word-spacing:76.928000pt;}
.ws143{word-spacing:77.312000pt;}
.ws10c{word-spacing:77.610667pt;}
.ws127{word-spacing:78.037333pt;}
.ws109{word-spacing:78.592000pt;}
.ws14c{word-spacing:80.853333pt;}
.ws11c{word-spacing:83.498667pt;}
.wsa0{word-spacing:84.778667pt;}
.ws10d{word-spacing:84.906667pt;}
.ws114{word-spacing:84.949333pt;}
.ws14a{word-spacing:85.077333pt;}
.ws125{word-spacing:85.376000pt;}
.ws139{word-spacing:86.485333pt;}
.wsa1{word-spacing:88.533333pt;}
.ws117{word-spacing:93.525333pt;}
.ws103{word-spacing:93.909333pt;}
.ws141{word-spacing:94.677333pt;}
.ws140{word-spacing:95.616000pt;}
.wsa5{word-spacing:97.536000pt;}
.ws128{word-spacing:98.090667pt;}
.wsa2{word-spacing:100.096000pt;}
.ws116{word-spacing:100.693333pt;}
.ws13e{word-spacing:100.949333pt;}
.ws110{word-spacing:101.546667pt;}
.ws104{word-spacing:102.101333pt;}
.ws137{word-spacing:102.442667pt;}
.ws10f{word-spacing:102.570667pt;}
.ws14d{word-spacing:104.618667pt;}
.ws12c{word-spacing:105.088000pt;}
.ws124{word-spacing:105.130667pt;}
.ws11f{word-spacing:105.301333pt;}
.ws9f{word-spacing:106.368000pt;}
.ws112{word-spacing:110.634667pt;}
.ws10b{word-spacing:110.762667pt;}
.ws122{word-spacing:113.450667pt;}
.ws111{word-spacing:115.456000pt;}
.ws11b{word-spacing:116.864000pt;}
.wsae{word-spacing:117.205333pt;}
.wsb0{word-spacing:118.144000pt;}
.wsa4{word-spacing:118.229333pt;}
.wsa3{word-spacing:119.722667pt;}
.wsa8{word-spacing:119.936000pt;}
.ws105{word-spacing:120.021333pt;}
.ws106{word-spacing:120.448000pt;}
.wsab{word-spacing:122.368000pt;}
.wsa9{word-spacing:122.837333pt;}
.wsac{word-spacing:124.458667pt;}
.ws142{word-spacing:124.800000pt;}
.wsa6{word-spacing:125.354667pt;}
.wsad{word-spacing:127.317333pt;}
.wsa7{word-spacing:129.066667pt;}
.wsb4{word-spacing:129.621333pt;}
.ws102{word-spacing:130.645333pt;}
.ws11a{word-spacing:130.773333pt;}
.wsb5{word-spacing:131.456000pt;}
.wsb3{word-spacing:132.181333pt;}
.ws12b{word-spacing:133.376000pt;}
.ws118{word-spacing:138.965333pt;}
.wsaa{word-spacing:140.032000pt;}
.ws14b{word-spacing:142.165333pt;}
.ws119{word-spacing:146.304000pt;}
.wsb2{word-spacing:147.157333pt;}
.ws121{word-spacing:150.144000pt;}
.ws136{word-spacing:158.549333pt;}
.ws101{word-spacing:160.426667pt;}
.ws115{word-spacing:209.664000pt;}
.ws10a{word-spacing:212.266667pt;}
.ws108{word-spacing:212.309333pt;}
.ws126{word-spacing:212.821333pt;}
.ws113{word-spacing:213.077333pt;}
.ws129{word-spacing:213.248000pt;}
.ws10e{word-spacing:214.912000pt;}
.ws11d{word-spacing:220.373333pt;}
.ws145{word-spacing:230.400000pt;}
.ws138{word-spacing:231.040000pt;}
.ws147{word-spacing:238.037333pt;}
.ws13f{word-spacing:239.018667pt;}
.ws154{word-spacing:239.744000pt;}
.ws14e{word-spacing:243.242667pt;}
.ws152{word-spacing:246.016000pt;}
.ws156{word-spacing:247.210667pt;}
.ws158{word-spacing:248.064000pt;}
.ws150{word-spacing:250.410667pt;}
._2e{margin-left:-2570.064000pt;}
._b{margin-left:-974.560000pt;}
._d{margin-left:-195.712000pt;}
._29{margin-left:-109.622400pt;}
._10{margin-left:-38.520533pt;}
._30{margin-left:-20.050027pt;}
._33{margin-left:-19.101973pt;}
._32{margin-left:-18.133333pt;}
._8{margin-left:-16.045867pt;}
._2f{margin-left:-14.097920pt;}
._11{margin-left:-11.975360pt;}
._12{margin-left:-10.700587pt;}
._f{margin-left:-9.565867pt;}
._e{margin-left:-8.245120pt;}
._7{margin-left:-7.110400pt;}
._6{margin-left:-5.755520pt;}
._1{margin-left:-4.368000pt;}
._3{margin-left:-2.692267pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.489067pt;}
._9{width:3.119429pt;}
._a{width:4.678400pt;}
._28{width:6.408533pt;}
._31{width:7.441173pt;}
._2b{width:8.870400pt;}
._4{width:10.192000pt;}
._2a{width:12.317867pt;}
._5{width:13.338667pt;}
._13{width:66.304000pt;}
._15{width:67.744000pt;}
._14{width:68.896000pt;}
._5c{width:75.737600pt;}
._16{width:78.109867pt;}
._68{width:81.408000pt;}
._75{width:83.165867pt;}
._6f{width:85.380267pt;}
._74{width:86.395733pt;}
._70{width:87.918933pt;}
._17{width:89.770667pt;}
._18{width:90.752000pt;}
._2c{width:91.656533pt;}
._4c{width:92.979200pt;}
._6a{width:95.172267pt;}
._2d{width:96.896000pt;}
._64{width:97.800533pt;}
._1a{width:98.730667pt;}
._3f{width:99.957333pt;}
._53{width:101.939200pt;}
._1f{width:103.210667pt;}
._19{width:104.448000pt;}
._25{width:105.655467pt;}
._24{width:107.178667pt;}
._58{width:108.211200pt;}
._26{width:109.316267pt;}
._21{width:110.630400pt;}
._1b{width:111.786667pt;}
._22{width:112.938667pt;}
._20{width:114.521600pt;}
._45{width:115.558400pt;}
._1e{width:116.480000pt;}
._1c{width:117.632000pt;}
._23{width:118.869333pt;}
._27{width:121.262933pt;}
._1d{width:122.709333pt;}
._5a{width:123.694933pt;}
._4f{width:124.770133pt;}
._3d{width:125.875200pt;}
._5f{width:126.980267pt;}
._3e{width:127.957333pt;}
._43{width:129.198933pt;}
._55{width:130.094933pt;}
._38{width:131.170133pt;}
._44{width:132.228267pt;}
._59{width:134.579200pt;}
._51{width:136.622933pt;}
._40{width:137.817600pt;}
._3b{width:138.709333pt;}
._3a{width:140.334933pt;}
._4d{width:141.533867pt;}
._56{width:142.596267pt;}
._46{width:143.534933pt;}
._42{width:145.092267pt;}
._41{width:147.118933pt;}
._39{width:148.441600pt;}
._50{width:149.721600pt;}
._48{width:151.031467pt;}
._47{width:152.324267pt;}
._5e{width:153.386667pt;}
._4a{width:154.579845pt;}
._60{width:156.206933pt;}
._3c{width:159.321600pt;}
._6e{width:165.149867pt;}
._65{width:166.574933pt;}
._73{width:168.490667pt;}
._67{width:170.033067pt;}
._77{width:171.353600pt;}
._6c{width:174.903467pt;}
._71{width:176.877867pt;}
._76{width:179.148800pt;}
._5d{width:182.050133pt;}
._36{width:183.296000pt;}
._63{width:191.104000pt;}
._61{width:195.029333pt;}
._35{width:198.186667pt;}
._34{width:213.077333pt;}
._37{width:216.192000pt;}
._4b{width:217.813333pt;}
._52{width:219.392000pt;}
._4e{width:220.416000pt;}
._57{width:221.738667pt;}
._5b{width:227.114667pt;}
._62{width:235.306667pt;}
._6d{width:236.245333pt;}
._72{width:237.696000pt;}
._49{width:240.256000pt;}
._6b{width:244.522667pt;}
._66{width:245.845333pt;}
._54{width:249.685333pt;}
._69{width:250.581333pt;}
._c{width:1922.909867pt;}
.fs3{font-size:30.471467pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:43.530667pt;}
.fs4{font-size:52.266667pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.y33{bottom:-18.456800pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:6.066267pt;}
.y3{bottom:6.934000pt;}
.y1{bottom:45.343067pt;}
.yab{bottom:70.108000pt;}
.ye3{bottom:70.228000pt;}
.y109{bottom:70.720000pt;}
.y74{bottom:73.642000pt;}
.y176{bottom:80.355600pt;}
.yaa{bottom:84.768800pt;}
.ye2{bottom:84.888800pt;}
.y108{bottom:85.380800pt;}
.y1b2{bottom:86.353067pt;}
.y73{bottom:88.302800pt;}
.y13e{bottom:90.592400pt;}
.y193{bottom:94.863867pt;}
.y175{bottom:95.016400pt;}
.ye1{bottom:99.549600pt;}
.y107{bottom:100.041600pt;}
.y72{bottom:102.963600pt;}
.ya9{bottom:103.218933pt;}
.y13d{bottom:105.253200pt;}
.y1b1{bottom:107.942400pt;}
.y192{bottom:109.524667pt;}
.y174{bottom:109.677200pt;}
.ye0{bottom:114.210400pt;}
.y106{bottom:114.702400pt;}
.y71{bottom:117.624400pt;}
.y13c{bottom:119.914000pt;}
.y191{bottom:124.185467pt;}
.y173{bottom:124.338000pt;}
.ydf{bottom:128.871200pt;}
.y105{bottom:129.363200pt;}
.y1b0{bottom:129.531733pt;}
.y70{bottom:132.285200pt;}
.ya8{bottom:133.755733pt;}
.y13b{bottom:134.574800pt;}
.y32{bottom:135.992933pt;}
.y190{bottom:138.846267pt;}
.y172{bottom:138.998800pt;}
.yde{bottom:143.532000pt;}
.y104{bottom:144.024000pt;}
.y6f{bottom:146.946000pt;}
.ya7{bottom:148.416533pt;}
.y13a{bottom:149.235600pt;}
.y31{bottom:150.653733pt;}
.y1af{bottom:151.121067pt;}
.y18f{bottom:153.507067pt;}
.y171{bottom:153.659600pt;}
.y130{bottom:155.569333pt;}
.ydd{bottom:158.192800pt;}
.y103{bottom:158.684800pt;}
.y6e{bottom:161.606800pt;}
.ya6{bottom:163.077333pt;}
.y30{bottom:165.314533pt;}
.y18e{bottom:168.167867pt;}
.y170{bottom:168.320400pt;}
.y12f{bottom:170.230133pt;}
.y1ae{bottom:172.710400pt;}
.ydc{bottom:172.853600pt;}
.y102{bottom:173.345600pt;}
.y6d{bottom:176.267600pt;}
.ya5{bottom:177.738133pt;}
.y2f{bottom:179.975333pt;}
.y18d{bottom:182.828667pt;}
.y16f{bottom:182.981200pt;}
.y12e{bottom:184.890933pt;}
.ydb{bottom:187.514400pt;}
.y101{bottom:188.006400pt;}
.y6c{bottom:190.928400pt;}
.ya4{bottom:192.398933pt;}
.y1ad{bottom:194.299733pt;}
.y2e{bottom:194.636133pt;}
.y18c{bottom:197.489467pt;}
.y16e{bottom:197.642000pt;}
.y12d{bottom:199.551733pt;}
.yda{bottom:202.175200pt;}
.y100{bottom:202.667200pt;}
.y6b{bottom:205.589200pt;}
.ya3{bottom:207.059733pt;}
.y2d{bottom:209.296933pt;}
.y18b{bottom:212.150267pt;}
.y16d{bottom:212.302800pt;}
.y12c{bottom:214.212533pt;}
.y1ac{bottom:215.889067pt;}
.yd9{bottom:216.836000pt;}
.yff{bottom:217.328000pt;}
.y6a{bottom:220.250000pt;}
.ya2{bottom:221.720533pt;}
.y2c{bottom:223.957733pt;}
.y18a{bottom:226.811067pt;}
.y16c{bottom:226.963600pt;}
.yd8{bottom:231.496800pt;}
.yfe{bottom:231.988800pt;}
.y69{bottom:234.910800pt;}
.ya1{bottom:236.381333pt;}
.y1ab{bottom:237.478400pt;}
.y2b{bottom:238.618533pt;}
.y12b{bottom:240.210933pt;}
.y189{bottom:241.471867pt;}
.y16b{bottom:241.624400pt;}
.yd7{bottom:246.157600pt;}
.yfd{bottom:246.649600pt;}
.y68{bottom:249.571600pt;}
.y12a{bottom:252.210933pt;}
.y2a{bottom:253.279333pt;}
.ya0{bottom:254.831467pt;}
.y188{bottom:256.132667pt;}
.y16a{bottom:256.285200pt;}
.y1aa{bottom:259.067733pt;}
.yd6{bottom:260.818400pt;}
.yfc{bottom:261.310400pt;}
.y129{bottom:264.210933pt;}
.y67{bottom:264.232400pt;}
.y29{bottom:267.940133pt;}
.y187{bottom:270.793467pt;}
.y169{bottom:270.946000pt;}
.yd5{bottom:275.479200pt;}
.yfb{bottom:275.971200pt;}
.y128{bottom:276.210933pt;}
.y66{bottom:278.893200pt;}
.y1a9{bottom:280.657067pt;}
.y186{bottom:285.454267pt;}
.y168{bottom:285.606800pt;}
.y28{bottom:286.952133pt;}
.y127{bottom:288.210933pt;}
.y9f{bottom:289.151600pt;}
.yd4{bottom:290.140000pt;}
.yfa{bottom:290.632000pt;}
.y65{bottom:293.554000pt;}
.y185{bottom:300.115067pt;}
.y126{bottom:300.210933pt;}
.y167{bottom:300.267600pt;}
.y1a8{bottom:302.246400pt;}
.yd3{bottom:304.800800pt;}
.yf9{bottom:305.292800pt;}
.y64{bottom:308.214800pt;}
.y27{bottom:308.614133pt;}
.y125{bottom:312.210933pt;}
.y184{bottom:314.775867pt;}
.y166{bottom:314.928400pt;}
.yd2{bottom:319.461600pt;}
.yf8{bottom:319.953600pt;}
.y9e{bottom:319.966667pt;}
.y63{bottom:322.875600pt;}
.y1a7{bottom:323.835733pt;}
.y124{bottom:324.210933pt;}
.y183{bottom:329.436667pt;}
.y165{bottom:329.589200pt;}
.yd1{bottom:334.122400pt;}
.yf7{bottom:334.614400pt;}
.y9d{bottom:334.627467pt;}
.y26{bottom:334.822133pt;}
.y123{bottom:336.210933pt;}
.y62{bottom:337.536400pt;}
.y182{bottom:344.097467pt;}
.y164{bottom:344.250000pt;}
.y1a6{bottom:345.425067pt;}
.y122{bottom:348.210933pt;}
.yd0{bottom:348.783200pt;}
.yf6{bottom:349.275200pt;}
.y9c{bottom:349.288267pt;}
.y61{bottom:352.197200pt;}
.y181{bottom:358.758267pt;}
.y163{bottom:358.910800pt;}
.ycf{bottom:363.444000pt;}
.yf5{bottom:363.936000pt;}
.y9b{bottom:363.949067pt;}
.y60{bottom:366.858000pt;}
.y1a5{bottom:367.014400pt;}
.y121{bottom:370.994933pt;}
.y180{bottom:373.419067pt;}
.y162{bottom:373.571600pt;}
.yce{bottom:378.104800pt;}
.yf4{bottom:378.596800pt;}
.y9a{bottom:378.609867pt;}
.y5f{bottom:381.518800pt;}
.y17f{bottom:388.079867pt;}
.y161{bottom:388.232400pt;}
.y1a4{bottom:388.603733pt;}
.y120{bottom:392.584267pt;}
.ycd{bottom:392.765600pt;}
.yf3{bottom:393.257600pt;}
.y99{bottom:393.270667pt;}
.y25{bottom:394.287867pt;}
.y5e{bottom:396.179600pt;}
.y17e{bottom:402.740667pt;}
.y160{bottom:402.893200pt;}
.ycc{bottom:407.426400pt;}
.yf2{bottom:407.918400pt;}
.y24{bottom:408.948667pt;}
.y1a3{bottom:410.193067pt;}
.y5d{bottom:410.840400pt;}
.y11f{bottom:414.173600pt;}
.y17d{bottom:417.401467pt;}
.y15f{bottom:417.554000pt;}
.ycb{bottom:422.087200pt;}
.yf1{bottom:422.579200pt;}
.y98{bottom:422.605333pt;}
.y23{bottom:423.609467pt;}
.y5c{bottom:425.501200pt;}
.y1a2{bottom:431.782400pt;}
.y17c{bottom:432.062267pt;}
.y15e{bottom:432.214800pt;}
.y11e{bottom:435.762933pt;}
.yf0{bottom:437.240000pt;}
.y97{bottom:437.266133pt;}
.y22{bottom:438.270267pt;}
.y5b{bottom:440.162000pt;}
.y17b{bottom:446.723067pt;}
.y15d{bottom:446.875600pt;}
.yca{bottom:451.421867pt;}
.yef{bottom:451.900800pt;}
.y96{bottom:451.926933pt;}
.y21{bottom:452.931067pt;}
.y1a1{bottom:453.371733pt;}
.y5a{bottom:454.822800pt;}
.y11d{bottom:457.352267pt;}
.y17a{bottom:461.383867pt;}
.y15c{bottom:461.536400pt;}
.yc9{bottom:466.082667pt;}
.yee{bottom:466.561600pt;}
.y95{bottom:466.587733pt;}
.y20{bottom:467.591867pt;}
.y59{bottom:469.483600pt;}
.y179{bottom:476.044667pt;}
.y15b{bottom:476.197200pt;}
.y11c{bottom:478.941600pt;}
.yc8{bottom:480.743467pt;}
.yed{bottom:481.222400pt;}
.y94{bottom:481.248533pt;}
.y1f{bottom:482.252667pt;}
.y1a0{bottom:482.331733pt;}
.y58{bottom:484.144400pt;}
.y178{bottom:490.705467pt;}
.y15a{bottom:490.858000pt;}
.yc7{bottom:495.404267pt;}
.yec{bottom:495.883200pt;}
.y93{bottom:495.909333pt;}
.y1e{bottom:496.913467pt;}
.y57{bottom:498.805200pt;}
.y11b{bottom:500.530933pt;}
.y19a{bottom:505.137067pt;}
.y159{bottom:505.518800pt;}
.y139{bottom:508.794667pt;}
.y177{bottom:509.151600pt;}
.yc6{bottom:510.065067pt;}
.yeb{bottom:510.544000pt;}
.y92{bottom:510.570133pt;}
.y19d{bottom:511.302400pt;}
.y1d{bottom:511.574267pt;}
.y56{bottom:513.466000pt;}
.y19f{bottom:517.297067pt;}
.y158{bottom:520.179600pt;}
.y196{bottom:521.937067pt;}
.y11a{bottom:522.120267pt;}
.y19c{bottom:523.302400pt;}
.yea{bottom:525.204800pt;}
.y91{bottom:525.230933pt;}
.y1c{bottom:526.235067pt;}
.y55{bottom:528.126800pt;}
.yc5{bottom:528.511200pt;}
.y19e{bottom:529.297067pt;}
.y138{bottom:532.174267pt;}
.y157{bottom:534.840400pt;}
.y19b{bottom:535.302400pt;}
.ye9{bottom:539.865600pt;}
.y90{bottom:539.891733pt;}
.y1b{bottom:540.895867pt;}
.y54{bottom:542.787600pt;}
.y119{bottom:543.709600pt;}
.y1cb{bottom:546.000533pt;}
.y137{bottom:546.835067pt;}
.y156{bottom:549.501200pt;}
.ye8{bottom:554.526400pt;}
.y8f{bottom:554.552533pt;}
.y1a{bottom:555.556667pt;}
.y198{bottom:556.902400pt;}
.y53{bottom:557.448400pt;}
.yc4{bottom:559.204267pt;}
.y136{bottom:561.495867pt;}
.y199{bottom:562.897067pt;}
.y155{bottom:564.162000pt;}
.y118{bottom:565.298933pt;}
.y1ca{bottom:567.589867pt;}
.y197{bottom:568.902400pt;}
.ye7{bottom:569.187200pt;}
.y8e{bottom:569.213333pt;}
.y19{bottom:570.217467pt;}
.y52{bottom:572.109200pt;}
.yc3{bottom:573.865067pt;}
.y135{bottom:576.156667pt;}
.y154{bottom:578.822800pt;}
.y8d{bottom:583.874133pt;}
.y18{bottom:584.878267pt;}
.y51{bottom:586.770000pt;}
.y117{bottom:586.888267pt;}
.yc2{bottom:588.525867pt;}
.y1c9{bottom:589.179200pt;}
.y134{bottom:590.817467pt;}
.y153{bottom:593.483600pt;}
.ye6{bottom:598.521867pt;}
.y8c{bottom:598.534933pt;}
.y17{bottom:599.539067pt;}
.y50{bottom:601.430800pt;}
.yc1{bottom:603.186667pt;}
.y133{bottom:605.478267pt;}
.y195{bottom:606.831467pt;}
.y152{bottom:608.144400pt;}
.y116{bottom:608.477600pt;}
.y1c8{bottom:610.768533pt;}
.ye5{bottom:613.182667pt;}
.y8b{bottom:613.195733pt;}
.y16{bottom:614.199867pt;}
.y4f{bottom:616.091600pt;}
.yc0{bottom:617.847467pt;}
.y132{bottom:620.139067pt;}
.y151{bottom:622.805200pt;}
.ye4{bottom:627.843467pt;}
.y8a{bottom:627.856533pt;}
.y15{bottom:628.860667pt;}
.y115{bottom:630.066933pt;}
.y4e{bottom:630.752400pt;}
.y1c7{bottom:632.357867pt;}
.ybf{bottom:632.508267pt;}
.y131{bottom:634.799867pt;}
.y150{bottom:637.466000pt;}
.y194{bottom:641.151600pt;}
.y89{bottom:642.517333pt;}
.y14{bottom:643.521467pt;}
.y4d{bottom:645.413200pt;}
.ybe{bottom:647.169067pt;}
.y114{bottom:651.656267pt;}
.y14f{bottom:652.126800pt;}
.y1c6{bottom:653.947200pt;}
.y88{bottom:657.178133pt;}
.y13{bottom:658.182267pt;}
.y4c{bottom:660.074000pt;}
.ybd{bottom:661.829867pt;}
.y14e{bottom:666.787600pt;}
.y87{bottom:671.838933pt;}
.y12{bottom:672.843067pt;}
.y113{bottom:673.245600pt;}
.y4b{bottom:674.734800pt;}
.y1c5{bottom:675.536533pt;}
.ybc{bottom:676.490667pt;}
.y14d{bottom:681.448400pt;}
.y86{bottom:686.499733pt;}
.y4a{bottom:689.395600pt;}
.ybb{bottom:691.151467pt;}
.y11{bottom:691.855067pt;}
.y112{bottom:694.834933pt;}
.y14c{bottom:696.109200pt;}
.y1c4{bottom:697.125867pt;}
.y85{bottom:701.160533pt;}
.y49{bottom:704.056400pt;}
.yba{bottom:705.812267pt;}
.y14b{bottom:710.770000pt;}
.y84{bottom:715.821333pt;}
.y111{bottom:716.424267pt;}
.y1c3{bottom:718.715200pt;}
.y48{bottom:718.717200pt;}
.yb9{bottom:720.473067pt;}
.yc{bottom:721.086400pt;}
.yd{bottom:721.665067pt;}
.y14a{bottom:725.430800pt;}
.y83{bottom:730.482133pt;}
.y47{bottom:733.378000pt;}
.yb8{bottom:735.133867pt;}
.y110{bottom:738.013600pt;}
.y149{bottom:740.091600pt;}
.y1c2{bottom:740.304533pt;}
.y82{bottom:745.142933pt;}
.y46{bottom:748.038800pt;}
.yb{bottom:748.248667pt;}
.yb7{bottom:749.794667pt;}
.y148{bottom:754.752400pt;}
.y10f{bottom:759.602800pt;}
.y81{bottom:759.803733pt;}
.ya{bottom:760.910000pt;}
.y1c1{bottom:761.893867pt;}
.yb6{bottom:764.455467pt;}
.y45{bottom:766.484933pt;}
.y147{bottom:769.413200pt;}
.y9{bottom:773.571333pt;}
.y80{bottom:774.464533pt;}
.y10e{bottom:780.353733pt;}
.yb5{bottom:782.905600pt;}
.y1c0{bottom:783.483200pt;}
.y146{bottom:784.074000pt;}
.y8{bottom:786.232667pt;}
.y7f{bottom:789.125333pt;}
.y145{bottom:798.734800pt;}
.y7{bottom:798.894000pt;}
.y10d{bottom:803.773067pt;}
.y7e{bottom:803.786133pt;}
.y1bf{bottom:805.072533pt;}
.y6{bottom:811.555333pt;}
.y144{bottom:813.395600pt;}
.yb4{bottom:813.442400pt;}
.y10c{bottom:818.433867pt;}
.y7d{bottom:818.446933pt;}
.y44{bottom:823.752000pt;}
.y5{bottom:824.216667pt;}
.y1be{bottom:826.661867pt;}
.y143{bottom:828.056400pt;}
.yb3{bottom:828.103200pt;}
.y10b{bottom:833.094667pt;}
.y7c{bottom:833.107733pt;}
.y4{bottom:836.878000pt;}
.y43{bottom:838.412800pt;}
.y142{bottom:842.717200pt;}
.yb2{bottom:842.764000pt;}
.y10a{bottom:847.755467pt;}
.y7b{bottom:847.768533pt;}
.y1bd{bottom:848.251200pt;}
.y42{bottom:853.073600pt;}
.y141{bottom:857.378000pt;}
.yb1{bottom:857.424800pt;}
.y7a{bottom:862.429333pt;}
.y1bc{bottom:869.840533pt;}
.y140{bottom:872.038800pt;}
.yb0{bottom:872.085600pt;}
.y10{bottom:875.204133pt;}
.y79{bottom:877.090133pt;}
.yaf{bottom:886.746400pt;}
.y13f{bottom:890.484933pt;}
.y1bb{bottom:891.429867pt;}
.y78{bottom:891.750933pt;}
.y41{bottom:894.403467pt;}
.yf{bottom:899.208133pt;}
.yae{bottom:901.407200pt;}
.y77{bottom:906.411733pt;}
.y40{bottom:909.064267pt;}
.yad{bottom:916.068000pt;}
.y1ba{bottom:920.389867pt;}
.y76{bottom:921.072533pt;}
.ye{bottom:923.212133pt;}
.yac{bottom:934.518133pt;}
.y75{bottom:935.733333pt;}
.y1b7{bottom:938.555200pt;}
.y3f{bottom:950.394133pt;}
.y1b9{bottom:950.725867pt;}
.y1b3{bottom:956.720533pt;}
.y1b8{bottom:962.725867pt;}
.y3e{bottom:965.054933pt;}
.y35{bottom:976.831467pt;}
.y3d{bottom:979.715733pt;}
.y2{bottom:985.902000pt;}
.y1b5{bottom:987.056533pt;}
.y34{bottom:991.480800pt;}
.y1b6{bottom:993.051200pt;}
.y3c{bottom:994.376533pt;}
.y1b4{bottom:999.056533pt;}
.y3b{bottom:1009.037333pt;}
.y3a{bottom:1023.698133pt;}
.y39{bottom:1038.358933pt;}
.y37{bottom:1067.204667pt;}
.y36{bottom:1073.270933pt;}
.hb{height:16.529333pt;}
.ha{height:23.578125pt;}
.h3{height:27.478667pt;}
.he{height:28.352000pt;}
.h6{height:28.903467pt;}
.hf{height:31.445333pt;}
.h2{height:33.077333pt;}
.h4{height:37.802667pt;}
.hd{height:38.520533pt;}
.h8{height:41.290667pt;}
.hc{height:43.237333pt;}
.h7{height:46.308267pt;}
.h9{height:66.154667pt;}
.h5{height:80.330667pt;}
.h1{height:1125.333333pt;}
.h0{height:1125.607333pt;}
.w4{width:158.934933pt;}
.w3{width:392.788000pt;}
.w2{width:643.473467pt;}
.w1{width:796.666667pt;}
.w0{width:796.787333pt;}
.x0{left:0.000000pt;}
.xa{left:14.876533pt;}
.x2{left:76.800533pt;}
.xb{left:79.616933pt;}
.x8{left:81.563467pt;}
.xf{left:83.667200pt;}
.x6{left:84.724533pt;}
.x4{left:88.661333pt;}
.xd{left:96.067467pt;}
.x15{left:103.593867pt;}
.x11{left:132.381867pt;}
.x12{left:134.802800pt;}
.x20{left:135.951733pt;}
.x16{left:139.685067pt;}
.x21{left:143.514400pt;}
.x9{left:175.726800pt;}
.x7{left:248.513867pt;}
.x17{left:258.671733pt;}
.x22{left:267.322400pt;}
.x18{left:268.581067pt;}
.x14{left:269.632800pt;}
.x13{left:276.139733pt;}
.x23{left:277.231733pt;}
.x26{left:279.290400pt;}
.xc{left:326.866000pt;}
.x5{left:335.442667pt;}
.x19{left:352.047733pt;}
.x24{left:359.866400pt;}
.x28{left:412.698400pt;}
.x1b{left:421.615733pt;}
.x1c{left:423.002400pt;}
.x1d{left:426.927733pt;}
.x27{left:428.762400pt;}
.x2b{left:433.541067pt;}
.x1a{left:497.306400pt;}
.x25{left:498.714400pt;}
.x1e{left:534.650400pt;}
.x29{left:541.594400pt;}
.x1f{left:546.351733pt;}
.x2a{left:553.295733pt;}
.x3{left:566.767333pt;}
.xe{left:708.294933pt;}
.x1{left:709.200400pt;}
.x10{left:710.478933pt;}
}




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