
    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_f53d3bd32d5dfea8309a0af6.woff')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_61bcbce881400a596954450c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7025182970d36b18f96019c9.woff')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_2126e57246d07f77aac08970.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ba295b0ddc22335754a1f684.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_80bcf3ccf1b8f9ce5ed9a78b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0f74c7797bc3d874abdd0185.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eb252f0312b4574dbd9abbd6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_62afe12e24beb4a0a195222e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bd0297865ac713142032710a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cabd196889b90f6ee78312c3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0f15aa2cd02b84df87381241.woff')format("woff");}.ffc{font-family:ffc;line-height:1.113000;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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.488000px;}
.v1{vertical-align:26.399780px;}
.v4{vertical-align:54.000000px;}
.ls6{letter-spacing:-1.344000px;}
.ls4{letter-spacing:-1.050000px;}
.ls7{letter-spacing:-0.432000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.584916px;}
.ls11{letter-spacing:0.584963px;}
.ls1d{letter-spacing:0.584972px;}
.lsf{letter-spacing:0.585000px;}
.ls19{letter-spacing:0.589471px;}
.lsb{letter-spacing:0.589479px;}
.ls15{letter-spacing:0.589488px;}
.ls21{letter-spacing:0.589500px;}
.ls1f{letter-spacing:0.593944px;}
.ls20{letter-spacing:0.593979px;}
.ls13{letter-spacing:0.593992px;}
.lsc{letter-spacing:0.594000px;}
.ls1a{letter-spacing:0.594065px;}
.ls23{letter-spacing:0.598463px;}
.ls1b{letter-spacing:0.598479px;}
.ls22{letter-spacing:0.603000px;}
.ls14{letter-spacing:0.625463px;}
.ls24{letter-spacing:0.629966px;}
.ls12{letter-spacing:0.629981px;}
.ls18{letter-spacing:0.629993px;}
.ls8{letter-spacing:0.630000px;}
.lse{letter-spacing:0.634473px;}
.ls1e{letter-spacing:0.634479px;}
.lsa{letter-spacing:0.634484px;}
.ls9{letter-spacing:0.634500px;}
.ls10{letter-spacing:0.638958px;}
.ls17{letter-spacing:0.643480px;}
.ls16{letter-spacing:0.643500px;}
.ls1c{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.823200px;}
.ls5{letter-spacing:1.176000px;}
.ls2{letter-spacing:5.460000px;}
.ls0{letter-spacing:38.305827px;}
.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;}
}
.ws4{word-spacing:-21.216000px;}
.ws22{word-spacing:-14.641200px;}
.ws2{word-spacing:-13.818000px;}
.ws1{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.ws9{word-spacing:-11.682000px;}
.wsf2{word-spacing:-11.426400px;}
.wsf7{word-spacing:-10.485000px;}
.ws5{word-spacing:-10.176000px;}
.ws0{word-spacing:-10.117800px;}
.ws6{word-spacing:-9.855000px;}
.wsd7{word-spacing:-9.696000px;}
.wsf1{word-spacing:-9.315000px;}
.wsf5{word-spacing:-8.730000px;}
.ws21{word-spacing:-8.148000px;}
.ws7{word-spacing:-6.898500px;}
.ws18{word-spacing:-4.602000px;}
.wsab{word-spacing:-1.680000px;}
.wsce{word-spacing:-0.999600px;}
.ws13{word-spacing:-0.823200px;}
.ws23{word-spacing:-0.705600px;}
.ws1d{word-spacing:-0.672000px;}
.ws12{word-spacing:-0.646800px;}
.wsf6{word-spacing:-0.630000px;}
.ws40{word-spacing:-0.588000px;}
.ws5a{word-spacing:-0.470400px;}
.ws20{word-spacing:-0.420000px;}
.ws72{word-spacing:-0.411600px;}
.ws49{word-spacing:-0.352800px;}
.ws67{word-spacing:-0.294000px;}
.wsf{word-spacing:-0.235200px;}
.ws7d{word-spacing:-0.176400px;}
.ws63{word-spacing:-0.117600px;}
.ws69{word-spacing:-0.058800px;}
.ws8{word-spacing:0.000000px;}
.ws89{word-spacing:0.058800px;}
.ws27{word-spacing:0.117600px;}
.ws34{word-spacing:0.176400px;}
.ws7a{word-spacing:0.294000px;}
.ws9a{word-spacing:0.352800px;}
.ws6a{word-spacing:0.411600px;}
.wsbd{word-spacing:0.470400px;}
.ws1e{word-spacing:0.504000px;}
.ws92{word-spacing:0.529200px;}
.ws4a{word-spacing:0.588000px;}
.ws3d{word-spacing:0.646800px;}
.ws88{word-spacing:0.705600px;}
.ws1c{word-spacing:0.714000px;}
.wse8{word-spacing:0.823200px;}
.ws1f{word-spacing:0.882000px;}
.ws82{word-spacing:0.940800px;}
.ws3f{word-spacing:0.999600px;}
.wsa4{word-spacing:1.058400px;}
.ws96{word-spacing:1.117200px;}
.wsdf{word-spacing:1.176000px;}
.ws70{word-spacing:1.234800px;}
.ws7c{word-spacing:1.293600px;}
.wsf0{word-spacing:1.352400px;}
.ws7e{word-spacing:1.411200px;}
.wsda{word-spacing:1.470000px;}
.ws32{word-spacing:1.528800px;}
.ws35{word-spacing:1.587600px;}
.ws5c{word-spacing:1.646400px;}
.ws2d{word-spacing:1.705200px;}
.ws50{word-spacing:1.764000px;}
.wsa{word-spacing:1.822800px;}
.ws64{word-spacing:1.881600px;}
.ws77{word-spacing:1.999200px;}
.ws81{word-spacing:2.058000px;}
.ws60{word-spacing:2.116800px;}
.ws37{word-spacing:2.175600px;}
.ws2a{word-spacing:2.234400px;}
.wsbc{word-spacing:2.293200px;}
.ws6d{word-spacing:2.352000px;}
.ws4f{word-spacing:2.410800px;}
.ws76{word-spacing:2.469600px;}
.ws8b{word-spacing:2.528400px;}
.ws26{word-spacing:2.587200px;}
.ws2b{word-spacing:2.646000px;}
.wsd6{word-spacing:2.704800px;}
.ws5f{word-spacing:2.763600px;}
.ws71{word-spacing:2.822400px;}
.ws7b{word-spacing:2.881200px;}
.wsb0{word-spacing:2.940000px;}
.ws44{word-spacing:2.998800px;}
.ws9c{word-spacing:3.057600px;}
.ws1b{word-spacing:3.066000px;}
.ws3c{word-spacing:3.116400px;}
.ws4d{word-spacing:3.175200px;}
.wsb{word-spacing:3.234000px;}
.ws43{word-spacing:3.292800px;}
.wsdd{word-spacing:3.351600px;}
.ws53{word-spacing:3.410400px;}
.ws6b{word-spacing:3.469200px;}
.ws41{word-spacing:3.528000px;}
.wsd3{word-spacing:3.586800px;}
.ws4c{word-spacing:3.645600px;}
.ws4b{word-spacing:3.704400px;}
.ws1a{word-spacing:3.738000px;}
.ws95{word-spacing:3.763200px;}
.ws4e{word-spacing:3.822000px;}
.wsf3{word-spacing:3.880800px;}
.wscf{word-spacing:3.939600px;}
.wsaa{word-spacing:3.998400px;}
.ws19{word-spacing:4.032000px;}
.ws6e{word-spacing:4.116000px;}
.wsee{word-spacing:4.174800px;}
.ws8a{word-spacing:4.292400px;}
.wsd4{word-spacing:4.351200px;}
.ws36{word-spacing:4.410000px;}
.ws55{word-spacing:4.468800px;}
.ws24{word-spacing:4.527600px;}
.wse6{word-spacing:4.586400px;}
.ws5b{word-spacing:4.645200px;}
.ws14{word-spacing:4.704000px;}
.ws83{word-spacing:4.762800px;}
.ws29{word-spacing:4.821600px;}
.ws6c{word-spacing:4.880400px;}
.ws2f{word-spacing:4.939200px;}
.wsd8{word-spacing:4.998000px;}
.ws45{word-spacing:5.056800px;}
.ws52{word-spacing:5.115600px;}
.ws54{word-spacing:5.174400px;}
.wsf4{word-spacing:5.233200px;}
.ws73{word-spacing:5.292000px;}
.wsca{word-spacing:5.350800px;}
.ws39{word-spacing:5.409600px;}
.wscc{word-spacing:5.468400px;}
.ws3b{word-spacing:5.586000px;}
.ws98{word-spacing:5.703600px;}
.wsed{word-spacing:5.762400px;}
.wsd0{word-spacing:5.821200px;}
.wsd{word-spacing:5.880000px;}
.ws16{word-spacing:5.938800px;}
.ws3a{word-spacing:5.997600px;}
.wsb4{word-spacing:6.056400px;}
.ws31{word-spacing:6.115200px;}
.ws46{word-spacing:6.174000px;}
.ws66{word-spacing:6.232800px;}
.ws6f{word-spacing:6.291600px;}
.wsb3{word-spacing:6.350400px;}
.ws75{word-spacing:6.409200px;}
.ws80{word-spacing:6.526800px;}
.ws59{word-spacing:6.585600px;}
.ws3e{word-spacing:6.644400px;}
.wsa3{word-spacing:6.703200px;}
.wse{word-spacing:6.762000px;}
.ws15{word-spacing:6.820800px;}
.wsdc{word-spacing:6.879600px;}
.ws97{word-spacing:6.938400px;}
.ws51{word-spacing:6.997200px;}
.ws91{word-spacing:7.056000px;}
.ws47{word-spacing:7.114800px;}
.ws28{word-spacing:7.232400px;}
.ws48{word-spacing:7.291200px;}
.ws5d{word-spacing:7.350000px;}
.wsa2{word-spacing:7.408800px;}
.ws99{word-spacing:7.526400px;}
.ws79{word-spacing:7.585200px;}
.ws90{word-spacing:7.644000px;}
.ws68{word-spacing:7.702800px;}
.ws11{word-spacing:7.761600px;}
.ws9b{word-spacing:7.820400px;}
.ws17{word-spacing:7.879200px;}
.wse7{word-spacing:7.996800px;}
.ws74{word-spacing:8.055600px;}
.wsac{word-spacing:8.114400px;}
.wscb{word-spacing:8.173200px;}
.wsec{word-spacing:8.290800px;}
.wsae{word-spacing:8.349600px;}
.ws65{word-spacing:8.467200px;}
.ws94{word-spacing:8.526000px;}
.ws42{word-spacing:8.584800px;}
.ws56{word-spacing:8.702400px;}
.ws30{word-spacing:8.761200px;}
.wse0{word-spacing:8.820000px;}
.ws10{word-spacing:8.937600px;}
.ws33{word-spacing:9.055200px;}
.wsc{word-spacing:9.114000px;}
.wse9{word-spacing:9.172800px;}
.wse1{word-spacing:9.290400px;}
.ws2e{word-spacing:9.408000px;}
.ws62{word-spacing:9.466800px;}
.ws87{word-spacing:9.643200px;}
.ws93{word-spacing:9.760800px;}
.wscd{word-spacing:9.819600px;}
.wsde{word-spacing:9.878400px;}
.wsd1{word-spacing:9.937200px;}
.ws61{word-spacing:9.996000px;}
.wsc9{word-spacing:10.054800px;}
.wsea{word-spacing:10.113600px;}
.wse5{word-spacing:10.584000px;}
.ws5e{word-spacing:10.701600px;}
.wse3{word-spacing:10.760400px;}
.ws7f{word-spacing:10.878000px;}
.ws8d{word-spacing:10.936800px;}
.wseb{word-spacing:10.995600px;}
.wsaf{word-spacing:11.054400px;}
.wse2{word-spacing:11.172000px;}
.wsad{word-spacing:11.230800px;}
.ws58{word-spacing:11.348400px;}
.wsef{word-spacing:11.877600px;}
.ws8f{word-spacing:11.936400px;}
.wsd5{word-spacing:11.995200px;}
.ws8c{word-spacing:12.289200px;}
.wsdb{word-spacing:12.348000px;}
.wsbe{word-spacing:12.465600px;}
.ws8e{word-spacing:12.524400px;}
.wsd2{word-spacing:12.818400px;}
.wsd9{word-spacing:12.994800px;}
.wsb2{word-spacing:13.524000px;}
.ws84{word-spacing:13.759200px;}
.ws78{word-spacing:13.935600px;}
.ws38{word-spacing:14.347200px;}
.ws9d{word-spacing:14.758800px;}
.ws25{word-spacing:14.876400px;}
.wsb1{word-spacing:15.111600px;}
.wse4{word-spacing:15.288000px;}
.ws86{word-spacing:16.170000px;}
.ws57{word-spacing:16.993200px;}
.wsa5{word-spacing:17.816400px;}
.ws85{word-spacing:19.992000px;}
.ws2c{word-spacing:20.050800px;}
.wsb9{word-spacing:31.008000px;}
.wsb6{word-spacing:31.488000px;}
.wsb7{word-spacing:75.792000px;}
.wsbb{word-spacing:151.296000px;}
.wsa8{word-spacing:168.047992px;}
.wsa6{word-spacing:168.048000px;}
.wsa9{word-spacing:179.951993px;}
.wsa7{word-spacing:212.351993px;}
.wsba{word-spacing:949.444800px;}
.wsb5{word-spacing:956.879956px;}
.wsb8{word-spacing:957.599956px;}
.ws9e{word-spacing:1711.104000px;}
.wsc2{word-spacing:1730.020800px;}
.wsbf{word-spacing:1737.984000px;}
.wsc4{word-spacing:1741.680000px;}
.wsa0{word-spacing:1742.640000px;}
.ws9f{word-spacing:1764.144000px;}
.wsc7{word-spacing:1778.352000px;}
.wsc5{word-spacing:1794.816000px;}
.wsc1{word-spacing:1799.136000px;}
.wsa1{word-spacing:1799.520000px;}
.wsc0{word-spacing:1825.056000px;}
.wsc6{word-spacing:1826.352000px;}
.wsc8{word-spacing:1832.928000px;}
.wsc3{word-spacing:1851.504000px;}
._3{margin-left:-11.701800px;}
._d{margin-left:-10.381800px;}
._c{margin-left:-9.072000px;}
._f{margin-left:-8.070960px;}
._11{margin-left:-6.885480px;}
._8{margin-left:-5.421360px;}
._6{margin-left:-3.827880px;}
._a{margin-left:-2.767320px;}
._0{margin-left:-1.584000px;}
._4{width:1.405320px;}
._1{width:2.563200px;}
._5{width:3.575040px;}
._7{width:5.579760px;}
._12{width:6.699600px;}
._9{width:7.761600px;}
._4e{width:10.527480px;}
._e{width:11.807040px;}
._10{width:15.295320px;}
._b{width:17.363988px;}
._2{width:37.904379px;}
._41{width:41.424000px;}
._25{width:49.570668px;}
._42{width:53.856000px;}
._4b{width:64.896000px;}
._2b{width:111.647988px;}
._40{width:119.856000px;}
._2c{width:128.064000px;}
._48{width:135.840000px;}
._43{width:143.711990px;}
._3f{width:161.760000px;}
._4a{width:166.655995px;}
._33{width:177.983993px;}
._30{width:181.679988px;}
._29{width:183.599988px;}
._49{width:185.184000px;}
._34{width:190.415992px;}
._3d{width:191.431565px;}
._2d{width:197.471988px;}
._3a{width:200.819870px;}
._23{width:205.151988px;}
._2e{width:206.303988px;}
._35{width:207.599978px;}
._38{width:208.943978px;}
._31{width:220.127978px;}
._27{width:226.463988px;}
._3c{width:227.874000px;}
._32{width:257.208255px;}
._3b{width:258.528000px;}
._37{width:264.672000px;}
._36{width:280.248265px;}
._4c{width:294.466680px;}
._21{width:296.927988px;}
._1f{width:298.115868px;}
._2f{width:314.400000px;}
._1d{width:319.631988px;}
._39{width:321.719735px;}
._45{width:373.941316px;}
._4d{width:470.736000px;}
._20{width:520.368000px;}
._24{width:544.752000px;}
._28{width:546.466680px;}
._44{width:564.719956px;}
._3e{width:611.615956px;}
._47{width:696.768000px;}
._46{width:789.984000px;}
._2a{width:928.752000px;}
._22{width:984.288000px;}
._26{width:1057.488000px;}
._1e{width:1229.184000px;}
._19{width:1344.479955px;}
._1c{width:1372.882672px;}
._17{width:1473.840000px;}
._16{width:1510.320000px;}
._15{width:1543.872000px;}
._1a{width:1549.570626px;}
._14{width:1565.794680px;}
._1b{width:1590.624000px;}
._18{width:1609.474680px;}
._13{width:1621.660800px;}
._4f{width:1683.552000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.500000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs2{font-size:46.199999px;}
.fs8{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:55.199999px;}
.fs4{font-size:58.800000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:61.800000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:75.000000px;}
.fs6{font-size:78.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:4.687042px;}
.y32{bottom:27.187042px;}
.y2c{bottom:63.795300px;}
.y2b{bottom:75.796800px;}
.y2a{bottom:87.798300px;}
.y29{bottom:99.799800px;}
.y2d8{bottom:99.987579px;}
.y17b{bottom:100.642193px;}
.y1e0{bottom:100.656598px;}
.y149{bottom:100.658396px;}
.y12f{bottom:100.660205px;}
.ydc{bottom:100.662003px;}
.y99{bottom:100.961998px;}
.y1b0{bottom:102.054009px;}
.y18d{bottom:105.779250px;}
.y291{bottom:106.436989px;}
.y6c{bottom:108.719100px;}
.y239{bottom:108.720898px;}
.yf9{bottom:108.881996px;}
.y219{bottom:108.945900px;}
.ybd{bottom:111.194102px;}
.y28{bottom:111.801300px;}
.y124{bottom:111.871500px;}
.y2d7{bottom:113.487579px;}
.y290{bottom:119.936989px;}
.y1e9{bottom:120.174900px;}
.y17a{bottom:121.868993px;}
.y1f5{bottom:121.877993px;}
.ydb{bottom:121.879803px;}
.y1df{bottom:121.883398px;}
.y148{bottom:121.885196px;}
.y12e{bottom:121.887005px;}
.y98{bottom:122.176203px;}
.y1af{bottom:123.280809px;}
.y27{bottom:123.802800px;}
.y2d6{bottom:126.987579px;}
.y18c{bottom:127.004105px;}
.y6b{bottom:129.945900px;}
.y218{bottom:130.170902px;}
.ybc{bottom:132.420902px;}
.y123{bottom:133.098300px;}
.y28f{bottom:133.436989px;}
.y26{bottom:135.804300px;}
.y2d5{bottom:140.487579px;}
.y1e8{bottom:141.394498px;}
.y179{bottom:143.095793px;}
.y1f4{bottom:143.104793px;}
.yda{bottom:143.106603px;}
.y12d{bottom:143.108400px;}
.y1de{bottom:143.110198px;}
.y147{bottom:143.111996px;}
.y97{bottom:143.403003px;}
.y1ae{bottom:144.507609px;}
.y28e{bottom:146.936989px;}
.y25{bottom:147.805800px;}
.y18b{bottom:148.207477px;}
.y250{bottom:151.161891px;}
.y238{bottom:151.165509px;}
.y6a{bottom:151.170902px;}
.y217{bottom:151.377905px;}
.ybb{bottom:153.645905px;}
.y2d4{bottom:153.987579px;}
.y122{bottom:154.325100px;}
.y28d{bottom:160.436989px;}
.y1e7{bottom:162.621298px;}
.y178{bottom:164.322593px;}
.y1bc{bottom:164.324403px;}
.y1f3{bottom:164.331593px;}
.yd9{bottom:164.333403px;}
.y12c{bottom:164.335200px;}
.y146{bottom:164.336998px;}
.y96{bottom:164.629803px;}
.y1ad{bottom:165.734409px;}
.y2d3{bottom:167.487579px;}
.y18a{bottom:169.434277px;}
.y24f{bottom:172.388691px;}
.y69{bottom:172.392309px;}
.y216{bottom:172.604705px;}
.y28c{bottom:173.936989px;}
.yba{bottom:174.861895px;}
.y121{bottom:175.546507px;}
.y2d2{bottom:180.987579px;}
.y1e6{bottom:183.848098px;}
.y177{bottom:185.549393px;}
.y1bb{bottom:185.551203px;}
.y1f2{bottom:185.558393px;}
.yd8{bottom:185.560203px;}
.y12b{bottom:185.562000px;}
.y95{bottom:185.856603px;}
.y1ac{bottom:186.961209px;}
.y28b{bottom:187.436989px;}
.y189{bottom:190.661077px;}
.y12{bottom:192.354446px;}
.y24e{bottom:193.615491px;}
.y68{bottom:193.619109px;}
.y215{bottom:193.831505px;}
.y2d1{bottom:194.487579px;}
.yb9{bottom:196.088695px;}
.y120{bottom:196.773307px;}
.y28a{bottom:200.936989px;}
.y1e5{bottom:205.074898px;}
.y176{bottom:206.776193px;}
.y1ba{bottom:206.778003px;}
.y1f1{bottom:206.785193px;}
.yd7{bottom:206.787003px;}
.y94{bottom:207.083403px;}
.y2d0{bottom:207.987579px;}
.y1ab{bottom:208.188009px;}
.y188{bottom:211.887877px;}
.y11{bottom:213.579460px;}
.y289{bottom:214.436989px;}
.y24d{bottom:214.842291px;}
.y67{bottom:214.845909px;}
.y214{bottom:215.058305px;}
.yb8{bottom:217.315495px;}
.y11f{bottom:218.000107px;}
.y2cf{bottom:221.487579px;}
.y145{bottom:223.817707px;}
.y1e4{bottom:226.299889px;}
.y288{bottom:227.936989px;}
.y175{bottom:228.002993px;}
.y1b9{bottom:228.004803px;}
.y266{bottom:228.008398px;}
.yd6{bottom:228.010207px;}
.y1f0{bottom:228.011993px;}
.y93{bottom:228.310203px;}
.y1aa{bottom:229.414809px;}
.y1dd{bottom:232.034244px;}
.y187{bottom:233.114677px;}
.y10{bottom:234.802642px;}
.y2ce{bottom:234.987579px;}
.y66{bottom:236.063709px;}
.y24c{bottom:236.069091px;}
.y237{bottom:236.070900px;}
.y213{bottom:236.285105px;}
.yb7{bottom:238.542295px;}
.y11e{bottom:239.223311px;}
.y144{bottom:245.044507px;}
.y2cd{bottom:248.487579px;}
.y174{bottom:249.229793px;}
.y1b8{bottom:249.231603px;}
.y265{bottom:249.235198px;}
.yd5{bottom:249.237007px;}
.y92{bottom:249.537003px;}
.y1a9{bottom:250.641609px;}
.y1dc{bottom:253.261044px;}
.y186{bottom:254.341477px;}
.yf{bottom:256.029442px;}
.y236{bottom:257.279723px;}
.y65{bottom:257.290509px;}
.y24b{bottom:257.295891px;}
.y212{bottom:257.511905px;}
.yb6{bottom:259.769095px;}
.y11d{bottom:260.450111px;}
.y12a{bottom:261.324898px;}
.y2cc{bottom:261.987579px;}
.y143{bottom:266.271307px;}
.y1e3{bottom:268.749893px;}
.y173{bottom:270.456593px;}
.y1b7{bottom:270.458403px;}
.yd4{bottom:270.461998px;}
.y91{bottom:270.758398px;}
.y1a8{bottom:271.866600px;}
.y1db{bottom:274.487844px;}
.y2cb{bottom:275.487579px;}
.y185{bottom:275.568277px;}
.ye{bottom:277.254456px;}
.y235{bottom:278.506523px;}
.y64{bottom:278.517309px;}
.y24a{bottom:278.520905px;}
.y211{bottom:278.738705px;}
.yb5{bottom:280.995895px;}
.y11c{bottom:281.675102px;}
.y129{bottom:282.548102px;}
.y142{bottom:287.498107px;}
.y2ca{bottom:288.987579px;}
.y1e2{bottom:289.973098px;}
.yd3{bottom:291.678012px;}
.y172{bottom:291.683393px;}
.y1b6{bottom:291.685203px;}
.y264{bottom:291.686989px;}
.y90{bottom:291.985198px;}
.y1a7{bottom:293.080805px;}
.y1da{bottom:295.714644px;}
.y184{bottom:296.795077px;}
.yd{bottom:298.474042px;}
.y234{bottom:299.733323px;}
.y63{bottom:299.744109px;}
.y210{bottom:299.965505px;}
.yb4{bottom:302.220909px;}
.y2c9{bottom:302.487579px;}
.y11b{bottom:302.900093px;}
.y128{bottom:303.774902px;}
.y287{bottom:307.528954px;}
.y141{bottom:308.724907px;}
.y1e1{bottom:311.199898px;}
.yd2{bottom:312.904812px;}
.y171{bottom:312.910193px;}
.y1b5{bottom:312.912003px;}
.y8f{bottom:313.211998px;}
.y1a6{bottom:314.307605px;}
.y2c8{bottom:315.987579px;}
.y1d9{bottom:316.941444px;}
.y183{bottom:318.021877px;}
.yc{bottom:319.700842px;}
.y233{bottom:320.960123px;}
.y249{bottom:320.967291px;}
.y62{bottom:320.970909px;}
.y20f{bottom:321.192305px;}
.yb3{bottom:323.442305px;}
.y127{bottom:324.996298px;}
.y2c7{bottom:329.487579px;}
.y140{bottom:329.949898px;}
.yd1{bottom:334.131612px;}
.y1b4{bottom:334.135207px;}
.y170{bottom:334.136993px;}
.y8e{bottom:334.436989px;}
.y286{bottom:334.528954px;}
.y1a5{bottom:335.534405px;}
.y1d8{bottom:338.166458px;}
.y182{bottom:339.248677px;}
.yb{bottom:340.927642px;}
.y232{bottom:342.186923px;}
.y248{bottom:342.194091px;}
.y61{bottom:342.195900px;}
.y20e{bottom:342.419105px;}
.y2c6{bottom:342.987579px;}
.yb2{bottom:344.669105px;}
.y126{bottom:346.223098px;}
.y285{bottom:348.028954px;}
.y16f{bottom:355.352984px;}
.yd0{bottom:355.358412px;}
.y1b3{bottom:355.362007px;}
.y8d{bottom:355.662140px;}
.y2c5{bottom:356.487579px;}
.y1a4{bottom:356.761205px;}
.y1d7{bottom:359.387831px;}
.y181{bottom:360.475477px;}
.ya{bottom:362.154442px;}
.y231{bottom:363.413723px;}
.y60{bottom:363.417295px;}
.y247{bottom:363.420891px;}
.y20d{bottom:363.645905px;}
.y11a{bottom:363.871672px;}
.yf8{bottom:365.888714px;}
.yb1{bottom:365.895905px;}
.y125{bottom:367.449898px;}
.y1eb{bottom:368.274742px;}
.y2c4{bottom:369.987579px;}
.y284{bottom:370.528954px;}
.y16e{bottom:376.579784px;}
.ycf{bottom:376.585212px;}
.y1a3{bottom:377.988005px;}
.y1d6{bottom:380.614631px;}
.y180{bottom:381.702277px;}
.y9{bottom:383.379456px;}
.y2c3{bottom:383.487579px;}
.y230{bottom:384.640523px;}
.y5f{bottom:384.644095px;}
.y20c{bottom:384.867323px;}
.y119{bottom:385.098472px;}
.yf7{bottom:387.115514px;}
.yb0{bottom:387.119086px;}
.y15e{bottom:387.532657px;}
.y2c2{bottom:396.987579px;}
.y16d{bottom:397.806584px;}
.yce{bottom:397.812012px;}
.y1a2{bottom:399.214805px;}
.y15d{bottom:400.279657px;}
.y1d5{bottom:401.841431px;}
.y17f{bottom:402.929077px;}
.y8{bottom:404.602637px;}
.y22f{bottom:405.867323px;}
.y5e{bottom:405.870895px;}
.y20b{bottom:406.094123px;}
.y118{bottom:406.325272px;}
.y8c{bottom:408.338695px;}
.yf6{bottom:408.342314px;}
.yaf{bottom:408.345886px;}
.y2c1{bottom:410.487579px;}
.y283{bottom:412.978958px;}
.y15c{bottom:413.026657px;}
.y1ef{bottom:416.271284px;}
.y263{bottom:419.020812px;}
.ycd{bottom:419.029812px;}
.y16c{bottom:419.033384px;}
.y1a1{bottom:420.441605px;}
.y1d4{bottom:423.062849px;}
.y2c0{bottom:423.987579px;}
.y17e{bottom:424.154114px;}
.y7{bottom:425.829437px;}
.y13f{bottom:426.415512px;}
.y282{bottom:426.478958px;}
.y246{bottom:427.086886px;}
.y5d{bottom:427.092314px;}
.y22e{bottom:427.094123px;}
.y20a{bottom:427.320923px;}
.y117{bottom:427.550079px;}
.yae{bottom:429.563686px;}
.y8b{bottom:429.565495px;}
.yf5{bottom:429.569114px;}
.y169{bottom:434.655017px;}
.y2bf{bottom:437.487579px;}
.y1ee{bottom:437.498084px;}
.y262{bottom:440.247612px;}
.ycc{bottom:440.256612px;}
.y16b{bottom:440.260184px;}
.y1a0{bottom:441.666733px;}
.y1d3{bottom:444.289649px;}
.y6{bottom:447.052665px;}
.y245{bottom:448.313686px;}
.y5c{bottom:448.319114px;}
.y22d{bottom:448.320923px;}
.y209{bottom:448.533295px;}
.y116{bottom:448.762635px;}
.y281{bottom:448.978958px;}
.yad{bottom:450.790486px;}
.y8a{bottom:450.792295px;}
.yf4{bottom:450.795914px;}
.y2be{bottom:450.987579px;}
.y168{bottom:452.883017px;}
.y1ed{bottom:458.724884px;}
.y261{bottom:461.474412px;}
.ycb{bottom:461.483412px;}
.y16a{bottom:461.486984px;}
.y280{bottom:462.478958px;}
.y2bd{bottom:464.487579px;}
.y1d2{bottom:465.516449px;}
.y5{bottom:468.279465px;}
.y22c{bottom:469.529723px;}
.y244{bottom:469.540486px;}
.y5b{bottom:469.545914px;}
.y208{bottom:469.760095px;}
.y115{bottom:469.989435px;}
.y167{bottom:471.027017px;}
.yf3{bottom:472.013714px;}
.yac{bottom:472.017286px;}
.y89{bottom:472.019095px;}
.y192{bottom:473.032657px;}
.y27f{bottom:475.978958px;}
.y2bc{bottom:477.987579px;}
.y1ec{bottom:479.949921px;}
.y260{bottom:482.701212px;}
.yca{bottom:482.710212px;}
.y191{bottom:485.779657px;}
.y1d1{bottom:486.741440px;}
.y166{bottom:489.171017px;}
.y4{bottom:489.504456px;}
.y22b{bottom:490.756523px;}
.y5a{bottom:490.765523px;}
.y243{bottom:490.767286px;}
.y207{bottom:490.986895px;}
.y114{bottom:491.216235px;}
.y2bb{bottom:491.487579px;}
.yf2{bottom:493.240514px;}
.yab{bottom:493.244086px;}
.y88{bottom:493.245895px;}
.y27e{bottom:498.478958px;}
.y190{bottom:498.526657px;}
.y1b2{bottom:501.114761px;}
.y25f{bottom:503.928012px;}
.yc9{bottom:503.937012px;}
.y2ba{bottom:504.987579px;}
.y165{bottom:507.315017px;}
.y1d0{bottom:507.966431px;}
.y27d{bottom:511.978958px;}
.y22a{bottom:511.983323px;}
.y59{bottom:511.992323px;}
.y242{bottom:511.994086px;}
.y206{bottom:512.213695px;}
.y113{bottom:512.443035px;}
.y87{bottom:514.461886px;}
.yf1{bottom:514.467314px;}
.yaa{bottom:514.470886px;}
.y2b9{bottom:518.487579px;}
.y19f{bottom:520.131017px;}
.y1be{bottom:523.713318px;}
.y25e{bottom:525.154812px;}
.yc8{bottom:525.158384px;}
.y164{bottom:525.459017px;}
.y27c{bottom:525.478958px;}
.y23{bottom:528.842102px;}
.y2b8{bottom:531.987579px;}
.y229{bottom:533.210123px;}
.y58{bottom:533.219123px;}
.y241{bottom:533.220886px;}
.y205{bottom:533.440495px;}
.y112{bottom:533.669835px;}
.y86{bottom:535.688686px;}
.yf0{bottom:535.694114px;}
.ya9{bottom:535.695923px;}
.y1f7{bottom:537.654739px;}
.y19e{bottom:538.359017px;}
.y27b{bottom:538.978958px;}
.y17d{bottom:539.778305px;}
.y163{bottom:543.603017px;}
.y2b7{bottom:545.487579px;}
.y25d{bottom:546.381612px;}
.yc7{bottom:546.385184px;}
.y22{bottom:546.842102px;}
.y27a{bottom:552.478958px;}
.y240{bottom:554.431495px;}
.y228{bottom:554.436923px;}
.y57{bottom:554.445923px;}
.y204{bottom:554.667295px;}
.y111{bottom:554.896635px;}
.y19d{bottom:556.503017px;}
.y85{bottom:556.915486px;}
.yef{bottom:556.920914px;}
.y2b6{bottom:558.987579px;}
.y162{bottom:561.747017px;}
.y25c{bottom:567.608412px;}
.yc6{bottom:567.611984px;}
.y21{bottom:570.842102px;}
.y2b5{bottom:572.487579px;}
.y19c{bottom:574.659017px;}
.y279{bottom:574.978958px;}
.y23f{bottom:575.658295px;}
.y227{bottom:575.663723px;}
.y1cf{bottom:575.665486px;}
.y56{bottom:575.667295px;}
.y203{bottom:575.894095px;}
.y110{bottom:576.123435px;}
.yee{bottom:578.135095px;}
.y84{bottom:578.142286px;}
.y161{bottom:579.891017px;}
.y2b4{bottom:585.987579px;}
.y19b{bottom:588.159017px;}
.y278{bottom:588.478958px;}
.y25b{bottom:588.835212px;}
.yc5{bottom:588.837021px;}
.y20{bottom:588.842102px;}
.y23e{bottom:596.885095px;}
.y226{bottom:596.890523px;}
.y1ce{bottom:596.892286px;}
.y55{bottom:596.894095px;}
.ya8{bottom:596.895905px;}
.y202{bottom:597.120895px;}
.y10f{bottom:597.350235px;}
.y160{bottom:598.035017px;}
.yed{bottom:599.361895px;}
.y83{bottom:599.369086px;}
.y2b3{bottom:599.487579px;}
.y19a{bottom:606.303017px;}
.y1f{bottom:606.842102px;}
.y25a{bottom:610.062012px;}
.y277{bottom:610.975340px;}
.y2b2{bottom:612.987579px;}
.y23d{bottom:618.111895px;}
.y225{bottom:618.117323px;}
.y1cd{bottom:618.119086px;}
.y54{bottom:618.120895px;}
.y201{bottom:618.345886px;}
.y10e{bottom:618.569707px;}
.yec{bottom:620.588695px;}
.y82{bottom:620.595886px;}
.y199{bottom:624.447017px;}
.y1e{bottom:624.842102px;}
.y15f{bottom:624.927017px;}
.y2b1{bottom:626.487579px;}
.y259{bottom:631.278003px;}
.y276{bottom:632.202140px;}
.yc4{bottom:634.156813px;}
.y23c{bottom:639.338695px;}
.ya7{bottom:639.344123px;}
.y53{bottom:639.345886px;}
.y200{bottom:639.570923px;}
.y10d{bottom:639.796507px;}
.y2b0{bottom:639.987579px;}
.yeb{bottom:641.815495px;}
.y81{bottom:641.819114px;}
.y198{bottom:642.591017px;}
.y1d{bottom:642.842102px;}
.y15b{bottom:649.239761px;}
.y258{bottom:652.504803px;}
.y275{bottom:653.428940px;}
.y2af{bottom:653.487579px;}
.yc3{bottom:655.383613px;}
.y52{bottom:660.565495px;}
.y1cc{bottom:660.569114px;}
.ya6{bottom:660.570923px;}
.y197{bottom:660.735017px;}
.y1c{bottom:660.842102px;}
.y10c{bottom:661.023307px;}
.yea{bottom:663.042295px;}
.y80{bottom:663.045914px;}
.y2ae{bottom:666.987579px;}
.y257{bottom:673.731603px;}
.y274{bottom:674.650358px;}
.yc2{bottom:676.610413px;}
.y1b{bottom:678.842102px;}
.y196{bottom:678.891017px;}
.y2ad{bottom:680.487579px;}
.y224{bottom:681.772486px;}
.y51{bottom:681.792295px;}
.y1ff{bottom:681.794105px;}
.ya5{bottom:681.795914px;}
.y10b{bottom:682.250107px;}
.y7f{bottom:684.261905px;}
.ye9{bottom:684.269095px;}
.y195{bottom:692.391017px;}
.y2ac{bottom:693.987579px;}
.y256{bottom:694.958403px;}
.y273{bottom:695.877158px;}
.y1a{bottom:696.842102px;}
.yc1{bottom:697.835403px;}
.y223{bottom:702.999286px;}
.ya4{bottom:703.008286px;}
.y50{bottom:703.019095px;}
.y1fe{bottom:703.020905px;}
.y10a{bottom:703.466281px;}
.y7e{bottom:705.488705px;}
.ye8{bottom:705.495895px;}
.y3d{bottom:706.366928px;}
.y15a{bottom:707.143518px;}
.y2ab{bottom:707.487579px;}
.y1ea{bottom:709.235229px;}
.y194{bottom:710.535017px;}
.y19{bottom:714.842102px;}
.y255{bottom:716.185203px;}
.y272{bottom:717.103958px;}
.yc0{bottom:719.056822px;}
.y3c{bottom:719.866928px;}
.y159{bottom:720.643518px;}
.y2aa{bottom:720.987579px;}
.y222{bottom:724.226086px;}
.ya3{bottom:724.235086px;}
.y1fd{bottom:724.238705px;}
.y4f{bottom:724.245895px;}
.y109{bottom:724.693081px;}
.ye7{bottom:726.713741px;}
.y7d{bottom:726.715505px;}
.y18{bottom:732.842102px;}
.y3b{bottom:733.366928px;}
.y158{bottom:734.143518px;}
.y2a9{bottom:734.487579px;}
.y254{bottom:737.412003px;}
.y193{bottom:737.427017px;}
.y271{bottom:738.328949px;}
.ybf{bottom:740.283622px;}
.y221{bottom:745.452886px;}
.y4e{bottom:745.458268px;}
.ya2{bottom:745.461886px;}
.y1fc{bottom:745.465505px;}
.y1cb{bottom:745.469123px;}
.y23b{bottom:745.470886px;}
.y108{bottom:745.919881px;}
.ye6{bottom:747.940541px;}
.y7c{bottom:747.942305px;}
.y2a8{bottom:747.987579px;}
.y17{bottom:750.842102px;}
.y3a{bottom:751.366928px;}
.y157{bottom:752.371518px;}
.y253{bottom:758.636993px;}
.y270{bottom:759.546749px;}
.y39{bottom:760.366974px;}
.y2a7{bottom:761.487579px;}
.ybe{bottom:761.510422px;}
.y18f{bottom:761.739761px;}
.y156{bottom:765.871518px;}
.y220{bottom:766.679686px;}
.y4d{bottom:766.685068px;}
.ya1{bottom:766.688686px;}
.y1fb{bottom:766.692305px;}
.y1ca{bottom:766.695923px;}
.y107{bottom:767.146681px;}
.y16{bottom:768.842102px;}
.ye5{bottom:769.167341px;}
.y7b{bottom:769.169105px;}
.y38{bottom:773.866974px;}
.y13e{bottom:774.223518px;}
.y2a6{bottom:774.987579px;}
.y26f{bottom:780.773549px;}
.y155{bottom:784.015518px;}
.y15{bottom:786.842102px;}
.y37{bottom:787.366974px;}
.y21f{bottom:787.906486px;}
.y4c{bottom:787.911868px;}
.y1c9{bottom:787.913723px;}
.ya0{bottom:787.915486px;}
.y1fa{bottom:787.919105px;}
.y106{bottom:788.373481px;}
.y2a5{bottom:788.487579px;}
.ye4{bottom:790.394141px;}
.y7a{bottom:790.395905px;}
.y13d{bottom:792.451518px;}
.y2a4{bottom:801.987579px;}
.y26e{bottom:802.000349px;}
.y154{bottom:802.171518px;}
.y14{bottom:804.842102px;}
.y36{bottom:805.366974px;}
.y1bd{bottom:806.795288px;}
.y21e{bottom:809.133286px;}
.y4b{bottom:809.138668px;}
.y1c8{bottom:809.140523px;}
.y9f{bottom:809.142286px;}
.y1f9{bottom:809.145905px;}
.y105{bottom:809.600281px;}
.y13c{bottom:810.607518px;}
.y79{bottom:811.617323px;}
.ye3{bottom:811.620941px;}
.y2a3{bottom:815.487579px;}
.y153{bottom:815.671518px;}
.ydd{bottom:815.795288px;}
.y18e{bottom:815.975281px;}
.y35{bottom:822.241974px;}
.y26d{bottom:823.227149px;}
.y13{bottom:827.342102px;}
.y1f6{bottom:828.395233px;}
.y1b1{bottom:828.667518px;}
.y13b{bottom:828.751518px;}
.y2a2{bottom:828.987579px;}
.y21d{bottom:830.360086px;}
.y4a{bottom:830.365468px;}
.y1c7{bottom:830.367323px;}
.y9e{bottom:830.369086px;}
.y104{bottom:830.816134px;}
.ye2{bottom:832.842268px;}
.y78{bottom:832.844123px;}
.y152{bottom:833.827518px;}
.y34{bottom:835.741974px;}
.y2a1{bottom:842.487579px;}
.y26c{bottom:844.453949px;}
.y17c{bottom:845.495270px;}
.y13a{bottom:846.895518px;}
.y151{bottom:847.327518px;}
.y21c{bottom:851.586886px;}
.y49{bottom:851.592268px;}
.y1c6{bottom:851.594123px;}
.y9d{bottom:851.595886px;}
.y103{bottom:852.042934px;}
.ye1{bottom:854.069068px;}
.y77{bottom:854.070923px;}
.y2a0{bottom:855.987579px;}
.y139{bottom:865.051518px;}
.y150{bottom:865.471518px;}
.y26b{bottom:865.678986px;}
.y29f{bottom:869.487579px;}
.y252{bottom:872.806541px;}
.y21b{bottom:872.813686px;}
.y48{bottom:872.819068px;}
.y1c5{bottom:872.820923px;}
.y102{bottom:873.269734px;}
.y76{bottom:875.290841px;}
.ye0{bottom:875.295868px;}
.y14f{bottom:878.971518px;}
.y29e{bottom:882.987579px;}
.y138{bottom:883.195518px;}
.y26a{bottom:886.900312px;}
.y2da{bottom:887.487579px;}
.y3{bottom:893.679474px;}
.y251{bottom:894.033341px;}
.y1c4{bottom:894.035105px;}
.y21a{bottom:894.040486px;}
.y23a{bottom:894.042341px;}
.y47{bottom:894.045868px;}
.y101{bottom:894.496534px;}
.y29d{bottom:896.487579px;}
.ydf{bottom:896.520905px;}
.y14e{bottom:897.127518px;}
.y2d9{bottom:900.987579px;}
.y137{bottom:901.351518px;}
.y269{bottom:908.127112px;}
.y29c{bottom:909.987579px;}
.y14d{bottom:910.627518px;}
.y75{bottom:915.260141px;}
.y1c3{bottom:915.261905px;}
.y9c{bottom:915.267286px;}
.y46{bottom:915.269141px;}
.y1f8{bottom:915.270905px;}
.y100{bottom:915.723334px;}
.yde{bottom:917.745941px;}
.y136{bottom:919.495518px;}
.y29b{bottom:923.487579px;}
.y14c{bottom:928.783518px;}
.y268{bottom:929.353912px;}
.y74{bottom:936.486941px;}
.y1c2{bottom:936.488705px;}
.y9b{bottom:936.494086px;}
.y45{bottom:936.495941px;}
.yff{bottom:936.950134px;}
.y29a{bottom:936.987579px;}
.y135{bottom:937.639518px;}
.y2{bottom:939.884406px;}
.y14b{bottom:942.283518px;}
.y299{bottom:950.487579px;}
.y267{bottom:950.578949px;}
.y134{bottom:955.795518px;}
.y73{bottom:957.713741px;}
.y1c1{bottom:957.715505px;}
.y44{bottom:957.717268px;}
.y9a{bottom:957.720886px;}
.yfe{bottom:958.169881px;}
.y14a{bottom:960.439518px;}
.y298{bottom:963.987579px;}
.y133{bottom:973.939518px;}
.y297{bottom:977.487579px;}
.y1{bottom:978.872406px;}
.y72{bottom:978.940541px;}
.y1c0{bottom:978.942305px;}
.y43{bottom:978.944068px;}
.yfd{bottom:979.396681px;}
.y296{bottom:990.987579px;}
.y132{bottom:992.095518px;}
.y71{bottom:1000.167341px;}
.y1bf{bottom:1000.169105px;}
.y42{bottom:1000.170868px;}
.yfc{bottom:1000.623481px;}
.y295{bottom:1004.487579px;}
.y294{bottom:1017.987579px;}
.y131{bottom:1018.987518px;}
.y70{bottom:1021.394141px;}
.y41{bottom:1021.395905px;}
.yfb{bottom:1021.850281px;}
.y293{bottom:1031.487579px;}
.y2d{bottom:1035.298370px;}
.y24{bottom:1035.750183px;}
.y40{bottom:1042.620941px;}
.yfa{bottom:1043.075134px;}
.y130{bottom:1043.300079px;}
.y292{bottom:1044.987579px;}
.y31{bottom:1095.169464px;}
.y30{bottom:1097.297079px;}
.y2f{bottom:1112.297079px;}
.y6d{bottom:1126.524628px;}
.y3e{bottom:1126.524719px;}
.y6f{bottom:1126.756989px;}
.y2e{bottom:1126.925079px;}
.y6e{bottom:1127.300079px;}
.y3f{bottom:1127.304719px;}
.h15{height:27.814500px;}
.he{height:37.086000px;}
.h14{height:39.735000px;}
.h35{height:39.984000px;}
.hd{height:41.538000px;}
.h33{height:42.384000px;}
.h47{height:42.840000px;}
.h12{height:42.880500px;}
.h46{height:43.785000px;}
.h11{height:45.696000px;}
.h10{height:45.744000px;}
.h32{height:46.704000px;}
.hf{height:47.232000px;}
.h28{height:47.472000px;}
.ha{height:52.980000px;}
.h31{height:53.406000px;}
.h20{height:53.709599px;}
.h1d{height:54.625200px;}
.h5{height:55.860000px;}
.h6{height:55.867054px;}
.h26{height:55.867145px;}
.h9{height:55.867233px;}
.h7{height:55.867237px;}
.h23{height:55.867420px;}
.h2f{height:55.867786px;}
.h43{height:55.874107px;}
.h1a{height:55.874290px;}
.h1b{height:55.874382px;}
.h30{height:55.874383px;}
.h16{height:55.874473px;}
.h21{height:55.875023px;}
.h1e{height:55.880107px;}
.h2b{height:55.880794px;}
.h19{height:55.881527px;}
.h42{height:55.881573px;}
.h8{height:55.881618px;}
.h18{height:55.881710px;}
.h3d{height:55.881893px;}
.h2d{height:55.882259px;}
.h29{height:55.888580px;}
.h1c{height:55.888764px;}
.h27{height:55.888809px;}
.h39{height:55.888855px;}
.h24{height:55.888946px;}
.h2c{height:55.895817px;}
.h25{height:55.895908px;}
.h1f{height:55.896000px;}
.h3c{height:55.896046px;}
.h36{height:55.896092px;}
.h3b{height:55.903054px;}
.h38{height:55.903145px;}
.h2a{height:55.903237px;}
.h22{height:55.903786px;}
.h2e{height:55.909924px;}
.h3a{height:55.910382px;}
.h17{height:55.910473px;}
.h45{height:55.917527px;}
.h44{height:55.917710px;}
.h41{height:55.924672px;}
.h40{height:55.924763px;}
.h3e{height:55.932000px;}
.h37{height:55.947114px;}
.h3f{height:55.953710px;}
.hb{height:58.380000px;}
.h4{height:61.120200px;}
.h3{height:67.194379px;}
.h13{height:71.400000px;}
.hc{height:77.142000px;}
.h34{height:96.384000px;}
.h2{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:200.210999px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.506250px;}
.x1{left:84.933002px;}
.x6{left:93.732302px;}
.xa{left:176.456703px;}
.xd{left:185.456703px;}
.xb{left:188.451903px;}
.x11{left:198.956703px;}
.xc{left:206.456703px;}
.x2{left:267.874054px;}
.x4{left:277.624489px;}
.x3{left:279.869254px;}
.xe{left:312.920734px;}
.x7{left:607.663513px;}
.xf{left:648.908861px;}
.x5{left:694.929886px;}
.x10{left:741.068390px;}
.x9{left:747.224258px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.322667pt;}
.v1{vertical-align:23.466471pt;}
.v4{vertical-align:48.000000pt;}
.ls6{letter-spacing:-1.194667pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.519925pt;}
.ls11{letter-spacing:0.519967pt;}
.ls1d{letter-spacing:0.519975pt;}
.lsf{letter-spacing:0.520000pt;}
.ls19{letter-spacing:0.523974pt;}
.lsb{letter-spacing:0.523982pt;}
.ls15{letter-spacing:0.523989pt;}
.ls21{letter-spacing:0.524000pt;}
.ls1f{letter-spacing:0.527950pt;}
.ls20{letter-spacing:0.527982pt;}
.ls13{letter-spacing:0.527993pt;}
.lsc{letter-spacing:0.528000pt;}
.ls1a{letter-spacing:0.528057pt;}
.ls23{letter-spacing:0.531967pt;}
.ls1b{letter-spacing:0.531982pt;}
.ls22{letter-spacing:0.536000pt;}
.ls14{letter-spacing:0.555967pt;}
.ls24{letter-spacing:0.559970pt;}
.ls12{letter-spacing:0.559983pt;}
.ls18{letter-spacing:0.559994pt;}
.ls8{letter-spacing:0.560000pt;}
.lse{letter-spacing:0.563976pt;}
.ls1e{letter-spacing:0.563981pt;}
.lsa{letter-spacing:0.563986pt;}
.ls9{letter-spacing:0.564000pt;}
.ls10{letter-spacing:0.567963pt;}
.ls17{letter-spacing:0.571982pt;}
.ls16{letter-spacing:0.572000pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.731733pt;}
.ls5{letter-spacing:1.045333pt;}
.ls2{letter-spacing:4.853333pt;}
.ls0{letter-spacing:34.049624pt;}
.ws4{word-spacing:-18.858667pt;}
.ws22{word-spacing:-13.014400pt;}
.ws2{word-spacing:-12.282667pt;}
.ws1{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.ws9{word-spacing:-10.384000pt;}
.wsf2{word-spacing:-10.156800pt;}
.wsf7{word-spacing:-9.320000pt;}
.ws5{word-spacing:-9.045333pt;}
.ws0{word-spacing:-8.993600pt;}
.ws6{word-spacing:-8.760000pt;}
.wsd7{word-spacing:-8.618667pt;}
.wsf1{word-spacing:-8.280000pt;}
.wsf5{word-spacing:-7.760000pt;}
.ws21{word-spacing:-7.242667pt;}
.ws7{word-spacing:-6.132000pt;}
.ws18{word-spacing:-4.090667pt;}
.wsab{word-spacing:-1.493333pt;}
.wsce{word-spacing:-0.888533pt;}
.ws13{word-spacing:-0.731733pt;}
.ws23{word-spacing:-0.627200pt;}
.ws1d{word-spacing:-0.597333pt;}
.ws12{word-spacing:-0.574933pt;}
.wsf6{word-spacing:-0.560000pt;}
.ws40{word-spacing:-0.522667pt;}
.ws5a{word-spacing:-0.418133pt;}
.ws20{word-spacing:-0.373333pt;}
.ws72{word-spacing:-0.365867pt;}
.ws49{word-spacing:-0.313600pt;}
.ws67{word-spacing:-0.261333pt;}
.wsf{word-spacing:-0.209067pt;}
.ws7d{word-spacing:-0.156800pt;}
.ws63{word-spacing:-0.104533pt;}
.ws69{word-spacing:-0.052267pt;}
.ws8{word-spacing:0.000000pt;}
.ws89{word-spacing:0.052267pt;}
.ws27{word-spacing:0.104533pt;}
.ws34{word-spacing:0.156800pt;}
.ws7a{word-spacing:0.261333pt;}
.ws9a{word-spacing:0.313600pt;}
.ws6a{word-spacing:0.365867pt;}
.wsbd{word-spacing:0.418133pt;}
.ws1e{word-spacing:0.448000pt;}
.ws92{word-spacing:0.470400pt;}
.ws4a{word-spacing:0.522667pt;}
.ws3d{word-spacing:0.574933pt;}
.ws88{word-spacing:0.627200pt;}
.ws1c{word-spacing:0.634667pt;}
.wse8{word-spacing:0.731733pt;}
.ws1f{word-spacing:0.784000pt;}
.ws82{word-spacing:0.836267pt;}
.ws3f{word-spacing:0.888533pt;}
.wsa4{word-spacing:0.940800pt;}
.ws96{word-spacing:0.993067pt;}
.wsdf{word-spacing:1.045333pt;}
.ws70{word-spacing:1.097600pt;}
.ws7c{word-spacing:1.149867pt;}
.wsf0{word-spacing:1.202133pt;}
.ws7e{word-spacing:1.254400pt;}
.wsda{word-spacing:1.306667pt;}
.ws32{word-spacing:1.358933pt;}
.ws35{word-spacing:1.411200pt;}
.ws5c{word-spacing:1.463467pt;}
.ws2d{word-spacing:1.515733pt;}
.ws50{word-spacing:1.568000pt;}
.wsa{word-spacing:1.620267pt;}
.ws64{word-spacing:1.672533pt;}
.ws77{word-spacing:1.777067pt;}
.ws81{word-spacing:1.829333pt;}
.ws60{word-spacing:1.881600pt;}
.ws37{word-spacing:1.933867pt;}
.ws2a{word-spacing:1.986133pt;}
.wsbc{word-spacing:2.038400pt;}
.ws6d{word-spacing:2.090667pt;}
.ws4f{word-spacing:2.142933pt;}
.ws76{word-spacing:2.195200pt;}
.ws8b{word-spacing:2.247467pt;}
.ws26{word-spacing:2.299733pt;}
.ws2b{word-spacing:2.352000pt;}
.wsd6{word-spacing:2.404267pt;}
.ws5f{word-spacing:2.456533pt;}
.ws71{word-spacing:2.508800pt;}
.ws7b{word-spacing:2.561067pt;}
.wsb0{word-spacing:2.613333pt;}
.ws44{word-spacing:2.665600pt;}
.ws9c{word-spacing:2.717867pt;}
.ws1b{word-spacing:2.725333pt;}
.ws3c{word-spacing:2.770133pt;}
.ws4d{word-spacing:2.822400pt;}
.wsb{word-spacing:2.874667pt;}
.ws43{word-spacing:2.926933pt;}
.wsdd{word-spacing:2.979200pt;}
.ws53{word-spacing:3.031467pt;}
.ws6b{word-spacing:3.083733pt;}
.ws41{word-spacing:3.136000pt;}
.wsd3{word-spacing:3.188267pt;}
.ws4c{word-spacing:3.240533pt;}
.ws4b{word-spacing:3.292800pt;}
.ws1a{word-spacing:3.322667pt;}
.ws95{word-spacing:3.345067pt;}
.ws4e{word-spacing:3.397333pt;}
.wsf3{word-spacing:3.449600pt;}
.wscf{word-spacing:3.501867pt;}
.wsaa{word-spacing:3.554133pt;}
.ws19{word-spacing:3.584000pt;}
.ws6e{word-spacing:3.658667pt;}
.wsee{word-spacing:3.710933pt;}
.ws8a{word-spacing:3.815467pt;}
.wsd4{word-spacing:3.867733pt;}
.ws36{word-spacing:3.920000pt;}
.ws55{word-spacing:3.972267pt;}
.ws24{word-spacing:4.024533pt;}
.wse6{word-spacing:4.076800pt;}
.ws5b{word-spacing:4.129067pt;}
.ws14{word-spacing:4.181333pt;}
.ws83{word-spacing:4.233600pt;}
.ws29{word-spacing:4.285867pt;}
.ws6c{word-spacing:4.338133pt;}
.ws2f{word-spacing:4.390400pt;}
.wsd8{word-spacing:4.442667pt;}
.ws45{word-spacing:4.494933pt;}
.ws52{word-spacing:4.547200pt;}
.ws54{word-spacing:4.599467pt;}
.wsf4{word-spacing:4.651733pt;}
.ws73{word-spacing:4.704000pt;}
.wsca{word-spacing:4.756267pt;}
.ws39{word-spacing:4.808533pt;}
.wscc{word-spacing:4.860800pt;}
.ws3b{word-spacing:4.965333pt;}
.ws98{word-spacing:5.069867pt;}
.wsed{word-spacing:5.122133pt;}
.wsd0{word-spacing:5.174400pt;}
.wsd{word-spacing:5.226667pt;}
.ws16{word-spacing:5.278933pt;}
.ws3a{word-spacing:5.331200pt;}
.wsb4{word-spacing:5.383467pt;}
.ws31{word-spacing:5.435733pt;}
.ws46{word-spacing:5.488000pt;}
.ws66{word-spacing:5.540267pt;}
.ws6f{word-spacing:5.592533pt;}
.wsb3{word-spacing:5.644800pt;}
.ws75{word-spacing:5.697067pt;}
.ws80{word-spacing:5.801600pt;}
.ws59{word-spacing:5.853867pt;}
.ws3e{word-spacing:5.906133pt;}
.wsa3{word-spacing:5.958400pt;}
.wse{word-spacing:6.010667pt;}
.ws15{word-spacing:6.062933pt;}
.wsdc{word-spacing:6.115200pt;}
.ws97{word-spacing:6.167467pt;}
.ws51{word-spacing:6.219733pt;}
.ws91{word-spacing:6.272000pt;}
.ws47{word-spacing:6.324267pt;}
.ws28{word-spacing:6.428800pt;}
.ws48{word-spacing:6.481067pt;}
.ws5d{word-spacing:6.533333pt;}
.wsa2{word-spacing:6.585600pt;}
.ws99{word-spacing:6.690133pt;}
.ws79{word-spacing:6.742400pt;}
.ws90{word-spacing:6.794667pt;}
.ws68{word-spacing:6.846933pt;}
.ws11{word-spacing:6.899200pt;}
.ws9b{word-spacing:6.951467pt;}
.ws17{word-spacing:7.003733pt;}
.wse7{word-spacing:7.108267pt;}
.ws74{word-spacing:7.160533pt;}
.wsac{word-spacing:7.212800pt;}
.wscb{word-spacing:7.265067pt;}
.wsec{word-spacing:7.369600pt;}
.wsae{word-spacing:7.421867pt;}
.ws65{word-spacing:7.526400pt;}
.ws94{word-spacing:7.578667pt;}
.ws42{word-spacing:7.630933pt;}
.ws56{word-spacing:7.735467pt;}
.ws30{word-spacing:7.787733pt;}
.wse0{word-spacing:7.840000pt;}
.ws10{word-spacing:7.944533pt;}
.ws33{word-spacing:8.049067pt;}
.wsc{word-spacing:8.101333pt;}
.wse9{word-spacing:8.153600pt;}
.wse1{word-spacing:8.258133pt;}
.ws2e{word-spacing:8.362667pt;}
.ws62{word-spacing:8.414933pt;}
.ws87{word-spacing:8.571733pt;}
.ws93{word-spacing:8.676267pt;}
.wscd{word-spacing:8.728533pt;}
.wsde{word-spacing:8.780800pt;}
.wsd1{word-spacing:8.833067pt;}
.ws61{word-spacing:8.885333pt;}
.wsc9{word-spacing:8.937600pt;}
.wsea{word-spacing:8.989867pt;}
.wse5{word-spacing:9.408000pt;}
.ws5e{word-spacing:9.512533pt;}
.wse3{word-spacing:9.564800pt;}
.ws7f{word-spacing:9.669333pt;}
.ws8d{word-spacing:9.721600pt;}
.wseb{word-spacing:9.773867pt;}
.wsaf{word-spacing:9.826133pt;}
.wse2{word-spacing:9.930667pt;}
.wsad{word-spacing:9.982933pt;}
.ws58{word-spacing:10.087467pt;}
.wsef{word-spacing:10.557867pt;}
.ws8f{word-spacing:10.610133pt;}
.wsd5{word-spacing:10.662400pt;}
.ws8c{word-spacing:10.923733pt;}
.wsdb{word-spacing:10.976000pt;}
.wsbe{word-spacing:11.080533pt;}
.ws8e{word-spacing:11.132800pt;}
.wsd2{word-spacing:11.394133pt;}
.wsd9{word-spacing:11.550933pt;}
.wsb2{word-spacing:12.021333pt;}
.ws84{word-spacing:12.230400pt;}
.ws78{word-spacing:12.387200pt;}
.ws38{word-spacing:12.753067pt;}
.ws9d{word-spacing:13.118933pt;}
.ws25{word-spacing:13.223467pt;}
.wsb1{word-spacing:13.432533pt;}
.wse4{word-spacing:13.589333pt;}
.ws86{word-spacing:14.373333pt;}
.ws57{word-spacing:15.105067pt;}
.wsa5{word-spacing:15.836800pt;}
.ws85{word-spacing:17.770667pt;}
.ws2c{word-spacing:17.822933pt;}
.wsb9{word-spacing:27.562667pt;}
.wsb6{word-spacing:27.989333pt;}
.wsb7{word-spacing:67.370667pt;}
.wsbb{word-spacing:134.485333pt;}
.wsa8{word-spacing:149.375993pt;}
.wsa6{word-spacing:149.376000pt;}
.wsa9{word-spacing:159.957327pt;}
.wsa7{word-spacing:188.757327pt;}
.wsba{word-spacing:843.950933pt;}
.wsb5{word-spacing:850.559961pt;}
.wsb8{word-spacing:851.199961pt;}
.ws9e{word-spacing:1520.981333pt;}
.wsc2{word-spacing:1537.796267pt;}
.wsbf{word-spacing:1544.874667pt;}
.wsc4{word-spacing:1548.160000pt;}
.wsa0{word-spacing:1549.013333pt;}
.ws9f{word-spacing:1568.128000pt;}
.wsc7{word-spacing:1580.757333pt;}
.wsc5{word-spacing:1595.392000pt;}
.wsc1{word-spacing:1599.232000pt;}
.wsa1{word-spacing:1599.573333pt;}
.wsc0{word-spacing:1622.272000pt;}
.wsc6{word-spacing:1623.424000pt;}
.wsc8{word-spacing:1629.269333pt;}
.wsc3{word-spacing:1645.781333pt;}
._3{margin-left:-10.401600pt;}
._d{margin-left:-9.228267pt;}
._c{margin-left:-8.064000pt;}
._f{margin-left:-7.174187pt;}
._11{margin-left:-6.120427pt;}
._8{margin-left:-4.818987pt;}
._6{margin-left:-3.402560pt;}
._a{margin-left:-2.459840pt;}
._0{margin-left:-1.408000pt;}
._4{width:1.249173pt;}
._1{width:2.278400pt;}
._5{width:3.177813pt;}
._7{width:4.959787pt;}
._12{width:5.955200pt;}
._9{width:6.899200pt;}
._4e{width:9.357760pt;}
._e{width:10.495147pt;}
._10{width:13.595840pt;}
._b{width:15.434656pt;}
._2{width:33.692781pt;}
._41{width:36.821333pt;}
._25{width:44.062816pt;}
._42{width:47.872000pt;}
._4b{width:57.685333pt;}
._2b{width:99.242656pt;}
._40{width:106.538667pt;}
._2c{width:113.834667pt;}
._48{width:120.746667pt;}
._43{width:127.743992pt;}
._3f{width:143.786667pt;}
._4a{width:148.138662pt;}
._33{width:158.207993pt;}
._30{width:161.493322pt;}
._29{width:163.199989pt;}
._49{width:164.608000pt;}
._34{width:169.258660pt;}
._3d{width:170.161391pt;}
._2d{width:175.530656pt;}
._3a{width:178.506551pt;}
._23{width:182.357322pt;}
._2e{width:183.381322pt;}
._35{width:184.533313pt;}
._38{width:185.727980pt;}
._31{width:195.669313pt;}
._27{width:201.301322pt;}
._3c{width:202.554667pt;}
._32{width:228.629560pt;}
._3b{width:229.802667pt;}
._37{width:235.264000pt;}
._36{width:249.109569pt;}
._4c{width:261.748160pt;}
._21{width:263.935989pt;}
._1f{width:264.991882pt;}
._2f{width:279.466667pt;}
._1d{width:284.117322pt;}
._39{width:285.973098pt;}
._45{width:332.392281pt;}
._4d{width:418.432000pt;}
._20{width:462.549333pt;}
._24{width:484.224000pt;}
._28{width:485.748160pt;}
._44{width:501.973294pt;}
._3e{width:543.658628pt;}
._47{width:619.349333pt;}
._46{width:702.208000pt;}
._2a{width:825.557333pt;}
._22{width:874.922667pt;}
._26{width:939.989333pt;}
._1e{width:1092.608000pt;}
._19{width:1195.093293pt;}
._1c{width:1220.340153pt;}
._17{width:1310.080000pt;}
._16{width:1342.506667pt;}
._15{width:1372.330667pt;}
._1a{width:1377.396112pt;}
._14{width:1391.817493pt;}
._1b{width:1413.888000pt;}
._18{width:1430.644160pt;}
._13{width:1441.476267pt;}
._4f{width:1496.490667pt;}
.fsb{font-size:28.000000pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs2{font-size:41.066666pt;}
.fs8{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:49.066666pt;}
.fs4{font-size:52.266667pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:54.933333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:66.666667pt;}
.fs6{font-size:69.333333pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:4.166260pt;}
.y32{bottom:24.166260pt;}
.y2c{bottom:56.706933pt;}
.y2b{bottom:67.374933pt;}
.y2a{bottom:78.042933pt;}
.y29{bottom:88.710933pt;}
.y2d8{bottom:88.877848pt;}
.y17b{bottom:89.459727pt;}
.y1e0{bottom:89.472532pt;}
.y149{bottom:89.474130pt;}
.y12f{bottom:89.475738pt;}
.ydc{bottom:89.477336pt;}
.y99{bottom:89.743998pt;}
.y1b0{bottom:90.714675pt;}
.y18d{bottom:94.026000pt;}
.y291{bottom:94.610657pt;}
.y6c{bottom:96.639200pt;}
.y239{bottom:96.640798pt;}
.yf9{bottom:96.783997pt;}
.y219{bottom:96.840800pt;}
.ybd{bottom:98.839202pt;}
.y28{bottom:99.378933pt;}
.y124{bottom:99.441333pt;}
.y2d7{bottom:100.877848pt;}
.y290{bottom:106.610657pt;}
.y1e9{bottom:106.822133pt;}
.y17a{bottom:108.327994pt;}
.y1f5{bottom:108.335994pt;}
.ydb{bottom:108.337602pt;}
.y1df{bottom:108.340798pt;}
.y148{bottom:108.342396pt;}
.y12e{bottom:108.344004pt;}
.y98{bottom:108.601069pt;}
.y1af{bottom:109.582942pt;}
.y27{bottom:110.046933pt;}
.y2d6{bottom:112.877848pt;}
.y18c{bottom:112.892537pt;}
.y6b{bottom:115.507467pt;}
.y218{bottom:115.707469pt;}
.ybc{bottom:117.707469pt;}
.y123{bottom:118.309600pt;}
.y28f{bottom:118.610657pt;}
.y26{bottom:120.714933pt;}
.y2d5{bottom:124.877848pt;}
.y1e8{bottom:125.683998pt;}
.y179{bottom:127.196261pt;}
.y1f4{bottom:127.204261pt;}
.yda{bottom:127.205869pt;}
.y12d{bottom:127.207467pt;}
.y1de{bottom:127.209065pt;}
.y147{bottom:127.210663pt;}
.y97{bottom:127.469336pt;}
.y1ae{bottom:128.451208pt;}
.y28e{bottom:130.610657pt;}
.y25{bottom:131.382933pt;}
.y18b{bottom:131.739980pt;}
.y250{bottom:134.366125pt;}
.y238{bottom:134.369341pt;}
.y6a{bottom:134.374135pt;}
.y217{bottom:134.558137pt;}
.ybb{bottom:136.574137pt;}
.y2d4{bottom:136.877848pt;}
.y122{bottom:137.177867pt;}
.y28d{bottom:142.610657pt;}
.y1e7{bottom:144.552265pt;}
.y178{bottom:146.064527pt;}
.y1bc{bottom:146.066136pt;}
.y1f3{bottom:146.072527pt;}
.yd9{bottom:146.074136pt;}
.y12c{bottom:146.075733pt;}
.y146{bottom:146.077332pt;}
.y96{bottom:146.337602pt;}
.y1ad{bottom:147.319475pt;}
.y2d3{bottom:148.877848pt;}
.y18a{bottom:150.608246pt;}
.y24f{bottom:153.234392pt;}
.y69{bottom:153.237608pt;}
.y216{bottom:153.426404pt;}
.y28c{bottom:154.610657pt;}
.yba{bottom:155.432796pt;}
.y121{bottom:156.041339pt;}
.y2d2{bottom:160.877848pt;}
.y1e6{bottom:163.420531pt;}
.y177{bottom:164.932794pt;}
.y1bb{bottom:164.934402pt;}
.y1f2{bottom:164.940794pt;}
.yd8{bottom:164.942402pt;}
.y12b{bottom:164.944000pt;}
.y95{bottom:165.205869pt;}
.y1ac{bottom:166.187742pt;}
.y28b{bottom:166.610657pt;}
.y189{bottom:169.476513pt;}
.y12{bottom:170.981730pt;}
.y24e{bottom:172.102658pt;}
.y68{bottom:172.105875pt;}
.y215{bottom:172.294671pt;}
.y2d1{bottom:172.877848pt;}
.yb9{bottom:174.301063pt;}
.y120{bottom:174.909606pt;}
.y28a{bottom:178.610657pt;}
.y1e5{bottom:182.288798pt;}
.y176{bottom:183.801061pt;}
.y1ba{bottom:183.802669pt;}
.y1f1{bottom:183.809061pt;}
.yd7{bottom:183.810669pt;}
.y94{bottom:184.074136pt;}
.y2d0{bottom:184.877848pt;}
.y1ab{bottom:185.056008pt;}
.y188{bottom:188.344780pt;}
.y11{bottom:189.848409pt;}
.y289{bottom:190.610657pt;}
.y24d{bottom:190.970925pt;}
.y67{bottom:190.974141pt;}
.y214{bottom:191.162937pt;}
.yb8{bottom:193.169329pt;}
.y11f{bottom:193.777873pt;}
.y2cf{bottom:196.877848pt;}
.y145{bottom:198.949073pt;}
.y1e4{bottom:201.155457pt;}
.y288{bottom:202.610657pt;}
.y175{bottom:202.669327pt;}
.y1b9{bottom:202.670936pt;}
.y266{bottom:202.674132pt;}
.yd6{bottom:202.675740pt;}
.y1f0{bottom:202.677327pt;}
.y93{bottom:202.942402pt;}
.y1aa{bottom:203.924275pt;}
.y1dd{bottom:206.252662pt;}
.y187{bottom:207.213046pt;}
.y10{bottom:208.713459pt;}
.y2ce{bottom:208.877848pt;}
.y66{bottom:209.834408pt;}
.y24c{bottom:209.839192pt;}
.y237{bottom:209.840800pt;}
.y213{bottom:210.031204pt;}
.yb7{bottom:212.037596pt;}
.y11e{bottom:212.642943pt;}
.y144{bottom:217.817339pt;}
.y2cd{bottom:220.877848pt;}
.y174{bottom:221.537594pt;}
.y1b8{bottom:221.539202pt;}
.y265{bottom:221.542398pt;}
.yd5{bottom:221.544006pt;}
.y92{bottom:221.810669pt;}
.y1a9{bottom:222.792542pt;}
.y1dc{bottom:225.120928pt;}
.y186{bottom:226.081313pt;}
.yf{bottom:227.581726pt;}
.y236{bottom:228.693087pt;}
.y65{bottom:228.702675pt;}
.y24b{bottom:228.707458pt;}
.y212{bottom:228.899471pt;}
.yb6{bottom:230.905863pt;}
.y11d{bottom:231.511210pt;}
.y12a{bottom:232.288798pt;}
.y2cc{bottom:232.877848pt;}
.y143{bottom:236.685606pt;}
.y1e3{bottom:238.888794pt;}
.y173{bottom:240.405861pt;}
.y1b7{bottom:240.407469pt;}
.yd4{bottom:240.410665pt;}
.y91{bottom:240.674132pt;}
.y1a8{bottom:241.659200pt;}
.y1db{bottom:243.989195pt;}
.y2cb{bottom:244.877848pt;}
.y185{bottom:244.949580pt;}
.ye{bottom:246.448405pt;}
.y235{bottom:247.561354pt;}
.y64{bottom:247.570941pt;}
.y24a{bottom:247.574137pt;}
.y211{bottom:247.767737pt;}
.yb5{bottom:249.774129pt;}
.y11c{bottom:250.377869pt;}
.y129{bottom:251.153869pt;}
.y142{bottom:255.553873pt;}
.y2ca{bottom:256.877848pt;}
.y1e2{bottom:257.753865pt;}
.yd3{bottom:259.269344pt;}
.y172{bottom:259.274127pt;}
.y1b6{bottom:259.275736pt;}
.y264{bottom:259.277323pt;}
.y90{bottom:259.542398pt;}
.y1a7{bottom:260.516271pt;}
.y1da{bottom:262.857462pt;}
.y184{bottom:263.817846pt;}
.yd{bottom:265.310259pt;}
.y234{bottom:266.429620pt;}
.y63{bottom:266.439208pt;}
.y210{bottom:266.636004pt;}
.yb4{bottom:268.640808pt;}
.y2c9{bottom:268.877848pt;}
.y11b{bottom:269.244527pt;}
.y128{bottom:270.022135pt;}
.y287{bottom:273.359070pt;}
.y141{bottom:274.422139pt;}
.y1e1{bottom:276.622131pt;}
.yd2{bottom:278.137610pt;}
.y171{bottom:278.142394pt;}
.y1b5{bottom:278.144002pt;}
.y8f{bottom:278.410665pt;}
.y1a6{bottom:279.384537pt;}
.y2c8{bottom:280.877848pt;}
.y1d9{bottom:281.725728pt;}
.y183{bottom:282.686113pt;}
.yc{bottom:284.178526pt;}
.y233{bottom:285.297887pt;}
.y249{bottom:285.304258pt;}
.y62{bottom:285.307475pt;}
.y20f{bottom:285.504271pt;}
.yb3{bottom:287.504271pt;}
.y127{bottom:288.885598pt;}
.y2c7{bottom:292.877848pt;}
.y140{bottom:293.288798pt;}
.yd1{bottom:297.005877pt;}
.y1b4{bottom:297.009073pt;}
.y170{bottom:297.010661pt;}
.y8e{bottom:297.277323pt;}
.y286{bottom:297.359070pt;}
.y1a5{bottom:298.252804pt;}
.y1d8{bottom:300.592407pt;}
.y182{bottom:301.554380pt;}
.yb{bottom:303.046793pt;}
.y232{bottom:304.166154pt;}
.y248{bottom:304.172525pt;}
.y61{bottom:304.174133pt;}
.y20e{bottom:304.372537pt;}
.y2c6{bottom:304.877848pt;}
.yb2{bottom:306.372537pt;}
.y126{bottom:307.753865pt;}
.y285{bottom:309.359070pt;}
.y16f{bottom:315.869319pt;}
.yd0{bottom:315.874144pt;}
.y1b3{bottom:315.877340pt;}
.y8d{bottom:316.144124pt;}
.y2c5{bottom:316.877848pt;}
.y1a4{bottom:317.121071pt;}
.y1d7{bottom:319.455849pt;}
.y181{bottom:320.422646pt;}
.ya{bottom:321.915059pt;}
.y231{bottom:323.034420pt;}
.y60{bottom:323.037596pt;}
.y247{bottom:323.040792pt;}
.y20d{bottom:323.240804pt;}
.y11a{bottom:323.441486pt;}
.yf8{bottom:325.234412pt;}
.yb1{bottom:325.240804pt;}
.y125{bottom:326.622131pt;}
.y1eb{bottom:327.355326pt;}
.y2c4{bottom:328.877848pt;}
.y284{bottom:329.359070pt;}
.y16e{bottom:334.737586pt;}
.ycf{bottom:334.742410pt;}
.y1a3{bottom:335.989337pt;}
.y1d6{bottom:338.324116pt;}
.y180{bottom:339.290913pt;}
.y9{bottom:340.781738pt;}
.y2c3{bottom:340.877848pt;}
.y230{bottom:341.902687pt;}
.y5f{bottom:341.905863pt;}
.y20c{bottom:342.104287pt;}
.y119{bottom:342.309753pt;}
.yf7{bottom:344.102679pt;}
.yb0{bottom:344.105854pt;}
.y15e{bottom:344.473473pt;}
.y2c2{bottom:352.877848pt;}
.y16d{bottom:353.605853pt;}
.yce{bottom:353.610677pt;}
.y1a2{bottom:354.857604pt;}
.y15d{bottom:355.804140pt;}
.y1d5{bottom:357.192383pt;}
.y17f{bottom:358.159180pt;}
.y8{bottom:359.646789pt;}
.y22f{bottom:360.770954pt;}
.y5e{bottom:360.774129pt;}
.y20b{bottom:360.972554pt;}
.y118{bottom:361.178019pt;}
.y8c{bottom:362.967729pt;}
.yf6{bottom:362.970946pt;}
.yaf{bottom:362.974121pt;}
.y2c1{bottom:364.877848pt;}
.y283{bottom:367.092407pt;}
.y15c{bottom:367.134806pt;}
.y1ef{bottom:370.018919pt;}
.y263{bottom:372.462944pt;}
.ycd{bottom:372.470944pt;}
.y16c{bottom:372.474119pt;}
.y1a1{bottom:373.725871pt;}
.y1d4{bottom:376.055866pt;}
.y2c0{bottom:376.877848pt;}
.y17e{bottom:377.025879pt;}
.y7{bottom:378.515055pt;}
.y13f{bottom:379.036011pt;}
.y282{bottom:379.092407pt;}
.y246{bottom:379.632788pt;}
.y5d{bottom:379.637612pt;}
.y22e{bottom:379.639220pt;}
.y20a{bottom:379.840820pt;}
.y117{bottom:380.044515pt;}
.yae{bottom:381.834388pt;}
.y8b{bottom:381.835996pt;}
.yf5{bottom:381.839212pt;}
.y169{bottom:386.360015pt;}
.y2bf{bottom:388.877848pt;}
.y1ee{bottom:388.887186pt;}
.y262{bottom:391.331210pt;}
.ycc{bottom:391.339210pt;}
.y16b{bottom:391.342386pt;}
.y1a0{bottom:392.592651pt;}
.y1d3{bottom:394.924132pt;}
.y6{bottom:397.380146pt;}
.y245{bottom:398.501054pt;}
.y5c{bottom:398.505879pt;}
.y22d{bottom:398.507487pt;}
.y209{bottom:398.696263pt;}
.y116{bottom:398.900120pt;}
.y281{bottom:399.092407pt;}
.yad{bottom:400.702654pt;}
.y8a{bottom:400.704263pt;}
.yf4{bottom:400.707479pt;}
.y2be{bottom:400.877848pt;}
.y168{bottom:402.562682pt;}
.y1ed{bottom:407.755452pt;}
.y261{bottom:410.199477pt;}
.ycb{bottom:410.207477pt;}
.y16a{bottom:410.210653pt;}
.y280{bottom:411.092407pt;}
.y2bd{bottom:412.877848pt;}
.y1d2{bottom:413.792399pt;}
.y5{bottom:416.248413pt;}
.y22c{bottom:417.359754pt;}
.y244{bottom:417.369321pt;}
.y5b{bottom:417.374146pt;}
.y208{bottom:417.564529pt;}
.y115{bottom:417.768387pt;}
.y167{bottom:418.690682pt;}
.yf3{bottom:419.567746pt;}
.yac{bottom:419.570921pt;}
.y89{bottom:419.572529pt;}
.y192{bottom:420.473473pt;}
.y27f{bottom:423.092407pt;}
.y2bc{bottom:424.877848pt;}
.y1ec{bottom:426.622152pt;}
.y260{bottom:429.067744pt;}
.yca{bottom:429.075744pt;}
.y191{bottom:431.804140pt;}
.y1d1{bottom:432.659058pt;}
.y166{bottom:434.818682pt;}
.y4{bottom:435.115072pt;}
.y22b{bottom:436.228020pt;}
.y5a{bottom:436.236020pt;}
.y243{bottom:436.237588pt;}
.y207{bottom:436.432796pt;}
.y114{bottom:436.636653pt;}
.y2bb{bottom:436.877848pt;}
.yf2{bottom:438.436012pt;}
.yab{bottom:438.439188pt;}
.y88{bottom:438.440796pt;}
.y27e{bottom:443.092407pt;}
.y190{bottom:443.134806pt;}
.y1b2{bottom:445.435343pt;}
.y25f{bottom:447.936010pt;}
.yc9{bottom:447.944010pt;}
.y2ba{bottom:448.877848pt;}
.y165{bottom:450.946682pt;}
.y1d0{bottom:451.525716pt;}
.y27d{bottom:455.092407pt;}
.y22a{bottom:455.096287pt;}
.y59{bottom:455.104287pt;}
.y242{bottom:455.105854pt;}
.y206{bottom:455.301063pt;}
.y113{bottom:455.504920pt;}
.y87{bottom:457.299454pt;}
.yf1{bottom:457.304279pt;}
.yaa{bottom:457.307454pt;}
.y2b9{bottom:460.877848pt;}
.y19f{bottom:462.338682pt;}
.y1be{bottom:465.522949pt;}
.y25e{bottom:466.804277pt;}
.yc8{bottom:466.807453pt;}
.y164{bottom:467.074682pt;}
.y27c{bottom:467.092407pt;}
.y23{bottom:470.081868pt;}
.y2b8{bottom:472.877848pt;}
.y229{bottom:473.964554pt;}
.y58{bottom:473.972554pt;}
.y241{bottom:473.974121pt;}
.y205{bottom:474.169329pt;}
.y112{bottom:474.373187pt;}
.y86{bottom:476.167721pt;}
.yf0{bottom:476.172546pt;}
.ya9{bottom:476.174154pt;}
.y1f7{bottom:477.915324pt;}
.y19e{bottom:478.541349pt;}
.y27b{bottom:479.092407pt;}
.y17d{bottom:479.802938pt;}
.y163{bottom:483.202682pt;}
.y2b7{bottom:484.877848pt;}
.y25d{bottom:485.672544pt;}
.yc7{bottom:485.675719pt;}
.y22{bottom:486.081868pt;}
.y27a{bottom:491.092407pt;}
.y240{bottom:492.827996pt;}
.y228{bottom:492.832820pt;}
.y57{bottom:492.840820pt;}
.y204{bottom:493.037596pt;}
.y111{bottom:493.241453pt;}
.y19d{bottom:494.669349pt;}
.y85{bottom:495.035988pt;}
.yef{bottom:495.040812pt;}
.y2b6{bottom:496.877848pt;}
.y162{bottom:499.330682pt;}
.y25c{bottom:504.540810pt;}
.yc6{bottom:504.543986pt;}
.y21{bottom:507.415202pt;}
.y2b5{bottom:508.877848pt;}
.y19c{bottom:510.808015pt;}
.y279{bottom:511.092407pt;}
.y23f{bottom:511.696263pt;}
.y227{bottom:511.701087pt;}
.y1cf{bottom:511.702654pt;}
.y56{bottom:511.704263pt;}
.y203{bottom:511.905863pt;}
.y110{bottom:512.109720pt;}
.yee{bottom:513.897863pt;}
.y84{bottom:513.904254pt;}
.y161{bottom:515.458682pt;}
.y2b4{bottom:520.877848pt;}
.y19b{bottom:522.808015pt;}
.y278{bottom:523.092407pt;}
.y25b{bottom:523.409077pt;}
.yc5{bottom:523.410685pt;}
.y20{bottom:523.415202pt;}
.y23e{bottom:530.564529pt;}
.y226{bottom:530.569354pt;}
.y1ce{bottom:530.570921pt;}
.y55{bottom:530.572529pt;}
.ya8{bottom:530.574137pt;}
.y202{bottom:530.774129pt;}
.y10f{bottom:530.977987pt;}
.y160{bottom:531.586682pt;}
.yed{bottom:532.766129pt;}
.y83{bottom:532.772521pt;}
.y2b3{bottom:532.877848pt;}
.y19a{bottom:538.936015pt;}
.y1f{bottom:539.415202pt;}
.y25a{bottom:542.277344pt;}
.y277{bottom:543.089191pt;}
.y2b2{bottom:544.877848pt;}
.y23d{bottom:549.432796pt;}
.y225{bottom:549.437620pt;}
.y1cd{bottom:549.439188pt;}
.y54{bottom:549.440796pt;}
.y201{bottom:549.640788pt;}
.y10e{bottom:549.839739pt;}
.yec{bottom:551.634396pt;}
.y82{bottom:551.640788pt;}
.y199{bottom:555.064015pt;}
.y1e{bottom:555.415202pt;}
.y15f{bottom:555.490682pt;}
.y2b1{bottom:556.877848pt;}
.y259{bottom:561.136002pt;}
.y276{bottom:561.957458pt;}
.yc4{bottom:563.694945pt;}
.y23c{bottom:568.301063pt;}
.ya7{bottom:568.305887pt;}
.y53{bottom:568.307454pt;}
.y200{bottom:568.507487pt;}
.y10d{bottom:568.708006pt;}
.y2b0{bottom:568.877848pt;}
.yeb{bottom:570.502663pt;}
.y81{bottom:570.505879pt;}
.y198{bottom:571.192015pt;}
.y1d{bottom:571.415202pt;}
.y15b{bottom:577.102010pt;}
.y258{bottom:580.004269pt;}
.y275{bottom:580.825724pt;}
.y2af{bottom:580.877848pt;}
.yc3{bottom:582.563211pt;}
.y52{bottom:587.169329pt;}
.y1cc{bottom:587.172546pt;}
.ya6{bottom:587.174154pt;}
.y197{bottom:587.320015pt;}
.y1c{bottom:587.415202pt;}
.y10c{bottom:587.576273pt;}
.yea{bottom:589.370929pt;}
.y80{bottom:589.374146pt;}
.y2ae{bottom:592.877848pt;}
.y257{bottom:598.872536pt;}
.y274{bottom:599.689207pt;}
.yc2{bottom:601.431478pt;}
.y1b{bottom:603.415202pt;}
.y196{bottom:603.458682pt;}
.y2ad{bottom:604.877848pt;}
.y224{bottom:606.019988pt;}
.y51{bottom:606.037596pt;}
.y1ff{bottom:606.039204pt;}
.ya5{bottom:606.040812pt;}
.y10b{bottom:606.444539pt;}
.y7f{bottom:608.232804pt;}
.ye9{bottom:608.239196pt;}
.y195{bottom:615.458682pt;}
.y2ac{bottom:616.877848pt;}
.y256{bottom:617.740802pt;}
.y273{bottom:618.557474pt;}
.y1a{bottom:619.415202pt;}
.yc1{bottom:620.298136pt;}
.y223{bottom:624.888254pt;}
.ya4{bottom:624.896254pt;}
.y50{bottom:624.905863pt;}
.y1fe{bottom:624.907471pt;}
.y10a{bottom:625.303361pt;}
.y7e{bottom:627.101071pt;}
.ye8{bottom:627.107463pt;}
.y3d{bottom:627.881714pt;}
.y15a{bottom:628.572016pt;}
.y2ab{bottom:628.877848pt;}
.y1ea{bottom:630.431315pt;}
.y194{bottom:631.586682pt;}
.y19{bottom:635.415202pt;}
.y255{bottom:636.609069pt;}
.y272{bottom:637.425741pt;}
.yc0{bottom:639.161619pt;}
.y3c{bottom:639.881714pt;}
.y159{bottom:640.572016pt;}
.y2aa{bottom:640.877848pt;}
.y222{bottom:643.756521pt;}
.ya3{bottom:643.764521pt;}
.y1fd{bottom:643.767737pt;}
.y4f{bottom:643.774129pt;}
.y109{bottom:644.171627pt;}
.ye7{bottom:645.967770pt;}
.y7d{bottom:645.969337pt;}
.y18{bottom:651.415202pt;}
.y3b{bottom:651.881714pt;}
.y158{bottom:652.572016pt;}
.y2a9{bottom:652.877848pt;}
.y254{bottom:655.477336pt;}
.y193{bottom:655.490682pt;}
.y271{bottom:656.292399pt;}
.ybf{bottom:658.029886pt;}
.y221{bottom:662.624788pt;}
.y4e{bottom:662.629571pt;}
.ya2{bottom:662.632788pt;}
.y1fc{bottom:662.636004pt;}
.y1cb{bottom:662.639220pt;}
.y23b{bottom:662.640788pt;}
.y108{bottom:663.039894pt;}
.ye6{bottom:664.836037pt;}
.y7c{bottom:664.837604pt;}
.y2a8{bottom:664.877848pt;}
.y17{bottom:667.415202pt;}
.y3a{bottom:667.881714pt;}
.y157{bottom:668.774683pt;}
.y253{bottom:674.343994pt;}
.y270{bottom:675.152666pt;}
.y39{bottom:675.881755pt;}
.y2a7{bottom:676.877848pt;}
.ybe{bottom:676.898153pt;}
.y18f{bottom:677.102010pt;}
.y156{bottom:680.774683pt;}
.y220{bottom:681.493054pt;}
.y4d{bottom:681.497838pt;}
.ya1{bottom:681.501054pt;}
.y1fb{bottom:681.504271pt;}
.y1ca{bottom:681.507487pt;}
.y107{bottom:681.908161pt;}
.y16{bottom:683.415202pt;}
.ye5{bottom:683.704303pt;}
.y7b{bottom:683.705871pt;}
.y38{bottom:687.881755pt;}
.y13e{bottom:688.198683pt;}
.y2a6{bottom:688.877848pt;}
.y26f{bottom:694.020932pt;}
.y155{bottom:696.902683pt;}
.y15{bottom:699.415202pt;}
.y37{bottom:699.881755pt;}
.y21f{bottom:700.361321pt;}
.y4c{bottom:700.366105pt;}
.y1c9{bottom:700.367754pt;}
.ya0{bottom:700.369321pt;}
.y1fa{bottom:700.372537pt;}
.y106{bottom:700.776427pt;}
.y2a5{bottom:700.877848pt;}
.ye4{bottom:702.572570pt;}
.y7a{bottom:702.574137pt;}
.y13d{bottom:704.401350pt;}
.y2a4{bottom:712.877848pt;}
.y26e{bottom:712.889199pt;}
.y154{bottom:713.041350pt;}
.y14{bottom:715.415202pt;}
.y36{bottom:715.881755pt;}
.y1bd{bottom:717.151367pt;}
.y21e{bottom:719.229588pt;}
.y4b{bottom:719.234371pt;}
.y1c8{bottom:719.236020pt;}
.y9f{bottom:719.237588pt;}
.y1f9{bottom:719.240804pt;}
.y105{bottom:719.644694pt;}
.y13c{bottom:720.540016pt;}
.y79{bottom:721.437620pt;}
.ye3{bottom:721.440837pt;}
.y2a3{bottom:724.877848pt;}
.y153{bottom:725.041350pt;}
.ydd{bottom:725.151367pt;}
.y18e{bottom:725.311361pt;}
.y35{bottom:730.881755pt;}
.y26d{bottom:731.757466pt;}
.y13{bottom:735.415202pt;}
.y1f6{bottom:736.351318pt;}
.y1b1{bottom:736.593350pt;}
.y13b{bottom:736.668016pt;}
.y2a2{bottom:736.877848pt;}
.y21d{bottom:738.097854pt;}
.y4a{bottom:738.102638pt;}
.y1c7{bottom:738.104287pt;}
.y9e{bottom:738.105854pt;}
.y104{bottom:738.503230pt;}
.ye2{bottom:740.304238pt;}
.y78{bottom:740.305887pt;}
.y152{bottom:741.180016pt;}
.y34{bottom:742.881755pt;}
.y2a1{bottom:748.877848pt;}
.y26c{bottom:750.625732pt;}
.y17c{bottom:751.551351pt;}
.y13a{bottom:752.796016pt;}
.y151{bottom:753.180016pt;}
.y21c{bottom:756.966121pt;}
.y49{bottom:756.970905pt;}
.y1c6{bottom:756.972554pt;}
.y9d{bottom:756.974121pt;}
.y103{bottom:757.371497pt;}
.ye1{bottom:759.172505pt;}
.y77{bottom:759.174154pt;}
.y2a0{bottom:760.877848pt;}
.y139{bottom:768.934683pt;}
.y150{bottom:769.308016pt;}
.y26b{bottom:769.492432pt;}
.y29f{bottom:772.877848pt;}
.y252{bottom:775.828037pt;}
.y21b{bottom:775.834388pt;}
.y48{bottom:775.839171pt;}
.y1c5{bottom:775.840820pt;}
.y102{bottom:776.239764pt;}
.y76{bottom:778.036303pt;}
.ye0{bottom:778.040771pt;}
.y14f{bottom:781.308016pt;}
.y29e{bottom:784.877848pt;}
.y138{bottom:785.062683pt;}
.y26a{bottom:788.355833pt;}
.y2da{bottom:788.877848pt;}
.y3{bottom:794.381755pt;}
.y251{bottom:794.696303pt;}
.y1c4{bottom:794.697871pt;}
.y21a{bottom:794.702654pt;}
.y23a{bottom:794.704303pt;}
.y47{bottom:794.707438pt;}
.y101{bottom:795.108030pt;}
.y29d{bottom:796.877848pt;}
.ydf{bottom:796.907471pt;}
.y14e{bottom:797.446683pt;}
.y2d9{bottom:800.877848pt;}
.y137{bottom:801.201350pt;}
.y269{bottom:807.224100pt;}
.y29c{bottom:808.877848pt;}
.y14d{bottom:809.446683pt;}
.y75{bottom:813.564570pt;}
.y1c3{bottom:813.566137pt;}
.y9c{bottom:813.570921pt;}
.y46{bottom:813.572570pt;}
.y1f8{bottom:813.574137pt;}
.y100{bottom:813.976297pt;}
.yde{bottom:815.774170pt;}
.y136{bottom:817.329350pt;}
.y29b{bottom:820.877848pt;}
.y14c{bottom:825.585350pt;}
.y268{bottom:826.092367pt;}
.y74{bottom:832.432837pt;}
.y1c2{bottom:832.434404pt;}
.y9b{bottom:832.439188pt;}
.y45{bottom:832.440837pt;}
.yff{bottom:832.844564pt;}
.y29a{bottom:832.877848pt;}
.y135{bottom:833.457350pt;}
.y2{bottom:835.452805pt;}
.y14b{bottom:837.585350pt;}
.y299{bottom:844.877848pt;}
.y267{bottom:844.959066pt;}
.y134{bottom:849.596016pt;}
.y73{bottom:851.301103pt;}
.y1c1{bottom:851.302671pt;}
.y44{bottom:851.304238pt;}
.y9a{bottom:851.307454pt;}
.yfe{bottom:851.706561pt;}
.y14a{bottom:853.724016pt;}
.y298{bottom:856.877848pt;}
.y133{bottom:865.724016pt;}
.y297{bottom:868.877848pt;}
.y1{bottom:870.108805pt;}
.y72{bottom:870.169370pt;}
.y1c0{bottom:870.170937pt;}
.y43{bottom:870.172505pt;}
.yfd{bottom:870.574827pt;}
.y296{bottom:880.877848pt;}
.y132{bottom:881.862683pt;}
.y71{bottom:889.037637pt;}
.y1bf{bottom:889.039204pt;}
.y42{bottom:889.040771pt;}
.yfc{bottom:889.443094pt;}
.y295{bottom:892.877848pt;}
.y294{bottom:904.877848pt;}
.y131{bottom:905.766683pt;}
.y70{bottom:907.905903pt;}
.y41{bottom:907.907471pt;}
.yfb{bottom:908.311361pt;}
.y293{bottom:916.877848pt;}
.y2d{bottom:920.265218pt;}
.y24{bottom:920.666829pt;}
.y40{bottom:926.774170pt;}
.yfa{bottom:927.177897pt;}
.y130{bottom:927.377848pt;}
.y292{bottom:928.877848pt;}
.y31{bottom:973.483968pt;}
.y30{bottom:975.375182pt;}
.y2f{bottom:988.708515pt;}
.y6d{bottom:1001.355225pt;}
.y3e{bottom:1001.355306pt;}
.y6f{bottom:1001.561768pt;}
.y2e{bottom:1001.711182pt;}
.y6e{bottom:1002.044515pt;}
.y3f{bottom:1002.048639pt;}
.h15{height:24.724000pt;}
.he{height:32.965333pt;}
.h14{height:35.320000pt;}
.h35{height:35.541333pt;}
.hd{height:36.922667pt;}
.h33{height:37.674667pt;}
.h47{height:38.080000pt;}
.h12{height:38.116000pt;}
.h46{height:38.920000pt;}
.h11{height:40.618667pt;}
.h10{height:40.661333pt;}
.h32{height:41.514667pt;}
.hf{height:41.984000pt;}
.h28{height:42.197333pt;}
.ha{height:47.093333pt;}
.h31{height:47.472000pt;}
.h20{height:47.741866pt;}
.h1d{height:48.555733pt;}
.h5{height:49.653333pt;}
.h6{height:49.659603pt;}
.h26{height:49.659685pt;}
.h9{height:49.659762pt;}
.h7{height:49.659766pt;}
.h23{height:49.659929pt;}
.h2f{height:49.660254pt;}
.h43{height:49.665873pt;}
.h1a{height:49.666036pt;}
.h1b{height:49.666117pt;}
.h30{height:49.666118pt;}
.h16{height:49.666198pt;}
.h21{height:49.666687pt;}
.h1e{height:49.671206pt;}
.h2b{height:49.671817pt;}
.h19{height:49.672468pt;}
.h42{height:49.672509pt;}
.h8{height:49.672550pt;}
.h18{height:49.672631pt;}
.h3d{height:49.672794pt;}
.h2d{height:49.673119pt;}
.h29{height:49.678738pt;}
.h1c{height:49.678901pt;}
.h27{height:49.678941pt;}
.h39{height:49.678982pt;}
.h24{height:49.679064pt;}
.h2c{height:49.685171pt;}
.h25{height:49.685252pt;}
.h1f{height:49.685333pt;}
.h3c{height:49.685374pt;}
.h36{height:49.685415pt;}
.h3b{height:49.691603pt;}
.h38{height:49.691685pt;}
.h2a{height:49.691766pt;}
.h22{height:49.692254pt;}
.h2e{height:49.697710pt;}
.h3a{height:49.698117pt;}
.h17{height:49.698198pt;}
.h45{height:49.704468pt;}
.h44{height:49.704631pt;}
.h41{height:49.710819pt;}
.h40{height:49.710901pt;}
.h3e{height:49.717333pt;}
.h37{height:49.730768pt;}
.h3f{height:49.736631pt;}
.hb{height:51.893333pt;}
.h4{height:54.329067pt;}
.h3{height:59.728337pt;}
.h13{height:63.466667pt;}
.hc{height:68.570667pt;}
.h34{height:85.674667pt;}
.h2{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:177.965332pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.450000pt;}
.x1{left:75.496002pt;}
.x6{left:83.317602pt;}
.xa{left:156.850403pt;}
.xd{left:164.850403pt;}
.xb{left:167.512803pt;}
.x11{left:176.850403pt;}
.xc{left:183.517069pt;}
.x2{left:238.110270pt;}
.x4{left:246.777323pt;}
.x3{left:248.772670pt;}
.xe{left:278.151764pt;}
.x7{left:540.145345pt;}
.xf{left:576.807877pt;}
.x5{left:617.715454pt;}
.x10{left:658.727458pt;}
.x9{left:664.199341pt;}
}




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