
    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_c1e6392713648cc378a54676.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dce37e5391e1152668a3a91f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_6552f898e08e20f84bde4bf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_a31973e46569f0a5f55c5d35.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.731445;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_587e17b9bd63052b32733c3f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e8ffb7707ea135fca793fcd1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_702f82702a4e02306340bca9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_e48458807c967155911c71ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861328;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_176e7c2e1ff5139c5643da2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_99901916f8e496b3fc63d96a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912598;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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.311000px;}
.v2{vertical-align:24.474000px;}
.ls40{letter-spacing:-0.241920px;}
.ls42{letter-spacing:-0.235872px;}
.ls2c{letter-spacing:-0.229824px;}
.ls1e{letter-spacing:-0.223776px;}
.ls27{letter-spacing:-0.217728px;}
.ls1c{letter-spacing:-0.211680px;}
.ls28{letter-spacing:-0.205632px;}
.ls2a{letter-spacing:-0.199584px;}
.ls1d{letter-spacing:-0.193536px;}
.ls1b{letter-spacing:-0.187488px;}
.ls41{letter-spacing:-0.181440px;}
.ls3f{letter-spacing:-0.175392px;}
.ls43{letter-spacing:-0.169344px;}
.ls5{letter-spacing:-0.132480px;}
.ls20{letter-spacing:-0.119232px;}
.ls22{letter-spacing:-0.099360px;}
.ls2d{letter-spacing:-0.090720px;}
.ls25{letter-spacing:-0.066240px;}
.ls38{letter-spacing:-0.064800px;}
.ls32{letter-spacing:-0.057600px;}
.ls31{letter-spacing:-0.050400px;}
.ls14{letter-spacing:-0.043200px;}
.ls15{letter-spacing:-0.036000px;}
.ls19{letter-spacing:-0.028800px;}
.ls1a{letter-spacing:-0.021600px;}
.ls39{letter-spacing:-0.014400px;}
.ls34{letter-spacing:-0.007200px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.007200px;}
.ls7{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.021600px;}
.ls10{letter-spacing:0.028800px;}
.lsd{letter-spacing:0.043200px;}
.ls11{letter-spacing:0.050400px;}
.ls16{letter-spacing:0.057600px;}
.lse{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.079200px;}
.ls13{letter-spacing:0.116928px;}
.ls17{letter-spacing:0.133056px;}
.ls2{letter-spacing:0.175392px;}
.ls12{letter-spacing:0.175824px;}
.ls0{letter-spacing:0.208800px;}
.ls1{letter-spacing:0.217152px;}
.ls9{letter-spacing:0.242208px;}
.ls2b{letter-spacing:0.254016px;}
.ls35{letter-spacing:0.292320px;}
.lsc{letter-spacing:0.309024px;}
.ls44{letter-spacing:0.317376px;}
.lsa{letter-spacing:0.325728px;}
.ls30{letter-spacing:0.352800px;}
.ls18{letter-spacing:0.359136px;}
.ls45{letter-spacing:0.375840px;}
.ls33{letter-spacing:0.590400px;}
.ls2e{letter-spacing:5.788800px;}
.ls29{letter-spacing:11.309760px;}
.ls3b{letter-spacing:12.398400px;}
.ls26{letter-spacing:13.190400px;}
.ls8{letter-spacing:21.782016px;}
.ls37{letter-spacing:33.984000px;}
.ls3d{letter-spacing:44.496000px;}
.ls3a{letter-spacing:54.835200px;}
.ls24{letter-spacing:54.864000px;}
.lsf{letter-spacing:54.871200px;}
.ls1f{letter-spacing:59.225184px;}
.ls23{letter-spacing:59.227488px;}
.ls3c{letter-spacing:62.496000px;}
.ls36{letter-spacing:64.008000px;}
.ls3e{letter-spacing:91.935648px;}
.ls21{letter-spacing:2617.205400px;}
.ls4{letter-spacing:2653.206000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(1,2,2),0 0.015em rgb(1,2,2),0.015em 0 rgb(1,2,2),0 -0.015em  rgb(1,2,2);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(1,2,2);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5c{word-spacing:-72.000000px;}
.ws5d{word-spacing:-71.985600px;}
.ws0{word-spacing:-51.247872px;}
.ws1{word-spacing:-51.206112px;}
.ws33{word-spacing:-48.263040px;}
.ws94{word-spacing:-46.812960px;}
.ws13{word-spacing:-46.796256px;}
.ws7{word-spacing:-46.679328px;}
.ws45{word-spacing:-44.071200px;}
.wsc{word-spacing:-44.064000px;}
.ws10{word-spacing:-44.042400px;}
.wsb{word-spacing:-44.035200px;}
.wsf{word-spacing:-44.020800px;}
.ws16{word-spacing:-44.013600px;}
.ws8{word-spacing:-44.006400px;}
.ws6{word-spacing:-43.999200px;}
.ws3{word-spacing:-43.992000px;}
.ws4f{word-spacing:-43.984800px;}
.ws2c{word-spacing:-43.970400px;}
.ws17{word-spacing:-43.963200px;}
.ws18{word-spacing:-43.956000px;}
.wsa{word-spacing:-43.948800px;}
.ws47{word-spacing:-43.941600px;}
.ws5b{word-spacing:-43.927200px;}
.ws40{word-spacing:-40.032000px;}
.ws39{word-spacing:-37.207296px;}
.ws1e{word-spacing:-36.953280px;}
.ws53{word-spacing:-36.765792px;}
.ws24{word-spacing:-36.759744px;}
.ws35{word-spacing:-36.753696px;}
.ws34{word-spacing:-36.747648px;}
.ws3a{word-spacing:-36.741600px;}
.ws2f{word-spacing:-36.735552px;}
.ws44{word-spacing:-36.729504px;}
.ws3b{word-spacing:-36.723456px;}
.ws15{word-spacing:-36.000000px;}
.ws80{word-spacing:-35.992800px;}
.ws6f{word-spacing:-33.626880px;}
.ws6b{word-spacing:-33.445440px;}
.ws70{word-spacing:-33.439392px;}
.ws6a{word-spacing:-33.433344px;}
.ws6e{word-spacing:-33.427296px;}
.ws65{word-spacing:-33.421248px;}
.wsd{word-spacing:-32.176800px;}
.ws95{word-spacing:-31.730400px;}
.ws5{word-spacing:-31.672800px;}
.ws5f{word-spacing:-31.600800px;}
.ws8e{word-spacing:-31.456800px;}
.ws57{word-spacing:-31.248000px;}
.ws38{word-spacing:-31.147200px;}
.ws36{word-spacing:-30.801600px;}
.ws2e{word-spacing:-30.492000px;}
.ws62{word-spacing:-30.484800px;}
.ws37{word-spacing:-30.319200px;}
.ws43{word-spacing:-30.204000px;}
.ws26{word-spacing:-30.196800px;}
.ws1f{word-spacing:-30.052512px;}
.ws3f{word-spacing:-30.046464px;}
.ws20{word-spacing:-30.028320px;}
.ws23{word-spacing:-30.016224px;}
.ws4a{word-spacing:-29.908800px;}
.ws29{word-spacing:-29.880000px;}
.ws19{word-spacing:-29.743200px;}
.ws42{word-spacing:-29.656800px;}
.ws28{word-spacing:-29.282400px;}
.ws12{word-spacing:-29.210544px;}
.ws56{word-spacing:-29.188800px;}
.ws11{word-spacing:-29.167776px;}
.ws5a{word-spacing:-29.030400px;}
.ws4c{word-spacing:-28.936800px;}
.ws4b{word-spacing:-28.778400px;}
.ws5e{word-spacing:-28.749600px;}
.ws9{word-spacing:-28.706400px;}
.ws14{word-spacing:-28.663200px;}
.ws61{word-spacing:-28.216800px;}
.ws60{word-spacing:-28.202400px;}
.ws89{word-spacing:-27.388800px;}
.ws41{word-spacing:-27.309600px;}
.ws92{word-spacing:-27.021600px;}
.ws50{word-spacing:-26.856000px;}
.ws49{word-spacing:-26.280000px;}
.ws2b{word-spacing:-25.876800px;}
.ws3d{word-spacing:-25.437888px;}
.ws3c{word-spacing:-25.232256px;}
.ws32{word-spacing:-25.214112px;}
.ws51{word-spacing:-25.171200px;}
.ws8a{word-spacing:-24.674400px;}
.ws52{word-spacing:-24.033600px;}
.ws7d{word-spacing:-23.479200px;}
.ws2d{word-spacing:-23.126400px;}
.ws81{word-spacing:-22.910400px;}
.ws54{word-spacing:-22.874400px;}
.ws59{word-spacing:-22.845600px;}
.ws48{word-spacing:-22.716000px;}
.ws25{word-spacing:-22.204800px;}
.ws21{word-spacing:-21.888000px;}
.ws1a{word-spacing:-21.751200px;}
.ws8b{word-spacing:-21.592800px;}
.ws27{word-spacing:-21.290400px;}
.ws30{word-spacing:-21.258720px;}
.ws31{word-spacing:-21.246624px;}
.ws8d{word-spacing:-20.664000px;}
.ws87{word-spacing:-20.318400px;}
.ws1d{word-spacing:-19.483200px;}
.ws88{word-spacing:-19.396800px;}
.ws93{word-spacing:-19.029600px;}
.ws7e{word-spacing:-18.986400px;}
.ws3e{word-spacing:-18.482688px;}
.ws1c{word-spacing:-18.352800px;}
.ws1b{word-spacing:-18.338400px;}
.ws73{word-spacing:-17.992800px;}
.ws8f{word-spacing:-17.892000px;}
.ws7b{word-spacing:-17.085600px;}
.ws76{word-spacing:-15.876000px;}
.ws7c{word-spacing:-15.487200px;}
.ws46{word-spacing:-15.429600px;}
.ws82{word-spacing:-14.918400px;}
.ws72{word-spacing:-14.841792px;}
.ws22{word-spacing:-13.896000px;}
.ws4e{word-spacing:-12.470400px;}
.ws4d{word-spacing:-12.456000px;}
.ws7f{word-spacing:-10.994400px;}
.ws4{word-spacing:-8.632800px;}
.wse{word-spacing:-0.072000px;}
.ws2a{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws8c{word-spacing:6.292800px;}
.ws67{word-spacing:14.394240px;}
.ws66{word-spacing:17.569440px;}
.ws91{word-spacing:20.145600px;}
.ws85{word-spacing:22.687200px;}
.ws86{word-spacing:30.686400px;}
.ws7a{word-spacing:41.889600px;}
.ws78{word-spacing:46.360800px;}
.ws79{word-spacing:49.888800px;}
.ws77{word-spacing:54.345600px;}
.ws69{word-spacing:55.429920px;}
.ws68{word-spacing:58.756320px;}
.ws83{word-spacing:115.574400px;}
.ws90{word-spacing:136.699200px;}
.ws58{word-spacing:139.968000px;}
.ws55{word-spacing:157.968000px;}
.ws75{word-spacing:231.040800px;}
.ws6c{word-spacing:231.293664px;}
.ws6d{word-spacing:238.006944px;}
.ws74{word-spacing:239.032800px;}
.ws71{word-spacing:244.653696px;}
.ws63{word-spacing:245.161800px;}
.ws64{word-spacing:254.663136px;}
.ws84{word-spacing:574.999200px;}
._d{margin-left:-11.884320px;}
._e{margin-left:-10.874304px;}
._6{margin-left:-4.866624px;}
._3{margin-left:-3.730176px;}
._1{margin-left:-2.488608px;}
._0{margin-left:-1.311264px;}
._7{width:1.504800px;}
._4{width:3.398400px;}
._5{width:4.406400px;}
._b{width:5.594400px;}
._8{width:6.768000px;}
._a{width:7.826400px;}
._9{width:9.655200px;}
._2{width:11.390400px;}
._12{width:14.551200px;}
._c{width:15.789600px;}
._18{width:18.108000px;}
._14{width:20.124000px;}
._17{width:42.220800px;}
._11{width:77.500800px;}
._15{width:130.680000px;}
._16{width:159.566400px;}
._10{width:180.000000px;}
._19{width:181.382400px;}
._f{width:198.000000px;}
._13{width:610.417800px;}
.fcb{color:rgb(57,83,164);}
.fc8{color:rgb(224,101,102);}
.fc6{color:rgb(230,184,175);}
.fc5{color:rgb(42,42,41);}
.fc4{color:rgb(237,32,36);}
.fc3{color:rgb(32,37,40);}
.fc7{color:rgb(35,35,35);}
.fc2{color:rgb(33,33,33);}
.fca{color:transparent;}
.fc1{color:rgb(53,95,145);}
.fc9{color:rgb(234,153,154);}
.fc0{color:rgb(1,2,2);}
.fs3{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:70.588200px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y235{bottom:46.104150px;}
.y16{bottom:58.485300px;}
.y233{bottom:78.504300px;}
.y231{bottom:110.904300px;}
.y2d3{bottom:112.843350px;}
.y12{bottom:112.843650px;}
.y210{bottom:115.004850px;}
.y1b0{bottom:117.523800px;}
.y40{bottom:117.883350px;}
.ybd{bottom:121.483650px;}
.y1cc{bottom:121.485150px;}
.y305{bottom:122.923350px;}
.y1e6{bottom:124.724700px;}
.y2a7{bottom:125.083350px;}
.y39a{bottom:125.805150px;}
.y7b{bottom:126.163500px;}
.y90{bottom:126.525150px;}
.y1d{bottom:126.883350px;}
.y33c{bottom:129.763650px;}
.yac{bottom:130.123500px;}
.y152{bottom:131.203350px;}
.y61{bottom:131.205150px;}
.y35d{bottom:131.563350px;}
.y2e6{bottom:131.565150px;}
.y168{bottom:132.643650px;}
.y2d2{bottom:133.723350px;}
.y106{bottom:134.083350px;}
.y365{bottom:134.443650px;}
.y227{bottom:134.804700px;}
.y194{bottom:135.163350px;}
.y11d{bottom:135.163500px;}
.y23c{bottom:135.163650px;}
.y132{bottom:135.523500px;}
.y22e{bottom:136.603350px;}
.y142{bottom:136.603500px;}
.y2b1{bottom:136.605150px;}
.yd5{bottom:138.043350px;}
.yee{bottom:138.043650px;}
.y27d{bottom:139.123800px;}
.y1fa{bottom:143.084250px;}
.y350{bottom:143.805150px;}
.y28a{bottom:147.403800px;}
.y1af{bottom:148.483800px;}
.y322{bottom:149.203350px;}
.y11{bottom:151.363650px;}
.ybc{bottom:152.443650px;}
.y1cb{bottom:152.445150px;}
.y2d1{bottom:154.243350px;}
.y25f{bottom:155.684400px;}
.y2a6{bottom:156.043350px;}
.y7a{bottom:157.123500px;}
.y22d{bottom:157.483350px;}
.y8f{bottom:157.485150px;}
.y3f{bottom:158.563350px;}
.y35c{bottom:158.923350px;}
.y33b{bottom:160.723650px;}
.yab{bottom:161.083500px;}
.y304{bottom:161.803350px;}
.y151{bottom:162.523350px;}
.y60{bottom:162.525150px;}
.y167{bottom:163.603650px;}
.y20f{bottom:163.964850px;}
.y105{bottom:165.043350px;}
.y364{bottom:165.403650px;}
.y1c{bottom:165.763494px;}
.y226{bottom:165.764700px;}
.y193{bottom:166.123350px;}
.y11c{bottom:166.123500px;}
.y23b{bottom:166.123650px;}
.y131{bottom:166.483500px;}
.y241{bottom:167.563350px;}
.y141{bottom:167.563500px;}
.y2b0{bottom:167.565150px;}
.yd4{bottom:169.003350px;}
.yed{bottom:169.003650px;}
.y27c{bottom:170.083800px;}
.y399{bottom:170.085150px;}
.y2e5{bottom:172.965150px;}
.y1e5{bottom:173.684700px;}
.y1f9{bottom:174.404250px;}
.y2d0{bottom:175.123350px;}
.y22c{bottom:178.723350px;}
.y1ae{bottom:179.443800px;}
.y321{bottom:179.803350px;}
.y303{bottom:182.683350px;}
.y1ca{bottom:183.405150px;}
.ybb{bottom:183.763650px;}
.y25e{bottom:187.004400px;}
.y37f{bottom:187.725150px;}
.y3e{bottom:188.085150px;}
.y79{bottom:188.443500px;}
.y8e{bottom:188.445150px;}
.y10{bottom:190.243650px;}
.y179{bottom:190.963284px;}
.y33a{bottom:191.683650px;}
.yaa{bottom:192.043500px;}
.y34f{bottom:192.765150px;}
.y150{bottom:193.483350px;}
.y5f{bottom:193.485150px;}
.y2e4{bottom:193.845150px;}
.y166{bottom:194.563650px;}
.y289{bottom:194.923800px;}
.y20e{bottom:194.924850px;}
.y2cf{bottom:195.643350px;}
.y104{bottom:196.003350px;}
.y363{bottom:196.723650px;}
.y225{bottom:196.724700px;}
.y11b{bottom:197.443500px;}
.y23a{bottom:197.443650px;}
.y192{bottom:197.443950px;}
.y130{bottom:197.803500px;}
.y240{bottom:198.523350px;}
.y140{bottom:198.523500px;}
.y2af{bottom:198.525150px;}
.yd3{bottom:199.963350px;}
.yec{bottom:199.963650px;}
.y27b{bottom:201.043800px;}
.y2a5{bottom:201.403800px;}
.y398{bottom:201.405150px;}
.y302{bottom:203.203350px;}
.y22b{bottom:206.444100px;}
.y1b{bottom:209.323350px;}
.y1ad{bottom:210.403800px;}
.y320{bottom:210.763350px;}
.y2e3{bottom:214.365150px;}
.yba{bottom:214.723650px;}
.y38f{bottom:214.725150px;}
.y178{bottom:216.883500px;}
.y25d{bottom:217.964400px;}
.y78{bottom:219.404850px;}
.y3d{bottom:219.405150px;}
.y1e4{bottom:223.004700px;}
.ya9{bottom:223.363500px;}
.y35b{bottom:223.363800px;}
.y1f8{bottom:223.364250px;}
.y14f{bottom:224.443500px;}
.y5e{bottom:224.445150px;}
.y165{bottom:225.883650px;}
.y20d{bottom:225.884850px;}
.y103{bottom:226.963350px;}
.y171{bottom:226.963650px;}
.y36a{bottom:227.323650px;}
.y362{bottom:227.683650px;}
.y224{bottom:227.684700px;}
.y11a{bottom:228.403500px;}
.y239{bottom:228.403650px;}
.y191{bottom:228.403950px;}
.y12f{bottom:228.763500px;}
.yf{bottom:228.763650px;}
.y23f{bottom:229.483350px;}
.y13f{bottom:229.483500px;}
.y2ae{bottom:229.485150px;}
.yd2{bottom:230.923500px;}
.yeb{bottom:230.923650px;}
.y31f{bottom:232.003350px;}
.y27a{bottom:232.363800px;}
.y37e{bottom:232.365150px;}
.y1c9{bottom:232.725150px;}
.y2e2{bottom:235.245150px;}
.y1a{bottom:236.683500px;}
.y1ac{bottom:241.723800px;}
.y34e{bottom:241.725150px;}
.y288{bottom:242.443800px;}
.y177{bottom:242.803500px;}
.yb9{bottom:245.683650px;}
.y38e{bottom:245.685150px;}
.y25c{bottom:248.924400px;}
.y3c{bottom:250.365150px;}
.y8d{bottom:250.725150px;}
.y339{bottom:251.443650px;}
.y77{bottom:251.804850px;}
.y301{bottom:252.163500px;}
.y31e{bottom:252.523500px;}
.y1e3{bottom:253.964700px;}
.ya8{bottom:254.323500px;}
.y35a{bottom:254.683800px;}
.y14e{bottom:255.403500px;}
.y5d{bottom:255.405150px;}
.y2e1{bottom:255.765150px;}
.y164{bottom:256.843650px;}
.y102{bottom:258.283500px;}
.y170{bottom:258.283650px;}
.y361{bottom:258.643650px;}
.y223{bottom:259.004700px;}
.y119{bottom:259.363500px;}
.y238{bottom:259.363650px;}
.y190{bottom:259.363950px;}
.y12e{bottom:259.723500px;}
.y19{bottom:260.443500px;}
.y13e{bottom:260.803500px;}
.y23e{bottom:260.803800px;}
.y2ad{bottom:260.805150px;}
.yd1{bottom:262.243650px;}
.y279{bottom:263.323800px;}
.y37d{bottom:263.325150px;}
.y2a4{bottom:263.683800px;}
.ye{bottom:267.643650px;}
.y176{bottom:268.723284px;}
.y2cc{bottom:272.323500px;}
.y338{bottom:272.323650px;}
.y1f7{bottom:272.324250px;}
.y1ab{bottom:272.683800px;}
.ya7{bottom:274.483500px;}
.y20c{bottom:275.204850px;}
.yb8{bottom:276.643650px;}
.y2e0{bottom:276.645150px;}
.y397{bottom:277.005150px;}
.y25b{bottom:279.884400px;}
.y3b{bottom:281.325150px;}
.y8c{bottom:281.685150px;}
.y76{bottom:282.764850px;}
.y18{bottom:284.203500px;}
.y359{bottom:285.643800px;}
.y5c{bottom:286.725150px;}
.y360{bottom:287.443650px;}
.y163{bottom:287.803650px;}
.y101{bottom:289.243650px;}
.y369{bottom:289.603650px;}
.y287{bottom:289.963800px;}
.y222{bottom:289.964700px;}
.y1a1{bottom:290.323650px;}
.y118{bottom:290.323800px;}
.y18f{bottom:290.323950px;}
.y38d{bottom:290.325150px;}
.y12d{bottom:290.683650px;}
.y34d{bottom:290.685150px;}
.ya6{bottom:291.763500px;}
.y23d{bottom:291.763800px;}
.y2ac{bottom:291.765150px;}
.yea{bottom:293.203500px;}
.yd0{bottom:293.203800px;}
.y278{bottom:294.283800px;}
.y37c{bottom:294.285150px;}
.y175{bottom:294.643500px;}
.y2a3{bottom:294.643800px;}
.y2df{bottom:297.165150px;}
.y2cb{bottom:297.883650px;}
.y300{bottom:301.123650px;}
.y1e2{bottom:302.924700px;}
.y1aa{bottom:303.643800px;}
.yd{bottom:306.163650px;}
.yb7{bottom:307.963650px;}
.y14d{bottom:310.123650px;}
.y25a{bottom:311.204400px;}
.y3a{bottom:312.285150px;}
.y8b{bottom:312.645150px;}
.y17{bottom:314.083650px;}
.y75{bottom:315.164850px;}
.y35f{bottom:315.523650px;}
.ya5{bottom:316.244100px;}
.y358{bottom:316.603800px;}
.y5b{bottom:317.685150px;}
.y2de{bottom:318.045150px;}
.y162{bottom:318.763650px;}
.y100{bottom:320.203650px;}
.y368{bottom:320.563650px;}
.y337{bottom:320.923650px;}
.y221{bottom:320.924700px;}
.y230{bottom:321.163500px;}
.y286{bottom:321.283800px;}
.y1f6{bottom:321.284250px;}
.y38c{bottom:321.285150px;}
.y1a0{bottom:321.643650px;}
.y117{bottom:321.643800px;}
.y18e{bottom:321.643950px;}
.y12c{bottom:322.003650px;}
.y13d{bottom:322.723800px;}
.y2ab{bottom:322.725150px;}
.y2ca{bottom:323.803584px;}
.y2ce{bottom:323.804076px;}
.ye9{bottom:324.163650px;}
.ycf{bottom:324.163800px;}
.y20b{bottom:324.164850px;}
.y277{bottom:325.243800px;}
.y37b{bottom:325.605150px;}
.y2ff{bottom:332.083650px;}
.y31d{bottom:332.443650px;}
.y1a9{bottom:334.603800px;}
.y237{bottom:335.683650px;}
.y14c{bottom:336.043650px;}
.y2dd{bottom:338.565150px;}
.yb6{bottom:338.923650px;}
.y2a2{bottom:340.003800px;}
.y34c{bottom:340.005150px;}
.y39{bottom:343.605150px;}
.y74{bottom:346.124850px;}
.y357{bottom:347.563800px;}
.y5a{bottom:348.645150px;}
.y2c9{bottom:349.723800px;}
.y2cd{bottom:349.724292px;}
.y161{bottom:350.083650px;}
.yff{bottom:351.163800px;}
.y16f{bottom:351.163950px;}
.y367{bottom:351.523650px;}
.y336{bottom:351.883800px;}
.y1e1{bottom:351.884700px;}
.y285{bottom:352.243800px;}
.y19f{bottom:352.603650px;}
.y116{bottom:352.603800px;}
.y18d{bottom:352.603950px;}
.y12b{bottom:352.963800px;}
.y13c{bottom:353.683800px;}
.y2aa{bottom:353.685150px;}
.ye8{bottom:355.123650px;}
.yce{bottom:355.123800px;}
.y20a{bottom:355.124850px;}
.y276{bottom:356.563800px;}
.y259{bottom:356.564400px;}
.y37a{bottom:356.565150px;}
.yc{bottom:358.003650px;}
.y2dc{bottom:359.445150px;}
.y14b{bottom:361.963584px;}
.y2fe{bottom:363.043800px;}
.y31c{bottom:363.403800px;}
.y1a8{bottom:365.923800px;}
.y38b{bottom:365.925150px;}
.y236{bottom:367.003650px;}
.yb5{bottom:369.883950px;}
.y1f5{bottom:370.604250px;}
.y2a1{bottom:370.963800px;}
.y38{bottom:374.565150px;}
.y8a{bottom:374.925150px;}
.y73{bottom:378.524850px;}
.y356{bottom:378.883800px;}
.y59{bottom:379.605150px;}
.y160{bottom:381.043800px;}
.yfe{bottom:382.483800px;}
.y16e{bottom:382.483950px;}
.y366{bottom:382.843800px;}
.y284{bottom:383.203800px;}
.y220{bottom:383.204700px;}
.y115{bottom:383.563800px;}
.y18c{bottom:383.563950px;}
.y12a{bottom:383.923800px;}
.y13b{bottom:385.003800px;}
.y2a9{bottom:385.005150px;}
.ycd{bottom:386.443800px;}
.y275{bottom:387.524100px;}
.y258{bottom:387.524400px;}
.y379{bottom:387.525150px;}
.y14a{bottom:387.883800px;}
.y34b{bottom:388.965150px;}
.y2db{bottom:390.045150px;}
.y2fd{bottom:394.003800px;}
.y1a7{bottom:396.883950px;}
.y38a{bottom:396.885150px;}
.y234{bottom:399.403800px;}
.yb4{bottom:400.843950px;}
.y2c8{bottom:401.203224px;}
.y335{bottom:401.203800px;}
.y1e0{bottom:401.204700px;}
.y1f4{bottom:401.564250px;}
.y2a0{bottom:401.923800px;}
.yb{bottom:402.283950px;}
.y209{bottom:404.084850px;}
.y283{bottom:404.443800px;}
.y37{bottom:405.525150px;}
.y89{bottom:405.885150px;}
.y72{bottom:409.844850px;}
.y58{bottom:410.925150px;}
.y15f{bottom:412.003800px;}
.y31b{bottom:412.363800px;}
.yfd{bottom:413.443800px;}
.y16d{bottom:413.443950px;}
.y21f{bottom:414.164700px;}
.y19e{bottom:414.523800px;}
.y18b{bottom:414.523950px;}
.y114{bottom:414.524100px;}
.y13a{bottom:415.963800px;}
.y149{bottom:415.964250px;}
.y2a8{bottom:415.965150px;}
.ycc{bottom:416.323800px;}
.ye7{bottom:417.403800px;}
.y274{bottom:418.484100px;}
.y257{bottom:418.484400px;}
.y2da{bottom:421.005150px;}
.ya{bottom:423.163950px;}
.y1c8{bottom:423.885150px;}
.y282{bottom:424.963800px;}
.y2c7{bottom:427.123440px;}
.y2c6{bottom:427.123800px;}
.y1a6{bottom:427.843950px;}
.y389{bottom:428.205150px;}
.y232{bottom:431.803800px;}
.y22f{bottom:432.067800px;}
.yb3{bottom:432.163950px;}
.y378{bottom:432.165150px;}
.y1f3{bottom:432.524250px;}
.y29f{bottom:432.883800px;}
.y2fc{bottom:433.243800px;}
.y129{bottom:433.603020px;}
.y36{bottom:436.485150px;}
.y88{bottom:436.845150px;}
.y34a{bottom:437.925150px;}
.y71{bottom:441.884850px;}
.y57{bottom:441.885150px;}
.y15e{bottom:442.964100px;}
.y31a{bottom:443.323800px;}
.yfc{bottom:444.403950px;}
.y21e{bottom:445.124700px;}
.y19d{bottom:445.843800px;}
.y18a{bottom:445.843950px;}
.y113{bottom:445.844100px;}
.y139{bottom:446.923800px;}
.y148{bottom:446.924250px;}
.ycb{bottom:446.925150px;}
.ye6{bottom:448.363800px;}
.y273{bottom:449.444100px;}
.y256{bottom:449.444400px;}
.y1df{bottom:450.164700px;}
.y281{bottom:451.964550px;}
.y2d9{bottom:452.325150px;}
.y2c5{bottom:452.683800px;}
.y208{bottom:453.404850px;}
.y2fb{bottom:453.763950px;}
.y1f2{bottom:453.764250px;}
.y1a5{bottom:458.803950px;}
.y388{bottom:459.165150px;}
.y128{bottom:459.523236px;}
.y1c7{bottom:462.765150px;}
.yb2{bottom:463.123950px;}
.y29e{bottom:464.203800px;}
.y35{bottom:467.805150px;}
.y70{bottom:472.844850px;}
.y56{bottom:472.845150px;}
.y15d{bottom:474.284100px;}
.y319{bottom:474.643950px;}
.y2fa{bottom:474.644100px;}
.yfb{bottom:475.363800px;}
.y21d{bottom:476.084700px;}
.y189{bottom:476.803950px;}
.y112{bottom:476.804100px;}
.y377{bottom:476.805150px;}
.y9{bottom:477.527058px;}
.y138{bottom:477.884100px;}
.y147{bottom:477.884250px;}
.yca{bottom:477.885150px;}
.y2c4{bottom:478.603950px;}
.ye5{bottom:479.323950px;}
.y272{bottom:480.404100px;}
.y255{bottom:480.404400px;}
.y334{bottom:481.123950px;}
.y2d8{bottom:483.285150px;}
.y1c6{bottom:483.645150px;}
.y207{bottom:484.364850px;}
.y127{bottom:485.443452px;}
.y349{bottom:486.885150px;}
.y1a4{bottom:490.123950px;}
.y387{bottom:490.125150px;}
.yb1{bottom:494.083950px;}
.y29d{bottom:495.164100px;}
.y22a{bottom:495.884100px;}
.y34{bottom:498.765150px;}
.y1de{bottom:499.124700px;}
.y87{bottom:499.125150px;}
.y1f1{bottom:502.364250px;}
.y6f{bottom:503.804850px;}
.y55{bottom:503.805150px;}
.y1c5{bottom:504.165150px;}
.y2c3{bottom:504.524100px;}
.y15c{bottom:505.244100px;}
.y318{bottom:505.604100px;}
.yfa{bottom:506.323950px;}
.y16c{bottom:506.324250px;}
.y21c{bottom:507.404700px;}
.y111{bottom:507.764100px;}
.y188{bottom:507.764250px;}
.y376{bottom:507.765150px;}
.y137{bottom:509.204100px;}
.y146{bottom:509.204250px;}
.yc9{bottom:509.205150px;}
.y1a3{bottom:510.284100px;}
.ye4{bottom:510.644100px;}
.y126{bottom:511.363668px;}
.y271{bottom:511.724100px;}
.y254{bottom:511.724400px;}
.y333{bottom:512.083950px;}
.y2d7{bottom:514.245150px;}
.y2f9{bottom:516.044100px;}
.y229{bottom:516.404100px;}
.yb0{bottom:525.044100px;}
.y1c4{bottom:525.045150px;}
.y29c{bottom:526.124100px;}
.y33{bottom:529.725150px;}
.y1dd{bottom:530.084700px;}
.y86{bottom:530.085150px;}
.y2c2{bottom:530.444100px;}
.y8{bottom:531.886050px;}
.y1f0{bottom:533.324250px;}
.y206{bottom:533.324850px;}
.y1a2{bottom:534.405150px;}
.y386{bottom:534.765150px;}
.y6e{bottom:535.124850px;}
.y54{bottom:535.125150px;}
.y15b{bottom:536.204100px;}
.y348{bottom:536.205150px;}
.y2f8{bottom:536.564100px;}
.y125{bottom:537.283884px;}
.yf9{bottom:537.644100px;}
.y16b{bottom:537.644250px;}
.y21b{bottom:538.364700px;}
.y110{bottom:538.724100px;}
.y187{bottom:538.724250px;}
.ya4{bottom:540.164100px;}
.y145{bottom:540.164250px;}
.yc8{bottom:540.165150px;}
.ye3{bottom:541.604100px;}
.y270{bottom:542.684100px;}
.y253{bottom:542.684400px;}
.y2d6{bottom:545.205150px;}
.y375{bottom:552.405150px;}
.y317{bottom:554.564100px;}
.y1c3{bottom:555.645150px;}
.yaf{bottom:556.364100px;}
.y2f7{bottom:557.444100px;}
.y32{bottom:560.685150px;}
.y85{bottom:561.045150px;}
.y332{bottom:561.404100px;}
.y1dc{bottom:561.404700px;}
.y124{bottom:563.204100px;}
.y1ef{bottom:564.284250px;}
.y228{bottom:565.365150px;}
.y385{bottom:565.725150px;}
.y6d{bottom:566.084850px;}
.y53{bottom:566.085150px;}
.y15a{bottom:567.164250px;}
.yf8{bottom:568.964100px;}
.y21a{bottom:569.324700px;}
.y10f{bottom:570.044100px;}
.y16a{bottom:570.044250px;}
.ya3{bottom:571.124100px;}
.y144{bottom:571.124250px;}
.yc7{bottom:571.125150px;}
.y29b{bottom:571.484700px;}
.ye2{bottom:572.564100px;}
.y26f{bottom:573.644100px;}
.y252{bottom:573.644400px;}
.y2d5{bottom:576.525150px;}
.y2f6{bottom:577.964250px;}
.y31{bottom:581.925150px;}
.y2c1{bottom:582.284250px;}
.y205{bottom:582.284850px;}
.y374{bottom:583.365150px;}
.yae{bottom:584.804100px;}
.y347{bottom:585.165150px;}
.y316{bottom:585.524100px;}
.y7{bottom:586.245042px;}
.y1c2{bottom:586.605150px;}
.y354{bottom:591.284250px;}
.y84{bottom:592.005150px;}
.y331{bottom:592.364250px;}
.y1db{bottom:592.364700px;}
.y6c{bottom:597.044850px;}
.y52{bottom:597.045150px;}
.y19c{bottom:598.484034px;}
.y159{bottom:598.484250px;}
.y2f5{bottom:598.844250px;}
.y219{bottom:600.284700px;}
.yf7{bottom:601.004250px;}
.ya2{bottom:602.084250px;}
.yc6{bottom:602.085150px;}
.y29a{bottom:602.444700px;}
.y30{bottom:602.445150px;}
.ye1{bottom:603.524250px;}
.y26e{bottom:604.604250px;}
.y251{bottom:604.604400px;}
.y2d4{bottom:607.485150px;}
.y1c1{bottom:607.845150px;}
.y2c0{bottom:608.203890px;}
.y384{bottom:610.365150px;}
.yad{bottom:610.724100px;}
.y123{bottom:612.164100px;}
.y1ee{bottom:613.604250px;}
.y204{bottom:613.604850px;}
.y315{bottom:616.844250px;}
.y2f4{bottom:619.364250px;}
.y6{bottom:622.244250px;}
.y355{bottom:622.604250px;}
.y330{bottom:623.324250px;}
.y2f{bottom:623.325150px;}
.y19b{bottom:624.404250px;}
.y6b{bottom:628.004850px;}
.y51{bottom:628.005150px;}
.y158{bottom:630.524250px;}
.y218{bottom:631.604700px;}
.yf6{bottom:631.964250px;}
.y169{bottom:632.325150px;}
.ya1{bottom:633.404250px;}
.y174{bottom:633.404550px;}
.y299{bottom:633.404700px;}
.yc5{bottom:633.405150px;}
.y2bf{bottom:633.764250px;}
.y346{bottom:634.125150px;}
.ye0{bottom:634.844250px;}
.y26d{bottom:635.924250px;}
.y250{bottom:635.924400px;}
.y1c0{bottom:638.445150px;}
.y1da{bottom:641.324700px;}
.y383{bottom:641.325150px;}
.y122{bottom:643.484250px;}
.y1ed{bottom:644.564250px;}
.y19a{bottom:650.323752px;}
.y2e{bottom:653.925150px;}
.y32f{bottom:654.284250px;}
.y83{bottom:654.285150px;}
.y6a{bottom:659.324850px;}
.y50{bottom:659.325150px;}
.y157{bottom:661.844250px;}
.y217{bottom:662.564700px;}
.y203{bottom:662.564850px;}
.yf5{bottom:662.924250px;}
.y186{bottom:662.924550px;}
.y5{bottom:663.644550px;}
.ya0{bottom:664.364250px;}
.y136{bottom:664.364400px;}
.y173{bottom:664.364550px;}
.yc4{bottom:664.365150px;}
.ydf{bottom:664.724250px;}
.y298{bottom:664.724700px;}
.y314{bottom:665.804250px;}
.y24f{bottom:666.884400px;}
.y26c{bottom:666.884700px;}
.y2f3{bottom:668.324250px;}
.y1bf{bottom:669.405150px;}
.y1d9{bottom:672.284700px;}
.y373{bottom:672.285150px;}
.y121{bottom:674.444550px;}
.y199{bottom:676.243968px;}
.y345{bottom:683.085150px;}
.y2d{bottom:684.885150px;}
.y32e{bottom:685.604250px;}
.y382{bottom:685.965150px;}
.y69{bottom:690.284850px;}
.y4f{bottom:690.285150px;}
.y156{bottom:692.804400px;}
.y1ec{bottom:693.525150px;}
.yf4{bottom:694.244400px;}
.y185{bottom:694.244550px;}
.yde{bottom:695.324400px;}
.y9f{bottom:695.324550px;}
.yc3{bottom:695.325150px;}
.y313{bottom:696.764400px;}
.y24e{bottom:697.844400px;}
.y26b{bottom:697.844700px;}
.y2f2{bottom:699.284400px;}
.y1be{bottom:700.365150px;}
.y198{bottom:702.164184px;}
.y4{bottom:702.164550px;}
.y82{bottom:703.245150px;}
.y1d8{bottom:703.604700px;}
.y372{bottom:703.605150px;}
.y120{bottom:705.404550px;}
.y297{bottom:710.084700px;}
.y216{bottom:711.524700px;}
.y202{bottom:711.524850px;}
.y2c{bottom:716.205150px;}
.y381{bottom:716.925150px;}
.y68{bottom:721.244850px;}
.y4e{bottom:721.245150px;}
.y2bd{bottom:723.044118px;}
.y2be{bottom:723.044400px;}
.y155{bottom:724.124550px;}
.y32d{bottom:724.484550px;}
.yf3{bottom:725.204400px;}
.y184{bottom:725.204550px;}
.ydd{bottom:726.284400px;}
.y9e{bottom:726.284550px;}
.yc2{bottom:726.285150px;}
.y312{bottom:727.724400px;}
.y197{bottom:728.084400px;}
.y24d{bottom:728.804400px;}
.y26a{bottom:728.804700px;}
.y1bd{bottom:731.685150px;}
.y344{bottom:732.405150px;}
.y81{bottom:734.205150px;}
.y1d7{bottom:734.564700px;}
.y11f{bottom:736.724550px;}
.y3{bottom:741.044550px;}
.y296{bottom:741.044700px;}
.y215{bottom:742.484700px;}
.y1eb{bottom:742.485150px;}
.y32c{bottom:745.364550px;}
.y2b{bottom:747.165150px;}
.y371{bottom:747.885150px;}
.y2f1{bottom:748.244400px;}
.y2bc{bottom:748.964334px;}
.y67{bottom:752.204850px;}
.y4d{bottom:752.205150px;}
.yf2{bottom:756.164400px;}
.y154{bottom:756.164550px;}
.y196{bottom:756.164850px;}
.y10e{bottom:756.524550px;}
.ydc{bottom:757.604400px;}
.y9d{bottom:757.604550px;}
.yc1{bottom:757.605150px;}
.y311{bottom:759.044550px;}
.y24c{bottom:760.124400px;}
.y269{bottom:760.124700px;}
.y201{bottom:760.484850px;}
.y1bc{bottom:762.645150px;}
.y80{bottom:765.165150px;}
.y1d6{bottom:765.524700px;}
.y32b{bottom:765.884550px;}
.y295{bottom:772.004700px;}
.y214{bottom:773.804700px;}
.y2bb{bottom:774.884550px;}
.y2a{bottom:778.125150px;}
.y2f0{bottom:779.204550px;}
.y396{bottom:779.205150px;}
.y2{bottom:779.564550px;}
.y310{bottom:779.924550px;}
.y343{bottom:781.365150px;}
.y66{bottom:783.164850px;}
.y4c{bottom:783.165150px;}
.y32a{bottom:786.764550px;}
.y153{bottom:787.124550px;}
.yf1{bottom:787.124700px;}
.y195{bottom:787.124850px;}
.y9c{bottom:788.564550px;}
.yc0{bottom:788.565150px;}
.y268{bottom:791.084700px;}
.y200{bottom:791.804850px;}
.y1ea{bottom:791.805150px;}
.y370{bottom:792.525150px;}
.y1bb{bottom:793.605150px;}
.y1d5{bottom:796.484700px;}
.y7f{bottom:796.485150px;}
.y30f{bottom:800.804550px;}
.y294{bottom:802.964700px;}
.y24b{bottom:805.485150px;}
.y29{bottom:809.085150px;}
.y353{bottom:809.445000px;}
.y395{bottom:810.165150px;}
.y2ef{bottom:810.524550px;}
.y1{bottom:814.484550px;}
.y65{bottom:814.484850px;}
.y4b{bottom:814.485150px;}
.y10d{bottom:817.364550px;}
.y183{bottom:818.084850px;}
.yf0{bottom:818.444700px;}
.y9b{bottom:819.524550px;}
.y11e{bottom:819.524700px;}
.y172{bottom:819.524850px;}
.ybf{bottom:819.525150px;}
.y30e{bottom:821.324550px;}
.y280{bottom:822.044550px;}
.y267{bottom:822.044700px;}
.y213{bottom:822.764700px;}
.y1ff{bottom:822.764850px;}
.y1e9{bottom:822.765150px;}
.y36f{bottom:823.485150px;}
.y1ba{bottom:824.565150px;}
.y7e{bottom:827.445150px;}
.y1d4{bottom:827.804700px;}
.y342{bottom:830.325150px;}
.y293{bottom:833.924700px;}
.y24a{bottom:836.445150px;}
.y352{bottom:837.885000px;}
.y329{bottom:838.244550px;}
.y2ba{bottom:839.324550px;}
.y28{bottom:840.405150px;}
.y30d{bottom:842.204700px;}
.y10c{bottom:843.284700px;}
.y64{bottom:845.444850px;}
.y4a{bottom:845.445150px;}
.y182{bottom:849.404850px;}
.y9a{bottom:850.484550px;}
.yef{bottom:850.484700px;}
.y135{bottom:850.484850px;}
.ybe{bottom:850.485150px;}
.y266{bottom:853.004700px;}
.y27f{bottom:853.004850px;}
.y212{bottom:853.724700px;}
.y36e{bottom:854.805150px;}
.y1b9{bottom:855.885150px;}
.y7d{bottom:858.405150px;}
.y1d3{bottom:858.764700px;}
.y328{bottom:859.124700px;}
.y2ee{bottom:859.484550px;}
.y30c{bottom:862.724700px;}
.y292{bottom:865.244700px;}
.y249{bottom:867.405150px;}
.y380{bottom:868.125150px;}
.y10b{bottom:868.844700px;}
.y27{bottom:871.365150px;}
.y1fe{bottom:871.724850px;}
.y1e8{bottom:871.725150px;}
.y63{bottom:876.404850px;}
.y49{bottom:876.405150px;}
.y341{bottom:879.285150px;}
.y181{bottom:880.364850px;}
.ydb{bottom:881.804700px;}
.y134{bottom:881.804850px;}
.y99{bottom:881.805150px;}
.y30b{bottom:883.964700px;}
.y265{bottom:884.324700px;}
.y27e{bottom:884.324850px;}
.y394{bottom:885.765150px;}
.y1b8{bottom:886.845150px;}
.y7c{bottom:889.365150px;}
.y1d2{bottom:889.725150px;}
.y2ed{bottom:890.444700px;}
.y2b9{bottom:890.804700px;}
.y10a{bottom:894.764700px;}
.y291{bottom:896.204850px;}
.y248{bottom:898.365150px;}
.y36d{bottom:899.085150px;}
.y26{bottom:902.325150px;}
.y1fd{bottom:902.684850px;}
.y211{bottom:902.685150px;}
.y30a{bottom:905.564700px;}
.y62{bottom:907.364850px;}
.y48{bottom:907.365150px;}
.y327{bottom:907.725000px;}
.y180{bottom:911.324850px;}
.yda{bottom:912.764700px;}
.y133{bottom:912.764850px;}
.y98{bottom:912.765150px;}
.y264{bottom:915.284850px;}
.y2b8{bottom:916.724700px;}
.y393{bottom:916.725150px;}
.y1b7{bottom:917.805150px;}
.y109{bottom:920.684850px;}
.y1d1{bottom:920.685150px;}
.y2ec{bottom:921.404850px;}
.y309{bottom:926.084850px;}
.y290{bottom:927.164850px;}
.y340{bottom:928.605150px;}
.y247{bottom:929.325150px;}
.y36c{bottom:930.405150px;}
.y25{bottom:933.285150px;}
.y326{bottom:938.685000px;}
.y47{bottom:938.685150px;}
.y17f{bottom:942.284850px;}
.y2b7{bottom:942.644850px;}
.yd9{bottom:943.724850px;}
.y143{bottom:943.725000px;}
.y97{bottom:943.725150px;}
.y263{bottom:946.244850px;}
.y108{bottom:946.604850px;}
.y308{bottom:946.964850px;}
.y392{bottom:947.685150px;}
.y1b6{bottom:948.765150px;}
.y1fc{bottom:952.004850px;}
.y1d0{bottom:952.005150px;}
.y2eb{bottom:952.724850px;}
.y28f{bottom:958.125000px;}
.y246{bottom:960.645150px;}
.y36b{bottom:961.365150px;}
.y24{bottom:964.605150px;}
.y307{bottom:967.484850px;}
.y2b6{bottom:968.564784px;}
.y46{bottom:969.645150px;}
.y325{bottom:970.005000px;}
.y17e{bottom:973.605150px;}
.yd8{bottom:974.684850px;}
.y107{bottom:974.685000px;}
.y96{bottom:974.685150px;}
.y262{bottom:977.205000px;}
.y33f{bottom:977.565150px;}
.y1b5{bottom:980.085150px;}
.y1fb{bottom:982.964850px;}
.y1e7{bottom:982.965150px;}
.y306{bottom:988.365000px;}
.y28e{bottom:989.445000px;}
.y245{bottom:991.605150px;}
.y391{bottom:992.325150px;}
.y2b5{bottom:994.485000px;}
.y23{bottom:995.565150px;}
.y45{bottom:1000.605150px;}
.y1cf{bottom:1000.965150px;}
.y2ea{bottom:1001.684850px;}
.y17d{bottom:1004.565150px;}
.yd7{bottom:1006.005000px;}
.y95{bottom:1006.005150px;}
.y261{bottom:1008.525000px;}
.y33e{bottom:1008.525150px;}
.y1b4{bottom:1011.045150px;}
.y324{bottom:1018.965000px;}
.y28d{bottom:1020.405000px;}
.y244{bottom:1022.565150px;}
.y390{bottom:1023.285150px;}
.y22{bottom:1026.525150px;}
.y44{bottom:1031.565150px;}
.y1ce{bottom:1031.925150px;}
.y2e9{bottom:1032.645150px;}
.y17c{bottom:1035.525150px;}
.yd6{bottom:1036.965000px;}
.y94{bottom:1036.965150px;}
.y1b3{bottom:1042.005150px;}
.y2b4{bottom:1048.125000px;}
.y323{bottom:1049.925000px;}
.y28c{bottom:1051.365000px;}
.y243{bottom:1053.525150px;}
.y21{bottom:1057.485150px;}
.y351{bottom:1062.885000px;}
.y43{bottom:1062.885150px;}
.y2e8{bottom:1063.605150px;}
.y17b{bottom:1066.485150px;}
.y93{bottom:1067.925150px;}
.y35e{bottom:1070.805150px;}
.y1b2{bottom:1072.965150px;}
.y2b3{bottom:1078.725150px;}
.y1cd{bottom:1080.885150px;}
.y28b{bottom:1082.325150px;}
.y242{bottom:1084.845150px;}
.y20{bottom:1088.805150px;}
.y33d{bottom:1091.324868px;}
.y42{bottom:1093.845150px;}
.y17a{bottom:1097.805150px;}
.y92{bottom:1098.885150px;}
.y2b2{bottom:1099.245150px;}
.y2e7{bottom:1103.205588px;}
.y1b1{bottom:1106.805150px;}
.y1f{bottom:1109.685150px;}
.y260{bottom:1115.805150px;}
.y41{bottom:1127.685300px;}
.y91{bottom:1130.205150px;}
.y1e{bottom:1130.565150px;}
.y15{bottom:1151.085300px;}
.y14{bottom:1171.965300px;}
.y13{bottom:1192.485300px;}
.h10{height:41.402813px;}
.hd{height:47.047311px;}
.h1{height:47.988281px;}
.h2{height:49.289062px;}
.hc{height:49.886719px;}
.hf{height:50.343750px;}
.hb{height:53.067656px;}
.ha{height:53.215313px;}
.h5{height:55.666406px;}
.h7{height:57.175312px;}
.h6{height:58.121719px;}
.h4{height:63.175781px;}
.h9{height:63.351562px;}
.h8{height:66.170016px;}
.h3{height:73.283906px;}
.he{height:129.000000px;}
.h0{height:1263.000000px;}
.w2{width:456.001500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x23{left:9.120450px;}
.x30{left:53.820000px;}
.x7{left:107.820000px;}
.x2e{left:115.380000px;}
.x4{left:128.295300px;}
.x6{left:130.646250px;}
.xa{left:134.820150px;}
.x5{left:145.645650px;}
.xb{left:161.820300px;}
.x11{left:168.888300px;}
.x13{left:171.645300px;}
.xc{left:188.818200px;}
.x19{left:192.868200px;}
.x28{left:195.660450px;}
.x2d{left:205.216200px;}
.x14{left:214.095600px;}
.xd{left:215.818200px;}
.x22{left:217.500000px;}
.x21{left:226.620450px;}
.x26{left:231.135000px;}
.x24{left:234.742950px;}
.x16{left:242.820450px;}
.x1b{left:246.045600px;}
.x29{left:249.660450px;}
.x25{left:253.455750px;}
.x2a{left:257.580450px;}
.x27{left:262.635000px;}
.x2c{left:267.195600px;}
.xe{left:269.820000px;}
.x17{left:296.820450px;}
.x1a{left:300.870600px;}
.x15{left:323.818500px;}
.x2{left:331.918200px;}
.x1d{left:350.394600px;}
.x10{left:409.389750px;}
.x12{left:427.793400px;}
.x18{left:431.820000px;}
.x3{left:446.409000px;}
.x2f{left:468.540900px;}
.x2b{left:472.081200px;}
.x31{left:474.660300px;}
.x1e{left:485.820900px;}
.x8{left:593.820000px;}
.x1f{left:700.995600px;}
.x20{left:704.234250px;}
.x1c{left:743.722200px;}
.x1{left:763.569000px;}
.x35{left:769.141500px;}
.x32{left:783.900300px;}
.x9{left:784.981500px;}
.x33{left:786.060900px;}
.xf{left:812.700000px;}
.x34{left:838.081650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.832000pt;}
.v2{vertical-align:21.754667pt;}
.ls40{letter-spacing:-0.215040pt;}
.ls42{letter-spacing:-0.209664pt;}
.ls2c{letter-spacing:-0.204288pt;}
.ls1e{letter-spacing:-0.198912pt;}
.ls27{letter-spacing:-0.193536pt;}
.ls1c{letter-spacing:-0.188160pt;}
.ls28{letter-spacing:-0.182784pt;}
.ls2a{letter-spacing:-0.177408pt;}
.ls1d{letter-spacing:-0.172032pt;}
.ls1b{letter-spacing:-0.166656pt;}
.ls41{letter-spacing:-0.161280pt;}
.ls3f{letter-spacing:-0.155904pt;}
.ls43{letter-spacing:-0.150528pt;}
.ls5{letter-spacing:-0.117760pt;}
.ls20{letter-spacing:-0.105984pt;}
.ls22{letter-spacing:-0.088320pt;}
.ls2d{letter-spacing:-0.080640pt;}
.ls25{letter-spacing:-0.058880pt;}
.ls38{letter-spacing:-0.057600pt;}
.ls32{letter-spacing:-0.051200pt;}
.ls31{letter-spacing:-0.044800pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls15{letter-spacing:-0.032000pt;}
.ls19{letter-spacing:-0.025600pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls39{letter-spacing:-0.012800pt;}
.ls34{letter-spacing:-0.006400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.006400pt;}
.ls7{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.019200pt;}
.ls10{letter-spacing:0.025600pt;}
.lsd{letter-spacing:0.038400pt;}
.ls11{letter-spacing:0.044800pt;}
.ls16{letter-spacing:0.051200pt;}
.lse{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.070400pt;}
.ls13{letter-spacing:0.103936pt;}
.ls17{letter-spacing:0.118272pt;}
.ls2{letter-spacing:0.155904pt;}
.ls12{letter-spacing:0.156288pt;}
.ls0{letter-spacing:0.185600pt;}
.ls1{letter-spacing:0.193024pt;}
.ls9{letter-spacing:0.215296pt;}
.ls2b{letter-spacing:0.225792pt;}
.ls35{letter-spacing:0.259840pt;}
.lsc{letter-spacing:0.274688pt;}
.ls44{letter-spacing:0.282112pt;}
.lsa{letter-spacing:0.289536pt;}
.ls30{letter-spacing:0.313600pt;}
.ls18{letter-spacing:0.319232pt;}
.ls45{letter-spacing:0.334080pt;}
.ls33{letter-spacing:0.524800pt;}
.ls2e{letter-spacing:5.145600pt;}
.ls29{letter-spacing:10.053120pt;}
.ls3b{letter-spacing:11.020800pt;}
.ls26{letter-spacing:11.724800pt;}
.ls8{letter-spacing:19.361792pt;}
.ls37{letter-spacing:30.208000pt;}
.ls3d{letter-spacing:39.552000pt;}
.ls3a{letter-spacing:48.742400pt;}
.ls24{letter-spacing:48.768000pt;}
.lsf{letter-spacing:48.774400pt;}
.ls1f{letter-spacing:52.644608pt;}
.ls23{letter-spacing:52.646656pt;}
.ls3c{letter-spacing:55.552000pt;}
.ls36{letter-spacing:56.896000pt;}
.ls3e{letter-spacing:81.720576pt;}
.ls21{letter-spacing:2326.404800pt;}
.ls4{letter-spacing:2358.405333pt;}
.ws5c{word-spacing:-64.000000pt;}
.ws5d{word-spacing:-63.987200pt;}
.ws0{word-spacing:-45.553664pt;}
.ws1{word-spacing:-45.516544pt;}
.ws33{word-spacing:-42.900480pt;}
.ws94{word-spacing:-41.611520pt;}
.ws13{word-spacing:-41.596672pt;}
.ws7{word-spacing:-41.492736pt;}
.ws45{word-spacing:-39.174400pt;}
.wsc{word-spacing:-39.168000pt;}
.ws10{word-spacing:-39.148800pt;}
.wsb{word-spacing:-39.142400pt;}
.wsf{word-spacing:-39.129600pt;}
.ws16{word-spacing:-39.123200pt;}
.ws8{word-spacing:-39.116800pt;}
.ws6{word-spacing:-39.110400pt;}
.ws3{word-spacing:-39.104000pt;}
.ws4f{word-spacing:-39.097600pt;}
.ws2c{word-spacing:-39.084800pt;}
.ws17{word-spacing:-39.078400pt;}
.ws18{word-spacing:-39.072000pt;}
.wsa{word-spacing:-39.065600pt;}
.ws47{word-spacing:-39.059200pt;}
.ws5b{word-spacing:-39.046400pt;}
.ws40{word-spacing:-35.584000pt;}
.ws39{word-spacing:-33.073152pt;}
.ws1e{word-spacing:-32.847360pt;}
.ws53{word-spacing:-32.680704pt;}
.ws24{word-spacing:-32.675328pt;}
.ws35{word-spacing:-32.669952pt;}
.ws34{word-spacing:-32.664576pt;}
.ws3a{word-spacing:-32.659200pt;}
.ws2f{word-spacing:-32.653824pt;}
.ws44{word-spacing:-32.648448pt;}
.ws3b{word-spacing:-32.643072pt;}
.ws15{word-spacing:-32.000000pt;}
.ws80{word-spacing:-31.993600pt;}
.ws6f{word-spacing:-29.890560pt;}
.ws6b{word-spacing:-29.729280pt;}
.ws70{word-spacing:-29.723904pt;}
.ws6a{word-spacing:-29.718528pt;}
.ws6e{word-spacing:-29.713152pt;}
.ws65{word-spacing:-29.707776pt;}
.wsd{word-spacing:-28.601600pt;}
.ws95{word-spacing:-28.204800pt;}
.ws5{word-spacing:-28.153600pt;}
.ws5f{word-spacing:-28.089600pt;}
.ws8e{word-spacing:-27.961600pt;}
.ws57{word-spacing:-27.776000pt;}
.ws38{word-spacing:-27.686400pt;}
.ws36{word-spacing:-27.379200pt;}
.ws2e{word-spacing:-27.104000pt;}
.ws62{word-spacing:-27.097600pt;}
.ws37{word-spacing:-26.950400pt;}
.ws43{word-spacing:-26.848000pt;}
.ws26{word-spacing:-26.841600pt;}
.ws1f{word-spacing:-26.713344pt;}
.ws3f{word-spacing:-26.707968pt;}
.ws20{word-spacing:-26.691840pt;}
.ws23{word-spacing:-26.681088pt;}
.ws4a{word-spacing:-26.585600pt;}
.ws29{word-spacing:-26.560000pt;}
.ws19{word-spacing:-26.438400pt;}
.ws42{word-spacing:-26.361600pt;}
.ws28{word-spacing:-26.028800pt;}
.ws12{word-spacing:-25.964928pt;}
.ws56{word-spacing:-25.945600pt;}
.ws11{word-spacing:-25.926912pt;}
.ws5a{word-spacing:-25.804800pt;}
.ws4c{word-spacing:-25.721600pt;}
.ws4b{word-spacing:-25.580800pt;}
.ws5e{word-spacing:-25.555200pt;}
.ws9{word-spacing:-25.516800pt;}
.ws14{word-spacing:-25.478400pt;}
.ws61{word-spacing:-25.081600pt;}
.ws60{word-spacing:-25.068800pt;}
.ws89{word-spacing:-24.345600pt;}
.ws41{word-spacing:-24.275200pt;}
.ws92{word-spacing:-24.019200pt;}
.ws50{word-spacing:-23.872000pt;}
.ws49{word-spacing:-23.360000pt;}
.ws2b{word-spacing:-23.001600pt;}
.ws3d{word-spacing:-22.611456pt;}
.ws3c{word-spacing:-22.428672pt;}
.ws32{word-spacing:-22.412544pt;}
.ws51{word-spacing:-22.374400pt;}
.ws8a{word-spacing:-21.932800pt;}
.ws52{word-spacing:-21.363200pt;}
.ws7d{word-spacing:-20.870400pt;}
.ws2d{word-spacing:-20.556800pt;}
.ws81{word-spacing:-20.364800pt;}
.ws54{word-spacing:-20.332800pt;}
.ws59{word-spacing:-20.307200pt;}
.ws48{word-spacing:-20.192000pt;}
.ws25{word-spacing:-19.737600pt;}
.ws21{word-spacing:-19.456000pt;}
.ws1a{word-spacing:-19.334400pt;}
.ws8b{word-spacing:-19.193600pt;}
.ws27{word-spacing:-18.924800pt;}
.ws30{word-spacing:-18.896640pt;}
.ws31{word-spacing:-18.885888pt;}
.ws8d{word-spacing:-18.368000pt;}
.ws87{word-spacing:-18.060800pt;}
.ws1d{word-spacing:-17.318400pt;}
.ws88{word-spacing:-17.241600pt;}
.ws93{word-spacing:-16.915200pt;}
.ws7e{word-spacing:-16.876800pt;}
.ws3e{word-spacing:-16.429056pt;}
.ws1c{word-spacing:-16.313600pt;}
.ws1b{word-spacing:-16.300800pt;}
.ws73{word-spacing:-15.993600pt;}
.ws8f{word-spacing:-15.904000pt;}
.ws7b{word-spacing:-15.187200pt;}
.ws76{word-spacing:-14.112000pt;}
.ws7c{word-spacing:-13.766400pt;}
.ws46{word-spacing:-13.715200pt;}
.ws82{word-spacing:-13.260800pt;}
.ws72{word-spacing:-13.192704pt;}
.ws22{word-spacing:-12.352000pt;}
.ws4e{word-spacing:-11.084800pt;}
.ws4d{word-spacing:-11.072000pt;}
.ws7f{word-spacing:-9.772800pt;}
.ws4{word-spacing:-7.673600pt;}
.wse{word-spacing:-0.064000pt;}
.ws2a{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws8c{word-spacing:5.593600pt;}
.ws67{word-spacing:12.794880pt;}
.ws66{word-spacing:15.617280pt;}
.ws91{word-spacing:17.907200pt;}
.ws85{word-spacing:20.166400pt;}
.ws86{word-spacing:27.276800pt;}
.ws7a{word-spacing:37.235200pt;}
.ws78{word-spacing:41.209600pt;}
.ws79{word-spacing:44.345600pt;}
.ws77{word-spacing:48.307200pt;}
.ws69{word-spacing:49.271040pt;}
.ws68{word-spacing:52.227840pt;}
.ws83{word-spacing:102.732800pt;}
.ws90{word-spacing:121.510400pt;}
.ws58{word-spacing:124.416000pt;}
.ws55{word-spacing:140.416000pt;}
.ws75{word-spacing:205.369600pt;}
.ws6c{word-spacing:205.594368pt;}
.ws6d{word-spacing:211.561728pt;}
.ws74{word-spacing:212.473600pt;}
.ws71{word-spacing:217.469952pt;}
.ws63{word-spacing:217.921600pt;}
.ws64{word-spacing:226.367232pt;}
.ws84{word-spacing:511.110400pt;}
._d{margin-left:-10.563840pt;}
._e{margin-left:-9.666048pt;}
._6{margin-left:-4.325888pt;}
._3{margin-left:-3.315712pt;}
._1{margin-left:-2.212096pt;}
._0{margin-left:-1.165568pt;}
._7{width:1.337600pt;}
._4{width:3.020800pt;}
._5{width:3.916800pt;}
._b{width:4.972800pt;}
._8{width:6.016000pt;}
._a{width:6.956800pt;}
._9{width:8.582400pt;}
._2{width:10.124800pt;}
._12{width:12.934400pt;}
._c{width:14.035200pt;}
._18{width:16.096000pt;}
._14{width:17.888000pt;}
._17{width:37.529600pt;}
._11{width:68.889600pt;}
._15{width:116.160000pt;}
._16{width:141.836800pt;}
._10{width:160.000000pt;}
._19{width:161.228800pt;}
._f{width:176.000000pt;}
._13{width:542.593600pt;}
.fs3{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:62.745067pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y235{bottom:40.981467pt;}
.y16{bottom:51.986933pt;}
.y233{bottom:69.781600pt;}
.y231{bottom:98.581600pt;}
.y2d3{bottom:100.305200pt;}
.y12{bottom:100.305467pt;}
.y210{bottom:102.226533pt;}
.y1b0{bottom:104.465600pt;}
.y40{bottom:104.785200pt;}
.ybd{bottom:107.985467pt;}
.y1cc{bottom:107.986800pt;}
.y305{bottom:109.265200pt;}
.y1e6{bottom:110.866400pt;}
.y2a7{bottom:111.185200pt;}
.y39a{bottom:111.826800pt;}
.y7b{bottom:112.145333pt;}
.y90{bottom:112.466800pt;}
.y1d{bottom:112.785200pt;}
.y33c{bottom:115.345467pt;}
.yac{bottom:115.665333pt;}
.y152{bottom:116.625200pt;}
.y61{bottom:116.626800pt;}
.y35d{bottom:116.945200pt;}
.y2e6{bottom:116.946800pt;}
.y168{bottom:117.905467pt;}
.y2d2{bottom:118.865200pt;}
.y106{bottom:119.185200pt;}
.y365{bottom:119.505467pt;}
.y227{bottom:119.826400pt;}
.y194{bottom:120.145200pt;}
.y11d{bottom:120.145333pt;}
.y23c{bottom:120.145467pt;}
.y132{bottom:120.465333pt;}
.y22e{bottom:121.425200pt;}
.y142{bottom:121.425333pt;}
.y2b1{bottom:121.426800pt;}
.yd5{bottom:122.705200pt;}
.yee{bottom:122.705467pt;}
.y27d{bottom:123.665600pt;}
.y1fa{bottom:127.186000pt;}
.y350{bottom:127.826800pt;}
.y28a{bottom:131.025600pt;}
.y1af{bottom:131.985600pt;}
.y322{bottom:132.625200pt;}
.y11{bottom:134.545467pt;}
.ybc{bottom:135.505467pt;}
.y1cb{bottom:135.506800pt;}
.y2d1{bottom:137.105200pt;}
.y25f{bottom:138.386133pt;}
.y2a6{bottom:138.705200pt;}
.y7a{bottom:139.665333pt;}
.y22d{bottom:139.985200pt;}
.y8f{bottom:139.986800pt;}
.y3f{bottom:140.945200pt;}
.y35c{bottom:141.265200pt;}
.y33b{bottom:142.865467pt;}
.yab{bottom:143.185333pt;}
.y304{bottom:143.825200pt;}
.y151{bottom:144.465200pt;}
.y60{bottom:144.466800pt;}
.y167{bottom:145.425467pt;}
.y20f{bottom:145.746533pt;}
.y105{bottom:146.705200pt;}
.y364{bottom:147.025467pt;}
.y1c{bottom:147.345328pt;}
.y226{bottom:147.346400pt;}
.y193{bottom:147.665200pt;}
.y11c{bottom:147.665333pt;}
.y23b{bottom:147.665467pt;}
.y131{bottom:147.985333pt;}
.y241{bottom:148.945200pt;}
.y141{bottom:148.945333pt;}
.y2b0{bottom:148.946800pt;}
.yd4{bottom:150.225200pt;}
.yed{bottom:150.225467pt;}
.y27c{bottom:151.185600pt;}
.y399{bottom:151.186800pt;}
.y2e5{bottom:153.746800pt;}
.y1e5{bottom:154.386400pt;}
.y1f9{bottom:155.026000pt;}
.y2d0{bottom:155.665200pt;}
.y22c{bottom:158.865200pt;}
.y1ae{bottom:159.505600pt;}
.y321{bottom:159.825200pt;}
.y303{bottom:162.385200pt;}
.y1ca{bottom:163.026800pt;}
.ybb{bottom:163.345467pt;}
.y25e{bottom:166.226133pt;}
.y37f{bottom:166.866800pt;}
.y3e{bottom:167.186800pt;}
.y79{bottom:167.505333pt;}
.y8e{bottom:167.506800pt;}
.y10{bottom:169.105467pt;}
.y179{bottom:169.745141pt;}
.y33a{bottom:170.385467pt;}
.yaa{bottom:170.705333pt;}
.y34f{bottom:171.346800pt;}
.y150{bottom:171.985200pt;}
.y5f{bottom:171.986800pt;}
.y2e4{bottom:172.306800pt;}
.y166{bottom:172.945467pt;}
.y289{bottom:173.265600pt;}
.y20e{bottom:173.266533pt;}
.y2cf{bottom:173.905200pt;}
.y104{bottom:174.225200pt;}
.y363{bottom:174.865467pt;}
.y225{bottom:174.866400pt;}
.y11b{bottom:175.505333pt;}
.y23a{bottom:175.505467pt;}
.y192{bottom:175.505733pt;}
.y130{bottom:175.825333pt;}
.y240{bottom:176.465200pt;}
.y140{bottom:176.465333pt;}
.y2af{bottom:176.466800pt;}
.yd3{bottom:177.745200pt;}
.yec{bottom:177.745467pt;}
.y27b{bottom:178.705600pt;}
.y2a5{bottom:179.025600pt;}
.y398{bottom:179.026800pt;}
.y302{bottom:180.625200pt;}
.y22b{bottom:183.505867pt;}
.y1b{bottom:186.065200pt;}
.y1ad{bottom:187.025600pt;}
.y320{bottom:187.345200pt;}
.y2e3{bottom:190.546800pt;}
.yba{bottom:190.865467pt;}
.y38f{bottom:190.866800pt;}
.y178{bottom:192.785333pt;}
.y25d{bottom:193.746133pt;}
.y78{bottom:195.026533pt;}
.y3d{bottom:195.026800pt;}
.y1e4{bottom:198.226400pt;}
.ya9{bottom:198.545333pt;}
.y35b{bottom:198.545600pt;}
.y1f8{bottom:198.546000pt;}
.y14f{bottom:199.505333pt;}
.y5e{bottom:199.506800pt;}
.y165{bottom:200.785467pt;}
.y20d{bottom:200.786533pt;}
.y103{bottom:201.745200pt;}
.y171{bottom:201.745467pt;}
.y36a{bottom:202.065467pt;}
.y362{bottom:202.385467pt;}
.y224{bottom:202.386400pt;}
.y11a{bottom:203.025333pt;}
.y239{bottom:203.025467pt;}
.y191{bottom:203.025733pt;}
.y12f{bottom:203.345333pt;}
.yf{bottom:203.345467pt;}
.y23f{bottom:203.985200pt;}
.y13f{bottom:203.985333pt;}
.y2ae{bottom:203.986800pt;}
.yd2{bottom:205.265333pt;}
.yeb{bottom:205.265467pt;}
.y31f{bottom:206.225200pt;}
.y27a{bottom:206.545600pt;}
.y37e{bottom:206.546800pt;}
.y1c9{bottom:206.866800pt;}
.y2e2{bottom:209.106800pt;}
.y1a{bottom:210.385333pt;}
.y1ac{bottom:214.865600pt;}
.y34e{bottom:214.866800pt;}
.y288{bottom:215.505600pt;}
.y177{bottom:215.825333pt;}
.yb9{bottom:218.385467pt;}
.y38e{bottom:218.386800pt;}
.y25c{bottom:221.266133pt;}
.y3c{bottom:222.546800pt;}
.y8d{bottom:222.866800pt;}
.y339{bottom:223.505467pt;}
.y77{bottom:223.826533pt;}
.y301{bottom:224.145333pt;}
.y31e{bottom:224.465333pt;}
.y1e3{bottom:225.746400pt;}
.ya8{bottom:226.065333pt;}
.y35a{bottom:226.385600pt;}
.y14e{bottom:227.025333pt;}
.y5d{bottom:227.026800pt;}
.y2e1{bottom:227.346800pt;}
.y164{bottom:228.305467pt;}
.y102{bottom:229.585333pt;}
.y170{bottom:229.585467pt;}
.y361{bottom:229.905467pt;}
.y223{bottom:230.226400pt;}
.y119{bottom:230.545333pt;}
.y238{bottom:230.545467pt;}
.y190{bottom:230.545733pt;}
.y12e{bottom:230.865333pt;}
.y19{bottom:231.505333pt;}
.y13e{bottom:231.825333pt;}
.y23e{bottom:231.825600pt;}
.y2ad{bottom:231.826800pt;}
.yd1{bottom:233.105467pt;}
.y279{bottom:234.065600pt;}
.y37d{bottom:234.066800pt;}
.y2a4{bottom:234.385600pt;}
.ye{bottom:237.905467pt;}
.y176{bottom:238.865141pt;}
.y2cc{bottom:242.065333pt;}
.y338{bottom:242.065467pt;}
.y1f7{bottom:242.066000pt;}
.y1ab{bottom:242.385600pt;}
.ya7{bottom:243.985333pt;}
.y20c{bottom:244.626533pt;}
.yb8{bottom:245.905467pt;}
.y2e0{bottom:245.906800pt;}
.y397{bottom:246.226800pt;}
.y25b{bottom:248.786133pt;}
.y3b{bottom:250.066800pt;}
.y8c{bottom:250.386800pt;}
.y76{bottom:251.346533pt;}
.y18{bottom:252.625333pt;}
.y359{bottom:253.905600pt;}
.y5c{bottom:254.866800pt;}
.y360{bottom:255.505467pt;}
.y163{bottom:255.825467pt;}
.y101{bottom:257.105467pt;}
.y369{bottom:257.425467pt;}
.y287{bottom:257.745600pt;}
.y222{bottom:257.746400pt;}
.y1a1{bottom:258.065467pt;}
.y118{bottom:258.065600pt;}
.y18f{bottom:258.065733pt;}
.y38d{bottom:258.066800pt;}
.y12d{bottom:258.385467pt;}
.y34d{bottom:258.386800pt;}
.ya6{bottom:259.345333pt;}
.y23d{bottom:259.345600pt;}
.y2ac{bottom:259.346800pt;}
.yea{bottom:260.625333pt;}
.yd0{bottom:260.625600pt;}
.y278{bottom:261.585600pt;}
.y37c{bottom:261.586800pt;}
.y175{bottom:261.905333pt;}
.y2a3{bottom:261.905600pt;}
.y2df{bottom:264.146800pt;}
.y2cb{bottom:264.785467pt;}
.y300{bottom:267.665467pt;}
.y1e2{bottom:269.266400pt;}
.y1aa{bottom:269.905600pt;}
.yd{bottom:272.145467pt;}
.yb7{bottom:273.745467pt;}
.y14d{bottom:275.665467pt;}
.y25a{bottom:276.626133pt;}
.y3a{bottom:277.586800pt;}
.y8b{bottom:277.906800pt;}
.y17{bottom:279.185467pt;}
.y75{bottom:280.146533pt;}
.y35f{bottom:280.465467pt;}
.ya5{bottom:281.105867pt;}
.y358{bottom:281.425600pt;}
.y5b{bottom:282.386800pt;}
.y2de{bottom:282.706800pt;}
.y162{bottom:283.345467pt;}
.y100{bottom:284.625467pt;}
.y368{bottom:284.945467pt;}
.y337{bottom:285.265467pt;}
.y221{bottom:285.266400pt;}
.y230{bottom:285.478667pt;}
.y286{bottom:285.585600pt;}
.y1f6{bottom:285.586000pt;}
.y38c{bottom:285.586800pt;}
.y1a0{bottom:285.905467pt;}
.y117{bottom:285.905600pt;}
.y18e{bottom:285.905733pt;}
.y12c{bottom:286.225467pt;}
.y13d{bottom:286.865600pt;}
.y2ab{bottom:286.866800pt;}
.y2ca{bottom:287.825408pt;}
.y2ce{bottom:287.825845pt;}
.ye9{bottom:288.145467pt;}
.ycf{bottom:288.145600pt;}
.y20b{bottom:288.146533pt;}
.y277{bottom:289.105600pt;}
.y37b{bottom:289.426800pt;}
.y2ff{bottom:295.185467pt;}
.y31d{bottom:295.505467pt;}
.y1a9{bottom:297.425600pt;}
.y237{bottom:298.385467pt;}
.y14c{bottom:298.705467pt;}
.y2dd{bottom:300.946800pt;}
.yb6{bottom:301.265467pt;}
.y2a2{bottom:302.225600pt;}
.y34c{bottom:302.226800pt;}
.y39{bottom:305.426800pt;}
.y74{bottom:307.666533pt;}
.y357{bottom:308.945600pt;}
.y5a{bottom:309.906800pt;}
.y2c9{bottom:310.865600pt;}
.y2cd{bottom:310.866037pt;}
.y161{bottom:311.185467pt;}
.yff{bottom:312.145600pt;}
.y16f{bottom:312.145733pt;}
.y367{bottom:312.465467pt;}
.y336{bottom:312.785600pt;}
.y1e1{bottom:312.786400pt;}
.y285{bottom:313.105600pt;}
.y19f{bottom:313.425467pt;}
.y116{bottom:313.425600pt;}
.y18d{bottom:313.425733pt;}
.y12b{bottom:313.745600pt;}
.y13c{bottom:314.385600pt;}
.y2aa{bottom:314.386800pt;}
.ye8{bottom:315.665467pt;}
.yce{bottom:315.665600pt;}
.y20a{bottom:315.666533pt;}
.y276{bottom:316.945600pt;}
.y259{bottom:316.946133pt;}
.y37a{bottom:316.946800pt;}
.yc{bottom:318.225467pt;}
.y2dc{bottom:319.506800pt;}
.y14b{bottom:321.745408pt;}
.y2fe{bottom:322.705600pt;}
.y31c{bottom:323.025600pt;}
.y1a8{bottom:325.265600pt;}
.y38b{bottom:325.266800pt;}
.y236{bottom:326.225467pt;}
.yb5{bottom:328.785733pt;}
.y1f5{bottom:329.426000pt;}
.y2a1{bottom:329.745600pt;}
.y38{bottom:332.946800pt;}
.y8a{bottom:333.266800pt;}
.y73{bottom:336.466533pt;}
.y356{bottom:336.785600pt;}
.y59{bottom:337.426800pt;}
.y160{bottom:338.705600pt;}
.yfe{bottom:339.985600pt;}
.y16e{bottom:339.985733pt;}
.y366{bottom:340.305600pt;}
.y284{bottom:340.625600pt;}
.y220{bottom:340.626400pt;}
.y115{bottom:340.945600pt;}
.y18c{bottom:340.945733pt;}
.y12a{bottom:341.265600pt;}
.y13b{bottom:342.225600pt;}
.y2a9{bottom:342.226800pt;}
.ycd{bottom:343.505600pt;}
.y275{bottom:344.465867pt;}
.y258{bottom:344.466133pt;}
.y379{bottom:344.466800pt;}
.y14a{bottom:344.785600pt;}
.y34b{bottom:345.746800pt;}
.y2db{bottom:346.706800pt;}
.y2fd{bottom:350.225600pt;}
.y1a7{bottom:352.785733pt;}
.y38a{bottom:352.786800pt;}
.y234{bottom:355.025600pt;}
.yb4{bottom:356.305733pt;}
.y2c8{bottom:356.625088pt;}
.y335{bottom:356.625600pt;}
.y1e0{bottom:356.626400pt;}
.y1f4{bottom:356.946000pt;}
.y2a0{bottom:357.265600pt;}
.yb{bottom:357.585733pt;}
.y209{bottom:359.186533pt;}
.y283{bottom:359.505600pt;}
.y37{bottom:360.466800pt;}
.y89{bottom:360.786800pt;}
.y72{bottom:364.306533pt;}
.y58{bottom:365.266800pt;}
.y15f{bottom:366.225600pt;}
.y31b{bottom:366.545600pt;}
.yfd{bottom:367.505600pt;}
.y16d{bottom:367.505733pt;}
.y21f{bottom:368.146400pt;}
.y19e{bottom:368.465600pt;}
.y18b{bottom:368.465733pt;}
.y114{bottom:368.465867pt;}
.y13a{bottom:369.745600pt;}
.y149{bottom:369.746000pt;}
.y2a8{bottom:369.746800pt;}
.ycc{bottom:370.065600pt;}
.ye7{bottom:371.025600pt;}
.y274{bottom:371.985867pt;}
.y257{bottom:371.986133pt;}
.y2da{bottom:374.226800pt;}
.ya{bottom:376.145733pt;}
.y1c8{bottom:376.786800pt;}
.y282{bottom:377.745600pt;}
.y2c7{bottom:379.665280pt;}
.y2c6{bottom:379.665600pt;}
.y1a6{bottom:380.305733pt;}
.y389{bottom:380.626800pt;}
.y232{bottom:383.825600pt;}
.y22f{bottom:384.060267pt;}
.yb3{bottom:384.145733pt;}
.y378{bottom:384.146800pt;}
.y1f3{bottom:384.466000pt;}
.y29f{bottom:384.785600pt;}
.y2fc{bottom:385.105600pt;}
.y129{bottom:385.424907pt;}
.y36{bottom:387.986800pt;}
.y88{bottom:388.306800pt;}
.y34a{bottom:389.266800pt;}
.y71{bottom:392.786533pt;}
.y57{bottom:392.786800pt;}
.y15e{bottom:393.745867pt;}
.y31a{bottom:394.065600pt;}
.yfc{bottom:395.025733pt;}
.y21e{bottom:395.666400pt;}
.y19d{bottom:396.305600pt;}
.y18a{bottom:396.305733pt;}
.y113{bottom:396.305867pt;}
.y139{bottom:397.265600pt;}
.y148{bottom:397.266000pt;}
.ycb{bottom:397.266800pt;}
.ye6{bottom:398.545600pt;}
.y273{bottom:399.505867pt;}
.y256{bottom:399.506133pt;}
.y1df{bottom:400.146400pt;}
.y281{bottom:401.746267pt;}
.y2d9{bottom:402.066800pt;}
.y2c5{bottom:402.385600pt;}
.y208{bottom:403.026533pt;}
.y2fb{bottom:403.345733pt;}
.y1f2{bottom:403.346000pt;}
.y1a5{bottom:407.825733pt;}
.y388{bottom:408.146800pt;}
.y128{bottom:408.465099pt;}
.y1c7{bottom:411.346800pt;}
.yb2{bottom:411.665733pt;}
.y29e{bottom:412.625600pt;}
.y35{bottom:415.826800pt;}
.y70{bottom:420.306533pt;}
.y56{bottom:420.306800pt;}
.y15d{bottom:421.585867pt;}
.y319{bottom:421.905733pt;}
.y2fa{bottom:421.905867pt;}
.yfb{bottom:422.545600pt;}
.y21d{bottom:423.186400pt;}
.y189{bottom:423.825733pt;}
.y112{bottom:423.825867pt;}
.y377{bottom:423.826800pt;}
.y9{bottom:424.468496pt;}
.y138{bottom:424.785867pt;}
.y147{bottom:424.786000pt;}
.yca{bottom:424.786800pt;}
.y2c4{bottom:425.425733pt;}
.ye5{bottom:426.065733pt;}
.y272{bottom:427.025867pt;}
.y255{bottom:427.026133pt;}
.y334{bottom:427.665733pt;}
.y2d8{bottom:429.586800pt;}
.y1c6{bottom:429.906800pt;}
.y207{bottom:430.546533pt;}
.y127{bottom:431.505291pt;}
.y349{bottom:432.786800pt;}
.y1a4{bottom:435.665733pt;}
.y387{bottom:435.666800pt;}
.yb1{bottom:439.185733pt;}
.y29d{bottom:440.145867pt;}
.y22a{bottom:440.785867pt;}
.y34{bottom:443.346800pt;}
.y1de{bottom:443.666400pt;}
.y87{bottom:443.666800pt;}
.y1f1{bottom:446.546000pt;}
.y6f{bottom:447.826533pt;}
.y55{bottom:447.826800pt;}
.y1c5{bottom:448.146800pt;}
.y2c3{bottom:448.465867pt;}
.y15c{bottom:449.105867pt;}
.y318{bottom:449.425867pt;}
.yfa{bottom:450.065733pt;}
.y16c{bottom:450.066000pt;}
.y21c{bottom:451.026400pt;}
.y111{bottom:451.345867pt;}
.y188{bottom:451.346000pt;}
.y376{bottom:451.346800pt;}
.y137{bottom:452.625867pt;}
.y146{bottom:452.626000pt;}
.yc9{bottom:452.626800pt;}
.y1a3{bottom:453.585867pt;}
.ye4{bottom:453.905867pt;}
.y126{bottom:454.545483pt;}
.y271{bottom:454.865867pt;}
.y254{bottom:454.866133pt;}
.y333{bottom:455.185733pt;}
.y2d7{bottom:457.106800pt;}
.y2f9{bottom:458.705867pt;}
.y229{bottom:459.025867pt;}
.yb0{bottom:466.705867pt;}
.y1c4{bottom:466.706800pt;}
.y29c{bottom:467.665867pt;}
.y33{bottom:470.866800pt;}
.y1dd{bottom:471.186400pt;}
.y86{bottom:471.186800pt;}
.y2c2{bottom:471.505867pt;}
.y8{bottom:472.787600pt;}
.y1f0{bottom:474.066000pt;}
.y206{bottom:474.066533pt;}
.y1a2{bottom:475.026800pt;}
.y386{bottom:475.346800pt;}
.y6e{bottom:475.666533pt;}
.y54{bottom:475.666800pt;}
.y15b{bottom:476.625867pt;}
.y348{bottom:476.626800pt;}
.y2f8{bottom:476.945867pt;}
.y125{bottom:477.585675pt;}
.yf9{bottom:477.905867pt;}
.y16b{bottom:477.906000pt;}
.y21b{bottom:478.546400pt;}
.y110{bottom:478.865867pt;}
.y187{bottom:478.866000pt;}
.ya4{bottom:480.145867pt;}
.y145{bottom:480.146000pt;}
.yc8{bottom:480.146800pt;}
.ye3{bottom:481.425867pt;}
.y270{bottom:482.385867pt;}
.y253{bottom:482.386133pt;}
.y2d6{bottom:484.626800pt;}
.y375{bottom:491.026800pt;}
.y317{bottom:492.945867pt;}
.y1c3{bottom:493.906800pt;}
.yaf{bottom:494.545867pt;}
.y2f7{bottom:495.505867pt;}
.y32{bottom:498.386800pt;}
.y85{bottom:498.706800pt;}
.y332{bottom:499.025867pt;}
.y1dc{bottom:499.026400pt;}
.y124{bottom:500.625867pt;}
.y1ef{bottom:501.586000pt;}
.y228{bottom:502.546800pt;}
.y385{bottom:502.866800pt;}
.y6d{bottom:503.186533pt;}
.y53{bottom:503.186800pt;}
.y15a{bottom:504.146000pt;}
.yf8{bottom:505.745867pt;}
.y21a{bottom:506.066400pt;}
.y10f{bottom:506.705867pt;}
.y16a{bottom:506.706000pt;}
.ya3{bottom:507.665867pt;}
.y144{bottom:507.666000pt;}
.yc7{bottom:507.666800pt;}
.y29b{bottom:507.986400pt;}
.ye2{bottom:508.945867pt;}
.y26f{bottom:509.905867pt;}
.y252{bottom:509.906133pt;}
.y2d5{bottom:512.466800pt;}
.y2f6{bottom:513.746000pt;}
.y31{bottom:517.266800pt;}
.y2c1{bottom:517.586000pt;}
.y205{bottom:517.586533pt;}
.y374{bottom:518.546800pt;}
.yae{bottom:519.825867pt;}
.y347{bottom:520.146800pt;}
.y316{bottom:520.465867pt;}
.y7{bottom:521.106704pt;}
.y1c2{bottom:521.426800pt;}
.y354{bottom:525.586000pt;}
.y84{bottom:526.226800pt;}
.y331{bottom:526.546000pt;}
.y1db{bottom:526.546400pt;}
.y6c{bottom:530.706533pt;}
.y52{bottom:530.706800pt;}
.y19c{bottom:531.985808pt;}
.y159{bottom:531.986000pt;}
.y2f5{bottom:532.306000pt;}
.y219{bottom:533.586400pt;}
.yf7{bottom:534.226000pt;}
.ya2{bottom:535.186000pt;}
.yc6{bottom:535.186800pt;}
.y29a{bottom:535.506400pt;}
.y30{bottom:535.506800pt;}
.ye1{bottom:536.466000pt;}
.y26e{bottom:537.426000pt;}
.y251{bottom:537.426133pt;}
.y2d4{bottom:539.986800pt;}
.y1c1{bottom:540.306800pt;}
.y2c0{bottom:540.625680pt;}
.y384{bottom:542.546800pt;}
.yad{bottom:542.865867pt;}
.y123{bottom:544.145867pt;}
.y1ee{bottom:545.426000pt;}
.y204{bottom:545.426533pt;}
.y315{bottom:548.306000pt;}
.y2f4{bottom:550.546000pt;}
.y6{bottom:553.106000pt;}
.y355{bottom:553.426000pt;}
.y330{bottom:554.066000pt;}
.y2f{bottom:554.066800pt;}
.y19b{bottom:555.026000pt;}
.y6b{bottom:558.226533pt;}
.y51{bottom:558.226800pt;}
.y158{bottom:560.466000pt;}
.y218{bottom:561.426400pt;}
.yf6{bottom:561.746000pt;}
.y169{bottom:562.066800pt;}
.ya1{bottom:563.026000pt;}
.y174{bottom:563.026267pt;}
.y299{bottom:563.026400pt;}
.yc5{bottom:563.026800pt;}
.y2bf{bottom:563.346000pt;}
.y346{bottom:563.666800pt;}
.ye0{bottom:564.306000pt;}
.y26d{bottom:565.266000pt;}
.y250{bottom:565.266133pt;}
.y1c0{bottom:567.506800pt;}
.y1da{bottom:570.066400pt;}
.y383{bottom:570.066800pt;}
.y122{bottom:571.986000pt;}
.y1ed{bottom:572.946000pt;}
.y19a{bottom:578.065557pt;}
.y2e{bottom:581.266800pt;}
.y32f{bottom:581.586000pt;}
.y83{bottom:581.586800pt;}
.y6a{bottom:586.066533pt;}
.y50{bottom:586.066800pt;}
.y157{bottom:588.306000pt;}
.y217{bottom:588.946400pt;}
.y203{bottom:588.946533pt;}
.yf5{bottom:589.266000pt;}
.y186{bottom:589.266267pt;}
.y5{bottom:589.906267pt;}
.ya0{bottom:590.546000pt;}
.y136{bottom:590.546133pt;}
.y173{bottom:590.546267pt;}
.yc4{bottom:590.546800pt;}
.ydf{bottom:590.866000pt;}
.y298{bottom:590.866400pt;}
.y314{bottom:591.826000pt;}
.y24f{bottom:592.786133pt;}
.y26c{bottom:592.786400pt;}
.y2f3{bottom:594.066000pt;}
.y1bf{bottom:595.026800pt;}
.y1d9{bottom:597.586400pt;}
.y373{bottom:597.586800pt;}
.y121{bottom:599.506267pt;}
.y199{bottom:601.105749pt;}
.y345{bottom:607.186800pt;}
.y2d{bottom:608.786800pt;}
.y32e{bottom:609.426000pt;}
.y382{bottom:609.746800pt;}
.y69{bottom:613.586533pt;}
.y4f{bottom:613.586800pt;}
.y156{bottom:615.826133pt;}
.y1ec{bottom:616.466800pt;}
.yf4{bottom:617.106133pt;}
.y185{bottom:617.106267pt;}
.yde{bottom:618.066133pt;}
.y9f{bottom:618.066267pt;}
.yc3{bottom:618.066800pt;}
.y313{bottom:619.346133pt;}
.y24e{bottom:620.306133pt;}
.y26b{bottom:620.306400pt;}
.y2f2{bottom:621.586133pt;}
.y1be{bottom:622.546800pt;}
.y198{bottom:624.145941pt;}
.y4{bottom:624.146267pt;}
.y82{bottom:625.106800pt;}
.y1d8{bottom:625.426400pt;}
.y372{bottom:625.426800pt;}
.y120{bottom:627.026267pt;}
.y297{bottom:631.186400pt;}
.y216{bottom:632.466400pt;}
.y202{bottom:632.466533pt;}
.y2c{bottom:636.626800pt;}
.y381{bottom:637.266800pt;}
.y68{bottom:641.106533pt;}
.y4e{bottom:641.106800pt;}
.y2bd{bottom:642.705883pt;}
.y2be{bottom:642.706133pt;}
.y155{bottom:643.666267pt;}
.y32d{bottom:643.986267pt;}
.yf3{bottom:644.626133pt;}
.y184{bottom:644.626267pt;}
.ydd{bottom:645.586133pt;}
.y9e{bottom:645.586267pt;}
.yc2{bottom:645.586800pt;}
.y312{bottom:646.866133pt;}
.y197{bottom:647.186133pt;}
.y24d{bottom:647.826133pt;}
.y26a{bottom:647.826400pt;}
.y1bd{bottom:650.386800pt;}
.y344{bottom:651.026800pt;}
.y81{bottom:652.626800pt;}
.y1d7{bottom:652.946400pt;}
.y11f{bottom:654.866267pt;}
.y3{bottom:658.706267pt;}
.y296{bottom:658.706400pt;}
.y215{bottom:659.986400pt;}
.y1eb{bottom:659.986800pt;}
.y32c{bottom:662.546267pt;}
.y2b{bottom:664.146800pt;}
.y371{bottom:664.786800pt;}
.y2f1{bottom:665.106133pt;}
.y2bc{bottom:665.746075pt;}
.y67{bottom:668.626533pt;}
.y4d{bottom:668.626800pt;}
.yf2{bottom:672.146133pt;}
.y154{bottom:672.146267pt;}
.y196{bottom:672.146533pt;}
.y10e{bottom:672.466267pt;}
.ydc{bottom:673.426133pt;}
.y9d{bottom:673.426267pt;}
.yc1{bottom:673.426800pt;}
.y311{bottom:674.706267pt;}
.y24c{bottom:675.666133pt;}
.y269{bottom:675.666400pt;}
.y201{bottom:675.986533pt;}
.y1bc{bottom:677.906800pt;}
.y80{bottom:680.146800pt;}
.y1d6{bottom:680.466400pt;}
.y32b{bottom:680.786267pt;}
.y295{bottom:686.226400pt;}
.y214{bottom:687.826400pt;}
.y2bb{bottom:688.786267pt;}
.y2a{bottom:691.666800pt;}
.y2f0{bottom:692.626267pt;}
.y396{bottom:692.626800pt;}
.y2{bottom:692.946267pt;}
.y310{bottom:693.266267pt;}
.y343{bottom:694.546800pt;}
.y66{bottom:696.146533pt;}
.y4c{bottom:696.146800pt;}
.y32a{bottom:699.346267pt;}
.y153{bottom:699.666267pt;}
.yf1{bottom:699.666400pt;}
.y195{bottom:699.666533pt;}
.y9c{bottom:700.946267pt;}
.yc0{bottom:700.946800pt;}
.y268{bottom:703.186400pt;}
.y200{bottom:703.826533pt;}
.y1ea{bottom:703.826800pt;}
.y370{bottom:704.466800pt;}
.y1bb{bottom:705.426800pt;}
.y1d5{bottom:707.986400pt;}
.y7f{bottom:707.986800pt;}
.y30f{bottom:711.826267pt;}
.y294{bottom:713.746400pt;}
.y24b{bottom:715.986800pt;}
.y29{bottom:719.186800pt;}
.y353{bottom:719.506667pt;}
.y395{bottom:720.146800pt;}
.y2ef{bottom:720.466267pt;}
.y1{bottom:723.986267pt;}
.y65{bottom:723.986533pt;}
.y4b{bottom:723.986800pt;}
.y10d{bottom:726.546267pt;}
.y183{bottom:727.186533pt;}
.yf0{bottom:727.506400pt;}
.y9b{bottom:728.466267pt;}
.y11e{bottom:728.466400pt;}
.y172{bottom:728.466533pt;}
.ybf{bottom:728.466800pt;}
.y30e{bottom:730.066267pt;}
.y280{bottom:730.706267pt;}
.y267{bottom:730.706400pt;}
.y213{bottom:731.346400pt;}
.y1ff{bottom:731.346533pt;}
.y1e9{bottom:731.346800pt;}
.y36f{bottom:731.986800pt;}
.y1ba{bottom:732.946800pt;}
.y7e{bottom:735.506800pt;}
.y1d4{bottom:735.826400pt;}
.y342{bottom:738.066800pt;}
.y293{bottom:741.266400pt;}
.y24a{bottom:743.506800pt;}
.y352{bottom:744.786667pt;}
.y329{bottom:745.106267pt;}
.y2ba{bottom:746.066267pt;}
.y28{bottom:747.026800pt;}
.y30d{bottom:748.626400pt;}
.y10c{bottom:749.586400pt;}
.y64{bottom:751.506533pt;}
.y4a{bottom:751.506800pt;}
.y182{bottom:755.026533pt;}
.y9a{bottom:755.986267pt;}
.yef{bottom:755.986400pt;}
.y135{bottom:755.986533pt;}
.ybe{bottom:755.986800pt;}
.y266{bottom:758.226400pt;}
.y27f{bottom:758.226533pt;}
.y212{bottom:758.866400pt;}
.y36e{bottom:759.826800pt;}
.y1b9{bottom:760.786800pt;}
.y7d{bottom:763.026800pt;}
.y1d3{bottom:763.346400pt;}
.y328{bottom:763.666400pt;}
.y2ee{bottom:763.986267pt;}
.y30c{bottom:766.866400pt;}
.y292{bottom:769.106400pt;}
.y249{bottom:771.026800pt;}
.y380{bottom:771.666800pt;}
.y10b{bottom:772.306400pt;}
.y27{bottom:774.546800pt;}
.y1fe{bottom:774.866533pt;}
.y1e8{bottom:774.866800pt;}
.y63{bottom:779.026533pt;}
.y49{bottom:779.026800pt;}
.y341{bottom:781.586800pt;}
.y181{bottom:782.546533pt;}
.ydb{bottom:783.826400pt;}
.y134{bottom:783.826533pt;}
.y99{bottom:783.826800pt;}
.y30b{bottom:785.746400pt;}
.y265{bottom:786.066400pt;}
.y27e{bottom:786.066533pt;}
.y394{bottom:787.346800pt;}
.y1b8{bottom:788.306800pt;}
.y7c{bottom:790.546800pt;}
.y1d2{bottom:790.866800pt;}
.y2ed{bottom:791.506400pt;}
.y2b9{bottom:791.826400pt;}
.y10a{bottom:795.346400pt;}
.y291{bottom:796.626533pt;}
.y248{bottom:798.546800pt;}
.y36d{bottom:799.186800pt;}
.y26{bottom:802.066800pt;}
.y1fd{bottom:802.386533pt;}
.y211{bottom:802.386800pt;}
.y30a{bottom:804.946400pt;}
.y62{bottom:806.546533pt;}
.y48{bottom:806.546800pt;}
.y327{bottom:806.866667pt;}
.y180{bottom:810.066533pt;}
.yda{bottom:811.346400pt;}
.y133{bottom:811.346533pt;}
.y98{bottom:811.346800pt;}
.y264{bottom:813.586533pt;}
.y2b8{bottom:814.866400pt;}
.y393{bottom:814.866800pt;}
.y1b7{bottom:815.826800pt;}
.y109{bottom:818.386533pt;}
.y1d1{bottom:818.386800pt;}
.y2ec{bottom:819.026533pt;}
.y309{bottom:823.186533pt;}
.y290{bottom:824.146533pt;}
.y340{bottom:825.426800pt;}
.y247{bottom:826.066800pt;}
.y36c{bottom:827.026800pt;}
.y25{bottom:829.586800pt;}
.y326{bottom:834.386667pt;}
.y47{bottom:834.386800pt;}
.y17f{bottom:837.586533pt;}
.y2b7{bottom:837.906533pt;}
.yd9{bottom:838.866533pt;}
.y143{bottom:838.866667pt;}
.y97{bottom:838.866800pt;}
.y263{bottom:841.106533pt;}
.y108{bottom:841.426533pt;}
.y308{bottom:841.746533pt;}
.y392{bottom:842.386800pt;}
.y1b6{bottom:843.346800pt;}
.y1fc{bottom:846.226533pt;}
.y1d0{bottom:846.226800pt;}
.y2eb{bottom:846.866533pt;}
.y28f{bottom:851.666667pt;}
.y246{bottom:853.906800pt;}
.y36b{bottom:854.546800pt;}
.y24{bottom:857.426800pt;}
.y307{bottom:859.986533pt;}
.y2b6{bottom:860.946475pt;}
.y46{bottom:861.906800pt;}
.y325{bottom:862.226667pt;}
.y17e{bottom:865.426800pt;}
.yd8{bottom:866.386533pt;}
.y107{bottom:866.386667pt;}
.y96{bottom:866.386800pt;}
.y262{bottom:868.626667pt;}
.y33f{bottom:868.946800pt;}
.y1b5{bottom:871.186800pt;}
.y1fb{bottom:873.746533pt;}
.y1e7{bottom:873.746800pt;}
.y306{bottom:878.546667pt;}
.y28e{bottom:879.506667pt;}
.y245{bottom:881.426800pt;}
.y391{bottom:882.066800pt;}
.y2b5{bottom:883.986667pt;}
.y23{bottom:884.946800pt;}
.y45{bottom:889.426800pt;}
.y1cf{bottom:889.746800pt;}
.y2ea{bottom:890.386533pt;}
.y17d{bottom:892.946800pt;}
.yd7{bottom:894.226667pt;}
.y95{bottom:894.226800pt;}
.y261{bottom:896.466667pt;}
.y33e{bottom:896.466800pt;}
.y1b4{bottom:898.706800pt;}
.y324{bottom:905.746667pt;}
.y28d{bottom:907.026667pt;}
.y244{bottom:908.946800pt;}
.y390{bottom:909.586800pt;}
.y22{bottom:912.466800pt;}
.y44{bottom:916.946800pt;}
.y1ce{bottom:917.266800pt;}
.y2e9{bottom:917.906800pt;}
.y17c{bottom:920.466800pt;}
.yd6{bottom:921.746667pt;}
.y94{bottom:921.746800pt;}
.y1b3{bottom:926.226800pt;}
.y2b4{bottom:931.666667pt;}
.y323{bottom:933.266667pt;}
.y28c{bottom:934.546667pt;}
.y243{bottom:936.466800pt;}
.y21{bottom:939.986800pt;}
.y351{bottom:944.786667pt;}
.y43{bottom:944.786800pt;}
.y2e8{bottom:945.426800pt;}
.y17b{bottom:947.986800pt;}
.y93{bottom:949.266800pt;}
.y35e{bottom:951.826800pt;}
.y1b2{bottom:953.746800pt;}
.y2b3{bottom:958.866800pt;}
.y1cd{bottom:960.786800pt;}
.y28b{bottom:962.066800pt;}
.y242{bottom:964.306800pt;}
.y20{bottom:967.826800pt;}
.y33d{bottom:970.066549pt;}
.y42{bottom:972.306800pt;}
.y17a{bottom:975.826800pt;}
.y92{bottom:976.786800pt;}
.y2b2{bottom:977.106800pt;}
.y2e7{bottom:980.627189pt;}
.y1b1{bottom:983.826800pt;}
.y1f{bottom:986.386800pt;}
.y260{bottom:991.826800pt;}
.y41{bottom:1002.386933pt;}
.y91{bottom:1004.626800pt;}
.y1e{bottom:1004.946800pt;}
.y15{bottom:1023.186933pt;}
.y14{bottom:1041.746933pt;}
.y13{bottom:1059.986933pt;}
.h10{height:36.802500pt;}
.hd{height:41.819832pt;}
.h1{height:42.656250pt;}
.h2{height:43.812500pt;}
.hc{height:44.343750pt;}
.hf{height:44.750000pt;}
.hb{height:47.171250pt;}
.ha{height:47.302500pt;}
.h5{height:49.481250pt;}
.h7{height:50.822500pt;}
.h6{height:51.663750pt;}
.h4{height:56.156250pt;}
.h9{height:56.312500pt;}
.h8{height:58.817792pt;}
.h3{height:65.141250pt;}
.he{height:114.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:405.334667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x23{left:8.107067pt;}
.x30{left:47.840000pt;}
.x7{left:95.840000pt;}
.x2e{left:102.560000pt;}
.x4{left:114.040267pt;}
.x6{left:116.130000pt;}
.xa{left:119.840133pt;}
.x5{left:129.462800pt;}
.xb{left:143.840267pt;}
.x11{left:150.122933pt;}
.x13{left:152.573600pt;}
.xc{left:167.838400pt;}
.x19{left:171.438400pt;}
.x28{left:173.920400pt;}
.x2d{left:182.414400pt;}
.x14{left:190.307200pt;}
.xd{left:191.838400pt;}
.x22{left:193.333333pt;}
.x21{left:201.440400pt;}
.x26{left:205.453333pt;}
.x24{left:208.660400pt;}
.x16{left:215.840400pt;}
.x1b{left:218.707200pt;}
.x29{left:221.920400pt;}
.x25{left:225.294000pt;}
.x2a{left:228.960400pt;}
.x27{left:233.453333pt;}
.x2c{left:237.507200pt;}
.xe{left:239.840000pt;}
.x17{left:263.840400pt;}
.x1a{left:267.440533pt;}
.x15{left:287.838667pt;}
.x2{left:295.038400pt;}
.x1d{left:311.461867pt;}
.x10{left:363.902000pt;}
.x12{left:380.260800pt;}
.x18{left:383.840000pt;}
.x3{left:396.808000pt;}
.x2f{left:416.480800pt;}
.x2b{left:419.627733pt;}
.x31{left:421.920267pt;}
.x1e{left:431.840800pt;}
.x8{left:527.840000pt;}
.x1f{left:623.107200pt;}
.x20{left:625.986000pt;}
.x1c{left:661.086400pt;}
.x1{left:678.728000pt;}
.x35{left:683.681333pt;}
.x32{left:696.800267pt;}
.x9{left:697.761333pt;}
.x33{left:698.720800pt;}
.xf{left:722.400000pt;}
.x34{left:744.961467pt;}
}




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