
    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_605090e8c27c83c72115d0f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78ae80796718c5c348b7e102.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.146973;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_117850add972d11255f4a090.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.146973;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_89f0b3011268a975e16ccea9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075684;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_a9323b9550b616419bfe2a4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963000;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_809570c9f3036e5eaf4543eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988000;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_f197de1e77e5d4ee1b829882.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692000;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;}
.m2{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229167,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231481,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233796,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236111,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.810000px;}
.v1{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-4.704000px;}
.ls3d{letter-spacing:-2.736000px;}
.ls3{letter-spacing:-2.688000px;}
.ls2d{letter-spacing:-2.508000px;}
.ls3b{letter-spacing:-2.400000px;}
.ls39{letter-spacing:-2.352000px;}
.ls1e{letter-spacing:-2.223000px;}
.ls35{letter-spacing:-2.166000px;}
.ls24{letter-spacing:-2.112000px;}
.ls1f{letter-spacing:-1.968000px;}
.ls34{letter-spacing:-1.767000px;}
.ls47{letter-spacing:-1.653000px;}
.ls69{letter-spacing:-1.539000px;}
.ls60{letter-spacing:-1.488000px;}
.ls6c{letter-spacing:-1.404000px;}
.ls5e{letter-spacing:-1.326000px;}
.ls3c{letter-spacing:-1.200000px;}
.ls65{letter-spacing:-1.152000px;}
.ls2f{letter-spacing:-1.057920px;}
.ls6a{letter-spacing:-1.026000px;}
.ls1a{letter-spacing:-0.960000px;}
.ls38{letter-spacing:-0.958740px;}
.ls31{letter-spacing:-0.890880px;}
.ls2{letter-spacing:-0.864000px;}
.ls3a{letter-spacing:-0.807360px;}
.lsb{letter-spacing:-0.798000px;}
.ls52{letter-spacing:-0.751680px;}
.ls7{letter-spacing:-0.684000px;}
.ls27{letter-spacing:-0.624000px;}
.ls13{letter-spacing:-0.570000px;}
.ls50{letter-spacing:-0.556800px;}
.ls4d{letter-spacing:-0.528960px;}
.ls67{letter-spacing:-0.528000px;}
.ls5b{letter-spacing:-0.513000px;}
.ls48{letter-spacing:-0.473280px;}
.ls6{letter-spacing:-0.456000px;}
.ls16{letter-spacing:-0.432000px;}
.ls43{letter-spacing:-0.384000px;}
.ls20{letter-spacing:-0.342000px;}
.ls26{letter-spacing:-0.297540px;}
.ls2c{letter-spacing:-0.285000px;}
.ls2b{letter-spacing:-0.250560px;}
.ls11{letter-spacing:-0.228000px;}
.ls4a{letter-spacing:-0.222720px;}
.ls44{letter-spacing:-0.198360px;}
.ls21{letter-spacing:-0.171000px;}
.ls17{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.114000px;}
.ls61{letter-spacing:-0.111360px;}
.ls5{letter-spacing:-0.108000px;}
.ls5d{letter-spacing:-0.099180px;}
.ls1c{letter-spacing:-0.078000px;}
.ls1d{letter-spacing:-0.057000px;}
.ls6d{letter-spacing:-0.048000px;}
.ls46{letter-spacing:-0.033060px;}
.ls54{letter-spacing:-0.027840px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.033000px;}
.ls4f{letter-spacing:0.057000px;}
.ls32{letter-spacing:0.096000px;}
.ls36{letter-spacing:0.099180px;}
.lsc{letter-spacing:0.114000px;}
.ls57{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.171000px;}
.ls28{letter-spacing:0.194880px;}
.ls9{letter-spacing:0.228000px;}
.ls58{letter-spacing:0.228600px;}
.ls5f{letter-spacing:0.278400px;}
.ls25{letter-spacing:0.285000px;}
.ls51{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.330600px;}
.ls29{letter-spacing:0.336000px;}
.lse{letter-spacing:0.342000px;}
.ls41{letter-spacing:0.363660px;}
.ls49{letter-spacing:0.384000px;}
.ls45{letter-spacing:0.399000px;}
.ls2e{letter-spacing:0.456000px;}
.ls23{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.513000px;}
.ls42{letter-spacing:0.528000px;}
.ls64{letter-spacing:0.528960px;}
.ls8{letter-spacing:0.570000px;}
.lsd{letter-spacing:0.627000px;}
.ls63{letter-spacing:0.628140px;}
.lsf{letter-spacing:0.684000px;}
.ls68{letter-spacing:0.760380px;}
.ls55{letter-spacing:0.768000px;}
.ls4c{letter-spacing:0.798000px;}
.ls10{letter-spacing:0.855000px;}
.ls6b{letter-spacing:0.859560px;}
.ls19{letter-spacing:0.960000px;}
.ls53{letter-spacing:1.008000px;}
.ls37{letter-spacing:1.026000px;}
.ls62{letter-spacing:1.057920px;}
.ls30{letter-spacing:1.083000px;}
.ls15{letter-spacing:1.140000px;}
.ls5c{letter-spacing:1.157100px;}
.ls4e{letter-spacing:1.190160px;}
.ls4b{letter-spacing:1.197000px;}
.ls66{letter-spacing:1.200000px;}
.ls5a{letter-spacing:1.223220px;}
.ls40{letter-spacing:1.254000px;}
.ls1b{letter-spacing:1.596000px;}
.ls3f{letter-spacing:1.653000px;}
.ls3e{letter-spacing:1.710000px;}
.ls56{letter-spacing:1.749600px;}
.ls2a{letter-spacing:1.872000px;}
.ls22{letter-spacing:2.109000px;}
.ls59{letter-spacing:2.203200px;}
.ls1{letter-spacing:6.960000px;}
.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;}
}
.ws28{word-spacing:-19.422000px;}
.ws105{word-spacing:-18.174000px;}
.ws135{word-spacing:-18.096000px;}
.wsd2{word-spacing:-15.447000px;}
.ws4{word-spacing:-15.390000px;}
.wsd3{word-spacing:-15.048000px;}
.ws109{word-spacing:-14.421000px;}
.ws134{word-spacing:-14.307000px;}
.ws14f{word-spacing:-14.250000px;}
.ws29{word-spacing:-14.079000px;}
.ws107{word-spacing:-12.960000px;}
.ws2{word-spacing:-12.150000px;}
.ws108{word-spacing:-12.096000px;}
.ws1{word-spacing:-12.042000px;}
.ws10d{word-spacing:-12.000000px;}
.ws136{word-spacing:-11.952000px;}
.ws10c{word-spacing:-10.848000px;}
.ws106{word-spacing:-10.512000px;}
.ws2a{word-spacing:-9.888000px;}
.ws103{word-spacing:-9.488220px;}
.wsd5{word-spacing:-9.455160px;}
.ws104{word-spacing:-9.422100px;}
.ws10a{word-spacing:-9.322920px;}
.ws133{word-spacing:-9.025380px;}
.ws10b{word-spacing:-8.893140px;}
.wsa4{word-spacing:-8.628660px;}
.wsa2{word-spacing:-8.595600px;}
.wsa3{word-spacing:-8.364180px;}
.ws3{word-spacing:-8.265000px;}
.wsd1{word-spacing:-8.231940px;}
.ws68{word-spacing:-7.967460px;}
.wsd4{word-spacing:-7.736040px;}
.ws69{word-spacing:-7.207080px;}
.ws12e{word-spacing:-4.959000px;}
.ws4f{word-spacing:-4.560000px;}
.wse9{word-spacing:-4.503000px;}
.ws137{word-spacing:-3.420000px;}
.ws54{word-spacing:-3.306000px;}
.wsab{word-spacing:-3.249000px;}
.ws3a{word-spacing:-3.135000px;}
.ws4a{word-spacing:-3.072000px;}
.wse1{word-spacing:-2.793000px;}
.ws14b{word-spacing:-2.622000px;}
.ws20{word-spacing:-2.565000px;}
.ws8f{word-spacing:-2.337000px;}
.ws1f{word-spacing:-2.280000px;}
.ws144{word-spacing:-2.223000px;}
.ws64{word-spacing:-2.112000px;}
.ws40{word-spacing:-2.109000px;}
.wsc0{word-spacing:-2.052000px;}
.ws11a{word-spacing:-1.995000px;}
.wse4{word-spacing:-1.881000px;}
.wsf3{word-spacing:-1.824000px;}
.ws2d{word-spacing:-1.767000px;}
.ws7b{word-spacing:-1.710000px;}
.ws102{word-spacing:-1.632000px;}
.ws39{word-spacing:-1.596000px;}
.ws27{word-spacing:-1.536000px;}
.wsb2{word-spacing:-1.482000px;}
.wsda{word-spacing:-1.425000px;}
.ws71{word-spacing:-1.311000px;}
.ws12{word-spacing:-1.254000px;}
.ws138{word-spacing:-1.197000px;}
.ws9e{word-spacing:-1.083000px;}
.wsa{word-spacing:-1.080000px;}
.ws81{word-spacing:-1.026000px;}
.ws100{word-spacing:-1.008000px;}
.ws58{word-spacing:-0.969000px;}
.ws26{word-spacing:-0.912000px;}
.ws145{word-spacing:-0.859560px;}
.ws3c{word-spacing:-0.855000px;}
.ws15{word-spacing:-0.798000px;}
.wsd0{word-spacing:-0.768000px;}
.ws140{word-spacing:-0.760380px;}
.ws89{word-spacing:-0.720000px;}
.ws52{word-spacing:-0.684000px;}
.ws2e{word-spacing:-0.627000px;}
.ws93{word-spacing:-0.570000px;}
.ws12b{word-spacing:-0.528960px;}
.wsff{word-spacing:-0.528000px;}
.ws19{word-spacing:-0.513000px;}
.ws65{word-spacing:-0.480000px;}
.ws35{word-spacing:-0.399000px;}
.wsec{word-spacing:-0.384000px;}
.ws88{word-spacing:-0.336000px;}
.ws131{word-spacing:-0.288000px;}
.ws73{word-spacing:-0.285000px;}
.ws11d{word-spacing:-0.278400px;}
.ws8c{word-spacing:-0.228000px;}
.ws87{word-spacing:-0.194880px;}
.ws12c{word-spacing:-0.171000px;}
.wsf4{word-spacing:-0.114000px;}
.wsa5{word-spacing:-0.096000px;}
.wsfb{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.ws101{word-spacing:0.027840px;}
.ws150{word-spacing:0.048000px;}
.ws3b{word-spacing:0.057000px;}
.wsbf{word-spacing:0.078000px;}
.ws118{word-spacing:0.099180px;}
.ws11f{word-spacing:0.111360px;}
.ws33{word-spacing:0.114000px;}
.ws91{word-spacing:0.171000px;}
.wsd8{word-spacing:0.198360px;}
.wsed{word-spacing:0.222720px;}
.ws8a{word-spacing:0.250560px;}
.ws126{word-spacing:0.285000px;}
.wsf{word-spacing:0.342000px;}
.wsd6{word-spacing:0.384000px;}
.ws92{word-spacing:0.399000px;}
.wsd{word-spacing:0.456000px;}
.wseb{word-spacing:0.473280px;}
.ws95{word-spacing:0.513000px;}
.wsfd{word-spacing:0.528000px;}
.wsfc{word-spacing:0.556800px;}
.ws1a{word-spacing:0.570000px;}
.ws12f{word-spacing:0.576000px;}
.ws83{word-spacing:0.624000px;}
.ws5a{word-spacing:0.627000px;}
.wsa0{word-spacing:0.672000px;}
.wsd7{word-spacing:0.684000px;}
.ws146{word-spacing:0.741000px;}
.wsfe{word-spacing:0.751680px;}
.ws11{word-spacing:0.798000px;}
.wsbc{word-spacing:0.807360px;}
.ws63{word-spacing:0.816000px;}
.wsa8{word-spacing:0.855000px;}
.ws6{word-spacing:0.864000px;}
.ws9f{word-spacing:0.890880px;}
.wsef{word-spacing:0.912000px;}
.wsb9{word-spacing:0.958740px;}
.ws2b{word-spacing:0.960000px;}
.ws9{word-spacing:1.008000px;}
.ws13e{word-spacing:1.026000px;}
.wsf9{word-spacing:1.083000px;}
.wse0{word-spacing:1.140000px;}
.ws130{word-spacing:1.152000px;}
.wsc1{word-spacing:1.197000px;}
.wsbe{word-spacing:1.200000px;}
.ws70{word-spacing:1.425000px;}
.wsa1{word-spacing:1.488000px;}
.ws62{word-spacing:1.539000px;}
.ws7e{word-spacing:1.596000px;}
.ws3f{word-spacing:1.653000px;}
.ws38{word-spacing:1.710000px;}
.wsb0{word-spacing:1.767000px;}
.ws5d{word-spacing:1.824000px;}
.ws10e{word-spacing:1.968000px;}
.wsc3{word-spacing:1.995000px;}
.ws6a{word-spacing:2.112000px;}
.ws13{word-spacing:2.166000px;}
.ws45{word-spacing:2.223000px;}
.ws41{word-spacing:2.337000px;}
.wsbb{word-spacing:2.352000px;}
.wsbd{word-spacing:2.400000px;}
.wsf8{word-spacing:2.451000px;}
.ws94{word-spacing:2.508000px;}
.ws6f{word-spacing:2.565000px;}
.ws4c{word-spacing:2.679000px;}
.ws7{word-spacing:2.688000px;}
.wsc4{word-spacing:2.736000px;}
.ws49{word-spacing:2.784000px;}
.wsc5{word-spacing:2.793000px;}
.ws34{word-spacing:2.850000px;}
.ws127{word-spacing:2.907000px;}
.ws74{word-spacing:3.021000px;}
.ws8{word-spacing:3.024000px;}
.wsc6{word-spacing:3.078000px;}
.ws82{word-spacing:3.135000px;}
.wsdb{word-spacing:3.192000px;}
.ws116{word-spacing:3.477000px;}
.ws30{word-spacing:3.534000px;}
.wscb{word-spacing:3.591000px;}
.ws13d{word-spacing:3.648000px;}
.wsd9{word-spacing:3.705000px;}
.wsf0{word-spacing:3.876000px;}
.ws24{word-spacing:3.984000px;}
.ws11b{word-spacing:4.047000px;}
.wsaf{word-spacing:4.104000px;}
.wsaa{word-spacing:4.161000px;}
.ws4e{word-spacing:4.275000px;}
.ws57{word-spacing:4.389000px;}
.ws13c{word-spacing:4.560000px;}
.wsdc{word-spacing:4.617000px;}
.ws125{word-spacing:4.788000px;}
.wse7{word-spacing:4.845000px;}
.ws8e{word-spacing:4.959000px;}
.ws9a{word-spacing:5.073000px;}
.wsa6{word-spacing:5.130000px;}
.ws99{word-spacing:5.187000px;}
.ws22{word-spacing:5.244000px;}
.ws31{word-spacing:5.358000px;}
.wscd{word-spacing:5.415000px;}
.ws8d{word-spacing:5.586000px;}
.wsa9{word-spacing:5.700000px;}
.wsfa{word-spacing:5.757000px;}
.wsa7{word-spacing:5.814000px;}
.ws4d{word-spacing:6.042000px;}
.wsea{word-spacing:6.099000px;}
.ws72{word-spacing:6.156000px;}
.ws96{word-spacing:6.213000px;}
.ws13f{word-spacing:6.384000px;}
.ws85{word-spacing:6.498000px;}
.ws5{word-spacing:6.624000px;}
.ws21{word-spacing:6.783000px;}
.ws25{word-spacing:7.008000px;}
.ws12a{word-spacing:7.068000px;}
.ws55{word-spacing:7.125000px;}
.ws147{word-spacing:7.410000px;}
.ws80{word-spacing:7.467000px;}
.wsb1{word-spacing:7.638000px;}
.ws61{word-spacing:7.695000px;}
.ws120{word-spacing:7.728000px;}
.ws46{word-spacing:7.752000px;}
.wsf5{word-spacing:7.809000px;}
.ws2f{word-spacing:7.866000px;}
.ws53{word-spacing:7.980000px;}
.ws47{word-spacing:8.037000px;}
.ws5f{word-spacing:8.151000px;}
.wsde{word-spacing:8.322000px;}
.ws143{word-spacing:8.688000px;}
.ws14d{word-spacing:8.721000px;}
.ws66{word-spacing:8.736000px;}
.ws3d{word-spacing:8.778000px;}
.ws36{word-spacing:8.835000px;}
.wsb4{word-spacing:8.949000px;}
.ws119{word-spacing:9.063000px;}
.ws14e{word-spacing:9.120000px;}
.wsf1{word-spacing:9.234000px;}
.wse5{word-spacing:9.348000px;}
.ws1d{word-spacing:9.405000px;}
.ws115{word-spacing:9.519000px;}
.ws50{word-spacing:9.576000px;}
.ws141{word-spacing:10.032000px;}
.wsb3{word-spacing:10.089000px;}
.ws11c{word-spacing:10.203000px;}
.ws84{word-spacing:10.317000px;}
.ws6b{word-spacing:10.545000px;}
.wsc7{word-spacing:10.602000px;}
.ws122{word-spacing:10.716000px;}
.ws110{word-spacing:10.830000px;}
.ws79{word-spacing:11.001000px;}
.ws37{word-spacing:11.115000px;}
.ws6c{word-spacing:11.286000px;}
.ws9d{word-spacing:11.400000px;}
.ws2c{word-spacing:11.457000px;}
.wsee{word-spacing:11.514000px;}
.wse6{word-spacing:11.571000px;}
.wsad{word-spacing:11.628000px;}
.ws10{word-spacing:11.685000px;}
.wsae{word-spacing:11.799000px;}
.ws51{word-spacing:11.856000px;}
.wsba{word-spacing:11.904000px;}
.ws98{word-spacing:12.084000px;}
.ws13b{word-spacing:12.141000px;}
.wsce{word-spacing:12.483000px;}
.wse2{word-spacing:12.540000px;}
.ws78{word-spacing:12.597000px;}
.ws123{word-spacing:12.654000px;}
.ws139{word-spacing:12.768000px;}
.wsca{word-spacing:12.996000px;}
.ws14c{word-spacing:13.224000px;}
.ws1c{word-spacing:13.281000px;}
.ws5c{word-spacing:13.509000px;}
.ws32{word-spacing:13.566000px;}
.wsdd{word-spacing:13.623000px;}
.ws4b{word-spacing:13.851000px;}
.ws75{word-spacing:14.136000px;}
.ws48{word-spacing:14.193000px;}
.ws129{word-spacing:14.421000px;}
.wsb6{word-spacing:14.592000px;}
.wsc8{word-spacing:14.763000px;}
.wsdf{word-spacing:14.877000px;}
.wsac{word-spacing:14.991000px;}
.ws6e{word-spacing:15.048000px;}
.ws1b{word-spacing:15.162000px;}
.wsb7{word-spacing:15.219000px;}
.ws117{word-spacing:15.276000px;}
.wsf2{word-spacing:15.333000px;}
.ws3e{word-spacing:15.447000px;}
.ws1e{word-spacing:15.504000px;}
.ws23{word-spacing:15.600000px;}
.ws7f{word-spacing:15.618000px;}
.ws76{word-spacing:15.675000px;}
.ws60{word-spacing:16.017000px;}
.ws43{word-spacing:16.074000px;}
.ws7c{word-spacing:16.131000px;}
.ws86{word-spacing:16.245000px;}
.ws112{word-spacing:16.416000px;}
.wse8{word-spacing:16.473000px;}
.ws59{word-spacing:16.530000px;}
.ws44{word-spacing:16.701000px;}
.ws18{word-spacing:16.815000px;}
.ws132{word-spacing:16.848000px;}
.ws67{word-spacing:17.088000px;}
.ws10f{word-spacing:17.271000px;}
.ws12d{word-spacing:17.385000px;}
.wscf{word-spacing:17.727000px;}
.ws8b{word-spacing:17.841000px;}
.ws114{word-spacing:18.012000px;}
.ws149{word-spacing:18.240000px;}
.ws5b{word-spacing:18.297000px;}
.wsb5{word-spacing:18.468000px;}
.wsb8{word-spacing:18.525000px;}
.ws42{word-spacing:18.582000px;}
.ws7d{word-spacing:18.867000px;}
.wsf6{word-spacing:19.038000px;}
.ws148{word-spacing:19.380000px;}
.ws16{word-spacing:19.494000px;}
.ws13a{word-spacing:19.665000px;}
.ws121{word-spacing:20.976000px;}
.ws124{word-spacing:21.318000px;}
.ws9c{word-spacing:21.546000px;}
.wse3{word-spacing:21.660000px;}
.ws11e{word-spacing:22.128000px;}
.ws56{word-spacing:22.857000px;}
.wsc{word-spacing:22.914000px;}
.wsf7{word-spacing:23.085000px;}
.wscc{word-spacing:23.541000px;}
.wsb{word-spacing:23.598000px;}
.wse{word-spacing:23.997000px;}
.ws6d{word-spacing:24.909000px;}
.ws142{word-spacing:25.593000px;}
.ws111{word-spacing:25.764000px;}
.ws9b{word-spacing:26.505000px;}
.ws5e{word-spacing:26.676000px;}
.wsc9{word-spacing:27.474000px;}
.ws77{word-spacing:29.070000px;}
.ws97{word-spacing:29.982000px;}
.ws17{word-spacing:30.723000px;}
.ws14a{word-spacing:31.122000px;}
.ws113{word-spacing:31.806000px;}
.wsc2{word-spacing:32.148000px;}
.ws90{word-spacing:33.459000px;}
.ws7a{word-spacing:34.998000px;}
.ws14{word-spacing:35.226000px;}
.ws128{word-spacing:35.397000px;}
._19{margin-left:-531.072000px;}
._11{margin-left:-530.016000px;}
._25{margin-left:-529.008000px;}
._23{margin-left:-37.962000px;}
._22{margin-left:-33.785824px;}
._1c{margin-left:-15.921208px;}
._26{margin-left:-14.232119px;}
._7{margin-left:-12.816000px;}
._21{margin-left:-11.118119px;}
._14{margin-left:-9.249000px;}
._8{margin-left:-5.232000px;}
._9{margin-left:-3.717000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.104000px;}
._6{width:1.056000px;}
._0{width:2.064000px;}
._2{width:3.744000px;}
._d{width:4.896000px;}
._5{width:6.264000px;}
._10{width:8.160000px;}
._13{width:9.198000px;}
._16{width:10.497000px;}
._b{width:11.742000px;}
._c{width:13.242000px;}
._28{width:14.855400px;}
._e{width:16.011000px;}
._17{width:17.710800px;}
._a{width:19.305000px;}
._24{width:20.334000px;}
._12{width:21.336000px;}
._f{width:22.485000px;}
._18{width:23.667000px;}
._1a{width:24.783000px;}
._1b{width:27.858000px;}
._1e{width:28.944000px;}
._1d{width:30.093000px;}
._27{width:32.169000px;}
._15{width:36.579000px;}
._20{width:40.830000px;}
._1f{width:41.922000px;}
._4{width:101.616000px;}
.fc2{color:rgb(157,157,156);}
.fc1{color:rgb(210,35,108);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:27.840000px;}
.fsc{font-size:33.060000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:51.840000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:152.047800px;}
.fs8{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:80.889000px;}
.y4{bottom:97.125005px;}
.y98{bottom:116.929200px;}
.y111{bottom:116.935200px;}
.y1a9{bottom:116.941200px;}
.y60{bottom:116.947200px;}
.y99{bottom:120.889200px;}
.y96{bottom:131.179200px;}
.y122{bottom:131.185200px;}
.y5f{bottom:131.191200px;}
.yc6{bottom:131.197200px;}
.y97{bottom:135.139200px;}
.y20{bottom:139.264499px;}
.y204{bottom:145.363800px;}
.y95{bottom:145.429200px;}
.y5e{bottom:145.435200px;}
.yc5{bottom:145.441200px;}
.y110{bottom:149.389200px;}
.y203{bottom:159.607800px;}
.y202{bottom:159.613800px;}
.y5c{bottom:159.679200px;}
.yc4{bottom:159.685200px;}
.yec{bottom:159.691200px;}
.y5d{bottom:163.639200px;}
.y200{bottom:173.857800px;}
.yc2{bottom:173.929200px;}
.yeb{bottom:173.935200px;}
.y5b{bottom:173.941200px;}
.y1a8{bottom:173.947200px;}
.y201{bottom:177.817800px;}
.yc3{bottom:177.889200px;}
.y14f{bottom:183.467100px;}
.y10f{bottom:183.515100px;}
.yc1{bottom:188.179200px;}
.y5a{bottom:188.185200px;}
.y1a7{bottom:188.191200px;}
.yea{bottom:192.139200px;}
.y17{bottom:196.933500px;}
.y10e{bottom:200.075100px;}
.y176{bottom:200.107350px;}
.y14e{bottom:200.111100px;}
.y92{bottom:200.129100px;}
.y93{bottom:200.159100px;}
.y58{bottom:202.429200px;}
.y1a6{bottom:202.435200px;}
.y1bf{bottom:202.441200px;}
.y121{bottom:202.447200px;}
.y94{bottom:204.861600px;}
.y59{bottom:206.389200px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yc0{bottom:216.679200px;}
.y1be{bottom:216.685200px;}
.y120{bottom:216.691200px;}
.y1ed{bottom:216.709350px;}
.y10d{bottom:216.719100px;}
.y175{bottom:216.751350px;}
.y14d{bottom:216.755100px;}
.y91{bottom:216.773100px;}
.y62{bottom:219.173250px;}
.y18e{bottom:220.639200px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ybe{bottom:230.929200px;}
.y11f{bottom:230.935200px;}
.y1ec{bottom:233.353350px;}
.y10c{bottom:233.363100px;}
.y174{bottom:233.395350px;}
.ye9{bottom:233.399100px;}
.y90{bottom:233.417100px;}
.y61{bottom:233.417250px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.ybf{bottom:234.889200px;}
.y11d{bottom:245.179200px;}
.y1a5{bottom:245.185200px;}
.y18d{bottom:245.197200px;}
.y11e{bottom:249.139200px;}
.y1eb{bottom:249.997350px;}
.y10b{bottom:250.007100px;}
.y173{bottom:250.039350px;}
.ye8{bottom:250.043100px;}
.y8f{bottom:250.061100px;}
.y1a3{bottom:259.429200px;}
.y18c{bottom:259.441200px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y23{bottom:263.317800px;}
.y1a4{bottom:263.389200px;}
.y55{bottom:266.639100px;}
.y1ea{bottom:266.641350px;}
.y10a{bottom:266.651100px;}
.ybd{bottom:266.675100px;}
.y172{bottom:266.683350px;}
.ye7{bottom:266.687100px;}
.y8e{bottom:266.705100px;}
.y56{bottom:266.711100px;}
.y57{bottom:271.413600px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y18b{bottom:273.685200px;}
.y1bd{bottom:273.691200px;}
.y54{bottom:283.283100px;}
.y1e9{bottom:283.285350px;}
.y109{bottom:283.295100px;}
.ybc{bottom:283.319100px;}
.y171{bottom:283.327350px;}
.ye6{bottom:283.331100px;}
.y8d{bottom:283.349100px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y189{bottom:287.929200px;}
.y1bc{bottom:287.935200px;}
.y11c{bottom:288.051600px;}
.y18a{bottom:291.889200px;}
.y53{bottom:299.927100px;}
.y108{bottom:299.939100px;}
.y1a2{bottom:299.945100px;}
.ybb{bottom:299.963100px;}
.y170{bottom:299.971350px;}
.ye5{bottom:299.975100px;}
.y1ba{bottom:302.179200px;}
.y188{bottom:302.185200px;}
.y1bb{bottom:306.139200px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y187{bottom:316.429200px;}
.y1e8{bottom:316.559100px;}
.y52{bottom:316.571100px;}
.y107{bottom:316.583100px;}
.y1a1{bottom:316.589100px;}
.yba{bottom:316.607100px;}
.y8a{bottom:316.613100px;}
.y16f{bottom:316.615350px;}
.ye4{bottom:316.619100px;}
.y8b{bottom:316.625100px;}
.y8c{bottom:321.327600px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y185{bottom:330.679200px;}
.y1ff{bottom:333.091200px;}
.y14b{bottom:333.191100px;}
.y1e7{bottom:333.203100px;}
.y51{bottom:333.215100px;}
.y106{bottom:333.227100px;}
.y1a0{bottom:333.233100px;}
.yb9{bottom:333.251100px;}
.y89{bottom:333.257100px;}
.ye3{bottom:333.263100px;}
.y186{bottom:334.639200px;}
.y14c{bottom:337.965600px;}
.ye{bottom:348.133500px;}
.y1fe{bottom:349.735200px;}
.y86{bottom:349.811100px;}
.y14a{bottom:349.835100px;}
.y1e6{bottom:349.847100px;}
.y50{bottom:349.859100px;}
.y105{bottom:349.871100px;}
.y19f{bottom:349.877100px;}
.y16e{bottom:349.889100px;}
.yb8{bottom:349.895100px;}
.y87{bottom:349.901100px;}
.y88{bottom:354.603600px;}
.y1fd{bottom:366.379200px;}
.y85{bottom:366.455100px;}
.y11a{bottom:366.461100px;}
.y149{bottom:366.479100px;}
.y1e5{bottom:366.491100px;}
.y4f{bottom:366.503100px;}
.y104{bottom:366.515100px;}
.y184{bottom:366.521100px;}
.y16d{bottom:366.533100px;}
.yb7{bottom:366.539100px;}
.ye2{bottom:366.740550px;}
.y11b{bottom:371.241600px;}
.y1fc{bottom:383.023200px;}
.y84{bottom:383.099100px;}
.y119{bottom:383.105100px;}
.y148{bottom:383.123100px;}
.y1e4{bottom:383.135100px;}
.y4e{bottom:383.147100px;}
.y103{bottom:383.159100px;}
.y183{bottom:383.165100px;}
.y16c{bottom:383.177100px;}
.yd{bottom:386.785499px;}
.y1fb{bottom:399.667200px;}
.y83{bottom:399.743100px;}
.y118{bottom:399.749100px;}
.y147{bottom:399.767100px;}
.y1e3{bottom:399.779100px;}
.y4d{bottom:399.791100px;}
.y102{bottom:399.803100px;}
.y182{bottom:399.809100px;}
.yb5{bottom:399.815100px;}
.yb6{bottom:404.517600px;}
.yc{bottom:408.044999px;}
.y1fa{bottom:416.311200px;}
.ye1{bottom:416.347350px;}
.y82{bottom:416.387100px;}
.y117{bottom:416.393100px;}
.y16b{bottom:416.405100px;}
.y146{bottom:416.411100px;}
.y1e2{bottom:416.423100px;}
.y4c{bottom:416.435100px;}
.y101{bottom:416.447100px;}
.y181{bottom:416.453100px;}
.y1f9{bottom:432.955200px;}
.ye0{bottom:432.991350px;}
.y81{bottom:433.031100px;}
.y116{bottom:433.037100px;}
.y16a{bottom:433.049100px;}
.y145{bottom:433.055100px;}
.y1e1{bottom:433.067100px;}
.y4b{bottom:433.079100px;}
.y100{bottom:433.091100px;}
.y1f8{bottom:449.599200px;}
.ydf{bottom:449.635350px;}
.y1b9{bottom:449.653350px;}
.y80{bottom:449.675100px;}
.y115{bottom:449.681100px;}
.y169{bottom:449.693100px;}
.y144{bottom:449.699100px;}
.y1e0{bottom:449.711100px;}
.y4a{bottom:449.723100px;}
.y17f{bottom:449.729100px;}
.y19e{bottom:449.930400px;}
.y180{bottom:454.431600px;}
.y1f7{bottom:466.243200px;}
.yde{bottom:466.279350px;}
.yff{bottom:466.283100px;}
.y1b8{bottom:466.297350px;}
.y7f{bottom:466.319100px;}
.y114{bottom:466.325100px;}
.y168{bottom:466.337100px;}
.y143{bottom:466.343100px;}
.y1df{bottom:466.355100px;}
.y49{bottom:466.367100px;}
.y1f6{bottom:482.887200px;}
.ydd{bottom:482.923350px;}
.yfe{bottom:482.927100px;}
.y1b7{bottom:482.941350px;}
.y7e{bottom:482.963100px;}
.y113{bottom:482.969100px;}
.y167{bottom:482.981100px;}
.y142{bottom:482.987100px;}
.y1de{bottom:482.999100px;}
.yb4{bottom:483.005100px;}
.y1f5{bottom:499.531200px;}
.ydc{bottom:499.567350px;}
.yfd{bottom:499.571100px;}
.y1b6{bottom:499.585350px;}
.y7d{bottom:499.607100px;}
.y48{bottom:499.613100px;}
.yb3{bottom:499.619100px;}
.y166{bottom:499.625100px;}
.y141{bottom:499.631100px;}
.y19c{bottom:499.643100px;}
.yb{bottom:502.864502px;}
.y19d{bottom:504.345600px;}
.y1f4{bottom:516.175200px;}
.y19b{bottom:516.209100px;}
.ydb{bottom:516.211350px;}
.yfc{bottom:516.215100px;}
.y1b5{bottom:516.229350px;}
.y7c{bottom:516.251100px;}
.y47{bottom:516.257100px;}
.yb2{bottom:516.263100px;}
.y165{bottom:516.269100px;}
.y140{bottom:516.275100px;}
.ya{bottom:520.864502px;}
.y1f3{bottom:532.819200px;}
.y1dc{bottom:532.841100px;}
.y19a{bottom:532.853100px;}
.yda{bottom:532.855350px;}
.yfb{bottom:532.859100px;}
.y1b4{bottom:532.873350px;}
.y7b{bottom:532.895100px;}
.y46{bottom:532.901100px;}
.yb1{bottom:532.907100px;}
.y164{bottom:532.913100px;}
.y13f{bottom:532.919100px;}
.y1dd{bottom:537.621600px;}
.y9{bottom:538.864499px;}
.y1f2{bottom:549.463200px;}
.y1db{bottom:549.485100px;}
.y199{bottom:549.497100px;}
.yd9{bottom:549.499350px;}
.yfa{bottom:549.503100px;}
.y1b3{bottom:549.517350px;}
.y17d{bottom:549.533100px;}
.y7a{bottom:549.539100px;}
.y45{bottom:549.545100px;}
.yb0{bottom:549.551100px;}
.y163{bottom:549.557100px;}
.y17e{bottom:554.259600px;}
.y8{bottom:556.864499px;}
.y13e{bottom:566.038950px;}
.y1f1{bottom:566.107200px;}
.yad{bottom:566.123100px;}
.y1da{bottom:566.129100px;}
.y198{bottom:566.141100px;}
.yd8{bottom:566.143350px;}
.yf9{bottom:566.147100px;}
.y1b2{bottom:566.161350px;}
.y17c{bottom:566.177100px;}
.y79{bottom:566.183100px;}
.y44{bottom:566.189100px;}
.yae{bottom:566.195100px;}
.yaf{bottom:570.897600px;}
.y13d{bottom:582.682950px;}
.y162{bottom:582.736950px;}
.yac{bottom:582.767100px;}
.y1d9{bottom:582.773100px;}
.y197{bottom:582.785100px;}
.yd7{bottom:582.787350px;}
.yf8{bottom:582.791100px;}
.y1b1{bottom:582.805350px;}
.y17b{bottom:582.821100px;}
.y78{bottom:582.827100px;}
.y43{bottom:582.833100px;}
.y13c{bottom:599.326950px;}
.y161{bottom:599.380950px;}
.yab{bottom:599.411100px;}
.y1d8{bottom:599.417100px;}
.y196{bottom:599.429100px;}
.yd6{bottom:599.431350px;}
.yf7{bottom:599.435100px;}
.y1b0{bottom:599.449350px;}
.y17a{bottom:599.465100px;}
.y22{bottom:599.471100px;}
.y13b{bottom:615.970950px;}
.y160{bottom:616.024950px;}
.yaa{bottom:616.055100px;}
.y1d7{bottom:616.061100px;}
.y195{bottom:616.073100px;}
.yd5{bottom:616.075350px;}
.yf6{bottom:616.079100px;}
.y31{bottom:616.093350px;}
.y42{bottom:616.103100px;}
.y178{bottom:616.109100px;}
.y179{bottom:620.811600px;}
.y13a{bottom:632.614950px;}
.y15f{bottom:632.668950px;}
.ya9{bottom:632.699100px;}
.y1d6{bottom:632.705100px;}
.y194{bottom:632.717100px;}
.yd4{bottom:632.719350px;}
.yf5{bottom:632.723100px;}
.y1af{bottom:632.737350px;}
.y30{bottom:632.740350px;}
.y41{bottom:632.747100px;}
.y77{bottom:632.948400px;}
.y7{bottom:645.510000px;}
.y139{bottom:649.258950px;}
.y15e{bottom:649.312950px;}
.ya8{bottom:649.343100px;}
.y1d5{bottom:649.349100px;}
.y193{bottom:649.361100px;}
.yd3{bottom:649.363350px;}
.yf4{bottom:649.367100px;}
.y1ae{bottom:649.381350px;}
.y40{bottom:649.385100px;}
.y2f{bottom:649.399350px;}
.y138{bottom:665.902950px;}
.y15d{bottom:665.956950px;}
.ya7{bottom:665.987100px;}
.y1d4{bottom:665.993100px;}
.y192{bottom:666.005100px;}
.yd2{bottom:666.007350px;}
.y3f{bottom:666.011100px;}
.y1ad{bottom:666.025350px;}
.y2e{bottom:666.031350px;}
.y6{bottom:666.771000px;}
.y137{bottom:682.546950px;}
.y15c{bottom:682.600950px;}
.y76{bottom:682.613100px;}
.ya6{bottom:682.631100px;}
.y1d3{bottom:682.637100px;}
.y191{bottom:682.649100px;}
.yd1{bottom:682.651350px;}
.y3e{bottom:682.655100px;}
.y2d{bottom:682.663350px;}
.y136{bottom:699.190950px;}
.y15b{bottom:699.244950px;}
.y75{bottom:699.257100px;}
.ya5{bottom:699.275100px;}
.y1d2{bottom:699.281100px;}
.y190{bottom:699.293100px;}
.y2c{bottom:699.295350px;}
.y3d{bottom:699.299100px;}
.y1ac{bottom:704.001600px;}
.y135{bottom:715.834950px;}
.y15a{bottom:715.888950px;}
.y74{bottom:715.901100px;}
.ya4{bottom:715.919100px;}
.y1d1{bottom:715.925100px;}
.y2b{bottom:715.933350px;}
.y3c{bottom:715.937100px;}
.yd0{bottom:715.939350px;}
.y18f{bottom:720.639600px;}
.y5{bottom:726.298500px;}
.yf3{bottom:732.467100px;}
.y134{bottom:732.478950px;}
.y159{bottom:732.532950px;}
.y73{bottom:732.545100px;}
.ya3{bottom:732.563100px;}
.y2a{bottom:732.565350px;}
.y39{bottom:732.569100px;}
.y3a{bottom:732.575100px;}
.y3b{bottom:737.277600px;}
.yf2{bottom:749.111100px;}
.y1d0{bottom:749.117100px;}
.y133{bottom:749.122950px;}
.yce{bottom:749.176950px;}
.y72{bottom:749.189100px;}
.y29{bottom:749.197350px;}
.ya2{bottom:749.207100px;}
.y38{bottom:749.213100px;}
.y3{bottom:752.599495px;}
.ycf{bottom:753.915600px;}
.yf1{bottom:765.755100px;}
.y1cf{bottom:765.761100px;}
.y132{bottom:765.766950px;}
.ycd{bottom:765.820950px;}
.y71{bottom:765.833100px;}
.y28{bottom:765.835350px;}
.y37{bottom:765.851100px;}
.y112{bottom:770.553600px;}
.yf0{bottom:782.399100px;}
.y1ce{bottom:782.405100px;}
.y131{bottom:782.410950px;}
.ya1{bottom:782.461200px;}
.ycc{bottom:782.464950px;}
.y70{bottom:782.477100px;}
.y36{bottom:782.489100px;}
.yef{bottom:799.043100px;}
.y1cd{bottom:799.049100px;}
.y130{bottom:799.054950px;}
.ya0{bottom:799.105200px;}
.ycb{bottom:799.108950px;}
.y35{bottom:799.115100px;}
.y6f{bottom:799.121100px;}
.yee{bottom:815.687100px;}
.y1cc{bottom:815.693100px;}
.y12f{bottom:815.698950px;}
.y1ab{bottom:815.711100px;}
.y9f{bottom:815.749200px;}
.yca{bottom:815.752950px;}
.y34{bottom:815.759100px;}
.y32{bottom:815.765100px;}
.y177{bottom:820.467600px;}
.yed{bottom:832.331100px;}
.y1cb{bottom:832.337100px;}
.y12e{bottom:832.342950px;}
.y1aa{bottom:832.355100px;}
.y9e{bottom:832.393200px;}
.yc9{bottom:832.396950px;}
.y33{bottom:832.403100px;}
.y6e{bottom:848.975100px;}
.y1ca{bottom:848.981100px;}
.y12d{bottom:848.986950px;}
.y158{bottom:848.999100px;}
.y9d{bottom:849.037200px;}
.yc7{bottom:849.040950px;}
.yc8{bottom:853.743600px;}
.y6d{bottom:865.619100px;}
.y1c9{bottom:865.625100px;}
.y12c{bottom:865.630950px;}
.y157{bottom:865.643100px;}
.y9c{bottom:865.681200px;}
.y2{bottom:879.369000px;}
.y6c{bottom:882.263100px;}
.y1c8{bottom:882.269100px;}
.y12b{bottom:882.274950px;}
.y156{bottom:882.287100px;}
.y1f0{bottom:882.518400px;}
.y27{bottom:888.754950px;}
.y6b{bottom:898.907100px;}
.y1c7{bottom:898.913100px;}
.y12a{bottom:898.918950px;}
.y155{bottom:898.931100px;}
.y9a{bottom:898.954950px;}
.y9b{bottom:903.657600px;}
.y6a{bottom:915.551100px;}
.y1c6{bottom:915.557100px;}
.y129{bottom:915.562950px;}
.y154{bottom:915.575100px;}
.y69{bottom:932.195100px;}
.y1c5{bottom:932.201100px;}
.y128{bottom:932.206950px;}
.y153{bottom:932.219100px;}
.y1ee{bottom:932.231100px;}
.y26{bottom:935.794950px;}
.y1ef{bottom:936.933600px;}
.y68{bottom:948.839100px;}
.y1c4{bottom:948.845100px;}
.y127{bottom:948.850950px;}
.y152{bottom:948.863100px;}
.y67{bottom:965.483100px;}
.y1c3{bottom:965.489100px;}
.y126{bottom:965.494950px;}
.y151{bottom:965.507100px;}
.y1{bottom:966.726000px;}
.y66{bottom:982.127100px;}
.y1c2{bottom:982.133100px;}
.y125{bottom:982.138950px;}
.y25{bottom:982.834950px;}
.y65{bottom:998.771100px;}
.y1c1{bottom:998.777100px;}
.y124{bottom:998.782950px;}
.y150{bottom:1003.485600px;}
.y64{bottom:1015.415100px;}
.y1c0{bottom:1015.421100px;}
.y123{bottom:1028.709600px;}
.y24{bottom:1029.874950px;}
.y63{bottom:1032.059100px;}
.hc{height:26.206875px;}
.h15{height:28.959785px;}
.h16{height:31.120064px;}
.h12{height:31.120664px;}
.h7{height:32.130000px;}
.h11{height:35.873280px;}
.h13{height:38.625000px;}
.hf{height:41.850000px;}
.ha{height:42.046875px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:49.930664px;}
.h2{height:55.080000px;}
.hd{height:57.937500px;}
.h14{height:68.326172px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h10{height:133.190309px;}
.he{height:147.164062px;}
.h9{height:1126.500000px;}
.h8{height:1126.771500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:786.613500px;}
.w4{width:786.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:46.771650px;}
.x13{left:55.275600px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:110.551200px;}
.x7{left:112.507950px;}
.x1a{left:113.875050px;}
.x10{left:119.055150px;}
.x12{left:123.307050px;}
.x40{left:165.446550px;}
.x41{left:168.838200px;}
.x21{left:172.726800px;}
.x22{left:176.049450px;}
.x4{left:203.484001px;}
.x6{left:231.778050px;}
.x2a{left:237.918450px;}
.x2b{left:241.032300px;}
.x18{left:293.718900px;}
.x19{left:297.041550px;}
.x2e{left:301.114800px;}
.x28{left:306.268050px;}
.x29{left:309.381900px;}
.x14{left:323.801850px;}
.x15{left:327.015150px;}
.x37{left:339.361950px;}
.x16{left:341.149650px;}
.x38{left:342.728850px;}
.x17{left:344.392950px;}
.x23{left:350.408850px;}
.x24{left:353.522700px;}
.x2f{left:368.477550px;}
.x30{left:371.715300px;}
.x39{left:376.549200px;}
.x3a{left:379.916100px;}
.x8{left:398.056500px;}
.xf{left:401.380500px;}
.x1b{left:406.560450px;}
.xd{left:410.812500px;}
.x45{left:414.426600px;}
.x1e{left:419.317350px;}
.x46{left:425.260500px;}
.x34{left:428.588250px;}
.xa{left:431.854500px;}
.x33{left:447.533700px;}
.x3b{left:450.577500px;}
.xe{left:451.718400px;}
.x3{left:454.959000px;}
.x1f{left:458.108700px;}
.x20{left:461.462550px;}
.x31{left:479.426400px;}
.x2c{left:486.699000px;}
.xb{left:496.504200px;}
.xc{left:499.442700px;}
.x32{left:502.859850px;}
.x42{left:508.171650px;}
.x43{left:511.397100px;}
.x35{left:534.982050px;}
.x36{left:538.514850px;}
.x9{left:548.503950px;}
.x5{left:572.531400px;}
.x3c{left:583.398000px;}
.x3d{left:586.713450px;}
.x3e{left:592.097550px;}
.x3f{left:595.413000px;}
.x44{left:619.150950px;}
.x26{left:641.691600px;}
.x27{left:644.805600px;}
.x2d{left:672.843450px;}
.x1c{left:677.020500px;}
.x1d{left:680.434500px;}
@media print{
.v2{vertical-align:-16.720000pt;}
.v1{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-4.181333pt;}
.ls3d{letter-spacing:-2.432000pt;}
.ls3{letter-spacing:-2.389333pt;}
.ls2d{letter-spacing:-2.229333pt;}
.ls3b{letter-spacing:-2.133333pt;}
.ls39{letter-spacing:-2.090667pt;}
.ls1e{letter-spacing:-1.976000pt;}
.ls35{letter-spacing:-1.925333pt;}
.ls24{letter-spacing:-1.877333pt;}
.ls1f{letter-spacing:-1.749333pt;}
.ls34{letter-spacing:-1.570667pt;}
.ls47{letter-spacing:-1.469333pt;}
.ls69{letter-spacing:-1.368000pt;}
.ls60{letter-spacing:-1.322667pt;}
.ls6c{letter-spacing:-1.248000pt;}
.ls5e{letter-spacing:-1.178667pt;}
.ls3c{letter-spacing:-1.066667pt;}
.ls65{letter-spacing:-1.024000pt;}
.ls2f{letter-spacing:-0.940373pt;}
.ls6a{letter-spacing:-0.912000pt;}
.ls1a{letter-spacing:-0.853333pt;}
.ls38{letter-spacing:-0.852213pt;}
.ls31{letter-spacing:-0.791893pt;}
.ls2{letter-spacing:-0.768000pt;}
.ls3a{letter-spacing:-0.717653pt;}
.lsb{letter-spacing:-0.709333pt;}
.ls52{letter-spacing:-0.668160pt;}
.ls7{letter-spacing:-0.608000pt;}
.ls27{letter-spacing:-0.554667pt;}
.ls13{letter-spacing:-0.506667pt;}
.ls50{letter-spacing:-0.494933pt;}
.ls4d{letter-spacing:-0.470187pt;}
.ls67{letter-spacing:-0.469333pt;}
.ls5b{letter-spacing:-0.456000pt;}
.ls48{letter-spacing:-0.420693pt;}
.ls6{letter-spacing:-0.405333pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls43{letter-spacing:-0.341333pt;}
.ls20{letter-spacing:-0.304000pt;}
.ls26{letter-spacing:-0.264480pt;}
.ls2c{letter-spacing:-0.253333pt;}
.ls2b{letter-spacing:-0.222720pt;}
.ls11{letter-spacing:-0.202667pt;}
.ls4a{letter-spacing:-0.197973pt;}
.ls44{letter-spacing:-0.176320pt;}
.ls21{letter-spacing:-0.152000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.101333pt;}
.ls61{letter-spacing:-0.098987pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls5d{letter-spacing:-0.088160pt;}
.ls1c{letter-spacing:-0.069333pt;}
.ls1d{letter-spacing:-0.050667pt;}
.ls6d{letter-spacing:-0.042667pt;}
.ls46{letter-spacing:-0.029387pt;}
.ls54{letter-spacing:-0.024747pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.029333pt;}
.ls4f{letter-spacing:0.050667pt;}
.ls32{letter-spacing:0.085333pt;}
.ls36{letter-spacing:0.088160pt;}
.lsc{letter-spacing:0.101333pt;}
.ls57{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.152000pt;}
.ls28{letter-spacing:0.173227pt;}
.ls9{letter-spacing:0.202667pt;}
.ls58{letter-spacing:0.203200pt;}
.ls5f{letter-spacing:0.247467pt;}
.ls25{letter-spacing:0.253333pt;}
.ls51{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.293867pt;}
.ls29{letter-spacing:0.298667pt;}
.lse{letter-spacing:0.304000pt;}
.ls41{letter-spacing:0.323253pt;}
.ls49{letter-spacing:0.341333pt;}
.ls45{letter-spacing:0.354667pt;}
.ls2e{letter-spacing:0.405333pt;}
.ls23{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.456000pt;}
.ls42{letter-spacing:0.469333pt;}
.ls64{letter-spacing:0.470187pt;}
.ls8{letter-spacing:0.506667pt;}
.lsd{letter-spacing:0.557333pt;}
.ls63{letter-spacing:0.558347pt;}
.lsf{letter-spacing:0.608000pt;}
.ls68{letter-spacing:0.675893pt;}
.ls55{letter-spacing:0.682667pt;}
.ls4c{letter-spacing:0.709333pt;}
.ls10{letter-spacing:0.760000pt;}
.ls6b{letter-spacing:0.764053pt;}
.ls19{letter-spacing:0.853333pt;}
.ls53{letter-spacing:0.896000pt;}
.ls37{letter-spacing:0.912000pt;}
.ls62{letter-spacing:0.940373pt;}
.ls30{letter-spacing:0.962667pt;}
.ls15{letter-spacing:1.013333pt;}
.ls5c{letter-spacing:1.028533pt;}
.ls4e{letter-spacing:1.057920pt;}
.ls4b{letter-spacing:1.064000pt;}
.ls66{letter-spacing:1.066667pt;}
.ls5a{letter-spacing:1.087307pt;}
.ls40{letter-spacing:1.114667pt;}
.ls1b{letter-spacing:1.418667pt;}
.ls3f{letter-spacing:1.469333pt;}
.ls3e{letter-spacing:1.520000pt;}
.ls56{letter-spacing:1.555200pt;}
.ls2a{letter-spacing:1.664000pt;}
.ls22{letter-spacing:1.874667pt;}
.ls59{letter-spacing:1.958400pt;}
.ls1{letter-spacing:6.186667pt;}
.ws28{word-spacing:-17.264000pt;}
.ws105{word-spacing:-16.154667pt;}
.ws135{word-spacing:-16.085333pt;}
.wsd2{word-spacing:-13.730667pt;}
.ws4{word-spacing:-13.680000pt;}
.wsd3{word-spacing:-13.376000pt;}
.ws109{word-spacing:-12.818667pt;}
.ws134{word-spacing:-12.717333pt;}
.ws14f{word-spacing:-12.666667pt;}
.ws29{word-spacing:-12.514667pt;}
.ws107{word-spacing:-11.520000pt;}
.ws2{word-spacing:-10.800000pt;}
.ws108{word-spacing:-10.752000pt;}
.ws1{word-spacing:-10.704000pt;}
.ws10d{word-spacing:-10.666667pt;}
.ws136{word-spacing:-10.624000pt;}
.ws10c{word-spacing:-9.642667pt;}
.ws106{word-spacing:-9.344000pt;}
.ws2a{word-spacing:-8.789333pt;}
.ws103{word-spacing:-8.433973pt;}
.wsd5{word-spacing:-8.404587pt;}
.ws104{word-spacing:-8.375200pt;}
.ws10a{word-spacing:-8.287040pt;}
.ws133{word-spacing:-8.022560pt;}
.ws10b{word-spacing:-7.905013pt;}
.wsa4{word-spacing:-7.669920pt;}
.wsa2{word-spacing:-7.640533pt;}
.wsa3{word-spacing:-7.434827pt;}
.ws3{word-spacing:-7.346667pt;}
.wsd1{word-spacing:-7.317280pt;}
.ws68{word-spacing:-7.082187pt;}
.wsd4{word-spacing:-6.876480pt;}
.ws69{word-spacing:-6.406293pt;}
.ws12e{word-spacing:-4.408000pt;}
.ws4f{word-spacing:-4.053333pt;}
.wse9{word-spacing:-4.002667pt;}
.ws137{word-spacing:-3.040000pt;}
.ws54{word-spacing:-2.938667pt;}
.wsab{word-spacing:-2.888000pt;}
.ws3a{word-spacing:-2.786667pt;}
.ws4a{word-spacing:-2.730667pt;}
.wse1{word-spacing:-2.482667pt;}
.ws14b{word-spacing:-2.330667pt;}
.ws20{word-spacing:-2.280000pt;}
.ws8f{word-spacing:-2.077333pt;}
.ws1f{word-spacing:-2.026667pt;}
.ws144{word-spacing:-1.976000pt;}
.ws64{word-spacing:-1.877333pt;}
.ws40{word-spacing:-1.874667pt;}
.wsc0{word-spacing:-1.824000pt;}
.ws11a{word-spacing:-1.773333pt;}
.wse4{word-spacing:-1.672000pt;}
.wsf3{word-spacing:-1.621333pt;}
.ws2d{word-spacing:-1.570667pt;}
.ws7b{word-spacing:-1.520000pt;}
.ws102{word-spacing:-1.450667pt;}
.ws39{word-spacing:-1.418667pt;}
.ws27{word-spacing:-1.365333pt;}
.wsb2{word-spacing:-1.317333pt;}
.wsda{word-spacing:-1.266667pt;}
.ws71{word-spacing:-1.165333pt;}
.ws12{word-spacing:-1.114667pt;}
.ws138{word-spacing:-1.064000pt;}
.ws9e{word-spacing:-0.962667pt;}
.wsa{word-spacing:-0.960000pt;}
.ws81{word-spacing:-0.912000pt;}
.ws100{word-spacing:-0.896000pt;}
.ws58{word-spacing:-0.861333pt;}
.ws26{word-spacing:-0.810667pt;}
.ws145{word-spacing:-0.764053pt;}
.ws3c{word-spacing:-0.760000pt;}
.ws15{word-spacing:-0.709333pt;}
.wsd0{word-spacing:-0.682667pt;}
.ws140{word-spacing:-0.675893pt;}
.ws89{word-spacing:-0.640000pt;}
.ws52{word-spacing:-0.608000pt;}
.ws2e{word-spacing:-0.557333pt;}
.ws93{word-spacing:-0.506667pt;}
.ws12b{word-spacing:-0.470187pt;}
.wsff{word-spacing:-0.469333pt;}
.ws19{word-spacing:-0.456000pt;}
.ws65{word-spacing:-0.426667pt;}
.ws35{word-spacing:-0.354667pt;}
.wsec{word-spacing:-0.341333pt;}
.ws88{word-spacing:-0.298667pt;}
.ws131{word-spacing:-0.256000pt;}
.ws73{word-spacing:-0.253333pt;}
.ws11d{word-spacing:-0.247467pt;}
.ws8c{word-spacing:-0.202667pt;}
.ws87{word-spacing:-0.173227pt;}
.ws12c{word-spacing:-0.152000pt;}
.wsf4{word-spacing:-0.101333pt;}
.wsa5{word-spacing:-0.085333pt;}
.wsfb{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.ws101{word-spacing:0.024747pt;}
.ws150{word-spacing:0.042667pt;}
.ws3b{word-spacing:0.050667pt;}
.wsbf{word-spacing:0.069333pt;}
.ws118{word-spacing:0.088160pt;}
.ws11f{word-spacing:0.098987pt;}
.ws33{word-spacing:0.101333pt;}
.ws91{word-spacing:0.152000pt;}
.wsd8{word-spacing:0.176320pt;}
.wsed{word-spacing:0.197973pt;}
.ws8a{word-spacing:0.222720pt;}
.ws126{word-spacing:0.253333pt;}
.wsf{word-spacing:0.304000pt;}
.wsd6{word-spacing:0.341333pt;}
.ws92{word-spacing:0.354667pt;}
.wsd{word-spacing:0.405333pt;}
.wseb{word-spacing:0.420693pt;}
.ws95{word-spacing:0.456000pt;}
.wsfd{word-spacing:0.469333pt;}
.wsfc{word-spacing:0.494933pt;}
.ws1a{word-spacing:0.506667pt;}
.ws12f{word-spacing:0.512000pt;}
.ws83{word-spacing:0.554667pt;}
.ws5a{word-spacing:0.557333pt;}
.wsa0{word-spacing:0.597333pt;}
.wsd7{word-spacing:0.608000pt;}
.ws146{word-spacing:0.658667pt;}
.wsfe{word-spacing:0.668160pt;}
.ws11{word-spacing:0.709333pt;}
.wsbc{word-spacing:0.717653pt;}
.ws63{word-spacing:0.725333pt;}
.wsa8{word-spacing:0.760000pt;}
.ws6{word-spacing:0.768000pt;}
.ws9f{word-spacing:0.791893pt;}
.wsef{word-spacing:0.810667pt;}
.wsb9{word-spacing:0.852213pt;}
.ws2b{word-spacing:0.853333pt;}
.ws9{word-spacing:0.896000pt;}
.ws13e{word-spacing:0.912000pt;}
.wsf9{word-spacing:0.962667pt;}
.wse0{word-spacing:1.013333pt;}
.ws130{word-spacing:1.024000pt;}
.wsc1{word-spacing:1.064000pt;}
.wsbe{word-spacing:1.066667pt;}
.ws70{word-spacing:1.266667pt;}
.wsa1{word-spacing:1.322667pt;}
.ws62{word-spacing:1.368000pt;}
.ws7e{word-spacing:1.418667pt;}
.ws3f{word-spacing:1.469333pt;}
.ws38{word-spacing:1.520000pt;}
.wsb0{word-spacing:1.570667pt;}
.ws5d{word-spacing:1.621333pt;}
.ws10e{word-spacing:1.749333pt;}
.wsc3{word-spacing:1.773333pt;}
.ws6a{word-spacing:1.877333pt;}
.ws13{word-spacing:1.925333pt;}
.ws45{word-spacing:1.976000pt;}
.ws41{word-spacing:2.077333pt;}
.wsbb{word-spacing:2.090667pt;}
.wsbd{word-spacing:2.133333pt;}
.wsf8{word-spacing:2.178667pt;}
.ws94{word-spacing:2.229333pt;}
.ws6f{word-spacing:2.280000pt;}
.ws4c{word-spacing:2.381333pt;}
.ws7{word-spacing:2.389333pt;}
.wsc4{word-spacing:2.432000pt;}
.ws49{word-spacing:2.474667pt;}
.wsc5{word-spacing:2.482667pt;}
.ws34{word-spacing:2.533333pt;}
.ws127{word-spacing:2.584000pt;}
.ws74{word-spacing:2.685333pt;}
.ws8{word-spacing:2.688000pt;}
.wsc6{word-spacing:2.736000pt;}
.ws82{word-spacing:2.786667pt;}
.wsdb{word-spacing:2.837333pt;}
.ws116{word-spacing:3.090667pt;}
.ws30{word-spacing:3.141333pt;}
.wscb{word-spacing:3.192000pt;}
.ws13d{word-spacing:3.242667pt;}
.wsd9{word-spacing:3.293333pt;}
.wsf0{word-spacing:3.445333pt;}
.ws24{word-spacing:3.541333pt;}
.ws11b{word-spacing:3.597333pt;}
.wsaf{word-spacing:3.648000pt;}
.wsaa{word-spacing:3.698667pt;}
.ws4e{word-spacing:3.800000pt;}
.ws57{word-spacing:3.901333pt;}
.ws13c{word-spacing:4.053333pt;}
.wsdc{word-spacing:4.104000pt;}
.ws125{word-spacing:4.256000pt;}
.wse7{word-spacing:4.306667pt;}
.ws8e{word-spacing:4.408000pt;}
.ws9a{word-spacing:4.509333pt;}
.wsa6{word-spacing:4.560000pt;}
.ws99{word-spacing:4.610667pt;}
.ws22{word-spacing:4.661333pt;}
.ws31{word-spacing:4.762667pt;}
.wscd{word-spacing:4.813333pt;}
.ws8d{word-spacing:4.965333pt;}
.wsa9{word-spacing:5.066667pt;}
.wsfa{word-spacing:5.117333pt;}
.wsa7{word-spacing:5.168000pt;}
.ws4d{word-spacing:5.370667pt;}
.wsea{word-spacing:5.421333pt;}
.ws72{word-spacing:5.472000pt;}
.ws96{word-spacing:5.522667pt;}
.ws13f{word-spacing:5.674667pt;}
.ws85{word-spacing:5.776000pt;}
.ws5{word-spacing:5.888000pt;}
.ws21{word-spacing:6.029333pt;}
.ws25{word-spacing:6.229333pt;}
.ws12a{word-spacing:6.282667pt;}
.ws55{word-spacing:6.333333pt;}
.ws147{word-spacing:6.586667pt;}
.ws80{word-spacing:6.637333pt;}
.wsb1{word-spacing:6.789333pt;}
.ws61{word-spacing:6.840000pt;}
.ws120{word-spacing:6.869333pt;}
.ws46{word-spacing:6.890667pt;}
.wsf5{word-spacing:6.941333pt;}
.ws2f{word-spacing:6.992000pt;}
.ws53{word-spacing:7.093333pt;}
.ws47{word-spacing:7.144000pt;}
.ws5f{word-spacing:7.245333pt;}
.wsde{word-spacing:7.397333pt;}
.ws143{word-spacing:7.722667pt;}
.ws14d{word-spacing:7.752000pt;}
.ws66{word-spacing:7.765333pt;}
.ws3d{word-spacing:7.802667pt;}
.ws36{word-spacing:7.853333pt;}
.wsb4{word-spacing:7.954667pt;}
.ws119{word-spacing:8.056000pt;}
.ws14e{word-spacing:8.106667pt;}
.wsf1{word-spacing:8.208000pt;}
.wse5{word-spacing:8.309333pt;}
.ws1d{word-spacing:8.360000pt;}
.ws115{word-spacing:8.461333pt;}
.ws50{word-spacing:8.512000pt;}
.ws141{word-spacing:8.917333pt;}
.wsb3{word-spacing:8.968000pt;}
.ws11c{word-spacing:9.069333pt;}
.ws84{word-spacing:9.170667pt;}
.ws6b{word-spacing:9.373333pt;}
.wsc7{word-spacing:9.424000pt;}
.ws122{word-spacing:9.525333pt;}
.ws110{word-spacing:9.626667pt;}
.ws79{word-spacing:9.778667pt;}
.ws37{word-spacing:9.880000pt;}
.ws6c{word-spacing:10.032000pt;}
.ws9d{word-spacing:10.133333pt;}
.ws2c{word-spacing:10.184000pt;}
.wsee{word-spacing:10.234667pt;}
.wse6{word-spacing:10.285333pt;}
.wsad{word-spacing:10.336000pt;}
.ws10{word-spacing:10.386667pt;}
.wsae{word-spacing:10.488000pt;}
.ws51{word-spacing:10.538667pt;}
.wsba{word-spacing:10.581333pt;}
.ws98{word-spacing:10.741333pt;}
.ws13b{word-spacing:10.792000pt;}
.wsce{word-spacing:11.096000pt;}
.wse2{word-spacing:11.146667pt;}
.ws78{word-spacing:11.197333pt;}
.ws123{word-spacing:11.248000pt;}
.ws139{word-spacing:11.349333pt;}
.wsca{word-spacing:11.552000pt;}
.ws14c{word-spacing:11.754667pt;}
.ws1c{word-spacing:11.805333pt;}
.ws5c{word-spacing:12.008000pt;}
.ws32{word-spacing:12.058667pt;}
.wsdd{word-spacing:12.109333pt;}
.ws4b{word-spacing:12.312000pt;}
.ws75{word-spacing:12.565333pt;}
.ws48{word-spacing:12.616000pt;}
.ws129{word-spacing:12.818667pt;}
.wsb6{word-spacing:12.970667pt;}
.wsc8{word-spacing:13.122667pt;}
.wsdf{word-spacing:13.224000pt;}
.wsac{word-spacing:13.325333pt;}
.ws6e{word-spacing:13.376000pt;}
.ws1b{word-spacing:13.477333pt;}
.wsb7{word-spacing:13.528000pt;}
.ws117{word-spacing:13.578667pt;}
.wsf2{word-spacing:13.629333pt;}
.ws3e{word-spacing:13.730667pt;}
.ws1e{word-spacing:13.781333pt;}
.ws23{word-spacing:13.866667pt;}
.ws7f{word-spacing:13.882667pt;}
.ws76{word-spacing:13.933333pt;}
.ws60{word-spacing:14.237333pt;}
.ws43{word-spacing:14.288000pt;}
.ws7c{word-spacing:14.338667pt;}
.ws86{word-spacing:14.440000pt;}
.ws112{word-spacing:14.592000pt;}
.wse8{word-spacing:14.642667pt;}
.ws59{word-spacing:14.693333pt;}
.ws44{word-spacing:14.845333pt;}
.ws18{word-spacing:14.946667pt;}
.ws132{word-spacing:14.976000pt;}
.ws67{word-spacing:15.189333pt;}
.ws10f{word-spacing:15.352000pt;}
.ws12d{word-spacing:15.453333pt;}
.wscf{word-spacing:15.757333pt;}
.ws8b{word-spacing:15.858667pt;}
.ws114{word-spacing:16.010667pt;}
.ws149{word-spacing:16.213333pt;}
.ws5b{word-spacing:16.264000pt;}
.wsb5{word-spacing:16.416000pt;}
.wsb8{word-spacing:16.466667pt;}
.ws42{word-spacing:16.517333pt;}
.ws7d{word-spacing:16.770667pt;}
.wsf6{word-spacing:16.922667pt;}
.ws148{word-spacing:17.226667pt;}
.ws16{word-spacing:17.328000pt;}
.ws13a{word-spacing:17.480000pt;}
.ws121{word-spacing:18.645333pt;}
.ws124{word-spacing:18.949333pt;}
.ws9c{word-spacing:19.152000pt;}
.wse3{word-spacing:19.253333pt;}
.ws11e{word-spacing:19.669333pt;}
.ws56{word-spacing:20.317333pt;}
.wsc{word-spacing:20.368000pt;}
.wsf7{word-spacing:20.520000pt;}
.wscc{word-spacing:20.925333pt;}
.wsb{word-spacing:20.976000pt;}
.wse{word-spacing:21.330667pt;}
.ws6d{word-spacing:22.141333pt;}
.ws142{word-spacing:22.749333pt;}
.ws111{word-spacing:22.901333pt;}
.ws9b{word-spacing:23.560000pt;}
.ws5e{word-spacing:23.712000pt;}
.wsc9{word-spacing:24.421333pt;}
.ws77{word-spacing:25.840000pt;}
.ws97{word-spacing:26.650667pt;}
.ws17{word-spacing:27.309333pt;}
.ws14a{word-spacing:27.664000pt;}
.ws113{word-spacing:28.272000pt;}
.wsc2{word-spacing:28.576000pt;}
.ws90{word-spacing:29.741333pt;}
.ws7a{word-spacing:31.109333pt;}
.ws14{word-spacing:31.312000pt;}
.ws128{word-spacing:31.464000pt;}
._19{margin-left:-472.064000pt;}
._11{margin-left:-471.125333pt;}
._25{margin-left:-470.229333pt;}
._23{margin-left:-33.744000pt;}
._22{margin-left:-30.031843pt;}
._1c{margin-left:-14.152185pt;}
._26{margin-left:-12.650772pt;}
._7{margin-left:-11.392000pt;}
._21{margin-left:-9.882772pt;}
._14{margin-left:-8.221333pt;}
._8{margin-left:-4.650667pt;}
._9{margin-left:-3.304000pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.981333pt;}
._6{width:0.938667pt;}
._0{width:1.834667pt;}
._2{width:3.328000pt;}
._d{width:4.352000pt;}
._5{width:5.568000pt;}
._10{width:7.253333pt;}
._13{width:8.176000pt;}
._16{width:9.330667pt;}
._b{width:10.437333pt;}
._c{width:11.770667pt;}
._28{width:13.204800pt;}
._e{width:14.232000pt;}
._17{width:15.742933pt;}
._a{width:17.160000pt;}
._24{width:18.074667pt;}
._12{width:18.965333pt;}
._f{width:19.986667pt;}
._18{width:21.037333pt;}
._1a{width:22.029333pt;}
._1b{width:24.762667pt;}
._1e{width:25.728000pt;}
._1d{width:26.749333pt;}
._27{width:28.594667pt;}
._15{width:32.514667pt;}
._20{width:36.293333pt;}
._1f{width:37.264000pt;}
._4{width:90.325333pt;}
.fs7{font-size:24.746667pt;}
.fsc{font-size:29.386667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:46.080000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:135.153600pt;}
.fs8{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:71.901333pt;}
.y4{bottom:86.333337pt;}
.y98{bottom:103.937067pt;}
.y111{bottom:103.942400pt;}
.y1a9{bottom:103.947733pt;}
.y60{bottom:103.953067pt;}
.y99{bottom:107.457067pt;}
.y96{bottom:116.603733pt;}
.y122{bottom:116.609067pt;}
.y5f{bottom:116.614400pt;}
.yc6{bottom:116.619733pt;}
.y97{bottom:120.123733pt;}
.y20{bottom:123.790666pt;}
.y204{bottom:129.212267pt;}
.y95{bottom:129.270400pt;}
.y5e{bottom:129.275733pt;}
.yc5{bottom:129.281067pt;}
.y110{bottom:132.790400pt;}
.y203{bottom:141.873600pt;}
.y202{bottom:141.878933pt;}
.y5c{bottom:141.937067pt;}
.yc4{bottom:141.942400pt;}
.yec{bottom:141.947733pt;}
.y5d{bottom:145.457067pt;}
.y200{bottom:154.540267pt;}
.yc2{bottom:154.603733pt;}
.yeb{bottom:154.609067pt;}
.y5b{bottom:154.614400pt;}
.y1a8{bottom:154.619733pt;}
.y201{bottom:158.060267pt;}
.yc3{bottom:158.123733pt;}
.y14f{bottom:163.081867pt;}
.y10f{bottom:163.124533pt;}
.yc1{bottom:167.270400pt;}
.y5a{bottom:167.275733pt;}
.y1a7{bottom:167.281067pt;}
.yea{bottom:170.790400pt;}
.y17{bottom:175.052000pt;}
.y10e{bottom:177.844533pt;}
.y176{bottom:177.873200pt;}
.y14e{bottom:177.876533pt;}
.y92{bottom:177.892533pt;}
.y93{bottom:177.919200pt;}
.y58{bottom:179.937067pt;}
.y1a6{bottom:179.942400pt;}
.y1bf{bottom:179.947733pt;}
.y121{bottom:179.953067pt;}
.y94{bottom:182.099200pt;}
.y59{bottom:183.457067pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yc0{bottom:192.603733pt;}
.y1be{bottom:192.609067pt;}
.y120{bottom:192.614400pt;}
.y1ed{bottom:192.630533pt;}
.y10d{bottom:192.639200pt;}
.y175{bottom:192.667867pt;}
.y14d{bottom:192.671200pt;}
.y91{bottom:192.687200pt;}
.y62{bottom:194.820667pt;}
.y18e{bottom:196.123733pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ybe{bottom:205.270400pt;}
.y11f{bottom:205.275733pt;}
.y1ec{bottom:207.425200pt;}
.y10c{bottom:207.433867pt;}
.y174{bottom:207.462533pt;}
.ye9{bottom:207.465867pt;}
.y90{bottom:207.481867pt;}
.y61{bottom:207.482000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.ybf{bottom:208.790400pt;}
.y11d{bottom:217.937067pt;}
.y1a5{bottom:217.942400pt;}
.y18d{bottom:217.953067pt;}
.y11e{bottom:221.457067pt;}
.y1eb{bottom:222.219867pt;}
.y10b{bottom:222.228533pt;}
.y173{bottom:222.257200pt;}
.ye8{bottom:222.260533pt;}
.y8f{bottom:222.276533pt;}
.y1a3{bottom:230.603733pt;}
.y18c{bottom:230.614400pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y23{bottom:234.060267pt;}
.y1a4{bottom:234.123733pt;}
.y55{bottom:237.012533pt;}
.y1ea{bottom:237.014533pt;}
.y10a{bottom:237.023200pt;}
.ybd{bottom:237.044533pt;}
.y172{bottom:237.051867pt;}
.ye7{bottom:237.055200pt;}
.y8e{bottom:237.071200pt;}
.y56{bottom:237.076533pt;}
.y57{bottom:241.256533pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y18b{bottom:243.275733pt;}
.y1bd{bottom:243.281067pt;}
.y54{bottom:251.807200pt;}
.y1e9{bottom:251.809200pt;}
.y109{bottom:251.817867pt;}
.ybc{bottom:251.839200pt;}
.y171{bottom:251.846533pt;}
.ye6{bottom:251.849867pt;}
.y8d{bottom:251.865867pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y189{bottom:255.937067pt;}
.y1bc{bottom:255.942400pt;}
.y11c{bottom:256.045867pt;}
.y18a{bottom:259.457067pt;}
.y53{bottom:266.601867pt;}
.y108{bottom:266.612533pt;}
.y1a2{bottom:266.617867pt;}
.ybb{bottom:266.633867pt;}
.y170{bottom:266.641200pt;}
.ye5{bottom:266.644533pt;}
.y1ba{bottom:268.603733pt;}
.y188{bottom:268.609067pt;}
.y1bb{bottom:272.123733pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y187{bottom:281.270400pt;}
.y1e8{bottom:281.385867pt;}
.y52{bottom:281.396533pt;}
.y107{bottom:281.407200pt;}
.y1a1{bottom:281.412533pt;}
.yba{bottom:281.428533pt;}
.y8a{bottom:281.433867pt;}
.y16f{bottom:281.435867pt;}
.ye4{bottom:281.439200pt;}
.y8b{bottom:281.444533pt;}
.y8c{bottom:285.624533pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y185{bottom:293.937067pt;}
.y1ff{bottom:296.081067pt;}
.y14b{bottom:296.169867pt;}
.y1e7{bottom:296.180533pt;}
.y51{bottom:296.191200pt;}
.y106{bottom:296.201867pt;}
.y1a0{bottom:296.207200pt;}
.yb9{bottom:296.223200pt;}
.y89{bottom:296.228533pt;}
.ye3{bottom:296.233867pt;}
.y186{bottom:297.457067pt;}
.y14c{bottom:300.413867pt;}
.ye{bottom:309.452000pt;}
.y1fe{bottom:310.875733pt;}
.y86{bottom:310.943200pt;}
.y14a{bottom:310.964533pt;}
.y1e6{bottom:310.975200pt;}
.y50{bottom:310.985867pt;}
.y105{bottom:310.996533pt;}
.y19f{bottom:311.001867pt;}
.y16e{bottom:311.012533pt;}
.yb8{bottom:311.017867pt;}
.y87{bottom:311.023200pt;}
.y88{bottom:315.203200pt;}
.y1fd{bottom:325.670400pt;}
.y85{bottom:325.737867pt;}
.y11a{bottom:325.743200pt;}
.y149{bottom:325.759200pt;}
.y1e5{bottom:325.769867pt;}
.y4f{bottom:325.780533pt;}
.y104{bottom:325.791200pt;}
.y184{bottom:325.796533pt;}
.y16d{bottom:325.807200pt;}
.yb7{bottom:325.812533pt;}
.ye2{bottom:325.991600pt;}
.y11b{bottom:329.992533pt;}
.y1fc{bottom:340.465067pt;}
.y84{bottom:340.532533pt;}
.y119{bottom:340.537867pt;}
.y148{bottom:340.553867pt;}
.y1e4{bottom:340.564533pt;}
.y4e{bottom:340.575200pt;}
.y103{bottom:340.585867pt;}
.y183{bottom:340.591200pt;}
.y16c{bottom:340.601867pt;}
.yd{bottom:343.809333pt;}
.y1fb{bottom:355.259733pt;}
.y83{bottom:355.327200pt;}
.y118{bottom:355.332533pt;}
.y147{bottom:355.348533pt;}
.y1e3{bottom:355.359200pt;}
.y4d{bottom:355.369867pt;}
.y102{bottom:355.380533pt;}
.y182{bottom:355.385867pt;}
.yb5{bottom:355.391200pt;}
.yb6{bottom:359.571200pt;}
.yc{bottom:362.706666pt;}
.y1fa{bottom:370.054400pt;}
.ye1{bottom:370.086533pt;}
.y82{bottom:370.121867pt;}
.y117{bottom:370.127200pt;}
.y16b{bottom:370.137867pt;}
.y146{bottom:370.143200pt;}
.y1e2{bottom:370.153867pt;}
.y4c{bottom:370.164533pt;}
.y101{bottom:370.175200pt;}
.y181{bottom:370.180533pt;}
.y1f9{bottom:384.849067pt;}
.ye0{bottom:384.881200pt;}
.y81{bottom:384.916533pt;}
.y116{bottom:384.921867pt;}
.y16a{bottom:384.932533pt;}
.y145{bottom:384.937867pt;}
.y1e1{bottom:384.948533pt;}
.y4b{bottom:384.959200pt;}
.y100{bottom:384.969867pt;}
.y1f8{bottom:399.643733pt;}
.ydf{bottom:399.675867pt;}
.y1b9{bottom:399.691867pt;}
.y80{bottom:399.711200pt;}
.y115{bottom:399.716533pt;}
.y169{bottom:399.727200pt;}
.y144{bottom:399.732533pt;}
.y1e0{bottom:399.743200pt;}
.y4a{bottom:399.753867pt;}
.y17f{bottom:399.759200pt;}
.y19e{bottom:399.938133pt;}
.y180{bottom:403.939200pt;}
.y1f7{bottom:414.438400pt;}
.yde{bottom:414.470533pt;}
.yff{bottom:414.473867pt;}
.y1b8{bottom:414.486533pt;}
.y7f{bottom:414.505867pt;}
.y114{bottom:414.511200pt;}
.y168{bottom:414.521867pt;}
.y143{bottom:414.527200pt;}
.y1df{bottom:414.537867pt;}
.y49{bottom:414.548533pt;}
.y1f6{bottom:429.233067pt;}
.ydd{bottom:429.265200pt;}
.yfe{bottom:429.268533pt;}
.y1b7{bottom:429.281200pt;}
.y7e{bottom:429.300533pt;}
.y113{bottom:429.305867pt;}
.y167{bottom:429.316533pt;}
.y142{bottom:429.321867pt;}
.y1de{bottom:429.332533pt;}
.yb4{bottom:429.337867pt;}
.y1f5{bottom:444.027733pt;}
.ydc{bottom:444.059867pt;}
.yfd{bottom:444.063200pt;}
.y1b6{bottom:444.075867pt;}
.y7d{bottom:444.095200pt;}
.y48{bottom:444.100533pt;}
.yb3{bottom:444.105867pt;}
.y166{bottom:444.111200pt;}
.y141{bottom:444.116533pt;}
.y19c{bottom:444.127200pt;}
.yb{bottom:446.990669pt;}
.y19d{bottom:448.307200pt;}
.y1f4{bottom:458.822400pt;}
.y19b{bottom:458.852533pt;}
.ydb{bottom:458.854533pt;}
.yfc{bottom:458.857867pt;}
.y1b5{bottom:458.870533pt;}
.y7c{bottom:458.889867pt;}
.y47{bottom:458.895200pt;}
.yb2{bottom:458.900533pt;}
.y165{bottom:458.905867pt;}
.y140{bottom:458.911200pt;}
.ya{bottom:462.990669pt;}
.y1f3{bottom:473.617067pt;}
.y1dc{bottom:473.636533pt;}
.y19a{bottom:473.647200pt;}
.yda{bottom:473.649200pt;}
.yfb{bottom:473.652533pt;}
.y1b4{bottom:473.665200pt;}
.y7b{bottom:473.684533pt;}
.y46{bottom:473.689867pt;}
.yb1{bottom:473.695200pt;}
.y164{bottom:473.700533pt;}
.y13f{bottom:473.705867pt;}
.y1dd{bottom:477.885867pt;}
.y9{bottom:478.990666pt;}
.y1f2{bottom:488.411733pt;}
.y1db{bottom:488.431200pt;}
.y199{bottom:488.441867pt;}
.yd9{bottom:488.443867pt;}
.yfa{bottom:488.447200pt;}
.y1b3{bottom:488.459867pt;}
.y17d{bottom:488.473867pt;}
.y7a{bottom:488.479200pt;}
.y45{bottom:488.484533pt;}
.yb0{bottom:488.489867pt;}
.y163{bottom:488.495200pt;}
.y17e{bottom:492.675200pt;}
.y8{bottom:494.990666pt;}
.y13e{bottom:503.145733pt;}
.y1f1{bottom:503.206400pt;}
.yad{bottom:503.220533pt;}
.y1da{bottom:503.225867pt;}
.y198{bottom:503.236533pt;}
.yd8{bottom:503.238533pt;}
.yf9{bottom:503.241867pt;}
.y1b2{bottom:503.254533pt;}
.y17c{bottom:503.268533pt;}
.y79{bottom:503.273867pt;}
.y44{bottom:503.279200pt;}
.yae{bottom:503.284533pt;}
.yaf{bottom:507.464533pt;}
.y13d{bottom:517.940400pt;}
.y162{bottom:517.988400pt;}
.yac{bottom:518.015200pt;}
.y1d9{bottom:518.020533pt;}
.y197{bottom:518.031200pt;}
.yd7{bottom:518.033200pt;}
.yf8{bottom:518.036533pt;}
.y1b1{bottom:518.049200pt;}
.y17b{bottom:518.063200pt;}
.y78{bottom:518.068533pt;}
.y43{bottom:518.073867pt;}
.y13c{bottom:532.735067pt;}
.y161{bottom:532.783067pt;}
.yab{bottom:532.809867pt;}
.y1d8{bottom:532.815200pt;}
.y196{bottom:532.825867pt;}
.yd6{bottom:532.827867pt;}
.yf7{bottom:532.831200pt;}
.y1b0{bottom:532.843867pt;}
.y17a{bottom:532.857867pt;}
.y22{bottom:532.863200pt;}
.y13b{bottom:547.529733pt;}
.y160{bottom:547.577733pt;}
.yaa{bottom:547.604533pt;}
.y1d7{bottom:547.609867pt;}
.y195{bottom:547.620533pt;}
.yd5{bottom:547.622533pt;}
.yf6{bottom:547.625867pt;}
.y31{bottom:547.638533pt;}
.y42{bottom:547.647200pt;}
.y178{bottom:547.652533pt;}
.y179{bottom:551.832533pt;}
.y13a{bottom:562.324400pt;}
.y15f{bottom:562.372400pt;}
.ya9{bottom:562.399200pt;}
.y1d6{bottom:562.404533pt;}
.y194{bottom:562.415200pt;}
.yd4{bottom:562.417200pt;}
.yf5{bottom:562.420533pt;}
.y1af{bottom:562.433200pt;}
.y30{bottom:562.435867pt;}
.y41{bottom:562.441867pt;}
.y77{bottom:562.620800pt;}
.y7{bottom:573.786667pt;}
.y139{bottom:577.119067pt;}
.y15e{bottom:577.167067pt;}
.ya8{bottom:577.193867pt;}
.y1d5{bottom:577.199200pt;}
.y193{bottom:577.209867pt;}
.yd3{bottom:577.211867pt;}
.yf4{bottom:577.215200pt;}
.y1ae{bottom:577.227867pt;}
.y40{bottom:577.231200pt;}
.y2f{bottom:577.243867pt;}
.y138{bottom:591.913733pt;}
.y15d{bottom:591.961733pt;}
.ya7{bottom:591.988533pt;}
.y1d4{bottom:591.993867pt;}
.y192{bottom:592.004533pt;}
.yd2{bottom:592.006533pt;}
.y3f{bottom:592.009867pt;}
.y1ad{bottom:592.022533pt;}
.y2e{bottom:592.027867pt;}
.y6{bottom:592.685334pt;}
.y137{bottom:606.708400pt;}
.y15c{bottom:606.756400pt;}
.y76{bottom:606.767200pt;}
.ya6{bottom:606.783200pt;}
.y1d3{bottom:606.788533pt;}
.y191{bottom:606.799200pt;}
.yd1{bottom:606.801200pt;}
.y3e{bottom:606.804533pt;}
.y2d{bottom:606.811867pt;}
.y136{bottom:621.503067pt;}
.y15b{bottom:621.551067pt;}
.y75{bottom:621.561867pt;}
.ya5{bottom:621.577867pt;}
.y1d2{bottom:621.583200pt;}
.y190{bottom:621.593867pt;}
.y2c{bottom:621.595867pt;}
.y3d{bottom:621.599200pt;}
.y1ac{bottom:625.779200pt;}
.y135{bottom:636.297733pt;}
.y15a{bottom:636.345733pt;}
.y74{bottom:636.356533pt;}
.ya4{bottom:636.372533pt;}
.y1d1{bottom:636.377867pt;}
.y2b{bottom:636.385200pt;}
.y3c{bottom:636.388533pt;}
.yd0{bottom:636.390533pt;}
.y18f{bottom:640.568533pt;}
.y5{bottom:645.598667pt;}
.yf3{bottom:651.081867pt;}
.y134{bottom:651.092400pt;}
.y159{bottom:651.140400pt;}
.y73{bottom:651.151200pt;}
.ya3{bottom:651.167200pt;}
.y2a{bottom:651.169200pt;}
.y39{bottom:651.172533pt;}
.y3a{bottom:651.177867pt;}
.y3b{bottom:655.357867pt;}
.yf2{bottom:665.876533pt;}
.y1d0{bottom:665.881867pt;}
.y133{bottom:665.887067pt;}
.yce{bottom:665.935067pt;}
.y72{bottom:665.945867pt;}
.y29{bottom:665.953200pt;}
.ya2{bottom:665.961867pt;}
.y38{bottom:665.967200pt;}
.y3{bottom:668.977329pt;}
.ycf{bottom:670.147200pt;}
.yf1{bottom:680.671200pt;}
.y1cf{bottom:680.676533pt;}
.y132{bottom:680.681733pt;}
.ycd{bottom:680.729733pt;}
.y71{bottom:680.740533pt;}
.y28{bottom:680.742533pt;}
.y37{bottom:680.756533pt;}
.y112{bottom:684.936533pt;}
.yf0{bottom:695.465867pt;}
.y1ce{bottom:695.471200pt;}
.y131{bottom:695.476400pt;}
.ya1{bottom:695.521067pt;}
.ycc{bottom:695.524400pt;}
.y70{bottom:695.535200pt;}
.y36{bottom:695.545867pt;}
.yef{bottom:710.260533pt;}
.y1cd{bottom:710.265867pt;}
.y130{bottom:710.271067pt;}
.ya0{bottom:710.315733pt;}
.ycb{bottom:710.319067pt;}
.y35{bottom:710.324533pt;}
.y6f{bottom:710.329867pt;}
.yee{bottom:725.055200pt;}
.y1cc{bottom:725.060533pt;}
.y12f{bottom:725.065733pt;}
.y1ab{bottom:725.076533pt;}
.y9f{bottom:725.110400pt;}
.yca{bottom:725.113733pt;}
.y34{bottom:725.119200pt;}
.y32{bottom:725.124533pt;}
.y177{bottom:729.304533pt;}
.yed{bottom:739.849867pt;}
.y1cb{bottom:739.855200pt;}
.y12e{bottom:739.860400pt;}
.y1aa{bottom:739.871200pt;}
.y9e{bottom:739.905067pt;}
.yc9{bottom:739.908400pt;}
.y33{bottom:739.913867pt;}
.y6e{bottom:754.644533pt;}
.y1ca{bottom:754.649867pt;}
.y12d{bottom:754.655067pt;}
.y158{bottom:754.665867pt;}
.y9d{bottom:754.699733pt;}
.yc7{bottom:754.703067pt;}
.yc8{bottom:758.883200pt;}
.y6d{bottom:769.439200pt;}
.y1c9{bottom:769.444533pt;}
.y12c{bottom:769.449733pt;}
.y157{bottom:769.460533pt;}
.y9c{bottom:769.494400pt;}
.y2{bottom:781.661334pt;}
.y6c{bottom:784.233867pt;}
.y1c8{bottom:784.239200pt;}
.y12b{bottom:784.244400pt;}
.y156{bottom:784.255200pt;}
.y1f0{bottom:784.460800pt;}
.y27{bottom:790.004400pt;}
.y6b{bottom:799.028533pt;}
.y1c7{bottom:799.033867pt;}
.y12a{bottom:799.039067pt;}
.y155{bottom:799.049867pt;}
.y9a{bottom:799.071067pt;}
.y9b{bottom:803.251200pt;}
.y6a{bottom:813.823200pt;}
.y1c6{bottom:813.828533pt;}
.y129{bottom:813.833733pt;}
.y154{bottom:813.844533pt;}
.y69{bottom:828.617867pt;}
.y1c5{bottom:828.623200pt;}
.y128{bottom:828.628400pt;}
.y153{bottom:828.639200pt;}
.y1ee{bottom:828.649867pt;}
.y26{bottom:831.817733pt;}
.y1ef{bottom:832.829867pt;}
.y68{bottom:843.412533pt;}
.y1c4{bottom:843.417867pt;}
.y127{bottom:843.423067pt;}
.y152{bottom:843.433867pt;}
.y67{bottom:858.207200pt;}
.y1c3{bottom:858.212533pt;}
.y126{bottom:858.217733pt;}
.y151{bottom:858.228533pt;}
.y1{bottom:859.312000pt;}
.y66{bottom:873.001867pt;}
.y1c2{bottom:873.007200pt;}
.y125{bottom:873.012400pt;}
.y25{bottom:873.631067pt;}
.y65{bottom:887.796533pt;}
.y1c1{bottom:887.801867pt;}
.y124{bottom:887.807067pt;}
.y150{bottom:891.987200pt;}
.y64{bottom:902.591200pt;}
.y1c0{bottom:902.596533pt;}
.y123{bottom:914.408533pt;}
.y24{bottom:915.444400pt;}
.y63{bottom:917.385867pt;}
.hc{height:23.295000pt;}
.h15{height:25.742031pt;}
.h16{height:27.662279pt;}
.h12{height:27.662813pt;}
.h7{height:28.560000pt;}
.h11{height:31.887360pt;}
.h13{height:34.333333pt;}
.hf{height:37.200000pt;}
.ha{height:37.375000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:44.382812pt;}
.h2{height:48.960000pt;}
.hd{height:51.500000pt;}
.h14{height:60.734375pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h10{height:118.391386pt;}
.he{height:130.812500pt;}
.h9{height:1001.333333pt;}
.h8{height:1001.574667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:699.212000pt;}
.w4{width:699.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:41.574800pt;}
.x13{left:49.133867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:98.267733pt;}
.x7{left:100.007067pt;}
.x1a{left:101.222267pt;}
.x10{left:105.826800pt;}
.x12{left:109.606267pt;}
.x40{left:147.063600pt;}
.x41{left:150.078400pt;}
.x21{left:153.534933pt;}
.x22{left:156.488400pt;}
.x4{left:180.874667pt;}
.x6{left:206.024933pt;}
.x2a{left:211.483067pt;}
.x2b{left:214.250933pt;}
.x18{left:261.083467pt;}
.x19{left:264.036933pt;}
.x2e{left:267.657600pt;}
.x28{left:272.238267pt;}
.x29{left:275.006133pt;}
.x14{left:287.823867pt;}
.x15{left:290.680133pt;}
.x37{left:301.655067pt;}
.x16{left:303.244133pt;}
.x38{left:304.647867pt;}
.x17{left:306.127067pt;}
.x23{left:311.474533pt;}
.x24{left:314.242400pt;}
.x2f{left:327.535600pt;}
.x30{left:330.413600pt;}
.x39{left:334.710400pt;}
.x3a{left:337.703200pt;}
.x8{left:353.828000pt;}
.xf{left:356.782667pt;}
.x1b{left:361.387067pt;}
.xd{left:365.166667pt;}
.x45{left:368.379200pt;}
.x1e{left:372.726533pt;}
.x46{left:378.009333pt;}
.x34{left:380.967333pt;}
.xa{left:383.870667pt;}
.x33{left:397.807733pt;}
.x3b{left:400.513333pt;}
.xe{left:401.527467pt;}
.x3{left:404.408000pt;}
.x1f{left:407.207733pt;}
.x20{left:410.188933pt;}
.x31{left:426.156800pt;}
.x2c{left:432.621333pt;}
.xb{left:441.337067pt;}
.xc{left:443.949067pt;}
.x32{left:446.986533pt;}
.x42{left:451.708133pt;}
.x43{left:454.575200pt;}
.x35{left:475.539600pt;}
.x36{left:478.679867pt;}
.x9{left:487.559067pt;}
.x5{left:508.916800pt;}
.x3c{left:518.576000pt;}
.x3d{left:521.523067pt;}
.x3e{left:526.308933pt;}
.x3f{left:529.256000pt;}
.x44{left:550.356400pt;}
.x26{left:570.392533pt;}
.x27{left:573.160533pt;}
.x2d{left:598.083067pt;}
.x1c{left:601.796000pt;}
.x1d{left:604.830667pt;}
}




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