
    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_0e4b5e46005b4929d33eabb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060000;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_4696df76ab35a09e707b1187.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_0e4b5e46005b4929d33eabb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.060000;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_b0ceabb764a62322dd0d2ddf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_6a6a25d4370f8b5c234b973c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.124023;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_cb143fb0e8ad107e24c8b930.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_d40eb7e399ee06aedcc0d3fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_c8c35b401f9bbc549e17c3f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_0e4b5e46005b4929d33eabb3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.060000;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_85a3d12a7f093898de8d770b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_0e4b5e46005b4929d33eabb3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.060000;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_327c480e594d8c7dd4e7d38c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.949074;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_3e1738e82e38fa4db9ca11fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.060000;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_84e6cd5dfd7efb2725e565ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_938a3780b641bbb7f755bdce.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7045608929398ca50551bbd9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a7effb63d4a881fb17be7b9f.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v7{vertical-align:-11.508000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.242000px;}
.v8{vertical-align:5.976000px;}
.v1{vertical-align:14.970000px;}
.v9{vertical-align:19.134000px;}
.v6{vertical-align:22.470000px;}
.v2{vertical-align:24.012000px;}
.v3{vertical-align:28.512000px;}
.v5{vertical-align:40.944000px;}
.ls3{letter-spacing:-7.200000px;}
.ls2{letter-spacing:-3.330000px;}
.ls6{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.342000px;}
.ls4{letter-spacing:-0.228000px;}
.ls5{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005364px;}
.lsa{letter-spacing:0.114000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.540000px;}
.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;}
}
.ws54{word-spacing:-48.000000px;}
.ws1{word-spacing:-37.080000px;}
.ws96{word-spacing:-23.976000px;}
.wsd5{word-spacing:-15.846000px;}
.wsed{word-spacing:-15.618000px;}
.ws53{word-spacing:-13.344000px;}
.ws2{word-spacing:-12.510000px;}
.ws121{word-spacing:-11.676000px;}
.wsd9{word-spacing:-10.008000px;}
.wsee{word-spacing:-9.238218px;}
.ws0{word-spacing:-9.180000px;}
.ws6{word-spacing:-7.200000px;}
.ws62{word-spacing:-6.000000px;}
.ws56{word-spacing:-4.800000px;}
.wse0{word-spacing:-4.500000px;}
.ws55{word-spacing:-1.968000px;}
.ws12{word-spacing:-1.920000px;}
.ws1b{word-spacing:-1.254000px;}
.wscd{word-spacing:-1.026000px;}
.wsfe{word-spacing:-0.912000px;}
.ws2e{word-spacing:-0.864000px;}
.wse2{word-spacing:-0.741000px;}
.wsbd{word-spacing:-0.627000px;}
.wsc6{word-spacing:-0.513000px;}
.ws103{word-spacing:-0.399000px;}
.ws4{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.342000px;}
.wse8{word-spacing:-0.285000px;}
.ws13{word-spacing:-0.270000px;}
.wsb2{word-spacing:-0.228000px;}
.wse1{word-spacing:-0.180000px;}
.ws90{word-spacing:-0.114000px;}
.wsea{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws20{word-spacing:0.057000px;}
.ws4b{word-spacing:0.114000px;}
.ws5d{word-spacing:0.228000px;}
.wsf{word-spacing:0.342000px;}
.ws17{word-spacing:0.399000px;}
.wsa{word-spacing:0.513000px;}
.ws4d{word-spacing:0.570000px;}
.wsfb{word-spacing:0.627000px;}
.ws66{word-spacing:0.684000px;}
.ws1a{word-spacing:0.741000px;}
.wsf5{word-spacing:0.798000px;}
.ws7e{word-spacing:0.912000px;}
.wsd{word-spacing:0.969000px;}
.wsd3{word-spacing:1.026000px;}
.wsc4{word-spacing:1.140000px;}
.ws119{word-spacing:1.197000px;}
.ws16{word-spacing:1.254000px;}
.ws110{word-spacing:1.311000px;}
.wsf2{word-spacing:1.368000px;}
.ws57{word-spacing:1.482000px;}
.ws49{word-spacing:1.596000px;}
.wse6{word-spacing:1.653000px;}
.wsf9{word-spacing:1.710000px;}
.ws18{word-spacing:1.767000px;}
.ws64{word-spacing:1.824000px;}
.wsfd{word-spacing:1.995000px;}
.wsb1{word-spacing:2.052000px;}
.ws97{word-spacing:2.166000px;}
.ws11c{word-spacing:2.280000px;}
.ws78{word-spacing:2.337000px;}
.ws116{word-spacing:2.394000px;}
.ws25{word-spacing:2.451000px;}
.wsc1{word-spacing:2.508000px;}
.ws83{word-spacing:2.565000px;}
.ws6d{word-spacing:2.622000px;}
.wsc0{word-spacing:2.793000px;}
.wse{word-spacing:2.850000px;}
.wsb0{word-spacing:2.964000px;}
.ws29{word-spacing:3.021000px;}
.ws32{word-spacing:3.192000px;}
.ws2a{word-spacing:3.249000px;}
.ws11{word-spacing:3.330000px;}
.ws1f{word-spacing:3.363000px;}
.ws19{word-spacing:3.420000px;}
.ws7f{word-spacing:3.477000px;}
.ws4c{word-spacing:3.591000px;}
.ws44{word-spacing:3.819000px;}
.ws21{word-spacing:3.876000px;}
.wsbe{word-spacing:3.933000px;}
.ws72{word-spacing:3.990000px;}
.ws7{word-spacing:4.047000px;}
.ws3f{word-spacing:4.104000px;}
.wsfc{word-spacing:4.161000px;}
.ws114{word-spacing:4.275000px;}
.ws48{word-spacing:4.332000px;}
.wsf6{word-spacing:4.446000px;}
.ws2c{word-spacing:4.464000px;}
.wsfa{word-spacing:4.503000px;}
.ws9a{word-spacing:4.617000px;}
.ws10b{word-spacing:4.674000px;}
.ws28{word-spacing:4.731000px;}
.wsac{word-spacing:4.959000px;}
.ws11e{word-spacing:5.130000px;}
.ws95{word-spacing:5.244000px;}
.ws27{word-spacing:5.301000px;}
.ws115{word-spacing:5.358000px;}
.ws26{word-spacing:5.415000px;}
.ws60{word-spacing:5.472000px;}
.ws3e{word-spacing:5.586000px;}
.wsec{word-spacing:5.643000px;}
.wsc5{word-spacing:5.700000px;}
.ws88{word-spacing:5.757000px;}
.ws9{word-spacing:5.928000px;}
.ws117{word-spacing:5.985000px;}
.wsaf{word-spacing:6.042000px;}
.ws2b{word-spacing:6.099000px;}
.wsf8{word-spacing:6.213000px;}
.ws89{word-spacing:6.270000px;}
.ws1e{word-spacing:6.327000px;}
.wsa2{word-spacing:6.384000px;}
.ws98{word-spacing:6.441000px;}
.wsb{word-spacing:6.612000px;}
.ws120{word-spacing:6.669000px;}
.wsab{word-spacing:6.726000px;}
.ws22{word-spacing:6.783000px;}
.wse7{word-spacing:6.954000px;}
.ws8{word-spacing:7.011000px;}
.ws100{word-spacing:7.068000px;}
.ws11d{word-spacing:7.125000px;}
.wsad{word-spacing:7.182000px;}
.ws5{word-spacing:7.200000px;}
.wseb{word-spacing:7.239000px;}
.ws1d{word-spacing:7.296000px;}
.wsf0{word-spacing:7.353000px;}
.wsdc{word-spacing:7.467000px;}
.ws10c{word-spacing:7.524000px;}
.ws24{word-spacing:7.581000px;}
.wsbf{word-spacing:7.638000px;}
.ws14{word-spacing:7.752000px;}
.wsc{word-spacing:7.809000px;}
.wsa5{word-spacing:7.848000px;}
.ws10{word-spacing:7.980000px;}
.ws8c{word-spacing:8.037000px;}
.ws73{word-spacing:8.094000px;}
.wsc3{word-spacing:8.151000px;}
.ws8f{word-spacing:8.265000px;}
.ws113{word-spacing:8.379000px;}
.ws31{word-spacing:8.493000px;}
.ws23{word-spacing:8.664000px;}
.ws47{word-spacing:8.721000px;}
.wsa1{word-spacing:8.778000px;}
.ws1c{word-spacing:8.835000px;}
.wsd2{word-spacing:8.949000px;}
.ws5a{word-spacing:9.006000px;}
.ws111{word-spacing:9.063000px;}
.wsba{word-spacing:9.120000px;}
.ws81{word-spacing:9.177000px;}
.ws7a{word-spacing:9.234000px;}
.ws41{word-spacing:9.291000px;}
.ws5c{word-spacing:9.348000px;}
.wsf1{word-spacing:9.462000px;}
.ws3a{word-spacing:9.519000px;}
.ws2d{word-spacing:9.576000px;}
.ws82{word-spacing:9.633000px;}
.ws3d{word-spacing:9.861000px;}
.ws43{word-spacing:9.918000px;}
.ws99{word-spacing:10.032000px;}
.ws84{word-spacing:10.146000px;}
.ws104{word-spacing:10.260000px;}
.ws92{word-spacing:10.431000px;}
.wsb3{word-spacing:10.488000px;}
.ws107{word-spacing:10.545000px;}
.ws71{word-spacing:10.602000px;}
.wsc7{word-spacing:10.659000px;}
.wsc9{word-spacing:10.716000px;}
.wscc{word-spacing:10.773000px;}
.wsb9{word-spacing:10.830000px;}
.ws76{word-spacing:10.944000px;}
.ws39{word-spacing:11.001000px;}
.wse5{word-spacing:11.286000px;}
.ws6a{word-spacing:11.343000px;}
.ws6e{word-spacing:11.457000px;}
.ws112{word-spacing:11.514000px;}
.ws70{word-spacing:11.571000px;}
.ws4f{word-spacing:11.628000px;}
.ws65{word-spacing:11.685000px;}
.ws5b{word-spacing:11.742000px;}
.ws91{word-spacing:11.970000px;}
.ws9f{word-spacing:12.027000px;}
.ws4e{word-spacing:12.198000px;}
.ws4a{word-spacing:12.312000px;}
.ws6c{word-spacing:12.369000px;}
.wsde{word-spacing:12.426000px;}
.ws58{word-spacing:12.540000px;}
.wsd0{word-spacing:12.711000px;}
.ws69{word-spacing:12.768000px;}
.wsff{word-spacing:12.825000px;}
.wsef{word-spacing:12.882000px;}
.ws86{word-spacing:12.996000px;}
.ws85{word-spacing:13.053000px;}
.wse9{word-spacing:13.110000px;}
.wsf7{word-spacing:13.167000px;}
.ws9c{word-spacing:13.338000px;}
.ws106{word-spacing:13.509000px;}
.ws11f{word-spacing:13.566000px;}
.ws3c{word-spacing:13.680000px;}
.wsdf{word-spacing:13.908000px;}
.ws75{word-spacing:14.136000px;}
.ws8e{word-spacing:14.250000px;}
.wscb{word-spacing:14.307000px;}
.ws9d{word-spacing:14.478000px;}
.ws35{word-spacing:14.535000px;}
.ws87{word-spacing:14.592000px;}
.wsca{word-spacing:14.706000px;}
.wse3{word-spacing:14.763000px;}
.ws38{word-spacing:15.105000px;}
.wsf3{word-spacing:15.162000px;}
.ws61{word-spacing:15.219000px;}
.ws94{word-spacing:15.276000px;}
.ws8b{word-spacing:15.504000px;}
.ws30{word-spacing:15.561000px;}
.ws118{word-spacing:15.618000px;}
.ws8d{word-spacing:15.846000px;}
.ws2f{word-spacing:15.903000px;}
.ws59{word-spacing:16.017000px;}
.ws68{word-spacing:16.074000px;}
.ws6f{word-spacing:16.302000px;}
.ws5f{word-spacing:16.530000px;}
.wsa4{word-spacing:16.587000px;}
.ws77{word-spacing:16.701000px;}
.ws3b{word-spacing:16.815000px;}
.ws45{word-spacing:17.157000px;}
.ws8a{word-spacing:17.214000px;}
.ws11b{word-spacing:17.271000px;}
.ws7d{word-spacing:17.499000px;}
.wsa3{word-spacing:17.784000px;}
.ws102{word-spacing:17.841000px;}
.wsa8{word-spacing:17.898000px;}
.wsc8{word-spacing:18.072000px;}
.ws79{word-spacing:18.183000px;}
.wsbb{word-spacing:18.297000px;}
.wsb7{word-spacing:18.411000px;}
.wsdd{word-spacing:18.468000px;}
.wsd1{word-spacing:18.639000px;}
.ws7c{word-spacing:18.696000px;}
.ws33{word-spacing:18.753000px;}
.wsae{word-spacing:19.095000px;}
.ws10a{word-spacing:19.551000px;}
.ws10f{word-spacing:20.007000px;}
.wsa9{word-spacing:20.121000px;}
.ws108{word-spacing:20.235000px;}
.wsc2{word-spacing:21.033000px;}
.ws40{word-spacing:21.147000px;}
.ws7b{word-spacing:21.204000px;}
.wsd4{word-spacing:21.717000px;}
.ws9b{word-spacing:21.774000px;}
.wsce{word-spacing:21.888000px;}
.wsb4{word-spacing:22.230000px;}
.wsaa{word-spacing:22.287000px;}
.ws105{word-spacing:22.344000px;}
.ws6b{word-spacing:22.572000px;}
.ws74{word-spacing:22.629000px;}
.ws37{word-spacing:22.971000px;}
.wsf4{word-spacing:23.085000px;}
.wsa6{word-spacing:23.427000px;}
.ws10d{word-spacing:23.655000px;}
.wscf{word-spacing:23.826000px;}
.wse4{word-spacing:24.681000px;}
.ws34{word-spacing:25.422000px;}
.ws36{word-spacing:25.821000px;}
.wsa0{word-spacing:26.163000px;}
.ws93{word-spacing:26.562000px;}
.wsa7{word-spacing:26.733000px;}
.ws9e{word-spacing:27.645000px;}
.ws101{word-spacing:27.759000px;}
.ws5e{word-spacing:28.215000px;}
.ws10e{word-spacing:28.557000px;}
.ws42{word-spacing:28.614000px;}
.ws11a{word-spacing:28.956000px;}
.ws109{word-spacing:29.355000px;}
.wsb8{word-spacing:30.153000px;}
.wsbc{word-spacing:30.495000px;}
.ws50{word-spacing:31.863000px;}
.ws67{word-spacing:33.402000px;}
.ws63{word-spacing:35.853000px;}
.ws46{word-spacing:36.024000px;}
.wsd7{word-spacing:56.448000px;}
.wsd8{word-spacing:64.932000px;}
.wsdb{word-spacing:73.458000px;}
.ws51{word-spacing:91.738800px;}
.ws52{word-spacing:120.222000px;}
.wsb6{word-spacing:172.641600px;}
.wsd6{word-spacing:193.296000px;}
.ws122{word-spacing:196.020000px;}
.wsb5{word-spacing:376.524000px;}
.wsda{word-spacing:533.880000px;}
.ws80{word-spacing:1210.776000px;}
._16{margin-left:-157.140000px;}
._15{margin-left:-129.120000px;}
._c{margin-left:-8.344800px;}
._5{margin-left:-6.468000px;}
._9{margin-left:-5.010300px;}
._8{margin-left:-3.874500px;}
._4{margin-left:-2.700000px;}
._0{margin-left:-1.116000px;}
._2{width:1.440000px;}
._1{width:3.339000px;}
._6{width:4.507200px;}
._3{width:6.174000px;}
._7{width:7.200000px;}
._e{width:127.860000px;}
._d{width:219.036000px;}
._b{width:252.432000px;}
._a{width:261.781200px;}
._f{width:419.334300px;}
._11{width:595.152000px;}
._10{width:606.576000px;}
._12{width:659.568000px;}
._13{width:797.558400px;}
._14{width:847.008000px;}
.fc4{color:rgb(42,62,146);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(101,98,99);}
.fc7{color:rgb(48,88,159);}
.fc1{color:rgb(223,15,135);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:26.235000px;}
.fsb{font-size:33.231000px;}
.fs0{font-size:36.000000px;}
.fsa{font-size:42.000000px;}
.fs1{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs9{font-size:69.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.345600px;}
.y2f{bottom:74.741700px;}
.y2d{bottom:76.843950px;}
.y2e{bottom:87.487950px;}
.y2c{bottom:87.643950px;}
.y289{bottom:91.372050px;}
.ya3{bottom:91.372200px;}
.y21d{bottom:91.385850px;}
.y1b0{bottom:91.386300px;}
.y14e{bottom:91.399950px;}
.y1cd{bottom:91.400550px;}
.y227{bottom:91.406850px;}
.y1c6{bottom:91.407000px;}
.y284{bottom:91.410300px;}
.y6b{bottom:91.416000px;}
.y134{bottom:111.702450px;}
.y13e{bottom:111.750450px;}
.y288{bottom:112.633050px;}
.ya2{bottom:112.633200px;}
.y21c{bottom:112.646850px;}
.y1af{bottom:112.647300px;}
.y2ac{bottom:112.654050px;}
.y14d{bottom:112.660950px;}
.y1cc{bottom:112.661550px;}
.y226{bottom:112.667850px;}
.y1c5{bottom:112.668000px;}
.y283{bottom:112.671300px;}
.y6a{bottom:112.677000px;}
.y133{bottom:125.946450px;}
.y139{bottom:125.970450px;}
.y13d{bottom:125.994450px;}
.y2e2{bottom:130.877550px;}
.y12f{bottom:133.050450px;}
.y136{bottom:133.086450px;}
.y287{bottom:133.894050px;}
.ya1{bottom:133.894200px;}
.y21b{bottom:133.907850px;}
.y1ae{bottom:133.908300px;}
.y2ab{bottom:133.915050px;}
.y14c{bottom:133.921950px;}
.y1cb{bottom:133.922550px;}
.y19{bottom:133.926600px;}
.y225{bottom:133.928850px;}
.y1c4{bottom:133.929000px;}
.y282{bottom:133.932300px;}
.y69{bottom:133.938750px;}
.y26{bottom:134.343150px;}
.y42{bottom:134.623050px;}
.y132{bottom:140.190450px;}
.y138{bottom:140.214450px;}
.y13c{bottom:140.238450px;}
.y2e1{bottom:145.126050px;}
.y25{bottom:147.089400px;}
.y12e{bottom:147.294450px;}
.y135{bottom:147.330450px;}
.y41{bottom:149.623050px;}
.y131{bottom:154.434450px;}
.y137{bottom:154.458450px;}
.y13b{bottom:154.482450px;}
.y286{bottom:155.155050px;}
.ya0{bottom:155.155200px;}
.y21a{bottom:155.168850px;}
.y1ad{bottom:155.169300px;}
.y2aa{bottom:155.176050px;}
.y14b{bottom:155.182950px;}
.y1ca{bottom:155.183550px;}
.y18{bottom:155.187600px;}
.y224{bottom:155.189850px;}
.y1c3{bottom:155.190000px;}
.y281{bottom:155.193300px;}
.y68{bottom:155.196750px;}
.y2e0{bottom:159.374550px;}
.y24{bottom:159.839400px;}
.y40{bottom:164.623050px;}
.y130{bottom:168.678450px;}
.y13a{bottom:168.726450px;}
.y23{bottom:171.848850px;}
.y2df{bottom:173.623050px;}
.y285{bottom:176.416050px;}
.y9f{bottom:176.416200px;}
.y219{bottom:176.429850px;}
.y1ac{bottom:176.430300px;}
.y2a9{bottom:176.437050px;}
.y14a{bottom:176.443950px;}
.y1c9{bottom:176.444550px;}
.y17{bottom:176.448600px;}
.y223{bottom:176.450850px;}
.y1c2{bottom:176.451000px;}
.y280{bottom:176.454300px;}
.y3f{bottom:179.623050px;}
.y22{bottom:184.595100px;}
.y2de{bottom:187.871550px;}
.y123{bottom:189.102450px;}
.y12d{bottom:189.150450px;}
.y3e{bottom:194.623050px;}
.y21{bottom:197.341350px;}
.y67{bottom:197.677050px;}
.y9e{bottom:197.677200px;}
.y218{bottom:197.690850px;}
.y1ab{bottom:197.691300px;}
.y2a8{bottom:197.698050px;}
.y149{bottom:197.704950px;}
.y1c8{bottom:197.705550px;}
.y16{bottom:197.709600px;}
.y222{bottom:197.711850px;}
.y1c1{bottom:197.712000px;}
.y27f{bottom:197.715300px;}
.y2dd{bottom:202.120050px;}
.y122{bottom:203.346450px;}
.y128{bottom:203.370450px;}
.y12c{bottom:203.394450px;}
.y3d{bottom:209.623050px;}
.y11e{bottom:210.450450px;}
.y125{bottom:210.486450px;}
.y2dc{bottom:216.368550px;}
.y121{bottom:217.590450px;}
.y127{bottom:217.614450px;}
.y12b{bottom:217.638450px;}
.y66{bottom:218.938050px;}
.y9d{bottom:218.938200px;}
.y217{bottom:218.951850px;}
.y1aa{bottom:218.952300px;}
.y2a7{bottom:218.959050px;}
.y148{bottom:218.965950px;}
.y1c7{bottom:218.966550px;}
.y15{bottom:218.970600px;}
.y221{bottom:218.972850px;}
.y1c0{bottom:218.973000px;}
.y27e{bottom:218.976300px;}
.y3c{bottom:224.623050px;}
.y11d{bottom:224.694450px;}
.y124{bottom:224.730450px;}
.y2db{bottom:230.617050px;}
.y120{bottom:231.834450px;}
.y126{bottom:231.858450px;}
.y12a{bottom:231.882450px;}
.y3b{bottom:239.623050px;}
.y65{bottom:240.199050px;}
.y9c{bottom:240.199200px;}
.y216{bottom:240.212850px;}
.y1a9{bottom:240.213300px;}
.y2a6{bottom:240.220050px;}
.y147{bottom:240.226950px;}
.y14{bottom:240.231600px;}
.y220{bottom:240.233850px;}
.y1bf{bottom:240.234000px;}
.y27d{bottom:240.237900px;}
.y2da{bottom:244.865550px;}
.y11f{bottom:246.078450px;}
.y129{bottom:246.126450px;}
.y3a{bottom:254.623050px;}
.y2d9{bottom:259.114050px;}
.y64{bottom:261.460050px;}
.y9b{bottom:261.460200px;}
.y215{bottom:261.473850px;}
.y1a8{bottom:261.474300px;}
.y2a5{bottom:261.481050px;}
.y146{bottom:261.487950px;}
.y13{bottom:261.492600px;}
.y21f{bottom:261.494850px;}
.y1be{bottom:261.495000px;}
.y27c{bottom:261.495900px;}
.y1ff{bottom:265.216800px;}
.y111{bottom:266.490450px;}
.y2d8{bottom:273.362550px;}
.y1fe{bottom:275.452800px;}
.y110{bottom:280.734450px;}
.y63{bottom:282.721050px;}
.y9a{bottom:282.721200px;}
.y214{bottom:282.734850px;}
.y1a7{bottom:282.735300px;}
.y2a4{bottom:282.742050px;}
.y145{bottom:282.748950px;}
.y12{bottom:282.753600px;}
.y21e{bottom:282.755850px;}
.y1bd{bottom:282.756000px;}
.y2d7{bottom:287.611050px;}
.y39{bottom:289.879050px;}
.y1e9{bottom:293.052600px;}
.y10f{bottom:294.978450px;}
.y118{bottom:295.026450px;}
.y2d6{bottom:301.859550px;}
.y11c{bottom:302.166450px;}
.y62{bottom:303.982050px;}
.y99{bottom:303.982200px;}
.y213{bottom:303.995850px;}
.y1a6{bottom:303.996300px;}
.y2a3{bottom:304.003050px;}
.y144{bottom:304.009950px;}
.y11{bottom:304.014600px;}
.y1bc{bottom:304.017600px;}
.y38{bottom:304.879050px;}
.y1fd{bottom:306.172800px;}
.y10e{bottom:309.222450px;}
.y117{bottom:309.270450px;}
.y2d5{bottom:316.108050px;}
.y108{bottom:316.314450px;}
.y113{bottom:316.374450px;}
.y11b{bottom:316.410450px;}
.y37{bottom:319.879050px;}
.y10d{bottom:323.466450px;}
.y116{bottom:323.514450px;}
.y61{bottom:325.243050px;}
.y98{bottom:325.243200px;}
.y212{bottom:325.256850px;}
.y1a5{bottom:325.257300px;}
.y2a2{bottom:325.264050px;}
.y143{bottom:325.270950px;}
.y10{bottom:325.275600px;}
.y1fc{bottom:326.644800px;}
.y1e8{bottom:326.748300px;}
.y2d4{bottom:330.356550px;}
.y107{bottom:330.558450px;}
.y112{bottom:330.618450px;}
.y11a{bottom:330.654450px;}
.y36{bottom:334.879050px;}
.y1f9{bottom:336.868800px;}
.y10c{bottom:337.710450px;}
.y115{bottom:337.758450px;}
.y1e7{bottom:340.992300px;}
.y2d3{bottom:344.605050px;}
.y119{bottom:344.898450px;}
.y22b{bottom:346.303050px;}
.y60{bottom:346.504050px;}
.y97{bottom:346.504200px;}
.y211{bottom:346.517850px;}
.y1a4{bottom:346.518300px;}
.y2a1{bottom:346.525050px;}
.y142{bottom:346.531950px;}
.yf{bottom:346.535400px;}
.y1fb{bottom:347.116800px;}
.y35{bottom:349.879050px;}
.y10b{bottom:351.954450px;}
.y114{bottom:352.002450px;}
.y1e6{bottom:355.236300px;}
.y2d2{bottom:358.853550px;}
.y34{bottom:364.879050px;}
.y10a{bottom:366.198450px;}
.y1fa{bottom:367.588800px;}
.y5f{bottom:367.765050px;}
.y96{bottom:367.765200px;}
.y210{bottom:367.778850px;}
.y1a3{bottom:367.779300px;}
.y2a0{bottom:367.786050px;}
.y141{bottom:367.792950px;}
.y22d{bottom:368.393550px;}
.y1e5{bottom:369.480300px;}
.y2d1{bottom:373.102050px;}
.y33{bottom:379.879050px;}
.y109{bottom:380.442450px;}
.y1e4{bottom:383.724300px;}
.y2d0{bottom:387.350550px;}
.y1f7{bottom:388.060800px;}
.y5e{bottom:389.026050px;}
.y95{bottom:389.026200px;}
.y20f{bottom:389.039850px;}
.y1a2{bottom:389.040300px;}
.y29f{bottom:389.047050px;}
.y140{bottom:389.053950px;}
.y2ff{bottom:394.492650px;}
.y32{bottom:394.879050px;}
.y1e3{bottom:397.968300px;}
.y22c{bottom:400.277550px;}
.yf8{bottom:400.842450px;}
.y2cf{bottom:401.599050px;}
.y1f6{bottom:402.304800px;}
.y20{bottom:404.285100px;}
.y2fe{bottom:408.741150px;}
.y1f2{bottom:409.408800px;}
.y31{bottom:409.879050px;}
.y5d{bottom:410.287050px;}
.y94{bottom:410.287200px;}
.y20e{bottom:410.300850px;}
.y1a1{bottom:410.301300px;}
.y29e{bottom:410.308050px;}
.y13f{bottom:410.314950px;}
.y1e2{bottom:412.212300px;}
.yf7{bottom:415.086450px;}
.y101{bottom:415.134450px;}
.y106{bottom:415.158450px;}
.y2ce{bottom:415.847550px;}
.y1f5{bottom:416.548800px;}
.y1f8{bottom:416.560800px;}
.y1f{bottom:417.031350px;}
.y255{bottom:418.777800px;}
.yfc{bottom:422.238450px;}
.y2fd{bottom:422.989650px;}
.y1f1{bottom:423.652800px;}
.y30{bottom:424.879050px;}
.y1e1{bottom:426.456300px;}
.y254{bottom:427.777800px;}
.yf6{bottom:429.330450px;}
.y100{bottom:429.378450px;}
.y105{bottom:429.402450px;}
.y1e{bottom:429.781350px;}
.y2cd{bottom:430.096050px;}
.ye{bottom:430.592850px;}
.y1f4{bottom:430.792800px;}
.y5c{bottom:431.548050px;}
.y93{bottom:431.548200px;}
.y20d{bottom:431.561850px;}
.y1a0{bottom:431.562300px;}
.y29d{bottom:431.569050px;}
.y74{bottom:435.529050px;}
.yf1{bottom:436.434450px;}
.yfb{bottom:436.482450px;}
.y2fc{bottom:437.238150px;}
.y1e0{bottom:440.700300px;}
.y1d{bottom:441.785100px;}
.yf5{bottom:443.574450px;}
.yff{bottom:443.622450px;}
.y104{bottom:443.646450px;}
.y2cc{bottom:444.344550px;}
.y1f3{bottom:445.036800px;}
.y273{bottom:448.166400px;}
.yf0{bottom:450.678450px;}
.yfa{bottom:450.726450px;}
.y2fb{bottom:451.486650px;}
.y5b{bottom:452.809050px;}
.y92{bottom:452.809200px;}
.y20c{bottom:452.822850px;}
.y19f{bottom:452.823300px;}
.y29c{bottom:452.830050px;}
.y1c{bottom:454.531350px;}
.yd{bottom:454.595850px;}
.y1df{bottom:454.944300px;}
.yf4{bottom:457.818450px;}
.yfe{bottom:457.866450px;}
.y103{bottom:457.890450px;}
.y2cb{bottom:458.593050px;}
.y272{bottom:460.167900px;}
.y73{bottom:464.026050px;}
.y19a{bottom:464.353200px;}
.yf9{bottom:464.970450px;}
.y1f0{bottom:465.508800px;}
.y2fa{bottom:465.735150px;}
.y1b{bottom:467.285100px;}
.y253{bottom:468.592800px;}
.y1de{bottom:469.188300px;}
.yf3{bottom:472.062450px;}
.yfd{bottom:472.110450px;}
.y102{bottom:472.134450px;}
.y1ed{bottom:472.624800px;}
.y2ca{bottom:472.841550px;}
.y5a{bottom:474.070050px;}
.y91{bottom:474.070200px;}
.y20b{bottom:474.083850px;}
.y19e{bottom:474.084300px;}
.y29b{bottom:474.091050px;}
.y22e{bottom:474.689550px;}
.y252{bottom:477.592800px;}
.yc{bottom:478.598850px;}
.y1ef{bottom:479.752800px;}
.y2f9{bottom:479.983650px;}
.y1a{bottom:480.031350px;}
.y1dd{bottom:483.432300px;}
.yf2{bottom:486.306450px;}
.y1ec{bottom:486.868800px;}
.y2c9{bottom:487.090050px;}
.y72{bottom:492.523050px;}
.y1ee{bottom:493.996800px;}
.y2f8{bottom:494.232150px;}
.y59{bottom:495.331050px;}
.y90{bottom:495.331200px;}
.y20a{bottom:495.344850px;}
.y19d{bottom:495.345300px;}
.y29a{bottom:495.352050px;}
.y1dc{bottom:497.676300px;}
.y271{bottom:498.125400px;}
.y195{bottom:498.786450px;}
.y2c8{bottom:501.338550px;}
.yb{bottom:502.601850px;}
.y18c{bottom:505.866450px;}
.ye3{bottom:506.730450px;}
.yef{bottom:506.778450px;}
.y2f7{bottom:508.480650px;}
.y270{bottom:510.126900px;}
.y1db{bottom:511.920300px;}
.y194{bottom:513.030450px;}
.y1eb{bottom:514.470900px;}
.y2c7{bottom:515.587050px;}
.y58{bottom:516.592050px;}
.y8f{bottom:516.592200px;}
.y209{bottom:516.605850px;}
.y19c{bottom:516.606300px;}
.y299{bottom:516.613050px;}
.y257{bottom:517.183800px;}
.y18b{bottom:520.110450px;}
.ye2{bottom:520.974450px;}
.y71{bottom:521.020050px;}
.yee{bottom:521.022450px;}
.y2f6{bottom:522.729150px;}
.y1da{bottom:526.164300px;}
.y256{bottom:526.183800px;}
.y193{bottom:527.274450px;}
.ye6{bottom:528.114450px;}
.ye9{bottom:528.126450px;}
.y2c6{bottom:529.835550px;}
.y184{bottom:534.330450px;}
.y18a{bottom:534.354450px;}
.y199{bottom:534.426450px;}
.ydd{bottom:535.194450px;}
.ye1{bottom:535.218450px;}
.yed{bottom:535.266450px;}
.y2f5{bottom:536.979150px;}
.y57{bottom:537.853050px;}
.y8e{bottom:537.853200px;}
.y298{bottom:537.856650px;}
.y208{bottom:537.866850px;}
.y19b{bottom:537.867300px;}
.y27b{bottom:538.379550px;}
.y1d9{bottom:540.408300px;}
.y192{bottom:541.518450px;}
.ye5{bottom:542.358450px;}
.ye8{bottom:542.370450px;}
.y251{bottom:542.824800px;}
.ya{bottom:543.572100px;}
.y2c5{bottom:544.084050px;}
.y1ea{bottom:544.727700px;}
.y23a{bottom:545.971200px;}
.y27a{bottom:547.379550px;}
.y183{bottom:548.574450px;}
.y189{bottom:548.598450px;}
.y198{bottom:548.670450px;}
.y22f{bottom:549.101550px;}
.ydc{bottom:549.438450px;}
.ye0{bottom:549.462450px;}
.yec{bottom:549.510450px;}
.y70{bottom:549.517050px;}
.y250{bottom:551.824800px;}
.y239{bottom:552.355200px;}
.y1d8{bottom:554.652300px;}
.y180{bottom:555.690450px;}
.y191{bottom:555.762450px;}
.ye4{bottom:556.602450px;}
.ye7{bottom:556.614450px;}
.y2c4{bottom:558.332550px;}
.y56{bottom:559.114050px;}
.y8d{bottom:559.114200px;}
.y297{bottom:559.117650px;}
.y207{bottom:559.127850px;}
.y182{bottom:562.818450px;}
.y188{bottom:562.842450px;}
.y197{bottom:562.914450px;}
.ydf{bottom:563.706450px;}
.yeb{bottom:563.754450px;}
.y238{bottom:564.356700px;}
.y23c{bottom:567.233700px;}
.y1d7{bottom:568.896300px;}
.y190{bottom:570.006450px;}
.y2c3{bottom:572.581050px;}
.y181{bottom:577.062450px;}
.y187{bottom:577.086450px;}
.y196{bottom:577.158450px;}
.yde{bottom:577.950450px;}
.yea{bottom:577.998450px;}
.y6f{bottom:578.014050px;}
.y23b{bottom:579.235200px;}
.y55{bottom:580.375050px;}
.y8c{bottom:580.375200px;}
.y296{bottom:580.378650px;}
.y206{bottom:580.388850px;}
.y2f4{bottom:581.029650px;}
.y1d6{bottom:583.140300px;}
.y18f{bottom:584.250450px;}
.y22a{bottom:585.020100px;}
.y2c2{bottom:586.829550px;}
.y186{bottom:591.330450px;}
.y9{bottom:596.087100px;}
.y1d5{bottom:597.384300px;}
.yd7{bottom:598.398450px;}
.y18e{bottom:598.494450px;}
.y2c1{bottom:601.078050px;}
.y54{bottom:601.636050px;}
.y8b{bottom:601.636200px;}
.y295{bottom:601.639650px;}
.y205{bottom:601.649850px;}
.y24f{bottom:602.530800px;}
.ydb{bottom:605.538450px;}
.y185{bottom:605.574450px;}
.y6e{bottom:606.511050px;}
.y1b5{bottom:607.043400px;}
.y23e{bottom:608.687700px;}
.y279{bottom:609.020550px;}
.y237{bottom:611.197200px;}
.y24e{bottom:611.530800px;}
.y1d4{bottom:611.628300px;}
.ycf{bottom:612.606450px;}
.yd2{bottom:612.618450px;}
.yd6{bottom:612.642450px;}
.y18d{bottom:612.738450px;}
.y2c0{bottom:615.326550px;}
.y278{bottom:618.020550px;}
.yda{bottom:619.782450px;}
.y23d{bottom:620.689200px;}
.y53{bottom:622.897050px;}
.y8a{bottom:622.897200px;}
.y294{bottom:622.900650px;}
.y204{bottom:622.910850px;}
.y236{bottom:623.198700px;}
.y275{bottom:623.442900px;}
.y230{bottom:623.513550px;}
.y1d3{bottom:625.872300px;}
.y277{bottom:626.642550px;}
.ycd{bottom:626.850450px;}
.yd1{bottom:626.862450px;}
.yd5{bottom:626.886450px;}
.y2bf{bottom:629.575050px;}
.y171{bottom:633.102450px;}
.yd9{bottom:634.026450px;}
.y1b8{bottom:634.555200px;}
.y6d{bottom:635.008050px;}
.y274{bottom:635.444400px;}
.y276{bottom:635.642550px;}
.y1d2{bottom:640.116300px;}
.y179{bottom:640.266450px;}
.yce{bottom:641.094450px;}
.yd0{bottom:641.106450px;}
.yd4{bottom:641.130450px;}
.y2{bottom:641.955750px;}
.y2be{bottom:643.823550px;}
.y52{bottom:644.158050px;}
.y89{bottom:644.158200px;}
.y293{bottom:644.161650px;}
.y203{bottom:644.171850px;}
.y241{bottom:646.960200px;}
.y170{bottom:647.346450px;}
.yd8{bottom:648.270450px;}
.y8{bottom:648.602100px;}
.y24d{bottom:652.633800px;}
.y1bb{bottom:653.129550px;}
.y24b{bottom:653.281800px;}
.y1d1{bottom:654.360300px;}
.y168{bottom:654.426450px;}
.y178{bottom:654.510450px;}
.y17f{bottom:654.546450px;}
.yd3{bottom:655.374450px;}
.y2bd{bottom:658.072050px;}
.y16f{bottom:661.590450px;}
.y24c{bottom:661.633800px;}
.y240{bottom:661.838700px;}
.y24a{bottom:662.281800px;}
.y6c{bottom:663.505050px;}
.y51{bottom:665.419050px;}
.y88{bottom:665.419200px;}
.y292{bottom:665.422650px;}
.y202{bottom:665.432850px;}
.y1d0{bottom:668.604300px;}
.y167{bottom:668.670450px;}
.y177{bottom:668.754450px;}
.y17e{bottom:668.790450px;}
.y1ba{bottom:670.139550px;}
.y2bc{bottom:672.320550px;}
.y23f{bottom:673.840200px;}
.yc7{bottom:675.798450px;}
.y16e{bottom:675.834450px;}
.y1b6{bottom:676.429950px;}
.y266{bottom:676.762800px;}
.y263{bottom:678.886800px;}
.y1b4{bottom:681.776850px;}
.y1cf{bottom:682.848300px;}
.y166{bottom:682.914450px;}
.ycc{bottom:682.950450px;}
.y176{bottom:682.998450px;}
.y17d{bottom:683.034450px;}
.y265{bottom:684.268800px;}
.y259{bottom:685.168800px;}
.y2bb{bottom:686.569050px;}
.y50{bottom:686.680050px;}
.y87{bottom:686.680200px;}
.y291{bottom:686.683650px;}
.y201{bottom:686.694600px;}
.y262{bottom:687.886800px;}
.y1b3{bottom:688.892850px;}
.y162{bottom:690.018450px;}
.yc6{bottom:690.042450px;}
.y16d{bottom:690.078450px;}
.y1b7{bottom:693.241950px;}
.y264{bottom:693.268800px;}
.y258{bottom:694.168800px;}
.y235{bottom:694.535700px;}
.y2f3{bottom:695.028150px;}
.yc1{bottom:697.146450px;}
.y165{bottom:697.158450px;}
.ycb{bottom:697.194450px;}
.y175{bottom:697.242450px;}
.y17c{bottom:697.278450px;}
.y231{bottom:697.925550px;}
.y26f{bottom:699.032400px;}
.y2ba{bottom:700.817550px;}
.y7{bottom:701.117100px;}
.ybe{bottom:704.262450px;}
.yc5{bottom:704.286450px;}
.y16c{bottom:704.322450px;}
.y26d{bottom:705.416400px;}
.y243{bottom:705.424200px;}
.y234{bottom:706.537200px;}
.y4f{bottom:707.941050px;}
.y86{bottom:707.941200px;}
.y290{bottom:707.944650px;}
.y200{bottom:707.952600px;}
.y2f2{bottom:709.276650px;}
.y26e{bottom:711.033900px;}
.yc0{bottom:711.390450px;}
.y164{bottom:711.402450px;}
.yca{bottom:711.438450px;}
.y174{bottom:711.486450px;}
.y17b{bottom:711.522450px;}
.y2b9{bottom:715.066050px;}
.y1ce{bottom:715.177950px;}
.y26c{bottom:717.417900px;}
.y242{bottom:717.425700px;}
.ybd{bottom:718.506450px;}
.yc4{bottom:718.530450px;}
.y16b{bottom:718.566450px;}
.y261{bottom:720.340800px;}
.y2f1{bottom:723.525150px;}
.ybf{bottom:725.634450px;}
.y163{bottom:725.646450px;}
.yc9{bottom:725.682450px;}
.y173{bottom:725.730450px;}
.y17a{bottom:725.766450px;}
.y4e{bottom:729.202050px;}
.y85{bottom:729.202200px;}
.y28f{bottom:729.205650px;}
.y2b8{bottom:729.314550px;}
.y260{bottom:729.340800px;}
.y2b{bottom:731.780250px;}
.yc3{bottom:732.774450px;}
.y16a{bottom:732.810450px;}
.y249{bottom:734.191800px;}
.y2f0{bottom:737.773650px;}
.yc8{bottom:739.926450px;}
.y172{bottom:739.974450px;}
.y245{bottom:740.504700px;}
.y248{bottom:743.191800px;}
.y2b7{bottom:743.563050px;}
.y1b2{bottom:744.116850px;}
.y2a{bottom:744.530250px;}
.y26b{bottom:744.749400px;}
.yc2{bottom:747.018450px;}
.y169{bottom:747.054450px;}
.y4d{bottom:750.463050px;}
.y84{bottom:750.463200px;}
.y28e{bottom:750.466650px;}
.y2ef{bottom:752.022150px;}
.y244{bottom:752.506200px;}
.y6{bottom:753.632100px;}
.y29{bottom:756.546900px;}
.y26a{bottom:756.750900px;}
.y2b6{bottom:757.811550px;}
.y2ee{bottom:766.270650px;}
.y154{bottom:767.418450px;}
.yb6{bottom:767.454450px;}
.y15c{bottom:767.466450px;}
.ybc{bottom:767.478450px;}
.y25b{bottom:768.679800px;}
.y1b9{bottom:768.997050px;}
.y247{bottom:769.201200px;}
.y28{bottom:769.293150px;}
.y4c{bottom:771.724050px;}
.y83{bottom:771.724200px;}
.y28d{bottom:771.727650px;}
.y2b5{bottom:772.060050px;}
.y232{bottom:772.337550px;}
.y161{bottom:774.618450px;}
.y25a{bottom:777.679800px;}
.y2ed{bottom:780.519150px;}
.y246{bottom:781.202700px;}
.yac{bottom:781.650450px;}
.y153{bottom:781.662450px;}
.yb0{bottom:781.674450px;}
.yb5{bottom:781.698450px;}
.y15b{bottom:781.710450px;}
.ybb{bottom:781.722450px;}
.y27{bottom:782.039400px;}
.y269{bottom:783.021900px;}
.y25f{bottom:783.961800px;}
.y2b4{bottom:786.308550px;}
.y160{bottom:788.862450px;}
.y268{bottom:791.526900px;}
.y25e{bottom:792.961800px;}
.y4b{bottom:792.985050px;}
.y82{bottom:792.985200px;}
.y28c{bottom:792.988650px;}
.y2ec{bottom:794.767650px;}
.ya8{bottom:795.882450px;}
.yab{bottom:795.894450px;}
.y152{bottom:795.906450px;}
.yaf{bottom:795.918450px;}
.y156{bottom:795.930450px;}
.yb4{bottom:795.942450px;}
.y15a{bottom:795.954450px;}
.yba{bottom:795.966450px;}
.y1b1{bottom:799.137150px;}
.y2b3{bottom:800.557050px;}
.y15f{bottom:803.106450px;}
.y267{bottom:803.528400px;}
.y7b{bottom:805.623000px;}
.y5{bottom:806.147100px;}
.y2eb{bottom:809.016150px;}
.ya7{bottom:810.126450px;}
.yaa{bottom:810.138450px;}
.y151{bottom:810.150450px;}
.yae{bottom:810.162450px;}
.y155{bottom:810.174450px;}
.yb3{bottom:810.186450px;}
.y159{bottom:810.198450px;}
.yb9{bottom:810.210450px;}
.y4a{bottom:814.246050px;}
.y81{bottom:814.246200px;}
.y28b{bottom:814.249650px;}
.y2b2{bottom:814.805550px;}
.y25d{bottom:816.577800px;}
.y15e{bottom:817.350450px;}
.y7a{bottom:820.623000px;}
.y2ea{bottom:823.264650px;}
.ya9{bottom:824.382450px;}
.y150{bottom:824.394450px;}
.yad{bottom:824.406450px;}
.yb2{bottom:824.430450px;}
.y158{bottom:824.442450px;}
.yb8{bottom:824.454450px;}
.y25c{bottom:825.577800px;}
.y2b1{bottom:829.054050px;}
.y15d{bottom:831.594450px;}
.y49{bottom:835.507050px;}
.y80{bottom:835.507200px;}
.y28a{bottom:835.510650px;}
.y79{bottom:835.623000px;}
.y2e9{bottom:837.513150px;}
.y14f{bottom:838.638450px;}
.yb1{bottom:838.674450px;}
.y157{bottom:838.686450px;}
.yb7{bottom:838.698450px;}
.y2b0{bottom:843.302550px;}
.y233{bottom:846.749550px;}
.y78{bottom:850.623000px;}
.y2e8{bottom:851.761650px;}
.y48{bottom:856.768050px;}
.y7f{bottom:856.768200px;}
.y2af{bottom:857.551050px;}
.y4{bottom:858.662100px;}
.ya6{bottom:859.106550px;}
.y2e7{bottom:866.010150px;}
.ya5{bottom:871.103550px;}
.y2ae{bottom:871.801050px;}
.y47{bottom:878.029050px;}
.y7e{bottom:878.029200px;}
.y2e6{bottom:880.258650px;}
.y77{bottom:880.623000px;}
.y229{bottom:884.318550px;}
.y2ad{bottom:886.051050px;}
.y2e5{bottom:894.507150px;}
.y76{bottom:895.623000px;}
.y46{bottom:899.290050px;}
.y7d{bottom:899.290200px;}
.y228{bottom:900.064800px;}
.ya4{bottom:901.360350px;}
.y2e4{bottom:908.755650px;}
.y75{bottom:910.623000px;}
.y3{bottom:911.177100px;}
.y45{bottom:920.551050px;}
.y7c{bottom:920.551200px;}
.y2e3{bottom:923.004150px;}
.y44{bottom:1068.618300px;}
.y43{bottom:1084.818300px;}
.h15{height:26.226562px;}
.hb{height:27.000000px;}
.h2{height:29.700000px;}
.h20{height:30.597656px;}
.h9{height:31.500000px;}
.h11{height:32.185547px;}
.h3{height:32.783203px;}
.h1a{height:32.976000px;}
.hd{height:34.968750px;}
.h17{height:35.742000px;}
.ha{height:35.991211px;}
.h14{height:36.000000px;}
.h8{height:40.231934px;}
.h7{height:41.525391px;}
.h13{height:42.914062px;}
.hc{height:43.008000px;}
.h1d{height:43.204103px;}
.h1e{height:43.259903px;}
.h1c{height:43.343303px;}
.he{height:44.550000px;}
.h1b{height:45.486000px;}
.hf{height:49.478111px;}
.h10{height:50.960449px;}
.h19{height:53.970000px;}
.h1f{height:54.000000px;}
.h12{height:56.197547px;}
.h6{height:64.800000px;}
.h5{height:69.300000px;}
.h16{height:71.426063px;}
.h18{height:76.944000px;}
.h4{height:148.500000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:693.000000px;}
.w0{width:693.070500px;}
.x0{left:0.000000px;}
.x2{left:20.332500px;}
.x1{left:55.275600px;}
.x12{left:63.779550px;}
.xe{left:69.365550px;}
.xc{left:71.073300px;}
.xd{left:76.524300px;}
.xb{left:77.938800px;}
.x10{left:80.343150px;}
.x1c{left:82.721400px;}
.x1b{left:84.031500px;}
.x23{left:85.889400px;}
.x9{left:90.100050px;}
.x1a{left:91.420500px;}
.x15{left:95.477400px;}
.x14{left:96.787350px;}
.x2c{left:98.645400px;}
.x24{left:100.133400px;}
.x13{left:104.176350px;}
.x8{left:109.316550px;}
.x6{left:110.551200px;}
.xa{left:114.526050px;}
.x26{left:132.454650px;}
.xf{left:149.267550px;}
.x21{left:155.047650px;}
.x1d{left:170.933400px;}
.x3e{left:175.659750px;}
.x41{left:177.081750px;}
.x16{left:183.689400px;}
.x3{left:199.842450px;}
.x3d{left:207.951750px;}
.x40{left:210.291750px;}
.x27{left:213.661350px;}
.x29{left:218.784450px;}
.x3f{left:223.341750px;}
.x28{left:227.471250px;}
.x3b{left:234.060750px;}
.x25{left:240.508950px;}
.x3c{left:242.079750px;}
.x4f{left:249.035700px;}
.x7{left:250.871700px;}
.x43{left:259.278750px;}
.x2f{left:272.427600px;}
.x1e{left:274.685400px;}
.x17{left:287.441400px;}
.x50{left:292.862700px;}
.x42{left:299.166750px;}
.x2a{left:302.736450px;}
.x30{left:307.508100px;}
.x2e{left:308.621100px;}
.x3a{left:316.131750px;}
.x52{left:329.434950px;}
.x39{left:331.206750px;}
.x4{left:339.450000px;}
.x53{left:351.295950px;}
.x2d{left:356.055150px;}
.x31{left:359.598600px;}
.x38{left:363.813750px;}
.x32{left:370.224600px;}
.x22{left:371.875650px;}
.x33{left:377.669100px;}
.x44{left:387.483750px;}
.x35{left:392.547600px;}
.x1f{left:396.389400px;}
.x45{left:399.921750px;}
.x18{left:409.145400px;}
.x51{left:413.503950px;}
.x34{left:414.870600px;}
.x46{left:422.457750px;}
.x36{left:434.001600px;}
.x37{left:446.759100px;}
.x47{left:467.727750px;}
.x4e{left:475.457700px;}
.x4a{left:476.547750px;}
.x4c{left:478.649700px;}
.x20{left:505.145400px;}
.x49{left:506.409750px;}
.x11{left:514.842450px;}
.x19{left:517.901400px;}
.x48{left:540.015750px;}
.x2b{left:550.200450px;}
.x4b{left:559.563750px;}
.x4d{left:567.941700px;}
.x5{left:654.678150px;}
@media print{
.v7{vertical-align:-10.229333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.770667pt;}
.v8{vertical-align:5.312000pt;}
.v1{vertical-align:13.306667pt;}
.v9{vertical-align:17.008000pt;}
.v6{vertical-align:19.973333pt;}
.v2{vertical-align:21.344000pt;}
.v3{vertical-align:25.344000pt;}
.v5{vertical-align:36.394667pt;}
.ls3{letter-spacing:-6.400000pt;}
.ls2{letter-spacing:-2.960000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls4{letter-spacing:-0.202667pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004768pt;}
.lsa{letter-spacing:0.101333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.480000pt;}
.ws54{word-spacing:-42.666667pt;}
.ws1{word-spacing:-32.960000pt;}
.ws96{word-spacing:-21.312000pt;}
.wsd5{word-spacing:-14.085333pt;}
.wsed{word-spacing:-13.882667pt;}
.ws53{word-spacing:-11.861333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws121{word-spacing:-10.378667pt;}
.wsd9{word-spacing:-8.896000pt;}
.wsee{word-spacing:-8.211749pt;}
.ws0{word-spacing:-8.160000pt;}
.ws6{word-spacing:-6.400000pt;}
.ws62{word-spacing:-5.333333pt;}
.ws56{word-spacing:-4.266667pt;}
.wse0{word-spacing:-4.000000pt;}
.ws55{word-spacing:-1.749333pt;}
.ws12{word-spacing:-1.706667pt;}
.ws1b{word-spacing:-1.114667pt;}
.wscd{word-spacing:-0.912000pt;}
.wsfe{word-spacing:-0.810667pt;}
.ws2e{word-spacing:-0.768000pt;}
.wse2{word-spacing:-0.658667pt;}
.wsbd{word-spacing:-0.557333pt;}
.wsc6{word-spacing:-0.456000pt;}
.ws103{word-spacing:-0.354667pt;}
.ws4{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.304000pt;}
.wse8{word-spacing:-0.253333pt;}
.ws13{word-spacing:-0.240000pt;}
.wsb2{word-spacing:-0.202667pt;}
.wse1{word-spacing:-0.160000pt;}
.ws90{word-spacing:-0.101333pt;}
.wsea{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws20{word-spacing:0.050667pt;}
.ws4b{word-spacing:0.101333pt;}
.ws5d{word-spacing:0.202667pt;}
.wsf{word-spacing:0.304000pt;}
.ws17{word-spacing:0.354667pt;}
.wsa{word-spacing:0.456000pt;}
.ws4d{word-spacing:0.506667pt;}
.wsfb{word-spacing:0.557333pt;}
.ws66{word-spacing:0.608000pt;}
.ws1a{word-spacing:0.658667pt;}
.wsf5{word-spacing:0.709333pt;}
.ws7e{word-spacing:0.810667pt;}
.wsd{word-spacing:0.861333pt;}
.wsd3{word-spacing:0.912000pt;}
.wsc4{word-spacing:1.013333pt;}
.ws119{word-spacing:1.064000pt;}
.ws16{word-spacing:1.114667pt;}
.ws110{word-spacing:1.165333pt;}
.wsf2{word-spacing:1.216000pt;}
.ws57{word-spacing:1.317333pt;}
.ws49{word-spacing:1.418667pt;}
.wse6{word-spacing:1.469333pt;}
.wsf9{word-spacing:1.520000pt;}
.ws18{word-spacing:1.570667pt;}
.ws64{word-spacing:1.621333pt;}
.wsfd{word-spacing:1.773333pt;}
.wsb1{word-spacing:1.824000pt;}
.ws97{word-spacing:1.925333pt;}
.ws11c{word-spacing:2.026667pt;}
.ws78{word-spacing:2.077333pt;}
.ws116{word-spacing:2.128000pt;}
.ws25{word-spacing:2.178667pt;}
.wsc1{word-spacing:2.229333pt;}
.ws83{word-spacing:2.280000pt;}
.ws6d{word-spacing:2.330667pt;}
.wsc0{word-spacing:2.482667pt;}
.wse{word-spacing:2.533333pt;}
.wsb0{word-spacing:2.634667pt;}
.ws29{word-spacing:2.685333pt;}
.ws32{word-spacing:2.837333pt;}
.ws2a{word-spacing:2.888000pt;}
.ws11{word-spacing:2.960000pt;}
.ws1f{word-spacing:2.989333pt;}
.ws19{word-spacing:3.040000pt;}
.ws7f{word-spacing:3.090667pt;}
.ws4c{word-spacing:3.192000pt;}
.ws44{word-spacing:3.394667pt;}
.ws21{word-spacing:3.445333pt;}
.wsbe{word-spacing:3.496000pt;}
.ws72{word-spacing:3.546667pt;}
.ws7{word-spacing:3.597333pt;}
.ws3f{word-spacing:3.648000pt;}
.wsfc{word-spacing:3.698667pt;}
.ws114{word-spacing:3.800000pt;}
.ws48{word-spacing:3.850667pt;}
.wsf6{word-spacing:3.952000pt;}
.ws2c{word-spacing:3.968000pt;}
.wsfa{word-spacing:4.002667pt;}
.ws9a{word-spacing:4.104000pt;}
.ws10b{word-spacing:4.154667pt;}
.ws28{word-spacing:4.205333pt;}
.wsac{word-spacing:4.408000pt;}
.ws11e{word-spacing:4.560000pt;}
.ws95{word-spacing:4.661333pt;}
.ws27{word-spacing:4.712000pt;}
.ws115{word-spacing:4.762667pt;}
.ws26{word-spacing:4.813333pt;}
.ws60{word-spacing:4.864000pt;}
.ws3e{word-spacing:4.965333pt;}
.wsec{word-spacing:5.016000pt;}
.wsc5{word-spacing:5.066667pt;}
.ws88{word-spacing:5.117333pt;}
.ws9{word-spacing:5.269333pt;}
.ws117{word-spacing:5.320000pt;}
.wsaf{word-spacing:5.370667pt;}
.ws2b{word-spacing:5.421333pt;}
.wsf8{word-spacing:5.522667pt;}
.ws89{word-spacing:5.573333pt;}
.ws1e{word-spacing:5.624000pt;}
.wsa2{word-spacing:5.674667pt;}
.ws98{word-spacing:5.725333pt;}
.wsb{word-spacing:5.877333pt;}
.ws120{word-spacing:5.928000pt;}
.wsab{word-spacing:5.978667pt;}
.ws22{word-spacing:6.029333pt;}
.wse7{word-spacing:6.181333pt;}
.ws8{word-spacing:6.232000pt;}
.ws100{word-spacing:6.282667pt;}
.ws11d{word-spacing:6.333333pt;}
.wsad{word-spacing:6.384000pt;}
.ws5{word-spacing:6.400000pt;}
.wseb{word-spacing:6.434667pt;}
.ws1d{word-spacing:6.485333pt;}
.wsf0{word-spacing:6.536000pt;}
.wsdc{word-spacing:6.637333pt;}
.ws10c{word-spacing:6.688000pt;}
.ws24{word-spacing:6.738667pt;}
.wsbf{word-spacing:6.789333pt;}
.ws14{word-spacing:6.890667pt;}
.wsc{word-spacing:6.941333pt;}
.wsa5{word-spacing:6.976000pt;}
.ws10{word-spacing:7.093333pt;}
.ws8c{word-spacing:7.144000pt;}
.ws73{word-spacing:7.194667pt;}
.wsc3{word-spacing:7.245333pt;}
.ws8f{word-spacing:7.346667pt;}
.ws113{word-spacing:7.448000pt;}
.ws31{word-spacing:7.549333pt;}
.ws23{word-spacing:7.701333pt;}
.ws47{word-spacing:7.752000pt;}
.wsa1{word-spacing:7.802667pt;}
.ws1c{word-spacing:7.853333pt;}
.wsd2{word-spacing:7.954667pt;}
.ws5a{word-spacing:8.005333pt;}
.ws111{word-spacing:8.056000pt;}
.wsba{word-spacing:8.106667pt;}
.ws81{word-spacing:8.157333pt;}
.ws7a{word-spacing:8.208000pt;}
.ws41{word-spacing:8.258667pt;}
.ws5c{word-spacing:8.309333pt;}
.wsf1{word-spacing:8.410667pt;}
.ws3a{word-spacing:8.461333pt;}
.ws2d{word-spacing:8.512000pt;}
.ws82{word-spacing:8.562667pt;}
.ws3d{word-spacing:8.765333pt;}
.ws43{word-spacing:8.816000pt;}
.ws99{word-spacing:8.917333pt;}
.ws84{word-spacing:9.018667pt;}
.ws104{word-spacing:9.120000pt;}
.ws92{word-spacing:9.272000pt;}
.wsb3{word-spacing:9.322667pt;}
.ws107{word-spacing:9.373333pt;}
.ws71{word-spacing:9.424000pt;}
.wsc7{word-spacing:9.474667pt;}
.wsc9{word-spacing:9.525333pt;}
.wscc{word-spacing:9.576000pt;}
.wsb9{word-spacing:9.626667pt;}
.ws76{word-spacing:9.728000pt;}
.ws39{word-spacing:9.778667pt;}
.wse5{word-spacing:10.032000pt;}
.ws6a{word-spacing:10.082667pt;}
.ws6e{word-spacing:10.184000pt;}
.ws112{word-spacing:10.234667pt;}
.ws70{word-spacing:10.285333pt;}
.ws4f{word-spacing:10.336000pt;}
.ws65{word-spacing:10.386667pt;}
.ws5b{word-spacing:10.437333pt;}
.ws91{word-spacing:10.640000pt;}
.ws9f{word-spacing:10.690667pt;}
.ws4e{word-spacing:10.842667pt;}
.ws4a{word-spacing:10.944000pt;}
.ws6c{word-spacing:10.994667pt;}
.wsde{word-spacing:11.045333pt;}
.ws58{word-spacing:11.146667pt;}
.wsd0{word-spacing:11.298667pt;}
.ws69{word-spacing:11.349333pt;}
.wsff{word-spacing:11.400000pt;}
.wsef{word-spacing:11.450667pt;}
.ws86{word-spacing:11.552000pt;}
.ws85{word-spacing:11.602667pt;}
.wse9{word-spacing:11.653333pt;}
.wsf7{word-spacing:11.704000pt;}
.ws9c{word-spacing:11.856000pt;}
.ws106{word-spacing:12.008000pt;}
.ws11f{word-spacing:12.058667pt;}
.ws3c{word-spacing:12.160000pt;}
.wsdf{word-spacing:12.362667pt;}
.ws75{word-spacing:12.565333pt;}
.ws8e{word-spacing:12.666667pt;}
.wscb{word-spacing:12.717333pt;}
.ws9d{word-spacing:12.869333pt;}
.ws35{word-spacing:12.920000pt;}
.ws87{word-spacing:12.970667pt;}
.wsca{word-spacing:13.072000pt;}
.wse3{word-spacing:13.122667pt;}
.ws38{word-spacing:13.426667pt;}
.wsf3{word-spacing:13.477333pt;}
.ws61{word-spacing:13.528000pt;}
.ws94{word-spacing:13.578667pt;}
.ws8b{word-spacing:13.781333pt;}
.ws30{word-spacing:13.832000pt;}
.ws118{word-spacing:13.882667pt;}
.ws8d{word-spacing:14.085333pt;}
.ws2f{word-spacing:14.136000pt;}
.ws59{word-spacing:14.237333pt;}
.ws68{word-spacing:14.288000pt;}
.ws6f{word-spacing:14.490667pt;}
.ws5f{word-spacing:14.693333pt;}
.wsa4{word-spacing:14.744000pt;}
.ws77{word-spacing:14.845333pt;}
.ws3b{word-spacing:14.946667pt;}
.ws45{word-spacing:15.250667pt;}
.ws8a{word-spacing:15.301333pt;}
.ws11b{word-spacing:15.352000pt;}
.ws7d{word-spacing:15.554667pt;}
.wsa3{word-spacing:15.808000pt;}
.ws102{word-spacing:15.858667pt;}
.wsa8{word-spacing:15.909333pt;}
.wsc8{word-spacing:16.064000pt;}
.ws79{word-spacing:16.162667pt;}
.wsbb{word-spacing:16.264000pt;}
.wsb7{word-spacing:16.365333pt;}
.wsdd{word-spacing:16.416000pt;}
.wsd1{word-spacing:16.568000pt;}
.ws7c{word-spacing:16.618667pt;}
.ws33{word-spacing:16.669333pt;}
.wsae{word-spacing:16.973333pt;}
.ws10a{word-spacing:17.378667pt;}
.ws10f{word-spacing:17.784000pt;}
.wsa9{word-spacing:17.885333pt;}
.ws108{word-spacing:17.986667pt;}
.wsc2{word-spacing:18.696000pt;}
.ws40{word-spacing:18.797333pt;}
.ws7b{word-spacing:18.848000pt;}
.wsd4{word-spacing:19.304000pt;}
.ws9b{word-spacing:19.354667pt;}
.wsce{word-spacing:19.456000pt;}
.wsb4{word-spacing:19.760000pt;}
.wsaa{word-spacing:19.810667pt;}
.ws105{word-spacing:19.861333pt;}
.ws6b{word-spacing:20.064000pt;}
.ws74{word-spacing:20.114667pt;}
.ws37{word-spacing:20.418667pt;}
.wsf4{word-spacing:20.520000pt;}
.wsa6{word-spacing:20.824000pt;}
.ws10d{word-spacing:21.026667pt;}
.wscf{word-spacing:21.178667pt;}
.wse4{word-spacing:21.938667pt;}
.ws34{word-spacing:22.597333pt;}
.ws36{word-spacing:22.952000pt;}
.wsa0{word-spacing:23.256000pt;}
.ws93{word-spacing:23.610667pt;}
.wsa7{word-spacing:23.762667pt;}
.ws9e{word-spacing:24.573333pt;}
.ws101{word-spacing:24.674667pt;}
.ws5e{word-spacing:25.080000pt;}
.ws10e{word-spacing:25.384000pt;}
.ws42{word-spacing:25.434667pt;}
.ws11a{word-spacing:25.738667pt;}
.ws109{word-spacing:26.093333pt;}
.wsb8{word-spacing:26.802667pt;}
.wsbc{word-spacing:27.106667pt;}
.ws50{word-spacing:28.322667pt;}
.ws67{word-spacing:29.690667pt;}
.ws63{word-spacing:31.869333pt;}
.ws46{word-spacing:32.021333pt;}
.wsd7{word-spacing:50.176000pt;}
.wsd8{word-spacing:57.717333pt;}
.wsdb{word-spacing:65.296000pt;}
.ws51{word-spacing:81.545600pt;}
.ws52{word-spacing:106.864000pt;}
.wsb6{word-spacing:153.459200pt;}
.wsd6{word-spacing:171.818667pt;}
.ws122{word-spacing:174.240000pt;}
.wsb5{word-spacing:334.688000pt;}
.wsda{word-spacing:474.560000pt;}
.ws80{word-spacing:1076.245333pt;}
._16{margin-left:-139.680000pt;}
._15{margin-left:-114.773333pt;}
._c{margin-left:-7.417600pt;}
._5{margin-left:-5.749333pt;}
._9{margin-left:-4.453600pt;}
._8{margin-left:-3.444000pt;}
._4{margin-left:-2.400000pt;}
._0{margin-left:-0.992000pt;}
._2{width:1.280000pt;}
._1{width:2.968000pt;}
._6{width:4.006400pt;}
._3{width:5.488000pt;}
._7{width:6.400000pt;}
._e{width:113.653333pt;}
._d{width:194.698667pt;}
._b{width:224.384000pt;}
._a{width:232.694400pt;}
._f{width:372.741600pt;}
._11{width:529.024000pt;}
._10{width:539.178667pt;}
._12{width:586.282667pt;}
._13{width:708.940800pt;}
._14{width:752.896000pt;}
.fs6{font-size:23.320000pt;}
.fsb{font-size:29.538667pt;}
.fs0{font-size:32.000000pt;}
.fsa{font-size:37.333333pt;}
.fs1{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs9{font-size:61.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.640533pt;}
.y2f{bottom:66.437067pt;}
.y2d{bottom:68.305733pt;}
.y2e{bottom:77.767067pt;}
.y2c{bottom:77.905733pt;}
.y289{bottom:81.219600pt;}
.ya3{bottom:81.219733pt;}
.y21d{bottom:81.231867pt;}
.y1b0{bottom:81.232267pt;}
.y14e{bottom:81.244400pt;}
.y1cd{bottom:81.244933pt;}
.y227{bottom:81.250533pt;}
.y1c6{bottom:81.250667pt;}
.y284{bottom:81.253600pt;}
.y6b{bottom:81.258667pt;}
.y134{bottom:99.291067pt;}
.y13e{bottom:99.333733pt;}
.y288{bottom:100.118267pt;}
.ya2{bottom:100.118400pt;}
.y21c{bottom:100.130533pt;}
.y1af{bottom:100.130933pt;}
.y2ac{bottom:100.136933pt;}
.y14d{bottom:100.143067pt;}
.y1cc{bottom:100.143600pt;}
.y226{bottom:100.149200pt;}
.y1c5{bottom:100.149333pt;}
.y283{bottom:100.152267pt;}
.y6a{bottom:100.157333pt;}
.y133{bottom:111.952400pt;}
.y139{bottom:111.973733pt;}
.y13d{bottom:111.995067pt;}
.y2e2{bottom:116.335600pt;}
.y12f{bottom:118.267067pt;}
.y136{bottom:118.299067pt;}
.y287{bottom:119.016933pt;}
.ya1{bottom:119.017067pt;}
.y21b{bottom:119.029200pt;}
.y1ae{bottom:119.029600pt;}
.y2ab{bottom:119.035600pt;}
.y14c{bottom:119.041733pt;}
.y1cb{bottom:119.042267pt;}
.y19{bottom:119.045867pt;}
.y225{bottom:119.047867pt;}
.y1c4{bottom:119.048000pt;}
.y282{bottom:119.050933pt;}
.y69{bottom:119.056667pt;}
.y26{bottom:119.416133pt;}
.y42{bottom:119.664933pt;}
.y132{bottom:124.613733pt;}
.y138{bottom:124.635067pt;}
.y13c{bottom:124.656400pt;}
.y2e1{bottom:129.000933pt;}
.y25{bottom:130.746133pt;}
.y12e{bottom:130.928400pt;}
.y135{bottom:130.960400pt;}
.y41{bottom:132.998267pt;}
.y131{bottom:137.275067pt;}
.y137{bottom:137.296400pt;}
.y13b{bottom:137.317733pt;}
.y286{bottom:137.915600pt;}
.ya0{bottom:137.915733pt;}
.y21a{bottom:137.927867pt;}
.y1ad{bottom:137.928267pt;}
.y2aa{bottom:137.934267pt;}
.y14b{bottom:137.940400pt;}
.y1ca{bottom:137.940933pt;}
.y18{bottom:137.944533pt;}
.y224{bottom:137.946533pt;}
.y1c3{bottom:137.946667pt;}
.y281{bottom:137.949600pt;}
.y68{bottom:137.952667pt;}
.y2e0{bottom:141.666267pt;}
.y24{bottom:142.079467pt;}
.y40{bottom:146.331600pt;}
.y130{bottom:149.936400pt;}
.y13a{bottom:149.979067pt;}
.y23{bottom:152.754533pt;}
.y2df{bottom:154.331600pt;}
.y285{bottom:156.814267pt;}
.y9f{bottom:156.814400pt;}
.y219{bottom:156.826533pt;}
.y1ac{bottom:156.826933pt;}
.y2a9{bottom:156.832933pt;}
.y14a{bottom:156.839067pt;}
.y1c9{bottom:156.839600pt;}
.y17{bottom:156.843200pt;}
.y223{bottom:156.845200pt;}
.y1c2{bottom:156.845333pt;}
.y280{bottom:156.848267pt;}
.y3f{bottom:159.664933pt;}
.y22{bottom:164.084533pt;}
.y2de{bottom:166.996933pt;}
.y123{bottom:168.091067pt;}
.y12d{bottom:168.133733pt;}
.y3e{bottom:172.998267pt;}
.y21{bottom:175.414533pt;}
.y67{bottom:175.712933pt;}
.y9e{bottom:175.713067pt;}
.y218{bottom:175.725200pt;}
.y1ab{bottom:175.725600pt;}
.y2a8{bottom:175.731600pt;}
.y149{bottom:175.737733pt;}
.y1c8{bottom:175.738267pt;}
.y16{bottom:175.741867pt;}
.y222{bottom:175.743867pt;}
.y1c1{bottom:175.744000pt;}
.y27f{bottom:175.746933pt;}
.y2dd{bottom:179.662267pt;}
.y122{bottom:180.752400pt;}
.y128{bottom:180.773733pt;}
.y12c{bottom:180.795067pt;}
.y3d{bottom:186.331600pt;}
.y11e{bottom:187.067067pt;}
.y125{bottom:187.099067pt;}
.y2dc{bottom:192.327600pt;}
.y121{bottom:193.413733pt;}
.y127{bottom:193.435067pt;}
.y12b{bottom:193.456400pt;}
.y66{bottom:194.611600pt;}
.y9d{bottom:194.611733pt;}
.y217{bottom:194.623867pt;}
.y1aa{bottom:194.624267pt;}
.y2a7{bottom:194.630267pt;}
.y148{bottom:194.636400pt;}
.y1c7{bottom:194.636933pt;}
.y15{bottom:194.640533pt;}
.y221{bottom:194.642533pt;}
.y1c0{bottom:194.642667pt;}
.y27e{bottom:194.645600pt;}
.y3c{bottom:199.664933pt;}
.y11d{bottom:199.728400pt;}
.y124{bottom:199.760400pt;}
.y2db{bottom:204.992933pt;}
.y120{bottom:206.075067pt;}
.y126{bottom:206.096400pt;}
.y12a{bottom:206.117733pt;}
.y3b{bottom:212.998267pt;}
.y65{bottom:213.510267pt;}
.y9c{bottom:213.510400pt;}
.y216{bottom:213.522533pt;}
.y1a9{bottom:213.522933pt;}
.y2a6{bottom:213.528933pt;}
.y147{bottom:213.535067pt;}
.y14{bottom:213.539200pt;}
.y220{bottom:213.541200pt;}
.y1bf{bottom:213.541333pt;}
.y27d{bottom:213.544800pt;}
.y2da{bottom:217.658267pt;}
.y11f{bottom:218.736400pt;}
.y129{bottom:218.779067pt;}
.y3a{bottom:226.331600pt;}
.y2d9{bottom:230.323600pt;}
.y64{bottom:232.408933pt;}
.y9b{bottom:232.409067pt;}
.y215{bottom:232.421200pt;}
.y1a8{bottom:232.421600pt;}
.y2a5{bottom:232.427600pt;}
.y146{bottom:232.433733pt;}
.y13{bottom:232.437867pt;}
.y21f{bottom:232.439867pt;}
.y1be{bottom:232.440000pt;}
.y27c{bottom:232.440800pt;}
.y1ff{bottom:235.748267pt;}
.y111{bottom:236.880400pt;}
.y2d8{bottom:242.988933pt;}
.y1fe{bottom:244.846933pt;}
.y110{bottom:249.541733pt;}
.y63{bottom:251.307600pt;}
.y9a{bottom:251.307733pt;}
.y214{bottom:251.319867pt;}
.y1a7{bottom:251.320267pt;}
.y2a4{bottom:251.326267pt;}
.y145{bottom:251.332400pt;}
.y12{bottom:251.336533pt;}
.y21e{bottom:251.338533pt;}
.y1bd{bottom:251.338667pt;}
.y2d7{bottom:255.654267pt;}
.y39{bottom:257.670267pt;}
.y1e9{bottom:260.491200pt;}
.y10f{bottom:262.203067pt;}
.y118{bottom:262.245733pt;}
.y2d6{bottom:268.319600pt;}
.y11c{bottom:268.592400pt;}
.y62{bottom:270.206267pt;}
.y99{bottom:270.206400pt;}
.y213{bottom:270.218533pt;}
.y1a6{bottom:270.218933pt;}
.y2a3{bottom:270.224933pt;}
.y144{bottom:270.231067pt;}
.y11{bottom:270.235200pt;}
.y1bc{bottom:270.237867pt;}
.y38{bottom:271.003600pt;}
.y1fd{bottom:272.153600pt;}
.y10e{bottom:274.864400pt;}
.y117{bottom:274.907067pt;}
.y2d5{bottom:280.984933pt;}
.y108{bottom:281.168400pt;}
.y113{bottom:281.221733pt;}
.y11b{bottom:281.253733pt;}
.y37{bottom:284.336933pt;}
.y10d{bottom:287.525733pt;}
.y116{bottom:287.568400pt;}
.y61{bottom:289.104933pt;}
.y98{bottom:289.105067pt;}
.y212{bottom:289.117200pt;}
.y1a5{bottom:289.117600pt;}
.y2a2{bottom:289.123600pt;}
.y143{bottom:289.129733pt;}
.y10{bottom:289.133867pt;}
.y1fc{bottom:290.350933pt;}
.y1e8{bottom:290.442933pt;}
.y2d4{bottom:293.650267pt;}
.y107{bottom:293.829733pt;}
.y112{bottom:293.883067pt;}
.y11a{bottom:293.915067pt;}
.y36{bottom:297.670267pt;}
.y1f9{bottom:299.438933pt;}
.y10c{bottom:300.187067pt;}
.y115{bottom:300.229733pt;}
.y1e7{bottom:303.104267pt;}
.y2d3{bottom:306.315600pt;}
.y119{bottom:306.576400pt;}
.y22b{bottom:307.824933pt;}
.y60{bottom:308.003600pt;}
.y97{bottom:308.003733pt;}
.y211{bottom:308.015867pt;}
.y1a4{bottom:308.016267pt;}
.y2a1{bottom:308.022267pt;}
.y142{bottom:308.028400pt;}
.yf{bottom:308.031467pt;}
.y1fb{bottom:308.548267pt;}
.y35{bottom:311.003600pt;}
.y10b{bottom:312.848400pt;}
.y114{bottom:312.891067pt;}
.y1e6{bottom:315.765600pt;}
.y2d2{bottom:318.980933pt;}
.y34{bottom:324.336933pt;}
.y10a{bottom:325.509733pt;}
.y1fa{bottom:326.745600pt;}
.y5f{bottom:326.902267pt;}
.y96{bottom:326.902400pt;}
.y210{bottom:326.914533pt;}
.y1a3{bottom:326.914933pt;}
.y2a0{bottom:326.920933pt;}
.y141{bottom:326.927067pt;}
.y22d{bottom:327.460933pt;}
.y1e5{bottom:328.426933pt;}
.y2d1{bottom:331.646267pt;}
.y33{bottom:337.670267pt;}
.y109{bottom:338.171067pt;}
.y1e4{bottom:341.088267pt;}
.y2d0{bottom:344.311600pt;}
.y1f7{bottom:344.942933pt;}
.y5e{bottom:345.800933pt;}
.y95{bottom:345.801067pt;}
.y20f{bottom:345.813200pt;}
.y1a2{bottom:345.813600pt;}
.y29f{bottom:345.819600pt;}
.y140{bottom:345.825733pt;}
.y2ff{bottom:350.660133pt;}
.y32{bottom:351.003600pt;}
.y1e3{bottom:353.749600pt;}
.y22c{bottom:355.802267pt;}
.yf8{bottom:356.304400pt;}
.y2cf{bottom:356.976933pt;}
.y1f6{bottom:357.604267pt;}
.y20{bottom:359.364533pt;}
.y2fe{bottom:363.325467pt;}
.y1f2{bottom:363.918933pt;}
.y31{bottom:364.336933pt;}
.y5d{bottom:364.699600pt;}
.y94{bottom:364.699733pt;}
.y20e{bottom:364.711867pt;}
.y1a1{bottom:364.712267pt;}
.y29e{bottom:364.718267pt;}
.y13f{bottom:364.724400pt;}
.y1e2{bottom:366.410933pt;}
.yf7{bottom:368.965733pt;}
.y101{bottom:369.008400pt;}
.y106{bottom:369.029733pt;}
.y2ce{bottom:369.642267pt;}
.y1f5{bottom:370.265600pt;}
.y1f8{bottom:370.276267pt;}
.y1f{bottom:370.694533pt;}
.y255{bottom:372.246933pt;}
.yfc{bottom:375.323067pt;}
.y2fd{bottom:375.990800pt;}
.y1f1{bottom:376.580267pt;}
.y30{bottom:377.670267pt;}
.y1e1{bottom:379.072267pt;}
.y254{bottom:380.246933pt;}
.yf6{bottom:381.627067pt;}
.y100{bottom:381.669733pt;}
.y105{bottom:381.691067pt;}
.y1e{bottom:382.027867pt;}
.y2cd{bottom:382.307600pt;}
.ye{bottom:382.749200pt;}
.y1f4{bottom:382.926933pt;}
.y5c{bottom:383.598267pt;}
.y93{bottom:383.598400pt;}
.y20d{bottom:383.610533pt;}
.y1a0{bottom:383.610933pt;}
.y29d{bottom:383.616933pt;}
.y74{bottom:387.136933pt;}
.yf1{bottom:387.941733pt;}
.yfb{bottom:387.984400pt;}
.y2fc{bottom:388.656133pt;}
.y1e0{bottom:391.733600pt;}
.y1d{bottom:392.697867pt;}
.yf5{bottom:394.288400pt;}
.yff{bottom:394.331067pt;}
.y104{bottom:394.352400pt;}
.y2cc{bottom:394.972933pt;}
.y1f3{bottom:395.588267pt;}
.y273{bottom:398.370133pt;}
.yf0{bottom:400.603067pt;}
.yfa{bottom:400.645733pt;}
.y2fb{bottom:401.321467pt;}
.y5b{bottom:402.496933pt;}
.y92{bottom:402.497067pt;}
.y20c{bottom:402.509200pt;}
.y19f{bottom:402.509600pt;}
.y29c{bottom:402.515600pt;}
.y1c{bottom:404.027867pt;}
.yd{bottom:404.085200pt;}
.y1df{bottom:404.394933pt;}
.yf4{bottom:406.949733pt;}
.yfe{bottom:406.992400pt;}
.y103{bottom:407.013733pt;}
.y2cb{bottom:407.638267pt;}
.y272{bottom:409.038133pt;}
.y73{bottom:412.467600pt;}
.y19a{bottom:412.758400pt;}
.yf9{bottom:413.307067pt;}
.y1f0{bottom:413.785600pt;}
.y2fa{bottom:413.986800pt;}
.y1b{bottom:415.364533pt;}
.y253{bottom:416.526933pt;}
.y1de{bottom:417.056267pt;}
.yf3{bottom:419.611067pt;}
.yfd{bottom:419.653733pt;}
.y102{bottom:419.675067pt;}
.y1ed{bottom:420.110933pt;}
.y2ca{bottom:420.303600pt;}
.y5a{bottom:421.395600pt;}
.y91{bottom:421.395733pt;}
.y20b{bottom:421.407867pt;}
.y19e{bottom:421.408267pt;}
.y29b{bottom:421.414267pt;}
.y22e{bottom:421.946267pt;}
.y252{bottom:424.526933pt;}
.yc{bottom:425.421200pt;}
.y1ef{bottom:426.446933pt;}
.y2f9{bottom:426.652133pt;}
.y1a{bottom:426.694533pt;}
.y1dd{bottom:429.717600pt;}
.yf2{bottom:432.272400pt;}
.y1ec{bottom:432.772267pt;}
.y2c9{bottom:432.968933pt;}
.y72{bottom:437.798267pt;}
.y1ee{bottom:439.108267pt;}
.y2f8{bottom:439.317467pt;}
.y59{bottom:440.294267pt;}
.y90{bottom:440.294400pt;}
.y20a{bottom:440.306533pt;}
.y19d{bottom:440.306933pt;}
.y29a{bottom:440.312933pt;}
.y1dc{bottom:442.378933pt;}
.y271{bottom:442.778133pt;}
.y195{bottom:443.365733pt;}
.y2c8{bottom:445.634267pt;}
.yb{bottom:446.757200pt;}
.y18c{bottom:449.659067pt;}
.ye3{bottom:450.427067pt;}
.yef{bottom:450.469733pt;}
.y2f7{bottom:451.982800pt;}
.y270{bottom:453.446133pt;}
.y1db{bottom:455.040267pt;}
.y194{bottom:456.027067pt;}
.y1eb{bottom:457.307467pt;}
.y2c7{bottom:458.299600pt;}
.y58{bottom:459.192933pt;}
.y8f{bottom:459.193067pt;}
.y209{bottom:459.205200pt;}
.y19c{bottom:459.205600pt;}
.y299{bottom:459.211600pt;}
.y257{bottom:459.718933pt;}
.y18b{bottom:462.320400pt;}
.ye2{bottom:463.088400pt;}
.y71{bottom:463.128933pt;}
.yee{bottom:463.131067pt;}
.y2f6{bottom:464.648133pt;}
.y1da{bottom:467.701600pt;}
.y256{bottom:467.718933pt;}
.y193{bottom:468.688400pt;}
.ye6{bottom:469.435067pt;}
.ye9{bottom:469.445733pt;}
.y2c6{bottom:470.964933pt;}
.y184{bottom:474.960400pt;}
.y18a{bottom:474.981733pt;}
.y199{bottom:475.045733pt;}
.ydd{bottom:475.728400pt;}
.ye1{bottom:475.749733pt;}
.yed{bottom:475.792400pt;}
.y2f5{bottom:477.314800pt;}
.y57{bottom:478.091600pt;}
.y8e{bottom:478.091733pt;}
.y298{bottom:478.094800pt;}
.y208{bottom:478.103867pt;}
.y19b{bottom:478.104267pt;}
.y27b{bottom:478.559600pt;}
.y1d9{bottom:480.362933pt;}
.y192{bottom:481.349733pt;}
.ye5{bottom:482.096400pt;}
.ye8{bottom:482.107067pt;}
.y251{bottom:482.510933pt;}
.ya{bottom:483.175200pt;}
.y2c5{bottom:483.630267pt;}
.y1ea{bottom:484.202400pt;}
.y23a{bottom:485.307733pt;}
.y27a{bottom:486.559600pt;}
.y183{bottom:487.621733pt;}
.y189{bottom:487.643067pt;}
.y198{bottom:487.707067pt;}
.y22f{bottom:488.090267pt;}
.ydc{bottom:488.389733pt;}
.ye0{bottom:488.411067pt;}
.yec{bottom:488.453733pt;}
.y70{bottom:488.459600pt;}
.y250{bottom:490.510933pt;}
.y239{bottom:490.982400pt;}
.y1d8{bottom:493.024267pt;}
.y180{bottom:493.947067pt;}
.y191{bottom:494.011067pt;}
.ye4{bottom:494.757733pt;}
.ye7{bottom:494.768400pt;}
.y2c4{bottom:496.295600pt;}
.y56{bottom:496.990267pt;}
.y8d{bottom:496.990400pt;}
.y297{bottom:496.993467pt;}
.y207{bottom:497.002533pt;}
.y182{bottom:500.283067pt;}
.y188{bottom:500.304400pt;}
.y197{bottom:500.368400pt;}
.ydf{bottom:501.072400pt;}
.yeb{bottom:501.115067pt;}
.y238{bottom:501.650400pt;}
.y23c{bottom:504.207733pt;}
.y1d7{bottom:505.685600pt;}
.y190{bottom:506.672400pt;}
.y2c3{bottom:508.960933pt;}
.y181{bottom:512.944400pt;}
.y187{bottom:512.965733pt;}
.y196{bottom:513.029733pt;}
.yde{bottom:513.733733pt;}
.yea{bottom:513.776400pt;}
.y6f{bottom:513.790267pt;}
.y23b{bottom:514.875733pt;}
.y55{bottom:515.888933pt;}
.y8c{bottom:515.889067pt;}
.y296{bottom:515.892133pt;}
.y206{bottom:515.901200pt;}
.y2f4{bottom:516.470800pt;}
.y1d6{bottom:518.346933pt;}
.y18f{bottom:519.333733pt;}
.y22a{bottom:520.017867pt;}
.y2c2{bottom:521.626267pt;}
.y186{bottom:525.627067pt;}
.y9{bottom:529.855200pt;}
.y1d5{bottom:531.008267pt;}
.yd7{bottom:531.909733pt;}
.y18e{bottom:531.995067pt;}
.y2c1{bottom:534.291600pt;}
.y54{bottom:534.787600pt;}
.y8b{bottom:534.787733pt;}
.y295{bottom:534.790800pt;}
.y205{bottom:534.799867pt;}
.y24f{bottom:535.582933pt;}
.ydb{bottom:538.256400pt;}
.y185{bottom:538.288400pt;}
.y6e{bottom:539.120933pt;}
.y1b5{bottom:539.594133pt;}
.y23e{bottom:541.055733pt;}
.y279{bottom:541.351600pt;}
.y237{bottom:543.286400pt;}
.y24e{bottom:543.582933pt;}
.y1d4{bottom:543.669600pt;}
.ycf{bottom:544.539067pt;}
.yd2{bottom:544.549733pt;}
.yd6{bottom:544.571067pt;}
.y18d{bottom:544.656400pt;}
.y2c0{bottom:546.956933pt;}
.y278{bottom:549.351600pt;}
.yda{bottom:550.917733pt;}
.y23d{bottom:551.723733pt;}
.y53{bottom:553.686267pt;}
.y8a{bottom:553.686400pt;}
.y294{bottom:553.689467pt;}
.y204{bottom:553.698533pt;}
.y236{bottom:553.954400pt;}
.y275{bottom:554.171467pt;}
.y230{bottom:554.234267pt;}
.y1d3{bottom:556.330933pt;}
.y277{bottom:557.015600pt;}
.ycd{bottom:557.200400pt;}
.yd1{bottom:557.211067pt;}
.yd5{bottom:557.232400pt;}
.y2bf{bottom:559.622267pt;}
.y171{bottom:562.757733pt;}
.yd9{bottom:563.579067pt;}
.y1b8{bottom:564.049067pt;}
.y6d{bottom:564.451600pt;}
.y274{bottom:564.839467pt;}
.y276{bottom:565.015600pt;}
.y1d2{bottom:568.992267pt;}
.y179{bottom:569.125733pt;}
.yce{bottom:569.861733pt;}
.yd0{bottom:569.872400pt;}
.yd4{bottom:569.893733pt;}
.y2{bottom:570.627333pt;}
.y2be{bottom:572.287600pt;}
.y52{bottom:572.584933pt;}
.y89{bottom:572.585067pt;}
.y293{bottom:572.588133pt;}
.y203{bottom:572.597200pt;}
.y241{bottom:575.075733pt;}
.y170{bottom:575.419067pt;}
.yd8{bottom:576.240400pt;}
.y8{bottom:576.535200pt;}
.y24d{bottom:580.118933pt;}
.y1bb{bottom:580.559600pt;}
.y24b{bottom:580.694933pt;}
.y1d1{bottom:581.653600pt;}
.y168{bottom:581.712400pt;}
.y178{bottom:581.787067pt;}
.y17f{bottom:581.819067pt;}
.yd3{bottom:582.555067pt;}
.y2bd{bottom:584.952933pt;}
.y16f{bottom:588.080400pt;}
.y24c{bottom:588.118933pt;}
.y240{bottom:588.301067pt;}
.y24a{bottom:588.694933pt;}
.y6c{bottom:589.782267pt;}
.y51{bottom:591.483600pt;}
.y88{bottom:591.483733pt;}
.y292{bottom:591.486800pt;}
.y202{bottom:591.495867pt;}
.y1d0{bottom:594.314933pt;}
.y167{bottom:594.373733pt;}
.y177{bottom:594.448400pt;}
.y17e{bottom:594.480400pt;}
.y1ba{bottom:595.679600pt;}
.y2bc{bottom:597.618267pt;}
.y23f{bottom:598.969067pt;}
.yc7{bottom:600.709733pt;}
.y16e{bottom:600.741733pt;}
.y1b6{bottom:601.271067pt;}
.y266{bottom:601.566933pt;}
.y263{bottom:603.454933pt;}
.y1b4{bottom:606.023867pt;}
.y1cf{bottom:606.976267pt;}
.y166{bottom:607.035067pt;}
.ycc{bottom:607.067067pt;}
.y176{bottom:607.109733pt;}
.y17d{bottom:607.141733pt;}
.y265{bottom:608.238933pt;}
.y259{bottom:609.038933pt;}
.y2bb{bottom:610.283600pt;}
.y50{bottom:610.382267pt;}
.y87{bottom:610.382400pt;}
.y291{bottom:610.385467pt;}
.y201{bottom:610.395200pt;}
.y262{bottom:611.454933pt;}
.y1b3{bottom:612.349200pt;}
.y162{bottom:613.349733pt;}
.yc6{bottom:613.371067pt;}
.y16d{bottom:613.403067pt;}
.y1b7{bottom:616.215067pt;}
.y264{bottom:616.238933pt;}
.y258{bottom:617.038933pt;}
.y235{bottom:617.365067pt;}
.y2f3{bottom:617.802800pt;}
.yc1{bottom:619.685733pt;}
.y165{bottom:619.696400pt;}
.ycb{bottom:619.728400pt;}
.y175{bottom:619.771067pt;}
.y17c{bottom:619.803067pt;}
.y231{bottom:620.378267pt;}
.y26f{bottom:621.362133pt;}
.y2ba{bottom:622.948933pt;}
.y7{bottom:623.215200pt;}
.ybe{bottom:626.011067pt;}
.yc5{bottom:626.032400pt;}
.y16c{bottom:626.064400pt;}
.y26d{bottom:627.036800pt;}
.y243{bottom:627.043733pt;}
.y234{bottom:628.033067pt;}
.y4f{bottom:629.280933pt;}
.y86{bottom:629.281067pt;}
.y290{bottom:629.284133pt;}
.y200{bottom:629.291200pt;}
.y2f2{bottom:630.468133pt;}
.y26e{bottom:632.030133pt;}
.yc0{bottom:632.347067pt;}
.y164{bottom:632.357733pt;}
.yca{bottom:632.389733pt;}
.y174{bottom:632.432400pt;}
.y17b{bottom:632.464400pt;}
.y2b9{bottom:635.614267pt;}
.y1ce{bottom:635.713733pt;}
.y26c{bottom:637.704800pt;}
.y242{bottom:637.711733pt;}
.ybd{bottom:638.672400pt;}
.yc4{bottom:638.693733pt;}
.y16b{bottom:638.725733pt;}
.y261{bottom:640.302933pt;}
.y2f1{bottom:643.133467pt;}
.ybf{bottom:645.008400pt;}
.y163{bottom:645.019067pt;}
.yc9{bottom:645.051067pt;}
.y173{bottom:645.093733pt;}
.y17a{bottom:645.125733pt;}
.y4e{bottom:648.179600pt;}
.y85{bottom:648.179733pt;}
.y28f{bottom:648.182800pt;}
.y2b8{bottom:648.279600pt;}
.y260{bottom:648.302933pt;}
.y2b{bottom:650.471333pt;}
.yc3{bottom:651.355067pt;}
.y16a{bottom:651.387067pt;}
.y249{bottom:652.614933pt;}
.y2f0{bottom:655.798800pt;}
.yc8{bottom:657.712400pt;}
.y172{bottom:657.755067pt;}
.y245{bottom:658.226400pt;}
.y248{bottom:660.614933pt;}
.y2b7{bottom:660.944933pt;}
.y1b2{bottom:661.437200pt;}
.y2a{bottom:661.804667pt;}
.y26b{bottom:661.999467pt;}
.yc2{bottom:664.016400pt;}
.y169{bottom:664.048400pt;}
.y4d{bottom:667.078267pt;}
.y84{bottom:667.078400pt;}
.y28e{bottom:667.081467pt;}
.y2ef{bottom:668.464133pt;}
.y244{bottom:668.894400pt;}
.y6{bottom:669.895200pt;}
.y29{bottom:672.486133pt;}
.y26a{bottom:672.667467pt;}
.y2b6{bottom:673.610267pt;}
.y2ee{bottom:681.129467pt;}
.y154{bottom:682.149733pt;}
.yb6{bottom:682.181733pt;}
.y15c{bottom:682.192400pt;}
.ybc{bottom:682.203067pt;}
.y25b{bottom:683.270933pt;}
.y1b9{bottom:683.552933pt;}
.y247{bottom:683.734400pt;}
.y28{bottom:683.816133pt;}
.y4c{bottom:685.976933pt;}
.y83{bottom:685.977067pt;}
.y28d{bottom:685.980133pt;}
.y2b5{bottom:686.275600pt;}
.y232{bottom:686.522267pt;}
.y161{bottom:688.549733pt;}
.y25a{bottom:691.270933pt;}
.y2ed{bottom:693.794800pt;}
.y246{bottom:694.402400pt;}
.yac{bottom:694.800400pt;}
.y153{bottom:694.811067pt;}
.yb0{bottom:694.821733pt;}
.yb5{bottom:694.843067pt;}
.y15b{bottom:694.853733pt;}
.ybb{bottom:694.864400pt;}
.y27{bottom:695.146133pt;}
.y269{bottom:696.019467pt;}
.y25f{bottom:696.854933pt;}
.y2b4{bottom:698.940933pt;}
.y160{bottom:701.211067pt;}
.y268{bottom:703.579467pt;}
.y25e{bottom:704.854933pt;}
.y4b{bottom:704.875600pt;}
.y82{bottom:704.875733pt;}
.y28c{bottom:704.878800pt;}
.y2ec{bottom:706.460133pt;}
.ya8{bottom:707.451067pt;}
.yab{bottom:707.461733pt;}
.y152{bottom:707.472400pt;}
.yaf{bottom:707.483067pt;}
.y156{bottom:707.493733pt;}
.yb4{bottom:707.504400pt;}
.y15a{bottom:707.515067pt;}
.yba{bottom:707.525733pt;}
.y1b1{bottom:710.344133pt;}
.y2b3{bottom:711.606267pt;}
.y15f{bottom:713.872400pt;}
.y267{bottom:714.247467pt;}
.y7b{bottom:716.109333pt;}
.y5{bottom:716.575200pt;}
.y2eb{bottom:719.125467pt;}
.ya7{bottom:720.112400pt;}
.yaa{bottom:720.123067pt;}
.y151{bottom:720.133733pt;}
.yae{bottom:720.144400pt;}
.y155{bottom:720.155067pt;}
.yb3{bottom:720.165733pt;}
.y159{bottom:720.176400pt;}
.yb9{bottom:720.187067pt;}
.y4a{bottom:723.774267pt;}
.y81{bottom:723.774400pt;}
.y28b{bottom:723.777467pt;}
.y2b2{bottom:724.271600pt;}
.y25d{bottom:725.846933pt;}
.y15e{bottom:726.533733pt;}
.y7a{bottom:729.442667pt;}
.y2ea{bottom:731.790800pt;}
.ya9{bottom:732.784400pt;}
.y150{bottom:732.795067pt;}
.yad{bottom:732.805733pt;}
.yb2{bottom:732.827067pt;}
.y158{bottom:732.837733pt;}
.yb8{bottom:732.848400pt;}
.y25c{bottom:733.846933pt;}
.y2b1{bottom:736.936933pt;}
.y15d{bottom:739.195067pt;}
.y49{bottom:742.672933pt;}
.y80{bottom:742.673067pt;}
.y28a{bottom:742.676133pt;}
.y79{bottom:742.776000pt;}
.y2e9{bottom:744.456133pt;}
.y14f{bottom:745.456400pt;}
.yb1{bottom:745.488400pt;}
.y157{bottom:745.499067pt;}
.yb7{bottom:745.509733pt;}
.y2b0{bottom:749.602267pt;}
.y233{bottom:752.666267pt;}
.y78{bottom:756.109333pt;}
.y2e8{bottom:757.121467pt;}
.y48{bottom:761.571600pt;}
.y7f{bottom:761.571733pt;}
.y2af{bottom:762.267600pt;}
.y4{bottom:763.255200pt;}
.ya6{bottom:763.650267pt;}
.y2e7{bottom:769.786800pt;}
.ya5{bottom:774.314267pt;}
.y2ae{bottom:774.934267pt;}
.y47{bottom:780.470267pt;}
.y7e{bottom:780.470400pt;}
.y2e6{bottom:782.452133pt;}
.y77{bottom:782.776000pt;}
.y229{bottom:786.060933pt;}
.y2ad{bottom:787.600933pt;}
.y2e5{bottom:795.117467pt;}
.y76{bottom:796.109333pt;}
.y46{bottom:799.368933pt;}
.y7d{bottom:799.369067pt;}
.y228{bottom:800.057600pt;}
.ya4{bottom:801.209200pt;}
.y2e4{bottom:807.782800pt;}
.y75{bottom:809.442667pt;}
.y3{bottom:809.935200pt;}
.y45{bottom:818.267600pt;}
.y7c{bottom:818.267733pt;}
.y2e3{bottom:820.448133pt;}
.y44{bottom:949.882933pt;}
.y43{bottom:964.282933pt;}
.h15{height:23.312500pt;}
.hb{height:24.000000pt;}
.h2{height:26.400000pt;}
.h20{height:27.197917pt;}
.h9{height:28.000000pt;}
.h11{height:28.609375pt;}
.h3{height:29.140625pt;}
.h1a{height:29.312000pt;}
.hd{height:31.083333pt;}
.h17{height:31.770667pt;}
.ha{height:31.992188pt;}
.h14{height:32.000000pt;}
.h8{height:35.761719pt;}
.h7{height:36.911458pt;}
.h13{height:38.145833pt;}
.hc{height:38.229333pt;}
.h1d{height:38.403647pt;}
.h1e{height:38.453247pt;}
.h1c{height:38.527380pt;}
.he{height:39.600000pt;}
.h1b{height:40.432000pt;}
.hf{height:43.980543pt;}
.h10{height:45.298177pt;}
.h19{height:47.973333pt;}
.h1f{height:48.000000pt;}
.h12{height:49.953375pt;}
.h6{height:57.600000pt;}
.h5{height:61.600000pt;}
.h16{height:63.489833pt;}
.h18{height:68.394667pt;}
.h4{height:132.000000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:616.000000pt;}
.w0{width:616.062667pt;}
.x0{left:0.000000pt;}
.x2{left:18.073333pt;}
.x1{left:49.133867pt;}
.x12{left:56.692933pt;}
.xe{left:61.658267pt;}
.xc{left:63.176267pt;}
.xd{left:68.021600pt;}
.xb{left:69.278933pt;}
.x10{left:71.416133pt;}
.x1c{left:73.530133pt;}
.x1b{left:74.694667pt;}
.x23{left:76.346133pt;}
.x9{left:80.088933pt;}
.x1a{left:81.262667pt;}
.x15{left:84.868800pt;}
.x14{left:86.033200pt;}
.x2c{left:87.684800pt;}
.x24{left:89.007467pt;}
.x13{left:92.601200pt;}
.x8{left:97.170267pt;}
.x6{left:98.267733pt;}
.xa{left:101.800933pt;}
.x26{left:117.737467pt;}
.xf{left:132.682267pt;}
.x21{left:137.820133pt;}
.x1d{left:151.940800pt;}
.x3e{left:156.142000pt;}
.x41{left:157.406000pt;}
.x16{left:163.279467pt;}
.x3{left:177.637733pt;}
.x3d{left:184.846000pt;}
.x40{left:186.926000pt;}
.x27{left:189.921200pt;}
.x29{left:194.475067pt;}
.x3f{left:198.526000pt;}
.x28{left:202.196667pt;}
.x3b{left:208.054000pt;}
.x25{left:213.785733pt;}
.x3c{left:215.182000pt;}
.x4f{left:221.365067pt;}
.x7{left:222.997067pt;}
.x43{left:230.470000pt;}
.x2f{left:242.157867pt;}
.x1e{left:244.164800pt;}
.x17{left:255.503467pt;}
.x50{left:260.322400pt;}
.x42{left:265.926000pt;}
.x2a{left:269.099067pt;}
.x30{left:273.340533pt;}
.x2e{left:274.329867pt;}
.x3a{left:281.006000pt;}
.x52{left:292.831067pt;}
.x39{left:294.406000pt;}
.x4{left:301.733333pt;}
.x53{left:312.263067pt;}
.x2d{left:316.493467pt;}
.x31{left:319.643200pt;}
.x38{left:323.390000pt;}
.x32{left:329.088533pt;}
.x22{left:330.556133pt;}
.x33{left:335.705867pt;}
.x44{left:344.430000pt;}
.x35{left:348.931200pt;}
.x1f{left:352.346133pt;}
.x45{left:355.486000pt;}
.x18{left:363.684800pt;}
.x51{left:367.559067pt;}
.x34{left:368.773867pt;}
.x46{left:375.518000pt;}
.x36{left:385.779200pt;}
.x37{left:397.119200pt;}
.x47{left:415.758000pt;}
.x4e{left:422.629067pt;}
.x4a{left:423.598000pt;}
.x4c{left:425.466400pt;}
.x20{left:449.018133pt;}
.x49{left:450.142000pt;}
.x11{left:457.637733pt;}
.x19{left:460.356800pt;}
.x48{left:480.014000pt;}
.x2b{left:489.067067pt;}
.x4b{left:497.390000pt;}
.x4d{left:504.837067pt;}
.x5{left:581.936133pt;}
}




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