
    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_c973a29349012c36e8a3f768.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c28cbd245159e8b6c69d1a5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ea96833c975d280c7588f606.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6fdc25c3280988bfcc435aab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4becfc05c714393f4443a44c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_1b7798945128e5ee6eed87e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_38a607d266bc2088c3550aea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_d16ad2f469953b434b40b1b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_b2fc2a73a4b2a67e4d5ce9cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_2a1222e9f1c0815abc064247.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.842285;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_238e08fcb76dee0fceabf661.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_0dcf06f8e5f689aaf4739362.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_2a9171d100ab4aa165a63c90.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_cf6b69b425aeb760a7640f86.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.321681px;}
.v2{vertical-align:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000012px;}
.ls3{letter-spacing:14.994141px;}
.ls1{letter-spacing:17.985959px;}
.ls9{letter-spacing:17.999997px;}
.ls6{letter-spacing:18.000000px;}
.ls2{letter-spacing:22.485937px;}
.ls7{letter-spacing:26.985959px;}
.ls4{letter-spacing:31.500000px;}
.lsa{letter-spacing:64.511718px;}
.ls8{letter-spacing:72.000000px;}
.lsb{letter-spacing:76.500000px;}
.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;}
}
.wsd{word-spacing:-41.999999px;}
.wsad{word-spacing:-40.605468px;}
.ws6{word-spacing:-36.000091px;}
.ws1{word-spacing:-36.000072px;}
.ws5{word-spacing:-36.000067px;}
.ws4{word-spacing:-36.000046px;}
.ws3b{word-spacing:-36.000000px;}
.ws57{word-spacing:-33.000001px;}
.wsa3{word-spacing:-21.600001px;}
.ws17{word-spacing:-21.032524px;}
.ws8{word-spacing:-18.000147px;}
.ws9{word-spacing:-18.000101px;}
.ws13{word-spacing:-18.000034px;}
.ws19{word-spacing:-18.000023px;}
.wsc0{word-spacing:-18.000014px;}
.wsa0{word-spacing:-18.000013px;}
.wsb{word-spacing:-18.000011px;}
.ws1b{word-spacing:-18.000003px;}
.wse{word-spacing:-18.000000px;}
.ws5d{word-spacing:-17.999998px;}
.wsc1{word-spacing:-17.999989px;}
.ws70{word-spacing:-17.999980px;}
.ws18{word-spacing:-17.999978px;}
.ws63{word-spacing:-17.999968px;}
.wsa{word-spacing:-17.999967px;}
.ws16{word-spacing:-16.523439px;}
.ws90{word-spacing:-15.024105px;}
.ws86{word-spacing:-15.022664px;}
.ws99{word-spacing:-15.018880px;}
.ws97{word-spacing:-15.018772px;}
.ws94{word-spacing:-15.017679px;}
.ws8f{word-spacing:-15.017665px;}
.ws93{word-spacing:-15.017651px;}
.ws7e{word-spacing:-15.017638px;}
.ws7f{word-spacing:-15.017629px;}
.ws85{word-spacing:-15.017616px;}
.ws88{word-spacing:-15.017607px;}
.ws71{word-spacing:-15.017596px;}
.ws84{word-spacing:-15.017581px;}
.ws92{word-spacing:-15.017577px;}
.ws80{word-spacing:-15.017575px;}
.wsa6{word-spacing:-15.017564px;}
.ws9a{word-spacing:-15.017561px;}
.ws98{word-spacing:-15.017553px;}
.ws72{word-spacing:-15.016245px;}
.ws81{word-spacing:-15.016242px;}
.ws89{word-spacing:-15.016231px;}
.wsa4{word-spacing:-15.016142px;}
.ws83{word-spacing:-15.014956px;}
.ws4c{word-spacing:-15.000000px;}
.ws6e{word-spacing:-13.500033px;}
.ws91{word-spacing:-13.500023px;}
.ws32{word-spacing:-13.500022px;}
.ws9b{word-spacing:-13.500013px;}
.ws44{word-spacing:-13.500011px;}
.ws46{word-spacing:-13.500002px;}
.ws31{word-spacing:-13.500000px;}
.ws6c{word-spacing:-13.499999px;}
.ws5c{word-spacing:-13.499998px;}
.ws4f{word-spacing:-13.499989px;}
.ws67{word-spacing:-13.349554px;}
.ws68{word-spacing:-13.349553px;}
.ws3c{word-spacing:-10.800000px;}
.wsca{word-spacing:-9.000034px;}
.wsd4{word-spacing:-9.000023px;}
.wsa7{word-spacing:-9.000021px;}
.ws30{word-spacing:-9.000012px;}
.ws6b{word-spacing:-9.000000px;}
.ws47{word-spacing:-8.999978px;}
.wsa1{word-spacing:-8.999968px;}
.wsd3{word-spacing:-4.500033px;}
.ws9f{word-spacing:-4.500023px;}
.ws87{word-spacing:-4.500012px;}
.ws8d{word-spacing:-4.500002px;}
.ws8e{word-spacing:-4.500001px;}
.ws2f{word-spacing:-4.500000px;}
.ws34{word-spacing:-4.499998px;}
.ws96{word-spacing:-4.499977px;}
.ws66{word-spacing:-1.336555px;}
.ws15{word-spacing:-0.551520px;}
.ws10{word-spacing:-0.375741px;}
.ws7d{word-spacing:-0.022748px;}
.ws3e{word-spacing:-0.017726px;}
.ws40{word-spacing:-0.017683px;}
.ws75{word-spacing:-0.017663px;}
.ws49{word-spacing:-0.017660px;}
.ws5b{word-spacing:-0.017613px;}
.wsa5{word-spacing:-0.017605px;}
.ws56{word-spacing:-0.017580px;}
.ws3d{word-spacing:-0.017579px;}
.ws4a{word-spacing:-0.017577px;}
.ws95{word-spacing:-0.016266px;}
.ws3f{word-spacing:-0.016243px;}
.ws48{word-spacing:-0.016230px;}
.wsaa{word-spacing:-0.016228px;}
.ws4b{word-spacing:-0.016227px;}
.ws6f{word-spacing:-0.016225px;}
.ws62{word-spacing:-0.016220px;}
.ws3{word-spacing:-0.000096px;}
.ws2{word-spacing:-0.000076px;}
.ws0{word-spacing:-0.000062px;}
.ws36{word-spacing:-0.000034px;}
.ws14{word-spacing:-0.000023px;}
.ws12{word-spacing:-0.000013px;}
.ws7{word-spacing:-0.000012px;}
.ws65{word-spacing:-0.000003px;}
.ws2d{word-spacing:-0.000001px;}
.wsc{word-spacing:0.000000px;}
.wsf{word-spacing:0.000002px;}
.ws20{word-spacing:0.000011px;}
.ws11{word-spacing:0.000022px;}
.ws9d{word-spacing:0.000033px;}
.ws45{word-spacing:4.499966px;}
.ws23{word-spacing:4.499977px;}
.ws69{word-spacing:4.499988px;}
.ws1e{word-spacing:4.499989px;}
.ws42{word-spacing:4.499997px;}
.ws25{word-spacing:4.500000px;}
.ws4e{word-spacing:4.500002px;}
.ws54{word-spacing:4.500011px;}
.ws5e{word-spacing:4.500022px;}
.ws55{word-spacing:5.994141px;}
.ws7a{word-spacing:7.185936px;}
.ws3a{word-spacing:8.999966px;}
.ws28{word-spacing:8.999977px;}
.ws76{word-spacing:8.999987px;}
.ws27{word-spacing:8.999988px;}
.ws52{word-spacing:8.999998px;}
.ws22{word-spacing:8.999999px;}
.ws5a{word-spacing:9.000001px;}
.wsc2{word-spacing:9.000002px;}
.ws43{word-spacing:9.000011px;}
.ws37{word-spacing:9.000022px;}
.ws50{word-spacing:11.685936px;}
.ws35{word-spacing:13.499966px;}
.ws38{word-spacing:13.499977px;}
.ws26{word-spacing:13.499988px;}
.ws6a{word-spacing:13.499998px;}
.ws24{word-spacing:13.500000px;}
.ws64{word-spacing:13.500011px;}
.ws61{word-spacing:13.500022px;}
.ws51{word-spacing:13.500033px;}
.ws74{word-spacing:16.185936px;}
.ws2c{word-spacing:17.999977px;}
.wsab{word-spacing:17.999987px;}
.ws33{word-spacing:17.999988px;}
.ws8a{word-spacing:17.999989px;}
.ws82{word-spacing:17.999997px;}
.ws1c{word-spacing:18.000000px;}
.ws7c{word-spacing:18.000001px;}
.ws9c{word-spacing:18.000010px;}
.ws58{word-spacing:18.000012px;}
.ws2e{word-spacing:18.000022px;}
.ws59{word-spacing:22.499977px;}
.ws1d{word-spacing:22.499988px;}
.ws6d{word-spacing:22.499998px;}
.ws1f{word-spacing:22.500000px;}
.ws29{word-spacing:22.500011px;}
.wsa2{word-spacing:22.500033px;}
.ws39{word-spacing:26.999977px;}
.ws53{word-spacing:26.999988px;}
.ws8c{word-spacing:26.999997px;}
.ws21{word-spacing:27.000000px;}
.ws7b{word-spacing:31.499965px;}
.ws60{word-spacing:31.499977px;}
.ws2a{word-spacing:31.499988px;}
.ws2b{word-spacing:31.499999px;}
.ws9e{word-spacing:35.999976px;}
.wscf{word-spacing:35.999977px;}
.ws78{word-spacing:35.999988px;}
.ws41{word-spacing:36.000000px;}
.wsc4{word-spacing:36.000002px;}
.ws79{word-spacing:36.000010px;}
.ws73{word-spacing:36.000022px;}
.wsb1{word-spacing:40.499966px;}
.wsce{word-spacing:40.499977px;}
.ws8b{word-spacing:40.499988px;}
.ws5f{word-spacing:40.500000px;}
.wsa9{word-spacing:40.500022px;}
.wsb6{word-spacing:44.999988px;}
.ws77{word-spacing:45.000000px;}
.wsa8{word-spacing:49.499977px;}
.ws4d{word-spacing:49.499987px;}
.wscd{word-spacing:58.499978px;}
.wsb2{word-spacing:58.500000px;}
.wsb0{word-spacing:62.999999px;}
.wsb5{word-spacing:67.500000px;}
.wsd6{word-spacing:94.500008px;}
.wsd5{word-spacing:99.000000px;}
.wsbd{word-spacing:184.500000px;}
.wsb3{word-spacing:198.000033px;}
.wsd2{word-spacing:202.500000px;}
.wscc{word-spacing:202.500033px;}
.wsb4{word-spacing:215.999989px;}
.wscb{word-spacing:225.000000px;}
.wsd0{word-spacing:243.000001px;}
.wsd1{word-spacing:256.499988px;}
.wsac{word-spacing:310.499977px;}
.wsbe{word-spacing:355.499977px;}
.wsbb{word-spacing:355.500000px;}
.wsbc{word-spacing:369.000000px;}
.wsba{word-spacing:373.499990px;}
.wsb9{word-spacing:418.499977px;}
.wsb8{word-spacing:436.500010px;}
.wsc9{word-spacing:566.999977px;}
.wsaf{word-spacing:576.000000px;}
.wsc8{word-spacing:589.500011px;}
.wsae{word-spacing:594.000000px;}
.wsb7{word-spacing:620.999989px;}
.wsc6{word-spacing:701.999977px;}
.wsbf{word-spacing:917.999977px;}
.wsc7{word-spacing:2033.999999px;}
.wsc3{word-spacing:2128.499989px;}
.wsc5{word-spacing:2128.500022px;}
.ws1a{word-spacing:2322.000011px;}
._37{margin-left:-18.000000px;}
._2{margin-left:-15.960700px;}
._0{margin-left:-10.687500px;}
._27{margin-left:-9.281250px;}
._c{margin-left:-7.207031px;}
._4{margin-left:-5.343750px;}
._3{margin-left:-3.796874px;}
._1{margin-left:-2.601457px;}
._5{margin-left:-1.300781px;}
._a{width:2.401604px;}
._8{width:6.444575px;}
._7{width:7.499262px;}
._6{width:10.698481px;}
._d{width:12.878167px;}
._b{width:16.182741px;}
._1e{width:17.448578px;}
._e{width:18.551519px;}
._1c{width:22.500003px;}
._28{width:24.911268px;}
._1f{width:27.000000px;}
._2d{width:29.754347px;}
._21{width:31.500002px;}
._9{width:36.000002px;}
._20{width:40.500010px;}
._1d{width:45.000000px;}
._26{width:49.500000px;}
._23{width:54.000000px;}
._2b{width:58.500001px;}
._22{width:63.000002px;}
._2c{width:67.500003px;}
._25{width:72.000011px;}
._31{width:76.500024px;}
._2a{width:80.999967px;}
._29{width:84.023438px;}
._33{width:85.499990px;}
._24{width:89.999988px;}
._2e{width:108.000000px;}
._3a{width:135.000001px;}
._35{width:207.000000px;}
._39{width:215.999987px;}
._32{width:238.500002px;}
._38{width:279.000019px;}
._2f{width:333.000002px;}
._36{width:396.000002px;}
._19{width:431.929631px;}
._1b{width:594.000235px;}
._30{width:616.500000px;}
._34{width:643.500022px;}
._11{width:683.929569px;}
._f{width:882.000088px;}
._12{width:899.929591px;}
._18{width:917.929581px;}
._16{width:954.913935px;}
._1a{width:990.984250px;}
._10{width:1007.929603px;}
._13{width:1151.929414px;}
._14{width:1187.929602px;}
._15{width:1223.929569px;}
._17{width:1259.859185px;}
.fcb{color:rgb(33,37,41);}
.fca{color:rgb(17,85,204);}
.fc8{color:rgb(32,33,34);}
.fc9{color:rgb(73,73,73);}
.fc7{color:rgb(35,31,32);}
.fc6{color:rgb(32,33,36);}
.fc5{color:rgb(5,16,62);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(15,15,15);}
.fc1{color:rgb(48,48,48);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:43.200002px;}
.fs8{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.999997px;}
.fs0{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:59.967044px;}
.y12{bottom:59.967584px;}
.y29{bottom:59.967779px;}
.y176{bottom:59.968499px;}
.y105{bottom:111.344230px;}
.ycc{bottom:111.410148px;}
.y1ea{bottom:113.203128px;}
.y116{bottom:114.273923px;}
.y205{bottom:114.665033px;}
.y9d{bottom:117.102165px;}
.y132{bottom:117.102173px;}
.y29b{bottom:119.853517px;}
.y1a0{bottom:122.601563px;}
.y5c{bottom:123.273187px;}
.y9f{bottom:128.658693px;}
.y104{bottom:134.284793px;}
.yb4{bottom:134.350710px;}
.y1d5{bottom:134.352165px;}
.y1ac{bottom:134.501947px;}
.y115{bottom:138.076178px;}
.y204{bottom:138.468742px;}
.y280{bottom:144.679688px;}
.y231{bottom:145.224607px;}
.yb6{bottom:145.907223px;}
.y19f{bottom:146.405272px;}
.y5b{bottom:147.076178px;}
.y291{bottom:147.820312px;}
.y16e{bottom:148.599607px;}
.y131{bottom:149.484367px;}
.y9e{bottom:151.599240px;}
.ycd{bottom:152.133907px;}
.y142{bottom:155.288092px;}
.y2ac{bottom:156.058598px;}
.y1ab{bottom:158.308598px;}
.y29a{bottom:161.249992px;}
.y114{bottom:161.879887px;}
.yf2{bottom:162.272467px;}
.y203{bottom:162.275392px;}
.ya1{bottom:163.155768px;}
.yb5{bottom:168.847785px;}
.y230{bottom:169.025392px;}
.y19e{bottom:170.208983px;}
.y16d{bottom:172.400393px;}
.y130{bottom:173.288092px;}
.yf0{bottom:173.879887px;}
.y1d2{bottom:174.175777px;}
.y1f9{bottom:178.139648px;}
.y141{bottom:179.091803px;}
.y21b{bottom:179.583983px;}
.ya{bottom:180.125423px;}
.y1d4{bottom:180.644523px;}
.y1aa{bottom:182.109367px;}
.ycb{bottom:186.076178px;}
.ya0{bottom:186.096315px;}
.y290{bottom:189.216803px;}
.y249{bottom:191.288092px;}
.y22f{bottom:192.826178px;}
.y19d{bottom:194.009768px;}
.y5a{bottom:194.682127px;}
.y16c{bottom:196.205573px;}
.y12f{bottom:197.091803px;}
.y2ab{bottom:197.460938px;}
.yef{bottom:197.682127px;}
.y1bf{bottom:197.683598px;}
.y1d1{bottom:197.976563px;}
.y103{bottom:200.484367px;}
.y1f8{bottom:201.943358px;}
.y299{bottom:202.646483px;}
.y21a{bottom:203.384767px;}
.y113{bottom:203.683598px;}
.y269{bottom:205.016602px;}
.y1a9{bottom:205.913092px;}
.y202{bottom:209.876947px;}
.yca{bottom:209.879887px;}
.y248{bottom:215.088863px;}
.y22e{bottom:216.632812px;}
.y19c{bottom:217.813477px;}
.y59{bottom:218.485103px;}
.y16b{bottom:220.006342px;}
.y175{bottom:220.892573px;}
.y12e{bottom:220.894043px;}
.y1be{bottom:221.484367px;}
.y9c{bottom:221.485103px;}
.y1d0{bottom:221.783198px;}
.y1f7{bottom:225.749992px;}
.y152{bottom:226.696283px;}
.y219{bottom:227.191403px;}
.y27b{bottom:227.472652px;}
.y112{bottom:227.485838px;}
.y1a8{bottom:229.713863px;}
.y28f{bottom:230.613278px;}
.yc9{bottom:233.682127px;}
.y201{bottom:233.683598px;}
.y2aa{bottom:238.851563px;}
.y247{bottom:238.892573px;}
.y22d{bottom:240.436523px;}
.y1b5{bottom:240.451173px;}
.y58{bottom:242.288092px;}
.y16a{bottom:243.811523px;}
.y12d{bottom:244.696283px;}
.y9b{bottom:245.288092px;}
.y268{bottom:246.413092px;}
.y1f6{bottom:249.550778px;}
.y151{bottom:250.499992px;}
.y218{bottom:250.992188px;}
.y111{bottom:251.288092px;}
.y1a7{bottom:253.517572px;}
.yc8{bottom:257.484367px;}
.y200{bottom:257.487307px;}
.y246{bottom:262.699223px;}
.y22c{bottom:264.237307px;}
.y57{bottom:266.091068px;}
.y169{bottom:267.612307px;}
.y12c{bottom:268.499992px;}
.y27a{bottom:268.869142px;}
.yb3{bottom:269.091068px;}
.yee{bottom:269.091803px;}
.y1f5{bottom:273.351563px;}
.y150{bottom:274.303717px;}
.y110{bottom:275.091803px;}
.y1a6{bottom:277.318358px;}
.y9{bottom:278.836488px;}
.y19b{bottom:280.119138px;}
.yc7{bottom:281.288092px;}
.y298{bottom:285.439447px;}
.y17a{bottom:286.499992px;}
.y267{bottom:287.809567px;}
.y257{bottom:288.952141px;}
.y56{bottom:289.894043px;}
.y140{bottom:292.303717px;}
.y28e{bottom:292.710938px;}
.yed{bottom:292.894043px;}
.y1e9{bottom:295.693353px;}
.y1f4{bottom:297.158197px;}
.y10f{bottom:298.895512px;}
.y1a5{bottom:301.124992px;}
.y206{bottom:305.088863px;}
.yc6{bottom:305.091803px;}
.y22b{bottom:306.038092px;}
.y1cf{bottom:307.892583px;}
.y168{bottom:309.417487px;}
.y27f{bottom:310.265617px;}
.y245{bottom:310.300778px;}
.y12b{bottom:310.303717px;}
.y256{bottom:312.846676px;}
.y1cc{bottom:313.025392px;}
.y28d{bottom:313.406242px;}
.y13f{bottom:316.105957px;}
.yec{bottom:316.696283px;}
.y9a{bottom:316.697018px;}
.y1e8{bottom:316.699223px;}
.y102{bottom:319.499992px;}
.y1f3{bottom:320.961908px;}
.y217{bottom:321.234378px;}
.y2a9{bottom:321.644528px;}
.y10e{bottom:322.697752px;}
.y3a{bottom:324.693968px;}
.y297{bottom:326.835938px;}
.y1ff{bottom:328.892573px;}
.yc5{bottom:328.894043px;}
.y22a{bottom:329.841803px;}
.y167{bottom:333.218257px;}
.y12a{bottom:334.105957px;}
.y174{bottom:334.107428px;}
.y255{bottom:336.726563px;}
.y1cb{bottom:336.829102px;}
.y55{bottom:337.499992px;}
.y13e{bottom:339.908197px;}
.y99{bottom:340.499992px;}
.y101{bottom:343.302248px;}
.y1a4{bottom:347.563473px;}
.y8{bottom:350.245428px;}
.y279{bottom:351.662108px;}
.yc4{bottom:352.696283px;}
.y1fe{bottom:352.699223px;}
.y166{bottom:357.023438px;}
.y129{bottom:357.908197px;}
.y244{bottom:357.911137px;}
.y254{bottom:360.541996px;}
.y1ca{bottom:360.632812px;}
.y54{bottom:361.302983px;}
.y2a8{bottom:363.046867px;}
.y14f{bottom:363.711908px;}
.y1e7{bottom:364.300778px;}
.y98{bottom:364.302983px;}
.y1bd{bottom:364.303717px;}
.y39{bottom:366.496943px;}
.y1d3{bottom:367.104498px;}
.y100{bottom:367.105957px;}
.y266{bottom:367.157227px;}
.y296{bottom:368.232428px;}
.y1f2{bottom:368.563477px;}
.y10d{bottom:370.303717px;}
.y229{bottom:371.648438px;}
.y7d{bottom:373.302983px;}
.ydd{bottom:376.499992px;}
.y165{bottom:380.824223px;}
.y128{bottom:381.711908px;}
.y28c{bottom:381.714848px;}
.y18f{bottom:382.303717px;}
.y253{bottom:384.421867px;}
.y1c9{bottom:384.433598px;}
.y53{bottom:385.105957px;}
.y14e{bottom:387.515617px;}
.y97{bottom:388.105957px;}
.y1bc{bottom:388.107428px;}
.yff{bottom:390.908197px;}
.y1f1{bottom:392.367187px;}
.y278{bottom:393.058598px;}
.y10c{bottom:394.107428px;}
.y228{bottom:395.449223px;}
.y7c{bottom:397.105957px;}
.y1fd{bottom:400.300778px;}
.yc3{bottom:400.303717px;}
.y2a7{bottom:404.437492px;}
.y164{bottom:404.629388px;}
.y127{bottom:405.515617px;}
.y18e{bottom:406.107428px;}
.y252{bottom:408.237301px;}
.y1c8{bottom:408.237307px;}
.y38{bottom:408.299933px;}
.y265{bottom:408.553717px;}
.y52{bottom:408.908932px;}
.y14d{bottom:411.317873px;}
.y28b{bottom:411.515618px;}
.yeb{bottom:411.908197px;}
.yb2{bottom:411.908932px;}
.yfe{bottom:414.711908px;}
.y1f0{bottom:416.173823px;}
.y10b{bottom:417.909667px;}
.y227{bottom:419.249992px;}
.y7b{bottom:420.908932px;}
.y243{bottom:423.512693px;}
.y13d{bottom:423.515617px;}
.yc2{bottom:424.105957px;}
.y1fc{bottom:424.107428px;}
.y163{bottom:428.430172px;}
.y173{bottom:429.316402px;}
.y126{bottom:429.317873px;}
.y18d{bottom:429.908197px;}
.y1c7{bottom:432.041017px;}
.y51{bottom:432.711908px;}
.y277{bottom:434.455073px;}
.y96{bottom:435.711908px;}
.yfd{bottom:438.514163px;}
.y1ef{bottom:439.974607px;}
.y10a{bottom:441.711908px;}
.y226{bottom:443.056642px;}
.y7a{bottom:444.711908px;}
.y242{bottom:447.316402px;}
.y13c{bottom:447.317873px;}
.ydc{bottom:447.908197px;}
.yc1{bottom:447.908932px;}
.y1fb{bottom:447.911137px;}
.y28{bottom:448.382817px;}
.y264{bottom:449.950193px;}
.y37{bottom:450.102907px;}
.y162{bottom:452.235353px;}
.y125{bottom:453.120113px;}
.y18c{bottom:453.711908px;}
.y1c6{bottom:455.841803px;}
.y50{bottom:456.514898px;}
.y295{bottom:457.236323px;}
.y95{bottom:459.514898px;}
.yea{bottom:459.515617px;}
.y1b4{bottom:462.612303px;}
.y1ee{bottom:463.775392px;}
.y109{bottom:465.515617px;}
.y225{bottom:466.860353px;}
.y79{bottom:468.514898px;}
.y13b{bottom:471.120113px;}
.y241{bottom:471.123052px;}
.yc0{bottom:471.711908px;}
.y27{bottom:471.856197px;}
.y7{bottom:472.759455px;}
.y276{bottom:475.851563px;}
.y14c{bottom:476.923823px;}
.y18b{bottom:477.515617px;}
.y1c5{bottom:479.645512px;}
.y4f{bottom:480.317873px;}
.y251{bottom:482.923823px;}
.y28a{bottom:483.117188px;}
.y1bb{bottom:483.316402px;}
.y94{bottom:483.317873px;}
.yfc{bottom:486.120113px;}
.y294{bottom:487.042973px;}
.y2a6{bottom:487.230473px;}
.y108{bottom:489.319342px;}
.y224{bottom:490.661137px;}
.y36{bottom:491.905882px;}
.y78{bottom:492.317873px;}
.y161{bottom:494.036137px;}
.y124{bottom:494.923822px;}
.y1e6{bottom:495.512692px;}
.ybf{bottom:495.514898px;}
.ydb{bottom:495.515618px;}
.y26{bottom:495.654052px;}
.y14b{bottom:500.727533px;}
.y18a{bottom:501.316402px;}
.y1c4{bottom:503.449222px;}
.y4e{bottom:504.120848px;}
.y1ed{bottom:506.250003px;}
.ye9{bottom:507.120113px;}
.y93{bottom:507.120848px;}
.yfb{bottom:509.923822px;}
.y19a{bottom:510.216798px;}
.y293{bottom:510.843742px;}
.y289{bottom:512.923822px;}
.y107{bottom:513.121582px;}
.y35{bottom:515.708858px;}
.y275{bottom:517.248052px;}
.y240{bottom:518.724608px;}
.y123{bottom:518.727533px;}
.y1e5{bottom:519.316402px;}
.ybe{bottom:519.317873px;}
.y6{bottom:520.365420px;}
.y25{bottom:520.852298px;}
.y14a{bottom:524.529787px;}
.y189{bottom:525.120113px;}
.y1c3{bottom:527.252933px;}
.y216{bottom:527.528313px;}
.y4d{bottom:527.923822px;}
.y2a5{bottom:528.632812px;}
.y92{bottom:530.923822px;}
.y1b3{bottom:531.216802px;}
.y223{bottom:532.461908px;}
.y263{bottom:532.743158px;}
.y77{bottom:534.120848px;}
.y292{bottom:534.644528px;}
.y160{bottom:535.841302px;}
.y288{bottom:536.730473px;}
.y122{bottom:542.529787px;}
.y172{bottom:542.531242px;}
.yda{bottom:543.120113px;}
.ybd{bottom:543.120848px;}
.y1e4{bottom:543.123052px;}
.y24{bottom:546.050543px;}
.y4c{bottom:551.726813px;}
.y91{bottom:554.726813px;}
.ye8{bottom:554.727533px;}
.y1b2{bottom:555.023438px;}
.y222{bottom:556.265618px;}
.y34{bottom:557.511848px;}
.yfa{bottom:557.529787px;}
.y76{bottom:557.923822px;}
.y274{bottom:558.644527px;}
.y15f{bottom:559.642088px;}
.y13a{bottom:560.529787px;}
.y121{bottom:566.332027px;}
.y23f{bottom:566.334967px;}
.y106{bottom:566.727533px;}
.ybc{bottom:566.923822px;}
.y5{bottom:567.971370px;}
.y2a4{bottom:570.023438px;}
.y23{bottom:571.248772px;}
.y215{bottom:572.332027px;}
.y188{bottom:572.727533px;}
.y262{bottom:574.139648px;}
.yb1{bottom:578.529787px;}
.y1ba{bottom:578.531242px;}
.y199{bottom:578.824223px;}
.y221{bottom:580.072268px;}
.yf9{bottom:581.332027px;}
.y1a3{bottom:581.625003px;}
.y75{bottom:581.726813px;}
.y15e{bottom:583.447268px;}
.y139{bottom:584.332027px;}
.y120{bottom:590.135738px;}
.y1e3{bottom:590.724608px;}
.ybb{bottom:590.726813px;}
.yd9{bottom:590.727533px;}
.y214{bottom:596.132812px;}
.y22{bottom:596.447018px;}
.y1c2{bottom:597.492183px;}
.y33{bottom:599.314822px;}
.y4b{bottom:599.332763px;}
.y273{bottom:600.041018px;}
.ye7{bottom:602.332027px;}
.y90{bottom:602.332763px;}
.y250{bottom:602.334967px;}
.y198{bottom:602.630857px;}
.y220{bottom:603.873052px;}
.yf8{bottom:605.135738px;}
.y74{bottom:605.529787px;}
.y15d{bottom:607.248052px;}
.y138{bottom:608.135738px;}
.y287{bottom:608.332027px;}
.y23e{bottom:613.936522px;}
.y149{bottom:613.939448px;}
.yd8{bottom:614.529787px;}
.y1e2{bottom:614.531242px;}
.y261{bottom:615.536137px;}
.y213{bottom:619.939448px;}
.y187{bottom:620.332027px;}
.y21{bottom:621.645263px;}
.y4a{bottom:623.135738px;}
.y8f{bottom:626.135738px;}
.y197{bottom:626.431642px;}
.y21f{bottom:627.673822px;}
.yf7{bottom:628.937992px;}
.y1ce{bottom:629.232423px;}
.y73{bottom:629.332763px;}
.y15c{bottom:631.053218px;}
.y11f{bottom:631.939448px;}
.yb0{bottom:635.135737px;}
.y23d{bottom:637.740233px;}
.y148{bottom:637.741702px;}
.y286{bottom:638.132813px;}
.yd7{bottom:638.332027px;}
.yba{bottom:638.332763px;}
.y1fa{bottom:638.334967px;}
.y32{bottom:641.117798px;}
.y27e{bottom:641.437492px;}
.y212{bottom:643.740233px;}
.y186{bottom:644.135738px;}
.y20{bottom:646.843507px;}
.y49{bottom:646.938728px;}
.y24f{bottom:649.936522px;}
.y8e{bottom:649.938728px;}
.ye6{bottom:649.939448px;}
.y196{bottom:650.235352px;}
.y21e{bottom:651.480473px;}
.yf6{bottom:652.741702px;}
.y2a3{bottom:652.816402px;}
.y72{bottom:653.135738px;}
.y171{bottom:655.740233px;}
.y11e{bottom:655.741702px;}
.y147{bottom:661.543942px;}
.y23c{bottom:661.546867px;}
.yb9{bottom:662.135738px;}
.y211{bottom:667.546867px;}
.y185{bottom:667.939448px;}
.y48{bottom:670.741702px;}
.y1f{bottom:672.041753px;}
.y15b{bottom:672.854002px;}
.y1b9{bottom:673.740233px;}
.y8d{bottom:673.741702px;}
.y195{bottom:674.036137px;}
.yf5{bottom:676.543942px;}
.y71{bottom:676.938728px;}
.y11d{bottom:679.543942px;}
.y272{bottom:682.833982px;}
.y31{bottom:682.920773px;}
.y4{bottom:683.487123px;}
.y146{bottom:685.347652px;}
.y1e1{bottom:685.936522px;}
.yb8{bottom:685.938728px;}
.yd6{bottom:685.939448px;}
.y1ec{bottom:688.737303px;}
.y210{bottom:691.347652px;}
.y184{bottom:691.740233px;}
.y21d{bottom:692.115228px;}
.y2a2{bottom:694.218742px;}
.y47{bottom:694.544678px;}
.y260{bottom:694.874992px;}
.y15a{bottom:696.659182px;}
.y1e{bottom:697.239998px;}
.ye5{bottom:697.543942px;}
.y8c{bottom:697.544678px;}
.y24e{bottom:697.546867px;}
.y194{bottom:697.839848px;}
.y70{bottom:700.741702px;}
.y11c{bottom:703.347652px;}
.y285{bottom:703.535152px;}
.y23b{bottom:709.148438px;}
.y1e0{bottom:709.740233px;}
.yaf{bottom:709.741702px;}
.y20f{bottom:715.151363px;}
.y183{bottom:715.543942px;}
.y46{bottom:718.347652px;}
.y159{bottom:720.459968px;}
.y8b{bottom:721.347652px;}
.y193{bottom:721.640618px;}
.y1d{bottom:722.438228px;}
.y271{bottom:724.230473px;}
.y6f{bottom:724.544678px;}
.y30{bottom:724.723747px;}
.y11b{bottom:727.151363px;}
.yf4{bottom:730.151362px;}
.y23a{bottom:732.955072px;}
.yf1{bottom:733.543942px;}
.yae{bottom:733.544678px;}
.y1df{bottom:733.546867px;}
.y2a1{bottom:735.609367px;}
.y25f{bottom:736.271482px;}
.y20e{bottom:738.952148px;}
.y182{bottom:739.347652px;}
.y1a2{bottom:740.311518px;}
.y158{bottom:744.265133px;}
.y284{bottom:744.925777px;}
.y24d{bottom:745.148438px;}
.y8a{bottom:745.150628px;}
.ye4{bottom:745.151363px;}
.y192{bottom:745.447268px;}
.y1c{bottom:747.636292px;}
.y6e{bottom:748.347652px;}
.y145{bottom:750.953618px;}
.y170{bottom:750.955072px;}
.y3{bottom:754.896063px;}
.y239{bottom:756.758783px;}
.yad{bottom:757.347652px;}
.y20d{bottom:762.755858px;}
.y181{bottom:763.151363px;}
.y270{bottom:765.626948px;}
.y45{bottom:765.953618px;}
.y2f{bottom:766.526738px;}
.y157{bottom:768.065918px;}
.y89{bottom:768.953618px;}
.y179{bottom:768.955072px;}
.y1b1{bottom:769.248052px;}
.y1b{bottom:772.834538px;}
.y144{bottom:774.755858px;}
.y25e{bottom:777.667973px;}
.yf3{bottom:777.953617px;}
.y238{bottom:780.559568px;}
.y1de{bottom:781.148438px;}
.yac{bottom:781.150628px;}
.yd5{bottom:781.151363px;}
.y283{bottom:786.328118px;}
.y44{bottom:789.756593px;}
.y156{bottom:791.871098px;}
.ye3{bottom:792.755858px;}
.y88{bottom:792.756593px;}
.y24c{bottom:792.758783px;}
.y1b0{bottom:793.054688px;}
.y6d{bottom:795.953618px;}
.y1a{bottom:798.032783px;}
.y143{bottom:798.559568px;}
.y237{bottom:804.360352px;}
.yab{bottom:804.953618px;}
.y1dd{bottom:804.955072px;}
.y26f{bottom:807.023438px;}
.y2e{bottom:808.329713px;}
.y20c{bottom:810.363277px;}
.y180{bottom:810.755858px;}
.y191{bottom:811.722648px;}
.y43{bottom:813.559568px;}
.y11{bottom:814.871527px;}
.y155{bottom:815.671867px;}
.ye2{bottom:816.559568px;}
.y1af{bottom:816.855473px;}
.y2a0{bottom:818.402348px;}
.y6c{bottom:819.756593px;}
.y19{bottom:823.231013px;}
.y282{bottom:827.718742px;}
.yd4{bottom:828.755858px;}
.yaa{bottom:828.756593px;}
.y1dc{bottom:828.758783px;}
.y2{bottom:829.804140px;}
.y20b{bottom:834.164062px;}
.y17f{bottom:834.559568px;}
.y42{bottom:837.362543px;}
.y10{bottom:838.674503px;}
.y87{bottom:840.362543px;}
.ye1{bottom:840.363277px;}
.y6b{bottom:843.559568px;}
.y236{bottom:846.164062px;}
.y27d{bottom:848.419928px;}
.y18{bottom:848.429257px;}
.y2d{bottom:850.132687px;}
.yb7{bottom:852.559568px;}
.y25d{bottom:857.015618px;}
.y20a{bottom:857.970698px;}
.y24b{bottom:858.360352px;}
.y17e{bottom:858.363277px;}
.y29f{bottom:859.804688px;}
.y41{bottom:861.165533px;}
.y1ae{bottom:863.293938px;}
.y16f{bottom:864.164062px;}
.y86{bottom:864.165532px;}
.y6a{bottom:867.362543px;}
.y235{bottom:869.970697px;}
.y17{bottom:873.627502px;}
.y1db{bottom:876.360352px;}
.ya9{bottom:876.362543px;}
.yd3{bottom:876.363277px;}
.y209{bottom:881.771483px;}
.y17d{bottom:882.164062px;}
.y137{bottom:882.165532px;}
.y1cd{bottom:883.130853px;}
.y40{bottom:884.968507px;}
.yf{bottom:886.280453px;}
.ye0{bottom:887.967772px;}
.y85{bottom:887.968507px;}
.y26e{bottom:889.816402px;}
.y69{bottom:891.165532px;}
.y2c{bottom:891.935663px;}
.y1{bottom:893.980775px;}
.y154{bottom:894.146478px;}
.y25c{bottom:898.412107px;}
.y16{bottom:898.825748px;}
.y1da{bottom:900.164062px;}
.ya8{bottom:900.165532px;}
.y29e{bottom:901.195312px;}
.y1c1{bottom:902.964843px;}
.y136{bottom:905.967772px;}
.y24a{bottom:905.970697px;}
.y3f{bottom:908.771483px;}
.ye{bottom:910.083443px;}
.y281{bottom:910.511723px;}
.y84{bottom:911.771483px;}
.y68{bottom:914.968507px;}
.yd2{bottom:923.967772px;}
.ya7{bottom:923.968507px;}
.y1d9{bottom:923.970697px;}
.y15{bottom:924.023993px;}
.y135{bottom:929.771483px;}
.y26d{bottom:931.212892px;}
.y3e{bottom:932.574457px;}
.y2b{bottom:933.738652px;}
.ydf{bottom:935.575192px;}
.y208{bottom:938.375978px;}
.y67{bottom:938.771483px;}
.y25b{bottom:939.808598px;}
.ya6{bottom:947.771483px;}
.y14{bottom:949.222223px;}
.y234{bottom:953.572267px;}
.y134{bottom:953.575192px;}
.y3d{bottom:956.377448px;}
.yd{bottom:957.689392px;}
.y83{bottom:959.377448px;}
.y1b8{bottom:959.378902px;}
.y66{bottom:962.574457px;}
.y1d8{bottom:971.572267px;}
.ya5{bottom:971.574457px;}
.yd1{bottom:971.575192px;}
.y26c{bottom:972.609367px;}
.y21c{bottom:974.373048px;}
.y133{bottom:977.377448px;}
.y178{bottom:977.378902px;}
.y3c{bottom:980.180423px;}
.y25a{bottom:981.205073px;}
.yc{bottom:981.492368px;}
.y1b7{bottom:983.179688px;}
.y82{bottom:983.180423px;}
.y29d{bottom:983.988277px;}
.y207{bottom:989.182616px;}
.ya4{bottom:995.377442px;}
.y1c0{bottom:995.378905px;}
.y11a{bottom:1001.179688px;}
.y233{bottom:1001.182617px;}
.y13{bottom:1002.494567px;}
.y2a{bottom:1004.478149px;}
.yb{bottom:1005.295349px;}
.y81{bottom:1006.983399px;}
.y65{bottom:1010.180419px;}
.y27c{bottom:1014.005859px;}
.yde{bottom:1015.983398px;}
.yd0{bottom:1019.179688px;}
.ya3{bottom:1019.180419px;}
.y1eb{bottom:1019.182617px;}
.y259{bottom:1022.601562px;}
.y119{bottom:1024.983399px;}
.y29c{bottom:1025.390625px;}
.y80{bottom:1030.786377px;}
.y64{bottom:1033.983399px;}
.y3b{bottom:1036.786376px;}
.y61{bottom:1042.983399px;}
.y1a1{bottom:1045.784180px;}
.y232{bottom:1048.784179px;}
.y118{bottom:1048.787109px;}
.y7f{bottom:1054.589355px;}
.y26b{bottom:1055.402343px;}
.y63{bottom:1057.786377px;}
.y1b6{bottom:1063.587891px;}
.y258{bottom:1063.998046px;}
.y1d7{bottom:1066.784179px;}
.y60{bottom:1066.786377px;}
.ycf{bottom:1066.787109px;}
.y17c{bottom:1072.587891px;}
.y117{bottom:1072.589355px;}
.y62{bottom:1081.589355px;}
.y7e{bottom:1087.392335px;}
.y177{bottom:1090.587891px;}
.y5f{bottom:1090.589355px;}
.y190{bottom:1093.388672px;}
.y17b{bottom:1096.391601px;}
.y26a{bottom:1096.798828px;}
.y1ad{bottom:1097.358398px;}
.yce{bottom:1114.391601px;}
.y5e{bottom:1114.392335px;}
.y1d6{bottom:1114.394530px;}
.y5d{bottom:1138.195312px;}
.y153{bottom:1140.996093px;}
.hf{height:26.208984px;}
.h11{height:31.020993px;}
.hd{height:32.273438px;}
.h13{height:41.660155px;}
.h10{height:43.681640px;}
.h7{height:48.049806px;}
.h14{height:49.992188px;}
.h15{height:50.027344px;}
.h12{height:52.792967px;}
.he{height:53.789061px;}
.ha{height:58.620119px;}
.h5{height:63.351563px;}
.h9{height:63.949219px;}
.h4{height:64.546875px;}
.hc{height:65.332620px;}
.hb{height:66.049807px;}
.h8{height:74.607419px;}
.h1{height:80.683594px;}
.h3{height:96.820313px;}
.h6{height:107.625000px;}
.h2{height:127.898438px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x13{left:127.559052px;}
.x30{left:131.065888px;}
.x2d{left:132.076630px;}
.x2e{left:133.386200px;}
.x16{left:137.684052px;}
.x2f{left:139.380341px;}
.xe{left:143.663383px;}
.x14{left:154.559052px;}
.x6{left:163.217663px;}
.x25{left:166.179252px;}
.x5{left:168.429579px;}
.x3{left:180.323378px;}
.x15{left:181.559052px;}
.x7{left:207.013558px;}
.x28{left:238.682053px;}
.x11{left:246.820614px;}
.x2b{left:252.156939px;}
.x1b{left:263.080474px;}
.x4{left:274.797015px;}
.x19{left:282.979838px;}
.x1d{left:285.271758px;}
.x2{left:287.064349px;}
.x8{left:288.646380px;}
.x10{left:289.807910px;}
.x29{left:294.873740px;}
.x1a{left:296.184031px;}
.x27{left:300.587815px;}
.x9{left:310.873919px;}
.xa{left:314.521380px;}
.x1e{left:316.036017px;}
.x21{left:318.664276px;}
.x24{left:321.852829px;}
.x2c{left:338.168300px;}
.x26{left:346.284027px;}
.x23{left:349.439506px;}
.x1c{left:353.806722px;}
.x1f{left:371.004800px;}
.x1{left:375.294447px;}
.x22{left:382.330748px;}
.x2a{left:383.374017px;}
.x20{left:386.705243px;}
.xd{left:554.437805px;}
.xc{left:555.773742px;}
.xf{left:659.950508px;}
.xb{left:687.082336px;}
.x17{left:766.573407px;}
.x18{left:767.798037px;}
.x12{left:775.743417px;}
@media print{
.v3{vertical-align:-24.285938pt;}
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000010pt;}
.ls3{letter-spacing:13.328125pt;}
.ls1{letter-spacing:15.987519pt;}
.ls9{letter-spacing:15.999998pt;}
.ls6{letter-spacing:16.000000pt;}
.ls2{letter-spacing:19.987499pt;}
.ls7{letter-spacing:23.987519pt;}
.ls4{letter-spacing:28.000000pt;}
.lsa{letter-spacing:57.343750pt;}
.ls8{letter-spacing:64.000000pt;}
.lsb{letter-spacing:68.000000pt;}
.wsd{word-spacing:-37.333332pt;}
.wsad{word-spacing:-36.093750pt;}
.ws6{word-spacing:-32.000081pt;}
.ws1{word-spacing:-32.000064pt;}
.ws5{word-spacing:-32.000060pt;}
.ws4{word-spacing:-32.000040pt;}
.ws3b{word-spacing:-32.000000pt;}
.ws57{word-spacing:-29.333334pt;}
.wsa3{word-spacing:-19.200001pt;}
.ws17{word-spacing:-18.695577pt;}
.ws8{word-spacing:-16.000130pt;}
.ws9{word-spacing:-16.000090pt;}
.ws13{word-spacing:-16.000030pt;}
.ws19{word-spacing:-16.000020pt;}
.wsc0{word-spacing:-16.000012pt;}
.wsa0{word-spacing:-16.000011pt;}
.wsb{word-spacing:-16.000010pt;}
.ws1b{word-spacing:-16.000003pt;}
.wse{word-spacing:-16.000000pt;}
.ws5d{word-spacing:-15.999998pt;}
.wsc1{word-spacing:-15.999990pt;}
.ws70{word-spacing:-15.999982pt;}
.ws18{word-spacing:-15.999980pt;}
.ws63{word-spacing:-15.999972pt;}
.wsa{word-spacing:-15.999970pt;}
.ws16{word-spacing:-14.687501pt;}
.ws90{word-spacing:-13.354760pt;}
.ws86{word-spacing:-13.353479pt;}
.ws99{word-spacing:-13.350116pt;}
.ws97{word-spacing:-13.350020pt;}
.ws94{word-spacing:-13.349048pt;}
.ws8f{word-spacing:-13.349036pt;}
.ws93{word-spacing:-13.349023pt;}
.ws7e{word-spacing:-13.349011pt;}
.ws7f{word-spacing:-13.349004pt;}
.ws85{word-spacing:-13.348992pt;}
.ws88{word-spacing:-13.348984pt;}
.ws71{word-spacing:-13.348974pt;}
.ws84{word-spacing:-13.348961pt;}
.ws92{word-spacing:-13.348957pt;}
.ws80{word-spacing:-13.348955pt;}
.wsa6{word-spacing:-13.348946pt;}
.ws9a{word-spacing:-13.348943pt;}
.ws98{word-spacing:-13.348936pt;}
.ws72{word-spacing:-13.347773pt;}
.ws81{word-spacing:-13.347771pt;}
.ws89{word-spacing:-13.347761pt;}
.wsa4{word-spacing:-13.347682pt;}
.ws83{word-spacing:-13.346627pt;}
.ws4c{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-12.000030pt;}
.ws91{word-spacing:-12.000020pt;}
.ws32{word-spacing:-12.000020pt;}
.ws9b{word-spacing:-12.000011pt;}
.ws44{word-spacing:-12.000010pt;}
.ws46{word-spacing:-12.000002pt;}
.ws31{word-spacing:-12.000000pt;}
.ws6c{word-spacing:-11.999999pt;}
.ws5c{word-spacing:-11.999998pt;}
.ws4f{word-spacing:-11.999990pt;}
.ws67{word-spacing:-11.866271pt;}
.ws68{word-spacing:-11.866269pt;}
.ws3c{word-spacing:-9.600000pt;}
.wsca{word-spacing:-8.000030pt;}
.wsd4{word-spacing:-8.000020pt;}
.wsa7{word-spacing:-8.000019pt;}
.ws30{word-spacing:-8.000010pt;}
.ws6b{word-spacing:-8.000000pt;}
.ws47{word-spacing:-7.999980pt;}
.wsa1{word-spacing:-7.999971pt;}
.wsd3{word-spacing:-4.000030pt;}
.ws9f{word-spacing:-4.000020pt;}
.ws87{word-spacing:-4.000010pt;}
.ws8d{word-spacing:-4.000002pt;}
.ws8e{word-spacing:-4.000001pt;}
.ws2f{word-spacing:-4.000000pt;}
.ws34{word-spacing:-3.999998pt;}
.ws96{word-spacing:-3.999980pt;}
.ws66{word-spacing:-1.188049pt;}
.ws15{word-spacing:-0.490240pt;}
.ws10{word-spacing:-0.333992pt;}
.ws7d{word-spacing:-0.020221pt;}
.ws3e{word-spacing:-0.015757pt;}
.ws40{word-spacing:-0.015718pt;}
.ws75{word-spacing:-0.015700pt;}
.ws49{word-spacing:-0.015698pt;}
.ws5b{word-spacing:-0.015656pt;}
.wsa5{word-spacing:-0.015649pt;}
.ws56{word-spacing:-0.015627pt;}
.ws3d{word-spacing:-0.015626pt;}
.ws4a{word-spacing:-0.015624pt;}
.ws95{word-spacing:-0.014459pt;}
.ws3f{word-spacing:-0.014438pt;}
.ws48{word-spacing:-0.014427pt;}
.wsaa{word-spacing:-0.014425pt;}
.ws4b{word-spacing:-0.014424pt;}
.ws6f{word-spacing:-0.014422pt;}
.ws62{word-spacing:-0.014418pt;}
.ws3{word-spacing:-0.000085pt;}
.ws2{word-spacing:-0.000067pt;}
.ws0{word-spacing:-0.000055pt;}
.ws36{word-spacing:-0.000030pt;}
.ws14{word-spacing:-0.000020pt;}
.ws12{word-spacing:-0.000012pt;}
.ws7{word-spacing:-0.000010pt;}
.ws65{word-spacing:-0.000002pt;}
.ws2d{word-spacing:-0.000001pt;}
.wsc{word-spacing:0.000000pt;}
.wsf{word-spacing:0.000002pt;}
.ws20{word-spacing:0.000010pt;}
.ws11{word-spacing:0.000020pt;}
.ws9d{word-spacing:0.000030pt;}
.ws45{word-spacing:3.999970pt;}
.ws23{word-spacing:3.999980pt;}
.ws69{word-spacing:3.999989pt;}
.ws1e{word-spacing:3.999990pt;}
.ws42{word-spacing:3.999997pt;}
.ws25{word-spacing:4.000000pt;}
.ws4e{word-spacing:4.000002pt;}
.ws54{word-spacing:4.000009pt;}
.ws5e{word-spacing:4.000020pt;}
.ws55{word-spacing:5.328125pt;}
.ws7a{word-spacing:6.387499pt;}
.ws3a{word-spacing:7.999970pt;}
.ws28{word-spacing:7.999980pt;}
.ws76{word-spacing:7.999989pt;}
.ws27{word-spacing:7.999990pt;}
.ws52{word-spacing:7.999998pt;}
.ws22{word-spacing:8.000000pt;}
.ws5a{word-spacing:8.000001pt;}
.wsc2{word-spacing:8.000002pt;}
.ws43{word-spacing:8.000010pt;}
.ws37{word-spacing:8.000020pt;}
.ws50{word-spacing:10.387499pt;}
.ws35{word-spacing:11.999970pt;}
.ws38{word-spacing:11.999980pt;}
.ws26{word-spacing:11.999990pt;}
.ws6a{word-spacing:11.999999pt;}
.ws24{word-spacing:12.000000pt;}
.ws64{word-spacing:12.000009pt;}
.ws61{word-spacing:12.000020pt;}
.ws51{word-spacing:12.000030pt;}
.ws74{word-spacing:14.387499pt;}
.ws2c{word-spacing:15.999980pt;}
.wsab{word-spacing:15.999988pt;}
.ws33{word-spacing:15.999989pt;}
.ws8a{word-spacing:15.999990pt;}
.ws82{word-spacing:15.999998pt;}
.ws1c{word-spacing:16.000000pt;}
.ws7c{word-spacing:16.000001pt;}
.ws9c{word-spacing:16.000009pt;}
.ws58{word-spacing:16.000010pt;}
.ws2e{word-spacing:16.000020pt;}
.ws59{word-spacing:19.999980pt;}
.ws1d{word-spacing:19.999990pt;}
.ws6d{word-spacing:19.999998pt;}
.ws1f{word-spacing:20.000000pt;}
.ws29{word-spacing:20.000010pt;}
.wsa2{word-spacing:20.000030pt;}
.ws39{word-spacing:23.999980pt;}
.ws53{word-spacing:23.999990pt;}
.ws8c{word-spacing:23.999998pt;}
.ws21{word-spacing:24.000000pt;}
.ws7b{word-spacing:27.999969pt;}
.ws60{word-spacing:27.999980pt;}
.ws2a{word-spacing:27.999989pt;}
.ws2b{word-spacing:28.000000pt;}
.ws9e{word-spacing:31.999979pt;}
.wscf{word-spacing:31.999980pt;}
.ws78{word-spacing:31.999990pt;}
.ws41{word-spacing:32.000000pt;}
.wsc4{word-spacing:32.000002pt;}
.ws79{word-spacing:32.000009pt;}
.ws73{word-spacing:32.000020pt;}
.wsb1{word-spacing:35.999970pt;}
.wsce{word-spacing:35.999980pt;}
.ws8b{word-spacing:35.999990pt;}
.ws5f{word-spacing:36.000000pt;}
.wsa9{word-spacing:36.000020pt;}
.wsb6{word-spacing:39.999990pt;}
.ws77{word-spacing:40.000000pt;}
.wsa8{word-spacing:43.999980pt;}
.ws4d{word-spacing:43.999989pt;}
.wscd{word-spacing:51.999980pt;}
.wsb2{word-spacing:52.000000pt;}
.wsb0{word-spacing:55.999999pt;}
.wsb5{word-spacing:60.000000pt;}
.wsd6{word-spacing:84.000007pt;}
.wsd5{word-spacing:88.000000pt;}
.wsbd{word-spacing:164.000000pt;}
.wsb3{word-spacing:176.000030pt;}
.wsd2{word-spacing:180.000000pt;}
.wscc{word-spacing:180.000030pt;}
.wsb4{word-spacing:191.999990pt;}
.wscb{word-spacing:200.000000pt;}
.wsd0{word-spacing:216.000001pt;}
.wsd1{word-spacing:227.999990pt;}
.wsac{word-spacing:275.999980pt;}
.wsbe{word-spacing:315.999980pt;}
.wsbb{word-spacing:316.000000pt;}
.wsbc{word-spacing:328.000000pt;}
.wsba{word-spacing:331.999991pt;}
.wsb9{word-spacing:371.999980pt;}
.wsb8{word-spacing:388.000009pt;}
.wsc9{word-spacing:503.999980pt;}
.wsaf{word-spacing:512.000000pt;}
.wsc8{word-spacing:524.000010pt;}
.wsae{word-spacing:528.000000pt;}
.wsb7{word-spacing:551.999990pt;}
.wsc6{word-spacing:623.999980pt;}
.wsbf{word-spacing:815.999980pt;}
.wsc7{word-spacing:1807.999999pt;}
.wsc3{word-spacing:1891.999990pt;}
.wsc5{word-spacing:1892.000019pt;}
.ws1a{word-spacing:2064.000010pt;}
._37{margin-left:-16.000000pt;}
._2{margin-left:-14.187289pt;}
._0{margin-left:-9.500000pt;}
._27{margin-left:-8.250000pt;}
._c{margin-left:-6.406250pt;}
._4{margin-left:-4.750000pt;}
._3{margin-left:-3.374999pt;}
._1{margin-left:-2.312406pt;}
._5{margin-left:-1.156250pt;}
._a{width:2.134759pt;}
._8{width:5.728511pt;}
._7{width:6.666010pt;}
._6{width:9.509760pt;}
._d{width:11.447260pt;}
._b{width:14.384659pt;}
._1e{width:15.509847pt;}
._e{width:16.490239pt;}
._1c{width:20.000002pt;}
._28{width:22.143349pt;}
._1f{width:24.000000pt;}
._2d{width:26.448309pt;}
._21{width:28.000001pt;}
._9{width:32.000002pt;}
._20{width:36.000009pt;}
._1d{width:40.000000pt;}
._26{width:44.000000pt;}
._23{width:48.000000pt;}
._2b{width:52.000001pt;}
._22{width:56.000002pt;}
._2c{width:60.000002pt;}
._25{width:64.000010pt;}
._31{width:68.000021pt;}
._2a{width:71.999970pt;}
._29{width:74.687500pt;}
._33{width:75.999991pt;}
._24{width:79.999989pt;}
._2e{width:96.000000pt;}
._3a{width:120.000000pt;}
._35{width:184.000000pt;}
._39{width:191.999988pt;}
._32{width:212.000002pt;}
._38{width:248.000017pt;}
._2f{width:296.000002pt;}
._36{width:352.000002pt;}
._19{width:383.937450pt;}
._1b{width:528.000209pt;}
._30{width:548.000000pt;}
._34{width:572.000020pt;}
._11{width:607.937394pt;}
._f{width:784.000078pt;}
._12{width:799.937414pt;}
._18{width:815.937406pt;}
._16{width:848.812386pt;}
._1a{width:880.874889pt;}
._10{width:895.937425pt;}
._13{width:1023.937257pt;}
._14{width:1055.937424pt;}
._15{width:1087.937394pt;}
._17{width:1119.874831pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:38.400002pt;}
.fs8{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666664pt;}
.fs0{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:53.304039pt;}
.y12{bottom:53.304519pt;}
.y29{bottom:53.304692pt;}
.y176{bottom:53.305332pt;}
.y105{bottom:98.972649pt;}
.ycc{bottom:99.031243pt;}
.y1ea{bottom:100.625003pt;}
.y116{bottom:101.576820pt;}
.y205{bottom:101.924473pt;}
.y9d{bottom:104.090814pt;}
.y132{bottom:104.090820pt;}
.y29b{bottom:106.536460pt;}
.y1a0{bottom:108.979167pt;}
.y5c{bottom:109.576167pt;}
.y9f{bottom:114.363283pt;}
.y104{bottom:119.364260pt;}
.yb4{bottom:119.422854pt;}
.y1d5{bottom:119.424147pt;}
.y1ac{bottom:119.557287pt;}
.y115{bottom:122.734380pt;}
.y204{bottom:123.083327pt;}
.y280{bottom:128.604167pt;}
.y231{bottom:129.088540pt;}
.yb6{bottom:129.695310pt;}
.y19f{bottom:130.138020pt;}
.y5b{bottom:130.734380pt;}
.y291{bottom:131.395833pt;}
.y16e{bottom:132.088540pt;}
.y131{bottom:132.874993pt;}
.y9e{bottom:134.754880pt;}
.ycd{bottom:135.230139pt;}
.y142{bottom:138.033860pt;}
.y2ac{bottom:138.718753pt;}
.y1ab{bottom:140.718753pt;}
.y29a{bottom:143.333327pt;}
.y114{bottom:143.893233pt;}
.yf2{bottom:144.242193pt;}
.y203{bottom:144.244793pt;}
.ya1{bottom:145.027350pt;}
.yb5{bottom:150.086920pt;}
.y230{bottom:150.244793pt;}
.y19e{bottom:151.296873pt;}
.y16d{bottom:153.244793pt;}
.y130{bottom:154.033860pt;}
.yf0{bottom:154.559900pt;}
.y1d2{bottom:154.822913pt;}
.y1f9{bottom:158.346353pt;}
.y141{bottom:159.192713pt;}
.y21b{bottom:159.630207pt;}
.ya{bottom:160.111487pt;}
.y1d4{bottom:160.572910pt;}
.y1aa{bottom:161.874993pt;}
.ycb{bottom:165.401047pt;}
.ya0{bottom:165.418947pt;}
.y290{bottom:168.192713pt;}
.y249{bottom:170.033860pt;}
.y22f{bottom:171.401047pt;}
.y19d{bottom:172.453127pt;}
.y5a{bottom:173.050780pt;}
.y16c{bottom:174.404953pt;}
.y12f{bottom:175.192713pt;}
.y2ab{bottom:175.520833pt;}
.yef{bottom:175.717447pt;}
.y1bf{bottom:175.718753pt;}
.y1d1{bottom:175.979167pt;}
.y103{bottom:178.208327pt;}
.y1f8{bottom:179.505207pt;}
.y299{bottom:180.130207pt;}
.y21a{bottom:180.786460pt;}
.y113{bottom:181.052087pt;}
.y269{bottom:182.236980pt;}
.y1a9{bottom:183.033860pt;}
.y202{bottom:186.557287pt;}
.yca{bottom:186.559900pt;}
.y248{bottom:191.190100pt;}
.y22e{bottom:192.562500pt;}
.y19c{bottom:193.611980pt;}
.y59{bottom:194.208980pt;}
.y16b{bottom:195.561193pt;}
.y175{bottom:196.348953pt;}
.y12e{bottom:196.350260pt;}
.y1be{bottom:196.874993pt;}
.y9c{bottom:196.875647pt;}
.y1d0{bottom:197.140620pt;}
.y1f7{bottom:200.666660pt;}
.y152{bottom:201.507807pt;}
.y219{bottom:201.947913pt;}
.y27b{bottom:202.197913pt;}
.y112{bottom:202.209633pt;}
.y1a8{bottom:204.190100pt;}
.y28f{bottom:204.989580pt;}
.yc9{bottom:207.717447pt;}
.y201{bottom:207.718753pt;}
.y2aa{bottom:212.312500pt;}
.y247{bottom:212.348953pt;}
.y22d{bottom:213.721353pt;}
.y1b5{bottom:213.734376pt;}
.y58{bottom:215.367193pt;}
.y16a{bottom:216.721353pt;}
.y12d{bottom:217.507807pt;}
.y9b{bottom:218.033860pt;}
.y268{bottom:219.033860pt;}
.y1f6{bottom:221.822913pt;}
.y151{bottom:222.666660pt;}
.y218{bottom:223.104167pt;}
.y111{bottom:223.367193pt;}
.y1a7{bottom:225.348953pt;}
.yc8{bottom:228.874993pt;}
.y200{bottom:228.877607pt;}
.y246{bottom:233.510420pt;}
.y22c{bottom:234.877607pt;}
.y57{bottom:236.525393pt;}
.y169{bottom:237.877607pt;}
.y12c{bottom:238.666660pt;}
.y27a{bottom:238.994793pt;}
.yb3{bottom:239.192060pt;}
.yee{bottom:239.192713pt;}
.y1f5{bottom:242.979167pt;}
.y150{bottom:243.825527pt;}
.y110{bottom:244.526047pt;}
.y1a6{bottom:246.505207pt;}
.y9{bottom:247.854656pt;}
.y19b{bottom:248.994790pt;}
.yc7{bottom:250.033860pt;}
.y298{bottom:253.723953pt;}
.y17a{bottom:254.666660pt;}
.y267{bottom:255.830727pt;}
.y257{bottom:256.846347pt;}
.y56{bottom:257.683593pt;}
.y140{bottom:259.825527pt;}
.y28e{bottom:260.187500pt;}
.yed{bottom:260.350260pt;}
.y1e9{bottom:262.838536pt;}
.y1f4{bottom:264.140620pt;}
.y10f{bottom:265.684900pt;}
.y1a5{bottom:267.666660pt;}
.y206{bottom:271.190100pt;}
.yc6{bottom:271.192713pt;}
.y22b{bottom:272.033860pt;}
.y1cf{bottom:273.682296pt;}
.y168{bottom:275.037767pt;}
.y27f{bottom:275.791660pt;}
.y245{bottom:275.822913pt;}
.y12b{bottom:275.825527pt;}
.y256{bottom:278.085934pt;}
.y1cc{bottom:278.244793pt;}
.y28d{bottom:278.583327pt;}
.y13f{bottom:280.983073pt;}
.yec{bottom:281.507807pt;}
.y9a{bottom:281.508460pt;}
.y1e8{bottom:281.510420pt;}
.y102{bottom:283.999993pt;}
.y1f3{bottom:285.299473pt;}
.y217{bottom:285.541670pt;}
.y2a9{bottom:285.906247pt;}
.y10e{bottom:286.842447pt;}
.y3a{bottom:288.616860pt;}
.y297{bottom:290.520833pt;}
.y1ff{bottom:292.348953pt;}
.yc5{bottom:292.350260pt;}
.y22a{bottom:293.192713pt;}
.y167{bottom:296.194007pt;}
.y12a{bottom:296.983073pt;}
.y174{bottom:296.984380pt;}
.y255{bottom:299.312500pt;}
.y1cb{bottom:299.403647pt;}
.y55{bottom:299.999993pt;}
.y13e{bottom:302.140620pt;}
.y99{bottom:302.666660pt;}
.y101{bottom:305.157553pt;}
.y1a4{bottom:308.945310pt;}
.y8{bottom:311.329270pt;}
.y279{bottom:312.588540pt;}
.yc4{bottom:313.507807pt;}
.y1fe{bottom:313.510420pt;}
.y166{bottom:317.354167pt;}
.y129{bottom:318.140620pt;}
.y244{bottom:318.143233pt;}
.y254{bottom:320.481774pt;}
.y1ca{bottom:320.562500pt;}
.y54{bottom:321.158207pt;}
.y2a8{bottom:322.708327pt;}
.y14f{bottom:323.299473pt;}
.y1e7{bottom:323.822913pt;}
.y98{bottom:323.824873pt;}
.y1bd{bottom:323.825527pt;}
.y39{bottom:325.775060pt;}
.y1d3{bottom:326.315110pt;}
.y100{bottom:326.316407pt;}
.y266{bottom:326.361980pt;}
.y296{bottom:327.317713pt;}
.y1f2{bottom:327.611980pt;}
.y10d{bottom:329.158860pt;}
.y229{bottom:330.354167pt;}
.y7d{bottom:331.824873pt;}
.ydd{bottom:334.666660pt;}
.y165{bottom:338.510420pt;}
.y128{bottom:339.299473pt;}
.y28c{bottom:339.302087pt;}
.y18f{bottom:339.825527pt;}
.y253{bottom:341.708327pt;}
.y1c9{bottom:341.718753pt;}
.y53{bottom:342.316407pt;}
.y14e{bottom:344.458327pt;}
.y97{bottom:344.983073pt;}
.y1bc{bottom:344.984380pt;}
.yff{bottom:347.473953pt;}
.y1f1{bottom:348.770833pt;}
.y278{bottom:349.385420pt;}
.y10c{bottom:350.317713pt;}
.y228{bottom:351.510420pt;}
.y7c{bottom:352.983073pt;}
.y1fd{bottom:355.822913pt;}
.yc3{bottom:355.825527pt;}
.y2a7{bottom:359.499993pt;}
.y164{bottom:359.670567pt;}
.y127{bottom:360.458327pt;}
.y18e{bottom:360.984380pt;}
.y252{bottom:362.877601pt;}
.y1c8{bottom:362.877607pt;}
.y38{bottom:362.933273pt;}
.y265{bottom:363.158860pt;}
.y52{bottom:363.474607pt;}
.y14d{bottom:365.615887pt;}
.y28b{bottom:365.791661pt;}
.yeb{bottom:366.140620pt;}
.yb2{bottom:366.141273pt;}
.yfe{bottom:368.632807pt;}
.y1f0{bottom:369.932287pt;}
.y10b{bottom:371.475260pt;}
.y227{bottom:372.666660pt;}
.y7b{bottom:374.141273pt;}
.y243{bottom:376.455727pt;}
.y13d{bottom:376.458327pt;}
.yc2{bottom:376.983073pt;}
.y1fc{bottom:376.984380pt;}
.y163{bottom:380.826820pt;}
.y173{bottom:381.614580pt;}
.y126{bottom:381.615887pt;}
.y18d{bottom:382.140620pt;}
.y1c7{bottom:384.036460pt;}
.y51{bottom:384.632807pt;}
.y277{bottom:386.182287pt;}
.y96{bottom:387.299473pt;}
.yfd{bottom:389.790367pt;}
.y1ef{bottom:391.088540pt;}
.y10a{bottom:392.632807pt;}
.y226{bottom:393.828127pt;}
.y7a{bottom:395.299473pt;}
.y242{bottom:397.614580pt;}
.y13c{bottom:397.615887pt;}
.ydc{bottom:398.140620pt;}
.yc1{bottom:398.141273pt;}
.y1fb{bottom:398.143233pt;}
.y28{bottom:398.562504pt;}
.y264{bottom:399.955727pt;}
.y37{bottom:400.091473pt;}
.y162{bottom:401.986980pt;}
.y125{bottom:402.773433pt;}
.y18c{bottom:403.299473pt;}
.y1c6{bottom:405.192713pt;}
.y50{bottom:405.791020pt;}
.y295{bottom:406.432287pt;}
.y95{bottom:408.457687pt;}
.yea{bottom:408.458327pt;}
.y1b4{bottom:411.210936pt;}
.y1ee{bottom:412.244793pt;}
.y109{bottom:413.791660pt;}
.y225{bottom:414.986980pt;}
.y79{bottom:416.457687pt;}
.y13b{bottom:418.773433pt;}
.y241{bottom:418.776047pt;}
.yc0{bottom:419.299473pt;}
.y27{bottom:419.427731pt;}
.y7{bottom:420.230627pt;}
.y276{bottom:422.979167pt;}
.y14c{bottom:423.932287pt;}
.y18b{bottom:424.458327pt;}
.y1c5{bottom:426.351567pt;}
.y4f{bottom:426.949220pt;}
.y251{bottom:429.265621pt;}
.y28a{bottom:429.437500pt;}
.y1bb{bottom:429.614580pt;}
.y94{bottom:429.615887pt;}
.yfc{bottom:432.106767pt;}
.y294{bottom:432.927087pt;}
.y2a6{bottom:433.093753pt;}
.y108{bottom:434.950527pt;}
.y224{bottom:436.143233pt;}
.y36{bottom:437.249673pt;}
.y78{bottom:437.615887pt;}
.y161{bottom:439.143233pt;}
.y124{bottom:439.932287pt;}
.y1e6{bottom:440.455727pt;}
.ybf{bottom:440.457687pt;}
.ydb{bottom:440.458327pt;}
.y26{bottom:440.581380pt;}
.y14b{bottom:445.091140pt;}
.y18a{bottom:445.614580pt;}
.y1c4{bottom:447.510420pt;}
.y4e{bottom:448.107420pt;}
.y1ed{bottom:450.000003pt;}
.ye9{bottom:450.773433pt;}
.y93{bottom:450.774087pt;}
.yfb{bottom:453.265620pt;}
.y19a{bottom:453.526043pt;}
.y293{bottom:454.083327pt;}
.y289{bottom:455.932287pt;}
.y107{bottom:456.108073pt;}
.y35{bottom:458.407873pt;}
.y275{bottom:459.776047pt;}
.y240{bottom:461.088540pt;}
.y123{bottom:461.091140pt;}
.y1e5{bottom:461.614580pt;}
.ybe{bottom:461.615887pt;}
.y6{bottom:462.547040pt;}
.y25{bottom:462.979820pt;}
.y14a{bottom:466.248700pt;}
.y189{bottom:466.773433pt;}
.y1c3{bottom:468.669273pt;}
.y216{bottom:468.914056pt;}
.y4d{bottom:469.265620pt;}
.y2a5{bottom:469.895833pt;}
.y92{bottom:471.932287pt;}
.y1b3{bottom:472.192713pt;}
.y223{bottom:473.299473pt;}
.y263{bottom:473.549473pt;}
.y77{bottom:474.774087pt;}
.y292{bottom:475.239581pt;}
.y160{bottom:476.303380pt;}
.y288{bottom:477.093754pt;}
.y122{bottom:482.248700pt;}
.y172{bottom:482.249993pt;}
.yda{bottom:482.773433pt;}
.ybd{bottom:482.774087pt;}
.y1e4{bottom:482.776047pt;}
.y24{bottom:485.378260pt;}
.y4c{bottom:490.423833pt;}
.y91{bottom:493.090500pt;}
.ye8{bottom:493.091140pt;}
.y1b2{bottom:493.354167pt;}
.y222{bottom:494.458327pt;}
.y34{bottom:495.566087pt;}
.yfa{bottom:495.582033pt;}
.y76{bottom:495.932287pt;}
.y274{bottom:496.572913pt;}
.y15f{bottom:497.459633pt;}
.y13a{bottom:498.248700pt;}
.y121{bottom:503.406247pt;}
.y23f{bottom:503.408860pt;}
.y106{bottom:503.757808pt;}
.ybc{bottom:503.932287pt;}
.y5{bottom:504.863440pt;}
.y2a4{bottom:506.687500pt;}
.y23{bottom:507.776687pt;}
.y215{bottom:508.739580pt;}
.y188{bottom:509.091140pt;}
.y262{bottom:510.346353pt;}
.yb1{bottom:514.248700pt;}
.y1ba{bottom:514.249993pt;}
.y199{bottom:514.510420pt;}
.y221{bottom:515.619793pt;}
.yf9{bottom:516.739580pt;}
.y1a3{bottom:517.000003pt;}
.y75{bottom:517.090500pt;}
.y15e{bottom:518.619793pt;}
.y139{bottom:519.406247pt;}
.y120{bottom:524.565100pt;}
.y1e3{bottom:525.088540pt;}
.ybb{bottom:525.090500pt;}
.yd9{bottom:525.091140pt;}
.y214{bottom:529.895833pt;}
.y22{bottom:530.175127pt;}
.y1c2{bottom:531.104163pt;}
.y33{bottom:532.724287pt;}
.y4b{bottom:532.740233pt;}
.y273{bottom:533.369793pt;}
.ye7{bottom:535.406247pt;}
.y90{bottom:535.406900pt;}
.y250{bottom:535.408860pt;}
.y198{bottom:535.671873pt;}
.y220{bottom:536.776047pt;}
.yf8{bottom:537.898433pt;}
.y74{bottom:538.248700pt;}
.y15d{bottom:539.776047pt;}
.y138{bottom:540.565100pt;}
.y287{bottom:540.739580pt;}
.y23e{bottom:545.721353pt;}
.y149{bottom:545.723953pt;}
.yd8{bottom:546.248700pt;}
.y1e2{bottom:546.249993pt;}
.y261{bottom:547.143233pt;}
.y213{bottom:551.057287pt;}
.y187{bottom:551.406247pt;}
.y21{bottom:552.573567pt;}
.y4a{bottom:553.898433pt;}
.y8f{bottom:556.565100pt;}
.y197{bottom:556.828127pt;}
.y21f{bottom:557.932287pt;}
.yf7{bottom:559.055993pt;}
.y1ce{bottom:559.317710pt;}
.y73{bottom:559.406900pt;}
.y15c{bottom:560.936193pt;}
.y11f{bottom:561.723953pt;}
.yb0{bottom:564.565099pt;}
.y23d{bottom:566.880207pt;}
.y148{bottom:566.881513pt;}
.y286{bottom:567.229167pt;}
.yd7{bottom:567.406247pt;}
.yba{bottom:567.406900pt;}
.y1fa{bottom:567.408860pt;}
.y32{bottom:569.882487pt;}
.y27e{bottom:570.166660pt;}
.y212{bottom:572.213540pt;}
.y186{bottom:572.565100pt;}
.y20{bottom:574.972007pt;}
.y49{bottom:575.056647pt;}
.y24f{bottom:577.721353pt;}
.y8e{bottom:577.723313pt;}
.ye6{bottom:577.723953pt;}
.y196{bottom:577.986980pt;}
.y21e{bottom:579.093753pt;}
.yf6{bottom:580.214847pt;}
.y2a3{bottom:580.281247pt;}
.y72{bottom:580.565100pt;}
.y171{bottom:582.880207pt;}
.y11e{bottom:582.881513pt;}
.y147{bottom:588.039060pt;}
.y23c{bottom:588.041660pt;}
.yb9{bottom:588.565100pt;}
.y211{bottom:593.374993pt;}
.y185{bottom:593.723953pt;}
.y48{bottom:596.214847pt;}
.y1f{bottom:597.370447pt;}
.y15b{bottom:598.092447pt;}
.y1b9{bottom:598.880207pt;}
.y8d{bottom:598.881513pt;}
.y195{bottom:599.143233pt;}
.yf5{bottom:601.372393pt;}
.y71{bottom:601.723313pt;}
.y11d{bottom:604.039060pt;}
.y272{bottom:606.963540pt;}
.y31{bottom:607.040687pt;}
.y4{bottom:607.544110pt;}
.y146{bottom:609.197913pt;}
.y1e1{bottom:609.721353pt;}
.yb8{bottom:609.723313pt;}
.yd6{bottom:609.723953pt;}
.y1ec{bottom:612.210936pt;}
.y210{bottom:614.531247pt;}
.y184{bottom:614.880207pt;}
.y21d{bottom:615.213536pt;}
.y2a2{bottom:617.083327pt;}
.y47{bottom:617.373047pt;}
.y260{bottom:617.666660pt;}
.y15a{bottom:619.252607pt;}
.y1e{bottom:619.768887pt;}
.ye5{bottom:620.039060pt;}
.y8c{bottom:620.039713pt;}
.y24e{bottom:620.041660pt;}
.y194{bottom:620.302087pt;}
.y70{bottom:622.881513pt;}
.y11c{bottom:625.197913pt;}
.y285{bottom:625.364580pt;}
.y23b{bottom:630.354167pt;}
.y1e0{bottom:630.880207pt;}
.yaf{bottom:630.881513pt;}
.y20f{bottom:635.690100pt;}
.y183{bottom:636.039060pt;}
.y46{bottom:638.531247pt;}
.y159{bottom:640.408860pt;}
.y8b{bottom:641.197913pt;}
.y193{bottom:641.458327pt;}
.y1d{bottom:642.167313pt;}
.y271{bottom:643.760420pt;}
.y6f{bottom:644.039713pt;}
.y30{bottom:644.198887pt;}
.y11b{bottom:646.356767pt;}
.yf4{bottom:649.023433pt;}
.y23a{bottom:651.515620pt;}
.yf1{bottom:652.039060pt;}
.yae{bottom:652.039713pt;}
.y1df{bottom:652.041660pt;}
.y2a1{bottom:653.874993pt;}
.y25f{bottom:654.463540pt;}
.y20e{bottom:656.846353pt;}
.y182{bottom:657.197913pt;}
.y1a2{bottom:658.054683pt;}
.y158{bottom:661.569007pt;}
.y284{bottom:662.156247pt;}
.y24d{bottom:662.354167pt;}
.y8a{bottom:662.356113pt;}
.ye4{bottom:662.356767pt;}
.y192{bottom:662.619793pt;}
.y1c{bottom:664.565593pt;}
.y6e{bottom:665.197913pt;}
.y145{bottom:667.514327pt;}
.y170{bottom:667.515620pt;}
.y3{bottom:671.018723pt;}
.y239{bottom:672.674473pt;}
.yad{bottom:673.197913pt;}
.y20d{bottom:678.005207pt;}
.y181{bottom:678.356767pt;}
.y270{bottom:680.557287pt;}
.y45{bottom:680.847660pt;}
.y2f{bottom:681.357100pt;}
.y157{bottom:682.725260pt;}
.y89{bottom:683.514327pt;}
.y179{bottom:683.515620pt;}
.y1b1{bottom:683.776047pt;}
.y1b{bottom:686.964033pt;}
.y144{bottom:688.671873pt;}
.y25e{bottom:691.260420pt;}
.yf3{bottom:691.514326pt;}
.y238{bottom:693.830727pt;}
.y1de{bottom:694.354167pt;}
.yac{bottom:694.356113pt;}
.yd5{bottom:694.356767pt;}
.y283{bottom:698.958327pt;}
.y44{bottom:702.005860pt;}
.y156{bottom:703.885420pt;}
.ye3{bottom:704.671873pt;}
.y88{bottom:704.672527pt;}
.y24c{bottom:704.674473pt;}
.y1b0{bottom:704.937500pt;}
.y6d{bottom:707.514327pt;}
.y1a{bottom:709.362473pt;}
.y143{bottom:709.830727pt;}
.y237{bottom:714.986980pt;}
.yab{bottom:715.514327pt;}
.y1dd{bottom:715.515620pt;}
.y26f{bottom:717.354167pt;}
.y2e{bottom:718.515300pt;}
.y20c{bottom:720.322913pt;}
.y180{bottom:720.671873pt;}
.y191{bottom:721.531243pt;}
.y43{bottom:723.164060pt;}
.y11{bottom:724.330247pt;}
.y155{bottom:725.041660pt;}
.ye2{bottom:725.830727pt;}
.y1af{bottom:726.093753pt;}
.y2a0{bottom:727.468753pt;}
.y6c{bottom:728.672527pt;}
.y19{bottom:731.760900pt;}
.y282{bottom:735.749993pt;}
.yd4{bottom:736.671873pt;}
.yaa{bottom:736.672527pt;}
.y1dc{bottom:736.674473pt;}
.y2{bottom:737.603680pt;}
.y20b{bottom:741.479167pt;}
.y17f{bottom:741.830727pt;}
.y42{bottom:744.322260pt;}
.y10{bottom:745.488447pt;}
.y87{bottom:746.988927pt;}
.ye1{bottom:746.989580pt;}
.y6b{bottom:749.830727pt;}
.y236{bottom:752.145833pt;}
.y27d{bottom:754.151047pt;}
.y18{bottom:754.159340pt;}
.y2d{bottom:755.673500pt;}
.yb7{bottom:757.830727pt;}
.y25d{bottom:761.791660pt;}
.y20a{bottom:762.640620pt;}
.y24b{bottom:762.986980pt;}
.y17e{bottom:762.989580pt;}
.y29f{bottom:764.270833pt;}
.y41{bottom:765.480473pt;}
.y1ae{bottom:767.372390pt;}
.y16f{bottom:768.145833pt;}
.y86{bottom:768.147140pt;}
.y6a{bottom:770.988927pt;}
.y235{bottom:773.307287pt;}
.y17{bottom:776.557780pt;}
.y1db{bottom:778.986980pt;}
.ya9{bottom:778.988927pt;}
.yd3{bottom:778.989580pt;}
.y209{bottom:783.796873pt;}
.y17d{bottom:784.145833pt;}
.y137{bottom:784.147140pt;}
.y1cd{bottom:785.005203pt;}
.y40{bottom:786.638673pt;}
.yf{bottom:787.804847pt;}
.ye0{bottom:789.304687pt;}
.y85{bottom:789.305340pt;}
.y26e{bottom:790.947913pt;}
.y69{bottom:792.147140pt;}
.y2c{bottom:792.831700pt;}
.y1{bottom:794.649578pt;}
.y154{bottom:794.796870pt;}
.y25c{bottom:798.588540pt;}
.y16{bottom:798.956220pt;}
.y1da{bottom:800.145833pt;}
.ya8{bottom:800.147140pt;}
.y29e{bottom:801.062500pt;}
.y1c1{bottom:802.635416pt;}
.y136{bottom:805.304687pt;}
.y24a{bottom:805.307287pt;}
.y3f{bottom:807.796873pt;}
.ye{bottom:808.963060pt;}
.y281{bottom:809.343753pt;}
.y84{bottom:810.463540pt;}
.y68{bottom:813.305340pt;}
.yd2{bottom:821.304687pt;}
.ya7{bottom:821.305340pt;}
.y1d9{bottom:821.307287pt;}
.y15{bottom:821.354660pt;}
.y135{bottom:826.463540pt;}
.y26d{bottom:827.744793pt;}
.y3e{bottom:828.955073pt;}
.y2b{bottom:829.989913pt;}
.ydf{bottom:831.622393pt;}
.y208{bottom:834.111980pt;}
.y67{bottom:834.463540pt;}
.y25b{bottom:835.385420pt;}
.ya6{bottom:842.463540pt;}
.y14{bottom:843.753087pt;}
.y234{bottom:847.619793pt;}
.y134{bottom:847.622393pt;}
.y3d{bottom:850.113287pt;}
.yd{bottom:851.279460pt;}
.y83{bottom:852.779953pt;}
.y1b8{bottom:852.781247pt;}
.y66{bottom:855.621740pt;}
.y1d8{bottom:863.619793pt;}
.ya5{bottom:863.621740pt;}
.yd1{bottom:863.622393pt;}
.y26c{bottom:864.541660pt;}
.y21c{bottom:866.109376pt;}
.y133{bottom:868.779953pt;}
.y178{bottom:868.781247pt;}
.y3c{bottom:871.271487pt;}
.y25a{bottom:872.182287pt;}
.yc{bottom:872.437660pt;}
.y1b7{bottom:873.937500pt;}
.y82{bottom:873.938153pt;}
.y29d{bottom:874.656247pt;}
.y207{bottom:879.273436pt;}
.ya4{bottom:884.779948pt;}
.y1c0{bottom:884.781249pt;}
.y11a{bottom:889.937500pt;}
.y233{bottom:889.940104pt;}
.y13{bottom:891.106281pt;}
.y2a{bottom:892.869465pt;}
.yb{bottom:893.595865pt;}
.y81{bottom:895.096355pt;}
.y65{bottom:897.938151pt;}
.y27c{bottom:901.338541pt;}
.yde{bottom:903.096354pt;}
.yd0{bottom:905.937500pt;}
.ya3{bottom:905.938151pt;}
.y1eb{bottom:905.940104pt;}
.y259{bottom:908.979167pt;}
.y119{bottom:911.096355pt;}
.y29c{bottom:911.458333pt;}
.y80{bottom:916.254557pt;}
.y64{bottom:919.096355pt;}
.y3b{bottom:921.587890pt;}
.y61{bottom:927.096355pt;}
.y1a1{bottom:929.585938pt;}
.y232{bottom:932.252604pt;}
.y118{bottom:932.255208pt;}
.y7f{bottom:937.412760pt;}
.y26b{bottom:938.135416pt;}
.y63{bottom:940.254557pt;}
.y1b6{bottom:945.411459pt;}
.y258{bottom:945.776041pt;}
.y1d7{bottom:948.252604pt;}
.y60{bottom:948.254557pt;}
.ycf{bottom:948.255208pt;}
.y17c{bottom:953.411459pt;}
.y117{bottom:953.412760pt;}
.y62{bottom:961.412760pt;}
.y7e{bottom:966.570964pt;}
.y177{bottom:969.411459pt;}
.y5f{bottom:969.412760pt;}
.y190{bottom:971.901042pt;}
.y17b{bottom:974.570312pt;}
.y26a{bottom:974.932292pt;}
.y1ad{bottom:975.429687pt;}
.yce{bottom:990.570312pt;}
.y5e{bottom:990.570964pt;}
.y1d6{bottom:990.572916pt;}
.y5d{bottom:1011.729167pt;}
.y153{bottom:1014.218750pt;}
.hf{height:23.296875pt;}
.h11{height:27.574216pt;}
.hd{height:28.687500pt;}
.h13{height:37.031249pt;}
.h10{height:38.828124pt;}
.h7{height:42.710938pt;}
.h14{height:44.437500pt;}
.h15{height:44.468750pt;}
.h12{height:46.927082pt;}
.he{height:47.812499pt;}
.ha{height:52.106772pt;}
.h5{height:56.312500pt;}
.h9{height:56.843750pt;}
.h4{height:57.375000pt;}
.hc{height:58.073440pt;}
.hb{height:58.710940pt;}
.h8{height:66.317706pt;}
.h1{height:71.718750pt;}
.h3{height:86.062500pt;}
.h6{height:95.666667pt;}
.h2{height:113.687500pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x13{left:113.385824pt;}
.x30{left:116.503011pt;}
.x2d{left:117.401449pt;}
.x2e{left:118.565511pt;}
.x16{left:122.385824pt;}
.x2f{left:123.893636pt;}
.xe{left:127.700784pt;}
.x14{left:137.385824pt;}
.x6{left:145.082367pt;}
.x25{left:147.714891pt;}
.x5{left:149.715181pt;}
.x3{left:160.287447pt;}
.x15{left:161.385824pt;}
.x7{left:184.012052pt;}
.x28{left:212.161825pt;}
.x11{left:219.396101pt;}
.x2b{left:224.139501pt;}
.x1b{left:233.849310pt;}
.x4{left:244.264013pt;}
.x19{left:251.537634pt;}
.x1d{left:253.574896pt;}
.x2{left:255.168310pt;}
.x8{left:256.574560pt;}
.x10{left:257.607031pt;}
.x29{left:262.109991pt;}
.x1a{left:263.274694pt;}
.x27{left:267.189169pt;}
.x9{left:276.332372pt;}
.xa{left:279.574560pt;}
.x1e{left:280.920904pt;}
.x21{left:283.257134pt;}
.x24{left:286.091404pt;}
.x2c{left:300.594044pt;}
.x26{left:307.808024pt;}
.x23{left:310.612894pt;}
.x1c{left:314.494864pt;}
.x1f{left:329.782044pt;}
.x1{left:333.595064pt;}
.x22{left:339.849554pt;}
.x2a{left:340.776904pt;}
.x20{left:343.737994pt;}
.xd{left:492.833604pt;}
.xc{left:494.021104pt;}
.xf{left:586.622674pt;}
.xb{left:610.739854pt;}
.x17{left:681.398584pt;}
.x18{left:682.487144pt;}
.x12{left:689.549704pt;}
}




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