
    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_d83f5058b480dfa96d5a7147.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_e849931d006d7945107b565d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_6409d46161a31f0422271b32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.721000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_a4bd5d3289143cd59de33b46.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_f7b4383a50c4184faff249bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202000;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_ecdd4b4220086d999dc677b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_543ea4d0fa4b5194594de1f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_681bac8e93667960e48e258c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7a380ef7036b75e43efbc770.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v8{vertical-align:-18.000000px;}
.v5{vertical-align:-14.728786px;}
.v7{vertical-align:-12.024055px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v2{vertical-align:9.550415px;}
.v9{vertical-align:18.000000px;}
.v4{vertical-align:23.520447px;}
.v3{vertical-align:26.399780px;}
.v6{vertical-align:54.000000px;}
.ls3{letter-spacing:-3.356100px;}
.ls2{letter-spacing:-1.050000px;}
.ls12{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.302400px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000070px;}
.lsa{letter-spacing:0.000400px;}
.lsb{letter-spacing:0.000583px;}
.ls13{letter-spacing:0.225000px;}
.ls11{letter-spacing:0.630000px;}
.ls5{letter-spacing:0.823200px;}
.ls6{letter-spacing:0.829071px;}
.ls8{letter-spacing:0.829080px;}
.ls7{letter-spacing:0.840840px;}
.lsf{letter-spacing:1.411200px;}
.ls1{letter-spacing:5.460000px;}
.lse{letter-spacing:6.762000px;}
.ls9{letter-spacing:6.938400px;}
.lsc{letter-spacing:75.264000px;}
.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;}
}
.ws5f{word-spacing:-13.935600px;}
.ws6e{word-spacing:-13.818000px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws6{word-spacing:-11.880000px;}
.ws5e{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws10b{word-spacing:-10.080000px;}
.wsbb{word-spacing:-9.936000px;}
.ws7{word-spacing:-9.855000px;}
.ws8c{word-spacing:-9.672600px;}
.wse9{word-spacing:-9.315000px;}
.ws109{word-spacing:-9.135000px;}
.ws1{word-spacing:-8.148000px;}
.ws10d{word-spacing:-7.965000px;}
.ws10a{word-spacing:-6.898500px;}
.wsbe{word-spacing:-6.652800px;}
.wsab{word-spacing:-6.468000px;}
.ws8b{word-spacing:-4.512000px;}
.wsa{word-spacing:-2.772000px;}
.wseb{word-spacing:-1.705200px;}
.ws100{word-spacing:-1.293600px;}
.ws11{word-spacing:-0.823200px;}
.ws9{word-spacing:-0.780000px;}
.wscd{word-spacing:-0.764400px;}
.wsfa{word-spacing:-0.646800px;}
.wsb7{word-spacing:-0.588000px;}
.ws106{word-spacing:-0.529200px;}
.ws102{word-spacing:-0.411600px;}
.wse4{word-spacing:-0.294000px;}
.wsc7{word-spacing:-0.235200px;}
.wsc8{word-spacing:-0.176400px;}
.ws80{word-spacing:-0.117600px;}
.ws4c{word-spacing:-0.058800px;}
.ws10c{word-spacing:-0.045000px;}
.ws8{word-spacing:0.000000px;}
.ws3a{word-spacing:0.058800px;}
.wsce{word-spacing:0.117600px;}
.ws108{word-spacing:0.235200px;}
.ws8a{word-spacing:0.294000px;}
.wsd6{word-spacing:0.352800px;}
.ws70{word-spacing:0.411600px;}
.ws3e{word-spacing:0.470400px;}
.ws36{word-spacing:0.529200px;}
.ws5c{word-spacing:0.588000px;}
.ws7d{word-spacing:0.764400px;}
.ws92{word-spacing:0.823200px;}
.ws2f{word-spacing:0.882000px;}
.ws60{word-spacing:0.940800px;}
.ws4b{word-spacing:0.999600px;}
.wscc{word-spacing:1.058400px;}
.wsaf{word-spacing:1.117200px;}
.ws85{word-spacing:1.176000px;}
.ws49{word-spacing:1.234800px;}
.wsea{word-spacing:1.411200px;}
.ws2e{word-spacing:1.470000px;}
.ws73{word-spacing:1.587600px;}
.wsd2{word-spacing:1.646400px;}
.ws29{word-spacing:1.705200px;}
.ws12{word-spacing:1.764000px;}
.ws67{word-spacing:1.822800px;}
.wscf{word-spacing:1.940400px;}
.ws18{word-spacing:1.999200px;}
.ws2a{word-spacing:2.058000px;}
.ws19{word-spacing:2.116800px;}
.wsd5{word-spacing:2.175600px;}
.wse{word-spacing:2.410800px;}
.ws97{word-spacing:2.469600px;}
.wsa2{word-spacing:2.528400px;}
.wsb2{word-spacing:2.587200px;}
.ws7a{word-spacing:2.704800px;}
.wsc9{word-spacing:2.763600px;}
.ws9b{word-spacing:2.822400px;}
.wse0{word-spacing:2.881200px;}
.ws3f{word-spacing:3.057600px;}
.ws2d{word-spacing:3.175200px;}
.ws87{word-spacing:3.234000px;}
.ws2{word-spacing:3.281520px;}
.wsad{word-spacing:3.410400px;}
.ws6f{word-spacing:3.528000px;}
.ws7f{word-spacing:3.586800px;}
.ws51{word-spacing:3.645600px;}
.ws54{word-spacing:3.704400px;}
.wsd4{word-spacing:3.880800px;}
.ws61{word-spacing:3.939600px;}
.wscb{word-spacing:3.998400px;}
.wsdb{word-spacing:4.116000px;}
.wsec{word-spacing:4.174800px;}
.ws50{word-spacing:4.233600px;}
.ws17{word-spacing:4.292400px;}
.ws37{word-spacing:4.351200px;}
.wse1{word-spacing:4.468800px;}
.wsa3{word-spacing:4.527600px;}
.wsd9{word-spacing:4.704000px;}
.ws3d{word-spacing:4.762800px;}
.ws5b{word-spacing:4.821600px;}
.ws43{word-spacing:4.880400px;}
.wsb4{word-spacing:4.939200px;}
.ws2b{word-spacing:4.998000px;}
.ws62{word-spacing:5.056800px;}
.wsdc{word-spacing:5.174400px;}
.ws28{word-spacing:5.233200px;}
.ws27{word-spacing:5.292000px;}
.wsf4{word-spacing:5.350800px;}
.wsb5{word-spacing:5.409600px;}
.ws58{word-spacing:5.468400px;}
.ws71{word-spacing:5.527200px;}
.ws105{word-spacing:5.586000px;}
.ws96{word-spacing:5.703600px;}
.wsc6{word-spacing:5.762400px;}
.wsda{word-spacing:5.821200px;}
.ws83{word-spacing:5.880000px;}
.ws33{word-spacing:5.997600px;}
.ws59{word-spacing:6.056400px;}
.ws99{word-spacing:6.115200px;}
.ws53{word-spacing:6.174000px;}
.wsf2{word-spacing:6.291600px;}
.ws3b{word-spacing:6.350400px;}
.ws1a{word-spacing:6.409200px;}
.ws81{word-spacing:6.526800px;}
.ws94{word-spacing:6.585600px;}
.ws93{word-spacing:6.703200px;}
.ws52{word-spacing:6.762000px;}
.ws66{word-spacing:6.820800px;}
.ws8f{word-spacing:6.879600px;}
.wsb3{word-spacing:6.938400px;}
.wsa5{word-spacing:7.056000px;}
.ws42{word-spacing:7.173600px;}
.wsd1{word-spacing:7.232400px;}
.wsa7{word-spacing:7.350000px;}
.ws8d{word-spacing:7.467600px;}
.ws3c{word-spacing:7.526400px;}
.ws25{word-spacing:7.644000px;}
.ws76{word-spacing:7.702800px;}
.wsfd{word-spacing:7.761600px;}
.ws40{word-spacing:7.879200px;}
.wsaa{word-spacing:7.938000px;}
.wse5{word-spacing:7.996800px;}
.ws72{word-spacing:8.055600px;}
.ws35{word-spacing:8.114400px;}
.ws20{word-spacing:8.173200px;}
.wsb6{word-spacing:8.232000px;}
.ws38{word-spacing:8.349600px;}
.ws89{word-spacing:8.408400px;}
.wsef{word-spacing:8.584800px;}
.ws68{word-spacing:8.643600px;}
.wsf9{word-spacing:8.761200px;}
.wsed{word-spacing:8.878800px;}
.ws9d{word-spacing:8.937600px;}
.ws2c{word-spacing:9.055200px;}
.ws6b{word-spacing:9.114000px;}
.ws6a{word-spacing:9.231600px;}
.ws45{word-spacing:9.290400px;}
.ws104{word-spacing:9.349200px;}
.ws57{word-spacing:9.408000px;}
.ws1c{word-spacing:9.466800px;}
.ws91{word-spacing:9.525600px;}
.ws6c{word-spacing:9.760800px;}
.ws9e{word-spacing:9.819600px;}
.ws46{word-spacing:9.878400px;}
.ws82{word-spacing:9.996000px;}
.ws5d{word-spacing:10.054800px;}
.wsc{word-spacing:10.113600px;}
.wsf6{word-spacing:10.172400px;}
.ws5a{word-spacing:10.290000px;}
.wsa1{word-spacing:10.407600px;}
.wsf3{word-spacing:10.466400px;}
.wsb{word-spacing:10.525200px;}
.wsf{word-spacing:10.642800px;}
.ws1b{word-spacing:10.701600px;}
.ws56{word-spacing:10.760400px;}
.ws24{word-spacing:10.819200px;}
.wsa0{word-spacing:10.878000px;}
.ws77{word-spacing:10.936800px;}
.ws74{word-spacing:10.995600px;}
.ws98{word-spacing:11.113200px;}
.ws65{word-spacing:11.172000px;}
.wsae{word-spacing:11.230800px;}
.wsd{word-spacing:11.348400px;}
.wsa9{word-spacing:11.407200px;}
.ws48{word-spacing:11.524800px;}
.ws10{word-spacing:11.583600px;}
.wsca{word-spacing:11.701200px;}
.wsf7{word-spacing:11.760000px;}
.ws55{word-spacing:11.877600px;}
.ws90{word-spacing:11.995200px;}
.ws13{word-spacing:12.171600px;}
.ws23{word-spacing:12.230400px;}
.ws4d{word-spacing:12.524400px;}
.ws1f{word-spacing:12.583200px;}
.wsd7{word-spacing:12.642000px;}
.ws7b{word-spacing:12.700800px;}
.ws75{word-spacing:12.818400px;}
.ws79{word-spacing:12.936000px;}
.ws9a{word-spacing:12.994800px;}
.wsa6{word-spacing:13.053600px;}
.ws7c{word-spacing:13.171200px;}
.ws4a{word-spacing:13.288800px;}
.ws1e{word-spacing:13.406400px;}
.wsd8{word-spacing:13.524000px;}
.wsfe{word-spacing:13.582800px;}
.wsa4{word-spacing:13.818000px;}
.wsb8{word-spacing:13.994400px;}
.ws44{word-spacing:14.170800px;}
.ws4e{word-spacing:14.406000px;}
.ws101{word-spacing:14.464800px;}
.ws15{word-spacing:14.582400px;}
.ws107{word-spacing:14.700000px;}
.ws9c{word-spacing:14.817600px;}
.wsd3{word-spacing:14.876400px;}
.wsf8{word-spacing:14.935200px;}
.ws63{word-spacing:14.994000px;}
.wsde{word-spacing:15.111600px;}
.ws30{word-spacing:15.170400px;}
.ws21{word-spacing:15.288000px;}
.wse3{word-spacing:15.346800px;}
.ws31{word-spacing:15.523200px;}
.wsb1{word-spacing:15.699600px;}
.wsba{word-spacing:15.758400px;}
.wsb0{word-spacing:15.817200px;}
.wse2{word-spacing:15.993600px;}
.wsff{word-spacing:16.052400px;}
.ws4f{word-spacing:16.170000px;}
.wsdf{word-spacing:16.228800px;}
.ws88{word-spacing:16.287600px;}
.wsc4{word-spacing:16.346400px;}
.wsac{word-spacing:16.405200px;}
.ws103{word-spacing:16.640400px;}
.ws47{word-spacing:16.699200px;}
.wse6{word-spacing:16.816800px;}
.ws69{word-spacing:16.993200px;}
.ws78{word-spacing:17.110800px;}
.wsee{word-spacing:17.522400px;}
.ws14{word-spacing:17.698800px;}
.ws39{word-spacing:17.816400px;}
.ws86{word-spacing:17.875200px;}
.wsfb{word-spacing:17.934000px;}
.ws7e{word-spacing:18.463200px;}
.wsa8{word-spacing:18.757200px;}
.ws32{word-spacing:18.816000px;}
.ws22{word-spacing:18.874800px;}
.ws64{word-spacing:19.992000px;}
.wsc3{word-spacing:20.168400px;}
.ws95{word-spacing:20.286000px;}
.wsdd{word-spacing:20.580000px;}
.wsc5{word-spacing:20.756400px;}
.ws16{word-spacing:20.815200px;}
.wsf0{word-spacing:20.874000px;}
.ws26{word-spacing:21.344400px;}
.ws8e{word-spacing:21.638400px;}
.ws84{word-spacing:21.697200px;}
.wsf1{word-spacing:22.226400px;}
.ws1d{word-spacing:22.461600px;}
.ws34{word-spacing:22.638000px;}
.wsb9{word-spacing:22.755600px;}
.wsc2{word-spacing:22.814400px;}
.wsd0{word-spacing:23.284800px;}
.ws41{word-spacing:24.460800px;}
.wse7{word-spacing:24.519600px;}
.wse8{word-spacing:25.460400px;}
.wsc1{word-spacing:26.224800px;}
.wsfc{word-spacing:27.812400px;}
.ws6d{word-spacing:34.633200px;}
.ws9f{word-spacing:35.456400px;}
.wsf5{word-spacing:43.570800px;}
.wsc0{word-spacing:94.271992px;}
.wsbd{word-spacing:109.151992px;}
.wsbf{word-spacing:117.695992px;}
.wsbc{word-spacing:500.238016px;}
._19{margin-left:-25.932000px;}
._27{margin-left:-23.844000px;}
._15{margin-left:-22.785600px;}
._13{margin-left:-21.640809px;}
._17{margin-left:-20.317200px;}
._18{margin-left:-19.172409px;}
._16{margin-left:-17.229600px;}
._1b{margin-left:-15.465617px;}
._1f{margin-left:-14.169583px;}
._1a{margin-left:-12.584413px;}
._14{margin-left:-11.349600px;}
._26{margin-left:-10.080720px;}
._3a{margin-left:-8.858932px;}
._25{margin-left:-7.761600px;}
._5{margin-left:-6.480000px;}
._b{margin-left:-5.211240px;}
._7{margin-left:-4.206584px;}
._1{margin-left:-3.168000px;}
._2{margin-left:-1.204800px;}
._0{width:1.824000px;}
._4{width:3.654420px;}
._1d{width:5.304480px;}
._6{width:6.912000px;}
._a{width:8.782320px;}
._1e{width:10.635120px;}
._c{width:13.188840px;}
._9{width:14.640000px;}
._f{width:15.816584px;}
._8{width:17.044786px;}
._d{width:18.522000px;}
._1c{width:21.942959px;}
._12{width:26.460000px;}
._e{width:28.518000px;}
._11{width:37.488000px;}
._10{width:42.000000px;}
._3b{width:43.191240px;}
._3c{width:44.706584px;}
._32{width:52.515000px;}
._39{width:57.373806px;}
._20{width:64.564792px;}
._21{width:65.840953px;}
._31{width:73.188000px;}
._2a{width:79.560000px;}
._34{width:86.220000px;}
._37{width:87.574499px;}
._33{width:93.330000px;}
._2b{width:96.435000px;}
._35{width:99.720000px;}
._30{width:103.176240px;}
._2d{width:112.611000px;}
._36{width:115.695000px;}
._28{width:119.340000px;}
._38{width:125.211584px;}
._2c{width:127.260000px;}
._2e{width:145.345496px;}
._29{width:151.110000px;}
._2f{width:166.770000px;}
._23{width:200.688000px;}
._22{width:205.007992px;}
._24{width:296.831993px;}
._3{width:1700.330950px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.500000px;}
.fse{font-size:33.600000px;}
.fsd{font-size:41.160000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsb{font-size:55.199999px;}
.fsa{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:0.249390px;}
.yb{bottom:79.008299px;}
.ya{bottom:91.009799px;}
.yd8{bottom:100.386303px;}
.y18a{bottom:100.662003px;}
.y294{bottom:100.842773px;}
.yfc{bottom:101.877445px;}
.y109{bottom:101.949457px;}
.y9{bottom:103.011299px;}
.y1f9{bottom:103.237953px;}
.y262{bottom:103.842728px;}
.y121{bottom:104.134645px;}
.y62{bottom:105.837753px;}
.y95{bottom:106.656895px;}
.y1c8{bottom:107.708099px;}
.y195{bottom:108.223495px;}
.y293{bottom:114.342773px;}
.y8{bottom:115.012799px;}
.y1f8{bottom:116.737953px;}
.y261{bottom:117.342728px;}
.y189{bottom:118.690803px;}
.yfb{bottom:119.891845px;}
.y108{bottom:119.942257px;}
.y120{bottom:122.127445px;}
.ye8{bottom:122.770652px;}
.y61{bottom:123.873753px;}
.y94{bottom:124.649695px;}
.y1c7{bottom:125.700899px;}
.y194{bottom:126.451495px;}
.y7{bottom:127.014299px;}
.y292{bottom:127.842773px;}
.y260{bottom:130.842728px;}
.y232{bottom:132.342728px;}
.ye7{bottom:136.270652px;}
.y188{bottom:136.683603px;}
.yfa{bottom:137.884645px;}
.y107{bottom:137.935057px;}
.y6{bottom:139.015799px;}
.y131{bottom:140.141845px;}
.y11f{bottom:140.156257px;}
.y291{bottom:141.342773px;}
.y60{bottom:141.866553px;}
.y93{bottom:142.642495px;}
.y1c6{bottom:143.693699px;}
.y1f7{bottom:143.766753px;}
.y25f{bottom:144.342728px;}
.y193{bottom:144.595495px;}
.y231{bottom:145.842728px;}
.ye6{bottom:149.770652px;}
.y5{bottom:151.017299px;}
.y187{bottom:154.676403px;}
.y290{bottom:154.842773px;}
.yf9{bottom:155.877445px;}
.y106{bottom:155.927857px;}
.y25e{bottom:157.842728px;}
.y130{bottom:158.134645px;}
.y11e{bottom:158.149057px;}
.y230{bottom:159.342728px;}
.y5f{bottom:159.859353px;}
.y92{bottom:160.635295px;}
.y1c5{bottom:161.700899px;}
.y1f6{bottom:161.759553px;}
.y4{bottom:163.018799px;}
.ye5{bottom:163.270652px;}
.y28f{bottom:168.342773px;}
.y25d{bottom:171.342728px;}
.y192{bottom:171.487495px;}
.y191{bottom:171.493509px;}
.y186{bottom:172.669203px;}
.yf8{bottom:173.920657px;}
.y12f{bottom:176.134657px;}
.y11d{bottom:176.141857px;}
.ye4{bottom:176.770652px;}
.y5e{bottom:177.852153px;}
.y91{bottom:178.628095px;}
.y1c4{bottom:179.693699px;}
.y1f5{bottom:179.752353px;}
.y28e{bottom:181.842773px;}
.y25c{bottom:184.842728px;}
.y190{bottom:184.993509px;}
.y22f{bottom:186.342728px;}
.ye3{bottom:190.270652px;}
.y185{bottom:190.662003px;}
.yf7{bottom:191.913457px;}
.y11c{bottom:194.134657px;}
.y28d{bottom:195.342773px;}
.y5d{bottom:195.844953px;}
.y90{bottom:196.620895px;}
.y1c3{bottom:197.693710px;}
.y1f4{bottom:197.745153px;}
.y25b{bottom:198.342728px;}
.y22e{bottom:199.842728px;}
.y2b{bottom:201.361794px;}
.ye2{bottom:203.770652px;}
.y184{bottom:208.662003px;}
.y18f{bottom:208.837509px;}
.y28c{bottom:208.842773px;}
.yf6{bottom:209.906257px;}
.y25a{bottom:211.842728px;}
.y12e{bottom:212.127457px;}
.y11b{bottom:212.141857px;}
.y22d{bottom:213.342728px;}
.y5c{bottom:213.837753px;}
.y8f{bottom:214.628095px;}
.y2a{bottom:214.861794px;}
.y1f3{bottom:215.737953px;}
.ye1{bottom:217.270652px;}
.y18e{bottom:222.337509px;}
.y28b{bottom:222.342773px;}
.y259{bottom:225.342728px;}
.y183{bottom:226.662003px;}
.y22c{bottom:226.842728px;}
.yf5{bottom:227.899057px;}
.y29{bottom:228.361794px;}
.y12d{bottom:230.127457px;}
.y11a{bottom:230.134657px;}
.y5b{bottom:231.837753px;}
.y8e{bottom:232.620895px;}
.y1c2{bottom:233.715310px;}
.y1f2{bottom:233.737953px;}
.ye0{bottom:235.498652px;}
.y28a{bottom:235.842773px;}
.y258{bottom:238.842728px;}
.y28{bottom:241.861794px;}
.yf4{bottom:245.891857px;}
.y18d{bottom:246.487495px;}
.y119{bottom:248.127457px;}
.y12c{bottom:248.134657px;}
.y289{bottom:249.342773px;}
.y5a{bottom:249.866393px;}
.y8d{bottom:250.620895px;}
.y1c1{bottom:251.708110px;}
.y1f1{bottom:251.737953px;}
.y257{bottom:252.342728px;}
.ydf{bottom:253.642652px;}
.y22b{bottom:253.842728px;}
.y288{bottom:262.842773px;}
.yf3{bottom:263.884657px;}
.y256{bottom:265.842728px;}
.y118{bottom:266.127457px;}
.y182{bottom:266.199898px;}
.yde{bottom:267.142652px;}
.y22a{bottom:267.342728px;}
.y59{bottom:267.859193px;}
.y1c0{bottom:269.700910px;}
.y18c{bottom:270.803240px;}
.y287{bottom:276.342773px;}
.y255{bottom:279.342728px;}
.ydd{bottom:280.642652px;}
.y229{bottom:280.842728px;}
.yf2{bottom:281.877457px;}
.y117{bottom:284.141696px;}
.y181{bottom:284.228698px;}
.y58{bottom:285.851993px;}
.y8c{bottom:286.628095px;}
.y18b{bottom:287.300240px;}
.y1bf{bottom:287.693710px;}
.y1f0{bottom:287.737953px;}
.y286{bottom:289.842773px;}
.y254{bottom:292.842728px;}
.ydc{bottom:294.142652px;}
.y228{bottom:294.342728px;}
.y105{bottom:299.877296px;}
.yf1{bottom:299.934919px;}
.y116{bottom:302.134496px;}
.y180{bottom:302.221498px;}
.y285{bottom:303.342773px;}
.y57{bottom:303.844793px;}
.y8b{bottom:304.620895px;}
.y1be{bottom:305.700910px;}
.y1ef{bottom:305.752353px;}
.y253{bottom:306.342728px;}
.ydb{bottom:307.642652px;}
.y227{bottom:307.842728px;}
.y284{bottom:316.842773px;}
.y104{bottom:317.906119px;}
.yf0{bottom:317.927719px;}
.y252{bottom:319.842728px;}
.y12b{bottom:320.127296px;}
.y115{bottom:320.134496px;}
.y17f{bottom:320.214298px;}
.yda{bottom:321.142652px;}
.y226{bottom:321.342728px;}
.y56{bottom:321.837593px;}
.y8a{bottom:322.620895px;}
.y1bd{bottom:323.693710px;}
.y1ee{bottom:323.745153px;}
.y283{bottom:330.342773px;}
.y251{bottom:333.342728px;}
.y225{bottom:334.842728px;}
.y103{bottom:335.898919px;}
.yef{bottom:335.920519px;}
.y114{bottom:338.127296px;}
.y12a{bottom:338.141696px;}
.y17e{bottom:338.207098px;}
.yd9{bottom:339.286652px;}
.y55{bottom:339.851993px;}
.y89{bottom:340.649695px;}
.y1bc{bottom:341.736910px;}
.y1ed{bottom:341.737953px;}
.y282{bottom:343.842773px;}
.y250{bottom:346.842728px;}
.y224{bottom:348.342728px;}
.y102{bottom:353.891719px;}
.yee{bottom:353.913319px;}
.y113{bottom:356.127296px;}
.y129{bottom:356.134496px;}
.y17d{bottom:356.199898px;}
.y281{bottom:357.342773px;}
.y54{bottom:357.844793px;}
.y88{bottom:358.642495px;}
.y1bb{bottom:359.729710px;}
.y1ec{bottom:359.737953px;}
.y158{bottom:359.788330px;}
.y24f{bottom:360.342728px;}
.y223{bottom:361.842728px;}
.yd7{bottom:366.599396px;}
.y27{bottom:367.389313px;}
.y280{bottom:370.842773px;}
.y101{bottom:371.884519px;}
.yed{bottom:371.906119px;}
.y24e{bottom:373.842728px;}
.y128{bottom:374.134519px;}
.y112{bottom:374.170519px;}
.y17c{bottom:374.250321px;}
.y222{bottom:375.342728px;}
.y53{bottom:375.837593px;}
.y87{bottom:376.635295px;}
.y1ba{bottom:377.722510px;}
.y1eb{bottom:377.752330px;}
.y157{bottom:377.781130px;}
.y27f{bottom:384.342773px;}
.y24d{bottom:387.342728px;}
.y100{bottom:389.877319px;}
.y26{bottom:389.889313px;}
.yec{bottom:389.898919px;}
.y127{bottom:392.134519px;}
.y111{bottom:392.163319px;}
.y17b{bottom:392.243121px;}
.y52{bottom:393.859216px;}
.y86{bottom:394.628095px;}
.y1b9{bottom:395.715310px;}
.y1ea{bottom:395.745130px;}
.y156{bottom:395.773930px;}
.y27e{bottom:397.842773px;}
.y24c{bottom:400.842728px;}
.y221{bottom:402.342728px;}
.yff{bottom:407.884519px;}
.yeb{bottom:407.891719px;}
.y126{bottom:410.141719px;}
.y110{bottom:410.156119px;}
.y17a{bottom:410.235921px;}
.y27d{bottom:411.342773px;}
.y51{bottom:411.852016px;}
.y25{bottom:412.389313px;}
.y85{bottom:412.620895px;}
.y1b8{bottom:413.708110px;}
.y1e9{bottom:413.737930px;}
.y155{bottom:413.766730px;}
.y24b{bottom:414.342728px;}
.y220{bottom:415.842728px;}
.y27c{bottom:424.842773px;}
.yfe{bottom:425.877319px;}
.yea{bottom:425.884519px;}
.y24a{bottom:427.842728px;}
.y125{bottom:428.134519px;}
.y10f{bottom:428.148919px;}
.y179{bottom:428.228721px;}
.yd6{bottom:429.156895px;}
.y295{bottom:429.342728px;}
.y50{bottom:429.844816px;}
.y24{bottom:430.389313px;}
.yb6{bottom:430.620895px;}
.y84{bottom:430.635295px;}
.y1b7{bottom:431.700910px;}
.y1e8{bottom:431.752330px;}
.y154{bottom:431.759530px;}
.y27b{bottom:438.342773px;}
.y21f{bottom:442.842728px;}
.yfd{bottom:443.872936px;}
.ye9{bottom:443.877319px;}
.y124{bottom:446.127319px;}
.y10e{bottom:446.141719px;}
.y178{bottom:446.221521px;}
.yd5{bottom:447.149695px;}
.y4f{bottom:447.837616px;}
.yb5{bottom:448.620895px;}
.y83{bottom:448.628095px;}
.y1b6{bottom:449.693710px;}
.y1e7{bottom:449.745130px;}
.y153{bottom:449.752330px;}
.y27a{bottom:451.842773px;}
.y23{bottom:452.889313px;}
.y21e{bottom:456.342728px;}
.y10d{bottom:464.134519px;}
.y177{bottom:464.214321px;}
.yd4{bottom:465.142495px;}
.y279{bottom:465.342773px;}
.y4e{bottom:465.916816px;}
.y82{bottom:466.620895px;}
.y1b5{bottom:467.693710px;}
.y1e6{bottom:467.737930px;}
.y152{bottom:467.745130px;}
.y22{bottom:470.889313px;}
.y278{bottom:478.842773px;}
.y10c{bottom:482.127319px;}
.y123{bottom:482.145133px;}
.y176{bottom:482.207121px;}
.yd3{bottom:483.135295px;}
.y21d{bottom:483.342728px;}
.y4d{bottom:483.909616px;}
.yb4{bottom:484.620895px;}
.y81{bottom:484.628095px;}
.y1b4{bottom:485.722510px;}
.y151{bottom:485.737930px;}
.y1e5{bottom:485.766730px;}
.y21{bottom:488.889313px;}
.y277{bottom:492.342773px;}
.y21c{bottom:496.842728px;}
.y10a{bottom:499.216782px;}
.y10b{bottom:500.127319px;}
.y122{bottom:500.137933px;}
.y175{bottom:500.199921px;}
.yd2{bottom:501.128095px;}
.y4c{bottom:501.902416px;}
.y80{bottom:502.620895px;}
.y1b3{bottom:503.715310px;}
.y1e4{bottom:503.759530px;}
.y150{bottom:503.860376px;}
.y276{bottom:505.842773px;}
.y20{bottom:506.889313px;}
.y21b{bottom:510.342728px;}
.y174{bottom:518.199921px;}
.yd1{bottom:519.120895px;}
.y275{bottom:519.342773px;}
.y4b{bottom:519.895216px;}
.y7f{bottom:520.620895px;}
.yb3{bottom:520.649695px;}
.y1b2{bottom:521.708110px;}
.y1e3{bottom:521.752330px;}
.y14f{bottom:521.853176px;}
.y21a{bottom:523.842728px;}
.y1f{bottom:524.889313px;}
.y274{bottom:532.842773px;}
.y173{bottom:536.257521px;}
.yd0{bottom:537.135295px;}
.y249{bottom:537.342728px;}
.y4a{bottom:537.888016px;}
.y7e{bottom:538.620895px;}
.yb2{bottom:538.642495px;}
.y1b1{bottom:539.700910px;}
.y1e2{bottom:539.745130px;}
.y14e{bottom:539.845976px;}
.y1e{bottom:542.889313px;}
.y273{bottom:546.342773px;}
.y219{bottom:550.842728px;}
.y172{bottom:554.250321px;}
.ycf{bottom:555.128095px;}
.y49{bottom:555.880816px;}
.yb1{bottom:556.635295px;}
.y1b0{bottom:557.693710px;}
.y1e1{bottom:557.737930px;}
.y14d{bottom:557.838776px;}
.y272{bottom:559.842773px;}
.y1d{bottom:560.889313px;}
.y132{bottom:561.489304px;}
.y218{bottom:564.342728px;}
.y171{bottom:572.243121px;}
.yce{bottom:573.120895px;}
.y271{bottom:573.342773px;}
.y48{bottom:573.873616px;}
.y7d{bottom:574.628095px;}
.y1af{bottom:575.700910px;}
.y1e0{bottom:575.752330px;}
.y14c{bottom:575.831576px;}
.y217{bottom:577.842728px;}
.y1c{bottom:578.889313px;}
.y270{bottom:586.842773px;}
.y170{bottom:590.235921px;}
.ycd{bottom:591.142495px;}
.y216{bottom:591.342728px;}
.y47{bottom:591.866416px;}
.y7c{bottom:592.620895px;}
.y1ae{bottom:593.693710px;}
.y1df{bottom:593.745130px;}
.y14b{bottom:593.824376px;}
.y1b{bottom:596.889313px;}
.y26f{bottom:600.342773px;}
.y215{bottom:604.842728px;}
.y16f{bottom:608.228721px;}
.ycc{bottom:609.135295px;}
.y46{bottom:609.859216px;}
.y7b{bottom:610.620895px;}
.yb0{bottom:610.649695px;}
.y1ad{bottom:611.693710px;}
.y1de{bottom:611.737930px;}
.y14a{bottom:611.817176px;}
.y26e{bottom:613.842773px;}
.y214{bottom:618.342728px;}
.y1a{bottom:619.389313px;}
.y16e{bottom:626.221521px;}
.ycb{bottom:627.128095px;}
.y26d{bottom:627.342773px;}
.y45{bottom:627.852016px;}
.yaf{bottom:628.642495px;}
.y7a{bottom:628.728941px;}
.y1ac{bottom:629.715310px;}
.y1dd{bottom:629.752330px;}
.y149{bottom:629.809976px;}
.y248{bottom:631.842728px;}
.y19{bottom:637.389313px;}
.y26c{bottom:640.842773px;}
.y16d{bottom:644.214321px;}
.y247{bottom:645.342728px;}
.y44{bottom:645.844816px;}
.yae{bottom:646.635295px;}
.y79{bottom:646.721741px;}
.y1ab{bottom:647.708110px;}
.y1dc{bottom:647.745130px;}
.y148{bottom:647.802776px;}
.y26b{bottom:654.342773px;}
.y18{bottom:655.389313px;}
.y213{bottom:657.346478px;}
.y246{bottom:658.842728px;}
.y16c{bottom:662.207121px;}
.y43{bottom:663.837616px;}
.yca{bottom:663.878095px;}
.yad{bottom:664.628095px;}
.y78{bottom:664.714541px;}
.y1aa{bottom:665.700910px;}
.y1db{bottom:665.737930px;}
.y147{bottom:665.795576px;}
.y26a{bottom:667.842773px;}
.y17{bottom:673.389313px;}
.y212{bottom:676.842728px;}
.y16b{bottom:680.199921px;}
.y269{bottom:681.342773px;}
.y42{bottom:681.844816px;}
.yc9{bottom:681.870895px;}
.yac{bottom:682.620895px;}
.y77{bottom:682.707341px;}
.y1a9{bottom:683.693710px;}
.y1da{bottom:683.737930px;}
.y146{bottom:683.788376px;}
.y245{bottom:685.842773px;}
.y16{bottom:691.389313px;}
.y268{bottom:694.842773px;}
.y16a{bottom:698.199921px;}
.y41{bottom:699.837616px;}
.yc8{bottom:699.906941px;}
.yab{bottom:700.649741px;}
.y76{bottom:700.700141px;}
.y1a8{bottom:701.700910px;}
.y1d9{bottom:701.752330px;}
.y145{bottom:701.781176px;}
.y211{bottom:708.342728px;}
.y267{bottom:708.342773px;}
.y244{bottom:712.842773px;}
.y15{bottom:713.889313px;}
.y40{bottom:717.844816px;}
.yc7{bottom:717.899741px;}
.yaa{bottom:718.642541px;}
.y75{bottom:718.692941px;}
.y1a7{bottom:719.693710px;}
.y1d8{bottom:719.745130px;}
.y144{bottom:719.773976px;}
.y210{bottom:721.842728px;}
.y266{bottom:721.842773px;}
.y243{bottom:726.342773px;}
.y265{bottom:735.342773px;}
.y3f{bottom:735.837616px;}
.yc6{bottom:735.892541px;}
.ya9{bottom:736.635341px;}
.y74{bottom:736.685741px;}
.y1a6{bottom:737.693710px;}
.y1d7{bottom:737.737930px;}
.y143{bottom:737.766776px;}
.y169{bottom:737.781176px;}
.y20f{bottom:739.842728px;}
.y264{bottom:748.842773px;}
.y242{bottom:753.342773px;}
.y3e{bottom:753.852108px;}
.ya8{bottom:754.628141px;}
.y73{bottom:754.678541px;}
.y1d6{bottom:755.752376px;}
.y142{bottom:755.759576px;}
.y168{bottom:755.773976px;}
.y263{bottom:762.342773px;}
.y241{bottom:766.842773px;}
.y3d{bottom:771.844908px;}
.ya7{bottom:772.620941px;}
.yc5{bottom:772.642541px;}
.y72{bottom:772.671341px;}
.y1d5{bottom:773.745176px;}
.y141{bottom:773.752376px;}
.y1a5{bottom:773.765665px;}
.y167{bottom:773.766776px;}
.y20e{bottom:775.842773px;}
.y14{bottom:783.548112px;}
.y20d{bottom:789.342773px;}
.y3c{bottom:789.837708px;}
.ya6{bottom:790.620941px;}
.yc4{bottom:790.635341px;}
.y71{bottom:790.664141px;}
.y1d4{bottom:791.737976px;}
.y140{bottom:791.745176px;}
.y1a4{bottom:791.758465px;}
.y166{bottom:791.759576px;}
.y240{bottom:793.842773px;}
.y20c{bottom:802.842773px;}
.y13{bottom:804.548112px;}
.y23f{bottom:807.342773px;}
.y3b{bottom:807.844908px;}
.yc3{bottom:808.628141px;}
.y70{bottom:808.656941px;}
.y13f{bottom:809.737976px;}
.y1a3{bottom:809.751265px;}
.y165{bottom:809.752376px;}
.y1d3{bottom:809.773976px;}
.y20b{bottom:816.342773px;}
.y23e{bottom:820.842773px;}
.y12{bottom:825.552612px;}
.y3a{bottom:825.837708px;}
.yc2{bottom:826.620941px;}
.ya5{bottom:826.628141px;}
.y6f{bottom:826.649741px;}
.y13e{bottom:827.737976px;}
.y1a2{bottom:827.744065px;}
.y164{bottom:827.745176px;}
.y1d2{bottom:827.766776px;}
.y20a{bottom:829.842773px;}
.y23d{bottom:834.342773px;}
.y209{bottom:843.342773px;}
.y39{bottom:843.888108px;}
.ya4{bottom:844.620941px;}
.y6e{bottom:844.642541px;}
.y1a1{bottom:845.736865px;}
.y163{bottom:845.737976px;}
.y1d1{bottom:845.759576px;}
.y23c{bottom:847.842773px;}
.y208{bottom:856.842773px;}
.y23b{bottom:861.342773px;}
.y11{bottom:861.589528px;}
.y38{bottom:861.880908px;}
.ya3{bottom:862.627958px;}
.y6d{bottom:862.635341px;}
.yc1{bottom:862.678358px;}
.y1a0{bottom:863.729665px;}
.y162{bottom:863.745176px;}
.y13d{bottom:863.752376px;}
.y207{bottom:870.342773px;}
.y23a{bottom:874.842773px;}
.y37{bottom:879.873708px;}
.ya2{bottom:880.620758px;}
.y6c{bottom:880.628141px;}
.yc0{bottom:880.671158px;}
.y19f{bottom:881.722465px;}
.y161{bottom:881.737976px;}
.y13c{bottom:881.745176px;}
.y206{bottom:883.842773px;}
.y239{bottom:888.342773px;}
.y205{bottom:897.342773px;}
.y36{bottom:897.866508px;}
.y6b{bottom:898.620941px;}
.ya1{bottom:898.627958px;}
.ybf{bottom:898.663958px;}
.y19e{bottom:899.715265px;}
.y13b{bottom:899.737976px;}
.y160{bottom:899.773976px;}
.y10{bottom:900.577528px;}
.y238{bottom:901.842773px;}
.y204{bottom:910.842773px;}
.y237{bottom:915.342773px;}
.y35{bottom:915.859308px;}
.ya0{bottom:916.620758px;}
.y6a{bottom:916.649741px;}
.ybe{bottom:916.656758px;}
.y19d{bottom:917.708065px;}
.y13a{bottom:917.759576px;}
.y15f{bottom:917.766776px;}
.y1d0{bottom:917.773976px;}
.y203{bottom:924.342773px;}
.y236{bottom:928.842773px;}
.y34{bottom:933.852108px;}
.y69{bottom:934.642541px;}
.ybd{bottom:934.649558px;}
.y9f{bottom:934.663958px;}
.y19c{bottom:935.700865px;}
.y139{bottom:935.752376px;}
.y15e{bottom:935.759576px;}
.y1cf{bottom:935.766776px;}
.y202{bottom:937.842773px;}
.yf{bottom:939.565528px;}
.y235{bottom:942.342773px;}
.y201{bottom:951.342773px;}
.y33{bottom:951.844908px;}
.y68{bottom:952.635341px;}
.ybc{bottom:952.642358px;}
.y9e{bottom:952.656758px;}
.y19b{bottom:953.693665px;}
.y138{bottom:953.745176px;}
.y15d{bottom:953.752376px;}
.y1ce{bottom:953.759576px;}
.y234{bottom:955.842773px;}
.y200{bottom:964.842773px;}
.y32{bottom:969.837708px;}
.y67{bottom:970.628141px;}
.ybb{bottom:970.635158px;}
.y9d{bottom:970.649558px;}
.y19a{bottom:971.693665px;}
.y137{bottom:971.737976px;}
.y15c{bottom:971.745176px;}
.y1cd{bottom:971.752376px;}
.y1ff{bottom:978.342773px;}
.ye{bottom:978.553528px;}
.y233{bottom:982.842773px;}
.y31{bottom:987.852108px;}
.y66{bottom:988.620941px;}
.yba{bottom:988.627958px;}
.y9c{bottom:988.642358px;}
.y199{bottom:989.715265px;}
.y136{bottom:989.737976px;}
.y1cc{bottom:989.745176px;}
.y1fe{bottom:991.842773px;}
.y1fd{bottom:1005.342773px;}
.y30{bottom:1005.844908px;}
.yb9{bottom:1006.620758px;}
.y9b{bottom:1006.635158px;}
.y65{bottom:1006.639071px;}
.y198{bottom:1007.708065px;}
.y1cb{bottom:1007.737976px;}
.y135{bottom:1007.752376px;}
.y15b{bottom:1007.808404px;}
.y1fc{bottom:1018.842773px;}
.y2f{bottom:1023.837708px;}
.yb8{bottom:1024.620758px;}
.y9a{bottom:1024.627958px;}
.y64{bottom:1024.631871px;}
.y197{bottom:1025.700865px;}
.y134{bottom:1025.745176px;}
.y1ca{bottom:1025.752480px;}
.y15a{bottom:1025.801204px;}
.y1fb{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y2e{bottom:1041.837708px;}
.y99{bottom:1042.620758px;}
.y63{bottom:1042.624671px;}
.yb7{bottom:1042.625987px;}
.y196{bottom:1043.693665px;}
.y133{bottom:1043.737976px;}
.y1c9{bottom:1043.745280px;}
.y159{bottom:1043.794004px;}
.y1fa{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.yc{bottom:1122.346527px;}
.y96{bottom:1126.524628px;}
.y2c{bottom:1126.524719px;}
.y98{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y97{bottom:1127.300079px;}
.y2d{bottom:1127.304719px;}
.h7{height:13.578000px;}
.h1f{height:27.814500px;}
.h6{height:37.086000px;}
.hf{height:39.735000px;}
.h15{height:40.026000px;}
.h5{height:41.538000px;}
.h16{height:42.384000px;}
.h21{height:42.840000px;}
.h1e{height:43.785000px;}
.h3{height:45.696000px;}
.h10{height:45.744000px;}
.h20{height:45.814500px;}
.h1b{height:46.704000px;}
.h2{height:47.232000px;}
.h19{height:47.472000px;}
.h1a{height:47.682000px;}
.h8{height:52.951800px;}
.he{height:52.980000px;}
.h14{height:53.406000px;}
.h12{height:53.709599px;}
.h13{height:54.625200px;}
.h11{height:55.860000px;}
.h17{height:55.877532px;}
.hd{height:58.380000px;}
.hc{height:61.120200px;}
.h18{height:62.622447px;}
.ha{height:67.194379px;}
.hb{height:67.212379px;}
.h4{height:86.692415px;}
.h1d{height:100.679945px;}
.h1c{height:100.704000px;}
.h9{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:39.163499px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x5{left:94.683002px;}
.x7{left:97.034552px;}
.x10{left:107.539352px;}
.xc{left:134.798854px;}
.xd{left:191.906852px;}
.x3{left:270.817497px;}
.xe{left:389.487889px;}
.x9{left:457.096492px;}
.xa{left:467.582394px;}
.x8{left:469.091692px;}
.xf{left:479.586594px;}
.xb{left:487.089294px;}
.x6{left:753.380081px;}
.x4{left:768.709534px;}
@media print{
.v8{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.092254pt;}
.v7{vertical-align:-10.688049pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:8.489258pt;}
.v9{vertical-align:16.000000pt;}
.v4{vertical-align:20.907064pt;}
.v3{vertical-align:23.466471pt;}
.v6{vertical-align:48.000000pt;}
.ls3{letter-spacing:-2.983200pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.268800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000062pt;}
.lsa{letter-spacing:0.000355pt;}
.lsb{letter-spacing:0.000518pt;}
.ls13{letter-spacing:0.200000pt;}
.ls11{letter-spacing:0.560000pt;}
.ls5{letter-spacing:0.731733pt;}
.ls6{letter-spacing:0.736952pt;}
.ls8{letter-spacing:0.736960pt;}
.ls7{letter-spacing:0.747413pt;}
.lsf{letter-spacing:1.254400pt;}
.ls1{letter-spacing:4.853333pt;}
.lse{letter-spacing:6.010667pt;}
.ls9{letter-spacing:6.167467pt;}
.lsc{letter-spacing:66.901333pt;}
.ws5f{word-spacing:-12.387200pt;}
.ws6e{word-spacing:-12.282667pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws5e{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws10b{word-spacing:-8.960000pt;}
.wsbb{word-spacing:-8.832000pt;}
.ws7{word-spacing:-8.760000pt;}
.ws8c{word-spacing:-8.597867pt;}
.wse9{word-spacing:-8.280000pt;}
.ws109{word-spacing:-8.120000pt;}
.ws1{word-spacing:-7.242667pt;}
.ws10d{word-spacing:-7.080000pt;}
.ws10a{word-spacing:-6.132000pt;}
.wsbe{word-spacing:-5.913600pt;}
.wsab{word-spacing:-5.749333pt;}
.ws8b{word-spacing:-4.010667pt;}
.wsa{word-spacing:-2.464000pt;}
.wseb{word-spacing:-1.515733pt;}
.ws100{word-spacing:-1.149867pt;}
.ws11{word-spacing:-0.731733pt;}
.ws9{word-spacing:-0.693333pt;}
.wscd{word-spacing:-0.679467pt;}
.wsfa{word-spacing:-0.574933pt;}
.wsb7{word-spacing:-0.522667pt;}
.ws106{word-spacing:-0.470400pt;}
.ws102{word-spacing:-0.365867pt;}
.wse4{word-spacing:-0.261333pt;}
.wsc7{word-spacing:-0.209067pt;}
.wsc8{word-spacing:-0.156800pt;}
.ws80{word-spacing:-0.104533pt;}
.ws4c{word-spacing:-0.052267pt;}
.ws10c{word-spacing:-0.040000pt;}
.ws8{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.052267pt;}
.wsce{word-spacing:0.104533pt;}
.ws108{word-spacing:0.209067pt;}
.ws8a{word-spacing:0.261333pt;}
.wsd6{word-spacing:0.313600pt;}
.ws70{word-spacing:0.365867pt;}
.ws3e{word-spacing:0.418133pt;}
.ws36{word-spacing:0.470400pt;}
.ws5c{word-spacing:0.522667pt;}
.ws7d{word-spacing:0.679467pt;}
.ws92{word-spacing:0.731733pt;}
.ws2f{word-spacing:0.784000pt;}
.ws60{word-spacing:0.836267pt;}
.ws4b{word-spacing:0.888533pt;}
.wscc{word-spacing:0.940800pt;}
.wsaf{word-spacing:0.993067pt;}
.ws85{word-spacing:1.045333pt;}
.ws49{word-spacing:1.097600pt;}
.wsea{word-spacing:1.254400pt;}
.ws2e{word-spacing:1.306667pt;}
.ws73{word-spacing:1.411200pt;}
.wsd2{word-spacing:1.463467pt;}
.ws29{word-spacing:1.515733pt;}
.ws12{word-spacing:1.568000pt;}
.ws67{word-spacing:1.620267pt;}
.wscf{word-spacing:1.724800pt;}
.ws18{word-spacing:1.777067pt;}
.ws2a{word-spacing:1.829333pt;}
.ws19{word-spacing:1.881600pt;}
.wsd5{word-spacing:1.933867pt;}
.wse{word-spacing:2.142933pt;}
.ws97{word-spacing:2.195200pt;}
.wsa2{word-spacing:2.247467pt;}
.wsb2{word-spacing:2.299733pt;}
.ws7a{word-spacing:2.404267pt;}
.wsc9{word-spacing:2.456533pt;}
.ws9b{word-spacing:2.508800pt;}
.wse0{word-spacing:2.561067pt;}
.ws3f{word-spacing:2.717867pt;}
.ws2d{word-spacing:2.822400pt;}
.ws87{word-spacing:2.874667pt;}
.ws2{word-spacing:2.916907pt;}
.wsad{word-spacing:3.031467pt;}
.ws6f{word-spacing:3.136000pt;}
.ws7f{word-spacing:3.188267pt;}
.ws51{word-spacing:3.240533pt;}
.ws54{word-spacing:3.292800pt;}
.wsd4{word-spacing:3.449600pt;}
.ws61{word-spacing:3.501867pt;}
.wscb{word-spacing:3.554133pt;}
.wsdb{word-spacing:3.658667pt;}
.wsec{word-spacing:3.710933pt;}
.ws50{word-spacing:3.763200pt;}
.ws17{word-spacing:3.815467pt;}
.ws37{word-spacing:3.867733pt;}
.wse1{word-spacing:3.972267pt;}
.wsa3{word-spacing:4.024533pt;}
.wsd9{word-spacing:4.181333pt;}
.ws3d{word-spacing:4.233600pt;}
.ws5b{word-spacing:4.285867pt;}
.ws43{word-spacing:4.338133pt;}
.wsb4{word-spacing:4.390400pt;}
.ws2b{word-spacing:4.442667pt;}
.ws62{word-spacing:4.494933pt;}
.wsdc{word-spacing:4.599467pt;}
.ws28{word-spacing:4.651733pt;}
.ws27{word-spacing:4.704000pt;}
.wsf4{word-spacing:4.756267pt;}
.wsb5{word-spacing:4.808533pt;}
.ws58{word-spacing:4.860800pt;}
.ws71{word-spacing:4.913067pt;}
.ws105{word-spacing:4.965333pt;}
.ws96{word-spacing:5.069867pt;}
.wsc6{word-spacing:5.122133pt;}
.wsda{word-spacing:5.174400pt;}
.ws83{word-spacing:5.226667pt;}
.ws33{word-spacing:5.331200pt;}
.ws59{word-spacing:5.383467pt;}
.ws99{word-spacing:5.435733pt;}
.ws53{word-spacing:5.488000pt;}
.wsf2{word-spacing:5.592533pt;}
.ws3b{word-spacing:5.644800pt;}
.ws1a{word-spacing:5.697067pt;}
.ws81{word-spacing:5.801600pt;}
.ws94{word-spacing:5.853867pt;}
.ws93{word-spacing:5.958400pt;}
.ws52{word-spacing:6.010667pt;}
.ws66{word-spacing:6.062933pt;}
.ws8f{word-spacing:6.115200pt;}
.wsb3{word-spacing:6.167467pt;}
.wsa5{word-spacing:6.272000pt;}
.ws42{word-spacing:6.376533pt;}
.wsd1{word-spacing:6.428800pt;}
.wsa7{word-spacing:6.533333pt;}
.ws8d{word-spacing:6.637867pt;}
.ws3c{word-spacing:6.690133pt;}
.ws25{word-spacing:6.794667pt;}
.ws76{word-spacing:6.846933pt;}
.wsfd{word-spacing:6.899200pt;}
.ws40{word-spacing:7.003733pt;}
.wsaa{word-spacing:7.056000pt;}
.wse5{word-spacing:7.108267pt;}
.ws72{word-spacing:7.160533pt;}
.ws35{word-spacing:7.212800pt;}
.ws20{word-spacing:7.265067pt;}
.wsb6{word-spacing:7.317333pt;}
.ws38{word-spacing:7.421867pt;}
.ws89{word-spacing:7.474133pt;}
.wsef{word-spacing:7.630933pt;}
.ws68{word-spacing:7.683200pt;}
.wsf9{word-spacing:7.787733pt;}
.wsed{word-spacing:7.892267pt;}
.ws9d{word-spacing:7.944533pt;}
.ws2c{word-spacing:8.049067pt;}
.ws6b{word-spacing:8.101333pt;}
.ws6a{word-spacing:8.205867pt;}
.ws45{word-spacing:8.258133pt;}
.ws104{word-spacing:8.310400pt;}
.ws57{word-spacing:8.362667pt;}
.ws1c{word-spacing:8.414933pt;}
.ws91{word-spacing:8.467200pt;}
.ws6c{word-spacing:8.676267pt;}
.ws9e{word-spacing:8.728533pt;}
.ws46{word-spacing:8.780800pt;}
.ws82{word-spacing:8.885333pt;}
.ws5d{word-spacing:8.937600pt;}
.wsc{word-spacing:8.989867pt;}
.wsf6{word-spacing:9.042133pt;}
.ws5a{word-spacing:9.146667pt;}
.wsa1{word-spacing:9.251200pt;}
.wsf3{word-spacing:9.303467pt;}
.wsb{word-spacing:9.355733pt;}
.wsf{word-spacing:9.460267pt;}
.ws1b{word-spacing:9.512533pt;}
.ws56{word-spacing:9.564800pt;}
.ws24{word-spacing:9.617067pt;}
.wsa0{word-spacing:9.669333pt;}
.ws77{word-spacing:9.721600pt;}
.ws74{word-spacing:9.773867pt;}
.ws98{word-spacing:9.878400pt;}
.ws65{word-spacing:9.930667pt;}
.wsae{word-spacing:9.982933pt;}
.wsd{word-spacing:10.087467pt;}
.wsa9{word-spacing:10.139733pt;}
.ws48{word-spacing:10.244267pt;}
.ws10{word-spacing:10.296533pt;}
.wsca{word-spacing:10.401067pt;}
.wsf7{word-spacing:10.453333pt;}
.ws55{word-spacing:10.557867pt;}
.ws90{word-spacing:10.662400pt;}
.ws13{word-spacing:10.819200pt;}
.ws23{word-spacing:10.871467pt;}
.ws4d{word-spacing:11.132800pt;}
.ws1f{word-spacing:11.185067pt;}
.wsd7{word-spacing:11.237333pt;}
.ws7b{word-spacing:11.289600pt;}
.ws75{word-spacing:11.394133pt;}
.ws79{word-spacing:11.498667pt;}
.ws9a{word-spacing:11.550933pt;}
.wsa6{word-spacing:11.603200pt;}
.ws7c{word-spacing:11.707733pt;}
.ws4a{word-spacing:11.812267pt;}
.ws1e{word-spacing:11.916800pt;}
.wsd8{word-spacing:12.021333pt;}
.wsfe{word-spacing:12.073600pt;}
.wsa4{word-spacing:12.282667pt;}
.wsb8{word-spacing:12.439467pt;}
.ws44{word-spacing:12.596267pt;}
.ws4e{word-spacing:12.805333pt;}
.ws101{word-spacing:12.857600pt;}
.ws15{word-spacing:12.962133pt;}
.ws107{word-spacing:13.066667pt;}
.ws9c{word-spacing:13.171200pt;}
.wsd3{word-spacing:13.223467pt;}
.wsf8{word-spacing:13.275733pt;}
.ws63{word-spacing:13.328000pt;}
.wsde{word-spacing:13.432533pt;}
.ws30{word-spacing:13.484800pt;}
.ws21{word-spacing:13.589333pt;}
.wse3{word-spacing:13.641600pt;}
.ws31{word-spacing:13.798400pt;}
.wsb1{word-spacing:13.955200pt;}
.wsba{word-spacing:14.007467pt;}
.wsb0{word-spacing:14.059733pt;}
.wse2{word-spacing:14.216533pt;}
.wsff{word-spacing:14.268800pt;}
.ws4f{word-spacing:14.373333pt;}
.wsdf{word-spacing:14.425600pt;}
.ws88{word-spacing:14.477867pt;}
.wsc4{word-spacing:14.530133pt;}
.wsac{word-spacing:14.582400pt;}
.ws103{word-spacing:14.791467pt;}
.ws47{word-spacing:14.843733pt;}
.wse6{word-spacing:14.948267pt;}
.ws69{word-spacing:15.105067pt;}
.ws78{word-spacing:15.209600pt;}
.wsee{word-spacing:15.575467pt;}
.ws14{word-spacing:15.732267pt;}
.ws39{word-spacing:15.836800pt;}
.ws86{word-spacing:15.889067pt;}
.wsfb{word-spacing:15.941333pt;}
.ws7e{word-spacing:16.411733pt;}
.wsa8{word-spacing:16.673067pt;}
.ws32{word-spacing:16.725333pt;}
.ws22{word-spacing:16.777600pt;}
.ws64{word-spacing:17.770667pt;}
.wsc3{word-spacing:17.927467pt;}
.ws95{word-spacing:18.032000pt;}
.wsdd{word-spacing:18.293333pt;}
.wsc5{word-spacing:18.450133pt;}
.ws16{word-spacing:18.502400pt;}
.wsf0{word-spacing:18.554667pt;}
.ws26{word-spacing:18.972800pt;}
.ws8e{word-spacing:19.234133pt;}
.ws84{word-spacing:19.286400pt;}
.wsf1{word-spacing:19.756800pt;}
.ws1d{word-spacing:19.965867pt;}
.ws34{word-spacing:20.122667pt;}
.wsb9{word-spacing:20.227200pt;}
.wsc2{word-spacing:20.279467pt;}
.wsd0{word-spacing:20.697600pt;}
.ws41{word-spacing:21.742933pt;}
.wse7{word-spacing:21.795200pt;}
.wse8{word-spacing:22.631467pt;}
.wsc1{word-spacing:23.310933pt;}
.wsfc{word-spacing:24.722133pt;}
.ws6d{word-spacing:30.785067pt;}
.ws9f{word-spacing:31.516800pt;}
.wsf5{word-spacing:38.729600pt;}
.wsc0{word-spacing:83.797326pt;}
.wsbd{word-spacing:97.023992pt;}
.wsbf{word-spacing:104.618660pt;}
.wsbc{word-spacing:444.656014pt;}
._19{margin-left:-23.050667pt;}
._27{margin-left:-21.194667pt;}
._15{margin-left:-20.253867pt;}
._13{margin-left:-19.236274pt;}
._17{margin-left:-18.059733pt;}
._18{margin-left:-17.042141pt;}
._16{margin-left:-15.315200pt;}
._1b{margin-left:-13.747215pt;}
._1f{margin-left:-12.595185pt;}
._1a{margin-left:-11.186145pt;}
._14{margin-left:-10.088533pt;}
._26{margin-left:-8.960640pt;}
._3a{margin-left:-7.874606pt;}
._25{margin-left:-6.899200pt;}
._5{margin-left:-5.760000pt;}
._b{margin-left:-4.632213pt;}
._7{margin-left:-3.739186pt;}
._1{margin-left:-2.816000pt;}
._2{margin-left:-1.070933pt;}
._0{width:1.621333pt;}
._4{width:3.248373pt;}
._1d{width:4.715093pt;}
._6{width:6.144000pt;}
._a{width:7.806506pt;}
._1e{width:9.453440pt;}
._c{width:11.723413pt;}
._9{width:13.013333pt;}
._f{width:14.059186pt;}
._8{width:15.150921pt;}
._d{width:16.464000pt;}
._1c{width:19.504853pt;}
._12{width:23.520000pt;}
._e{width:25.349333pt;}
._11{width:33.322667pt;}
._10{width:37.333333pt;}
._3b{width:38.392213pt;}
._3c{width:39.739186pt;}
._32{width:46.680000pt;}
._39{width:50.998939pt;}
._20{width:57.390926pt;}
._21{width:58.525292pt;}
._31{width:65.056000pt;}
._2a{width:70.720000pt;}
._34{width:76.640000pt;}
._37{width:77.843999pt;}
._33{width:82.960000pt;}
._2b{width:85.720000pt;}
._35{width:88.640000pt;}
._30{width:91.712213pt;}
._2d{width:100.098667pt;}
._36{width:102.840000pt;}
._28{width:106.080000pt;}
._38{width:111.299186pt;}
._2c{width:113.120000pt;}
._2e{width:129.195996pt;}
._29{width:134.320000pt;}
._2f{width:148.240000pt;}
._23{width:178.389333pt;}
._22{width:182.229326pt;}
._24{width:263.850660pt;}
._3{width:1511.405289pt;}
.fsf{font-size:28.000000pt;}
.fse{font-size:29.866667pt;}
.fsd{font-size:36.586667pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsb{font-size:49.066666pt;}
.fsa{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.221680pt;}
.yb{bottom:70.229599pt;}
.ya{bottom:80.897599pt;}
.yd8{bottom:89.232269pt;}
.y18a{bottom:89.477336pt;}
.y294{bottom:89.638021pt;}
.yfc{bottom:90.557729pt;}
.y109{bottom:90.621739pt;}
.y9{bottom:91.565599pt;}
.y1f9{bottom:91.767069pt;}
.y262{bottom:92.304647pt;}
.y121{bottom:92.564129pt;}
.y62{bottom:94.078003pt;}
.y95{bottom:94.806129pt;}
.y1c8{bottom:95.740532pt;}
.y195{bottom:96.198663pt;}
.y293{bottom:101.638021pt;}
.y8{bottom:102.233599pt;}
.y1f8{bottom:103.767069pt;}
.y261{bottom:104.304647pt;}
.y189{bottom:105.502936pt;}
.yfb{bottom:106.570529pt;}
.y108{bottom:106.615339pt;}
.y120{bottom:108.557729pt;}
.ye8{bottom:109.129468pt;}
.y61{bottom:110.110003pt;}
.y94{bottom:110.799729pt;}
.y1c7{bottom:111.734132pt;}
.y194{bottom:112.401329pt;}
.y7{bottom:112.901599pt;}
.y292{bottom:113.638021pt;}
.y260{bottom:116.304647pt;}
.y232{bottom:117.637980pt;}
.ye7{bottom:121.129468pt;}
.y188{bottom:121.496536pt;}
.yfa{bottom:122.564129pt;}
.y107{bottom:122.608939pt;}
.y6{bottom:123.569599pt;}
.y131{bottom:124.570529pt;}
.y11f{bottom:124.583339pt;}
.y291{bottom:125.638021pt;}
.y60{bottom:126.103603pt;}
.y93{bottom:126.793329pt;}
.y1c6{bottom:127.727732pt;}
.y1f7{bottom:127.792669pt;}
.y25f{bottom:128.304647pt;}
.y193{bottom:128.529329pt;}
.y231{bottom:129.637980pt;}
.ye6{bottom:133.129468pt;}
.y5{bottom:134.237599pt;}
.y187{bottom:137.490136pt;}
.y290{bottom:137.638021pt;}
.yf9{bottom:138.557729pt;}
.y106{bottom:138.602539pt;}
.y25e{bottom:140.304647pt;}
.y130{bottom:140.564129pt;}
.y11e{bottom:140.576939pt;}
.y230{bottom:141.637980pt;}
.y5f{bottom:142.097203pt;}
.y92{bottom:142.786929pt;}
.y1c5{bottom:143.734132pt;}
.y1f6{bottom:143.786269pt;}
.y4{bottom:144.905599pt;}
.ye5{bottom:145.129468pt;}
.y28f{bottom:149.638021pt;}
.y25d{bottom:152.304647pt;}
.y192{bottom:152.433329pt;}
.y191{bottom:152.438675pt;}
.y186{bottom:153.483736pt;}
.yf8{bottom:154.596139pt;}
.y12f{bottom:156.564139pt;}
.y11d{bottom:156.570539pt;}
.ye4{bottom:157.129468pt;}
.y5e{bottom:158.090803pt;}
.y91{bottom:158.780529pt;}
.y1c4{bottom:159.727732pt;}
.y1f5{bottom:159.779869pt;}
.y28e{bottom:161.638021pt;}
.y25c{bottom:164.304647pt;}
.y190{bottom:164.438675pt;}
.y22f{bottom:165.637980pt;}
.ye3{bottom:169.129468pt;}
.y185{bottom:169.477336pt;}
.yf7{bottom:170.589739pt;}
.y11c{bottom:172.564139pt;}
.y28d{bottom:173.638021pt;}
.y5d{bottom:174.084403pt;}
.y90{bottom:174.774129pt;}
.y1c3{bottom:175.727743pt;}
.y1f4{bottom:175.773469pt;}
.y25b{bottom:176.304647pt;}
.y22e{bottom:177.637980pt;}
.y2b{bottom:178.988261pt;}
.ye2{bottom:181.129468pt;}
.y184{bottom:185.477336pt;}
.y18f{bottom:185.633341pt;}
.y28c{bottom:185.638021pt;}
.yf6{bottom:186.583339pt;}
.y25a{bottom:188.304647pt;}
.y12e{bottom:188.557739pt;}
.y11b{bottom:188.570539pt;}
.y22d{bottom:189.637980pt;}
.y5c{bottom:190.078003pt;}
.y8f{bottom:190.780529pt;}
.y2a{bottom:190.988261pt;}
.y1f3{bottom:191.767069pt;}
.ye1{bottom:193.129468pt;}
.y18e{bottom:197.633341pt;}
.y28b{bottom:197.638021pt;}
.y259{bottom:200.304647pt;}
.y183{bottom:201.477336pt;}
.y22c{bottom:201.637980pt;}
.yf5{bottom:202.576939pt;}
.y29{bottom:202.988261pt;}
.y12d{bottom:204.557739pt;}
.y11a{bottom:204.564139pt;}
.y5b{bottom:206.078003pt;}
.y8e{bottom:206.774129pt;}
.y1c2{bottom:207.746943pt;}
.y1f2{bottom:207.767069pt;}
.ye0{bottom:209.332135pt;}
.y28a{bottom:209.638021pt;}
.y258{bottom:212.304647pt;}
.y28{bottom:214.988261pt;}
.yf4{bottom:218.570539pt;}
.y18d{bottom:219.099996pt;}
.y119{bottom:220.557739pt;}
.y12c{bottom:220.564139pt;}
.y289{bottom:221.638021pt;}
.y5a{bottom:222.103461pt;}
.y8d{bottom:222.774129pt;}
.y1c1{bottom:223.740543pt;}
.y1f1{bottom:223.767069pt;}
.y257{bottom:224.304647pt;}
.ydf{bottom:225.460135pt;}
.y22b{bottom:225.637980pt;}
.y288{bottom:233.638021pt;}
.yf3{bottom:234.564139pt;}
.y256{bottom:236.304647pt;}
.y118{bottom:236.557739pt;}
.y182{bottom:236.622131pt;}
.yde{bottom:237.460135pt;}
.y22a{bottom:237.637980pt;}
.y59{bottom:238.097061pt;}
.y1c0{bottom:239.734143pt;}
.y18c{bottom:240.713991pt;}
.y287{bottom:245.638021pt;}
.y255{bottom:248.304647pt;}
.ydd{bottom:249.460135pt;}
.y229{bottom:249.637980pt;}
.yf2{bottom:250.557739pt;}
.y117{bottom:252.570397pt;}
.y181{bottom:252.647731pt;}
.y58{bottom:254.090661pt;}
.y8c{bottom:254.780529pt;}
.y18b{bottom:255.377991pt;}
.y1bf{bottom:255.727743pt;}
.y1f0{bottom:255.767069pt;}
.y286{bottom:257.638021pt;}
.y254{bottom:260.304647pt;}
.ydc{bottom:261.460135pt;}
.y228{bottom:261.637980pt;}
.y105{bottom:266.557597pt;}
.yf1{bottom:266.608817pt;}
.y116{bottom:268.563997pt;}
.y180{bottom:268.641331pt;}
.y285{bottom:269.638021pt;}
.y57{bottom:270.084261pt;}
.y8b{bottom:270.774129pt;}
.y1be{bottom:271.734143pt;}
.y1ef{bottom:271.779869pt;}
.y253{bottom:272.304647pt;}
.ydb{bottom:273.460135pt;}
.y227{bottom:273.637980pt;}
.y284{bottom:281.638021pt;}
.y104{bottom:282.583217pt;}
.yf0{bottom:282.602417pt;}
.y252{bottom:284.304647pt;}
.y12b{bottom:284.557597pt;}
.y115{bottom:284.563997pt;}
.y17f{bottom:284.634931pt;}
.yda{bottom:285.460135pt;}
.y226{bottom:285.637980pt;}
.y56{bottom:286.077861pt;}
.y8a{bottom:286.774129pt;}
.y1bd{bottom:287.727743pt;}
.y1ee{bottom:287.773469pt;}
.y283{bottom:293.638021pt;}
.y251{bottom:296.304647pt;}
.y225{bottom:297.637980pt;}
.y103{bottom:298.576817pt;}
.yef{bottom:298.596017pt;}
.y114{bottom:300.557597pt;}
.y12a{bottom:300.570397pt;}
.y17e{bottom:300.628531pt;}
.yd9{bottom:301.588135pt;}
.y55{bottom:302.090661pt;}
.y89{bottom:302.799729pt;}
.y1bc{bottom:303.766143pt;}
.y1ed{bottom:303.767069pt;}
.y282{bottom:305.638021pt;}
.y250{bottom:308.304647pt;}
.y224{bottom:309.637980pt;}
.y102{bottom:314.570417pt;}
.yee{bottom:314.589617pt;}
.y113{bottom:316.557597pt;}
.y129{bottom:316.563997pt;}
.y17d{bottom:316.622131pt;}
.y281{bottom:317.638021pt;}
.y54{bottom:318.084261pt;}
.y88{bottom:318.793329pt;}
.y1bb{bottom:319.759743pt;}
.y1ec{bottom:319.767069pt;}
.y158{bottom:319.811849pt;}
.y24f{bottom:320.304647pt;}
.y223{bottom:321.637980pt;}
.yd7{bottom:325.866130pt;}
.y27{bottom:326.568278pt;}
.y280{bottom:329.638021pt;}
.y101{bottom:330.564017pt;}
.yed{bottom:330.583217pt;}
.y24e{bottom:332.304647pt;}
.y128{bottom:332.564017pt;}
.y112{bottom:332.596017pt;}
.y17c{bottom:332.666952pt;}
.y222{bottom:333.637980pt;}
.y53{bottom:334.077861pt;}
.y87{bottom:334.786929pt;}
.y1ba{bottom:335.753343pt;}
.y1eb{bottom:335.779849pt;}
.y157{bottom:335.805449pt;}
.y27f{bottom:341.638021pt;}
.y24d{bottom:344.304647pt;}
.y100{bottom:346.557617pt;}
.y26{bottom:346.568278pt;}
.yec{bottom:346.576817pt;}
.y127{bottom:348.564017pt;}
.y111{bottom:348.589617pt;}
.y17b{bottom:348.660552pt;}
.y52{bottom:350.097081pt;}
.y86{bottom:350.780529pt;}
.y1b9{bottom:351.746943pt;}
.y1ea{bottom:351.773449pt;}
.y156{bottom:351.799049pt;}
.y27e{bottom:353.638021pt;}
.y24c{bottom:356.304647pt;}
.y221{bottom:357.637980pt;}
.yff{bottom:362.564017pt;}
.yeb{bottom:362.570417pt;}
.y126{bottom:364.570417pt;}
.y110{bottom:364.583217pt;}
.y17a{bottom:364.654152pt;}
.y27d{bottom:365.638021pt;}
.y51{bottom:366.090681pt;}
.y25{bottom:366.568278pt;}
.y85{bottom:366.774129pt;}
.y1b8{bottom:367.740543pt;}
.y1e9{bottom:367.767049pt;}
.y155{bottom:367.792649pt;}
.y24b{bottom:368.304647pt;}
.y220{bottom:369.637980pt;}
.y27c{bottom:377.638021pt;}
.yfe{bottom:378.557617pt;}
.yea{bottom:378.564017pt;}
.y24a{bottom:380.304647pt;}
.y125{bottom:380.564017pt;}
.y10f{bottom:380.576817pt;}
.y179{bottom:380.647752pt;}
.yd6{bottom:381.472796pt;}
.y295{bottom:381.637980pt;}
.y50{bottom:382.084281pt;}
.y24{bottom:382.568278pt;}
.yb6{bottom:382.774129pt;}
.y84{bottom:382.786929pt;}
.y1b7{bottom:383.734143pt;}
.y1e8{bottom:383.779849pt;}
.y154{bottom:383.786249pt;}
.y27b{bottom:389.638021pt;}
.y21f{bottom:393.637980pt;}
.yfd{bottom:394.553721pt;}
.ye9{bottom:394.557617pt;}
.y124{bottom:396.557617pt;}
.y10e{bottom:396.570417pt;}
.y178{bottom:396.641352pt;}
.yd5{bottom:397.466396pt;}
.y4f{bottom:398.077881pt;}
.yb5{bottom:398.774129pt;}
.y83{bottom:398.780529pt;}
.y1b6{bottom:399.727743pt;}
.y1e7{bottom:399.773449pt;}
.y153{bottom:399.779849pt;}
.y27a{bottom:401.638021pt;}
.y23{bottom:402.568278pt;}
.y21e{bottom:405.637980pt;}
.y10d{bottom:412.564017pt;}
.y177{bottom:412.634952pt;}
.yd4{bottom:413.459996pt;}
.y279{bottom:413.638021pt;}
.y4e{bottom:414.148281pt;}
.y82{bottom:414.774129pt;}
.y1b5{bottom:415.727743pt;}
.y1e6{bottom:415.767049pt;}
.y152{bottom:415.773449pt;}
.y22{bottom:418.568278pt;}
.y278{bottom:425.638021pt;}
.y10c{bottom:428.557617pt;}
.y123{bottom:428.573452pt;}
.y176{bottom:428.628552pt;}
.yd3{bottom:429.453596pt;}
.y21d{bottom:429.637980pt;}
.y4d{bottom:430.141881pt;}
.yb4{bottom:430.774129pt;}
.y81{bottom:430.780529pt;}
.y1b4{bottom:431.753343pt;}
.y151{bottom:431.767049pt;}
.y1e5{bottom:431.792649pt;}
.y21{bottom:434.568278pt;}
.y277{bottom:437.638021pt;}
.y21c{bottom:441.637980pt;}
.y10a{bottom:443.748250pt;}
.y10b{bottom:444.557617pt;}
.y122{bottom:444.567052pt;}
.y175{bottom:444.622152pt;}
.yd2{bottom:445.447196pt;}
.y4c{bottom:446.135481pt;}
.y80{bottom:446.774129pt;}
.y1b3{bottom:447.746943pt;}
.y1e4{bottom:447.786249pt;}
.y150{bottom:447.875890pt;}
.y276{bottom:449.638021pt;}
.y20{bottom:450.568278pt;}
.y21b{bottom:453.637980pt;}
.y174{bottom:460.622152pt;}
.yd1{bottom:461.440796pt;}
.y275{bottom:461.638021pt;}
.y4b{bottom:462.129081pt;}
.y7f{bottom:462.774129pt;}
.yb3{bottom:462.799729pt;}
.y1b2{bottom:463.740543pt;}
.y1e3{bottom:463.779849pt;}
.y14f{bottom:463.869490pt;}
.y21a{bottom:465.637980pt;}
.y1f{bottom:466.568278pt;}
.y274{bottom:473.638021pt;}
.y173{bottom:476.673352pt;}
.yd0{bottom:477.453596pt;}
.y249{bottom:477.637980pt;}
.y4a{bottom:478.122681pt;}
.y7e{bottom:478.774129pt;}
.yb2{bottom:478.793329pt;}
.y1b1{bottom:479.734143pt;}
.y1e2{bottom:479.773449pt;}
.y14e{bottom:479.863090pt;}
.y1e{bottom:482.568278pt;}
.y273{bottom:485.638021pt;}
.y219{bottom:489.637980pt;}
.y172{bottom:492.666952pt;}
.ycf{bottom:493.447196pt;}
.y49{bottom:494.116281pt;}
.yb1{bottom:494.786929pt;}
.y1b0{bottom:495.727743pt;}
.y1e1{bottom:495.767049pt;}
.y14d{bottom:495.856690pt;}
.y272{bottom:497.638021pt;}
.y1d{bottom:498.568278pt;}
.y132{bottom:499.101603pt;}
.y218{bottom:501.637980pt;}
.y171{bottom:508.660552pt;}
.yce{bottom:509.440796pt;}
.y271{bottom:509.638021pt;}
.y48{bottom:510.109881pt;}
.y7d{bottom:510.780529pt;}
.y1af{bottom:511.734143pt;}
.y1e0{bottom:511.779849pt;}
.y14c{bottom:511.850290pt;}
.y217{bottom:513.637980pt;}
.y1c{bottom:514.568278pt;}
.y270{bottom:521.638021pt;}
.y170{bottom:524.654152pt;}
.ycd{bottom:525.459996pt;}
.y216{bottom:525.637980pt;}
.y47{bottom:526.103481pt;}
.y7c{bottom:526.774129pt;}
.y1ae{bottom:527.727743pt;}
.y1df{bottom:527.773449pt;}
.y14b{bottom:527.843890pt;}
.y1b{bottom:530.568278pt;}
.y26f{bottom:533.638021pt;}
.y215{bottom:537.637980pt;}
.y16f{bottom:540.647752pt;}
.ycc{bottom:541.453596pt;}
.y46{bottom:542.097081pt;}
.y7b{bottom:542.774129pt;}
.yb0{bottom:542.799729pt;}
.y1ad{bottom:543.727743pt;}
.y1de{bottom:543.767049pt;}
.y14a{bottom:543.837490pt;}
.y26e{bottom:545.638021pt;}
.y214{bottom:549.637980pt;}
.y1a{bottom:550.568278pt;}
.y16e{bottom:556.641352pt;}
.ycb{bottom:557.447196pt;}
.y26d{bottom:557.638021pt;}
.y45{bottom:558.090681pt;}
.yaf{bottom:558.793329pt;}
.y7a{bottom:558.870170pt;}
.y1ac{bottom:559.746943pt;}
.y1dd{bottom:559.779849pt;}
.y149{bottom:559.831090pt;}
.y248{bottom:561.637980pt;}
.y19{bottom:566.568278pt;}
.y26c{bottom:569.638021pt;}
.y16d{bottom:572.634952pt;}
.y247{bottom:573.637980pt;}
.y44{bottom:574.084281pt;}
.yae{bottom:574.786929pt;}
.y79{bottom:574.863770pt;}
.y1ab{bottom:575.740543pt;}
.y1dc{bottom:575.773449pt;}
.y148{bottom:575.824690pt;}
.y26b{bottom:581.638021pt;}
.y18{bottom:582.568278pt;}
.y213{bottom:584.307980pt;}
.y246{bottom:585.637980pt;}
.y16c{bottom:588.628552pt;}
.y43{bottom:590.077881pt;}
.yca{bottom:590.113863pt;}
.yad{bottom:590.780529pt;}
.y78{bottom:590.857370pt;}
.y1aa{bottom:591.734143pt;}
.y1db{bottom:591.767049pt;}
.y147{bottom:591.818290pt;}
.y26a{bottom:593.638021pt;}
.y17{bottom:598.568278pt;}
.y212{bottom:601.637980pt;}
.y16b{bottom:604.622152pt;}
.y269{bottom:605.638021pt;}
.y42{bottom:606.084281pt;}
.yc9{bottom:606.107463pt;}
.yac{bottom:606.774129pt;}
.y77{bottom:606.850970pt;}
.y1a9{bottom:607.727743pt;}
.y1da{bottom:607.767049pt;}
.y146{bottom:607.811890pt;}
.y245{bottom:609.638021pt;}
.y16{bottom:614.568278pt;}
.y268{bottom:617.638021pt;}
.y16a{bottom:620.622152pt;}
.y41{bottom:622.077881pt;}
.yc8{bottom:622.139503pt;}
.yab{bottom:622.799770pt;}
.y76{bottom:622.844570pt;}
.y1a8{bottom:623.734143pt;}
.y1d9{bottom:623.779849pt;}
.y145{bottom:623.805490pt;}
.y211{bottom:629.637980pt;}
.y267{bottom:629.638021pt;}
.y244{bottom:633.638021pt;}
.y15{bottom:634.568278pt;}
.y40{bottom:638.084281pt;}
.yc7{bottom:638.133103pt;}
.yaa{bottom:638.793370pt;}
.y75{bottom:638.838170pt;}
.y1a7{bottom:639.727743pt;}
.y1d8{bottom:639.773449pt;}
.y144{bottom:639.799090pt;}
.y210{bottom:641.637980pt;}
.y266{bottom:641.638021pt;}
.y243{bottom:645.638021pt;}
.y265{bottom:653.638021pt;}
.y3f{bottom:654.077881pt;}
.yc6{bottom:654.126703pt;}
.ya9{bottom:654.786970pt;}
.y74{bottom:654.831770pt;}
.y1a6{bottom:655.727743pt;}
.y1d7{bottom:655.767049pt;}
.y143{bottom:655.792690pt;}
.y169{bottom:655.805490pt;}
.y20f{bottom:657.637980pt;}
.y264{bottom:665.638021pt;}
.y242{bottom:669.638021pt;}
.y3e{bottom:670.090762pt;}
.ya8{bottom:670.780570pt;}
.y73{bottom:670.825370pt;}
.y1d6{bottom:671.779890pt;}
.y142{bottom:671.786290pt;}
.y168{bottom:671.799090pt;}
.y263{bottom:677.638021pt;}
.y241{bottom:681.638021pt;}
.y3d{bottom:686.084362pt;}
.ya7{bottom:686.774170pt;}
.yc5{bottom:686.793370pt;}
.y72{bottom:686.818970pt;}
.y1d5{bottom:687.773490pt;}
.y141{bottom:687.779890pt;}
.y1a5{bottom:687.791702pt;}
.y167{bottom:687.792690pt;}
.y20e{bottom:689.638021pt;}
.y14{bottom:696.487211pt;}
.y20d{bottom:701.638021pt;}
.y3c{bottom:702.077962pt;}
.ya6{bottom:702.774170pt;}
.yc4{bottom:702.786970pt;}
.y71{bottom:702.812570pt;}
.y1d4{bottom:703.767090pt;}
.y140{bottom:703.773490pt;}
.y1a4{bottom:703.785302pt;}
.y166{bottom:703.786290pt;}
.y240{bottom:705.638021pt;}
.y20c{bottom:713.638021pt;}
.y13{bottom:715.153878pt;}
.y23f{bottom:717.638021pt;}
.y3b{bottom:718.084362pt;}
.yc3{bottom:718.780570pt;}
.y70{bottom:718.806170pt;}
.y13f{bottom:719.767090pt;}
.y1a3{bottom:719.778902pt;}
.y165{bottom:719.779890pt;}
.y1d3{bottom:719.799090pt;}
.y20b{bottom:725.638021pt;}
.y23e{bottom:729.638021pt;}
.y12{bottom:733.824544pt;}
.y3a{bottom:734.077962pt;}
.yc2{bottom:734.774170pt;}
.ya5{bottom:734.780570pt;}
.y6f{bottom:734.799770pt;}
.y13e{bottom:735.767090pt;}
.y1a2{bottom:735.772502pt;}
.y164{bottom:735.773490pt;}
.y1d2{bottom:735.792690pt;}
.y20a{bottom:737.638021pt;}
.y23d{bottom:741.638021pt;}
.y209{bottom:749.638021pt;}
.y39{bottom:750.122762pt;}
.ya4{bottom:750.774170pt;}
.y6e{bottom:750.793370pt;}
.y1a1{bottom:751.766102pt;}
.y163{bottom:751.767090pt;}
.y1d1{bottom:751.786290pt;}
.y23c{bottom:753.638021pt;}
.y208{bottom:761.638021pt;}
.y23b{bottom:765.638021pt;}
.y11{bottom:765.857358pt;}
.y38{bottom:766.116362pt;}
.ya3{bottom:766.780407pt;}
.y6d{bottom:766.786970pt;}
.yc1{bottom:766.825207pt;}
.y1a0{bottom:767.759702pt;}
.y162{bottom:767.773490pt;}
.y13d{bottom:767.779890pt;}
.y207{bottom:773.638021pt;}
.y23a{bottom:777.638021pt;}
.y37{bottom:782.109962pt;}
.ya2{bottom:782.774007pt;}
.y6c{bottom:782.780570pt;}
.yc0{bottom:782.818807pt;}
.y19f{bottom:783.753302pt;}
.y161{bottom:783.767090pt;}
.y13c{bottom:783.773490pt;}
.y206{bottom:785.638021pt;}
.y239{bottom:789.638021pt;}
.y205{bottom:797.638021pt;}
.y36{bottom:798.103562pt;}
.y6b{bottom:798.774170pt;}
.ya1{bottom:798.780407pt;}
.ybf{bottom:798.812407pt;}
.y19e{bottom:799.746902pt;}
.y13b{bottom:799.767090pt;}
.y160{bottom:799.799090pt;}
.y10{bottom:800.513358pt;}
.y238{bottom:801.638021pt;}
.y204{bottom:809.638021pt;}
.y237{bottom:813.638021pt;}
.y35{bottom:814.097162pt;}
.ya0{bottom:814.774007pt;}
.y6a{bottom:814.799770pt;}
.ybe{bottom:814.806007pt;}
.y19d{bottom:815.740502pt;}
.y13a{bottom:815.786290pt;}
.y15f{bottom:815.792690pt;}
.y1d0{bottom:815.799090pt;}
.y203{bottom:821.638021pt;}
.y236{bottom:825.638021pt;}
.y34{bottom:830.090762pt;}
.y69{bottom:830.793370pt;}
.ybd{bottom:830.799607pt;}
.y9f{bottom:830.812407pt;}
.y19c{bottom:831.734102pt;}
.y139{bottom:831.779890pt;}
.y15e{bottom:831.786290pt;}
.y1cf{bottom:831.792690pt;}
.y202{bottom:833.638021pt;}
.yf{bottom:835.169358pt;}
.y235{bottom:837.638021pt;}
.y201{bottom:845.638021pt;}
.y33{bottom:846.084362pt;}
.y68{bottom:846.786970pt;}
.ybc{bottom:846.793207pt;}
.y9e{bottom:846.806007pt;}
.y19b{bottom:847.727702pt;}
.y138{bottom:847.773490pt;}
.y15d{bottom:847.779890pt;}
.y1ce{bottom:847.786290pt;}
.y234{bottom:849.638021pt;}
.y200{bottom:857.638021pt;}
.y32{bottom:862.077962pt;}
.y67{bottom:862.780570pt;}
.ybb{bottom:862.786807pt;}
.y9d{bottom:862.799607pt;}
.y19a{bottom:863.727702pt;}
.y137{bottom:863.767090pt;}
.y15c{bottom:863.773490pt;}
.y1cd{bottom:863.779890pt;}
.y1ff{bottom:869.638021pt;}
.ye{bottom:869.825358pt;}
.y233{bottom:873.638021pt;}
.y31{bottom:878.090762pt;}
.y66{bottom:878.774170pt;}
.yba{bottom:878.780407pt;}
.y9c{bottom:878.793207pt;}
.y199{bottom:879.746902pt;}
.y136{bottom:879.767090pt;}
.y1cc{bottom:879.773490pt;}
.y1fe{bottom:881.638021pt;}
.y1fd{bottom:893.638021pt;}
.y30{bottom:894.084362pt;}
.yb9{bottom:894.774007pt;}
.y9b{bottom:894.786807pt;}
.y65{bottom:894.790285pt;}
.y198{bottom:895.740502pt;}
.y1cb{bottom:895.767090pt;}
.y135{bottom:895.779890pt;}
.y15b{bottom:895.829693pt;}
.y1fc{bottom:905.638021pt;}
.y2f{bottom:910.077962pt;}
.yb8{bottom:910.774007pt;}
.y9a{bottom:910.780407pt;}
.y64{bottom:910.783885pt;}
.y197{bottom:911.734102pt;}
.y134{bottom:911.773490pt;}
.y1ca{bottom:911.779982pt;}
.y15a{bottom:911.823293pt;}
.y1fb{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y2e{bottom:926.077962pt;}
.y99{bottom:926.774007pt;}
.y63{bottom:926.777485pt;}
.yb7{bottom:926.778655pt;}
.y196{bottom:927.727702pt;}
.y133{bottom:927.767090pt;}
.y1c9{bottom:927.773582pt;}
.y159{bottom:927.816893pt;}
.y1fa{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.yc{bottom:997.641357pt;}
.y96{bottom:1001.355225pt;}
.y2c{bottom:1001.355306pt;}
.y98{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y97{bottom:1002.044515pt;}
.y2d{bottom:1002.048639pt;}
.h7{height:12.069333pt;}
.h1f{height:24.724000pt;}
.h6{height:32.965333pt;}
.hf{height:35.320000pt;}
.h15{height:35.578667pt;}
.h5{height:36.922667pt;}
.h16{height:37.674667pt;}
.h21{height:38.080000pt;}
.h1e{height:38.920000pt;}
.h3{height:40.618667pt;}
.h10{height:40.661333pt;}
.h20{height:40.724000pt;}
.h1b{height:41.514667pt;}
.h2{height:41.984000pt;}
.h19{height:42.197333pt;}
.h1a{height:42.384000pt;}
.h8{height:47.068267pt;}
.he{height:47.093333pt;}
.h14{height:47.472000pt;}
.h12{height:47.741866pt;}
.h13{height:48.555733pt;}
.h11{height:49.653333pt;}
.h17{height:49.668918pt;}
.hd{height:51.893333pt;}
.hc{height:54.329067pt;}
.h18{height:55.664397pt;}
.ha{height:59.728337pt;}
.hb{height:59.744337pt;}
.h4{height:77.059924pt;}
.h1d{height:89.493285pt;}
.h1c{height:89.514667pt;}
.h9{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:34.811999pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x5{left:84.162669pt;}
.x7{left:86.252935pt;}
.x10{left:95.590535pt;}
.xc{left:119.821204pt;}
.xd{left:170.583869pt;}
.x3{left:240.726664pt;}
.xe{left:346.211457pt;}
.x9{left:406.307993pt;}
.xa{left:415.628794pt;}
.x8{left:416.970393pt;}
.xf{left:426.299194pt;}
.xb{left:432.968261pt;}
.x6{left:669.671183pt;}
.x4{left:683.297363pt;}
}




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