
    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_0f7142471c45646a901597e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_23a61ba1d597eb4ed46ab50d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_a63534e73260c0173a3f64de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_105fd3fe7cb0182903f356e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.188000;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_913ac25b4bc68a770a766cf2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_aa6d898878bbfedd730675dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692383;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_df45aceb3390d522d0ee4b9b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_cf942bd3119a65ea36564c5f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_c61c78aec4c0adc41eb45962.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.481000;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_e758dac7e59d7a7a51184076.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.578000;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_ee0882efe2599d9bdc3d82e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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;}
.m6{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.379486px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.258231px;}
.ls41{letter-spacing:9.491165px;}
.ls24{letter-spacing:9.779313px;}
.ls1f{letter-spacing:10.118839px;}
.ls32{letter-spacing:10.123621px;}
.lsc{letter-spacing:10.458365px;}
.ls35{letter-spacing:10.463147px;}
.ls1d{letter-spacing:10.797891px;}
.ls20{letter-spacing:10.802674px;}
.ls7{letter-spacing:11.137418px;}
.ls6{letter-spacing:11.142200px;}
.lsf{letter-spacing:11.476944px;}
.lsd{letter-spacing:11.481726px;}
.ls3a{letter-spacing:11.816470px;}
.ls34{letter-spacing:11.821252px;}
.ls37{letter-spacing:12.155997px;}
.ls1b{letter-spacing:12.160779px;}
.lse{letter-spacing:12.500305px;}
.ls1c{letter-spacing:12.505087px;}
.ls16{letter-spacing:12.839831px;}
.ls40{letter-spacing:12.844613px;}
.ls14{letter-spacing:13.179357px;}
.ls21{letter-spacing:13.184139px;}
.ls19{letter-spacing:13.518884px;}
.ls15{letter-spacing:13.523666px;}
.ls18{letter-spacing:13.858410px;}
.ls1a{letter-spacing:13.863192px;}
.ls36{letter-spacing:14.193154px;}
.ls12{letter-spacing:14.197936px;}
.ls8{letter-spacing:14.202718px;}
.ls13{letter-spacing:14.537462px;}
.ls4{letter-spacing:14.542244px;}
.ls3f{letter-spacing:14.876989px;}
.ls3b{letter-spacing:14.881771px;}
.ls3e{letter-spacing:15.221297px;}
.ls30{letter-spacing:15.226079px;}
.ls27{letter-spacing:15.560823px;}
.ls3{letter-spacing:15.900349px;}
.ls2b{letter-spacing:15.905132px;}
.ls22{letter-spacing:16.239876px;}
.ls23{letter-spacing:16.244658px;}
.ls17{letter-spacing:16.579402px;}
.ls2a{letter-spacing:16.584184px;}
.ls11{letter-spacing:16.918928px;}
.ls5{letter-spacing:16.923710px;}
.ls33{letter-spacing:16.923715px;}
.ls2c{letter-spacing:17.258455px;}
.ls10{letter-spacing:17.263237px;}
.ls29{letter-spacing:17.602763px;}
.ls2e{letter-spacing:17.947071px;}
.lsa{letter-spacing:18.281815px;}
.ls9{letter-spacing:18.286597px;}
.ls26{letter-spacing:18.621342px;}
.ls2d{letter-spacing:18.626124px;}
.ls25{letter-spacing:18.960868px;}
.ls2f{letter-spacing:18.965650px;}
.ls0{letter-spacing:19.038201px;}
.ls28{letter-spacing:19.644702px;}
.ls1e{letter-spacing:20.663281px;}
.ls39{letter-spacing:21.002808px;}
.ls38{letter-spacing:21.347116px;}
.lsb{letter-spacing:24.780635px;}
.ls3c{letter-spacing:25.086687px;}
.ls31{letter-spacing:25.120161px;}
.ls3d{letter-spacing:25.426213px;}
.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;}
}
.wsb{word-spacing:-30.844287px;}
.wsc{word-spacing:-27.759510px;}
.ws2{word-spacing:-24.230394px;}
.ws6{word-spacing:-14.011436px;}
.ws1{word-spacing:-13.384818px;}
.ws4{word-spacing:-12.610134px;}
.ws5{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsa{word-spacing:-11.208832px;}
.ws3{word-spacing:-10.759500px;}
.ws8{word-spacing:-10.061328px;}
.ws9{word-spacing:-9.563850px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-17.343592px;}
._b{margin-left:-4.724675px;}
._a{margin-left:-3.720443px;}
._5{margin-left:-2.410128px;}
._4{margin-left:-1.403039px;}
._2{width:1.707335px;}
._1{width:3.437692px;}
._9{width:4.532945px;}
._8{width:6.064054px;}
._7{width:7.071143px;}
._10{width:8.117013px;}
._6{width:9.162790px;}
._c{width:10.893169px;}
._d{width:12.184689px;}
._16{width:13.408896px;}
._12{width:15.016077px;}
._0{width:16.268364px;}
._f{width:17.526250px;}
._e{width:18.630906px;}
._11{width:20.318240px;}
._14{width:21.795717px;}
._2f{width:22.839088px;}
._15{width:24.202006px;}
._13{width:25.311444px;}
._40{width:28.238064px;}
._42{width:30.255954px;}
._54{width:70.286646px;}
._52{width:71.304240px;}
._53{width:72.329485px;}
._51{width:93.358478px;}
._58{width:102.960584px;}
._57{width:113.362227px;}
._55{width:114.379820px;}
._56{width:115.405065px;}
._3f{width:173.396426px;}
._19{width:174.635901px;}
._28{width:176.732297px;}
._35{width:191.713112px;}
._23{width:192.730705px;}
._25{width:193.931925px;}
._24{width:195.783486px;}
._1b{width:196.912020px;}
._32{width:202.110929px;}
._1a{width:203.472822px;}
._3a{width:213.231774px;}
._20{width:214.272321px;}
._29{width:215.278438px;}
._21{width:217.087918px;}
._26{width:218.216453px;}
._37{width:225.094774px;}
._34{width:227.129961px;}
._1e{width:228.491853px;}
._1f{width:239.528536px;}
._36{width:243.120718px;}
._1d{width:246.517798px;}
._59{width:251.035760px;}
._7d{width:253.832230px;}
._79{width:256.204065px;}
._77{width:259.451948px;}
._7a{width:261.636332px;}
._78{width:263.813064px;}
._5a{width:267.596523px;}
._66{width:272.148916px;}
._6c{width:273.950745px;}
._38{width:276.800772px;}
._7e{width:278.927772px;}
._72{width:282.749487px;}
._64{width:284.390644px;}
._6b{width:285.733408px;}
._5e{width:287.642353px;}
._65{width:289.784655px;}
._70{width:291.509974px;}
._63{width:293.610195px;}
._69{width:295.484710px;}
._67{width:296.708882px;}
._74{width:298.013392px;}
._6f{width:299.314075px;}
._5c{width:300.653014px;}
._61{width:302.026383px;}
._22{width:303.460960px;}
._5d{width:305.010304px;}
._6e{width:306.085281px;}
._73{width:307.309454px;}
._7b{width:308.690474px;}
._76{width:310.675929px;}
._75{width:312.014868px;}
._62{width:313.120449px;}
._5b{width:315.534365px;}
._6a{width:317.022500px;}
._5f{width:318.399694px;}
._68{width:319.776889px;}
._60{width:321.651403px;}
._6d{width:322.879402px;}
._7c{width:327.282598px;}
._71{width:330.071417px;}
._41{width:335.828854px;}
._33{width:355.691058px;}
._1c{width:372.358936px;}
._43{width:375.189835px;}
._4a{width:430.694595px;}
._3b{width:457.909487px;}
._8e{width:469.630941px;}
._2a{width:474.573539px;}
._7f{width:481.566626px;}
._92{width:483.173353px;}
._48{width:490.985106px;}
._4e{width:492.094512px;}
._50{width:496.302606px;}
._45{width:500.089891px;}
._8f{width:501.344668px;}
._4c{width:504.340066px;}
._8a{width:505.361485px;}
._4b{width:511.379059px;}
._4f{width:513.100552px;}
._80{width:515.315540px;}
._8c{width:517.656771px;}
._44{width:519.183161px;}
._49{width:521.440230px;}
._47{width:525.606243px;}
._46{width:527.216795px;}
._82{width:529.317017px;}
._87{width:531.566434px;}
._91{width:534.481496px;}
._89{width:535.743924px;}
._88{width:538.337640px;}
._81{width:539.638323px;}
._8d{width:541.742370px;}
._93{width:543.892324px;}
._4d{width:545.808919px;}
._39{width:547.388868px;}
._8b{width:550.923666px;}
._90{width:553.984098px;}
._3e{width:555.460757px;}
._84{width:556.784394px;}
._83{width:559.722408px;}
._3d{width:561.046045px;}
._27{width:564.052920px;}
._94{width:566.577776px;}
._3c{width:570.801172px;}
._2e{width:572.124809px;}
._85{width:575.058998px;}
._2c{width:577.710098px;}
._2d{width:581.994702px;}
._2b{width:587.465225px;}
._86{width:609.500335px;}
._18{width:690.819839px;}
._31{width:693.555100px;}
._17{width:699.848113px;}
._30{width:705.727968px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs5{font-size:26.761800px;}
.fsb{font-size:30.108600px;}
.fsc{font-size:35.867400px;}
.fs6{font-size:38.255400px;}
.fsa{font-size:38.256000px;}
.fs7{font-size:41.842200px;}
.fs4{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs3{font-size:44.327400px;}
.fs8{font-size:47.820600px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs9{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y40{bottom:47.430000px;}
.y2c3{bottom:78.407251px;}
.yf1{bottom:78.413808px;}
.y152{bottom:78.414491px;}
.y80{bottom:78.416181px;}
.y270{bottom:78.833578px;}
.y21a{bottom:79.351073px;}
.yad{bottom:83.686092px;}
.y321{bottom:84.275619px;}
.yde{bottom:85.811655px;}
.y137{bottom:91.340400px;}
.y249{bottom:91.509973px;}
.y2c2{bottom:92.778715px;}
.y4{bottom:93.495000px;}
.yf0{bottom:94.145590px;}
.y151{bottom:94.146273px;}
.y7f{bottom:94.147962px;}
.y26f{bottom:94.566555px;}
.y219{bottom:95.082855px;}
.yac{bottom:99.417874px;}
.y320{bottom:100.943496px;}
.ydd{bottom:101.543437px;}
.y3{bottom:105.630000px;}
.y136{bottom:106.987300px;}
.y2c1{bottom:107.065179px;}
.y248{bottom:107.156873px;}
.yef{bottom:109.792490px;}
.y150{bottom:109.793174px;}
.y7e{bottom:109.794863px;}
.y26e{bottom:110.213456px;}
.y218{bottom:110.730951px;}
.y31f{bottom:113.783921px;}
.yab{bottom:115.064775px;}
.ydc{bottom:117.191532px;}
.y1f2{bottom:119.737395px;}
.y3e{bottom:119.905636px;}
.y2c0{bottom:121.436643px;}
.y247{bottom:122.888655px;}
.yee{bottom:125.524272px;}
.y14f{bottom:125.524955px;}
.y7d{bottom:125.526645px;}
.y26d{bottom:125.945238px;}
.y217{bottom:126.462733px;}
.y31e{bottom:126.625303px;}
.yaa{bottom:130.796557px;}
.ydb{bottom:132.923314px;}
.y1f1{bottom:134.023859px;}
.y3d{bottom:134.192100px;}
.y2bf{bottom:135.808108px;}
.y246{bottom:138.620437px;}
.y31d{bottom:139.550846px;}
.y135{bottom:139.897437px;}
.yed{bottom:141.172368px;}
.y14e{bottom:141.173051px;}
.y7c{bottom:141.174740px;}
.y26c{bottom:141.592138px;}
.y2d5{bottom:141.939870px;}
.y216{bottom:142.109633px;}
.y32b{bottom:143.461867px;}
.ya9{bottom:146.443457px;}
.y1f0{bottom:148.395323px;}
.yda{bottom:148.570215px;}
.y2be{bottom:150.179572px;}
.y31c{bottom:152.391271px;}
.y245{bottom:154.268532px;}
.y32a{bottom:155.453022px;}
.y134{bottom:155.544337px;}
.yec{bottom:156.904150px;}
.y14d{bottom:156.904833px;}
.y7b{bottom:156.906522px;}
.y2d4{bottom:157.671652px;}
.y215{bottom:157.841415px;}
.y39{bottom:159.703536px;}
.ya8{bottom:162.176434px;}
.y1ef{bottom:162.766787px;}
.yd9{bottom:164.301997px;}
.y2bd{bottom:164.466036px;}
.y31b{bottom:165.232652px;}
.y329{bottom:167.358103px;}
.y244{bottom:170.000314px;}
.y133{bottom:171.276119px;}
.yeb{bottom:172.551050px;}
.y14c{bottom:172.551733px;}
.y7a{bottom:172.553423px;}
.y26b{bottom:172.972016px;}
.y2d3{bottom:173.318552px;}
.y214{bottom:173.574392px;}
.y38{bottom:174.075000px;}
.y372{bottom:176.976903px;}
.y1ee{bottom:177.053251px;}
.yb0{bottom:177.823335px;}
.y31a{bottom:178.073077px;}
.y2bc{bottom:178.837500px;}
.y328{bottom:179.348301px;}
.yd8{bottom:179.950092px;}
.y2bb{bottom:183.600000px;}
.y243{bottom:185.647215px;}
.y132{bottom:186.923019px;}
.yea{bottom:188.282832px;}
.y14b{bottom:188.283515px;}
.y79{bottom:188.285205px;}
.y26a{bottom:188.703798px;}
.y2d2{bottom:189.051530px;}
.y213{bottom:189.221293px;}
.y371{bottom:189.818284px;}
.y319{bottom:190.914459px;}
.y327{bottom:191.338500px;}
.y1ed{bottom:191.424715px;}
.y2ba{bottom:193.210072px;}
.ya7{bottom:193.555116px;}
.yd7{bottom:195.681874px;}
.y242{bottom:201.378997px;}
.y131{bottom:202.655997px;}
.y370{bottom:202.658709px;}
.y318{bottom:203.754884px;}
.ye9{bottom:203.930928px;}
.y14a{bottom:203.931611px;}
.y78{bottom:203.933300px;}
.y269{bottom:204.350698px;}
.y2d1{bottom:204.698430px;}
.y212{bottom:204.953075px;}
.y1ec{bottom:205.796179px;}
.y2b9{bottom:207.496536px;}
.yaf{bottom:209.202017px;}
.yd6{bottom:211.328775px;}
.y32{bottom:214.216968px;}
.y36f{bottom:215.585209px;}
.y317{bottom:216.595309px;}
.y241{bottom:217.027092px;}
.y130{bottom:218.302897px;}
.y37{bottom:218.554296px;}
.y326{bottom:218.815071px;}
.ye8{bottom:219.662710px;}
.y149{bottom:219.663393px;}
.y77{bottom:219.665082px;}
.y268{bottom:220.082480px;}
.y1eb{bottom:220.167643px;}
.y2d0{bottom:220.430212px;}
.y88{bottom:220.599975px;}
.y2b8{bottom:221.868000px;}
.ya6{bottom:224.934994px;}
.y2b7{bottom:226.630500px;}
.yd5{bottom:227.060557px;}
.y36e{bottom:228.425634px;}
.y316{bottom:229.521808px;}
.y240{bottom:232.758874px;}
.y12f{bottom:234.034679px;}
.y36{bottom:234.286078px;}
.y1ea{bottom:234.454108px;}
.ye7{bottom:235.309610px;}
.y148{bottom:235.310293px;}
.y76{bottom:235.311983px;}
.y267{bottom:235.730576px;}
.y2cf{bottom:236.077112px;}
.y87{bottom:236.332952px;}
.yae{bottom:240.581894px;}
.y36d{bottom:241.266059px;}
.yd4{bottom:242.707457px;}
.y31{bottom:245.596846px;}
.y23f{bottom:248.405775px;}
.y1e9{bottom:248.825572px;}
.y315{bottom:249.165000px;}
.y35{bottom:249.932978px;}
.y325{bottom:250.193753px;}
.ye6{bottom:251.041392px;}
.y147{bottom:251.042075px;}
.y75{bottom:251.043764px;}
.y266{bottom:251.462358px;}
.y2ce{bottom:251.810090px;}
.y86{bottom:251.979853px;}
.y36c{bottom:254.107440px;}
.ya5{bottom:256.313676px;}
.yd3{bottom:258.440434px;}
.y1e8{bottom:263.197036px;}
.y23e{bottom:264.137557px;}
.y34{bottom:265.665956px;}
.y324{bottom:265.925535px;}
.ye5{bottom:266.688292px;}
.y146{bottom:266.688976px;}
.y74{bottom:266.691860px;}
.y12e{bottom:266.859934px;}
.y36b{bottom:266.947865px;}
.y265{bottom:267.109258px;}
.y2cd{bottom:267.456990px;}
.y85{bottom:267.711635px;}
.y314{bottom:268.894572px;}
.y2a5{bottom:269.236258px;}
.ya4{bottom:271.960577px;}
.yd2{bottom:274.087335px;}
.y1e7{bottom:277.483500px;}
.y23d{bottom:279.784457px;}
.y36a{bottom:279.789247px;}
.y30{bottom:281.312856px;}
.ye4{bottom:282.421270px;}
.y145{bottom:282.421953px;}
.y73{bottom:282.423642px;}
.y264{bottom:282.841040px;}
.y2cc{bottom:283.188772px;}
.y313{bottom:283.266036px;}
.y84{bottom:283.358535px;}
.y2a4{bottom:284.968040px;}
.ya3{bottom:287.693554px;}
.yd1{bottom:289.819116px;}
.y369{bottom:292.629672px;}
.y23c{bottom:295.517434px;}
.y2f{bottom:297.044638px;}
.y323{bottom:297.305413px;}
.y312{bottom:297.637500px;}
.ye3{bottom:298.068170px;}
.y144{bottom:298.068853px;}
.y172{bottom:298.070543px;}
.y12d{bottom:298.238616px;}
.y263{bottom:298.489136px;}
.y2cb{bottom:298.835672px;}
.y83{bottom:299.091512px;}
.y2a3{bottom:300.616136px;}
.ya2{bottom:303.340454px;}
.yd0{bottom:305.466017px;}
.y368{bottom:305.470097px;}
.y1e2{bottom:311.078690px;}
.y23b{bottom:311.164335px;}
.y2e{bottom:312.691538px;}
.y143{bottom:313.800635px;}
.y72{bottom:313.802324px;}
.y12c{bottom:313.971594px;}
.y262{bottom:314.220917px;}
.y2ca{bottom:314.567454px;}
.y82{bottom:314.738413px;}
.y2a2{bottom:316.347917px;}
.y367{bottom:318.396596px;}
.ya1{bottom:319.072236px;}
.ycf{bottom:321.198994px;}
.y1b1{bottom:324.089480px;}
.y1e1{bottom:326.811667px;}
.y23a{bottom:326.896116px;}
.y2d{bottom:328.424516px;}
.ye2{bottom:329.446852px;}
.y142{bottom:329.447536px;}
.y193{bottom:329.449225px;}
.y12b{bottom:329.703376px;}
.y261{bottom:329.867818px;}
.y2c9{bottom:330.215550px;}
.y81{bottom:330.470195px;}
.y366{bottom:331.237021px;}
.y2a1{bottom:331.994818px;}
.ya0{bottom:334.719137px;}
.yce{bottom:336.845894px;}
.y38e{bottom:337.864571px;}
.y1b0{bottom:339.822457px;}
.y1e0{bottom:342.458567px;}
.y239{bottom:342.543017px;}
.y2c{bottom:344.071416px;}
.y365{bottom:344.077446px;}
.y311{bottom:344.410608px;}
.y141{bottom:345.180513px;}
.y171{bottom:345.182202px;}
.y12a{bottom:345.350276px;}
.y260{bottom:345.599600px;}
.y2c8{bottom:345.947332px;}
.y71{bottom:346.117095px;}
.y2a0{bottom:347.726600px;}
.y9f{bottom:350.452114px;}
.y38d{bottom:350.704996px;}
.ycd{bottom:352.577676px;}
.y1af{bottom:355.469357px;}
.y364{bottom:356.918828px;}
.y1df{bottom:358.190349px;}
.y238{bottom:358.275994px;}
.y310{bottom:358.782072px;}
.y2b{bottom:359.803198px;}
.y140{bottom:360.827413px;}
.y192{bottom:360.829102px;}
.y129{bottom:361.082058px;}
.y25f{bottom:361.246500px;}
.y2c7{bottom:361.679114px;}
.y70{bottom:361.848877px;}
.y29f{bottom:363.373500px;}
.y38c{bottom:363.546377px;}
.ye1{bottom:364.568692px;}
.y9e{bottom:366.099014px;}
.ycc{bottom:368.224577px;}
.y363{bottom:369.759253px;}
.y1ae{bottom:371.201139px;}
.y30f{bottom:373.153536px;}
.y1de{bottom:373.837250px;}
.y237{bottom:373.922894px;}
.y2a{bottom:375.450098px;}
.y38b{bottom:376.386802px;}
.y13f{bottom:376.559195px;}
.y191{bottom:376.560884px;}
.y128{bottom:376.728958px;}
.y170{bottom:376.901606px;}
.y2c6{bottom:377.326014px;}
.y6f{bottom:377.496973px;}
.ye0{bottom:380.215592px;}
.y9d{bottom:381.830796px;}
.y362{bottom:382.600634px;}
.ycb{bottom:383.957554px;}
.y1ad{bottom:386.848039px;}
.y30e{bottom:387.525000px;}
.y38a{bottom:389.227227px;}
.y1dd{bottom:389.570227px;}
.y236{bottom:389.654676px;}
.y29{bottom:391.183076px;}
.y13e{bottom:392.206095px;}
.y190{bottom:392.207785px;}
.y127{bottom:392.461936px;}
.y16f{bottom:392.548506px;}
.y2c5{bottom:393.058991px;}
.y6e{bottom:393.228754px;}
.y29d{bottom:394.757835px;}
.y2b6{bottom:394.922572px;}
.y361{bottom:395.441059px;}
.y9c{bottom:397.477697px;}
.yca{bottom:399.604454px;}
.y29e{bottom:400.110000px;}
.y389{bottom:402.068609px;}
.y1ac{bottom:402.581017px;}
.y1dc{bottom:405.217127px;}
.y235{bottom:405.301577px;}
.y28{bottom:406.829976px;}
.y13d{bottom:407.939073px;}
.y18f{bottom:407.940762px;}
.y126{bottom:408.108836px;}
.y16e{bottom:408.280288px;}
.y360{bottom:408.281484px;}
.y30d{bottom:408.703184px;}
.y6d{bottom:408.875655px;}
.y2b5{bottom:409.294036px;}
.y29c{bottom:410.489616px;}
.ydf{bottom:411.594274px;}
.y9b{bottom:413.209478px;}
.y388{bottom:414.909034px;}
.yc9{bottom:415.336236px;}
.y1ab{bottom:418.227917px;}
.y1db{bottom:420.948909px;}
.y234{bottom:421.034554px;}
.y35f{bottom:421.207984px;}
.y30c{bottom:421.544566px;}
.y27{bottom:422.561758px;}
.y2b4{bottom:423.580500px;}
.y13c{bottom:423.585973px;}
.y18e{bottom:423.587662px;}
.y125{bottom:423.840618px;}
.y16d{bottom:423.927189px;}
.y2c4{bottom:424.437674px;}
.y6c{bottom:424.607437px;}
.y29b{bottom:426.136517px;}
.y387{bottom:427.750415px;}
.y9a{bottom:428.857574px;}
.yc8{bottom:431.068018px;}
.y1aa{bottom:433.959699px;}
.y35e{bottom:434.048409px;}
.y30b{bottom:434.384991px;}
.y1da{bottom:436.595810px;}
.y233{bottom:436.681454px;}
.y26{bottom:438.208658px;}
.y13b{bottom:439.317755px;}
.y18d{bottom:439.319444px;}
.y124{bottom:439.487518px;}
.y16c{bottom:439.660166px;}
.y6b{bottom:440.255532px;}
.y386{bottom:440.675958px;}
.y29a{bottom:441.869494px;}
.y99{bottom:444.589356px;}
.yc7{bottom:446.716114px;}
.y35d{bottom:446.889790px;}
.y30a{bottom:447.310534px;}
.y1a9{bottom:449.606599px;}
.y1d9{bottom:452.327592px;}
.y232{bottom:452.413236px;}
.y385{bottom:453.516384px;}
.y25{bottom:453.941636px;}
.y13a{bottom:454.964655px;}
.y211{bottom:454.966345px;}
.y123{bottom:455.220496px;}
.y16b{bottom:455.307066px;}
.y3c6{bottom:455.307480px;}
.y6a{bottom:455.987314px;}
.y299{bottom:457.601276px;}
.y35c{bottom:459.730215px;}
.y309{bottom:460.151915px;}
.y98{bottom:460.236256px;}
.yc6{bottom:462.447896px;}
.y1a8{bottom:465.339577px;}
.y384{bottom:466.357765px;}
.y3c5{bottom:467.297679px;}
.y1d8{bottom:467.975687px;}
.y231{bottom:468.060137px;}
.y24{bottom:469.588536px;}
.y210{bottom:470.699322px;}
.y122{bottom:470.867396px;}
.y16a{bottom:471.038848px;}
.y69{bottom:471.634215px;}
.y18c{bottom:472.229581px;}
.y35b{bottom:472.570640px;}
.y308{bottom:472.992340px;}
.y298{bottom:473.248176px;}
.y97{bottom:475.968038px;}
.yc5{bottom:478.094796px;}
.y383{bottom:479.198190px;}
.y3c4{bottom:479.288834px;}
.y1a7{bottom:480.986477px;}
.y1d7{bottom:483.707469px;}
.y230{bottom:483.793114px;}
.y23{bottom:485.320318px;}
.y35a{bottom:485.412022px;}
.y307{bottom:485.832765px;}
.y139{bottom:486.344533px;}
.y20f{bottom:486.346222px;}
.y121{bottom:486.599178px;}
.y169{bottom:486.685749px;}
.y68{bottom:487.365997px;}
.y18b{bottom:487.876481px;}
.y297{bottom:488.979958px;}
.y3c3{bottom:491.193915px;}
.y96{bottom:491.616134px;}
.y382{bottom:492.039571px;}
.yc4{bottom:493.826578px;}
.y1a6{bottom:496.718259px;}
.y359{bottom:498.252447px;}
.y306{bottom:498.674147px;}
.y1d6{bottom:499.354370px;}
.y22f{bottom:499.440014px;}
.y33{bottom:500.967218px;}
.y20e{bottom:502.078004px;}
.y120{bottom:502.246078px;}
.y168{bottom:502.418726px;}
.y67{bottom:503.014092px;}
.y3c2{bottom:503.184113px;}
.y18a{bottom:503.608263px;}
.y296{bottom:504.628054px;}
.y381{bottom:504.879996px;}
.y95{bottom:507.347916px;}
.yc3{bottom:509.473478px;}
.y358{bottom:511.178946px;}
.y305{bottom:511.514572px;}
.y1a5{bottom:512.365159px;}
.y1d5{bottom:515.086151px;}
.y3c1{bottom:515.089194px;}
.y22e{bottom:515.171796px;}
.y22{bottom:516.699000px;}
.y380{bottom:517.720421px;}
.y138{bottom:517.723215px;}
.y20d{bottom:517.724904px;}
.y11f{bottom:517.979055px;}
.y167{bottom:518.065626px;}
.y66{bottom:518.745874px;}
.y189{bottom:519.256359px;}
.y295{bottom:520.359836px;}
.y94{bottom:522.994816px;}
.y357{bottom:524.019371px;}
.y304{bottom:524.355953px;}
.yc2{bottom:525.206456px;}
.y3c0{bottom:527.080349px;}
.y1a4{bottom:528.096941px;}
.y37f{bottom:530.561803px;}
.y1d4{bottom:530.734247px;}
.y22d{bottom:530.818697px;}
.y20c{bottom:533.457882px;}
.y11e{bottom:533.625956px;}
.y166{bottom:533.797408px;}
.y65{bottom:534.392775px;}
.y294{bottom:536.006736px;}
.y356{bottom:536.859796px;}
.y303{bottom:537.196378px;}
.y93{bottom:538.726598px;}
.y3bf{bottom:538.985429px;}
.yc1{bottom:540.853356px;}
.y37e{bottom:543.487346px;}
.y1a3{bottom:543.745037px;}
.y1d3{bottom:546.466029px;}
.y22c{bottom:546.550478px;}
.y20b{bottom:549.189664px;}
.y11d{bottom:549.357738px;}
.y165{bottom:549.444308px;}
.y355{bottom:549.701178px;}
.y302{bottom:550.121921px;}
.y64{bottom:550.124557px;}
.y188{bottom:550.635041px;}
.y3be{bottom:550.975628px;}
.y293{bottom:551.738518px;}
.y92{bottom:554.374694px;}
.y37d{bottom:556.327771px;}
.yc0{bottom:556.585138px;}
.y1a2{bottom:559.476819px;}
.y1d2{bottom:562.112929px;}
.y22b{bottom:562.198574px;}
.y354{bottom:562.541603px;}
.y301{bottom:562.963303px;}
.y3bd{bottom:562.965827px;}
.y20a{bottom:564.836564px;}
.y11c{bottom:565.004638px;}
.y63{bottom:565.771457px;}
.y187{bottom:566.366823px;}
.y292{bottom:567.386614px;}
.y37c{bottom:569.169152px;}
.y91{bottom:570.106476px;}
.ybf{bottom:572.232038px;}
.y3bc{bottom:574.871864px;}
.y1a1{bottom:575.123719px;}
.y353{bottom:575.382984px;}
.y300{bottom:575.803728px;}
.y21{bottom:576.228359px;}
.y1d1{bottom:577.844711px;}
.y22a{bottom:577.930356px;}
.y209{bottom:580.568346px;}
.y11b{bottom:580.737615px;}
.y164{bottom:580.824186px;}
.y62{bottom:581.504434px;}
.y37b{bottom:582.009577px;}
.y291{bottom:583.118396px;}
.y90{bottom:585.753376px;}
.y3bb{bottom:586.862062px;}
.ybe{bottom:587.965016px;}
.y352{bottom:588.223409px;}
.y2ff{bottom:588.645109px;}
.y20{bottom:590.514823px;}
.y1a0{bottom:590.855501px;}
.y1d0{bottom:593.491612px;}
.y229{bottom:593.577256px;}
.y37a{bottom:594.850959px;}
.y208{bottom:596.215246px;}
.y11a{bottom:596.384516px;}
.y61{bottom:597.151335px;}
.y186{bottom:597.746701px;}
.y290{bottom:598.765296px;}
.y3ba{bottom:598.767143px;}
.y351{bottom:601.063834px;}
.y8f{bottom:601.485158px;}
.y2fe{bottom:601.485534px;}
.ybd{bottom:603.611916px;}
.y1f{bottom:604.886287px;}
.y379{bottom:607.691384px;}
.y1cf{bottom:609.224589px;}
.y228{bottom:609.309038px;}
.y3b9{bottom:610.757342px;}
.y207{bottom:611.948224px;}
.y119{bottom:612.116298px;}
.y163{bottom:612.543590px;}
.y60{bottom:612.883116px;}
.y350{bottom:613.990334px;}
.y2fd{bottom:614.325959px;}
.y28f{bottom:614.497078px;}
.y8e{bottom:617.218136px;}
.y1e{bottom:619.257751px;}
.ybc{bottom:619.343698px;}
.y378{bottom:620.531809px;}
.y19f{bottom:622.235379px;}
.y3b8{bottom:622.748497px;}
.y1ce{bottom:624.871489px;}
.y227{bottom:624.957134px;}
.y34f{bottom:626.830759px;}
.y2fc{bottom:627.167341px;}
.y206{bottom:627.595124px;}
.y118{bottom:627.763198px;}
.y162{bottom:628.275372px;}
.y5f{bottom:628.530017px;}
.y28e{bottom:630.143978px;}
.y8d{bottom:632.865036px;}
.y377{bottom:633.458308px;}
.y1d{bottom:633.629215px;}
.y3b7{bottom:634.653577px;}
.ybb{bottom:634.990598px;}
.y34e{bottom:639.671184px;}
.y2fb{bottom:640.007766px;}
.y1cd{bottom:640.603271px;}
.y226{bottom:640.688916px;}
.y185{bottom:641.371043px;}
.y205{bottom:643.326906px;}
.y117{bottom:643.494980px;}
.y161{bottom:643.922272px;}
.y5e{bottom:644.262994px;}
.y28d{bottom:645.876956px;}
.y3b6{bottom:646.643776px;}
.y1c{bottom:647.915679px;}
.y8c{bottom:648.596818px;}
.yba{bottom:650.723576px;}
.y34d{bottom:652.512565px;}
.y376{bottom:653.101500px;}
.y19e{bottom:653.614061px;}
.y1cc{bottom:656.336249px;}
.y225{bottom:656.420698px;}
.y184{bottom:657.017944px;}
.y3b5{bottom:658.549813px;}
.y204{bottom:658.973806px;}
.y116{bottom:659.143076px;}
.y160{bottom:659.654054px;}
.y2fa{bottom:659.737032px;}
.y5d{bottom:659.909894px;}
.y28c{bottom:661.523856px;}
.y1b{bottom:662.287143px;}
.y8b{bottom:664.243718px;}
.y34c{bottom:665.352990px;}
.yb9{bottom:666.370476px;}
.y16{bottom:669.771344px;}
.y3b4{bottom:670.540012px;}
.y1cb{bottom:671.983149px;}
.y224{bottom:672.067598px;}
.y2f9{bottom:672.662575px;}
.y183{bottom:672.750921px;}
.y375{bottom:672.831072px;}
.y203{bottom:674.706784px;}
.y115{bottom:674.874858px;}
.y15f{bottom:675.302150px;}
.y5c{bottom:675.641676px;}
.y1a{bottom:676.658608px;}
.y28b{bottom:677.255638px;}
.y34b{bottom:678.194372px;}
.y8a{bottom:679.975500px;}
.yb8{bottom:682.102258px;}
.y3b3{bottom:682.445092px;}
.y15{bottom:682.611769px;}
.y19d{bottom:684.993939px;}
.y2f8{bottom:685.503000px;}
.y374{bottom:687.202536px;}
.y1ca{bottom:687.714931px;}
.y223{bottom:687.800576px;}
.y182{bottom:688.397821px;}
.y202{bottom:690.353684px;}
.y114{bottom:690.521758px;}
.y19{bottom:690.945072px;}
.y15e{bottom:691.033932px;}
.y34a{bottom:691.034797px;}
.y5b{bottom:691.288577px;}
.y28a{bottom:692.902538px;}
.y3b2{bottom:694.435291px;}
.y2b3{bottom:695.113768px;}
.y14{bottom:695.453150px;}
.yb7{bottom:697.749158px;}
.y19c{bottom:700.640839px;}
.y373{bottom:701.574000px;}
.y1c9{bottom:703.361831px;}
.y222{bottom:703.447476px;}
.y349{bottom:703.875222px;}
.y181{bottom:704.129603px;}
.y2f7{bottom:705.231679px;}
.y18{bottom:705.316536px;}
.y201{bottom:706.085466px;}
.y2e6{bottom:706.170347px;}
.y113{bottom:706.253540px;}
.y3b1{bottom:706.426446px;}
.y15d{bottom:706.680832px;}
.y5a{bottom:707.021554px;}
.y2b2{bottom:707.954193px;}
.y13{bottom:708.293575px;}
.y289{bottom:708.635516px;}
.yb6{bottom:713.482136px;}
.yb1{bottom:713.565000px;}
.y19b{bottom:716.372621px;}
.y348{bottom:716.801721px;}
.y3b0{bottom:718.331527px;}
.y221{bottom:719.179258px;}
.y2f6{bottom:719.518143px;}
.y17{bottom:719.688000px;}
.y180{bottom:719.776504px;}
.y2b1{bottom:720.794618px;}
.y12{bottom:721.134000px;}
.y200{bottom:721.732366px;}
.y2e5{bottom:721.817248px;}
.y112{bottom:721.901636px;}
.y15c{bottom:722.412614px;}
.y59{bottom:722.753336px;}
.y288{bottom:724.282416px;}
.yb5{bottom:729.129036px;}
.y347{bottom:729.642146px;}
.y3af{bottom:730.321725px;}
.y19a{bottom:732.105598px;}
.y2b0{bottom:733.635999px;}
.y2f5{bottom:733.889608px;}
.y1c8{bottom:734.741709px;}
.y220{bottom:734.826158px;}
.y17f{bottom:735.509481px;}
.y1ff{bottom:737.465344px;}
.y2e4{bottom:737.550225px;}
.y111{bottom:737.633417px;}
.y15b{bottom:738.060710px;}
.y58{bottom:738.400236px;}
.y287{bottom:740.014198px;}
.y3ae{bottom:742.226806px;}
.y346{bottom:742.483528px;}
.yb4{bottom:744.860818px;}
.y199{bottom:747.752499px;}
.y2f4{bottom:748.261072px;}
.y11{bottom:748.941000px;}
.y21f{bottom:750.559136px;}
.y17e{bottom:751.156381px;}
.y1fe{bottom:753.112244px;}
.y2e3{bottom:753.197125px;}
.y110{bottom:753.280318px;}
.y2af{bottom:753.364309px;}
.y15a{bottom:753.792492px;}
.y57{bottom:754.132018px;}
.y3ad{bottom:754.217961px;}
.y345{bottom:755.323953px;}
.y286{bottom:755.661098px;}
.yb3{bottom:760.507718px;}
.y2f3{bottom:762.547536px;}
.y198{bottom:763.484281px;}
.y2ae{bottom:766.205690px;}
.y21e{bottom:766.206036px;}
.y3ac{bottom:766.208160px;}
.y17d{bottom:766.888163px;}
.y344{bottom:768.164378px;}
.y1fd{bottom:768.844026px;}
.y2e2{bottom:768.928907px;}
.y10f{bottom:769.012100px;}
.y159{bottom:769.439392px;}
.y1c7{bottom:769.777472px;}
.y56{bottom:769.780114px;}
.y285{bottom:771.394076px;}
.yb2{bottom:776.239500px;}
.y2f2{bottom:776.919000px;}
.y3ab{bottom:778.113240px;}
.y197{bottom:779.131181px;}
.y343{bottom:781.005759px;}
.y21d{bottom:781.937818px;}
.y17c{bottom:782.535064px;}
.y1fc{bottom:784.490926px;}
.y2e1{bottom:784.575808px;}
.y10e{bottom:784.659000px;}
.y158{bottom:785.171174px;}
.y1c6{bottom:785.509253px;}
.y55{bottom:785.511896px;}
.y2ad{bottom:785.934000px;}
.y284{bottom:787.040976px;}
.y3aa{bottom:790.104395px;}
.y342{bottom:793.846184px;}
.y196{bottom:794.864158px;}
.y21c{bottom:797.584718px;}
.y17b{bottom:798.268041px;}
.y10{bottom:798.435000px;}
.y1fb{bottom:800.223903px;}
.y2e0{bottom:800.308785px;}
.y157{bottom:800.818074px;}
.y1c5{bottom:801.156154px;}
.y54{bottom:801.158796px;}
.y3a9{bottom:802.009476px;}
.yf{bottom:802.686000px;}
.y283{bottom:802.772758px;}
.y2ac{bottom:805.663072px;}
.y341{bottom:806.771727px;}
.y10d{bottom:809.914500px;}
.ye{bottom:811.275000px;}
.y21b{bottom:813.316500px;}
.y17a{bottom:813.914941px;}
.y3a8{bottom:813.999674px;}
.y10c{bottom:814.677000px;}
.yd{bottom:815.527500px;}
.y1fa{bottom:815.870804px;}
.y2df{bottom:815.955685px;}
.y156{bottom:816.551052px;}
.y1c4{bottom:816.889131px;}
.y53{bottom:816.890578px;}
.y153{bottom:818.334000px;}
.y282{bottom:818.419658px;}
.y340{bottom:819.613109px;}
.y2ab{bottom:819.949536px;}
.yc{bottom:824.116500px;}
.y10b{bottom:824.202000px;}
.y3a7{bottom:825.904755px;}
.y195{bottom:827.688218px;}
.yb{bottom:828.369000px;}
.y10a{bottom:828.964500px;}
.y179{bottom:829.646723px;}
.y1f9{bottom:831.602586px;}
.y2de{bottom:831.687467px;}
.y155{bottom:832.197952px;}
.y33f{bottom:832.453534px;}
.y1c3{bottom:832.536031px;}
.y52{bottom:832.537478px;}
.y281{bottom:834.152636px;}
.y2aa{bottom:834.321000px;}
.ya{bottom:836.958000px;}
.y3a6{bottom:837.895910px;}
.y9{bottom:841.209000px;}
.y194{bottom:843.420000px;}
.y2f1{bottom:844.527228px;}
.y178{bottom:845.293623px;}
.y33e{bottom:845.294915px;}
.y109{bottom:845.463762px;}
.y25b{bottom:846.907536px;}
.y1f8{bottom:847.249486px;}
.y1c2{bottom:848.266618px;}
.y51{bottom:848.270456px;}
.y280{bottom:849.799536px;}
.y3a5{bottom:849.886109px;}
.y2f0{bottom:857.368609px;}
.y33d{bottom:858.135340px;}
.y108{bottom:858.304187px;}
.y177{bottom:861.025405px;}
.y25a{bottom:861.279000px;}
.y7{bottom:861.619500px;}
.y3a4{bottom:861.791189px;}
.y1f7{bottom:862.981268px;}
.y2dd{bottom:863.067345px;}
.y154{bottom:863.576634px;}
.y1c1{bottom:863.913518px;}
.y50{bottom:863.917356px;}
.y27f{bottom:865.531318px;}
.y259{bottom:866.041500px;}
.y8{bottom:868.677000px;}
.y2ef{bottom:870.294152px;}
.y33c{bottom:870.975765px;}
.y107{bottom:871.144612px;}
.y3a3{bottom:873.781388px;}
.y258{bottom:875.650500px;}
.y176{bottom:876.758383px;}
.y1e6{bottom:877.012108px;}
.y2a9{bottom:877.267108px;}
.y1f6{bottom:878.629364px;}
.y1c0{bottom:879.645300px;}
.y4f{bottom:879.649138px;}
.y257{bottom:880.413000px;}
.y27e{bottom:881.178218px;}
.y2ee{bottom:883.134577px;}
.y33b{bottom:883.817147px;}
.y106{bottom:883.985994px;}
.y3a2{bottom:885.687425px;}
.y1e5{bottom:891.383572px;}
.y2a8{bottom:891.638572px;}
.y175{bottom:892.405283px;}
.y1f5{bottom:894.361146px;}
.y2dc{bottom:894.871631px;}
.y1bf{bottom:895.293396px;}
.y4e{bottom:895.296038px;}
.y2ed{bottom:895.975959px;}
.y33a{bottom:896.657572px;}
.y256{bottom:896.824500px;}
.y27b{bottom:896.904169px;}
.y27d{bottom:896.910000px;}
.y3a1{bottom:897.677624px;}
.y6{bottom:899.122216px;}
.y27c{bottom:902.182500px;}
.y1e4{bottom:905.755036px;}
.y2a7{bottom:905.925036px;}
.y2ec{bottom:908.816384px;}
.y339{bottom:909.584071px;}
.y254{bottom:909.665957px;}
.y105{bottom:909.667800px;}
.y3a0{bottom:909.667822px;}
.y1f4{bottom:910.008046px;}
.y2db{bottom:910.603412px;}
.y1be{bottom:911.025178px;}
.y4d{bottom:911.029016px;}
.y27a{bottom:912.551069px;}
.y255{bottom:913.918500px;}
.y1e3{bottom:920.041500px;}
.y2a6{bottom:920.296500px;}
.y39f{bottom:921.572903px;}
.y2eb{bottom:921.656809px;}
.y338{bottom:922.424496px;}
.y253{bottom:922.591500px;}
.y104{bottom:922.593344px;}
.y174{bottom:923.783965px;}
.y5{bottom:924.973500px;}
.y25e{bottom:925.739828px;}
.y1bd{bottom:926.672078px;}
.y4c{bottom:926.675916px;}
.y39e{bottom:933.564058px;}
.y2ea{bottom:934.498190px;}
.y337{bottom:935.264921px;}
.y103{bottom:935.433769px;}
.y251{bottom:935.434537px;}
.y252{bottom:939.685500px;}
.y1f3{bottom:941.387924px;}
.y2da{bottom:941.983290px;}
.y1bc{bottom:942.403860px;}
.y4b{bottom:942.407698px;}
.y279{bottom:943.929751px;}
.y39d{bottom:945.469138px;}
.y336{bottom:948.106303px;}
.y102{bottom:948.275150px;}
.y250{bottom:948.275919px;}
.y2e9{bottom:954.226500px;}
.y173{bottom:955.163843px;}
.y25d{bottom:957.119706px;}
.y39c{bottom:957.459337px;}
.y1bb{bottom:958.051956px;}
.y4a{bottom:958.054598px;}
.y335{bottom:960.946728px;}
.y101{bottom:961.115575px;}
.y24f{bottom:961.116344px;}
.y39b{bottom:969.365374px;}
.y2d9{bottom:973.361972px;}
.y1ba{bottom:973.783738px;}
.y49{bottom:973.787576px;}
.y334{bottom:973.788109px;}
.y100{bottom:973.956000px;}
.y2e8{bottom:973.956036px;}
.y24e{bottom:973.956769px;}
.yfe{bottom:973.957075px;}
.yff{bottom:978.208500px;}
.y39a{bottom:981.355573px;}
.y333{bottom:986.628534px;}
.yfb{bottom:986.797075px;}
.yfd{bottom:986.797500px;}
.y24d{bottom:986.798150px;}
.y2e7{bottom:988.327500px;}
.y25c{bottom:988.498388px;}
.y2d8{bottom:989.008873px;}
.y278{bottom:989.426270px;}
.y1b9{bottom:989.430638px;}
.y48{bottom:989.434476px;}
.yfc{bottom:991.048500px;}
.y399{bottom:993.345772px;}
.y332{bottom:999.468959px;}
.yfa{bottom:999.637500px;}
.y24c{bottom:999.638575px;}
.yf8{bottom:999.638618px;}
.y3c{bottom:1003.719000px;}
.yf9{bottom:1003.890000px;}
.y2d7{bottom:1004.740655px;}
.y277{bottom:1005.158052px;}
.y1b8{bottom:1005.162420px;}
.y47{bottom:1005.166258px;}
.y398{bottom:1005.250852px;}
.y331{bottom:1012.395459px;}
.y24b{bottom:1012.479000px;}
.yf7{bottom:1012.479999px;}
.y24a{bottom:1016.730000px;}
.y397{bottom:1017.242007px;}
.y276{bottom:1020.804952px;}
.y1b7{bottom:1020.809320px;}
.y46{bottom:1020.813158px;}
.y330{bottom:1025.235884px;}
.yf6{bottom:1025.405542px;}
.y396{bottom:1029.147088px;}
.y2d6{bottom:1036.120532px;}
.y275{bottom:1036.537930px;}
.y1b6{bottom:1036.542298px;}
.y45{bottom:1036.546136px;}
.y32f{bottom:1038.076309px;}
.y395{bottom:1041.137286px;}
.yf5{bottom:1045.134808px;}
.y3b{bottom:1045.474500px;}
.y32e{bottom:1050.917690px;}
.y274{bottom:1052.184830px;}
.y1b5{bottom:1052.189198px;}
.y44{bottom:1052.193036px;}
.y394{bottom:1053.127485px;}
.yf4{bottom:1064.778000px;}
.y393{bottom:1065.033522px;}
.y273{bottom:1067.916612px;}
.y1b4{bottom:1067.920980px;}
.y43{bottom:1067.924818px;}
.y32d{bottom:1070.646000px;}
.y392{bottom:1077.023721px;}
.y272{bottom:1083.563512px;}
.y1b3{bottom:1083.567880px;}
.y42{bottom:1083.571718px;}
.yf3{bottom:1084.507536px;}
.y3a{bottom:1087.312500px;}
.y391{bottom:1088.928801px;}
.y32c{bottom:1090.375500px;}
.yf2{bottom:1098.879000px;}
.y271{bottom:1099.295294px;}
.y1b2{bottom:1099.300858px;}
.y41{bottom:1099.303500px;}
.y390{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y322{bottom:1128.628911px;}
.y3f{bottom:1128.630000px;}
.y38f{bottom:1128.636206px;}
.y3c7{bottom:1128.640776px;}
.y89{bottom:1128.642000px;}
.h8{height:23.521113px;}
.hf{height:26.462637px;}
.h10{height:31.524082px;}
.h9{height:33.622910px;}
.he{height:33.623438px;}
.hd{height:34.478653px;}
.ha{height:36.775371px;}
.h7{height:37.122363px;}
.h3{height:37.826367px;}
.h6{height:38.959629px;}
.hb{height:42.029824px;}
.h5{height:55.689609px;}
.h4{height:70.925098px;}
.hc{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.xb{left:62.758950px;}
.x13{left:63.949500px;}
.x1e{left:65.396903px;}
.x43{left:68.541535px;}
.x22{left:71.517515px;}
.xe{left:74.323389px;}
.x23{left:85.634157px;}
.x28{left:104.343300px;}
.x29{left:114.973200px;}
.x33{left:117.012839px;}
.x3f{left:118.968847px;}
.x1f{left:134.872350px;}
.x2e{left:157.918500px;}
.x20{left:163.191000px;}
.x21{left:170.079000px;}
.x3{left:173.395500px;}
.x19{left:175.774792px;}
.x4{left:179.433000px;}
.x41{left:182.407777px;}
.x5{left:183.940500px;}
.x6{left:189.807000px;}
.x40{left:198.139354px;}
.x42{left:212.936543px;}
.x2f{left:229.010423px;}
.x27{left:240.576000px;}
.x1d{left:244.743000px;}
.x1c{left:250.779012px;}
.x15{left:290.070000px;}
.x1b{left:295.767000px;}
.x30{left:299.507474px;}
.xd{left:302.995500px;}
.x16{left:310.819500px;}
.x1{left:317.321979px;}
.x7{left:324.169500px;}
.xf{left:336.667201px;}
.x14{left:342.624000px;}
.x31{left:370.599396px;}
.xc{left:384.884037px;}
.x3b{left:404.867881px;}
.x26{left:441.626979px;}
.x18{left:444.311979px;}
.x8{left:446.797500px;}
.x9{left:452.325000px;}
.xa{left:456.831000px;}
.x10{left:459.888932px;}
.x32{left:467.802000px;}
.x34{left:468.907500px;}
.x11{left:477.831221px;}
.x45{left:483.274065px;}
.x46{left:561.594345px;}
.x35{left:571.380000px;}
.x3a{left:581.326616px;}
.x1a{left:586.086300px;}
.x47{left:591.697520px;}
.x12{left:595.524891px;}
.x17{left:616.586979px;}
.x25{left:622.743000px;}
.x3e{left:625.718297px;}
.x36{left:639.664933px;}
.x3c{left:647.062898px;}
.x44{left:653.180642px;}
.x2d{left:654.547500px;}
.x2b{left:657.525000px;}
.x2c{left:665.688000px;}
.x37{left:708.206176px;}
.x39{left:727.848739px;}
.x38{left:776.236711px;}
.x2a{left:783.800570px;}
.x24{left:793.749646px;}
.x3d{left:802.257405px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.115099pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.229539pt;}
.ls41{letter-spacing:8.436591pt;}
.ls24{letter-spacing:8.692722pt;}
.ls1f{letter-spacing:8.994524pt;}
.ls32{letter-spacing:8.998774pt;}
.lsc{letter-spacing:9.296325pt;}
.ls35{letter-spacing:9.300575pt;}
.ls1d{letter-spacing:9.598126pt;}
.ls20{letter-spacing:9.602376pt;}
.ls7{letter-spacing:9.899927pt;}
.ls6{letter-spacing:9.904178pt;}
.lsf{letter-spacing:10.201728pt;}
.lsd{letter-spacing:10.205979pt;}
.ls3a{letter-spacing:10.503529pt;}
.ls34{letter-spacing:10.507780pt;}
.ls37{letter-spacing:10.805330pt;}
.ls1b{letter-spacing:10.809581pt;}
.lse{letter-spacing:11.111382pt;}
.ls1c{letter-spacing:11.115633pt;}
.ls16{letter-spacing:11.413183pt;}
.ls40{letter-spacing:11.417434pt;}
.ls14{letter-spacing:11.714984pt;}
.ls21{letter-spacing:11.719235pt;}
.ls19{letter-spacing:12.016785pt;}
.ls15{letter-spacing:12.021036pt;}
.ls18{letter-spacing:12.318587pt;}
.ls1a{letter-spacing:12.322837pt;}
.ls36{letter-spacing:12.616137pt;}
.ls12{letter-spacing:12.620388pt;}
.ls8{letter-spacing:12.624638pt;}
.ls13{letter-spacing:12.922189pt;}
.ls4{letter-spacing:12.926440pt;}
.ls3f{letter-spacing:13.223990pt;}
.ls3b{letter-spacing:13.228241pt;}
.ls3e{letter-spacing:13.530042pt;}
.ls30{letter-spacing:13.534292pt;}
.ls27{letter-spacing:13.831843pt;}
.ls3{letter-spacing:14.133644pt;}
.ls2b{letter-spacing:14.137895pt;}
.ls22{letter-spacing:14.435445pt;}
.ls23{letter-spacing:14.439696pt;}
.ls17{letter-spacing:14.737246pt;}
.ls2a{letter-spacing:14.741497pt;}
.ls11{letter-spacing:15.039047pt;}
.ls5{letter-spacing:15.043298pt;}
.ls33{letter-spacing:15.043302pt;}
.ls2c{letter-spacing:15.340848pt;}
.ls10{letter-spacing:15.345099pt;}
.ls29{letter-spacing:15.646900pt;}
.ls2e{letter-spacing:15.952952pt;}
.lsa{letter-spacing:16.250503pt;}
.ls9{letter-spacing:16.254753pt;}
.ls26{letter-spacing:16.552304pt;}
.ls2d{letter-spacing:16.556554pt;}
.ls25{letter-spacing:16.854105pt;}
.ls2f{letter-spacing:16.858356pt;}
.ls0{letter-spacing:16.922845pt;}
.ls28{letter-spacing:17.461958pt;}
.ls1e{letter-spacing:18.367361pt;}
.ls39{letter-spacing:18.669162pt;}
.ls38{letter-spacing:18.975214pt;}
.lsb{letter-spacing:22.027231pt;}
.ls3c{letter-spacing:22.299277pt;}
.ls31{letter-spacing:22.329032pt;}
.ls3d{letter-spacing:22.601078pt;}
.wsb{word-spacing:-27.417144pt;}
.wsc{word-spacing:-24.675120pt;}
.ws2{word-spacing:-21.538128pt;}
.ws6{word-spacing:-12.454610pt;}
.ws1{word-spacing:-11.897616pt;}
.ws4{word-spacing:-11.209008pt;}
.ws5{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsa{word-spacing:-9.963406pt;}
.ws3{word-spacing:-9.564000pt;}
.ws8{word-spacing:-8.943403pt;}
.ws9{word-spacing:-8.501200pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-15.416526pt;}
._b{margin-left:-4.199711pt;}
._a{margin-left:-3.307060pt;}
._5{margin-left:-2.142336pt;}
._4{margin-left:-1.247146pt;}
._2{width:1.517631pt;}
._1{width:3.055726pt;}
._9{width:4.029285pt;}
._8{width:5.390270pt;}
._7{width:6.285461pt;}
._10{width:7.215123pt;}
._6{width:8.144702pt;}
._c{width:9.682817pt;}
._d{width:10.830835pt;}
._16{width:11.919019pt;}
._12{width:13.347624pt;}
._0{width:14.460768pt;}
._f{width:15.578889pt;}
._e{width:16.560805pt;}
._11{width:18.060658pt;}
._14{width:19.373971pt;}
._2f{width:20.301412pt;}
._15{width:21.512894pt;}
._13{width:22.499061pt;}
._40{width:25.100502pt;}
._42{width:26.894182pt;}
._54{width:62.477019pt;}
._52{width:63.381547pt;}
._53{width:64.292875pt;}
._51{width:82.985314pt;}
._58{width:91.520519pt;}
._57{width:100.766424pt;}
._55{width:101.670952pt;}
._56{width:102.582280pt;}
._3f{width:154.130156pt;}
._19{width:155.231912pt;}
._28{width:157.095375pt;}
._35{width:170.411655pt;}
._23{width:171.316182pt;}
._25{width:172.383933pt;}
._24{width:174.029765pt;}
._1b{width:175.032907pt;}
._32{width:179.654159pt;}
._1a{width:180.864730pt;}
._3a{width:189.539355pt;}
._20{width:190.464285pt;}
._29{width:191.358612pt;}
._21{width:192.967039pt;}
._26{width:193.970180pt;}
._37{width:200.084243pt;}
._34{width:201.893299pt;}
._1e{width:203.103869pt;}
._1f{width:212.914254pt;}
._36{width:216.107305pt;}
._1d{width:219.126931pt;}
._59{width:223.142898pt;}
._7d{width:225.628649pt;}
._79{width:227.736947pt;}
._77{width:230.623954pt;}
._7a{width:232.565628pt;}
._78{width:234.500501pt;}
._5a{width:237.863576pt;}
._66{width:241.910147pt;}
._6c{width:243.511773pt;}
._38{width:246.045131pt;}
._7e{width:247.935798pt;}
._72{width:251.332877pt;}
._64{width:252.791683pt;}
._6b{width:253.985252pt;}
._5e{width:255.682091pt;}
._65{width:257.586360pt;}
._70{width:259.119976pt;}
._63{width:260.986840pt;}
._69{width:262.653075pt;}
._67{width:263.741229pt;}
._74{width:264.900792pt;}
._6f{width:266.056956pt;}
._5c{width:267.247124pt;}
._61{width:268.467896pt;}
._22{width:269.743076pt;}
._5d{width:271.120270pt;}
._6e{width:272.075805pt;}
._73{width:273.163959pt;}
._7b{width:274.391532pt;}
._76{width:276.156381pt;}
._75{width:277.346549pt;}
._62{width:278.329288pt;}
._5b{width:280.474991pt;}
._6a{width:281.797778pt;}
._5f{width:283.021950pt;}
._68{width:284.246123pt;}
._60{width:285.912358pt;}
._6d{width:287.003912pt;}
._7c{width:290.917865pt;}
._71{width:293.396815pt;}
._41{width:298.514537pt;}
._33{width:316.169829pt;}
._1c{width:330.985721pt;}
._43{width:333.502076pt;}
._4a{width:382.839640pt;}
._3b{width:407.030655pt;}
._8e{width:417.449726pt;}
._2a{width:421.843146pt;}
._7f{width:428.059223pt;}
._92{width:429.487425pt;}
._48{width:436.431205pt;}
._4e{width:437.417344pt;}
._50{width:441.157872pt;}
._45{width:444.524348pt;}
._8f{width:445.639705pt;}
._4c{width:448.302281pt;}
._8a{width:449.210209pt;}
._4b{width:454.559164pt;}
._4f{width:456.089380pt;}
._80{width:458.058258pt;}
._8c{width:460.139352pt;}
._44{width:461.496143pt;}
._49{width:463.502426pt;}
._47{width:467.205549pt;}
._46{width:468.637151pt;}
._82{width:470.504015pt;}
._87{width:472.503497pt;}
._91{width:475.094663pt;}
._89{width:476.216821pt;}
._88{width:478.522347pt;}
._81{width:479.678510pt;}
._8d{width:481.548774pt;}
._93{width:483.459844pt;}
._4d{width:485.163484pt;}
._39{width:486.567882pt;}
._8b{width:489.709926pt;}
._90{width:492.430310pt;}
._3e{width:493.742895pt;}
._84{width:494.919461pt;}
._83{width:497.531030pt;}
._3d{width:498.707596pt;}
._27{width:501.380373pt;}
._94{width:503.624690pt;}
._3c{width:507.378820pt;}
._2e{width:508.555386pt;}
._85{width:511.163554pt;}
._2c{width:513.520087pt;}
._2d{width:517.328624pt;}
._2b{width:522.191311pt;}
._86{width:541.778076pt;}
._18{width:614.062079pt;}
._31{width:616.493422pt;}
._17{width:622.087212pt;}
._30{width:627.313749pt;}
.fs5{font-size:23.788267pt;}
.fsb{font-size:26.763200pt;}
.fsc{font-size:31.882133pt;}
.fs6{font-size:34.004800pt;}
.fsa{font-size:34.005333pt;}
.fs7{font-size:37.193067pt;}
.fs4{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs3{font-size:39.402133pt;}
.fs8{font-size:42.507200pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs9{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y40{bottom:42.160000pt;}
.y2c3{bottom:69.695334pt;}
.yf1{bottom:69.701163pt;}
.y152{bottom:69.701770pt;}
.y80{bottom:69.703272pt;}
.y270{bottom:70.074292pt;}
.y21a{bottom:70.534287pt;}
.yad{bottom:74.387638pt;}
.y321{bottom:74.911661pt;}
.yde{bottom:76.277026pt;}
.y137{bottom:81.191466pt;}
.y249{bottom:81.342198pt;}
.y2c2{bottom:82.469969pt;}
.y4{bottom:83.106667pt;}
.yf0{bottom:83.684969pt;}
.y151{bottom:83.685576pt;}
.y7f{bottom:83.687078pt;}
.y26f{bottom:84.059160pt;}
.y219{bottom:84.518093pt;}
.yac{bottom:88.371444pt;}
.y320{bottom:89.727552pt;}
.ydd{bottom:90.260833pt;}
.y3{bottom:93.893333pt;}
.y136{bottom:95.099822pt;}
.y2c1{bottom:95.169048pt;}
.y248{bottom:95.250554pt;}
.yef{bottom:97.593325pt;}
.y150{bottom:97.593932pt;}
.y7e{bottom:97.595434pt;}
.y26e{bottom:97.967516pt;}
.y218{bottom:98.427512pt;}
.y31f{bottom:101.141263pt;}
.yab{bottom:102.279800pt;}
.ydc{bottom:104.170251pt;}
.y1f2{bottom:106.433240pt;}
.y3e{bottom:106.582787pt;}
.y2c0{bottom:107.943683pt;}
.y247{bottom:109.234360pt;}
.yee{bottom:111.577131pt;}
.y14f{bottom:111.577738pt;}
.y7d{bottom:111.579240pt;}
.y26d{bottom:111.951322pt;}
.y217{bottom:112.411318pt;}
.y31e{bottom:112.555825pt;}
.yaa{bottom:116.263606pt;}
.ydb{bottom:118.154057pt;}
.y1f1{bottom:119.132319pt;}
.y3d{bottom:119.281867pt;}
.y2bf{bottom:120.718318pt;}
.y246{bottom:123.218166pt;}
.y31d{bottom:124.045196pt;}
.y135{bottom:124.353277pt;}
.yed{bottom:125.486549pt;}
.y14e{bottom:125.487157pt;}
.y7c{bottom:125.488658pt;}
.y26c{bottom:125.859678pt;}
.y2d5{bottom:126.168773pt;}
.y216{bottom:126.319674pt;}
.y32b{bottom:127.521659pt;}
.ya9{bottom:130.171962pt;}
.y1f0{bottom:131.906954pt;}
.yda{bottom:132.062413pt;}
.y2be{bottom:133.492953pt;}
.y31c{bottom:135.458908pt;}
.y245{bottom:137.127584pt;}
.y32a{bottom:138.180464pt;}
.y134{bottom:138.261633pt;}
.yec{bottom:139.470355pt;}
.y14d{bottom:139.470963pt;}
.y7b{bottom:139.472464pt;}
.y2d4{bottom:140.152580pt;}
.y215{bottom:140.303480pt;}
.y39{bottom:141.958699pt;}
.ya8{bottom:144.156830pt;}
.y1ef{bottom:144.681588pt;}
.yd9{bottom:146.046219pt;}
.y2bd{bottom:146.192032pt;}
.y31b{bottom:146.873469pt;}
.y329{bottom:148.762758pt;}
.y244{bottom:151.111391pt;}
.y133{bottom:152.245439pt;}
.yeb{bottom:153.378711pt;}
.y14c{bottom:153.379319pt;}
.y7a{bottom:153.380820pt;}
.y26b{bottom:153.752903pt;}
.y2d3{bottom:154.060935pt;}
.y214{bottom:154.288349pt;}
.y38{bottom:154.733333pt;}
.y372{bottom:157.312802pt;}
.y1ee{bottom:157.380668pt;}
.yb0{bottom:158.065186pt;}
.y31a{bottom:158.287180pt;}
.y2bc{bottom:158.966667pt;}
.y328{bottom:159.420712pt;}
.yd8{bottom:159.955638pt;}
.y2bb{bottom:163.200000pt;}
.y243{bottom:165.019746pt;}
.y132{bottom:166.153795pt;}
.yea{bottom:167.362517pt;}
.y14b{bottom:167.363125pt;}
.y79{bottom:167.364626pt;}
.y26a{bottom:167.736709pt;}
.y2d2{bottom:168.045804pt;}
.y213{bottom:168.196705pt;}
.y371{bottom:168.727364pt;}
.y319{bottom:169.701741pt;}
.y327{bottom:170.078667pt;}
.y1ed{bottom:170.155302pt;}
.y2ba{bottom:171.742286pt;}
.ya7{bottom:172.048992pt;}
.yd7{bottom:173.939444pt;}
.y242{bottom:179.003553pt;}
.y131{bottom:180.138664pt;}
.y370{bottom:180.141075pt;}
.y318{bottom:181.115452pt;}
.ye9{bottom:181.271936pt;}
.y14a{bottom:181.272543pt;}
.y78{bottom:181.274045pt;}
.y269{bottom:181.645065pt;}
.y2d1{bottom:181.954160pt;}
.y212{bottom:182.180511pt;}
.y1ec{bottom:182.929937pt;}
.y2b9{bottom:184.441365pt;}
.yaf{bottom:185.957348pt;}
.yd6{bottom:187.847800pt;}
.y32{bottom:190.415082pt;}
.y36f{bottom:191.631297pt;}
.y317{bottom:192.529163pt;}
.y241{bottom:192.912971pt;}
.y130{bottom:194.047020pt;}
.y37{bottom:194.270486pt;}
.y326{bottom:194.502285pt;}
.ye8{bottom:195.255742pt;}
.y149{bottom:195.256349pt;}
.y77{bottom:195.257851pt;}
.y268{bottom:195.628871pt;}
.y1eb{bottom:195.704572pt;}
.y2d0{bottom:195.937966pt;}
.y88{bottom:196.088867pt;}
.y2b8{bottom:197.216000pt;}
.ya6{bottom:199.942217pt;}
.y2b7{bottom:201.449333pt;}
.yd5{bottom:201.831606pt;}
.y36e{bottom:203.045008pt;}
.y316{bottom:204.019385pt;}
.y240{bottom:206.896777pt;}
.y12f{bottom:208.030826pt;}
.y36{bottom:208.254292pt;}
.y1ea{bottom:208.403651pt;}
.ye7{bottom:209.164098pt;}
.y148{bottom:209.164705pt;}
.y76{bottom:209.166207pt;}
.y267{bottom:209.538289pt;}
.y2cf{bottom:209.846322pt;}
.y87{bottom:210.073735pt;}
.yae{bottom:213.850573pt;}
.y36d{bottom:214.458719pt;}
.yd4{bottom:215.739962pt;}
.y31{bottom:218.308307pt;}
.y23f{bottom:220.805133pt;}
.y1e9{bottom:221.178286pt;}
.y315{bottom:221.480000pt;}
.y35{bottom:222.162647pt;}
.y325{bottom:222.394447pt;}
.ye6{bottom:223.147904pt;}
.y147{bottom:223.148511pt;}
.y75{bottom:223.150013pt;}
.y266{bottom:223.522096pt;}
.y2ce{bottom:223.831191pt;}
.y86{bottom:223.982091pt;}
.y36c{bottom:225.873280pt;}
.ya5{bottom:227.834379pt;}
.yd3{bottom:229.724830pt;}
.y1e8{bottom:233.952921pt;}
.y23e{bottom:234.788939pt;}
.y34{bottom:236.147516pt;}
.y324{bottom:236.378254pt;}
.ye5{bottom:237.056260pt;}
.y146{bottom:237.056867pt;}
.y74{bottom:237.059431pt;}
.y12e{bottom:237.208830pt;}
.y36b{bottom:237.286991pt;}
.y265{bottom:237.430451pt;}
.y2cd{bottom:237.739547pt;}
.y85{bottom:237.965897pt;}
.y314{bottom:239.017397pt;}
.y2a5{bottom:239.321118pt;}
.ya4{bottom:241.742735pt;}
.yd2{bottom:243.633186pt;}
.y1e7{bottom:246.652000pt;}
.y23d{bottom:248.697295pt;}
.y36a{bottom:248.701553pt;}
.y30{bottom:250.055872pt;}
.ye4{bottom:251.041129pt;}
.y145{bottom:251.041736pt;}
.y73{bottom:251.043238pt;}
.y264{bottom:251.414258pt;}
.y2cc{bottom:251.723353pt;}
.y313{bottom:251.792032pt;}
.y84{bottom:251.874253pt;}
.y2a4{bottom:253.304924pt;}
.ya3{bottom:255.727604pt;}
.yd1{bottom:257.616992pt;}
.y369{bottom:260.115264pt;}
.y23c{bottom:262.682164pt;}
.y2f{bottom:264.039678pt;}
.y323{bottom:264.271478pt;}
.y312{bottom:264.566667pt;}
.ye3{bottom:264.949484pt;}
.y144{bottom:264.950092pt;}
.y172{bottom:264.951593pt;}
.y12d{bottom:265.100992pt;}
.y263{bottom:265.323676pt;}
.y2cb{bottom:265.631709pt;}
.y83{bottom:265.859122pt;}
.y2a3{bottom:267.214343pt;}
.ya2{bottom:269.635959pt;}
.yd0{bottom:271.525348pt;}
.y368{bottom:271.528975pt;}
.y1e2{bottom:276.514391pt;}
.y23b{bottom:276.590520pt;}
.y2e{bottom:277.948034pt;}
.y143{bottom:278.933898pt;}
.y72{bottom:278.935399pt;}
.y12c{bottom:279.085861pt;}
.y262{bottom:279.307482pt;}
.y2ca{bottom:279.615515pt;}
.y82{bottom:279.767478pt;}
.y2a2{bottom:281.198149pt;}
.y367{bottom:283.019197pt;}
.ya1{bottom:283.619766pt;}
.ycf{bottom:285.510217pt;}
.y1b1{bottom:288.079537pt;}
.y1e1{bottom:290.499260pt;}
.y23a{bottom:290.574326pt;}
.y2d{bottom:291.932903pt;}
.ye2{bottom:292.841646pt;}
.y142{bottom:292.842254pt;}
.y193{bottom:292.843755pt;}
.y12b{bottom:293.069667pt;}
.y261{bottom:293.215838pt;}
.y2c9{bottom:293.524933pt;}
.y81{bottom:293.751284pt;}
.y366{bottom:294.432908pt;}
.y2a1{bottom:295.106505pt;}
.ya0{bottom:297.528121pt;}
.yce{bottom:299.418573pt;}
.y38e{bottom:300.324063pt;}
.y1b0{bottom:302.064406pt;}
.y1e0{bottom:304.407616pt;}
.y239{bottom:304.482682pt;}
.y2c{bottom:305.841259pt;}
.y365{bottom:305.846619pt;}
.y311{bottom:306.142762pt;}
.y141{bottom:306.827123pt;}
.y171{bottom:306.828624pt;}
.y12a{bottom:306.978023pt;}
.y260{bottom:307.199644pt;}
.y2c8{bottom:307.508739pt;}
.y71{bottom:307.659640pt;}
.y2a0{bottom:309.090311pt;}
.y9f{bottom:311.512990pt;}
.y38d{bottom:311.737774pt;}
.ycd{bottom:313.402379pt;}
.y1af{bottom:315.972762pt;}
.y364{bottom:317.261180pt;}
.y1df{bottom:318.391422pt;}
.y238{bottom:318.467550pt;}
.y310{bottom:318.917397pt;}
.y2b{bottom:319.825065pt;}
.y140{bottom:320.735478pt;}
.y192{bottom:320.736980pt;}
.y129{bottom:320.961829pt;}
.y25f{bottom:321.108000pt;}
.y2c7{bottom:321.492545pt;}
.y70{bottom:321.643446pt;}
.y29f{bottom:322.998667pt;}
.y38c{bottom:323.152335pt;}
.ye1{bottom:324.061059pt;}
.y9e{bottom:325.421346pt;}
.ycc{bottom:327.310735pt;}
.y363{bottom:328.674891pt;}
.y1ae{bottom:329.956568pt;}
.y30f{bottom:331.692032pt;}
.y1de{bottom:332.299778pt;}
.y237{bottom:332.375906pt;}
.y2a{bottom:333.733421pt;}
.y38b{bottom:334.566047pt;}
.y13f{bottom:334.719285pt;}
.y191{bottom:334.720786pt;}
.y128{bottom:334.870185pt;}
.y170{bottom:335.023650pt;}
.y2c6{bottom:335.400901pt;}
.y6f{bottom:335.552865pt;}
.ye0{bottom:337.969415pt;}
.y9d{bottom:339.405152pt;}
.y362{bottom:340.089453pt;}
.ycb{bottom:341.295604pt;}
.y1ad{bottom:343.864924pt;}
.y30e{bottom:344.466667pt;}
.y38a{bottom:345.979758pt;}
.y1dd{bottom:346.284646pt;}
.y236{bottom:346.359712pt;}
.y29{bottom:347.718289pt;}
.y13e{bottom:348.627640pt;}
.y190{bottom:348.629142pt;}
.y127{bottom:348.855054pt;}
.y16f{bottom:348.932006pt;}
.y2c5{bottom:349.385770pt;}
.y6e{bottom:349.536671pt;}
.y29d{bottom:350.895853pt;}
.y2b6{bottom:351.042286pt;}
.y361{bottom:351.503164pt;}
.y9c{bottom:353.313508pt;}
.yca{bottom:355.203959pt;}
.y29e{bottom:355.653333pt;}
.y389{bottom:357.394319pt;}
.y1ac{bottom:357.849793pt;}
.y1dc{bottom:360.193002pt;}
.y235{bottom:360.268068pt;}
.y28{bottom:361.626645pt;}
.y13d{bottom:362.612509pt;}
.y18f{bottom:362.614011pt;}
.y126{bottom:362.763410pt;}
.y16e{bottom:362.915812pt;}
.y360{bottom:362.916875pt;}
.y30d{bottom:363.291719pt;}
.y6d{bottom:363.445026pt;}
.y2b5{bottom:363.816921pt;}
.y29c{bottom:364.879659pt;}
.ydf{bottom:365.861577pt;}
.y9b{bottom:367.297314pt;}
.y388{bottom:368.808030pt;}
.yc9{bottom:369.187766pt;}
.y1ab{bottom:371.758149pt;}
.y1db{bottom:374.176808pt;}
.y234{bottom:374.252937pt;}
.y35f{bottom:374.407097pt;}
.y30c{bottom:374.706280pt;}
.y27{bottom:375.610451pt;}
.y2b4{bottom:376.516000pt;}
.y13c{bottom:376.520865pt;}
.y18e{bottom:376.522367pt;}
.y125{bottom:376.747216pt;}
.y16d{bottom:376.824168pt;}
.y2c4{bottom:377.277932pt;}
.y6c{bottom:377.428833pt;}
.y29b{bottom:378.788015pt;}
.y387{bottom:380.222591pt;}
.y9a{bottom:381.206733pt;}
.yc8{bottom:383.171572pt;}
.y1aa{bottom:385.741955pt;}
.y35e{bottom:385.820808pt;}
.y30b{bottom:386.119992pt;}
.y1da{bottom:388.085164pt;}
.y233{bottom:388.161293pt;}
.y26{bottom:389.518807pt;}
.y13b{bottom:390.504671pt;}
.y18d{bottom:390.506173pt;}
.y124{bottom:390.655572pt;}
.y16c{bottom:390.809036pt;}
.y6b{bottom:391.338251pt;}
.y386{bottom:391.711963pt;}
.y29a{bottom:392.772884pt;}
.y99{bottom:395.190539pt;}
.yc7{bottom:397.080990pt;}
.y35d{bottom:397.235369pt;}
.y30a{bottom:397.609363pt;}
.y1a9{bottom:399.650311pt;}
.y1d9{bottom:402.068970pt;}
.y232{bottom:402.145099pt;}
.y385{bottom:403.125674pt;}
.y25{bottom:403.503676pt;}
.y13a{bottom:404.413027pt;}
.y211{bottom:404.414529pt;}
.y123{bottom:404.640441pt;}
.y16b{bottom:404.717392pt;}
.y3c6{bottom:404.717760pt;}
.y6a{bottom:405.322057pt;}
.y299{bottom:406.756690pt;}
.y35c{bottom:408.649080pt;}
.y309{bottom:409.023925pt;}
.y98{bottom:409.098895pt;}
.yc6{bottom:411.064796pt;}
.y1a8{bottom:413.635179pt;}
.y384{bottom:414.540235pt;}
.y3c5{bottom:415.375715pt;}
.y1d8{bottom:415.978389pt;}
.y231{bottom:416.053455pt;}
.y24{bottom:417.412032pt;}
.y210{bottom:418.399397pt;}
.y122{bottom:418.548796pt;}
.y16a{bottom:418.701198pt;}
.y69{bottom:419.230413pt;}
.y18c{bottom:419.759628pt;}
.y35b{bottom:420.062791pt;}
.y308{bottom:420.437636pt;}
.y298{bottom:420.665046pt;}
.y97{bottom:423.082701pt;}
.yc5{bottom:424.973152pt;}
.y383{bottom:425.953947pt;}
.y3c4{bottom:426.034519pt;}
.y1a7{bottom:427.543535pt;}
.y1d7{bottom:429.962195pt;}
.y230{bottom:430.038324pt;}
.y23{bottom:431.395838pt;}
.y35a{bottom:431.477353pt;}
.y307{bottom:431.851347pt;}
.y139{bottom:432.306252pt;}
.y20f{bottom:432.307753pt;}
.y121{bottom:432.532602pt;}
.y169{bottom:432.609554pt;}
.y68{bottom:433.214219pt;}
.y18b{bottom:433.667984pt;}
.y297{bottom:434.648852pt;}
.y3c3{bottom:436.616813pt;}
.y96{bottom:436.992119pt;}
.y382{bottom:437.368508pt;}
.yc4{bottom:438.956958pt;}
.y1a6{bottom:441.527341pt;}
.y359{bottom:442.891064pt;}
.y306{bottom:443.265908pt;}
.y1d6{bottom:443.870551pt;}
.y22f{bottom:443.946679pt;}
.y33{bottom:445.304194pt;}
.y20e{bottom:446.291559pt;}
.y120{bottom:446.440958pt;}
.y168{bottom:446.594423pt;}
.y67{bottom:447.123638pt;}
.y3c2{bottom:447.274767pt;}
.y18a{bottom:447.651790pt;}
.y296{bottom:448.558270pt;}
.y381{bottom:448.782219pt;}
.y95{bottom:450.975925pt;}
.yc3{bottom:452.865314pt;}
.y358{bottom:454.381286pt;}
.y305{bottom:454.679619pt;}
.y1a5{bottom:455.435697pt;}
.y1d5{bottom:457.854357pt;}
.y3c1{bottom:457.857061pt;}
.y22e{bottom:457.930486pt;}
.y22{bottom:459.288000pt;}
.y380{bottom:460.195930pt;}
.y138{bottom:460.198414pt;}
.y20d{bottom:460.199915pt;}
.y11f{bottom:460.425827pt;}
.y167{bottom:460.502779pt;}
.y66{bottom:461.107444pt;}
.y189{bottom:461.561208pt;}
.y295{bottom:462.542076pt;}
.y94{bottom:464.884281pt;}
.y357{bottom:465.794997pt;}
.y304{bottom:466.094180pt;}
.yc2{bottom:466.850183pt;}
.y3c0{bottom:468.515866pt;}
.y1a4{bottom:469.419503pt;}
.y37f{bottom:471.610491pt;}
.y1d4{bottom:471.763775pt;}
.y22d{bottom:471.838841pt;}
.y20c{bottom:474.184784pt;}
.y11e{bottom:474.334183pt;}
.y166{bottom:474.486585pt;}
.y65{bottom:475.015800pt;}
.y294{bottom:476.450432pt;}
.y356{bottom:477.208708pt;}
.y303{bottom:477.507892pt;}
.y93{bottom:478.868087pt;}
.y3bf{bottom:479.098159pt;}
.yc1{bottom:480.758539pt;}
.y37e{bottom:483.099863pt;}
.y1a3{bottom:483.328922pt;}
.y1d3{bottom:485.747581pt;}
.y22c{bottom:485.822647pt;}
.y20b{bottom:488.168590pt;}
.y11d{bottom:488.317989pt;}
.y165{bottom:488.394941pt;}
.y355{bottom:488.623269pt;}
.y302{bottom:488.997263pt;}
.y64{bottom:488.999606pt;}
.y188{bottom:489.453370pt;}
.y3be{bottom:489.756114pt;}
.y293{bottom:490.434238pt;}
.y92{bottom:492.777506pt;}
.y37d{bottom:494.513574pt;}
.yc0{bottom:494.742345pt;}
.y1a2{bottom:497.312728pt;}
.y1d2{bottom:499.655937pt;}
.y22b{bottom:499.732066pt;}
.y354{bottom:500.036980pt;}
.y301{bottom:500.411825pt;}
.y3bd{bottom:500.414068pt;}
.y20a{bottom:502.076946pt;}
.y11c{bottom:502.226345pt;}
.y63{bottom:502.907962pt;}
.y187{bottom:503.437176pt;}
.y292{bottom:504.343657pt;}
.y37c{bottom:505.928135pt;}
.y91{bottom:506.761312pt;}
.ybf{bottom:508.650701pt;}
.y3bc{bottom:510.997212pt;}
.y1a1{bottom:511.221084pt;}
.y353{bottom:511.451541pt;}
.y300{bottom:511.825536pt;}
.y21{bottom:512.202985pt;}
.y1d1{bottom:513.639743pt;}
.y22a{bottom:513.715872pt;}
.y209{bottom:516.060752pt;}
.y11b{bottom:516.211214pt;}
.y164{bottom:516.288166pt;}
.y62{bottom:516.892830pt;}
.y37b{bottom:517.341847pt;}
.y291{bottom:518.327463pt;}
.y90{bottom:520.669668pt;}
.y3bb{bottom:521.655167pt;}
.ybe{bottom:522.635570pt;}
.y352{bottom:522.865253pt;}
.y2ff{bottom:523.240097pt;}
.y20{bottom:524.902065pt;}
.y1a0{bottom:525.204890pt;}
.y1d0{bottom:527.548099pt;}
.y229{bottom:527.624228pt;}
.y37a{bottom:528.756408pt;}
.y208{bottom:529.969108pt;}
.y11a{bottom:530.119570pt;}
.y61{bottom:530.801186pt;}
.y186{bottom:531.330401pt;}
.y290{bottom:532.235819pt;}
.y3ba{bottom:532.237460pt;}
.y351{bottom:534.278964pt;}
.y8f{bottom:534.653474pt;}
.y2fe{bottom:534.653808pt;}
.ybd{bottom:536.543925pt;}
.y1f{bottom:537.676699pt;}
.y379{bottom:540.170119pt;}
.y1cf{bottom:541.532968pt;}
.y228{bottom:541.608034pt;}
.y3b9{bottom:542.895415pt;}
.y207{bottom:543.953977pt;}
.y119{bottom:544.103376pt;}
.y163{bottom:544.483191pt;}
.y60{bottom:544.784992pt;}
.y350{bottom:545.769186pt;}
.y2fd{bottom:546.067519pt;}
.y28f{bottom:546.219625pt;}
.y8e{bottom:548.638343pt;}
.y1e{bottom:550.451334pt;}
.ybc{bottom:550.527732pt;}
.y378{bottom:551.583830pt;}
.y19f{bottom:553.098115pt;}
.y3b8{bottom:553.554219pt;}
.y1ce{bottom:555.441324pt;}
.y227{bottom:555.517453pt;}
.y34f{bottom:557.182897pt;}
.y2fc{bottom:557.482080pt;}
.y206{bottom:557.862332pt;}
.y118{bottom:558.011732pt;}
.y162{bottom:558.466997pt;}
.y5f{bottom:558.693348pt;}
.y28e{bottom:560.127981pt;}
.y8d{bottom:562.546699pt;}
.y377{bottom:563.074052pt;}
.y1d{bottom:563.225969pt;}
.y3b7{bottom:564.136513pt;}
.ybb{bottom:564.436087pt;}
.y34e{bottom:568.596608pt;}
.y2fb{bottom:568.895792pt;}
.y1cd{bottom:569.425130pt;}
.y226{bottom:569.501259pt;}
.y185{bottom:570.107594pt;}
.y205{bottom:571.846139pt;}
.y117{bottom:571.995538pt;}
.y161{bottom:572.375353pt;}
.y5e{bottom:572.678217pt;}
.y28d{bottom:574.112850pt;}
.y3b6{bottom:574.794468pt;}
.y1c{bottom:575.925048pt;}
.y8c{bottom:576.530505pt;}
.yba{bottom:578.420956pt;}
.y34d{bottom:580.011169pt;}
.y376{bottom:580.534667pt;}
.y19e{bottom:580.990276pt;}
.y1cc{bottom:583.409999pt;}
.y225{bottom:583.485065pt;}
.y184{bottom:584.015950pt;}
.y3b5{bottom:585.377612pt;}
.y204{bottom:585.754494pt;}
.y116{bottom:585.904956pt;}
.y160{bottom:586.359159pt;}
.y2fa{bottom:586.432917pt;}
.y5d{bottom:586.586573pt;}
.y28c{bottom:588.021205pt;}
.y1b{bottom:588.699683pt;}
.y8b{bottom:590.438861pt;}
.y34c{bottom:591.424880pt;}
.yb9{bottom:592.329312pt;}
.y16{bottom:595.352305pt;}
.y3b4{bottom:596.035566pt;}
.y1cb{bottom:597.318355pt;}
.y224{bottom:597.393421pt;}
.y2f9{bottom:597.922289pt;}
.y183{bottom:598.000819pt;}
.y375{bottom:598.072064pt;}
.y203{bottom:599.739363pt;}
.y115{bottom:599.888762pt;}
.y15f{bottom:600.268578pt;}
.y5c{bottom:600.570379pt;}
.y1a{bottom:601.474318pt;}
.y28b{bottom:602.005012pt;}
.y34b{bottom:602.839441pt;}
.y8a{bottom:604.422667pt;}
.yb8{bottom:606.313118pt;}
.y3b3{bottom:606.617860pt;}
.y15{bottom:606.766017pt;}
.y19d{bottom:608.883501pt;}
.y2f8{bottom:609.336000pt;}
.y374{bottom:610.846699pt;}
.y1ca{bottom:611.302161pt;}
.y223{bottom:611.378289pt;}
.y182{bottom:611.909175pt;}
.y202{bottom:613.647719pt;}
.y114{bottom:613.797118pt;}
.y19{bottom:614.173397pt;}
.y15e{bottom:614.252384pt;}
.y34a{bottom:614.253153pt;}
.y5b{bottom:614.478735pt;}
.y28a{bottom:615.913367pt;}
.y3b2{bottom:617.275814pt;}
.y2b3{bottom:617.878905pt;}
.y14{bottom:618.180578pt;}
.yb7{bottom:620.221474pt;}
.y19c{bottom:622.791857pt;}
.y373{bottom:623.621333pt;}
.y1c9{bottom:625.210517pt;}
.y222{bottom:625.286645pt;}
.y349{bottom:625.666864pt;}
.y181{bottom:625.892981pt;}
.y2f7{bottom:626.872604pt;}
.y18{bottom:626.948032pt;}
.y201{bottom:627.631525pt;}
.y2e6{bottom:627.706975pt;}
.y113{bottom:627.780924pt;}
.y3b1{bottom:627.934619pt;}
.y15d{bottom:628.160740pt;}
.y5a{bottom:628.463604pt;}
.y2b2{bottom:629.292616pt;}
.y13{bottom:629.594289pt;}
.y289{bottom:629.898236pt;}
.yb6{bottom:634.206343pt;}
.yb1{bottom:634.280000pt;}
.y19b{bottom:636.775663pt;}
.y348{bottom:637.157086pt;}
.y3b0{bottom:638.516912pt;}
.y221{bottom:639.270451pt;}
.y2f6{bottom:639.571683pt;}
.y17{bottom:639.722667pt;}
.y180{bottom:639.801337pt;}
.y2b1{bottom:640.706327pt;}
.y12{bottom:641.008000pt;}
.y200{bottom:641.539881pt;}
.y2e5{bottom:641.615331pt;}
.y112{bottom:641.690343pt;}
.y15c{bottom:642.144546pt;}
.y59{bottom:642.447410pt;}
.y288{bottom:643.806592pt;}
.yb5{bottom:648.114699pt;}
.y347{bottom:648.570797pt;}
.y3af{bottom:649.174867pt;}
.y19a{bottom:650.760532pt;}
.y2b0{bottom:652.120888pt;}
.y2f5{bottom:652.346318pt;}
.y1c8{bottom:653.103741pt;}
.y220{bottom:653.178807pt;}
.y17f{bottom:653.786205pt;}
.y1ff{bottom:655.524750pt;}
.y2e4{bottom:655.600200pt;}
.y111{bottom:655.674149pt;}
.y15b{bottom:656.053964pt;}
.y58{bottom:656.355766pt;}
.y287{bottom:657.790398pt;}
.y3ae{bottom:659.757161pt;}
.y346{bottom:659.985358pt;}
.yb4{bottom:662.098505pt;}
.y199{bottom:664.668888pt;}
.y2f4{bottom:665.120953pt;}
.y11{bottom:665.725333pt;}
.y21f{bottom:667.163676pt;}
.y17e{bottom:667.694561pt;}
.y1fe{bottom:669.433106pt;}
.y2e3{bottom:669.508556pt;}
.y110{bottom:669.582505pt;}
.y2af{bottom:669.657163pt;}
.y15a{bottom:670.037771pt;}
.y57{bottom:670.339572pt;}
.y3ad{bottom:670.415965pt;}
.y345{bottom:671.399069pt;}
.y286{bottom:671.698754pt;}
.yb3{bottom:676.006861pt;}
.y2f3{bottom:677.820032pt;}
.y198{bottom:678.652694pt;}
.y2ae{bottom:681.071725pt;}
.y21e{bottom:681.072032pt;}
.y3ac{bottom:681.073920pt;}
.y17d{bottom:681.678367pt;}
.y344{bottom:682.812780pt;}
.y1fd{bottom:683.416912pt;}
.y2e2{bottom:683.492362pt;}
.y10f{bottom:683.566311pt;}
.y159{bottom:683.946126pt;}
.y1c7{bottom:684.246641pt;}
.y56{bottom:684.248990pt;}
.y285{bottom:685.683623pt;}
.yb2{bottom:689.990667pt;}
.y2f2{bottom:690.594667pt;}
.y3ab{bottom:691.656213pt;}
.y197{bottom:692.561050pt;}
.y343{bottom:694.227341pt;}
.y21d{bottom:695.055838pt;}
.y17c{bottom:695.586723pt;}
.y1fc{bottom:697.325268pt;}
.y2e1{bottom:697.400718pt;}
.y10e{bottom:697.474667pt;}
.y158{bottom:697.929933pt;}
.y1c6{bottom:698.230447pt;}
.y55{bottom:698.232796pt;}
.y2ad{bottom:698.608000pt;}
.y284{bottom:699.591979pt;}
.y3aa{bottom:702.315018pt;}
.y342{bottom:705.641053pt;}
.y196{bottom:706.545918pt;}
.y21c{bottom:708.964194pt;}
.y17b{bottom:709.571592pt;}
.y10{bottom:709.720000pt;}
.y1fb{bottom:711.310136pt;}
.y2e0{bottom:711.385587pt;}
.y157{bottom:711.838288pt;}
.y1c5{bottom:712.138803pt;}
.y54{bottom:712.141152pt;}
.y3a9{bottom:712.897312pt;}
.yf{bottom:713.498667pt;}
.y283{bottom:713.575785pt;}
.y2ac{bottom:716.144953pt;}
.y341{bottom:717.130424pt;}
.y10d{bottom:719.924000pt;}
.ye{bottom:721.133333pt;}
.y21b{bottom:722.948000pt;}
.y17a{bottom:723.479948pt;}
.y3a8{bottom:723.555266pt;}
.y10c{bottom:724.157333pt;}
.yd{bottom:724.913333pt;}
.y1fa{bottom:725.218492pt;}
.y2df{bottom:725.293943pt;}
.y156{bottom:725.823157pt;}
.y1c4{bottom:726.123672pt;}
.y53{bottom:726.124958pt;}
.y153{bottom:727.408000pt;}
.y282{bottom:727.484141pt;}
.y340{bottom:728.544986pt;}
.y2ab{bottom:728.844032pt;}
.yc{bottom:732.548000pt;}
.y10b{bottom:732.624000pt;}
.y3a7{bottom:734.137560pt;}
.y195{bottom:735.722861pt;}
.yb{bottom:736.328000pt;}
.y10a{bottom:736.857333pt;}
.y179{bottom:737.463754pt;}
.y1f9{bottom:739.202298pt;}
.y2de{bottom:739.277749pt;}
.y155{bottom:739.731513pt;}
.y33f{bottom:739.958697pt;}
.y1c3{bottom:740.032028pt;}
.y52{bottom:740.033314pt;}
.y281{bottom:741.469009pt;}
.y2aa{bottom:741.618667pt;}
.ya{bottom:743.962667pt;}
.y3a6{bottom:744.796365pt;}
.y9{bottom:747.741333pt;}
.y194{bottom:749.706667pt;}
.y2f1{bottom:750.690869pt;}
.y178{bottom:751.372110pt;}
.y33e{bottom:751.373258pt;}
.y109{bottom:751.523344pt;}
.y25b{bottom:752.806699pt;}
.y1f8{bottom:753.110654pt;}
.y1c2{bottom:754.014771pt;}
.y51{bottom:754.018183pt;}
.y280{bottom:755.377365pt;}
.y3a5{bottom:755.454319pt;}
.y2f0{bottom:762.105430pt;}
.y33d{bottom:762.786969pt;}
.y108{bottom:762.937056pt;}
.y177{bottom:765.355916pt;}
.y25a{bottom:765.581333pt;}
.y7{bottom:765.884000pt;}
.y3a4{bottom:766.036613pt;}
.y1f7{bottom:767.094460pt;}
.y2dd{bottom:767.170973pt;}
.y154{bottom:767.623675pt;}
.y1c1{bottom:767.923127pt;}
.y50{bottom:767.926539pt;}
.y27f{bottom:769.361171pt;}
.y259{bottom:769.814667pt;}
.y8{bottom:772.157333pt;}
.y2ef{bottom:773.594802pt;}
.y33c{bottom:774.200680pt;}
.y107{bottom:774.350767pt;}
.y3a3{bottom:776.694567pt;}
.y258{bottom:778.356000pt;}
.y176{bottom:779.340785pt;}
.y1e6{bottom:779.566318pt;}
.y2a9{bottom:779.792985pt;}
.y1f6{bottom:781.003879pt;}
.y1c0{bottom:781.906933pt;}
.y4f{bottom:781.910345pt;}
.y257{bottom:782.589333pt;}
.y27e{bottom:783.269527pt;}
.y2ee{bottom:785.008513pt;}
.y33b{bottom:785.615241pt;}
.y106{bottom:785.765328pt;}
.y3a2{bottom:787.277711pt;}
.y1e5{bottom:792.340953pt;}
.y2a8{bottom:792.567619pt;}
.y175{bottom:793.249141pt;}
.y1f5{bottom:794.987685pt;}
.y2dc{bottom:795.441449pt;}
.y1bf{bottom:795.816352pt;}
.y4e{bottom:795.818701pt;}
.y2ed{bottom:796.423074pt;}
.y33a{bottom:797.028953pt;}
.y256{bottom:797.177333pt;}
.y27b{bottom:797.248150pt;}
.y27d{bottom:797.253333pt;}
.y3a1{bottom:797.935665pt;}
.y6{bottom:799.219748pt;}
.y27c{bottom:801.940000pt;}
.y1e4{bottom:805.115587pt;}
.y2a7{bottom:805.266699pt;}
.y2ec{bottom:807.836786pt;}
.y339{bottom:808.519174pt;}
.y254{bottom:808.591962pt;}
.y105{bottom:808.593600pt;}
.y3a0{bottom:808.593620pt;}
.y1f4{bottom:808.896041pt;}
.y2db{bottom:809.425255pt;}
.y1be{bottom:809.800158pt;}
.y4d{bottom:809.803570pt;}
.y27a{bottom:811.156506pt;}
.y255{bottom:812.372000pt;}
.y1e3{bottom:817.814667pt;}
.y2a6{bottom:818.041333pt;}
.y39f{bottom:819.175914pt;}
.y2eb{bottom:819.250497pt;}
.y338{bottom:819.932886pt;}
.y253{bottom:820.081333pt;}
.y104{bottom:820.082972pt;}
.y174{bottom:821.141302pt;}
.y5{bottom:822.198667pt;}
.y25e{bottom:822.879847pt;}
.y1bd{bottom:823.708514pt;}
.y4c{bottom:823.711925pt;}
.y39e{bottom:829.834718pt;}
.y2ea{bottom:830.665058pt;}
.y337{bottom:831.346597pt;}
.y103{bottom:831.496683pt;}
.y251{bottom:831.497366pt;}
.y252{bottom:835.276000pt;}
.y1f3{bottom:836.789265pt;}
.y2da{bottom:837.318480pt;}
.y1bc{bottom:837.692320pt;}
.y4b{bottom:837.695732pt;}
.y279{bottom:839.048668pt;}
.y39d{bottom:840.417012pt;}
.y336{bottom:842.761158pt;}
.y102{bottom:842.911244pt;}
.y250{bottom:842.911928pt;}
.y2e9{bottom:848.201333pt;}
.y173{bottom:849.034527pt;}
.y25d{bottom:850.773072pt;}
.y39c{bottom:851.074966pt;}
.y1bb{bottom:851.601738pt;}
.y4a{bottom:851.604087pt;}
.y335{bottom:854.174869pt;}
.y101{bottom:854.324956pt;}
.y24f{bottom:854.325639pt;}
.y39b{bottom:861.658110pt;}
.y2d9{bottom:865.210642pt;}
.y1ba{bottom:865.585545pt;}
.y49{bottom:865.588956pt;}
.y334{bottom:865.589430pt;}
.y100{bottom:865.738667pt;}
.y2e8{bottom:865.738699pt;}
.y24e{bottom:865.739350pt;}
.yfe{bottom:865.739622pt;}
.yff{bottom:869.518667pt;}
.y39a{bottom:872.316065pt;}
.y333{bottom:877.003141pt;}
.yfb{bottom:877.152956pt;}
.yfd{bottom:877.153333pt;}
.y24d{bottom:877.153911pt;}
.y2e7{bottom:878.513333pt;}
.y25c{bottom:878.665234pt;}
.y2d8{bottom:879.118998pt;}
.y278{bottom:879.490018pt;}
.y1b9{bottom:879.493900pt;}
.y48{bottom:879.497312pt;}
.yfc{bottom:880.932000pt;}
.y399{bottom:882.974019pt;}
.y332{bottom:888.416853pt;}
.yfa{bottom:888.566667pt;}
.y24c{bottom:888.567622pt;}
.yf8{bottom:888.567660pt;}
.y3c{bottom:892.194667pt;}
.yf9{bottom:892.346667pt;}
.y2d7{bottom:893.102804pt;}
.y277{bottom:893.473824pt;}
.y1b8{bottom:893.477707pt;}
.y47{bottom:893.481118pt;}
.y398{bottom:893.556313pt;}
.y331{bottom:899.907074pt;}
.y24b{bottom:899.981333pt;}
.yf7{bottom:899.982221pt;}
.y24a{bottom:903.760000pt;}
.y397{bottom:904.215118pt;}
.y276{bottom:907.382180pt;}
.y1b7{bottom:907.386062pt;}
.y46{bottom:907.389474pt;}
.y330{bottom:911.320786pt;}
.yf6{bottom:911.471593pt;}
.y396{bottom:914.797411pt;}
.y2d6{bottom:920.996029pt;}
.y275{bottom:921.367049pt;}
.y1b6{bottom:921.370931pt;}
.y45{bottom:921.374343pt;}
.y32f{bottom:922.734497pt;}
.y395{bottom:925.455366pt;}
.yf5{bottom:929.008719pt;}
.y3b{bottom:929.310667pt;}
.y32e{bottom:934.149058pt;}
.y274{bottom:935.275405pt;}
.y1b5{bottom:935.279287pt;}
.y44{bottom:935.282699pt;}
.y394{bottom:936.113320pt;}
.yf4{bottom:946.469333pt;}
.y393{bottom:946.696464pt;}
.y273{bottom:949.259211pt;}
.y1b4{bottom:949.263093pt;}
.y43{bottom:949.266505pt;}
.y32d{bottom:951.685333pt;}
.y392{bottom:957.354418pt;}
.y272{bottom:963.167567pt;}
.y1b3{bottom:963.171449pt;}
.y42{bottom:963.174861pt;}
.yf3{bottom:964.006699pt;}
.y3a{bottom:966.500000pt;}
.y391{bottom:967.936712pt;}
.y32c{bottom:969.222667pt;}
.yf2{bottom:976.781333pt;}
.y271{bottom:977.151373pt;}
.y1b2{bottom:977.156318pt;}
.y41{bottom:977.158667pt;}
.y390{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y322{bottom:1003.225699pt;}
.y3f{bottom:1003.226667pt;}
.y38f{bottom:1003.232183pt;}
.y3c7{bottom:1003.236245pt;}
.y89{bottom:1003.237333pt;}
.h8{height:20.907656pt;}
.hf{height:23.522344pt;}
.h10{height:28.021406pt;}
.h9{height:29.887031pt;}
.he{height:29.887500pt;}
.hd{height:30.647691pt;}
.ha{height:32.689219pt;}
.h7{height:32.997656pt;}
.h3{height:33.623437pt;}
.h6{height:34.630781pt;}
.hb{height:37.359844pt;}
.h5{height:49.501875pt;}
.h4{height:63.044531pt;}
.hc{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.xb{left:55.785733pt;}
.x13{left:56.844000pt;}
.x1e{left:58.130580pt;}
.x43{left:60.925809pt;}
.x22{left:63.571125pt;}
.xe{left:66.065235pt;}
.x23{left:76.119250pt;}
.x28{left:92.749600pt;}
.x29{left:102.198400pt;}
.x33{left:104.011412pt;}
.x3f{left:105.750086pt;}
.x1f{left:119.886533pt;}
.x2e{left:140.372000pt;}
.x20{left:145.058667pt;}
.x21{left:151.181333pt;}
.x3{left:154.129333pt;}
.x19{left:156.244260pt;}
.x4{left:159.496000pt;}
.x41{left:162.140246pt;}
.x5{left:163.502667pt;}
.x6{left:168.717333pt;}
.x40{left:176.123870pt;}
.x42{left:189.276927pt;}
.x2f{left:203.564820pt;}
.x27{left:213.845333pt;}
.x1d{left:217.549333pt;}
.x1c{left:222.914677pt;}
.x15{left:257.840000pt;}
.x1b{left:262.904000pt;}
.x30{left:266.228866pt;}
.xd{left:269.329333pt;}
.x16{left:276.284000pt;}
.x1{left:282.063981pt;}
.x7{left:288.150667pt;}
.xf{left:299.259734pt;}
.x14{left:304.554667pt;}
.x31{left:329.421686pt;}
.xc{left:342.119144pt;}
.x3b{left:359.882561pt;}
.x26{left:392.557314pt;}
.x18{left:394.943981pt;}
.x8{left:397.153333pt;}
.x9{left:402.066667pt;}
.xa{left:406.072000pt;}
.x10{left:408.790162pt;}
.x32{left:415.824000pt;}
.x34{left:416.806667pt;}
.x11{left:424.738863pt;}
.x45{left:429.576947pt;}
.x46{left:499.194974pt;}
.x35{left:507.893333pt;}
.x3a{left:516.734770pt;}
.x1a{left:520.965600pt;}
.x47{left:525.953351pt;}
.x12{left:529.355458pt;}
.x17{left:548.077314pt;}
.x25{left:553.549333pt;}
.x3e{left:556.194042pt;}
.x36{left:568.591051pt;}
.x3c{left:575.167020pt;}
.x44{left:580.605015pt;}
.x2d{left:581.820000pt;}
.x2b{left:584.466667pt;}
.x2c{left:591.722667pt;}
.x37{left:629.516601pt;}
.x39{left:646.976657pt;}
.x38{left:689.988187pt;}
.x2a{left:696.711618pt;}
.x24{left:705.555241pt;}
.x3d{left:713.117693pt;}
}




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