
    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_e33bfd3431bb517e3f036252.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1d55843eb45e437652dcfa9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008235;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_55a3f914c73eddea0455f703.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.027000;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_409955b95155153eee5b9c52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.027000;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_842b6033500c9704144110b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.004000;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_842b6033500c9704144110b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.004000;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_918abe6ee5664d1228126358.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003000;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_6977942310cf95ba1da1d318.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.693000;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_842b6033500c9704144110b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.004000;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_918abe6ee5664d1228126358.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003000;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_c1fa1b53f4117d16be0041b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.838000px;}
.ls14{letter-spacing:-0.816000px;}
.lsa{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.486000px;}
.ls13{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.378000px;}
.lsc{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000132px;}
.ls15{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.ls7{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.272000px;}
.ls8{letter-spacing:1.272600px;}
.ls2{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.800000px;}
.ls4{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.520000px;}
.ls1{letter-spacing:4.500000px;}
.ls9{letter-spacing:66.179400px;}
.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;}
}
.ws5{word-spacing:-20.448000px;}
.ws1{word-spacing:-19.740000px;}
.ws3{word-spacing:-13.632000px;}
.ws32{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.020000px;}
.ws10{word-spacing:-12.810000px;}
.wsf0{word-spacing:-12.576000px;}
.wse8{word-spacing:-12.192000px;}
.ws2{word-spacing:-12.000000px;}
.wsf1{word-spacing:-11.952000px;}
.wsf2{word-spacing:-11.856000px;}
.ws4{word-spacing:-11.760000px;}
.wsea{word-spacing:-11.568000px;}
.wseb{word-spacing:-11.520000px;}
.wsf3{word-spacing:-11.424000px;}
.wsec{word-spacing:-11.184000px;}
.wsaf{word-spacing:-7.870500px;}
.ws5d{word-spacing:-5.184000px;}
.ws61{word-spacing:-4.644000px;}
.ws6d{word-spacing:-4.590000px;}
.ws1a{word-spacing:-4.428000px;}
.ws9f{word-spacing:-4.374000px;}
.ws50{word-spacing:-4.266000px;}
.ws59{word-spacing:-3.888000px;}
.wsa6{word-spacing:-3.726000px;}
.ws95{word-spacing:-3.672000px;}
.ws9{word-spacing:-3.618000px;}
.wse5{word-spacing:-3.510000px;}
.ws96{word-spacing:-3.402000px;}
.ws27{word-spacing:-3.348000px;}
.wse1{word-spacing:-3.294000px;}
.wsc8{word-spacing:-3.240000px;}
.wsd8{word-spacing:-3.186000px;}
.wsa7{word-spacing:-3.132000px;}
.wse3{word-spacing:-3.078000px;}
.wsde{word-spacing:-2.970000px;}
.ws6f{word-spacing:-2.808000px;}
.wsd3{word-spacing:-2.754000px;}
.wsbd{word-spacing:-2.538000px;}
.wsa4{word-spacing:-2.484000px;}
.ws4c{word-spacing:-2.430000px;}
.ws34{word-spacing:-2.376000px;}
.wse4{word-spacing:-2.322000px;}
.wsb7{word-spacing:-2.268000px;}
.ws2e{word-spacing:-2.214000px;}
.ws63{word-spacing:-2.160000px;}
.ws66{word-spacing:-2.106000px;}
.ws1b{word-spacing:-2.052000px;}
.wsb{word-spacing:-1.998000px;}
.wsa8{word-spacing:-1.944000px;}
.ws82{word-spacing:-1.890000px;}
.ws6e{word-spacing:-1.512000px;}
.ws37{word-spacing:-1.458000px;}
.ws7{word-spacing:-1.404000px;}
.ws57{word-spacing:-1.350000px;}
.wsc5{word-spacing:-1.296000px;}
.wsda{word-spacing:-1.260000px;}
.wsdc{word-spacing:-1.242000px;}
.ws29{word-spacing:-1.188000px;}
.ws26{word-spacing:-1.134000px;}
.ws1d{word-spacing:-1.080000px;}
.ws4a{word-spacing:-1.026000px;}
.wsa3{word-spacing:-0.972000px;}
.ws2b{word-spacing:-0.810000px;}
.ws67{word-spacing:-0.756000px;}
.wsc2{word-spacing:-0.702000px;}
.ws99{word-spacing:-0.648000px;}
.wsee{word-spacing:-0.624000px;}
.wsf4{word-spacing:-0.576000px;}
.wsbc{word-spacing:-0.540000px;}
.ws7d{word-spacing:-0.486000px;}
.ws51{word-spacing:-0.378000px;}
.ws7e{word-spacing:-0.360000px;}
.wsf5{word-spacing:-0.336000px;}
.wsb5{word-spacing:-0.324000px;}
.ws2d{word-spacing:-0.270000px;}
.ws2f{word-spacing:-0.162000px;}
.wsed{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.108000px;}
.ws58{word-spacing:-0.061500px;}
.ws54{word-spacing:-0.054000px;}
.wse9{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.054000px;}
.ws53{word-spacing:0.162000px;}
.ws14{word-spacing:0.270000px;}
.ws84{word-spacing:0.324000px;}
.ws85{word-spacing:0.432000px;}
.wsef{word-spacing:0.480000px;}
.ws2a{word-spacing:0.486000px;}
.ws42{word-spacing:0.540000px;}
.wse7{word-spacing:0.702000px;}
.wscd{word-spacing:0.756000px;}
.ws35{word-spacing:0.918000px;}
.ws7b{word-spacing:0.972000px;}
.ws31{word-spacing:1.080000px;}
.ws48{word-spacing:1.134000px;}
.wsa2{word-spacing:1.242000px;}
.ws70{word-spacing:1.296000px;}
.ws20{word-spacing:1.350000px;}
.ws52{word-spacing:1.404000px;}
.ws6{word-spacing:1.458000px;}
.ws21{word-spacing:1.620000px;}
.ws60{word-spacing:1.674000px;}
.ws49{word-spacing:1.728000px;}
.wsb4{word-spacing:1.782000px;}
.ws3b{word-spacing:1.836000px;}
.ws76{word-spacing:1.890000px;}
.ws8b{word-spacing:1.998000px;}
.ws25{word-spacing:2.052000px;}
.wse0{word-spacing:2.106000px;}
.ws4d{word-spacing:2.160000px;}
.ws68{word-spacing:2.214000px;}
.wse2{word-spacing:2.268000px;}
.wsdf{word-spacing:2.322000px;}
.ws8{word-spacing:2.430000px;}
.wscc{word-spacing:2.484000px;}
.wsd2{word-spacing:2.538000px;}
.ws1f{word-spacing:2.592000px;}
.ws30{word-spacing:2.646000px;}
.ws40{word-spacing:2.700000px;}
.ws3d{word-spacing:2.808000px;}
.ws4f{word-spacing:2.970000px;}
.ws38{word-spacing:3.024000px;}
.wsbb{word-spacing:3.078000px;}
.wsd9{word-spacing:3.132000px;}
.ws98{word-spacing:3.186000px;}
.wsac{word-spacing:3.294000px;}
.ws2c{word-spacing:3.348000px;}
.ws65{word-spacing:3.402000px;}
.ws73{word-spacing:3.456000px;}
.ws75{word-spacing:3.564000px;}
.ws6c{word-spacing:3.618000px;}
.ws87{word-spacing:3.672000px;}
.ws94{word-spacing:3.780000px;}
.ws5f{word-spacing:3.834000px;}
.wsc1{word-spacing:3.996000px;}
.ws9c{word-spacing:4.050000px;}
.wse6{word-spacing:4.104000px;}
.wsb9{word-spacing:4.158000px;}
.ws92{word-spacing:4.212000px;}
.ws8d{word-spacing:4.266000px;}
.ws89{word-spacing:4.320000px;}
.wsc0{word-spacing:4.482000px;}
.ws5a{word-spacing:4.536000px;}
.ws56{word-spacing:4.590000px;}
.ws79{word-spacing:4.644000px;}
.ws1e{word-spacing:4.698000px;}
.ws83{word-spacing:4.752000px;}
.ws3f{word-spacing:4.968000px;}
.wsa1{word-spacing:5.022000px;}
.wsb0{word-spacing:5.076000px;}
.wsc7{word-spacing:5.130000px;}
.wsae{word-spacing:5.184000px;}
.ws5c{word-spacing:5.238000px;}
.ws17{word-spacing:5.292000px;}
.ws36{word-spacing:5.346000px;}
.wsa9{word-spacing:5.400000px;}
.wsab{word-spacing:5.562000px;}
.ws7a{word-spacing:5.670000px;}
.ws81{word-spacing:5.724000px;}
.ws4e{word-spacing:5.886000px;}
.ws8c{word-spacing:5.940000px;}
.ws28{word-spacing:5.994000px;}
.wsa5{word-spacing:6.102000px;}
.ws1c{word-spacing:6.210000px;}
.wsba{word-spacing:6.264000px;}
.wsd7{word-spacing:6.318000px;}
.ws72{word-spacing:6.534000px;}
.ws69{word-spacing:6.696000px;}
.ws9a{word-spacing:6.858000px;}
.wsa{word-spacing:6.912000px;}
.ws5b{word-spacing:6.966000px;}
.ws74{word-spacing:7.020000px;}
.ws55{word-spacing:7.074000px;}
.ws91{word-spacing:7.128000px;}
.wsdd{word-spacing:7.182000px;}
.ws9d{word-spacing:7.236000px;}
.wsb1{word-spacing:7.290000px;}
.ws6b{word-spacing:7.344000px;}
.wsb3{word-spacing:7.398000px;}
.ws16{word-spacing:7.452000px;}
.wsd5{word-spacing:7.614000px;}
.wscf{word-spacing:7.830000px;}
.wsc{word-spacing:7.884000px;}
.wsbf{word-spacing:7.938000px;}
.wsd6{word-spacing:7.992000px;}
.wsaa{word-spacing:8.154000px;}
.ws3a{word-spacing:8.208000px;}
.ws11{word-spacing:8.316000px;}
.ws8f{word-spacing:8.370000px;}
.wsb8{word-spacing:8.424000px;}
.ws39{word-spacing:8.478000px;}
.ws13{word-spacing:8.532000px;}
.ws90{word-spacing:8.694000px;}
.ws7f{word-spacing:8.802000px;}
.ws9b{word-spacing:8.856000px;}
.wsce{word-spacing:8.964000px;}
.ws19{word-spacing:9.072000px;}
.ws6a{word-spacing:9.234000px;}
.ws3e{word-spacing:9.396000px;}
.ws7c{word-spacing:9.504000px;}
.ws4b{word-spacing:9.558000px;}
.ws97{word-spacing:9.612000px;}
.ws47{word-spacing:9.828000px;}
.ws43{word-spacing:10.098000px;}
.ws41{word-spacing:10.206000px;}
.ws8a{word-spacing:10.260000px;}
.ws62{word-spacing:10.422000px;}
.wsb2{word-spacing:10.530000px;}
.wse{word-spacing:10.746000px;}
.ws12{word-spacing:11.124000px;}
.ws80{word-spacing:11.232000px;}
.ws45{word-spacing:11.340000px;}
.wsc9{word-spacing:11.502000px;}
.ws77{word-spacing:11.664000px;}
.wscb{word-spacing:11.772000px;}
.wsd1{word-spacing:11.826000px;}
.ws93{word-spacing:11.988000px;}
.ws18{word-spacing:12.096000px;}
.ws44{word-spacing:12.204000px;}
.ws78{word-spacing:12.420000px;}
.wsca{word-spacing:12.474000px;}
.wsa0{word-spacing:12.528000px;}
.wsc6{word-spacing:12.852000px;}
.wsad{word-spacing:13.122000px;}
.wsc3{word-spacing:13.392000px;}
.ws71{word-spacing:14.148000px;}
.ws5e{word-spacing:14.310000px;}
.wsc4{word-spacing:14.742000px;}
.ws88{word-spacing:15.120000px;}
.ws9e{word-spacing:15.768000px;}
.wsd0{word-spacing:16.092000px;}
.ws23{word-spacing:16.254000px;}
.ws24{word-spacing:16.686000px;}
.ws64{word-spacing:16.956000px;}
.wsdb{word-spacing:17.010000px;}
.wsb6{word-spacing:17.118000px;}
.ws22{word-spacing:17.820000px;}
.ws3c{word-spacing:17.928000px;}
.wsbe{word-spacing:19.332000px;}
.ws46{word-spacing:19.764000px;}
.ws8e{word-spacing:20.520000px;}
.ws33{word-spacing:23.706000px;}
.ws86{word-spacing:23.922000px;}
.wsd4{word-spacing:24.840000px;}
._2{margin-left:-4.692000px;}
._1{margin-left:-3.552000px;}
._0{margin-left:-1.968000px;}
._4{width:1.026000px;}
._3{width:3.174000px;}
._7{width:5.724000px;}
._6{width:6.882000px;}
._8{width:53.571000px;}
._5{width:66.413400px;}
.fc4{color:rgb(90,87,88);}
.fc1{color:rgb(166,27,17);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:61.500000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.866650px;}
.y4a{bottom:16.369650px;}
.y49{bottom:29.872650px;}
.y48{bottom:43.375650px;}
.y110{bottom:43.885500px;}
.y22f{bottom:56.055150px;}
.y47{bottom:56.878650px;}
.yb9{bottom:60.239700px;}
.y1ef{bottom:61.535550px;}
.ye4{bottom:63.272550px;}
.y10f{bottom:63.379500px;}
.y83{bottom:63.761550px;}
.y156{bottom:63.764550px;}
.y34{bottom:63.783000px;}
.y5{bottom:66.525004px;}
.y24c{bottom:70.227150px;}
.y135{bottom:71.843550px;}
.y1b3{bottom:73.264050px;}
.y22e{bottom:74.055150px;}
.y82{bottom:77.264550px;}
.y155{bottom:77.267550px;}
.y1ee{bottom:79.535550px;}
.yb8{bottom:79.733700px;}
.y33{bottom:80.283000px;}
.ye3{bottom:82.766550px;}
.y10e{bottom:82.873500px;}
.y24b{bottom:86.727150px;}
.y187{bottom:90.528450px;}
.y81{bottom:90.767550px;}
.y154{bottom:90.770550px;}
.y134{bottom:91.337550px;}
.y22d{bottom:92.055150px;}
.y1b2{bottom:92.758050px;}
.y32{bottom:96.783000px;}
.y4{bottom:97.125005px;}
.y1ed{bottom:97.535550px;}
.yb7{bottom:99.227700px;}
.ye2{bottom:102.260550px;}
.y24a{bottom:103.227150px;}
.y186{bottom:104.027400px;}
.y80{bottom:104.270550px;}
.y153{bottom:104.273550px;}
.y22c{bottom:110.055150px;}
.y133{bottom:110.831550px;}
.y10d{bottom:110.872500px;}
.y1b1{bottom:112.252050px;}
.y31{bottom:113.283000px;}
.y1ec{bottom:115.535550px;}
.y7f{bottom:117.773550px;}
.y152{bottom:117.776550px;}
.yb6{bottom:118.721700px;}
.y249{bottom:119.727150px;}
.ye1{bottom:121.754550px;}
.y185{bottom:126.028350px;}
.y22b{bottom:128.055150px;}
.y30{bottom:129.783000px;}
.y132{bottom:130.325550px;}
.y10c{bottom:130.366500px;}
.y7e{bottom:131.276550px;}
.y151{bottom:131.279550px;}
.y1eb{bottom:133.535550px;}
.yb5{bottom:138.215700px;}
.y21{bottom:139.264499px;}
.y1b0{bottom:140.256000px;}
.y248{bottom:140.475150px;}
.ye0{bottom:141.248550px;}
.y7d{bottom:144.763500px;}
.y22a{bottom:146.055150px;}
.y2f{bottom:146.283000px;}
.y184{bottom:148.036350px;}
.y131{bottom:149.819550px;}
.y10b{bottom:149.860500px;}
.y1ea{bottom:151.535550px;}
.y247{bottom:156.975150px;}
.yb4{bottom:157.709700px;}
.y183{bottom:161.539350px;}
.y2e{bottom:162.783000px;}
.y229{bottom:164.055150px;}
.y7c{bottom:166.771500px;}
.ydf{bottom:169.247550px;}
.y130{bottom:169.313550px;}
.y10a{bottom:169.354500px;}
.y1e9{bottom:169.535550px;}
.y246{bottom:173.475150px;}
.yb3{bottom:177.203700px;}
.y2d{bottom:179.283000px;}
.y7b{bottom:180.274500px;}
.y228{bottom:182.055150px;}
.y150{bottom:185.648700px;}
.y1e8{bottom:187.535550px;}
.yde{bottom:188.741550px;}
.y109{bottom:188.848500px;}
.y245{bottom:189.975150px;}
.y1af{bottom:192.787200px;}
.y7a{bottom:193.777500px;}
.y2c{bottom:195.783000px;}
.yb2{bottom:196.697700px;}
.y18{bottom:196.933500px;}
.y12f{bottom:197.312550px;}
.y227{bottom:200.055150px;}
.y14f{bottom:205.259550px;}
.y1e7{bottom:205.535550px;}
.y244{bottom:206.475150px;}
.y79{bottom:207.280500px;}
.ydd{bottom:208.235550px;}
.y108{bottom:208.342500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1ae{bottom:212.281200px;}
.y182{bottom:212.938650px;}
.yb1{bottom:216.191700px;}
.y12e{bottom:216.806550px;}
.y44{bottom:217.140750px;}
.y226{bottom:218.055150px;}
.y78{bottom:220.783500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y243{bottom:222.975150px;}
.y1e6{bottom:223.535550px;}
.y14e{bottom:224.753550px;}
.ydc{bottom:227.729550px;}
.y107{bottom:227.836500px;}
.y1ad{bottom:231.775200px;}
.y181{bottom:232.432650px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb0{bottom:235.685700px;}
.y225{bottom:236.055150px;}
.y12d{bottom:236.300550px;}
.y43{bottom:236.634750px;}
.y2b{bottom:237.795000px;}
.y242{bottom:239.475150px;}
.y1e5{bottom:241.535550px;}
.y14d{bottom:244.247550px;}
.ydb{bottom:247.223550px;}
.y1ac{bottom:251.269200px;}
.y180{bottom:251.926650px;}
.y224{bottom:254.055150px;}
.y2a{bottom:254.295000px;}
.y12c{bottom:255.794550px;}
.y106{bottom:255.835500px;}
.y241{bottom:255.975150px;}
.y42{bottom:256.128750px;}
.y1e4{bottom:259.535550px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yaf{bottom:263.684700px;}
.y14c{bottom:263.741550px;}
.yda{bottom:266.717550px;}
.y1ab{bottom:270.763200px;}
.y29{bottom:270.795000px;}
.y17f{bottom:271.420650px;}
.y223{bottom:272.055150px;}
.y240{bottom:272.475150px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y12b{bottom:275.288550px;}
.y105{bottom:275.329500px;}
.y41{bottom:275.622750px;}
.y1e3{bottom:277.535550px;}
.yae{bottom:283.178700px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yd9{bottom:286.211550px;}
.y28{bottom:287.295000px;}
.y77{bottom:287.673300px;}
.y23f{bottom:288.975150px;}
.y222{bottom:290.055150px;}
.y17e{bottom:290.914650px;}
.y14b{bottom:291.740550px;}
.y12a{bottom:294.782550px;}
.y104{bottom:294.823500px;}
.y40{bottom:295.116750px;}
.y1e2{bottom:295.535550px;}
.y1aa{bottom:298.762200px;}
.yad{bottom:302.672700px;}
.y23e{bottom:305.475150px;}
.y76{bottom:307.167300px;}
.y221{bottom:308.055150px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y17d{bottom:310.408650px;}
.y14a{bottom:311.234550px;}
.y1e1{bottom:313.535550px;}
.yd8{bottom:314.210550px;}
.y129{bottom:314.276550px;}
.y103{bottom:314.317500px;}
.y3f{bottom:314.610750px;}
.y1a9{bottom:318.256200px;}
.y23d{bottom:321.975150px;}
.yac{bottom:322.166700px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y220{bottom:326.055150px;}
.y75{bottom:326.661300px;}
.y17c{bottom:330.002550px;}
.y149{bottom:330.728550px;}
.y1e0{bottom:331.535550px;}
.yd7{bottom:333.704550px;}
.y102{bottom:333.811500px;}
.y3e{bottom:334.104750px;}
.y1a8{bottom:337.750200px;}
.y23c{bottom:338.475150px;}
.yab{bottom:341.660700px;}
.y128{bottom:342.275550px;}
.y21f{bottom:344.055150px;}
.y74{bottom:346.155300px;}
.yf{bottom:348.133500px;}
.y17b{bottom:349.496550px;}
.y1df{bottom:349.535550px;}
.y27{bottom:350.571000px;}
.yd6{bottom:353.198550px;}
.y3d{bottom:353.598750px;}
.y1a7{bottom:357.244200px;}
.y148{bottom:358.727550px;}
.yaa{bottom:361.154700px;}
.y127{bottom:361.769550px;}
.y101{bottom:361.810500px;}
.y21e{bottom:362.055150px;}
.y73{bottom:365.649300px;}
.y1de{bottom:367.535550px;}
.y17a{bottom:368.990550px;}
.y26{bottom:371.319000px;}
.yd5{bottom:372.692550px;}
.y3c{bottom:373.092750px;}
.y1a6{bottom:376.738200px;}
.y147{bottom:378.221550px;}
.y21d{bottom:380.055150px;}
.y23b{bottom:380.487150px;}
.ya9{bottom:380.648700px;}
.y126{bottom:381.263550px;}
.y100{bottom:381.304500px;}
.y72{bottom:385.143300px;}
.y1dd{bottom:385.535550px;}
.ye{bottom:386.785499px;}
.y25{bottom:387.819000px;}
.yd4{bottom:392.186550px;}
.y3b{bottom:392.586750px;}
.y23a{bottom:396.987150px;}
.y179{bottom:396.989550px;}
.y146{bottom:397.715550px;}
.y21c{bottom:398.055150px;}
.ya8{bottom:400.142700px;}
.y125{bottom:400.757550px;}
.yff{bottom:400.798500px;}
.y1dc{bottom:403.535550px;}
.y1a5{bottom:404.737200px;}
.yd{bottom:408.044999px;}
.y24{bottom:408.567000px;}
.yd3{bottom:411.680550px;}
.y71{bottom:413.142300px;}
.y239{bottom:413.487150px;}
.y21b{bottom:416.055150px;}
.y178{bottom:416.483550px;}
.y145{bottom:417.209550px;}
.y124{bottom:420.251550px;}
.yfe{bottom:420.292500px;}
.y3a{bottom:420.590550px;}
.y1db{bottom:421.535550px;}
.y1a4{bottom:424.231200px;}
.y23{bottom:425.067000px;}
.ya7{bottom:428.146800px;}
.y70{bottom:432.636300px;}
.y21a{bottom:434.055150px;}
.y177{bottom:435.977550px;}
.y144{bottom:436.703550px;}
.y1da{bottom:439.535550px;}
.yd2{bottom:439.679550px;}
.y123{bottom:439.745550px;}
.yfd{bottom:439.786500px;}
.y1a3{bottom:443.725200px;}
.ya6{bottom:450.646800px;}
.y219{bottom:452.055150px;}
.y6f{bottom:452.130300px;}
.y176{bottom:455.471550px;}
.y238{bottom:455.499150px;}
.y143{bottom:456.197550px;}
.y1d9{bottom:457.535550px;}
.yd1{bottom:459.173550px;}
.y122{bottom:459.239550px;}
.yfc{bottom:459.280500px;}
.y1a2{bottom:463.219200px;}
.y218{bottom:470.055150px;}
.y6e{bottom:471.624300px;}
.y237{bottom:471.999150px;}
.y175{bottom:474.965550px;}
.y1d8{bottom:475.535550px;}
.y142{bottom:475.691550px;}
.yd0{bottom:478.667550px;}
.y121{bottom:478.733550px;}
.yfb{bottom:478.774500px;}
.y1a1{bottom:482.713200px;}
.y217{bottom:488.055150px;}
.y236{bottom:488.499150px;}
.y6d{bottom:491.118300px;}
.y1d7{bottom:493.535550px;}
.y174{bottom:494.459550px;}
.y141{bottom:495.185550px;}
.ycf{bottom:498.161550px;}
.y120{bottom:498.227550px;}
.yc{bottom:502.864502px;}
.ya5{bottom:503.097150px;}
.y235{bottom:504.999150px;}
.y216{bottom:506.055150px;}
.yfa{bottom:506.773500px;}
.y1a0{bottom:510.712200px;}
.y1d6{bottom:511.535550px;}
.y173{bottom:513.953550px;}
.y6c{bottom:519.117300px;}
.yb{bottom:520.864502px;}
.y234{bottom:521.499150px;}
.ya4{bottom:522.591150px;}
.y140{bottom:523.184550px;}
.y215{bottom:524.055150px;}
.yce{bottom:526.160550px;}
.y11f{bottom:526.226550px;}
.yf9{bottom:526.267500px;}
.y1d5{bottom:529.535550px;}
.y19f{bottom:530.206200px;}
.y172{bottom:533.447550px;}
.y233{bottom:537.999150px;}
.y6b{bottom:538.611300px;}
.ya{bottom:538.864499px;}
.y214{bottom:542.055150px;}
.ya3{bottom:542.085150px;}
.y13f{bottom:542.678550px;}
.ycd{bottom:545.702550px;}
.y11e{bottom:545.720550px;}
.yf8{bottom:545.761500px;}
.y1d4{bottom:547.535550px;}
.y19e{bottom:549.700200px;}
.y232{bottom:554.499150px;}
.y9{bottom:556.864499px;}
.y6a{bottom:558.105300px;}
.y213{bottom:560.055150px;}
.y171{bottom:561.446550px;}
.ya2{bottom:561.579150px;}
.y13e{bottom:562.172550px;}
.ycc{bottom:565.196550px;}
.y11d{bottom:565.214550px;}
.yf7{bottom:565.255500px;}
.y1d3{bottom:565.535550px;}
.y19d{bottom:569.194200px;}
.y231{bottom:570.999150px;}
.y69{bottom:577.599300px;}
.y212{bottom:578.055150px;}
.y170{bottom:580.940550px;}
.ya1{bottom:581.073150px;}
.y13d{bottom:581.666550px;}
.y1d2{bottom:583.535550px;}
.ycb{bottom:584.690550px;}
.y11c{bottom:584.708550px;}
.yf6{bottom:584.749500px;}
.y230{bottom:587.499150px;}
.y211{bottom:596.055150px;}
.y68{bottom:597.093300px;}
.y19c{bottom:597.193200px;}
.y16f{bottom:600.434550px;}
.ya0{bottom:600.567150px;}
.y13c{bottom:601.160550px;}
.y1d1{bottom:601.535550px;}
.yca{bottom:604.184550px;}
.y11b{bottom:604.202550px;}
.yf5{bottom:604.243500px;}
.y210{bottom:614.055150px;}
.y19b{bottom:616.687200px;}
.y1d0{bottom:619.535550px;}
.y16e{bottom:619.928550px;}
.y9f{bottom:620.061150px;}
.y13b{bottom:620.654550px;}
.yc9{bottom:623.678550px;}
.y11a{bottom:623.696550px;}
.yf4{bottom:623.737500px;}
.y67{bottom:625.092300px;}
.y20f{bottom:632.055150px;}
.y19a{bottom:636.181200px;}
.y1cf{bottom:637.535550px;}
.y16d{bottom:639.422550px;}
.yc8{bottom:643.172550px;}
.y119{bottom:643.190550px;}
.yf3{bottom:643.231500px;}
.y66{bottom:644.586300px;}
.y8{bottom:645.510000px;}
.y9e{bottom:648.060150px;}
.y13a{bottom:648.658500px;}
.y20e{bottom:650.055150px;}
.y1ce{bottom:655.535550px;}
.y199{bottom:655.675200px;}
.y16c{bottom:658.916550px;}
.yc7{bottom:662.666550px;}
.y118{bottom:662.684550px;}
.yf2{bottom:662.725500px;}
.y65{bottom:664.080300px;}
.y7{bottom:666.771000px;}
.y9d{bottom:667.554150px;}
.y20d{bottom:668.055150px;}
.y139{bottom:671.158500px;}
.y1cd{bottom:673.535550px;}
.y16b{bottom:678.503400px;}
.yc6{bottom:682.160550px;}
.y117{bottom:682.178550px;}
.yf1{bottom:682.219500px;}
.y64{bottom:683.574300px;}
.y198{bottom:683.674200px;}
.y20c{bottom:686.055150px;}
.y9c{bottom:687.048150px;}
.y1cc{bottom:691.535550px;}
.y16a{bottom:697.997400px;}
.yc5{bottom:701.654550px;}
.y116{bottom:701.672550px;}
.yf0{bottom:701.713500px;}
.y63{bottom:703.068300px;}
.y197{bottom:703.168200px;}
.y20b{bottom:704.055150px;}
.y1cb{bottom:709.535550px;}
.y9b{bottom:715.047150px;}
.y169{bottom:717.491400px;}
.y115{bottom:721.166550px;}
.yef{bottom:721.207500px;}
.y20a{bottom:722.055150px;}
.y196{bottom:722.662200px;}
.y138{bottom:723.552150px;}
.y6{bottom:726.298500px;}
.y1ca{bottom:727.535550px;}
.yc4{bottom:729.658500px;}
.y62{bottom:731.067300px;}
.y9a{bottom:734.541150px;}
.y209{bottom:740.055150px;}
.y114{bottom:740.660550px;}
.yee{bottom:740.701500px;}
.y137{bottom:743.046150px;}
.y168{bottom:745.490400px;}
.y1c9{bottom:745.535550px;}
.y61{bottom:750.561300px;}
.y195{bottom:750.661200px;}
.y3{bottom:752.599495px;}
.y99{bottom:754.035150px;}
.y208{bottom:758.055150px;}
.y113{bottom:760.154550px;}
.y136{bottom:762.540150px;}
.y1c8{bottom:763.535550px;}
.y167{bottom:764.984400px;}
.yed{bottom:768.700500px;}
.y60{bottom:770.055300px;}
.y194{bottom:770.155200px;}
.y98{bottom:773.529150px;}
.y207{bottom:776.055150px;}
.y1c7{bottom:781.535550px;}
.yc3{bottom:782.034150px;}
.y166{bottom:784.478400px;}
.y112{bottom:788.158500px;}
.yec{bottom:788.194500px;}
.y5f{bottom:789.549300px;}
.y193{bottom:789.649200px;}
.y97{bottom:793.023150px;}
.y206{bottom:794.055150px;}
.y1c6{bottom:799.535550px;}
.yc2{bottom:801.528150px;}
.y165{bottom:803.972400px;}
.yeb{bottom:807.688500px;}
.y5e{bottom:809.043300px;}
.y192{bottom:809.143200px;}
.y205{bottom:812.055150px;}
.y96{bottom:812.517150px;}
.y1c5{bottom:817.535550px;}
.yc1{bottom:821.022150px;}
.y164{bottom:823.466400px;}
.yea{bottom:827.182500px;}
.y191{bottom:828.637200px;}
.y204{bottom:830.055150px;}
.y95{bottom:832.011150px;}
.y39{bottom:832.747950px;}
.y1c4{bottom:835.535550px;}
.y5d{bottom:837.106200px;}
.yc0{bottom:840.516150px;}
.y163{bottom:842.960400px;}
.ye9{bottom:846.676500px;}
.y203{bottom:848.055150px;}
.y190{bottom:848.131200px;}
.y94{bottom:851.505150px;}
.y1c3{bottom:853.535550px;}
.y5c{bottom:856.600200px;}
.ybf{bottom:860.010150px;}
.y202{bottom:866.055150px;}
.ye8{bottom:866.170500px;}
.y18f{bottom:867.625200px;}
.y162{bottom:870.959400px;}
.y93{bottom:870.999150px;}
.y1c2{bottom:871.535550px;}
.y5b{bottom:876.094200px;}
.y2{bottom:879.369000px;}
.ybe{bottom:879.504150px;}
.y201{bottom:884.055150px;}
.ye7{bottom:885.664500px;}
.y1c1{bottom:889.535550px;}
.y161{bottom:890.453400px;}
.y5a{bottom:895.588200px;}
.y18e{bottom:895.624200px;}
.y92{bottom:898.998150px;}
.y200{bottom:902.055150px;}
.ye6{bottom:905.158500px;}
.y1c0{bottom:907.535550px;}
.y160{bottom:909.947400px;}
.y22{bottom:914.173200px;}
.y38{bottom:914.200350px;}
.y59{bottom:915.082200px;}
.y18d{bottom:915.118200px;}
.y91{bottom:918.492150px;}
.y1ff{bottom:920.055150px;}
.y1bf{bottom:925.535550px;}
.y15f{bottom:929.441400px;}
.ye5{bottom:933.162450px;}
.y58{bottom:934.576200px;}
.y18c{bottom:934.612200px;}
.y90{bottom:937.986150px;}
.y1fe{bottom:938.055150px;}
.y1be{bottom:943.535550px;}
.y15e{bottom:948.935400px;}
.y57{bottom:954.070200px;}
.y18b{bottom:954.106200px;}
.y1fd{bottom:956.055150px;}
.y37{bottom:956.186850px;}
.y8f{bottom:957.480150px;}
.y1bd{bottom:961.535550px;}
.ybd{bottom:965.985150px;}
.y1{bottom:966.726000px;}
.y15d{bottom:968.429400px;}
.y56{bottom:973.564200px;}
.y18a{bottom:973.600200px;}
.y1fc{bottom:974.055150px;}
.y8e{bottom:976.974150px;}
.y1bc{bottom:979.535550px;}
.ybc{bottom:985.479150px;}
.y15c{bottom:987.923400px;}
.y1fb{bottom:992.055150px;}
.y189{bottom:993.094200px;}
.y1bb{bottom:997.535550px;}
.y36{bottom:998.173350px;}
.y55{bottom:1001.563200px;}
.y8d{bottom:1004.973150px;}
.y1fa{bottom:1010.055150px;}
.y1ba{bottom:1015.535550px;}
.y15b{bottom:1015.934400px;}
.y54{bottom:1021.057200px;}
.y188{bottom:1021.093200px;}
.y8c{bottom:1024.467150px;}
.y1f9{bottom:1028.055150px;}
.y1b9{bottom:1033.535550px;}
.y15a{bottom:1035.428400px;}
.y35{bottom:1040.173350px;}
.y53{bottom:1040.587200px;}
.y8b{bottom:1043.961150px;}
.y1f8{bottom:1046.055150px;}
.y1b8{bottom:1051.535550px;}
.y159{bottom:1054.922400px;}
.y52{bottom:1060.081200px;}
.y8a{bottom:1063.455150px;}
.y1f7{bottom:1064.055150px;}
.y1b7{bottom:1069.535550px;}
.ybb{bottom:1071.960150px;}
.y51{bottom:1079.575200px;}
.y1f6{bottom:1082.055150px;}
.y89{bottom:1082.949150px;}
.yba{bottom:1091.454150px;}
.y1b6{bottom:1096.039350px;}
.y50{bottom:1099.069200px;}
.y1f5{bottom:1100.055150px;}
.y111{bottom:1102.443150px;}
.y88{bottom:1110.948150px;}
.y1f4{bottom:1118.055150px;}
.y4f{bottom:1118.563200px;}
.y158{bottom:1121.937150px;}
.y87{bottom:1130.442150px;}
.y46{bottom:1134.301500px;}
.y1f3{bottom:1136.055150px;}
.y4e{bottom:1138.057200px;}
.y157{bottom:1141.431150px;}
.y1b5{bottom:1144.051200px;}
.y86{bottom:1149.936150px;}
.y1f2{bottom:1154.055150px;}
.y4d{bottom:1157.551200px;}
.y1b4{bottom:1160.551200px;}
.y85{bottom:1169.430150px;}
.y1f1{bottom:1172.055150px;}
.y4c{bottom:1185.555150px;}
.y84{bottom:1188.930150px;}
.y1f0{bottom:1190.055150px;}
.y45{bottom:1191.180150px;}
.h7{height:32.130000px;}
.h11{height:32.340000px;}
.hf{height:32.559882px;}
.h14{height:32.844000px;}
.h19{height:32.860200px;}
.h18{height:32.872200px;}
.h15{height:32.908200px;}
.ha{height:37.211294px;}
.hb{height:37.536000px;}
.h1a{height:38.502000px;}
.he{height:42.228000px;}
.h17{height:42.229524px;}
.h13{height:42.365724px;}
.h12{height:42.456924px;}
.h16{height:42.509124px;}
.h6{height:45.900000px;}
.h9{height:46.514118px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.816941px;}
.h10{height:66.633000px;}
.h5{height:78.030000px;}
.hc{height:106.260000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:122.554500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.779550px;}
.x6{left:89.291250px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x5{left:663.307050px;}
.x7{left:815.971050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.856000pt;}
.ls14{letter-spacing:-0.725333pt;}
.lsa{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.432000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000117pt;}
.ls15{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls7{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.130667pt;}
.ls8{letter-spacing:1.131200pt;}
.ls2{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls1{letter-spacing:4.000000pt;}
.ls9{letter-spacing:58.826133pt;}
.ws5{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.546667pt;}
.ws3{word-spacing:-12.117333pt;}
.ws32{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.573333pt;}
.ws10{word-spacing:-11.386667pt;}
.wsf0{word-spacing:-11.178667pt;}
.wse8{word-spacing:-10.837333pt;}
.ws2{word-spacing:-10.666667pt;}
.wsf1{word-spacing:-10.624000pt;}
.wsf2{word-spacing:-10.538667pt;}
.ws4{word-spacing:-10.453333pt;}
.wsea{word-spacing:-10.282667pt;}
.wseb{word-spacing:-10.240000pt;}
.wsf3{word-spacing:-10.154667pt;}
.wsec{word-spacing:-9.941333pt;}
.wsaf{word-spacing:-6.996000pt;}
.ws5d{word-spacing:-4.608000pt;}
.ws61{word-spacing:-4.128000pt;}
.ws6d{word-spacing:-4.080000pt;}
.ws1a{word-spacing:-3.936000pt;}
.ws9f{word-spacing:-3.888000pt;}
.ws50{word-spacing:-3.792000pt;}
.ws59{word-spacing:-3.456000pt;}
.wsa6{word-spacing:-3.312000pt;}
.ws95{word-spacing:-3.264000pt;}
.ws9{word-spacing:-3.216000pt;}
.wse5{word-spacing:-3.120000pt;}
.ws96{word-spacing:-3.024000pt;}
.ws27{word-spacing:-2.976000pt;}
.wse1{word-spacing:-2.928000pt;}
.wsc8{word-spacing:-2.880000pt;}
.wsd8{word-spacing:-2.832000pt;}
.wsa7{word-spacing:-2.784000pt;}
.wse3{word-spacing:-2.736000pt;}
.wsde{word-spacing:-2.640000pt;}
.ws6f{word-spacing:-2.496000pt;}
.wsd3{word-spacing:-2.448000pt;}
.wsbd{word-spacing:-2.256000pt;}
.wsa4{word-spacing:-2.208000pt;}
.ws4c{word-spacing:-2.160000pt;}
.ws34{word-spacing:-2.112000pt;}
.wse4{word-spacing:-2.064000pt;}
.wsb7{word-spacing:-2.016000pt;}
.ws2e{word-spacing:-1.968000pt;}
.ws63{word-spacing:-1.920000pt;}
.ws66{word-spacing:-1.872000pt;}
.ws1b{word-spacing:-1.824000pt;}
.wsb{word-spacing:-1.776000pt;}
.wsa8{word-spacing:-1.728000pt;}
.ws82{word-spacing:-1.680000pt;}
.ws6e{word-spacing:-1.344000pt;}
.ws37{word-spacing:-1.296000pt;}
.ws7{word-spacing:-1.248000pt;}
.ws57{word-spacing:-1.200000pt;}
.wsc5{word-spacing:-1.152000pt;}
.wsda{word-spacing:-1.120000pt;}
.wsdc{word-spacing:-1.104000pt;}
.ws29{word-spacing:-1.056000pt;}
.ws26{word-spacing:-1.008000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws4a{word-spacing:-0.912000pt;}
.wsa3{word-spacing:-0.864000pt;}
.ws2b{word-spacing:-0.720000pt;}
.ws67{word-spacing:-0.672000pt;}
.wsc2{word-spacing:-0.624000pt;}
.ws99{word-spacing:-0.576000pt;}
.wsee{word-spacing:-0.554667pt;}
.wsf4{word-spacing:-0.512000pt;}
.wsbc{word-spacing:-0.480000pt;}
.ws7d{word-spacing:-0.432000pt;}
.ws51{word-spacing:-0.336000pt;}
.ws7e{word-spacing:-0.320000pt;}
.wsf5{word-spacing:-0.298667pt;}
.wsb5{word-spacing:-0.288000pt;}
.ws2d{word-spacing:-0.240000pt;}
.ws2f{word-spacing:-0.144000pt;}
.wsed{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.096000pt;}
.ws58{word-spacing:-0.054667pt;}
.ws54{word-spacing:-0.048000pt;}
.wse9{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.048000pt;}
.ws53{word-spacing:0.144000pt;}
.ws14{word-spacing:0.240000pt;}
.ws84{word-spacing:0.288000pt;}
.ws85{word-spacing:0.384000pt;}
.wsef{word-spacing:0.426667pt;}
.ws2a{word-spacing:0.432000pt;}
.ws42{word-spacing:0.480000pt;}
.wse7{word-spacing:0.624000pt;}
.wscd{word-spacing:0.672000pt;}
.ws35{word-spacing:0.816000pt;}
.ws7b{word-spacing:0.864000pt;}
.ws31{word-spacing:0.960000pt;}
.ws48{word-spacing:1.008000pt;}
.wsa2{word-spacing:1.104000pt;}
.ws70{word-spacing:1.152000pt;}
.ws20{word-spacing:1.200000pt;}
.ws52{word-spacing:1.248000pt;}
.ws6{word-spacing:1.296000pt;}
.ws21{word-spacing:1.440000pt;}
.ws60{word-spacing:1.488000pt;}
.ws49{word-spacing:1.536000pt;}
.wsb4{word-spacing:1.584000pt;}
.ws3b{word-spacing:1.632000pt;}
.ws76{word-spacing:1.680000pt;}
.ws8b{word-spacing:1.776000pt;}
.ws25{word-spacing:1.824000pt;}
.wse0{word-spacing:1.872000pt;}
.ws4d{word-spacing:1.920000pt;}
.ws68{word-spacing:1.968000pt;}
.wse2{word-spacing:2.016000pt;}
.wsdf{word-spacing:2.064000pt;}
.ws8{word-spacing:2.160000pt;}
.wscc{word-spacing:2.208000pt;}
.wsd2{word-spacing:2.256000pt;}
.ws1f{word-spacing:2.304000pt;}
.ws30{word-spacing:2.352000pt;}
.ws40{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.496000pt;}
.ws4f{word-spacing:2.640000pt;}
.ws38{word-spacing:2.688000pt;}
.wsbb{word-spacing:2.736000pt;}
.wsd9{word-spacing:2.784000pt;}
.ws98{word-spacing:2.832000pt;}
.wsac{word-spacing:2.928000pt;}
.ws2c{word-spacing:2.976000pt;}
.ws65{word-spacing:3.024000pt;}
.ws73{word-spacing:3.072000pt;}
.ws75{word-spacing:3.168000pt;}
.ws6c{word-spacing:3.216000pt;}
.ws87{word-spacing:3.264000pt;}
.ws94{word-spacing:3.360000pt;}
.ws5f{word-spacing:3.408000pt;}
.wsc1{word-spacing:3.552000pt;}
.ws9c{word-spacing:3.600000pt;}
.wse6{word-spacing:3.648000pt;}
.wsb9{word-spacing:3.696000pt;}
.ws92{word-spacing:3.744000pt;}
.ws8d{word-spacing:3.792000pt;}
.ws89{word-spacing:3.840000pt;}
.wsc0{word-spacing:3.984000pt;}
.ws5a{word-spacing:4.032000pt;}
.ws56{word-spacing:4.080000pt;}
.ws79{word-spacing:4.128000pt;}
.ws1e{word-spacing:4.176000pt;}
.ws83{word-spacing:4.224000pt;}
.ws3f{word-spacing:4.416000pt;}
.wsa1{word-spacing:4.464000pt;}
.wsb0{word-spacing:4.512000pt;}
.wsc7{word-spacing:4.560000pt;}
.wsae{word-spacing:4.608000pt;}
.ws5c{word-spacing:4.656000pt;}
.ws17{word-spacing:4.704000pt;}
.ws36{word-spacing:4.752000pt;}
.wsa9{word-spacing:4.800000pt;}
.wsab{word-spacing:4.944000pt;}
.ws7a{word-spacing:5.040000pt;}
.ws81{word-spacing:5.088000pt;}
.ws4e{word-spacing:5.232000pt;}
.ws8c{word-spacing:5.280000pt;}
.ws28{word-spacing:5.328000pt;}
.wsa5{word-spacing:5.424000pt;}
.ws1c{word-spacing:5.520000pt;}
.wsba{word-spacing:5.568000pt;}
.wsd7{word-spacing:5.616000pt;}
.ws72{word-spacing:5.808000pt;}
.ws69{word-spacing:5.952000pt;}
.ws9a{word-spacing:6.096000pt;}
.wsa{word-spacing:6.144000pt;}
.ws5b{word-spacing:6.192000pt;}
.ws74{word-spacing:6.240000pt;}
.ws55{word-spacing:6.288000pt;}
.ws91{word-spacing:6.336000pt;}
.wsdd{word-spacing:6.384000pt;}
.ws9d{word-spacing:6.432000pt;}
.wsb1{word-spacing:6.480000pt;}
.ws6b{word-spacing:6.528000pt;}
.wsb3{word-spacing:6.576000pt;}
.ws16{word-spacing:6.624000pt;}
.wsd5{word-spacing:6.768000pt;}
.wscf{word-spacing:6.960000pt;}
.wsc{word-spacing:7.008000pt;}
.wsbf{word-spacing:7.056000pt;}
.wsd6{word-spacing:7.104000pt;}
.wsaa{word-spacing:7.248000pt;}
.ws3a{word-spacing:7.296000pt;}
.ws11{word-spacing:7.392000pt;}
.ws8f{word-spacing:7.440000pt;}
.wsb8{word-spacing:7.488000pt;}
.ws39{word-spacing:7.536000pt;}
.ws13{word-spacing:7.584000pt;}
.ws90{word-spacing:7.728000pt;}
.ws7f{word-spacing:7.824000pt;}
.ws9b{word-spacing:7.872000pt;}
.wsce{word-spacing:7.968000pt;}
.ws19{word-spacing:8.064000pt;}
.ws6a{word-spacing:8.208000pt;}
.ws3e{word-spacing:8.352000pt;}
.ws7c{word-spacing:8.448000pt;}
.ws4b{word-spacing:8.496000pt;}
.ws97{word-spacing:8.544000pt;}
.ws47{word-spacing:8.736000pt;}
.ws43{word-spacing:8.976000pt;}
.ws41{word-spacing:9.072000pt;}
.ws8a{word-spacing:9.120000pt;}
.ws62{word-spacing:9.264000pt;}
.wsb2{word-spacing:9.360000pt;}
.wse{word-spacing:9.552000pt;}
.ws12{word-spacing:9.888000pt;}
.ws80{word-spacing:9.984000pt;}
.ws45{word-spacing:10.080000pt;}
.wsc9{word-spacing:10.224000pt;}
.ws77{word-spacing:10.368000pt;}
.wscb{word-spacing:10.464000pt;}
.wsd1{word-spacing:10.512000pt;}
.ws93{word-spacing:10.656000pt;}
.ws18{word-spacing:10.752000pt;}
.ws44{word-spacing:10.848000pt;}
.ws78{word-spacing:11.040000pt;}
.wsca{word-spacing:11.088000pt;}
.wsa0{word-spacing:11.136000pt;}
.wsc6{word-spacing:11.424000pt;}
.wsad{word-spacing:11.664000pt;}
.wsc3{word-spacing:11.904000pt;}
.ws71{word-spacing:12.576000pt;}
.ws5e{word-spacing:12.720000pt;}
.wsc4{word-spacing:13.104000pt;}
.ws88{word-spacing:13.440000pt;}
.ws9e{word-spacing:14.016000pt;}
.wsd0{word-spacing:14.304000pt;}
.ws23{word-spacing:14.448000pt;}
.ws24{word-spacing:14.832000pt;}
.ws64{word-spacing:15.072000pt;}
.wsdb{word-spacing:15.120000pt;}
.wsb6{word-spacing:15.216000pt;}
.ws22{word-spacing:15.840000pt;}
.ws3c{word-spacing:15.936000pt;}
.wsbe{word-spacing:17.184000pt;}
.ws46{word-spacing:17.568000pt;}
.ws8e{word-spacing:18.240000pt;}
.ws33{word-spacing:21.072000pt;}
.ws86{word-spacing:21.264000pt;}
.wsd4{word-spacing:22.080000pt;}
._2{margin-left:-4.170667pt;}
._1{margin-left:-3.157333pt;}
._0{margin-left:-1.749333pt;}
._4{width:0.912000pt;}
._3{width:2.821333pt;}
._7{width:5.088000pt;}
._6{width:6.117333pt;}
._8{width:47.618667pt;}
._5{width:59.034133pt;}
.fs8{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:54.666667pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.548133pt;}
.y4a{bottom:14.550800pt;}
.y49{bottom:26.553467pt;}
.y48{bottom:38.556133pt;}
.y110{bottom:39.009333pt;}
.y22f{bottom:49.826800pt;}
.y47{bottom:50.558800pt;}
.yb9{bottom:53.546400pt;}
.y1ef{bottom:54.698267pt;}
.ye4{bottom:56.242267pt;}
.y10f{bottom:56.337333pt;}
.y83{bottom:56.676933pt;}
.y156{bottom:56.679600pt;}
.y34{bottom:56.696000pt;}
.y5{bottom:59.133337pt;}
.y24c{bottom:62.424133pt;}
.y135{bottom:63.860933pt;}
.y1b3{bottom:65.123600pt;}
.y22e{bottom:65.826800pt;}
.y82{bottom:68.679600pt;}
.y155{bottom:68.682267pt;}
.y1ee{bottom:70.698267pt;}
.yb8{bottom:70.874400pt;}
.y33{bottom:71.362667pt;}
.ye3{bottom:73.570267pt;}
.y10e{bottom:73.665333pt;}
.y24b{bottom:77.090800pt;}
.y187{bottom:80.469733pt;}
.y81{bottom:80.682267pt;}
.y154{bottom:80.684933pt;}
.y134{bottom:81.188933pt;}
.y22d{bottom:81.826800pt;}
.y1b2{bottom:82.451600pt;}
.y32{bottom:86.029333pt;}
.y4{bottom:86.333337pt;}
.y1ed{bottom:86.698267pt;}
.yb7{bottom:88.202400pt;}
.ye2{bottom:90.898267pt;}
.y24a{bottom:91.757467pt;}
.y186{bottom:92.468800pt;}
.y80{bottom:92.684933pt;}
.y153{bottom:92.687600pt;}
.y22c{bottom:97.826800pt;}
.y133{bottom:98.516933pt;}
.y10d{bottom:98.553333pt;}
.y1b1{bottom:99.779600pt;}
.y31{bottom:100.696000pt;}
.y1ec{bottom:102.698267pt;}
.y7f{bottom:104.687600pt;}
.y152{bottom:104.690267pt;}
.yb6{bottom:105.530400pt;}
.y249{bottom:106.424133pt;}
.ye1{bottom:108.226267pt;}
.y185{bottom:112.025200pt;}
.y22b{bottom:113.826800pt;}
.y30{bottom:115.362667pt;}
.y132{bottom:115.844933pt;}
.y10c{bottom:115.881333pt;}
.y7e{bottom:116.690267pt;}
.y151{bottom:116.692933pt;}
.y1eb{bottom:118.698267pt;}
.yb5{bottom:122.858400pt;}
.y21{bottom:123.790666pt;}
.y1b0{bottom:124.672000pt;}
.y248{bottom:124.866800pt;}
.ye0{bottom:125.554267pt;}
.y7d{bottom:128.678667pt;}
.y22a{bottom:129.826800pt;}
.y2f{bottom:130.029333pt;}
.y184{bottom:131.587867pt;}
.y131{bottom:133.172933pt;}
.y10b{bottom:133.209333pt;}
.y1ea{bottom:134.698267pt;}
.y247{bottom:139.533467pt;}
.yb4{bottom:140.186400pt;}
.y183{bottom:143.590533pt;}
.y2e{bottom:144.696000pt;}
.y229{bottom:145.826800pt;}
.y7c{bottom:148.241333pt;}
.ydf{bottom:150.442267pt;}
.y130{bottom:150.500933pt;}
.y10a{bottom:150.537333pt;}
.y1e9{bottom:150.698267pt;}
.y246{bottom:154.200133pt;}
.yb3{bottom:157.514400pt;}
.y2d{bottom:159.362667pt;}
.y7b{bottom:160.244000pt;}
.y228{bottom:161.826800pt;}
.y150{bottom:165.021067pt;}
.y1e8{bottom:166.698267pt;}
.yde{bottom:167.770267pt;}
.y109{bottom:167.865333pt;}
.y245{bottom:168.866800pt;}
.y1af{bottom:171.366400pt;}
.y7a{bottom:172.246667pt;}
.y2c{bottom:174.029333pt;}
.yb2{bottom:174.842400pt;}
.y18{bottom:175.052000pt;}
.y12f{bottom:175.388933pt;}
.y227{bottom:177.826800pt;}
.y14f{bottom:182.452933pt;}
.y1e7{bottom:182.698267pt;}
.y244{bottom:183.533467pt;}
.y79{bottom:184.249333pt;}
.ydd{bottom:185.098267pt;}
.y108{bottom:185.193333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1ae{bottom:188.694400pt;}
.y182{bottom:189.278800pt;}
.yb1{bottom:192.170400pt;}
.y12e{bottom:192.716933pt;}
.y44{bottom:193.014000pt;}
.y226{bottom:193.826800pt;}
.y78{bottom:196.252000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y243{bottom:198.200133pt;}
.y1e6{bottom:198.698267pt;}
.y14e{bottom:199.780933pt;}
.ydc{bottom:202.426267pt;}
.y107{bottom:202.521333pt;}
.y1ad{bottom:206.022400pt;}
.y181{bottom:206.606800pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb0{bottom:209.498400pt;}
.y225{bottom:209.826800pt;}
.y12d{bottom:210.044933pt;}
.y43{bottom:210.342000pt;}
.y2b{bottom:211.373333pt;}
.y242{bottom:212.866800pt;}
.y1e5{bottom:214.698267pt;}
.y14d{bottom:217.108933pt;}
.ydb{bottom:219.754267pt;}
.y1ac{bottom:223.350400pt;}
.y180{bottom:223.934800pt;}
.y224{bottom:225.826800pt;}
.y2a{bottom:226.040000pt;}
.y12c{bottom:227.372933pt;}
.y106{bottom:227.409333pt;}
.y241{bottom:227.533467pt;}
.y42{bottom:227.670000pt;}
.y1e4{bottom:230.698267pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yaf{bottom:234.386400pt;}
.y14c{bottom:234.436933pt;}
.yda{bottom:237.082267pt;}
.y1ab{bottom:240.678400pt;}
.y29{bottom:240.706667pt;}
.y17f{bottom:241.262800pt;}
.y223{bottom:241.826800pt;}
.y240{bottom:242.200133pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y12b{bottom:244.700933pt;}
.y105{bottom:244.737333pt;}
.y41{bottom:244.998000pt;}
.y1e3{bottom:246.698267pt;}
.yae{bottom:251.714400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yd9{bottom:254.410267pt;}
.y28{bottom:255.373333pt;}
.y77{bottom:255.709600pt;}
.y23f{bottom:256.866800pt;}
.y222{bottom:257.826800pt;}
.y17e{bottom:258.590800pt;}
.y14b{bottom:259.324933pt;}
.y12a{bottom:262.028933pt;}
.y104{bottom:262.065333pt;}
.y40{bottom:262.326000pt;}
.y1e2{bottom:262.698267pt;}
.y1aa{bottom:265.566400pt;}
.yad{bottom:269.042400pt;}
.y23e{bottom:271.533467pt;}
.y76{bottom:273.037600pt;}
.y221{bottom:273.826800pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y17d{bottom:275.918800pt;}
.y14a{bottom:276.652933pt;}
.y1e1{bottom:278.698267pt;}
.yd8{bottom:279.298267pt;}
.y129{bottom:279.356933pt;}
.y103{bottom:279.393333pt;}
.y3f{bottom:279.654000pt;}
.y1a9{bottom:282.894400pt;}
.y23d{bottom:286.200133pt;}
.yac{bottom:286.370400pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y220{bottom:289.826800pt;}
.y75{bottom:290.365600pt;}
.y17c{bottom:293.335600pt;}
.y149{bottom:293.980933pt;}
.y1e0{bottom:294.698267pt;}
.yd7{bottom:296.626267pt;}
.y102{bottom:296.721333pt;}
.y3e{bottom:296.982000pt;}
.y1a8{bottom:300.222400pt;}
.y23c{bottom:300.866800pt;}
.yab{bottom:303.698400pt;}
.y128{bottom:304.244933pt;}
.y21f{bottom:305.826800pt;}
.y74{bottom:307.693600pt;}
.yf{bottom:309.452000pt;}
.y17b{bottom:310.663600pt;}
.y1df{bottom:310.698267pt;}
.y27{bottom:311.618667pt;}
.yd6{bottom:313.954267pt;}
.y3d{bottom:314.310000pt;}
.y1a7{bottom:317.550400pt;}
.y148{bottom:318.868933pt;}
.yaa{bottom:321.026400pt;}
.y127{bottom:321.572933pt;}
.y101{bottom:321.609333pt;}
.y21e{bottom:321.826800pt;}
.y73{bottom:325.021600pt;}
.y1de{bottom:326.698267pt;}
.y17a{bottom:327.991600pt;}
.y26{bottom:330.061333pt;}
.yd5{bottom:331.282267pt;}
.y3c{bottom:331.638000pt;}
.y1a6{bottom:334.878400pt;}
.y147{bottom:336.196933pt;}
.y21d{bottom:337.826800pt;}
.y23b{bottom:338.210800pt;}
.ya9{bottom:338.354400pt;}
.y126{bottom:338.900933pt;}
.y100{bottom:338.937333pt;}
.y72{bottom:342.349600pt;}
.y1dd{bottom:342.698267pt;}
.ye{bottom:343.809333pt;}
.y25{bottom:344.728000pt;}
.yd4{bottom:348.610267pt;}
.y3b{bottom:348.966000pt;}
.y23a{bottom:352.877467pt;}
.y179{bottom:352.879600pt;}
.y146{bottom:353.524933pt;}
.y21c{bottom:353.826800pt;}
.ya8{bottom:355.682400pt;}
.y125{bottom:356.228933pt;}
.yff{bottom:356.265333pt;}
.y1dc{bottom:358.698267pt;}
.y1a5{bottom:359.766400pt;}
.yd{bottom:362.706666pt;}
.y24{bottom:363.170667pt;}
.yd3{bottom:365.938267pt;}
.y71{bottom:367.237600pt;}
.y239{bottom:367.544133pt;}
.y21b{bottom:369.826800pt;}
.y178{bottom:370.207600pt;}
.y145{bottom:370.852933pt;}
.y124{bottom:373.556933pt;}
.yfe{bottom:373.593333pt;}
.y3a{bottom:373.858267pt;}
.y1db{bottom:374.698267pt;}
.y1a4{bottom:377.094400pt;}
.y23{bottom:377.837333pt;}
.ya7{bottom:380.574933pt;}
.y70{bottom:384.565600pt;}
.y21a{bottom:385.826800pt;}
.y177{bottom:387.535600pt;}
.y144{bottom:388.180933pt;}
.y1da{bottom:390.698267pt;}
.yd2{bottom:390.826267pt;}
.y123{bottom:390.884933pt;}
.yfd{bottom:390.921333pt;}
.y1a3{bottom:394.422400pt;}
.ya6{bottom:400.574933pt;}
.y219{bottom:401.826800pt;}
.y6f{bottom:401.893600pt;}
.y176{bottom:404.863600pt;}
.y238{bottom:404.888133pt;}
.y143{bottom:405.508933pt;}
.y1d9{bottom:406.698267pt;}
.yd1{bottom:408.154267pt;}
.y122{bottom:408.212933pt;}
.yfc{bottom:408.249333pt;}
.y1a2{bottom:411.750400pt;}
.y218{bottom:417.826800pt;}
.y6e{bottom:419.221600pt;}
.y237{bottom:419.554800pt;}
.y175{bottom:422.191600pt;}
.y1d8{bottom:422.698267pt;}
.y142{bottom:422.836933pt;}
.yd0{bottom:425.482267pt;}
.y121{bottom:425.540933pt;}
.yfb{bottom:425.577333pt;}
.y1a1{bottom:429.078400pt;}
.y217{bottom:433.826800pt;}
.y236{bottom:434.221467pt;}
.y6d{bottom:436.549600pt;}
.y1d7{bottom:438.698267pt;}
.y174{bottom:439.519600pt;}
.y141{bottom:440.164933pt;}
.ycf{bottom:442.810267pt;}
.y120{bottom:442.868933pt;}
.yc{bottom:446.990669pt;}
.ya5{bottom:447.197467pt;}
.y235{bottom:448.888133pt;}
.y216{bottom:449.826800pt;}
.yfa{bottom:450.465333pt;}
.y1a0{bottom:453.966400pt;}
.y1d6{bottom:454.698267pt;}
.y173{bottom:456.847600pt;}
.y6c{bottom:461.437600pt;}
.yb{bottom:462.990669pt;}
.y234{bottom:463.554800pt;}
.ya4{bottom:464.525467pt;}
.y140{bottom:465.052933pt;}
.y215{bottom:465.826800pt;}
.yce{bottom:467.698267pt;}
.y11f{bottom:467.756933pt;}
.yf9{bottom:467.793333pt;}
.y1d5{bottom:470.698267pt;}
.y19f{bottom:471.294400pt;}
.y172{bottom:474.175600pt;}
.y233{bottom:478.221467pt;}
.y6b{bottom:478.765600pt;}
.ya{bottom:478.990666pt;}
.y214{bottom:481.826800pt;}
.ya3{bottom:481.853467pt;}
.y13f{bottom:482.380933pt;}
.ycd{bottom:485.068933pt;}
.y11e{bottom:485.084933pt;}
.yf8{bottom:485.121333pt;}
.y1d4{bottom:486.698267pt;}
.y19e{bottom:488.622400pt;}
.y232{bottom:492.888133pt;}
.y9{bottom:494.990666pt;}
.y6a{bottom:496.093600pt;}
.y213{bottom:497.826800pt;}
.y171{bottom:499.063600pt;}
.ya2{bottom:499.181467pt;}
.y13e{bottom:499.708933pt;}
.ycc{bottom:502.396933pt;}
.y11d{bottom:502.412933pt;}
.yf7{bottom:502.449333pt;}
.y1d3{bottom:502.698267pt;}
.y19d{bottom:505.950400pt;}
.y231{bottom:507.554800pt;}
.y69{bottom:513.421600pt;}
.y212{bottom:513.826800pt;}
.y170{bottom:516.391600pt;}
.ya1{bottom:516.509467pt;}
.y13d{bottom:517.036933pt;}
.y1d2{bottom:518.698267pt;}
.ycb{bottom:519.724933pt;}
.y11c{bottom:519.740933pt;}
.yf6{bottom:519.777333pt;}
.y230{bottom:522.221467pt;}
.y211{bottom:529.826800pt;}
.y68{bottom:530.749600pt;}
.y19c{bottom:530.838400pt;}
.y16f{bottom:533.719600pt;}
.ya0{bottom:533.837467pt;}
.y13c{bottom:534.364933pt;}
.y1d1{bottom:534.698267pt;}
.yca{bottom:537.052933pt;}
.y11b{bottom:537.068933pt;}
.yf5{bottom:537.105333pt;}
.y210{bottom:545.826800pt;}
.y19b{bottom:548.166400pt;}
.y1d0{bottom:550.698267pt;}
.y16e{bottom:551.047600pt;}
.y9f{bottom:551.165467pt;}
.y13b{bottom:551.692933pt;}
.yc9{bottom:554.380933pt;}
.y11a{bottom:554.396933pt;}
.yf4{bottom:554.433333pt;}
.y67{bottom:555.637600pt;}
.y20f{bottom:561.826800pt;}
.y19a{bottom:565.494400pt;}
.y1cf{bottom:566.698267pt;}
.y16d{bottom:568.375600pt;}
.yc8{bottom:571.708933pt;}
.y119{bottom:571.724933pt;}
.yf3{bottom:571.761333pt;}
.y66{bottom:572.965600pt;}
.y8{bottom:573.786667pt;}
.y9e{bottom:576.053467pt;}
.y13a{bottom:576.585333pt;}
.y20e{bottom:577.826800pt;}
.y1ce{bottom:582.698267pt;}
.y199{bottom:582.822400pt;}
.y16c{bottom:585.703600pt;}
.yc7{bottom:589.036933pt;}
.y118{bottom:589.052933pt;}
.yf2{bottom:589.089333pt;}
.y65{bottom:590.293600pt;}
.y7{bottom:592.685334pt;}
.y9d{bottom:593.381467pt;}
.y20d{bottom:593.826800pt;}
.y139{bottom:596.585333pt;}
.y1cd{bottom:598.698267pt;}
.y16b{bottom:603.114133pt;}
.yc6{bottom:606.364933pt;}
.y117{bottom:606.380933pt;}
.yf1{bottom:606.417333pt;}
.y64{bottom:607.621600pt;}
.y198{bottom:607.710400pt;}
.y20c{bottom:609.826800pt;}
.y9c{bottom:610.709467pt;}
.y1cc{bottom:614.698267pt;}
.y16a{bottom:620.442133pt;}
.yc5{bottom:623.692933pt;}
.y116{bottom:623.708933pt;}
.yf0{bottom:623.745333pt;}
.y63{bottom:624.949600pt;}
.y197{bottom:625.038400pt;}
.y20b{bottom:625.826800pt;}
.y1cb{bottom:630.698267pt;}
.y9b{bottom:635.597467pt;}
.y169{bottom:637.770133pt;}
.y115{bottom:641.036933pt;}
.yef{bottom:641.073333pt;}
.y20a{bottom:641.826800pt;}
.y196{bottom:642.366400pt;}
.y138{bottom:643.157467pt;}
.y6{bottom:645.598667pt;}
.y1ca{bottom:646.698267pt;}
.yc4{bottom:648.585333pt;}
.y62{bottom:649.837600pt;}
.y9a{bottom:652.925467pt;}
.y209{bottom:657.826800pt;}
.y114{bottom:658.364933pt;}
.yee{bottom:658.401333pt;}
.y137{bottom:660.485467pt;}
.y168{bottom:662.658133pt;}
.y1c9{bottom:662.698267pt;}
.y61{bottom:667.165600pt;}
.y195{bottom:667.254400pt;}
.y3{bottom:668.977329pt;}
.y99{bottom:670.253467pt;}
.y208{bottom:673.826800pt;}
.y113{bottom:675.692933pt;}
.y136{bottom:677.813467pt;}
.y1c8{bottom:678.698267pt;}
.y167{bottom:679.986133pt;}
.yed{bottom:683.289333pt;}
.y60{bottom:684.493600pt;}
.y194{bottom:684.582400pt;}
.y98{bottom:687.581467pt;}
.y207{bottom:689.826800pt;}
.y1c7{bottom:694.698267pt;}
.yc3{bottom:695.141467pt;}
.y166{bottom:697.314133pt;}
.y112{bottom:700.585333pt;}
.yec{bottom:700.617333pt;}
.y5f{bottom:701.821600pt;}
.y193{bottom:701.910400pt;}
.y97{bottom:704.909467pt;}
.y206{bottom:705.826800pt;}
.y1c6{bottom:710.698267pt;}
.yc2{bottom:712.469467pt;}
.y165{bottom:714.642133pt;}
.yeb{bottom:717.945333pt;}
.y5e{bottom:719.149600pt;}
.y192{bottom:719.238400pt;}
.y205{bottom:721.826800pt;}
.y96{bottom:722.237467pt;}
.y1c5{bottom:726.698267pt;}
.yc1{bottom:729.797467pt;}
.y164{bottom:731.970133pt;}
.yea{bottom:735.273333pt;}
.y191{bottom:736.566400pt;}
.y204{bottom:737.826800pt;}
.y95{bottom:739.565467pt;}
.y39{bottom:740.220400pt;}
.y1c4{bottom:742.698267pt;}
.y5d{bottom:744.094400pt;}
.yc0{bottom:747.125467pt;}
.y163{bottom:749.298133pt;}
.ye9{bottom:752.601333pt;}
.y203{bottom:753.826800pt;}
.y190{bottom:753.894400pt;}
.y94{bottom:756.893467pt;}
.y1c3{bottom:758.698267pt;}
.y5c{bottom:761.422400pt;}
.ybf{bottom:764.453467pt;}
.y202{bottom:769.826800pt;}
.ye8{bottom:769.929333pt;}
.y18f{bottom:771.222400pt;}
.y162{bottom:774.186133pt;}
.y93{bottom:774.221467pt;}
.y1c2{bottom:774.698267pt;}
.y5b{bottom:778.750400pt;}
.y2{bottom:781.661334pt;}
.ybe{bottom:781.781467pt;}
.y201{bottom:785.826800pt;}
.ye7{bottom:787.257333pt;}
.y1c1{bottom:790.698267pt;}
.y161{bottom:791.514133pt;}
.y5a{bottom:796.078400pt;}
.y18e{bottom:796.110400pt;}
.y92{bottom:799.109467pt;}
.y200{bottom:801.826800pt;}
.ye6{bottom:804.585333pt;}
.y1c0{bottom:806.698267pt;}
.y160{bottom:808.842133pt;}
.y22{bottom:812.598400pt;}
.y38{bottom:812.622533pt;}
.y59{bottom:813.406400pt;}
.y18d{bottom:813.438400pt;}
.y91{bottom:816.437467pt;}
.y1ff{bottom:817.826800pt;}
.y1bf{bottom:822.698267pt;}
.y15f{bottom:826.170133pt;}
.ye5{bottom:829.477733pt;}
.y58{bottom:830.734400pt;}
.y18c{bottom:830.766400pt;}
.y90{bottom:833.765467pt;}
.y1fe{bottom:833.826800pt;}
.y1be{bottom:838.698267pt;}
.y15e{bottom:843.498133pt;}
.y57{bottom:848.062400pt;}
.y18b{bottom:848.094400pt;}
.y1fd{bottom:849.826800pt;}
.y37{bottom:849.943867pt;}
.y8f{bottom:851.093467pt;}
.y1bd{bottom:854.698267pt;}
.ybd{bottom:858.653467pt;}
.y1{bottom:859.312000pt;}
.y15d{bottom:860.826133pt;}
.y56{bottom:865.390400pt;}
.y18a{bottom:865.422400pt;}
.y1fc{bottom:865.826800pt;}
.y8e{bottom:868.421467pt;}
.y1bc{bottom:870.698267pt;}
.ybc{bottom:875.981467pt;}
.y15c{bottom:878.154133pt;}
.y1fb{bottom:881.826800pt;}
.y189{bottom:882.750400pt;}
.y1bb{bottom:886.698267pt;}
.y36{bottom:887.265200pt;}
.y55{bottom:890.278400pt;}
.y8d{bottom:893.309467pt;}
.y1fa{bottom:897.826800pt;}
.y1ba{bottom:902.698267pt;}
.y15b{bottom:903.052800pt;}
.y54{bottom:907.606400pt;}
.y188{bottom:907.638400pt;}
.y8c{bottom:910.637467pt;}
.y1f9{bottom:913.826800pt;}
.y1b9{bottom:918.698267pt;}
.y15a{bottom:920.380800pt;}
.y35{bottom:924.598533pt;}
.y53{bottom:924.966400pt;}
.y8b{bottom:927.965467pt;}
.y1f8{bottom:929.826800pt;}
.y1b8{bottom:934.698267pt;}
.y159{bottom:937.708800pt;}
.y52{bottom:942.294400pt;}
.y8a{bottom:945.293467pt;}
.y1f7{bottom:945.826800pt;}
.y1b7{bottom:950.698267pt;}
.ybb{bottom:952.853467pt;}
.y51{bottom:959.622400pt;}
.y1f6{bottom:961.826800pt;}
.y89{bottom:962.621467pt;}
.yba{bottom:970.181467pt;}
.y1b6{bottom:974.257200pt;}
.y50{bottom:976.950400pt;}
.y1f5{bottom:977.826800pt;}
.y111{bottom:979.949467pt;}
.y88{bottom:987.509467pt;}
.y1f4{bottom:993.826800pt;}
.y4f{bottom:994.278400pt;}
.y158{bottom:997.277467pt;}
.y87{bottom:1004.837467pt;}
.y46{bottom:1008.268000pt;}
.y1f3{bottom:1009.826800pt;}
.y4e{bottom:1011.606400pt;}
.y157{bottom:1014.605467pt;}
.y1b5{bottom:1016.934400pt;}
.y86{bottom:1022.165467pt;}
.y1f2{bottom:1025.826800pt;}
.y4d{bottom:1028.934400pt;}
.y1b4{bottom:1031.601067pt;}
.y85{bottom:1039.493467pt;}
.y1f1{bottom:1041.826800pt;}
.y4c{bottom:1053.826800pt;}
.y84{bottom:1056.826800pt;}
.y1f0{bottom:1057.826800pt;}
.y45{bottom:1058.826800pt;}
.h7{height:28.560000pt;}
.h11{height:28.746667pt;}
.hf{height:28.942118pt;}
.h14{height:29.194667pt;}
.h19{height:29.209067pt;}
.h18{height:29.219733pt;}
.h15{height:29.251733pt;}
.ha{height:33.076706pt;}
.hb{height:33.365333pt;}
.h1a{height:34.224000pt;}
.he{height:37.536000pt;}
.h17{height:37.537355pt;}
.h13{height:37.658421pt;}
.h12{height:37.739488pt;}
.h16{height:37.785888pt;}
.h6{height:40.800000pt;}
.h9{height:41.345882pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:49.615059pt;}
.h10{height:59.229333pt;}
.h5{height:69.360000pt;}
.hc{height:94.453333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:108.937333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.692933pt;}
.x6{left:79.370000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x5{left:589.606267pt;}
.x7{left:725.307600pt;}
}




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