
    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_a84807b364543e948618776c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_14617519d2a5c3eb11b7231b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_33dfe55f125e7d09632425dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c2db116da55dbbbfc476ba48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_fdbdba8c1284f4d0c80a78b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.142090;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_e0b4482de83795acfeaa64df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897949;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;}
.m5{transform:matrix(0.143724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143724,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.157836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157836,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.158938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158938,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.184336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184336,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.186774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186774,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.191049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191049,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.191557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191557,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.236869,0.000000,-0.078948,0.237207,0,0);-ms-transform:matrix(0.236869,0.000000,-0.078948,0.237207,0,0);-webkit-transform:matrix(0.236869,0.000000,-0.078948,0.237207,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m29{transform:matrix(0.237456,0.000000,-0.079144,0.237142,0,0);-ms-transform:matrix(0.237456,0.000000,-0.079144,0.237142,0,0);-webkit-transform:matrix(0.237456,0.000000,-0.079144,0.237142,0,0);}
.m23{transform:matrix(0.237465,0.000000,-0.079147,0.237141,0,0);-ms-transform:matrix(0.237465,0.000000,-0.079147,0.237141,0,0);-webkit-transform:matrix(0.237465,0.000000,-0.079147,0.237141,0,0);}
.m27{transform:matrix(0.237510,0.000000,-0.079162,0.237136,0,0);-ms-transform:matrix(0.237510,0.000000,-0.079162,0.237136,0,0);-webkit-transform:matrix(0.237510,0.000000,-0.079162,0.237136,0,0);}
.m1c{transform:matrix(0.238226,0.000000,-0.079401,0.237056,0,0);-ms-transform:matrix(0.238226,0.000000,-0.079401,0.237056,0,0);-webkit-transform:matrix(0.238226,0.000000,-0.079401,0.237056,0,0);}
.m1e{transform:matrix(0.238345,0.000000,-0.079440,0.237043,0,0);-ms-transform:matrix(0.238345,0.000000,-0.079440,0.237043,0,0);-webkit-transform:matrix(0.238345,0.000000,-0.079440,0.237043,0,0);}
.m1a{transform:matrix(0.238597,0.000000,-0.079524,0.237014,0,0);-ms-transform:matrix(0.238597,0.000000,-0.079524,0.237014,0,0);-webkit-transform:matrix(0.238597,0.000000,-0.079524,0.237014,0,0);}
.m25{transform:matrix(0.238702,0.000000,-0.079559,0.237003,0,0);-ms-transform:matrix(0.238702,0.000000,-0.079559,0.237003,0,0);-webkit-transform:matrix(0.238702,0.000000,-0.079559,0.237003,0,0);}
.m2b{transform:matrix(0.239777,0.000000,-0.079918,0.236882,0,0);-ms-transform:matrix(0.239777,0.000000,-0.079918,0.236882,0,0);-webkit-transform:matrix(0.239777,0.000000,-0.079918,0.236882,0,0);}
.md{transform:matrix(0.240123,0.000000,-0.080033,0.236843,0,0);-ms-transform:matrix(0.240123,0.000000,-0.080033,0.236843,0,0);-webkit-transform:matrix(0.240123,0.000000,-0.080033,0.236843,0,0);}
.m13{transform:matrix(0.240725,0.000000,-0.080234,0.236775,0,0);-ms-transform:matrix(0.240725,0.000000,-0.080234,0.236775,0,0);-webkit-transform:matrix(0.240725,0.000000,-0.080234,0.236775,0,0);}
.m21{transform:matrix(0.240727,0.000000,-0.080234,0.236775,0,0);-ms-transform:matrix(0.240727,0.000000,-0.080234,0.236775,0,0);-webkit-transform:matrix(0.240727,0.000000,-0.080234,0.236775,0,0);}
.m10{transform:matrix(0.241299,0.000000,-0.080425,0.236710,0,0);-ms-transform:matrix(0.241299,0.000000,-0.080425,0.236710,0,0);-webkit-transform:matrix(0.241299,0.000000,-0.080425,0.236710,0,0);}
.m2d{transform:matrix(0.242571,0.000000,-0.080849,0.236566,0,0);-ms-transform:matrix(0.242571,0.000000,-0.080849,0.236566,0,0);-webkit-transform:matrix(0.242571,0.000000,-0.080849,0.236566,0,0);}
.m18{transform:matrix(0.243577,0.000000,-0.081184,0.236451,0,0);-ms-transform:matrix(0.243577,0.000000,-0.081184,0.236451,0,0);-webkit-transform:matrix(0.243577,0.000000,-0.081184,0.236451,0,0);}
.ma{transform:matrix(0.246073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246073,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246073,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,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);}
.m28{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250342,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251234,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251792,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253462,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254173,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255784,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256345,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.257534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257534,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);}
.ve{vertical-align:-57.301607px;}
.v9{vertical-align:-56.218530px;}
.v6{vertical-align:-55.072872px;}
.vc{vertical-align:-44.923372px;}
.v4{vertical-align:-31.551531px;}
.v2{vertical-align:-27.360000px;}
.vd{vertical-align:-23.890476px;}
.va{vertical-align:-19.655099px;}
.vf{vertical-align:-15.315829px;}
.vb{vertical-align:-14.186612px;}
.v7{vertical-align:-11.954016px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.760000px;}
.v10{vertical-align:12.019432px;}
.v11{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v5{vertical-align:44.312708px;}
.ls49{letter-spacing:-1.262914px;}
.ls32{letter-spacing:-0.997168px;}
.ls40{letter-spacing:-0.907399px;}
.ls3b{letter-spacing:-0.906285px;}
.ls3a{letter-spacing:-0.868985px;}
.ls36{letter-spacing:-0.851733px;}
.ls54{letter-spacing:-0.829334px;}
.ls2f{letter-spacing:-0.788363px;}
.ls5e{letter-spacing:-0.724154px;}
.ls4a{letter-spacing:-0.704883px;}
.ls2e{letter-spacing:-0.577152px;}
.ls35{letter-spacing:-0.559794px;}
.ls31{letter-spacing:-0.559001px;}
.ls59{letter-spacing:-0.433406px;}
.ls55{letter-spacing:-0.324574px;}
.ls2{letter-spacing:-0.288000px;}
.ls41{letter-spacing:-0.241380px;}
.ls3c{letter-spacing:-0.241084px;}
.ls50{letter-spacing:-0.240732px;}
.ls6{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.176019px;}
.ls33{letter-spacing:-0.144000px;}
.ls4d{letter-spacing:-0.094968px;}
.ls37{letter-spacing:-0.030421px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.048000px;}
.ls10{letter-spacing:0.071444px;}
.ls4{letter-spacing:0.072000px;}
.ls58{letter-spacing:0.089033px;}
.ls3{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.181200px;}
.ls46{letter-spacing:0.210393px;}
.lsf{letter-spacing:0.216000px;}
.ls4e{letter-spacing:0.235047px;}
.ls2d{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.828000px;}
.ls15{letter-spacing:0.900000px;}
.ls29{letter-spacing:10.002197px;}
.ls22{letter-spacing:21.080796px;}
.ls26{letter-spacing:44.036249px;}
.lse{letter-spacing:47.892111px;}
.ls11{letter-spacing:49.371873px;}
.lsd{letter-spacing:49.561399px;}
.ls1a{letter-spacing:54.629067px;}
.lsb{letter-spacing:63.271507px;}
.ls5b{letter-spacing:67.516927px;}
.ls3e{letter-spacing:68.237899px;}
.ls4f{letter-spacing:68.911411px;}
.lsa{letter-spacing:70.628497px;}
.ls20{letter-spacing:71.294164px;}
.ls21{letter-spacing:71.678339px;}
.ls1f{letter-spacing:72.777271px;}
.ls1c{letter-spacing:81.149737px;}
.ls1e{letter-spacing:81.699601px;}
.ls7{letter-spacing:89.206638px;}
.ls12{letter-spacing:89.451416px;}
.ls27{letter-spacing:101.164829px;}
.ls2a{letter-spacing:126.604092px;}
.ls28{letter-spacing:131.019324px;}
.ls42{letter-spacing:132.788604px;}
.ls38{letter-spacing:134.460367px;}
.ls51{letter-spacing:153.607356px;}
.ls57{letter-spacing:153.695272px;}
.ls44{letter-spacing:153.724011px;}
.ls5f{letter-spacing:156.728719px;}
.ls30{letter-spacing:161.365267px;}
.ls60{letter-spacing:161.573301px;}
.ls39{letter-spacing:166.723725px;}
.ls5d{letter-spacing:172.348717px;}
.ls3f{letter-spacing:172.998820px;}
.ls53{letter-spacing:173.145838px;}
.ls23{letter-spacing:184.314622px;}
.ls25{letter-spacing:185.989358px;}
.lsc{letter-spacing:192.591276px;}
.ls4c{letter-spacing:198.365685px;}
.ls47{letter-spacing:198.777032px;}
.ls34{letter-spacing:208.703962px;}
.ls2c{letter-spacing:213.749795px;}
.ls19{letter-spacing:217.312101px;}
.ls5c{letter-spacing:218.589736px;}
.ls1d{letter-spacing:247.127031px;}
.ls3d{letter-spacing:263.296409px;}
.ls24{letter-spacing:281.687781px;}
.ls48{letter-spacing:287.971855px;}
.ls52{letter-spacing:297.455292px;}
.ls2b{letter-spacing:309.448217px;}
.ls9{letter-spacing:335.028791px;}
.ls8{letter-spacing:335.993865px;}
.ls5a{letter-spacing:352.621155px;}
.ls43{letter-spacing:360.587187px;}
.ls56{letter-spacing:360.790104px;}
.ls4b{letter-spacing:360.899843px;}
.ls14{letter-spacing:443.537320px;}
.ls1b{letter-spacing:553.769623px;}
.ls13{letter-spacing:739.228867px;}
.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;}
}
.ws4{word-spacing:-39.528000px;}
.ws24{word-spacing:-22.024780px;}
.ws2b{word-spacing:-18.288000px;}
.ws2f{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws14{word-spacing:-15.300000px;}
.ws12{word-spacing:-12.960000px;}
.ws6{word-spacing:-12.241200px;}
.ws0{word-spacing:-12.060000px;}
.wsf{word-spacing:-10.391716px;}
.wsb{word-spacing:-10.248515px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:2.154435px;}
.ws10{word-spacing:6.567564px;}
.ws8{word-spacing:7.143404px;}
.ws1e{word-spacing:7.431937px;}
.ws21{word-spacing:20.362793px;}
.ws25{word-spacing:22.913558px;}
.ws29{word-spacing:25.593986px;}
.ws28{word-spacing:25.749113px;}
.ws22{word-spacing:25.972146px;}
.ws20{word-spacing:32.902558px;}
.ws17{word-spacing:33.286329px;}
.ws1f{word-spacing:49.065218px;}
.ws16{word-spacing:74.723608px;}
.ws1c{word-spacing:80.159315px;}
.ws1a{word-spacing:98.269115px;}
.ws2e{word-spacing:111.190442px;}
.ws2d{word-spacing:113.076523px;}
.ws27{word-spacing:114.793007px;}
.ws1b{word-spacing:124.478801px;}
.ws1d{word-spacing:135.785866px;}
.ws15{word-spacing:139.478733px;}
.ws26{word-spacing:144.477231px;}
.ws2c{word-spacing:169.650637px;}
.ws2a{word-spacing:172.255807px;}
.ws9{word-spacing:177.807953px;}
.wsd{word-spacing:182.237290px;}
.ws23{word-spacing:189.981487px;}
.ws11{word-spacing:193.493746px;}
.ws19{word-spacing:202.382117px;}
.wse{word-spacing:724.164712px;}
.wsa{word-spacing:728.642591px;}
.ws7{word-spacing:730.003000px;}
._1c{margin-left:-7.200000px;}
._d{margin-left:-5.112000px;}
._e{margin-left:-4.104000px;}
._13{margin-left:-2.952000px;}
._0{margin-left:-1.080720px;}
._3{width:1.008720px;}
._6{width:2.133120px;}
._10{width:3.396000px;}
._5{width:4.896000px;}
._8{width:6.552000px;}
._7{width:7.992000px;}
._9{width:9.072000px;}
._a{width:10.415280px;}
._11{width:11.544720px;}
._12{width:13.004400px;}
._14{width:14.832000px;}
._15{width:15.984000px;}
._20{width:16.993440px;}
._f{width:19.128000px;}
._1{width:20.736000px;}
._2{width:22.392000px;}
._28{width:23.676000px;}
._c{width:24.719280px;}
._b{width:25.896720px;}
._16{width:27.887280px;}
._22{width:30.936000px;}
._23{width:32.136000px;}
._26{width:33.408000px;}
._24{width:38.520000px;}
._25{width:39.756000px;}
._27{width:46.080000px;}
._29{width:52.632000px;}
._4{width:62.832000px;}
._1f{width:100.800000px;}
._31{width:124.250448px;}
._1d{width:127.111448px;}
._17{width:129.484462px;}
._33{width:132.108088px;}
._36{width:150.370461px;}
._19{width:154.800000px;}
._2b{width:156.143426px;}
._2c{width:157.713796px;}
._34{width:176.269285px;}
._32{width:185.365506px;}
._1b{width:197.280000px;}
._1a{width:199.440000px;}
._2e{width:200.650814px;}
._30{width:205.124151px;}
._2f{width:206.144208px;}
._18{width:214.308746px;}
._35{width:286.233402px;}
._1e{width:303.849970px;}
._2a{width:404.612701px;}
._2d{width:530.093400px;}
._21{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:40.605751px;}
.fsb{font-size:40.994059px;}
.fs6{font-size:41.054046px;}
.fs2e{font-size:41.139852px;}
.fs36{font-size:41.203680px;}
.fs22{font-size:41.244811px;}
.fs29{font-size:41.263789px;}
.fs2c{font-size:41.314514px;}
.fs33{font-size:41.348034px;}
.fs39{font-size:41.416580px;}
.fs17{font-size:41.418483px;}
.fsc{font-size:41.431439px;}
.fs3d{font-size:41.512591px;}
.fs12{font-size:41.566863px;}
.fs1b{font-size:41.583671px;}
.fs1f{font-size:41.642696px;}
.fs26{font-size:41.782543px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs10{font-size:70.200994px;}
.fsd{font-size:71.047676px;}
.fs7{font-size:71.151642px;}
.fs21{font-size:71.228939px;}
.fs35{font-size:71.344318px;}
.fs28{font-size:71.448398px;}
.fs2b{font-size:71.536228px;}
.fs32{font-size:71.594267px;}
.fs38{font-size:71.668773px;}
.fs16{font-size:71.688098px;}
.fs3c{font-size:71.703566px;}
.fs13{font-size:71.797308px;}
.fs2{font-size:72.000000px;}
.fs1a{font-size:72.048331px;}
.fs15{font-size:72.145767px;}
.fs1e{font-size:72.150598px;}
.fs25{font-size:72.154732px;}
.fs2f{font-size:74.931286px;}
.fs23{font-size:75.070443px;}
.fs37{font-size:75.256823px;}
.fs2a{font-size:75.362892px;}
.fs2d{font-size:75.442323px;}
.fs3b{font-size:75.476235px;}
.fs34{font-size:75.476530px;}
.fs3a{font-size:75.556673px;}
.fs18{font-size:75.670372px;}
.fs3e{font-size:75.674280px;}
.fs4{font-size:75.893905px;}
.fs1c{font-size:76.093287px;}
.fs20{font-size:76.180417px;}
.fs31{font-size:76.180497px;}
.fs3f{font-size:76.252195px;}
.fs27{font-size:76.289255px;}
.fs1{font-size:84.240000px;}
.fs19{font-size:94.285180px;}
.fs1d{font-size:94.419012px;}
.fs30{font-size:97.890558px;}
.fs24{font-size:97.969383px;}
.fse{font-size:106.494469px;}
.fs8{font-size:106.650305px;}
.fs14{font-size:107.695963px;}
.fs5{font-size:111.475654px;}
.fs11{font-size:112.637932px;}
.fsa{font-size:122.395446px;}
.y0{bottom:0.000000px;}
.y10f{bottom:2.891891px;}
.yb7{bottom:2.891923px;}
.y3{bottom:3.240000px;}
.y162{bottom:3.960000px;}
.y94{bottom:4.389956px;}
.y89{bottom:4.396394px;}
.y228{bottom:4.913858px;}
.y1ef{bottom:5.038522px;}
.y1ad{bottom:5.119077px;}
.y1be{bottom:5.125373px;}
.y219{bottom:5.202638px;}
.y1e3{bottom:5.202643px;}
.y192{bottom:5.208079px;}
.y1cc{bottom:5.267996px;}
.yb0{bottom:5.357700px;}
.y20c{bottom:5.487649px;}
.ya7{bottom:5.503527px;}
.yaa{bottom:5.503530px;}
.y22e{bottom:5.793252px;}
.y199{bottom:5.793307px;}
.y227{bottom:6.333476px;}
.y1ac{bottom:6.508397px;}
.y1bd{bottom:6.516401px;}
.y20b{bottom:6.887066px;}
.y16b{bottom:7.009095px;}
.y166{bottom:7.009121px;}
.y1d0{bottom:8.375933px;}
.y22b{bottom:8.460000px;}
.y171{bottom:8.472618px;}
.y17d{bottom:8.484647px;}
.yac{bottom:8.492039px;}
.y195{bottom:8.640000px;}
.y1e9{bottom:8.689581px;}
.y1c2{bottom:8.820000px;}
.y216{bottom:8.829983px;}
.y1e0{bottom:8.829987px;}
.y18e{bottom:8.839173px;}
.y191{bottom:8.839180px;}
.y189{bottom:8.839186px;}
.y197{bottom:9.011692px;}
.y177{bottom:9.812331px;}
.y172{bottom:9.812340px;}
.y1d5{bottom:9.826227px;}
.y1d1{bottom:9.826234px;}
.y183{bottom:9.826260px;}
.y17e{bottom:9.826271px;}
.y221{bottom:9.973345px;}
.y1a6{bottom:10.164778px;}
.y1b7{bottom:10.177268px;}
.y1bc{bottom:10.177272px;}
.y1b6{bottom:10.177296px;}
.y1e8{bottom:10.260000px;}
.y19d{bottom:10.440000px;}
.y230{bottom:10.477800px;}
.y19b{bottom:10.477801px;}
.y231{bottom:10.477803px;}
.y22f{bottom:10.477808px;}
.y198{bottom:10.477823px;}
.y19c{bottom:10.477852px;}
.y19a{bottom:10.477867px;}
.y1fe{bottom:10.533296px;}
.y20a{bottom:10.533298px;}
.y1cb{bottom:14.011460px;}
.yaf{bottom:16.328636px;}
.y167{bottom:16.414495px;}
.y1c5{bottom:16.644798px;}
.y97{bottom:16.681802px;}
.y88{bottom:16.706218px;}
.y8b{bottom:16.706225px;}
.y1ee{bottom:16.976955px;}
.y99{bottom:17.194450px;}
.y8e{bottom:17.219627px;}
.y95{bottom:17.779699px;}
.y9f{bottom:17.891555px;}
.y9e{bottom:17.891574px;}
.ya6{bottom:17.931635px;}
.ya9{bottom:17.931656px;}
.y1ea{bottom:18.072671px;}
.y18b{bottom:18.192029px;}
.y209{bottom:18.303534px;}
.y226{bottom:18.309180px;}
.y92{bottom:18.327906px;}
.y164{bottom:18.360000px;}
.yb1{bottom:18.442397px;}
.y1ab{bottom:18.464838px;}
.y1bb{bottom:18.487540px;}
.y22d{bottom:18.560083px;}
.y1c0{bottom:19.080000px;}
.y86{bottom:19.197543px;}
.y173{bottom:19.263016px;}
.y1d2{bottom:19.290320px;}
.y17f{bottom:19.290360px;}
.y21f{bottom:19.400079px;}
.y1a4{bottom:19.525175px;}
.y1b4{bottom:19.549177px;}
.y1ce{bottom:19.800000px;}
.y17b{bottom:19.845000px;}
.y16f{bottom:19.980000px;}
.ya3{bottom:20.446930px;}
.y225{bottom:20.455576px;}
.y1e6{bottom:20.520000px;}
.y16d{bottom:21.060000px;}
.y16c{bottom:21.063765px;}
.y169{bottom:21.063789px;}
.y1c8{bottom:21.218595px;}
.y1ca{bottom:21.218622px;}
.y1c7{bottom:21.218629px;}
.y98{bottom:21.255630px;}
.y8d{bottom:21.286751px;}
.y8c{bottom:21.286754px;}
.y21b{bottom:22.170000px;}
.y193{bottom:22.500000px;}
.yae{bottom:22.560717px;}
.yab{bottom:22.560731px;}
.y215{bottom:22.569834px;}
.y218{bottom:22.569836px;}
.y211{bottom:22.569837px;}
.y1df{bottom:22.569844px;}
.y1e2{bottom:22.569848px;}
.y1db{bottom:22.569851px;}
.y1eb{bottom:22.672907px;}
.y190{bottom:22.776030px;}
.y18c{bottom:22.776049px;}
.y187{bottom:22.860000px;}
.y111{bottom:23.760000px;}
.y178{bottom:23.896909px;}
.y175{bottom:23.896921px;}
.y1d6{bottom:23.930791px;}
.y1d4{bottom:23.930800px;}
.y184{bottom:23.930831px;}
.y181{bottom:23.930841px;}
.y179{bottom:23.940000px;}
.y229{bottom:23.970000px;}
.y185{bottom:23.985000px;}
.y21e{bottom:24.023067px;}
.y224{bottom:24.023070px;}
.y220{bottom:24.023073px;}
.y1a2{bottom:24.169109px;}
.y1aa{bottom:24.169135px;}
.y1a5{bottom:24.169150px;}
.y1b2{bottom:24.198822px;}
.y1ba{bottom:24.198847px;}
.y1b5{bottom:24.198860px;}
.y1f8{bottom:24.269970px;}
.y208{bottom:24.269978px;}
.y1fc{bottom:24.269981px;}
.y1af{bottom:24.300000px;}
.y19f{bottom:24.480000px;}
.y100{bottom:24.660000px;}
.y10a{bottom:24.690000px;}
.y104{bottom:24.705000px;}
.y9d{bottom:25.779447px;}
.y115{bottom:25.920000px;}
.y112{bottom:26.460000px;}
.y116{bottom:27.360000px;}
.y1c1{bottom:29.520000px;}
.y210{bottom:30.593173px;}
.y1e7{bottom:30.960000px;}
.y1c9{bottom:31.059672px;}
.y1d8{bottom:31.860000px;}
.y16a{bottom:32.358210px;}
.y168{bottom:32.358226px;}
.y1c6{bottom:32.449447px;}
.y1c4{bottom:32.449459px;}
.yad{bottom:33.567961px;}
.y1da{bottom:33.598029px;}
.ya8{bottom:33.895651px;}
.y1ec{bottom:33.955388px;}
.y18d{bottom:34.035496px;}
.y1ed{bottom:34.137268px;}
.y87{bottom:34.145429px;}
.y18f{bottom:34.219700px;}
.y176{bottom:35.302715px;}
.y174{bottom:35.302723px;}
.y1f7{bottom:35.319803px;}
.y1d3{bottom:35.352814px;}
.y182{bottom:35.352824px;}
.y180{bottom:35.352836px;}
.y21d{bottom:35.380052px;}
.y1a1{bottom:35.466554px;}
.y93{bottom:35.485316px;}
.y207{bottom:35.503264px;}
.y1b1{bottom:35.510176px;}
.ya5{bottom:35.535544px;}
.y223{bottom:35.561376px;}
.y1a9{bottom:35.650186px;}
.y1b9{bottom:35.694013px;}
.y222{bottom:36.945627px;}
.y1a8{bottom:37.039250px;}
.y1b8{bottom:37.084785px;}
.y1f3{bottom:38.700000px;}
.y96{bottom:39.327212px;}
.y8a{bottom:39.384775px;}
.y212{bottom:43.453975px;}
.y1dc{bottom:43.453993px;}
.y153{bottom:45.360000px;}
.y14d{bottom:45.405000px;}
.ya4{bottom:45.813596px;}
.y18a{bottom:46.360015px;}
.y1f9{bottom:46.588916px;}
.y1e4{bottom:48.060000px;}
.y217{bottom:48.070325px;}
.y214{bottom:48.070329px;}
.y1e1{bottom:48.070341px;}
.y1de{bottom:48.070349px;}
.y1f1{bottom:49.140000px;}
.y1a3{bottom:49.214813px;}
.y1a7{bottom:49.214816px;}
.y1b3{bottom:49.275311px;}
.y20d{bottom:50.940000px;}
.y206{bottom:51.229305px;}
.y1fb{bottom:51.229311px;}
.y2{bottom:53.820000px;}
.y1{bottom:57.060000px;}
.y205{bottom:59.369001px;}
.y213{bottom:59.390842px;}
.y1dd{bottom:59.390849px;}
.y1f2{bottom:59.400000px;}
.y204{bottom:60.768119px;}
.y1fd{bottom:64.415095px;}
.y203{bottom:64.415097px;}
.y152{bottom:66.060000px;}
.y14e{bottom:66.105000px;}
.y202{bottom:72.186377px;}
.y201{bottom:74.322369px;}
.y1f6{bottom:78.152813px;}
.y1fa{bottom:78.152821px;}
.y1f5{bottom:89.201155px;}
.y200{bottom:89.384616px;}
.y1ff{bottom:90.785245px;}
.yca{bottom:116.640000px;}
.y66{bottom:130.140000px;}
.yda{bottom:131.040000px;}
.y3f{bottom:137.700000px;}
.y233{bottom:138.780000px;}
.ye7{bottom:139.140000px;}
.y132{bottom:139.320000px;}
.y58{bottom:141.840000px;}
.y73{bottom:144.540000px;}
.y14b{bottom:146.340000px;}
.yc9{bottom:157.860000px;}
.y9b{bottom:169.560000px;}
.y65{bottom:171.540000px;}
.yd9{bottom:172.440000px;}
.y160{bottom:178.560000px;}
.y3e{bottom:179.100000px;}
.y232{bottom:180.180000px;}
.ye6{bottom:180.540000px;}
.y131{bottom:180.720000px;}
.y57{bottom:183.240000px;}
.y1b{bottom:185.790000px;}
.y72{bottom:185.940000px;}
.y14a{bottom:187.740000px;}
.y22a{bottom:197.820000px;}
.y22c{bottom:197.894980px;}
.yfc{bottom:199.800000px;}
.yc8{bottom:200.700000px;}
.y91{bottom:204.045000px;}
.y64{bottom:212.940000px;}
.yd8{bottom:213.840000px;}
.y11b{bottom:217.620000px;}
.y15f{bottom:219.960000px;}
.y1a{bottom:220.350000px;}
.y3d{bottom:220.500000px;}
.ye5{bottom:221.940000px;}
.y130{bottom:222.120000px;}
.y56{bottom:224.640000px;}
.y9a{bottom:225.000000px;}
.y71{bottom:227.340000px;}
.y21a{bottom:227.700000px;}
.y21c{bottom:227.819980px;}
.y149{bottom:229.140000px;}
.y11a{bottom:234.360000px;}
.y15e{bottom:237.450000px;}
.yfb{bottom:241.230000px;}
.yc7{bottom:244.830000px;}
.y63{bottom:254.370000px;}
.yd7{bottom:256.530000px;}
.y19{bottom:261.750000px;}
.y3c{bottom:261.930000px;}
.ye4{bottom:263.370000px;}
.y12f{bottom:263.550000px;}
.y55{bottom:266.070000px;}
.y70{bottom:268.770000px;}
.y148{bottom:270.570000px;}
.y119{bottom:275.790000px;}
.y90{bottom:277.590000px;}
.y15d{bottom:278.850000px;}
.yfa{bottom:282.630000px;}
.y20e{bottom:284.790000px;}
.y20f{bottom:284.819980px;}
.yc6{bottom:287.670000px;}
.y62{bottom:295.770000px;}
.yd6{bottom:299.370000px;}
.y18{bottom:303.150000px;}
.y3b{bottom:303.330000px;}
.ye3{bottom:304.770000px;}
.y12e{bottom:304.950000px;}
.y54{bottom:307.470000px;}
.y6f{bottom:310.170000px;}
.y85{bottom:311.819980px;}
.y147{bottom:311.970000px;}
.y118{bottom:317.190000px;}
.yf9{bottom:324.030000px;}
.yc5{bottom:328.890000px;}
.y8f{bottom:332.850000px;}
.y61{bottom:337.170000px;}
.yd5{bottom:340.770000px;}
.y17{bottom:344.550000px;}
.y3a{bottom:344.730000px;}
.ye2{bottom:346.170000px;}
.y12d{bottom:346.350000px;}
.y53{bottom:348.870000px;}
.y6e{bottom:351.570000px;}
.y146{bottom:353.370000px;}
.y1f0{bottom:361.290000px;}
.y1f4{bottom:361.319959px;}
.y15c{bottom:361.650000px;}
.yf8{bottom:365.430000px;}
.yc4{bottom:370.290000px;}
.y60{bottom:378.570000px;}
.yd4{bottom:382.170000px;}
.y117{bottom:383.250000px;}
.y16{bottom:385.950000px;}
.y39{bottom:386.130000px;}
.y84{bottom:387.570000px;}
.y12c{bottom:387.750000px;}
.y52{bottom:390.270000px;}
.y6d{bottom:392.970000px;}
.y145{bottom:394.770000px;}
.y114{bottom:399.990000px;}
.y15b{bottom:403.050000px;}
.yf7{bottom:410.790000px;}
.yc3{bottom:411.690000px;}
.y5f{bottom:419.970000px;}
.yd3{bottom:423.570000px;}
.yec{bottom:424.830000px;}
.y15{bottom:427.395000px;}
.y38{bottom:427.530000px;}
.y83{bottom:428.970000px;}
.y12b{bottom:429.150000px;}
.y51{bottom:431.670000px;}
.y6c{bottom:434.370000px;}
.y144{bottom:435.990000px;}
.y113{bottom:444.090000px;}
.y15a{bottom:444.450000px;}
.yc2{bottom:453.090000px;}
.yf6{bottom:455.070000px;}
.y5e{bottom:461.370000px;}
.yd2{bottom:464.970000px;}
.yeb{bottom:466.230000px;}
.y14{bottom:468.795000px;}
.y37{bottom:468.975000px;}
.y82{bottom:470.415000px;}
.y12a{bottom:470.595000px;}
.y1e5{bottom:472.395000px;}
.y50{bottom:473.115000px;}
.y6b{bottom:475.815000px;}
.y143{bottom:477.435000px;}
.y159{bottom:485.895000px;}
.yc1{bottom:494.535000px;}
.yf5{bottom:496.515000px;}
.y5d{bottom:502.815000px;}
.y24c{bottom:505.875000px;}
.yd1{bottom:506.415000px;}
.yea{bottom:507.675000px;}
.y13{bottom:510.195000px;}
.y36{bottom:510.375000px;}
.y81{bottom:511.815000px;}
.y129{bottom:511.995000px;}
.y4f{bottom:514.515000px;}
.y6a{bottom:517.215000px;}
.y142{bottom:518.835000px;}
.y1d9{bottom:526.394959px;}
.y1d7{bottom:526.395000px;}
.y110{bottom:526.935000px;}
.y158{bottom:527.295000px;}
.y241{bottom:529.455000px;}
.yc0{bottom:535.935000px;}
.yf4{bottom:537.915000px;}
.y5c{bottom:544.215000px;}
.y24b{bottom:547.275000px;}
.y10e{bottom:547.619959px;}
.yd0{bottom:547.815000px;}
.y2a{bottom:549.075000px;}
.y12{bottom:551.595000px;}
.y35{bottom:551.775000px;}
.y80{bottom:553.215000px;}
.y128{bottom:553.395000px;}
.y4e{bottom:555.915000px;}
.y69{bottom:558.615000px;}
.y141{bottom:560.235000px;}
.y157{bottom:568.695000px;}
.y246{bottom:569.595000px;}
.y10d{bottom:570.135000px;}
.y240{bottom:570.855000px;}
.ybf{bottom:577.335000px;}
.yf3{bottom:579.315000px;}
.y5b{bottom:585.615000px;}
.y24f{bottom:587.055000px;}
.y24a{bottom:588.675000px;}
.ycf{bottom:589.215000px;}
.y245{bottom:590.295000px;}
.y29{bottom:590.475000px;}
.y34{bottom:593.175000px;}
.y7f{bottom:594.615000px;}
.y127{bottom:594.795000px;}
.y4d{bottom:597.315000px;}
.y11{bottom:599.835000px;}
.y68{bottom:600.015000px;}
.y140{bottom:601.635000px;}
.y1cf{bottom:602.894959px;}
.y1cd{bottom:602.895000px;}
.y156{bottom:610.095000px;}
.y10c{bottom:611.535000px;}
.y23f{bottom:612.255000px;}
.ybe{bottom:618.735000px;}
.yf2{bottom:624.855000px;}
.y24e{bottom:629.895000px;}
.y249{bottom:630.075000px;}
.yce{bottom:630.615000px;}
.y5a{bottom:631.155000px;}
.y28{bottom:631.875000px;}
.y244{bottom:632.955000px;}
.y10{bottom:634.395000px;}
.y33{bottom:634.575000px;}
.y7e{bottom:636.015000px;}
.y126{bottom:636.195000px;}
.ye1{bottom:637.275000px;}
.y4c{bottom:639.975000px;}
.y67{bottom:641.415000px;}
.y13f{bottom:643.035000px;}
.y155{bottom:651.495000px;}
.y10b{bottom:652.935000px;}
.y23e{bottom:653.655000px;}
.y1bf{bottom:655.275000px;}
.y1c3{bottom:655.319959px;}
.ybd{bottom:664.275000px;}
.yf1{bottom:669.135000px;}
.y24d{bottom:671.295000px;}
.y248{bottom:671.475000px;}
.ycd{bottom:672.015000px;}
.y27{bottom:673.275000px;}
.y59{bottom:675.255000px;}
.y243{bottom:675.795000px;}
.yf{bottom:675.825000px;}
.y32{bottom:675.975000px;}
.y7d{bottom:677.415000px;}
.y125{bottom:677.595000px;}
.ye0{bottom:680.115000px;}
.y23c{bottom:682.275000px;}
.y4b{bottom:682.815000px;}
.y13e{bottom:684.435000px;}
.y23d{bottom:691.095000px;}
.y154{bottom:692.895000px;}
.y109{bottom:694.335000px;}
.y1b0{bottom:706.394919px;}
.y1ae{bottom:706.425000px;}
.ybc{bottom:708.585000px;}
.y247{bottom:708.765000px;}
.yf0{bottom:710.565000px;}
.y242{bottom:713.265000px;}
.y26{bottom:714.705000px;}
.ye{bottom:717.225000px;}
.y31{bottom:717.405000px;}
.y7c{bottom:718.845000px;}
.y124{bottom:719.025000px;}
.ydf{bottom:721.545000px;}
.y23b{bottom:723.705000px;}
.y4a{bottom:724.245000px;}
.y13d{bottom:725.865000px;}
.y151{bottom:734.325000px;}
.y108{bottom:735.765000px;}
.y23a{bottom:741.165000px;}
.ybb{bottom:749.985000px;}
.yef{bottom:751.965000px;}
.y25{bottom:756.105000px;}
.yd{bottom:758.625000px;}
.y30{bottom:758.805000px;}
.y7b{bottom:760.245000px;}
.y123{bottom:760.425000px;}
.yde{bottom:762.945000px;}
.y49{bottom:765.645000px;}
.y13c{bottom:767.265000px;}
.y19e{bottom:767.805000px;}
.y1a0{bottom:767.819919px;}
.y107{bottom:777.165000px;}
.yba{bottom:791.385000px;}
.yee{bottom:793.185000px;}
.y24{bottom:797.505000px;}
.yc{bottom:800.025000px;}
.y2f{bottom:800.205000px;}
.y7a{bottom:801.645000px;}
.y122{bottom:801.825000px;}
.ydd{bottom:804.345000px;}
.y48{bottom:807.045000px;}
.y13b{bottom:808.665000px;}
.y150{bottom:817.125000px;}
.y106{bottom:818.565000px;}
.y239{bottom:823.965000px;}
.y196{bottom:829.319919px;}
.y194{bottom:829.365000px;}
.yb9{bottom:832.785000px;}
.yed{bottom:838.725000px;}
.y23{bottom:838.905000px;}
.yb{bottom:841.425000px;}
.y2e{bottom:841.605000px;}
.y79{bottom:843.045000px;}
.y121{bottom:843.225000px;}
.ycc{bottom:844.305000px;}
.ydc{bottom:845.745000px;}
.y47{bottom:848.445000px;}
.y13a{bottom:850.065000px;}
.y14f{bottom:858.525000px;}
.y188{bottom:859.394919px;}
.y186{bottom:859.425000px;}
.y105{bottom:859.965000px;}
.y238{bottom:865.365000px;}
.yb6{bottom:871.094919px;}
.yb8{bottom:872.745000px;}
.yb5{bottom:874.185000px;}
.y22{bottom:880.305000px;}
.ye9{bottom:881.565000px;}
.ya{bottom:882.825000px;}
.y2d{bottom:883.005000px;}
.y120{bottom:884.625000px;}
.y78{bottom:885.705000px;}
.ydb{bottom:887.145000px;}
.ycb{bottom:888.405000px;}
.y46{bottom:889.845000px;}
.y139{bottom:891.465000px;}
.y14c{bottom:900.645000px;}
.y103{bottom:901.365000px;}
.y237{bottom:906.765000px;}
.y17c{bottom:917.894919px;}
.y17a{bottom:917.925000px;}
.yb4{bottom:918.285000px;}
.y21{bottom:921.705000px;}
.y9{bottom:924.270000px;}
.y2c{bottom:924.405000px;}
.y11f{bottom:926.070000px;}
.y77{bottom:928.590000px;}
.y45{bottom:931.290000px;}
.y138{bottom:932.910000px;}
.y102{bottom:942.810000px;}
.y236{bottom:948.210000px;}
.yb3{bottom:959.730000px;}
.y20{bottom:964.410000px;}
.y8{bottom:965.670000px;}
.y2b{bottom:965.850000px;}
.y11e{bottom:967.470000px;}
.y76{bottom:969.990000px;}
.y170{bottom:970.319919px;}
.y16e{bottom:970.350000px;}
.y44{bottom:972.690000px;}
.y137{bottom:974.310000px;}
.y101{bottom:984.210000px;}
.y235{bottom:989.610000px;}
.ya2{bottom:995.294919px;}
.y7{bottom:1007.070000px;}
.y1f{bottom:1007.250000px;}
.y11d{bottom:1008.870000px;}
.y75{bottom:1011.390000px;}
.y43{bottom:1014.090000px;}
.y136{bottom:1015.710000px;}
.yb2{bottom:1017.870000px;}
.y165{bottom:1022.819919px;}
.y163{bottom:1022.910000px;}
.yff{bottom:1025.610000px;}
.y234{bottom:1031.730000px;}
.y6{bottom:1048.470000px;}
.y1e{bottom:1048.650000px;}
.y11c{bottom:1050.270000px;}
.ye8{bottom:1052.610000px;}
.y74{bottom:1054.050000px;}
.y42{bottom:1055.490000px;}
.y135{bottom:1057.110000px;}
.y161{bottom:1073.130000px;}
.ya1{bottom:1074.750000px;}
.y5{bottom:1089.870000px;}
.y1d{bottom:1090.050000px;}
.yfe{bottom:1091.670000px;}
.y41{bottom:1096.890000px;}
.y134{bottom:1098.510000px;}
.y9c{bottom:1109.069919px;}
.ya0{bottom:1127.130000px;}
.y4{bottom:1135.230000px;}
.y1c{bottom:1135.410000px;}
.yfd{bottom:1137.030000px;}
.y40{bottom:1138.290000px;}
.y133{bottom:1139.910000px;}
.h3{height:17.280000px;}
.h36{height:20.700000px;}
.h30{height:22.499888px;}
.h2b{height:22.499928px;}
.h17{height:29.644629px;}
.he{height:29.688009px;}
.h94{height:29.880000px;}
.h18{height:29.960919px;}
.h25{height:30.058850px;}
.h55{height:30.060000px;}
.h95{height:30.074147px;}
.h56{height:30.074208px;}
.h19{height:33.788072px;}
.hf{height:33.837515px;}
.h6f{height:33.908238px;}
.h7f{height:33.960845px;}
.h51{height:33.994747px;}
.h60{height:34.010389px;}
.h68{height:34.052197px;}
.h78{height:34.079825px;}
.h86{height:34.136322px;}
.h3a{height:34.137890px;}
.h1a{height:34.148569px;}
.h90{height:34.215456px;}
.h27{height:34.260188px;}
.h42{height:34.274041px;}
.h4a{height:34.322691px;}
.h59{height:34.437955px;}
.h7{height:34.884492px;}
.h1c{height:37.971548px;}
.h11{height:38.027112px;}
.h63{height:38.221391px;}
.h2e{height:41.400000px;}
.h2f{height:41.436000px;}
.h31{height:43.200000px;}
.h2{height:43.215117px;}
.h32{height:44.100000px;}
.h1f{height:45.750382px;}
.h14{height:47.901094px;}
.h98{height:48.796875px;}
.h38{height:49.499287px;}
.h37{height:49.500000px;}
.h34{height:50.800781px;}
.h15{height:50.924021px;}
.h6d{height:50.924061px;}
.hc{height:50.998559px;}
.h6c{height:51.156000px;}
.h6e{height:51.377739px;}
.h50{height:51.508817px;}
.h7e{height:51.592253px;}
.h5f{height:51.667518px;}
.h67{height:51.731032px;}
.h77{height:51.773003px;}
.h85{height:51.826882px;}
.h39{height:51.840856px;}
.h8f{height:51.852042px;}
.h5{height:52.066406px;}
.h41{height:52.101356px;}
.h49{height:52.175311px;}
.h58{height:52.178300px;}
.h71{height:52.380000px;}
.h46{height:52.416000px;}
.h3f{height:52.500984px;}
.h3e{height:52.560000px;}
.h72{height:52.575465px;}
.h47{height:52.575505px;}
.h7d{height:53.999167px;}
.h7c{height:54.000000px;}
.h8e{height:57.000228px;}
.h23{height:57.074809px;}
.h8d{height:57.096000px;}
.h97{height:57.796523px;}
.h21{height:57.860976px;}
.h4f{height:58.498956px;}
.h4e{height:58.500000px;}
.h1b{height:58.558827px;}
.h10{height:58.644517px;}
.h52{height:58.708227px;}
.h80{height:58.803324px;}
.h61{height:58.889109px;}
.h69{height:58.961500px;}
.h79{height:59.009337px;}
.h87{height:59.070747px;}
.h3b{height:59.086675px;}
.h91{height:59.099423px;}
.h28{height:59.176688px;}
.h8{height:59.343750px;}
.h43{height:59.383585px;}
.h4{height:59.436914px;}
.h2c{height:59.463894px;}
.h4b{height:59.467876px;}
.h5a{height:59.471283px;}
.h65{height:61.380000px;}
.h5e{height:61.501561px;}
.h5d{height:61.560000px;}
.h66{height:61.577164px;}
.h26{height:62.105262px;}
.h6{height:62.244492px;}
.h8b{height:63.792435px;}
.h22{height:65.025042px;}
.h2d{height:65.103750px;}
.h1d{height:65.809298px;}
.h12{height:65.905598px;}
.h54{height:65.977196px;}
.h82{height:66.084068px;}
.h64{height:66.180474px;}
.h6b{height:66.261828px;}
.h7b{height:66.315588px;}
.h89{height:66.384601px;}
.h3d{height:66.402501px;}
.h93{height:66.416828px;}
.h29{height:66.503659px;}
.ha{height:66.691406px;}
.h45{height:66.736174px;}
.h4d{height:66.830901px;}
.h5c{height:66.834730px;}
.h70{height:69.406568px;}
.h53{height:69.535464px;}
.h81{height:69.708102px;}
.h62{height:69.806350px;}
.h6a{height:69.879925px;}
.h8c{height:69.911337px;}
.h7a{height:69.911610px;}
.h88{height:69.985844px;}
.h3c{height:70.091160px;}
.h92{height:70.094779px;}
.hb{height:70.298212px;}
.h44{height:70.482894px;}
.h4c{height:70.563599px;}
.h74{height:70.563674px;}
.h20{height:70.622153px;}
.h96{height:70.630085px;}
.h5b{height:70.664412px;}
.h75{height:76.500000px;}
.h8a{height:76.501480px;}
.h76{height:76.501501px;}
.h35{height:82.800000px;}
.h33{height:82.836000px;}
.h40{height:87.333490px;}
.h48{height:87.457454px;}
.h73{height:90.673041px;}
.h57{height:90.746055px;}
.h1e{height:98.642582px;}
.h13{height:98.786928px;}
.h2a{height:99.755489px;}
.hd{height:103.256502px;}
.h24{height:104.333085px;}
.h84{height:111.078585px;}
.h83{height:111.096000px;}
.h16{height:113.371173px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h9{height:1263.060000px;}
.w3{width:7.560000px;}
.w16{width:11.880000px;}
.w9{width:14.940000px;}
.wd{width:21.075210px;}
.w8{width:21.075220px;}
.w19{width:42.120000px;}
.w1d{width:47.160000px;}
.w14{width:53.640000px;}
.w17{width:65.916000px;}
.wa{width:86.580000px;}
.w31{width:87.696000px;}
.w32{width:97.020000px;}
.w33{width:97.056000px;}
.w6{width:97.572610px;}
.w21{width:98.997336px;}
.wf{width:106.020000px;}
.w30{width:114.660000px;}
.w29{width:121.500139px;}
.w1e{width:126.000000px;}
.w24{width:126.004016px;}
.w1b{width:132.696000px;}
.w2f{width:133.574556px;}
.w2b{width:145.649037px;}
.w2a{width:148.500130px;}
.w25{width:154.432558px;}
.w2d{width:155.924996px;}
.w26{width:157.497459px;}
.wc{width:173.370000px;}
.w11{width:173.910000px;}
.w27{width:175.506531px;}
.w1c{width:175.530000px;}
.w20{width:181.290000px;}
.w28{width:182.915027px;}
.w2c{width:184.504031px;}
.w22{width:192.072916px;}
.w2e{width:194.923889px;}
.w5{width:208.422511px;}
.w34{width:211.170000px;}
.w4{width:219.073814px;}
.w18{width:222.690000px;}
.w23{width:228.070756px;}
.w1f{width:244.335000px;}
.w1a{width:258.870000px;}
.w15{width:284.970000px;}
.w7{width:286.584572px;}
.w13{width:330.735000px;}
.w12{width:350.490000px;}
.w10{width:400.395000px;}
.wb{width:420.375000px;}
.we{width:680.325000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:3.007150px;}
.x25{left:4.221946px;}
.x47{left:8.100000px;}
.x4b{left:10.260000px;}
.x45{left:14.220000px;}
.x17{left:15.250830px;}
.x3c{left:17.640000px;}
.x43{left:19.800000px;}
.x18{left:26.404066px;}
.x53{left:32.779414px;}
.x10{left:37.147951px;}
.x46{left:39.420000px;}
.x51{left:46.213577px;}
.x4f{left:48.780000px;}
.x11{left:51.083459px;}
.xe{left:53.981106px;}
.x48{left:55.080000px;}
.xc{left:56.914498px;}
.x64{left:60.767335px;}
.x4d{left:61.785000px;}
.xb{left:62.893037px;}
.x6a{left:64.020517px;}
.x21{left:68.659116px;}
.x5a{left:69.847478px;}
.x8{left:72.244454px;}
.x52{left:73.817039px;}
.x49{left:76.500000px;}
.x20{left:78.614886px;}
.x1d{left:80.452020px;}
.x61{left:83.335761px;}
.x41{left:84.414000px;}
.x58{left:85.740041px;}
.x6e{left:87.191978px;}
.x5e{left:88.728227px;}
.x5b{left:90.441718px;}
.x6c{left:92.209480px;}
.xd{left:93.916448px;}
.x22{left:96.249021px;}
.x1f{left:99.114421px;}
.x54{left:101.080068px;}
.x66{left:103.429501px;}
.x5d{left:104.446002px;}
.x36{left:106.415987px;}
.x1{left:108.035987px;}
.x3b{left:111.689990px;}
.x6d{left:113.386648px;}
.x7{left:116.189990px;}
.x1a{left:117.372375px;}
.x55{left:120.471224px;}
.x6b{left:124.177301px;}
.x71{left:126.622569px;}
.x6f{left:128.821157px;}
.x5f{left:129.860008px;}
.x65{left:131.119577px;}
.x5c{left:134.145000px;}
.x70{left:135.551455px;}
.x1e{left:139.009115px;}
.x63{left:141.388429px;}
.x3a{left:143.145000px;}
.x57{left:144.725490px;}
.x62{left:148.286116px;}
.x39{left:150.165000px;}
.x74{left:151.590881px;}
.x29{left:153.569987px;}
.x68{left:156.337370px;}
.x73{left:157.872981px;}
.x15{left:160.826918px;}
.x60{left:162.585000px;}
.x72{left:164.025000px;}
.x2a{left:165.989987px;}
.xa{left:169.016825px;}
.x14{left:171.433510px;}
.x67{left:183.645000px;}
.x2b{left:187.409987px;}
.x69{left:191.025000px;}
.x37{left:192.990000px;}
.x13{left:199.007665px;}
.x56{left:200.235000px;}
.x75{left:203.115000px;}
.x9{left:209.330573px;}
.x2e{left:211.529987px;}
.x19{left:213.689987px;}
.x76{left:221.070000px;}
.x2f{left:223.949987px;}
.x59{left:236.235000px;}
.x1c{left:254.587622px;}
.x1b{left:269.392176px;}
.x4c{left:279.570000px;}
.x50{left:287.714980px;}
.x77{left:308.775000px;}
.x30{left:323.534987px;}
.x16{left:324.614987px;}
.x24{left:329.114980px;}
.x12{left:335.234987px;}
.x27{left:348.554987px;}
.x26{left:350.174987px;}
.x28{left:360.974987px;}
.x42{left:365.295000px;}
.x2c{left:376.814987px;}
.x2d{left:389.234987px;}
.x23{left:402.734987px;}
.x5{left:405.974987px;}
.x6{left:418.394987px;}
.x31{left:429.194987px;}
.x35{left:439.095000px;}
.x32{left:441.614987px;}
.x2{left:442.695000px;}
.x3e{left:445.035000px;}
.x4a{left:446.654987px;}
.x33{left:447.914987px;}
.x3d{left:456.915000px;}
.x34{left:460.334987px;}
.x44{left:497.985000px;}
.x78{left:502.845000px;}
.x3f{left:522.825000px;}
.x4e{left:523.905000px;}
.x7a{left:556.484987px;}
.x7b{left:561.884987px;}
.x7c{left:568.184987px;}
.x38{left:613.365000px;}
.x3{left:699.449987px;}
.x4{left:711.869987px;}
.x40{left:745.530000px;}
.x79{left:786.749987px;}
@media print{
.ve{vertical-align:-50.934761pt;}
.v9{vertical-align:-49.972027pt;}
.v6{vertical-align:-48.953664pt;}
.vc{vertical-align:-39.931886pt;}
.v4{vertical-align:-28.045805pt;}
.v2{vertical-align:-24.320000pt;}
.vd{vertical-align:-21.235979pt;}
.va{vertical-align:-17.471199pt;}
.vf{vertical-align:-13.614070pt;}
.vb{vertical-align:-12.610322pt;}
.v7{vertical-align:-10.625792pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.120000pt;}
.v10{vertical-align:10.683940pt;}
.v11{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v5{vertical-align:39.389074pt;}
.ls49{letter-spacing:-1.122591pt;}
.ls32{letter-spacing:-0.886372pt;}
.ls40{letter-spacing:-0.806577pt;}
.ls3b{letter-spacing:-0.805586pt;}
.ls3a{letter-spacing:-0.772431pt;}
.ls36{letter-spacing:-0.757096pt;}
.ls54{letter-spacing:-0.737186pt;}
.ls2f{letter-spacing:-0.700767pt;}
.ls5e{letter-spacing:-0.643693pt;}
.ls4a{letter-spacing:-0.626562pt;}
.ls2e{letter-spacing:-0.513024pt;}
.ls35{letter-spacing:-0.497595pt;}
.ls31{letter-spacing:-0.496890pt;}
.ls59{letter-spacing:-0.385249pt;}
.ls55{letter-spacing:-0.288510pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls41{letter-spacing:-0.214560pt;}
.ls3c{letter-spacing:-0.214296pt;}
.ls50{letter-spacing:-0.213984pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.156461pt;}
.ls33{letter-spacing:-0.128000pt;}
.ls4d{letter-spacing:-0.084416pt;}
.ls37{letter-spacing:-0.027041pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.042667pt;}
.ls10{letter-spacing:0.063506pt;}
.ls4{letter-spacing:0.064000pt;}
.ls58{letter-spacing:0.079140pt;}
.ls3{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.161067pt;}
.ls46{letter-spacing:0.187016pt;}
.lsf{letter-spacing:0.192000pt;}
.ls4e{letter-spacing:0.208930pt;}
.ls2d{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.736000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls29{letter-spacing:8.890842pt;}
.ls22{letter-spacing:18.738486pt;}
.ls26{letter-spacing:39.143332pt;}
.lse{letter-spacing:42.570766pt;}
.ls11{letter-spacing:43.886109pt;}
.lsd{letter-spacing:44.054577pt;}
.ls1a{letter-spacing:48.559170pt;}
.lsb{letter-spacing:56.241339pt;}
.ls5b{letter-spacing:60.015046pt;}
.ls3e{letter-spacing:60.655911pt;}
.ls4f{letter-spacing:61.254588pt;}
.lsa{letter-spacing:62.780886pt;}
.ls20{letter-spacing:63.372590pt;}
.ls21{letter-spacing:63.714079pt;}
.ls1f{letter-spacing:64.690907pt;}
.ls1c{letter-spacing:72.133099pt;}
.ls1e{letter-spacing:72.621867pt;}
.ls7{letter-spacing:79.294790pt;}
.ls12{letter-spacing:79.512370pt;}
.ls27{letter-spacing:89.924293pt;}
.ls2a{letter-spacing:112.536971pt;}
.ls28{letter-spacing:116.461621pt;}
.ls42{letter-spacing:118.034314pt;}
.ls38{letter-spacing:119.520326pt;}
.ls51{letter-spacing:136.539872pt;}
.ls57{letter-spacing:136.618019pt;}
.ls44{letter-spacing:136.643565pt;}
.ls5f{letter-spacing:139.314417pt;}
.ls30{letter-spacing:143.435793pt;}
.ls60{letter-spacing:143.620712pt;}
.ls39{letter-spacing:148.198867pt;}
.ls5d{letter-spacing:153.198860pt;}
.ls3f{letter-spacing:153.776729pt;}
.ls53{letter-spacing:153.907411pt;}
.ls23{letter-spacing:163.835220pt;}
.ls25{letter-spacing:165.323874pt;}
.lsc{letter-spacing:171.192245pt;}
.ls4c{letter-spacing:176.325053pt;}
.ls47{letter-spacing:176.690696pt;}
.ls34{letter-spacing:185.514633pt;}
.ls2c{letter-spacing:189.999818pt;}
.ls19{letter-spacing:193.166312pt;}
.ls5c{letter-spacing:194.301987pt;}
.ls1d{letter-spacing:219.668472pt;}
.ls3d{letter-spacing:234.041252pt;}
.ls24{letter-spacing:250.389138pt;}
.ls48{letter-spacing:255.974982pt;}
.ls52{letter-spacing:264.404704pt;}
.ls2b{letter-spacing:275.065082pt;}
.ls9{letter-spacing:297.803370pt;}
.ls8{letter-spacing:298.661213pt;}
.ls5a{letter-spacing:313.441026pt;}
.ls43{letter-spacing:320.521944pt;}
.ls56{letter-spacing:320.702314pt;}
.ls4b{letter-spacing:320.799860pt;}
.ls14{letter-spacing:394.255396pt;}
.ls1b{letter-spacing:492.239665pt;}
.ls13{letter-spacing:657.092326pt;}
.ws4{word-spacing:-35.136000pt;}
.ws24{word-spacing:-19.577582pt;}
.ws2b{word-spacing:-16.256000pt;}
.ws2f{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws12{word-spacing:-11.520000pt;}
.ws6{word-spacing:-10.881067pt;}
.ws0{word-spacing:-10.720000pt;}
.wsf{word-spacing:-9.237081pt;}
.wsb{word-spacing:-9.109791pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:1.915053pt;}
.ws10{word-spacing:5.837835pt;}
.ws8{word-spacing:6.349693pt;}
.ws1e{word-spacing:6.606167pt;}
.ws21{word-spacing:18.100261pt;}
.ws25{word-spacing:20.367607pt;}
.ws29{word-spacing:22.750210pt;}
.ws28{word-spacing:22.888100pt;}
.ws22{word-spacing:23.086352pt;}
.ws20{word-spacing:29.246718pt;}
.ws17{word-spacing:29.587848pt;}
.ws1f{word-spacing:43.613527pt;}
.ws16{word-spacing:66.420985pt;}
.ws1c{word-spacing:71.252724pt;}
.ws1a{word-spacing:87.350325pt;}
.ws2e{word-spacing:98.835948pt;}
.ws2d{word-spacing:100.512465pt;}
.ws27{word-spacing:102.038228pt;}
.ws1b{word-spacing:110.647823pt;}
.ws1d{word-spacing:120.698548pt;}
.ws15{word-spacing:123.981096pt;}
.ws26{word-spacing:128.424205pt;}
.ws2c{word-spacing:150.800566pt;}
.ws2a{word-spacing:153.116273pt;}
.ws9{word-spacing:158.051514pt;}
.wsd{word-spacing:161.988702pt;}
.ws23{word-spacing:168.872433pt;}
.ws11{word-spacing:171.994441pt;}
.ws19{word-spacing:179.895215pt;}
.wse{word-spacing:643.701966pt;}
.wsa{word-spacing:647.682303pt;}
.ws7{word-spacing:648.891556pt;}
._1c{margin-left:-6.400000pt;}
._d{margin-left:-4.544000pt;}
._e{margin-left:-3.648000pt;}
._13{margin-left:-2.624000pt;}
._0{margin-left:-0.960640pt;}
._3{width:0.896640pt;}
._6{width:1.896107pt;}
._10{width:3.018667pt;}
._5{width:4.352000pt;}
._8{width:5.824000pt;}
._7{width:7.104000pt;}
._9{width:8.064000pt;}
._a{width:9.258027pt;}
._11{width:10.261973pt;}
._12{width:11.559467pt;}
._14{width:13.184000pt;}
._15{width:14.208000pt;}
._20{width:15.105280pt;}
._f{width:17.002667pt;}
._1{width:18.432000pt;}
._2{width:19.904000pt;}
._28{width:21.045333pt;}
._c{width:21.972693pt;}
._b{width:23.019307pt;}
._16{width:24.788693pt;}
._22{width:27.498667pt;}
._23{width:28.565333pt;}
._26{width:29.696000pt;}
._24{width:34.240000pt;}
._25{width:35.338667pt;}
._27{width:40.960000pt;}
._29{width:46.784000pt;}
._4{width:55.850667pt;}
._1f{width:89.600000pt;}
._31{width:110.444843pt;}
._1d{width:112.987954pt;}
._17{width:115.097300pt;}
._33{width:117.429411pt;}
._36{width:133.662632pt;}
._19{width:137.600000pt;}
._2b{width:138.794156pt;}
._2c{width:140.190041pt;}
._34{width:156.683809pt;}
._32{width:164.769339pt;}
._1b{width:175.360000pt;}
._1a{width:177.280000pt;}
._2e{width:178.356279pt;}
._30{width:182.332579pt;}
._2f{width:183.239296pt;}
._18{width:190.496663pt;}
._35{width:254.429691pt;}
._1e{width:270.088862pt;}
._2a{width:359.655734pt;}
._2d{width:471.194133pt;}
._21{width:752.138667pt;}
.fsf{font-size:36.094001pt;}
.fsb{font-size:36.439163pt;}
.fs6{font-size:36.492486pt;}
.fs2e{font-size:36.568758pt;}
.fs36{font-size:36.625493pt;}
.fs22{font-size:36.662055pt;}
.fs29{font-size:36.678924pt;}
.fs2c{font-size:36.724013pt;}
.fs33{font-size:36.753808pt;}
.fs39{font-size:36.814738pt;}
.fs17{font-size:36.816429pt;}
.fsc{font-size:36.827946pt;}
.fs3d{font-size:36.900081pt;}
.fs12{font-size:36.948322pt;}
.fs1b{font-size:36.963263pt;}
.fs1f{font-size:37.015730pt;}
.fs26{font-size:37.140038pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs10{font-size:62.400884pt;}
.fsd{font-size:63.153490pt;}
.fs7{font-size:63.245904pt;}
.fs21{font-size:63.314612pt;}
.fs35{font-size:63.417171pt;}
.fs28{font-size:63.509687pt;}
.fs2b{font-size:63.587758pt;}
.fs32{font-size:63.639349pt;}
.fs38{font-size:63.705576pt;}
.fs16{font-size:63.722754pt;}
.fs3c{font-size:63.736503pt;}
.fs13{font-size:63.819830pt;}
.fs2{font-size:64.000000pt;}
.fs1a{font-size:64.042961pt;}
.fs15{font-size:64.129570pt;}
.fs1e{font-size:64.133865pt;}
.fs25{font-size:64.137539pt;}
.fs2f{font-size:66.605588pt;}
.fs23{font-size:66.729282pt;}
.fs37{font-size:66.894954pt;}
.fs2a{font-size:66.989237pt;}
.fs2d{font-size:67.059843pt;}
.fs3b{font-size:67.089986pt;}
.fs34{font-size:67.090249pt;}
.fs3a{font-size:67.161487pt;}
.fs18{font-size:67.262553pt;}
.fs3e{font-size:67.266026pt;}
.fs4{font-size:67.461249pt;}
.fs1c{font-size:67.638478pt;}
.fs20{font-size:67.715926pt;}
.fs31{font-size:67.715998pt;}
.fs3f{font-size:67.779729pt;}
.fs27{font-size:67.812671pt;}
.fs1{font-size:74.880000pt;}
.fs19{font-size:83.809049pt;}
.fs1d{font-size:83.928010pt;}
.fs30{font-size:87.013829pt;}
.fs24{font-size:87.083896pt;}
.fse{font-size:94.661750pt;}
.fs8{font-size:94.800271pt;}
.fs14{font-size:95.729745pt;}
.fs5{font-size:99.089470pt;}
.fs11{font-size:100.122606pt;}
.fsa{font-size:108.795952pt;}
.y0{bottom:0.000000pt;}
.y10f{bottom:2.570569pt;}
.yb7{bottom:2.570598pt;}
.y3{bottom:2.880000pt;}
.y162{bottom:3.520000pt;}
.y94{bottom:3.902183pt;}
.y89{bottom:3.907906pt;}
.y228{bottom:4.367873pt;}
.y1ef{bottom:4.478687pt;}
.y1ad{bottom:4.550291pt;}
.y1be{bottom:4.555887pt;}
.y219{bottom:4.624567pt;}
.y1e3{bottom:4.624572pt;}
.y192{bottom:4.629403pt;}
.y1cc{bottom:4.682664pt;}
.yb0{bottom:4.762400pt;}
.y20c{bottom:4.877910pt;}
.ya7{bottom:4.892024pt;}
.yaa{bottom:4.892026pt;}
.y22e{bottom:5.149557pt;}
.y199{bottom:5.149606pt;}
.y227{bottom:5.629756pt;}
.y1ac{bottom:5.785242pt;}
.y1bd{bottom:5.792357pt;}
.y20b{bottom:6.121837pt;}
.y16b{bottom:6.230306pt;}
.y166{bottom:6.230330pt;}
.y1d0{bottom:7.445273pt;}
.y22b{bottom:7.520000pt;}
.y171{bottom:7.531216pt;}
.y17d{bottom:7.541908pt;}
.yac{bottom:7.548479pt;}
.y195{bottom:7.680000pt;}
.y1e9{bottom:7.724072pt;}
.y1c2{bottom:7.840000pt;}
.y216{bottom:7.848874pt;}
.y1e0{bottom:7.848878pt;}
.y18e{bottom:7.857043pt;}
.y191{bottom:7.857048pt;}
.y189{bottom:7.857054pt;}
.y197{bottom:8.010393pt;}
.y177{bottom:8.722072pt;}
.y172{bottom:8.722080pt;}
.y1d5{bottom:8.734424pt;}
.y1d1{bottom:8.734430pt;}
.y183{bottom:8.734453pt;}
.y17e{bottom:8.734463pt;}
.y221{bottom:8.865195pt;}
.y1a6{bottom:9.035358pt;}
.y1b7{bottom:9.046460pt;}
.y1bc{bottom:9.046464pt;}
.y1b6{bottom:9.046485pt;}
.y1e8{bottom:9.120000pt;}
.y19d{bottom:9.280000pt;}
.y230{bottom:9.313600pt;}
.y19b{bottom:9.313601pt;}
.y231{bottom:9.313603pt;}
.y22f{bottom:9.313607pt;}
.y198{bottom:9.313620pt;}
.y19c{bottom:9.313646pt;}
.y19a{bottom:9.313660pt;}
.y1fe{bottom:9.362929pt;}
.y20a{bottom:9.362931pt;}
.y1cb{bottom:12.454631pt;}
.yaf{bottom:14.514343pt;}
.y167{bottom:14.590662pt;}
.y1c5{bottom:14.795376pt;}
.y97{bottom:14.828269pt;}
.y88{bottom:14.849971pt;}
.y8b{bottom:14.849978pt;}
.y1ee{bottom:15.090626pt;}
.y99{bottom:15.283956pt;}
.y8e{bottom:15.306335pt;}
.y95{bottom:15.804177pt;}
.y9f{bottom:15.903604pt;}
.y9e{bottom:15.903621pt;}
.ya6{bottom:15.939231pt;}
.ya9{bottom:15.939250pt;}
.y1ea{bottom:16.064597pt;}
.y18b{bottom:16.170693pt;}
.y209{bottom:16.269808pt;}
.y226{bottom:16.274827pt;}
.y92{bottom:16.291472pt;}
.y164{bottom:16.320000pt;}
.yb1{bottom:16.393242pt;}
.y1ab{bottom:16.413189pt;}
.y1bb{bottom:16.433369pt;}
.y22d{bottom:16.497852pt;}
.y1c0{bottom:16.960000pt;}
.y86{bottom:17.064483pt;}
.y173{bottom:17.122681pt;}
.y1d2{bottom:17.146951pt;}
.y17f{bottom:17.146987pt;}
.y21f{bottom:17.244514pt;}
.y1a4{bottom:17.355711pt;}
.y1b4{bottom:17.377047pt;}
.y1ce{bottom:17.600000pt;}
.y17b{bottom:17.640000pt;}
.y16f{bottom:17.760000pt;}
.ya3{bottom:18.175049pt;}
.y225{bottom:18.182734pt;}
.y1e6{bottom:18.240000pt;}
.y16d{bottom:18.720000pt;}
.y16c{bottom:18.723347pt;}
.y169{bottom:18.723368pt;}
.y1c8{bottom:18.860973pt;}
.y1ca{bottom:18.860998pt;}
.y1c7{bottom:18.861003pt;}
.y98{bottom:18.893893pt;}
.y8d{bottom:18.921556pt;}
.y8c{bottom:18.921559pt;}
.y21b{bottom:19.706667pt;}
.y193{bottom:20.000000pt;}
.yae{bottom:20.053971pt;}
.yab{bottom:20.053984pt;}
.y215{bottom:20.062074pt;}
.y218{bottom:20.062076pt;}
.y211{bottom:20.062077pt;}
.y1df{bottom:20.062084pt;}
.y1e2{bottom:20.062087pt;}
.y1db{bottom:20.062089pt;}
.y1eb{bottom:20.153695pt;}
.y190{bottom:20.245360pt;}
.y18c{bottom:20.245377pt;}
.y187{bottom:20.320000pt;}
.y111{bottom:21.120000pt;}
.y178{bottom:21.241697pt;}
.y175{bottom:21.241707pt;}
.y1d6{bottom:21.271814pt;}
.y1d4{bottom:21.271823pt;}
.y184{bottom:21.271850pt;}
.y181{bottom:21.271859pt;}
.y179{bottom:21.280000pt;}
.y229{bottom:21.306667pt;}
.y185{bottom:21.320000pt;}
.y21e{bottom:21.353838pt;}
.y224{bottom:21.353840pt;}
.y220{bottom:21.353843pt;}
.y1a2{bottom:21.483652pt;}
.y1aa{bottom:21.483675pt;}
.y1a5{bottom:21.483688pt;}
.y1b2{bottom:21.510064pt;}
.y1ba{bottom:21.510086pt;}
.y1b5{bottom:21.510098pt;}
.y1f8{bottom:21.573306pt;}
.y208{bottom:21.573314pt;}
.y1fc{bottom:21.573316pt;}
.y1af{bottom:21.600000pt;}
.y19f{bottom:21.760000pt;}
.y100{bottom:21.920000pt;}
.y10a{bottom:21.946667pt;}
.y104{bottom:21.960000pt;}
.y9d{bottom:22.915064pt;}
.y115{bottom:23.040000pt;}
.y112{bottom:23.520000pt;}
.y116{bottom:24.320000pt;}
.y1c1{bottom:26.240000pt;}
.y210{bottom:27.193931pt;}
.y1e7{bottom:27.520000pt;}
.y1c9{bottom:27.608597pt;}
.y1d8{bottom:28.320000pt;}
.y16a{bottom:28.762854pt;}
.y168{bottom:28.762868pt;}
.y1c6{bottom:28.843953pt;}
.y1c4{bottom:28.843963pt;}
.yad{bottom:29.838187pt;}
.y1da{bottom:29.864915pt;}
.ya8{bottom:30.129467pt;}
.y1ec{bottom:30.182567pt;}
.y18d{bottom:30.253774pt;}
.y1ed{bottom:30.344238pt;}
.y87{bottom:30.351493pt;}
.y18f{bottom:30.417511pt;}
.y176{bottom:31.380191pt;}
.y174{bottom:31.380199pt;}
.y1f7{bottom:31.395381pt;}
.y1d3{bottom:31.424723pt;}
.y182{bottom:31.424733pt;}
.y180{bottom:31.424743pt;}
.y21d{bottom:31.448935pt;}
.y1a1{bottom:31.525825pt;}
.y93{bottom:31.542503pt;}
.y207{bottom:31.558457pt;}
.y1b1{bottom:31.564601pt;}
.ya5{bottom:31.587150pt;}
.y223{bottom:31.610112pt;}
.y1a9{bottom:31.689054pt;}
.y1b9{bottom:31.728012pt;}
.y222{bottom:32.840557pt;}
.y1a8{bottom:32.923778pt;}
.y1b8{bottom:32.964253pt;}
.y1f3{bottom:34.400000pt;}
.y96{bottom:34.957522pt;}
.y8a{bottom:35.008689pt;}
.y212{bottom:38.625756pt;}
.y1dc{bottom:38.625772pt;}
.y153{bottom:40.320000pt;}
.y14d{bottom:40.360000pt;}
.ya4{bottom:40.723196pt;}
.y18a{bottom:41.208902pt;}
.y1f9{bottom:41.412370pt;}
.y1e4{bottom:42.720000pt;}
.y217{bottom:42.729178pt;}
.y214{bottom:42.729181pt;}
.y1e1{bottom:42.729192pt;}
.y1de{bottom:42.729199pt;}
.y1f1{bottom:43.680000pt;}
.y1a3{bottom:43.746500pt;}
.y1a7{bottom:43.746503pt;}
.y1b3{bottom:43.800276pt;}
.y20d{bottom:45.280000pt;}
.y206{bottom:45.537160pt;}
.y1fb{bottom:45.537165pt;}
.y2{bottom:47.840000pt;}
.y1{bottom:50.720000pt;}
.y205{bottom:52.772445pt;}
.y213{bottom:52.791859pt;}
.y1dd{bottom:52.791866pt;}
.y1f2{bottom:52.800000pt;}
.y204{bottom:54.016106pt;}
.y1fd{bottom:57.257862pt;}
.y203{bottom:57.257864pt;}
.y152{bottom:58.720000pt;}
.y14e{bottom:58.760000pt;}
.y202{bottom:64.165669pt;}
.y201{bottom:66.064328pt;}
.y1f6{bottom:69.469167pt;}
.y1fa{bottom:69.469174pt;}
.y1f5{bottom:79.289915pt;}
.y200{bottom:79.452992pt;}
.y1ff{bottom:80.697996pt;}
.yca{bottom:103.680000pt;}
.y66{bottom:115.680000pt;}
.yda{bottom:116.480000pt;}
.y3f{bottom:122.400000pt;}
.y233{bottom:123.360000pt;}
.ye7{bottom:123.680000pt;}
.y132{bottom:123.840000pt;}
.y58{bottom:126.080000pt;}
.y73{bottom:128.480000pt;}
.y14b{bottom:130.080000pt;}
.yc9{bottom:140.320000pt;}
.y9b{bottom:150.720000pt;}
.y65{bottom:152.480000pt;}
.yd9{bottom:153.280000pt;}
.y160{bottom:158.720000pt;}
.y3e{bottom:159.200000pt;}
.y232{bottom:160.160000pt;}
.ye6{bottom:160.480000pt;}
.y131{bottom:160.640000pt;}
.y57{bottom:162.880000pt;}
.y1b{bottom:165.146667pt;}
.y72{bottom:165.280000pt;}
.y14a{bottom:166.880000pt;}
.y22a{bottom:175.840000pt;}
.y22c{bottom:175.906649pt;}
.yfc{bottom:177.600000pt;}
.yc8{bottom:178.400000pt;}
.y91{bottom:181.373333pt;}
.y64{bottom:189.280000pt;}
.yd8{bottom:190.080000pt;}
.y11b{bottom:193.440000pt;}
.y15f{bottom:195.520000pt;}
.y1a{bottom:195.866667pt;}
.y3d{bottom:196.000000pt;}
.ye5{bottom:197.280000pt;}
.y130{bottom:197.440000pt;}
.y56{bottom:199.680000pt;}
.y9a{bottom:200.000000pt;}
.y71{bottom:202.080000pt;}
.y21a{bottom:202.400000pt;}
.y21c{bottom:202.506649pt;}
.y149{bottom:203.680000pt;}
.y11a{bottom:208.320000pt;}
.y15e{bottom:211.066667pt;}
.yfb{bottom:214.426667pt;}
.yc7{bottom:217.626667pt;}
.y63{bottom:226.106667pt;}
.yd7{bottom:228.026667pt;}
.y19{bottom:232.666667pt;}
.y3c{bottom:232.826667pt;}
.ye4{bottom:234.106667pt;}
.y12f{bottom:234.266667pt;}
.y55{bottom:236.506667pt;}
.y70{bottom:238.906667pt;}
.y148{bottom:240.506667pt;}
.y119{bottom:245.146667pt;}
.y90{bottom:246.746667pt;}
.y15d{bottom:247.866667pt;}
.yfa{bottom:251.226667pt;}
.y20e{bottom:253.146667pt;}
.y20f{bottom:253.173315pt;}
.yc6{bottom:255.706667pt;}
.y62{bottom:262.906667pt;}
.yd6{bottom:266.106667pt;}
.y18{bottom:269.466667pt;}
.y3b{bottom:269.626667pt;}
.ye3{bottom:270.906667pt;}
.y12e{bottom:271.066667pt;}
.y54{bottom:273.306667pt;}
.y6f{bottom:275.706667pt;}
.y85{bottom:277.173315pt;}
.y147{bottom:277.306667pt;}
.y118{bottom:281.946667pt;}
.yf9{bottom:288.026667pt;}
.yc5{bottom:292.346667pt;}
.y8f{bottom:295.866667pt;}
.y61{bottom:299.706667pt;}
.yd5{bottom:302.906667pt;}
.y17{bottom:306.266667pt;}
.y3a{bottom:306.426667pt;}
.ye2{bottom:307.706667pt;}
.y12d{bottom:307.866667pt;}
.y53{bottom:310.106667pt;}
.y6e{bottom:312.506667pt;}
.y146{bottom:314.106667pt;}
.y1f0{bottom:321.146667pt;}
.y1f4{bottom:321.173297pt;}
.y15c{bottom:321.466667pt;}
.yf8{bottom:324.826667pt;}
.yc4{bottom:329.146667pt;}
.y60{bottom:336.506667pt;}
.yd4{bottom:339.706667pt;}
.y117{bottom:340.666667pt;}
.y16{bottom:343.066667pt;}
.y39{bottom:343.226667pt;}
.y84{bottom:344.506667pt;}
.y12c{bottom:344.666667pt;}
.y52{bottom:346.906667pt;}
.y6d{bottom:349.306667pt;}
.y145{bottom:350.906667pt;}
.y114{bottom:355.546667pt;}
.y15b{bottom:358.266667pt;}
.yf7{bottom:365.146667pt;}
.yc3{bottom:365.946667pt;}
.y5f{bottom:373.306667pt;}
.yd3{bottom:376.506667pt;}
.yec{bottom:377.626667pt;}
.y15{bottom:379.906667pt;}
.y38{bottom:380.026667pt;}
.y83{bottom:381.306667pt;}
.y12b{bottom:381.466667pt;}
.y51{bottom:383.706667pt;}
.y6c{bottom:386.106667pt;}
.y144{bottom:387.546667pt;}
.y113{bottom:394.746667pt;}
.y15a{bottom:395.066667pt;}
.yc2{bottom:402.746667pt;}
.yf6{bottom:404.506667pt;}
.y5e{bottom:410.106667pt;}
.yd2{bottom:413.306667pt;}
.yeb{bottom:414.426667pt;}
.y14{bottom:416.706667pt;}
.y37{bottom:416.866667pt;}
.y82{bottom:418.146667pt;}
.y12a{bottom:418.306667pt;}
.y1e5{bottom:419.906667pt;}
.y50{bottom:420.546667pt;}
.y6b{bottom:422.946667pt;}
.y143{bottom:424.386667pt;}
.y159{bottom:431.906667pt;}
.yc1{bottom:439.586667pt;}
.yf5{bottom:441.346667pt;}
.y5d{bottom:446.946667pt;}
.y24c{bottom:449.666667pt;}
.yd1{bottom:450.146667pt;}
.yea{bottom:451.266667pt;}
.y13{bottom:453.506667pt;}
.y36{bottom:453.666667pt;}
.y81{bottom:454.946667pt;}
.y129{bottom:455.106667pt;}
.y4f{bottom:457.346667pt;}
.y6a{bottom:459.746667pt;}
.y142{bottom:461.186667pt;}
.y1d9{bottom:467.906630pt;}
.y1d7{bottom:467.906667pt;}
.y110{bottom:468.386667pt;}
.y158{bottom:468.706667pt;}
.y241{bottom:470.626667pt;}
.yc0{bottom:476.386667pt;}
.yf4{bottom:478.146667pt;}
.y5c{bottom:483.746667pt;}
.y24b{bottom:486.466667pt;}
.y10e{bottom:486.773297pt;}
.yd0{bottom:486.946667pt;}
.y2a{bottom:488.066667pt;}
.y12{bottom:490.306667pt;}
.y35{bottom:490.466667pt;}
.y80{bottom:491.746667pt;}
.y128{bottom:491.906667pt;}
.y4e{bottom:494.146667pt;}
.y69{bottom:496.546667pt;}
.y141{bottom:497.986667pt;}
.y157{bottom:505.506667pt;}
.y246{bottom:506.306667pt;}
.y10d{bottom:506.786667pt;}
.y240{bottom:507.426667pt;}
.ybf{bottom:513.186667pt;}
.yf3{bottom:514.946667pt;}
.y5b{bottom:520.546667pt;}
.y24f{bottom:521.826667pt;}
.y24a{bottom:523.266667pt;}
.ycf{bottom:523.746667pt;}
.y245{bottom:524.706667pt;}
.y29{bottom:524.866667pt;}
.y34{bottom:527.266667pt;}
.y7f{bottom:528.546667pt;}
.y127{bottom:528.706667pt;}
.y4d{bottom:530.946667pt;}
.y11{bottom:533.186667pt;}
.y68{bottom:533.346667pt;}
.y140{bottom:534.786667pt;}
.y1cf{bottom:535.906630pt;}
.y1cd{bottom:535.906667pt;}
.y156{bottom:542.306667pt;}
.y10c{bottom:543.586667pt;}
.y23f{bottom:544.226667pt;}
.ybe{bottom:549.986667pt;}
.yf2{bottom:555.426667pt;}
.y24e{bottom:559.906667pt;}
.y249{bottom:560.066667pt;}
.yce{bottom:560.546667pt;}
.y5a{bottom:561.026667pt;}
.y28{bottom:561.666667pt;}
.y244{bottom:562.626667pt;}
.y10{bottom:563.906667pt;}
.y33{bottom:564.066667pt;}
.y7e{bottom:565.346667pt;}
.y126{bottom:565.506667pt;}
.ye1{bottom:566.466667pt;}
.y4c{bottom:568.866667pt;}
.y67{bottom:570.146667pt;}
.y13f{bottom:571.586667pt;}
.y155{bottom:579.106667pt;}
.y10b{bottom:580.386667pt;}
.y23e{bottom:581.026667pt;}
.y1bf{bottom:582.466667pt;}
.y1c3{bottom:582.506630pt;}
.ybd{bottom:590.466667pt;}
.yf1{bottom:594.786667pt;}
.y24d{bottom:596.706667pt;}
.y248{bottom:596.866667pt;}
.ycd{bottom:597.346667pt;}
.y27{bottom:598.466667pt;}
.y59{bottom:600.226667pt;}
.y243{bottom:600.706667pt;}
.yf{bottom:600.733333pt;}
.y32{bottom:600.866667pt;}
.y7d{bottom:602.146667pt;}
.y125{bottom:602.306667pt;}
.ye0{bottom:604.546667pt;}
.y23c{bottom:606.466667pt;}
.y4b{bottom:606.946667pt;}
.y13e{bottom:608.386667pt;}
.y23d{bottom:614.306667pt;}
.y154{bottom:615.906667pt;}
.y109{bottom:617.186667pt;}
.y1b0{bottom:627.906594pt;}
.y1ae{bottom:627.933333pt;}
.ybc{bottom:629.853333pt;}
.y247{bottom:630.013333pt;}
.yf0{bottom:631.613333pt;}
.y242{bottom:634.013333pt;}
.y26{bottom:635.293333pt;}
.ye{bottom:637.533333pt;}
.y31{bottom:637.693333pt;}
.y7c{bottom:638.973333pt;}
.y124{bottom:639.133333pt;}
.ydf{bottom:641.373333pt;}
.y23b{bottom:643.293333pt;}
.y4a{bottom:643.773333pt;}
.y13d{bottom:645.213333pt;}
.y151{bottom:652.733333pt;}
.y108{bottom:654.013333pt;}
.y23a{bottom:658.813333pt;}
.ybb{bottom:666.653333pt;}
.yef{bottom:668.413333pt;}
.y25{bottom:672.093333pt;}
.yd{bottom:674.333333pt;}
.y30{bottom:674.493333pt;}
.y7b{bottom:675.773333pt;}
.y123{bottom:675.933333pt;}
.yde{bottom:678.173333pt;}
.y49{bottom:680.573333pt;}
.y13c{bottom:682.013333pt;}
.y19e{bottom:682.493333pt;}
.y1a0{bottom:682.506594pt;}
.y107{bottom:690.813333pt;}
.yba{bottom:703.453333pt;}
.yee{bottom:705.053333pt;}
.y24{bottom:708.893333pt;}
.yc{bottom:711.133333pt;}
.y2f{bottom:711.293333pt;}
.y7a{bottom:712.573333pt;}
.y122{bottom:712.733333pt;}
.ydd{bottom:714.973333pt;}
.y48{bottom:717.373333pt;}
.y13b{bottom:718.813333pt;}
.y150{bottom:726.333333pt;}
.y106{bottom:727.613333pt;}
.y239{bottom:732.413333pt;}
.y196{bottom:737.173261pt;}
.y194{bottom:737.213333pt;}
.yb9{bottom:740.253333pt;}
.yed{bottom:745.533333pt;}
.y23{bottom:745.693333pt;}
.yb{bottom:747.933333pt;}
.y2e{bottom:748.093333pt;}
.y79{bottom:749.373333pt;}
.y121{bottom:749.533333pt;}
.ycc{bottom:750.493333pt;}
.ydc{bottom:751.773333pt;}
.y47{bottom:754.173333pt;}
.y13a{bottom:755.613333pt;}
.y14f{bottom:763.133333pt;}
.y188{bottom:763.906594pt;}
.y186{bottom:763.933333pt;}
.y105{bottom:764.413333pt;}
.y238{bottom:769.213333pt;}
.yb6{bottom:774.306594pt;}
.yb8{bottom:775.773333pt;}
.yb5{bottom:777.053333pt;}
.y22{bottom:782.493333pt;}
.ye9{bottom:783.613333pt;}
.ya{bottom:784.733333pt;}
.y2d{bottom:784.893333pt;}
.y120{bottom:786.333333pt;}
.y78{bottom:787.293333pt;}
.ydb{bottom:788.573333pt;}
.ycb{bottom:789.693333pt;}
.y46{bottom:790.973333pt;}
.y139{bottom:792.413333pt;}
.y14c{bottom:800.573333pt;}
.y103{bottom:801.213333pt;}
.y237{bottom:806.013333pt;}
.y17c{bottom:815.906594pt;}
.y17a{bottom:815.933333pt;}
.yb4{bottom:816.253333pt;}
.y21{bottom:819.293333pt;}
.y9{bottom:821.573333pt;}
.y2c{bottom:821.693333pt;}
.y11f{bottom:823.173333pt;}
.y77{bottom:825.413333pt;}
.y45{bottom:827.813333pt;}
.y138{bottom:829.253333pt;}
.y102{bottom:838.053333pt;}
.y236{bottom:842.853333pt;}
.yb3{bottom:853.093333pt;}
.y20{bottom:857.253333pt;}
.y8{bottom:858.373333pt;}
.y2b{bottom:858.533333pt;}
.y11e{bottom:859.973333pt;}
.y76{bottom:862.213333pt;}
.y170{bottom:862.506594pt;}
.y16e{bottom:862.533333pt;}
.y44{bottom:864.613333pt;}
.y137{bottom:866.053333pt;}
.y101{bottom:874.853333pt;}
.y235{bottom:879.653333pt;}
.ya2{bottom:884.706594pt;}
.y7{bottom:895.173333pt;}
.y1f{bottom:895.333333pt;}
.y11d{bottom:896.773333pt;}
.y75{bottom:899.013333pt;}
.y43{bottom:901.413333pt;}
.y136{bottom:902.853333pt;}
.yb2{bottom:904.773333pt;}
.y165{bottom:909.173261pt;}
.y163{bottom:909.253333pt;}
.yff{bottom:911.653333pt;}
.y234{bottom:917.093333pt;}
.y6{bottom:931.973333pt;}
.y1e{bottom:932.133333pt;}
.y11c{bottom:933.573333pt;}
.ye8{bottom:935.653333pt;}
.y74{bottom:936.933333pt;}
.y42{bottom:938.213333pt;}
.y135{bottom:939.653333pt;}
.y161{bottom:953.893333pt;}
.ya1{bottom:955.333333pt;}
.y5{bottom:968.773333pt;}
.y1d{bottom:968.933333pt;}
.yfe{bottom:970.373333pt;}
.y41{bottom:975.013333pt;}
.y134{bottom:976.453333pt;}
.y9c{bottom:985.839928pt;}
.ya0{bottom:1001.893333pt;}
.y4{bottom:1009.093333pt;}
.y1c{bottom:1009.253333pt;}
.yfd{bottom:1010.693333pt;}
.y40{bottom:1011.813333pt;}
.y133{bottom:1013.253333pt;}
.h3{height:15.360000pt;}
.h36{height:18.400000pt;}
.h30{height:19.999900pt;}
.h2b{height:19.999936pt;}
.h17{height:26.350782pt;}
.he{height:26.389341pt;}
.h94{height:26.560000pt;}
.h18{height:26.631928pt;}
.h25{height:26.718977pt;}
.h55{height:26.720000pt;}
.h95{height:26.732575pt;}
.h56{height:26.732630pt;}
.h19{height:30.033842pt;}
.hf{height:30.077791pt;}
.h6f{height:30.140656pt;}
.h7f{height:30.187418pt;}
.h51{height:30.217553pt;}
.h60{height:30.231457pt;}
.h68{height:30.268620pt;}
.h78{height:30.293178pt;}
.h86{height:30.343397pt;}
.h3a{height:30.344791pt;}
.h1a{height:30.354284pt;}
.h90{height:30.413738pt;}
.h27{height:30.453500pt;}
.h42{height:30.465815pt;}
.h4a{height:30.509059pt;}
.h59{height:30.611516pt;}
.h7{height:31.008437pt;}
.h1c{height:33.752487pt;}
.h11{height:33.801878pt;}
.h63{height:33.974570pt;}
.h2e{height:36.800000pt;}
.h2f{height:36.832000pt;}
.h31{height:38.400000pt;}
.h2{height:38.413438pt;}
.h32{height:39.200000pt;}
.h1f{height:40.667006pt;}
.h14{height:42.578750pt;}
.h98{height:43.375000pt;}
.h38{height:43.999366pt;}
.h37{height:44.000000pt;}
.h34{height:45.156250pt;}
.h15{height:45.265796pt;}
.h6d{height:45.265832pt;}
.hc{height:45.332053pt;}
.h6c{height:45.472000pt;}
.h6e{height:45.669101pt;}
.h50{height:45.785615pt;}
.h7e{height:45.859781pt;}
.h5f{height:45.926683pt;}
.h67{height:45.983139pt;}
.h77{height:46.020447pt;}
.h85{height:46.068339pt;}
.h39{height:46.080761pt;}
.h8f{height:46.090704pt;}
.h5{height:46.281250pt;}
.h41{height:46.312317pt;}
.h49{height:46.378054pt;}
.h58{height:46.380711pt;}
.h71{height:46.560000pt;}
.h46{height:46.592000pt;}
.h3f{height:46.667541pt;}
.h3e{height:46.720000pt;}
.h72{height:46.733746pt;}
.h47{height:46.733783pt;}
.h7d{height:47.999259pt;}
.h7c{height:48.000000pt;}
.h8e{height:50.666869pt;}
.h23{height:50.733163pt;}
.h8d{height:50.752000pt;}
.h97{height:51.374688pt;}
.h21{height:51.431979pt;}
.h4f{height:51.999072pt;}
.h4e{height:52.000000pt;}
.h1b{height:52.052291pt;}
.h10{height:52.128460pt;}
.h52{height:52.185090pt;}
.h80{height:52.269622pt;}
.h61{height:52.345875pt;}
.h69{height:52.410222pt;}
.h79{height:52.452744pt;}
.h87{height:52.507330pt;}
.h3b{height:52.521489pt;}
.h91{height:52.532821pt;}
.h28{height:52.601500pt;}
.h8{height:52.750000pt;}
.h43{height:52.785409pt;}
.h4{height:52.832812pt;}
.h2c{height:52.856794pt;}
.h4b{height:52.860334pt;}
.h5a{height:52.863363pt;}
.h65{height:54.560000pt;}
.h5e{height:54.668055pt;}
.h5d{height:54.720000pt;}
.h66{height:54.735257pt;}
.h26{height:55.204678pt;}
.h6{height:55.328437pt;}
.h8b{height:56.704387pt;}
.h22{height:57.800037pt;}
.h2d{height:57.870000pt;}
.h1d{height:58.497154pt;}
.h12{height:58.582754pt;}
.h54{height:58.646396pt;}
.h82{height:58.741393pt;}
.h64{height:58.827088pt;}
.h6b{height:58.899403pt;}
.h7b{height:58.947190pt;}
.h89{height:59.008534pt;}
.h3d{height:59.024446pt;}
.h93{height:59.037181pt;}
.h29{height:59.114364pt;}
.ha{height:59.281250pt;}
.h45{height:59.321043pt;}
.h4d{height:59.405245pt;}
.h5c{height:59.408649pt;}
.h70{height:61.694727pt;}
.h53{height:61.809301pt;}
.h81{height:61.962758pt;}
.h62{height:62.050089pt;}
.h6a{height:62.115489pt;}
.h8c{height:62.143410pt;}
.h7a{height:62.143654pt;}
.h88{height:62.209639pt;}
.h3c{height:62.303253pt;}
.h92{height:62.306471pt;}
.hb{height:62.487299pt;}
.h44{height:62.651461pt;}
.h4c{height:62.723199pt;}
.h74{height:62.723266pt;}
.h20{height:62.775247pt;}
.h96{height:62.782298pt;}
.h5b{height:62.812811pt;}
.h75{height:68.000000pt;}
.h8a{height:68.001316pt;}
.h76{height:68.001334pt;}
.h35{height:73.600000pt;}
.h33{height:73.632000pt;}
.h40{height:77.629769pt;}
.h48{height:77.739959pt;}
.h73{height:80.598259pt;}
.h57{height:80.663160pt;}
.h1e{height:87.682295pt;}
.h13{height:87.810603pt;}
.h2a{height:88.671546pt;}
.hd{height:91.783557pt;}
.h24{height:92.740520pt;}
.h84{height:98.736520pt;}
.h83{height:98.752000pt;}
.h16{height:100.774376pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h9{height:1122.720000pt;}
.w3{width:6.720000pt;}
.w16{width:10.560000pt;}
.w9{width:13.280000pt;}
.wd{width:18.733520pt;}
.w8{width:18.733529pt;}
.w19{width:37.440000pt;}
.w1d{width:41.920000pt;}
.w14{width:47.680000pt;}
.w17{width:58.592000pt;}
.wa{width:76.960000pt;}
.w31{width:77.952000pt;}
.w32{width:86.240000pt;}
.w33{width:86.272000pt;}
.w6{width:86.731209pt;}
.w21{width:87.997632pt;}
.wf{width:94.240000pt;}
.w30{width:101.920000pt;}
.w29{width:108.000123pt;}
.w1e{width:112.000000pt;}
.w24{width:112.003569pt;}
.w1b{width:117.952000pt;}
.w2f{width:118.732939pt;}
.w2b{width:129.465811pt;}
.w2a{width:132.000116pt;}
.w25{width:137.273385pt;}
.w2d{width:138.599996pt;}
.w26{width:139.997742pt;}
.wc{width:154.106667pt;}
.w11{width:154.586667pt;}
.w27{width:156.005806pt;}
.w1c{width:156.026667pt;}
.w20{width:161.146667pt;}
.w28{width:162.591135pt;}
.w2c{width:164.003583pt;}
.w22{width:170.731481pt;}
.w2e{width:173.265679pt;}
.w5{width:185.264455pt;}
.w34{width:187.706667pt;}
.w4{width:194.732279pt;}
.w18{width:197.946667pt;}
.w23{width:202.729561pt;}
.w1f{width:217.186667pt;}
.w1a{width:230.106667pt;}
.w15{width:253.306667pt;}
.w7{width:254.741841pt;}
.w13{width:293.986667pt;}
.w12{width:311.546667pt;}
.w10{width:355.906667pt;}
.wb{width:373.666667pt;}
.we{width:604.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:2.673022pt;}
.x25{left:3.752841pt;}
.x47{left:7.200000pt;}
.x4b{left:9.120000pt;}
.x45{left:12.640000pt;}
.x17{left:13.556294pt;}
.x3c{left:15.680000pt;}
.x43{left:17.600000pt;}
.x18{left:23.470281pt;}
.x53{left:29.137257pt;}
.x10{left:33.020401pt;}
.x46{left:35.040000pt;}
.x51{left:41.078735pt;}
.x4f{left:43.360000pt;}
.x11{left:45.407519pt;}
.xe{left:47.983205pt;}
.x48{left:48.960000pt;}
.xc{left:50.590665pt;}
.x64{left:54.015409pt;}
.x4d{left:54.920000pt;}
.xb{left:55.904922pt;}
.x6a{left:56.907126pt;}
.x21{left:61.030326pt;}
.x5a{left:62.086647pt;}
.x8{left:64.217292pt;}
.x52{left:65.615146pt;}
.x49{left:68.000000pt;}
.x20{left:69.879899pt;}
.x1d{left:71.512906pt;}
.x61{left:74.076232pt;}
.x41{left:75.034667pt;}
.x58{left:76.213370pt;}
.x6e{left:77.503980pt;}
.x5e{left:78.869535pt;}
.x5b{left:80.392638pt;}
.x6c{left:81.963983pt;}
.xd{left:83.481287pt;}
.x22{left:85.554685pt;}
.x1f{left:88.101707pt;}
.x54{left:89.848950pt;}
.x66{left:91.937335pt;}
.x5d{left:92.840891pt;}
.x36{left:94.591988pt;}
.x1{left:96.031988pt;}
.x3b{left:99.279991pt;}
.x6d{left:100.788132pt;}
.x7{left:103.279991pt;}
.x1a{left:104.331000pt;}
.x55{left:107.085532pt;}
.x6b{left:110.379823pt;}
.x71{left:112.553394pt;}
.x6f{left:114.507695pt;}
.x5f{left:115.431118pt;}
.x65{left:116.550735pt;}
.x5c{left:119.240000pt;}
.x70{left:120.490182pt;}
.x1e{left:123.563658pt;}
.x63{left:125.678604pt;}
.x3a{left:127.240000pt;}
.x57{left:128.644880pt;}
.x62{left:131.809881pt;}
.x39{left:133.480000pt;}
.x74{left:134.747450pt;}
.x29{left:136.506655pt;}
.x68{left:138.966551pt;}
.x73{left:140.331539pt;}
.x15{left:142.957261pt;}
.x60{left:144.520000pt;}
.x72{left:145.800000pt;}
.x2a{left:147.546655pt;}
.xa{left:150.237178pt;}
.x14{left:152.385342pt;}
.x67{left:163.240000pt;}
.x2b{left:166.586655pt;}
.x69{left:169.800000pt;}
.x37{left:171.546667pt;}
.x13{left:176.895702pt;}
.x56{left:177.986667pt;}
.x75{left:180.546667pt;}
.x9{left:186.071620pt;}
.x2e{left:188.026655pt;}
.x19{left:189.946655pt;}
.x76{left:196.506667pt;}
.x2f{left:199.066655pt;}
.x59{left:209.986667pt;}
.x1c{left:226.300109pt;}
.x1b{left:239.459712pt;}
.x4c{left:248.506667pt;}
.x50{left:255.746649pt;}
.x77{left:274.466667pt;}
.x30{left:287.586655pt;}
.x16{left:288.546655pt;}
.x24{left:292.546649pt;}
.x12{left:297.986655pt;}
.x27{left:309.826655pt;}
.x26{left:311.266655pt;}
.x28{left:320.866655pt;}
.x42{left:324.706667pt;}
.x2c{left:334.946655pt;}
.x2d{left:345.986655pt;}
.x23{left:357.986655pt;}
.x5{left:360.866655pt;}
.x6{left:371.906655pt;}
.x31{left:381.506655pt;}
.x35{left:390.306667pt;}
.x32{left:392.546655pt;}
.x2{left:393.506667pt;}
.x3e{left:395.586667pt;}
.x4a{left:397.026655pt;}
.x33{left:398.146655pt;}
.x3d{left:406.146667pt;}
.x34{left:409.186655pt;}
.x44{left:442.653333pt;}
.x78{left:446.973333pt;}
.x3f{left:464.733333pt;}
.x4e{left:465.693333pt;}
.x7a{left:494.653322pt;}
.x7b{left:499.453322pt;}
.x7c{left:505.053322pt;}
.x38{left:545.213333pt;}
.x3{left:621.733322pt;}
.x4{left:632.773322pt;}
.x40{left:662.693333pt;}
.x79{left:699.333322pt;}
}




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