
    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_28f5dd18c9c49cee76146a63.woff')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_f70dcfc132cdf5b4e8f7832c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_2b60fd69f7faddbd0a122334.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_cbe72cd9c3c22992114029f9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_aec5d3e3174f3f189cfc3ebb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_69a7d9fec4a9ec0da86bbc86.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_ce939674c7e3bab20716e6b3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_1b4965222ba00c7958176364.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_83aa30608b78dc453edaeded.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_8de30a2daf2059576cfb223f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.975098;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_70b1e83ce2c20b0e8ec9e328.woff')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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_bb41177b7017e141be3d146a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.904297;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_997f99e7c8481ec451401433.woff')format("woff");}.ffd{font-family:ffd;line-height:0.769043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-10.937400px;}
.v2{vertical-align:-2.785800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.744800px;}
.v4{vertical-align:11.055600px;}
.v6{vertical-align:81.000000px;}
.v1{vertical-align:92.625000px;}
.lsf{letter-spacing:-7.452000px;}
.ls2d{letter-spacing:-6.492960px;}
.ls2{letter-spacing:-4.296240px;}
.ls42{letter-spacing:-2.376000px;}
.ls20{letter-spacing:-1.944000px;}
.ls41{letter-spacing:-1.620000px;}
.ls2f{letter-spacing:-0.601200px;}
.ls49{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.384480px;}
.ls2e{letter-spacing:-0.360720px;}
.ls33{letter-spacing:-0.337680px;}
.ls4{letter-spacing:-0.336960px;}
.ls8{letter-spacing:-0.324000px;}
.ls3b{letter-spacing:-0.289440px;}
.ls16{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.276480px;}
.ls32{letter-spacing:-0.241200px;}
.ls27{letter-spacing:-0.240480px;}
.ls1{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.192960px;}
.ls1e{letter-spacing:-0.191520px;}
.ls3f{letter-spacing:-0.167040px;}
.ls4b{letter-spacing:-0.156240px;}
.ls48{letter-spacing:-0.149760px;}
.ls17{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.131760px;}
.ls28{letter-spacing:-0.120240px;}
.ls3{letter-spacing:-0.084240px;}
.ls40{letter-spacing:-0.083520px;}
.ls31{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.096480px;}
.ls3a{letter-spacing:0.108000px;}
.ls23{letter-spacing:0.120240px;}
.ls1a{letter-spacing:0.124416px;}
.ls9{letter-spacing:0.138240px;}
.ls6{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.191520px;}
.ls2c{letter-spacing:0.192384px;}
.lsc{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.240480px;}
.ls5{letter-spacing:0.252000px;}
.ls1b{letter-spacing:0.262656px;}
.ls4f{letter-spacing:0.276480px;}
.lsd{letter-spacing:0.287400px;}
.ls2b{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.288576px;}
.ls47{letter-spacing:0.299520px;}
.ls4a{letter-spacing:0.312480px;}
.lse{letter-spacing:0.324000px;}
.ls44{letter-spacing:0.335520px;}
.ls30{letter-spacing:0.360720px;}
.ls3e{letter-spacing:0.501120px;}
.ls14{letter-spacing:0.777600px;}
.ls11{letter-spacing:0.972000px;}
.ls19{letter-spacing:1.620000px;}
.ls12{letter-spacing:1.868400px;}
.ls39{letter-spacing:3.135600px;}
.ls1c{letter-spacing:3.952800px;}
.ls4c{letter-spacing:29.592000px;}
.ls4d{letter-spacing:30.348000px;}
.ls25{letter-spacing:38.448000px;}
.ls18{letter-spacing:43.524000px;}
.ls46{letter-spacing:47.113920px;}
.ls4e{letter-spacing:47.664000px;}
.ls45{letter-spacing:47.880000px;}
.ls13{letter-spacing:48.924000px;}
.ls10{letter-spacing:49.572000px;}
.ls34{letter-spacing:49.788000px;}
.ls43{letter-spacing:56.304000px;}
.ls26{letter-spacing:66.492720px;}
.ls35{letter-spacing:75.384000px;}
.ls3c{letter-spacing:76.032000px;}
.ls38{letter-spacing:76.248000px;}
.ls36{letter-spacing:77.112000px;}
.ls21{letter-spacing:93.306240px;}
.lsb{letter-spacing:97.524000px;}
.ls3d{letter-spacing:101.628000px;}
.ls37{letter-spacing:102.708000px;}
.ls1f{letter-spacing:171.551400px;}
.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;}
}
.ws0{word-spacing:-54.864000px;}
.ws12{word-spacing:-53.058240px;}
.ws10{word-spacing:-50.040000px;}
.ws8a{word-spacing:-46.972800px;}
.wsa0{word-spacing:-43.747200px;}
.ws9e{word-spacing:-43.278480px;}
.ws90{word-spacing:-41.932800px;}
.ws92{word-spacing:-41.633280px;}
.ws8f{word-spacing:-41.483520px;}
.ws54{word-spacing:-40.320000px;}
.ws30{word-spacing:-39.888000px;}
.ws2f{word-spacing:-39.744000px;}
.ws2e{word-spacing:-36.497520px;}
.ws89{word-spacing:-35.251200px;}
.ws9{word-spacing:-34.836480px;}
.ws58{word-spacing:-33.667200px;}
.ws48{word-spacing:-33.546960px;}
.ws49{word-spacing:-33.426720px;}
.ws4a{word-spacing:-33.306480px;}
.ws4b{word-spacing:-33.186240px;}
.ws59{word-spacing:-32.825520px;}
.ws18{word-spacing:-30.348000px;}
.ws21{word-spacing:-30.240000px;}
.ws25{word-spacing:-30.024000px;}
.ws16{word-spacing:-29.808000px;}
.ws17{word-spacing:-29.700000px;}
.ws74{word-spacing:-29.592000px;}
.ws57{word-spacing:-26.933760px;}
.ws38{word-spacing:-26.812800px;}
.ws32{word-spacing:-26.621280px;}
.ws3c{word-spacing:-26.429760px;}
.ws7b{word-spacing:-24.516000px;}
.ws83{word-spacing:-24.408000px;}
.ws7c{word-spacing:-24.192000px;}
.ws7a{word-spacing:-24.084000px;}
.ws19{word-spacing:-23.418720px;}
.ws2{word-spacing:-23.334480px;}
.ws3{word-spacing:-23.081760px;}
.ws84{word-spacing:-22.788000px;}
.ws85{word-spacing:-22.032000px;}
.ws95{word-spacing:-20.304000px;}
.ws94{word-spacing:-20.160000px;}
.ws96{word-spacing:-20.016000px;}
.ws98{word-spacing:-19.800000px;}
.ws97{word-spacing:-19.584000px;}
.ws69{word-spacing:-13.410720px;}
.ws4c{word-spacing:-13.217760px;}
.ws7e{word-spacing:-11.609280px;}
.ws7f{word-spacing:-11.525760px;}
.ws7d{word-spacing:-11.442240px;}
.ws67{word-spacing:-10.152000px;}
.ws66{word-spacing:-9.936000px;}
.ws14{word-spacing:-9.720000px;}
.ws64{word-spacing:-8.296560px;}
.ws60{word-spacing:-7.575120px;}
.ws79{word-spacing:-7.473600px;}
.ws71{word-spacing:-5.940000px;}
.ws34{word-spacing:-5.745600px;}
.ws22{word-spacing:-5.184000px;}
.ws8d{word-spacing:-4.979520px;}
.ws2c{word-spacing:-4.428000px;}
.wsa5{word-spacing:-3.499200px;}
.ws5f{word-spacing:-3.246480px;}
.ws4f{word-spacing:-2.525040px;}
.ws8{word-spacing:-2.442960px;}
.ws5a{word-spacing:-2.164320px;}
.ws5c{word-spacing:-2.044080px;}
.ws63{word-spacing:-1.923840px;}
.ws50{word-spacing:-1.803600px;}
.ws62{word-spacing:-1.728000px;}
.ws6{word-spacing:-1.684800px;}
.ws4e{word-spacing:-1.683360px;}
.ws3d{word-spacing:-1.658880px;}
.ws2d{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.512000px;}
.ws8b{word-spacing:-1.509840px;}
.wsa2{word-spacing:-1.436400px;}
.ws26{word-spacing:-1.404000px;}
.ws13{word-spacing:-1.382400px;}
.ws53{word-spacing:-1.254240px;}
.ws76{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.152000px;}
.ws5d{word-spacing:-1.082160px;}
.ws15{word-spacing:-1.080000px;}
.ws65{word-spacing:-1.022976px;}
.ws2b{word-spacing:-0.967680px;}
.ws6d{word-spacing:-0.964800px;}
.ws9d{word-spacing:-0.898560px;}
.ws24{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.792000px;}
.ws28{word-spacing:-0.756000px;}
.ws4d{word-spacing:-0.691200px;}
.ws3f{word-spacing:-0.670320px;}
.ws77{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.360720px;}
.ws8e{word-spacing:-0.335520px;}
.ws39{word-spacing:-0.335160px;}
.ws1d{word-spacing:-0.324000px;}
.wsa1{word-spacing:-0.312480px;}
.ws9c{word-spacing:-0.299520px;}
.ws5e{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.276480px;}
.ws4{word-spacing:-0.216000px;}
.ws9a{word-spacing:-0.149760px;}
.wsc{word-spacing:-0.144000px;}
.ws68{word-spacing:-0.132192px;}
.ws5b{word-spacing:-0.120240px;}
.wse{word-spacing:-0.108000px;}
.wsb{word-spacing:0.000000px;}
.ws82{word-spacing:0.083520px;}
.ws7{word-spacing:0.084240px;}
.ws75{word-spacing:0.108000px;}
.ws6b{word-spacing:0.120240px;}
.ws6a{word-spacing:0.138240px;}
.ws61{word-spacing:0.144000px;}
.ws6e{word-spacing:0.192960px;}
.ws5{word-spacing:0.216000px;}
.ws52{word-spacing:0.240480px;}
.ws70{word-spacing:0.276480px;}
.ws9f{word-spacing:0.313200px;}
.ws23{word-spacing:0.324000px;}
.ws6c{word-spacing:0.337680px;}
.ws1a{word-spacing:0.414720px;}
.ws1e{word-spacing:0.432000px;}
.ws6f{word-spacing:0.482400px;}
.wsf{word-spacing:0.540000px;}
.ws78{word-spacing:0.578880px;}
.ws99{word-spacing:0.599040px;}
.ws81{word-spacing:0.648000px;}
.wsa6{word-spacing:0.680400px;}
.wsa9{word-spacing:0.723600px;}
.ws35{word-spacing:0.766080px;}
.wsaa{word-spacing:0.864000px;}
.ws8c{word-spacing:0.957600px;}
.ws41{word-spacing:0.972000px;}
.ws3a{word-spacing:1.053360px;}
.ws80{word-spacing:1.080000px;}
.ws73{word-spacing:1.137600px;}
.ws1c{word-spacing:1.296000px;}
.ws9b{word-spacing:1.347840px;}
.ws37{word-spacing:1.404000px;}
.ws3e{word-spacing:1.436400px;}
.ws36{word-spacing:1.728000px;}
.ws47{word-spacing:1.792800px;}
.ws72{word-spacing:1.857600px;}
.ws46{word-spacing:1.944000px;}
.ws3b{word-spacing:2.049264px;}
.ws1b{word-spacing:2.052000px;}
.wsab{word-spacing:2.116800px;}
.ws86{word-spacing:2.160000px;}
.ws40{word-spacing:2.202480px;}
.wsa4{word-spacing:2.278800px;}
.ws88{word-spacing:2.376000px;}
.wsa8{word-spacing:2.548800px;}
.ws29{word-spacing:2.700000px;}
.ws27{word-spacing:3.132000px;}
.ws31{word-spacing:3.456000px;}
.wsa7{word-spacing:3.564000px;}
.wsa3{word-spacing:6.836400px;}
.ws20{word-spacing:7.452000px;}
.ws1{word-spacing:7.842744px;}
.ws56{word-spacing:59.879520px;}
.ws2a{word-spacing:67.500000px;}
.ws45{word-spacing:114.419400px;}
.ws44{word-spacing:140.828400px;}
.ws43{word-spacing:230.486400px;}
.ws91{word-spacing:250.899600px;}
.ws42{word-spacing:297.661200px;}
.ws93{word-spacing:532.285440px;}
.ws11{word-spacing:653.542800px;}
.ws55{word-spacing:1034.239800px;}
.wsac{word-spacing:1542.145200px;}
._15{margin-left:-13.932000px;}
._e{margin-left:-12.484800px;}
._9{margin-left:-11.199600px;}
._11{margin-left:-10.184400px;}
._16{margin-left:-8.629704px;}
._10{margin-left:-7.624800px;}
._6{margin-left:-6.264000px;}
._d{margin-left:-5.173200px;}
._4{margin-left:-4.043520px;}
._7{margin-left:-2.314800px;}
._1{margin-left:-1.015200px;}
._0{width:1.209600px;}
._2{width:2.224800px;}
._3{width:3.950856px;}
._f{width:5.626800px;}
._17{width:6.643440px;}
._b{width:7.862400px;}
._1b{width:10.112400px;}
._1a{width:14.404752px;}
._5{width:20.821968px;}
._12{width:28.392840px;}
._24{width:31.604400px;}
._21{width:33.786000px;}
._1c{width:41.342400px;}
._20{width:43.524000px;}
._1d{width:47.113920px;}
._19{width:50.601144px;}
._c{width:97.524000px;}
._8{width:113.787144px;}
._14{width:191.722800px;}
._13{width:331.330800px;}
._1e{width:347.766960px;}
._a{width:632.664600px;}
._1f{width:660.632640px;}
._23{width:722.329920px;}
._22{width:732.755520px;}
._18{width:3781.925400px;}
.fc9{color:rgb(222,51,92);}
.fc8{color:rgb(41,42,46);}
.fc5{color:rgb(30,165,165);}
.fc6{color:transparent;}
.fc4{color:rgb(210,5,55);}
.fc3{color:rgb(99,186,177);}
.fc7{color:rgb(192,0,0);}
.fc2{color:rgb(58,132,124);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fsc{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fsf{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs7{font-size:131.760000px;}
.fs2{font-size:138.240000px;}
.fs8{font-size:144.000000px;}
.fse{font-size:149.760000px;}
.fs10{font-size:156.240000px;}
.fsd{font-size:167.760000px;}
.fs5{font-size:180.000000px;}
.fs6{font-size:192.240000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:14.355000px;}
.y77{bottom:14.357550px;}
.y9{bottom:25.070100px;}
.y15c{bottom:25.074000px;}
.y7{bottom:25.155000px;}
.y76{bottom:25.157550px;}
.ye{bottom:25.182000px;}
.y57{bottom:25.184550px;}
.y8d{bottom:36.027450px;}
.y50{bottom:64.785300px;}
.y149{bottom:69.707400px;}
.y68{bottom:72.501750px;}
.y56{bottom:72.914550px;}
.yb2{bottom:73.292670px;}
.ye8{bottom:75.267300px;}
.y13b{bottom:75.711150px;}
.y2a{bottom:75.730050px;}
.y15f{bottom:76.257450px;}
.yf5{bottom:81.658650px;}
.y99{bottom:82.262970px;}
.y15b{bottom:87.452850px;}
.y14f{bottom:92.626950px;}
.y4f{bottom:97.185300px;}
.y13a{bottom:97.311150px;}
.y67{bottom:97.351470px;}
.y107{bottom:101.623050px;}
.y132{bottom:101.912670px;}
.y55{bottom:105.854550px;}
.yba{bottom:107.511390px;}
.ye7{bottom:108.207300px;}
.y29{bottom:108.670050px;}
.yb1{bottom:109.310850px;}
.y75{bottom:113.954850px;}
.ya0{bottom:117.826650px;}
.y98{bottom:118.274850px;}
.y139{bottom:118.911150px;}
.yae{bottom:119.167290px;}
.y66{bottom:122.201190px;}
.ya9{bottom:122.618400px;}
.y131{bottom:126.762390px;}
.y4e{bottom:129.585300px;}
.y106{bottom:134.554050px;}
.y1c{bottom:135.841950px;}
.y14e{bottom:141.226950px;}
.y7f{bottom:141.369600px;}
.y28{bottom:141.610050px;}
.y36{bottom:145.996350px;}
.yed{bottom:146.264550px;}
.yf7{bottom:146.265600px;}
.y10d{bottom:146.266800px;}
.y65{bottom:147.050910px;}
.ye6{bottom:150.138300px;}
.y10{bottom:150.162600px;}
.y130{bottom:151.612110px;}
.yb9{bottom:152.511210px;}
.y40{bottom:154.023750px;}
.y74{bottom:154.454850px;}
.yd1{bottom:155.612370px;}
.y8a{bottom:156.287310px;}
.y150{bottom:156.484800px;}
.y124{bottom:159.536610px;}
.y4d{bottom:161.985300px;}
.yad{bottom:164.167110px;}
.y7e{bottom:166.219320px;}
.y105{bottom:167.683050px;}
.y15a{bottom:167.851350px;}
.y148{bottom:167.986800px;}
.y1b{bottom:168.781950px;}
.y147{bottom:171.680400px;}
.y25{bottom:175.115220px;}
.y23{bottom:176.821080px;}
.y27{bottom:177.272430px;}
.y35{bottom:178.396350px;}
.y89{bottom:181.137030px;}
.yb0{bottom:181.292670px;}
.y64{bottom:181.428750px;}
.ye5{bottom:183.276300px;}
.y123{bottom:184.386330px;}
.y3f{bottom:186.423750px;}
.ydb{bottom:189.181050px;}
.y14d{bottom:189.826950px;}
.yda{bottom:190.455210px;}
.y7d{bottom:191.069040px;}
.y97{bottom:191.534850px;}
.y73{bottom:194.954850px;}
.yd0{bottom:196.103190px;}
.yf{bottom:196.602600px;}
.yb8{bottom:197.511030px;}
.y24{bottom:197.796840px;}
.ya8{bottom:199.161600px;}
.y22{bottom:199.502700px;}
.y26{bottom:199.954050px;}
.y1a{bottom:201.902100px;}
.y83{bottom:204.515970px;}
.y9c{bottom:205.128300px;}
.y118{bottom:205.319190px;}
.y88{bottom:205.986750px;}
.y137{bottom:207.574920px;}
.yac{bottom:209.166930px;}
.y122{bottom:209.236050px;}
.yf4{bottom:209.525850px;}
.y12f{bottom:209.570850px;}
.y159{bottom:209.971350px;}
.y34{bottom:210.796350px;}
.y7c{bottom:215.918760px;}
.yaf{bottom:217.304550px;}
.yc4{bottom:221.677950px;}
.y96{bottom:223.191090px;}
.ye4{bottom:225.207300px;}
.y4c{bottom:226.785300px;}
.y136{bottom:227.835000px;}
.y82{bottom:229.365690px;}
.ybe{bottom:229.514820px;}
.y117{bottom:230.168910px;}
.y87{bottom:230.836470px;}
.yb7{bottom:233.522910px;}
.y104{bottom:233.545050px;}
.y121{bottom:234.085770px;}
.y12e{bottom:234.420570px;}
.y72{bottom:235.454850px;}
.ycf{bottom:236.594010px;}
.yd9{bottom:239.964390px;}
.y9b{bottom:242.388300px;}
.yf3{bottom:242.663850px;}
.y158{bottom:242.902350px;}
.y33{bottom:243.196350px;}
.y7b{bottom:250.296600px;}
.y3e{bottom:251.223750px;}
.y19{bottom:252.841950px;}
.ya7{bottom:253.149360px;}
.yab{bottom:254.166750px;}
.y81{bottom:254.215410px;}
.y116{bottom:255.018630px;}
.y86{bottom:255.686190px;}
.ye3{bottom:258.138300px;}
.y120{bottom:258.935490px;}
.y4b{bottom:259.185300px;}
.y95{bottom:259.202970px;}
.y12d{bottom:259.270290px;}
.ybd{bottom:265.533000px;}
.y10c{bottom:266.674050px;}
.yc3{bottom:266.677770px;}
.y145{bottom:266.890200px;}
.yb6{bottom:269.534790px;}
.y32{bottom:275.596350px;}
.y71{bottom:275.954850px;}
.y146{bottom:279.646200px;}
.yd8{bottom:280.455210px;}
.y85{bottom:280.535910px;}
.yec{bottom:281.336550px;}
.yf6{bottom:281.337600px;}
.y14c{bottom:282.959100px;}
.y115{bottom:284.009970px;}
.y12c{bottom:284.120010px;}
.y157{bottom:284.860350px;}
.yce{bottom:286.102830px;}
.y80{bottom:288.593250px;}
.y4a{bottom:291.585300px;}
.y94{bottom:295.227450px;}
.y103{bottom:299.614050px;}
.y144{bottom:299.641200px;}
.ye2{bottom:300.258300px;}
.yaa{bottom:300.426750px;}
.yc2{bottom:302.689650px;}
.y18{bottom:303.799950px;}
.yb5{bottom:305.546670px;}
.ya6{bottom:307.137120px;}
.yf2{bottom:308.543850px;}
.y114{bottom:308.859690px;}
.y12b{bottom:308.969730px;}
.y54{bottom:310.136550px;}
.y84{bottom:314.913750px;}
.y3d{bottom:316.023750px;}
.y70{bottom:316.454850px;}
.y11f{bottom:316.894230px;}
.y5c{bottom:322.882950px;}
.y49{bottom:323.985300px;}
.yd7{bottom:329.955570px;}
.y102{bottom:332.554050px;}
.y12a{bottom:333.819450px;}
.ycd{bottom:335.611650px;}
.ybc{bottom:337.514820px;}
.y9d{bottom:337.669350px;}
.y113{bottom:337.851030px;}
.y93{bottom:337.882590px;}
.y31{bottom:340.396350px;}
.yb4{bottom:341.558550px;}
.y11e{bottom:341.743950px;}
.y53{bottom:342.536550px;}
.y100{bottom:346.012650px;}
.yc1{bottom:347.689470px;}
.y3c{bottom:348.423750px;}
.y11{bottom:350.156850px;}
.y17{bottom:354.910950px;}
.y6f{bottom:356.954850px;}
.yff{bottom:358.612650px;}
.y112{bottom:362.700750px;}
.y10b{bottom:365.674200px;}
.y101{bottom:365.683050px;}
.y5b{bottom:366.082950px;}
.y9a{bottom:368.016300px;}
.y156{bottom:368.371500px;}
.y59{bottom:369.816000px;}
.ya5{bottom:370.142880px;}
.yd6{bottom:370.446390px;}
.y143{bottom:370.979130px;}
.y30{bottom:372.796350px;}
.ybb{bottom:373.526700px;}
.yf1{bottom:374.576850px;}
.y52{bottom:374.936550px;}
.ycc{bottom:376.102470px;}
.y3b{bottom:380.823750px;}
.y141{bottom:380.891850px;}
.y138{bottom:381.994200px;}
.yc0{bottom:383.701350px;}
.ye1{bottom:384.147300px;}
.yb3{bottom:387.818550px;}
.y16{bottom:387.859950px;}
.y48{bottom:390.945300px;}
.y111{bottom:391.692090px;}
.y129{bottom:391.778190px;}
.y5{bottom:391.969530px;}
.y6e{bottom:397.454850px;}
.y10a{bottom:398.614200px;}
.y11d{bottom:399.702690px;}
.y2f{bottom:405.196350px;}
.y51{bottom:407.336550px;}
.y140{bottom:408.971850px;}
.y5a{bottom:409.282950px;}
.y155{bottom:410.302500px;}
.y142{bottom:411.484350px;}
.y3a{bottom:413.223750px;}
.yeb{bottom:416.408550px;}
.y128{bottom:416.627910px;}
.y4{bottom:417.178350px;}
.yd5{bottom:419.955210px;}
.y15{bottom:420.799950px;}
.y47{bottom:423.885300px;}
.ya4{bottom:424.130640px;}
.y11c{bottom:424.552410px;}
.ycb{bottom:425.611290px;}
.ye0{bottom:426.276300px;}
.ybf{bottom:429.954300px;}
.yfe{bottom:431.554200px;}
.y134{bottom:432.012420px;}
.y6d{bottom:437.954850px;}
.y92{bottom:439.184070px;}
.y11b{bottom:449.402130px;}
.y110{bottom:449.650830px;}
.y9e{bottom:450.268050px;}
.y133{bottom:452.272500px;}
.y46{bottom:457.014300px;}
.y1f{bottom:459.612150px;}
.y109{bottom:464.674200px;}
.yfd{bottom:464.683050px;}
.y3{bottom:465.865500px;}
.yca{bottom:466.102110px;}
.ydf{bottom:468.207300px;}
.yd4{bottom:469.464030px;}
.y2e{bottom:469.996350px;}
.y14{bottom:471.910950px;}
.y11a{bottom:474.251850px;}
.y7a{bottom:474.494850px;}
.y10f{bottom:474.500550px;}
.y127{bottom:474.586650px;}
.y91{bottom:475.195950px;}
.y39{bottom:478.023750px;}
.ya3{bottom:478.118400px;}
.y6c{bottom:478.454850px;}
.y21{bottom:481.945830px;}
.y45{bottom:489.954300px;}
.y135{bottom:492.142350px;}
.y13e{bottom:492.551250px;}
.y1e{bottom:492.552150px;}
.y154{bottom:493.651350px;}
.yd{bottom:496.732650px;}
.yfc{bottom:497.614200px;}
.y63{bottom:501.912900px;}
.y2d{bottom:502.396350px;}
.y13f{bottom:502.965150px;}
.y20{bottom:504.627450px;}
.y13{bottom:504.841950px;}
.yf0{bottom:506.525850px;}
.yc9{bottom:506.592930px;}
.y79{bottom:506.894850px;}
.yd3{bottom:509.955210px;}
.yde{bottom:510.165300px;}
.y90{bottom:511.207830px;}
.y6b{bottom:518.954850px;}
.y13d{bottom:520.631250px;}
.y1d{bottom:525.492150px;}
.yea{bottom:526.144350px;}
.yfb{bottom:530.554200px;}
.y15e{bottom:531.427650px;}
.y2{bottom:531.745500px;}
.y2c{bottom:534.796350px;}
.y62{bottom:534.852900px;}
.y153{bottom:535.771350px;}
.yc{bottom:539.932650px;}
.y60{bottom:540.572400px;}
.y38{bottom:542.823750px;}
.ya2{bottom:543.818400px;}
.yc8{bottom:547.083750px;}
.y8f{bottom:547.219710px;}
.y44{bottom:553.863300px;}
.y12{bottom:555.790950px;}
.y6a{bottom:559.454850px;}
.yd2{bottom:559.464030px;}
.y9f{bottom:559.590300px;}
.yc5{bottom:563.052900px;}
.yfa{bottom:563.683050px;}
.y108{bottom:563.683200px;}
.y126{bottom:564.042090px;}
.y2b{bottom:567.196350px;}
.y61{bottom:567.792900px;}
.yef{bottom:572.594850px;}
.y5f{bottom:572.972400px;}
.ye9{bottom:573.664350px;}
.y37{bottom:575.223750px;}
.yb{bottom:583.132650px;}
.y58{bottom:584.612100px;}
.y119{bottom:585.721050px;}
.y10e{bottom:585.882750px;}
.y43{bottom:586.263300px;}
.y8e{bottom:589.874850px;}
.y15d{bottom:591.367650px;}
.y78{bottom:593.834850px;}
.ydd{bottom:594.216300px;}
.yc7{bottom:594.588900px;}
.yf9{bottom:596.623050px;}
.y14b{bottom:597.018300px;}
.y1{bottom:597.787500px;}
.y69{bottom:599.954850px;}
.y5e{bottom:605.372400px;}
.yee{bottom:605.534850px;}
.y152{bottom:606.520500px;}
.y125{bottom:607.617750px;}
.ya1{bottom:608.618400px;}
.y13c{bottom:612.370500px;}
.y42{bottom:618.663300px;}
.y8c{bottom:623.821800px;}
.ya{bottom:626.332650px;}
.y14a{bottom:629.418300px;}
.yf8{bottom:629.563050px;}
.ydc{bottom:636.147300px;}
.y5d{bottom:637.772400px;}
.yc6{bottom:637.788900px;}
.y151{bottom:648.451500px;}
.y41{bottom:651.063300px;}
.y8b{bottom:656.221800px;}
.y6{bottom:732.667350px;}
.h4{height:26.244141px;}
.h5{height:26.712141px;}
.h27{height:30.443203px;}
.h18{height:35.167148px;}
.h1d{height:37.299741px;}
.h2d{height:52.488281px;}
.h2{height:61.411289px;}
.h11{height:69.809414px;}
.h24{height:77.519531px;}
.h23{height:77.520131px;}
.h25{height:77.554931px;}
.h22{height:78.416016px;}
.h26{height:78.451416px;}
.h1e{height:78.626953px;}
.h6{height:78.732422px;}
.h2f{height:78.733022px;}
.h30{height:78.768422px;}
.h12{height:79.431422px;}
.h21{height:79.981313px;}
.h20{height:81.105469px;}
.hd{height:82.687500px;}
.h10{height:83.743242px;}
.h14{height:87.655430px;}
.h1c{height:87.689270px;}
.h1b{height:87.702950px;}
.h16{height:87.750470px;}
.h15{height:87.778550px;}
.h17{height:92.058750px;}
.ha{height:94.447266px;}
.hc{height:94.482666px;}
.hb{height:94.483266px;}
.h28{height:104.554688px;}
.h1a{height:104.835938px;}
.h1f{height:104.976562px;}
.h13{height:105.151289px;}
.h2b{height:109.175625px;}
.h2e{height:113.899570px;}
.he{height:115.225664px;}
.h29{height:122.297695px;}
.hf{height:125.929688px;}
.h3{height:126.090000px;}
.h19{height:127.674487px;}
.h7{height:131.220703px;}
.h9{height:140.143711px;}
.h31{height:163.371094px;}
.h2a{height:190.175625px;}
.h1{height:197.015625px;}
.h8{height:223.845703px;}
.h2c{height:271.215945px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:39.543300px;}
.x3{left:50.343300px;}
.x6d{left:54.494700px;}
.x70{left:56.137950px;}
.x6{left:58.059450px;}
.x20{left:59.874300px;}
.x40{left:63.354390px;}
.x2f{left:67.068750px;}
.x5a{left:70.390500px;}
.x16{left:71.584500px;}
.x29{left:73.383300px;}
.x17{left:77.247450px;}
.x41{left:80.087730px;}
.x57{left:82.023300px;}
.xb{left:84.675450px;}
.x65{left:87.654750px;}
.x5b{left:90.547980px;}
.x26{left:92.670300px;}
.x1{left:99.758700px;}
.x4f{left:101.283300px;}
.x33{left:103.255740px;}
.x14{left:104.262450px;}
.x7{left:108.099450px;}
.x72{left:110.558700px;}
.x4c{left:112.551900px;}
.x58{left:115.863300px;}
.x53{left:124.683300px;}
.x15{left:138.093450px;}
.xd{left:145.120950px;}
.x24{left:146.884980px;}
.xe{left:150.343830px;}
.x22{left:154.809120px;}
.x54{left:158.343300px;}
.x4d{left:166.556850px;}
.x50{left:177.032850px;}
.x6b{left:180.880800px;}
.x23{left:200.893620px;}
.x21{left:214.946400px;}
.x25{left:216.358860px;}
.x6c{left:218.857200px;}
.x51{left:228.649950px;}
.x1f{left:306.844650px;}
.x36{left:318.766950px;}
.x19{left:324.297450px;}
.x35{left:347.746950px;}
.x12{left:374.121450px;}
.x11{left:375.385050px;}
.x6f{left:391.681650px;}
.x68{left:396.243150px;}
.x3d{left:404.697600px;}
.x66{left:413.334750px;}
.x2a{left:445.526250px;}
.x42{left:448.842450px;}
.x62{left:460.315170px;}
.x69{left:461.974800px;}
.x2d{left:473.880150px;}
.x6a{left:482.305800px;}
.x31{left:486.651150px;}
.xc{left:494.824650px;}
.x30{left:501.960150px;}
.x3e{left:512.697600px;}
.x5c{left:514.859850px;}
.x3a{left:526.785000px;}
.x37{left:533.288100px;}
.x5d{left:535.208850px;}
.x8{left:554.052300px;}
.x43{left:556.842450px;}
.x13{left:574.684950px;}
.xf{left:583.253190px;}
.x10{left:592.077330px;}
.x18{left:598.266450px;}
.x44{left:610.860270px;}
.x3f{left:620.703180px;}
.x32{left:624.729150px;}
.x3b{left:634.785000px;}
.x3c{left:668.602500px;}
.x2e{left:671.871150px;}
.x1b{left:679.994100px;}
.x48{left:713.676300px;}
.x6e{left:727.502250px;}
.x1a{left:735.263550px;}
.x27{left:752.712300px;}
.x2b{left:759.945150px;}
.x49{left:767.692950px;}
.x63{left:778.449150px;}
.x4a{left:801.540510px;}
.x9{left:825.990450px;}
.xa{left:859.830450px;}
.x4b{left:894.075900px;}
.x59{left:896.824200px;}
.x38{left:899.544300px;}
.x1d{left:906.923850px;}
.x52{left:910.412550px;}
.x56{left:955.608600px;}
.x55{left:959.710200px;}
.x60{left:979.678050px;}
.x1c{left:989.903850px;}
.x1e{left:992.963850px;}
.x61{left:1000.027050px;}
.x39{left:1016.410350px;}
.x5e{left:1056.480750px;}
.x5f{left:1061.345790px;}
.x2c{left:1068.694950px;}
.x45{left:1072.839150px;}
.x46{left:1075.364190px;}
.x34{left:1077.245850px;}
.x47{left:1092.097530px;}
.x4e{left:1111.256700px;}
.x67{left:1117.641090px;}
.x71{left:1125.001350px;}
.x4{left:1128.905850px;}
.x64{left:1160.292450px;}
.x28{left:1390.171650px;}
.x5{left:1395.213300px;}
@media print{
.v5{vertical-align:-9.722133pt;}
.v2{vertical-align:-2.476267pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.550933pt;}
.v4{vertical-align:9.827200pt;}
.v6{vertical-align:72.000000pt;}
.v1{vertical-align:82.333333pt;}
.lsf{letter-spacing:-6.624000pt;}
.ls2d{letter-spacing:-5.771520pt;}
.ls2{letter-spacing:-3.818880pt;}
.ls42{letter-spacing:-2.112000pt;}
.ls20{letter-spacing:-1.728000pt;}
.ls41{letter-spacing:-1.440000pt;}
.ls2f{letter-spacing:-0.534400pt;}
.ls49{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.341760pt;}
.ls2e{letter-spacing:-0.320640pt;}
.ls33{letter-spacing:-0.300160pt;}
.ls4{letter-spacing:-0.299520pt;}
.ls8{letter-spacing:-0.288000pt;}
.ls3b{letter-spacing:-0.257280pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.245760pt;}
.ls32{letter-spacing:-0.214400pt;}
.ls27{letter-spacing:-0.213760pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.171520pt;}
.ls1e{letter-spacing:-0.170240pt;}
.ls3f{letter-spacing:-0.148480pt;}
.ls4b{letter-spacing:-0.138880pt;}
.ls48{letter-spacing:-0.133120pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.117120pt;}
.ls28{letter-spacing:-0.106880pt;}
.ls3{letter-spacing:-0.074880pt;}
.ls40{letter-spacing:-0.074240pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.085760pt;}
.ls3a{letter-spacing:0.096000pt;}
.ls23{letter-spacing:0.106880pt;}
.ls1a{letter-spacing:0.110592pt;}
.ls9{letter-spacing:0.122880pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.170240pt;}
.ls2c{letter-spacing:0.171008pt;}
.lsc{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.213760pt;}
.ls5{letter-spacing:0.224000pt;}
.ls1b{letter-spacing:0.233472pt;}
.ls4f{letter-spacing:0.245760pt;}
.lsd{letter-spacing:0.255467pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.256512pt;}
.ls47{letter-spacing:0.266240pt;}
.ls4a{letter-spacing:0.277760pt;}
.lse{letter-spacing:0.288000pt;}
.ls44{letter-spacing:0.298240pt;}
.ls30{letter-spacing:0.320640pt;}
.ls3e{letter-spacing:0.445440pt;}
.ls14{letter-spacing:0.691200pt;}
.ls11{letter-spacing:0.864000pt;}
.ls19{letter-spacing:1.440000pt;}
.ls12{letter-spacing:1.660800pt;}
.ls39{letter-spacing:2.787200pt;}
.ls1c{letter-spacing:3.513600pt;}
.ls4c{letter-spacing:26.304000pt;}
.ls4d{letter-spacing:26.976000pt;}
.ls25{letter-spacing:34.176000pt;}
.ls18{letter-spacing:38.688000pt;}
.ls46{letter-spacing:41.879040pt;}
.ls4e{letter-spacing:42.368000pt;}
.ls45{letter-spacing:42.560000pt;}
.ls13{letter-spacing:43.488000pt;}
.ls10{letter-spacing:44.064000pt;}
.ls34{letter-spacing:44.256000pt;}
.ls43{letter-spacing:50.048000pt;}
.ls26{letter-spacing:59.104640pt;}
.ls35{letter-spacing:67.008000pt;}
.ls3c{letter-spacing:67.584000pt;}
.ls38{letter-spacing:67.776000pt;}
.ls36{letter-spacing:68.544000pt;}
.ls21{letter-spacing:82.938880pt;}
.lsb{letter-spacing:86.688000pt;}
.ls3d{letter-spacing:90.336000pt;}
.ls37{letter-spacing:91.296000pt;}
.ls1f{letter-spacing:152.490133pt;}
.ws0{word-spacing:-48.768000pt;}
.ws12{word-spacing:-47.162880pt;}
.ws10{word-spacing:-44.480000pt;}
.ws8a{word-spacing:-41.753600pt;}
.wsa0{word-spacing:-38.886400pt;}
.ws9e{word-spacing:-38.469760pt;}
.ws90{word-spacing:-37.273600pt;}
.ws92{word-spacing:-37.007360pt;}
.ws8f{word-spacing:-36.874240pt;}
.ws54{word-spacing:-35.840000pt;}
.ws30{word-spacing:-35.456000pt;}
.ws2f{word-spacing:-35.328000pt;}
.ws2e{word-spacing:-32.442240pt;}
.ws89{word-spacing:-31.334400pt;}
.ws9{word-spacing:-30.965760pt;}
.ws58{word-spacing:-29.926400pt;}
.ws48{word-spacing:-29.819520pt;}
.ws49{word-spacing:-29.712640pt;}
.ws4a{word-spacing:-29.605760pt;}
.ws4b{word-spacing:-29.498880pt;}
.ws59{word-spacing:-29.178240pt;}
.ws18{word-spacing:-26.976000pt;}
.ws21{word-spacing:-26.880000pt;}
.ws25{word-spacing:-26.688000pt;}
.ws16{word-spacing:-26.496000pt;}
.ws17{word-spacing:-26.400000pt;}
.ws74{word-spacing:-26.304000pt;}
.ws57{word-spacing:-23.941120pt;}
.ws38{word-spacing:-23.833600pt;}
.ws32{word-spacing:-23.663360pt;}
.ws3c{word-spacing:-23.493120pt;}
.ws7b{word-spacing:-21.792000pt;}
.ws83{word-spacing:-21.696000pt;}
.ws7c{word-spacing:-21.504000pt;}
.ws7a{word-spacing:-21.408000pt;}
.ws19{word-spacing:-20.816640pt;}
.ws2{word-spacing:-20.741760pt;}
.ws3{word-spacing:-20.517120pt;}
.ws84{word-spacing:-20.256000pt;}
.ws85{word-spacing:-19.584000pt;}
.ws95{word-spacing:-18.048000pt;}
.ws94{word-spacing:-17.920000pt;}
.ws96{word-spacing:-17.792000pt;}
.ws98{word-spacing:-17.600000pt;}
.ws97{word-spacing:-17.408000pt;}
.ws69{word-spacing:-11.920640pt;}
.ws4c{word-spacing:-11.749120pt;}
.ws7e{word-spacing:-10.319360pt;}
.ws7f{word-spacing:-10.245120pt;}
.ws7d{word-spacing:-10.170880pt;}
.ws67{word-spacing:-9.024000pt;}
.ws66{word-spacing:-8.832000pt;}
.ws14{word-spacing:-8.640000pt;}
.ws64{word-spacing:-7.374720pt;}
.ws60{word-spacing:-6.733440pt;}
.ws79{word-spacing:-6.643200pt;}
.ws71{word-spacing:-5.280000pt;}
.ws34{word-spacing:-5.107200pt;}
.ws22{word-spacing:-4.608000pt;}
.ws8d{word-spacing:-4.426240pt;}
.ws2c{word-spacing:-3.936000pt;}
.wsa5{word-spacing:-3.110400pt;}
.ws5f{word-spacing:-2.885760pt;}
.ws4f{word-spacing:-2.244480pt;}
.ws8{word-spacing:-2.171520pt;}
.ws5a{word-spacing:-1.923840pt;}
.ws5c{word-spacing:-1.816960pt;}
.ws63{word-spacing:-1.710080pt;}
.ws50{word-spacing:-1.603200pt;}
.ws62{word-spacing:-1.536000pt;}
.ws6{word-spacing:-1.497600pt;}
.ws4e{word-spacing:-1.496320pt;}
.ws3d{word-spacing:-1.474560pt;}
.ws2d{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.344000pt;}
.ws8b{word-spacing:-1.342080pt;}
.wsa2{word-spacing:-1.276800pt;}
.ws26{word-spacing:-1.248000pt;}
.ws13{word-spacing:-1.228800pt;}
.ws53{word-spacing:-1.114880pt;}
.ws76{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.024000pt;}
.ws5d{word-spacing:-0.961920pt;}
.ws15{word-spacing:-0.960000pt;}
.ws65{word-spacing:-0.909312pt;}
.ws2b{word-spacing:-0.860160pt;}
.ws6d{word-spacing:-0.857600pt;}
.ws9d{word-spacing:-0.798720pt;}
.ws24{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.704000pt;}
.ws28{word-spacing:-0.672000pt;}
.ws4d{word-spacing:-0.614400pt;}
.ws3f{word-spacing:-0.595840pt;}
.ws77{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.320640pt;}
.ws8e{word-spacing:-0.298240pt;}
.ws39{word-spacing:-0.297920pt;}
.ws1d{word-spacing:-0.288000pt;}
.wsa1{word-spacing:-0.277760pt;}
.ws9c{word-spacing:-0.266240pt;}
.ws5e{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.245760pt;}
.ws4{word-spacing:-0.192000pt;}
.ws9a{word-spacing:-0.133120pt;}
.wsc{word-spacing:-0.128000pt;}
.ws68{word-spacing:-0.117504pt;}
.ws5b{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.096000pt;}
.wsb{word-spacing:0.000000pt;}
.ws82{word-spacing:0.074240pt;}
.ws7{word-spacing:0.074880pt;}
.ws75{word-spacing:0.096000pt;}
.ws6b{word-spacing:0.106880pt;}
.ws6a{word-spacing:0.122880pt;}
.ws61{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.171520pt;}
.ws5{word-spacing:0.192000pt;}
.ws52{word-spacing:0.213760pt;}
.ws70{word-spacing:0.245760pt;}
.ws9f{word-spacing:0.278400pt;}
.ws23{word-spacing:0.288000pt;}
.ws6c{word-spacing:0.300160pt;}
.ws1a{word-spacing:0.368640pt;}
.ws1e{word-spacing:0.384000pt;}
.ws6f{word-spacing:0.428800pt;}
.wsf{word-spacing:0.480000pt;}
.ws78{word-spacing:0.514560pt;}
.ws99{word-spacing:0.532480pt;}
.ws81{word-spacing:0.576000pt;}
.wsa6{word-spacing:0.604800pt;}
.wsa9{word-spacing:0.643200pt;}
.ws35{word-spacing:0.680960pt;}
.wsaa{word-spacing:0.768000pt;}
.ws8c{word-spacing:0.851200pt;}
.ws41{word-spacing:0.864000pt;}
.ws3a{word-spacing:0.936320pt;}
.ws80{word-spacing:0.960000pt;}
.ws73{word-spacing:1.011200pt;}
.ws1c{word-spacing:1.152000pt;}
.ws9b{word-spacing:1.198080pt;}
.ws37{word-spacing:1.248000pt;}
.ws3e{word-spacing:1.276800pt;}
.ws36{word-spacing:1.536000pt;}
.ws47{word-spacing:1.593600pt;}
.ws72{word-spacing:1.651200pt;}
.ws46{word-spacing:1.728000pt;}
.ws3b{word-spacing:1.821568pt;}
.ws1b{word-spacing:1.824000pt;}
.wsab{word-spacing:1.881600pt;}
.ws86{word-spacing:1.920000pt;}
.ws40{word-spacing:1.957760pt;}
.wsa4{word-spacing:2.025600pt;}
.ws88{word-spacing:2.112000pt;}
.wsa8{word-spacing:2.265600pt;}
.ws29{word-spacing:2.400000pt;}
.ws27{word-spacing:2.784000pt;}
.ws31{word-spacing:3.072000pt;}
.wsa7{word-spacing:3.168000pt;}
.wsa3{word-spacing:6.076800pt;}
.ws20{word-spacing:6.624000pt;}
.ws1{word-spacing:6.971328pt;}
.ws56{word-spacing:53.226240pt;}
.ws2a{word-spacing:60.000000pt;}
.ws45{word-spacing:101.706133pt;}
.ws44{word-spacing:125.180800pt;}
.ws43{word-spacing:204.876800pt;}
.ws91{word-spacing:223.021867pt;}
.ws42{word-spacing:264.587733pt;}
.ws93{word-spacing:473.142613pt;}
.ws11{word-spacing:580.926933pt;}
.ws55{word-spacing:919.324267pt;}
.wsac{word-spacing:1370.795733pt;}
._15{margin-left:-12.384000pt;}
._e{margin-left:-11.097600pt;}
._9{margin-left:-9.955200pt;}
._11{margin-left:-9.052800pt;}
._16{margin-left:-7.670848pt;}
._10{margin-left:-6.777600pt;}
._6{margin-left:-5.568000pt;}
._d{margin-left:-4.598400pt;}
._4{margin-left:-3.594240pt;}
._7{margin-left:-2.057600pt;}
._1{margin-left:-0.902400pt;}
._0{width:1.075200pt;}
._2{width:1.977600pt;}
._3{width:3.511872pt;}
._f{width:5.001600pt;}
._17{width:5.905280pt;}
._b{width:6.988800pt;}
._1b{width:8.988800pt;}
._1a{width:12.804224pt;}
._5{width:18.508416pt;}
._12{width:25.238080pt;}
._24{width:28.092800pt;}
._21{width:30.032000pt;}
._1c{width:36.748800pt;}
._20{width:38.688000pt;}
._1d{width:41.879040pt;}
._19{width:44.978795pt;}
._c{width:86.688000pt;}
._8{width:101.144128pt;}
._14{width:170.420267pt;}
._13{width:294.516267pt;}
._1e{width:309.126187pt;}
._a{width:562.368533pt;}
._1f{width:587.229013pt;}
._23{width:642.071040pt;}
._22{width:651.338240pt;}
._18{width:3361.711467pt;}
.fs3{font-size:32.000000pt;}
.fsc{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fsf{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs7{font-size:117.120000pt;}
.fs2{font-size:122.880000pt;}
.fs8{font-size:128.000000pt;}
.fse{font-size:133.120000pt;}
.fs10{font-size:138.880000pt;}
.fsd{font-size:149.120000pt;}
.fs5{font-size:160.000000pt;}
.fs6{font-size:170.880000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:12.760000pt;}
.y77{bottom:12.762267pt;}
.y9{bottom:22.284533pt;}
.y15c{bottom:22.288000pt;}
.y7{bottom:22.360000pt;}
.y76{bottom:22.362267pt;}
.ye{bottom:22.384000pt;}
.y57{bottom:22.386267pt;}
.y8d{bottom:32.024400pt;}
.y50{bottom:57.586933pt;}
.y149{bottom:61.962133pt;}
.y68{bottom:64.446000pt;}
.y56{bottom:64.812933pt;}
.yb2{bottom:65.149040pt;}
.ye8{bottom:66.904267pt;}
.y13b{bottom:67.298800pt;}
.y2a{bottom:67.315600pt;}
.y15f{bottom:67.784400pt;}
.yf5{bottom:72.585467pt;}
.y99{bottom:73.122640pt;}
.y15b{bottom:77.735867pt;}
.y14f{bottom:82.335067pt;}
.y4f{bottom:86.386933pt;}
.y13a{bottom:86.498800pt;}
.y67{bottom:86.534640pt;}
.y107{bottom:90.331600pt;}
.y132{bottom:90.589040pt;}
.y55{bottom:94.092933pt;}
.yba{bottom:95.565680pt;}
.ye7{bottom:96.184267pt;}
.y29{bottom:96.595600pt;}
.yb1{bottom:97.165200pt;}
.y75{bottom:101.293200pt;}
.ya0{bottom:104.734800pt;}
.y98{bottom:105.133200pt;}
.y139{bottom:105.698800pt;}
.yae{bottom:105.926480pt;}
.y66{bottom:108.623280pt;}
.ya9{bottom:108.994133pt;}
.y131{bottom:112.677680pt;}
.y4e{bottom:115.186933pt;}
.y106{bottom:119.603600pt;}
.y1c{bottom:120.748400pt;}
.y14e{bottom:125.535067pt;}
.y7f{bottom:125.661867pt;}
.y28{bottom:125.875600pt;}
.y36{bottom:129.774533pt;}
.yed{bottom:130.012933pt;}
.yf7{bottom:130.013867pt;}
.y10d{bottom:130.014933pt;}
.y65{bottom:130.711920pt;}
.ye6{bottom:133.456267pt;}
.y10{bottom:133.477867pt;}
.y130{bottom:134.766320pt;}
.yb9{bottom:135.565520pt;}
.y40{bottom:136.910000pt;}
.y74{bottom:137.293200pt;}
.yd1{bottom:138.322107pt;}
.y8a{bottom:138.922053pt;}
.y150{bottom:139.097600pt;}
.y124{bottom:141.810320pt;}
.y4d{bottom:143.986933pt;}
.yad{bottom:145.926320pt;}
.y7e{bottom:147.750507pt;}
.y105{bottom:149.051600pt;}
.y15a{bottom:149.201200pt;}
.y148{bottom:149.321600pt;}
.y1b{bottom:150.028400pt;}
.y147{bottom:152.604800pt;}
.y25{bottom:155.657973pt;}
.y23{bottom:157.174293pt;}
.y27{bottom:157.575493pt;}
.y35{bottom:158.574533pt;}
.y89{bottom:161.010693pt;}
.yb0{bottom:161.149040pt;}
.y64{bottom:161.270000pt;}
.ye5{bottom:162.912267pt;}
.y123{bottom:163.898960pt;}
.y3f{bottom:165.710000pt;}
.ydb{bottom:168.160933pt;}
.y14d{bottom:168.735067pt;}
.yda{bottom:169.293520pt;}
.y7d{bottom:169.839147pt;}
.y97{bottom:170.253200pt;}
.y73{bottom:173.293200pt;}
.yd0{bottom:174.313947pt;}
.yf{bottom:174.757867pt;}
.yb8{bottom:175.565360pt;}
.y24{bottom:175.819413pt;}
.ya8{bottom:177.032533pt;}
.y22{bottom:177.335733pt;}
.y26{bottom:177.736933pt;}
.y1a{bottom:179.468533pt;}
.y83{bottom:181.791973pt;}
.y9c{bottom:182.336267pt;}
.y118{bottom:182.505947pt;}
.y88{bottom:183.099333pt;}
.y137{bottom:184.511040pt;}
.yac{bottom:185.926160pt;}
.y122{bottom:185.987600pt;}
.yf4{bottom:186.245200pt;}
.y12f{bottom:186.285200pt;}
.y159{bottom:186.641200pt;}
.y34{bottom:187.374533pt;}
.y7c{bottom:191.927787pt;}
.yaf{bottom:193.159600pt;}
.yc4{bottom:197.047067pt;}
.y96{bottom:198.392080pt;}
.ye4{bottom:200.184267pt;}
.y4c{bottom:201.586933pt;}
.y136{bottom:202.520000pt;}
.y82{bottom:203.880613pt;}
.ybe{bottom:204.013173pt;}
.y117{bottom:204.594587pt;}
.y87{bottom:205.187973pt;}
.yb7{bottom:207.575920pt;}
.y104{bottom:207.595600pt;}
.y121{bottom:208.076240pt;}
.y12e{bottom:208.373840pt;}
.y72{bottom:209.293200pt;}
.ycf{bottom:210.305787pt;}
.yd9{bottom:213.301680pt;}
.y9b{bottom:215.456267pt;}
.yf3{bottom:215.701200pt;}
.y158{bottom:215.913200pt;}
.y33{bottom:216.174533pt;}
.y7b{bottom:222.485867pt;}
.y3e{bottom:223.310000pt;}
.y19{bottom:224.748400pt;}
.ya7{bottom:225.021653pt;}
.yab{bottom:225.926000pt;}
.y81{bottom:225.969253pt;}
.y116{bottom:226.683227pt;}
.y86{bottom:227.276613pt;}
.ye3{bottom:229.456267pt;}
.y120{bottom:230.164880pt;}
.y4b{bottom:230.386933pt;}
.y95{bottom:230.402640pt;}
.y12d{bottom:230.462480pt;}
.ybd{bottom:236.029333pt;}
.y10c{bottom:237.043600pt;}
.yc3{bottom:237.046907pt;}
.y145{bottom:237.235733pt;}
.yb6{bottom:239.586480pt;}
.y32{bottom:244.974533pt;}
.y71{bottom:245.293200pt;}
.y146{bottom:248.574400pt;}
.yd8{bottom:249.293520pt;}
.y85{bottom:249.365253pt;}
.yec{bottom:250.076933pt;}
.yf6{bottom:250.077867pt;}
.y14c{bottom:251.519200pt;}
.y115{bottom:252.453307pt;}
.y12c{bottom:252.551120pt;}
.y157{bottom:253.209200pt;}
.yce{bottom:254.313627pt;}
.y80{bottom:256.527333pt;}
.y4a{bottom:259.186933pt;}
.y94{bottom:262.424400pt;}
.y103{bottom:266.323600pt;}
.y144{bottom:266.347733pt;}
.ye2{bottom:266.896267pt;}
.yaa{bottom:267.046000pt;}
.yc2{bottom:269.057467pt;}
.y18{bottom:270.044400pt;}
.yb5{bottom:271.597040pt;}
.ya6{bottom:273.010773pt;}
.yf2{bottom:274.261200pt;}
.y114{bottom:274.541947pt;}
.y12b{bottom:274.639760pt;}
.y54{bottom:275.676933pt;}
.y84{bottom:279.923333pt;}
.y3d{bottom:280.910000pt;}
.y70{bottom:281.293200pt;}
.y11f{bottom:281.683760pt;}
.y5c{bottom:287.007067pt;}
.y49{bottom:287.986933pt;}
.yd7{bottom:293.293840pt;}
.y102{bottom:295.603600pt;}
.y12a{bottom:296.728400pt;}
.ycd{bottom:298.321467pt;}
.ybc{bottom:300.013173pt;}
.y9d{bottom:300.150533pt;}
.y113{bottom:300.312027pt;}
.y93{bottom:300.340080pt;}
.y31{bottom:302.574533pt;}
.yb4{bottom:303.607600pt;}
.y11e{bottom:303.772400pt;}
.y53{bottom:304.476933pt;}
.y100{bottom:307.566800pt;}
.yc1{bottom:309.057307pt;}
.y3c{bottom:309.710000pt;}
.y11{bottom:311.250533pt;}
.y17{bottom:315.476400pt;}
.y6f{bottom:317.293200pt;}
.yff{bottom:318.766800pt;}
.y112{bottom:322.400667pt;}
.y10b{bottom:325.043733pt;}
.y101{bottom:325.051600pt;}
.y5b{bottom:325.407067pt;}
.y9a{bottom:327.125600pt;}
.y156{bottom:327.441333pt;}
.y59{bottom:328.725333pt;}
.ya5{bottom:329.015893pt;}
.yd6{bottom:329.285680pt;}
.y143{bottom:329.759227pt;}
.y30{bottom:331.374533pt;}
.ybb{bottom:332.023733pt;}
.yf1{bottom:332.957200pt;}
.y52{bottom:333.276933pt;}
.ycc{bottom:334.313307pt;}
.y3b{bottom:338.510000pt;}
.y141{bottom:338.570533pt;}
.y138{bottom:339.550400pt;}
.yc0{bottom:341.067867pt;}
.ye1{bottom:341.464267pt;}
.yb3{bottom:344.727600pt;}
.y16{bottom:344.764400pt;}
.y48{bottom:347.506933pt;}
.y111{bottom:348.170747pt;}
.y129{bottom:348.247280pt;}
.y5{bottom:348.417360pt;}
.y6e{bottom:353.293200pt;}
.y10a{bottom:354.323733pt;}
.y11d{bottom:355.291280pt;}
.y2f{bottom:360.174533pt;}
.y51{bottom:362.076933pt;}
.y140{bottom:363.530533pt;}
.y5a{bottom:363.807067pt;}
.y155{bottom:364.713333pt;}
.y142{bottom:365.763867pt;}
.y3a{bottom:367.310000pt;}
.yeb{bottom:370.140933pt;}
.y128{bottom:370.335920pt;}
.y4{bottom:370.825200pt;}
.yd5{bottom:373.293520pt;}
.y15{bottom:374.044400pt;}
.y47{bottom:376.786933pt;}
.ya4{bottom:377.005013pt;}
.y11c{bottom:377.379920pt;}
.ycb{bottom:378.321147pt;}
.ye0{bottom:378.912267pt;}
.ybf{bottom:382.181600pt;}
.yfe{bottom:383.603733pt;}
.y134{bottom:384.011040pt;}
.y6d{bottom:389.293200pt;}
.y92{bottom:390.385840pt;}
.y11b{bottom:399.468560pt;}
.y110{bottom:399.689627pt;}
.y9e{bottom:400.238267pt;}
.y133{bottom:402.020000pt;}
.y46{bottom:406.234933pt;}
.y1f{bottom:408.544133pt;}
.y109{bottom:413.043733pt;}
.yfd{bottom:413.051600pt;}
.y3{bottom:414.102667pt;}
.yca{bottom:414.312987pt;}
.ydf{bottom:416.184267pt;}
.yd4{bottom:417.301360pt;}
.y2e{bottom:417.774533pt;}
.y14{bottom:419.476400pt;}
.y11a{bottom:421.557200pt;}
.y7a{bottom:421.773200pt;}
.y10f{bottom:421.778267pt;}
.y127{bottom:421.854800pt;}
.y91{bottom:422.396400pt;}
.y39{bottom:424.910000pt;}
.ya3{bottom:424.994133pt;}
.y6c{bottom:425.293200pt;}
.y21{bottom:428.396293pt;}
.y45{bottom:435.514933pt;}
.y135{bottom:437.459867pt;}
.y13e{bottom:437.823333pt;}
.y1e{bottom:437.824133pt;}
.y154{bottom:438.801200pt;}
.yd{bottom:441.540133pt;}
.yfc{bottom:442.323733pt;}
.y63{bottom:446.144800pt;}
.y2d{bottom:446.574533pt;}
.y13f{bottom:447.080133pt;}
.y20{bottom:448.557733pt;}
.y13{bottom:448.748400pt;}
.yf0{bottom:450.245200pt;}
.yc9{bottom:450.304827pt;}
.y79{bottom:450.573200pt;}
.yd3{bottom:453.293520pt;}
.yde{bottom:453.480267pt;}
.y90{bottom:454.406960pt;}
.y6b{bottom:461.293200pt;}
.y13d{bottom:462.783333pt;}
.y1d{bottom:467.104133pt;}
.yea{bottom:467.683867pt;}
.yfb{bottom:471.603733pt;}
.y15e{bottom:472.380133pt;}
.y2{bottom:472.662667pt;}
.y2c{bottom:475.374533pt;}
.y62{bottom:475.424800pt;}
.y153{bottom:476.241200pt;}
.yc{bottom:479.940133pt;}
.y60{bottom:480.508800pt;}
.y38{bottom:482.510000pt;}
.ya2{bottom:483.394133pt;}
.yc8{bottom:486.296667pt;}
.y8f{bottom:486.417520pt;}
.y44{bottom:492.322933pt;}
.y12{bottom:494.036400pt;}
.y6a{bottom:497.293200pt;}
.yd2{bottom:497.301360pt;}
.y9f{bottom:497.413600pt;}
.yc5{bottom:500.491467pt;}
.yfa{bottom:501.051600pt;}
.y108{bottom:501.051733pt;}
.y126{bottom:501.370747pt;}
.y2b{bottom:504.174533pt;}
.y61{bottom:504.704800pt;}
.yef{bottom:508.973200pt;}
.y5f{bottom:509.308800pt;}
.ye9{bottom:509.923867pt;}
.y37{bottom:511.310000pt;}
.yb{bottom:518.340133pt;}
.y58{bottom:519.655200pt;}
.y119{bottom:520.640933pt;}
.y10e{bottom:520.784667pt;}
.y43{bottom:521.122933pt;}
.y8e{bottom:524.333200pt;}
.y15d{bottom:525.660133pt;}
.y78{bottom:527.853200pt;}
.ydd{bottom:528.192267pt;}
.yc7{bottom:528.523467pt;}
.yf9{bottom:530.331600pt;}
.y14b{bottom:530.682933pt;}
.y1{bottom:531.366667pt;}
.y69{bottom:533.293200pt;}
.y5e{bottom:538.108800pt;}
.yee{bottom:538.253200pt;}
.y152{bottom:539.129333pt;}
.y125{bottom:540.104667pt;}
.ya1{bottom:540.994133pt;}
.y13c{bottom:544.329333pt;}
.y42{bottom:549.922933pt;}
.y8c{bottom:554.508267pt;}
.ya{bottom:556.740133pt;}
.y14a{bottom:559.482933pt;}
.yf8{bottom:559.611600pt;}
.ydc{bottom:565.464267pt;}
.y5d{bottom:566.908800pt;}
.yc6{bottom:566.923467pt;}
.y151{bottom:576.401333pt;}
.y41{bottom:578.722933pt;}
.y8b{bottom:583.308267pt;}
.y6{bottom:651.259867pt;}
.h4{height:23.328125pt;}
.h5{height:23.744125pt;}
.h27{height:27.060625pt;}
.h18{height:31.259687pt;}
.h1d{height:33.155325pt;}
.h2d{height:46.656250pt;}
.h2{height:54.587812pt;}
.h11{height:62.052813pt;}
.h24{height:68.906250pt;}
.h23{height:68.906783pt;}
.h25{height:68.937717pt;}
.h22{height:69.703125pt;}
.h26{height:69.734592pt;}
.h1e{height:69.890625pt;}
.h6{height:69.984375pt;}
.h2f{height:69.984908pt;}
.h30{height:70.016375pt;}
.h12{height:70.605708pt;}
.h21{height:71.094500pt;}
.h20{height:72.093750pt;}
.hd{height:73.500000pt;}
.h10{height:74.438437pt;}
.h14{height:77.915937pt;}
.h1c{height:77.946018pt;}
.h1b{height:77.958178pt;}
.h16{height:78.000417pt;}
.h15{height:78.025378pt;}
.h17{height:81.830000pt;}
.ha{height:83.953125pt;}
.hc{height:83.984592pt;}
.hb{height:83.985125pt;}
.h28{height:92.937500pt;}
.h1a{height:93.187500pt;}
.h1f{height:93.312500pt;}
.h13{height:93.467812pt;}
.h2b{height:97.045000pt;}
.h2e{height:101.244062pt;}
.he{height:102.422812pt;}
.h29{height:108.709062pt;}
.hf{height:111.937500pt;}
.h3{height:112.080000pt;}
.h19{height:113.488433pt;}
.h7{height:116.640625pt;}
.h9{height:124.572187pt;}
.h31{height:145.218750pt;}
.h2a{height:169.045000pt;}
.h1{height:175.125000pt;}
.h8{height:198.973958pt;}
.h2c{height:241.080840pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:35.149600pt;}
.x3{left:44.749600pt;}
.x6d{left:48.439733pt;}
.x70{left:49.900400pt;}
.x6{left:51.608400pt;}
.x20{left:53.221600pt;}
.x40{left:56.315013pt;}
.x2f{left:59.616667pt;}
.x5a{left:62.569333pt;}
.x16{left:63.630667pt;}
.x29{left:65.229600pt;}
.x17{left:68.664400pt;}
.x41{left:71.189093pt;}
.x57{left:72.909600pt;}
.xb{left:75.267067pt;}
.x65{left:77.915333pt;}
.x5b{left:80.487093pt;}
.x26{left:82.373600pt;}
.x1{left:88.674400pt;}
.x4f{left:90.029600pt;}
.x33{left:91.782880pt;}
.x14{left:92.677733pt;}
.x7{left:96.088400pt;}
.x72{left:98.274400pt;}
.x4c{left:100.046133pt;}
.x58{left:102.989600pt;}
.x53{left:110.829600pt;}
.x15{left:122.749733pt;}
.xd{left:128.996400pt;}
.x24{left:130.564427pt;}
.xe{left:133.638960pt;}
.x22{left:137.608107pt;}
.x54{left:140.749600pt;}
.x4d{left:148.050533pt;}
.x50{left:157.362533pt;}
.x6b{left:160.782933pt;}
.x23{left:178.572107pt;}
.x21{left:191.063467pt;}
.x25{left:192.318987pt;}
.x6c{left:194.539733pt;}
.x51{left:203.244400pt;}
.x1f{left:272.750800pt;}
.x36{left:283.348400pt;}
.x19{left:288.264400pt;}
.x35{left:309.108400pt;}
.x12{left:332.552400pt;}
.x11{left:333.675600pt;}
.x6f{left:348.161467pt;}
.x68{left:352.216133pt;}
.x3d{left:359.731200pt;}
.x66{left:367.408667pt;}
.x2a{left:396.023333pt;}
.x42{left:398.971067pt;}
.x62{left:409.169040pt;}
.x69{left:410.644267pt;}
.x2d{left:421.226800pt;}
.x6a{left:428.716267pt;}
.x31{left:432.578800pt;}
.xc{left:439.844133pt;}
.x30{left:446.186800pt;}
.x3e{left:455.731200pt;}
.x5c{left:457.653200pt;}
.x3a{left:468.253333pt;}
.x37{left:474.033867pt;}
.x5d{left:475.741200pt;}
.x8{left:492.490933pt;}
.x43{left:494.971067pt;}
.x13{left:510.831067pt;}
.xf{left:518.447280pt;}
.x10{left:526.290960pt;}
.x18{left:531.792400pt;}
.x44{left:542.986907pt;}
.x3f{left:551.736160pt;}
.x32{left:555.314800pt;}
.x3b{left:564.253333pt;}
.x3c{left:594.313333pt;}
.x2e{left:597.218800pt;}
.x1b{left:604.439200pt;}
.x48{left:634.378933pt;}
.x6e{left:646.668667pt;}
.x1a{left:653.567600pt;}
.x27{left:669.077600pt;}
.x2b{left:675.506800pt;}
.x49{left:682.393733pt;}
.x63{left:691.954800pt;}
.x4a{left:712.480453pt;}
.x9{left:734.213733pt;}
.xa{left:764.293733pt;}
.x4b{left:794.734133pt;}
.x59{left:797.177067pt;}
.x38{left:799.594933pt;}
.x1d{left:806.154533pt;}
.x52{left:809.255600pt;}
.x56{left:849.429867pt;}
.x55{left:853.075733pt;}
.x60{left:870.824933pt;}
.x1c{left:879.914533pt;}
.x1e{left:882.634533pt;}
.x61{left:888.912933pt;}
.x39{left:903.475867pt;}
.x5e{left:939.094000pt;}
.x5f{left:943.418480pt;}
.x2c{left:949.951067pt;}
.x45{left:953.634800pt;}
.x46{left:955.879280pt;}
.x34{left:957.551867pt;}
.x47{left:970.753360pt;}
.x4e{left:987.783733pt;}
.x67{left:993.458747pt;}
.x71{left:1000.001200pt;}
.x4{left:1003.471867pt;}
.x64{left:1031.371067pt;}
.x28{left:1235.708133pt;}
.x5{left:1240.189600pt;}
}




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