
    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_1eef6dfc82f7c1d8d671e13a.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_fbdf317cb11e5b6c6eea2e29.woff')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_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_427493f6585d4acb32ad1e93.woff')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_0f74c7797bc3d874abdd0185.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba295b0ddc22335754a1f684.woff')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_2e07cb015861ee67ca9f888e.woff')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_f256afa8443cc9a244014a2c.woff')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_d838bf2365c73200a0e5e2b4.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d9514efd4ff9a494c52721f6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.588000;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_959d8af233374a940513fde7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666000;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_1d61d22d39652d613fe795cd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.222000;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:ffd;src:url('chunks/assets/font_fa9f685bcb8428221dd72f9f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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);}
.v5{vertical-align:-23.520081px;}
.v6{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v2{vertical-align:9.550415px;}
.v4{vertical-align:23.404881px;}
.v3{vertical-align:26.399780px;}
.ls12{letter-spacing:-1.575000px;}
.lsb{letter-spacing:-1.176000px;}
.ls2{letter-spacing:-1.050000px;}
.ls13{letter-spacing:-0.675000px;}
.lsc{letter-spacing:-0.588000px;}
.ls3{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.176400px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000002px;}
.lsa{letter-spacing:0.352800px;}
.lse{letter-spacing:0.411472px;}
.ls7{letter-spacing:0.575984px;}
.ls8{letter-spacing:0.576596px;}
.lsd{letter-spacing:0.588000px;}
.ls5{letter-spacing:0.782040px;}
.ls4{letter-spacing:0.823200px;}
.ls6{letter-spacing:0.829080px;}
.lsf{letter-spacing:0.882000px;}
.ls10{letter-spacing:1.176000px;}
.ls0{letter-spacing:5.460000px;}
.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;}
}
.wscc{word-spacing:-14.700000px;}
.ws3d{word-spacing:-14.641200px;}
.wscb{word-spacing:-14.406000px;}
.ws9d{word-spacing:-14.170800px;}
.ws2c{word-spacing:-13.818000px;}
.ws77{word-spacing:-13.706280px;}
.ws2a{word-spacing:-13.641600px;}
.wsa4{word-spacing:-13.230000px;}
.ws4{word-spacing:-12.483600px;}
.ws7{word-spacing:-11.880000px;}
.ws2b{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.ws5{word-spacing:-9.855000px;}
.ws78{word-spacing:-9.672600px;}
.wse5{word-spacing:-9.315000px;}
.ws2{word-spacing:-8.148000px;}
.wse4{word-spacing:-4.512000px;}
.ws8b{word-spacing:-3.410400px;}
.ws7f{word-spacing:-1.764000px;}
.ws8f{word-spacing:-1.470000px;}
.ws8a{word-spacing:-1.352400px;}
.wse8{word-spacing:-1.176000px;}
.ws13{word-spacing:-0.999600px;}
.ws31{word-spacing:-0.823200px;}
.ws25{word-spacing:-0.764400px;}
.ws17{word-spacing:-0.588000px;}
.ws92{word-spacing:-0.529200px;}
.wsc0{word-spacing:-0.411600px;}
.wsc4{word-spacing:-0.352800px;}
.ws71{word-spacing:-0.294000px;}
.wsa{word-spacing:-0.176400px;}
.wsbb{word-spacing:-0.058800px;}
.ws76{word-spacing:-0.041160px;}
.ws6{word-spacing:0.000000px;}
.wsa0{word-spacing:0.117600px;}
.ws95{word-spacing:0.235200px;}
.ws24{word-spacing:0.294000px;}
.wsb8{word-spacing:0.352800px;}
.wsd8{word-spacing:0.411600px;}
.wsc2{word-spacing:0.529200px;}
.ws22{word-spacing:0.588000px;}
.wsa8{word-spacing:0.646800px;}
.ws1b{word-spacing:0.705600px;}
.wscd{word-spacing:0.823200px;}
.ws47{word-spacing:0.940800px;}
.ws8e{word-spacing:0.999600px;}
.ws1c{word-spacing:1.058400px;}
.ws89{word-spacing:1.117200px;}
.ws85{word-spacing:1.176000px;}
.ws94{word-spacing:1.293600px;}
.ws5f{word-spacing:1.352400px;}
.wsa2{word-spacing:1.411200px;}
.wsa9{word-spacing:1.587600px;}
.ws99{word-spacing:1.764000px;}
.ws5c{word-spacing:1.999200px;}
.ws11{word-spacing:2.058000px;}
.ws46{word-spacing:2.116800px;}
.wsbd{word-spacing:2.175600px;}
.ws54{word-spacing:2.234400px;}
.ws69{word-spacing:2.293200px;}
.ws8d{word-spacing:2.352000px;}
.wsb2{word-spacing:2.469600px;}
.ws1d{word-spacing:2.587200px;}
.ws42{word-spacing:2.646000px;}
.wsbc{word-spacing:2.704800px;}
.wsc1{word-spacing:2.763600px;}
.ws19{word-spacing:2.822400px;}
.ws72{word-spacing:2.881200px;}
.ws44{word-spacing:2.940000px;}
.ws23{word-spacing:2.998800px;}
.ws15{word-spacing:3.057600px;}
.ws63{word-spacing:3.175200px;}
.wsc3{word-spacing:3.292800px;}
.ws66{word-spacing:3.351600px;}
.ws6f{word-spacing:3.469200px;}
.ws18{word-spacing:3.528000px;}
.wscf{word-spacing:3.645600px;}
.ws87{word-spacing:3.704400px;}
.ws82{word-spacing:3.763200px;}
.ws28{word-spacing:3.998400px;}
.ws26{word-spacing:4.057200px;}
.ws41{word-spacing:4.174800px;}
.ws9b{word-spacing:4.233600px;}
.ws3f{word-spacing:4.351200px;}
.wsd5{word-spacing:4.468800px;}
.wsac{word-spacing:4.527600px;}
.ws90{word-spacing:4.586400px;}
.wsaf{word-spacing:4.645200px;}
.ws35{word-spacing:4.762800px;}
.wse0{word-spacing:4.880400px;}
.wsd{word-spacing:4.939200px;}
.ws12{word-spacing:4.998000px;}
.wsa1{word-spacing:5.056800px;}
.ws80{word-spacing:5.174400px;}
.ws40{word-spacing:5.233200px;}
.ws5b{word-spacing:5.292000px;}
.ws5e{word-spacing:5.409600px;}
.ws48{word-spacing:5.527200px;}
.ws59{word-spacing:5.586000px;}
.wsce{word-spacing:5.644800px;}
.ws7e{word-spacing:6.115200px;}
.ws2f{word-spacing:6.174000px;}
.ws29{word-spacing:6.232800px;}
.ws60{word-spacing:6.291600px;}
.wsba{word-spacing:6.350400px;}
.wsab{word-spacing:6.468000px;}
.ws7d{word-spacing:6.585600px;}
.wsc6{word-spacing:6.644400px;}
.ws70{word-spacing:6.762000px;}
.ws32{word-spacing:6.820800px;}
.ws9a{word-spacing:6.879600px;}
.wsd1{word-spacing:6.938400px;}
.ws14{word-spacing:7.056000px;}
.wsb3{word-spacing:7.114800px;}
.ws83{word-spacing:7.173600px;}
.ws3c{word-spacing:7.291200px;}
.ws8{word-spacing:7.350000px;}
.wsb{word-spacing:7.644000px;}
.wsb7{word-spacing:7.761600px;}
.ws88{word-spacing:7.820400px;}
.ws38{word-spacing:7.879200px;}
.wsdd{word-spacing:7.996800px;}
.ws68{word-spacing:8.114400px;}
.ws1f{word-spacing:8.173200px;}
.wsb1{word-spacing:8.232000px;}
.wsc5{word-spacing:8.349600px;}
.ws2e{word-spacing:8.408400px;}
.ws4d{word-spacing:8.526000px;}
.wsde{word-spacing:8.584800px;}
.ws81{word-spacing:8.643600px;}
.wsc7{word-spacing:8.702400px;}
.wsaa{word-spacing:8.761200px;}
.wsdf{word-spacing:8.878800px;}
.wsb0{word-spacing:9.172800px;}
.ws9{word-spacing:9.408000px;}
.wsa6{word-spacing:9.466800px;}
.ws27{word-spacing:9.584400px;}
.ws8c{word-spacing:10.054800px;}
.ws61{word-spacing:10.113600px;}
.ws30{word-spacing:10.172400px;}
.wsb9{word-spacing:10.231200px;}
.ws53{word-spacing:10.290000px;}
.ws10{word-spacing:10.348800px;}
.ws4e{word-spacing:10.407600px;}
.wse7{word-spacing:10.584000px;}
.ws52{word-spacing:10.819200px;}
.ws6b{word-spacing:10.878000px;}
.ws58{word-spacing:11.054400px;}
.ws73{word-spacing:11.230800px;}
.wsd7{word-spacing:11.289600px;}
.ws3a{word-spacing:11.348400px;}
.ws3b{word-spacing:11.524800px;}
.ws9e{word-spacing:11.701200px;}
.ws5a{word-spacing:11.818800px;}
.wsb6{word-spacing:11.877600px;}
.ws91{word-spacing:11.995200px;}
.ws74{word-spacing:12.054000px;}
.wsc{word-spacing:12.112800px;}
.wsda{word-spacing:12.348000px;}
.ws6a{word-spacing:12.583200px;}
.wsad{word-spacing:12.642000px;}
.wse{word-spacing:12.818400px;}
.wse9{word-spacing:12.994800px;}
.ws56{word-spacing:13.053600px;}
.ws16{word-spacing:13.230000px;}
.wsb4{word-spacing:13.406400px;}
.ws51{word-spacing:13.524000px;}
.wsdb{word-spacing:13.582800px;}
.ws6d{word-spacing:13.641600px;}
.ws96{word-spacing:13.700400px;}
.ws4c{word-spacing:13.759200px;}
.wsbe{word-spacing:13.818000px;}
.ws21{word-spacing:13.935600px;}
.wse6{word-spacing:14.053200px;}
.ws75{word-spacing:14.170800px;}
.wsa5{word-spacing:14.229600px;}
.ws86{word-spacing:14.288400px;}
.ws45{word-spacing:14.347200px;}
.wsa3{word-spacing:14.464800px;}
.ws1e{word-spacing:14.523600px;}
.ws62{word-spacing:14.582400px;}
.wsb5{word-spacing:14.935200px;}
.ws55{word-spacing:15.229200px;}
.wsa7{word-spacing:15.288000px;}
.ws6e{word-spacing:15.464400px;}
.ws97{word-spacing:15.640800px;}
.wsd3{word-spacing:15.758400px;}
.wsc9{word-spacing:16.052400px;}
.ws6c{word-spacing:16.287600px;}
.ws98{word-spacing:16.346400px;}
.wsbf{word-spacing:16.522800px;}
.wsae{word-spacing:16.816800px;}
.ws4f{word-spacing:17.581200px;}
.ws93{word-spacing:17.640000px;}
.ws37{word-spacing:17.698800px;}
.ws2d{word-spacing:18.169200px;}
.ws49{word-spacing:18.228000px;}
.ws20{word-spacing:18.463200px;}
.wsd2{word-spacing:18.522000px;}
.ws43{word-spacing:18.580800px;}
.ws1a{word-spacing:18.639600px;}
.ws39{word-spacing:19.168800px;}
.wsdc{word-spacing:19.462800px;}
.ws33{word-spacing:19.521600px;}
.ws9c{word-spacing:19.874400px;}
.ws5d{word-spacing:19.933200px;}
.wse3{word-spacing:20.580000px;}
.wseb{word-spacing:20.925000px;}
.wsea{word-spacing:21.109200px;}
.ws84{word-spacing:22.108800px;}
.ws4b{word-spacing:22.579200px;}
.wse2{word-spacing:22.638000px;}
.ws67{word-spacing:22.873200px;}
.wsc8{word-spacing:22.990800px;}
.wsca{word-spacing:23.049600px;}
.ws65{word-spacing:23.343600px;}
.wsf{word-spacing:23.872800px;}
.ws3e{word-spacing:24.049200px;}
.ws34{word-spacing:24.402000px;}
.ws57{word-spacing:24.990000px;}
.wsd0{word-spacing:25.048800px;}
.wsd6{word-spacing:25.989600px;}
.wsd9{word-spacing:26.577600px;}
.ws9f{word-spacing:27.812400px;}
.ws50{word-spacing:28.047600px;}
.ws4a{word-spacing:28.518000px;}
.wsd4{word-spacing:29.635200px;}
.ws36{word-spacing:34.339200px;}
.wse1{word-spacing:34.868400px;}
.ws64{word-spacing:36.338400px;}
.ws7c{word-spacing:43.923600px;}
.ws7a{word-spacing:186.672000px;}
.ws7b{word-spacing:187.248000px;}
.ws79{word-spacing:210.096000px;}
.ws1{word-spacing:1974.953950px;}
._b{margin-left:-30.225610px;}
._18{margin-left:-15.951600px;}
._f{margin-left:-14.582413px;}
._12{margin-left:-12.599996px;}
._3{margin-left:-11.268600px;}
._11{margin-left:-10.172400px;}
._d{margin-left:-8.684985px;}
._35{margin-left:-6.937320px;}
._5{margin-left:-5.898000px;}
._a{margin-left:-4.390680px;}
._2{margin-left:-2.944200px;}
._0{margin-left:-1.108800px;}
._1{width:1.134000px;}
._4{width:2.379582px;}
._9{width:3.822000px;}
._c{width:6.316800px;}
._8{width:7.879145px;}
._16{width:9.912840px;}
._7{width:10.919944px;}
._10{width:12.020376px;}
._27{width:13.636800px;}
._19{width:16.000680px;}
._6{width:17.832000px;}
._14{width:22.024800px;}
._e{width:23.612400px;}
._37{width:24.859200px;}
._36{width:29.359200px;}
._2c{width:32.091360px;}
._17{width:34.203960px;}
._15{width:43.806000px;}
._13{width:44.903879px;}
._2e{width:94.860000px;}
._2f{width:128.560496px;}
._1c{width:136.368000px;}
._1d{width:138.096000px;}
._34{width:167.530496px;}
._2d{width:180.114296px;}
._30{width:181.750496px;}
._2a{width:185.395496px;}
._1f{width:197.760000px;}
._21{width:200.064000px;}
._29{width:205.150496px;}
._31{width:213.520496px;}
._2b{width:216.760496px;}
._24{width:220.608000px;}
._33{width:222.880496px;}
._28{width:243.090000px;}
._32{width:244.845000px;}
._22{width:279.984000px;}
._20{width:289.104000px;}
._1e{width:303.408000px;}
._25{width:311.184000px;}
._23{width:312.336000px;}
._1a{width:396.039611px;}
._1b{width:509.592017px;}
._26{width:1291.871971px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.500000px;}
.fsb{font-size:41.160000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsc{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:75.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:4.687866px;}
.ya{bottom:93.135150px;}
.y156{bottom:100.295254px;}
.y168{bottom:100.758605px;}
.y9{bottom:105.136650px;}
.y18c{bottom:111.435003px;}
.y3f{bottom:114.946652px;}
.y155{bottom:115.295254px;}
.y15e{bottom:116.730297px;}
.y151{bottom:116.884645px;}
.y12d{bottom:116.927857px;}
.y8{bottom:117.138150px;}
.y167{bottom:118.751405px;}
.y201{bottom:120.511780px;}
.yb4{bottom:124.642495px;}
.y88{bottom:124.656895px;}
.y1a5{bottom:125.984098px;}
.yd7{bottom:128.796300px;}
.y7{bottom:129.139650px;}
.yfa{bottom:129.182400px;}
.y18b{bottom:129.427803px;}
.y154{bottom:130.295254px;}
.y3e{bottom:132.939452px;}
.y1c9{bottom:133.232117px;}
.y51{bottom:133.737154px;}
.y200{bottom:134.011780px;}
.y15d{bottom:134.730297px;}
.y150{bottom:134.877445px;}
.y12c{bottom:134.920657px;}
.y166{bottom:136.744205px;}
.y6{bottom:141.141150px;}
.yb3{bottom:142.635295px;}
.y87{bottom:142.649695px;}
.y1a4{bottom:143.976898px;}
.y153{bottom:145.295254px;}
.y1c8{bottom:146.732117px;}
.yd6{bottom:146.789100px;}
.yf9{bottom:147.175200px;}
.y18a{bottom:147.442203px;}
.y1ff{bottom:147.511780px;}
.y3d{bottom:150.932252px;}
.y50{bottom:151.729954px;}
.y15c{bottom:152.739898px;}
.y14f{bottom:152.884645px;}
.y12b{bottom:152.913457px;}
.y5{bottom:153.142650px;}
.y1b5{bottom:153.649057px;}
.y165{bottom:154.744205px;}
.y1c7{bottom:160.232117px;}
.yb2{bottom:160.628095px;}
.y86{bottom:160.642495px;}
.y1fe{bottom:161.011780px;}
.y1a3{bottom:161.969698px;}
.yd5{bottom:164.781900px;}
.y4{bottom:165.144150px;}
.yf8{bottom:165.168000px;}
.y189{bottom:165.435003px;}
.y3c{bottom:168.925052px;}
.y4f{bottom:169.722754px;}
.y15b{bottom:170.735097px;}
.y14e{bottom:170.877445px;}
.y12a{bottom:170.906257px;}
.y1b4{bottom:171.641857px;}
.y164{bottom:172.751405px;}
.y1c6{bottom:173.732117px;}
.y1fd{bottom:174.511780px;}
.yb1{bottom:178.620895px;}
.y85{bottom:178.635295px;}
.y1a2{bottom:179.962498px;}
.yd4{bottom:182.774700px;}
.yf7{bottom:183.160800px;}
.y188{bottom:183.427803px;}
.y3b{bottom:186.917852px;}
.y1c5{bottom:187.232117px;}
.y4e{bottom:187.715554px;}
.y1fc{bottom:188.011780px;}
.y15a{bottom:188.730297px;}
.y129{bottom:188.899057px;}
.y14d{bottom:188.970919px;}
.y1b3{bottom:189.634657px;}
.y163{bottom:190.744205px;}
.yb0{bottom:196.620895px;}
.y84{bottom:196.628095px;}
.y1a1{bottom:197.962509px;}
.y1c4{bottom:200.732117px;}
.yd3{bottom:200.774689px;}
.yf6{bottom:201.160789px;}
.y187{bottom:201.442203px;}
.y1fb{bottom:201.511780px;}
.y28{bottom:203.394150px;}
.y3a{bottom:204.910652px;}
.y4d{bottom:205.708354px;}
.y128{bottom:206.891857px;}
.y14c{bottom:206.963719px;}
.y1b2{bottom:207.627457px;}
.y162{bottom:208.766991px;}
.y1c3{bottom:214.232117px;}
.y83{bottom:214.620895px;}
.yaf{bottom:214.685695px;}
.y1fa{bottom:215.011780px;}
.y27{bottom:216.894150px;}
.yd2{bottom:218.867990px;}
.yf5{bottom:219.160789px;}
.y186{bottom:219.435003px;}
.y39{bottom:222.968252px;}
.y4c{bottom:223.701154px;}
.y159{bottom:224.744709px;}
.y127{bottom:224.884657px;}
.y14b{bottom:224.956519px;}
.y1b1{bottom:225.641857px;}
.y161{bottom:226.759791px;}
.y1c2{bottom:227.732117px;}
.y1f9{bottom:228.511780px;}
.y26{bottom:230.394150px;}
.y82{bottom:232.642495px;}
.yae{bottom:232.678495px;}
.yd1{bottom:236.860790px;}
.yf4{bottom:237.160789px;}
.y185{bottom:237.427803px;}
.y38{bottom:240.961052px;}
.y1c1{bottom:241.232117px;}
.y4b{bottom:241.693954px;}
.y1f8{bottom:242.011780px;}
.y158{bottom:242.737509px;}
.y126{bottom:242.877457px;}
.y14a{bottom:242.949319px;}
.y1b0{bottom:243.634657px;}
.y25{bottom:243.894150px;}
.y160{bottom:244.752591px;}
.y81{bottom:250.635295px;}
.yad{bottom:250.671295px;}
.y1c0{bottom:254.732117px;}
.yd0{bottom:254.853590px;}
.y1a0{bottom:255.435003px;}
.y184{bottom:255.456603px;}
.y1f7{bottom:255.511780px;}
.y37{bottom:258.953852px;}
.y4a{bottom:259.744354px;}
.y157{bottom:260.730309px;}
.y125{bottom:260.877457px;}
.y149{bottom:260.942119px;}
.y1af{bottom:261.627457px;}
.y15f{bottom:262.745391px;}
.y1bf{bottom:268.232117px;}
.y80{bottom:268.628095px;}
.yac{bottom:268.664095px;}
.y1f6{bottom:269.011780px;}
.ycf{bottom:272.846390px;}
.yf3{bottom:273.160789px;}
.y19f{bottom:273.427803px;}
.y183{bottom:273.449403px;}
.y36{bottom:276.946652px;}
.y49{bottom:277.737154px;}
.y124{bottom:278.920519px;}
.y148{bottom:278.934919px;}
.y1ae{bottom:279.634496px;}
.y1be{bottom:281.732117px;}
.y1f5{bottom:282.511780px;}
.y7f{bottom:286.620895px;}
.yab{bottom:286.656895px;}
.yce{bottom:290.839190px;}
.yf2{bottom:291.182389px;}
.y182{bottom:291.442203px;}
.y35{bottom:294.939452px;}
.y1bd{bottom:295.232117px;}
.y48{bottom:295.729954px;}
.y1f4{bottom:296.011780px;}
.y123{bottom:296.913319px;}
.y147{bottom:296.927719px;}
.y1ad{bottom:297.627296px;}
.y7e{bottom:304.628095px;}
.yaa{bottom:304.649695px;}
.y1bc{bottom:308.732117px;}
.ycd{bottom:308.831990px;}
.yf1{bottom:309.175189px;}
.y181{bottom:309.435003px;}
.y1f3{bottom:309.511780px;}
.y34{bottom:312.932252px;}
.y47{bottom:313.722754px;}
.y122{bottom:314.906119px;}
.y146{bottom:314.920519px;}
.y1ac{bottom:315.648896px;}
.y1bb{bottom:322.232117px;}
.y7d{bottom:322.620895px;}
.ya9{bottom:322.642495px;}
.y1f2{bottom:323.011780px;}
.yf0{bottom:327.167989px;}
.y180{bottom:327.427803px;}
.y16b{bottom:329.742004px;}
.y33{bottom:330.925052px;}
.y46{bottom:331.715554px;}
.y121{bottom:332.898919px;}
.y145{bottom:332.913319px;}
.y1ab{bottom:333.641696px;}
.y1ba{bottom:335.732117px;}
.y1f1{bottom:336.511780px;}
.ya8{bottom:340.635295px;}
.y7c{bottom:340.642495px;}
.ycc{bottom:344.832289px;}
.yef{bottom:345.175189px;}
.y19e{bottom:345.435003px;}
.y17f{bottom:345.485380px;}
.y32{bottom:348.917852px;}
.y1b9{bottom:349.232117px;}
.y45{bottom:349.708354px;}
.y1f0{bottom:350.011780px;}
.y120{bottom:350.891719px;}
.y144{bottom:350.906119px;}
.y1aa{bottom:351.634496px;}
.y24{bottom:355.462509px;}
.ya7{bottom:358.628095px;}
.y7b{bottom:358.635295px;}
.y1b8{bottom:362.732117px;}
.ycb{bottom:362.825089px;}
.yee{bottom:363.167989px;}
.y19d{bottom:363.427803px;}
.y17e{bottom:363.478180px;}
.y1ef{bottom:363.511780px;}
.y31{bottom:366.910652px;}
.y44{bottom:367.701154px;}
.y11f{bottom:368.884519px;}
.y143{bottom:368.898919px;}
.y1a9{bottom:369.627296px;}
.y1b7{bottom:376.232117px;}
.ya6{bottom:376.620895px;}
.y7a{bottom:376.628095px;}
.y1ee{bottom:377.011780px;}
.y23{bottom:377.962509px;}
.yca{bottom:380.817889px;}
.yed{bottom:381.160789px;}
.y19c{bottom:381.449380px;}
.y17d{bottom:381.470980px;}
.y30{bottom:384.925029px;}
.y43{bottom:385.693954px;}
.y11e{bottom:386.877319px;}
.y142{bottom:386.891719px;}
.y1a8{bottom:387.627319px;}
.y231{bottom:388.842728px;}
.y1b6{bottom:389.732117px;}
.y1ed{bottom:390.511780px;}
.y79{bottom:394.620895px;}
.yc9{bottom:398.810689px;}
.yec{bottom:399.189612px;}
.y19b{bottom:399.442180px;}
.y17c{bottom:399.463780px;}
.y22{bottom:400.462509px;}
.y230{bottom:402.342728px;}
.y2f{bottom:402.917829px;}
.y42{bottom:403.693954px;}
.y1ec{bottom:404.011780px;}
.y141{bottom:404.884519px;}
.y11d{bottom:404.949319px;}
.y78{bottom:412.642495px;}
.y22f{bottom:415.842728px;}
.yc8{bottom:416.803489px;}
.yeb{bottom:417.182412px;}
.y19a{bottom:417.434980px;}
.y17b{bottom:417.456580px;}
.y1eb{bottom:417.511780px;}
.y2e{bottom:420.910629px;}
.y41{bottom:421.735650px;}
.y140{bottom:422.877319px;}
.y11c{bottom:422.942119px;}
.y21{bottom:422.962509px;}
.ya5{bottom:430.628095px;}
.y77{bottom:430.635295px;}
.y1ea{bottom:431.011780px;}
.yc7{bottom:434.796289px;}
.yea{bottom:435.175212px;}
.y199{bottom:435.427780px;}
.y17a{bottom:435.449380px;}
.y2d{bottom:438.910629px;}
.y40{bottom:439.728450px;}
.y13f{bottom:440.898919px;}
.y11b{bottom:440.934919px;}
.y1cb{bottom:443.005966px;}
.y1e9{bottom:444.511780px;}
.y20{bottom:445.462509px;}
.ya4{bottom:448.620895px;}
.y76{bottom:448.628095px;}
.y22e{bottom:451.842773px;}
.yc6{bottom:452.789089px;}
.ye9{bottom:453.168012px;}
.y198{bottom:453.434980px;}
.y179{bottom:453.442180px;}
.y1ca{bottom:458.005966px;}
.y1e8{bottom:458.011780px;}
.y13e{bottom:458.891719px;}
.y11a{bottom:458.927719px;}
.y22d{bottom:465.342773px;}
.y75{bottom:466.620895px;}
.y1f{bottom:467.962509px;}
.yc5{bottom:470.781889px;}
.ye8{bottom:471.160812px;}
.y197{bottom:471.427780px;}
.y178{bottom:471.434980px;}
.y1e7{bottom:471.511780px;}
.y13d{bottom:476.884519px;}
.y119{bottom:476.920519px;}
.y22c{bottom:478.842773px;}
.y74{bottom:484.628095px;}
.ya3{bottom:484.635295px;}
.y1e6{bottom:485.011780px;}
.yc4{bottom:488.774689px;}
.ye7{bottom:489.175212px;}
.y177{bottom:489.427780px;}
.y196{bottom:489.463780px;}
.y22b{bottom:492.342773px;}
.y13c{bottom:494.877319px;}
.y118{bottom:494.913319px;}
.y73{bottom:502.620895px;}
.ya2{bottom:502.628095px;}
.y22a{bottom:505.842773px;}
.yc3{bottom:506.839190px;}
.ye6{bottom:507.168012px;}
.y176{bottom:507.442180px;}
.y195{bottom:507.456580px;}
.y13b{bottom:512.884519px;}
.y117{bottom:512.906119px;}
.y229{bottom:519.342773px;}
.ya1{bottom:520.620895px;}
.y72{bottom:520.628095px;}
.ye5{bottom:525.160812px;}
.y175{bottom:525.434980px;}
.y194{bottom:525.449380px;}
.y13a{bottom:530.877319px;}
.y116{bottom:530.898919px;}
.y228{bottom:532.842773px;}
.y1e{bottom:533.889313px;}
.ya0{bottom:538.628095px;}
.y71{bottom:538.642495px;}
.yc2{bottom:542.839489px;}
.ye4{bottom:543.160812px;}
.y174{bottom:543.427780px;}
.y193{bottom:543.442180px;}
.y227{bottom:546.342773px;}
.y139{bottom:548.877319px;}
.y115{bottom:548.891719px;}
.y1d{bottom:551.889313px;}
.y1e5{bottom:554.011780px;}
.y9f{bottom:556.620895px;}
.y70{bottom:556.635295px;}
.y226{bottom:559.842773px;}
.yc1{bottom:560.832289px;}
.ye3{bottom:561.160812px;}
.y173{bottom:561.432581px;}
.y192{bottom:561.434980px;}
.y138{bottom:566.882120px;}
.y114{bottom:566.884519px;}
.y1c{bottom:569.889313px;}
.y225{bottom:573.342773px;}
.y9e{bottom:574.620895px;}
.y6f{bottom:574.628095px;}
.yc0{bottom:578.825089px;}
.y172{bottom:579.427780px;}
.y1e4{bottom:581.011780px;}
.y113{bottom:584.877319px;}
.y224{bottom:586.842773px;}
.y1b{bottom:587.889313px;}
.y6e{bottom:592.620895px;}
.ybf{bottom:596.817889px;}
.ye2{bottom:597.160812px;}
.y191{bottom:597.442180px;}
.y1e3{bottom:599.011780px;}
.y223{bottom:600.342773px;}
.y112{bottom:602.877319px;}
.y1a{bottom:605.889313px;}
.y1e2{bottom:608.011780px;}
.y9d{bottom:610.625696px;}
.y6d{bottom:610.635295px;}
.y222{bottom:613.842773px;}
.ybe{bottom:614.810689px;}
.ye1{bottom:615.175212px;}
.y171{bottom:615.434980px;}
.y137{bottom:620.884519px;}
.y19{bottom:623.889313px;}
.y221{bottom:627.342773px;}
.y9c{bottom:628.620895px;}
.y6c{bottom:628.628095px;}
.ybd{bottom:632.803489px;}
.ye0{bottom:633.168012px;}
.y170{bottom:633.427780px;}
.y1e1{bottom:635.011780px;}
.y136{bottom:638.877319px;}
.y111{bottom:638.884519px;}
.y220{bottom:640.842773px;}
.y18{bottom:641.889313px;}
.y6b{bottom:646.649695px;}
.y1e0{bottom:648.511780px;}
.ybc{bottom:650.796289px;}
.ydf{bottom:651.168012px;}
.y190{bottom:651.434980px;}
.y16f{bottom:651.449380px;}
.y21f{bottom:654.342773px;}
.y110{bottom:656.877319px;}
.y135{bottom:656.891719px;}
.y17{bottom:659.889313px;}
.y9b{bottom:664.620895px;}
.y6a{bottom:664.642495px;}
.y21e{bottom:667.842773px;}
.ybb{bottom:668.789089px;}
.yde{bottom:669.175212px;}
.y18f{bottom:669.427780px;}
.y16e{bottom:669.442180px;}
.y134{bottom:674.884519px;}
.y10f{bottom:674.898919px;}
.y1df{bottom:675.511780px;}
.y16{bottom:677.889313px;}
.y21d{bottom:681.342773px;}
.y69{bottom:682.635295px;}
.y9a{bottom:682.642495px;}
.yba{bottom:686.781889px;}
.ydd{bottom:687.168012px;}
.y16d{bottom:687.434980px;}
.y18e{bottom:687.439803px;}
.y1de{bottom:689.011780px;}
.y133{bottom:692.877319px;}
.y10e{bottom:692.891719px;}
.y21c{bottom:694.842773px;}
.y15{bottom:695.889313px;}
.y68{bottom:700.628095px;}
.y99{bottom:700.635295px;}
.yb9{bottom:704.774689px;}
.ydc{bottom:705.160812px;}
.y16c{bottom:705.427780px;}
.y18d{bottom:705.432603px;}
.y21b{bottom:708.342773px;}
.y10d{bottom:710.884519px;}
.y14{bottom:713.889313px;}
.y1dd{bottom:716.011780px;}
.y67{bottom:718.620895px;}
.y98{bottom:718.628095px;}
.y21a{bottom:721.842773px;}
.yb8{bottom:722.789089px;}
.ydb{bottom:723.168012px;}
.y10c{bottom:728.877319px;}
.y13{bottom:731.889313px;}
.y219{bottom:735.342773px;}
.y97{bottom:736.620895px;}
.y66{bottom:736.635341px;}
.yb7{bottom:740.781889px;}
.yda{bottom:741.160812px;}
.y10b{bottom:746.877319px;}
.y132{bottom:746.884519px;}
.y218{bottom:748.842773px;}
.y1dc{bottom:752.008030px;}
.y12{bottom:754.389313px;}
.y96{bottom:754.620895px;}
.y65{bottom:754.628141px;}
.yb6{bottom:758.774689px;}
.yd9{bottom:759.165567px;}
.y217{bottom:762.342773px;}
.y131{bottom:764.877319px;}
.y10a{bottom:764.898919px;}
.y1db{bottom:765.508030px;}
.y64{bottom:772.620941px;}
.y95{bottom:772.649741px;}
.y216{bottom:775.842773px;}
.yb5{bottom:776.774689px;}
.yd8{bottom:777.160767px;}
.y1da{bottom:779.008030px;}
.y1a7{bottom:779.195250px;}
.y130{bottom:782.877319px;}
.y109{bottom:782.891719px;}
.y215{bottom:789.342773px;}
.y94{bottom:790.642541px;}
.y63{bottom:790.678358px;}
.y1d9{bottom:792.508030px;}
.y1a6{bottom:794.195250px;}
.y108{bottom:800.884519px;}
.y12f{bottom:800.933572px;}
.y214{bottom:802.842773px;}
.y93{bottom:808.635341px;}
.y62{bottom:808.671158px;}
.y213{bottom:816.342773px;}
.y107{bottom:818.877319px;}
.y12e{bottom:818.926372px;}
.y1d8{bottom:819.508030px;}
.y11{bottom:825.552612px;}
.y92{bottom:826.628141px;}
.y61{bottom:826.663958px;}
.y106{bottom:827.935518px;}
.y212{bottom:829.842773px;}
.y16a{bottom:831.935211px;}
.y1d7{bottom:833.008030px;}
.y211{bottom:843.342773px;}
.y91{bottom:844.620941px;}
.y60{bottom:844.656758px;}
.y105{bottom:846.163518px;}
.y1d6{bottom:846.508030px;}
.y169{bottom:846.935211px;}
.y210{bottom:856.842773px;}
.y10{bottom:861.589528px;}
.y90{bottom:862.620758px;}
.y5f{bottom:862.649558px;}
.y104{bottom:864.307518px;}
.y20f{bottom:870.342773px;}
.y1d5{bottom:873.508030px;}
.y152{bottom:880.235229px;}
.y8f{bottom:880.620758px;}
.y5e{bottom:880.642358px;}
.y103{bottom:882.451518px;}
.y20e{bottom:883.842773px;}
.y1d4{bottom:887.008030px;}
.y20d{bottom:897.342773px;}
.y5d{bottom:898.635158px;}
.y1d3{bottom:900.508030px;}
.yf{bottom:900.577528px;}
.y102{bottom:900.607518px;}
.y20c{bottom:910.842773px;}
.y1d2{bottom:914.008030px;}
.y5c{bottom:916.627958px;}
.y101{bottom:918.751518px;}
.y20b{bottom:924.342773px;}
.y1d1{bottom:927.508030px;}
.y5b{bottom:934.620758px;}
.y20a{bottom:937.842773px;}
.ye{bottom:939.565528px;}
.y1d0{bottom:941.008030px;}
.y100{bottom:945.643518px;}
.y209{bottom:951.342773px;}
.y8e{bottom:952.627958px;}
.y5a{bottom:952.656758px;}
.y208{bottom:964.842773px;}
.yff{bottom:969.487518px;}
.y8d{bottom:970.620758px;}
.y59{bottom:970.649558px;}
.y207{bottom:978.342773px;}
.yd{bottom:978.553528px;}
.y1cf{bottom:980.011780px;}
.y58{bottom:988.642358px;}
.y8c{bottom:988.678815px;}
.y2c{bottom:990.140277px;}
.y206{bottom:991.842773px;}
.yfe{bottom:993.809079px;}
.y205{bottom:1005.342773px;}
.y57{bottom:1006.635158px;}
.y8b{bottom:1006.671615px;}
.yfd{bottom:1010.306079px;}
.y1ce{bottom:1011.511780px;}
.y204{bottom:1018.842773px;}
.y56{bottom:1024.627958px;}
.y8a{bottom:1024.664415px;}
.y1cd{bottom:1025.011780px;}
.yfc{bottom:1026.803079px;}
.y203{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y2b{bottom:1033.565277px;}
.y55{bottom:1042.620758px;}
.y89{bottom:1042.657215px;}
.y1cc{bottom:1043.011780px;}
.yfb{bottom:1043.300079px;}
.y202{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.yb{bottom:1117.669464px;}
.y52{bottom:1126.524628px;}
.y29{bottom:1126.524719px;}
.y54{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y53{bottom:1127.300079px;}
.y2a{bottom:1127.304719px;}
.h7{height:20.380500px;}
.h1b{height:27.814500px;}
.h6{height:37.086000px;}
.hd{height:39.735000px;}
.h5{height:41.538000px;}
.h17{height:42.384000px;}
.h1c{height:42.840000px;}
.h1a{height:43.785000px;}
.h3{height:45.696000px;}
.he{height:45.744000px;}
.h16{height:46.704000px;}
.h2{height:47.232000px;}
.h18{height:47.472000px;}
.h15{height:47.682000px;}
.hc{height:52.980000px;}
.h14{height:53.406000px;}
.h12{height:53.654399px;}
.h11{height:53.709599px;}
.h10{height:55.860000px;}
.hf{height:58.380000px;}
.hb{height:61.120200px;}
.h19{height:62.536230px;}
.h13{height:62.564481px;}
.ha{height:67.194379px;}
.h8{height:71.400000px;}
.h4{height:86.692415px;}
.h9{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:154.067997px;}
.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:95.880900px;}
.xa{left:97.039352px;}
.xd{left:107.539352px;}
.x3{left:270.817497px;}
.x8{left:457.081652px;}
.x9{left:469.081794px;}
.xe{left:479.586594px;}
.xb{left:524.440344px;}
.x4{left:653.808014px;}
.xc{left:741.068390px;}
.x6{left:747.224258px;}
@media print{
.v5{vertical-align:-20.906738pt;}
.v6{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:8.489258pt;}
.v4{vertical-align:20.804338pt;}
.v3{vertical-align:23.466471pt;}
.ls12{letter-spacing:-1.400000pt;}
.lsb{letter-spacing:-1.045333pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls13{letter-spacing:-0.600000pt;}
.lsc{letter-spacing:-0.522667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.156800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000001pt;}
.lsa{letter-spacing:0.313600pt;}
.lse{letter-spacing:0.365752pt;}
.ls7{letter-spacing:0.511986pt;}
.ls8{letter-spacing:0.512530pt;}
.lsd{letter-spacing:0.522667pt;}
.ls5{letter-spacing:0.695147pt;}
.ls4{letter-spacing:0.731733pt;}
.ls6{letter-spacing:0.736960pt;}
.lsf{letter-spacing:0.784000pt;}
.ls10{letter-spacing:1.045333pt;}
.ls0{letter-spacing:4.853333pt;}
.wscc{word-spacing:-13.066667pt;}
.ws3d{word-spacing:-13.014400pt;}
.wscb{word-spacing:-12.805333pt;}
.ws9d{word-spacing:-12.596267pt;}
.ws2c{word-spacing:-12.282667pt;}
.ws77{word-spacing:-12.183360pt;}
.ws2a{word-spacing:-12.125867pt;}
.wsa4{word-spacing:-11.760000pt;}
.ws4{word-spacing:-11.096533pt;}
.ws7{word-spacing:-10.560000pt;}
.ws2b{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.ws5{word-spacing:-8.760000pt;}
.ws78{word-spacing:-8.597867pt;}
.wse5{word-spacing:-8.280000pt;}
.ws2{word-spacing:-7.242667pt;}
.wse4{word-spacing:-4.010667pt;}
.ws8b{word-spacing:-3.031467pt;}
.ws7f{word-spacing:-1.568000pt;}
.ws8f{word-spacing:-1.306667pt;}
.ws8a{word-spacing:-1.202133pt;}
.wse8{word-spacing:-1.045333pt;}
.ws13{word-spacing:-0.888533pt;}
.ws31{word-spacing:-0.731733pt;}
.ws25{word-spacing:-0.679467pt;}
.ws17{word-spacing:-0.522667pt;}
.ws92{word-spacing:-0.470400pt;}
.wsc0{word-spacing:-0.365867pt;}
.wsc4{word-spacing:-0.313600pt;}
.ws71{word-spacing:-0.261333pt;}
.wsa{word-spacing:-0.156800pt;}
.wsbb{word-spacing:-0.052267pt;}
.ws76{word-spacing:-0.036587pt;}
.ws6{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.104533pt;}
.ws95{word-spacing:0.209067pt;}
.ws24{word-spacing:0.261333pt;}
.wsb8{word-spacing:0.313600pt;}
.wsd8{word-spacing:0.365867pt;}
.wsc2{word-spacing:0.470400pt;}
.ws22{word-spacing:0.522667pt;}
.wsa8{word-spacing:0.574933pt;}
.ws1b{word-spacing:0.627200pt;}
.wscd{word-spacing:0.731733pt;}
.ws47{word-spacing:0.836267pt;}
.ws8e{word-spacing:0.888533pt;}
.ws1c{word-spacing:0.940800pt;}
.ws89{word-spacing:0.993067pt;}
.ws85{word-spacing:1.045333pt;}
.ws94{word-spacing:1.149867pt;}
.ws5f{word-spacing:1.202133pt;}
.wsa2{word-spacing:1.254400pt;}
.wsa9{word-spacing:1.411200pt;}
.ws99{word-spacing:1.568000pt;}
.ws5c{word-spacing:1.777067pt;}
.ws11{word-spacing:1.829333pt;}
.ws46{word-spacing:1.881600pt;}
.wsbd{word-spacing:1.933867pt;}
.ws54{word-spacing:1.986133pt;}
.ws69{word-spacing:2.038400pt;}
.ws8d{word-spacing:2.090667pt;}
.wsb2{word-spacing:2.195200pt;}
.ws1d{word-spacing:2.299733pt;}
.ws42{word-spacing:2.352000pt;}
.wsbc{word-spacing:2.404267pt;}
.wsc1{word-spacing:2.456533pt;}
.ws19{word-spacing:2.508800pt;}
.ws72{word-spacing:2.561067pt;}
.ws44{word-spacing:2.613333pt;}
.ws23{word-spacing:2.665600pt;}
.ws15{word-spacing:2.717867pt;}
.ws63{word-spacing:2.822400pt;}
.wsc3{word-spacing:2.926933pt;}
.ws66{word-spacing:2.979200pt;}
.ws6f{word-spacing:3.083733pt;}
.ws18{word-spacing:3.136000pt;}
.wscf{word-spacing:3.240533pt;}
.ws87{word-spacing:3.292800pt;}
.ws82{word-spacing:3.345067pt;}
.ws28{word-spacing:3.554133pt;}
.ws26{word-spacing:3.606400pt;}
.ws41{word-spacing:3.710933pt;}
.ws9b{word-spacing:3.763200pt;}
.ws3f{word-spacing:3.867733pt;}
.wsd5{word-spacing:3.972267pt;}
.wsac{word-spacing:4.024533pt;}
.ws90{word-spacing:4.076800pt;}
.wsaf{word-spacing:4.129067pt;}
.ws35{word-spacing:4.233600pt;}
.wse0{word-spacing:4.338133pt;}
.wsd{word-spacing:4.390400pt;}
.ws12{word-spacing:4.442667pt;}
.wsa1{word-spacing:4.494933pt;}
.ws80{word-spacing:4.599467pt;}
.ws40{word-spacing:4.651733pt;}
.ws5b{word-spacing:4.704000pt;}
.ws5e{word-spacing:4.808533pt;}
.ws48{word-spacing:4.913067pt;}
.ws59{word-spacing:4.965333pt;}
.wsce{word-spacing:5.017600pt;}
.ws7e{word-spacing:5.435733pt;}
.ws2f{word-spacing:5.488000pt;}
.ws29{word-spacing:5.540267pt;}
.ws60{word-spacing:5.592533pt;}
.wsba{word-spacing:5.644800pt;}
.wsab{word-spacing:5.749333pt;}
.ws7d{word-spacing:5.853867pt;}
.wsc6{word-spacing:5.906133pt;}
.ws70{word-spacing:6.010667pt;}
.ws32{word-spacing:6.062933pt;}
.ws9a{word-spacing:6.115200pt;}
.wsd1{word-spacing:6.167467pt;}
.ws14{word-spacing:6.272000pt;}
.wsb3{word-spacing:6.324267pt;}
.ws83{word-spacing:6.376533pt;}
.ws3c{word-spacing:6.481067pt;}
.ws8{word-spacing:6.533333pt;}
.wsb{word-spacing:6.794667pt;}
.wsb7{word-spacing:6.899200pt;}
.ws88{word-spacing:6.951467pt;}
.ws38{word-spacing:7.003733pt;}
.wsdd{word-spacing:7.108267pt;}
.ws68{word-spacing:7.212800pt;}
.ws1f{word-spacing:7.265067pt;}
.wsb1{word-spacing:7.317333pt;}
.wsc5{word-spacing:7.421867pt;}
.ws2e{word-spacing:7.474133pt;}
.ws4d{word-spacing:7.578667pt;}
.wsde{word-spacing:7.630933pt;}
.ws81{word-spacing:7.683200pt;}
.wsc7{word-spacing:7.735467pt;}
.wsaa{word-spacing:7.787733pt;}
.wsdf{word-spacing:7.892267pt;}
.wsb0{word-spacing:8.153600pt;}
.ws9{word-spacing:8.362667pt;}
.wsa6{word-spacing:8.414933pt;}
.ws27{word-spacing:8.519467pt;}
.ws8c{word-spacing:8.937600pt;}
.ws61{word-spacing:8.989867pt;}
.ws30{word-spacing:9.042133pt;}
.wsb9{word-spacing:9.094400pt;}
.ws53{word-spacing:9.146667pt;}
.ws10{word-spacing:9.198933pt;}
.ws4e{word-spacing:9.251200pt;}
.wse7{word-spacing:9.408000pt;}
.ws52{word-spacing:9.617067pt;}
.ws6b{word-spacing:9.669333pt;}
.ws58{word-spacing:9.826133pt;}
.ws73{word-spacing:9.982933pt;}
.wsd7{word-spacing:10.035200pt;}
.ws3a{word-spacing:10.087467pt;}
.ws3b{word-spacing:10.244267pt;}
.ws9e{word-spacing:10.401067pt;}
.ws5a{word-spacing:10.505600pt;}
.wsb6{word-spacing:10.557867pt;}
.ws91{word-spacing:10.662400pt;}
.ws74{word-spacing:10.714667pt;}
.wsc{word-spacing:10.766933pt;}
.wsda{word-spacing:10.976000pt;}
.ws6a{word-spacing:11.185067pt;}
.wsad{word-spacing:11.237333pt;}
.wse{word-spacing:11.394133pt;}
.wse9{word-spacing:11.550933pt;}
.ws56{word-spacing:11.603200pt;}
.ws16{word-spacing:11.760000pt;}
.wsb4{word-spacing:11.916800pt;}
.ws51{word-spacing:12.021333pt;}
.wsdb{word-spacing:12.073600pt;}
.ws6d{word-spacing:12.125867pt;}
.ws96{word-spacing:12.178133pt;}
.ws4c{word-spacing:12.230400pt;}
.wsbe{word-spacing:12.282667pt;}
.ws21{word-spacing:12.387200pt;}
.wse6{word-spacing:12.491733pt;}
.ws75{word-spacing:12.596267pt;}
.wsa5{word-spacing:12.648533pt;}
.ws86{word-spacing:12.700800pt;}
.ws45{word-spacing:12.753067pt;}
.wsa3{word-spacing:12.857600pt;}
.ws1e{word-spacing:12.909867pt;}
.ws62{word-spacing:12.962133pt;}
.wsb5{word-spacing:13.275733pt;}
.ws55{word-spacing:13.537067pt;}
.wsa7{word-spacing:13.589333pt;}
.ws6e{word-spacing:13.746133pt;}
.ws97{word-spacing:13.902933pt;}
.wsd3{word-spacing:14.007467pt;}
.wsc9{word-spacing:14.268800pt;}
.ws6c{word-spacing:14.477867pt;}
.ws98{word-spacing:14.530133pt;}
.wsbf{word-spacing:14.686933pt;}
.wsae{word-spacing:14.948267pt;}
.ws4f{word-spacing:15.627733pt;}
.ws93{word-spacing:15.680000pt;}
.ws37{word-spacing:15.732267pt;}
.ws2d{word-spacing:16.150400pt;}
.ws49{word-spacing:16.202667pt;}
.ws20{word-spacing:16.411733pt;}
.wsd2{word-spacing:16.464000pt;}
.ws43{word-spacing:16.516267pt;}
.ws1a{word-spacing:16.568533pt;}
.ws39{word-spacing:17.038933pt;}
.wsdc{word-spacing:17.300267pt;}
.ws33{word-spacing:17.352533pt;}
.ws9c{word-spacing:17.666133pt;}
.ws5d{word-spacing:17.718400pt;}
.wse3{word-spacing:18.293333pt;}
.wseb{word-spacing:18.600000pt;}
.wsea{word-spacing:18.763733pt;}
.ws84{word-spacing:19.652267pt;}
.ws4b{word-spacing:20.070400pt;}
.wse2{word-spacing:20.122667pt;}
.ws67{word-spacing:20.331733pt;}
.wsc8{word-spacing:20.436267pt;}
.wsca{word-spacing:20.488533pt;}
.ws65{word-spacing:20.749867pt;}
.wsf{word-spacing:21.220267pt;}
.ws3e{word-spacing:21.377067pt;}
.ws34{word-spacing:21.690667pt;}
.ws57{word-spacing:22.213333pt;}
.wsd0{word-spacing:22.265600pt;}
.wsd6{word-spacing:23.101867pt;}
.wsd9{word-spacing:23.624533pt;}
.ws9f{word-spacing:24.722133pt;}
.ws50{word-spacing:24.931200pt;}
.ws4a{word-spacing:25.349333pt;}
.wsd4{word-spacing:26.342400pt;}
.ws36{word-spacing:30.523733pt;}
.wse1{word-spacing:30.994133pt;}
.ws64{word-spacing:32.300800pt;}
.ws7c{word-spacing:39.043200pt;}
.ws7a{word-spacing:165.930667pt;}
.ws7b{word-spacing:166.442667pt;}
.ws79{word-spacing:186.752000pt;}
.ws1{word-spacing:1755.514622pt;}
._b{margin-left:-26.867209pt;}
._18{margin-left:-14.179200pt;}
._f{margin-left:-12.962145pt;}
._12{margin-left:-11.199996pt;}
._3{margin-left:-10.016533pt;}
._11{margin-left:-9.042133pt;}
._d{margin-left:-7.719986pt;}
._35{margin-left:-6.166507pt;}
._5{margin-left:-5.242667pt;}
._a{margin-left:-3.902827pt;}
._2{margin-left:-2.617067pt;}
._0{margin-left:-0.985600pt;}
._1{width:1.008000pt;}
._4{width:2.115184pt;}
._9{width:3.397333pt;}
._c{width:5.614933pt;}
._8{width:7.003685pt;}
._16{width:8.811413pt;}
._7{width:9.706617pt;}
._10{width:10.684778pt;}
._27{width:12.121600pt;}
._19{width:14.222827pt;}
._6{width:15.850667pt;}
._14{width:19.577600pt;}
._e{width:20.988800pt;}
._37{width:22.097067pt;}
._36{width:26.097067pt;}
._2c{width:28.525653pt;}
._17{width:30.403520pt;}
._15{width:38.938667pt;}
._13{width:39.914559pt;}
._2e{width:84.320000pt;}
._2f{width:114.275996pt;}
._1c{width:121.216000pt;}
._1d{width:122.752000pt;}
._34{width:148.915996pt;}
._2d{width:160.101596pt;}
._30{width:161.555996pt;}
._2a{width:164.795996pt;}
._1f{width:175.786667pt;}
._21{width:177.834667pt;}
._29{width:182.355996pt;}
._31{width:189.795996pt;}
._2b{width:192.675996pt;}
._24{width:196.096000pt;}
._33{width:198.115996pt;}
._28{width:216.080000pt;}
._32{width:217.640000pt;}
._22{width:248.874667pt;}
._20{width:256.981333pt;}
._1e{width:269.696000pt;}
._25{width:276.608000pt;}
._23{width:277.632000pt;}
._1a{width:352.035210pt;}
._1b{width:452.970682pt;}
._26{width:1148.330641pt;}
.fse{font-size:28.000000pt;}
.fsb{font-size:36.586667pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsc{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.666667pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:4.166992pt;}
.ya{bottom:82.786800pt;}
.y156{bottom:89.151337pt;}
.y168{bottom:89.563205pt;}
.y9{bottom:93.454800pt;}
.y18c{bottom:99.053336pt;}
.y3f{bottom:102.174802pt;}
.y155{bottom:102.484670pt;}
.y15e{bottom:103.760264pt;}
.y151{bottom:103.897462pt;}
.y12d{bottom:103.935873pt;}
.y8{bottom:104.122800pt;}
.y167{bottom:105.556805pt;}
.y201{bottom:107.121582pt;}
.yb4{bottom:110.793329pt;}
.y88{bottom:110.806129pt;}
.y1a5{bottom:111.985865pt;}
.yd7{bottom:114.485600pt;}
.y7{bottom:114.790800pt;}
.yfa{bottom:114.828800pt;}
.y18b{bottom:115.046936pt;}
.y154{bottom:115.818003pt;}
.y3e{bottom:118.168402pt;}
.y1c9{bottom:118.428548pt;}
.y51{bottom:118.877471pt;}
.y200{bottom:119.121582pt;}
.y15d{bottom:119.760264pt;}
.y150{bottom:119.891062pt;}
.y12c{bottom:119.929473pt;}
.y166{bottom:121.550405pt;}
.y6{bottom:125.458800pt;}
.yb3{bottom:126.786929pt;}
.y87{bottom:126.799729pt;}
.y1a4{bottom:127.979465pt;}
.y153{bottom:129.151337pt;}
.y1c8{bottom:130.428548pt;}
.yd6{bottom:130.479200pt;}
.yf9{bottom:130.822400pt;}
.y18a{bottom:131.059736pt;}
.y1ff{bottom:131.121582pt;}
.y3d{bottom:134.162002pt;}
.y50{bottom:134.871071pt;}
.y15c{bottom:135.768798pt;}
.y14f{bottom:135.897462pt;}
.y12b{bottom:135.923073pt;}
.y5{bottom:136.126800pt;}
.y1b5{bottom:136.576939pt;}
.y165{bottom:137.550405pt;}
.y1c7{bottom:142.428548pt;}
.yb2{bottom:142.780529pt;}
.y86{bottom:142.793329pt;}
.y1fe{bottom:143.121582pt;}
.y1a3{bottom:143.973065pt;}
.yd5{bottom:146.472800pt;}
.y4{bottom:146.794800pt;}
.yf8{bottom:146.816000pt;}
.y189{bottom:147.053336pt;}
.y3c{bottom:150.155602pt;}
.y4f{bottom:150.864671pt;}
.y15b{bottom:151.764531pt;}
.y14e{bottom:151.891062pt;}
.y12a{bottom:151.916673pt;}
.y1b4{bottom:152.570539pt;}
.y164{bottom:153.556805pt;}
.y1c6{bottom:154.428548pt;}
.y1fd{bottom:155.121582pt;}
.yb1{bottom:158.774129pt;}
.y85{bottom:158.786929pt;}
.y1a2{bottom:159.966665pt;}
.yd4{bottom:162.466400pt;}
.yf7{bottom:162.809600pt;}
.y188{bottom:163.046936pt;}
.y3b{bottom:166.149202pt;}
.y1c5{bottom:166.428548pt;}
.y4e{bottom:166.858271pt;}
.y1fc{bottom:167.121582pt;}
.y15a{bottom:167.760264pt;}
.y129{bottom:167.910273pt;}
.y14d{bottom:167.974151pt;}
.y1b3{bottom:168.564139pt;}
.y163{bottom:169.550405pt;}
.yb0{bottom:174.774129pt;}
.y84{bottom:174.780529pt;}
.y1a1{bottom:175.966675pt;}
.y1c4{bottom:178.428548pt;}
.yd3{bottom:178.466390pt;}
.yf6{bottom:178.809591pt;}
.y187{bottom:179.059736pt;}
.y1fb{bottom:179.121582pt;}
.y28{bottom:180.794800pt;}
.y3a{bottom:182.142802pt;}
.y4d{bottom:182.851871pt;}
.y128{bottom:183.903873pt;}
.y14c{bottom:183.967751pt;}
.y1b2{bottom:184.557739pt;}
.y162{bottom:185.570659pt;}
.y1c3{bottom:190.428548pt;}
.y83{bottom:190.774129pt;}
.yaf{bottom:190.831729pt;}
.y1fa{bottom:191.121582pt;}
.y27{bottom:192.794800pt;}
.yd2{bottom:194.549325pt;}
.yf5{bottom:194.809591pt;}
.y186{bottom:195.053336pt;}
.y39{bottom:198.194002pt;}
.y4c{bottom:198.845471pt;}
.y159{bottom:199.773074pt;}
.y127{bottom:199.897473pt;}
.y14b{bottom:199.961351pt;}
.y1b1{bottom:200.570539pt;}
.y161{bottom:201.564259pt;}
.y1c2{bottom:202.428548pt;}
.y1f9{bottom:203.121582pt;}
.y26{bottom:204.794800pt;}
.y82{bottom:206.793329pt;}
.yae{bottom:206.825329pt;}
.yd1{bottom:210.542925pt;}
.yf4{bottom:210.809591pt;}
.y185{bottom:211.046936pt;}
.y38{bottom:214.187602pt;}
.y1c1{bottom:214.428548pt;}
.y4b{bottom:214.839071pt;}
.y1f8{bottom:215.121582pt;}
.y158{bottom:215.766674pt;}
.y126{bottom:215.891073pt;}
.y14a{bottom:215.954951pt;}
.y1b0{bottom:216.564139pt;}
.y25{bottom:216.794800pt;}
.y160{bottom:217.557859pt;}
.y81{bottom:222.786929pt;}
.yad{bottom:222.818929pt;}
.y1c0{bottom:226.428548pt;}
.yd0{bottom:226.536525pt;}
.y1a0{bottom:227.053336pt;}
.y184{bottom:227.072536pt;}
.y1f7{bottom:227.121582pt;}
.y37{bottom:230.181202pt;}
.y4a{bottom:230.883871pt;}
.y157{bottom:231.760274pt;}
.y125{bottom:231.891073pt;}
.y149{bottom:231.948551pt;}
.y1af{bottom:232.557739pt;}
.y15f{bottom:233.551459pt;}
.y1bf{bottom:238.428548pt;}
.y80{bottom:238.780529pt;}
.yac{bottom:238.812529pt;}
.y1f6{bottom:239.121582pt;}
.ycf{bottom:242.530125pt;}
.yf3{bottom:242.809591pt;}
.y19f{bottom:243.046936pt;}
.y183{bottom:243.066136pt;}
.y36{bottom:246.174802pt;}
.y49{bottom:246.877471pt;}
.y124{bottom:247.929351pt;}
.y148{bottom:247.942151pt;}
.y1ae{bottom:248.563997pt;}
.y1be{bottom:250.428548pt;}
.y1f5{bottom:251.121582pt;}
.y7f{bottom:254.774129pt;}
.yab{bottom:254.806129pt;}
.yce{bottom:258.523725pt;}
.yf2{bottom:258.828791pt;}
.y182{bottom:259.059736pt;}
.y35{bottom:262.168402pt;}
.y1bd{bottom:262.428548pt;}
.y48{bottom:262.871071pt;}
.y1f4{bottom:263.121582pt;}
.y123{bottom:263.922951pt;}
.y147{bottom:263.935751pt;}
.y1ad{bottom:264.557597pt;}
.y7e{bottom:270.780529pt;}
.yaa{bottom:270.799729pt;}
.y1bc{bottom:274.428548pt;}
.ycd{bottom:274.517325pt;}
.yf1{bottom:274.822391pt;}
.y181{bottom:275.053336pt;}
.y1f3{bottom:275.121582pt;}
.y34{bottom:278.162002pt;}
.y47{bottom:278.864671pt;}
.y122{bottom:279.916551pt;}
.y146{bottom:279.929351pt;}
.y1ac{bottom:280.576797pt;}
.y1bb{bottom:286.428548pt;}
.y7d{bottom:286.774129pt;}
.ya9{bottom:286.793329pt;}
.y1f2{bottom:287.121582pt;}
.yf0{bottom:290.815991pt;}
.y180{bottom:291.046936pt;}
.y16b{bottom:293.104004pt;}
.y33{bottom:294.155602pt;}
.y46{bottom:294.858271pt;}
.y121{bottom:295.910151pt;}
.y145{bottom:295.922951pt;}
.y1ab{bottom:296.570397pt;}
.y1ba{bottom:298.428548pt;}
.y1f1{bottom:299.121582pt;}
.ya8{bottom:302.786929pt;}
.y7c{bottom:302.793329pt;}
.ycc{bottom:306.517590pt;}
.yef{bottom:306.822391pt;}
.y19e{bottom:307.053336pt;}
.y17f{bottom:307.098116pt;}
.y32{bottom:310.149202pt;}
.y1b9{bottom:310.428548pt;}
.y45{bottom:310.851871pt;}
.y1f0{bottom:311.121582pt;}
.y120{bottom:311.903751pt;}
.y144{bottom:311.916551pt;}
.y1aa{bottom:312.563997pt;}
.y24{bottom:315.966675pt;}
.ya7{bottom:318.780529pt;}
.y7b{bottom:318.786929pt;}
.y1b8{bottom:322.428548pt;}
.ycb{bottom:322.511190pt;}
.yee{bottom:322.815991pt;}
.y19d{bottom:323.046936pt;}
.y17e{bottom:323.091716pt;}
.y1ef{bottom:323.121582pt;}
.y31{bottom:326.142802pt;}
.y44{bottom:326.845471pt;}
.y11f{bottom:327.897351pt;}
.y143{bottom:327.910151pt;}
.y1a9{bottom:328.557597pt;}
.y1b7{bottom:334.428548pt;}
.ya6{bottom:334.774129pt;}
.y7a{bottom:334.780529pt;}
.y1ee{bottom:335.121582pt;}
.y23{bottom:335.966675pt;}
.yca{bottom:338.504790pt;}
.yed{bottom:338.809591pt;}
.y19c{bottom:339.066116pt;}
.y17d{bottom:339.085316pt;}
.y30{bottom:342.155582pt;}
.y43{bottom:342.839071pt;}
.y11e{bottom:343.890951pt;}
.y142{bottom:343.903751pt;}
.y1a8{bottom:344.557617pt;}
.y231{bottom:345.637980pt;}
.y1b6{bottom:346.428548pt;}
.y1ed{bottom:347.121582pt;}
.y79{bottom:350.774129pt;}
.yc9{bottom:354.498390pt;}
.yec{bottom:354.835211pt;}
.y19b{bottom:355.059716pt;}
.y17c{bottom:355.078916pt;}
.y22{bottom:355.966675pt;}
.y230{bottom:357.637980pt;}
.y2f{bottom:358.149182pt;}
.y42{bottom:358.839071pt;}
.y1ec{bottom:359.121582pt;}
.y141{bottom:359.897351pt;}
.y11d{bottom:359.954951pt;}
.y78{bottom:366.793329pt;}
.y22f{bottom:369.637980pt;}
.yc8{bottom:370.491990pt;}
.yeb{bottom:370.828811pt;}
.y19a{bottom:371.053316pt;}
.y17b{bottom:371.072516pt;}
.y1eb{bottom:371.121582pt;}
.y2e{bottom:374.142782pt;}
.y41{bottom:374.876133pt;}
.y140{bottom:375.890951pt;}
.y11c{bottom:375.948551pt;}
.y21{bottom:375.966675pt;}
.ya5{bottom:382.780529pt;}
.y77{bottom:382.786929pt;}
.y1ea{bottom:383.121582pt;}
.yc7{bottom:386.485590pt;}
.yea{bottom:386.822411pt;}
.y199{bottom:387.046916pt;}
.y17a{bottom:387.066116pt;}
.y2d{bottom:390.142782pt;}
.y40{bottom:390.869733pt;}
.y13f{bottom:391.910151pt;}
.y11b{bottom:391.942151pt;}
.y1cb{bottom:393.783081pt;}
.y1e9{bottom:395.121582pt;}
.y20{bottom:395.966675pt;}
.ya4{bottom:398.774129pt;}
.y76{bottom:398.780529pt;}
.y22e{bottom:401.638021pt;}
.yc6{bottom:402.479190pt;}
.ye9{bottom:402.816011pt;}
.y198{bottom:403.053316pt;}
.y179{bottom:403.059716pt;}
.y1ca{bottom:407.116414pt;}
.y1e8{bottom:407.121582pt;}
.y13e{bottom:407.903751pt;}
.y11a{bottom:407.935751pt;}
.y22d{bottom:413.638021pt;}
.y75{bottom:414.774129pt;}
.y1f{bottom:415.966675pt;}
.yc5{bottom:418.472790pt;}
.ye8{bottom:418.809611pt;}
.y197{bottom:419.046916pt;}
.y178{bottom:419.053316pt;}
.y1e7{bottom:419.121582pt;}
.y13d{bottom:423.897351pt;}
.y119{bottom:423.929351pt;}
.y22c{bottom:425.638021pt;}
.y74{bottom:430.780529pt;}
.ya3{bottom:430.786929pt;}
.y1e6{bottom:431.121582pt;}
.yc4{bottom:434.466390pt;}
.ye7{bottom:434.822411pt;}
.y177{bottom:435.046916pt;}
.y196{bottom:435.078916pt;}
.y22b{bottom:437.638021pt;}
.y13c{bottom:439.890951pt;}
.y118{bottom:439.922951pt;}
.y73{bottom:446.774129pt;}
.ya2{bottom:446.780529pt;}
.y22a{bottom:449.638021pt;}
.yc3{bottom:450.523725pt;}
.ye6{bottom:450.816011pt;}
.y176{bottom:451.059716pt;}
.y195{bottom:451.072516pt;}
.y13b{bottom:455.897351pt;}
.y117{bottom:455.916551pt;}
.y229{bottom:461.638021pt;}
.ya1{bottom:462.774129pt;}
.y72{bottom:462.780529pt;}
.ye5{bottom:466.809611pt;}
.y175{bottom:467.053316pt;}
.y194{bottom:467.066116pt;}
.y13a{bottom:471.890951pt;}
.y116{bottom:471.910151pt;}
.y228{bottom:473.638021pt;}
.y1e{bottom:474.568278pt;}
.ya0{bottom:478.780529pt;}
.y71{bottom:478.793329pt;}
.yc2{bottom:482.523990pt;}
.ye4{bottom:482.809611pt;}
.y174{bottom:483.046916pt;}
.y193{bottom:483.059716pt;}
.y227{bottom:485.638021pt;}
.y139{bottom:487.890951pt;}
.y115{bottom:487.903751pt;}
.y1d{bottom:490.568278pt;}
.y1e5{bottom:492.454915pt;}
.y9f{bottom:494.774129pt;}
.y70{bottom:494.786929pt;}
.y226{bottom:497.638021pt;}
.yc1{bottom:498.517590pt;}
.ye3{bottom:498.809611pt;}
.y173{bottom:499.051183pt;}
.y192{bottom:499.053316pt;}
.y138{bottom:503.895218pt;}
.y114{bottom:503.897351pt;}
.y1c{bottom:506.568278pt;}
.y225{bottom:509.638021pt;}
.y9e{bottom:510.774129pt;}
.y6f{bottom:510.780529pt;}
.yc0{bottom:514.511190pt;}
.y172{bottom:515.046916pt;}
.y1e4{bottom:516.454915pt;}
.y113{bottom:519.890951pt;}
.y224{bottom:521.638021pt;}
.y1b{bottom:522.568278pt;}
.y6e{bottom:526.774129pt;}
.ybf{bottom:530.504790pt;}
.ye2{bottom:530.809611pt;}
.y191{bottom:531.059716pt;}
.y1e3{bottom:532.454915pt;}
.y223{bottom:533.638021pt;}
.y112{bottom:535.890951pt;}
.y1a{bottom:538.568278pt;}
.y1e2{bottom:540.454915pt;}
.y9d{bottom:542.778396pt;}
.y6d{bottom:542.786929pt;}
.y222{bottom:545.638021pt;}
.ybe{bottom:546.498390pt;}
.ye1{bottom:546.822411pt;}
.y171{bottom:547.053316pt;}
.y137{bottom:551.897351pt;}
.y19{bottom:554.568278pt;}
.y221{bottom:557.638021pt;}
.y9c{bottom:558.774129pt;}
.y6c{bottom:558.780529pt;}
.ybd{bottom:562.491990pt;}
.ye0{bottom:562.816011pt;}
.y170{bottom:563.046916pt;}
.y1e1{bottom:564.454915pt;}
.y136{bottom:567.890951pt;}
.y111{bottom:567.897351pt;}
.y220{bottom:569.638021pt;}
.y18{bottom:570.568278pt;}
.y6b{bottom:574.799729pt;}
.y1e0{bottom:576.454915pt;}
.ybc{bottom:578.485590pt;}
.ydf{bottom:578.816011pt;}
.y190{bottom:579.053316pt;}
.y16f{bottom:579.066116pt;}
.y21f{bottom:581.638021pt;}
.y110{bottom:583.890951pt;}
.y135{bottom:583.903751pt;}
.y17{bottom:586.568278pt;}
.y9b{bottom:590.774129pt;}
.y6a{bottom:590.793329pt;}
.y21e{bottom:593.638021pt;}
.ybb{bottom:594.479190pt;}
.yde{bottom:594.822411pt;}
.y18f{bottom:595.046916pt;}
.y16e{bottom:595.059716pt;}
.y134{bottom:599.897351pt;}
.y10f{bottom:599.910151pt;}
.y1df{bottom:600.454915pt;}
.y16{bottom:602.568278pt;}
.y21d{bottom:605.638021pt;}
.y69{bottom:606.786929pt;}
.y9a{bottom:606.793329pt;}
.yba{bottom:610.472790pt;}
.ydd{bottom:610.816011pt;}
.y16d{bottom:611.053316pt;}
.y18e{bottom:611.057603pt;}
.y1de{bottom:612.454915pt;}
.y133{bottom:615.890951pt;}
.y10e{bottom:615.903751pt;}
.y21c{bottom:617.638021pt;}
.y15{bottom:618.568278pt;}
.y68{bottom:622.780529pt;}
.y99{bottom:622.786929pt;}
.yb9{bottom:626.466390pt;}
.ydc{bottom:626.809611pt;}
.y16c{bottom:627.046916pt;}
.y18d{bottom:627.051203pt;}
.y21b{bottom:629.638021pt;}
.y10d{bottom:631.897351pt;}
.y14{bottom:634.568278pt;}
.y1dd{bottom:636.454915pt;}
.y67{bottom:638.774129pt;}
.y98{bottom:638.780529pt;}
.y21a{bottom:641.638021pt;}
.yb8{bottom:642.479190pt;}
.ydb{bottom:642.816011pt;}
.y10c{bottom:647.890951pt;}
.y13{bottom:650.568278pt;}
.y219{bottom:653.638021pt;}
.y97{bottom:654.774129pt;}
.y66{bottom:654.786970pt;}
.yb7{bottom:658.472790pt;}
.yda{bottom:658.809611pt;}
.y10b{bottom:663.890951pt;}
.y132{bottom:663.897351pt;}
.y218{bottom:665.638021pt;}
.y1dc{bottom:668.451582pt;}
.y12{bottom:670.568278pt;}
.y96{bottom:670.774129pt;}
.y65{bottom:670.780570pt;}
.yb6{bottom:674.466390pt;}
.yd9{bottom:674.813837pt;}
.y217{bottom:677.638021pt;}
.y131{bottom:679.890951pt;}
.y10a{bottom:679.910151pt;}
.y1db{bottom:680.451582pt;}
.y64{bottom:686.774170pt;}
.y95{bottom:686.799770pt;}
.y216{bottom:689.638021pt;}
.yb5{bottom:690.466390pt;}
.yd8{bottom:690.809570pt;}
.y1da{bottom:692.451582pt;}
.y1a7{bottom:692.618000pt;}
.y130{bottom:695.890951pt;}
.y109{bottom:695.903751pt;}
.y215{bottom:701.638021pt;}
.y94{bottom:702.793370pt;}
.y63{bottom:702.825207pt;}
.y1d9{bottom:704.451582pt;}
.y1a6{bottom:705.951333pt;}
.y108{bottom:711.897351pt;}
.y12f{bottom:711.940953pt;}
.y214{bottom:713.638021pt;}
.y93{bottom:718.786970pt;}
.y62{bottom:718.818807pt;}
.y213{bottom:725.638021pt;}
.y107{bottom:727.890951pt;}
.y12e{bottom:727.934553pt;}
.y1d8{bottom:728.451582pt;}
.y11{bottom:733.824544pt;}
.y92{bottom:734.780570pt;}
.y61{bottom:734.812407pt;}
.y106{bottom:735.942683pt;}
.y212{bottom:737.638021pt;}
.y16a{bottom:739.497965pt;}
.y1d7{bottom:740.451582pt;}
.y211{bottom:749.638021pt;}
.y91{bottom:750.774170pt;}
.y60{bottom:750.806007pt;}
.y105{bottom:752.145350pt;}
.y1d6{bottom:752.451582pt;}
.y169{bottom:752.831299pt;}
.y210{bottom:761.638021pt;}
.y10{bottom:765.857358pt;}
.y90{bottom:766.774007pt;}
.y5f{bottom:766.799607pt;}
.y104{bottom:768.273350pt;}
.y20f{bottom:773.638021pt;}
.y1d5{bottom:776.451582pt;}
.y152{bottom:782.431315pt;}
.y8f{bottom:782.774007pt;}
.y5e{bottom:782.793207pt;}
.y103{bottom:784.401350pt;}
.y20e{bottom:785.638021pt;}
.y1d4{bottom:788.451582pt;}
.y20d{bottom:797.638021pt;}
.y5d{bottom:798.786807pt;}
.y1d3{bottom:800.451582pt;}
.yf{bottom:800.513358pt;}
.y102{bottom:800.540016pt;}
.y20c{bottom:809.638021pt;}
.y1d2{bottom:812.451582pt;}
.y5c{bottom:814.780407pt;}
.y101{bottom:816.668016pt;}
.y20b{bottom:821.638021pt;}
.y1d1{bottom:824.451582pt;}
.y5b{bottom:830.774007pt;}
.y20a{bottom:833.638021pt;}
.ye{bottom:835.169358pt;}
.y1d0{bottom:836.451582pt;}
.y100{bottom:840.572016pt;}
.y209{bottom:845.638021pt;}
.y8e{bottom:846.780407pt;}
.y5a{bottom:846.806007pt;}
.y208{bottom:857.638021pt;}
.yff{bottom:861.766683pt;}
.y8d{bottom:862.774007pt;}
.y59{bottom:862.799607pt;}
.y207{bottom:869.638021pt;}
.yd{bottom:869.825358pt;}
.y1cf{bottom:871.121582pt;}
.y58{bottom:878.793207pt;}
.y8c{bottom:878.825613pt;}
.y2c{bottom:880.124691pt;}
.y206{bottom:881.638021pt;}
.yfe{bottom:883.385848pt;}
.y205{bottom:893.638021pt;}
.y57{bottom:894.786807pt;}
.y8b{bottom:894.819213pt;}
.yfd{bottom:898.049848pt;}
.y1ce{bottom:899.121582pt;}
.y204{bottom:905.638021pt;}
.y56{bottom:910.780407pt;}
.y8a{bottom:910.812813pt;}
.y1cd{bottom:911.121582pt;}
.yfc{bottom:912.713848pt;}
.y203{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y2b{bottom:918.724691pt;}
.y55{bottom:926.774007pt;}
.y89{bottom:926.806413pt;}
.y1cc{bottom:927.121582pt;}
.yfb{bottom:927.377848pt;}
.y202{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.yb{bottom:993.483968pt;}
.y52{bottom:1001.355225pt;}
.y29{bottom:1001.355306pt;}
.y54{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y53{bottom:1002.044515pt;}
.y2a{bottom:1002.048639pt;}
.h7{height:18.116000pt;}
.h1b{height:24.724000pt;}
.h6{height:32.965333pt;}
.hd{height:35.320000pt;}
.h5{height:36.922667pt;}
.h17{height:37.674667pt;}
.h1c{height:38.080000pt;}
.h1a{height:38.920000pt;}
.h3{height:40.618667pt;}
.he{height:40.661333pt;}
.h16{height:41.514667pt;}
.h2{height:41.984000pt;}
.h18{height:42.197333pt;}
.h15{height:42.384000pt;}
.hc{height:47.093333pt;}
.h14{height:47.472000pt;}
.h12{height:47.692799pt;}
.h11{height:47.741866pt;}
.h10{height:49.653333pt;}
.hf{height:51.893333pt;}
.hb{height:54.329067pt;}
.h19{height:55.587760pt;}
.h13{height:55.612872pt;}
.ha{height:59.728337pt;}
.h8{height:63.466667pt;}
.h4{height:77.059924pt;}
.h9{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:136.949331pt;}
.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:85.227467pt;}
.xa{left:86.257202pt;}
.xd{left:95.590535pt;}
.x3{left:240.726664pt;}
.x8{left:406.294802pt;}
.x9{left:416.961594pt;}
.xe{left:426.299194pt;}
.xb{left:466.169194pt;}
.x4{left:581.162679pt;}
.xc{left:658.727458pt;}
.x6{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; }
  