
    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_0b2eef8d9863b204dfb4d55f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_810102637eb165cdfe092d38.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3edab1103001ff21b98d2e16.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_68bafb3991dc021a9aba2007.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_427bdb3ab4d67c1796f7bb36.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959961;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_20266ef226de7057efb40e5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_7338db3d39626b02932f0aa1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.116000;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_763a1905951d80f5760e19b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_26d31226f32f41ca5bc3616a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_074665b0913a5b07ee44f965.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_1791ae67593055f417cbc9f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_4222f48255605b1ba42a440f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;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_de0bbc012bd02ead24a16496.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_7ff2885c4a4e8ffc42078d9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.815000;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_01c98affcac06170848dc6ad.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_88c97c11ca7aea532d34381e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.843000;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_52f49481dda383e736d696e1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9130aacbce21cc550897b696.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a87d01c08e9b109b11c5d4d1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.635000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8bba540791a8ac6a1204fb54.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_dca42259f3cf0d3405a012c6.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4d66a769cf9ce5ee8ef89c2c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;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:ff17;src:url('chunks/assets/font_a5892a1db4066515a5c4972d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.877000;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:ff18;src:url('chunks/assets/font_18dbe388d7f4b1797f1cc6aa.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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:ff19;src:url('chunks/assets/font_26987d222929cf5e22c44efd.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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:ff1a;src:url('chunks/assets/font_98a40b133da6bf9be55c36fd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;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:ff1b;src:url('chunks/assets/font_fa5ff786c8d35e72707a05ad.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.850000;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:ff1c;src:url('chunks/assets/font_d92aa50100e9e31c5fc8bd4d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.713000;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:ff1d;src:url('chunks/assets/font_347400423711ec8e907f8268.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.574000;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;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff30;src:url('chunks/assets/font_35d8998f856e101b2d38cc4a.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.923000;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:ff31;src:url('chunks/assets/font_3e705553573c8b117be23560.woff2')format("woff");}.ff31{font-family:ff31;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1c{vertical-align:-72.654000px;}
.v19{vertical-align:-56.346000px;}
.vf{vertical-align:-36.840000px;}
.v24{vertical-align:-33.101331px;}
.vd{vertical-align:-27.024000px;}
.v2{vertical-align:-22.854000px;}
.v21{vertical-align:-19.350000px;}
.v8{vertical-align:-9.816000px;}
.v3{vertical-align:-5.982000px;}
.v23{vertical-align:-4.650734px;}
.v22{vertical-align:-1.302000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:3.138000px;}
.v18{vertical-align:6.366000px;}
.v7{vertical-align:8.514000px;}
.ve{vertical-align:9.534000px;}
.v20{vertical-align:10.662000px;}
.v1f{vertical-align:13.614000px;}
.v17{vertical-align:16.182000px;}
.v25{vertical-align:17.724418px;}
.v12{vertical-align:18.906000px;}
.v5{vertical-align:19.998000px;}
.v1e{vertical-align:21.084000px;}
.v1{vertical-align:23.754000px;}
.v9{vertical-align:27.528000px;}
.vb{vertical-align:30.162000px;}
.v4{vertical-align:31.842000px;}
.v1b{vertical-align:35.082000px;}
.v26{vertical-align:40.362000px;}
.v27{vertical-align:43.290000px;}
.va{vertical-align:44.358000px;}
.vc{vertical-align:46.380000px;}
.v28{vertical-align:47.520000px;}
.v14{vertical-align:50.160000px;}
.v6{vertical-align:51.840000px;}
.v1d{vertical-align:53.256000px;}
.v1a{vertical-align:68.034000px;}
.v13{vertical-align:72.654000px;}
.v16{vertical-align:75.696000px;}
.v11{vertical-align:87.384000px;}
.v15{vertical-align:92.004000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000480px;}
.ls5e{letter-spacing:0.000513px;}
.ls70{letter-spacing:0.000532px;}
.ls69{letter-spacing:0.000960px;}
.ls6c{letter-spacing:0.001064px;}
.ls7{letter-spacing:0.001824px;}
.ls1d{letter-spacing:0.002147px;}
.ls2e{letter-spacing:0.002149px;}
.lse{letter-spacing:0.002509px;}
.lsb7{letter-spacing:0.002682px;}
.ls1b{letter-spacing:0.002686px;}
.ls5a{letter-spacing:0.002698px;}
.ls77{letter-spacing:0.002700px;}
.ls1e{letter-spacing:0.002706px;}
.ls10{letter-spacing:0.002797px;}
.ls5b{letter-spacing:0.002915px;}
.ls1f{letter-spacing:0.003056px;}
.ls6e{letter-spacing:0.003427px;}
.ls6f{letter-spacing:0.004059px;}
.ls40{letter-spacing:0.004338px;}
.ls65{letter-spacing:0.004344px;}
.ls6b{letter-spacing:0.004528px;}
.ls32{letter-spacing:0.004612px;}
.ls27{letter-spacing:0.005400px;}
.ls88{letter-spacing:0.005414px;}
.ls1c{letter-spacing:0.007604px;}
.ls68{letter-spacing:1.287502px;}
.ls34{letter-spacing:1.709907px;}
.ls31{letter-spacing:1.715907px;}
.ls8a{letter-spacing:1.939975px;}
.ls89{letter-spacing:1.941103px;}
.ls8b{letter-spacing:2.070497px;}
.lsb3{letter-spacing:2.347067px;}
.lsaa{letter-spacing:2.349242px;}
.ls25{letter-spacing:2.349791px;}
.ls2d{letter-spacing:2.353067px;}
.ls8d{letter-spacing:2.355791px;}
.ls42{letter-spacing:2.984915px;}
.ls73{letter-spacing:2.985226px;}
.ls1{letter-spacing:2.985234px;}
.ls11{letter-spacing:2.985396px;}
.ls15{letter-spacing:2.985522px;}
.ls8{letter-spacing:2.987748px;}
.ls74{letter-spacing:2.987950px;}
.ls6a{letter-spacing:2.989162px;}
.ls3f{letter-spacing:2.990915px;}
.ls3d{letter-spacing:2.991226px;}
.ls2{letter-spacing:2.991234px;}
.ls17{letter-spacing:2.991396px;}
.ls6d{letter-spacing:4.275502px;}
.ls45{letter-spacing:4.697907px;}
.ls23{letter-spacing:4.703907px;}
.lsc{letter-spacing:4.704192px;}
.ls49{letter-spacing:5.132158px;}
.ls55{letter-spacing:5.138158px;}
.ls4b{letter-spacing:5.344571px;}
.ls52{letter-spacing:7.174344px;}
.ls2b{letter-spacing:7.401249px;}
.ls14{letter-spacing:7.401511px;}
.ls22{letter-spacing:7.407249px;}
.lsa{letter-spacing:7.407511px;}
.ls87{letter-spacing:10.904712px;}
.lsa9{letter-spacing:10.910712px;}
.ls3c{letter-spacing:13.505907px;}
.ls39{letter-spacing:13.892915px;}
.ls37{letter-spacing:13.893226px;}
.ls38{letter-spacing:13.898915px;}
.ls30{letter-spacing:13.899226px;}
.ls54{letter-spacing:14.543412px;}
.ls36{letter-spacing:14.549412px;}
.ls12{letter-spacing:15.116939px;}
.ls58{letter-spacing:15.245412px;}
.ls33{letter-spacing:15.611907px;}
.ls13{letter-spacing:16.676879px;}
.lsa6{letter-spacing:16.820712px;}
.ls5c{letter-spacing:16.891067px;}
.ls60{letter-spacing:16.897067px;}
.ls35{letter-spacing:17.528915px;}
.ls57{letter-spacing:17.599067px;}
.ls59{letter-spacing:17.605067px;}
.lsa8{letter-spacing:17.923067px;}
.ls18{letter-spacing:17.972879px;}
.ls16{letter-spacing:17.978879px;}
.lsf{letter-spacing:18.105396px;}
.ls24{letter-spacing:18.179412px;}
.ls7a{letter-spacing:18.182706px;}
.ls53{letter-spacing:18.185412px;}
.lsc0{letter-spacing:18.429487px;}
.ls83{letter-spacing:19.130706px;}
.ls3a{letter-spacing:19.247907px;}
.lsb2{letter-spacing:19.265907px;}
.ls63{letter-spacing:19.442712px;}
.lsb4{letter-spacing:19.967907px;}
.ls80{letter-spacing:20.027412px;}
.lsb8{letter-spacing:20.102712px;}
.lsa7{letter-spacing:20.273907px;}
.lsba{letter-spacing:20.527067px;}
.lsbb{letter-spacing:20.533067px;}
.ls9{letter-spacing:20.821739px;}
.lsbd{letter-spacing:20.864712px;}
.ls97{letter-spacing:20.870706px;}
.ls79{letter-spacing:21.165226px;}
.ls78{letter-spacing:21.170915px;}
.ls4{letter-spacing:21.419065px;}
.ls7f{letter-spacing:21.524706px;}
.ls3b{letter-spacing:21.719412px;}
.ls19{letter-spacing:21.720192px;}
.ls7b{letter-spacing:21.746712px;}
.ls47{letter-spacing:21.794915px;}
.ls46{letter-spacing:21.795226px;}
.ls90{letter-spacing:21.812706px;}
.ls3e{letter-spacing:21.812712px;}
.ls93{letter-spacing:21.818706px;}
.ls8c{letter-spacing:21.818712px;}
.lsa3{letter-spacing:21.848706px;}
.ls28{letter-spacing:21.848915px;}
.ls82{letter-spacing:22.119226px;}
.lsa1{letter-spacing:22.814706px;}
.ls4a{letter-spacing:22.883907px;}
.ls95{letter-spacing:22.901907px;}
.ls26{letter-spacing:23.083067px;}
.ls50{letter-spacing:23.083599px;}
.ls9d{letter-spacing:23.264706px;}
.ls64{letter-spacing:23.555907px;}
.ls9b{letter-spacing:23.792712px;}
.ls6{letter-spacing:23.807748px;}
.ls1a{letter-spacing:23.863334px;}
.ls96{letter-spacing:23.865226px;}
.ls48{letter-spacing:24.169067px;}
.lsb9{letter-spacing:24.383907px;}
.ls9f{letter-spacing:24.572706px;}
.ls8f{letter-spacing:24.801226px;}
.ls20{letter-spacing:24.806915px;}
.ls21{letter-spacing:24.807056px;}
.ls91{letter-spacing:24.807226px;}
.lsa2{letter-spacing:24.837226px;}
.ls66{letter-spacing:25.099067px;}
.lsbe{letter-spacing:25.325907px;}
.ls4e{letter-spacing:25.663059px;}
.lsa0{letter-spacing:25.803226px;}
.lsb{letter-spacing:26.138879px;}
.ls81{letter-spacing:26.156706px;}
.ls9c{letter-spacing:26.253226px;}
.ls99{letter-spacing:26.414706px;}
.ls7c{letter-spacing:26.435907px;}
.ls2c{letter-spacing:26.519907px;}
.ls2a{letter-spacing:26.525907px;}
.ls51{letter-spacing:26.859239px;}
.lsbc{letter-spacing:27.039226px;}
.ls29{letter-spacing:27.507056px;}
.ls9e{letter-spacing:27.561226px;}
.lsd{letter-spacing:27.625334px;}
.lsb6{letter-spacing:27.812149px;}
.ls3{letter-spacing:28.077234px;}
.ls7e{letter-spacing:28.101226px;}
.ls72{letter-spacing:28.257226px;}
.lsbf{letter-spacing:28.295907px;}
.ls9a{letter-spacing:28.765067px;}
.ls94{letter-spacing:29.114712px;}
.ls98{letter-spacing:29.403226px;}
.lsac{letter-spacing:29.405412px;}
.lsa4{letter-spacing:29.589226px;}
.ls76{letter-spacing:29.655226px;}
.ls7d{letter-spacing:29.819907px;}
.ls75{letter-spacing:30.398706px;}
.ls4f{letter-spacing:31.012571px;}
.lsb0{letter-spacing:31.045067px;}
.ls44{letter-spacing:31.631907px;}
.lsaf{letter-spacing:31.682915px;}
.lsa5{letter-spacing:32.300915px;}
.lsab{letter-spacing:32.390915px;}
.lsb1{letter-spacing:33.585226px;}
.lsae{letter-spacing:35.119067px;}
.lsad{letter-spacing:35.756915px;}
.ls8e{letter-spacing:38.996712px;}
.ls61{letter-spacing:44.339907px;}
.ls4c{letter-spacing:44.531907px;}
.lsb5{letter-spacing:46.073412px;}
.ls2f{letter-spacing:46.876344px;}
.ls67{letter-spacing:93.479412px;}
.ls86{letter-spacing:107.549656px;}
.ls92{letter-spacing:134.426706px;}
.ls84{letter-spacing:154.233124px;}
.ls85{letter-spacing:154.234825px;}
.ls5f{letter-spacing:160.350513px;}
.ls71{letter-spacing:433.010712px;}
.ls56{letter-spacing:832.976712px;}
.ls43{letter-spacing:937.790915px;}
.ls41{letter-spacing:939.626915px;}
.ls4d{letter-spacing:1016.114712px;}
.ls62{letter-spacing:1190.474712px;}
.ls5d{letter-spacing:1248.557907px;}
.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;}
}
.wsc3{word-spacing:-107.549656px;}
.ws3c{word-spacing:-65.454600px;}
.ws2{word-spacing:-60.000000px;}
.ws78{word-spacing:-50.809387px;}
.ws114{word-spacing:-47.258221px;}
.ws99{word-spacing:-43.834936px;}
.ws47{word-spacing:-42.637126px;}
.ws2c{word-spacing:-42.636736px;}
.ws97{word-spacing:-33.211407px;}
.ws115{word-spacing:-31.706208px;}
.ws83{word-spacing:-31.694288px;}
.ws32{word-spacing:-25.333357px;}
.wsa4{word-spacing:-24.440748px;}
.ws0{word-spacing:-18.984000px;}
.ws3d{word-spacing:-18.183288px;}
.ws1a{word-spacing:-15.358758px;}
.ws9c{word-spacing:-12.587036px;}
.wsc9{word-spacing:-6.378999px;}
.ws8e{word-spacing:-3.652367px;}
.ws106{word-spacing:-3.586912px;}
.ws26{word-spacing:-3.063247px;}
.ws8c{word-spacing:-2.932366px;}
.ws10a{word-spacing:-2.921514px;}
.ws10b{word-spacing:-2.896802px;}
.ws29{word-spacing:-2.802606px;}
.ws27{word-spacing:-2.801431px;}
.ws1e{word-spacing:-2.670523px;}
.wse5{word-spacing:-2.611739px;}
.wse3{word-spacing:-2.605093px;}
.ws60{word-spacing:-2.343275px;}
.ws13a{word-spacing:-2.212365px;}
.ws140{word-spacing:-1.856045px;}
.wsf2{word-spacing:-1.754183px;}
.ws9f{word-spacing:-1.361456px;}
.ws41{word-spacing:-1.230546px;}
.ws2e{word-spacing:-1.170606px;}
.ws2b{word-spacing:-1.165081px;}
.ws50{word-spacing:-0.968728px;}
.ws31{word-spacing:-0.903265px;}
.ws34{word-spacing:-0.837819px;}
.ws146{word-spacing:-0.564883px;}
.ws135{word-spacing:-0.445091px;}
.ws133{word-spacing:-0.439200px;}
.ws67{word-spacing:-0.314182px;}
.ws12{word-spacing:-0.188286px;}
.ws95{word-spacing:-0.065455px;}
.ws14a{word-spacing:-0.053798px;}
.ws11{word-spacing:-0.053796px;}
.ws20{word-spacing:-0.047820px;}
.ws17{word-spacing:-0.035868px;}
.ws98{word-spacing:-0.035866px;}
.ws1{word-spacing:0.000000px;}
.ws77{word-spacing:0.013091px;}
.ws109{word-spacing:0.209455px;}
.ws33{word-spacing:0.274907px;}
.wsbb{word-spacing:0.340364px;}
.ws1c{word-spacing:0.403470px;}
.ws76{word-spacing:0.405819px;}
.ws82{word-spacing:0.602182px;}
.ws81{word-spacing:0.616261px;}
.ws80{word-spacing:0.647121px;}
.ws90{word-spacing:0.664261px;}
.ws58{word-spacing:0.667637px;}
.ws14{word-spacing:0.726246px;}
.ws5d{word-spacing:0.733092px;}
.wsf0{word-spacing:0.864001px;}
.wsbc{word-spacing:0.929455px;}
.wsbd{word-spacing:0.934261px;}
.ws141{word-spacing:1.113627px;}
.wse2{word-spacing:1.191274px;}
.ws48{word-spacing:1.256728px;}
.ws57{word-spacing:1.387638px;}
.ws14c{word-spacing:1.425658px;}
.ws24{word-spacing:1.453079px;}
.ws113{word-spacing:1.500411px;}
.ws112{word-spacing:1.518547px;}
.wse6{word-spacing:1.714911px;}
.ws7b{word-spacing:1.780365px;}
.ws116{word-spacing:1.845820px;}
.wsa{word-spacing:1.909758px;}
.ws61{word-spacing:2.173093px;}
.ws147{word-spacing:2.297192px;}
.ws131{word-spacing:2.434911px;}
.ws150{word-spacing:2.555424px;}
.ws51{word-spacing:2.565820px;}
.ws10d{word-spacing:2.631275px;}
.wsd4{word-spacing:2.686261px;}
.wsd3{word-spacing:2.696730px;}
.ws139{word-spacing:2.762184px;}
.ws5c{word-spacing:2.958548px;}
.ws7{word-spacing:3.039474px;}
.ws13d{word-spacing:3.039610px;}
.ws15b{word-spacing:3.056957px;}
.ws15e{word-spacing:3.066286px;}
.ws15d{word-spacing:3.070566px;}
.ws6{word-spacing:3.093270px;}
.ws144{word-spacing:3.093408px;}
.wsb5{word-spacing:3.154248px;}
.wsb6{word-spacing:3.154912px;}
.wsb1{word-spacing:3.220366px;}
.wsb2{word-spacing:3.285821px;}
.ws2f{word-spacing:3.351245px;}
.wsad{word-spacing:3.351276px;}
.ws14b{word-spacing:3.523795px;}
.wsa9{word-spacing:3.544261px;}
.wsab{word-spacing:3.547639px;}
.wsa7{word-spacing:3.550209px;}
.ws96{word-spacing:3.611003px;}
.ws3b{word-spacing:3.613094px;}
.ws8d{word-spacing:3.628261px;}
.wscb{word-spacing:3.634261px;}
.wsdd{word-spacing:3.658261px;}
.ws3f{word-spacing:3.678549px;}
.ws91{word-spacing:3.701813px;}
.ws11e{word-spacing:3.744003px;}
.wsc4{word-spacing:3.809458px;}
.ws128{word-spacing:3.874912px;}
.ws66{word-spacing:3.940367px;}
.ws25{word-spacing:4.005785px;}
.wse7{word-spacing:4.005822px;}
.ws15a{word-spacing:4.115578px;}
.wsdf{word-spacing:4.202185px;}
.ws14f{word-spacing:4.233934px;}
.ws92{word-spacing:4.267640px;}
.ws16{word-spacing:4.276782px;}
.ws142{word-spacing:4.304970px;}
.wsf9{word-spacing:4.333095px;}
.ws15c{word-spacing:4.337351px;}
.ws2a{word-spacing:4.398509px;}
.ws94{word-spacing:4.529458px;}
.ws93{word-spacing:4.554243px;}
.ws44{word-spacing:4.594913px;}
.wsdc{word-spacing:4.624261px;}
.ws8b{word-spacing:4.655851px;}
.ws46{word-spacing:4.660368px;}
.ws88{word-spacing:4.696209px;}
.ws4{word-spacing:4.699695px;}
.ws89{word-spacing:4.723499px;}
.wsaf{word-spacing:4.725822px;}
.ws86{word-spacing:4.856731px;}
.ws87{word-spacing:4.922186px;}
.ws52{word-spacing:4.987641px;}
.wsd7{word-spacing:5.053095px;}
.wsd8{word-spacing:5.068261px;}
.ws12c{word-spacing:5.118550px;}
.ws30{word-spacing:5.183957px;}
.wsb0{word-spacing:5.184004px;}
.ws148{word-spacing:5.245344px;}
.wsb9{word-spacing:5.249459px;}
.ws4f{word-spacing:5.314914px;}
.ws132{word-spacing:5.380368px;}
.ws136{word-spacing:5.437711px;}
.wsd9{word-spacing:5.445823px;}
.ws18{word-spacing:5.460294px;}
.ws19{word-spacing:5.462446px;}
.ws122{word-spacing:5.511277px;}
.ws138{word-spacing:5.576732px;}
.ws13e{word-spacing:5.632692px;}
.ws5b{word-spacing:5.642187px;}
.ws145{word-spacing:5.686491px;}
.ws12a{word-spacing:5.838550px;}
.ws12b{word-spacing:5.854261px;}
.ws10c{word-spacing:5.904005px;}
.ws11b{word-spacing:5.969460px;}
.ws43{word-spacing:6.034914px;}
.ws158{word-spacing:6.159917px;}
.wsb{word-spacing:6.213438px;}
.ws153{word-spacing:6.213715px;}
.ws63{word-spacing:6.296733px;}
.ws65{word-spacing:6.362187px;}
.ws10{word-spacing:6.374826px;}
.wsdb{word-spacing:6.376261px;}
.ws3{word-spacing:6.455625px;}
.ws151{word-spacing:6.590304px;}
.ws13b{word-spacing:6.624006px;}
.ws53{word-spacing:6.689460px;}
.wsac{word-spacing:6.951279px;}
.ws9b{word-spacing:7.078261px;}
.ws1f{word-spacing:7.082123px;}
.ws9a{word-spacing:7.082188px;}
.ws22{word-spacing:7.091394px;}
.ws108{word-spacing:7.099242px;}
.wsda{word-spacing:7.147642px;}
.ws120{word-spacing:7.278552px;}
.wsed{word-spacing:7.344006px;}
.ws23{word-spacing:7.474847px;}
.ws85{word-spacing:7.474915px;}
.ws84{word-spacing:7.486209px;}
.ws14d{word-spacing:7.612474px;}
.ws149{word-spacing:7.623233px;}
.ws12e{word-spacing:7.867643px;}
.wsb4{word-spacing:7.933098px;}
.ws15{word-spacing:7.934910px;}
.wsb3{word-spacing:7.998552px;}
.ws56{word-spacing:8.064007px;}
.ws129{word-spacing:8.129461px;}
.wsfa{word-spacing:8.194916px;}
.wsd6{word-spacing:8.224261px;}
.wsd5{word-spacing:8.260371px;}
.wsde{word-spacing:8.391280px;}
.ws40{word-spacing:8.456734px;}
.wsa1{word-spacing:8.482261px;}
.wsa0{word-spacing:8.522189px;}
.ws154{word-spacing:8.537806px;}
.ws118{word-spacing:8.587644px;}
.wsf3{word-spacing:8.653098px;}
.ws7e{word-spacing:8.718553px;}
.ws7f{word-spacing:8.728186px;}
.ws152{word-spacing:8.860596px;}
.ws126{word-spacing:8.914917px;}
.wsee{word-spacing:9.111280px;}
.ws8{word-spacing:9.217498px;}
.wsd2{word-spacing:9.438553px;}
.ws12d{word-spacing:9.569463px;}
.ws10f{word-spacing:9.634917px;}
.ws1b{word-spacing:9.763974px;}
.ws14e{word-spacing:9.828968px;}
.wsb8{word-spacing:9.831281px;}
.ws103{word-spacing:9.962190px;}
.wsfe{word-spacing:10.027645px;}
.ws105{word-spacing:10.348933px;}
.wse9{word-spacing:10.354918px;}
.wsfc{word-spacing:10.485827px;}
.wsfd{word-spacing:10.551282px;}
.ws157{word-spacing:10.782885px;}
.ws13c{word-spacing:11.001773px;}
.wse8{word-spacing:11.074918px;}
.wse0{word-spacing:11.127039px;}
.wse1{word-spacing:11.140373px;}
.ws10e{word-spacing:11.336737px;}
.ws127{word-spacing:11.467646px;}
.wsea{word-spacing:11.925828px;}
.ws155{word-spacing:11.970144px;}
.ws42{word-spacing:12.122192px;}
.ws9e{word-spacing:12.187647px;}
.ws9d{word-spacing:12.253101px;}
.ws102{word-spacing:12.384010px;}
.wsf8{word-spacing:13.562193px;}
.wsd{word-spacing:13.691082px;}
.wsf{word-spacing:13.744878px;}
.ws156{word-spacing:13.810049px;}
.ws79{word-spacing:13.848151px;}
.wsa6{word-spacing:13.848235px;}
.wsc{word-spacing:14.121450px;}
.ws4e{word-spacing:14.282194px;}
.wsf7{word-spacing:14.584242px;}
.wsf6{word-spacing:14.609467px;}
.ws75{word-spacing:15.787650px;}
.ws74{word-spacing:15.853104px;}
.ws100{word-spacing:16.311286px;}
.ws4c{word-spacing:16.507650px;}
.ws110{word-spacing:16.900378px;}
.wsca{word-spacing:17.358560px;}
.ws4d{word-spacing:17.424015px;}
.ws7a{word-spacing:17.484151px;}
.ws107{word-spacing:17.508151px;}
.ws13{word-spacing:18.109444px;}
.ws28{word-spacing:18.330120px;}
.ws159{word-spacing:18.367175px;}
.ws143{word-spacing:18.370662px;}
.ws13f{word-spacing:18.373175px;}
.wse4{word-spacing:18.515500px;}
.ws124{word-spacing:19.780380px;}
.ws2d{word-spacing:19.956120px;}
.ws5f{word-spacing:20.178151px;}
.ws134{word-spacing:20.684778px;}
.ws68{word-spacing:20.834778px;}
.wsba{word-spacing:20.862996px;}
.ws7d{word-spacing:21.119500px;}
.wsa2{word-spacing:21.120151px;}
.ws7c{word-spacing:21.124933px;}
.wsa5{word-spacing:21.140325px;}
.wsa3{word-spacing:21.146325px;}
.ws5a{word-spacing:21.800778px;}
.ws59{word-spacing:21.804151px;}
.ws5e{word-spacing:21.837461px;}
.wsf1{word-spacing:21.977500px;}
.ws117{word-spacing:22.950151px;}
.wsc1{word-spacing:23.084277px;}
.ws62{word-spacing:23.277066px;}
.ws73{word-spacing:23.367292px;}
.ws130{word-spacing:23.567500px;}
.ws125{word-spacing:23.576747px;}
.wsb7{word-spacing:23.687922px;}
.ws11d{word-spacing:23.909922px;}
.wsae{word-spacing:24.494325px;}
.ws11c{word-spacing:24.504151px;}
.wsa8{word-spacing:24.666151px;}
.wsaa{word-spacing:24.671500px;}
.ws6b{word-spacing:24.752778px;}
.wscc{word-spacing:24.756010px;}
.ws69{word-spacing:24.756151px;}
.ws36{word-spacing:24.758471px;}
.ws38{word-spacing:24.759461px;}
.ws3a{word-spacing:24.760028px;}
.ws11f{word-spacing:24.858151px;}
.ws5{word-spacing:25.003428px;}
.wsc5{word-spacing:25.003657px;}
.ws49{word-spacing:25.069112px;}
.ws45{word-spacing:25.770151px;}
.ws8a{word-spacing:25.818151px;}
.ws4b{word-spacing:26.325840px;}
.ws64{word-spacing:27.453066px;}
.ws121{word-spacing:27.792996px;}
.ws54{word-spacing:27.813066px;}
.ws4a{word-spacing:28.093114px;}
.ws21{word-spacing:28.218120px;}
.wsec{word-spacing:28.458151px;}
.ws12f{word-spacing:28.976778px;}
.ws119{word-spacing:29.116848px;}
.wseb{word-spacing:29.154151px;}
.wsfb{word-spacing:29.561500px;}
.ws11a{word-spacing:29.711500px;}
.wsf5{word-spacing:29.808151px;}
.wsf4{word-spacing:29.813500px;}
.wsef{word-spacing:30.246151px;}
.wsff{word-spacing:31.181500px;}
.wsc8{word-spacing:31.319605px;}
.wse{word-spacing:32.011444px;}
.ws104{word-spacing:32.170933px;}
.ws137{word-spacing:33.078151px;}
.ws1d{word-spacing:33.381540px;}
.ws123{word-spacing:33.381846px;}
.ws101{word-spacing:37.414933px;}
.wsc0{word-spacing:43.106600px;}
.ws111{word-spacing:50.740406px;}
.ws55{word-spacing:52.892778px;}
.ws35{word-spacing:53.554954px;}
.ws9{word-spacing:55.245106px;}
.wsc2{word-spacing:58.197534px;}
.wsc7{word-spacing:59.505403px;}
.wsc6{word-spacing:65.657428px;}
.wsbe{word-spacing:69.590107px;}
.wscd{word-spacing:93.547714px;}
.ws39{word-spacing:102.318631px;}
.ws37{word-spacing:102.384085px;}
.ws3e{word-spacing:118.682281px;}
.ws6f{word-spacing:118.747735px;}
.wsd0{word-spacing:120.515010px;}
.wsbf{word-spacing:121.825517px;}
.ws72{word-spacing:127.780470px;}
.ws70{word-spacing:134.103066px;}
.ws6e{word-spacing:135.111385px;}
.wsd1{word-spacing:135.303066px;}
.wscf{word-spacing:136.878660px;}
.wsce{word-spacing:148.008151px;}
.ws71{word-spacing:150.465066px;}
.ws6d{word-spacing:163.170151px;}
.ws6c{word-spacing:218.719512px;}
.ws6a{word-spacing:232.210806px;}
.ws8f{word-spacing:501.068054px;}
._39{margin-left:-104.608718px;}
._b{margin-left:-28.414728px;}
._a{margin-left:-26.777712px;}
._49{margin-left:-25.595483px;}
._2{margin-left:-7.353600px;}
._8{margin-left:-6.000000px;}
._3{margin-left:-4.284000px;}
._9{margin-left:-3.201990px;}
._1{margin-left:-1.996800px;}
._d{width:1.560084px;}
._13{width:2.723418px;}
._41{width:3.796367px;}
._0{width:5.587200px;}
._4{width:7.476098px;}
._5{width:8.579958px;}
._48{width:14.969362px;}
._6{width:16.259004px;}
._16{width:18.200384px;}
._18{width:19.484736px;}
._11{width:20.836225px;}
._f{width:22.778778px;}
._c{width:24.584772px;}
._15{width:26.967048px;}
._2a{width:28.145478px;}
._17{width:29.443732px;}
._e{width:31.597296px;}
._27{width:33.447301px;}
._37{width:34.571368px;}
._2b{width:37.678668px;}
._10{width:38.692020px;}
._14{width:40.450572px;}
._29{width:42.349126px;}
._25{width:44.122811px;}
._12{width:45.685500px;}
._40{width:47.172776px;}
._43{width:48.439150px;}
._42{width:49.986985px;}
._3a{width:51.838086px;}
._26{width:55.320476px;}
._45{width:59.499101px;}
._3b{width:60.776814px;}
._44{width:61.854597px;}
._46{width:69.047121px;}
._28{width:71.095391px;}
._47{width:89.019125px;}
._3c{width:97.461899px;}
._38{width:111.143716px;}
._2c{width:112.647367px;}
._35{width:116.051006px;}
._36{width:120.501919px;}
._33{width:129.599520px;}
._1e{width:138.698297px;}
._31{width:145.963170px;}
._34{width:153.294085px;}
._32{width:155.127402px;}
._23{width:157.876495px;}
._20{width:159.054678px;}
._2f{width:162.326820px;}
._30{width:171.491052px;}
._2d{width:178.690470px;}
._3f{width:186.021973px;}
._2e{width:187.854702px;}
._3d{width:193.286846px;}
._3e{width:202.385623px;}
._24{width:204.218352px;}
._7{width:316.920000px;}
._1f{width:331.483747px;}
._21{width:360.484456px;}
._22{width:363.273312px;}
._1d{width:445.037521px;}
._19{width:531.393605px;}
._1b{width:615.796877px;}
._1c{width:631.309617px;}
._1a{width:642.567808px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,110,178);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:19.843110px;}
.fs10{font-size:28.347300px;}
.fs13{font-size:30.384900px;}
.fs15{font-size:32.410350px;}
.fsf{font-size:35.865600px;}
.fsc{font-size:35.868000px;}
.fs6{font-size:42.000000px;}
.fs12{font-size:43.407000px;}
.fs14{font-size:46.300500px;}
.fsb{font-size:47.820000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:53.796000px;}
.fs16{font-size:53.798400px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fsa{font-size:65.454000px;}
.fse{font-size:65.454600px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs9{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.445992px;}
.y36{bottom:4.289325px;}
.yc{bottom:8.040000px;}
.y114{bottom:11.721325px;}
.y11e{bottom:13.813410px;}
.y133{bottom:15.660218px;}
.y35{bottom:19.233262px;}
.y11d{bottom:27.208520px;}
.y10f{bottom:27.303080px;}
.y132{bottom:29.948244px;}
.y34{bottom:34.177200px;}
.y10e{bottom:36.268670px;}
.y11f{bottom:36.392935px;}
.y134{bottom:39.744889px;}
.y110{bottom:42.381056px;}
.y32{bottom:58.020000px;}
.y146{bottom:58.126419px;}
.y33{bottom:61.708950px;}
.y120{bottom:62.240719px;}
.y39{bottom:64.500000px;}
.y135{bottom:66.520777px;}
.y149{bottom:67.942974px;}
.y1b{bottom:69.510000px;}
.y13f{bottom:72.105158px;}
.y12b{bottom:75.165008px;}
.y112{bottom:76.877878px;}
.y15{bottom:77.715000px;}
.y139{bottom:84.166592px;}
.y143{bottom:84.552430px;}
.y113{bottom:84.615250px;}
.y14d{bottom:87.253292px;}
.y121{bottom:88.088719px;}
.y13a{bottom:91.135480px;}
.y1a{bottom:91.590000px;}
.y136{bottom:93.297051px;}
.y12d{bottom:95.268237px;}
.y126{bottom:95.991687px;}
.y14a{bottom:96.141445px;}
.y144{bottom:96.986661px;}
.y14{bottom:99.795000px;}
.y14e{bottom:100.198742px;}
.y127{bottom:102.525061px;}
.y13b{bottom:103.091658px;}
.y145{bottom:104.322998px;}
.y140{bottom:104.465503px;}
.y12e{bottom:106.925404px;}
.y111{bottom:111.485679px;}
.y128{bottom:111.493598px;}
.y19{bottom:113.670000px;}
.y12f{bottom:113.803264px;}
.y122{bottom:113.936864px;}
.y155{bottom:114.802500px;}
.y10c{bottom:114.804000px;}
.y18f{bottom:117.502500px;}
.y18e{bottom:119.632500px;}
.y137{bottom:120.072630px;}
.y1c9{bottom:122.412000px;}
.yc0{bottom:123.831000px;}
.y14b{bottom:124.339221px;}
.y10{bottom:133.935000px;}
.y10b{bottom:134.230500px;}
.y18{bottom:135.750000px;}
.y18d{bottom:136.560000px;}
.y141{bottom:136.825694px;}
.y123{bottom:139.785009px;}
.y18c{bottom:140.944500px;}
.y1c8{bottom:141.838500px;}
.ybf{bottom:146.125500px;}
.y138{bottom:146.848981px;}
.y14c{bottom:152.536997px;}
.y12c{bottom:152.708720px;}
.y10a{bottom:153.657000px;}
.y150{bottom:154.385159px;}
.y16{bottom:154.950000px;}
.y154{bottom:155.649000px;}
.yf{bottom:156.015000px;}
.y17{bottom:157.830000px;}
.y18b{bottom:158.242500px;}
.y153{bottom:158.404500px;}
.y65{bottom:159.802500px;}
.y18a{bottom:160.371000px;}
.y152{bottom:160.533000px;}
.y1c7{bottom:161.265000px;}
.y92{bottom:162.001500px;}
.y148{bottom:164.866500px;}
.y124{bottom:165.632431px;}
.y142{bottom:169.185885px;}
.y109{bottom:173.085000px;}
.y130{bottom:177.604805px;}
.y64{bottom:179.230500px;}
.y189{bottom:179.797500px;}
.ybe{bottom:180.097500px;}
.y1c6{bottom:180.693000px;}
.y91{bottom:181.428000px;}
.y13d{bottom:181.711251px;}
.y1f5{bottom:184.212000px;}
.y13e{bottom:184.876322px;}
.y13c{bottom:184.876353px;}
.y14f{bottom:187.021610px;}
.y125{bottom:191.480576px;}
.y108{bottom:192.511500px;}
.y63{bottom:198.657000px;}
.y188{bottom:199.225500px;}
.ybd{bottom:199.525500px;}
.y1c5{bottom:200.119500px;}
.y1f4{bottom:200.650500px;}
.y90{bottom:200.854500px;}
.y107{bottom:211.939500px;}
.y12a{bottom:213.168478px;}
.y1c4{bottom:214.396500px;}
.y129{bottom:216.135752px;}
.y1f3{bottom:217.089000px;}
.y62{bottom:218.085000px;}
.y187{bottom:218.652000px;}
.ybc{bottom:218.952000px;}
.y1c3{bottom:219.547500px;}
.y8f{bottom:220.282500px;}
.y106{bottom:231.366000px;}
.y60{bottom:232.512000px;}
.y1f2{bottom:233.527500px;}
.y186{bottom:233.695500px;}
.y61{bottom:235.383000px;}
.y5f{bottom:237.511500px;}
.y185{bottom:238.080000px;}
.y1c2{bottom:238.974000px;}
.y8e{bottom:239.709000px;}
.ybb{bottom:249.742500px;}
.y1f1{bottom:249.966000px;}
.y105{bottom:250.794000px;}
.y183{bottom:253.122000px;}
.y184{bottom:255.378000px;}
.y5e{bottom:256.939500px;}
.y182{bottom:257.506500px;}
.y1c1{bottom:258.402000px;}
.y8d{bottom:259.137000px;}
.yba{bottom:260.968500px;}
.y1f0{bottom:266.404500px;}
.y104{bottom:270.220500px;}
.y5c{bottom:271.366500px;}
.y1c0{bottom:272.677500px;}
.y5d{bottom:274.237500px;}
.y181{bottom:274.968000px;}
.y5b{bottom:276.366000px;}
.y1bf{bottom:277.828500px;}
.y8c{bottom:278.563500px;}
.y180{bottom:279.352500px;}
.y1ef{bottom:282.843000px;}
.y103{bottom:289.647000px;}
.y1bd{bottom:292.257000px;}
.y1be{bottom:295.126500px;}
.y5a{bottom:295.792500px;}
.y17f{bottom:296.650500px;}
.y1bc{bottom:297.255000px;}
.y8b{bottom:297.991500px;}
.y17e{bottom:298.780500px;}
.y1ee{bottom:299.281500px;}
.yb9{bottom:306.642000px;}
.y102{bottom:309.075000px;}
.y1bb{bottom:311.532000px;}
.y59{bottom:315.220500px;}
.y1ed{bottom:315.720000px;}
.y151{bottom:316.597500px;}
.y1ba{bottom:316.683000px;}
.y8a{bottom:317.418000px;}
.y17d{bottom:318.207000px;}
.yb8{bottom:326.068500px;}
.y89{bottom:331.693500px;}
.y1ec{bottom:332.157000px;}
.y58{bottom:334.647000px;}
.y1b9{bottom:336.109500px;}
.y88{bottom:336.844500px;}
.y17c{bottom:337.635000px;}
.ya{bottom:344.680500px;}
.yb7{bottom:345.496500px;}
.y1eb{bottom:348.595500px;}
.y101{bottom:350.727000px;}
.y57{bottom:354.075000px;}
.y17b{bottom:354.933000px;}
.y1b8{bottom:355.537500px;}
.y87{bottom:356.272500px;}
.y17a{bottom:357.061500px;}
.y1ea{bottom:365.034000px;}
.y55{bottom:368.502000px;}
.y100{bottom:370.155000px;}
.y56{bottom:371.373000px;}
.y54{bottom:373.501500px;}
.y1b7{bottom:374.964000px;}
.y86{bottom:375.699000px;}
.y179{bottom:376.488000px;}
.y11c{bottom:378.028500px;}
.y1e9{bottom:381.472500px;}
.yb6{bottom:382.993500px;}
.yb5{bottom:383.787000px;}
.yd{bottom:386.490000px;}
.yb4{bottom:387.832500px;}
.yff{bottom:389.581500px;}
.y53{bottom:392.929500px;}
.y178{bottom:393.951000px;}
.y1b6{bottom:394.392000px;}
.y85{bottom:395.127000px;}
.y9{bottom:395.689500px;}
.y1e8{bottom:397.911000px;}
.y177{bottom:398.335500px;}
.yfe{bottom:409.009500px;}
.y84{bottom:409.402500px;}
.y52{bottom:412.356000px;}
.y1b5{bottom:413.818500px;}
.y1e7{bottom:414.349500px;}
.y83{bottom:414.553500px;}
.y176{bottom:417.762000px;}
.yb2{bottom:421.237500px;}
.yb3{bottom:421.399500px;}
.yb1{bottom:426.237000px;}
.yfd{bottom:428.436000px;}
.y1e6{bottom:430.788000px;}
.y1b4{bottom:433.245000px;}
.y82{bottom:433.981500px;}
.yb{bottom:434.850000px;}
.y175{bottom:437.188500px;}
.y8{bottom:446.698500px;}
.y1e5{bottom:447.226500px;}
.yfb{bottom:448.002000px;}
.yfc{bottom:450.711000px;}
.y1b3{bottom:452.673000px;}
.yfa{bottom:452.839500px;}
.y81{bottom:453.408000px;}
.y174{bottom:456.616500px;}
.y1e4{bottom:463.665000px;}
.yb0{bottom:471.546000px;}
.y1b2{bottom:472.099500px;}
.y80{bottom:472.834500px;}
.y173{bottom:476.043000px;}
.y1e3{bottom:480.103500px;}
.y11{bottom:488.055000px;}
.yaf{bottom:490.972500px;}
.y1b1{bottom:491.527500px;}
.y7f{bottom:492.262500px;}
.y172{bottom:495.471000px;}
.y1e2{bottom:496.540500px;}
.yf8{bottom:496.687500px;}
.y51{bottom:496.698000px;}
.y7{bottom:497.707500px;}
.yf2{bottom:503.793000px;}
.yf1{bottom:508.702500px;}
.y170{bottom:509.898000px;}
.y1b0{bottom:510.954000px;}
.y7e{bottom:511.689000px;}
.y171{bottom:512.769000px;}
.y1e1{bottom:512.979000px;}
.y50{bottom:513.136500px;}
.yf0{bottom:513.610500px;}
.y16f{bottom:514.897500px;}
.yef{bottom:518.520000px;}
.yf7{bottom:520.000500px;}
.yee{bottom:523.429500px;}
.yad{bottom:526.906500px;}
.yed{bottom:528.339000px;}
.y1e0{bottom:529.417500px;}
.y4f{bottom:529.575000px;}
.y147{bottom:529.759500px;}
.y1af{bottom:530.382000px;}
.y7d{bottom:531.117000px;}
.yec{bottom:533.247000px;}
.yac{bottom:533.293500px;}
.y16e{bottom:534.325500px;}
.yab{bottom:538.131000px;}
.y12{bottom:538.230000px;}
.yf6{bottom:538.644000px;}
.y131{bottom:542.515500px;}
.yf5{bottom:543.481500px;}
.yf9{bottom:543.883500px;}
.y1df{bottom:545.856000px;}
.y4e{bottom:546.013500px;}
.y6{bottom:548.716500px;}
.y1ae{bottom:549.808500px;}
.y7c{bottom:550.543500px;}
.y16d{bottom:553.752000px;}
.yae{bottom:559.323000px;}
.y1de{bottom:562.294500px;}
.y4d{bottom:562.450500px;}
.yeb{bottom:562.702500px;}
.ya9{bottom:566.265000px;}
.yf4{bottom:566.794500px;}
.yea{bottom:567.612000px;}
.y7b{bottom:569.971500px;}
.ye9{bottom:572.520000px;}
.yaa{bottom:572.650500px;}
.y16c{bottom:573.178500px;}
.ye8{bottom:577.429500px;}
.y1dd{bottom:578.733000px;}
.y4c{bottom:578.889000px;}
.ye7{bottom:582.339000px;}
.ye6{bottom:587.248500px;}
.ya8{bottom:588.559500px;}
.y7a{bottom:589.398000px;}
.y1c{bottom:589.605000px;}
.yf3{bottom:590.106000px;}
.y1ad{bottom:592.134000px;}
.ye5{bottom:592.156500px;}
.y16b{bottom:592.606500px;}
.y1dc{bottom:595.171500px;}
.y4b{bottom:595.327500px;}
.y5{bottom:599.725500px;}
.ye4{bottom:606.885000px;}
.y16a{bottom:607.033500px;}
.y79{bottom:608.826000px;}
.y1ac{bottom:609.432000px;}
.y1ab{bottom:611.560500px;}
.y1db{bottom:611.610000px;}
.y4a{bottom:611.766000px;}
.y169{bottom:612.033000px;}
.ya7{bottom:623.440500px;}
.ye3{bottom:624.502500px;}
.y1da{bottom:628.048500px;}
.y49{bottom:628.204500px;}
.y1aa{bottom:630.987000px;}
.y168{bottom:631.461000px;}
.ye{bottom:631.920000px;}
.ya6{bottom:642.868500px;}
.ye2{bottom:643.929000px;}
.y1d9{bottom:644.487000px;}
.y48{bottom:644.643000px;}
.y1a9{bottom:650.415000px;}
.y167{bottom:650.887500px;}
.y78{bottom:651.150000px;}
.y11b{bottom:660.345000px;}
.y1d8{bottom:660.924000px;}
.y47{bottom:661.081500px;}
.ya5{bottom:662.295000px;}
.ye1{bottom:663.357000px;}
.y1a8{bottom:669.841500px;}
.y166{bottom:670.315500px;}
.y77{bottom:670.576500px;}
.y1d7{bottom:677.362500px;}
.y46{bottom:677.520000px;}
.ya4{bottom:681.721500px;}
.ye0{bottom:682.783500px;}
.y1a7{bottom:689.269500px;}
.y165{bottom:689.742000px;}
.y76{bottom:690.004500px;}
.y1d6{bottom:693.801000px;}
.y45{bottom:693.958500px;}
.ydf{bottom:698.875500px;}
.ya3{bottom:701.149500px;}
.yde{bottom:703.713000px;}
.y1a6{bottom:706.567500px;}
.y1a5{bottom:708.696000px;}
.y164{bottom:709.168500px;}
.y75{bottom:709.431000px;}
.y1d5{bottom:710.239500px;}
.y11a{bottom:716.730000px;}
.y1d4{bottom:726.678000px;}
.y1a4{bottom:728.124000px;}
.y163{bottom:728.596500px;}
.y74{bottom:728.859000px;}
.y44{bottom:732.706500px;}
.ydd{bottom:735.450000px;}
.y119{bottom:736.156500px;}
.ydc{bottom:739.186500px;}
.y1a2{bottom:742.551000px;}
.yd6{bottom:742.566000px;}
.y1d3{bottom:743.116500px;}
.y1a3{bottom:745.422000px;}
.yd5{bottom:747.403500px;}
.y1a1{bottom:747.550500px;}
.y162{bottom:748.023000px;}
.y73{bottom:748.285500px;}
.yd3{bottom:749.937000px;}
.y43{bottom:756.618000px;}
.y1d2{bottom:759.555000px;}
.yd7{bottom:761.161500px;}
.ya2{bottom:761.914500px;}
.y117{bottom:764.700000px;}
.y1a0{bottom:766.977000px;}
.y161{bottom:767.451000px;}
.y72{bottom:767.713500px;}
.ydb{bottom:769.287000px;}
.yd2{bottom:772.231500px;}
.yd4{bottom:772.323000px;}
.yda{bottom:773.023500px;}
.y1d1{bottom:775.993500px;}
.yd9{bottom:776.403000px;}
.y4{bottom:778.225500px;}
.y42{bottom:778.770000px;}
.yd8{bottom:781.240500px;}
.y19f{bottom:786.405000px;}
.y160{bottom:786.877500px;}
.y71{bottom:787.140000px;}
.ya1{bottom:789.229500px;}
.y41{bottom:789.493500px;}
.y19e{bottom:805.831500px;}
.y15f{bottom:806.305500px;}
.ya0{bottom:808.701000px;}
.y40{bottom:811.645500px;}
.y13{bottom:815.670000px;}
.yd1{bottom:816.013500px;}
.y1d0{bottom:818.317500px;}
.y19d{bottom:825.259500px;}
.y15e{bottom:825.732000px;}
.y3f{bottom:828.084000px;}
.y9f{bottom:828.171000px;}
.yd0{bottom:835.440000px;}
.y1cf{bottom:837.745500px;}
.y3e{bottom:842.760000px;}
.y19c{bottom:844.686000px;}
.y9e{bottom:847.642500px;}
.y70{bottom:847.905000px;}
.ycf{bottom:854.868000px;}
.y1ce{bottom:857.172000px;}
.y3d{bottom:862.186500px;}
.y19b{bottom:864.114000px;}
.y9d{bottom:867.114000px;}
.y6f{bottom:867.331500px;}
.y118{bottom:872.382000px;}
.yce{bottom:874.294500px;}
.y24{bottom:874.500000px;}
.y19a{bottom:883.540500px;}
.y15d{bottom:886.497000px;}
.y9c{bottom:886.584000px;}
.y6e{bottom:886.759500px;}
.ycd{bottom:893.722500px;}
.y31{bottom:898.260000px;}
.y1cd{bottom:899.497500px;}
.y199{bottom:902.967000px;}
.y23{bottom:903.600000px;}
.y3{bottom:905.716500px;}
.y15c{bottom:905.967000px;}
.y9b{bottom:906.055500px;}
.y6d{bottom:906.229500px;}
.y3c{bottom:908.512500px;}
.y30{bottom:910.260000px;}
.y1cc{bottom:918.924000px;}
.y2f{bottom:922.260000px;}
.y198{bottom:922.395000px;}
.ycc{bottom:922.704000px;}
.y15b{bottom:925.438500px;}
.y9a{bottom:925.525500px;}
.y6c{bottom:925.657500px;}
.yca{bottom:929.089500px;}
.y10d{bottom:929.475000px;}
.yc9{bottom:933.928500px;}
.y1cb{bottom:938.352000px;}
.y197{bottom:941.821500px;}
.y22{bottom:943.950000px;}
.y3b{bottom:944.512500px;}
.y15a{bottom:944.910000px;}
.y99{bottom:944.997000px;}
.ycb{bottom:944.998500px;}
.y6b{bottom:945.084000px;}
.y2e{bottom:945.510000px;}
.y2d{bottom:957.510000px;}
.y1ca{bottom:957.778500px;}
.y196{bottom:961.249500px;}
.y2{bottom:964.228500px;}
.y159{bottom:964.380000px;}
.y98{bottom:964.468500px;}
.y6a{bottom:964.512000px;}
.y2c{bottom:969.510000px;}
.yc8{bottom:970.417500px;}
.yc7{bottom:975.255000px;}
.y3a{bottom:980.512500px;}
.y195{bottom:980.676000px;}
.y2b{bottom:981.510000px;}
.y21{bottom:982.365000px;}
.y158{bottom:983.851500px;}
.y69{bottom:983.938500px;}
.y1{bottom:989.716500px;}
.y97{bottom:992.154000px;}
.y194{bottom:995.104500px;}
.y193{bottom:1000.104000px;}
.yc6{bottom:1003.233000px;}
.y2a{bottom:1004.760000px;}
.yc4{bottom:1009.618500px;}
.y20{bottom:1011.165000px;}
.y157{bottom:1011.538500px;}
.y68{bottom:1011.582000px;}
.y96{bottom:1014.319500px;}
.yc3{bottom:1014.457500px;}
.y29{bottom:1016.760000px;}
.y95{bottom:1019.470500px;}
.y192{bottom:1019.530500px;}
.yc5{bottom:1025.527500px;}
.y28{bottom:1028.760000px;}
.y116{bottom:1037.157000px;}
.y156{bottom:1038.853500px;}
.y67{bottom:1038.897000px;}
.y191{bottom:1038.957000px;}
.y1f{bottom:1039.965000px;}
.y27{bottom:1040.760000px;}
.y26{bottom:1052.760000px;}
.y190{bottom:1053.385500px;}
.yc2{bottom:1058.385000px;}
.y94{bottom:1059.730500px;}
.y93{bottom:1074.006000px;}
.yc1{bottom:1077.811500px;}
.y25{bottom:1078.260000px;}
.y66{bottom:1079.157000px;}
.y1e{bottom:1081.485000px;}
.y38{bottom:1144.500000px;}
.y37{bottom:1165.500000px;}
.y1d{bottom:1191.570000px;}
.h3d{height:2.618184px;}
.h3a{height:24.245146px;}
.h15{height:24.246768px;}
.h41{height:26.929935px;}
.h45{height:28.865655px;}
.h40{height:29.702660px;}
.h49{height:30.789832px;}
.h4{height:33.000000px;}
.h35{height:35.865450px;}
.h5a{height:38.519654px;}
.h16{height:40.347000px;}
.h59{height:40.348800px;}
.h43{height:41.236650px;}
.h10{height:41.660156px;}
.hf{height:42.942899px;}
.hd{height:43.804688px;}
.h47{height:43.985475px;}
.h39{height:45.329146px;}
.h3b{height:45.335146px;}
.h44{height:45.717526px;}
.h18{height:45.817800px;}
.h20{height:45.818220px;}
.he{height:46.538700px;}
.h17{height:47.100768px;}
.h4a{height:48.514250px;}
.h19{height:49.090500px;}
.h1d{height:49.090950px;}
.h11{height:49.336436px;}
.hc{height:50.062500px;}
.h48{height:55.213346px;}
.ha{height:56.320312px;}
.h1f{height:56.409470px;}
.h21{height:56.415470px;}
.h3e{height:57.604950px;}
.h53{height:57.610950px;}
.h3{height:58.406250px;}
.h14{height:59.613000px;}
.h25{height:59.613450px;}
.h13{height:59.619000px;}
.h1e{height:59.619450px;}
.h30{height:59.685470px;}
.h57{height:63.387450px;}
.h22{height:63.393450px;}
.h1a{height:64.503060px;}
.h24{height:64.503470px;}
.h4b{height:64.509470px;}
.h1c{height:64.929060px;}
.h50{height:64.929470px;}
.h2a{height:66.027450px;}
.h52{height:66.628950px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h56{height:68.133450px;}
.h3c{height:68.440950px;}
.h4e{height:69.088950px;}
.h23{height:69.694950px;}
.hb{height:72.000000px;}
.h12{height:72.303000px;}
.h4c{height:73.023470px;}
.h9{height:75.093750px;}
.h36{height:75.272184px;}
.h4d{height:75.951470px;}
.h26{height:77.019470px;}
.h51{height:77.151450px;}
.h54{height:77.157450px;}
.h29{height:79.041470px;}
.h55{height:82.041470px;}
.h58{height:83.385450px;}
.h1b{height:84.501060px;}
.h4f{height:84.501470px;}
.h2b{height:85.377450px;}
.h28{height:85.383450px;}
.h38{height:85.917470px;}
.h31{height:91.454184px;}
.h2d{height:93.988950px;}
.h37{height:94.622184px;}
.h2e{height:95.270184px;}
.h33{height:100.695470px;}
.h34{height:107.787450px;}
.h27{height:110.925450px;}
.h2f{height:111.561450px;}
.h32{height:111.567450px;}
.h7{height:115.215000px;}
.h2c{height:120.045470px;}
.h3f{height:163.280448px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h46{height:222.242400px;}
.h42{height:250.024320px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:217.707264px;}
.w8{width:301.170000px;}
.we{width:333.363600px;}
.wd{width:333.365760px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:683.273100px;}
.w9{width:892.500000px;}
.wa{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.337034px;}
.x3{left:3.000000px;}
.x56{left:9.702100px;}
.x55{left:13.285387px;}
.x6a{left:14.866782px;}
.x6b{left:18.031884px;}
.x61{left:21.841100px;}
.x5a{left:24.764579px;}
.x52{left:26.277900px;}
.x60{left:28.563542px;}
.x5c{left:30.400826px;}
.x5f{left:35.470247px;}
.x75{left:37.235711px;}
.x5e{left:54.479764px;}
.x73{left:56.471254px;}
.xa{left:58.500000px;}
.xf{left:76.052700px;}
.x62{left:80.667569px;}
.x63{left:87.200943px;}
.x6c{left:89.372312px;}
.x53{left:93.498845px;}
.x54{left:96.263628px;}
.x67{left:99.249599px;}
.xe{left:103.466400px;}
.x11{left:105.000000px;}
.x15{left:106.299000px;}
.x6d{left:108.297069px;}
.x78{left:112.603071px;}
.x51{left:114.444000px;}
.x5d{left:115.825500px;}
.x74{left:124.387065px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x8e{left:146.070000px;}
.x8c{left:147.346500px;}
.x8f{left:150.217500px;}
.x7a{left:158.571000px;}
.x57{left:161.221914px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x64{left:199.313369px;}
.x7{left:200.715000px;}
.x65{left:205.846461px;}
.x16{left:213.895500px;}
.x76{left:216.300503px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x6e{left:225.210924px;}
.x77{left:229.245953px;}
.x41{left:237.255000px;}
.x7e{left:242.304000px;}
.x25{left:246.954000px;}
.x18{left:250.687500px;}
.x24{left:253.918500px;}
.x23{left:257.181000px;}
.x26{left:263.908500px;}
.x27{left:269.287500px;}
.x7f{left:275.187000px;}
.x43{left:276.916500px;}
.x6f{left:278.709718px;}
.x72{left:282.504000px;}
.x19{left:283.534500px;}
.x1d{left:292.591500px;}
.x7d{left:299.970000px;}
.x7c{left:303.145500px;}
.x42{left:307.179000px;}
.x2a{left:312.820500px;}
.x70{left:315.002365px;}
.x66{left:317.356535px;}
.x84{left:319.887000px;}
.x1f{left:326.551500px;}
.x21{left:335.095500px;}
.x35{left:337.246500px;}
.x34{left:340.201500px;}
.x3c{left:343.602000px;}
.x36{left:344.710500px;}
.x4d{left:349.932000px;}
.x3b{left:352.857000px;}
.x7b{left:353.959500px;}
.x86{left:357.238500px;}
.x2d{left:360.909000px;}
.x68{left:363.240000px;}
.x30{left:364.791000px;}
.x2e{left:368.062500px;}
.x31{left:371.944500px;}
.x28{left:376.380000px;}
.x32{left:381.238500px;}
.x3e{left:390.003000px;}
.x38{left:391.113000px;}
.x44{left:394.573500px;}
.x50{left:402.862500px;}
.x3d{left:404.094000px;}
.x37{left:405.202500px;}
.x48{left:410.680500px;}
.x17{left:412.458000px;}
.x4e{left:417.127500px;}
.x3f{left:429.663000px;}
.x39{left:430.773000px;}
.x40{left:437.779500px;}
.x3a{left:438.888000px;}
.x8b{left:443.043000px;}
.x14{left:447.000000px;}
.x22{left:452.226000px;}
.x69{left:454.638000px;}
.x2f{left:464.959500px;}
.x85{left:467.389500px;}
.x58{left:479.775000px;}
.x33{left:481.320000px;}
.x81{left:489.271500px;}
.x45{left:495.048000px;}
.x1c{left:500.946000px;}
.x89{left:504.964500px;}
.x29{left:524.260500px;}
.x79{left:530.373000px;}
.x8a{left:538.668000px;}
.x82{left:544.620000px;}
.x1a{left:547.969500px;}
.x13{left:551.325000px;}
.x49{left:558.597000px;}
.x59{left:560.764500px;}
.x46{left:574.953000px;}
.x1b{left:581.140500px;}
.x20{left:587.973000px;}
.x4a{left:596.515500px;}
.xb{left:605.490000px;}
.x2b{left:608.199000px;}
.x47{left:612.870000px;}
.x83{left:623.163000px;}
.xd{left:627.990000px;}
.xc{left:634.410000px;}
.x4b{left:652.906500px;}
.x80{left:668.146500px;}
.x87{left:680.658000px;}
.x12{left:695.145000px;}
.x5b{left:699.759000px;}
.x71{left:701.598000px;}
.x4c{left:713.314500px;}
.x1e{left:742.030500px;}
.x88{left:743.916000px;}
.x4f{left:757.524000px;}
.x2c{left:765.705000px;}
.x8d{left:767.701500px;}
@media print{
.v1c{vertical-align:-64.581333pt;}
.v19{vertical-align:-50.085333pt;}
.vf{vertical-align:-32.746667pt;}
.v24{vertical-align:-29.423406pt;}
.vd{vertical-align:-24.021333pt;}
.v2{vertical-align:-20.314667pt;}
.v21{vertical-align:-17.200000pt;}
.v8{vertical-align:-8.725333pt;}
.v3{vertical-align:-5.317333pt;}
.v23{vertical-align:-4.133985pt;}
.v22{vertical-align:-1.157333pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:2.789333pt;}
.v18{vertical-align:5.658667pt;}
.v7{vertical-align:7.568000pt;}
.ve{vertical-align:8.474667pt;}
.v20{vertical-align:9.477333pt;}
.v1f{vertical-align:12.101333pt;}
.v17{vertical-align:14.384000pt;}
.v25{vertical-align:15.755038pt;}
.v12{vertical-align:16.805333pt;}
.v5{vertical-align:17.776000pt;}
.v1e{vertical-align:18.741333pt;}
.v1{vertical-align:21.114667pt;}
.v9{vertical-align:24.469333pt;}
.vb{vertical-align:26.810667pt;}
.v4{vertical-align:28.304000pt;}
.v1b{vertical-align:31.184000pt;}
.v26{vertical-align:35.877333pt;}
.v27{vertical-align:38.480000pt;}
.va{vertical-align:39.429333pt;}
.vc{vertical-align:41.226667pt;}
.v28{vertical-align:42.240000pt;}
.v14{vertical-align:44.586667pt;}
.v6{vertical-align:46.080000pt;}
.v1d{vertical-align:47.338667pt;}
.v1a{vertical-align:60.474667pt;}
.v13{vertical-align:64.581333pt;}
.v16{vertical-align:67.285333pt;}
.v11{vertical-align:77.674667pt;}
.v15{vertical-align:81.781333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000427pt;}
.ls5e{letter-spacing:0.000456pt;}
.ls70{letter-spacing:0.000473pt;}
.ls69{letter-spacing:0.000853pt;}
.ls6c{letter-spacing:0.000945pt;}
.ls7{letter-spacing:0.001621pt;}
.ls1d{letter-spacing:0.001908pt;}
.ls2e{letter-spacing:0.001910pt;}
.lse{letter-spacing:0.002230pt;}
.lsb7{letter-spacing:0.002384pt;}
.ls1b{letter-spacing:0.002387pt;}
.ls5a{letter-spacing:0.002399pt;}
.ls77{letter-spacing:0.002400pt;}
.ls1e{letter-spacing:0.002405pt;}
.ls10{letter-spacing:0.002486pt;}
.ls5b{letter-spacing:0.002591pt;}
.ls1f{letter-spacing:0.002717pt;}
.ls6e{letter-spacing:0.003046pt;}
.ls6f{letter-spacing:0.003608pt;}
.ls40{letter-spacing:0.003856pt;}
.ls65{letter-spacing:0.003861pt;}
.ls6b{letter-spacing:0.004025pt;}
.ls32{letter-spacing:0.004100pt;}
.ls27{letter-spacing:0.004800pt;}
.ls88{letter-spacing:0.004813pt;}
.ls1c{letter-spacing:0.006759pt;}
.ls68{letter-spacing:1.144446pt;}
.ls34{letter-spacing:1.519918pt;}
.ls31{letter-spacing:1.525251pt;}
.ls8a{letter-spacing:1.724422pt;}
.ls89{letter-spacing:1.725425pt;}
.ls8b{letter-spacing:1.840441pt;}
.lsb3{letter-spacing:2.086281pt;}
.lsaa{letter-spacing:2.088215pt;}
.ls25{letter-spacing:2.088703pt;}
.ls2d{letter-spacing:2.091615pt;}
.ls8d{letter-spacing:2.094037pt;}
.ls42{letter-spacing:2.653258pt;}
.ls73{letter-spacing:2.653534pt;}
.ls1{letter-spacing:2.653541pt;}
.ls11{letter-spacing:2.653685pt;}
.ls15{letter-spacing:2.653797pt;}
.ls8{letter-spacing:2.655776pt;}
.ls74{letter-spacing:2.655956pt;}
.ls6a{letter-spacing:2.657033pt;}
.ls3f{letter-spacing:2.658591pt;}
.ls3d{letter-spacing:2.658868pt;}
.ls2{letter-spacing:2.658875pt;}
.ls17{letter-spacing:2.659019pt;}
.ls6d{letter-spacing:3.800446pt;}
.ls45{letter-spacing:4.175918pt;}
.ls23{letter-spacing:4.181251pt;}
.lsc{letter-spacing:4.181504pt;}
.ls49{letter-spacing:4.561918pt;}
.ls55{letter-spacing:4.567251pt;}
.ls4b{letter-spacing:4.750730pt;}
.ls52{letter-spacing:6.377195pt;}
.ls2b{letter-spacing:6.578888pt;}
.ls14{letter-spacing:6.579121pt;}
.ls22{letter-spacing:6.584221pt;}
.lsa{letter-spacing:6.584454pt;}
.ls87{letter-spacing:9.693077pt;}
.lsa9{letter-spacing:9.698411pt;}
.ls3c{letter-spacing:12.005251pt;}
.ls39{letter-spacing:12.349258pt;}
.ls37{letter-spacing:12.349534pt;}
.ls38{letter-spacing:12.354591pt;}
.ls30{letter-spacing:12.354868pt;}
.ls54{letter-spacing:12.927477pt;}
.ls36{letter-spacing:12.932811pt;}
.ls12{letter-spacing:13.437279pt;}
.ls58{letter-spacing:13.551477pt;}
.ls33{letter-spacing:13.877251pt;}
.ls13{letter-spacing:14.823892pt;}
.lsa6{letter-spacing:14.951744pt;}
.ls5c{letter-spacing:15.014281pt;}
.ls60{letter-spacing:15.019615pt;}
.ls35{letter-spacing:15.581258pt;}
.ls57{letter-spacing:15.643615pt;}
.ls59{letter-spacing:15.648948pt;}
.lsa8{letter-spacing:15.931615pt;}
.ls18{letter-spacing:15.975892pt;}
.ls16{letter-spacing:15.981226pt;}
.lsf{letter-spacing:16.093685pt;}
.ls24{letter-spacing:16.159477pt;}
.ls7a{letter-spacing:16.162405pt;}
.ls53{letter-spacing:16.164811pt;}
.lsc0{letter-spacing:16.381766pt;}
.ls83{letter-spacing:17.005072pt;}
.ls3a{letter-spacing:17.109251pt;}
.lsb2{letter-spacing:17.125251pt;}
.ls63{letter-spacing:17.282411pt;}
.lsb4{letter-spacing:17.749251pt;}
.ls80{letter-spacing:17.802144pt;}
.lsb8{letter-spacing:17.869077pt;}
.lsa7{letter-spacing:18.021251pt;}
.lsba{letter-spacing:18.246281pt;}
.lsbb{letter-spacing:18.251615pt;}
.ls9{letter-spacing:18.508212pt;}
.lsbd{letter-spacing:18.546411pt;}
.ls97{letter-spacing:18.551739pt;}
.ls79{letter-spacing:18.813534pt;}
.ls78{letter-spacing:18.818591pt;}
.ls4{letter-spacing:19.039169pt;}
.ls7f{letter-spacing:19.133072pt;}
.ls3b{letter-spacing:19.306144pt;}
.ls19{letter-spacing:19.306837pt;}
.ls7b{letter-spacing:19.330411pt;}
.ls47{letter-spacing:19.373258pt;}
.ls46{letter-spacing:19.373534pt;}
.ls90{letter-spacing:19.389072pt;}
.ls3e{letter-spacing:19.389077pt;}
.ls93{letter-spacing:19.394405pt;}
.ls8c{letter-spacing:19.394411pt;}
.lsa3{letter-spacing:19.421072pt;}
.ls28{letter-spacing:19.421258pt;}
.ls82{letter-spacing:19.661534pt;}
.lsa1{letter-spacing:20.279739pt;}
.ls4a{letter-spacing:20.341251pt;}
.ls95{letter-spacing:20.357251pt;}
.ls26{letter-spacing:20.518281pt;}
.ls50{letter-spacing:20.518755pt;}
.ls9d{letter-spacing:20.679739pt;}
.ls64{letter-spacing:20.938584pt;}
.ls9b{letter-spacing:21.149077pt;}
.ls6{letter-spacing:21.162443pt;}
.ls1a{letter-spacing:21.211853pt;}
.ls96{letter-spacing:21.213534pt;}
.ls48{letter-spacing:21.483615pt;}
.lsb9{letter-spacing:21.674584pt;}
.ls9f{letter-spacing:21.842405pt;}
.ls8f{letter-spacing:22.045534pt;}
.ls20{letter-spacing:22.050591pt;}
.ls21{letter-spacing:22.050717pt;}
.ls91{letter-spacing:22.050868pt;}
.lsa2{letter-spacing:22.077534pt;}
.ls66{letter-spacing:22.310281pt;}
.lsbe{letter-spacing:22.511918pt;}
.ls4e{letter-spacing:22.811608pt;}
.lsa0{letter-spacing:22.936201pt;}
.lsb{letter-spacing:23.234559pt;}
.ls81{letter-spacing:23.250405pt;}
.ls9c{letter-spacing:23.336201pt;}
.ls99{letter-spacing:23.479739pt;}
.ls7c{letter-spacing:23.498584pt;}
.ls2c{letter-spacing:23.573251pt;}
.ls2a{letter-spacing:23.578584pt;}
.ls51{letter-spacing:23.874879pt;}
.lsbc{letter-spacing:24.034868pt;}
.ls29{letter-spacing:24.450717pt;}
.ls9e{letter-spacing:24.498868pt;}
.lsd{letter-spacing:24.555853pt;}
.lsb6{letter-spacing:24.721911pt;}
.ls3{letter-spacing:24.957541pt;}
.ls7e{letter-spacing:24.978868pt;}
.ls72{letter-spacing:25.117534pt;}
.lsbf{letter-spacing:25.151918pt;}
.ls9a{letter-spacing:25.568948pt;}
.ls94{letter-spacing:25.879744pt;}
.ls98{letter-spacing:26.136201pt;}
.lsac{letter-spacing:26.138144pt;}
.lsa4{letter-spacing:26.301534pt;}
.ls76{letter-spacing:26.360201pt;}
.ls7d{letter-spacing:26.506584pt;}
.ls75{letter-spacing:27.021072pt;}
.ls4f{letter-spacing:27.566730pt;}
.lsb0{letter-spacing:27.595615pt;}
.ls44{letter-spacing:28.117251pt;}
.lsaf{letter-spacing:28.162591pt;}
.lsa5{letter-spacing:28.711925pt;}
.lsab{letter-spacing:28.791925pt;}
.lsb1{letter-spacing:29.853534pt;}
.lsae{letter-spacing:31.216948pt;}
.lsad{letter-spacing:31.783925pt;}
.ls8e{letter-spacing:34.663744pt;}
.ls61{letter-spacing:39.413251pt;}
.ls4c{letter-spacing:39.583918pt;}
.lsb5{letter-spacing:40.954144pt;}
.ls2f{letter-spacing:41.667861pt;}
.ls67{letter-spacing:83.092811pt;}
.ls86{letter-spacing:95.599694pt;}
.ls92{letter-spacing:119.490405pt;}
.ls84{letter-spacing:137.096110pt;}
.ls85{letter-spacing:137.097622pt;}
.ls5f{letter-spacing:142.533789pt;}
.ls71{letter-spacing:384.898411pt;}
.ls56{letter-spacing:740.423744pt;}
.ls43{letter-spacing:833.591925pt;}
.ls41{letter-spacing:835.223925pt;}
.ls4d{letter-spacing:903.213077pt;}
.ls62{letter-spacing:1058.199744pt;}
.ls5d{letter-spacing:1109.829251pt;}
.wsc3{word-spacing:-95.599694pt;}
.ws3c{word-spacing:-58.181867pt;}
.ws2{word-spacing:-53.333333pt;}
.ws78{word-spacing:-45.163900pt;}
.ws114{word-spacing:-42.007308pt;}
.ws99{word-spacing:-38.964388pt;}
.ws47{word-spacing:-37.899668pt;}
.ws2c{word-spacing:-37.899321pt;}
.ws97{word-spacing:-29.521250pt;}
.ws115{word-spacing:-28.183296pt;}
.ws83{word-spacing:-28.172700pt;}
.ws32{word-spacing:-22.518540pt;}
.wsa4{word-spacing:-21.725109pt;}
.ws0{word-spacing:-16.874667pt;}
.ws3d{word-spacing:-16.162923pt;}
.ws1a{word-spacing:-13.652229pt;}
.ws9c{word-spacing:-11.188477pt;}
.wsc9{word-spacing:-5.670221pt;}
.ws8e{word-spacing:-3.246548pt;}
.ws106{word-spacing:-3.188366pt;}
.ws26{word-spacing:-2.722886pt;}
.ws8c{word-spacing:-2.606548pt;}
.ws10a{word-spacing:-2.596901pt;}
.ws10b{word-spacing:-2.574935pt;}
.ws29{word-spacing:-2.491205pt;}
.ws27{word-spacing:-2.490161pt;}
.ws1e{word-spacing:-2.373798pt;}
.wse5{word-spacing:-2.321546pt;}
.wse3{word-spacing:-2.315638pt;}
.ws60{word-spacing:-2.082911pt;}
.ws13a{word-spacing:-1.966547pt;}
.ws140{word-spacing:-1.649818pt;}
.wsf2{word-spacing:-1.559274pt;}
.ws9f{word-spacing:-1.210183pt;}
.ws41{word-spacing:-1.093819pt;}
.ws2e{word-spacing:-1.040539pt;}
.ws2b{word-spacing:-1.035628pt;}
.ws50{word-spacing:-0.861092pt;}
.ws31{word-spacing:-0.802902pt;}
.ws34{word-spacing:-0.744728pt;}
.ws146{word-spacing:-0.502118pt;}
.ws135{word-spacing:-0.395637pt;}
.ws133{word-spacing:-0.390400pt;}
.ws67{word-spacing:-0.279273pt;}
.ws12{word-spacing:-0.167365pt;}
.ws95{word-spacing:-0.058182pt;}
.ws14a{word-spacing:-0.047821pt;}
.ws11{word-spacing:-0.047819pt;}
.ws20{word-spacing:-0.042507pt;}
.ws17{word-spacing:-0.031883pt;}
.ws98{word-spacing:-0.031881pt;}
.ws1{word-spacing:0.000000pt;}
.ws77{word-spacing:0.011636pt;}
.ws109{word-spacing:0.186182pt;}
.ws33{word-spacing:0.244362pt;}
.wsbb{word-spacing:0.302546pt;}
.ws1c{word-spacing:0.358640pt;}
.ws76{word-spacing:0.360728pt;}
.ws82{word-spacing:0.535273pt;}
.ws81{word-spacing:0.547787pt;}
.ws80{word-spacing:0.575219pt;}
.ws90{word-spacing:0.590454pt;}
.ws58{word-spacing:0.593455pt;}
.ws14{word-spacing:0.645552pt;}
.ws5d{word-spacing:0.651637pt;}
.wsf0{word-spacing:0.768001pt;}
.wsbc{word-spacing:0.826183pt;}
.wsbd{word-spacing:0.830454pt;}
.ws141{word-spacing:0.989891pt;}
.wse2{word-spacing:1.058910pt;}
.ws48{word-spacing:1.117092pt;}
.ws57{word-spacing:1.233456pt;}
.ws14c{word-spacing:1.267251pt;}
.ws24{word-spacing:1.291626pt;}
.ws113{word-spacing:1.333698pt;}
.ws112{word-spacing:1.349819pt;}
.wse6{word-spacing:1.524365pt;}
.ws7b{word-spacing:1.582547pt;}
.ws116{word-spacing:1.640729pt;}
.wsa{word-spacing:1.697563pt;}
.ws61{word-spacing:1.931638pt;}
.ws147{word-spacing:2.041948pt;}
.ws131{word-spacing:2.164365pt;}
.ws150{word-spacing:2.271488pt;}
.ws51{word-spacing:2.280729pt;}
.ws10d{word-spacing:2.338911pt;}
.wsd4{word-spacing:2.387787pt;}
.wsd3{word-spacing:2.397093pt;}
.ws139{word-spacing:2.455275pt;}
.ws5c{word-spacing:2.629820pt;}
.ws7{word-spacing:2.701755pt;}
.ws13d{word-spacing:2.701875pt;}
.ws15b{word-spacing:2.717295pt;}
.ws15e{word-spacing:2.725588pt;}
.ws15d{word-spacing:2.729392pt;}
.ws6{word-spacing:2.749573pt;}
.ws144{word-spacing:2.749696pt;}
.wsb5{word-spacing:2.803776pt;}
.wsb6{word-spacing:2.804366pt;}
.wsb1{word-spacing:2.862548pt;}
.wsb2{word-spacing:2.920730pt;}
.ws2f{word-spacing:2.978884pt;}
.wsad{word-spacing:2.978912pt;}
.ws14b{word-spacing:3.132262pt;}
.wsa9{word-spacing:3.150454pt;}
.wsab{word-spacing:3.153457pt;}
.wsa7{word-spacing:3.155741pt;}
.ws96{word-spacing:3.209780pt;}
.ws3b{word-spacing:3.211639pt;}
.ws8d{word-spacing:3.225121pt;}
.wscb{word-spacing:3.230454pt;}
.wsdd{word-spacing:3.251787pt;}
.ws3f{word-spacing:3.269821pt;}
.ws91{word-spacing:3.290501pt;}
.ws11e{word-spacing:3.328003pt;}
.wsc4{word-spacing:3.386185pt;}
.ws128{word-spacing:3.444367pt;}
.ws66{word-spacing:3.502548pt;}
.ws25{word-spacing:3.560698pt;}
.wse7{word-spacing:3.560730pt;}
.ws15a{word-spacing:3.658291pt;}
.wsdf{word-spacing:3.735276pt;}
.ws14f{word-spacing:3.763497pt;}
.ws92{word-spacing:3.793458pt;}
.ws16{word-spacing:3.801584pt;}
.ws142{word-spacing:3.826640pt;}
.wsf9{word-spacing:3.851640pt;}
.ws15c{word-spacing:3.855423pt;}
.ws2a{word-spacing:3.909786pt;}
.ws94{word-spacing:4.026185pt;}
.ws93{word-spacing:4.048216pt;}
.ws44{word-spacing:4.084367pt;}
.wsdc{word-spacing:4.110454pt;}
.ws8b{word-spacing:4.138534pt;}
.ws46{word-spacing:4.142549pt;}
.ws88{word-spacing:4.174408pt;}
.ws4{word-spacing:4.177507pt;}
.ws89{word-spacing:4.198666pt;}
.wsaf{word-spacing:4.200731pt;}
.ws86{word-spacing:4.317095pt;}
.ws87{word-spacing:4.375276pt;}
.ws52{word-spacing:4.433458pt;}
.wsd7{word-spacing:4.491640pt;}
.wsd8{word-spacing:4.505121pt;}
.ws12c{word-spacing:4.549822pt;}
.ws30{word-spacing:4.607962pt;}
.wsb0{word-spacing:4.608004pt;}
.ws148{word-spacing:4.662528pt;}
.wsb9{word-spacing:4.666186pt;}
.ws4f{word-spacing:4.724368pt;}
.ws132{word-spacing:4.782549pt;}
.ws136{word-spacing:4.833521pt;}
.wsd9{word-spacing:4.840731pt;}
.ws18{word-spacing:4.853595pt;}
.ws19{word-spacing:4.855507pt;}
.ws122{word-spacing:4.898913pt;}
.ws138{word-spacing:4.957095pt;}
.ws13e{word-spacing:5.006838pt;}
.ws5b{word-spacing:5.015277pt;}
.ws145{word-spacing:5.054659pt;}
.ws12a{word-spacing:5.189823pt;}
.ws12b{word-spacing:5.203787pt;}
.ws10c{word-spacing:5.248004pt;}
.ws11b{word-spacing:5.306186pt;}
.ws43{word-spacing:5.364368pt;}
.ws158{word-spacing:5.475482pt;}
.wsb{word-spacing:5.523056pt;}
.ws153{word-spacing:5.523302pt;}
.ws63{word-spacing:5.597096pt;}
.ws65{word-spacing:5.655277pt;}
.ws10{word-spacing:5.666512pt;}
.wsdb{word-spacing:5.667787pt;}
.ws3{word-spacing:5.738333pt;}
.ws151{word-spacing:5.858048pt;}
.ws13b{word-spacing:5.888005pt;}
.ws53{word-spacing:5.946187pt;}
.wsac{word-spacing:6.178914pt;}
.ws9b{word-spacing:6.291787pt;}
.ws1f{word-spacing:6.295220pt;}
.ws9a{word-spacing:6.295278pt;}
.ws22{word-spacing:6.303461pt;}
.ws108{word-spacing:6.310438pt;}
.wsda{word-spacing:6.353460pt;}
.ws120{word-spacing:6.469824pt;}
.wsed{word-spacing:6.528005pt;}
.ws23{word-spacing:6.644308pt;}
.ws85{word-spacing:6.644369pt;}
.ws84{word-spacing:6.654408pt;}
.ws14d{word-spacing:6.766643pt;}
.ws149{word-spacing:6.776207pt;}
.ws12e{word-spacing:6.993460pt;}
.wsb4{word-spacing:7.051642pt;}
.ws15{word-spacing:7.053253pt;}
.wsb3{word-spacing:7.109824pt;}
.ws56{word-spacing:7.168006pt;}
.ws129{word-spacing:7.226188pt;}
.wsfa{word-spacing:7.284370pt;}
.wsd6{word-spacing:7.310454pt;}
.wsd5{word-spacing:7.342552pt;}
.wsde{word-spacing:7.458915pt;}
.ws40{word-spacing:7.517097pt;}
.wsa1{word-spacing:7.539787pt;}
.wsa0{word-spacing:7.575279pt;}
.ws154{word-spacing:7.589161pt;}
.ws118{word-spacing:7.633461pt;}
.wsf3{word-spacing:7.691643pt;}
.ws7e{word-spacing:7.749825pt;}
.ws7f{word-spacing:7.758387pt;}
.ws152{word-spacing:7.876086pt;}
.ws126{word-spacing:7.924370pt;}
.wsee{word-spacing:8.098916pt;}
.ws8{word-spacing:8.193331pt;}
.wsd2{word-spacing:8.389825pt;}
.ws12d{word-spacing:8.506189pt;}
.ws10f{word-spacing:8.564371pt;}
.ws1b{word-spacing:8.679088pt;}
.ws14e{word-spacing:8.736860pt;}
.wsb8{word-spacing:8.738916pt;}
.ws103{word-spacing:8.855280pt;}
.wsfe{word-spacing:8.913462pt;}
.ws105{word-spacing:9.199051pt;}
.wse9{word-spacing:9.204371pt;}
.wsfc{word-spacing:9.320735pt;}
.wsfd{word-spacing:9.378917pt;}
.ws157{word-spacing:9.584787pt;}
.ws13c{word-spacing:9.779354pt;}
.wse8{word-spacing:9.844372pt;}
.wse0{word-spacing:9.890701pt;}
.wse1{word-spacing:9.902554pt;}
.ws10e{word-spacing:10.077099pt;}
.ws127{word-spacing:10.193463pt;}
.wsea{word-spacing:10.600736pt;}
.ws155{word-spacing:10.640128pt;}
.ws42{word-spacing:10.775282pt;}
.ws9e{word-spacing:10.833464pt;}
.ws9d{word-spacing:10.891645pt;}
.ws102{word-spacing:11.008009pt;}
.wsf8{word-spacing:12.055283pt;}
.wsd{word-spacing:12.169851pt;}
.wsf{word-spacing:12.217669pt;}
.ws156{word-spacing:12.275599pt;}
.ws79{word-spacing:12.309467pt;}
.wsa6{word-spacing:12.309542pt;}
.wsc{word-spacing:12.552400pt;}
.ws4e{word-spacing:12.695283pt;}
.wsf7{word-spacing:12.963771pt;}
.wsf6{word-spacing:12.986193pt;}
.ws75{word-spacing:14.033466pt;}
.ws74{word-spacing:14.091648pt;}
.ws100{word-spacing:14.498921pt;}
.ws4c{word-spacing:14.673467pt;}
.ws110{word-spacing:15.022558pt;}
.wsca{word-spacing:15.429831pt;}
.ws4d{word-spacing:15.488013pt;}
.ws7a{word-spacing:15.541467pt;}
.ws107{word-spacing:15.562801pt;}
.ws13{word-spacing:16.097283pt;}
.ws28{word-spacing:16.293440pt;}
.ws159{word-spacing:16.326378pt;}
.ws143{word-spacing:16.329477pt;}
.ws13f{word-spacing:16.331711pt;}
.wse4{word-spacing:16.458222pt;}
.ws124{word-spacing:17.582560pt;}
.ws2d{word-spacing:17.738773pt;}
.ws5f{word-spacing:17.936134pt;}
.ws134{word-spacing:18.386469pt;}
.ws68{word-spacing:18.519802pt;}
.wsba{word-spacing:18.544885pt;}
.ws7d{word-spacing:18.772889pt;}
.wsa2{word-spacing:18.773467pt;}
.ws7c{word-spacing:18.777718pt;}
.wsa5{word-spacing:18.791400pt;}
.wsa3{word-spacing:18.796733pt;}
.ws5a{word-spacing:19.378469pt;}
.ws59{word-spacing:19.381467pt;}
.ws5e{word-spacing:19.411076pt;}
.wsf1{word-spacing:19.535555pt;}
.ws117{word-spacing:20.400134pt;}
.wsc1{word-spacing:20.519357pt;}
.ws62{word-spacing:20.690725pt;}
.ws73{word-spacing:20.770926pt;}
.ws130{word-spacing:20.948889pt;}
.ws125{word-spacing:20.957108pt;}
.wsb7{word-spacing:21.055931pt;}
.ws11d{word-spacing:21.253264pt;}
.wsae{word-spacing:21.772733pt;}
.ws11c{word-spacing:21.781467pt;}
.wsa8{word-spacing:21.925467pt;}
.wsaa{word-spacing:21.930222pt;}
.ws6b{word-spacing:22.002469pt;}
.wscc{word-spacing:22.005342pt;}
.ws69{word-spacing:22.005467pt;}
.ws36{word-spacing:22.007530pt;}
.ws38{word-spacing:22.008410pt;}
.ws3a{word-spacing:22.008913pt;}
.ws11f{word-spacing:22.096134pt;}
.ws5{word-spacing:22.225269pt;}
.wsc5{word-spacing:22.225473pt;}
.ws49{word-spacing:22.283655pt;}
.ws45{word-spacing:22.906801pt;}
.ws8a{word-spacing:22.949467pt;}
.ws4b{word-spacing:23.400747pt;}
.ws64{word-spacing:24.402725pt;}
.ws121{word-spacing:24.704885pt;}
.ws54{word-spacing:24.722725pt;}
.ws4a{word-spacing:24.971657pt;}
.ws21{word-spacing:25.082773pt;}
.wsec{word-spacing:25.296134pt;}
.ws12f{word-spacing:25.757136pt;}
.ws119{word-spacing:25.881642pt;}
.wseb{word-spacing:25.914801pt;}
.wsfb{word-spacing:26.276889pt;}
.ws11a{word-spacing:26.410222pt;}
.wsf5{word-spacing:26.496134pt;}
.wsf4{word-spacing:26.500889pt;}
.wsef{word-spacing:26.885467pt;}
.wsff{word-spacing:27.716889pt;}
.wsc8{word-spacing:27.839649pt;}
.wse{word-spacing:28.454617pt;}
.ws104{word-spacing:28.596385pt;}
.ws137{word-spacing:29.402801pt;}
.ws1d{word-spacing:29.672480pt;}
.ws123{word-spacing:29.672752pt;}
.ws101{word-spacing:33.257718pt;}
.wsc0{word-spacing:38.316978pt;}
.ws111{word-spacing:45.102583pt;}
.ws55{word-spacing:47.015802pt;}
.ws35{word-spacing:47.604403pt;}
.ws9{word-spacing:49.106761pt;}
.wsc2{word-spacing:51.731141pt;}
.wsc7{word-spacing:52.893691pt;}
.wsc6{word-spacing:58.362158pt;}
.wsbe{word-spacing:61.857873pt;}
.wscd{word-spacing:83.153524pt;}
.ws39{word-spacing:90.949894pt;}
.ws37{word-spacing:91.008076pt;}
.ws3e{word-spacing:105.495361pt;}
.ws6f{word-spacing:105.553543pt;}
.wsd0{word-spacing:107.124453pt;}
.wsbf{word-spacing:108.289348pt;}
.ws72{word-spacing:113.582640pt;}
.ws70{word-spacing:119.202725pt;}
.ws6e{word-spacing:120.099009pt;}
.wsd1{word-spacing:120.269392pt;}
.wscf{word-spacing:121.669920pt;}
.wsce{word-spacing:131.562801pt;}
.ws71{word-spacing:133.746725pt;}
.ws6d{word-spacing:145.040134pt;}
.ws6c{word-spacing:194.417344pt;}
.ws6a{word-spacing:206.409605pt;}
.ws8f{word-spacing:445.393826pt;}
._39{margin-left:-92.985527pt;}
._b{margin-left:-25.257536pt;}
._a{margin-left:-23.802411pt;}
._49{margin-left:-22.751540pt;}
._2{margin-left:-6.536533pt;}
._8{margin-left:-5.333333pt;}
._3{margin-left:-3.808000pt;}
._9{margin-left:-2.846213pt;}
._1{margin-left:-1.774933pt;}
._d{width:1.386741pt;}
._13{width:2.420816pt;}
._41{width:3.374548pt;}
._0{width:4.966400pt;}
._4{width:6.645421pt;}
._5{width:7.626629pt;}
._48{width:13.306099pt;}
._6{width:14.452448pt;}
._16{width:16.178119pt;}
._18{width:17.319765pt;}
._11{width:18.521089pt;}
._f{width:20.247803pt;}
._c{width:21.853131pt;}
._15{width:23.970709pt;}
._2a{width:25.018203pt;}
._17{width:26.172206pt;}
._e{width:28.086485pt;}
._27{width:29.730934pt;}
._37{width:30.730105pt;}
._2b{width:33.492149pt;}
._10{width:34.392907pt;}
._14{width:35.956064pt;}
._29{width:37.643668pt;}
._25{width:39.220276pt;}
._12{width:40.609333pt;}
._40{width:41.931357pt;}
._43{width:43.057022pt;}
._42{width:44.432875pt;}
._3a{width:46.078299pt;}
._26{width:49.173756pt;}
._45{width:52.888090pt;}
._3b{width:54.023835pt;}
._44{width:54.981864pt;}
._46{width:61.375219pt;}
._28{width:63.195903pt;}
._47{width:79.128111pt;}
._3c{width:86.632799pt;}
._38{width:98.794414pt;}
._2c{width:100.130993pt;}
._35{width:103.156450pt;}
._36{width:107.112817pt;}
._33{width:115.199573pt;}
._1e{width:123.287375pt;}
._31{width:129.745040pt;}
._34{width:136.261409pt;}
._32{width:137.891024pt;}
._23{width:140.334662pt;}
._20{width:141.381936pt;}
._2f{width:144.290507pt;}
._30{width:152.436491pt;}
._2d{width:158.835973pt;}
._3f{width:165.352865pt;}
._2e{width:166.981957pt;}
._3d{width:171.810530pt;}
._3e{width:179.898332pt;}
._24{width:181.527424pt;}
._7{width:281.706667pt;}
._1f{width:294.652220pt;}
._21{width:320.430628pt;}
._22{width:322.909610pt;}
._1d{width:395.588908pt;}
._19{width:472.349871pt;}
._1b{width:547.375002pt;}
._1c{width:561.164104pt;}
._1a{width:571.171385pt;}
.fs11{font-size:17.638320pt;}
.fs10{font-size:25.197600pt;}
.fs13{font-size:27.008800pt;}
.fs15{font-size:28.809200pt;}
.fsf{font-size:31.880533pt;}
.fsc{font-size:31.882667pt;}
.fs6{font-size:37.333333pt;}
.fs12{font-size:38.584000pt;}
.fs14{font-size:41.156000pt;}
.fsb{font-size:42.506667pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:47.818667pt;}
.fs16{font-size:47.820800pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fsa{font-size:58.181333pt;}
.fse{font-size:58.181867pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs9{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:3.063104pt;}
.y36{bottom:3.812733pt;}
.yc{bottom:7.146667pt;}
.y114{bottom:10.418956pt;}
.y11e{bottom:12.278586pt;}
.y133{bottom:13.920194pt;}
.y35{bottom:17.096233pt;}
.y11d{bottom:24.185351pt;}
.y10f{bottom:24.269404pt;}
.y132{bottom:26.620661pt;}
.y34{bottom:30.379733pt;}
.y10e{bottom:32.238817pt;}
.y11f{bottom:32.349276pt;}
.y134{bottom:35.328791pt;}
.y110{bottom:37.672050pt;}
.y32{bottom:51.573333pt;}
.y146{bottom:51.667928pt;}
.y33{bottom:54.852400pt;}
.y120{bottom:55.325083pt;}
.y39{bottom:57.333333pt;}
.y135{bottom:59.129580pt;}
.y149{bottom:60.393755pt;}
.y1b{bottom:61.786667pt;}
.y13f{bottom:64.093473pt;}
.y12b{bottom:66.813341pt;}
.y112{bottom:68.335891pt;}
.y15{bottom:69.080000pt;}
.y139{bottom:74.814749pt;}
.y143{bottom:75.157715pt;}
.y113{bottom:75.213555pt;}
.y14d{bottom:77.558482pt;}
.y121{bottom:78.301083pt;}
.y13a{bottom:81.009315pt;}
.y1a{bottom:81.413333pt;}
.y136{bottom:82.930712pt;}
.y12d{bottom:84.682877pt;}
.y126{bottom:85.325944pt;}
.y14a{bottom:85.459062pt;}
.y144{bottom:86.210365pt;}
.y14{bottom:88.706667pt;}
.y14e{bottom:89.065549pt;}
.y127{bottom:91.133387pt;}
.y13b{bottom:91.637029pt;}
.y145{bottom:92.731554pt;}
.y140{bottom:92.858225pt;}
.y12e{bottom:95.044803pt;}
.y111{bottom:99.098381pt;}
.y128{bottom:99.105421pt;}
.y19{bottom:101.040000pt;}
.y12f{bottom:101.158457pt;}
.y122{bottom:101.277212pt;}
.y155{bottom:102.046667pt;}
.y10c{bottom:102.048000pt;}
.y18f{bottom:104.446667pt;}
.y18e{bottom:106.340000pt;}
.y137{bottom:106.731227pt;}
.y1c9{bottom:108.810667pt;}
.yc0{bottom:110.072000pt;}
.y14b{bottom:110.523752pt;}
.y10{bottom:119.053333pt;}
.y10b{bottom:119.316000pt;}
.y18{bottom:120.666667pt;}
.y18d{bottom:121.386667pt;}
.y141{bottom:121.622839pt;}
.y123{bottom:124.253341pt;}
.y18c{bottom:125.284000pt;}
.y1c8{bottom:126.078667pt;}
.ybf{bottom:129.889333pt;}
.y138{bottom:130.532427pt;}
.y14c{bottom:135.588442pt;}
.y12c{bottom:135.741084pt;}
.y10a{bottom:136.584000pt;}
.y150{bottom:137.231252pt;}
.y16{bottom:137.733333pt;}
.y154{bottom:138.354667pt;}
.yf{bottom:138.680000pt;}
.y17{bottom:140.293333pt;}
.y18b{bottom:140.660000pt;}
.y153{bottom:140.804000pt;}
.y65{bottom:142.046667pt;}
.y18a{bottom:142.552000pt;}
.y152{bottom:142.696000pt;}
.y1c7{bottom:143.346667pt;}
.y92{bottom:144.001333pt;}
.y148{bottom:146.548000pt;}
.y124{bottom:147.228827pt;}
.y142{bottom:150.387454pt;}
.y109{bottom:153.853333pt;}
.y130{bottom:157.870937pt;}
.y64{bottom:159.316000pt;}
.y189{bottom:159.820000pt;}
.ybe{bottom:160.086667pt;}
.y1c6{bottom:160.616000pt;}
.y91{bottom:161.269333pt;}
.y13d{bottom:161.521112pt;}
.y1f5{bottom:163.744000pt;}
.y13e{bottom:164.334509pt;}
.y13c{bottom:164.334536pt;}
.y14f{bottom:166.241431pt;}
.y125{bottom:170.204956pt;}
.y108{bottom:171.121333pt;}
.y63{bottom:176.584000pt;}
.y188{bottom:177.089333pt;}
.ybd{bottom:177.356000pt;}
.y1c5{bottom:177.884000pt;}
.y1f4{bottom:178.356000pt;}
.y90{bottom:178.537333pt;}
.y107{bottom:188.390667pt;}
.y12a{bottom:189.483092pt;}
.y1c4{bottom:190.574667pt;}
.y129{bottom:192.120668pt;}
.y1f3{bottom:192.968000pt;}
.y62{bottom:193.853333pt;}
.y187{bottom:194.357333pt;}
.ybc{bottom:194.624000pt;}
.y1c3{bottom:195.153333pt;}
.y8f{bottom:195.806667pt;}
.y106{bottom:205.658667pt;}
.y60{bottom:206.677333pt;}
.y1f2{bottom:207.580000pt;}
.y186{bottom:207.729333pt;}
.y61{bottom:209.229333pt;}
.y5f{bottom:211.121333pt;}
.y185{bottom:211.626667pt;}
.y1c2{bottom:212.421333pt;}
.y8e{bottom:213.074667pt;}
.ybb{bottom:221.993333pt;}
.y1f1{bottom:222.192000pt;}
.y105{bottom:222.928000pt;}
.y183{bottom:224.997333pt;}
.y184{bottom:227.002667pt;}
.y5e{bottom:228.390667pt;}
.y182{bottom:228.894667pt;}
.y1c1{bottom:229.690667pt;}
.y8d{bottom:230.344000pt;}
.yba{bottom:231.972000pt;}
.y1f0{bottom:236.804000pt;}
.y104{bottom:240.196000pt;}
.y5c{bottom:241.214667pt;}
.y1c0{bottom:242.380000pt;}
.y5d{bottom:243.766667pt;}
.y181{bottom:244.416000pt;}
.y5b{bottom:245.658667pt;}
.y1bf{bottom:246.958667pt;}
.y8c{bottom:247.612000pt;}
.y180{bottom:248.313333pt;}
.y1ef{bottom:251.416000pt;}
.y103{bottom:257.464000pt;}
.y1bd{bottom:259.784000pt;}
.y1be{bottom:262.334667pt;}
.y5a{bottom:262.926667pt;}
.y17f{bottom:263.689333pt;}
.y1bc{bottom:264.226667pt;}
.y8b{bottom:264.881333pt;}
.y17e{bottom:265.582667pt;}
.y1ee{bottom:266.028000pt;}
.yb9{bottom:272.570667pt;}
.y102{bottom:274.733333pt;}
.y1bb{bottom:276.917333pt;}
.y59{bottom:280.196000pt;}
.y1ed{bottom:280.640000pt;}
.y151{bottom:281.420000pt;}
.y1ba{bottom:281.496000pt;}
.y8a{bottom:282.149333pt;}
.y17d{bottom:282.850667pt;}
.yb8{bottom:289.838667pt;}
.y89{bottom:294.838667pt;}
.y1ec{bottom:295.250667pt;}
.y58{bottom:297.464000pt;}
.y1b9{bottom:298.764000pt;}
.y88{bottom:299.417333pt;}
.y17c{bottom:300.120000pt;}
.ya{bottom:306.382667pt;}
.yb7{bottom:307.108000pt;}
.y1eb{bottom:309.862667pt;}
.y101{bottom:311.757333pt;}
.y57{bottom:314.733333pt;}
.y17b{bottom:315.496000pt;}
.y1b8{bottom:316.033333pt;}
.y87{bottom:316.686667pt;}
.y17a{bottom:317.388000pt;}
.y1ea{bottom:324.474667pt;}
.y55{bottom:327.557333pt;}
.y100{bottom:329.026667pt;}
.y56{bottom:330.109333pt;}
.y54{bottom:332.001333pt;}
.y1b7{bottom:333.301333pt;}
.y86{bottom:333.954667pt;}
.y179{bottom:334.656000pt;}
.y11c{bottom:336.025333pt;}
.y1e9{bottom:339.086667pt;}
.yb6{bottom:340.438667pt;}
.yb5{bottom:341.144000pt;}
.yd{bottom:343.546667pt;}
.yb4{bottom:344.740000pt;}
.yff{bottom:346.294667pt;}
.y53{bottom:349.270667pt;}
.y178{bottom:350.178667pt;}
.y1b6{bottom:350.570667pt;}
.y85{bottom:351.224000pt;}
.y9{bottom:351.724000pt;}
.y1e8{bottom:353.698667pt;}
.y177{bottom:354.076000pt;}
.yfe{bottom:363.564000pt;}
.y84{bottom:363.913333pt;}
.y52{bottom:366.538667pt;}
.y1b5{bottom:367.838667pt;}
.y1e7{bottom:368.310667pt;}
.y83{bottom:368.492000pt;}
.y176{bottom:371.344000pt;}
.yb2{bottom:374.433333pt;}
.yb3{bottom:374.577333pt;}
.yb1{bottom:378.877333pt;}
.yfd{bottom:380.832000pt;}
.y1e6{bottom:382.922667pt;}
.y1b4{bottom:385.106667pt;}
.y82{bottom:385.761333pt;}
.yb{bottom:386.533333pt;}
.y175{bottom:388.612000pt;}
.y8{bottom:397.065333pt;}
.y1e5{bottom:397.534667pt;}
.yfb{bottom:398.224000pt;}
.yfc{bottom:400.632000pt;}
.y1b3{bottom:402.376000pt;}
.yfa{bottom:402.524000pt;}
.y81{bottom:403.029333pt;}
.y174{bottom:405.881333pt;}
.y1e4{bottom:412.146667pt;}
.yb0{bottom:419.152000pt;}
.y1b2{bottom:419.644000pt;}
.y80{bottom:420.297333pt;}
.y173{bottom:423.149333pt;}
.y1e3{bottom:426.758667pt;}
.y11{bottom:433.826667pt;}
.yaf{bottom:436.420000pt;}
.y1b1{bottom:436.913333pt;}
.y7f{bottom:437.566667pt;}
.y172{bottom:440.418667pt;}
.y1e2{bottom:441.369333pt;}
.yf8{bottom:441.500000pt;}
.y51{bottom:441.509333pt;}
.y7{bottom:442.406667pt;}
.yf2{bottom:447.816000pt;}
.yf1{bottom:452.180000pt;}
.y170{bottom:453.242667pt;}
.y1b0{bottom:454.181333pt;}
.y7e{bottom:454.834667pt;}
.y171{bottom:455.794667pt;}
.y1e1{bottom:455.981333pt;}
.y50{bottom:456.121333pt;}
.yf0{bottom:456.542667pt;}
.y16f{bottom:457.686667pt;}
.yef{bottom:460.906667pt;}
.yf7{bottom:462.222667pt;}
.yee{bottom:465.270667pt;}
.yad{bottom:468.361333pt;}
.yed{bottom:469.634667pt;}
.y1e0{bottom:470.593333pt;}
.y4f{bottom:470.733333pt;}
.y147{bottom:470.897333pt;}
.y1af{bottom:471.450667pt;}
.y7d{bottom:472.104000pt;}
.yec{bottom:473.997333pt;}
.yac{bottom:474.038667pt;}
.y16e{bottom:474.956000pt;}
.yab{bottom:478.338667pt;}
.y12{bottom:478.426667pt;}
.yf6{bottom:478.794667pt;}
.y131{bottom:482.236000pt;}
.yf5{bottom:483.094667pt;}
.yf9{bottom:483.452000pt;}
.y1df{bottom:485.205333pt;}
.y4e{bottom:485.345333pt;}
.y6{bottom:487.748000pt;}
.y1ae{bottom:488.718667pt;}
.y7c{bottom:489.372000pt;}
.y16d{bottom:492.224000pt;}
.yae{bottom:497.176000pt;}
.y1de{bottom:499.817333pt;}
.y4d{bottom:499.956000pt;}
.yeb{bottom:500.180000pt;}
.ya9{bottom:503.346667pt;}
.yf4{bottom:503.817333pt;}
.yea{bottom:504.544000pt;}
.y7b{bottom:506.641333pt;}
.ye9{bottom:508.906667pt;}
.yaa{bottom:509.022667pt;}
.y16c{bottom:509.492000pt;}
.ye8{bottom:513.270667pt;}
.y1dd{bottom:514.429333pt;}
.y4c{bottom:514.568000pt;}
.ye7{bottom:517.634667pt;}
.ye6{bottom:521.998667pt;}
.ya8{bottom:523.164000pt;}
.y7a{bottom:523.909333pt;}
.y1c{bottom:524.093333pt;}
.yf3{bottom:524.538667pt;}
.y1ad{bottom:526.341333pt;}
.ye5{bottom:526.361333pt;}
.y16b{bottom:526.761333pt;}
.y1dc{bottom:529.041333pt;}
.y4b{bottom:529.180000pt;}
.y5{bottom:533.089333pt;}
.ye4{bottom:539.453333pt;}
.y16a{bottom:539.585333pt;}
.y79{bottom:541.178667pt;}
.y1ac{bottom:541.717333pt;}
.y1ab{bottom:543.609333pt;}
.y1db{bottom:543.653333pt;}
.y4a{bottom:543.792000pt;}
.y169{bottom:544.029333pt;}
.ya7{bottom:554.169333pt;}
.ye3{bottom:555.113333pt;}
.y1da{bottom:558.265333pt;}
.y49{bottom:558.404000pt;}
.y1aa{bottom:560.877333pt;}
.y168{bottom:561.298667pt;}
.ye{bottom:561.706667pt;}
.ya6{bottom:571.438667pt;}
.ye2{bottom:572.381333pt;}
.y1d9{bottom:572.877333pt;}
.y48{bottom:573.016000pt;}
.y1a9{bottom:578.146667pt;}
.y167{bottom:578.566667pt;}
.y78{bottom:578.800000pt;}
.y11b{bottom:586.973333pt;}
.y1d8{bottom:587.488000pt;}
.y47{bottom:587.628000pt;}
.ya5{bottom:588.706667pt;}
.ye1{bottom:589.650667pt;}
.y1a8{bottom:595.414667pt;}
.y166{bottom:595.836000pt;}
.y77{bottom:596.068000pt;}
.y1d7{bottom:602.100000pt;}
.y46{bottom:602.240000pt;}
.ya4{bottom:605.974667pt;}
.ye0{bottom:606.918667pt;}
.y1a7{bottom:612.684000pt;}
.y165{bottom:613.104000pt;}
.y76{bottom:613.337333pt;}
.y1d6{bottom:616.712000pt;}
.y45{bottom:616.852000pt;}
.ydf{bottom:621.222667pt;}
.ya3{bottom:623.244000pt;}
.yde{bottom:625.522667pt;}
.y1a6{bottom:628.060000pt;}
.y1a5{bottom:629.952000pt;}
.y164{bottom:630.372000pt;}
.y75{bottom:630.605333pt;}
.y1d5{bottom:631.324000pt;}
.y11a{bottom:637.093333pt;}
.y1d4{bottom:645.936000pt;}
.y1a4{bottom:647.221333pt;}
.y163{bottom:647.641333pt;}
.y74{bottom:647.874667pt;}
.y44{bottom:651.294667pt;}
.ydd{bottom:653.733333pt;}
.y119{bottom:654.361333pt;}
.ydc{bottom:657.054667pt;}
.y1a2{bottom:660.045333pt;}
.yd6{bottom:660.058667pt;}
.y1d3{bottom:660.548000pt;}
.y1a3{bottom:662.597333pt;}
.yd5{bottom:664.358667pt;}
.y1a1{bottom:664.489333pt;}
.y162{bottom:664.909333pt;}
.y73{bottom:665.142667pt;}
.yd3{bottom:666.610667pt;}
.y43{bottom:672.549333pt;}
.y1d2{bottom:675.160000pt;}
.yd7{bottom:676.588000pt;}
.ya2{bottom:677.257333pt;}
.y117{bottom:679.733333pt;}
.y1a0{bottom:681.757333pt;}
.y161{bottom:682.178667pt;}
.y72{bottom:682.412000pt;}
.ydb{bottom:683.810667pt;}
.yd2{bottom:686.428000pt;}
.yd4{bottom:686.509333pt;}
.yda{bottom:687.132000pt;}
.y1d1{bottom:689.772000pt;}
.yd9{bottom:690.136000pt;}
.y4{bottom:691.756000pt;}
.y42{bottom:692.240000pt;}
.yd8{bottom:694.436000pt;}
.y19f{bottom:699.026667pt;}
.y160{bottom:699.446667pt;}
.y71{bottom:699.680000pt;}
.ya1{bottom:701.537333pt;}
.y41{bottom:701.772000pt;}
.y19e{bottom:716.294667pt;}
.y15f{bottom:716.716000pt;}
.ya0{bottom:718.845333pt;}
.y40{bottom:721.462667pt;}
.y13{bottom:725.040000pt;}
.yd1{bottom:725.345333pt;}
.y1d0{bottom:727.393333pt;}
.y19d{bottom:733.564000pt;}
.y15e{bottom:733.984000pt;}
.y3f{bottom:736.074667pt;}
.y9f{bottom:736.152000pt;}
.yd0{bottom:742.613333pt;}
.y1cf{bottom:744.662667pt;}
.y3e{bottom:749.120000pt;}
.y19c{bottom:750.832000pt;}
.y9e{bottom:753.460000pt;}
.y70{bottom:753.693333pt;}
.ycf{bottom:759.882667pt;}
.y1ce{bottom:761.930667pt;}
.y3d{bottom:766.388000pt;}
.y19b{bottom:768.101333pt;}
.y9d{bottom:770.768000pt;}
.y6f{bottom:770.961333pt;}
.y118{bottom:775.450667pt;}
.yce{bottom:777.150667pt;}
.y24{bottom:777.333333pt;}
.y19a{bottom:785.369333pt;}
.y15d{bottom:787.997333pt;}
.y9c{bottom:788.074667pt;}
.y6e{bottom:788.230667pt;}
.ycd{bottom:794.420000pt;}
.y31{bottom:798.453333pt;}
.y1cd{bottom:799.553333pt;}
.y199{bottom:802.637333pt;}
.y23{bottom:803.200000pt;}
.y3{bottom:805.081333pt;}
.y15c{bottom:805.304000pt;}
.y9b{bottom:805.382667pt;}
.y6d{bottom:805.537333pt;}
.y3c{bottom:807.566667pt;}
.y30{bottom:809.120000pt;}
.y1cc{bottom:816.821333pt;}
.y2f{bottom:819.786667pt;}
.y198{bottom:819.906667pt;}
.ycc{bottom:820.181333pt;}
.y15b{bottom:822.612000pt;}
.y9a{bottom:822.689333pt;}
.y6c{bottom:822.806667pt;}
.yca{bottom:825.857333pt;}
.y10d{bottom:826.200000pt;}
.yc9{bottom:830.158667pt;}
.y1cb{bottom:834.090667pt;}
.y197{bottom:837.174667pt;}
.y22{bottom:839.066667pt;}
.y3b{bottom:839.566667pt;}
.y15a{bottom:839.920000pt;}
.y99{bottom:839.997333pt;}
.ycb{bottom:839.998667pt;}
.y6b{bottom:840.074667pt;}
.y2e{bottom:840.453333pt;}
.y2d{bottom:851.120000pt;}
.y1ca{bottom:851.358667pt;}
.y196{bottom:854.444000pt;}
.y2{bottom:857.092000pt;}
.y159{bottom:857.226667pt;}
.y98{bottom:857.305333pt;}
.y6a{bottom:857.344000pt;}
.y2c{bottom:861.786667pt;}
.yc8{bottom:862.593333pt;}
.yc7{bottom:866.893333pt;}
.y3a{bottom:871.566667pt;}
.y195{bottom:871.712000pt;}
.y2b{bottom:872.453333pt;}
.y21{bottom:873.213333pt;}
.y158{bottom:874.534667pt;}
.y69{bottom:874.612000pt;}
.y1{bottom:879.748000pt;}
.y97{bottom:881.914667pt;}
.y194{bottom:884.537333pt;}
.y193{bottom:888.981333pt;}
.yc6{bottom:891.762667pt;}
.y2a{bottom:893.120000pt;}
.yc4{bottom:897.438667pt;}
.y20{bottom:898.813333pt;}
.y157{bottom:899.145333pt;}
.y68{bottom:899.184000pt;}
.y96{bottom:901.617333pt;}
.yc3{bottom:901.740000pt;}
.y29{bottom:903.786667pt;}
.y95{bottom:906.196000pt;}
.y192{bottom:906.249333pt;}
.yc5{bottom:911.580000pt;}
.y28{bottom:914.453333pt;}
.y116{bottom:921.917333pt;}
.y156{bottom:923.425333pt;}
.y67{bottom:923.464000pt;}
.y191{bottom:923.517333pt;}
.y1f{bottom:924.413333pt;}
.y27{bottom:925.120000pt;}
.y26{bottom:935.786667pt;}
.y190{bottom:936.342667pt;}
.yc2{bottom:940.786667pt;}
.y94{bottom:941.982667pt;}
.y93{bottom:954.672000pt;}
.yc1{bottom:958.054667pt;}
.y25{bottom:958.453333pt;}
.y66{bottom:959.250667pt;}
.y1e{bottom:961.320000pt;}
.y38{bottom:1017.333333pt;}
.y37{bottom:1036.000000pt;}
.y1d{bottom:1059.173333pt;}
.h3d{height:2.327275pt;}
.h3a{height:21.551241pt;}
.h15{height:21.552683pt;}
.h41{height:23.937720pt;}
.h45{height:25.658360pt;}
.h40{height:26.402364pt;}
.h49{height:27.368740pt;}
.h4{height:29.333333pt;}
.h35{height:31.880400pt;}
.h5a{height:34.239693pt;}
.h16{height:35.864000pt;}
.h59{height:35.865600pt;}
.h43{height:36.654800pt;}
.h10{height:37.031250pt;}
.hf{height:38.171466pt;}
.hd{height:38.937500pt;}
.h47{height:39.098200pt;}
.h39{height:40.292574pt;}
.h3b{height:40.297907pt;}
.h44{height:40.637801pt;}
.h18{height:40.726933pt;}
.h20{height:40.727307pt;}
.he{height:41.367733pt;}
.h17{height:41.867349pt;}
.h4a{height:43.123778pt;}
.h19{height:43.636000pt;}
.h1d{height:43.636400pt;}
.h11{height:43.854610pt;}
.hc{height:44.500000pt;}
.h48{height:49.078530pt;}
.ha{height:50.062500pt;}
.h1f{height:50.141751pt;}
.h21{height:50.147084pt;}
.h3e{height:51.204400pt;}
.h53{height:51.209733pt;}
.h3{height:51.916667pt;}
.h14{height:52.989333pt;}
.h25{height:52.989733pt;}
.h13{height:52.994667pt;}
.h1e{height:52.995067pt;}
.h30{height:53.053751pt;}
.h57{height:56.344400pt;}
.h22{height:56.349733pt;}
.h1a{height:57.336053pt;}
.h24{height:57.336418pt;}
.h4b{height:57.341751pt;}
.h1c{height:57.714720pt;}
.h50{height:57.715084pt;}
.h2a{height:58.691067pt;}
.h52{height:59.225733pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h56{height:60.563067pt;}
.h3c{height:60.836400pt;}
.h4e{height:61.412400pt;}
.h23{height:61.951067pt;}
.hb{height:64.000000pt;}
.h12{height:64.269333pt;}
.h4c{height:64.909751pt;}
.h9{height:66.750000pt;}
.h36{height:66.908608pt;}
.h4d{height:67.512418pt;}
.h26{height:68.461751pt;}
.h51{height:68.579067pt;}
.h54{height:68.584400pt;}
.h29{height:70.259084pt;}
.h55{height:72.925751pt;}
.h58{height:74.120400pt;}
.h1b{height:75.112053pt;}
.h4f{height:75.112418pt;}
.h2b{height:75.891067pt;}
.h28{height:75.896400pt;}
.h38{height:76.371084pt;}
.h31{height:81.292608pt;}
.h2d{height:83.545733pt;}
.h37{height:84.108608pt;}
.h2e{height:84.684608pt;}
.h33{height:89.507084pt;}
.h34{height:95.811067pt;}
.h27{height:98.600400pt;}
.h2f{height:99.165733pt;}
.h32{height:99.171067pt;}
.h7{height:102.413333pt;}
.h2c{height:106.707084pt;}
.h3f{height:145.138176pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h46{height:197.548800pt;}
.h42{height:222.243840pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:193.517568pt;}
.w8{width:267.706667pt;}
.we{width:296.323200pt;}
.wd{width:296.325120pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:607.353867pt;}
.w9{width:793.333333pt;}
.wa{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.188474pt;}
.x3{left:2.666667pt;}
.x56{left:8.624089pt;}
.x55{left:11.809233pt;}
.x6a{left:13.214917pt;}
.x6b{left:16.028341pt;}
.x61{left:19.414311pt;}
.x5a{left:22.012959pt;}
.x52{left:23.358133pt;}
.x60{left:25.389815pt;}
.x5c{left:27.022956pt;}
.x5f{left:31.529109pt;}
.x75{left:33.098410pt;}
.x5e{left:48.426457pt;}
.x73{left:50.196670pt;}
.xa{left:52.000000pt;}
.xf{left:67.602400pt;}
.x62{left:71.704506pt;}
.x63{left:77.511949pt;}
.x6c{left:79.442055pt;}
.x53{left:83.110084pt;}
.x54{left:85.567669pt;}
.x67{left:88.221866pt;}
.xe{left:91.970133pt;}
.x11{left:93.333333pt;}
.x15{left:94.488000pt;}
.x6d{left:96.264061pt;}
.x78{left:100.091618pt;}
.x51{left:101.728000pt;}
.x5d{left:102.956000pt;}
.x74{left:110.566280pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x8e{left:129.840000pt;}
.x8c{left:130.974667pt;}
.x8f{left:133.526667pt;}
.x7a{left:140.952000pt;}
.x57{left:143.308368pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x64{left:177.167439pt;}
.x7{left:178.413333pt;}
.x65{left:182.974632pt;}
.x16{left:190.129333pt;}
.x76{left:192.267113pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x6e{left:200.187488pt;}
.x77{left:203.774180pt;}
.x41{left:210.893333pt;}
.x7e{left:215.381333pt;}
.x25{left:219.514667pt;}
.x18{left:222.833333pt;}
.x24{left:225.705333pt;}
.x23{left:228.605333pt;}
.x26{left:234.585333pt;}
.x27{left:239.366667pt;}
.x7f{left:244.610667pt;}
.x43{left:246.148000pt;}
.x6f{left:247.741972pt;}
.x72{left:251.114667pt;}
.x19{left:252.030667pt;}
.x1d{left:260.081333pt;}
.x7d{left:266.640000pt;}
.x7c{left:269.462667pt;}
.x42{left:273.048000pt;}
.x2a{left:278.062667pt;}
.x70{left:280.002102pt;}
.x66{left:282.094698pt;}
.x84{left:284.344000pt;}
.x1f{left:290.268000pt;}
.x21{left:297.862667pt;}
.x35{left:299.774667pt;}
.x34{left:302.401333pt;}
.x3c{left:305.424000pt;}
.x36{left:306.409333pt;}
.x4d{left:311.050667pt;}
.x3b{left:313.650667pt;}
.x7b{left:314.630667pt;}
.x86{left:317.545333pt;}
.x2d{left:320.808000pt;}
.x68{left:322.880000pt;}
.x30{left:324.258667pt;}
.x2e{left:327.166667pt;}
.x31{left:330.617333pt;}
.x28{left:334.560000pt;}
.x32{left:338.878667pt;}
.x3e{left:346.669333pt;}
.x38{left:347.656000pt;}
.x44{left:350.732000pt;}
.x50{left:358.100000pt;}
.x3d{left:359.194667pt;}
.x37{left:360.180000pt;}
.x48{left:365.049333pt;}
.x17{left:366.629333pt;}
.x4e{left:370.780000pt;}
.x3f{left:381.922667pt;}
.x39{left:382.909333pt;}
.x40{left:389.137333pt;}
.x3a{left:390.122667pt;}
.x8b{left:393.816000pt;}
.x14{left:397.333333pt;}
.x22{left:401.978667pt;}
.x69{left:404.122667pt;}
.x2f{left:413.297333pt;}
.x85{left:415.457333pt;}
.x58{left:426.466667pt;}
.x33{left:427.840000pt;}
.x81{left:434.908000pt;}
.x45{left:440.042667pt;}
.x1c{left:445.285333pt;}
.x89{left:448.857333pt;}
.x29{left:466.009333pt;}
.x79{left:471.442667pt;}
.x8a{left:478.816000pt;}
.x82{left:484.106667pt;}
.x1a{left:487.084000pt;}
.x13{left:490.066667pt;}
.x49{left:496.530667pt;}
.x59{left:498.457333pt;}
.x46{left:511.069333pt;}
.x1b{left:516.569333pt;}
.x20{left:522.642667pt;}
.x4a{left:530.236000pt;}
.xb{left:538.213333pt;}
.x2b{left:540.621333pt;}
.x47{left:544.773333pt;}
.x83{left:553.922667pt;}
.xd{left:558.213333pt;}
.xc{left:563.920000pt;}
.x4b{left:580.361333pt;}
.x80{left:593.908000pt;}
.x87{left:605.029333pt;}
.x12{left:617.906667pt;}
.x5b{left:622.008000pt;}
.x71{left:623.642667pt;}
.x4c{left:634.057333pt;}
.x1e{left:659.582667pt;}
.x88{left:661.258667pt;}
.x4f{left:673.354667pt;}
.x2c{left:680.626667pt;}
.x8d{left:682.401333pt;}
}




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