
    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_91a03c5e9254704d3838a069.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.018000;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_179663ef9a3b3b48744ec5d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980200;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_1359b5b64dee0a8bc152ef66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.794000;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_380080258e2fc46117fd8cd4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_9843c8e0bd7753cfc56093d9.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_380080258e2fc46117fd8cd4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_d0297038acd5e193afe0273d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.030000;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_37c762b5f9a31b24d63fa01c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_33bdc1db6c104fbdd7e29f3f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951000;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_f2c5f5b654495968f5fca91a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_9843c8e0bd7753cfc56093d9.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8cdce3f81646af9172341919.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.018000;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_dce056cb8fc2c311d2321cee.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.764160;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:ffe;src:url('chunks/assets/font_28c2d2dc2077cfdb80722836.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.019531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-21.478200px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.934600px;}
.v1{vertical-align:21.429300px;}
.ls1a{letter-spacing:-1.290000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.322500px;}
.lsa{letter-spacing:-0.270000px;}
.ls27{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.129000px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.023953px;}
.ls16{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.064500px;}
.ls15{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.129000px;}
.ls23{letter-spacing:0.161250px;}
.ls22{letter-spacing:0.162000px;}
.ls20{letter-spacing:0.188019px;}
.ls1b{letter-spacing:0.193500px;}
.lsc{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.225750px;}
.ls2b{letter-spacing:0.232800px;}
.ls12{letter-spacing:0.258000px;}
.lsd{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.294000px;}
.ls5{letter-spacing:0.322500px;}
.lsf{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.338434px;}
.ls28{letter-spacing:0.354750px;}
.ls17{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.387000px;}
.ls1{letter-spacing:0.420000px;}
.ls26{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.451500px;}
.ls11{letter-spacing:0.486000px;}
.ls1f{letter-spacing:0.516000px;}
.ls36{letter-spacing:0.537000px;}
.lse{letter-spacing:0.580500px;}
.ls37{letter-spacing:0.630000px;}
.ls6{letter-spacing:0.645000px;}
.ls18{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.709500px;}
.ls10{letter-spacing:0.756000px;}
.ls29{letter-spacing:0.774000px;}
.ls1c{letter-spacing:0.810000px;}
.ls30{letter-spacing:0.838500px;}
.ls25{letter-spacing:0.967500px;}
.ls34{letter-spacing:1.032000px;}
.ls33{letter-spacing:1.290000px;}
.ls19{letter-spacing:1.620000px;}
.ls2f{letter-spacing:2.808000px;}
.ls2e{letter-spacing:3.240000px;}
.ls35{letter-spacing:5.688000px;}
.ls14{letter-spacing:5.805000px;}
.ls2c{letter-spacing:6.450000px;}
.ls2d{letter-spacing:6.740250px;}
.ls3{letter-spacing:9.990000px;}
.lsb{letter-spacing:1459.270800px;}
.ls0{letter-spacing:2130.501600px;}
.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;}
}
.ws76{word-spacing:-13.093500px;}
.ws56{word-spacing:-12.835500px;}
.wsc8{word-spacing:-12.312000px;}
.wsb6{word-spacing:-10.746000px;}
.ws18{word-spacing:-9.552000px;}
.ws3b{word-spacing:-8.955000px;}
.wsc9{word-spacing:-8.618400px;}
.wsc0{word-spacing:-7.821590px;}
.ws77{word-spacing:-7.671175px;}
.ws19{word-spacing:-7.483156px;}
.ws1a{word-spacing:-6.264918px;}
.ws75{word-spacing:-0.810000px;}
.wsc7{word-spacing:-0.645000px;}
.wsbd{word-spacing:-0.516000px;}
.ws3{word-spacing:-0.420000px;}
.ws8f{word-spacing:-0.387000px;}
.wsc2{word-spacing:-0.322500px;}
.ws46{word-spacing:-0.270000px;}
.ws7a{word-spacing:-0.258000px;}
.ws15{word-spacing:-0.210000px;}
.wsc1{word-spacing:-0.188019px;}
.wsb1{word-spacing:-0.129000px;}
.ws0{word-spacing:0.000000px;}
.wsa0{word-spacing:0.054000px;}
.ws4b{word-spacing:0.064500px;}
.wsbb{word-spacing:0.108000px;}
.ws58{word-spacing:0.129000px;}
.wsac{word-spacing:0.193500px;}
.ws31{word-spacing:0.270000px;}
.wsd{word-spacing:0.294000px;}
.ws2d{word-spacing:0.322500px;}
.wsbc{word-spacing:0.324000px;}
.wsa{word-spacing:0.336000px;}
.ws5{word-spacing:0.378000px;}
.ws49{word-spacing:0.432000px;}
.wsb8{word-spacing:0.451500px;}
.ws35{word-spacing:0.486000px;}
.ws9b{word-spacing:0.540000px;}
.ws5c{word-spacing:0.580500px;}
.wsbf{word-spacing:0.594000px;}
.ws53{word-spacing:0.645000px;}
.ws44{word-spacing:0.702000px;}
.ws22{word-spacing:0.709500px;}
.wsf{word-spacing:0.714000px;}
.ws20{word-spacing:0.774000px;}
.wsb{word-spacing:0.798000px;}
.ws78{word-spacing:0.838500px;}
.ws99{word-spacing:0.864000px;}
.ws12{word-spacing:0.882000px;}
.wsa5{word-spacing:0.903000px;}
.ws25{word-spacing:0.967500px;}
.ws64{word-spacing:1.026000px;}
.ws54{word-spacing:1.032000px;}
.ws88{word-spacing:1.080000px;}
.ws2b{word-spacing:1.096500px;}
.ws50{word-spacing:1.161000px;}
.ws38{word-spacing:1.188000px;}
.wsaf{word-spacing:1.225500px;}
.ws9d{word-spacing:1.290000px;}
.ws6a{word-spacing:1.296000px;}
.ws13{word-spacing:1.302000px;}
.ws87{word-spacing:1.350000px;}
.ws79{word-spacing:1.354500px;}
.ws14{word-spacing:1.386000px;}
.wsc4{word-spacing:1.404000px;}
.ws1d{word-spacing:1.419000px;}
.wsad{word-spacing:1.458000px;}
.ws6{word-spacing:1.470000px;}
.ws91{word-spacing:1.483500px;}
.ws63{word-spacing:1.512000px;}
.ws7d{word-spacing:1.548000px;}
.ws9a{word-spacing:1.566000px;}
.ws5b{word-spacing:1.612500px;}
.ws6b{word-spacing:1.620000px;}
.wsbe{word-spacing:1.674000px;}
.wsb9{word-spacing:1.677000px;}
.ws2e{word-spacing:1.741500px;}
.ws48{word-spacing:1.782000px;}
.ws30{word-spacing:1.806000px;}
.ws62{word-spacing:1.836000px;}
.ws24{word-spacing:1.870500px;}
.ws96{word-spacing:1.890000px;}
.ws93{word-spacing:1.935000px;}
.wsca{word-spacing:1.944000px;}
.ws11{word-spacing:1.974000px;}
.ws9f{word-spacing:1.998000px;}
.ws59{word-spacing:1.999500px;}
.wse{word-spacing:2.058000px;}
.ws6f{word-spacing:2.064000px;}
.ws86{word-spacing:2.106000px;}
.wsba{word-spacing:2.128500px;}
.ws70{word-spacing:2.193000px;}
.ws3f{word-spacing:2.214000px;}
.ws3e{word-spacing:2.257500px;}
.ws41{word-spacing:2.268000px;}
.ws84{word-spacing:2.322000px;}
.ws60{word-spacing:2.376000px;}
.ws83{word-spacing:2.386500px;}
.ws8{word-spacing:2.394000px;}
.ws69{word-spacing:2.430000px;}
.wsa3{word-spacing:2.451000px;}
.ws10{word-spacing:2.478000px;}
.ws73{word-spacing:2.515500px;}
.ws7f{word-spacing:2.580000px;}
.wsb5{word-spacing:2.592000px;}
.ws27{word-spacing:2.644500px;}
.wsc{word-spacing:2.688000px;}
.ws66{word-spacing:2.700000px;}
.ws21{word-spacing:2.709000px;}
.ws4{word-spacing:2.730000px;}
.ws61{word-spacing:2.754000px;}
.wsa6{word-spacing:2.773500px;}
.ws5d{word-spacing:2.808000px;}
.ws4d{word-spacing:2.838000px;}
.ws7b{word-spacing:2.902500px;}
.ws2f{word-spacing:2.967000px;}
.wsa9{word-spacing:2.970000px;}
.ws34{word-spacing:3.024000px;}
.ws94{word-spacing:3.031500px;}
.ws5e{word-spacing:3.078000px;}
.wsb2{word-spacing:3.096000px;}
.wscb{word-spacing:3.108000px;}
.ws43{word-spacing:3.132000px;}
.ws7{word-spacing:3.150000px;}
.ws28{word-spacing:3.160500px;}
.wsa8{word-spacing:3.186000px;}
.ws4e{word-spacing:3.225000px;}
.ws65{word-spacing:3.240000px;}
.ws7e{word-spacing:3.289500px;}
.ws42{word-spacing:3.294000px;}
.ws4c{word-spacing:3.354000px;}
.ws47{word-spacing:3.402000px;}
.ws81{word-spacing:3.418500px;}
.ws97{word-spacing:3.456000px;}
.ws7c{word-spacing:3.483000px;}
.ws92{word-spacing:3.547500px;}
.ws9{word-spacing:3.570000px;}
.ws6c{word-spacing:3.612000px;}
.wsa7{word-spacing:3.672000px;}
.ws23{word-spacing:3.676500px;}
.ws68{word-spacing:3.726000px;}
.ws8a{word-spacing:3.741000px;}
.ws33{word-spacing:3.780000px;}
.ws95{word-spacing:3.805500px;}
.ws8e{word-spacing:3.870000px;}
.wsb4{word-spacing:3.888000px;}
.ws51{word-spacing:3.934500px;}
.ws98{word-spacing:3.942000px;}
.wsaa{word-spacing:3.996000px;}
.ws5a{word-spacing:3.999000px;}
.ws39{word-spacing:4.050000px;}
.ws52{word-spacing:4.063500px;}
.ws67{word-spacing:4.104000px;}
.wsc5{word-spacing:4.128000px;}
.ws4a{word-spacing:4.158000px;}
.ws72{word-spacing:4.192500px;}
.ws85{word-spacing:4.257000px;}
.ws5f{word-spacing:4.266000px;}
.ws1b{word-spacing:4.321500px;}
.ws36{word-spacing:4.374000px;}
.ws3c{word-spacing:4.386000px;}
.ws32{word-spacing:4.482000px;}
.ws9c{word-spacing:4.515000px;}
.ws16{word-spacing:4.536000px;}
.ws71{word-spacing:4.579500px;}
.wsb7{word-spacing:4.590000px;}
.ws55{word-spacing:4.644000px;}
.ws17{word-spacing:4.662000px;}
.ws37{word-spacing:4.698000px;}
.wsc3{word-spacing:4.708500px;}
.wsa2{word-spacing:4.773000px;}
.ws9e{word-spacing:4.837500px;}
.wsab{word-spacing:4.860000px;}
.wsa1{word-spacing:4.902000px;}
.wsa4{word-spacing:4.966500px;}
.ws29{word-spacing:5.031000px;}
.ws3a{word-spacing:5.076000px;}
.ws3d{word-spacing:5.095500px;}
.ws82{word-spacing:5.160000px;}
.ws8b{word-spacing:5.224500px;}
.ws26{word-spacing:5.289000px;}
.ws45{word-spacing:5.346000px;}
.ws89{word-spacing:5.353500px;}
.ws40{word-spacing:5.400000px;}
.wsc6{word-spacing:5.418000px;}
.ws74{word-spacing:5.482500px;}
.ws80{word-spacing:5.547000px;}
.wsb0{word-spacing:5.611500px;}
.ws6d{word-spacing:5.676000px;}
.ws90{word-spacing:5.740500px;}
.ws57{word-spacing:5.805000px;}
.ws8c{word-spacing:5.869500px;}
.ws2c{word-spacing:5.934000px;}
.ws4f{word-spacing:5.998500px;}
.ws2a{word-spacing:6.063000px;}
.ws8d{word-spacing:6.127500px;}
.wsb3{word-spacing:6.192000px;}
.ws1e{word-spacing:6.256500px;}
.ws6e{word-spacing:6.321000px;}
.ws1c{word-spacing:6.385500px;}
.ws1f{word-spacing:6.450000px;}
.wscc{word-spacing:7.392000px;}
.ws2{word-spacing:10.656000px;}
.ws1{word-spacing:13.344000px;}
.wsae{word-spacing:19.414500px;}
._14{margin-left:-32.250000px;}
._16{margin-left:-16.362000px;}
._0{margin-left:-13.348800px;}
._6{margin-left:-11.676000px;}
._f{margin-left:-10.530000px;}
._4{margin-left:-9.324000px;}
._9{margin-left:-1.008000px;}
._c{width:1.419000px;}
._17{width:2.589600px;}
._3{width:4.347000px;}
._2{width:7.140000px;}
._5{width:11.088000px;}
._1{width:12.264000px;}
._12{width:13.715496px;}
._a{width:15.312000px;}
._13{width:16.739496px;}
._15{width:18.089496px;}
._b{width:19.414500px;}
._10{width:27.809748px;}
._e{width:29.380548px;}
._11{width:31.049748px;}
._d{width:33.209748px;}
._8{width:1579.440000px;}
._7{width:1891.920000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:25.200000px;}
.fs9{font-size:31.482000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:37.603800px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:64.500000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:56.003550px;}
.y1{bottom:56.123550px;}
.y29{bottom:110.549700px;}
.y12a{bottom:110.557200px;}
.y7c{bottom:110.560200px;}
.y55{bottom:110.566200px;}
.ye8{bottom:110.569200px;}
.y227{bottom:112.475250px;}
.yc2{bottom:115.046700px;}
.y28{bottom:122.551200px;}
.y129{bottom:126.541200px;}
.y7b{bottom:126.544200px;}
.yc1{bottom:126.547200px;}
.y54{bottom:126.550200px;}
.ye7{bottom:126.553200px;}
.y1e9{bottom:126.556200px;}
.y226{bottom:128.634750px;}
.y200{bottom:129.627450px;}
.y27{bottom:138.791700px;}
.y7a{bottom:142.528200px;}
.yc0{bottom:142.531200px;}
.y53{bottom:142.534200px;}
.ye6{bottom:142.537200px;}
.y1e8{bottom:142.540200px;}
.y225{bottom:144.794250px;}
.y128{bottom:147.020700px;}
.y1ff{bottom:147.219825px;}
.y26{bottom:154.226700px;}
.ybf{bottom:158.515200px;}
.y52{bottom:158.518200px;}
.ye5{bottom:158.521200px;}
.y1e7{bottom:158.524200px;}
.y224{bottom:160.953750px;}
.y79{bottom:163.007700px;}
.y1fe{bottom:164.812200px;}
.y25{bottom:174.208200px;}
.y51{bottom:174.502200px;}
.ye4{bottom:174.505200px;}
.y1e6{bottom:174.508200px;}
.y223{bottom:177.113250px;}
.ybe{bottom:178.994700px;}
.y1fd{bottom:182.404575px;}
.y24{bottom:185.390700px;}
.ye3{bottom:190.489200px;}
.y1e5{bottom:190.492200px;}
.y127{bottom:191.986650px;}
.y222{bottom:193.272750px;}
.y50{bottom:194.981700px;}
.y166{bottom:198.361125px;}
.y148{bottom:198.371175px;}
.y1fc{bottom:199.996950px;}
.y23{bottom:205.372200px;}
.ya0{bottom:206.476200px;}
.y108{bottom:206.482200px;}
.y4f{bottom:206.488200px;}
.y221{bottom:209.432250px;}
.y126{bottom:209.579025px;}
.ye2{bottom:210.968700px;}
.y165{bottom:215.953500px;}
.y147{bottom:215.963550px;}
.y22{bottom:216.554700px;}
.ybd{bottom:217.477050px;}
.y1fb{bottom:217.589325px;}
.y107{bottom:222.466200px;}
.y4e{bottom:222.472200px;}
.y220{bottom:225.591750px;}
.y9f{bottom:226.955700px;}
.y125{bottom:227.171400px;}
.y164{bottom:233.545875px;}
.ybc{bottom:235.069425px;}
.y1fa{bottom:235.181700px;}
.y106{bottom:238.450200px;}
.y4d{bottom:238.456200px;}
.y9e{bottom:238.510200px;}
.y78{bottom:241.673100px;}
.y21f{bottom:241.751250px;}
.y187{bottom:244.200675px;}
.y124{bottom:244.763775px;}
.y163{bottom:251.138250px;}
.y146{bottom:251.181600px;}
.ybb{bottom:252.686400px;}
.y1c1{bottom:254.434200px;}
.y4c{bottom:254.440200px;}
.y9d{bottom:254.494200px;}
.y21e{bottom:257.910750px;}
.y105{bottom:258.929700px;}
.y77{bottom:259.265475px;}
.y1f9{bottom:261.578325px;}
.y186{bottom:261.793050px;}
.y123{bottom:262.356150px;}
.y145{bottom:267.165600px;}
.y21{bottom:268.660650px;}
.yba{bottom:270.278775px;}
.y1e4{bottom:270.337125px;}
.ye1{bottom:270.366000px;}
.y4b{bottom:270.424200px;}
.y104{bottom:270.448350px;}
.y9c{bottom:270.478200px;}
.y21d{bottom:274.070250px;}
.y76{bottom:276.857850px;}
.y162{bottom:277.534875px;}
.y1a8{bottom:278.412825px;}
.y1f8{bottom:279.170700px;}
.y185{bottom:279.385425px;}
.y122{bottom:279.948525px;}
.y144{bottom:283.149600px;}
.y103{bottom:286.432350px;}
.y9b{bottom:286.462200px;}
.yb9{bottom:287.871150px;}
.y1e3{bottom:287.929500px;}
.ye0{bottom:287.958375px;}
.y20{bottom:288.652650px;}
.y4a{bottom:290.903700px;}
.y75{bottom:294.450225px;}
.y161{bottom:295.127250px;}
.y1a7{bottom:296.005200px;}
.y1f7{bottom:296.763075px;}
.y184{bottom:296.977800px;}
.y121{bottom:297.540900px;}
.y143{bottom:299.133600px;}
.y1f{bottom:301.441650px;}
.y102{bottom:302.416350px;}
.y9a{bottom:302.446200px;}
.yb8{bottom:305.463525px;}
.y1e2{bottom:305.521875px;}
.y1c0{bottom:305.534250px;}
.ydf{bottom:305.550750px;}
.y21c{bottom:311.581875px;}
.y74{bottom:312.042600px;}
.y160{bottom:312.719625px;}
.y1a6{bottom:313.597575px;}
.y1e{bottom:314.248650px;}
.y183{bottom:314.570175px;}
.y142{bottom:315.117600px;}
.y120{bottom:315.133275px;}
.y101{bottom:318.400350px;}
.y99{bottom:318.430200px;}
.yb7{bottom:323.055900px;}
.y1e1{bottom:323.114250px;}
.y1bf{bottom:323.126625px;}
.yde{bottom:323.143125px;}
.y1f6{bottom:323.159700px;}
.y1d{bottom:327.037650px;}
.y73{bottom:329.634975px;}
.y141{bottom:331.101600px;}
.y1a5{bottom:331.189950px;}
.y182{bottom:332.162550px;}
.y11f{bottom:332.725650px;}
.y100{bottom:334.384350px;}
.y98{bottom:334.414200px;}
.y15f{bottom:339.116250px;}
.y1c{bottom:339.826650px;}
.y49{bottom:340.646475px;}
.yb6{bottom:340.648275px;}
.y1e0{bottom:340.706625px;}
.y1be{bottom:340.719000px;}
.ydd{bottom:340.735500px;}
.y1f5{bottom:340.752075px;}
.y140{bottom:347.085600px;}
.y72{bottom:347.227350px;}
.y1a4{bottom:348.782325px;}
.y181{bottom:349.754925px;}
.y11e{bottom:350.318025px;}
.yff{bottom:350.368350px;}
.y97{bottom:350.398200px;}
.y1b{bottom:352.615650px;}
.y15e{bottom:356.708625px;}
.yb5{bottom:358.240650px;}
.y1df{bottom:358.299000px;}
.y1bd{bottom:358.311375px;}
.ydc{bottom:358.327875px;}
.y48{bottom:358.332225px;}
.y1f4{bottom:358.344450px;}
.y13f{bottom:363.069600px;}
.y71{bottom:364.819725px;}
.y1a{bottom:365.409150px;}
.yfe{bottom:366.352350px;}
.y1a3{bottom:366.374700px;}
.y96{bottom:366.382200px;}
.y180{bottom:367.347300px;}
.y11d{bottom:367.910400px;}
.y15d{bottom:374.301000px;}
.y1de{bottom:375.891375px;}
.y1bc{bottom:375.903750px;}
.ydb{bottom:375.920250px;}
.yb4{bottom:375.920700px;}
.y47{bottom:375.924600px;}
.y1f3{bottom:375.936825px;}
.y21b{bottom:375.952875px;}
.y19{bottom:378.212250px;}
.y13e{bottom:379.053600px;}
.yfd{bottom:382.336350px;}
.y95{bottom:382.366200px;}
.y70{bottom:382.412100px;}
.y1a2{bottom:383.967075px;}
.y17f{bottom:384.939675px;}
.y11c{bottom:385.502775px;}
.y18{bottom:391.001250px;}
.y1dd{bottom:393.483750px;}
.y1bb{bottom:393.496125px;}
.yda{bottom:393.512625px;}
.yb3{bottom:393.513075px;}
.y46{bottom:393.516975px;}
.y1f2{bottom:393.529200px;}
.y21a{bottom:393.545250px;}
.y13d{bottom:395.037600px;}
.yfc{bottom:398.320350px;}
.y94{bottom:398.350200px;}
.y6f{bottom:400.004475px;}
.y1a1{bottom:401.559450px;}
.y17e{bottom:402.532050px;}
.y11b{bottom:403.095150px;}
.y17{bottom:403.790250px;}
.y1dc{bottom:411.076125px;}
.y1ba{bottom:411.088500px;}
.yd9{bottom:411.105000px;}
.yb2{bottom:411.105450px;}
.y45{bottom:411.109350px;}
.y1f1{bottom:411.121575px;}
.y219{bottom:411.137625px;}
.y15c{bottom:411.614250px;}
.yfb{bottom:414.304350px;}
.y93{bottom:414.334200px;}
.y6e{bottom:417.596850px;}
.y1a0{bottom:419.151825px;}
.y11a{bottom:420.687525px;}
.y1db{bottom:428.668500px;}
.y1b9{bottom:428.680875px;}
.yd8{bottom:428.697375px;}
.yb1{bottom:428.697825px;}
.y1f0{bottom:428.713950px;}
.y218{bottom:428.730000px;}
.y13c{bottom:428.730075px;}
.y17d{bottom:428.928675px;}
.y92{bottom:430.318200px;}
.y6d{bottom:435.189225px;}
.y19f{bottom:436.744200px;}
.y119{bottom:438.279900px;}
.y1da{bottom:446.260875px;}
.y1b8{bottom:446.273250px;}
.yd7{bottom:446.289750px;}
.yb0{bottom:446.290200px;}
.y44{bottom:446.294100px;}
.y91{bottom:446.302200px;}
.y1ef{bottom:446.306325px;}
.y217{bottom:446.322375px;}
.y13b{bottom:446.322450px;}
.y17c{bottom:446.521050px;}
.y16{bottom:448.572750px;}
.y6c{bottom:452.781600px;}
.y19e{bottom:454.336575px;}
.y90{bottom:462.286200px;}
.y1d9{bottom:463.853250px;}
.y1b7{bottom:463.865625px;}
.yd6{bottom:463.882125px;}
.yaf{bottom:463.882575px;}
.yfa{bottom:463.886250px;}
.y1ee{bottom:463.898700px;}
.y216{bottom:463.914750px;}
.y13a{bottom:463.914825px;}
.y17b{bottom:464.113425px;}
.y15{bottom:468.564750px;}
.y15b{bottom:468.648375px;}
.y6b{bottom:470.373975px;}
.y19d{bottom:471.928950px;}
.y118{bottom:473.485950px;}
.y8f{bottom:478.270200px;}
.y14{bottom:481.353750px;}
.y1d8{bottom:481.445625px;}
.y1b6{bottom:481.458000px;}
.yd5{bottom:481.474500px;}
.yf9{bottom:481.478625px;}
.y1ed{bottom:481.491075px;}
.y215{bottom:481.507125px;}
.y139{bottom:481.507200px;}
.y17a{bottom:481.705800px;}
.y15a{bottom:486.298200px;}
.y6a{bottom:487.966350px;}
.y117{bottom:489.469950px;}
.y19c{bottom:489.521325px;}
.y13{bottom:494.160750px;}
.y8e{bottom:494.254200px;}
.y1d7{bottom:499.038000px;}
.y1b5{bottom:499.050375px;}
.yd4{bottom:499.066875px;}
.yae{bottom:499.067325px;}
.yf8{bottom:499.071000px;}
.y1ec{bottom:499.083450px;}
.y43{bottom:499.087350px;}
.y138{bottom:499.099575px;}
.y159{bottom:503.890575px;}
.y116{bottom:505.453950px;}
.y69{bottom:505.558725px;}
.y12{bottom:506.949750px;}
.y19b{bottom:507.113700px;}
.y8d{bottom:510.238200px;}
.y179{bottom:512.418825px;}
.y1d6{bottom:516.630375px;}
.y1b4{bottom:516.642750px;}
.yd3{bottom:516.659250px;}
.yf7{bottom:516.663375px;}
.y1eb{bottom:516.675825px;}
.y42{bottom:516.679725px;}
.y214{bottom:516.691875px;}
.y137{bottom:516.691950px;}
.y11{bottom:519.738750px;}
.y115{bottom:521.437950px;}
.y158{bottom:521.482950px;}
.y68{bottom:523.151100px;}
.y19a{bottom:524.706075px;}
.y8c{bottom:526.222200px;}
.y178{bottom:530.011200px;}
.y10{bottom:532.527750px;}
.y1d5{bottom:534.222750px;}
.y1b3{bottom:534.235125px;}
.yd2{bottom:534.251625px;}
.yf6{bottom:534.255750px;}
.y1ea{bottom:534.268200px;}
.y41{bottom:534.272100px;}
.y136{bottom:534.284325px;}
.y114{bottom:537.421950px;}
.y157{bottom:539.075325px;}
.y8b{bottom:542.206200px;}
.y199{bottom:542.298450px;}
.yf{bottom:545.325750px;}
.y177{bottom:547.603575px;}
.y1d4{bottom:551.815125px;}
.y1b2{bottom:551.827500px;}
.yd1{bottom:551.844000px;}
.yf5{bottom:551.848125px;}
.yad{bottom:551.860575px;}
.y40{bottom:551.864475px;}
.y135{bottom:551.876700px;}
.y113{bottom:553.405950px;}
.y23c{bottom:554.988600px;}
.y156{bottom:556.667700px;}
.ye{bottom:558.114750px;}
.y8a{bottom:558.190200px;}
.y67{bottom:558.384150px;}
.y198{bottom:559.890825px;}
.y176{bottom:565.195950px;}
.y23b{bottom:567.777600px;}
.y1d3{bottom:569.407500px;}
.y1b1{bottom:569.419875px;}
.yd0{bottom:569.436375px;}
.yf4{bottom:569.440500px;}
.yac{bottom:569.452950px;}
.y3f{bottom:569.456850px;}
.y134{bottom:569.469075px;}
.y213{bottom:569.485125px;}
.yd{bottom:570.912750px;}
.y89{bottom:574.174200px;}
.y155{bottom:574.260075px;}
.y66{bottom:574.368150px;}
.y197{bottom:577.483200px;}
.y175{bottom:582.788325px;}
.yc{bottom:583.701750px;}
.y23a{bottom:586.173300px;}
.y1d2{bottom:586.999875px;}
.y1b0{bottom:587.012250px;}
.y112{bottom:587.020500px;}
.ycf{bottom:587.028750px;}
.yf3{bottom:587.032875px;}
.yab{bottom:587.045325px;}
.y3e{bottom:587.049225px;}
.y133{bottom:587.061450px;}
.y212{bottom:587.077500px;}
.y65{bottom:590.352150px;}
.y154{bottom:591.852450px;}
.y196{bottom:595.075575px;}
.y239{bottom:598.962300px;}
.y174{bottom:600.380700px;}
.y1d1{bottom:604.592250px;}
.y1af{bottom:604.604625px;}
.y111{bottom:604.612875px;}
.yce{bottom:604.621125px;}
.yf2{bottom:604.625250px;}
.yaa{bottom:604.637700px;}
.y3d{bottom:604.641600px;}
.y132{bottom:604.653825px;}
.y211{bottom:604.669875px;}
.y64{bottom:606.336150px;}
.y153{bottom:609.444825px;}
.y195{bottom:612.667950px;}
.y173{bottom:617.973075px;}
.y1d0{bottom:622.184625px;}
.y1ae{bottom:622.197000px;}
.y88{bottom:622.198800px;}
.y110{bottom:622.205250px;}
.ycd{bottom:622.213500px;}
.yf1{bottom:622.217625px;}
.ya9{bottom:622.230075px;}
.y3c{bottom:622.233975px;}
.y131{bottom:622.246200px;}
.y210{bottom:622.262250px;}
.y63{bottom:622.320150px;}
.y152{bottom:627.037200px;}
.y194{bottom:630.260325px;}
.y172{bottom:635.565450px;}
.y62{bottom:638.304150px;}
.y1cf{bottom:639.777000px;}
.y1ad{bottom:639.789375px;}
.y87{bottom:639.791175px;}
.y10f{bottom:639.797625px;}
.ycc{bottom:639.805875px;}
.yf0{bottom:639.810000px;}
.ya8{bottom:639.822450px;}
.y3b{bottom:639.826350px;}
.y130{bottom:639.838575px;}
.y20f{bottom:639.854625px;}
.y151{bottom:644.629575px;}
.y238{bottom:646.873200px;}
.y193{bottom:647.852700px;}
.y171{bottom:653.157825px;}
.y61{bottom:654.288150px;}
.y1ac{bottom:657.381750px;}
.y86{bottom:657.383550px;}
.y10e{bottom:657.390000px;}
.ycb{bottom:657.398250px;}
.yef{bottom:657.402375px;}
.ya7{bottom:657.414825px;}
.y3a{bottom:657.418725px;}
.y1ce{bottom:657.426825px;}
.y12f{bottom:657.430950px;}
.y20e{bottom:657.447000px;}
.yb{bottom:661.911300px;}
.y150{bottom:662.221950px;}
.y237{bottom:663.032700px;}
.y192{bottom:665.445075px;}
.y60{bottom:670.272150px;}
.y170{bottom:670.750200px;}
.y1ab{bottom:674.974125px;}
.y85{bottom:674.975925px;}
.y10d{bottom:674.982375px;}
.yca{bottom:674.990625px;}
.yee{bottom:674.994750px;}
.ya6{bottom:675.007200px;}
.y39{bottom:675.011100px;}
.y1cd{bottom:675.019200px;}
.y12e{bottom:675.023325px;}
.y20d{bottom:675.039375px;}
.y236{bottom:679.192200px;}
.y14f{bottom:679.814325px;}
.ya{bottom:680.544750px;}
.y191{bottom:683.037450px;}
.y5f{bottom:686.256150px;}
.y16f{bottom:688.342575px;}
.y1aa{bottom:692.570625px;}
.y10c{bottom:692.574750px;}
.yc9{bottom:692.583000px;}
.yed{bottom:692.587125px;}
.y84{bottom:692.599575px;}
.y38{bottom:692.603475px;}
.y1cc{bottom:692.611575px;}
.y12d{bottom:692.615700px;}
.y20c{bottom:692.631750px;}
.y235{bottom:695.351700px;}
.y14e{bottom:697.406700px;}
.y190{bottom:700.629825px;}
.y5e{bottom:702.240150px;}
.y16e{bottom:705.934950px;}
.y1a9{bottom:710.163000px;}
.y10b{bottom:710.167125px;}
.yc8{bottom:710.175375px;}
.yec{bottom:710.179500px;}
.y83{bottom:710.191950px;}
.y37{bottom:710.195850px;}
.y1cb{bottom:710.203950px;}
.y12c{bottom:710.208075px;}
.y20b{bottom:710.224125px;}
.y234{bottom:711.511200px;}
.y14d{bottom:714.999075px;}
.y18f{bottom:718.222200px;}
.y5d{bottom:718.224150px;}
.y16d{bottom:723.527325px;}
.y9{bottom:726.134250px;}
.y233{bottom:727.670700px;}
.y10a{bottom:727.759500px;}
.yc7{bottom:727.767750px;}
.yeb{bottom:727.771875px;}
.y82{bottom:727.784325px;}
.y36{bottom:727.788225px;}
.y1ca{bottom:727.796325px;}
.y12b{bottom:727.800450px;}
.y20a{bottom:727.816500px;}
.y14c{bottom:732.591450px;}
.y5c{bottom:734.208150px;}
.y18e{bottom:735.814575px;}
.y16c{bottom:741.119700px;}
.y232{bottom:743.830200px;}
.yc6{bottom:745.360125px;}
.yea{bottom:745.364250px;}
.y81{bottom:745.376700px;}
.y35{bottom:745.380600px;}
.y1c9{bottom:745.388700px;}
.y109{bottom:745.392825px;}
.y209{bottom:745.408875px;}
.y8{bottom:746.924250px;}
.y5b{bottom:750.192150px;}
.y18d{bottom:753.406950px;}
.y16b{bottom:758.712075px;}
.y231{bottom:759.989700px;}
.ye9{bottom:762.956625px;}
.ya5{bottom:762.969075px;}
.y34{bottom:762.972975px;}
.y1c8{bottom:762.981075px;}
.yc5{bottom:762.985200px;}
.y208{bottom:763.001250px;}
.y5a{bottom:766.176150px;}
.y14b{bottom:767.788650px;}
.y80{bottom:771.773325px;}
.y230{bottom:776.149200px;}
.y16a{bottom:776.304450px;}
.y7{bottom:777.300750px;}
.ya4{bottom:780.561450px;}
.y33{bottom:780.565350px;}
.y1c7{bottom:780.573450px;}
.yc4{bottom:780.577575px;}
.y207{bottom:780.593625px;}
.y59{bottom:782.160150px;}
.y14a{bottom:783.772650px;}
.y18c{bottom:788.610000px;}
.y7f{bottom:789.365700px;}
.y22f{bottom:792.308700px;}
.y6{bottom:798.090750px;}
.ya3{bottom:798.153825px;}
.y32{bottom:798.157725px;}
.y1c6{bottom:798.165825px;}
.yc3{bottom:798.169950px;}
.y206{bottom:798.186000px;}
.y149{bottom:799.756650px;}
.y169{bottom:802.701075px;}
.y18b{bottom:804.594000px;}
.y7e{bottom:806.958075px;}
.y22e{bottom:808.468200px;}
.y31{bottom:815.750100px;}
.y1c5{bottom:815.758200px;}
.y58{bottom:815.762325px;}
.y205{bottom:815.778375px;}
.y168{bottom:820.293450px;}
.y18a{bottom:820.578000px;}
.y7d{bottom:824.550450px;}
.y22d{bottom:824.627700px;}
.y30{bottom:833.342475px;}
.y1c4{bottom:833.350575px;}
.y57{bottom:833.354700px;}
.y204{bottom:833.370750px;}
.y189{bottom:836.562000px;}
.y167{bottom:837.885825px;}
.y22c{bottom:840.787200px;}
.ya2{bottom:842.142825px;}
.y1c3{bottom:850.942950px;}
.y2f{bottom:850.947075px;}
.y203{bottom:850.963125px;}
.y188{bottom:852.546000px;}
.y22b{bottom:856.946700px;}
.ya1{bottom:859.735200px;}
.y1c2{bottom:868.535325px;}
.y2e{bottom:868.539450px;}
.y202{bottom:868.555500px;}
.y3{bottom:872.507400px;}
.y22a{bottom:873.106200px;}
.y2d{bottom:886.131825px;}
.y229{bottom:889.265700px;}
.y2{bottom:900.688050px;}
.y2c{bottom:903.724200px;}
.y201{bottom:903.740250px;}
.y228{bottom:905.425200px;}
.y2a{bottom:948.916950px;}
.y56{bottom:949.402950px;}
.y5{bottom:952.869600px;}
.y4{bottom:966.369600px;}
.h12{height:23.328162px;}
.ha{height:30.744000px;}
.h9{height:31.122000px;}
.hb{height:31.206000px;}
.hc{height:31.500000px;}
.h14{height:33.345000px;}
.h2{height:33.993600px;}
.h27{height:34.371094px;}
.hd{height:35.568000px;}
.h4{height:35.664000px;}
.h8{height:37.791000px;}
.h13{height:40.014000px;}
.h21{height:41.262762px;}
.h10{height:47.214000px;}
.he{height:47.794500px;}
.h6{height:48.312000px;}
.h1c{height:48.882416px;}
.h1e{height:48.899516px;}
.h7{height:48.906000px;}
.h11{height:48.969116px;}
.h19{height:49.008416px;}
.h20{height:49.074116px;}
.h16{height:49.079816px;}
.h1f{height:49.112816px;}
.h26{height:49.129916px;}
.h23{height:49.178816px;}
.h1d{height:49.195316px;}
.h1b{height:49.211816px;}
.h17{height:49.217516px;}
.h1a{height:49.244216px;}
.h15{height:49.261316px;}
.h18{height:49.277216px;}
.hf{height:49.293716px;}
.h24{height:49.326116px;}
.h25{height:49.326716px;}
.h22{height:49.343216px;}
.h5{height:50.990400px;}
.h3{height:69.660000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xd{left:102.047250px;}
.x13{left:106.301850px;}
.xa{left:110.554350px;}
.xe{left:116.928750px;}
.x9{left:123.460950px;}
.x11{left:140.317950px;}
.x10{left:142.591350px;}
.xb{left:145.195650px;}
.x12{left:148.346100px;}
.xc{left:150.820650px;}
.xf{left:163.853850px;}
.x4{left:182.617950px;}
.x6{left:188.535000px;}
.x5{left:206.611950px;}
.x7{left:218.251500px;}
.x8{left:305.503500px;}
.x3{left:460.558800px;}
.x2{left:511.415400px;}
@media print{
.v3{vertical-align:-19.091733pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.941867pt;}
.v1{vertical-align:19.048267pt;}
.ls1a{letter-spacing:-1.146667pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.286667pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.114667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.021292pt;}
.ls16{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.057333pt;}
.ls15{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.114667pt;}
.ls23{letter-spacing:0.143333pt;}
.ls22{letter-spacing:0.144000pt;}
.ls20{letter-spacing:0.167128pt;}
.ls1b{letter-spacing:0.172000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.200667pt;}
.ls2b{letter-spacing:0.206933pt;}
.ls12{letter-spacing:0.229333pt;}
.lsd{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.261333pt;}
.ls5{letter-spacing:0.286667pt;}
.lsf{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.300830pt;}
.ls28{letter-spacing:0.315333pt;}
.ls17{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.344000pt;}
.ls1{letter-spacing:0.373333pt;}
.ls26{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.401333pt;}
.ls11{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:0.458667pt;}
.ls36{letter-spacing:0.477333pt;}
.lse{letter-spacing:0.516000pt;}
.ls37{letter-spacing:0.560000pt;}
.ls6{letter-spacing:0.573333pt;}
.ls18{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.630667pt;}
.ls10{letter-spacing:0.672000pt;}
.ls29{letter-spacing:0.688000pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls30{letter-spacing:0.745333pt;}
.ls25{letter-spacing:0.860000pt;}
.ls34{letter-spacing:0.917333pt;}
.ls33{letter-spacing:1.146667pt;}
.ls19{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:2.496000pt;}
.ls2e{letter-spacing:2.880000pt;}
.ls35{letter-spacing:5.056000pt;}
.ls14{letter-spacing:5.160000pt;}
.ls2c{letter-spacing:5.733333pt;}
.ls2d{letter-spacing:5.991333pt;}
.ls3{letter-spacing:8.880000pt;}
.lsb{letter-spacing:1297.129600pt;}
.ls0{letter-spacing:1893.779200pt;}
.ws76{word-spacing:-11.638667pt;}
.ws56{word-spacing:-11.409333pt;}
.wsc8{word-spacing:-10.944000pt;}
.wsb6{word-spacing:-9.552000pt;}
.ws18{word-spacing:-8.490667pt;}
.ws3b{word-spacing:-7.960000pt;}
.wsc9{word-spacing:-7.660800pt;}
.wsc0{word-spacing:-6.952525pt;}
.ws77{word-spacing:-6.818822pt;}
.ws19{word-spacing:-6.651694pt;}
.ws1a{word-spacing:-5.568816pt;}
.ws75{word-spacing:-0.720000pt;}
.wsc7{word-spacing:-0.573333pt;}
.wsbd{word-spacing:-0.458667pt;}
.ws3{word-spacing:-0.373333pt;}
.ws8f{word-spacing:-0.344000pt;}
.wsc2{word-spacing:-0.286667pt;}
.ws46{word-spacing:-0.240000pt;}
.ws7a{word-spacing:-0.229333pt;}
.ws15{word-spacing:-0.186667pt;}
.wsc1{word-spacing:-0.167128pt;}
.wsb1{word-spacing:-0.114667pt;}
.ws0{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.048000pt;}
.ws4b{word-spacing:0.057333pt;}
.wsbb{word-spacing:0.096000pt;}
.ws58{word-spacing:0.114667pt;}
.wsac{word-spacing:0.172000pt;}
.ws31{word-spacing:0.240000pt;}
.wsd{word-spacing:0.261333pt;}
.ws2d{word-spacing:0.286667pt;}
.wsbc{word-spacing:0.288000pt;}
.wsa{word-spacing:0.298667pt;}
.ws5{word-spacing:0.336000pt;}
.ws49{word-spacing:0.384000pt;}
.wsb8{word-spacing:0.401333pt;}
.ws35{word-spacing:0.432000pt;}
.ws9b{word-spacing:0.480000pt;}
.ws5c{word-spacing:0.516000pt;}
.wsbf{word-spacing:0.528000pt;}
.ws53{word-spacing:0.573333pt;}
.ws44{word-spacing:0.624000pt;}
.ws22{word-spacing:0.630667pt;}
.wsf{word-spacing:0.634667pt;}
.ws20{word-spacing:0.688000pt;}
.wsb{word-spacing:0.709333pt;}
.ws78{word-spacing:0.745333pt;}
.ws99{word-spacing:0.768000pt;}
.ws12{word-spacing:0.784000pt;}
.wsa5{word-spacing:0.802667pt;}
.ws25{word-spacing:0.860000pt;}
.ws64{word-spacing:0.912000pt;}
.ws54{word-spacing:0.917333pt;}
.ws88{word-spacing:0.960000pt;}
.ws2b{word-spacing:0.974667pt;}
.ws50{word-spacing:1.032000pt;}
.ws38{word-spacing:1.056000pt;}
.wsaf{word-spacing:1.089333pt;}
.ws9d{word-spacing:1.146667pt;}
.ws6a{word-spacing:1.152000pt;}
.ws13{word-spacing:1.157333pt;}
.ws87{word-spacing:1.200000pt;}
.ws79{word-spacing:1.204000pt;}
.ws14{word-spacing:1.232000pt;}
.wsc4{word-spacing:1.248000pt;}
.ws1d{word-spacing:1.261333pt;}
.wsad{word-spacing:1.296000pt;}
.ws6{word-spacing:1.306667pt;}
.ws91{word-spacing:1.318667pt;}
.ws63{word-spacing:1.344000pt;}
.ws7d{word-spacing:1.376000pt;}
.ws9a{word-spacing:1.392000pt;}
.ws5b{word-spacing:1.433333pt;}
.ws6b{word-spacing:1.440000pt;}
.wsbe{word-spacing:1.488000pt;}
.wsb9{word-spacing:1.490667pt;}
.ws2e{word-spacing:1.548000pt;}
.ws48{word-spacing:1.584000pt;}
.ws30{word-spacing:1.605333pt;}
.ws62{word-spacing:1.632000pt;}
.ws24{word-spacing:1.662667pt;}
.ws96{word-spacing:1.680000pt;}
.ws93{word-spacing:1.720000pt;}
.wsca{word-spacing:1.728000pt;}
.ws11{word-spacing:1.754667pt;}
.ws9f{word-spacing:1.776000pt;}
.ws59{word-spacing:1.777333pt;}
.wse{word-spacing:1.829333pt;}
.ws6f{word-spacing:1.834667pt;}
.ws86{word-spacing:1.872000pt;}
.wsba{word-spacing:1.892000pt;}
.ws70{word-spacing:1.949333pt;}
.ws3f{word-spacing:1.968000pt;}
.ws3e{word-spacing:2.006667pt;}
.ws41{word-spacing:2.016000pt;}
.ws84{word-spacing:2.064000pt;}
.ws60{word-spacing:2.112000pt;}
.ws83{word-spacing:2.121333pt;}
.ws8{word-spacing:2.128000pt;}
.ws69{word-spacing:2.160000pt;}
.wsa3{word-spacing:2.178667pt;}
.ws10{word-spacing:2.202667pt;}
.ws73{word-spacing:2.236000pt;}
.ws7f{word-spacing:2.293333pt;}
.wsb5{word-spacing:2.304000pt;}
.ws27{word-spacing:2.350667pt;}
.wsc{word-spacing:2.389333pt;}
.ws66{word-spacing:2.400000pt;}
.ws21{word-spacing:2.408000pt;}
.ws4{word-spacing:2.426667pt;}
.ws61{word-spacing:2.448000pt;}
.wsa6{word-spacing:2.465333pt;}
.ws5d{word-spacing:2.496000pt;}
.ws4d{word-spacing:2.522667pt;}
.ws7b{word-spacing:2.580000pt;}
.ws2f{word-spacing:2.637333pt;}
.wsa9{word-spacing:2.640000pt;}
.ws34{word-spacing:2.688000pt;}
.ws94{word-spacing:2.694667pt;}
.ws5e{word-spacing:2.736000pt;}
.wsb2{word-spacing:2.752000pt;}
.wscb{word-spacing:2.762667pt;}
.ws43{word-spacing:2.784000pt;}
.ws7{word-spacing:2.800000pt;}
.ws28{word-spacing:2.809333pt;}
.wsa8{word-spacing:2.832000pt;}
.ws4e{word-spacing:2.866667pt;}
.ws65{word-spacing:2.880000pt;}
.ws7e{word-spacing:2.924000pt;}
.ws42{word-spacing:2.928000pt;}
.ws4c{word-spacing:2.981333pt;}
.ws47{word-spacing:3.024000pt;}
.ws81{word-spacing:3.038667pt;}
.ws97{word-spacing:3.072000pt;}
.ws7c{word-spacing:3.096000pt;}
.ws92{word-spacing:3.153333pt;}
.ws9{word-spacing:3.173333pt;}
.ws6c{word-spacing:3.210667pt;}
.wsa7{word-spacing:3.264000pt;}
.ws23{word-spacing:3.268000pt;}
.ws68{word-spacing:3.312000pt;}
.ws8a{word-spacing:3.325333pt;}
.ws33{word-spacing:3.360000pt;}
.ws95{word-spacing:3.382667pt;}
.ws8e{word-spacing:3.440000pt;}
.wsb4{word-spacing:3.456000pt;}
.ws51{word-spacing:3.497333pt;}
.ws98{word-spacing:3.504000pt;}
.wsaa{word-spacing:3.552000pt;}
.ws5a{word-spacing:3.554667pt;}
.ws39{word-spacing:3.600000pt;}
.ws52{word-spacing:3.612000pt;}
.ws67{word-spacing:3.648000pt;}
.wsc5{word-spacing:3.669333pt;}
.ws4a{word-spacing:3.696000pt;}
.ws72{word-spacing:3.726667pt;}
.ws85{word-spacing:3.784000pt;}
.ws5f{word-spacing:3.792000pt;}
.ws1b{word-spacing:3.841333pt;}
.ws36{word-spacing:3.888000pt;}
.ws3c{word-spacing:3.898667pt;}
.ws32{word-spacing:3.984000pt;}
.ws9c{word-spacing:4.013333pt;}
.ws16{word-spacing:4.032000pt;}
.ws71{word-spacing:4.070667pt;}
.wsb7{word-spacing:4.080000pt;}
.ws55{word-spacing:4.128000pt;}
.ws17{word-spacing:4.144000pt;}
.ws37{word-spacing:4.176000pt;}
.wsc3{word-spacing:4.185333pt;}
.wsa2{word-spacing:4.242667pt;}
.ws9e{word-spacing:4.300000pt;}
.wsab{word-spacing:4.320000pt;}
.wsa1{word-spacing:4.357333pt;}
.wsa4{word-spacing:4.414667pt;}
.ws29{word-spacing:4.472000pt;}
.ws3a{word-spacing:4.512000pt;}
.ws3d{word-spacing:4.529333pt;}
.ws82{word-spacing:4.586667pt;}
.ws8b{word-spacing:4.644000pt;}
.ws26{word-spacing:4.701333pt;}
.ws45{word-spacing:4.752000pt;}
.ws89{word-spacing:4.758667pt;}
.ws40{word-spacing:4.800000pt;}
.wsc6{word-spacing:4.816000pt;}
.ws74{word-spacing:4.873333pt;}
.ws80{word-spacing:4.930667pt;}
.wsb0{word-spacing:4.988000pt;}
.ws6d{word-spacing:5.045333pt;}
.ws90{word-spacing:5.102667pt;}
.ws57{word-spacing:5.160000pt;}
.ws8c{word-spacing:5.217333pt;}
.ws2c{word-spacing:5.274667pt;}
.ws4f{word-spacing:5.332000pt;}
.ws2a{word-spacing:5.389333pt;}
.ws8d{word-spacing:5.446667pt;}
.wsb3{word-spacing:5.504000pt;}
.ws1e{word-spacing:5.561333pt;}
.ws6e{word-spacing:5.618667pt;}
.ws1c{word-spacing:5.676000pt;}
.ws1f{word-spacing:5.733333pt;}
.wscc{word-spacing:6.570667pt;}
.ws2{word-spacing:9.472000pt;}
.ws1{word-spacing:11.861333pt;}
.wsae{word-spacing:17.257333pt;}
._14{margin-left:-28.666667pt;}
._16{margin-left:-14.544000pt;}
._0{margin-left:-11.865600pt;}
._6{margin-left:-10.378667pt;}
._f{margin-left:-9.360000pt;}
._4{margin-left:-8.288000pt;}
._9{margin-left:-0.896000pt;}
._c{width:1.261333pt;}
._17{width:2.301867pt;}
._3{width:3.864000pt;}
._2{width:6.346667pt;}
._5{width:9.856000pt;}
._1{width:10.901333pt;}
._12{width:12.191552pt;}
._a{width:13.610667pt;}
._13{width:14.879552pt;}
._15{width:16.079552pt;}
._b{width:17.257333pt;}
._10{width:24.719776pt;}
._e{width:26.116043pt;}
._11{width:27.599776pt;}
._d{width:29.519776pt;}
._8{width:1403.946667pt;}
._7{width:1681.706667pt;}
.fsc{font-size:22.400000pt;}
.fs9{font-size:27.984000pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:33.425600pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:57.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:49.780933pt;}
.y1{bottom:49.887600pt;}
.y29{bottom:98.266400pt;}
.y12a{bottom:98.273067pt;}
.y7c{bottom:98.275733pt;}
.y55{bottom:98.281067pt;}
.ye8{bottom:98.283733pt;}
.y227{bottom:99.978000pt;}
.yc2{bottom:102.263733pt;}
.y28{bottom:108.934400pt;}
.y129{bottom:112.481067pt;}
.y7b{bottom:112.483733pt;}
.yc1{bottom:112.486400pt;}
.y54{bottom:112.489067pt;}
.ye7{bottom:112.491733pt;}
.y1e9{bottom:112.494400pt;}
.y226{bottom:114.342000pt;}
.y200{bottom:115.224400pt;}
.y27{bottom:123.370400pt;}
.y7a{bottom:126.691733pt;}
.yc0{bottom:126.694400pt;}
.y53{bottom:126.697067pt;}
.ye6{bottom:126.699733pt;}
.y1e8{bottom:126.702400pt;}
.y225{bottom:128.706000pt;}
.y128{bottom:130.685067pt;}
.y1ff{bottom:130.862067pt;}
.y26{bottom:137.090400pt;}
.ybf{bottom:140.902400pt;}
.y52{bottom:140.905067pt;}
.ye5{bottom:140.907733pt;}
.y1e7{bottom:140.910400pt;}
.y224{bottom:143.070000pt;}
.y79{bottom:144.895733pt;}
.y1fe{bottom:146.499733pt;}
.y25{bottom:154.851733pt;}
.y51{bottom:155.113067pt;}
.ye4{bottom:155.115733pt;}
.y1e6{bottom:155.118400pt;}
.y223{bottom:157.434000pt;}
.ybe{bottom:159.106400pt;}
.y1fd{bottom:162.137400pt;}
.y24{bottom:164.791733pt;}
.ye3{bottom:169.323733pt;}
.y1e5{bottom:169.326400pt;}
.y127{bottom:170.654800pt;}
.y222{bottom:171.798000pt;}
.y50{bottom:173.317067pt;}
.y166{bottom:176.321000pt;}
.y148{bottom:176.329933pt;}
.y1fc{bottom:177.775067pt;}
.y23{bottom:182.553067pt;}
.ya0{bottom:183.534400pt;}
.y108{bottom:183.539733pt;}
.y4f{bottom:183.545067pt;}
.y221{bottom:186.162000pt;}
.y126{bottom:186.292467pt;}
.ye2{bottom:187.527733pt;}
.y165{bottom:191.958667pt;}
.y147{bottom:191.967600pt;}
.y22{bottom:192.493067pt;}
.ybd{bottom:193.312933pt;}
.y1fb{bottom:193.412733pt;}
.y107{bottom:197.747733pt;}
.y4e{bottom:197.753067pt;}
.y220{bottom:200.526000pt;}
.y9f{bottom:201.738400pt;}
.y125{bottom:201.930133pt;}
.y164{bottom:207.596333pt;}
.ybc{bottom:208.950600pt;}
.y1fa{bottom:209.050400pt;}
.y106{bottom:211.955733pt;}
.y4d{bottom:211.961067pt;}
.y9e{bottom:212.009067pt;}
.y78{bottom:214.820533pt;}
.y21f{bottom:214.890000pt;}
.y187{bottom:217.067267pt;}
.y124{bottom:217.567800pt;}
.y163{bottom:223.234000pt;}
.y146{bottom:223.272533pt;}
.ybb{bottom:224.610133pt;}
.y1c1{bottom:226.163733pt;}
.y4c{bottom:226.169067pt;}
.y9d{bottom:226.217067pt;}
.y21e{bottom:229.254000pt;}
.y105{bottom:230.159733pt;}
.y77{bottom:230.458200pt;}
.y1f9{bottom:232.514067pt;}
.y186{bottom:232.704933pt;}
.y123{bottom:233.205467pt;}
.y145{bottom:237.480533pt;}
.y21{bottom:238.809467pt;}
.yba{bottom:240.247800pt;}
.y1e4{bottom:240.299667pt;}
.ye1{bottom:240.325333pt;}
.y4b{bottom:240.377067pt;}
.y104{bottom:240.398533pt;}
.y9c{bottom:240.425067pt;}
.y21d{bottom:243.618000pt;}
.y76{bottom:246.095867pt;}
.y162{bottom:246.697667pt;}
.y1a8{bottom:247.478067pt;}
.y1f8{bottom:248.151733pt;}
.y185{bottom:248.342600pt;}
.y122{bottom:248.843133pt;}
.y144{bottom:251.688533pt;}
.y103{bottom:254.606533pt;}
.y9b{bottom:254.633067pt;}
.yb9{bottom:255.885467pt;}
.y1e3{bottom:255.937333pt;}
.ye0{bottom:255.963000pt;}
.y20{bottom:256.580133pt;}
.y4a{bottom:258.581067pt;}
.y75{bottom:261.733533pt;}
.y161{bottom:262.335333pt;}
.y1a7{bottom:263.115733pt;}
.y1f7{bottom:263.789400pt;}
.y184{bottom:263.980267pt;}
.y121{bottom:264.480800pt;}
.y143{bottom:265.896533pt;}
.y1f{bottom:267.948133pt;}
.y102{bottom:268.814533pt;}
.y9a{bottom:268.841067pt;}
.yb8{bottom:271.523133pt;}
.y1e2{bottom:271.575000pt;}
.y1c0{bottom:271.586000pt;}
.ydf{bottom:271.600667pt;}
.y21c{bottom:276.961667pt;}
.y74{bottom:277.371200pt;}
.y160{bottom:277.973000pt;}
.y1a6{bottom:278.753400pt;}
.y1e{bottom:279.332133pt;}
.y183{bottom:279.617933pt;}
.y142{bottom:280.104533pt;}
.y120{bottom:280.118467pt;}
.y101{bottom:283.022533pt;}
.y99{bottom:283.049067pt;}
.yb7{bottom:287.160800pt;}
.y1e1{bottom:287.212667pt;}
.y1bf{bottom:287.223667pt;}
.yde{bottom:287.238333pt;}
.y1f6{bottom:287.253067pt;}
.y1d{bottom:290.700133pt;}
.y73{bottom:293.008867pt;}
.y141{bottom:294.312533pt;}
.y1a5{bottom:294.391067pt;}
.y182{bottom:295.255600pt;}
.y11f{bottom:295.756133pt;}
.y100{bottom:297.230533pt;}
.y98{bottom:297.257067pt;}
.y15f{bottom:301.436667pt;}
.y1c{bottom:302.068133pt;}
.y49{bottom:302.796867pt;}
.yb6{bottom:302.798467pt;}
.y1e0{bottom:302.850333pt;}
.y1be{bottom:302.861333pt;}
.ydd{bottom:302.876000pt;}
.y1f5{bottom:302.890733pt;}
.y140{bottom:308.520533pt;}
.y72{bottom:308.646533pt;}
.y1a4{bottom:310.028733pt;}
.y181{bottom:310.893267pt;}
.y11e{bottom:311.393800pt;}
.yff{bottom:311.438533pt;}
.y97{bottom:311.465067pt;}
.y1b{bottom:313.436133pt;}
.y15e{bottom:317.074333pt;}
.yb5{bottom:318.436133pt;}
.y1df{bottom:318.488000pt;}
.y1bd{bottom:318.499000pt;}
.ydc{bottom:318.513667pt;}
.y48{bottom:318.517533pt;}
.y1f4{bottom:318.528400pt;}
.y13f{bottom:322.728533pt;}
.y71{bottom:324.284200pt;}
.y1a{bottom:324.808133pt;}
.yfe{bottom:325.646533pt;}
.y1a3{bottom:325.666400pt;}
.y96{bottom:325.673067pt;}
.y180{bottom:326.530933pt;}
.y11d{bottom:327.031467pt;}
.y15d{bottom:332.712000pt;}
.y1de{bottom:334.125667pt;}
.y1bc{bottom:334.136667pt;}
.ydb{bottom:334.151333pt;}
.yb4{bottom:334.151733pt;}
.y47{bottom:334.155200pt;}
.y1f3{bottom:334.166067pt;}
.y21b{bottom:334.180333pt;}
.y19{bottom:336.188667pt;}
.y13e{bottom:336.936533pt;}
.yfd{bottom:339.854533pt;}
.y95{bottom:339.881067pt;}
.y70{bottom:339.921867pt;}
.y1a2{bottom:341.304067pt;}
.y17f{bottom:342.168600pt;}
.y11c{bottom:342.669133pt;}
.y18{bottom:347.556667pt;}
.y1dd{bottom:349.763333pt;}
.y1bb{bottom:349.774333pt;}
.yda{bottom:349.789000pt;}
.yb3{bottom:349.789400pt;}
.y46{bottom:349.792867pt;}
.y1f2{bottom:349.803733pt;}
.y21a{bottom:349.818000pt;}
.y13d{bottom:351.144533pt;}
.yfc{bottom:354.062533pt;}
.y94{bottom:354.089067pt;}
.y6f{bottom:355.559533pt;}
.y1a1{bottom:356.941733pt;}
.y17e{bottom:357.806267pt;}
.y11b{bottom:358.306800pt;}
.y17{bottom:358.924667pt;}
.y1dc{bottom:365.401000pt;}
.y1ba{bottom:365.412000pt;}
.yd9{bottom:365.426667pt;}
.yb2{bottom:365.427067pt;}
.y45{bottom:365.430533pt;}
.y1f1{bottom:365.441400pt;}
.y219{bottom:365.455667pt;}
.y15c{bottom:365.879333pt;}
.yfb{bottom:368.270533pt;}
.y93{bottom:368.297067pt;}
.y6e{bottom:371.197200pt;}
.y1a0{bottom:372.579400pt;}
.y11a{bottom:373.944467pt;}
.y1db{bottom:381.038667pt;}
.y1b9{bottom:381.049667pt;}
.yd8{bottom:381.064333pt;}
.yb1{bottom:381.064733pt;}
.y1f0{bottom:381.079067pt;}
.y218{bottom:381.093333pt;}
.y13c{bottom:381.093400pt;}
.y17d{bottom:381.269933pt;}
.y92{bottom:382.505067pt;}
.y6d{bottom:386.834867pt;}
.y19f{bottom:388.217067pt;}
.y119{bottom:389.582133pt;}
.y1da{bottom:396.676333pt;}
.y1b8{bottom:396.687333pt;}
.yd7{bottom:396.702000pt;}
.yb0{bottom:396.702400pt;}
.y44{bottom:396.705867pt;}
.y91{bottom:396.713067pt;}
.y1ef{bottom:396.716733pt;}
.y217{bottom:396.731000pt;}
.y13b{bottom:396.731067pt;}
.y17c{bottom:396.907600pt;}
.y16{bottom:398.731333pt;}
.y6c{bottom:402.472533pt;}
.y19e{bottom:403.854733pt;}
.y90{bottom:410.921067pt;}
.y1d9{bottom:412.314000pt;}
.y1b7{bottom:412.325000pt;}
.yd6{bottom:412.339667pt;}
.yaf{bottom:412.340067pt;}
.yfa{bottom:412.343333pt;}
.y1ee{bottom:412.354400pt;}
.y216{bottom:412.368667pt;}
.y13a{bottom:412.368733pt;}
.y17b{bottom:412.545267pt;}
.y15{bottom:416.502000pt;}
.y15b{bottom:416.576333pt;}
.y6b{bottom:418.110200pt;}
.y19d{bottom:419.492400pt;}
.y118{bottom:420.876400pt;}
.y8f{bottom:425.129067pt;}
.y14{bottom:427.870000pt;}
.y1d8{bottom:427.951667pt;}
.y1b6{bottom:427.962667pt;}
.yd5{bottom:427.977333pt;}
.yf9{bottom:427.981000pt;}
.y1ed{bottom:427.992067pt;}
.y215{bottom:428.006333pt;}
.y139{bottom:428.006400pt;}
.y17a{bottom:428.182933pt;}
.y15a{bottom:432.265067pt;}
.y6a{bottom:433.747867pt;}
.y117{bottom:435.084400pt;}
.y19c{bottom:435.130067pt;}
.y13{bottom:439.254000pt;}
.y8e{bottom:439.337067pt;}
.y1d7{bottom:443.589333pt;}
.y1b5{bottom:443.600333pt;}
.yd4{bottom:443.615000pt;}
.yae{bottom:443.615400pt;}
.yf8{bottom:443.618667pt;}
.y1ec{bottom:443.629733pt;}
.y43{bottom:443.633200pt;}
.y138{bottom:443.644067pt;}
.y159{bottom:447.902733pt;}
.y116{bottom:449.292400pt;}
.y69{bottom:449.385533pt;}
.y12{bottom:450.622000pt;}
.y19b{bottom:450.767733pt;}
.y8d{bottom:453.545067pt;}
.y179{bottom:455.483400pt;}
.y1d6{bottom:459.227000pt;}
.y1b4{bottom:459.238000pt;}
.yd3{bottom:459.252667pt;}
.yf7{bottom:459.256333pt;}
.y1eb{bottom:459.267400pt;}
.y42{bottom:459.270867pt;}
.y214{bottom:459.281667pt;}
.y137{bottom:459.281733pt;}
.y11{bottom:461.990000pt;}
.y115{bottom:463.500400pt;}
.y158{bottom:463.540400pt;}
.y68{bottom:465.023200pt;}
.y19a{bottom:466.405400pt;}
.y8c{bottom:467.753067pt;}
.y178{bottom:471.121067pt;}
.y10{bottom:473.358000pt;}
.y1d5{bottom:474.864667pt;}
.y1b3{bottom:474.875667pt;}
.yd2{bottom:474.890333pt;}
.yf6{bottom:474.894000pt;}
.y1ea{bottom:474.905067pt;}
.y41{bottom:474.908533pt;}
.y136{bottom:474.919400pt;}
.y114{bottom:477.708400pt;}
.y157{bottom:479.178067pt;}
.y8b{bottom:481.961067pt;}
.y199{bottom:482.043067pt;}
.yf{bottom:484.734000pt;}
.y177{bottom:486.758733pt;}
.y1d4{bottom:490.502333pt;}
.y1b2{bottom:490.513333pt;}
.yd1{bottom:490.528000pt;}
.yf5{bottom:490.531667pt;}
.yad{bottom:490.542733pt;}
.y40{bottom:490.546200pt;}
.y135{bottom:490.557067pt;}
.y113{bottom:491.916400pt;}
.y23c{bottom:493.323200pt;}
.y156{bottom:494.815733pt;}
.ye{bottom:496.102000pt;}
.y8a{bottom:496.169067pt;}
.y67{bottom:496.341467pt;}
.y198{bottom:497.680733pt;}
.y176{bottom:502.396400pt;}
.y23b{bottom:504.691200pt;}
.y1d3{bottom:506.140000pt;}
.y1b1{bottom:506.151000pt;}
.yd0{bottom:506.165667pt;}
.yf4{bottom:506.169333pt;}
.yac{bottom:506.180400pt;}
.y3f{bottom:506.183867pt;}
.y134{bottom:506.194733pt;}
.y213{bottom:506.209000pt;}
.yd{bottom:507.478000pt;}
.y89{bottom:510.377067pt;}
.y155{bottom:510.453400pt;}
.y66{bottom:510.549467pt;}
.y197{bottom:513.318400pt;}
.y175{bottom:518.034067pt;}
.yc{bottom:518.846000pt;}
.y23a{bottom:521.042933pt;}
.y1d2{bottom:521.777667pt;}
.y1b0{bottom:521.788667pt;}
.y112{bottom:521.796000pt;}
.ycf{bottom:521.803333pt;}
.yf3{bottom:521.807000pt;}
.yab{bottom:521.818067pt;}
.y3e{bottom:521.821533pt;}
.y133{bottom:521.832400pt;}
.y212{bottom:521.846667pt;}
.y65{bottom:524.757467pt;}
.y154{bottom:526.091067pt;}
.y196{bottom:528.956067pt;}
.y239{bottom:532.410933pt;}
.y174{bottom:533.671733pt;}
.y1d1{bottom:537.415333pt;}
.y1af{bottom:537.426333pt;}
.y111{bottom:537.433667pt;}
.yce{bottom:537.441000pt;}
.yf2{bottom:537.444667pt;}
.yaa{bottom:537.455733pt;}
.y3d{bottom:537.459200pt;}
.y132{bottom:537.470067pt;}
.y211{bottom:537.484333pt;}
.y64{bottom:538.965467pt;}
.y153{bottom:541.728733pt;}
.y195{bottom:544.593733pt;}
.y173{bottom:549.309400pt;}
.y1d0{bottom:553.053000pt;}
.y1ae{bottom:553.064000pt;}
.y88{bottom:553.065600pt;}
.y110{bottom:553.071333pt;}
.ycd{bottom:553.078667pt;}
.yf1{bottom:553.082333pt;}
.ya9{bottom:553.093400pt;}
.y3c{bottom:553.096867pt;}
.y131{bottom:553.107733pt;}
.y210{bottom:553.122000pt;}
.y63{bottom:553.173467pt;}
.y152{bottom:557.366400pt;}
.y194{bottom:560.231400pt;}
.y172{bottom:564.947067pt;}
.y62{bottom:567.381467pt;}
.y1cf{bottom:568.690667pt;}
.y1ad{bottom:568.701667pt;}
.y87{bottom:568.703267pt;}
.y10f{bottom:568.709000pt;}
.ycc{bottom:568.716333pt;}
.yf0{bottom:568.720000pt;}
.ya8{bottom:568.731067pt;}
.y3b{bottom:568.734533pt;}
.y130{bottom:568.745400pt;}
.y20f{bottom:568.759667pt;}
.y151{bottom:573.004067pt;}
.y238{bottom:574.998400pt;}
.y193{bottom:575.869067pt;}
.y171{bottom:580.584733pt;}
.y61{bottom:581.589467pt;}
.y1ac{bottom:584.339333pt;}
.y86{bottom:584.340933pt;}
.y10e{bottom:584.346667pt;}
.ycb{bottom:584.354000pt;}
.yef{bottom:584.357667pt;}
.ya7{bottom:584.368733pt;}
.y3a{bottom:584.372200pt;}
.y1ce{bottom:584.379400pt;}
.y12f{bottom:584.383067pt;}
.y20e{bottom:584.397333pt;}
.yb{bottom:588.365600pt;}
.y150{bottom:588.641733pt;}
.y237{bottom:589.362400pt;}
.y192{bottom:591.506733pt;}
.y60{bottom:595.797467pt;}
.y170{bottom:596.222400pt;}
.y1ab{bottom:599.977000pt;}
.y85{bottom:599.978600pt;}
.y10d{bottom:599.984333pt;}
.yca{bottom:599.991667pt;}
.yee{bottom:599.995333pt;}
.ya6{bottom:600.006400pt;}
.y39{bottom:600.009867pt;}
.y1cd{bottom:600.017067pt;}
.y12e{bottom:600.020733pt;}
.y20d{bottom:600.035000pt;}
.y236{bottom:603.726400pt;}
.y14f{bottom:604.279400pt;}
.ya{bottom:604.928667pt;}
.y191{bottom:607.144400pt;}
.y5f{bottom:610.005467pt;}
.y16f{bottom:611.860067pt;}
.y1aa{bottom:615.618333pt;}
.y10c{bottom:615.622000pt;}
.yc9{bottom:615.629333pt;}
.yed{bottom:615.633000pt;}
.y84{bottom:615.644067pt;}
.y38{bottom:615.647533pt;}
.y1cc{bottom:615.654733pt;}
.y12d{bottom:615.658400pt;}
.y20c{bottom:615.672667pt;}
.y235{bottom:618.090400pt;}
.y14e{bottom:619.917067pt;}
.y190{bottom:622.782067pt;}
.y5e{bottom:624.213467pt;}
.y16e{bottom:627.497733pt;}
.y1a9{bottom:631.256000pt;}
.y10b{bottom:631.259667pt;}
.yc8{bottom:631.267000pt;}
.yec{bottom:631.270667pt;}
.y83{bottom:631.281733pt;}
.y37{bottom:631.285200pt;}
.y1cb{bottom:631.292400pt;}
.y12c{bottom:631.296067pt;}
.y20b{bottom:631.310333pt;}
.y234{bottom:632.454400pt;}
.y14d{bottom:635.554733pt;}
.y18f{bottom:638.419733pt;}
.y5d{bottom:638.421467pt;}
.y16d{bottom:643.135400pt;}
.y9{bottom:645.452667pt;}
.y233{bottom:646.818400pt;}
.y10a{bottom:646.897333pt;}
.yc7{bottom:646.904667pt;}
.yeb{bottom:646.908333pt;}
.y82{bottom:646.919400pt;}
.y36{bottom:646.922867pt;}
.y1ca{bottom:646.930067pt;}
.y12b{bottom:646.933733pt;}
.y20a{bottom:646.948000pt;}
.y14c{bottom:651.192400pt;}
.y5c{bottom:652.629467pt;}
.y18e{bottom:654.057400pt;}
.y16c{bottom:658.773067pt;}
.y232{bottom:661.182400pt;}
.yc6{bottom:662.542333pt;}
.yea{bottom:662.546000pt;}
.y81{bottom:662.557067pt;}
.y35{bottom:662.560533pt;}
.y1c9{bottom:662.567733pt;}
.y109{bottom:662.571400pt;}
.y209{bottom:662.585667pt;}
.y8{bottom:663.932667pt;}
.y5b{bottom:666.837467pt;}
.y18d{bottom:669.695067pt;}
.y16b{bottom:674.410733pt;}
.y231{bottom:675.546400pt;}
.ye9{bottom:678.183667pt;}
.ya5{bottom:678.194733pt;}
.y34{bottom:678.198200pt;}
.y1c8{bottom:678.205400pt;}
.yc5{bottom:678.209067pt;}
.y208{bottom:678.223333pt;}
.y5a{bottom:681.045467pt;}
.y14b{bottom:682.478800pt;}
.y80{bottom:686.020733pt;}
.y230{bottom:689.910400pt;}
.y16a{bottom:690.048400pt;}
.y7{bottom:690.934000pt;}
.ya4{bottom:693.832400pt;}
.y33{bottom:693.835867pt;}
.y1c7{bottom:693.843067pt;}
.yc4{bottom:693.846733pt;}
.y207{bottom:693.861000pt;}
.y59{bottom:695.253467pt;}
.y14a{bottom:696.686800pt;}
.y18c{bottom:700.986667pt;}
.y7f{bottom:701.658400pt;}
.y22f{bottom:704.274400pt;}
.y6{bottom:709.414000pt;}
.ya3{bottom:709.470067pt;}
.y32{bottom:709.473533pt;}
.y1c6{bottom:709.480733pt;}
.yc3{bottom:709.484400pt;}
.y206{bottom:709.498667pt;}
.y149{bottom:710.894800pt;}
.y169{bottom:713.512067pt;}
.y18b{bottom:715.194667pt;}
.y7e{bottom:717.296067pt;}
.y22e{bottom:718.638400pt;}
.y31{bottom:725.111200pt;}
.y1c5{bottom:725.118400pt;}
.y58{bottom:725.122067pt;}
.y205{bottom:725.136333pt;}
.y168{bottom:729.149733pt;}
.y18a{bottom:729.402667pt;}
.y7d{bottom:732.933733pt;}
.y22d{bottom:733.002400pt;}
.y30{bottom:740.748867pt;}
.y1c4{bottom:740.756067pt;}
.y57{bottom:740.759733pt;}
.y204{bottom:740.774000pt;}
.y189{bottom:743.610667pt;}
.y167{bottom:744.787400pt;}
.y22c{bottom:747.366400pt;}
.ya2{bottom:748.571400pt;}
.y1c3{bottom:756.393733pt;}
.y2f{bottom:756.397400pt;}
.y203{bottom:756.411667pt;}
.y188{bottom:757.818667pt;}
.y22b{bottom:761.730400pt;}
.ya1{bottom:764.209067pt;}
.y1c2{bottom:772.031400pt;}
.y2e{bottom:772.035067pt;}
.y202{bottom:772.049333pt;}
.y3{bottom:775.562133pt;}
.y22a{bottom:776.094400pt;}
.y2d{bottom:787.672733pt;}
.y229{bottom:790.458400pt;}
.y2{bottom:800.611600pt;}
.y2c{bottom:803.310400pt;}
.y201{bottom:803.324667pt;}
.y228{bottom:804.822400pt;}
.y2a{bottom:843.481733pt;}
.y56{bottom:843.913733pt;}
.y5{bottom:846.995200pt;}
.y4{bottom:858.995200pt;}
.h12{height:20.736144pt;}
.ha{height:27.328000pt;}
.h9{height:27.664000pt;}
.hb{height:27.738667pt;}
.hc{height:28.000000pt;}
.h14{height:29.640000pt;}
.h2{height:30.216533pt;}
.h27{height:30.552083pt;}
.hd{height:31.616000pt;}
.h4{height:31.701333pt;}
.h8{height:33.592000pt;}
.h13{height:35.568000pt;}
.h21{height:36.678011pt;}
.h10{height:41.968000pt;}
.he{height:42.484000pt;}
.h6{height:42.944000pt;}
.h1c{height:43.451036pt;}
.h1e{height:43.466236pt;}
.h7{height:43.472000pt;}
.h11{height:43.528103pt;}
.h19{height:43.563036pt;}
.h20{height:43.621436pt;}
.h16{height:43.626503pt;}
.h1f{height:43.655836pt;}
.h26{height:43.671036pt;}
.h23{height:43.714503pt;}
.h1d{height:43.729170pt;}
.h1b{height:43.743836pt;}
.h17{height:43.748903pt;}
.h1a{height:43.772636pt;}
.h15{height:43.787836pt;}
.h18{height:43.801970pt;}
.hf{height:43.816636pt;}
.h24{height:43.845436pt;}
.h25{height:43.845970pt;}
.h22{height:43.860636pt;}
.h5{height:45.324800pt;}
.h3{height:61.920000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xd{left:90.708667pt;}
.x13{left:94.490533pt;}
.xa{left:98.270533pt;}
.xe{left:103.936667pt;}
.x9{left:109.743067pt;}
.x11{left:124.727067pt;}
.x10{left:126.747867pt;}
.xb{left:129.062800pt;}
.x12{left:131.863200pt;}
.xc{left:134.062800pt;}
.xf{left:145.647867pt;}
.x4{left:162.327067pt;}
.x6{left:167.586667pt;}
.x5{left:183.655067pt;}
.x7{left:194.001333pt;}
.x8{left:271.558667pt;}
.x3{left:409.385600pt;}
.x2{left:454.591467pt;}
}




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