
    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_ff84e31801ce6188a7624a3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_2e655aefafaa2b87c68edec5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_7014015418cc87c702f1179a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_ebd981219312813ded708920.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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_66903169f76f22886eaa0d2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f3f0e7a804e5127f7ab342de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711426;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_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.392000;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_2dc0a21b746ebf4237f0429e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_50d8d6836fb7653b181133cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767090;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_a142dfd464255453732f1951.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.094000;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_defa5632b95fc219b974fdb0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.064000;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_a5b86876a7d9f8b0d2383511.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.736816;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_d232bce3f8ee56deadafc358.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9560cf019bdcc578bfb83a18.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3d8ab3de613846b71a6c9391.woff2')format("woff");}.fff{font-family:fff;line-height:0.957000;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:ff10;src:url('chunks/assets/font_7d8238bcb074f11d437b6e6c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.734000;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:ff11;src:url('chunks/assets/font_5575ed4f0c04ca990a239857.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.147000;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:ff12;src:url('chunks/assets/font_f8d445d201ce57dab8ca8125.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.952000;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:ff13;src:url('chunks/assets/font_dec26764e3098c8f0de45696.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.847000;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:ff14;src:url('chunks/assets/font_2405f7c4c2a1b2828472303d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.998000;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:ff15;src:url('chunks/assets/font_8200d037619668d12433f455.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.941000;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:ff16;src:url('chunks/assets/font_35525c3801f814431e35e7b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.834000;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.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.346000px;}
.v1{vertical-align:-6.126000px;}
.v2{vertical-align:-1.017587px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.337385px;}
.v6{vertical-align:29.253029px;}
.v5{vertical-align:36.735775px;}
.ls9{letter-spacing:-1.263600px;}
.lsd{letter-spacing:-1.200600px;}
.ls10{letter-spacing:-1.199985px;}
.ls2f{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.239997px;}
.lse{letter-spacing:-0.239400px;}
.lsb{letter-spacing:-0.238497px;}
.lsa{letter-spacing:-0.237600px;}
.ls11{letter-spacing:-0.237598px;}
.ls1a{letter-spacing:-0.214367px;}
.lsc{letter-spacing:-0.212372px;}
.ls19{letter-spacing:-0.211976px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.300000px;}
.ls31{letter-spacing:1.128000px;}
.ls2e{letter-spacing:1.134000px;}
.ls15{letter-spacing:2.929200px;}
.ls32{letter-spacing:4.761540px;}
.ls5{letter-spacing:4.766340px;}
.ls4{letter-spacing:5.102336px;}
.ls3{letter-spacing:5.107136px;}
.ls7{letter-spacing:9.446282px;}
.ls2c{letter-spacing:10.324671px;}
.ls6{letter-spacing:10.387070px;}
.ls2b{letter-spacing:10.449469px;}
.ls12{letter-spacing:10.742266px;}
.ls13{letter-spacing:10.934263px;}
.ls14{letter-spacing:10.939063px;}
.ls29{letter-spacing:11.001462px;}
.ls2d{letter-spacing:11.006262px;}
.ls18{letter-spacing:11.279859px;}
.ls22{letter-spacing:12.678000px;}
.ls24{letter-spacing:12.684000px;}
.ls26{letter-spacing:12.822000px;}
.ls1b{letter-spacing:12.894000px;}
.ls2a{letter-spacing:12.918000px;}
.ls25{letter-spacing:12.984000px;}
.ls23{letter-spacing:12.990000px;}
.ls20{letter-spacing:13.008000px;}
.ls28{letter-spacing:13.014000px;}
.ls1c{letter-spacing:13.020000px;}
.ls1f{letter-spacing:13.086000px;}
.ls1e{letter-spacing:13.092000px;}
.ls27{letter-spacing:13.320000px;}
.ls1d{letter-spacing:13.326000px;}
.ls21{letter-spacing:13.332000px;}
.ls1{letter-spacing:20.783740px;}
.ls2{letter-spacing:20.788540px;}
.ls16{letter-spacing:244.098600px;}
.ls17{letter-spacing:249.540600px;}
.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;}
}
.ws2e{word-spacing:-25.247684px;}
.ws124{word-spacing:-19.994233px;}
.wsd7{word-spacing:-19.785724px;}
.ws0{word-spacing:-18.984000px;}
.wse7{word-spacing:-16.638000px;}
.wsfc{word-spacing:-15.997500px;}
.ws125{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.247834px;}
.ws35{word-spacing:-10.799865px;}
.wsb8{word-spacing:-10.463869px;}
.ws85{word-spacing:-4.456763px;}
.ws126{word-spacing:-4.233565px;}
.ws122{word-spacing:-4.082366px;}
.ws26{word-spacing:-3.659400px;}
.ws175{word-spacing:-3.647954px;}
.ws171{word-spacing:-3.585555px;}
.wsc{word-spacing:-3.575955px;}
.ws2a{word-spacing:-3.522600px;}
.ws13f{word-spacing:-3.475157px;}
.ws166{word-spacing:-3.455957px;}
.ws160{word-spacing:-3.446357px;}
.ws179{word-spacing:-3.436757px;}
.wsd{word-spacing:-3.412757px;}
.ws17b{word-spacing:-3.403157px;}
.ws1a{word-spacing:-3.402900px;}
.ws16c{word-spacing:-3.383958px;}
.ws13d{word-spacing:-3.374358px;}
.ws159{word-spacing:-3.355158px;}
.ws17{word-spacing:-3.345558px;}
.wsa{word-spacing:-3.342600px;}
.wsf{word-spacing:-3.340758px;}
.ws143{word-spacing:-3.326358px;}
.ws1e{word-spacing:-3.323100px;}
.ws11{word-spacing:-3.321558px;}
.ws141{word-spacing:-3.316759px;}
.ws153{word-spacing:-3.311959px;}
.ws16e{word-spacing:-3.302359px;}
.ws142{word-spacing:-3.297559px;}
.ws16a{word-spacing:-3.292759px;}
.ws134{word-spacing:-3.287959px;}
.ws13a{word-spacing:-3.283159px;}
.ws148{word-spacing:-3.278359px;}
.ws178{word-spacing:-3.273559px;}
.ws17c{word-spacing:-3.268759px;}
.ws172{word-spacing:-3.263959px;}
.ws14d{word-spacing:-3.259159px;}
.ws1f{word-spacing:-3.254700px;}
.ws138{word-spacing:-3.254359px;}
.ws151{word-spacing:-3.249559px;}
.ws29{word-spacing:-3.249000px;}
.ws152{word-spacing:-3.244759px;}
.ws162{word-spacing:-3.239959px;}
.ws25{word-spacing:-3.226200px;}
.ws15f{word-spacing:-3.225560px;}
.ws150{word-spacing:-3.220760px;}
.ws9{word-spacing:-3.218400px;}
.wse{word-spacing:-3.215960px;}
.ws74{word-spacing:-3.211160px;}
.ws6{word-spacing:-3.207600px;}
.ws173{word-spacing:-3.201560px;}
.ws16{word-spacing:-3.196760px;}
.ws14a{word-spacing:-3.191960px;}
.wsb{word-spacing:-3.191400px;}
.ws20{word-spacing:-3.186300px;}
.ws12{word-spacing:-3.182360px;}
.ws1b{word-spacing:-3.180600px;}
.ws156{word-spacing:-3.177560px;}
.ws15a{word-spacing:-3.172760px;}
.ws100{word-spacing:-3.167960px;}
.ws164{word-spacing:-3.158361px;}
.ws1c{word-spacing:-3.157800px;}
.ws137{word-spacing:-3.153561px;}
.ws28{word-spacing:-3.152100px;}
.ws155{word-spacing:-3.148761px;}
.ws23{word-spacing:-3.146400px;}
.ws8{word-spacing:-3.137400px;}
.ws174{word-spacing:-3.134361px;}
.ws144{word-spacing:-3.129561px;}
.ws2b{word-spacing:-3.124761px;}
.ws16d{word-spacing:-3.119961px;}
.ws158{word-spacing:-3.115161px;}
.ws176{word-spacing:-3.110361px;}
.ws14c{word-spacing:-3.100761px;}
.ws2d{word-spacing:-3.091161px;}
.ws7{word-spacing:-3.078000px;}
.ws16b{word-spacing:-3.067162px;}
.ws21{word-spacing:-3.066600px;}
.ws163{word-spacing:-3.062362px;}
.ws1d{word-spacing:-3.060900px;}
.ws167{word-spacing:-3.043162px;}
.ws165{word-spacing:-3.019162px;}
.ws15b{word-spacing:-3.014362px;}
.ws135{word-spacing:-3.004762px;}
.ws4{word-spacing:-3.002400px;}
.ws10{word-spacing:-2.999963px;}
.ws22{word-spacing:-2.986800px;}
.ws168{word-spacing:-2.985563px;}
.ws13{word-spacing:-2.975963px;}
.ws13c{word-spacing:-2.971163px;}
.ws3{word-spacing:-2.970000px;}
.ws170{word-spacing:-2.966363px;}
.ws169{word-spacing:-2.956763px;}
.ws17d{word-spacing:-2.951963px;}
.ws27{word-spacing:-2.941200px;}
.ws146{word-spacing:-2.937563px;}
.ws139{word-spacing:-2.923163px;}
.ws136{word-spacing:-2.913564px;}
.ws13b{word-spacing:-2.908764px;}
.ws15e{word-spacing:-2.899164px;}
.ws24{word-spacing:-2.895600px;}
.ws145{word-spacing:-2.894364px;}
.ws161{word-spacing:-2.884764px;}
.ws17a{word-spacing:-2.875164px;}
.ws15c{word-spacing:-2.870364px;}
.ws157{word-spacing:-2.831965px;}
.ws5{word-spacing:-2.818800px;}
.ws14f{word-spacing:-2.812765px;}
.ws15d{word-spacing:-2.807965px;}
.ws147{word-spacing:-2.779165px;}
.ws154{word-spacing:-2.774365px;}
.ws140{word-spacing:-2.769565px;}
.ws14{word-spacing:-2.764765px;}
.ws15{word-spacing:-2.750366px;}
.ws13e{word-spacing:-2.745566px;}
.ws177{word-spacing:-2.726366px;}
.ws16f{word-spacing:-2.716766px;}
.ws14b{word-spacing:-2.711966px;}
.ws18{word-spacing:-2.683166px;}
.ws2{word-spacing:-2.649567px;}
.ws11d{word-spacing:-1.098000px;}
.ws41{word-spacing:-1.055987px;}
.ws78{word-spacing:-0.950388px;}
.ws44{word-spacing:-0.916789px;}
.ws11b{word-spacing:-0.906000px;}
.ws3e{word-spacing:-0.892789px;}
.ws3b{word-spacing:-0.878389px;}
.ws7a{word-spacing:-0.859189px;}
.ws76{word-spacing:-0.835190px;}
.ws46{word-spacing:-0.815990px;}
.ws75{word-spacing:-0.806390px;}
.ws39{word-spacing:-0.791990px;}
.ws120{word-spacing:-0.786000px;}
.ws31{word-spacing:-0.782390px;}
.ws11c{word-spacing:-0.774000px;}
.ws34{word-spacing:-0.763190px;}
.ws11f{word-spacing:-0.744000px;}
.ws30{word-spacing:-0.743991px;}
.ws48{word-spacing:-0.739191px;}
.wsdc{word-spacing:-0.738000px;}
.ws40{word-spacing:-0.724791px;}
.wsc3{word-spacing:-0.719991px;}
.wsf7{word-spacing:-0.715191px;}
.ws33{word-spacing:-0.695991px;}
.ws11e{word-spacing:-0.690000px;}
.ws77{word-spacing:-0.686391px;}
.ws7c{word-spacing:-0.684000px;}
.ws108{word-spacing:-0.681591px;}
.ws42{word-spacing:-0.676792px;}
.ws45{word-spacing:-0.671992px;}
.ws4c{word-spacing:-0.662392px;}
.ws4a{word-spacing:-0.647992px;}
.ws58{word-spacing:-0.636000px;}
.ws3f{word-spacing:-0.633592px;}
.ws2f{word-spacing:-0.623992px;}
.ws37{word-spacing:-0.619192px;}
.ws106{word-spacing:-0.618000px;}
.ws47{word-spacing:-0.609592px;}
.ws10f{word-spacing:-0.606000px;}
.ws32{word-spacing:-0.595193px;}
.ws10a{word-spacing:-0.585593px;}
.ws36{word-spacing:-0.571193px;}
.ws10c{word-spacing:-0.570000px;}
.ws4b{word-spacing:-0.556793px;}
.ws4e{word-spacing:-0.547193px;}
.ws4f{word-spacing:-0.546000px;}
.ws49{word-spacing:-0.542393px;}
.ws105{word-spacing:-0.534000px;}
.ws3a{word-spacing:-0.527993px;}
.ws7d{word-spacing:-0.522000px;}
.ws3d{word-spacing:-0.518394px;}
.ws7b{word-spacing:-0.516000px;}
.ws6a{word-spacing:-0.510000px;}
.wsbf{word-spacing:-0.503994px;}
.ws79{word-spacing:-0.494394px;}
.wscc{word-spacing:-0.486000px;}
.wsdb{word-spacing:-0.480000px;}
.wsba{word-spacing:-0.479994px;}
.wsf2{word-spacing:-0.475194px;}
.ws43{word-spacing:-0.470394px;}
.wsd3{word-spacing:-0.468000px;}
.wsda{word-spacing:-0.462000px;}
.ws4d{word-spacing:-0.460794px;}
.ws83{word-spacing:-0.456000px;}
.ws121{word-spacing:-0.450000px;}
.wsd2{word-spacing:-0.438000px;}
.ws72{word-spacing:-0.432000px;}
.wsc5{word-spacing:-0.426000px;}
.wsf8{word-spacing:-0.417595px;}
.ws10e{word-spacing:-0.414000px;}
.wse2{word-spacing:-0.408000px;}
.wsc2{word-spacing:-0.398395px;}
.ws98{word-spacing:-0.396000px;}
.ws52{word-spacing:-0.390000px;}
.wse8{word-spacing:-0.384000px;}
.wsd6{word-spacing:-0.378000px;}
.wsce{word-spacing:-0.372000px;}
.ws63{word-spacing:-0.366000px;}
.ws3c{word-spacing:-0.364795px;}
.ws56{word-spacing:-0.360000px;}
.ws5b{word-spacing:-0.354000px;}
.ws50{word-spacing:-0.348000px;}
.ws8d{word-spacing:-0.342000px;}
.ws9f{word-spacing:-0.340796px;}
.wsd4{word-spacing:-0.336000px;}
.wsa1{word-spacing:-0.335996px;}
.ws92{word-spacing:-0.330000px;}
.ws89{word-spacing:-0.324000px;}
.ws53{word-spacing:-0.318000px;}
.wsaf{word-spacing:-0.312000px;}
.ws68{word-spacing:-0.306000px;}
.wsdd{word-spacing:-0.300000px;}
.ws6b{word-spacing:-0.294000px;}
.ws6f{word-spacing:-0.288000px;}
.ws57{word-spacing:-0.282000px;}
.ws82{word-spacing:-0.276000px;}
.ws69{word-spacing:-0.270000px;}
.wsca{word-spacing:-0.264000px;}
.ws6c{word-spacing:-0.258000px;}
.wsb2{word-spacing:-0.252000px;}
.ws6d{word-spacing:-0.246000px;}
.ws6e{word-spacing:-0.240000px;}
.ws5c{word-spacing:-0.234000px;}
.ws95{word-spacing:-0.228000px;}
.ws8c{word-spacing:-0.222000px;}
.wsd1{word-spacing:-0.216000px;}
.wsf1{word-spacing:-0.215997px;}
.ws5f{word-spacing:-0.210000px;}
.ws55{word-spacing:-0.204000px;}
.ws59{word-spacing:-0.192000px;}
.ws64{word-spacing:-0.186000px;}
.wsc8{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.174000px;}
.ws84{word-spacing:-0.168000px;}
.wsa9{word-spacing:-0.167998px;}
.wscf{word-spacing:-0.162000px;}
.ws7e{word-spacing:-0.156000px;}
.ws109{word-spacing:-0.148798px;}
.wsd5{word-spacing:-0.144000px;}
.wsc0{word-spacing:-0.143998px;}
.ws9e{word-spacing:-0.139198px;}
.wsb3{word-spacing:-0.138000px;}
.ws9d{word-spacing:-0.134398px;}
.ws54{word-spacing:-0.132000px;}
.ws71{word-spacing:-0.126000px;}
.wscd{word-spacing:-0.120000px;}
.wsae{word-spacing:-0.115199px;}
.ws101{word-spacing:-0.114000px;}
.ws107{word-spacing:-0.100799px;}
.wsc6{word-spacing:-0.096000px;}
.ws70{word-spacing:-0.090000px;}
.ws5d{word-spacing:-0.084000px;}
.ws62{word-spacing:-0.078000px;}
.ws99{word-spacing:-0.076799px;}
.wse3{word-spacing:-0.072000px;}
.wse9{word-spacing:-0.062399px;}
.ws102{word-spacing:-0.060000px;}
.wsf9{word-spacing:-0.057599px;}
.ws94{word-spacing:-0.054000px;}
.wsf3{word-spacing:-0.048000px;}
.ws10b{word-spacing:-0.042000px;}
.ws66{word-spacing:-0.036000px;}
.ws65{word-spacing:-0.030000px;}
.wsf6{word-spacing:-0.028800px;}
.wsc4{word-spacing:-0.024000px;}
.ws38{word-spacing:-0.019200px;}
.wsf4{word-spacing:-0.018000px;}
.ws88{word-spacing:-0.012000px;}
.wscb{word-spacing:-0.006000px;}
.wsb4{word-spacing:-0.004800px;}
.ws1{word-spacing:0.000000px;}
.wse5{word-spacing:0.006000px;}
.ws80{word-spacing:0.012000px;}
.wsd8{word-spacing:0.018000px;}
.ws93{word-spacing:0.024000px;}
.ws8b{word-spacing:0.030000px;}
.wsa7{word-spacing:0.033600px;}
.wsb1{word-spacing:0.036000px;}
.ws60{word-spacing:0.042000px;}
.ws91{word-spacing:0.048000px;}
.wsc9{word-spacing:0.050400px;}
.ws7f{word-spacing:0.054000px;}
.ws97{word-spacing:0.060000px;}
.ws73{word-spacing:0.066000px;}
.ws8f{word-spacing:0.072000px;}
.wsd0{word-spacing:0.078000px;}
.ws81{word-spacing:0.084000px;}
.ws5a{word-spacing:0.090000px;}
.ws96{word-spacing:0.096000px;}
.ws12d{word-spacing:0.108000px;}
.ws8a{word-spacing:0.114000px;}
.ws87{word-spacing:0.120000px;}
.ws12a{word-spacing:0.126000px;}
.wsc7{word-spacing:0.132000px;}
.wse0{word-spacing:0.134398px;}
.ws67{word-spacing:0.138000px;}
.ws61{word-spacing:0.144000px;}
.ws111{word-spacing:0.150000px;}
.wsa3{word-spacing:0.153598px;}
.ws90{word-spacing:0.156000px;}
.ws8e{word-spacing:0.162000px;}
.wsd9{word-spacing:0.179999px;}
.ws119{word-spacing:0.180000px;}
.wsa4{word-spacing:0.182398px;}
.ws104{word-spacing:0.186000px;}
.ws103{word-spacing:0.194398px;}
.wse6{word-spacing:0.208798px;}
.ws117{word-spacing:0.210000px;}
.wsa5{word-spacing:0.215997px;}
.ws110{word-spacing:0.216000px;}
.ws118{word-spacing:0.228000px;}
.wsb6{word-spacing:0.231833px;}
.ws11a{word-spacing:0.246000px;}
.wsaa{word-spacing:0.254397px;}
.wsf5{word-spacing:0.264000px;}
.ws86{word-spacing:0.266398px;}
.wsb0{word-spacing:0.273598px;}
.wsa0{word-spacing:0.278397px;}
.ws9c{word-spacing:0.297596px;}
.ws51{word-spacing:0.300000px;}
.wsa2{word-spacing:0.307196px;}
.ws10d{word-spacing:0.318000px;}
.ws115{word-spacing:0.324000px;}
.ws116{word-spacing:0.336000px;}
.ws132{word-spacing:0.342000px;}
.ws123{word-spacing:0.348000px;}
.wsc1{word-spacing:0.374395px;}
.ws113{word-spacing:0.384000px;}
.wse4{word-spacing:0.432000px;}
.ws9a{word-spacing:0.455994px;}
.ws112{word-spacing:0.468000px;}
.ws128{word-spacing:0.480000px;}
.ws114{word-spacing:0.510000px;}
.ws129{word-spacing:0.666000px;}
.ws12f{word-spacing:0.708000px;}
.ws12b{word-spacing:0.762000px;}
.ws12e{word-spacing:0.900000px;}
.ws12c{word-spacing:0.978000px;}
.ws131{word-spacing:1.020000px;}
.ws130{word-spacing:1.026000px;}
.ws127{word-spacing:1.158000px;}
.wse1{word-spacing:2.763682px;}
.wsdf{word-spacing:2.863671px;}
.wsde{word-spacing:3.067647px;}
.ws2c{word-spacing:34.588368px;}
.ws149{word-spacing:46.842614px;}
.ws14e{word-spacing:46.847414px;}
.ws133{word-spacing:46.909814px;}
.wsb7{word-spacing:196.816740px;}
.wsbb{word-spacing:207.554206px;}
.wseb{word-spacing:256.057599px;}
.wsed{word-spacing:268.739041px;}
.wsf0{word-spacing:268.926238px;}
.wsec{word-spacing:269.281434px;}
.wsee{word-spacing:269.315034px;}
.wsea{word-spacing:269.598230px;}
.wsff{word-spacing:315.044062px;}
.wsfa{word-spacing:327.019912px;}
.wsb9{word-spacing:327.936701px;}
.wsbc{word-spacing:329.424682px;}
.wsbe{word-spacing:330.912664px;}
.wsfb{word-spacing:341.098136px;}
.wsbd{word-spacing:345.936476px;}
.wsef{word-spacing:356.112349px;}
.wsfe{word-spacing:363.009862px;}
.wsfd{word-spacing:387.009562px;}
.ws9b{word-spacing:486.104324px;}
.wsac{word-spacing:669.610830px;}
.wsad{word-spacing:688.983388px;}
.wsa8{word-spacing:712.503094px;}
.wsa6{word-spacing:783.926201px;}
.wsab{word-spacing:793.910076px;}
.wsb5{word-spacing:858.522068px;}
._3a{margin-left:-24.294600px;}
._3b{margin-left:-21.095736px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._9{width:1.265400px;}
._5{width:3.651600px;}
._0{width:5.587200px;}
._7{width:9.446307px;}
._6{width:10.799865px;}
._a{width:11.867400px;}
._8{width:13.463400px;}
._c{width:14.520600px;}
._25{width:15.839802px;}
._3c{width:19.934126px;}
._d{width:21.076537px;}
._4{width:24.991200px;}
._22{width:202.331871px;}
._24{width:213.554131px;}
._23{width:218.406870px;}
._1f{width:220.667642px;}
._20{width:254.204822px;}
._21{width:259.643154px;}
._2b{width:286.196423px;}
._2f{width:296.722691px;}
._26{width:300.716241px;}
._30{width:302.722616px;}
._31{width:309.000937px;}
._2e{width:313.920876px;}
._16{width:319.176810px;}
._34{width:325.805527px;}
._2c{width:336.912589px;}
._38{width:340.056549px;}
._13{width:342.168523px;}
._35{width:348.970038px;}
._36{width:352.104399px;}
._12{width:364.958638px;}
._29{width:370.896164px;}
._27{width:384.321596px;}
._33{width:396.551843px;}
._2a{width:401.370983px;}
._37{width:403.324558px;}
._28{width:411.119661px;}
._2d{width:418.362770px;}
._19{width:445.756028px;}
._1c{width:461.999025px;}
._18{width:463.285409px;}
._32{width:482.158773px;}
._1a{width:484.587543px;}
._1b{width:495.613005px;}
._f{width:498.060974px;}
._10{width:514.572768px;}
._15{width:610.825965px;}
._11{width:623.843402px;}
._17{width:625.043387px;}
._14{width:638.291221px;}
._1d{width:653.305434px;}
._e{width:734.126823px;}
._1e{width:1364.910938px;}
._39{width:1587.258584px;}
._b{width:1612.957463px;}
.fc4{color:transparent;}
.fc3{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:31.995000px;}
.fsc{font-size:33.598800px;}
.fs7{font-size:35.995200px;}
.fsd{font-size:39.995400px;}
.fs6{font-size:44.999400px;}
.fs3{font-size:47.999400px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fsb{font-size:71.999400px;}
.fs1{font-size:84.000000px;}
.fs8{font-size:87.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y44{bottom:54.000000px;}
.y15{bottom:77.715000px;}
.y1a{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y19{bottom:113.670000px;}
.y104{bottom:119.651569px;}
.y1b4{bottom:119.651925px;}
.y166{bottom:122.031450px;}
.y167{bottom:124.497600px;}
.y165{bottom:124.498500px;}
.ye0{bottom:124.498838px;}
.y199{bottom:124.499461px;}
.y225{bottom:124.499766px;}
.ycc{bottom:124.500000px;}
.y66{bottom:124.500064px;}
.y1de{bottom:124.503000px;}
.y131{bottom:125.095500px;}
.y144{bottom:128.410069px;}
.y1f9{bottom:133.513500px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y96{bottom:136.663500px;}
.y224{bottom:138.786787px;}
.y290{bottom:140.575331px;}
.y65{bottom:140.997458px;}
.y103{bottom:142.867679px;}
.y1b3{bottom:142.868035px;}
.y164{bottom:143.973000px;}
.ycb{bottom:143.974500px;}
.y1dd{bottom:143.977500px;}
.y130{bottom:144.568500px;}
.y198{bottom:151.542323px;}
.y143{bottom:151.711378px;}
.y1f8{bottom:152.988000px;}
.y28f{bottom:154.861153px;}
.y16{bottom:154.950000px;}
.ydf{bottom:155.877000px;}
.yf{bottom:156.015000px;}
.y95{bottom:156.138000px;}
.y100{bottom:157.153378px;}
.y102{bottom:157.153500px;}
.y1b2{bottom:157.153856px;}
.y64{bottom:157.494852px;}
.y17{bottom:157.830000px;}
.y223{bottom:158.260144px;}
.y101{bottom:162.424500px;}
.y163{bottom:163.531500px;}
.yca{bottom:163.533000px;}
.y1dc{bottom:163.536000px;}
.y261{bottom:163.875440px;}
.y12f{bottom:164.127000px;}
.y142{bottom:165.912000px;}
.yff{bottom:171.354000px;}
.y1b1{bottom:171.355679px;}
.y1f7{bottom:172.461000px;}
.y222{bottom:172.461966px;}
.y63{bottom:173.993445px;}
.y28e{bottom:174.335709px;}
.y94{bottom:175.612500px;}
.y260{bottom:178.077263px;}
.yde{bottom:179.605172px;}
.y161{bottom:180.538500px;}
.y162{bottom:183.004500px;}
.yc9{bottom:183.006000px;}
.y112{bottom:183.007500px;}
.y1db{bottom:183.010500px;}
.y12e{bottom:183.601500px;}
.y1b0{bottom:185.641500px;}
.y221{bottom:186.747788px;}
.y28d{bottom:188.621531px;}
.y62{bottom:190.490839px;}
.y25f{bottom:192.363084px;}
.y93{bottom:195.085500px;}
.ydd{bottom:198.398138px;}
.y160{bottom:200.013000px;}
.y1f6{bottom:201.034500px;}
.y15f{bottom:202.479000px;}
.yc8{bottom:202.480500px;}
.y111{bottom:202.482000px;}
.y1da{bottom:202.483500px;}
.y28b{bottom:202.823353px;}
.y12d{bottom:203.076000px;}
.y28c{bottom:203.078950px;}
.y220{bottom:206.222344px;}
.y61{bottom:206.988233px;}
.y25e{bottom:211.837641px;}
.y92{bottom:214.644000px;}
.ydc{bottom:217.107104px;}
.y43{bottom:220.423650px;}
.y1f5{bottom:220.507500px;}
.y21f{bottom:220.508166px;}
.y1e4{bottom:222.037500px;}
.yc7{bottom:222.039000px;}
.y110{bottom:222.040500px;}
.y1d9{bottom:222.043500px;}
.y28a{bottom:222.296710px;}
.y12c{bottom:222.634500px;}
.y60{bottom:223.485627px;}
.y25d{bottom:226.123462px;}
.y15e{bottom:227.991000px;}
.y91{bottom:234.118500px;}
.ydb{bottom:235.900069px;}
.y289{bottom:236.583731px;}
.y21e{bottom:239.982722px;}
.y5f{bottom:239.983020px;}
.y25c{bottom:240.325285px;}
.y42{bottom:241.428150px;}
.yc6{bottom:241.513500px;}
.y1d8{bottom:241.516500px;}
.y12b{bottom:242.109000px;}
.y1f4{bottom:246.018000px;}
.y1e3{bottom:247.464000px;}
.y288{bottom:250.870753px;}
.y90{bottom:253.593000px;}
.y21d{bottom:254.269744px;}
.yda{bottom:254.609035px;}
.y25b{bottom:259.799841px;}
.yc5{bottom:260.986500px;}
.y10f{bottom:260.988000px;}
.y1d7{bottom:260.991000px;}
.y12a{bottom:261.582000px;}
.y41{bottom:262.432650px;}
.y5e{bottom:265.494701px;}
.y21c{bottom:268.470366px;}
.y287{bottom:270.344109px;}
.y8f{bottom:273.151500px;}
.yd9{bottom:273.402000px;}
.y25a{bottom:274.085663px;}
.yc4{bottom:280.461000px;}
.y10e{bottom:280.462500px;}
.y1d6{bottom:280.465500px;}
.y129{bottom:281.140500px;}
.y5d{bottom:281.992095px;}
.y40{bottom:283.437150px;}
.y15d{bottom:284.287500px;}
.y286{bottom:284.545932px;}
.y21b{bottom:288.030122px;}
.y259{bottom:288.372684px;}
.y197{bottom:290.154000px;}
.y196{bottom:292.110879px;}
.yd8{bottom:292.112154px;}
.y8e{bottom:292.626000px;}
.y5c{bottom:298.489489px;}
.y1f3{bottom:299.511000px;}
.yc3{bottom:300.019500px;}
.y10d{bottom:300.021000px;}
.y1d5{bottom:300.024000px;}
.y128{bottom:300.615000px;}
.y1e2{bottom:300.619500px;}
.y15c{bottom:301.294500px;}
.y21a{bottom:302.230744px;}
.y15b{bottom:303.846000px;}
.y285{bottom:304.104487px;}
.y3f{bottom:304.441650px;}
.y258{bottom:307.846041px;}
.yd7{bottom:310.905119px;}
.y8d{bottom:312.099000px;}
.y195{bottom:314.391000px;}
.y219{bottom:316.517766px;}
.y284{bottom:318.306310px;}
.y1f2{bottom:319.069500px;}
.yc2{bottom:319.494000px;}
.y1d4{bottom:319.497000px;}
.y127{bottom:320.089500px;}
.y1e1{bottom:320.094000px;}
.y159{bottom:320.769000px;}
.y257{bottom:322.047863px;}
.y15a{bottom:323.319000px;}
.y158{bottom:323.320500px;}
.y5b{bottom:324.001170px;}
.y3e{bottom:325.447575px;}
.yd6{bottom:329.614085px;}
.y218{bottom:330.719588px;}
.y8c{bottom:331.657500px;}
.y283{bottom:337.864865px;}
.y1f1{bottom:338.544000px;}
.yc1{bottom:338.968500px;}
.y1d3{bottom:338.971500px;}
.y126{bottom:339.562500px;}
.y1e0{bottom:339.567000px;}
.y156{bottom:340.327500px;}
.y5a{bottom:340.499764px;}
.y256{bottom:341.606418px;}
.y157{bottom:342.793500px;}
.y155{bottom:342.795000px;}
.ya{bottom:344.680500px;}
.y3d{bottom:346.452075px;}
.yd5{bottom:348.407050px;}
.y217{bottom:350.278144px;}
.y8b{bottom:351.132000px;}
.y282{bottom:352.066688px;}
.y254{bottom:355.808241px;}
.y255{bottom:356.063838px;}
.y124{bottom:356.569500px;}
.y59{bottom:356.997158px;}
.y1f0{bottom:358.017000px;}
.yc0{bottom:358.527000px;}
.y1d2{bottom:358.530000px;}
.y125{bottom:359.121000px;}
.y123{bottom:359.125500px;}
.y153{bottom:359.802000px;}
.y18f{bottom:361.246500px;}
.y154{bottom:362.268000px;}
.y152{bottom:362.269500px;}
.y190{bottom:363.714000px;}
.y18e{bottom:363.715500px;}
.y216{bottom:364.479966px;}
.yd4{bottom:367.116016px;}
.y3c{bottom:367.371075px;}
.y8a{bottom:370.606500px;}
.y281{bottom:371.540044px;}
.y58{bottom:373.494551px;}
.y253{bottom:375.366796px;}
.y1ef{bottom:377.577000px;}
.ybf{bottom:378.000000px;}
.y10c{bottom:378.001500px;}
.y1d1{bottom:378.004500px;}
.y122{bottom:378.600000px;}
.y215{bottom:378.765788px;}
.y151{bottom:381.828000px;}
.y18d{bottom:383.274000px;}
.y280{bottom:385.827066px;}
.yd3{bottom:385.910181px;}
.yd{bottom:386.490000px;}
.y3b{bottom:388.375575px;}
.y252{bottom:389.568619px;}
.y57{bottom:389.991945px;}
.y89{bottom:390.165000px;}
.y9{bottom:395.689500px;}
.y1ee{bottom:397.050000px;}
.ybe{bottom:397.474500px;}
.y10b{bottom:397.476000px;}
.y1d0{bottom:397.477500px;}
.y121{bottom:398.074500px;}
.y214{bottom:398.240344px;}
.y14f{bottom:398.835000px;}
.y27f{bottom:400.114087px;}
.y150{bottom:401.301000px;}
.y14e{bottom:401.302500px;}
.y18c{bottom:402.748500px;}
.yd2{bottom:404.617947px;}
.y56{bottom:406.489339px;}
.y251{bottom:409.043176px;}
.y3a{bottom:409.380075px;}
.y88{bottom:409.639500px;}
.y213{bottom:412.526166px;}
.y27e{bottom:414.314710px;}
.y1ed{bottom:416.524500px;}
.ybd{bottom:417.033000px;}
.y10a{bottom:417.034500px;}
.y1cf{bottom:417.037500px;}
.y120{bottom:417.633000px;}
.y14d{bottom:418.308000px;}
.y14c{bottom:420.775500px;}
.y18b{bottom:422.221500px;}
.y24f{bottom:423.328997px;}
.yd1{bottom:423.412112px;}
.y250{bottom:423.584594px;}
.y87{bottom:429.112500px;}
.y39{bottom:430.384575px;}
.y212{bottom:432.000722px;}
.y55{bottom:432.001020px;}
.y27d{bottom:433.874465px;}
.yb{bottom:434.850000px;}
.y1ec{bottom:436.083000px;}
.ybc{bottom:436.507500px;}
.y1ce{bottom:436.510500px;}
.y11f{bottom:437.106000px;}
.y1df{bottom:437.107500px;}
.y14b{bottom:440.334000px;}
.y18a{bottom:441.696000px;}
.yd0{bottom:442.119879px;}
.y24e{bottom:442.803554px;}
.y210{bottom:446.287744px;}
.y211{bottom:446.542140px;}
.y8{bottom:446.698500px;}
.y86{bottom:448.587000px;}
.y38{bottom:451.390500px;}
.y27c{bottom:453.347822px;}
.y1eb{bottom:455.557500px;}
.ybb{bottom:455.980500px;}
.y109{bottom:455.982000px;}
.y1cd{bottom:455.985000px;}
.yf5{bottom:456.237000px;}
.y11e{bottom:456.580500px;}
.y24d{bottom:457.089375px;}
.y54{bottom:457.512701px;}
.y14a{bottom:459.808500px;}
.y189{bottom:461.254500px;}
.ycf{bottom:464.400000px;}
.y20f{bottom:465.761100px;}
.y27b{bottom:467.549644px;}
.y85{bottom:468.145500px;}
.y24c{bottom:471.291197px;}
.y37{bottom:472.395000px;}
.y1ea{bottom:475.030500px;}
.y108{bottom:475.540500px;}
.y1cc{bottom:475.543500px;}
.yf4{bottom:475.711500px;}
.y11d{bottom:476.139000px;}
.y148{bottom:476.815500px;}
.y149{bottom:479.281500px;}
.y147{bottom:479.283000px;}
.y20e{bottom:479.962923px;}
.y188{bottom:480.729000px;}
.yba{bottom:481.494825px;}
.y53{bottom:483.024382px;}
.y27a{bottom:487.108200px;}
.y84{bottom:487.620000px;}
.y11{bottom:488.055000px;}
.y24b{bottom:490.849753px;}
.y36{bottom:493.399500px;}
.y20c{bottom:494.248744px;}
.y20d{bottom:494.504341px;}
.y1e9{bottom:494.590500px;}
.y107{bottom:495.015000px;}
.y1cb{bottom:495.018000px;}
.yf3{bottom:495.184500px;}
.yf1{bottom:495.186000px;}
.y11c{bottom:495.613500px;}
.y1af{bottom:496.036500px;}
.y146{bottom:496.290000px;}
.y7{bottom:497.707500px;}
.y145{bottom:498.841500px;}
.y187{bottom:500.202000px;}
.y278{bottom:501.310022px;}
.y279{bottom:501.734817px;}
.yf2{bottom:501.901500px;}
.y24a{bottom:505.051575px;}
.y83{bottom:507.093000px;}
.yb9{bottom:508.536000px;}
.y52{bottom:508.536063px;}
.y20b{bottom:513.723301px;}
.y1e8{bottom:514.063500px;}
.y35{bottom:514.404000px;}
.y106{bottom:514.488000px;}
.y1ca{bottom:514.491000px;}
.yf0{bottom:514.744500px;}
.yce{bottom:515.088000px;}
.y1ae{bottom:515.509500px;}
.y185{bottom:517.209000px;}
.y186{bottom:519.760500px;}
.y184{bottom:519.762000px;}
.y277{bottom:520.868578px;}
.y249{bottom:524.611331px;}
.y51{bottom:525.033457px;}
.y82{bottom:526.651500px;}
.y20a{bottom:528.009122px;}
.y1e7{bottom:533.538000px;}
.y1c9{bottom:533.965500px;}
.yef{bottom:534.219000px;}
.ycd{bottom:534.646500px;}
.y1ad{bottom:535.068000px;}
.y276{bottom:535.070400px;}
.y34{bottom:535.408500px;}
.y180{bottom:535.750792px;}
.y183{bottom:536.769000px;}
.y12{bottom:538.230000px;}
.y248{bottom:538.811953px;}
.y182{bottom:539.235000px;}
.y105{bottom:540.000000px;}
.y81{bottom:546.126000px;}
.y209{bottom:547.483679px;}
.y6{bottom:548.716500px;}
.y275{bottom:549.357422px;}
.y50{bottom:550.545138px;}
.y1e6{bottom:553.011000px;}
.y247{bottom:553.098975px;}
.y1c8{bottom:553.524000px;}
.yee{bottom:553.692000px;}
.yb8{bottom:554.119500px;}
.y1ac{bottom:554.542500px;}
.y33{bottom:556.413000px;}
.y181{bottom:558.708000px;}
.y208{bottom:561.769500px;}
.y17f{bottom:562.708455px;}
.y80{bottom:565.600500px;}
.y4f{bottom:567.042532px;}
.y274{bottom:568.830778px;}
.y246{bottom:572.572331px;}
.y1c7{bottom:572.998500px;}
.yed{bottom:573.252000px;}
.yb7{bottom:573.594000px;}
.y1ab{bottom:574.017000px;}
.y32{bottom:577.417500px;}
.y1e5{bottom:578.523000px;}
.y207{bottom:582.009000px;}
.y273{bottom:583.117800px;}
.y4e{bottom:583.541126px;}
.y7f{bottom:585.159000px;}
.y245{bottom:586.859353px;}
.y1b{bottom:589.605000px;}
.y194{bottom:590.769946px;}
.y17e{bottom:590.856503px;}
.y1c6{bottom:592.473000px;}
.yec{bottom:592.725000px;}
.yb6{bottom:593.068500px;}
.y1aa{bottom:593.575500px;}
.y272{bottom:597.319622px;}
.y31{bottom:598.422000px;}
.y5{bottom:599.725500px;}
.y4d{bottom:600.038520px;}
.y244{bottom:601.061175px;}
.y7e{bottom:604.633500px;}
.y17d{bottom:609.564269px;}
.y1a8{bottom:610.497000px;}
.y1c5{bottom:612.031500px;}
.yeb{bottom:612.199500px;}
.yb5{bottom:612.627000px;}
.y1a9{bottom:613.048500px;}
.y1a7{bottom:613.051500px;}
.y193{bottom:613.984856px;}
.y4c{bottom:616.535913px;}
.y271{bottom:616.792979px;}
.y30{bottom:619.426500px;}
.y243{bottom:620.619731px;}
.y7d{bottom:624.106500px;}
.y192{bottom:628.271878px;}
.y17c{bottom:628.358434px;}
.y270{bottom:631.080000px;}
.y1c4{bottom:631.504500px;}
.yea{bottom:631.758000px;}
.ye{bottom:631.920000px;}
.yb4{bottom:632.101500px;}
.y1a6{bottom:632.524500px;}
.y4b{bottom:633.033307px;}
.y242{bottom:634.821553px;}
.y2f{bottom:640.431000px;}
.y191{bottom:642.472500px;}
.y7c{bottom:643.665000px;}
.y206{bottom:644.346000px;}
.y26f{bottom:645.365821px;}
.y17b{bottom:647.067400px;}
.y1c3{bottom:650.979000px;}
.ye9{bottom:651.232500px;}
.yb3{bottom:651.574500px;}
.y1a5{bottom:651.999000px;}
.y241{bottom:654.294910px;}
.y4a{bottom:657.609000px;}
.y7b{bottom:663.139500px;}
.y205{bottom:663.820500px;}
.y26e{bottom:664.840378px;}
.y17a{bottom:665.860365px;}
.y240{bottom:668.581931px;}
.y1c2{bottom:670.537500px;}
.ye8{bottom:670.705500px;}
.yb2{bottom:671.133000px;}
.y1a4{bottom:671.557500px;}
.y2e{bottom:673.426500px;}
.y26d{bottom:679.041001px;}
.y7a{bottom:682.614000px;}
.y179{bottom:684.569331px;}
.y23f{bottom:688.055288px;}
.y1c1{bottom:690.012000px;}
.ye7{bottom:690.265500px;}
.yb1{bottom:690.607500px;}
.y204{bottom:690.777000px;}
.y1a3{bottom:691.032000px;}
.y26c{bottom:698.600756px;}
.y79{bottom:702.087000px;}
.y23d{bottom:702.342309px;}
.y23e{bottom:702.597906px;}
.y178{bottom:703.362296px;}
.y1c0{bottom:709.485000px;}
.ye6{bottom:709.738500px;}
.yb0{bottom:710.082000px;}
.y1a2{bottom:710.505000px;}
.y26b{bottom:712.802578px;}
.y203{bottom:717.819000px;}
.y78{bottom:721.647000px;}
.y23c{bottom:721.815666px;}
.y177{bottom:722.071263px;}
.y26a{bottom:727.088400px;}
.y1bf{bottom:728.959500px;}
.ye5{bottom:729.213000px;}
.yaf{bottom:729.640500px;}
.y1a1{bottom:730.063500px;}
.y2d{bottom:733.721100px;}
.y23a{bottom:736.102687px;}
.y23b{bottom:736.358284px;}
.y176{bottom:740.865428px;}
.y77{bottom:741.120000px;}
.y49{bottom:744.520500px;}
.y202{bottom:744.777000px;}
.y269{bottom:746.562956px;}
.y1be{bottom:748.518000px;}
.ye4{bottom:748.686000px;}
.y11b{bottom:749.113500px;}
.yae{bottom:749.115000px;}
.y1a0{bottom:755.574000px;}
.y239{bottom:755.577244px;}
.y175{bottom:759.573194px;}
.y76{bottom:760.594500px;}
.y268{bottom:760.848778px;}
.y48{bottom:761.782500px;}
.y2b{bottom:763.739925px;}
.y2c{bottom:763.994321px;}
.y141{bottom:765.439500px;}
.y1bd{bottom:767.992500px;}
.yad{bottom:768.588000px;}
.y238{bottom:769.863065px;}
.y201{bottom:771.819000px;}
.ye3{bottom:774.198000px;}
.y266{bottom:775.050600px;}
.y267{bottom:775.306197px;}
.y4{bottom:778.225500px;}
.y174{bottom:778.367359px;}
.y2a{bottom:778.706138px;}
.y47{bottom:778.960500px;}
.y75{bottom:780.153000px;}
.y13f{bottom:782.446500px;}
.y140{bottom:784.912500px;}
.y13e{bottom:784.914000px;}
.y1bc{bottom:787.467000px;}
.yac{bottom:788.062500px;}
.y237{bottom:789.337622px;}
.y29{bottom:793.673550px;}
.y265{bottom:794.609156px;}
.y46{bottom:796.224000px;}
.y173{bottom:797.075125px;}
.y200{bottom:798.777000px;}
.y74{bottom:799.627500px;}
.y236{bottom:803.623443px;}
.y13d{bottom:804.388500px;}
.y1bb{bottom:807.025500px;}
.y19f{bottom:807.619500px;}
.yab{bottom:807.621000px;}
.y28{bottom:808.724962px;}
.y264{bottom:808.810978px;}
.y45{bottom:813.486000px;}
.y13{bottom:815.670000px;}
.y172{bottom:815.869290px;}
.ye2{bottom:817.569000px;}
.y73{bottom:819.100500px;}
.y235{bottom:823.098000px;}
.y27{bottom:823.692375px;}
.y13c{bottom:823.947000px;}
.y19d{bottom:824.626500px;}
.y1ff{bottom:825.819000px;}
.y1ba{bottom:826.498500px;}
.y19e{bottom:827.092500px;}
.yaa{bottom:827.095500px;}
.y171{bottom:834.578256px;}
.ye1{bottom:837.042000px;}
.y234{bottom:837.298622px;}
.y72{bottom:838.659000px;}
.y26{bottom:838.743787px;}
.y263{bottom:842.571356px;}
.y13b{bottom:843.421500px;}
.y1b9{bottom:845.973000px;}
.ya9{bottom:846.568500px;}
.y1fe{bottom:852.775500px;}
.y170{bottom:853.371221px;}
.y25{bottom:853.710000px;}
.y233{bottom:856.858378px;}
.y71{bottom:858.133500px;}
.y13a{bottom:862.894500px;}
.y1b8{bottom:865.531500px;}
.ya8{bottom:866.127000px;}
.y19c{bottom:866.128500px;}
.y232{bottom:871.059000px;}
.y16f{bottom:872.080187px;}
.yfe{bottom:873.949838px;}
.y70{bottom:877.608000px;}
.y1fd{bottom:879.819000px;}
.y138{bottom:879.901500px;}
.y24{bottom:880.668000px;}
.y22{bottom:880.668450px;}
.y139{bottom:882.453000px;}
.y137{bottom:882.454500px;}
.y1b7{bottom:885.006000px;}
.y231{bottom:885.346022px;}
.ya7{bottom:885.601500px;}
.y23{bottom:886.705500px;}
.y294{bottom:890.618756px;}
.y16e{bottom:890.873153px;}
.y6f{bottom:897.081000px;}
.y20{bottom:897.250500px;}
.y136{bottom:901.927500px;}
.y21{bottom:903.202500px;}
.y1b6{bottom:904.479000px;}
.y230{bottom:904.820578px;}
.ya6{bottom:905.076000px;}
.yfd{bottom:905.329500px;}
.y3{bottom:905.716500px;}
.y1fc{bottom:906.775500px;}
.y16d{bottom:909.582119px;}
.y6e{bottom:916.641000px;}
.yfc{bottom:918.936089px;}
.y22f{bottom:919.106400px;}
.y293{bottom:919.361996px;}
.y135{bottom:921.402000px;}
.ya5{bottom:924.634500px;}
.y16c{bottom:928.376284px;}
.y1b5{bottom:929.991000px;}
.y22e{bottom:933.308222px;}
.y1fb{bottom:933.817500px;}
.y1f{bottom:934.670100px;}
.y6d{bottom:936.114000px;}
.y292{bottom:938.580956px;}
.y134{bottom:940.875000px;}
.y11a{bottom:944.107500px;}
.ya4{bottom:944.109000px;}
.y16b{bottom:947.084050px;}
.yfb{bottom:947.084138px;}
.y22d{bottom:952.866778px;}
.y6c{bottom:955.588500px;}
.y1fa{bottom:959.329500px;}
.y119{bottom:963.580500px;}
.ya3{bottom:963.582000px;}
.y2{bottom:964.228500px;}
.y16a{bottom:965.793016px;}
.yfa{bottom:965.793104px;}
.y133{bottom:966.389325px;}
.y22c{bottom:967.068600px;}
.y1e{bottom:968.430900px;}
.y118{bottom:970.299000px;}
.y9d{bottom:971.575744px;}
.y6b{bottom:975.147000px;}
.y22b{bottom:981.355622px;}
.y262{bottom:981.610018px;}
.ya2{bottom:983.140500px;}
.y19b{bottom:983.142000px;}
.yf9{bottom:984.586069px;}
.y169{bottom:984.587181px;}
.y291{bottom:986.541957px;}
.y9c{bottom:988.073138px;}
.y1{bottom:989.716500px;}
.y117{bottom:989.773500px;}
.y132{bottom:993.430500px;}
.y6a{bottom:994.621500px;}
.y22a{bottom:1000.828978px;}
.y1d{bottom:1002.189000px;}
.y116{bottom:1002.613500px;}
.ya1{bottom:1002.615000px;}
.y168{bottom:1003.294947px;}
.yf8{bottom:1003.295035px;}
.y115{bottom:1009.246500px;}
.y9b{bottom:1013.584819px;}
.y69{bottom:1014.094500px;}
.y228{bottom:1015.116000px;}
.y229{bottom:1015.370396px;}
.y114{bottom:1022.088000px;}
.yf7{bottom:1022.089112px;}
.ya0{bottom:1022.089500px;}
.y113{bottom:1028.806500px;}
.y9a{bottom:1030.082212px;}
.y68{bottom:1033.653000px;}
.y227{bottom:1034.589356px;}
.y1c{bottom:1035.949500px;}
.y19a{bottom:1039.096500px;}
.yf6{bottom:1040.796879px;}
.y9f{bottom:1041.562500px;}
.y99{bottom:1046.579606px;}
.y226{bottom:1048.791179px;}
.y67{bottom:1059.079500px;}
.y9e{bottom:1061.121000px;}
.y98{bottom:1063.077000px;}
.y97{bottom:1118.692500px;}
.h1c{height:23.996250px;}
.h19{height:26.039070px;}
.hd{height:27.932275px;}
.h1a{height:29.996550px;}
.h4{height:33.000000px;}
.h12{height:34.968313px;}
.h17{height:35.999550px;}
.ha{height:37.199535px;}
.he{height:37.247534px;}
.h14{height:39.119511px;}
.h20{height:39.960000px;}
.h13{height:40.559493px;}
.hc{height:41.904000px;}
.h18{height:43.376455px;}
.h1b{height:43.380621px;}
.h10{height:44.175000px;}
.h11{height:45.000000px;}
.h21{height:46.500000px;}
.h1d{height:49.440000px;}
.h22{height:51.745514px;}
.h16{height:53.999550px;}
.h15{height:55.871534px;}
.h3{height:58.406250px;}
.h1f{height:64.392594px;}
.h1e{height:64.732555px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hf{height:70.905000px;}
.hb{height:88.020000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1188.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.w9{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x1c{left:54.000000px;}
.x21{left:65.055000px;}
.x1d{left:71.433000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x39{left:130.280250px;}
.x23{left:154.431000px;}
.x22{left:159.362283px;}
.x52{left:167.610980px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xa{left:300.018000px;}
.x3f{left:307.587000px;}
.x58{left:312.945000px;}
.x1e{left:317.961000px;}
.x40{left:321.618000px;}
.x5d{left:332.247289px;}
.x59{left:343.389000px;}
.x6b{left:346.109133px;}
.x4b{left:353.338500px;}
.x6c{left:361.076546px;}
.x4c{left:367.369500px;}
.x54{left:376.129500px;}
.x42{left:378.510000px;}
.x18{left:385.906926px;}
.x13{left:392.712000px;}
.x5c{left:397.303500px;}
.x14{left:398.325000px;}
.x66{left:399.939261px;}
.x4f{left:401.386500px;}
.x19{left:412.779390px;}
.xb{left:414.652500px;}
.xc{left:428.512500px;}
.x50{left:431.830500px;}
.x5e{left:436.165990px;}
.x6d{left:437.186795px;}
.x65{left:438.206782px;}
.x1a{left:443.052612px;}
.x5f{left:452.578184px;}
.x3a{left:453.769500px;}
.x1f{left:455.130000px;}
.x60{left:461.677671px;}
.x67{left:464.313656px;}
.x24{left:467.290500px;}
.x61{left:468.309988px;}
.x1b{left:469.925076px;}
.x62{left:474.773107px;}
.x25{left:477.921000px;}
.x63{left:484.638184px;}
.x64{left:513.721838px;}
.x15{left:515.934000px;}
.x68{left:517.548590px;}
.x16{left:521.461500px;}
.x6a{left:522.480529px;}
.x69{left:524.095709px;}
.x55{left:527.244000px;}
.x2c{left:532.176000px;}
.xd{left:533.281500px;}
.xe{left:538.809000px;}
.x56{left:541.275000px;}
.x2d{left:553.351500px;}
.x20{left:560.576068px;}
.x3b{left:565.936500px;}
.x2e{left:568.743000px;}
.x51{left:575.121000px;}
.x43{left:578.097000px;}
.x3c{left:579.969000px;}
.x26{left:583.455000px;}
.x32{left:590.769000px;}
.x5a{left:594.255000px;}
.x27{left:596.041500px;}
.x17{left:601.653000px;}
.x44{left:603.270000px;}
.x2f{left:614.409000px;}
.x33{left:661.180500px;}
.xf{left:667.048500px;}
.x37{left:669.600000px;}
.x10{left:672.576000px;}
.x34{left:691.710000px;}
.x38{left:705.402000px;}
.x5b{left:706.422000px;}
.x47{left:710.163000px;}
.x45{left:715.435500px;}
.x3d{left:719.518500px;}
.x46{left:729.382500px;}
.x4d{left:734.314500px;}
.x48{left:735.336000px;}
.x53{left:743.413500px;}
.x3e{left:744.604500px;}
.x49{left:745.795500px;}
.x4e{left:759.486000px;}
.x57{left:767.310000px;}
.x28{left:770.967000px;}
.x4a{left:776.239500px;}
.x29{left:784.402500px;}
.x11{left:792.226500px;}
.x2a{left:795.628500px;}
.x30{left:798.859500px;}
.x41{left:800.815500px;}
.x12{left:806.088000px;}
.x2b{left:809.064000px;}
.x35{left:810.510000px;}
.x36{left:824.457000px;}
.x31{left:842.655000px;}
@media print{
.v4{vertical-align:-15.418667pt;}
.v1{vertical-align:-5.445333pt;}
.v2{vertical-align:-0.904522pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.411009pt;}
.v6{vertical-align:26.002692pt;}
.v5{vertical-align:32.654022pt;}
.ls9{letter-spacing:-1.123200pt;}
.lsd{letter-spacing:-1.067200pt;}
.ls10{letter-spacing:-1.066653pt;}
.ls2f{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.213331pt;}
.lse{letter-spacing:-0.212800pt;}
.lsb{letter-spacing:-0.211997pt;}
.lsa{letter-spacing:-0.211200pt;}
.ls11{letter-spacing:-0.211198pt;}
.ls1a{letter-spacing:-0.190548pt;}
.lsc{letter-spacing:-0.188775pt;}
.ls19{letter-spacing:-0.188423pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.266667pt;}
.ls31{letter-spacing:1.002667pt;}
.ls2e{letter-spacing:1.008000pt;}
.ls15{letter-spacing:2.603733pt;}
.ls32{letter-spacing:4.232480pt;}
.ls5{letter-spacing:4.236747pt;}
.ls4{letter-spacing:4.535410pt;}
.ls3{letter-spacing:4.539677pt;}
.ls7{letter-spacing:8.396695pt;}
.ls2c{letter-spacing:9.177485pt;}
.ls6{letter-spacing:9.232951pt;}
.ls2b{letter-spacing:9.288417pt;}
.ls12{letter-spacing:9.548681pt;}
.ls13{letter-spacing:9.719345pt;}
.ls14{letter-spacing:9.723612pt;}
.ls29{letter-spacing:9.779078pt;}
.ls2d{letter-spacing:9.783344pt;}
.ls18{letter-spacing:10.026541pt;}
.ls22{letter-spacing:11.269333pt;}
.ls24{letter-spacing:11.274667pt;}
.ls26{letter-spacing:11.397333pt;}
.ls1b{letter-spacing:11.461333pt;}
.ls2a{letter-spacing:11.482667pt;}
.ls25{letter-spacing:11.541333pt;}
.ls23{letter-spacing:11.546667pt;}
.ls20{letter-spacing:11.562667pt;}
.ls28{letter-spacing:11.568000pt;}
.ls1c{letter-spacing:11.573333pt;}
.ls1f{letter-spacing:11.632000pt;}
.ls1e{letter-spacing:11.637333pt;}
.ls27{letter-spacing:11.840000pt;}
.ls1d{letter-spacing:11.845333pt;}
.ls21{letter-spacing:11.850667pt;}
.ls1{letter-spacing:18.474436pt;}
.ls2{letter-spacing:18.478702pt;}
.ls16{letter-spacing:216.976533pt;}
.ls17{letter-spacing:221.813867pt;}
.ws2e{word-spacing:-22.442386pt;}
.ws124{word-spacing:-17.772652pt;}
.wsd7{word-spacing:-17.587311pt;}
.ws0{word-spacing:-16.874667pt;}
.wse7{word-spacing:-14.789333pt;}
.wsfc{word-spacing:-14.220000pt;}
.ws125{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.775853pt;}
.ws35{word-spacing:-9.599880pt;}
.wsb8{word-spacing:-9.301217pt;}
.ws85{word-spacing:-3.961567pt;}
.ws126{word-spacing:-3.763169pt;}
.ws122{word-spacing:-3.628770pt;}
.ws26{word-spacing:-3.252800pt;}
.ws175{word-spacing:-3.242626pt;}
.ws171{word-spacing:-3.187160pt;}
.wsc{word-spacing:-3.178627pt;}
.ws2a{word-spacing:-3.131200pt;}
.ws13f{word-spacing:-3.089028pt;}
.ws166{word-spacing:-3.071962pt;}
.ws160{word-spacing:-3.063428pt;}
.ws179{word-spacing:-3.054895pt;}
.wsd{word-spacing:-3.033562pt;}
.ws17b{word-spacing:-3.025029pt;}
.ws1a{word-spacing:-3.024800pt;}
.ws16c{word-spacing:-3.007962pt;}
.ws13d{word-spacing:-2.999429pt;}
.ws159{word-spacing:-2.982363pt;}
.ws17{word-spacing:-2.973829pt;}
.wsa{word-spacing:-2.971200pt;}
.wsf{word-spacing:-2.969563pt;}
.ws143{word-spacing:-2.956763pt;}
.ws1e{word-spacing:-2.953867pt;}
.ws11{word-spacing:-2.952496pt;}
.ws141{word-spacing:-2.948230pt;}
.ws153{word-spacing:-2.943963pt;}
.ws16e{word-spacing:-2.935430pt;}
.ws142{word-spacing:-2.931163pt;}
.ws16a{word-spacing:-2.926897pt;}
.ws134{word-spacing:-2.922630pt;}
.ws13a{word-spacing:-2.918364pt;}
.ws148{word-spacing:-2.914097pt;}
.ws178{word-spacing:-2.909830pt;}
.ws17c{word-spacing:-2.905564pt;}
.ws172{word-spacing:-2.901297pt;}
.ws14d{word-spacing:-2.897030pt;}
.ws1f{word-spacing:-2.893067pt;}
.ws138{word-spacing:-2.892764pt;}
.ws151{word-spacing:-2.888497pt;}
.ws29{word-spacing:-2.888000pt;}
.ws152{word-spacing:-2.884231pt;}
.ws162{word-spacing:-2.879964pt;}
.ws25{word-spacing:-2.867733pt;}
.ws15f{word-spacing:-2.867164pt;}
.ws150{word-spacing:-2.862898pt;}
.ws9{word-spacing:-2.860800pt;}
.wse{word-spacing:-2.858631pt;}
.ws74{word-spacing:-2.854364pt;}
.ws6{word-spacing:-2.851200pt;}
.ws173{word-spacing:-2.845831pt;}
.ws16{word-spacing:-2.841564pt;}
.ws14a{word-spacing:-2.837298pt;}
.wsb{word-spacing:-2.836800pt;}
.ws20{word-spacing:-2.832267pt;}
.ws12{word-spacing:-2.828765pt;}
.ws1b{word-spacing:-2.827200pt;}
.ws156{word-spacing:-2.824498pt;}
.ws15a{word-spacing:-2.820231pt;}
.ws100{word-spacing:-2.815965pt;}
.ws164{word-spacing:-2.807432pt;}
.ws1c{word-spacing:-2.806933pt;}
.ws137{word-spacing:-2.803165pt;}
.ws28{word-spacing:-2.801867pt;}
.ws155{word-spacing:-2.798898pt;}
.ws23{word-spacing:-2.796800pt;}
.ws8{word-spacing:-2.788800pt;}
.ws174{word-spacing:-2.786099pt;}
.ws144{word-spacing:-2.781832pt;}
.ws2b{word-spacing:-2.777565pt;}
.ws16d{word-spacing:-2.773299pt;}
.ws158{word-spacing:-2.769032pt;}
.ws176{word-spacing:-2.764765pt;}
.ws14c{word-spacing:-2.756232pt;}
.ws2d{word-spacing:-2.747699pt;}
.ws7{word-spacing:-2.736000pt;}
.ws16b{word-spacing:-2.726366pt;}
.ws21{word-spacing:-2.725867pt;}
.ws163{word-spacing:-2.722099pt;}
.ws1d{word-spacing:-2.720800pt;}
.ws167{word-spacing:-2.705033pt;}
.ws165{word-spacing:-2.683700pt;}
.ws15b{word-spacing:-2.679433pt;}
.ws135{word-spacing:-2.670900pt;}
.ws4{word-spacing:-2.668800pt;}
.ws10{word-spacing:-2.666633pt;}
.ws22{word-spacing:-2.654933pt;}
.ws168{word-spacing:-2.653833pt;}
.ws13{word-spacing:-2.645300pt;}
.ws13c{word-spacing:-2.641034pt;}
.ws3{word-spacing:-2.640000pt;}
.ws170{word-spacing:-2.636767pt;}
.ws169{word-spacing:-2.628234pt;}
.ws17d{word-spacing:-2.623967pt;}
.ws27{word-spacing:-2.614400pt;}
.ws146{word-spacing:-2.611167pt;}
.ws139{word-spacing:-2.598368pt;}
.ws136{word-spacing:-2.589834pt;}
.ws13b{word-spacing:-2.585568pt;}
.ws15e{word-spacing:-2.577034pt;}
.ws24{word-spacing:-2.573867pt;}
.ws145{word-spacing:-2.572768pt;}
.ws161{word-spacing:-2.564235pt;}
.ws17a{word-spacing:-2.555701pt;}
.ws15c{word-spacing:-2.551435pt;}
.ws157{word-spacing:-2.517302pt;}
.ws5{word-spacing:-2.505600pt;}
.ws14f{word-spacing:-2.500235pt;}
.ws15d{word-spacing:-2.495969pt;}
.ws147{word-spacing:-2.470369pt;}
.ws154{word-spacing:-2.466103pt;}
.ws140{word-spacing:-2.461836pt;}
.ws14{word-spacing:-2.457569pt;}
.ws15{word-spacing:-2.444769pt;}
.ws13e{word-spacing:-2.440503pt;}
.ws177{word-spacing:-2.423436pt;}
.ws16f{word-spacing:-2.414903pt;}
.ws14b{word-spacing:-2.410637pt;}
.ws18{word-spacing:-2.385037pt;}
.ws2{word-spacing:-2.355171pt;}
.ws11d{word-spacing:-0.976000pt;}
.ws41{word-spacing:-0.938655pt;}
.ws78{word-spacing:-0.844789pt;}
.ws44{word-spacing:-0.814923pt;}
.ws11b{word-spacing:-0.805333pt;}
.ws3e{word-spacing:-0.793590pt;}
.ws3b{word-spacing:-0.780790pt;}
.ws7a{word-spacing:-0.763724pt;}
.ws76{word-spacing:-0.742391pt;}
.ws46{word-spacing:-0.725324pt;}
.ws75{word-spacing:-0.716791pt;}
.ws39{word-spacing:-0.703991pt;}
.ws120{word-spacing:-0.698667pt;}
.ws31{word-spacing:-0.695458pt;}
.ws11c{word-spacing:-0.688000pt;}
.ws34{word-spacing:-0.678392pt;}
.ws11f{word-spacing:-0.661333pt;}
.ws30{word-spacing:-0.661325pt;}
.ws48{word-spacing:-0.657058pt;}
.wsdc{word-spacing:-0.656000pt;}
.ws40{word-spacing:-0.644259pt;}
.wsc3{word-spacing:-0.639992pt;}
.wsf7{word-spacing:-0.635725pt;}
.ws33{word-spacing:-0.618659pt;}
.ws11e{word-spacing:-0.613333pt;}
.ws77{word-spacing:-0.610126pt;}
.ws7c{word-spacing:-0.608000pt;}
.ws108{word-spacing:-0.605859pt;}
.ws42{word-spacing:-0.601592pt;}
.ws45{word-spacing:-0.597326pt;}
.ws4c{word-spacing:-0.588793pt;}
.ws4a{word-spacing:-0.575993pt;}
.ws58{word-spacing:-0.565333pt;}
.ws3f{word-spacing:-0.563193pt;}
.ws2f{word-spacing:-0.554660pt;}
.ws37{word-spacing:-0.550393pt;}
.ws106{word-spacing:-0.549333pt;}
.ws47{word-spacing:-0.541860pt;}
.ws10f{word-spacing:-0.538667pt;}
.ws32{word-spacing:-0.529060pt;}
.ws10a{word-spacing:-0.520527pt;}
.ws36{word-spacing:-0.507727pt;}
.ws10c{word-spacing:-0.506667pt;}
.ws4b{word-spacing:-0.494927pt;}
.ws4e{word-spacing:-0.486394pt;}
.ws4f{word-spacing:-0.485333pt;}
.ws49{word-spacing:-0.482127pt;}
.ws105{word-spacing:-0.474667pt;}
.ws3a{word-spacing:-0.469327pt;}
.ws7d{word-spacing:-0.464000pt;}
.ws3d{word-spacing:-0.460794pt;}
.ws7b{word-spacing:-0.458667pt;}
.ws6a{word-spacing:-0.453333pt;}
.wsbf{word-spacing:-0.447994pt;}
.ws79{word-spacing:-0.439461pt;}
.wscc{word-spacing:-0.432000pt;}
.wsdb{word-spacing:-0.426667pt;}
.wsba{word-spacing:-0.426661pt;}
.wsf2{word-spacing:-0.422395pt;}
.ws43{word-spacing:-0.418128pt;}
.wsd3{word-spacing:-0.416000pt;}
.wsda{word-spacing:-0.410667pt;}
.ws4d{word-spacing:-0.409595pt;}
.ws83{word-spacing:-0.405333pt;}
.ws121{word-spacing:-0.400000pt;}
.wsd2{word-spacing:-0.389333pt;}
.ws72{word-spacing:-0.384000pt;}
.wsc5{word-spacing:-0.378667pt;}
.wsf8{word-spacing:-0.371195pt;}
.ws10e{word-spacing:-0.368000pt;}
.wse2{word-spacing:-0.362667pt;}
.wsc2{word-spacing:-0.354129pt;}
.ws98{word-spacing:-0.352000pt;}
.ws52{word-spacing:-0.346667pt;}
.wse8{word-spacing:-0.341333pt;}
.wsd6{word-spacing:-0.336000pt;}
.wsce{word-spacing:-0.330667pt;}
.ws63{word-spacing:-0.325333pt;}
.ws3c{word-spacing:-0.324263pt;}
.ws56{word-spacing:-0.320000pt;}
.ws5b{word-spacing:-0.314667pt;}
.ws50{word-spacing:-0.309333pt;}
.ws8d{word-spacing:-0.304000pt;}
.ws9f{word-spacing:-0.302930pt;}
.wsd4{word-spacing:-0.298667pt;}
.wsa1{word-spacing:-0.298663pt;}
.ws92{word-spacing:-0.293333pt;}
.ws89{word-spacing:-0.288000pt;}
.ws53{word-spacing:-0.282667pt;}
.wsaf{word-spacing:-0.277333pt;}
.ws68{word-spacing:-0.272000pt;}
.wsdd{word-spacing:-0.266667pt;}
.ws6b{word-spacing:-0.261333pt;}
.ws6f{word-spacing:-0.256000pt;}
.ws57{word-spacing:-0.250667pt;}
.ws82{word-spacing:-0.245333pt;}
.ws69{word-spacing:-0.240000pt;}
.wsca{word-spacing:-0.234667pt;}
.ws6c{word-spacing:-0.229333pt;}
.wsb2{word-spacing:-0.224000pt;}
.ws6d{word-spacing:-0.218667pt;}
.ws6e{word-spacing:-0.213333pt;}
.ws5c{word-spacing:-0.208000pt;}
.ws95{word-spacing:-0.202667pt;}
.ws8c{word-spacing:-0.197333pt;}
.wsd1{word-spacing:-0.192000pt;}
.wsf1{word-spacing:-0.191998pt;}
.ws5f{word-spacing:-0.186667pt;}
.ws55{word-spacing:-0.181333pt;}
.ws59{word-spacing:-0.170667pt;}
.ws64{word-spacing:-0.165333pt;}
.wsc8{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.154667pt;}
.ws84{word-spacing:-0.149333pt;}
.wsa9{word-spacing:-0.149331pt;}
.wscf{word-spacing:-0.144000pt;}
.ws7e{word-spacing:-0.138667pt;}
.ws109{word-spacing:-0.132265pt;}
.wsd5{word-spacing:-0.128000pt;}
.wsc0{word-spacing:-0.127998pt;}
.ws9e{word-spacing:-0.123732pt;}
.wsb3{word-spacing:-0.122667pt;}
.ws9d{word-spacing:-0.119465pt;}
.ws54{word-spacing:-0.117333pt;}
.ws71{word-spacing:-0.112000pt;}
.wscd{word-spacing:-0.106667pt;}
.wsae{word-spacing:-0.102399pt;}
.ws101{word-spacing:-0.101333pt;}
.ws107{word-spacing:-0.089599pt;}
.wsc6{word-spacing:-0.085333pt;}
.ws70{word-spacing:-0.080000pt;}
.ws5d{word-spacing:-0.074667pt;}
.ws62{word-spacing:-0.069333pt;}
.ws99{word-spacing:-0.068266pt;}
.wse3{word-spacing:-0.064000pt;}
.wse9{word-spacing:-0.055466pt;}
.ws102{word-spacing:-0.053333pt;}
.wsf9{word-spacing:-0.051199pt;}
.ws94{word-spacing:-0.048000pt;}
.wsf3{word-spacing:-0.042667pt;}
.ws10b{word-spacing:-0.037333pt;}
.ws66{word-spacing:-0.032000pt;}
.ws65{word-spacing:-0.026667pt;}
.wsf6{word-spacing:-0.025600pt;}
.wsc4{word-spacing:-0.021333pt;}
.ws38{word-spacing:-0.017066pt;}
.wsf4{word-spacing:-0.016000pt;}
.ws88{word-spacing:-0.010667pt;}
.wscb{word-spacing:-0.005333pt;}
.wsb4{word-spacing:-0.004267pt;}
.ws1{word-spacing:0.000000pt;}
.wse5{word-spacing:0.005333pt;}
.ws80{word-spacing:0.010667pt;}
.wsd8{word-spacing:0.016000pt;}
.ws93{word-spacing:0.021333pt;}
.ws8b{word-spacing:0.026667pt;}
.wsa7{word-spacing:0.029866pt;}
.wsb1{word-spacing:0.032000pt;}
.ws60{word-spacing:0.037333pt;}
.ws91{word-spacing:0.042667pt;}
.wsc9{word-spacing:0.044800pt;}
.ws7f{word-spacing:0.048000pt;}
.ws97{word-spacing:0.053333pt;}
.ws73{word-spacing:0.058667pt;}
.ws8f{word-spacing:0.064000pt;}
.wsd0{word-spacing:0.069333pt;}
.ws81{word-spacing:0.074667pt;}
.ws5a{word-spacing:0.080000pt;}
.ws96{word-spacing:0.085333pt;}
.ws12d{word-spacing:0.096000pt;}
.ws8a{word-spacing:0.101333pt;}
.ws87{word-spacing:0.106667pt;}
.ws12a{word-spacing:0.112000pt;}
.wsc7{word-spacing:0.117333pt;}
.wse0{word-spacing:0.119465pt;}
.ws67{word-spacing:0.122667pt;}
.ws61{word-spacing:0.128000pt;}
.ws111{word-spacing:0.133333pt;}
.wsa3{word-spacing:0.136532pt;}
.ws90{word-spacing:0.138667pt;}
.ws8e{word-spacing:0.144000pt;}
.wsd9{word-spacing:0.159999pt;}
.ws119{word-spacing:0.160000pt;}
.wsa4{word-spacing:0.162131pt;}
.ws104{word-spacing:0.165333pt;}
.ws103{word-spacing:0.172799pt;}
.wse6{word-spacing:0.185598pt;}
.ws117{word-spacing:0.186667pt;}
.wsa5{word-spacing:0.191998pt;}
.ws110{word-spacing:0.192000pt;}
.ws118{word-spacing:0.202667pt;}
.wsb6{word-spacing:0.206073pt;}
.ws11a{word-spacing:0.218667pt;}
.wsaa{word-spacing:0.226131pt;}
.wsf5{word-spacing:0.234667pt;}
.ws86{word-spacing:0.236798pt;}
.wsb0{word-spacing:0.243198pt;}
.wsa0{word-spacing:0.247464pt;}
.ws9c{word-spacing:0.264530pt;}
.ws51{word-spacing:0.266667pt;}
.wsa2{word-spacing:0.273063pt;}
.ws10d{word-spacing:0.282667pt;}
.ws115{word-spacing:0.288000pt;}
.ws116{word-spacing:0.298667pt;}
.ws132{word-spacing:0.304000pt;}
.ws123{word-spacing:0.309333pt;}
.wsc1{word-spacing:0.332796pt;}
.ws113{word-spacing:0.341333pt;}
.wse4{word-spacing:0.384000pt;}
.ws9a{word-spacing:0.405328pt;}
.ws112{word-spacing:0.416000pt;}
.ws128{word-spacing:0.426667pt;}
.ws114{word-spacing:0.453333pt;}
.ws129{word-spacing:0.592000pt;}
.ws12f{word-spacing:0.629333pt;}
.ws12b{word-spacing:0.677333pt;}
.ws12e{word-spacing:0.800000pt;}
.ws12c{word-spacing:0.869333pt;}
.ws131{word-spacing:0.906667pt;}
.ws130{word-spacing:0.912000pt;}
.ws127{word-spacing:1.029333pt;}
.wse1{word-spacing:2.456606pt;}
.wsdf{word-spacing:2.545485pt;}
.wsde{word-spacing:2.726797pt;}
.ws2c{word-spacing:30.745216pt;}
.ws149{word-spacing:41.637880pt;}
.ws14e{word-spacing:41.642146pt;}
.ws133{word-spacing:41.697612pt;}
.wsb7{word-spacing:174.948213pt;}
.wsbb{word-spacing:184.492627pt;}
.wseb{word-spacing:227.606755pt;}
.wsed{word-spacing:238.879147pt;}
.wsf0{word-spacing:239.045545pt;}
.wsec{word-spacing:239.361275pt;}
.wsee{word-spacing:239.391141pt;}
.wsea{word-spacing:239.642871pt;}
.wsff{word-spacing:280.039166pt;}
.wsfa{word-spacing:290.684366pt;}
.wsb9{word-spacing:291.499290pt;}
.wsbc{word-spacing:292.821940pt;}
.wsbe{word-spacing:294.144590pt;}
.wsfb{word-spacing:303.198343pt;}
.wsbd{word-spacing:307.499090pt;}
.wsef{word-spacing:316.544310pt;}
.wsfe{word-spacing:322.675433pt;}
.wsfd{word-spacing:344.008500pt;}
.ws9b{word-spacing:432.092732pt;}
.wsac{word-spacing:595.209626pt;}
.wsad{word-spacing:612.429678pt;}
.wsa8{word-spacing:633.336083pt;}
.wsa6{word-spacing:696.823290pt;}
.wsab{word-spacing:705.697845pt;}
.wsb5{word-spacing:763.130727pt;}
._3a{margin-left:-21.595200pt;}
._3b{margin-left:-18.751766pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._9{width:1.124800pt;}
._5{width:3.245867pt;}
._0{width:4.966400pt;}
._7{width:8.396717pt;}
._6{width:9.599880pt;}
._a{width:10.548800pt;}
._8{width:11.967467pt;}
._c{width:12.907200pt;}
._25{width:14.079824pt;}
._3c{width:17.719223pt;}
._d{width:18.734699pt;}
._4{width:22.214400pt;}
._22{width:179.850552pt;}
._24{width:189.825894pt;}
._23{width:194.139440pt;}
._1f{width:196.149015pt;}
._20{width:225.959842pt;}
._21{width:230.793915pt;}
._2b{width:254.396820pt;}
._2f{width:263.753503pt;}
._26{width:267.303325pt;}
._30{width:269.086770pt;}
._31{width:274.667500pt;}
._2e{width:279.040779pt;}
._16{width:283.712720pt;}
._34{width:289.604913pt;}
._2c{width:299.477856pt;}
._38{width:302.272488pt;}
._13{width:304.149798pt;}
._35{width:310.195589pt;}
._36{width:312.981688pt;}
._12{width:324.407678pt;}
._29{width:329.685479pt;}
._27{width:341.619196pt;}
._33{width:352.490527pt;}
._2a{width:356.774207pt;}
._37{width:358.510719pt;}
._28{width:365.439699pt;}
._2d{width:371.878018pt;}
._19{width:396.227580pt;}
._1c{width:410.665800pt;}
._18{width:411.809252pt;}
._32{width:428.585576pt;}
._1a{width:430.744482pt;}
._1b{width:440.544893pt;}
._f{width:442.720866pt;}
._10{width:457.398016pt;}
._15{width:542.956413pt;}
._11{width:554.527468pt;}
._17{width:555.594122pt;}
._14{width:567.369974pt;}
._1d{width:580.715941pt;}
._e{width:652.557176pt;}
._1e{width:1213.254167pt;}
._39{width:1410.896519pt;}
._b{width:1433.739967pt;}
.fse{font-size:28.440000pt;}
.fsc{font-size:29.865600pt;}
.fs7{font-size:31.995733pt;}
.fsd{font-size:35.551467pt;}
.fs6{font-size:39.999467pt;}
.fs3{font-size:42.666133pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fsb{font-size:63.999467pt;}
.fs1{font-size:74.666667pt;}
.fs8{font-size:77.333333pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y44{bottom:48.000000pt;}
.y15{bottom:69.080000pt;}
.y1a{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y19{bottom:101.040000pt;}
.y104{bottom:106.356950pt;}
.y1b4{bottom:106.357267pt;}
.y166{bottom:108.472400pt;}
.y167{bottom:110.664533pt;}
.y165{bottom:110.665333pt;}
.ye0{bottom:110.665634pt;}
.y199{bottom:110.666188pt;}
.y225{bottom:110.666459pt;}
.ycc{bottom:110.666667pt;}
.y66{bottom:110.666724pt;}
.y1de{bottom:110.669333pt;}
.y131{bottom:111.196000pt;}
.y144{bottom:114.142283pt;}
.y1f9{bottom:118.678667pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y96{bottom:121.478667pt;}
.y224{bottom:123.366033pt;}
.y290{bottom:124.955850pt;}
.y65{bottom:125.331074pt;}
.y103{bottom:126.993492pt;}
.y1b3{bottom:126.993809pt;}
.y164{bottom:127.976000pt;}
.ycb{bottom:127.977333pt;}
.y1dd{bottom:127.980000pt;}
.y130{bottom:128.505333pt;}
.y198{bottom:134.704287pt;}
.y143{bottom:134.854558pt;}
.y1f8{bottom:135.989333pt;}
.y28f{bottom:137.654358pt;}
.y16{bottom:137.733333pt;}
.ydf{bottom:138.557333pt;}
.yf{bottom:138.680000pt;}
.y95{bottom:138.789333pt;}
.y100{bottom:139.691891pt;}
.y102{bottom:139.692000pt;}
.y1b2{bottom:139.692317pt;}
.y64{bottom:139.995424pt;}
.y17{bottom:140.293333pt;}
.y223{bottom:140.675683pt;}
.y101{bottom:144.377333pt;}
.y163{bottom:145.361333pt;}
.yca{bottom:145.362667pt;}
.y1dc{bottom:145.365333pt;}
.y261{bottom:145.667058pt;}
.y12f{bottom:145.890667pt;}
.y142{bottom:147.477333pt;}
.yff{bottom:152.314667pt;}
.y1b1{bottom:152.316159pt;}
.y1f7{bottom:153.298667pt;}
.y222{bottom:153.299526pt;}
.y63{bottom:154.660840pt;}
.y28e{bottom:154.965075pt;}
.y94{bottom:156.100000pt;}
.y260{bottom:158.290900pt;}
.yde{bottom:159.649042pt;}
.y161{bottom:160.478667pt;}
.y162{bottom:162.670667pt;}
.yc9{bottom:162.672000pt;}
.y112{bottom:162.673333pt;}
.y1db{bottom:162.676000pt;}
.y12e{bottom:163.201333pt;}
.y1b0{bottom:165.014667pt;}
.y221{bottom:165.998034pt;}
.y28d{bottom:167.663583pt;}
.y62{bottom:169.325190pt;}
.y25f{bottom:170.989408pt;}
.y93{bottom:173.409333pt;}
.ydd{bottom:176.353900pt;}
.y160{bottom:177.789333pt;}
.y1f6{bottom:178.697333pt;}
.y15f{bottom:179.981333pt;}
.yc8{bottom:179.982667pt;}
.y111{bottom:179.984000pt;}
.y1da{bottom:179.985333pt;}
.y28b{bottom:180.287425pt;}
.y12d{bottom:180.512000pt;}
.y28c{bottom:180.514622pt;}
.y220{bottom:183.308751pt;}
.y61{bottom:183.989540pt;}
.y25e{bottom:188.300125pt;}
.y92{bottom:190.794667pt;}
.ydc{bottom:192.984092pt;}
.y43{bottom:195.932133pt;}
.y1f5{bottom:196.006667pt;}
.y21f{bottom:196.007259pt;}
.y1e4{bottom:197.366667pt;}
.yc7{bottom:197.368000pt;}
.y110{bottom:197.369333pt;}
.y1d9{bottom:197.372000pt;}
.y28a{bottom:197.597075pt;}
.y12c{bottom:197.897333pt;}
.y60{bottom:198.653890pt;}
.y25d{bottom:200.998633pt;}
.y15e{bottom:202.658667pt;}
.y91{bottom:208.105333pt;}
.ydb{bottom:209.688950pt;}
.y289{bottom:210.296650pt;}
.y21e{bottom:213.317975pt;}
.y5f{bottom:213.318240pt;}
.y25c{bottom:213.622475pt;}
.y42{bottom:214.602800pt;}
.yc6{bottom:214.678667pt;}
.y1d8{bottom:214.681333pt;}
.y12b{bottom:215.208000pt;}
.y1f4{bottom:218.682667pt;}
.y1e3{bottom:219.968000pt;}
.y288{bottom:222.996225pt;}
.y90{bottom:225.416000pt;}
.y21d{bottom:226.017550pt;}
.yda{bottom:226.319142pt;}
.y25b{bottom:230.933192pt;}
.yc5{bottom:231.988000pt;}
.y10f{bottom:231.989333pt;}
.y1d7{bottom:231.992000pt;}
.y12a{bottom:232.517333pt;}
.y41{bottom:233.273467pt;}
.y5e{bottom:235.995290pt;}
.y21c{bottom:238.640326pt;}
.y287{bottom:240.305875pt;}
.y8f{bottom:242.801333pt;}
.yd9{bottom:243.024000pt;}
.y25a{bottom:243.631700pt;}
.yc4{bottom:249.298667pt;}
.y10e{bottom:249.300000pt;}
.y1d6{bottom:249.302667pt;}
.y129{bottom:249.902667pt;}
.y5d{bottom:250.659640pt;}
.y40{bottom:251.944133pt;}
.y15d{bottom:252.700000pt;}
.y286{bottom:252.929717pt;}
.y21b{bottom:256.026775pt;}
.y259{bottom:256.331275pt;}
.y197{bottom:257.914667pt;}
.y196{bottom:259.654114pt;}
.yd8{bottom:259.655248pt;}
.y8e{bottom:260.112000pt;}
.y5c{bottom:265.323990pt;}
.y1f3{bottom:266.232000pt;}
.yc3{bottom:266.684000pt;}
.y10d{bottom:266.685333pt;}
.y1d5{bottom:266.688000pt;}
.y128{bottom:267.213333pt;}
.y1e2{bottom:267.217333pt;}
.y15c{bottom:267.817333pt;}
.y21a{bottom:268.649550pt;}
.y15b{bottom:270.085333pt;}
.y285{bottom:270.315100pt;}
.y3f{bottom:270.614800pt;}
.y258{bottom:273.640925pt;}
.yd7{bottom:276.360106pt;}
.y8d{bottom:277.421333pt;}
.y195{bottom:279.458667pt;}
.y219{bottom:281.349125pt;}
.y284{bottom:282.938942pt;}
.y1f2{bottom:283.617333pt;}
.yc2{bottom:283.994667pt;}
.y1d4{bottom:283.997333pt;}
.y127{bottom:284.524000pt;}
.y1e1{bottom:284.528000pt;}
.y159{bottom:285.128000pt;}
.y257{bottom:286.264767pt;}
.y15a{bottom:287.394667pt;}
.y158{bottom:287.396000pt;}
.y5b{bottom:288.001040pt;}
.y3e{bottom:289.286733pt;}
.yd6{bottom:292.990298pt;}
.y218{bottom:293.972967pt;}
.y8c{bottom:294.806667pt;}
.y283{bottom:300.324325pt;}
.y1f1{bottom:300.928000pt;}
.yc1{bottom:301.305333pt;}
.y1d3{bottom:301.308000pt;}
.y126{bottom:301.833333pt;}
.y1e0{bottom:301.837333pt;}
.y156{bottom:302.513333pt;}
.y5a{bottom:302.666457pt;}
.y256{bottom:303.650150pt;}
.y157{bottom:304.705333pt;}
.y155{bottom:304.706667pt;}
.ya{bottom:306.382667pt;}
.y3d{bottom:307.957400pt;}
.yd5{bottom:309.695155pt;}
.y217{bottom:311.358350pt;}
.y8b{bottom:312.117333pt;}
.y282{bottom:312.948167pt;}
.y254{bottom:316.273992pt;}
.y255{bottom:316.501189pt;}
.y124{bottom:316.950667pt;}
.y59{bottom:317.330807pt;}
.y1f0{bottom:318.237333pt;}
.yc0{bottom:318.690667pt;}
.y1d2{bottom:318.693333pt;}
.y125{bottom:319.218667pt;}
.y123{bottom:319.222667pt;}
.y153{bottom:319.824000pt;}
.y18f{bottom:321.108000pt;}
.y154{bottom:322.016000pt;}
.y152{bottom:322.017333pt;}
.y190{bottom:323.301333pt;}
.y18e{bottom:323.302667pt;}
.y216{bottom:323.982192pt;}
.yd4{bottom:326.325348pt;}
.y3c{bottom:326.552067pt;}
.y8a{bottom:329.428000pt;}
.y281{bottom:330.257817pt;}
.y58{bottom:331.995157pt;}
.y253{bottom:333.659375pt;}
.y1ef{bottom:335.624000pt;}
.ybf{bottom:336.000000pt;}
.y10c{bottom:336.001333pt;}
.y1d1{bottom:336.004000pt;}
.y122{bottom:336.533333pt;}
.y215{bottom:336.680700pt;}
.y151{bottom:339.402667pt;}
.y18d{bottom:340.688000pt;}
.y280{bottom:342.957392pt;}
.yd3{bottom:343.031272pt;}
.yd{bottom:343.546667pt;}
.y3b{bottom:345.222733pt;}
.y252{bottom:346.283217pt;}
.y57{bottom:346.659507pt;}
.y89{bottom:346.813333pt;}
.y9{bottom:351.724000pt;}
.y1ee{bottom:352.933333pt;}
.ybe{bottom:353.310667pt;}
.y10b{bottom:353.312000pt;}
.y1d0{bottom:353.313333pt;}
.y121{bottom:353.844000pt;}
.y214{bottom:353.991417pt;}
.y14f{bottom:354.520000pt;}
.y27f{bottom:355.656966pt;}
.y150{bottom:356.712000pt;}
.y14e{bottom:356.713333pt;}
.y18c{bottom:357.998667pt;}
.yd2{bottom:359.660398pt;}
.y56{bottom:361.323857pt;}
.y251{bottom:363.593934pt;}
.y3a{bottom:363.893400pt;}
.y88{bottom:364.124000pt;}
.y213{bottom:366.689925pt;}
.y27e{bottom:368.279742pt;}
.y1ed{bottom:370.244000pt;}
.ybd{bottom:370.696000pt;}
.y10a{bottom:370.697333pt;}
.y1cf{bottom:370.700000pt;}
.y120{bottom:371.229333pt;}
.y14d{bottom:371.829333pt;}
.y14c{bottom:374.022667pt;}
.y18b{bottom:375.308000pt;}
.y24f{bottom:376.292442pt;}
.yd1{bottom:376.366322pt;}
.y250{bottom:376.519639pt;}
.y87{bottom:381.433333pt;}
.y39{bottom:382.564067pt;}
.y212{bottom:384.000642pt;}
.y55{bottom:384.000907pt;}
.y27d{bottom:385.666191pt;}
.yb{bottom:386.533333pt;}
.y1ec{bottom:387.629333pt;}
.ybc{bottom:388.006667pt;}
.y1ce{bottom:388.009333pt;}
.y11f{bottom:388.538667pt;}
.y1df{bottom:388.540000pt;}
.y14b{bottom:391.408000pt;}
.y18a{bottom:392.618667pt;}
.yd0{bottom:392.995448pt;}
.y24e{bottom:393.603159pt;}
.y210{bottom:396.700216pt;}
.y211{bottom:396.926347pt;}
.y8{bottom:397.065333pt;}
.y86{bottom:398.744000pt;}
.y38{bottom:401.236000pt;}
.y27c{bottom:402.975842pt;}
.y1eb{bottom:404.940000pt;}
.ybb{bottom:405.316000pt;}
.y109{bottom:405.317333pt;}
.y1cd{bottom:405.320000pt;}
.yf5{bottom:405.544000pt;}
.y11e{bottom:405.849333pt;}
.y24d{bottom:406.301667pt;}
.y54{bottom:406.677957pt;}
.y14a{bottom:408.718667pt;}
.y189{bottom:410.004000pt;}
.ycf{bottom:412.800000pt;}
.y20f{bottom:414.009867pt;}
.y27b{bottom:415.599684pt;}
.y85{bottom:416.129333pt;}
.y24c{bottom:418.925509pt;}
.y37{bottom:419.906667pt;}
.y1ea{bottom:422.249333pt;}
.y108{bottom:422.702667pt;}
.y1cc{bottom:422.705333pt;}
.yf4{bottom:422.854667pt;}
.y11d{bottom:423.234667pt;}
.y148{bottom:423.836000pt;}
.y149{bottom:426.028000pt;}
.y147{bottom:426.029333pt;}
.y20e{bottom:426.633709pt;}
.y188{bottom:427.314667pt;}
.yba{bottom:427.995400pt;}
.y53{bottom:429.355007pt;}
.y27a{bottom:432.985066pt;}
.y84{bottom:433.440000pt;}
.y11{bottom:433.826667pt;}
.y24b{bottom:436.310891pt;}
.y36{bottom:438.577333pt;}
.y20c{bottom:439.332217pt;}
.y20d{bottom:439.559414pt;}
.y1e9{bottom:439.636000pt;}
.y107{bottom:440.013333pt;}
.y1cb{bottom:440.016000pt;}
.yf3{bottom:440.164000pt;}
.yf1{bottom:440.165333pt;}
.y11c{bottom:440.545333pt;}
.y1af{bottom:440.921333pt;}
.y146{bottom:441.146667pt;}
.y7{bottom:442.406667pt;}
.y145{bottom:443.414667pt;}
.y187{bottom:444.624000pt;}
.y278{bottom:445.608909pt;}
.y279{bottom:445.986504pt;}
.yf2{bottom:446.134667pt;}
.y24a{bottom:448.934734pt;}
.y83{bottom:450.749333pt;}
.yb9{bottom:452.032000pt;}
.y52{bottom:452.032056pt;}
.y20b{bottom:456.642934pt;}
.y1e8{bottom:456.945333pt;}
.y35{bottom:457.248000pt;}
.y106{bottom:457.322667pt;}
.y1ca{bottom:457.325333pt;}
.yf0{bottom:457.550667pt;}
.yce{bottom:457.856000pt;}
.y1ae{bottom:458.230667pt;}
.y185{bottom:459.741333pt;}
.y186{bottom:462.009333pt;}
.y184{bottom:462.010667pt;}
.y277{bottom:462.994291pt;}
.y249{bottom:466.321183pt;}
.y51{bottom:466.696406pt;}
.y82{bottom:468.134667pt;}
.y20a{bottom:469.341442pt;}
.y1e7{bottom:474.256000pt;}
.y1c9{bottom:474.636000pt;}
.yef{bottom:474.861333pt;}
.ycd{bottom:475.241333pt;}
.y1ad{bottom:475.616000pt;}
.y276{bottom:475.618133pt;}
.y34{bottom:475.918667pt;}
.y180{bottom:476.222926pt;}
.y183{bottom:477.128000pt;}
.y12{bottom:478.426667pt;}
.y248{bottom:478.943959pt;}
.y182{bottom:479.320000pt;}
.y105{bottom:480.000000pt;}
.y81{bottom:485.445333pt;}
.y209{bottom:486.652159pt;}
.y6{bottom:487.748000pt;}
.y275{bottom:488.317708pt;}
.y50{bottom:489.373456pt;}
.y1e6{bottom:491.565333pt;}
.y247{bottom:491.643533pt;}
.y1c8{bottom:492.021333pt;}
.yee{bottom:492.170667pt;}
.yb8{bottom:492.550667pt;}
.y1ac{bottom:492.926667pt;}
.y33{bottom:494.589333pt;}
.y181{bottom:496.629333pt;}
.y208{bottom:499.350667pt;}
.y17f{bottom:500.185293pt;}
.y80{bottom:502.756000pt;}
.y4f{bottom:504.037806pt;}
.y274{bottom:505.627358pt;}
.y246{bottom:508.953183pt;}
.y1c7{bottom:509.332000pt;}
.yed{bottom:509.557333pt;}
.yb7{bottom:509.861333pt;}
.y1ab{bottom:510.237333pt;}
.y32{bottom:513.260000pt;}
.y1e5{bottom:514.242667pt;}
.y207{bottom:517.341333pt;}
.y273{bottom:518.326933pt;}
.y4e{bottom:518.703223pt;}
.y7f{bottom:520.141333pt;}
.y245{bottom:521.652758pt;}
.y1b{bottom:524.093333pt;}
.y194{bottom:525.128841pt;}
.y17e{bottom:525.205780pt;}
.y1c6{bottom:526.642667pt;}
.yec{bottom:526.866667pt;}
.yb6{bottom:527.172000pt;}
.y1aa{bottom:527.622667pt;}
.y272{bottom:530.950775pt;}
.y31{bottom:531.930667pt;}
.y5{bottom:533.089333pt;}
.y4d{bottom:533.367573pt;}
.y244{bottom:534.276600pt;}
.y7e{bottom:537.452000pt;}
.y17d{bottom:541.834906pt;}
.y1a8{bottom:542.664000pt;}
.y1c5{bottom:544.028000pt;}
.yeb{bottom:544.177333pt;}
.yb5{bottom:544.557333pt;}
.y1a9{bottom:544.932000pt;}
.y1a7{bottom:544.934667pt;}
.y193{bottom:545.764317pt;}
.y4c{bottom:548.031923pt;}
.y271{bottom:548.260425pt;}
.y30{bottom:550.601333pt;}
.y243{bottom:551.661983pt;}
.y7d{bottom:554.761333pt;}
.y192{bottom:558.463891pt;}
.y17c{bottom:558.540830pt;}
.y270{bottom:560.960000pt;}
.y1c4{bottom:561.337333pt;}
.yea{bottom:561.562667pt;}
.ye{bottom:561.706667pt;}
.yb4{bottom:561.868000pt;}
.y1a6{bottom:562.244000pt;}
.y4b{bottom:562.696273pt;}
.y242{bottom:564.285825pt;}
.y2f{bottom:569.272000pt;}
.y191{bottom:571.086667pt;}
.y7c{bottom:572.146667pt;}
.y206{bottom:572.752000pt;}
.y26f{bottom:573.658508pt;}
.y17b{bottom:575.171022pt;}
.y1c3{bottom:578.648000pt;}
.ye9{bottom:578.873333pt;}
.yb3{bottom:579.177333pt;}
.y1a5{bottom:579.554667pt;}
.y241{bottom:581.595475pt;}
.y4a{bottom:584.541333pt;}
.y7b{bottom:589.457333pt;}
.y205{bottom:590.062667pt;}
.y26e{bottom:590.969225pt;}
.y17a{bottom:591.875880pt;}
.y240{bottom:594.295050pt;}
.y1c2{bottom:596.033333pt;}
.ye8{bottom:596.182667pt;}
.yb2{bottom:596.562667pt;}
.y1a4{bottom:596.940000pt;}
.y2e{bottom:598.601333pt;}
.y26d{bottom:603.592000pt;}
.y7a{bottom:606.768000pt;}
.y179{bottom:608.506072pt;}
.y23f{bottom:611.604700pt;}
.y1c1{bottom:613.344000pt;}
.ye7{bottom:613.569333pt;}
.yb1{bottom:613.873333pt;}
.y204{bottom:614.024000pt;}
.y1a3{bottom:614.250667pt;}
.y26c{bottom:620.978450pt;}
.y79{bottom:624.077333pt;}
.y23d{bottom:624.304275pt;}
.y23e{bottom:624.531472pt;}
.y178{bottom:625.210930pt;}
.y1c0{bottom:630.653333pt;}
.ye6{bottom:630.878667pt;}
.yb0{bottom:631.184000pt;}
.y1a2{bottom:631.560000pt;}
.y26b{bottom:633.602292pt;}
.y203{bottom:638.061333pt;}
.y78{bottom:641.464000pt;}
.y23c{bottom:641.613925pt;}
.y177{bottom:641.841122pt;}
.y26a{bottom:646.300800pt;}
.y1bf{bottom:647.964000pt;}
.ye5{bottom:648.189333pt;}
.yaf{bottom:648.569333pt;}
.y1a1{bottom:648.945333pt;}
.y2d{bottom:652.196533pt;}
.y23a{bottom:654.313500pt;}
.y23b{bottom:654.540697pt;}
.y176{bottom:658.547047pt;}
.y77{bottom:658.773333pt;}
.y49{bottom:661.796000pt;}
.y202{bottom:662.024000pt;}
.y269{bottom:663.611517pt;}
.y1be{bottom:665.349333pt;}
.ye4{bottom:665.498667pt;}
.y11b{bottom:665.878667pt;}
.yae{bottom:665.880000pt;}
.y1a0{bottom:671.621333pt;}
.y239{bottom:671.624217pt;}
.y175{bottom:675.176172pt;}
.y76{bottom:676.084000pt;}
.y268{bottom:676.310025pt;}
.y48{bottom:677.140000pt;}
.y2b{bottom:678.879933pt;}
.y2c{bottom:679.106064pt;}
.y141{bottom:680.390667pt;}
.y1bd{bottom:682.660000pt;}
.yad{bottom:683.189333pt;}
.y238{bottom:684.322725pt;}
.y201{bottom:686.061333pt;}
.ye3{bottom:688.176000pt;}
.y266{bottom:688.933867pt;}
.y267{bottom:689.161064pt;}
.y4{bottom:691.756000pt;}
.y174{bottom:691.882097pt;}
.y2a{bottom:692.183233pt;}
.y47{bottom:692.409333pt;}
.y75{bottom:693.469333pt;}
.y13f{bottom:695.508000pt;}
.y140{bottom:697.700000pt;}
.y13e{bottom:697.701333pt;}
.y1bc{bottom:699.970667pt;}
.yac{bottom:700.500000pt;}
.y237{bottom:701.633442pt;}
.y29{bottom:705.487600pt;}
.y265{bottom:706.319250pt;}
.y46{bottom:707.754667pt;}
.y173{bottom:708.511222pt;}
.y200{bottom:710.024000pt;}
.y74{bottom:710.780000pt;}
.y236{bottom:714.331950pt;}
.y13d{bottom:715.012000pt;}
.y1bb{bottom:717.356000pt;}
.y19f{bottom:717.884000pt;}
.yab{bottom:717.885333pt;}
.y28{bottom:718.866633pt;}
.y264{bottom:718.943092pt;}
.y45{bottom:723.098667pt;}
.y13{bottom:725.040000pt;}
.y172{bottom:725.217147pt;}
.ye2{bottom:726.728000pt;}
.y73{bottom:728.089333pt;}
.y235{bottom:731.642666pt;}
.y27{bottom:732.171000pt;}
.y13c{bottom:732.397333pt;}
.y19d{bottom:733.001333pt;}
.y1ff{bottom:734.061333pt;}
.y1ba{bottom:734.665333pt;}
.y19e{bottom:735.193333pt;}
.yaa{bottom:735.196000pt;}
.y171{bottom:741.847339pt;}
.ye1{bottom:744.037333pt;}
.y234{bottom:744.265442pt;}
.y72{bottom:745.474667pt;}
.y26{bottom:745.550033pt;}
.y263{bottom:748.952317pt;}
.y13b{bottom:749.708000pt;}
.y1b9{bottom:751.976000pt;}
.ya9{bottom:752.505333pt;}
.y1fe{bottom:758.022667pt;}
.y170{bottom:758.552197pt;}
.y25{bottom:758.853333pt;}
.y233{bottom:761.651891pt;}
.y71{bottom:762.785333pt;}
.y13a{bottom:767.017333pt;}
.y1b8{bottom:769.361333pt;}
.ya8{bottom:769.890667pt;}
.y19c{bottom:769.892000pt;}
.y232{bottom:774.274667pt;}
.y16f{bottom:775.182389pt;}
.yfe{bottom:776.844300pt;}
.y70{bottom:780.096000pt;}
.y1fd{bottom:782.061333pt;}
.y138{bottom:782.134667pt;}
.y24{bottom:782.816000pt;}
.y22{bottom:782.816400pt;}
.y139{bottom:784.402667pt;}
.y137{bottom:784.404000pt;}
.y1b7{bottom:786.672000pt;}
.y231{bottom:786.974241pt;}
.ya7{bottom:787.201333pt;}
.y23{bottom:788.182667pt;}
.y294{bottom:791.661116pt;}
.y16e{bottom:791.887247pt;}
.y6f{bottom:797.405333pt;}
.y20{bottom:797.556000pt;}
.y136{bottom:801.713333pt;}
.y21{bottom:802.846667pt;}
.y1b6{bottom:803.981333pt;}
.y230{bottom:804.284958pt;}
.ya6{bottom:804.512000pt;}
.yfd{bottom:804.737333pt;}
.y3{bottom:805.081333pt;}
.y1fc{bottom:806.022667pt;}
.y16d{bottom:808.517439pt;}
.y6e{bottom:814.792000pt;}
.yfc{bottom:816.832079pt;}
.y22f{bottom:816.983466pt;}
.y293{bottom:817.210664pt;}
.y135{bottom:819.024000pt;}
.ya5{bottom:821.897333pt;}
.y16c{bottom:825.223363pt;}
.y1b5{bottom:826.658667pt;}
.y22e{bottom:829.607309pt;}
.y1fb{bottom:830.060000pt;}
.y1f{bottom:830.817867pt;}
.y6d{bottom:832.101333pt;}
.y292{bottom:834.294183pt;}
.y134{bottom:836.333333pt;}
.y11a{bottom:839.206667pt;}
.ya4{bottom:839.208000pt;}
.y16b{bottom:841.852489pt;}
.yfb{bottom:841.852567pt;}
.y22d{bottom:846.992691pt;}
.y6c{bottom:849.412000pt;}
.y1fa{bottom:852.737333pt;}
.y119{bottom:856.516000pt;}
.ya3{bottom:856.517333pt;}
.y2{bottom:857.092000pt;}
.y16a{bottom:858.482681pt;}
.yfa{bottom:858.482759pt;}
.y133{bottom:859.012734pt;}
.y22c{bottom:859.616533pt;}
.y1e{bottom:860.827467pt;}
.y118{bottom:862.488000pt;}
.y9d{bottom:863.622883pt;}
.y6b{bottom:866.797333pt;}
.y22b{bottom:872.316108pt;}
.y262{bottom:872.542239pt;}
.ya2{bottom:873.902667pt;}
.y19b{bottom:873.904000pt;}
.yf9{bottom:875.187617pt;}
.y169{bottom:875.188605pt;}
.y291{bottom:876.926184pt;}
.y9c{bottom:878.287233pt;}
.y1{bottom:879.748000pt;}
.y117{bottom:879.798667pt;}
.y132{bottom:883.049333pt;}
.y6a{bottom:884.108000pt;}
.y22a{bottom:889.625758pt;}
.y1d{bottom:890.834667pt;}
.y116{bottom:891.212000pt;}
.ya1{bottom:891.213333pt;}
.y168{bottom:891.817731pt;}
.yf8{bottom:891.817809pt;}
.y115{bottom:897.108000pt;}
.y9b{bottom:900.964283pt;}
.y69{bottom:901.417333pt;}
.y228{bottom:902.325333pt;}
.y229{bottom:902.551463pt;}
.y114{bottom:908.522667pt;}
.yf7{bottom:908.523655pt;}
.ya0{bottom:908.524000pt;}
.y113{bottom:914.494667pt;}
.y9a{bottom:915.628633pt;}
.y68{bottom:918.802667pt;}
.y227{bottom:919.634983pt;}
.y1c{bottom:920.844000pt;}
.y19a{bottom:923.641333pt;}
.yf6{bottom:925.152781pt;}
.y9f{bottom:925.833333pt;}
.y99{bottom:930.292983pt;}
.y226{bottom:932.258825pt;}
.y67{bottom:941.404000pt;}
.y9e{bottom:943.218667pt;}
.y98{bottom:944.957333pt;}
.y97{bottom:994.393333pt;}
.h1c{height:21.330000pt;}
.h19{height:23.145840pt;}
.hd{height:24.828689pt;}
.h1a{height:26.663600pt;}
.h4{height:29.333333pt;}
.h12{height:31.082945pt;}
.h17{height:31.999600pt;}
.ha{height:33.066253pt;}
.he{height:33.108919pt;}
.h14{height:34.772899pt;}
.h20{height:35.520000pt;}
.h13{height:36.052883pt;}
.hc{height:37.248000pt;}
.h18{height:38.556849pt;}
.h1b{height:38.560552pt;}
.h10{height:39.266667pt;}
.h11{height:40.000000pt;}
.h21{height:41.333333pt;}
.h1d{height:43.946667pt;}
.h22{height:45.996012pt;}
.h16{height:47.999600pt;}
.h15{height:49.663586pt;}
.h3{height:51.916667pt;}
.h1f{height:57.237861pt;}
.h1e{height:57.540049pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hf{height:63.026667pt;}
.hb{height:78.240000pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.w9{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x1c{left:48.000000pt;}
.x21{left:57.826667pt;}
.x1d{left:63.496000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x39{left:115.804667pt;}
.x23{left:137.272000pt;}
.x22{left:141.655363pt;}
.x52{left:148.987538pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xa{left:266.682667pt;}
.x3f{left:273.410667pt;}
.x58{left:278.173333pt;}
.x1e{left:282.632000pt;}
.x40{left:285.882667pt;}
.x5d{left:295.330923pt;}
.x59{left:305.234667pt;}
.x6b{left:307.652563pt;}
.x4b{left:314.078667pt;}
.x6c{left:320.956930pt;}
.x4c{left:326.550667pt;}
.x54{left:334.337333pt;}
.x42{left:336.453333pt;}
.x18{left:343.028379pt;}
.x13{left:349.077333pt;}
.x5c{left:353.158667pt;}
.x14{left:354.066667pt;}
.x66{left:355.501565pt;}
.x4f{left:356.788000pt;}
.x19{left:366.915014pt;}
.xb{left:368.580000pt;}
.xc{left:380.900000pt;}
.x50{left:383.849333pt;}
.x5e{left:387.703102pt;}
.x6d{left:388.610484pt;}
.x65{left:389.517140pt;}
.x1a{left:393.824544pt;}
.x5f{left:402.291719pt;}
.x3a{left:403.350667pt;}
.x1f{left:404.560000pt;}
.x60{left:410.380152pt;}
.x67{left:412.723250pt;}
.x24{left:415.369333pt;}
.x61{left:416.275545pt;}
.x1b{left:417.711179pt;}
.x62{left:422.020540pt;}
.x25{left:424.818667pt;}
.x63{left:430.789497pt;}
.x64{left:456.641634pt;}
.x15{left:458.608000pt;}
.x68{left:460.043191pt;}
.x16{left:463.521333pt;}
.x6a{left:464.427137pt;}
.x69{left:465.862852pt;}
.x55{left:468.661333pt;}
.x2c{left:473.045333pt;}
.xd{left:474.028000pt;}
.xe{left:478.941333pt;}
.x56{left:481.133333pt;}
.x2d{left:491.868000pt;}
.x20{left:498.289838pt;}
.x3b{left:503.054667pt;}
.x2e{left:505.549333pt;}
.x51{left:511.218667pt;}
.x43{left:513.864000pt;}
.x3c{left:515.528000pt;}
.x26{left:518.626667pt;}
.x32{left:525.128000pt;}
.x5a{left:528.226667pt;}
.x27{left:529.814667pt;}
.x17{left:534.802667pt;}
.x44{left:536.240000pt;}
.x2f{left:546.141333pt;}
.x33{left:587.716000pt;}
.xf{left:592.932000pt;}
.x37{left:595.200000pt;}
.x10{left:597.845333pt;}
.x34{left:614.853333pt;}
.x38{left:627.024000pt;}
.x5b{left:627.930667pt;}
.x47{left:631.256000pt;}
.x45{left:635.942667pt;}
.x3d{left:639.572000pt;}
.x46{left:648.340000pt;}
.x4d{left:652.724000pt;}
.x48{left:653.632000pt;}
.x53{left:660.812000pt;}
.x3e{left:661.870667pt;}
.x49{left:662.929333pt;}
.x4e{left:675.098667pt;}
.x57{left:682.053333pt;}
.x28{left:685.304000pt;}
.x4a{left:689.990667pt;}
.x29{left:697.246667pt;}
.x11{left:704.201333pt;}
.x2a{left:707.225333pt;}
.x30{left:710.097333pt;}
.x41{left:711.836000pt;}
.x12{left:716.522667pt;}
.x2b{left:719.168000pt;}
.x35{left:720.453333pt;}
.x36{left:732.850667pt;}
.x31{left:749.026667pt;}
}




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