
    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_e3bb9ff069aadbaa52020926.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_fc9c8bc9b12924a4a783464a.woff')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_d11497cfe10bdab47bb667ed.woff')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_de72a93dd4ad97696e1d9786.woff')format("woff");}.ff4{font-family:ff4;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.386600px;}
.v4{vertical-align:-15.984000px;}
.v5{vertical-align:-4.158000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.580400px;}
.v3{vertical-align:21.978000px;}
.v7{vertical-align:27.000000px;}
.v6{vertical-align:54.000000px;}
.lsd{letter-spacing:-4.200000px;}
.ls11{letter-spacing:-2.352000px;}
.ls8{letter-spacing:-2.160000px;}
.ls12{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.972000px;}
.ls14{letter-spacing:-0.588000px;}
.ls9{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.294000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000096px;}
.lse{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.588000px;}
.ls7{letter-spacing:0.972000px;}
.ls2{letter-spacing:1.164360px;}
.ls3{letter-spacing:1.176000px;}
.ls16{letter-spacing:1.764000px;}
.ls1{letter-spacing:4.502630px;}
.ls4{letter-spacing:5.760000px;}
.ls0{letter-spacing:10.829545px;}
.lsc{letter-spacing:63.360000px;}
.ls10{letter-spacing:69.628800px;}
.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;}
}
.ws3{word-spacing:-17.136000px;}
.ws103{word-spacing:-15.111600px;}
.wsec{word-spacing:-14.700000px;}
.wseb{word-spacing:-14.190000px;}
.ws102{word-spacing:-14.112000px;}
.ws6a{word-spacing:-13.935600px;}
.ws93{word-spacing:-13.641600px;}
.wsed{word-spacing:-13.347600px;}
.wsc5{word-spacing:-12.936000px;}
.ws24{word-spacing:-12.852000px;}
.ws38{word-spacing:-12.798000px;}
.ws1{word-spacing:-12.642000px;}
.ws2{word-spacing:-12.516870px;}
.wsc4{word-spacing:-12.348000px;}
.ws21{word-spacing:-11.880000px;}
.wsa5{word-spacing:-11.610000px;}
.ws23{word-spacing:-11.340000px;}
.ws25{word-spacing:-10.908000px;}
.wsa0{word-spacing:-10.584000px;}
.wsa3{word-spacing:-10.530000px;}
.wsa1{word-spacing:-10.314000px;}
.ws0{word-spacing:-9.954000px;}
.ws22{word-spacing:-9.720000px;}
.ws11c{word-spacing:-8.173200px;}
.ws11b{word-spacing:-7.585200px;}
.ws6b{word-spacing:-6.632208px;}
.ws18{word-spacing:-6.171108px;}
.ws69{word-spacing:-5.754000px;}
.ws101{word-spacing:-5.056800px;}
.wsea{word-spacing:-4.998000px;}
.wsf3{word-spacing:-4.939200px;}
.ws106{word-spacing:-4.821600px;}
.wsd4{word-spacing:-4.704000px;}
.ws11d{word-spacing:-4.645200px;}
.ws11e{word-spacing:-4.292400px;}
.ws4b{word-spacing:-4.057200px;}
.ws3a{word-spacing:-3.880800px;}
.ws61{word-spacing:-3.469200px;}
.wsd6{word-spacing:-3.351600px;}
.wse4{word-spacing:-3.234000px;}
.ws115{word-spacing:-3.175200px;}
.ws70{word-spacing:-3.116400px;}
.ws2a{word-spacing:-2.998800px;}
.ws90{word-spacing:-2.940000px;}
.ws94{word-spacing:-2.646000px;}
.wsfa{word-spacing:-2.587200px;}
.ws5c{word-spacing:-2.528400px;}
.ws7f{word-spacing:-2.410800px;}
.wsbd{word-spacing:-2.352000px;}
.ws3d{word-spacing:-2.293200px;}
.ws62{word-spacing:-2.234400px;}
.ws9e{word-spacing:-2.175600px;}
.wscc{word-spacing:-2.116800px;}
.ws71{word-spacing:-2.058000px;}
.ws29{word-spacing:-1.999200px;}
.ws42{word-spacing:-1.940400px;}
.wsf1{word-spacing:-1.881600px;}
.wsf8{word-spacing:-1.822800px;}
.ws9c{word-spacing:-1.764000px;}
.ws1a{word-spacing:-1.746540px;}
.wsd2{word-spacing:-1.705200px;}
.ws7d{word-spacing:-1.646400px;}
.ws20{word-spacing:-1.528800px;}
.ws7c{word-spacing:-1.470000px;}
.ws81{word-spacing:-1.411200px;}
.ws1b{word-spacing:-1.280796px;}
.ws58{word-spacing:-1.234800px;}
.ws1d{word-spacing:-1.222578px;}
.ws4f{word-spacing:-1.176000px;}
.wscd{word-spacing:-1.117200px;}
.wsdf{word-spacing:-1.058400px;}
.wsb5{word-spacing:-0.999600px;}
.ws47{word-spacing:-0.823200px;}
.wse5{word-spacing:-0.764400px;}
.wsb3{word-spacing:-0.705600px;}
.wsb8{word-spacing:-0.702000px;}
.ws34{word-spacing:-0.646800px;}
.ws82{word-spacing:-0.588000px;}
.ws96{word-spacing:-0.529200px;}
.wsde{word-spacing:-0.470400px;}
.ws31{word-spacing:-0.411600px;}
.ws99{word-spacing:-0.352800px;}
.ws113{word-spacing:-0.294000px;}
.ws8c{word-spacing:-0.235200px;}
.ws3b{word-spacing:-0.176400px;}
.wse6{word-spacing:-0.117600px;}
.wsef{word-spacing:-0.058800px;}
.ws4{word-spacing:0.000000px;}
.ws9a{word-spacing:0.117600px;}
.ws92{word-spacing:0.176400px;}
.ws19{word-spacing:0.232872px;}
.ws98{word-spacing:0.235200px;}
.ws11a{word-spacing:0.294000px;}
.wsce{word-spacing:0.352800px;}
.ws4d{word-spacing:0.411600px;}
.wse3{word-spacing:0.529200px;}
.ws2b{word-spacing:0.588000px;}
.ws41{word-spacing:0.646800px;}
.ws44{word-spacing:0.705600px;}
.ws48{word-spacing:0.764400px;}
.wsca{word-spacing:0.823200px;}
.wsf{word-spacing:0.882000px;}
.wsd9{word-spacing:0.940800px;}
.ws1c{word-spacing:0.989706px;}
.ws56{word-spacing:0.999600px;}
.wsf0{word-spacing:1.058400px;}
.wsb0{word-spacing:1.117200px;}
.wsb1{word-spacing:1.176000px;}
.ws40{word-spacing:1.234800px;}
.ws17{word-spacing:1.280796px;}
.ws6{word-spacing:1.293600px;}
.wsc2{word-spacing:1.352400px;}
.wsae{word-spacing:1.470000px;}
.wsc3{word-spacing:1.528800px;}
.wsc7{word-spacing:1.587600px;}
.ws8b{word-spacing:1.646400px;}
.ws45{word-spacing:1.705200px;}
.wsd{word-spacing:1.764000px;}
.ws78{word-spacing:1.822800px;}
.ws83{word-spacing:1.881600px;}
.ws53{word-spacing:1.940400px;}
.ws4c{word-spacing:1.999200px;}
.ws43{word-spacing:2.058000px;}
.ws8f{word-spacing:2.116800px;}
.wse{word-spacing:2.175600px;}
.wsc6{word-spacing:2.234400px;}
.ws2f{word-spacing:2.293200px;}
.wsfd{word-spacing:2.352000px;}
.ws64{word-spacing:2.410800px;}
.ws7e{word-spacing:2.469600px;}
.ws5b{word-spacing:2.528400px;}
.ws50{word-spacing:2.587200px;}
.ws36{word-spacing:2.646000px;}
.ws9f{word-spacing:2.704800px;}
.ws60{word-spacing:2.763600px;}
.ws37{word-spacing:2.822400px;}
.ws6c{word-spacing:2.881200px;}
.ws51{word-spacing:2.940000px;}
.ws7b{word-spacing:3.057600px;}
.ws111{word-spacing:3.116400px;}
.ws57{word-spacing:3.175200px;}
.ws80{word-spacing:3.234000px;}
.ws5e{word-spacing:3.292800px;}
.ws55{word-spacing:3.351600px;}
.ws84{word-spacing:3.360000px;}
.ws110{word-spacing:3.410400px;}
.ws114{word-spacing:3.469200px;}
.wsf2{word-spacing:3.528000px;}
.ws8e{word-spacing:3.586800px;}
.wsc1{word-spacing:3.645600px;}
.wse8{word-spacing:3.704400px;}
.ws65{word-spacing:3.763200px;}
.ws59{word-spacing:3.822000px;}
.ws35{word-spacing:3.880800px;}
.ws2c{word-spacing:3.939600px;}
.wsc{word-spacing:3.998400px;}
.ws15{word-spacing:4.017042px;}
.ws7{word-spacing:4.174800px;}
.ws66{word-spacing:4.233600px;}
.ws2d{word-spacing:4.292400px;}
.ws28{word-spacing:4.351200px;}
.ws14{word-spacing:4.366350px;}
.wsb{word-spacing:4.410000px;}
.wsbe{word-spacing:4.468800px;}
.wsb4{word-spacing:4.527600px;}
.wsb9{word-spacing:4.586400px;}
.wse2{word-spacing:4.821600px;}
.ws72{word-spacing:4.880400px;}
.wsd1{word-spacing:4.939200px;}
.ws68{word-spacing:4.998000px;}
.wsa{word-spacing:5.056800px;}
.wsd8{word-spacing:5.115600px;}
.ws6d{word-spacing:5.174400px;}
.ws33{word-spacing:5.233200px;}
.ws4e{word-spacing:5.350800px;}
.ws4a{word-spacing:5.409600px;}
.ws3c{word-spacing:5.468400px;}
.wse9{word-spacing:5.586000px;}
.ws63{word-spacing:5.644800px;}
.ws8{word-spacing:5.821200px;}
.ws5f{word-spacing:5.880000px;}
.ws76{word-spacing:5.938800px;}
.ws10{word-spacing:5.996454px;}
.wsbb{word-spacing:5.997600px;}
.ws1f{word-spacing:6.056400px;}
.wscf{word-spacing:6.174000px;}
.ws77{word-spacing:6.291600px;}
.ws3e{word-spacing:6.409200px;}
.wsfb{word-spacing:6.468000px;}
.ws49{word-spacing:6.526800px;}
.ws52{word-spacing:6.585600px;}
.ws8a{word-spacing:6.644400px;}
.ws30{word-spacing:6.703200px;}
.ws10e{word-spacing:6.762000px;}
.wsf9{word-spacing:6.820800px;}
.ws9b{word-spacing:6.879600px;}
.ws2e{word-spacing:6.938400px;}
.ws12{word-spacing:6.986160px;}
.wsb6{word-spacing:6.997200px;}
.wscb{word-spacing:7.056000px;}
.wsee{word-spacing:7.114800px;}
.wsba{word-spacing:7.173600px;}
.ws5a{word-spacing:7.291200px;}
.ws122{word-spacing:7.350000px;}
.ws26{word-spacing:7.408800px;}
.ws3f{word-spacing:7.467600px;}
.wsdb{word-spacing:7.526400px;}
.ws10d{word-spacing:7.585200px;}
.wsbc{word-spacing:7.702800px;}
.ws13{word-spacing:7.742994px;}
.ws9d{word-spacing:7.820400px;}
.ws123{word-spacing:7.879200px;}
.ws95{word-spacing:8.055600px;}
.ws10c{word-spacing:8.173200px;}
.ws100{word-spacing:8.290800px;}
.wse0{word-spacing:8.408400px;}
.wsd0{word-spacing:8.467200px;}
.wsaa{word-spacing:8.526000px;}
.ws104{word-spacing:8.584800px;}
.wsab{word-spacing:8.643600px;}
.wse7{word-spacing:8.702400px;}
.ws1e{word-spacing:8.732700px;}
.ws75{word-spacing:8.761200px;}
.wsad{word-spacing:8.996400px;}
.ws46{word-spacing:9.172800px;}
.ws5d{word-spacing:9.231600px;}
.ws9{word-spacing:9.349200px;}
.wsc8{word-spacing:9.525600px;}
.wsd7{word-spacing:9.643200px;}
.wsda{word-spacing:9.819600px;}
.ws7a{word-spacing:9.878400px;}
.ws121{word-spacing:9.937200px;}
.ws67{word-spacing:9.996000px;}
.wsdc{word-spacing:10.054800px;}
.ws117{word-spacing:10.172400px;}
.wsc9{word-spacing:10.290000px;}
.wsdd{word-spacing:10.584000px;}
.ws120{word-spacing:10.701600px;}
.ws107{word-spacing:10.819200px;}
.ws73{word-spacing:10.878000px;}
.ws116{word-spacing:10.936800px;}
.ws10f{word-spacing:10.995600px;}
.ws54{word-spacing:11.230800px;}
.ws11f{word-spacing:11.407200px;}
.ws97{word-spacing:11.583600px;}
.ws105{word-spacing:11.701200px;}
.wsf7{word-spacing:11.760000px;}
.wsbf{word-spacing:11.818800px;}
.wsf6{word-spacing:11.877600px;}
.ws118{word-spacing:11.995200px;}
.ws89{word-spacing:12.054000px;}
.ws8d{word-spacing:12.112800px;}
.ws10b{word-spacing:12.348000px;}
.ws91{word-spacing:12.465600px;}
.wsfc{word-spacing:12.700800px;}
.wsf5{word-spacing:12.759600px;}
.wse1{word-spacing:12.818400px;}
.ws27{word-spacing:12.877200px;}
.ws79{word-spacing:12.994800px;}
.wsb7{word-spacing:13.230000px;}
.ws6f{word-spacing:13.347600px;}
.wsf4{word-spacing:14.347200px;}
.ws109{word-spacing:14.464800px;}
.ws10a{word-spacing:14.817600px;}
.ws32{word-spacing:15.288000px;}
.ws16{word-spacing:15.311334px;}
.ws108{word-spacing:15.582000px;}
.wsd3{word-spacing:15.934800px;}
.ws74{word-spacing:16.111200px;}
.ws11{word-spacing:16.184604px;}
.wsff{word-spacing:16.405200px;}
.ws88{word-spacing:16.934400px;}
.ws112{word-spacing:17.581200px;}
.wsfe{word-spacing:17.698800px;}
.ws5{word-spacing:18.580800px;}
.wsd5{word-spacing:18.698400px;}
.ws119{word-spacing:21.462000px;}
.wsac{word-spacing:22.344000px;}
.wsc0{word-spacing:24.343200px;}
.ws6e{word-spacing:25.695600px;}
.wsb2{word-spacing:29.635200px;}
.wsaf{word-spacing:36.279600px;}
.wsa4{word-spacing:63.882000px;}
.ws86{word-spacing:65.502000px;}
.wsa9{word-spacing:87.210000px;}
.wsa6{word-spacing:107.730000px;}
.wsa2{word-spacing:111.186000px;}
.ws39{word-spacing:164.160000px;}
.wsa7{word-spacing:296.298000px;}
.wsa8{word-spacing:300.942000px;}
.ws87{word-spacing:592.272000px;}
.ws85{word-spacing:1019.304000px;}
._0{margin-left:-2890.482000px;}
._18{margin-left:-176.958000px;}
._37{margin-left:-50.274000px;}
._38{margin-left:-43.629600px;}
._1c{margin-left:-39.631200px;}
._1e{margin-left:-27.832800px;}
._20{margin-left:-23.961000px;}
._22{margin-left:-22.726200px;}
._4e{margin-left:-13.935600px;}
._17{margin-left:-12.798000px;}
._24{margin-left:-11.436600px;}
._57{margin-left:-9.648000px;}
._b{margin-left:-8.174880px;}
._6{margin-left:-6.960240px;}
._7{margin-left:-4.966340px;}
._3{margin-left:-3.780000px;}
._15{margin-left:-2.700000px;}
._1{margin-left:-1.680000px;}
._5{width:1.244880px;}
._2{width:2.487922px;}
._56{width:3.904320px;}
._8{width:4.958526px;}
._55{width:6.681360px;}
._54{width:8.109600px;}
._9{width:12.624000px;}
._53{width:17.320800px;}
._50{width:18.816000px;}
._33{width:27.518400px;}
._36{width:29.694000px;}
._35{width:31.693200px;}
._a{width:40.145400px;}
._34{width:43.501920px;}
._31{width:51.332400px;}
._30{width:53.331600px;}
._32{width:57.859200px;}
._25{width:61.357800px;}
._1f{width:64.356600px;}
._21{width:65.591400px;}
._47{width:68.038340px;}
._2b{width:71.334000px;}
._39{width:72.964340px;}
._4f{width:75.699600px;}
._23{width:76.881000px;}
._2a{width:77.922000px;}
._29{width:83.211120px;}
._28{width:86.670000px;}
._27{width:87.858000px;}
._26{width:93.852000px;}
._41{width:95.310000px;}
._19{width:98.699400px;}
._2f{width:111.786000px;}
._3b{width:119.832000px;}
._2e{width:121.074000px;}
._2d{width:122.262000px;}
._3a{width:126.312000px;}
._2c{width:128.256000px;}
._46{width:150.390000px;}
._52{width:152.653200px;}
._16{width:164.160000px;}
._1b{width:172.166400px;}
._14{width:176.958000px;}
._1d{width:187.390800px;}
._1a{width:196.980000px;}
._51{width:221.716800px;}
._3d{width:306.612000px;}
._44{width:309.912000px;}
._4c{width:337.131120px;}
._4d{width:360.510000px;}
._e{width:502.734240px;}
._10{width:506.700000px;}
._3e{width:557.712000px;}
._43{width:667.230000px;}
._49{width:677.646000px;}
._4a{width:757.902000px;}
._48{width:811.566000px;}
._4b{width:853.196078px;}
._d{width:918.699120px;}
._11{width:919.890000px;}
._c{width:1046.139120px;}
._4{width:1063.188000px;}
._13{width:1068.012000px;}
._f{width:1076.550000px;}
._3f{width:1174.344000px;}
._12{width:1247.238000px;}
._3c{width:1252.584000px;}
._40{width:1257.402000px;}
._42{width:1499.700000px;}
._45{width:1586.796000px;}
.fc5{color:transparent;}
.fc4{color:rgb(29,29,27);}
.fc3{color:rgb(216,51,100);}
.fc1{color:rgb(207,0,61);}
.fc2{color:rgb(87,87,86);}
.fc0{color:rgb(60,60,59);}
.fsa{font-size:27.984000px;}
.fs5{font-size:33.940800px;}
.fs3{font-size:34.280400px;}
.fs9{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:58.218000px;}
.fs2{font-size:58.800000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:100.990200px;}
.y0{bottom:0.000000px;}
.y1{bottom:49.274850px;}
.y266{bottom:73.972500px;}
.yea{bottom:74.409750px;}
.y71{bottom:74.419200px;}
.y1e6{bottom:74.428950px;}
.y120{bottom:74.440500px;}
.y1a6{bottom:74.474250px;}
.yb1{bottom:74.562600px;}
.y224{bottom:74.637000px;}
.y148{bottom:76.195350px;}
.y184{bottom:77.820900px;}
.y26{bottom:83.364450px;}
.y265{bottom:90.524700px;}
.y1a5{bottom:90.967650px;}
.y1e5{bottom:91.054650px;}
.y70{bottom:91.089000px;}
.y223{bottom:91.174500px;}
.yb0{bottom:91.276500px;}
.y11f{bottom:91.374900px;}
.ye9{bottom:91.905750px;}
.y183{bottom:94.314300px;}
.y147{bottom:96.951750px;}
.y25{bottom:99.814623px;}
.y264{bottom:107.076900px;}
.y1a4{bottom:107.461050px;}
.y1e4{bottom:107.680350px;}
.y222{bottom:107.712000px;}
.y6f{bottom:107.758800px;}
.yaf{bottom:107.990400px;}
.y11e{bottom:108.309300px;}
.y182{bottom:110.807700px;}
.y24{bottom:116.319426px;}
.y146{bottom:117.708150px;}
.y263{bottom:123.629100px;}
.y221{bottom:124.249500px;}
.y1e3{bottom:124.306050px;}
.y6e{bottom:124.428600px;}
.yae{bottom:124.704300px;}
.y11d{bottom:125.243700px;}
.y181{bottom:127.301100px;}
.ye8{bottom:132.209100px;}
.y1a3{bottom:132.461250px;}
.y23{bottom:132.824229px;}
.y262{bottom:140.181300px;}
.y220{bottom:140.787000px;}
.y1e2{bottom:140.931750px;}
.y6d{bottom:141.098400px;}
.yad{bottom:141.418200px;}
.y11c{bottom:142.178100px;}
.y145{bottom:142.712850px;}
.y180{bottom:143.794500px;}
.ye7{bottom:148.715700px;}
.y22{bottom:149.329032px;}
.y1a2{bottom:153.213300px;}
.y261{bottom:156.733500px;}
.y21f{bottom:157.324500px;}
.y1e1{bottom:157.557450px;}
.y6c{bottom:157.768200px;}
.yac{bottom:158.132100px;}
.y11b{bottom:159.112500px;}
.y144{bottom:159.206250px;}
.y17f{bottom:160.287900px;}
.ye6{bottom:165.209100px;}
.y21{bottom:165.833835px;}
.y260{bottom:173.285700px;}
.y21e{bottom:173.862000px;}
.y1a1{bottom:174.104550px;}
.y1e0{bottom:174.183150px;}
.yab{bottom:174.846000px;}
.y143{bottom:175.699650px;}
.y17e{bottom:176.781300px;}
.ye5{bottom:181.742100px;}
.y20{bottom:182.338638px;}
.y11a{bottom:188.562900px;}
.y25f{bottom:189.837900px;}
.y6b{bottom:190.074900px;}
.y21d{bottom:190.399500px;}
.yaa{bottom:191.559900px;}
.y17d{bottom:193.274700px;}
.y1df{bottom:195.064200px;}
.ye4{bottom:198.235500px;}
.y1f{bottom:198.843441px;}
.y1a0{bottom:199.109250px;}
.y142{bottom:200.704350px;}
.y25e{bottom:206.390100px;}
.y21c{bottom:206.937000px;}
.ya9{bottom:208.273800px;}
.y6a{bottom:208.832400px;}
.y17c{bottom:209.768100px;}
.y119{bottom:209.825400px;}
.ye3{bottom:214.728900px;}
.y1e{bottom:215.348244px;}
.y19f{bottom:215.602650px;}
.y141{bottom:221.460750px;}
.y25d{bottom:222.942300px;}
.y21b{bottom:223.474500px;}
.ya8{bottom:224.987700px;}
.y17b{bottom:226.261500px;}
.y1de{bottom:229.730250px;}
.y69{bottom:230.094900px;}
.y118{bottom:231.087900px;}
.ye2{bottom:231.222300px;}
.y1d{bottom:231.853047px;}
.y19e{bottom:232.096050px;}
.y25c{bottom:239.494500px;}
.y21a{bottom:240.012000px;}
.ya7{bottom:241.701600px;}
.y140{bottom:242.217150px;}
.y17a{bottom:242.754900px;}
.y1dd{bottom:246.355950px;}
.ye1{bottom:247.715700px;}
.y1c{bottom:248.357850px;}
.y19d{bottom:248.589450px;}
.y68{bottom:249.048900px;}
.y117{bottom:252.350400px;}
.y25b{bottom:256.046700px;}
.y219{bottom:256.549500px;}
.ya6{bottom:258.415500px;}
.y179{bottom:259.248300px;}
.y67{bottom:262.548900px;}
.y13f{bottom:262.973550px;}
.y1dc{bottom:262.981650px;}
.ye0{bottom:264.209100px;}
.y19c{bottom:265.082850px;}
.y66{bottom:268.002900px;}
.y1b{bottom:269.115000px;}
.y25a{bottom:272.598900px;}
.y218{bottom:273.087000px;}
.y116{bottom:273.612900px;}
.ya5{bottom:275.129400px;}
.y178{bottom:275.741700px;}
.y1db{bottom:279.607350px;}
.ydf{bottom:280.709100px;}
.y65{bottom:281.502900px;}
.y19b{bottom:281.576250px;}
.y13e{bottom:283.729950px;}
.y259{bottom:289.151100px;}
.y217{bottom:289.624500px;}
.ya4{bottom:291.843300px;}
.y177{bottom:292.235100px;}
.y115{bottom:294.875400px;}
.y64{bottom:295.002900px;}
.y1da{bottom:296.233050px;}
.yde{bottom:297.209100px;}
.y19a{bottom:298.069650px;}
.y1a{bottom:303.468000px;}
.y13d{bottom:304.486350px;}
.y258{bottom:305.703300px;}
.y216{bottom:306.162000px;}
.y63{bottom:308.502900px;}
.ya3{bottom:308.557200px;}
.y176{bottom:308.728500px;}
.y1d9{bottom:312.858750px;}
.ydd{bottom:313.728900px;}
.y199{bottom:314.563050px;}
.y114{bottom:316.137900px;}
.y62{bottom:322.002900px;}
.y257{bottom:322.255500px;}
.y215{bottom:322.699500px;}
.y175{bottom:325.221900px;}
.y13c{bottom:325.242750px;}
.ya2{bottom:325.271100px;}
.y1d8{bottom:329.484450px;}
.ydc{bottom:330.222300px;}
.y198{bottom:331.056450px;}
.y113{bottom:337.400400px;}
.y19{bottom:337.839402px;}
.y256{bottom:338.807700px;}
.y214{bottom:339.237000px;}
.y174{bottom:341.715300px;}
.ya1{bottom:341.985000px;}
.y61{bottom:343.265400px;}
.y1d7{bottom:346.110150px;}
.ydb{bottom:346.715700px;}
.y197{bottom:347.549850px;}
.y18{bottom:354.169551px;}
.y255{bottom:355.359900px;}
.y213{bottom:355.774500px;}
.y173{bottom:358.208700px;}
.y112{bottom:358.662900px;}
.ya0{bottom:358.698900px;}
.y60{bottom:362.219400px;}
.y1d6{bottom:362.735850px;}
.yda{bottom:363.209100px;}
.y196{bottom:364.043250px;}
.y17{bottom:370.505988px;}
.y254{bottom:371.912100px;}
.y212{bottom:372.312000px;}
.y172{bottom:374.702100px;}
.y9f{bottom:375.412800px;}
.y5f{bottom:375.719400px;}
.y1d5{bottom:379.361550px;}
.y111{bottom:379.925400px;}
.y195{bottom:380.536650px;}
.yd9{bottom:383.961150px;}
.y253{bottom:388.464300px;}
.y211{bottom:388.849500px;}
.y5e{bottom:389.219400px;}
.y171{bottom:391.195500px;}
.y9e{bottom:392.126700px;}
.y1d4{bottom:395.987250px;}
.y194{bottom:397.030050px;}
.y110{bottom:401.187900px;}
.y5d{bottom:402.719400px;}
.y252{bottom:405.016500px;}
.y210{bottom:405.387000px;}
.y9d{bottom:408.840600px;}
.y1d3{bottom:412.612950px;}
.y193{bottom:413.523450px;}
.y5c{bottom:416.219400px;}
.yd8{bottom:418.339050px;}
.y170{bottom:420.455400px;}
.y16{bottom:420.515250px;}
.y251{bottom:421.568700px;}
.y20f{bottom:421.924500px;}
.y9c{bottom:425.554500px;}
.y1d2{bottom:429.238650px;}
.y5b{bottom:429.719400px;}
.y192{bottom:430.016850px;}
.y10f{bottom:432.361800px;}
.yd7{bottom:434.832450px;}
.y15{bottom:436.862017px;}
.y250{bottom:438.120900px;}
.y16f{bottom:438.203400px;}
.y20e{bottom:438.462000px;}
.y9b{bottom:442.268400px;}
.y5a{bottom:443.219400px;}
.y1d1{bottom:445.864350px;}
.y191{bottom:446.510250px;}
.yd6{bottom:451.325850px;}
.y14{bottom:453.192166px;}
.y24f{bottom:454.673100px;}
.y20d{bottom:454.999500px;}
.y59{bottom:456.719400px;}
.y16e{bottom:458.826450px;}
.y9a{bottom:458.982300px;}
.y10e{bottom:459.070650px;}
.y1d0{bottom:462.490050px;}
.y190{bottom:463.003650px;}
.yd5{bottom:467.819250px;}
.y58{bottom:470.219400px;}
.y24e{bottom:471.225300px;}
.y20c{bottom:471.537000px;}
.y16d{bottom:472.326450px;}
.y99{bottom:475.696200px;}
.y10d{bottom:476.005050px;}
.y1cf{bottom:479.115750px;}
.y18f{bottom:479.497050px;}
.y57{bottom:483.719400px;}
.y24d{bottom:487.777500px;}
.y20b{bottom:488.074500px;}
.yd4{bottom:488.571300px;}
.y28b{bottom:490.188300px;}
.y16c{bottom:491.280450px;}
.y98{bottom:492.410100px;}
.y10c{bottom:492.939450px;}
.y1ce{bottom:495.741450px;}
.y18e{bottom:495.990450px;}
.y13{bottom:499.228050px;}
.y24c{bottom:504.329700px;}
.y20a{bottom:504.612000px;}
.y16b{bottom:504.780450px;}
.y56{bottom:504.981900px;}
.y28a{bottom:506.681700px;}
.y97{bottom:509.124000px;}
.y1cd{bottom:512.367150px;}
.y18d{bottom:512.483850px;}
.y12{bottom:515.643900px;}
.y16a{bottom:518.280450px;}
.y24b{bottom:520.881900px;}
.y209{bottom:521.149500px;}
.yd3{bottom:523.001400px;}
.y289{bottom:523.175100px;}
.y96{bottom:525.837900px;}
.y55{bottom:526.244400px;}
.y10b{bottom:526.728150px;}
.y10a{bottom:527.767650px;}
.y18c{bottom:528.977250px;}
.y1cc{bottom:528.992850px;}
.y11{bottom:532.137300px;}
.y24a{bottom:537.434100px;}
.y208{bottom:537.687000px;}
.y169{bottom:538.381950px;}
.yd2{bottom:539.494800px;}
.y288{bottom:539.668500px;}
.y95{bottom:542.551800px;}
.y18b{bottom:545.470650px;}
.y1cb{bottom:545.618550px;}
.y54{bottom:547.506900px;}
.y10{bottom:548.630700px;}
.y109{bottom:549.030150px;}
.y249{bottom:553.986300px;}
.y207{bottom:554.224500px;}
.yd1{bottom:555.988200px;}
.y287{bottom:556.161900px;}
.y94{bottom:559.265700px;}
.y168{bottom:559.644450px;}
.y1ca{bottom:562.244250px;}
.yf{bottom:565.124100px;}
.y53{bottom:568.769400px;}
.y108{bottom:570.292650px;}
.y18a{bottom:570.475350px;}
.y248{bottom:570.538500px;}
.y206{bottom:570.762000px;}
.y286{bottom:572.655300px;}
.y93{bottom:575.979600px;}
.yd0{bottom:576.744600px;}
.y1c9{bottom:578.869950px;}
.y167{bottom:580.906950px;}
.ye{bottom:581.617500px;}
.y189{bottom:586.968750px;}
.y247{bottom:587.090700px;}
.y205{bottom:587.299500px;}
.y285{bottom:589.148700px;}
.y52{bottom:590.031900px;}
.y107{bottom:591.555150px;}
.y92{bottom:592.693500px;}
.ycf{bottom:593.238000px;}
.y1c8{bottom:595.495650px;}
.yd{bottom:598.110900px;}
.y166{bottom:602.169450px;}
.y246{bottom:603.642900px;}
.y204{bottom:603.837000px;}
.y284{bottom:605.642100px;}
.y188{bottom:607.725150px;}
.y91{bottom:609.407400px;}
.yce{bottom:609.731400px;}
.y51{bottom:611.294400px;}
.y1c7{bottom:612.121350px;}
.y106{bottom:612.817650px;}
.yc{bottom:614.604300px;}
.y245{bottom:620.195100px;}
.y203{bottom:620.374500px;}
.y283{bottom:622.135500px;}
.y165{bottom:623.431950px;}
.y90{bottom:626.121300px;}
.y187{bottom:628.481550px;}
.y1c6{bottom:628.747050px;}
.ycd{bottom:630.487800px;}
.yb{bottom:631.097700px;}
.y50{bottom:632.556900px;}
.y105{bottom:634.080150px;}
.y244{bottom:636.747300px;}
.y202{bottom:636.912000px;}
.y282{bottom:638.628900px;}
.y8f{bottom:642.835200px;}
.y164{bottom:644.694450px;}
.y1c5{bottom:645.372750px;}
.ycc{bottom:646.981200px;}
.ya{bottom:647.591100px;}
.y243{bottom:653.299500px;}
.y201{bottom:653.449500px;}
.y4f{bottom:653.819400px;}
.y281{bottom:655.122300px;}
.y104{bottom:655.342650px;}
.y8e{bottom:659.549100px;}
.y1c4{bottom:661.998450px;}
.ycb{bottom:663.474600px;}
.y9{bottom:664.084500px;}
.y163{bottom:665.956950px;}
.y242{bottom:669.851700px;}
.y200{bottom:669.987000px;}
.y280{bottom:671.615700px;}
.y4e{bottom:675.081900px;}
.y8d{bottom:676.263000px;}
.y103{bottom:676.605150px;}
.y1c3{bottom:678.624150px;}
.yca{bottom:679.968000px;}
.y8{bottom:680.577900px;}
.y162{bottom:686.058450px;}
.y241{bottom:686.403900px;}
.y1ff{bottom:686.524500px;}
.y27f{bottom:688.109100px;}
.y13b{bottom:691.910400px;}
.y15f{bottom:692.808450px;}
.y8c{bottom:692.976900px;}
.y1c2{bottom:695.249850px;}
.y4d{bottom:696.344400px;}
.y7{bottom:697.071300px;}
.y102{bottom:697.867650px;}
.y161{bottom:699.558450px;}
.yc9{bottom:700.724400px;}
.y240{bottom:702.956100px;}
.y1fe{bottom:703.062000px;}
.y27e{bottom:704.602500px;}
.y15e{bottom:706.308450px;}
.y8b{bottom:709.690800px;}
.y13a{bottom:709.708650px;}
.y1c1{bottom:711.875550px;}
.y160{bottom:713.058450px;}
.y6{bottom:713.564700px;}
.yc8{bottom:717.217800px;}
.y4c{bottom:717.606900px;}
.y101{bottom:719.130150px;}
.y23f{bottom:719.508300px;}
.y1fd{bottom:719.599500px;}
.y27d{bottom:721.095900px;}
.y139{bottom:726.202050px;}
.y8a{bottom:726.404700px;}
.y1c0{bottom:728.501250px;}
.yc7{bottom:733.711200px;}
.y23e{bottom:736.060500px;}
.y1fc{bottom:736.137000px;}
.y27c{bottom:737.589300px;}
.y5{bottom:738.568650px;}
.y4b{bottom:738.869400px;}
.y100{bottom:740.392650px;}
.y15d{bottom:742.638150px;}
.y138{bottom:742.695450px;}
.y89{bottom:743.118600px;}
.y1bf{bottom:745.126950px;}
.yc6{bottom:750.204600px;}
.y23d{bottom:752.612700px;}
.y27b{bottom:754.082700px;}
.y1fb{bottom:756.932100px;}
.y137{bottom:759.188850px;}
.y88{bottom:759.832500px;}
.y4a{bottom:760.131900px;}
.yff{bottom:761.655150px;}
.y1be{bottom:761.752650px;}
.yc5{bottom:766.698000px;}
.y15c{bottom:768.917400px;}
.y23c{bottom:769.164900px;}
.y27a{bottom:770.576100px;}
.y136{bottom:775.682250px;}
.y87{bottom:776.546400px;}
.y1bd{bottom:778.378350px;}
.yfe{bottom:782.917650px;}
.yc4{bottom:783.191400px;}
.y15b{bottom:785.410800px;}
.y23b{bottom:785.717100px;}
.y279{bottom:787.069500px;}
.y31{bottom:789.840900px;}
.y49{bottom:789.883350px;}
.y1fa{bottom:791.339250px;}
.y135{bottom:792.175650px;}
.y86{bottom:793.260300px;}
.y1bc{bottom:795.004050px;}
.y15a{bottom:801.904200px;}
.y23a{bottom:802.269300px;}
.y278{bottom:803.562900px;}
.y30{bottom:804.084900px;}
.yfd{bottom:804.180150px;}
.y1f9{bottom:807.876750px;}
.yc3{bottom:808.196100px;}
.y134{bottom:808.669050px;}
.y85{bottom:809.974200px;}
.y1bb{bottom:811.629750px;}
.y48{bottom:816.351900px;}
.y159{bottom:818.397600px;}
.y239{bottom:818.821500px;}
.y277{bottom:820.056300px;}
.y2f{bottom:822.592800px;}
.yc2{bottom:824.689500px;}
.y133{bottom:825.162450px;}
.yfc{bottom:825.442650px;}
.y84{bottom:826.688100px;}
.y1ba{bottom:828.255450px;}
.y1f8{bottom:828.671850px;}
.y47{bottom:833.021700px;}
.y158{bottom:834.891000px;}
.y238{bottom:835.373700px;}
.y276{bottom:836.549700px;}
.y2e{bottom:836.836800px;}
.y83{bottom:843.402000px;}
.y1b9{bottom:844.881150px;}
.yc1{bottom:845.441400px;}
.y132{bottom:845.914350px;}
.yfb{bottom:846.705150px;}
.y46{bottom:849.691500px;}
.y157{bottom:851.384400px;}
.y237{bottom:851.925900px;}
.y275{bottom:853.043100px;}
.y2d{bottom:855.344850px;}
.y82{bottom:860.115900px;}
.y1b8{bottom:861.506850px;}
.y1f7{bottom:863.090400px;}
.yfa{bottom:865.659150px;}
.y45{bottom:866.361300px;}
.y236{bottom:868.478100px;}
.y274{bottom:869.536500px;}
.y2c{bottom:869.588850px;}
.y156{bottom:876.389100px;}
.y1b7{bottom:878.132550px;}
.yf9{bottom:879.159150px;}
.y1f6{bottom:879.627900px;}
.yc0{bottom:879.832650px;}
.y131{bottom:880.378200px;}
.y81{bottom:881.085000px;}
.y44{bottom:883.031100px;}
.y235{bottom:885.030300px;}
.y273{bottom:886.029900px;}
.y2b{bottom:888.096750px;}
.y155{bottom:892.882500px;}
.y1b6{bottom:894.758250px;}
.y1f5{bottom:896.165400px;}
.ybf{bottom:896.326050px;}
.y130{bottom:896.871600px;}
.y43{bottom:899.700900px;}
.yf8{bottom:900.421650px;}
.y234{bottom:901.582500px;}
.y2a{bottom:902.340750px;}
.y272{bottom:902.523300px;}
.y1b5{bottom:911.383950px;}
.y1f4{bottom:912.702900px;}
.ybe{bottom:912.819450px;}
.y12f{bottom:913.365000px;}
.y154{bottom:913.638900px;}
.y80{bottom:915.709200px;}
.y42{bottom:916.370700px;}
.y233{bottom:918.134700px;}
.y271{bottom:919.016700px;}
.yf7{bottom:921.684150px;}
.y1b4{bottom:928.009650px;}
.ybd{bottom:929.312850px;}
.y12e{bottom:929.858400px;}
.y153{bottom:930.132300px;}
.y7f{bottom:932.423100px;}
.y41{bottom:933.040500px;}
.y1f3{bottom:933.498000px;}
.y232{bottom:934.686900px;}
.y270{bottom:935.510100px;}
.yf6{bottom:942.946650px;}
.y1b3{bottom:944.635350px;}
.ybc{bottom:945.806250px;}
.y12d{bottom:946.351800px;}
.y7e{bottom:949.137000px;}
.y40{bottom:949.710300px;}
.y152{bottom:950.888700px;}
.y231{bottom:951.239100px;}
.y26f{bottom:952.003500px;}
.y4{bottom:957.828450px;}
.y1b2{bottom:961.261050px;}
.ybb{bottom:962.299650px;}
.y12c{bottom:962.845200px;}
.yf5{bottom:964.209150px;}
.y7d{bottom:965.850900px;}
.y3f{bottom:966.380100px;}
.y230{bottom:967.791300px;}
.y1f2{bottom:967.967700px;}
.y26e{bottom:968.496900px;}
.y151{bottom:971.645100px;}
.y1b1{bottom:977.886750px;}
.y12b{bottom:979.338600px;}
.y7c{bottom:982.564800px;}
.y3e{bottom:983.049900px;}
.yba{bottom:983.051550px;}
.y22f{bottom:984.343500px;}
.y1f1{bottom:984.505200px;}
.y3{bottom:984.828450px;}
.y26d{bottom:984.990300px;}
.yf4{bottom:985.471650px;}
.y150{bottom:992.401500px;}
.y1b0{bottom:994.512450px;}
.y12a{bottom:995.832000px;}
.y7b{bottom:999.278700px;}
.y3d{bottom:999.719700px;}
.y22e{bottom:1000.895700px;}
.y1f0{bottom:1001.042700px;}
.y26c{bottom:1001.483700px;}
.y1af{bottom:1011.138150px;}
.y2{bottom:1011.561150px;}
.y129{bottom:1012.325400px;}
.y14f{bottom:1013.184900px;}
.yf3{bottom:1015.491900px;}
.y7a{bottom:1015.992600px;}
.y3c{bottom:1016.389500px;}
.yb9{bottom:1017.433200px;}
.y22d{bottom:1017.447900px;}
.y1ef{bottom:1017.580200px;}
.y26b{bottom:1017.977100px;}
.y1ae{bottom:1027.763850px;}
.y128{bottom:1028.818800px;}
.y79{bottom:1032.706500px;}
.y3b{bottom:1033.059300px;}
.yb8{bottom:1033.926600px;}
.y14e{bottom:1033.941300px;}
.y22c{bottom:1034.000100px;}
.y1ee{bottom:1034.117700px;}
.y26a{bottom:1034.470500px;}
.yf2{bottom:1042.225650px;}
.y1ad{bottom:1044.389550px;}
.y127{bottom:1045.312200px;}
.y78{bottom:1049.420400px;}
.y3a{bottom:1049.729100px;}
.y22b{bottom:1050.552300px;}
.y1ed{bottom:1050.655200px;}
.y269{bottom:1050.963900px;}
.yb7{bottom:1054.683000px;}
.y14d{bottom:1058.946000px;}
.yf1{bottom:1059.160050px;}
.y1ac{bottom:1061.015250px;}
.y126{bottom:1061.805600px;}
.y77{bottom:1066.134300px;}
.y39{bottom:1066.398900px;}
.y22a{bottom:1067.104500px;}
.y1ec{bottom:1067.192700px;}
.y268{bottom:1067.457300px;}
.yb6{bottom:1071.176400px;}
.y14c{bottom:1075.439400px;}
.yf0{bottom:1076.094450px;}
.y1ab{bottom:1077.640950px;}
.y125{bottom:1078.299000px;}
.y186{bottom:1078.413750px;}
.y76{bottom:1082.848200px;}
.y38{bottom:1083.068700px;}
.y229{bottom:1083.656700px;}
.y1eb{bottom:1083.730200px;}
.y267{bottom:1083.950700px;}
.yb5{bottom:1091.932800px;}
.yef{bottom:1093.028850px;}
.y1aa{bottom:1094.266650px;}
.y124{bottom:1094.792400px;}
.y28{bottom:1099.275600px;}
.y75{bottom:1099.562100px;}
.y37{bottom:1099.738500px;}
.y228{bottom:1100.208900px;}
.y1ea{bottom:1100.267700px;}
.y185{bottom:1100.444100px;}
.y14b{bottom:1108.426200px;}
.yee{bottom:1109.963250px;}
.y1a9{bottom:1110.892350px;}
.y123{bottom:1111.285800px;}
.y27{bottom:1114.275450px;}
.y29{bottom:1115.204400px;}
.y74{bottom:1116.276000px;}
.y36{bottom:1116.408300px;}
.y227{bottom:1116.761100px;}
.y1e9{bottom:1116.805200px;}
.yb4{bottom:1116.937500px;}
.y14a{bottom:1124.919600px;}
.yed{bottom:1126.897650px;}
.y1a8{bottom:1127.518050px;}
.y122{bottom:1127.779200px;}
.y73{bottom:1132.989900px;}
.y35{bottom:1133.078100px;}
.y226{bottom:1133.313300px;}
.y1e8{bottom:1133.342700px;}
.yb3{bottom:1133.430900px;}
.y149{bottom:1141.413000px;}
.yec{bottom:1143.832050px;}
.y1a7{bottom:1144.143750px;}
.y121{bottom:1144.272600px;}
.y72{bottom:1149.703800px;}
.y34{bottom:1149.747900px;}
.y225{bottom:1149.865500px;}
.y1e7{bottom:1149.880200px;}
.yb2{bottom:1149.924300px;}
.yeb{bottom:1165.024500px;}
.y33{bottom:1166.417700px;}
.y32{bottom:1205.693550px;}
.hf{height:26.592000px;}
.h2{height:37.254000px;}
.hb{height:42.528000px;}
.ha{height:42.576000px;}
.hc{height:47.844000px;}
.hd{height:47.898000px;}
.h10{height:51.300000px;}
.h6{height:51.614214px;}
.h5{height:51.639366px;}
.h9{height:52.096800px;}
.h4{height:52.155600px;}
.h13{height:52.173000px;}
.h14{height:52.173600px;}
.h8{height:52.328508px;}
.he{height:56.107986px;}
.h7{height:58.476000px;}
.h12{height:74.844000px;}
.h3{height:89.477317px;}
.h11{height:101.844000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.x5{left:92.744550px;}
.xb{left:94.703400px;}
.x7{left:97.795350px;}
.x38{left:98.998350px;}
.x9{left:106.339350px;}
.x37{left:108.394350px;}
.x36{left:109.825350px;}
.x39{left:113.200350px;}
.x3b{left:114.806850px;}
.x12{left:139.032450px;}
.xd{left:148.703400px;}
.x1a{left:153.168600px;}
.x18{left:154.667100px;}
.x19{left:156.165600px;}
.x16{left:157.286100px;}
.x15{left:158.784600px;}
.x14{left:161.147100px;}
.x2b{left:188.476350px;}
.x2a{left:190.366350px;}
.x10{left:193.040250px;}
.x11{left:196.524150px;}
.x17{left:222.936600px;}
.x2{left:231.413250px;}
.xa{left:241.211550px;}
.x2c{left:244.015350px;}
.x24{left:260.599050px;}
.x27{left:263.434050px;}
.x26{left:266.066550px;}
.x25{left:267.565050px;}
.x3{left:290.593650px;}
.x23{left:293.476950px;}
.x8{left:296.446650px;}
.x3a{left:320.554650px;}
.x13{left:331.132350px;}
.x28{left:338.500350px;}
.x29{left:341.152050px;}
.x2d{left:358.157850px;}
.x2e{left:481.763850px;}
.x1b{left:515.896050px;}
.x1c{left:529.389448px;}
.xc{left:530.861400px;}
.x1d{left:532.588948px;}
.x2f{left:543.566850px;}
.x1e{left:546.082346px;}
.x1f{left:549.281846px;}
.x20{left:562.775244px;}
.x21{left:565.974744px;}
.x22{left:579.468142px;}
.x30{left:605.369850px;}
.xe{left:610.663950px;}
.x31{left:654.050850px;}
.x32{left:668.347350px;}
.x6{left:722.277750px;}
.x35{left:734.146350px;}
.x33{left:736.454850px;}
.x34{left:757.096350px;}
.xf{left:790.129350px;}
.x1{left:792.218850px;}
@media print{
.v2{vertical-align:-17.232533pt;}
.v4{vertical-align:-14.208000pt;}
.v5{vertical-align:-3.696000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.404800pt;}
.v3{vertical-align:19.536000pt;}
.v7{vertical-align:24.000000pt;}
.v6{vertical-align:48.000000pt;}
.lsd{letter-spacing:-3.733333pt;}
.ls11{letter-spacing:-2.090667pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls12{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.864000pt;}
.ls14{letter-spacing:-0.522667pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.261333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000085pt;}
.lse{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.522667pt;}
.ls7{letter-spacing:0.864000pt;}
.ls2{letter-spacing:1.034987pt;}
.ls3{letter-spacing:1.045333pt;}
.ls16{letter-spacing:1.568000pt;}
.ls1{letter-spacing:4.002338pt;}
.ls4{letter-spacing:5.120000pt;}
.ls0{letter-spacing:9.626262pt;}
.lsc{letter-spacing:56.320000pt;}
.ls10{letter-spacing:61.892267pt;}
.ws3{word-spacing:-15.232000pt;}
.ws103{word-spacing:-13.432533pt;}
.wsec{word-spacing:-13.066667pt;}
.wseb{word-spacing:-12.613333pt;}
.ws102{word-spacing:-12.544000pt;}
.ws6a{word-spacing:-12.387200pt;}
.ws93{word-spacing:-12.125867pt;}
.wsed{word-spacing:-11.864533pt;}
.wsc5{word-spacing:-11.498667pt;}
.ws24{word-spacing:-11.424000pt;}
.ws38{word-spacing:-11.376000pt;}
.ws1{word-spacing:-11.237333pt;}
.ws2{word-spacing:-11.126107pt;}
.wsc4{word-spacing:-10.976000pt;}
.ws21{word-spacing:-10.560000pt;}
.wsa5{word-spacing:-10.320000pt;}
.ws23{word-spacing:-10.080000pt;}
.ws25{word-spacing:-9.696000pt;}
.wsa0{word-spacing:-9.408000pt;}
.wsa3{word-spacing:-9.360000pt;}
.wsa1{word-spacing:-9.168000pt;}
.ws0{word-spacing:-8.848000pt;}
.ws22{word-spacing:-8.640000pt;}
.ws11c{word-spacing:-7.265067pt;}
.ws11b{word-spacing:-6.742400pt;}
.ws6b{word-spacing:-5.895296pt;}
.ws18{word-spacing:-5.485429pt;}
.ws69{word-spacing:-5.114667pt;}
.ws101{word-spacing:-4.494933pt;}
.wsea{word-spacing:-4.442667pt;}
.wsf3{word-spacing:-4.390400pt;}
.ws106{word-spacing:-4.285867pt;}
.wsd4{word-spacing:-4.181333pt;}
.ws11d{word-spacing:-4.129067pt;}
.ws11e{word-spacing:-3.815467pt;}
.ws4b{word-spacing:-3.606400pt;}
.ws3a{word-spacing:-3.449600pt;}
.ws61{word-spacing:-3.083733pt;}
.wsd6{word-spacing:-2.979200pt;}
.wse4{word-spacing:-2.874667pt;}
.ws115{word-spacing:-2.822400pt;}
.ws70{word-spacing:-2.770133pt;}
.ws2a{word-spacing:-2.665600pt;}
.ws90{word-spacing:-2.613333pt;}
.ws94{word-spacing:-2.352000pt;}
.wsfa{word-spacing:-2.299733pt;}
.ws5c{word-spacing:-2.247467pt;}
.ws7f{word-spacing:-2.142933pt;}
.wsbd{word-spacing:-2.090667pt;}
.ws3d{word-spacing:-2.038400pt;}
.ws62{word-spacing:-1.986133pt;}
.ws9e{word-spacing:-1.933867pt;}
.wscc{word-spacing:-1.881600pt;}
.ws71{word-spacing:-1.829333pt;}
.ws29{word-spacing:-1.777067pt;}
.ws42{word-spacing:-1.724800pt;}
.wsf1{word-spacing:-1.672533pt;}
.wsf8{word-spacing:-1.620267pt;}
.ws9c{word-spacing:-1.568000pt;}
.ws1a{word-spacing:-1.552480pt;}
.wsd2{word-spacing:-1.515733pt;}
.ws7d{word-spacing:-1.463467pt;}
.ws20{word-spacing:-1.358933pt;}
.ws7c{word-spacing:-1.306667pt;}
.ws81{word-spacing:-1.254400pt;}
.ws1b{word-spacing:-1.138485pt;}
.ws58{word-spacing:-1.097600pt;}
.ws1d{word-spacing:-1.086736pt;}
.ws4f{word-spacing:-1.045333pt;}
.wscd{word-spacing:-0.993067pt;}
.wsdf{word-spacing:-0.940800pt;}
.wsb5{word-spacing:-0.888533pt;}
.ws47{word-spacing:-0.731733pt;}
.wse5{word-spacing:-0.679467pt;}
.wsb3{word-spacing:-0.627200pt;}
.wsb8{word-spacing:-0.624000pt;}
.ws34{word-spacing:-0.574933pt;}
.ws82{word-spacing:-0.522667pt;}
.ws96{word-spacing:-0.470400pt;}
.wsde{word-spacing:-0.418133pt;}
.ws31{word-spacing:-0.365867pt;}
.ws99{word-spacing:-0.313600pt;}
.ws113{word-spacing:-0.261333pt;}
.ws8c{word-spacing:-0.209067pt;}
.ws3b{word-spacing:-0.156800pt;}
.wse6{word-spacing:-0.104533pt;}
.wsef{word-spacing:-0.052267pt;}
.ws4{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.104533pt;}
.ws92{word-spacing:0.156800pt;}
.ws19{word-spacing:0.206997pt;}
.ws98{word-spacing:0.209067pt;}
.ws11a{word-spacing:0.261333pt;}
.wsce{word-spacing:0.313600pt;}
.ws4d{word-spacing:0.365867pt;}
.wse3{word-spacing:0.470400pt;}
.ws2b{word-spacing:0.522667pt;}
.ws41{word-spacing:0.574933pt;}
.ws44{word-spacing:0.627200pt;}
.ws48{word-spacing:0.679467pt;}
.wsca{word-spacing:0.731733pt;}
.wsf{word-spacing:0.784000pt;}
.wsd9{word-spacing:0.836267pt;}
.ws1c{word-spacing:0.879739pt;}
.ws56{word-spacing:0.888533pt;}
.wsf0{word-spacing:0.940800pt;}
.wsb0{word-spacing:0.993067pt;}
.wsb1{word-spacing:1.045333pt;}
.ws40{word-spacing:1.097600pt;}
.ws17{word-spacing:1.138485pt;}
.ws6{word-spacing:1.149867pt;}
.wsc2{word-spacing:1.202133pt;}
.wsae{word-spacing:1.306667pt;}
.wsc3{word-spacing:1.358933pt;}
.wsc7{word-spacing:1.411200pt;}
.ws8b{word-spacing:1.463467pt;}
.ws45{word-spacing:1.515733pt;}
.wsd{word-spacing:1.568000pt;}
.ws78{word-spacing:1.620267pt;}
.ws83{word-spacing:1.672533pt;}
.ws53{word-spacing:1.724800pt;}
.ws4c{word-spacing:1.777067pt;}
.ws43{word-spacing:1.829333pt;}
.ws8f{word-spacing:1.881600pt;}
.wse{word-spacing:1.933867pt;}
.wsc6{word-spacing:1.986133pt;}
.ws2f{word-spacing:2.038400pt;}
.wsfd{word-spacing:2.090667pt;}
.ws64{word-spacing:2.142933pt;}
.ws7e{word-spacing:2.195200pt;}
.ws5b{word-spacing:2.247467pt;}
.ws50{word-spacing:2.299733pt;}
.ws36{word-spacing:2.352000pt;}
.ws9f{word-spacing:2.404267pt;}
.ws60{word-spacing:2.456533pt;}
.ws37{word-spacing:2.508800pt;}
.ws6c{word-spacing:2.561067pt;}
.ws51{word-spacing:2.613333pt;}
.ws7b{word-spacing:2.717867pt;}
.ws111{word-spacing:2.770133pt;}
.ws57{word-spacing:2.822400pt;}
.ws80{word-spacing:2.874667pt;}
.ws5e{word-spacing:2.926933pt;}
.ws55{word-spacing:2.979200pt;}
.ws84{word-spacing:2.986667pt;}
.ws110{word-spacing:3.031467pt;}
.ws114{word-spacing:3.083733pt;}
.wsf2{word-spacing:3.136000pt;}
.ws8e{word-spacing:3.188267pt;}
.wsc1{word-spacing:3.240533pt;}
.wse8{word-spacing:3.292800pt;}
.ws65{word-spacing:3.345067pt;}
.ws59{word-spacing:3.397333pt;}
.ws35{word-spacing:3.449600pt;}
.ws2c{word-spacing:3.501867pt;}
.wsc{word-spacing:3.554133pt;}
.ws15{word-spacing:3.570704pt;}
.ws7{word-spacing:3.710933pt;}
.ws66{word-spacing:3.763200pt;}
.ws2d{word-spacing:3.815467pt;}
.ws28{word-spacing:3.867733pt;}
.ws14{word-spacing:3.881200pt;}
.wsb{word-spacing:3.920000pt;}
.wsbe{word-spacing:3.972267pt;}
.wsb4{word-spacing:4.024533pt;}
.wsb9{word-spacing:4.076800pt;}
.wse2{word-spacing:4.285867pt;}
.ws72{word-spacing:4.338133pt;}
.wsd1{word-spacing:4.390400pt;}
.ws68{word-spacing:4.442667pt;}
.wsa{word-spacing:4.494933pt;}
.wsd8{word-spacing:4.547200pt;}
.ws6d{word-spacing:4.599467pt;}
.ws33{word-spacing:4.651733pt;}
.ws4e{word-spacing:4.756267pt;}
.ws4a{word-spacing:4.808533pt;}
.ws3c{word-spacing:4.860800pt;}
.wse9{word-spacing:4.965333pt;}
.ws63{word-spacing:5.017600pt;}
.ws8{word-spacing:5.174400pt;}
.ws5f{word-spacing:5.226667pt;}
.ws76{word-spacing:5.278933pt;}
.ws10{word-spacing:5.330181pt;}
.wsbb{word-spacing:5.331200pt;}
.ws1f{word-spacing:5.383467pt;}
.wscf{word-spacing:5.488000pt;}
.ws77{word-spacing:5.592533pt;}
.ws3e{word-spacing:5.697067pt;}
.wsfb{word-spacing:5.749333pt;}
.ws49{word-spacing:5.801600pt;}
.ws52{word-spacing:5.853867pt;}
.ws8a{word-spacing:5.906133pt;}
.ws30{word-spacing:5.958400pt;}
.ws10e{word-spacing:6.010667pt;}
.wsf9{word-spacing:6.062933pt;}
.ws9b{word-spacing:6.115200pt;}
.ws2e{word-spacing:6.167467pt;}
.ws12{word-spacing:6.209920pt;}
.wsb6{word-spacing:6.219733pt;}
.wscb{word-spacing:6.272000pt;}
.wsee{word-spacing:6.324267pt;}
.wsba{word-spacing:6.376533pt;}
.ws5a{word-spacing:6.481067pt;}
.ws122{word-spacing:6.533333pt;}
.ws26{word-spacing:6.585600pt;}
.ws3f{word-spacing:6.637867pt;}
.wsdb{word-spacing:6.690133pt;}
.ws10d{word-spacing:6.742400pt;}
.wsbc{word-spacing:6.846933pt;}
.ws13{word-spacing:6.882661pt;}
.ws9d{word-spacing:6.951467pt;}
.ws123{word-spacing:7.003733pt;}
.ws95{word-spacing:7.160533pt;}
.ws10c{word-spacing:7.265067pt;}
.ws100{word-spacing:7.369600pt;}
.wse0{word-spacing:7.474133pt;}
.wsd0{word-spacing:7.526400pt;}
.wsaa{word-spacing:7.578667pt;}
.ws104{word-spacing:7.630933pt;}
.wsab{word-spacing:7.683200pt;}
.wse7{word-spacing:7.735467pt;}
.ws1e{word-spacing:7.762400pt;}
.ws75{word-spacing:7.787733pt;}
.wsad{word-spacing:7.996800pt;}
.ws46{word-spacing:8.153600pt;}
.ws5d{word-spacing:8.205867pt;}
.ws9{word-spacing:8.310400pt;}
.wsc8{word-spacing:8.467200pt;}
.wsd7{word-spacing:8.571733pt;}
.wsda{word-spacing:8.728533pt;}
.ws7a{word-spacing:8.780800pt;}
.ws121{word-spacing:8.833067pt;}
.ws67{word-spacing:8.885333pt;}
.wsdc{word-spacing:8.937600pt;}
.ws117{word-spacing:9.042133pt;}
.wsc9{word-spacing:9.146667pt;}
.wsdd{word-spacing:9.408000pt;}
.ws120{word-spacing:9.512533pt;}
.ws107{word-spacing:9.617067pt;}
.ws73{word-spacing:9.669333pt;}
.ws116{word-spacing:9.721600pt;}
.ws10f{word-spacing:9.773867pt;}
.ws54{word-spacing:9.982933pt;}
.ws11f{word-spacing:10.139733pt;}
.ws97{word-spacing:10.296533pt;}
.ws105{word-spacing:10.401067pt;}
.wsf7{word-spacing:10.453333pt;}
.wsbf{word-spacing:10.505600pt;}
.wsf6{word-spacing:10.557867pt;}
.ws118{word-spacing:10.662400pt;}
.ws89{word-spacing:10.714667pt;}
.ws8d{word-spacing:10.766933pt;}
.ws10b{word-spacing:10.976000pt;}
.ws91{word-spacing:11.080533pt;}
.wsfc{word-spacing:11.289600pt;}
.wsf5{word-spacing:11.341867pt;}
.wse1{word-spacing:11.394133pt;}
.ws27{word-spacing:11.446400pt;}
.ws79{word-spacing:11.550933pt;}
.wsb7{word-spacing:11.760000pt;}
.ws6f{word-spacing:11.864533pt;}
.wsf4{word-spacing:12.753067pt;}
.ws109{word-spacing:12.857600pt;}
.ws10a{word-spacing:13.171200pt;}
.ws32{word-spacing:13.589333pt;}
.ws16{word-spacing:13.610075pt;}
.ws108{word-spacing:13.850667pt;}
.wsd3{word-spacing:14.164267pt;}
.ws74{word-spacing:14.321067pt;}
.ws11{word-spacing:14.386315pt;}
.wsff{word-spacing:14.582400pt;}
.ws88{word-spacing:15.052800pt;}
.ws112{word-spacing:15.627733pt;}
.wsfe{word-spacing:15.732267pt;}
.ws5{word-spacing:16.516267pt;}
.wsd5{word-spacing:16.620800pt;}
.ws119{word-spacing:19.077333pt;}
.wsac{word-spacing:19.861333pt;}
.wsc0{word-spacing:21.638400pt;}
.ws6e{word-spacing:22.840533pt;}
.wsb2{word-spacing:26.342400pt;}
.wsaf{word-spacing:32.248533pt;}
.wsa4{word-spacing:56.784000pt;}
.ws86{word-spacing:58.224000pt;}
.wsa9{word-spacing:77.520000pt;}
.wsa6{word-spacing:95.760000pt;}
.wsa2{word-spacing:98.832000pt;}
.ws39{word-spacing:145.920000pt;}
.wsa7{word-spacing:263.376000pt;}
.wsa8{word-spacing:267.504000pt;}
.ws87{word-spacing:526.464000pt;}
.ws85{word-spacing:906.048000pt;}
._0{margin-left:-2569.317333pt;}
._18{margin-left:-157.296000pt;}
._37{margin-left:-44.688000pt;}
._38{margin-left:-38.781867pt;}
._1c{margin-left:-35.227733pt;}
._1e{margin-left:-24.740267pt;}
._20{margin-left:-21.298667pt;}
._22{margin-left:-20.201067pt;}
._4e{margin-left:-12.387200pt;}
._17{margin-left:-11.376000pt;}
._24{margin-left:-10.165867pt;}
._57{margin-left:-8.576000pt;}
._b{margin-left:-7.266560pt;}
._6{margin-left:-6.186880pt;}
._7{margin-left:-4.414524pt;}
._3{margin-left:-3.360000pt;}
._15{margin-left:-2.400000pt;}
._1{margin-left:-1.493333pt;}
._5{width:1.106560pt;}
._2{width:2.211486pt;}
._56{width:3.470507pt;}
._8{width:4.407579pt;}
._55{width:5.938987pt;}
._54{width:7.208533pt;}
._9{width:11.221333pt;}
._53{width:15.396267pt;}
._50{width:16.725333pt;}
._33{width:24.460800pt;}
._36{width:26.394667pt;}
._35{width:28.171733pt;}
._a{width:35.684800pt;}
._34{width:38.668373pt;}
._31{width:45.628800pt;}
._30{width:47.405867pt;}
._32{width:51.430400pt;}
._25{width:54.540267pt;}
._1f{width:57.205867pt;}
._21{width:58.303467pt;}
._47{width:60.478524pt;}
._2b{width:63.408000pt;}
._39{width:64.857191pt;}
._4f{width:67.288533pt;}
._23{width:68.338667pt;}
._2a{width:69.264000pt;}
._29{width:73.965440pt;}
._28{width:77.040000pt;}
._27{width:78.096000pt;}
._26{width:83.424000pt;}
._41{width:84.720000pt;}
._19{width:87.732800pt;}
._2f{width:99.365333pt;}
._3b{width:106.517333pt;}
._2e{width:107.621333pt;}
._2d{width:108.677333pt;}
._3a{width:112.277333pt;}
._2c{width:114.005333pt;}
._46{width:133.680000pt;}
._52{width:135.691733pt;}
._16{width:145.920000pt;}
._1b{width:153.036800pt;}
._14{width:157.296000pt;}
._1d{width:166.569600pt;}
._1a{width:175.093333pt;}
._51{width:197.081600pt;}
._3d{width:272.544000pt;}
._44{width:275.477333pt;}
._4c{width:299.672107pt;}
._4d{width:320.453333pt;}
._e{width:446.874880pt;}
._10{width:450.400000pt;}
._3e{width:495.744000pt;}
._43{width:593.093333pt;}
._49{width:602.352000pt;}
._4a{width:673.690667pt;}
._48{width:721.392000pt;}
._4b{width:758.396514pt;}
._d{width:816.621440pt;}
._11{width:817.680000pt;}
._c{width:929.901440pt;}
._4{width:945.056000pt;}
._13{width:949.344000pt;}
._f{width:956.933333pt;}
._3f{width:1043.861333pt;}
._12{width:1108.656000pt;}
._3c{width:1113.408000pt;}
._40{width:1117.690667pt;}
._42{width:1333.066667pt;}
._45{width:1410.485333pt;}
.fsa{font-size:24.874667pt;}
.fs5{font-size:30.169600pt;}
.fs3{font-size:30.471467pt;}
.fs9{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:51.749333pt;}
.fs2{font-size:52.266667pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:89.769067pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:43.799867pt;}
.y266{bottom:65.753333pt;}
.yea{bottom:66.142000pt;}
.y71{bottom:66.150400pt;}
.y1e6{bottom:66.159067pt;}
.y120{bottom:66.169333pt;}
.y1a6{bottom:66.199333pt;}
.yb1{bottom:66.277867pt;}
.y224{bottom:66.344000pt;}
.y148{bottom:67.729200pt;}
.y184{bottom:69.174133pt;}
.y26{bottom:74.101733pt;}
.y265{bottom:80.466400pt;}
.y1a5{bottom:80.860133pt;}
.y1e5{bottom:80.937467pt;}
.y70{bottom:80.968000pt;}
.y223{bottom:81.044000pt;}
.yb0{bottom:81.134667pt;}
.y11f{bottom:81.222133pt;}
.ye9{bottom:81.694000pt;}
.y183{bottom:83.834933pt;}
.y147{bottom:86.179333pt;}
.y25{bottom:88.724109pt;}
.y264{bottom:95.179467pt;}
.y1a4{bottom:95.520933pt;}
.y1e4{bottom:95.715867pt;}
.y222{bottom:95.744000pt;}
.y6f{bottom:95.785600pt;}
.yaf{bottom:95.991467pt;}
.y11e{bottom:96.274933pt;}
.y182{bottom:98.495733pt;}
.y24{bottom:103.395045pt;}
.y146{bottom:104.629467pt;}
.y263{bottom:109.892533pt;}
.y221{bottom:110.444000pt;}
.y1e3{bottom:110.494267pt;}
.y6e{bottom:110.603200pt;}
.yae{bottom:110.848267pt;}
.y11d{bottom:111.327733pt;}
.y181{bottom:113.156533pt;}
.ye8{bottom:117.519200pt;}
.y1a3{bottom:117.743333pt;}
.y23{bottom:118.065981pt;}
.y262{bottom:124.605600pt;}
.y220{bottom:125.144000pt;}
.y1e2{bottom:125.272667pt;}
.y6d{bottom:125.420800pt;}
.yad{bottom:125.705067pt;}
.y11c{bottom:126.380533pt;}
.y145{bottom:126.855867pt;}
.y180{bottom:127.817333pt;}
.ye7{bottom:132.191733pt;}
.y22{bottom:132.736917pt;}
.y1a2{bottom:136.189600pt;}
.y261{bottom:139.318667pt;}
.y21f{bottom:139.844000pt;}
.y1e1{bottom:140.051067pt;}
.y6c{bottom:140.238400pt;}
.yac{bottom:140.561867pt;}
.y11b{bottom:141.433333pt;}
.y144{bottom:141.516667pt;}
.y17f{bottom:142.478133pt;}
.ye6{bottom:146.852533pt;}
.y21{bottom:147.407853pt;}
.y260{bottom:154.031733pt;}
.y21e{bottom:154.544000pt;}
.y1a1{bottom:154.759600pt;}
.y1e0{bottom:154.829467pt;}
.yab{bottom:155.418667pt;}
.y143{bottom:156.177467pt;}
.y17e{bottom:157.138933pt;}
.ye5{bottom:161.548533pt;}
.y20{bottom:162.078789pt;}
.y11a{bottom:167.611467pt;}
.y25f{bottom:168.744800pt;}
.y6b{bottom:168.955467pt;}
.y21d{bottom:169.244000pt;}
.yaa{bottom:170.275467pt;}
.y17d{bottom:171.799733pt;}
.y1df{bottom:173.390400pt;}
.ye4{bottom:176.209333pt;}
.y1f{bottom:176.749725pt;}
.y1a0{bottom:176.986000pt;}
.y142{bottom:178.403867pt;}
.y25e{bottom:183.457867pt;}
.y21c{bottom:183.944000pt;}
.ya9{bottom:185.132267pt;}
.y6a{bottom:185.628800pt;}
.y17c{bottom:186.460533pt;}
.y119{bottom:186.511467pt;}
.ye3{bottom:190.870133pt;}
.y1e{bottom:191.420661pt;}
.y19f{bottom:191.646800pt;}
.y141{bottom:196.854000pt;}
.y25d{bottom:198.170933pt;}
.y21b{bottom:198.644000pt;}
.ya8{bottom:199.989067pt;}
.y17b{bottom:201.121333pt;}
.y1de{bottom:204.204667pt;}
.y69{bottom:204.528800pt;}
.y118{bottom:205.411467pt;}
.ye2{bottom:205.530933pt;}
.y1d{bottom:206.091597pt;}
.y19e{bottom:206.307600pt;}
.y25c{bottom:212.884000pt;}
.y21a{bottom:213.344000pt;}
.ya7{bottom:214.845867pt;}
.y140{bottom:215.304133pt;}
.y17a{bottom:215.782133pt;}
.y1dd{bottom:218.983067pt;}
.ye1{bottom:220.191733pt;}
.y1c{bottom:220.762533pt;}
.y19d{bottom:220.968400pt;}
.y68{bottom:221.376800pt;}
.y117{bottom:224.311467pt;}
.y25b{bottom:227.597067pt;}
.y219{bottom:228.044000pt;}
.ya6{bottom:229.702667pt;}
.y179{bottom:230.442933pt;}
.y67{bottom:233.376800pt;}
.y13f{bottom:233.754267pt;}
.y1dc{bottom:233.761467pt;}
.ye0{bottom:234.852533pt;}
.y19c{bottom:235.629200pt;}
.y66{bottom:238.224800pt;}
.y1b{bottom:239.213333pt;}
.y25a{bottom:242.310133pt;}
.y218{bottom:242.744000pt;}
.y116{bottom:243.211467pt;}
.ya5{bottom:244.559467pt;}
.y178{bottom:245.103733pt;}
.y1db{bottom:248.539867pt;}
.ydf{bottom:249.519200pt;}
.y65{bottom:250.224800pt;}
.y19b{bottom:250.290000pt;}
.y13e{bottom:252.204400pt;}
.y259{bottom:257.023200pt;}
.y217{bottom:257.444000pt;}
.ya4{bottom:259.416267pt;}
.y177{bottom:259.764533pt;}
.y115{bottom:262.111467pt;}
.y64{bottom:262.224800pt;}
.y1da{bottom:263.318267pt;}
.yde{bottom:264.185867pt;}
.y19a{bottom:264.950800pt;}
.y1a{bottom:269.749333pt;}
.y13d{bottom:270.654533pt;}
.y258{bottom:271.736267pt;}
.y216{bottom:272.144000pt;}
.y63{bottom:274.224800pt;}
.ya3{bottom:274.273067pt;}
.y176{bottom:274.425333pt;}
.y1d9{bottom:278.096667pt;}
.ydd{bottom:278.870133pt;}
.y199{bottom:279.611600pt;}
.y114{bottom:281.011467pt;}
.y62{bottom:286.224800pt;}
.y257{bottom:286.449333pt;}
.y215{bottom:286.844000pt;}
.y175{bottom:289.086133pt;}
.y13c{bottom:289.104667pt;}
.ya2{bottom:289.129867pt;}
.y1d8{bottom:292.875067pt;}
.ydc{bottom:293.530933pt;}
.y198{bottom:294.272400pt;}
.y113{bottom:299.911467pt;}
.y19{bottom:300.301691pt;}
.y256{bottom:301.162400pt;}
.y214{bottom:301.544000pt;}
.y174{bottom:303.746933pt;}
.ya1{bottom:303.986667pt;}
.y61{bottom:305.124800pt;}
.y1d7{bottom:307.653467pt;}
.ydb{bottom:308.191733pt;}
.y197{bottom:308.933200pt;}
.y18{bottom:314.817379pt;}
.y255{bottom:315.875467pt;}
.y213{bottom:316.244000pt;}
.y173{bottom:318.407733pt;}
.y112{bottom:318.811467pt;}
.ya0{bottom:318.843467pt;}
.y60{bottom:321.972800pt;}
.y1d6{bottom:322.431867pt;}
.yda{bottom:322.852533pt;}
.y196{bottom:323.594000pt;}
.y17{bottom:329.338656pt;}
.y254{bottom:330.588533pt;}
.y212{bottom:330.944000pt;}
.y172{bottom:333.068533pt;}
.y9f{bottom:333.700267pt;}
.y5f{bottom:333.972800pt;}
.y1d5{bottom:337.210267pt;}
.y111{bottom:337.711467pt;}
.y195{bottom:338.254800pt;}
.yd9{bottom:341.298800pt;}
.y253{bottom:345.301600pt;}
.y211{bottom:345.644000pt;}
.y5e{bottom:345.972800pt;}
.y171{bottom:347.729333pt;}
.y9e{bottom:348.557067pt;}
.y1d4{bottom:351.988667pt;}
.y194{bottom:352.915600pt;}
.y110{bottom:356.611467pt;}
.y5d{bottom:357.972800pt;}
.y252{bottom:360.014667pt;}
.y210{bottom:360.344000pt;}
.y9d{bottom:363.413867pt;}
.y1d3{bottom:366.767067pt;}
.y193{bottom:367.576400pt;}
.y5c{bottom:369.972800pt;}
.yd8{bottom:371.856933pt;}
.y170{bottom:373.738133pt;}
.y16{bottom:373.791333pt;}
.y251{bottom:374.727733pt;}
.y20f{bottom:375.044000pt;}
.y9c{bottom:378.270667pt;}
.y1d2{bottom:381.545467pt;}
.y5b{bottom:381.972800pt;}
.y192{bottom:382.237200pt;}
.y10f{bottom:384.321600pt;}
.yd7{bottom:386.517733pt;}
.y15{bottom:388.321793pt;}
.y250{bottom:389.440800pt;}
.y16f{bottom:389.514133pt;}
.y20e{bottom:389.744000pt;}
.y9b{bottom:393.127467pt;}
.y5a{bottom:393.972800pt;}
.y1d1{bottom:396.323867pt;}
.y191{bottom:396.898000pt;}
.yd6{bottom:401.178533pt;}
.y14{bottom:402.837481pt;}
.y24f{bottom:404.153867pt;}
.y20d{bottom:404.444000pt;}
.y59{bottom:405.972800pt;}
.y16e{bottom:407.845733pt;}
.y9a{bottom:407.984267pt;}
.y10e{bottom:408.062800pt;}
.y1d0{bottom:411.102267pt;}
.y190{bottom:411.558800pt;}
.yd5{bottom:415.839333pt;}
.y58{bottom:417.972800pt;}
.y24e{bottom:418.866933pt;}
.y20c{bottom:419.144000pt;}
.y16d{bottom:419.845733pt;}
.y99{bottom:422.841067pt;}
.y10d{bottom:423.115600pt;}
.y1cf{bottom:425.880667pt;}
.y18f{bottom:426.219600pt;}
.y57{bottom:429.972800pt;}
.y24d{bottom:433.580000pt;}
.y20b{bottom:433.844000pt;}
.yd4{bottom:434.285600pt;}
.y28b{bottom:435.722933pt;}
.y16c{bottom:436.693733pt;}
.y98{bottom:437.697867pt;}
.y10c{bottom:438.168400pt;}
.y1ce{bottom:440.659067pt;}
.y18e{bottom:440.880400pt;}
.y13{bottom:443.758267pt;}
.y24c{bottom:448.293067pt;}
.y20a{bottom:448.544000pt;}
.y16b{bottom:448.693733pt;}
.y56{bottom:448.872800pt;}
.y28a{bottom:450.383733pt;}
.y97{bottom:452.554667pt;}
.y1cd{bottom:455.437467pt;}
.y18d{bottom:455.541200pt;}
.y12{bottom:458.350133pt;}
.y16a{bottom:460.693733pt;}
.y24b{bottom:463.006133pt;}
.y209{bottom:463.244000pt;}
.yd3{bottom:464.890133pt;}
.y289{bottom:465.044533pt;}
.y96{bottom:467.411467pt;}
.y55{bottom:467.772800pt;}
.y10b{bottom:468.202800pt;}
.y10a{bottom:469.126800pt;}
.y18c{bottom:470.202000pt;}
.y1cc{bottom:470.215867pt;}
.y11{bottom:473.010933pt;}
.y24a{bottom:477.719200pt;}
.y208{bottom:477.944000pt;}
.y169{bottom:478.561733pt;}
.yd2{bottom:479.550933pt;}
.y288{bottom:479.705333pt;}
.y95{bottom:482.268267pt;}
.y18b{bottom:484.862800pt;}
.y1cb{bottom:484.994267pt;}
.y54{bottom:486.672800pt;}
.y10{bottom:487.671733pt;}
.y109{bottom:488.026800pt;}
.y249{bottom:492.432267pt;}
.y207{bottom:492.644000pt;}
.yd1{bottom:494.211733pt;}
.y287{bottom:494.366133pt;}
.y94{bottom:497.125067pt;}
.y168{bottom:497.461733pt;}
.y1ca{bottom:499.772667pt;}
.yf{bottom:502.332533pt;}
.y53{bottom:505.572800pt;}
.y108{bottom:506.926800pt;}
.y18a{bottom:507.089200pt;}
.y248{bottom:507.145333pt;}
.y206{bottom:507.344000pt;}
.y286{bottom:509.026933pt;}
.y93{bottom:511.981867pt;}
.yd0{bottom:512.661867pt;}
.y1c9{bottom:514.551067pt;}
.y167{bottom:516.361733pt;}
.ye{bottom:516.993333pt;}
.y189{bottom:521.750000pt;}
.y247{bottom:521.858400pt;}
.y205{bottom:522.044000pt;}
.y285{bottom:523.687733pt;}
.y52{bottom:524.472800pt;}
.y107{bottom:525.826800pt;}
.y92{bottom:526.838667pt;}
.ycf{bottom:527.322667pt;}
.y1c8{bottom:529.329467pt;}
.yd{bottom:531.654133pt;}
.y166{bottom:535.261733pt;}
.y246{bottom:536.571467pt;}
.y204{bottom:536.744000pt;}
.y284{bottom:538.348533pt;}
.y188{bottom:540.200133pt;}
.y91{bottom:541.695467pt;}
.yce{bottom:541.983467pt;}
.y51{bottom:543.372800pt;}
.y1c7{bottom:544.107867pt;}
.y106{bottom:544.726800pt;}
.yc{bottom:546.314933pt;}
.y245{bottom:551.284533pt;}
.y203{bottom:551.444000pt;}
.y283{bottom:553.009333pt;}
.y165{bottom:554.161733pt;}
.y90{bottom:556.552267pt;}
.y187{bottom:558.650267pt;}
.y1c6{bottom:558.886267pt;}
.ycd{bottom:560.433600pt;}
.yb{bottom:560.975733pt;}
.y50{bottom:562.272800pt;}
.y105{bottom:563.626800pt;}
.y244{bottom:565.997600pt;}
.y202{bottom:566.144000pt;}
.y282{bottom:567.670133pt;}
.y8f{bottom:571.409067pt;}
.y164{bottom:573.061733pt;}
.y1c5{bottom:573.664667pt;}
.ycc{bottom:575.094400pt;}
.ya{bottom:575.636533pt;}
.y243{bottom:580.710667pt;}
.y201{bottom:580.844000pt;}
.y4f{bottom:581.172800pt;}
.y281{bottom:582.330933pt;}
.y104{bottom:582.526800pt;}
.y8e{bottom:586.265867pt;}
.y1c4{bottom:588.443067pt;}
.ycb{bottom:589.755200pt;}
.y9{bottom:590.297333pt;}
.y163{bottom:591.961733pt;}
.y242{bottom:595.423733pt;}
.y200{bottom:595.544000pt;}
.y280{bottom:596.991733pt;}
.y4e{bottom:600.072800pt;}
.y8d{bottom:601.122667pt;}
.y103{bottom:601.426800pt;}
.y1c3{bottom:603.221467pt;}
.yca{bottom:604.416000pt;}
.y8{bottom:604.958133pt;}
.y162{bottom:609.829733pt;}
.y241{bottom:610.136800pt;}
.y1ff{bottom:610.244000pt;}
.y27f{bottom:611.652533pt;}
.y13b{bottom:615.031467pt;}
.y15f{bottom:615.829733pt;}
.y8c{bottom:615.979467pt;}
.y1c2{bottom:617.999867pt;}
.y4d{bottom:618.972800pt;}
.y7{bottom:619.618933pt;}
.y102{bottom:620.326800pt;}
.y161{bottom:621.829733pt;}
.yc9{bottom:622.866133pt;}
.y240{bottom:624.849867pt;}
.y1fe{bottom:624.944000pt;}
.y27e{bottom:626.313333pt;}
.y15e{bottom:627.829733pt;}
.y8b{bottom:630.836267pt;}
.y13a{bottom:630.852133pt;}
.y1c1{bottom:632.778267pt;}
.y160{bottom:633.829733pt;}
.y6{bottom:634.279733pt;}
.yc8{bottom:637.526933pt;}
.y4c{bottom:637.872800pt;}
.y101{bottom:639.226800pt;}
.y23f{bottom:639.562933pt;}
.y1fd{bottom:639.644000pt;}
.y27d{bottom:640.974133pt;}
.y139{bottom:645.512933pt;}
.y8a{bottom:645.693067pt;}
.y1c0{bottom:647.556667pt;}
.yc7{bottom:652.187733pt;}
.y23e{bottom:654.276000pt;}
.y1fc{bottom:654.344000pt;}
.y27c{bottom:655.634933pt;}
.y5{bottom:656.505467pt;}
.y4b{bottom:656.772800pt;}
.y100{bottom:658.126800pt;}
.y15d{bottom:660.122800pt;}
.y138{bottom:660.173733pt;}
.y89{bottom:660.549867pt;}
.y1bf{bottom:662.335067pt;}
.yc6{bottom:666.848533pt;}
.y23d{bottom:668.989067pt;}
.y27b{bottom:670.295733pt;}
.y1fb{bottom:672.828533pt;}
.y137{bottom:674.834533pt;}
.y88{bottom:675.406667pt;}
.y4a{bottom:675.672800pt;}
.yff{bottom:677.026800pt;}
.y1be{bottom:677.113467pt;}
.yc5{bottom:681.509333pt;}
.y15c{bottom:683.482133pt;}
.y23c{bottom:683.702133pt;}
.y27a{bottom:684.956533pt;}
.y136{bottom:689.495333pt;}
.y87{bottom:690.263467pt;}
.y1bd{bottom:691.891867pt;}
.yfe{bottom:695.926800pt;}
.yc4{bottom:696.170133pt;}
.y15b{bottom:698.142933pt;}
.y23b{bottom:698.415200pt;}
.y279{bottom:699.617333pt;}
.y31{bottom:702.080800pt;}
.y49{bottom:702.118533pt;}
.y1fa{bottom:703.412667pt;}
.y135{bottom:704.156133pt;}
.y86{bottom:705.120267pt;}
.y1bc{bottom:706.670267pt;}
.y15a{bottom:712.803733pt;}
.y23a{bottom:713.128267pt;}
.y278{bottom:714.278133pt;}
.y30{bottom:714.742133pt;}
.yfd{bottom:714.826800pt;}
.y1f9{bottom:718.112667pt;}
.yc3{bottom:718.396533pt;}
.y134{bottom:718.816933pt;}
.y85{bottom:719.977067pt;}
.y1bb{bottom:721.448667pt;}
.y48{bottom:725.646133pt;}
.y159{bottom:727.464533pt;}
.y239{bottom:727.841333pt;}
.y277{bottom:728.938933pt;}
.y2f{bottom:731.193600pt;}
.yc2{bottom:733.057333pt;}
.y133{bottom:733.477733pt;}
.yfc{bottom:733.726800pt;}
.y84{bottom:734.833867pt;}
.y1ba{bottom:736.227067pt;}
.y1f8{bottom:736.597200pt;}
.y47{bottom:740.463733pt;}
.y158{bottom:742.125333pt;}
.y238{bottom:742.554400pt;}
.y276{bottom:743.599733pt;}
.y2e{bottom:743.854933pt;}
.y83{bottom:749.690667pt;}
.y1b9{bottom:751.005467pt;}
.yc1{bottom:751.503467pt;}
.y132{bottom:751.923867pt;}
.yfb{bottom:752.626800pt;}
.y46{bottom:755.281333pt;}
.y157{bottom:756.786133pt;}
.y237{bottom:757.267467pt;}
.y275{bottom:758.260533pt;}
.y2d{bottom:760.306533pt;}
.y82{bottom:764.547467pt;}
.y1b8{bottom:765.783867pt;}
.y1f7{bottom:767.191467pt;}
.yfa{bottom:769.474800pt;}
.y45{bottom:770.098933pt;}
.y236{bottom:771.980533pt;}
.y274{bottom:772.921333pt;}
.y2c{bottom:772.967867pt;}
.y156{bottom:779.012533pt;}
.y1b7{bottom:780.562267pt;}
.yf9{bottom:781.474800pt;}
.y1f6{bottom:781.891467pt;}
.yc0{bottom:782.073467pt;}
.y131{bottom:782.558400pt;}
.y81{bottom:783.186667pt;}
.y44{bottom:784.916533pt;}
.y235{bottom:786.693600pt;}
.y273{bottom:787.582133pt;}
.y2b{bottom:789.419333pt;}
.y155{bottom:793.673333pt;}
.y1b6{bottom:795.340667pt;}
.y1f5{bottom:796.591467pt;}
.ybf{bottom:796.734267pt;}
.y130{bottom:797.219200pt;}
.y43{bottom:799.734133pt;}
.yf8{bottom:800.374800pt;}
.y234{bottom:801.406667pt;}
.y2a{bottom:802.080667pt;}
.y272{bottom:802.242933pt;}
.y1b5{bottom:810.119067pt;}
.y1f4{bottom:811.291467pt;}
.ybe{bottom:811.395067pt;}
.y12f{bottom:811.880000pt;}
.y154{bottom:812.123467pt;}
.y80{bottom:813.963733pt;}
.y42{bottom:814.551733pt;}
.y233{bottom:816.119733pt;}
.y271{bottom:816.903733pt;}
.yf7{bottom:819.274800pt;}
.y1b4{bottom:824.897467pt;}
.ybd{bottom:826.055867pt;}
.y12e{bottom:826.540800pt;}
.y153{bottom:826.784267pt;}
.y7f{bottom:828.820533pt;}
.y41{bottom:829.369333pt;}
.y1f3{bottom:829.776000pt;}
.y232{bottom:830.832800pt;}
.y270{bottom:831.564533pt;}
.yf6{bottom:838.174800pt;}
.y1b3{bottom:839.675867pt;}
.ybc{bottom:840.716667pt;}
.y12d{bottom:841.201600pt;}
.y7e{bottom:843.677333pt;}
.y40{bottom:844.186933pt;}
.y152{bottom:845.234400pt;}
.y231{bottom:845.545867pt;}
.y26f{bottom:846.225333pt;}
.y4{bottom:851.403067pt;}
.y1b2{bottom:854.454267pt;}
.ybb{bottom:855.377467pt;}
.y12c{bottom:855.862400pt;}
.yf5{bottom:857.074800pt;}
.y7d{bottom:858.534133pt;}
.y3f{bottom:859.004533pt;}
.y230{bottom:860.258933pt;}
.y1f2{bottom:860.415733pt;}
.y26e{bottom:860.886133pt;}
.y151{bottom:863.684533pt;}
.y1b1{bottom:869.232667pt;}
.y12b{bottom:870.523200pt;}
.y7c{bottom:873.390933pt;}
.y3e{bottom:873.822133pt;}
.yba{bottom:873.823600pt;}
.y22f{bottom:874.972000pt;}
.y1f1{bottom:875.115733pt;}
.y3{bottom:875.403067pt;}
.y26d{bottom:875.546933pt;}
.yf4{bottom:875.974800pt;}
.y150{bottom:882.134667pt;}
.y1b0{bottom:884.011067pt;}
.y12a{bottom:885.184000pt;}
.y7b{bottom:888.247733pt;}
.y3d{bottom:888.639733pt;}
.y22e{bottom:889.685067pt;}
.y1f0{bottom:889.815733pt;}
.y26c{bottom:890.207733pt;}
.y1af{bottom:898.789467pt;}
.y2{bottom:899.165467pt;}
.y129{bottom:899.844800pt;}
.y14f{bottom:900.608800pt;}
.yf3{bottom:902.659467pt;}
.y7a{bottom:903.104533pt;}
.y3c{bottom:903.457333pt;}
.yb9{bottom:904.385067pt;}
.y22d{bottom:904.398133pt;}
.y1ef{bottom:904.515733pt;}
.y26b{bottom:904.868533pt;}
.y1ae{bottom:913.567867pt;}
.y128{bottom:914.505600pt;}
.y79{bottom:917.961333pt;}
.y3b{bottom:918.274933pt;}
.yb8{bottom:919.045867pt;}
.y14e{bottom:919.058933pt;}
.y22c{bottom:919.111200pt;}
.y1ee{bottom:919.215733pt;}
.y26a{bottom:919.529333pt;}
.yf2{bottom:926.422800pt;}
.y1ad{bottom:928.346267pt;}
.y127{bottom:929.166400pt;}
.y78{bottom:932.818133pt;}
.y3a{bottom:933.092533pt;}
.y22b{bottom:933.824267pt;}
.y1ed{bottom:933.915733pt;}
.y269{bottom:934.190133pt;}
.yb7{bottom:937.496000pt;}
.y14d{bottom:941.285333pt;}
.yf1{bottom:941.475600pt;}
.y1ac{bottom:943.124667pt;}
.y126{bottom:943.827200pt;}
.y77{bottom:947.674933pt;}
.y39{bottom:947.910133pt;}
.y22a{bottom:948.537333pt;}
.y1ec{bottom:948.615733pt;}
.y268{bottom:948.850933pt;}
.yb6{bottom:952.156800pt;}
.y14c{bottom:955.946133pt;}
.yf0{bottom:956.528400pt;}
.y1ab{bottom:957.903067pt;}
.y125{bottom:958.488000pt;}
.y186{bottom:958.590000pt;}
.y76{bottom:962.531733pt;}
.y38{bottom:962.727733pt;}
.y229{bottom:963.250400pt;}
.y1eb{bottom:963.315733pt;}
.y267{bottom:963.511733pt;}
.yb5{bottom:970.606933pt;}
.yef{bottom:971.581200pt;}
.y1aa{bottom:972.681467pt;}
.y124{bottom:973.148800pt;}
.y28{bottom:977.133867pt;}
.y75{bottom:977.388533pt;}
.y37{bottom:977.545333pt;}
.y228{bottom:977.963467pt;}
.y1ea{bottom:978.015733pt;}
.y185{bottom:978.172533pt;}
.y14b{bottom:985.267733pt;}
.yee{bottom:986.634000pt;}
.y1a9{bottom:987.459867pt;}
.y123{bottom:987.809600pt;}
.y27{bottom:990.467067pt;}
.y29{bottom:991.292800pt;}
.y74{bottom:992.245333pt;}
.y36{bottom:992.362933pt;}
.y227{bottom:992.676533pt;}
.y1e9{bottom:992.715733pt;}
.yb4{bottom:992.833333pt;}
.y14a{bottom:999.928533pt;}
.yed{bottom:1001.686800pt;}
.y1a8{bottom:1002.238267pt;}
.y122{bottom:1002.470400pt;}
.y73{bottom:1007.102133pt;}
.y35{bottom:1007.180533pt;}
.y226{bottom:1007.389600pt;}
.y1e8{bottom:1007.415733pt;}
.yb3{bottom:1007.494133pt;}
.y149{bottom:1014.589333pt;}
.yec{bottom:1016.739600pt;}
.y1a7{bottom:1017.016667pt;}
.y121{bottom:1017.131200pt;}
.y72{bottom:1021.958933pt;}
.y34{bottom:1021.998133pt;}
.y225{bottom:1022.102667pt;}
.y1e7{bottom:1022.115733pt;}
.yb2{bottom:1022.154933pt;}
.yeb{bottom:1035.577333pt;}
.y33{bottom:1036.815733pt;}
.y32{bottom:1071.727600pt;}
.hf{height:23.637333pt;}
.h2{height:33.114667pt;}
.hb{height:37.802667pt;}
.ha{height:37.845333pt;}
.hc{height:42.528000pt;}
.hd{height:42.576000pt;}
.h10{height:45.600000pt;}
.h6{height:45.879301pt;}
.h5{height:45.901659pt;}
.h9{height:46.308267pt;}
.h4{height:46.360533pt;}
.h13{height:46.376000pt;}
.h14{height:46.376533pt;}
.h8{height:46.514229pt;}
.he{height:49.873765pt;}
.h7{height:51.978667pt;}
.h12{height:66.528000pt;}
.h3{height:79.535393pt;}
.h11{height:90.528000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.x5{left:82.439600pt;}
.xb{left:84.180800pt;}
.x7{left:86.929200pt;}
.x38{left:87.998533pt;}
.x9{left:94.523867pt;}
.x37{left:96.350533pt;}
.x36{left:97.622533pt;}
.x39{left:100.622533pt;}
.x3b{left:102.050533pt;}
.x12{left:123.584400pt;}
.xd{left:132.180800pt;}
.x1a{left:136.149867pt;}
.x18{left:137.481867pt;}
.x19{left:138.813867pt;}
.x16{left:139.809867pt;}
.x15{left:141.141867pt;}
.x14{left:143.241867pt;}
.x2b{left:167.534533pt;}
.x2a{left:169.214533pt;}
.x10{left:171.591333pt;}
.x11{left:174.688133pt;}
.x17{left:198.165867pt;}
.x2{left:205.700667pt;}
.xa{left:214.410267pt;}
.x2c{left:216.902533pt;}
.x24{left:231.643600pt;}
.x27{left:234.163600pt;}
.x26{left:236.503600pt;}
.x25{left:237.835600pt;}
.x3{left:258.305467pt;}
.x23{left:260.868400pt;}
.x8{left:263.508133pt;}
.x3a{left:284.937467pt;}
.x13{left:294.339867pt;}
.x28{left:300.889200pt;}
.x29{left:303.246267pt;}
.x2d{left:318.362533pt;}
.x2e{left:428.234533pt;}
.x1b{left:458.574267pt;}
.x1c{left:470.568398pt;}
.xc{left:471.876800pt;}
.x1d{left:473.412398pt;}
.x2f{left:483.170533pt;}
.x1e{left:485.406530pt;}
.x1f{left:488.250530pt;}
.x20{left:500.244661pt;}
.x21{left:503.088661pt;}
.x22{left:515.082793pt;}
.x30{left:538.106533pt;}
.xe{left:542.812400pt;}
.x31{left:581.378533pt;}
.x32{left:594.086533pt;}
.x6{left:642.024667pt;}
.x35{left:652.574533pt;}
.x33{left:654.626533pt;}
.x34{left:672.974533pt;}
.xf{left:702.337200pt;}
.x1{left:704.194533pt;}
}




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