
    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_0a47a5692d079b7a5cad5ddd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_0272497f30525a8ef214af67.woff')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_7b864a62f6e9c25f19005f90.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2b5ff87973ec98239677bd62.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_411b96769dd466d3636bd944.woff')format("woff");}.ff5{font-family:ff5;line-height:1.710000;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_4be10c53519fe1691220a0ed.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6840c9aeb6243f30f2990efd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.703000;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_80ceef733312550d730d195f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f54eaaf718a9448ddf2c9f66.woff')format("woff");}.ff9{font-family:ff9;line-height:0.664000;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_29b7eabe38b3574726fe0bb9.woff')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_fc0210b101fabca7f8978d75.woff')format("woff");}.ffb{font-family:ffb;line-height:0.908000;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_f697ef30f82bc326546b48bd.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_23ccc0cc84aba304534a6233.woff')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_c6e3d3d3202c9b6646eef818.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1d089078648337a8096c9a94.woff')format("woff");}.fff{font-family:fff;line-height:0.685000;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_2e45d5bd50cc8d6817e7adcf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758000;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_b6508188d20868d1228cbdc3.woff')format("woff");}.ff11{font-family:ff11;line-height:2.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:ff12;src:url('chunks/assets/font_c582f7a79fe270110a5b55b6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.703450;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_50cffcacc680a85daaf07c28.woff')format("woff");}.ff13{font-family:ff13;line-height:0.520000;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_0b49c2853986be910d7f2e73.woff')format("woff");}.ff14{font-family:ff14;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.vf{vertical-align:-62.766000px;}
.v9{vertical-align:-60.966000px;}
.v8{vertical-align:-50.304000px;}
.v1c{vertical-align:-49.152000px;}
.v10{vertical-align:-46.254000px;}
.v24{vertical-align:-41.712000px;}
.v2c{vertical-align:-38.856000px;}
.v21{vertical-align:-35.862000px;}
.v1e{vertical-align:-27.024000px;}
.v17{vertical-align:-23.754000px;}
.v1d{vertical-align:-18.906000px;}
.v15{vertical-align:-16.512000px;}
.v28{vertical-align:-11.598000px;}
.v4{vertical-align:-10.134000px;}
.vb{vertical-align:-2.754000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.386000px;}
.v11{vertical-align:3.582000px;}
.v1a{vertical-align:6.366000px;}
.v1{vertical-align:8.964000px;}
.v2{vertical-align:10.134000px;}
.v16{vertical-align:15.318000px;}
.v19{vertical-align:17.832000px;}
.v18{vertical-align:19.692000px;}
.v20{vertical-align:22.572000px;}
.v7{vertical-align:23.748000px;}
.v3{vertical-align:27.024000px;}
.v1f{vertical-align:29.250000px;}
.vd{vertical-align:34.032000px;}
.v2a{vertical-align:35.862000px;}
.v6{vertical-align:44.280000px;}
.v14{vertical-align:46.248000px;}
.ve{vertical-align:50.544000px;}
.v27{vertical-align:55.326000px;}
.v13{vertical-align:58.170000px;}
.v22{vertical-align:70.158000px;}
.v23{vertical-align:72.528000px;}
.v1b{vertical-align:74.388000px;}
.v2b{vertical-align:88.098000px;}
.v25{vertical-align:89.178000px;}
.v26{vertical-align:94.140000px;}
.vc{vertical-align:96.798000px;}
.va{vertical-align:100.878000px;}
.v5{vertical-align:103.632000px;}
.v29{vertical-align:110.784000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000502px;}
.ls1e{letter-spacing:0.000843px;}
.ls7f{letter-spacing:0.001050px;}
.ls8b{letter-spacing:0.001059px;}
.ls52{letter-spacing:0.002147px;}
.ls9e{letter-spacing:0.002153px;}
.ls25{letter-spacing:0.002155px;}
.ls2f{letter-spacing:0.002676px;}
.ls19{letter-spacing:0.002682px;}
.ls31{letter-spacing:0.002688px;}
.ls22{letter-spacing:0.002700px;}
.ls92{letter-spacing:0.002706px;}
.ls62{letter-spacing:0.002793px;}
.ls26{letter-spacing:0.002877px;}
.ls42{letter-spacing:0.003191px;}
.ls29{letter-spacing:0.004881px;}
.ls45{letter-spacing:0.005922px;}
.ls6d{letter-spacing:0.006843px;}
.ls98{letter-spacing:0.007550px;}
.ls90{letter-spacing:0.013011px;}
.ls7c{letter-spacing:0.014248px;}
.ls16{letter-spacing:0.014593px;}
.ls8f{letter-spacing:0.019011px;}
.ls9c{letter-spacing:0.022647px;}
.ls81{letter-spacing:0.022829px;}
.ls6c{letter-spacing:0.027392px;}
.ls8d{letter-spacing:0.027584px;}
.ls6b{letter-spacing:0.028711px;}
.ls5a{letter-spacing:0.065455px;}
.ls6e{letter-spacing:0.099198px;}
.ls9b{letter-spacing:0.196364px;}
.ls9d{letter-spacing:0.261818px;}
.ls30{letter-spacing:0.327273px;}
.ls7b{letter-spacing:0.523637px;}
.ls7d{letter-spacing:0.654546px;}
.lsa0{letter-spacing:1.386797px;}
.ls10{letter-spacing:1.832729px;}
.ls34{letter-spacing:2.029093px;}
.ls5c{letter-spacing:2.094547px;}
.ls2c{letter-spacing:2.290911px;}
.ls3e{letter-spacing:2.344861px;}
.ls11{letter-spacing:2.356366px;}
.ls93{letter-spacing:2.409926px;}
.ls13{letter-spacing:2.487275px;}
.ls47{letter-spacing:2.755488px;}
.ls9f{letter-spacing:2.982960px;}
.ls37{letter-spacing:2.984915px;}
.ls5b{letter-spacing:2.985056px;}
.ls91{letter-spacing:2.986613px;}
.ls9a{letter-spacing:2.986767px;}
.ls43{letter-spacing:2.987236px;}
.ls6f{letter-spacing:2.988103px;}
.ls53{letter-spacing:2.988509px;}
.ls46{letter-spacing:2.989289px;}
.ls96{letter-spacing:2.989739px;}
.ls70{letter-spacing:2.990915px;}
.ls33{letter-spacing:2.991056px;}
.ls63{letter-spacing:2.991543px;}
.ls3d{letter-spacing:2.993236px;}
.ls5d{letter-spacing:3.010912px;}
.ls6a{letter-spacing:3.050130px;}
.ls20{letter-spacing:3.665458px;}
.ls23{letter-spacing:4.259644px;}
.ls4c{letter-spacing:4.703907px;}
.ls17{letter-spacing:4.705622px;}
.ls21{letter-spacing:5.743488px;}
.ls1f{letter-spacing:5.956369px;}
.ls49{letter-spacing:5.981950px;}
.ls8{letter-spacing:7.077449px;}
.ls2a{letter-spacing:7.134551px;}
.ls60{letter-spacing:7.173515px;}
.ls18{letter-spacing:7.173657px;}
.ls69{letter-spacing:7.174200px;}
.ls83{letter-spacing:7.396370px;}
.ls59{letter-spacing:8.262366px;}
.ls8c{letter-spacing:8.510228px;}
.ls88{letter-spacing:8.516228px;}
.ls2b{letter-spacing:9.013521px;}
.ls6{letter-spacing:9.098189px;}
.ls4a{letter-spacing:9.682252px;}
.ls9{letter-spacing:10.027961px;}
.ls1b{letter-spacing:10.911657px;}
.ls24{letter-spacing:10.914843px;}
.ls8a{letter-spacing:10.928509px;}
.lsc{letter-spacing:10.930918px;}
.ls86{letter-spacing:11.619962px;}
.ls84{letter-spacing:11.625962px;}
.ls0{letter-spacing:13.286847px;}
.ls4b{letter-spacing:14.274613px;}
.ls2{letter-spacing:14.280613px;}
.lsb{letter-spacing:14.530921px;}
.ls64{letter-spacing:14.541507px;}
.ls15{letter-spacing:14.596376px;}
.lsf{letter-spacing:15.611907px;}
.ls67{letter-spacing:15.621707px;}
.ls27{letter-spacing:16.651488px;}
.ls1d{letter-spacing:16.657488px;}
.ls68{letter-spacing:16.856400px;}
.ls48{letter-spacing:16.889950px;}
.ls35{letter-spacing:17.102915px;}
.ls8e{letter-spacing:17.531447px;}
.ls97{letter-spacing:17.537813px;}
.ls80{letter-spacing:17.540915px;}
.ls12{letter-spacing:18.130924px;}
.ls3c{letter-spacing:18.179412px;}
.ls41{letter-spacing:18.185412px;}
.ls7{letter-spacing:18.196379px;}
.lsa2{letter-spacing:18.261833px;}
.ls7a{letter-spacing:19.636380px;}
.ls1{letter-spacing:20.024826px;}
.ls75{letter-spacing:20.487290px;}
.ls38{letter-spacing:20.683654px;}
.ls40{letter-spacing:21.164915px;}
.ls7e{letter-spacing:21.170915px;}
.ls82{letter-spacing:21.188915px;}
.lse{letter-spacing:21.469109px;}
.ls39{letter-spacing:21.600018px;}
.ls56{letter-spacing:21.665473px;}
.ls72{letter-spacing:21.719412px;}
.ls1c{letter-spacing:21.796382px;}
.ls3{letter-spacing:21.861836px;}
.ls3a{letter-spacing:21.927291px;}
.ls36{letter-spacing:21.992746px;}
.ls74{letter-spacing:22.058200px;}
.ls57{letter-spacing:22.123655px;}
.ls55{letter-spacing:22.189109px;}
.ls51{letter-spacing:22.385473px;}
.ls14{letter-spacing:23.629111px;}
.ls94{letter-spacing:24.803971px;}
.ls32{letter-spacing:24.908425px;}
.ls79{letter-spacing:25.182613px;}
.ls54{letter-spacing:25.592749px;}
.ls2d{letter-spacing:25.658203px;}
.ls78{letter-spacing:25.985476px;}
.ls50{letter-spacing:26.050931px;}
.ls95{letter-spacing:26.402915px;}
.ls58{letter-spacing:26.442366px;}
.ls3f{letter-spacing:26.507236px;}
.ls2e{letter-spacing:28.930933px;}
.ls77{letter-spacing:28.934915px;}
.ls1a{letter-spacing:29.033644px;}
.ls87{letter-spacing:29.258206px;}
.ls4f{letter-spacing:30.305480px;}
.ls61{letter-spacing:30.960026px;}
.ls3b{letter-spacing:32.460613px;}
.ls5{letter-spacing:32.727300px;}
.ls4e{letter-spacing:33.316391px;}
.ls4d{letter-spacing:35.869121px;}
.ls66{letter-spacing:36.327303px;}
.ls65{letter-spacing:36.368793px;}
.ls85{letter-spacing:36.752915px;}
.ls76{letter-spacing:40.224613px;}
.ls71{letter-spacing:40.585521px;}
.ls89{letter-spacing:52.251719px;}
.ls28{letter-spacing:52.548843px;}
.ls5f{letter-spacing:57.826199px;}
.ls5e{letter-spacing:76.385518px;}
.ls73{letter-spacing:89.552915px;}
.lsa{letter-spacing:141.840118px;}
.ls44{letter-spacing:147.395412px;}
.lsa1{letter-spacing:455.564016px;}
.ls99{letter-spacing:688.872520px;}
.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;}
}
.ws71{word-spacing:-87.840073px;}
.ws42{word-spacing:-65.454600px;}
.ws4d{word-spacing:-47.324343px;}
.ws56{word-spacing:-47.258221px;}
.ws46{word-spacing:-42.637126px;}
.ws83{word-spacing:-38.670578px;}
.ws54{word-spacing:-37.636395px;}
.ws44{word-spacing:-36.379667px;}
.ws3a{word-spacing:-33.453846px;}
.ws43{word-spacing:-33.211407px;}
.ws1a{word-spacing:-32.727300px;}
.wsa6{word-spacing:-32.714209px;}
.ws45{word-spacing:-31.771663px;}
.ws40{word-spacing:-31.706208px;}
.ws90{word-spacing:-31.090935px;}
.ws6b{word-spacing:-29.912752px;}
.wsa2{word-spacing:-26.181778px;}
.ws4b{word-spacing:-24.506202px;}
.ws68{word-spacing:-24.440748px;}
.ws48{word-spacing:-21.953473px;}
.ws67{word-spacing:-19.008016px;}
.ws49{word-spacing:-18.183288px;}
.ws63{word-spacing:-17.869106px;}
.ws77{word-spacing:-17.018196px;}
.ws33{word-spacing:-16.298195px;}
.ws0{word-spacing:-16.175590px;}
.ws3b{word-spacing:-16.139475px;}
.ws1d{word-spacing:-15.774559px;}
.wsaa{word-spacing:-15.709104px;}
.ws16{word-spacing:-15.643649px;}
.ws3{word-spacing:-15.601432px;}
.ws76{word-spacing:-15.584740px;}
.ws64{word-spacing:-15.512740px;}
.wsac{word-spacing:-15.277104px;}
.ws3d{word-spacing:-15.250922px;}
.ws2c{word-spacing:-15.054558px;}
.ws36{word-spacing:-14.661830px;}
.ws10{word-spacing:-14.226593px;}
.wsa1{word-spacing:-14.111859px;}
.ws7{word-spacing:-14.047266px;}
.ws8d{word-spacing:-13.876375px;}
.ws17{word-spacing:-13.810921px;}
.wsb2{word-spacing:-13.745466px;}
.ws2a{word-spacing:-13.483648px;}
.ws18{word-spacing:-13.449600px;}
.ws3e{word-spacing:-13.287284px;}
.ws37{word-spacing:-13.156375px;}
.ws2d{word-spacing:-13.090920px;}
.ws88{word-spacing:-13.025465px;}
.ws24{word-spacing:-12.960011px;}
.ws23{word-spacing:-12.894556px;}
.ws7a{word-spacing:-12.763647px;}
.ws53{word-spacing:-12.567283px;}
.wsb3{word-spacing:-12.508374px;}
.ws8a{word-spacing:-12.501829px;}
.ws26{word-spacing:-12.370919px;}
.ws21{word-spacing:-12.305465px;}
.ws92{word-spacing:-12.174556px;}
.ws28{word-spacing:-11.978192px;}
.ws2b{word-spacing:-11.716373px;}
.wsf{word-spacing:-11.656242px;}
.wsaf{word-spacing:-11.585464px;}
.ws25{word-spacing:-11.389100px;}
.ws30{word-spacing:-11.323646px;}
.ws1f{word-spacing:-11.258191px;}
.ws62{word-spacing:-11.192737px;}
.ws38{word-spacing:-11.127282px;}
.ws52{word-spacing:-11.061827px;}
.ws1b{word-spacing:-10.996373px;}
.ws15{word-spacing:-10.930918px;}
.ws19{word-spacing:-10.865464px;}
.ws60{word-spacing:-10.800009px;}
.ws27{word-spacing:-10.734554px;}
.ws22{word-spacing:-10.669100px;}
.ws3c{word-spacing:-10.603645px;}
.ws1e{word-spacing:-10.538191px;}
.ws31{word-spacing:-10.479281px;}
.ws47{word-spacing:-10.472736px;}
.ws29{word-spacing:-10.407281px;}
.ws11{word-spacing:-10.341179px;}
.ws7b{word-spacing:-10.282918px;}
.ws39{word-spacing:-10.217463px;}
.wsb{word-spacing:-10.161852px;}
.ws78{word-spacing:-10.145463px;}
.wsb1{word-spacing:-10.086554px;}
.wsc{word-spacing:-10.042301px;}
.ws74{word-spacing:-10.021099px;}
.wsa{word-spacing:-9.982525px;}
.ws6{word-spacing:-9.922750px;}
.ws5f{word-spacing:-9.890190px;}
.ws9a{word-spacing:-9.883645px;}
.ws5{word-spacing:-9.862974px;}
.wsab{word-spacing:-9.818190px;}
.ws9{word-spacing:-9.803198px;}
.ws82{word-spacing:-9.752735px;}
.ws8{word-spacing:-9.743423px;}
.ws3f{word-spacing:-9.432008px;}
.ws1c{word-spacing:-9.425462px;}
.ws65{word-spacing:-9.360008px;}
.ws5b{word-spacing:-9.286630px;}
.ws59{word-spacing:-9.280630px;}
.ws9b{word-spacing:-9.163644px;}
.wsb4{word-spacing:-9.032735px;}
.wsb0{word-spacing:-8.967280px;}
.ws72{word-spacing:-8.836371px;}
.ws9c{word-spacing:-8.705462px;}
.ws97{word-spacing:-8.640007px;}
.wse{word-spacing:-8.607686px;}
.ws81{word-spacing:-8.509098px;}
.wsae{word-spacing:-8.443643px;}
.ws93{word-spacing:-8.378189px;}
.ws9d{word-spacing:-8.057461px;}
.ws98{word-spacing:-7.992007px;}
.ws2f{word-spacing:-7.854552px;}
.ws5c{word-spacing:-7.789097px;}
.ws14{word-spacing:-7.723643px;}
.ws96{word-spacing:-7.330915px;}
.ws94{word-spacing:-7.265461px;}
.ws9e{word-spacing:-7.252370px;}
.ws61{word-spacing:-7.069097px;}
.wsd{word-spacing:-7.053521px;}
.ws99{word-spacing:-7.003642px;}
.ws87{word-spacing:-6.807278px;}
.ws6d{word-spacing:-6.768006px;}
.ws85{word-spacing:-6.741824px;}
.ws70{word-spacing:-6.676369px;}
.ws32{word-spacing:-6.545460px;}
.ws4a{word-spacing:-6.480005px;}
.ws7e{word-spacing:-6.021823px;}
.ws7d{word-spacing:-5.956369px;}
.ws13{word-spacing:-5.890914px;}
.ws7c{word-spacing:-5.760005px;}
.ws2{word-spacing:-5.080926px;}
.ws8f{word-spacing:-4.909095px;}
.ws6e{word-spacing:-4.254549px;}
.ws66{word-spacing:-4.058185px;}
.ws5e{word-spacing:-3.796367px;}
.wsa0{word-spacing:-3.665458px;}
.ws79{word-spacing:-3.652367px;}
.ws57{word-spacing:-3.600003px;}
.ws5d{word-spacing:-3.541094px;}
.ws7f{word-spacing:-3.338185px;}
.ws80{word-spacing:-3.272730px;}
.ws2e{word-spacing:-3.076366px;}
.ws5a{word-spacing:-2.785643px;}
.ws58{word-spacing:-2.755639px;}
.ws4{word-spacing:-2.689902px;}
.ws6c{word-spacing:-2.421820px;}
.ws75{word-spacing:-2.232002px;}
.ws91{word-spacing:-1.832729px;}
.ws34{word-spacing:-1.309092px;}
.ws35{word-spacing:-1.112728px;}
.wsa5{word-spacing:-0.916364px;}
.ws89{word-spacing:-0.314182px;}
.ws41{word-spacing:-0.065455px;}
.ws4f{word-spacing:-0.052364px;}
.ws20{word-spacing:0.000000px;}
.ws50{word-spacing:0.007315px;}
.ws4c{word-spacing:0.013091px;}
.ws55{word-spacing:0.340364px;}
.ws84{word-spacing:0.589091px;}
.ws6a{word-spacing:1.440001px;}
.ws73{word-spacing:3.207275px;}
.ws8b{word-spacing:3.351276px;}
.wsa3{word-spacing:3.416810px;}
.wsa7{word-spacing:4.136731px;}
.ws95{word-spacing:7.278552px;}
.wsad{word-spacing:8.836371px;}
.ws86{word-spacing:9.490917px;}
.ws6f{word-spacing:17.018196px;}
.ws1{word-spacing:23.312640px;}
.ws69{word-spacing:26.509113px;}
.wsa4{word-spacing:26.705477px;}
.ws51{word-spacing:29.127297px;}
.wsa9{word-spacing:30.614596px;}
.wsa8{word-spacing:35.396596px;}
.ws9f{word-spacing:37.886341px;}
.ws8e{word-spacing:47.271312px;}
.ws12{word-spacing:48.418425px;}
.ws8c{word-spacing:99.137537px;}
.ws4e{word-spacing:99.202992px;}
._2b{margin-left:-39.207305px;}
._28{margin-left:-35.214575px;}
._26{margin-left:-22.385473px;}
._29{margin-left:-19.923207px;}
._1d{margin-left:-17.594398px;}
._2e{margin-left:-14.530921px;}
._2{margin-left:-8.160100px;}
._10{margin-left:-6.742733px;}
._3{margin-left:-5.061367px;}
._14{margin-left:-3.870073px;}
._0{margin-left:-2.685602px;}
._5{margin-left:-1.454173px;}
._4{width:1.936742px;}
._19{width:3.425002px;}
._1c{width:4.647277px;}
._15{width:5.709089px;}
._1e{width:7.134551px;}
._27{width:8.781131px;}
._b{width:14.645022px;}
._2f{width:16.640672px;}
._17{width:17.697129px;}
._13{width:18.787434px;}
._c{width:20.558507px;}
._1f{width:21.675688px;}
._11{width:22.780165px;}
._23{width:24.874712px;}
._6{width:26.181713px;}
._d{width:28.411224px;}
._8{width:29.799802px;}
._21{width:30.915934px;}
._a{width:32.095133px;}
._2c{width:34.103810px;}
._12{width:35.216539px;}
._9{width:36.234973px;}
._2d{width:37.245631px;}
._e{width:39.575773px;}
._1{width:41.936714px;}
._16{width:42.941786px;}
._20{width:45.184104px;}
._7{width:49.015992px;}
._25{width:56.227465px;}
._2a{width:63.246340px;}
._18{width:64.802018px;}
._22{width:66.061791px;}
._1b{width:67.748384px;}
._24{width:73.368390px;}
._f{width:80.697600px;}
._1a{width:96.836850px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2c{bottom:63.168000px;}
.y11c{bottom:99.781500px;}
.y2b{bottom:108.000000px;}
.y11b{bottom:117.132000px;}
.y119{bottom:118.570500px;}
.y11a{bottom:124.753500px;}
.y2a{bottom:128.323500px;}
.y140{bottom:130.011000px;}
.yc4{bottom:146.592000px;}
.y29{bottom:148.647000px;}
.y118{bottom:163.035000px;}
.y13f{bottom:163.783500px;}
.y75{bottom:168.972000px;}
.y51{bottom:169.647000px;}
.yf7{bottom:178.263000px;}
.y28{bottom:179.539500px;}
.yc3{bottom:183.354000px;}
.y50{bottom:189.972000px;}
.y117{bottom:193.927500px;}
.y13e{bottom:197.557500px;}
.yf6{bottom:198.586500px;}
.y74{bottom:203.508000px;}
.y4f{bottom:210.295500px;}
.yf5{bottom:218.910000px;}
.yc2{bottom:220.116000px;}
.y9f{bottom:223.051500px;}
.y27{bottom:223.113000px;}
.y73{bottom:223.831500px;}
.y13d{bottom:231.330000px;}
.y116{bottom:237.034500px;}
.y9d{bottom:240.841500px;}
.y9e{bottom:240.919500px;}
.y9c{bottom:243.375000px;}
.y26{bottom:243.438000px;}
.y4e{bottom:246.823500px;}
.y72{bottom:248.893500px;}
.yc1{bottom:251.008500px;}
.yf4{bottom:255.672000px;}
.y115{bottom:257.358000px;}
.y13c{bottom:262.222500px;}
.y9b{bottom:263.698500px;}
.y25{bottom:263.761500px;}
.y71{bottom:269.217000px;}
.y9a{bottom:281.568000px;}
.y99{bottom:284.022000px;}
.y24{bottom:284.085000px;}
.y70{bottom:289.540500px;}
.yf3{bottom:292.434000px;}
.yc0{bottom:292.654500px;}
.y114{bottom:293.886000px;}
.y4d{bottom:298.381500px;}
.y22{bottom:301.875000px;}
.y23{bottom:301.954500px;}
.y13b{bottom:302.239500px;}
.y21{bottom:304.408500px;}
.ybf{bottom:310.756500px;}
.yf2{bottom:312.757500px;}
.y13a{bottom:313.464000px;}
.y6f{bottom:314.602500px;}
.ybe{bottom:315.837000px;}
.y98{bottom:318.318000px;}
.y4c{bottom:318.705000px;}
.y20{bottom:324.732000px;}
.y97{bottom:329.544000px;}
.ybd{bottom:338.346000px;}
.y4b{bottom:339.028500px;}
.y6e{bottom:339.664500px;}
.yf1{bottom:343.650000px;}
.y113{bottom:344.731500px;}
.y139{bottom:351.217500px;}
.y15f{bottom:352.809000px;}
.y1f{bottom:355.624500px;}
.ybc{bottom:358.669500px;}
.y4a{bottom:359.352000px;}
.y138{bottom:362.442000px;}
.y6d{bottom:364.725000px;}
.y112{bottom:365.056500px;}
.y15e{bottom:373.134000px;}
.y96{bottom:374.001000px;}
.y49{bottom:379.677000px;}
.yf0{bottom:380.775000px;}
.y111{bottom:385.380000px;}
.ybb{bottom:389.562000px;}
.y6c{bottom:397.258500px;}
.y137{bottom:397.296000px;}
.y135{bottom:398.325000px;}
.y1e{bottom:399.198000px;}
.y110{bottom:405.703500px;}
.y15d{bottom:406.906500px;}
.y134{bottom:408.520500px;}
.y6b{bottom:417.583500px;}
.y1d{bottom:419.523000px;}
.y136{bottom:419.590500px;}
.y94{bottom:420.883500px;}
.y95{bottom:421.222500px;}
.y48{bottom:422.898000px;}
.y10f{bottom:426.027000px;}
.y15c{bottom:427.230000px;}
.yef{bottom:432.333000px;}
.yba{bottom:433.380000px;}
.y1c{bottom:439.846500px;}
.y47{bottom:443.221500px;}
.y10e{bottom:446.350500px;}
.y15b{bottom:447.555000px;}
.yee{bottom:450.202500px;}
.y133{bottom:451.887000px;}
.y6a{bottom:452.119500px;}
.yed{bottom:452.658000px;}
.yb9{bottom:453.703500px;}
.y1b{bottom:460.170000px;}
.y46{bottom:463.545000px;}
.y10d{bottom:466.675500px;}
.y93{bottom:467.308500px;}
.yec{bottom:470.448000px;}
.y132{bottom:472.210500px;}
.yeb{bottom:472.981500px;}
.yb8{bottom:474.028500px;}
.y1a{bottom:480.493500px;}
.y15a{bottom:481.327500px;}
.y69{bottom:483.012000px;}
.y45{bottom:483.868500px;}
.y10c{bottom:486.999000px;}
.yea{bottom:493.305000px;}
.yb7{bottom:494.352000px;}
.y91{bottom:498.007500px;}
.y159{bottom:501.651000px;}
.y131{bottom:503.103000px;}
.y44{bottom:504.192000px;}
.y92{bottom:511.671000px;}
.yb6{bottom:514.675500px;}
.y90{bottom:515.716500px;}
.y19{bottom:517.021500px;}
.y43{bottom:524.517000px;}
.y68{bottom:526.246500px;}
.y10b{bottom:529.507500px;}
.y158{bottom:535.425000px;}
.ye9{bottom:536.526000px;}
.y42{bottom:544.840500px;}
.y67{bottom:546.570000px;}
.y130{bottom:546.921000px;}
.y10a{bottom:549.831000px;}
.yb5{bottom:552.253500px;}
.y8f{bottom:552.478500px;}
.y157{bottom:555.748500px;}
.ye8{bottom:556.849500px;}
.yb4{bottom:557.896500px;}
.y66{bottom:566.893500px;}
.y12f{bottom:567.244500px;}
.y18{bottom:568.335000px;}
.y109{bottom:570.156000px;}
.y8e{bottom:572.802000px;}
.ye6{bottom:574.641000px;}
.ye7{bottom:574.719000px;}
.y41{bottom:575.731500px;}
.ye4{bottom:577.173000px;}
.ye3{bottom:577.174500px;}
.ye5{bottom:583.111500px;}
.y17{bottom:586.267500px;}
.y12e{bottom:587.569500px;}
.y156{bottom:592.276500px;}
.yb3{bottom:594.658500px;}
.ye1{bottom:597.498000px;}
.y108{bottom:601.047000px;}
.ye2{bottom:603.435000px;}
.y8d{bottom:603.694500px;}
.y16{bottom:604.200000px;}
.y12d{bottom:607.893000px;}
.y65{bottom:609.531000px;}
.yb2{bottom:614.982000px;}
.ydf{bottom:617.821500px;}
.y40{bottom:619.551000px;}
.y15{bottom:622.132500px;}
.ye0{bottom:623.760000px;}
.yb1{bottom:635.307000px;}
.y12c{bottom:638.784000px;}
.y64{bottom:639.835500px;}
.y3f{bottom:639.874500px;}
.y14{bottom:640.066500px;}
.y155{bottom:643.834500px;}
.y107{bottom:644.154000px;}
.y63{bottom:646.869000px;}
.y8c{bottom:647.512500px;}
.y13{bottom:657.999000px;}
.y62{bottom:658.093500px;}
.y3e{bottom:660.198000px;}
.yde{bottom:661.042500px;}
.y154{bottom:664.158000px;}
.y106{bottom:664.477500px;}
.yb0{bottom:666.198000px;}
.y8b{bottom:667.837500px;}
.y12b{bottom:675.910500px;}
.y12{bottom:675.931500px;}
.y153{bottom:684.481500px;}
.y105{bottom:684.802500px;}
.y89{bottom:688.161000px;}
.y11{bottom:693.864000px;}
.y3d{bottom:693.972000px;}
.y8a{bottom:694.099500px;}
.ydd{bottom:697.804500px;}
.y61{bottom:698.832000px;}
.y152{bottom:704.806500px;}
.y88{bottom:708.484500px;}
.yaf{bottom:710.017500px;}
.y10{bottom:711.796500px;}
.y3c{bottom:714.295500px;}
.ydb{bottom:715.596000px;}
.ydc{bottom:715.674000px;}
.yda{bottom:718.128000px;}
.y104{bottom:718.528500px;}
.y151{bottom:725.130000px;}
.y12a{bottom:727.468500px;}
.y87{bottom:728.808000px;}
.yf{bottom:729.729000px;}
.yae{bottom:730.341000px;}
.yd7{bottom:735.786000px;}
.yd8{bottom:735.919500px;}
.yd9{bottom:735.997500px;}
.yd5{bottom:738.451500px;}
.y103{bottom:738.852000px;}
.y60{bottom:742.333500px;}
.y5f{bottom:742.680000px;}
.yd6{bottom:744.390000px;}
.y150{bottom:745.453500px;}
.ye{bottom:747.663000px;}
.y129{bottom:747.792000px;}
.y3b{bottom:748.069500px;}
.y86{bottom:749.131500px;}
.yad{bottom:750.664500px;}
.yd4{bottom:758.776500px;}
.y102{bottom:763.642500px;}
.yd{bottom:765.595500px;}
.y14f{bottom:765.777000px;}
.y128{bottom:768.115500px;}
.y3a{bottom:768.393000px;}
.y85{bottom:769.456500px;}
.yac{bottom:770.988000px;}
.yc{bottom:783.528000px;}
.y101{bottom:783.966000px;}
.y14e{bottom:786.100500px;}
.y5e{bottom:787.528500px;}
.yb{bottom:801.460500px;}
.yd3{bottom:801.997500px;}
.y39{bottom:802.165500px;}
.y14d{bottom:806.425500px;}
.yab{bottom:807.516000px;}
.y100{bottom:808.758000px;}
.y127{bottom:811.336500px;}
.y84{bottom:812.677500px;}
.ya{bottom:817.152000px;}
.y9{bottom:819.393000px;}
.y38{bottom:822.490500px;}
.y14c{bottom:826.749000px;}
.y5c{bottom:832.341000px;}
.yd2{bottom:832.888500px;}
.y83{bottom:833.001000px;}
.y5d{bottom:833.029500px;}
.y8{bottom:837.325500px;}
.yff{bottom:841.021500px;}
.y14b{bottom:847.072500px;}
.y125{bottom:847.395000px;}
.y82{bottom:850.870500px;}
.y81{bottom:853.324500px;}
.y7{bottom:855.259500px;}
.y37{bottom:856.263000px;}
.yaa{bottom:859.074000px;}
.yfe{bottom:861.345000px;}
.y124{bottom:862.033500px;}
.y126{bottom:866.125500px;}
.y14a{bottom:867.396000px;}
.y6{bottom:873.192000px;}
.yd1{bottom:873.633000px;}
.y5b{bottom:876.243000px;}
.ya9{bottom:879.397500px;}
.yd0{bottom:884.857500px;}
.y36{bottom:887.155500px;}
.y149{bottom:887.719500px;}
.y7f{bottom:891.622500px;}
.y80{bottom:892.087500px;}
.yfd{bottom:892.236000px;}
.y7e{bottom:896.545500px;}
.y5a{bottom:896.566500px;}
.y123{bottom:898.797000px;}
.y5{bottom:898.908000px;}
.y148{bottom:908.044500px;}
.ycf{bottom:912.876000px;}
.ya8{bottom:913.171500px;}
.y7d{bottom:916.869000px;}
.y122{bottom:919.120500px;}
.y59{bottom:927.457500px;}
.y147{bottom:928.368000px;}
.ycd{bottom:930.666000px;}
.yce{bottom:930.745500px;}
.y35{bottom:930.973500px;}
.ycc{bottom:933.199500px;}
.ya7{bottom:933.495000px;}
.yfc{bottom:935.343000px;}
.y7b{bottom:937.194000px;}
.y7c{bottom:943.131000px;}
.y146{bottom:948.691500px;}
.y121{bottom:950.011500px;}
.y34{bottom:951.298500px;}
.yfb{bottom:955.668000px;}
.y4{bottom:957.760500px;}
.ycb{bottom:964.092000px;}
.ya6{bottom:967.269000px;}
.y58{bottom:970.692000px;}
.y33{bottom:971.622000px;}
.y7a{bottom:980.415000px;}
.y145{bottom:985.219500px;}
.ya5{bottom:987.592500px;}
.y57{bottom:991.015500px;}
.yfa{bottom:992.196000px;}
.y120{bottom:993.831000px;}
.y3{bottom:994.449000px;}
.y79{bottom:1000.738500px;}
.yca{bottom:1004.835000px;}
.y32{bottom:1009.878000px;}
.y56{bottom:1011.340500px;}
.y11f{bottom:1014.154500px;}
.yc9{bottom:1016.059500px;}
.ya4{bottom:1021.365000px;}
.y31{bottom:1030.201500px;}
.y55{bottom:1031.664000px;}
.y144{bottom:1036.777500px;}
.y2{bottom:1039.915500px;}
.yc8{bottom:1040.896500px;}
.yf9{bottom:1043.041500px;}
.y78{bottom:1043.959500px;}
.ya3{bottom:1047.937500px;}
.y54{bottom:1051.987500px;}
.y143{bottom:1057.101000px;}
.ya2{bottom:1059.162000px;}
.yc7{bottom:1061.220000px;}
.y11d{bottom:1061.481000px;}
.y11e{bottom:1061.820000px;}
.y30{bottom:1063.975500px;}
.y53{bottom:1072.311000px;}
.y1{bottom:1072.792500px;}
.yf8{bottom:1075.273500px;}
.y142{bottom:1077.424500px;}
.yc6{bottom:1081.545000px;}
.y2f{bottom:1084.299000px;}
.y77{bottom:1087.180500px;}
.y141{bottom:1097.748000px;}
.yc5{bottom:1101.868500px;}
.ya0{bottom:1104.972000px;}
.ya1{bottom:1105.050000px;}
.y52{bottom:1105.354500px;}
.y76{bottom:1107.504000px;}
.y2e{bottom:1118.073000px;}
.y2d{bottom:1138.396500px;}
.h26{height:2.391024px;}
.h2e{height:14.741702px;}
.h27{height:23.511024px;}
.h6{height:27.783619px;}
.h18{height:33.187496px;}
.h13{height:33.665702px;}
.h33{height:35.865024px;}
.hb{height:35.865450px;}
.h32{height:38.253024px;}
.h4{height:44.831700px;}
.h23{height:44.836401px;}
.h20{height:47.734950px;}
.h8{height:49.090950px;}
.h3{height:50.498765px;}
.h29{height:52.233024px;}
.h5{height:53.795700px;}
.h9{height:53.798400px;}
.h17{height:56.941496px;}
.h15{height:57.413702px;}
.h16{height:57.419702px;}
.h1c{height:58.906950px;}
.h22{height:59.218950px;}
.ha{height:59.224950px;}
.h34{height:59.619450px;}
.h1d{height:60.211496px;}
.h10{height:60.561024px;}
.h14{height:60.597024px;}
.hc{height:60.689702px;}
.h19{height:60.715496px;}
.h24{height:62.915702px;}
.h7{height:64.557900px;}
.h28{height:66.364950px;}
.h1b{height:66.922950px;}
.h2d{height:68.926950px;}
.h25{height:71.662950px;}
.h2{height:73.027727px;}
.h1e{height:76.779024px;}
.h1a{height:80.407496px;}
.h11{height:93.370950px;}
.h2a{height:93.988950px;}
.h21{height:93.994950px;}
.h30{height:99.634950px;}
.h1f{height:101.221496px;}
.he{height:103.269024px;}
.h12{height:105.495024px;}
.hd{height:106.023024px;}
.h2c{height:108.875702px;}
.h31{height:113.175024px;}
.h2f{height:124.246950px;}
.h36{height:135.381024px;}
.h35{height:135.387024px;}
.h2b{height:138.268950px;}
.hf{height:149.944950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:104.838000px;}
.x68{left:106.086000px;}
.x15{left:108.000000px;}
.xdd{left:109.627500px;}
.x90{left:114.363000px;}
.x5f{left:115.891500px;}
.x8f{left:118.909500px;}
.xde{left:122.166000px;}
.x8b{left:123.454500px;}
.x106{left:124.978500px;}
.x102{left:126.459000px;}
.x1b{left:127.999500px;}
.x4e{left:132.108000px;}
.x1e{left:133.404000px;}
.x2b{left:137.109000px;}
.x84{left:138.427500px;}
.x4f{left:143.164500px;}
.x14{left:147.160500px;}
.x7{left:148.909500px;}
.x46{left:150.363000px;}
.xa8{left:151.602000px;}
.x1{left:153.270000px;}
.x45{left:154.909500px;}
.x1c{left:156.579000px;}
.x1d{left:158.277000px;}
.x44{left:159.454500px;}
.xa9{left:165.730500px;}
.x53{left:169.045500px;}
.x6{left:171.325500px;}
.x103{left:181.267500px;}
.x47{left:184.089000px;}
.xa1{left:187.530000px;}
.x85{left:189.256500px;}
.xaa{left:193.531500px;}
.x2c{left:197.392500px;}
.x54{left:200.013000px;}
.xd4{left:201.379500px;}
.xd5{left:207.679500px;}
.xab{left:209.644500px;}
.x104{left:210.706500px;}
.x27{left:212.223000px;}
.xac{left:215.881500px;}
.xdf{left:217.158000px;}
.x33{left:218.208000px;}
.x52{left:221.718000px;}
.xad{left:223.773000px;}
.x66{left:230.874000px;}
.x23{left:234.510000px;}
.x32{left:236.577000px;}
.x78{left:238.827000px;}
.x105{left:241.405500px;}
.x2{left:243.354000px;}
.x74{left:244.563000px;}
.x24{left:247.692000px;}
.x67{left:250.675500px;}
.xfd{left:253.411500px;}
.x28{left:254.581500px;}
.x8c{left:258.990000px;}
.x3a{left:261.369000px;}
.xc9{left:262.807500px;}
.xe0{left:265.855500px;}
.xbe{left:268.404000px;}
.xf0{left:270.243000px;}
.x34{left:271.513500px;}
.xbf{left:274.894500px;}
.x20{left:275.898000px;}
.x8d{left:277.515000px;}
.x94{left:280.458000px;}
.x79{left:281.719500px;}
.xc0{left:284.644500px;}
.xca{left:286.171500px;}
.x7a{left:288.211500px;}
.xe{left:290.599500px;}
.xe1{left:291.964500px;}
.x75{left:294.526500px;}
.x7b{left:296.103000px;}
.xf{left:297.604500px;}
.xc1{left:299.028000px;}
.xed{left:300.417000px;}
.x7c{left:302.593500px;}
.x38{left:306.454500px;}
.xf1{left:308.031000px;}
.x69{left:310.795500px;}
.xc2{left:314.029500px;}
.xae{left:317.493000px;}
.xee{left:319.813500px;}
.x39{left:321.186000px;}
.x7d{left:322.849500px;}
.xff{left:325.090500px;}
.xef{left:327.444000px;}
.xe2{left:328.512000px;}
.xa6{left:329.524500px;}
.xaf{left:331.621500px;}
.xe3{left:334.984500px;}
.xf2{left:336.442500px;}
.xa7{left:338.892000px;}
.x7e{left:341.464500px;}
.xe4{left:342.876000px;}
.xa3{left:344.662500px;}
.xe5{left:349.348500px;}
.xc3{left:354.147000px;}
.xe6{left:356.446500px;}
.x30{left:358.818000px;}
.xfe{left:359.902500px;}
.xc4{left:362.445000px;}
.x70{left:364.401000px;}
.xf3{left:365.953500px;}
.x76{left:367.822500px;}
.xb0{left:375.535500px;}
.x4{left:381.073500px;}
.x107{left:385.999500px;}
.xb1{left:389.664000px;}
.x3{left:391.857000px;}
.xb2{left:395.901000px;}
.xb3{left:403.173000px;}
.xf8{left:406.159500px;}
.xc5{left:408.324000px;}
.x4a{left:410.172000px;}
.x5{left:413.812500px;}
.xb4{left:415.645500px;}
.x108{left:417.615000px;}
.x77{left:420.664500px;}
.xf9{left:421.696500px;}
.x71{left:424.477500px;}
.x4b{left:428.754000px;}
.x35{left:430.077000px;}
.xb5{left:432.403500px;}
.x7f{left:434.200500px;}
.xf6{left:435.372000px;}
.xfb{left:437.928000px;}
.x98{left:438.937500px;}
.x55{left:441.252000px;}
.x1a{left:442.366500px;}
.x99{left:447.120000px;}
.xb6{left:448.170000px;}
.x95{left:449.527500px;}
.xb7{left:456.063000px;}
.x96{left:458.562000px;}
.x25{left:463.929000px;}
.x9a{left:465.399000px;}
.x31{left:468.511500px;}
.x10{left:469.861500px;}
.x56{left:470.962500px;}
.xf4{left:473.811000px;}
.x11{left:478.416000px;}
.xcb{left:479.566500px;}
.xf5{left:480.892500px;}
.xfc{left:483.358500px;}
.xbd{left:486.934500px;}
.x50{left:489.597000px;}
.xa4{left:492.190500px;}
.x26{left:493.657500px;}
.xcc{left:495.552000px;}
.x3b{left:497.124000px;}
.x10a{left:502.369500px;}
.xcd{left:503.445000px;}
.x51{left:505.315500px;}
.xb8{left:509.544000px;}
.xa5{left:515.010000px;}
.x10b{left:516.348000px;}
.xb9{left:518.154000px;}
.x3c{left:519.397500px;}
.xf7{left:520.821000px;}
.x101{left:522.360000px;}
.xba{left:524.389500px;}
.x72{left:525.835500px;}
.x86{left:527.058000px;}
.xc6{left:530.377500px;}
.xbb{left:532.282500px;}
.x3d{left:534.633000px;}
.x29{left:537.079500px;}
.x73{left:541.648500px;}
.x87{left:542.895000px;}
.x93{left:545.610000px;}
.x8{left:551.506500px;}
.x6d{left:554.140500px;}
.x57{left:555.345000px;}
.x2a{left:556.494000px;}
.x91{left:560.209500px;}
.x6a{left:562.869000px;}
.x9{left:567.180000px;}
.x12{left:568.776000px;}
.x3e{left:569.910000px;}
.x6e{left:571.956000px;}
.x13{left:575.244000px;}
.x6b{left:576.870000px;}
.xe7{left:578.761500px;}
.x3f{left:580.692000px;}
.x58{left:583.476000px;}
.x82{left:585.304500px;}
.xe8{left:586.654500px;}
.x109{left:589.353000px;}
.x6c{left:591.088500px;}
.x83{left:592.402500px;}
.x92{left:594.589500px;}
.xbc{left:595.834500px;}
.x36{left:601.314000px;}
.x8e{left:604.254000px;}
.x59{left:611.275500px;}
.xe9{left:614.266500px;}
.x80{left:616.141500px;}
.x37{left:617.748000px;}
.x40{left:619.329000px;}
.xfa{left:623.491500px;}
.x41{left:625.564500px;}
.xa{left:627.133500px;}
.x60{left:631.608000px;}
.x5a{left:633.625500px;}
.x100{left:636.384000px;}
.xd6{left:638.698500px;}
.xce{left:640.002000px;}
.x16{left:642.414000px;}
.xb{left:644.154000px;}
.x61{left:645.610500px;}
.x5b{left:647.754000px;}
.xc7{left:650.295000px;}
.x62{left:652.026000px;}
.xea{left:654.183000px;}
.xc{left:655.684500px;}
.xc8{left:658.186500px;}
.x17{left:660.654000px;}
.xd{left:662.388000px;}
.x5c{left:667.500000px;}
.xeb{left:668.547000px;}
.x42{left:671.625000px;}
.x18{left:673.128000px;}
.x21{left:676.011000px;}
.xa2{left:677.041500px;}
.x19{left:680.226000px;}
.xd7{left:682.551000px;}
.x5d{left:684.454500px;}
.x4c{left:686.401500px;}
.x63{left:688.303500px;}
.xec{left:689.686500px;}
.x2d{left:690.816000px;}
.x22{left:693.738000px;}
.x9b{left:695.520000px;}
.x88{left:697.552500px;}
.xcf{left:698.689500px;}
.x2e{left:700.782000px;}
.x9c{left:703.759500px;}
.x10c{left:704.908500px;}
.x64{left:707.655000px;}
.x4d{left:709.696500px;}
.x9d{left:711.031500px;}
.xd0{left:713.620500px;}
.x65{left:715.285500px;}
.xd8{left:717.975000px;}
.x6f{left:719.266500px;}
.x9e{left:727.452000px;}
.x89{left:728.773500px;}
.x81{left:730.648500px;}
.x43{left:732.697500px;}
.x48{left:734.581500px;}
.x8a{left:735.873000px;}
.xd9{left:740.160000px;}
.x5e{left:743.404500px;}
.x9f{left:745.731000px;}
.x2f{left:748.821000px;}
.x49{left:752.310000px;}
.xda{left:754.351500px;}
.xd1{left:756.169500px;}
.xdb{left:760.651500px;}
.xd2{left:762.406500px;}
.xa0{left:770.323500px;}
.xdc{left:772.312500px;}
.x97{left:776.680500px;}
.xd3{left:783.633000px;}
@media print{
.vf{vertical-align:-55.792000pt;}
.v9{vertical-align:-54.192000pt;}
.v8{vertical-align:-44.714667pt;}
.v1c{vertical-align:-43.690667pt;}
.v10{vertical-align:-41.114667pt;}
.v24{vertical-align:-37.077333pt;}
.v2c{vertical-align:-34.538667pt;}
.v21{vertical-align:-31.877333pt;}
.v1e{vertical-align:-24.021333pt;}
.v17{vertical-align:-21.114667pt;}
.v1d{vertical-align:-16.805333pt;}
.v15{vertical-align:-14.677333pt;}
.v28{vertical-align:-10.309333pt;}
.v4{vertical-align:-9.008000pt;}
.vb{vertical-align:-2.448000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.232000pt;}
.v11{vertical-align:3.184000pt;}
.v1a{vertical-align:5.658667pt;}
.v1{vertical-align:7.968000pt;}
.v2{vertical-align:9.008000pt;}
.v16{vertical-align:13.616000pt;}
.v19{vertical-align:15.850667pt;}
.v18{vertical-align:17.504000pt;}
.v20{vertical-align:20.064000pt;}
.v7{vertical-align:21.109333pt;}
.v3{vertical-align:24.021333pt;}
.v1f{vertical-align:26.000000pt;}
.vd{vertical-align:30.250667pt;}
.v2a{vertical-align:31.877333pt;}
.v6{vertical-align:39.360000pt;}
.v14{vertical-align:41.109333pt;}
.ve{vertical-align:44.928000pt;}
.v27{vertical-align:49.178667pt;}
.v13{vertical-align:51.706667pt;}
.v22{vertical-align:62.362667pt;}
.v23{vertical-align:64.469333pt;}
.v1b{vertical-align:66.122667pt;}
.v2b{vertical-align:78.309333pt;}
.v25{vertical-align:79.269333pt;}
.v26{vertical-align:83.680000pt;}
.vc{vertical-align:86.042667pt;}
.va{vertical-align:89.669333pt;}
.v5{vertical-align:92.117333pt;}
.v29{vertical-align:98.474667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000446pt;}
.ls1e{letter-spacing:0.000749pt;}
.ls7f{letter-spacing:0.000933pt;}
.ls8b{letter-spacing:0.000942pt;}
.ls52{letter-spacing:0.001908pt;}
.ls9e{letter-spacing:0.001914pt;}
.ls25{letter-spacing:0.001916pt;}
.ls2f{letter-spacing:0.002378pt;}
.ls19{letter-spacing:0.002384pt;}
.ls31{letter-spacing:0.002389pt;}
.ls22{letter-spacing:0.002400pt;}
.ls92{letter-spacing:0.002405pt;}
.ls62{letter-spacing:0.002482pt;}
.ls26{letter-spacing:0.002557pt;}
.ls42{letter-spacing:0.002836pt;}
.ls29{letter-spacing:0.004338pt;}
.ls45{letter-spacing:0.005264pt;}
.ls6d{letter-spacing:0.006082pt;}
.ls98{letter-spacing:0.006711pt;}
.ls90{letter-spacing:0.011565pt;}
.ls7c{letter-spacing:0.012665pt;}
.ls16{letter-spacing:0.012971pt;}
.ls8f{letter-spacing:0.016899pt;}
.ls9c{letter-spacing:0.020131pt;}
.ls81{letter-spacing:0.020292pt;}
.ls6c{letter-spacing:0.024349pt;}
.ls8d{letter-spacing:0.024519pt;}
.ls6b{letter-spacing:0.025521pt;}
.ls5a{letter-spacing:0.058182pt;}
.ls6e{letter-spacing:0.088176pt;}
.ls9b{letter-spacing:0.174546pt;}
.ls9d{letter-spacing:0.232727pt;}
.ls30{letter-spacing:0.290909pt;}
.ls7b{letter-spacing:0.465455pt;}
.ls7d{letter-spacing:0.581819pt;}
.lsa0{letter-spacing:1.232709pt;}
.ls10{letter-spacing:1.629092pt;}
.ls34{letter-spacing:1.803638pt;}
.ls5c{letter-spacing:1.861820pt;}
.ls2c{letter-spacing:2.036365pt;}
.ls3e{letter-spacing:2.084321pt;}
.ls11{letter-spacing:2.094547pt;}
.ls93{letter-spacing:2.142157pt;}
.ls13{letter-spacing:2.210911pt;}
.ls47{letter-spacing:2.449323pt;}
.ls9f{letter-spacing:2.651520pt;}
.ls37{letter-spacing:2.653258pt;}
.ls5b{letter-spacing:2.653383pt;}
.ls91{letter-spacing:2.654767pt;}
.ls9a{letter-spacing:2.654904pt;}
.ls43{letter-spacing:2.655321pt;}
.ls6f{letter-spacing:2.656092pt;}
.ls53{letter-spacing:2.656452pt;}
.ls46{letter-spacing:2.657146pt;}
.ls96{letter-spacing:2.657546pt;}
.ls70{letter-spacing:2.658591pt;}
.ls33{letter-spacing:2.658717pt;}
.ls63{letter-spacing:2.659149pt;}
.ls3d{letter-spacing:2.660654pt;}
.ls5d{letter-spacing:2.676366pt;}
.ls6a{letter-spacing:2.711227pt;}
.ls20{letter-spacing:3.258185pt;}
.ls23{letter-spacing:3.786350pt;}
.ls4c{letter-spacing:4.181251pt;}
.ls17{letter-spacing:4.182775pt;}
.ls21{letter-spacing:5.105323pt;}
.ls1f{letter-spacing:5.294550pt;}
.ls49{letter-spacing:5.317289pt;}
.ls8{letter-spacing:6.291066pt;}
.ls2a{letter-spacing:6.341823pt;}
.ls60{letter-spacing:6.376457pt;}
.ls18{letter-spacing:6.376584pt;}
.ls69{letter-spacing:6.377067pt;}
.ls83{letter-spacing:6.574551pt;}
.ls59{letter-spacing:7.344325pt;}
.ls8c{letter-spacing:7.564647pt;}
.ls88{letter-spacing:7.569980pt;}
.ls2b{letter-spacing:8.012019pt;}
.ls6{letter-spacing:8.087279pt;}
.ls4a{letter-spacing:8.606446pt;}
.ls9{letter-spacing:8.913743pt;}
.ls1b{letter-spacing:9.699251pt;}
.ls24{letter-spacing:9.702082pt;}
.ls8a{letter-spacing:9.714230pt;}
.lsc{letter-spacing:9.716372pt;}
.ls86{letter-spacing:10.328855pt;}
.ls84{letter-spacing:10.334188pt;}
.ls0{letter-spacing:11.810531pt;}
.ls4b{letter-spacing:12.688545pt;}
.ls2{letter-spacing:12.693878pt;}
.lsb{letter-spacing:12.916374pt;}
.ls64{letter-spacing:12.925784pt;}
.ls15{letter-spacing:12.974556pt;}
.lsf{letter-spacing:13.877251pt;}
.ls67{letter-spacing:13.885961pt;}
.ls27{letter-spacing:14.801323pt;}
.ls1d{letter-spacing:14.806656pt;}
.ls68{letter-spacing:14.983467pt;}
.ls48{letter-spacing:15.013289pt;}
.ls35{letter-spacing:15.202591pt;}
.ls8e{letter-spacing:15.583508pt;}
.ls97{letter-spacing:15.589167pt;}
.ls80{letter-spacing:15.591925pt;}
.ls12{letter-spacing:16.116377pt;}
.ls3c{letter-spacing:16.159477pt;}
.ls41{letter-spacing:16.164811pt;}
.ls7{letter-spacing:16.174559pt;}
.lsa2{letter-spacing:16.232741pt;}
.ls7a{letter-spacing:17.454560pt;}
.ls1{letter-spacing:17.799845pt;}
.ls75{letter-spacing:18.210924pt;}
.ls38{letter-spacing:18.385470pt;}
.ls40{letter-spacing:18.813258pt;}
.ls7e{letter-spacing:18.818591pt;}
.ls82{letter-spacing:18.834591pt;}
.lse{letter-spacing:19.083652pt;}
.ls39{letter-spacing:19.200016pt;}
.ls56{letter-spacing:19.258198pt;}
.ls72{letter-spacing:19.306144pt;}
.ls1c{letter-spacing:19.374562pt;}
.ls3{letter-spacing:19.432743pt;}
.ls3a{letter-spacing:19.490925pt;}
.ls36{letter-spacing:19.549107pt;}
.ls74{letter-spacing:19.607289pt;}
.ls57{letter-spacing:19.665471pt;}
.ls55{letter-spacing:19.723653pt;}
.ls51{letter-spacing:19.898198pt;}
.ls14{letter-spacing:21.003654pt;}
.ls94{letter-spacing:22.047975pt;}
.ls32{letter-spacing:22.140822pt;}
.ls79{letter-spacing:22.384545pt;}
.ls54{letter-spacing:22.749110pt;}
.ls2d{letter-spacing:22.807292pt;}
.ls78{letter-spacing:23.098201pt;}
.ls50{letter-spacing:23.156383pt;}
.ls95{letter-spacing:23.469258pt;}
.ls58{letter-spacing:23.504325pt;}
.ls3f{letter-spacing:23.561987pt;}
.ls2e{letter-spacing:25.716385pt;}
.ls77{letter-spacing:25.719925pt;}
.ls1a{letter-spacing:25.807684pt;}
.ls87{letter-spacing:26.007294pt;}
.ls4f{letter-spacing:26.938204pt;}
.ls61{letter-spacing:27.520023pt;}
.ls3b{letter-spacing:28.853878pt;}
.ls5{letter-spacing:29.090933pt;}
.ls4e{letter-spacing:29.614570pt;}
.ls4d{letter-spacing:31.883663pt;}
.ls66{letter-spacing:32.290936pt;}
.ls65{letter-spacing:32.327816pt;}
.ls85{letter-spacing:32.669258pt;}
.ls76{letter-spacing:35.755211pt;}
.ls71{letter-spacing:36.076019pt;}
.ls89{letter-spacing:46.445972pt;}
.ls28{letter-spacing:46.710082pt;}
.ls5f{letter-spacing:51.401066pt;}
.ls5e{letter-spacing:67.898238pt;}
.ls73{letter-spacing:79.602591pt;}
.lsa{letter-spacing:126.080105pt;}
.ls44{letter-spacing:131.018144pt;}
.lsa1{letter-spacing:404.945792pt;}
.ls99{letter-spacing:612.331129pt;}
.ws71{word-spacing:-78.080065pt;}
.ws42{word-spacing:-58.181867pt;}
.ws4d{word-spacing:-42.066082pt;}
.ws56{word-spacing:-42.007308pt;}
.ws46{word-spacing:-37.899668pt;}
.ws83{word-spacing:-34.373847pt;}
.ws54{word-spacing:-33.454573pt;}
.ws44{word-spacing:-32.337481pt;}
.ws3a{word-spacing:-29.736752pt;}
.ws43{word-spacing:-29.521250pt;}
.ws1a{word-spacing:-29.090933pt;}
.wsa6{word-spacing:-29.079297pt;}
.ws45{word-spacing:-28.241478pt;}
.ws40{word-spacing:-28.183296pt;}
.ws90{word-spacing:-27.636387pt;}
.ws6b{word-spacing:-26.589113pt;}
.wsa2{word-spacing:-23.272692pt;}
.ws4b{word-spacing:-21.783291pt;}
.ws68{word-spacing:-21.725109pt;}
.ws48{word-spacing:-19.514198pt;}
.ws67{word-spacing:-16.896014pt;}
.ws49{word-spacing:-16.162923pt;}
.ws63{word-spacing:-15.883650pt;}
.ws77{word-spacing:-15.127285pt;}
.ws33{word-spacing:-14.487285pt;}
.ws0{word-spacing:-14.378302pt;}
.ws3b{word-spacing:-14.346200pt;}
.ws1d{word-spacing:-14.021830pt;}
.wsaa{word-spacing:-13.963648pt;}
.ws16{word-spacing:-13.905466pt;}
.ws3{word-spacing:-13.867939pt;}
.ws76{word-spacing:-13.853102pt;}
.ws64{word-spacing:-13.789102pt;}
.wsac{word-spacing:-13.579648pt;}
.ws3d{word-spacing:-13.556375pt;}
.ws2c{word-spacing:-13.381829pt;}
.ws36{word-spacing:-13.032738pt;}
.ws10{word-spacing:-12.645860pt;}
.wsa1{word-spacing:-12.543875pt;}
.ws7{word-spacing:-12.486459pt;}
.ws8d{word-spacing:-12.334556pt;}
.ws17{word-spacing:-12.276374pt;}
.wsb2{word-spacing:-12.218192pt;}
.ws2a{word-spacing:-11.985465pt;}
.ws18{word-spacing:-11.955200pt;}
.ws3e{word-spacing:-11.810919pt;}
.ws37{word-spacing:-11.694555pt;}
.ws2d{word-spacing:-11.636373pt;}
.ws88{word-spacing:-11.578191pt;}
.ws24{word-spacing:-11.520010pt;}
.ws23{word-spacing:-11.461828pt;}
.ws7a{word-spacing:-11.345464pt;}
.ws53{word-spacing:-11.170918pt;}
.wsb3{word-spacing:-11.118555pt;}
.ws8a{word-spacing:-11.112737pt;}
.ws26{word-spacing:-10.996373pt;}
.ws21{word-spacing:-10.938191pt;}
.ws92{word-spacing:-10.821827pt;}
.ws28{word-spacing:-10.647282pt;}
.ws2b{word-spacing:-10.414554pt;}
.wsf{word-spacing:-10.361104pt;}
.wsaf{word-spacing:-10.298190pt;}
.ws25{word-spacing:-10.123645pt;}
.ws30{word-spacing:-10.065463pt;}
.ws1f{word-spacing:-10.007281pt;}
.ws62{word-spacing:-9.949099pt;}
.ws38{word-spacing:-9.890917pt;}
.ws52{word-spacing:-9.832735pt;}
.ws1b{word-spacing:-9.774554pt;}
.ws15{word-spacing:-9.716372pt;}
.ws19{word-spacing:-9.658190pt;}
.ws60{word-spacing:-9.600008pt;}
.ws27{word-spacing:-9.541826pt;}
.ws22{word-spacing:-9.483644pt;}
.ws3c{word-spacing:-9.425462pt;}
.ws1e{word-spacing:-9.367281pt;}
.ws31{word-spacing:-9.314917pt;}
.ws47{word-spacing:-9.309099pt;}
.ws29{word-spacing:-9.250917pt;}
.ws11{word-spacing:-9.192159pt;}
.ws7b{word-spacing:-9.140371pt;}
.ws39{word-spacing:-9.082189pt;}
.wsb{word-spacing:-9.032757pt;}
.ws78{word-spacing:-9.018189pt;}
.wsb1{word-spacing:-8.965826pt;}
.wsc{word-spacing:-8.926490pt;}
.ws74{word-spacing:-8.907644pt;}
.wsa{word-spacing:-8.873356pt;}
.ws6{word-spacing:-8.820222pt;}
.ws5f{word-spacing:-8.791280pt;}
.ws9a{word-spacing:-8.785462pt;}
.ws5{word-spacing:-8.767088pt;}
.wsab{word-spacing:-8.727280pt;}
.ws9{word-spacing:-8.713954pt;}
.ws82{word-spacing:-8.669098pt;}
.ws8{word-spacing:-8.660820pt;}
.ws3f{word-spacing:-8.384007pt;}
.ws1c{word-spacing:-8.378189pt;}
.ws65{word-spacing:-8.320007pt;}
.ws5b{word-spacing:-8.254782pt;}
.ws59{word-spacing:-8.249448pt;}
.ws9b{word-spacing:-8.145461pt;}
.wsb4{word-spacing:-8.029098pt;}
.wsb0{word-spacing:-7.970916pt;}
.ws72{word-spacing:-7.854552pt;}
.ws9c{word-spacing:-7.738188pt;}
.ws97{word-spacing:-7.680006pt;}
.wse{word-spacing:-7.651277pt;}
.ws81{word-spacing:-7.563643pt;}
.wsae{word-spacing:-7.505461pt;}
.ws93{word-spacing:-7.447279pt;}
.ws9d{word-spacing:-7.162188pt;}
.ws98{word-spacing:-7.104006pt;}
.ws2f{word-spacing:-6.981824pt;}
.ws5c{word-spacing:-6.923642pt;}
.ws14{word-spacing:-6.865460pt;}
.ws96{word-spacing:-6.516369pt;}
.ws94{word-spacing:-6.458187pt;}
.ws9e{word-spacing:-6.446551pt;}
.ws61{word-spacing:-6.283642pt;}
.wsd{word-spacing:-6.269796pt;}
.ws99{word-spacing:-6.225460pt;}
.ws87{word-spacing:-6.050914pt;}
.ws6d{word-spacing:-6.016005pt;}
.ws85{word-spacing:-5.992732pt;}
.ws70{word-spacing:-5.934550pt;}
.ws32{word-spacing:-5.818187pt;}
.ws4a{word-spacing:-5.760005pt;}
.ws7e{word-spacing:-5.352732pt;}
.ws7d{word-spacing:-5.294550pt;}
.ws13{word-spacing:-5.236368pt;}
.ws7c{word-spacing:-5.120004pt;}
.ws2{word-spacing:-4.516379pt;}
.ws8f{word-spacing:-4.363640pt;}
.ws6e{word-spacing:-3.781821pt;}
.ws66{word-spacing:-3.607276pt;}
.ws5e{word-spacing:-3.374548pt;}
.wsa0{word-spacing:-3.258185pt;}
.ws79{word-spacing:-3.246548pt;}
.ws57{word-spacing:-3.200003pt;}
.ws5d{word-spacing:-3.147639pt;}
.ws7f{word-spacing:-2.967275pt;}
.ws80{word-spacing:-2.909093pt;}
.ws2e{word-spacing:-2.734548pt;}
.ws5a{word-spacing:-2.476127pt;}
.ws58{word-spacing:-2.449457pt;}
.ws4{word-spacing:-2.391024pt;}
.ws6c{word-spacing:-2.152729pt;}
.ws75{word-spacing:-1.984002pt;}
.ws91{word-spacing:-1.629092pt;}
.ws34{word-spacing:-1.163637pt;}
.ws35{word-spacing:-0.989092pt;}
.wsa5{word-spacing:-0.814546pt;}
.ws89{word-spacing:-0.279273pt;}
.ws41{word-spacing:-0.058182pt;}
.ws4f{word-spacing:-0.046545pt;}
.ws20{word-spacing:0.000000pt;}
.ws50{word-spacing:0.006502pt;}
.ws4c{word-spacing:0.011636pt;}
.ws55{word-spacing:0.302546pt;}
.ws84{word-spacing:0.523637pt;}
.ws6a{word-spacing:1.280001pt;}
.ws73{word-spacing:2.850911pt;}
.ws8b{word-spacing:2.978912pt;}
.wsa3{word-spacing:3.037164pt;}
.wsa7{word-spacing:3.677094pt;}
.ws95{word-spacing:6.469824pt;}
.wsad{word-spacing:7.854552pt;}
.ws86{word-spacing:8.436371pt;}
.ws6f{word-spacing:15.127285pt;}
.ws1{word-spacing:20.722347pt;}
.ws69{word-spacing:23.563656pt;}
.wsa4{word-spacing:23.738202pt;}
.ws51{word-spacing:25.890931pt;}
.wsa9{word-spacing:27.212974pt;}
.wsa8{word-spacing:31.463641pt;}
.ws9f{word-spacing:33.676748pt;}
.ws8e{word-spacing:42.018944pt;}
.ws12{word-spacing:43.038600pt;}
.ws8c{word-spacing:88.122255pt;}
.ws4e{word-spacing:88.180437pt;}
._2b{margin-left:-34.850938pt;}
._28{margin-left:-31.301844pt;}
._26{margin-left:-19.898198pt;}
._29{margin-left:-17.709518pt;}
._1d{margin-left:-15.639465pt;}
._2e{margin-left:-12.916374pt;}
._2{margin-left:-7.253422pt;}
._10{margin-left:-5.993540pt;}
._3{margin-left:-4.498993pt;}
._14{margin-left:-3.440065pt;}
._0{margin-left:-2.387202pt;}
._5{margin-left:-1.292598pt;}
._4{width:1.721549pt;}
._19{width:3.044446pt;}
._1c{width:4.130913pt;}
._15{width:5.074746pt;}
._1e{width:6.341823pt;}
._27{width:7.805450pt;}
._b{width:13.017797pt;}
._2f{width:14.791708pt;}
._17{width:15.730781pt;}
._13{width:16.699941pt;}
._c{width:18.274228pt;}
._1f{width:19.267278pt;}
._11{width:20.249035pt;}
._23{width:22.110855pt;}
._6{width:23.272634pt;}
._d{width:25.254421pt;}
._8{width:26.488713pt;}
._21{width:27.480830pt;}
._a{width:28.529007pt;}
._2c{width:30.314498pt;}
._12{width:31.303590pt;}
._9{width:32.208865pt;}
._2d{width:33.107228pt;}
._e{width:35.178465pt;}
._1{width:37.277079pt;}
._16{width:38.170477pt;}
._20{width:40.163648pt;}
._7{width:43.569771pt;}
._25{width:49.979969pt;}
._2a{width:56.218969pt;}
._18{width:57.601794pt;}
._22{width:58.721592pt;}
._1b{width:60.220786pt;}
._24{width:65.216347pt;}
._f{width:71.731200pt;}
._1a{width:86.077200pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:56.149333pt;}
.y11c{bottom:88.694667pt;}
.y2b{bottom:96.000000pt;}
.y11b{bottom:104.117333pt;}
.y119{bottom:105.396000pt;}
.y11a{bottom:110.892000pt;}
.y2a{bottom:114.065333pt;}
.y140{bottom:115.565333pt;}
.yc4{bottom:130.304000pt;}
.y29{bottom:132.130667pt;}
.y118{bottom:144.920000pt;}
.y13f{bottom:145.585333pt;}
.y75{bottom:150.197333pt;}
.y51{bottom:150.797333pt;}
.yf7{bottom:158.456000pt;}
.y28{bottom:159.590667pt;}
.yc3{bottom:162.981333pt;}
.y50{bottom:168.864000pt;}
.y117{bottom:172.380000pt;}
.y13e{bottom:175.606667pt;}
.yf6{bottom:176.521333pt;}
.y74{bottom:180.896000pt;}
.y4f{bottom:186.929333pt;}
.yf5{bottom:194.586667pt;}
.yc2{bottom:195.658667pt;}
.y9f{bottom:198.268000pt;}
.y27{bottom:198.322667pt;}
.y73{bottom:198.961333pt;}
.y13d{bottom:205.626667pt;}
.y116{bottom:210.697333pt;}
.y9d{bottom:214.081333pt;}
.y9e{bottom:214.150667pt;}
.y9c{bottom:216.333333pt;}
.y26{bottom:216.389333pt;}
.y4e{bottom:219.398667pt;}
.y72{bottom:221.238667pt;}
.yc1{bottom:223.118667pt;}
.yf4{bottom:227.264000pt;}
.y115{bottom:228.762667pt;}
.y13c{bottom:233.086667pt;}
.y9b{bottom:234.398667pt;}
.y25{bottom:234.454667pt;}
.y71{bottom:239.304000pt;}
.y9a{bottom:250.282667pt;}
.y99{bottom:252.464000pt;}
.y24{bottom:252.520000pt;}
.y70{bottom:257.369333pt;}
.yf3{bottom:259.941333pt;}
.yc0{bottom:260.137333pt;}
.y114{bottom:261.232000pt;}
.y4d{bottom:265.228000pt;}
.y22{bottom:268.333333pt;}
.y23{bottom:268.404000pt;}
.y13b{bottom:268.657333pt;}
.y21{bottom:270.585333pt;}
.ybf{bottom:276.228000pt;}
.yf2{bottom:278.006667pt;}
.y13a{bottom:278.634667pt;}
.y6f{bottom:279.646667pt;}
.ybe{bottom:280.744000pt;}
.y98{bottom:282.949333pt;}
.y4c{bottom:283.293333pt;}
.y20{bottom:288.650667pt;}
.y97{bottom:292.928000pt;}
.ybd{bottom:300.752000pt;}
.y4b{bottom:301.358667pt;}
.y6e{bottom:301.924000pt;}
.yf1{bottom:305.466667pt;}
.y113{bottom:306.428000pt;}
.y139{bottom:312.193333pt;}
.y15f{bottom:313.608000pt;}
.y1f{bottom:316.110667pt;}
.ybc{bottom:318.817333pt;}
.y4a{bottom:319.424000pt;}
.y138{bottom:322.170667pt;}
.y6d{bottom:324.200000pt;}
.y112{bottom:324.494667pt;}
.y15e{bottom:331.674667pt;}
.y96{bottom:332.445333pt;}
.y49{bottom:337.490667pt;}
.yf0{bottom:338.466667pt;}
.y111{bottom:342.560000pt;}
.ybb{bottom:346.277333pt;}
.y6c{bottom:353.118667pt;}
.y137{bottom:353.152000pt;}
.y135{bottom:354.066667pt;}
.y1e{bottom:354.842667pt;}
.y110{bottom:360.625333pt;}
.y15d{bottom:361.694667pt;}
.y134{bottom:363.129333pt;}
.y6b{bottom:371.185333pt;}
.y1d{bottom:372.909333pt;}
.y136{bottom:372.969333pt;}
.y94{bottom:374.118667pt;}
.y95{bottom:374.420000pt;}
.y48{bottom:375.909333pt;}
.y10f{bottom:378.690667pt;}
.y15c{bottom:379.760000pt;}
.yef{bottom:384.296000pt;}
.yba{bottom:385.226667pt;}
.y1c{bottom:390.974667pt;}
.y47{bottom:393.974667pt;}
.y10e{bottom:396.756000pt;}
.y15b{bottom:397.826667pt;}
.yee{bottom:400.180000pt;}
.y133{bottom:401.677333pt;}
.y6a{bottom:401.884000pt;}
.yed{bottom:402.362667pt;}
.yb9{bottom:403.292000pt;}
.y1b{bottom:409.040000pt;}
.y46{bottom:412.040000pt;}
.y10d{bottom:414.822667pt;}
.y93{bottom:415.385333pt;}
.yec{bottom:418.176000pt;}
.y132{bottom:419.742667pt;}
.yeb{bottom:420.428000pt;}
.yb8{bottom:421.358667pt;}
.y1a{bottom:427.105333pt;}
.y15a{bottom:427.846667pt;}
.y69{bottom:429.344000pt;}
.y45{bottom:430.105333pt;}
.y10c{bottom:432.888000pt;}
.yea{bottom:438.493333pt;}
.yb7{bottom:439.424000pt;}
.y91{bottom:442.673333pt;}
.y159{bottom:445.912000pt;}
.y131{bottom:447.202667pt;}
.y44{bottom:448.170667pt;}
.y92{bottom:454.818667pt;}
.yb6{bottom:457.489333pt;}
.y90{bottom:458.414667pt;}
.y19{bottom:459.574667pt;}
.y43{bottom:466.237333pt;}
.y68{bottom:467.774667pt;}
.y10b{bottom:470.673333pt;}
.y158{bottom:475.933333pt;}
.ye9{bottom:476.912000pt;}
.y42{bottom:484.302667pt;}
.y67{bottom:485.840000pt;}
.y130{bottom:486.152000pt;}
.y10a{bottom:488.738667pt;}
.yb5{bottom:490.892000pt;}
.y8f{bottom:491.092000pt;}
.y157{bottom:493.998667pt;}
.ye8{bottom:494.977333pt;}
.yb4{bottom:495.908000pt;}
.y66{bottom:503.905333pt;}
.y12f{bottom:504.217333pt;}
.y18{bottom:505.186667pt;}
.y109{bottom:506.805333pt;}
.y8e{bottom:509.157333pt;}
.ye6{bottom:510.792000pt;}
.ye7{bottom:510.861333pt;}
.y41{bottom:511.761333pt;}
.ye4{bottom:513.042667pt;}
.ye3{bottom:513.044000pt;}
.ye5{bottom:518.321333pt;}
.y17{bottom:521.126667pt;}
.y12e{bottom:522.284000pt;}
.y156{bottom:526.468000pt;}
.yb3{bottom:528.585333pt;}
.ye1{bottom:531.109333pt;}
.y108{bottom:534.264000pt;}
.ye2{bottom:536.386667pt;}
.y8d{bottom:536.617333pt;}
.y16{bottom:537.066667pt;}
.y12d{bottom:540.349333pt;}
.y65{bottom:541.805333pt;}
.yb2{bottom:546.650667pt;}
.ydf{bottom:549.174667pt;}
.y40{bottom:550.712000pt;}
.y15{bottom:553.006667pt;}
.ye0{bottom:554.453333pt;}
.yb1{bottom:564.717333pt;}
.y12c{bottom:567.808000pt;}
.y64{bottom:568.742667pt;}
.y3f{bottom:568.777333pt;}
.y14{bottom:568.948000pt;}
.y155{bottom:572.297333pt;}
.y107{bottom:572.581333pt;}
.y63{bottom:574.994667pt;}
.y8c{bottom:575.566667pt;}
.y13{bottom:584.888000pt;}
.y62{bottom:584.972000pt;}
.y3e{bottom:586.842667pt;}
.yde{bottom:587.593333pt;}
.y154{bottom:590.362667pt;}
.y106{bottom:590.646667pt;}
.yb0{bottom:592.176000pt;}
.y8b{bottom:593.633333pt;}
.y12b{bottom:600.809333pt;}
.y12{bottom:600.828000pt;}
.y153{bottom:608.428000pt;}
.y105{bottom:608.713333pt;}
.y89{bottom:611.698667pt;}
.y11{bottom:616.768000pt;}
.y3d{bottom:616.864000pt;}
.y8a{bottom:616.977333pt;}
.ydd{bottom:620.270667pt;}
.y61{bottom:621.184000pt;}
.y152{bottom:626.494667pt;}
.y88{bottom:629.764000pt;}
.yaf{bottom:631.126667pt;}
.y10{bottom:632.708000pt;}
.y3c{bottom:634.929333pt;}
.ydb{bottom:636.085333pt;}
.ydc{bottom:636.154667pt;}
.yda{bottom:638.336000pt;}
.y104{bottom:638.692000pt;}
.y151{bottom:644.560000pt;}
.y12a{bottom:646.638667pt;}
.y87{bottom:647.829333pt;}
.yf{bottom:648.648000pt;}
.yae{bottom:649.192000pt;}
.yd7{bottom:654.032000pt;}
.yd8{bottom:654.150667pt;}
.yd9{bottom:654.220000pt;}
.yd5{bottom:656.401333pt;}
.y103{bottom:656.757333pt;}
.y60{bottom:659.852000pt;}
.y5f{bottom:660.160000pt;}
.yd6{bottom:661.680000pt;}
.y150{bottom:662.625333pt;}
.ye{bottom:664.589333pt;}
.y129{bottom:664.704000pt;}
.y3b{bottom:664.950667pt;}
.y86{bottom:665.894667pt;}
.yad{bottom:667.257333pt;}
.yd4{bottom:674.468000pt;}
.y102{bottom:678.793333pt;}
.yd{bottom:680.529333pt;}
.y14f{bottom:680.690667pt;}
.y128{bottom:682.769333pt;}
.y3a{bottom:683.016000pt;}
.y85{bottom:683.961333pt;}
.yac{bottom:685.322667pt;}
.yc{bottom:696.469333pt;}
.y101{bottom:696.858667pt;}
.y14e{bottom:698.756000pt;}
.y5e{bottom:700.025333pt;}
.yb{bottom:712.409333pt;}
.yd3{bottom:712.886667pt;}
.y39{bottom:713.036000pt;}
.y14d{bottom:716.822667pt;}
.yab{bottom:717.792000pt;}
.y100{bottom:718.896000pt;}
.y127{bottom:721.188000pt;}
.y84{bottom:722.380000pt;}
.ya{bottom:726.357333pt;}
.y9{bottom:728.349333pt;}
.y38{bottom:731.102667pt;}
.y14c{bottom:734.888000pt;}
.y5c{bottom:739.858667pt;}
.yd2{bottom:740.345333pt;}
.y83{bottom:740.445333pt;}
.y5d{bottom:740.470667pt;}
.y8{bottom:744.289333pt;}
.yff{bottom:747.574667pt;}
.y14b{bottom:752.953333pt;}
.y125{bottom:753.240000pt;}
.y82{bottom:756.329333pt;}
.y81{bottom:758.510667pt;}
.y7{bottom:760.230667pt;}
.y37{bottom:761.122667pt;}
.yaa{bottom:763.621333pt;}
.yfe{bottom:765.640000pt;}
.y124{bottom:766.252000pt;}
.y126{bottom:769.889333pt;}
.y14a{bottom:771.018667pt;}
.y6{bottom:776.170667pt;}
.yd1{bottom:776.562667pt;}
.y5b{bottom:778.882667pt;}
.ya9{bottom:781.686667pt;}
.yd0{bottom:786.540000pt;}
.y36{bottom:788.582667pt;}
.y149{bottom:789.084000pt;}
.y7f{bottom:792.553333pt;}
.y80{bottom:792.966667pt;}
.yfd{bottom:793.098667pt;}
.y7e{bottom:796.929333pt;}
.y5a{bottom:796.948000pt;}
.y123{bottom:798.930667pt;}
.y5{bottom:799.029333pt;}
.y148{bottom:807.150667pt;}
.ycf{bottom:811.445333pt;}
.ya8{bottom:811.708000pt;}
.y7d{bottom:814.994667pt;}
.y122{bottom:816.996000pt;}
.y59{bottom:824.406667pt;}
.y147{bottom:825.216000pt;}
.ycd{bottom:827.258667pt;}
.yce{bottom:827.329333pt;}
.y35{bottom:827.532000pt;}
.ycc{bottom:829.510667pt;}
.ya7{bottom:829.773333pt;}
.yfc{bottom:831.416000pt;}
.y7b{bottom:833.061333pt;}
.y7c{bottom:838.338667pt;}
.y146{bottom:843.281333pt;}
.y121{bottom:844.454667pt;}
.y34{bottom:845.598667pt;}
.yfb{bottom:849.482667pt;}
.y4{bottom:851.342667pt;}
.ycb{bottom:856.970667pt;}
.ya6{bottom:859.794667pt;}
.y58{bottom:862.837333pt;}
.y33{bottom:863.664000pt;}
.y7a{bottom:871.480000pt;}
.y145{bottom:875.750667pt;}
.ya5{bottom:877.860000pt;}
.y57{bottom:880.902667pt;}
.yfa{bottom:881.952000pt;}
.y120{bottom:883.405333pt;}
.y3{bottom:883.954667pt;}
.y79{bottom:889.545333pt;}
.yca{bottom:893.186667pt;}
.y32{bottom:897.669333pt;}
.y56{bottom:898.969333pt;}
.y11f{bottom:901.470667pt;}
.yc9{bottom:903.164000pt;}
.ya4{bottom:907.880000pt;}
.y31{bottom:915.734667pt;}
.y55{bottom:917.034667pt;}
.y144{bottom:921.580000pt;}
.y2{bottom:924.369333pt;}
.yc8{bottom:925.241333pt;}
.yf9{bottom:927.148000pt;}
.y78{bottom:927.964000pt;}
.ya3{bottom:931.500000pt;}
.y54{bottom:935.100000pt;}
.y143{bottom:939.645333pt;}
.ya2{bottom:941.477333pt;}
.yc7{bottom:943.306667pt;}
.y11d{bottom:943.538667pt;}
.y11e{bottom:943.840000pt;}
.y30{bottom:945.756000pt;}
.y53{bottom:953.165333pt;}
.y1{bottom:953.593333pt;}
.yf8{bottom:955.798667pt;}
.y142{bottom:957.710667pt;}
.yc6{bottom:961.373333pt;}
.y2f{bottom:963.821333pt;}
.y77{bottom:966.382667pt;}
.y141{bottom:975.776000pt;}
.yc5{bottom:979.438667pt;}
.ya0{bottom:982.197333pt;}
.ya1{bottom:982.266667pt;}
.y52{bottom:982.537333pt;}
.y76{bottom:984.448000pt;}
.y2e{bottom:993.842667pt;}
.y2d{bottom:1011.908000pt;}
.h26{height:2.125355pt;}
.h2e{height:13.103735pt;}
.h27{height:20.898688pt;}
.h6{height:24.696550pt;}
.h18{height:29.499997pt;}
.h13{height:29.925069pt;}
.h33{height:31.880021pt;}
.hb{height:31.880400pt;}
.h32{height:34.002688pt;}
.h4{height:39.850400pt;}
.h23{height:39.854579pt;}
.h20{height:42.431067pt;}
.h8{height:43.636400pt;}
.h3{height:44.887791pt;}
.h29{height:46.429355pt;}
.h5{height:47.818400pt;}
.h9{height:47.820800pt;}
.h17{height:50.614663pt;}
.h15{height:51.034402pt;}
.h16{height:51.039735pt;}
.h1c{height:52.361733pt;}
.h22{height:52.639067pt;}
.ha{height:52.644400pt;}
.h34{height:52.995067pt;}
.h1d{height:53.521330pt;}
.h10{height:53.832021pt;}
.h14{height:53.864021pt;}
.hc{height:53.946402pt;}
.h19{height:53.969330pt;}
.h24{height:55.925069pt;}
.h7{height:57.384800pt;}
.h28{height:58.991067pt;}
.h1b{height:59.487067pt;}
.h2d{height:61.268400pt;}
.h25{height:63.700400pt;}
.h2{height:64.913535pt;}
.h1e{height:68.248021pt;}
.h1a{height:71.473330pt;}
.h11{height:82.996400pt;}
.h2a{height:83.545733pt;}
.h21{height:83.551067pt;}
.h30{height:88.564400pt;}
.h1f{height:89.974663pt;}
.he{height:91.794688pt;}
.h12{height:93.773355pt;}
.hd{height:94.242688pt;}
.h2c{height:96.778402pt;}
.h31{height:100.600021pt;}
.h2f{height:110.441733pt;}
.h36{height:120.338688pt;}
.h35{height:120.344021pt;}
.h2b{height:122.905733pt;}
.hf{height:133.284400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:93.189333pt;}
.x68{left:94.298667pt;}
.x15{left:96.000000pt;}
.xdd{left:97.446667pt;}
.x90{left:101.656000pt;}
.x5f{left:103.014667pt;}
.x8f{left:105.697333pt;}
.xde{left:108.592000pt;}
.x8b{left:109.737333pt;}
.x106{left:111.092000pt;}
.x102{left:112.408000pt;}
.x1b{left:113.777333pt;}
.x4e{left:117.429333pt;}
.x1e{left:118.581333pt;}
.x2b{left:121.874667pt;}
.x84{left:123.046667pt;}
.x4f{left:127.257333pt;}
.x14{left:130.809333pt;}
.x7{left:132.364000pt;}
.x46{left:133.656000pt;}
.xa8{left:134.757333pt;}
.x1{left:136.240000pt;}
.x45{left:137.697333pt;}
.x1c{left:139.181333pt;}
.x1d{left:140.690667pt;}
.x44{left:141.737333pt;}
.xa9{left:147.316000pt;}
.x53{left:150.262667pt;}
.x6{left:152.289333pt;}
.x103{left:161.126667pt;}
.x47{left:163.634667pt;}
.xa1{left:166.693333pt;}
.x85{left:168.228000pt;}
.xaa{left:172.028000pt;}
.x2c{left:175.460000pt;}
.x54{left:177.789333pt;}
.xd4{left:179.004000pt;}
.xd5{left:184.604000pt;}
.xab{left:186.350667pt;}
.x104{left:187.294667pt;}
.x27{left:188.642667pt;}
.xac{left:191.894667pt;}
.xdf{left:193.029333pt;}
.x33{left:193.962667pt;}
.x52{left:197.082667pt;}
.xad{left:198.909333pt;}
.x66{left:205.221333pt;}
.x23{left:208.453333pt;}
.x32{left:210.290667pt;}
.x78{left:212.290667pt;}
.x105{left:214.582667pt;}
.x2{left:216.314667pt;}
.x74{left:217.389333pt;}
.x24{left:220.170667pt;}
.x67{left:222.822667pt;}
.xfd{left:225.254667pt;}
.x28{left:226.294667pt;}
.x8c{left:230.213333pt;}
.x3a{left:232.328000pt;}
.xc9{left:233.606667pt;}
.xe0{left:236.316000pt;}
.xbe{left:238.581333pt;}
.xf0{left:240.216000pt;}
.x34{left:241.345333pt;}
.xbf{left:244.350667pt;}
.x20{left:245.242667pt;}
.x8d{left:246.680000pt;}
.x94{left:249.296000pt;}
.x79{left:250.417333pt;}
.xc0{left:253.017333pt;}
.xca{left:254.374667pt;}
.x7a{left:256.188000pt;}
.xe{left:258.310667pt;}
.xe1{left:259.524000pt;}
.x75{left:261.801333pt;}
.x7b{left:263.202667pt;}
.xf{left:264.537333pt;}
.xc1{left:265.802667pt;}
.xed{left:267.037333pt;}
.x7c{left:268.972000pt;}
.x38{left:272.404000pt;}
.xf1{left:273.805333pt;}
.x69{left:276.262667pt;}
.xc2{left:279.137333pt;}
.xae{left:282.216000pt;}
.xee{left:284.278667pt;}
.x39{left:285.498667pt;}
.x7d{left:286.977333pt;}
.xff{left:288.969333pt;}
.xef{left:291.061333pt;}
.xe2{left:292.010667pt;}
.xa6{left:292.910667pt;}
.xaf{left:294.774667pt;}
.xe3{left:297.764000pt;}
.xf2{left:299.060000pt;}
.xa7{left:301.237333pt;}
.x7e{left:303.524000pt;}
.xe4{left:304.778667pt;}
.xa3{left:306.366667pt;}
.xe5{left:310.532000pt;}
.xc3{left:314.797333pt;}
.xe6{left:316.841333pt;}
.x30{left:318.949333pt;}
.xfe{left:319.913333pt;}
.xc4{left:322.173333pt;}
.x70{left:323.912000pt;}
.xf3{left:325.292000pt;}
.x76{left:326.953333pt;}
.xb0{left:333.809333pt;}
.x4{left:338.732000pt;}
.x107{left:343.110667pt;}
.xb1{left:346.368000pt;}
.x3{left:348.317333pt;}
.xb2{left:351.912000pt;}
.xb3{left:358.376000pt;}
.xf8{left:361.030667pt;}
.xc5{left:362.954667pt;}
.x4a{left:364.597333pt;}
.x5{left:367.833333pt;}
.xb4{left:369.462667pt;}
.x108{left:371.213333pt;}
.x77{left:373.924000pt;}
.xf9{left:374.841333pt;}
.x71{left:377.313333pt;}
.x4b{left:381.114667pt;}
.x35{left:382.290667pt;}
.xb5{left:384.358667pt;}
.x7f{left:385.956000pt;}
.xf6{left:386.997333pt;}
.xfb{left:389.269333pt;}
.x98{left:390.166667pt;}
.x55{left:392.224000pt;}
.x1a{left:393.214667pt;}
.x99{left:397.440000pt;}
.xb6{left:398.373333pt;}
.x95{left:399.580000pt;}
.xb7{left:405.389333pt;}
.x96{left:407.610667pt;}
.x25{left:412.381333pt;}
.x9a{left:413.688000pt;}
.x31{left:416.454667pt;}
.x10{left:417.654667pt;}
.x56{left:418.633333pt;}
.xf4{left:421.165333pt;}
.x11{left:425.258667pt;}
.xcb{left:426.281333pt;}
.xf5{left:427.460000pt;}
.xfc{left:429.652000pt;}
.xbd{left:432.830667pt;}
.x50{left:435.197333pt;}
.xa4{left:437.502667pt;}
.x26{left:438.806667pt;}
.xcc{left:440.490667pt;}
.x3b{left:441.888000pt;}
.x10a{left:446.550667pt;}
.xcd{left:447.506667pt;}
.x51{left:449.169333pt;}
.xb8{left:452.928000pt;}
.xa5{left:457.786667pt;}
.x10b{left:458.976000pt;}
.xb9{left:460.581333pt;}
.x3c{left:461.686667pt;}
.xf7{left:462.952000pt;}
.x101{left:464.320000pt;}
.xba{left:466.124000pt;}
.x72{left:467.409333pt;}
.x86{left:468.496000pt;}
.xc6{left:471.446667pt;}
.xbb{left:473.140000pt;}
.x3d{left:475.229333pt;}
.x29{left:477.404000pt;}
.x73{left:481.465333pt;}
.x87{left:482.573333pt;}
.x93{left:484.986667pt;}
.x8{left:490.228000pt;}
.x6d{left:492.569333pt;}
.x57{left:493.640000pt;}
.x2a{left:494.661333pt;}
.x91{left:497.964000pt;}
.x6a{left:500.328000pt;}
.x9{left:504.160000pt;}
.x12{left:505.578667pt;}
.x3e{left:506.586667pt;}
.x6e{left:508.405333pt;}
.x13{left:511.328000pt;}
.x6b{left:512.773333pt;}
.xe7{left:514.454667pt;}
.x3f{left:516.170667pt;}
.x58{left:518.645333pt;}
.x82{left:520.270667pt;}
.xe8{left:521.470667pt;}
.x109{left:523.869333pt;}
.x6c{left:525.412000pt;}
.x83{left:526.580000pt;}
.x92{left:528.524000pt;}
.xbc{left:529.630667pt;}
.x36{left:534.501333pt;}
.x8e{left:537.114667pt;}
.x59{left:543.356000pt;}
.xe9{left:546.014667pt;}
.x80{left:547.681333pt;}
.x37{left:549.109333pt;}
.x40{left:550.514667pt;}
.xfa{left:554.214667pt;}
.x41{left:556.057333pt;}
.xa{left:557.452000pt;}
.x60{left:561.429333pt;}
.x5a{left:563.222667pt;}
.x100{left:565.674667pt;}
.xd6{left:567.732000pt;}
.xce{left:568.890667pt;}
.x16{left:571.034667pt;}
.xb{left:572.581333pt;}
.x61{left:573.876000pt;}
.x5b{left:575.781333pt;}
.xc7{left:578.040000pt;}
.x62{left:579.578667pt;}
.xea{left:581.496000pt;}
.xc{left:582.830667pt;}
.xc8{left:585.054667pt;}
.x17{left:587.248000pt;}
.xd{left:588.789333pt;}
.x5c{left:593.333333pt;}
.xeb{left:594.264000pt;}
.x42{left:597.000000pt;}
.x18{left:598.336000pt;}
.x21{left:600.898667pt;}
.xa2{left:601.814667pt;}
.x19{left:604.645333pt;}
.xd7{left:606.712000pt;}
.x5d{left:608.404000pt;}
.x4c{left:610.134667pt;}
.x63{left:611.825333pt;}
.xec{left:613.054667pt;}
.x2d{left:614.058667pt;}
.x22{left:616.656000pt;}
.x9b{left:618.240000pt;}
.x88{left:620.046667pt;}
.xcf{left:621.057333pt;}
.x2e{left:622.917333pt;}
.x9c{left:625.564000pt;}
.x10c{left:626.585333pt;}
.x64{left:629.026667pt;}
.x4d{left:630.841333pt;}
.x9d{left:632.028000pt;}
.xd0{left:634.329333pt;}
.x65{left:635.809333pt;}
.xd8{left:638.200000pt;}
.x6f{left:639.348000pt;}
.x9e{left:646.624000pt;}
.x89{left:647.798667pt;}
.x81{left:649.465333pt;}
.x43{left:651.286667pt;}
.x48{left:652.961333pt;}
.x8a{left:654.109333pt;}
.xd9{left:657.920000pt;}
.x5e{left:660.804000pt;}
.x9f{left:662.872000pt;}
.x2f{left:665.618667pt;}
.x49{left:668.720000pt;}
.xda{left:670.534667pt;}
.xd1{left:672.150667pt;}
.xdb{left:676.134667pt;}
.xd2{left:677.694667pt;}
.xa0{left:684.732000pt;}
.xdc{left:686.500000pt;}
.x97{left:690.382667pt;}
.xd3{left:696.562667pt;}
}




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