
    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_119d63c7e148dc5601bbd997.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.875000;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_6b1d80f56d25c6e90330dd19.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.549000;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_d09cd4583d22e36ecda5b7b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_535c1df3cad08e4342b6911c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953000;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_22ca45fff46bcfee2f0d3d89.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.546000;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_a494071b1a62c9ac6be4a600.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_af6274bdeb73cec980876a17.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.929000;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_f70df4afddf0414a6fc37c10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895000;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_99071380ea3f19bea75e4310.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3294190974c64b1af3dbe06d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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_b031c06eb1fc7d6f52920b80.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e7b4cdf3df7594b0dcc1322f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.737000;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_399ea5155848108d5dd62372.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003000;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_43b8db50a09a799bf082ddfa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.762000;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_3543c98f1c1db50c6c8435db.woff2')format("woff");}.fff{font-family:fff;line-height:1.078000;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_e10e49315033010ac928f3de.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.078000;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_ce17d779801eb6a628a84ca5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.889000;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_fb00105c19308b91ddf761fe.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.687000;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_e2288693b17f8257c894f55c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.875000;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_3ff080550814cc2777f68b2a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.806000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_b88c5bb98dd7b2bc39449614.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_abefde72ed167682718c7244.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f4f3580e7909850fbd2965c0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.043000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_4bd08ffef2fa3c8484615374.woff2')format("woff");}.ff18{font-family:ff18;line-height:2.460000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5e0a581a1332b5540832c62f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_03e3d0ea8762cb0f3d61f854.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_02ccf2bb962d26f815a87d3e.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_390527e118a811f055347248.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:3.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_a5735bccc9e92698913f1210.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.433149;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:ff1e;src:url('chunks/assets/font_0a1365803dd854103fb2fa60.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.032000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.vc{vertical-align:-283.338000px;}
.v25{vertical-align:-156.000000px;}
.v2f{vertical-align:-153.912000px;}
.v27{vertical-align:-138.000000px;}
.v16{vertical-align:-126.000000px;}
.v17{vertical-align:-110.880000px;}
.v23{vertical-align:-106.500000px;}
.v5{vertical-align:-103.092000px;}
.v38{vertical-align:-101.999994px;}
.v13{vertical-align:-96.228000px;}
.v7{vertical-align:-94.500000px;}
.v3{vertical-align:-93.000000px;}
.v36{vertical-align:-89.760000px;}
.v1{vertical-align:-82.474261px;}
.v37{vertical-align:-80.784000px;}
.v18{vertical-align:-66.000000px;}
.v19{vertical-align:-63.841260px;}
.v14{vertical-align:-43.890000px;}
.v1b{vertical-align:-42.000000px;}
.v4{vertical-align:-24.141000px;}
.v28{vertical-align:-15.193200px;}
.v2{vertical-align:-13.553685px;}
.v33{vertical-align:-6.000000px;}
.v1c{vertical-align:-2.643360px;}
.v0{vertical-align:0.000000px;}
.v34{vertical-align:2.363400px;}
.v35{vertical-align:7.549200px;}
.v11{vertical-align:18.675000px;}
.v3a{vertical-align:21.215994px;}
.v15{vertical-align:27.299130px;}
.v31{vertical-align:44.088000px;}
.v1a{vertical-align:63.841260px;}
.v29{vertical-align:66.000000px;}
.ve{vertical-align:81.162000px;}
.v2e{vertical-align:83.738640px;}
.v2c{vertical-align:91.020000px;}
.v8{vertical-align:94.500000px;}
.v12{vertical-align:96.228000px;}
.v2a{vertical-align:97.680000px;}
.v39{vertical-align:101.999994px;}
.v24{vertical-align:106.500000px;}
.v20{vertical-align:110.956800px;}
.v1f{vertical-align:114.691320px;}
.v2d{vertical-align:124.320000px;}
.va{vertical-align:126.360000px;}
.v2b{vertical-align:127.644000px;}
.v6{vertical-align:147.180000px;}
.v26{vertical-align:156.000000px;}
.v1e{vertical-align:157.620000px;}
.v9{vertical-align:179.820000px;}
.v30{vertical-align:193.776000px;}
.v32{vertical-align:220.205160px;}
.v10{vertical-align:268.272000px;}
.vf{vertical-align:283.338000px;}
.v22{vertical-align:312.684018px;}
.vb{vertical-align:364.500000px;}
.v1d{vertical-align:643.046760px;}
.vd{vertical-align:707.129760px;}
.v21{vertical-align:1098.211560px;}
.ls2b{letter-spacing:-17.640000px;}
.lsd{letter-spacing:-16.396800px;}
.lsa{letter-spacing:-14.400000px;}
.ls46{letter-spacing:-11.040000px;}
.lse{letter-spacing:-5.040000px;}
.lsf{letter-spacing:-4.233600px;}
.lsc{letter-spacing:-3.600000px;}
.ls44{letter-spacing:-2.520000px;}
.ls32{letter-spacing:-2.343600px;}
.ls39{letter-spacing:-1.320000px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000005px;}
.ls4b{letter-spacing:0.000120px;}
.ls3{letter-spacing:0.000256px;}
.ls1{letter-spacing:0.000737px;}
.ls1e{letter-spacing:0.001800px;}
.ls6{letter-spacing:0.006350px;}
.ls7{letter-spacing:0.066769px;}
.ls45{letter-spacing:0.096000px;}
.ls23{letter-spacing:0.147454px;}
.ls34{letter-spacing:1.500000px;}
.ls48{letter-spacing:2.520000px;}
.ls9{letter-spacing:4.575688px;}
.ls3b{letter-spacing:9.308118px;}
.ls3a{letter-spacing:12.792000px;}
.ls38{letter-spacing:13.278959px;}
.ls36{letter-spacing:13.728000px;}
.ls8{letter-spacing:15.066000px;}
.ls2e{letter-spacing:16.118640px;}
.ls14{letter-spacing:17.758740px;}
.ls2d{letter-spacing:22.152000px;}
.ls27{letter-spacing:22.400400px;}
.ls54{letter-spacing:23.004000px;}
.ls1d{letter-spacing:25.272000px;}
.ls5{letter-spacing:31.417149px;}
.ls33{letter-spacing:34.666680px;}
.ls2{letter-spacing:39.045146px;}
.ls40{letter-spacing:39.600000px;}
.ls4{letter-spacing:41.216972px;}
.ls41{letter-spacing:58.666200px;}
.ls42{letter-spacing:58.666800px;}
.ls3e{letter-spacing:59.564400px;}
.ls2c{letter-spacing:63.900000px;}
.ls2f{letter-spacing:66.750000px;}
.ls29{letter-spacing:70.991279px;}
.ls1c{letter-spacing:70.991337px;}
.ls2a{letter-spacing:70.991370px;}
.ls31{letter-spacing:71.142000px;}
.ls18{letter-spacing:72.900000px;}
.ls43{letter-spacing:73.333080px;}
.ls3d{letter-spacing:73.333260px;}
.ls3f{letter-spacing:73.333320px;}
.ls53{letter-spacing:73.333380px;}
.ls3c{letter-spacing:78.024180px;}
.ls1f{letter-spacing:81.000000px;}
.ls17{letter-spacing:81.162000px;}
.ls13{letter-spacing:84.000000px;}
.ls28{letter-spacing:84.168000px;}
.ls37{letter-spacing:87.912060px;}
.ls50{letter-spacing:90.664800px;}
.ls51{letter-spacing:90.666000px;}
.ls4e{letter-spacing:90.666600px;}
.ls4f{letter-spacing:90.667200px;}
.ls10{letter-spacing:103.333320px;}
.ls11{letter-spacing:105.000000px;}
.ls12{letter-spacing:105.000120px;}
.ls1b{letter-spacing:105.540000px;}
.ls16{letter-spacing:108.000000px;}
.ls25{letter-spacing:112.000200px;}
.ls4d{letter-spacing:113.333400px;}
.ls52{letter-spacing:113.334000px;}
.ls19{letter-spacing:115.668000px;}
.ls4c{letter-spacing:118.333080px;}
.ls4a{letter-spacing:118.333200px;}
.ls49{letter-spacing:118.333320px;}
.ls47{letter-spacing:123.789120px;}
.ls1a{letter-spacing:135.000000px;}
.ls24{letter-spacing:139.999800px;}
.ls55{letter-spacing:147.119940px;}
.ls30{letter-spacing:162.729600px;}
.ls20{letter-spacing:189.054000px;}
.ls15{letter-spacing:214.788600px;}
.ls26{letter-spacing:357.448200px;}
.ls35{letter-spacing:513.927600px;}
.ls21{letter-spacing:792.719516px;}
.ls22{letter-spacing:792.741443px;}
.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;}
}
.ws53{word-spacing:-238.656000px;}
.ws35{word-spacing:-92.430000px;}
.ws55{word-spacing:-86.688000px;}
.ws36{word-spacing:-86.400000px;}
.ws2f{word-spacing:-85.320000px;}
.ws1{word-spacing:-74.880000px;}
.ws47{word-spacing:-72.600000px;}
.ws46{word-spacing:-71.100000px;}
.ws63{word-spacing:-66.528000px;}
.ws52{word-spacing:-63.360000px;}
.ws30{word-spacing:-62.568000px;}
.ws49{word-spacing:-61.248000px;}
.ws56{word-spacing:-57.657600px;}
.ws58{word-spacing:-56.936880px;}
.ws61{word-spacing:-56.880000px;}
.ws3a{word-spacing:-51.192000px;}
.ws59{word-spacing:-45.504000px;}
.ws44{word-spacing:-0.624000px;}
.ws45{word-spacing:-0.552000px;}
.ws3e{word-spacing:-0.504000px;}
.ws37{word-spacing:-0.486000px;}
.ws43{word-spacing:-0.426000px;}
.ws5d{word-spacing:-0.408000px;}
.ws34{word-spacing:-0.378000px;}
.ws0{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.357840px;}
.ws38{word-spacing:-0.345060px;}
.ws4c{word-spacing:-0.336000px;}
.ws5a{word-spacing:-0.302460px;}
.ws4b{word-spacing:-0.294000px;}
.ws5e{word-spacing:-0.289680px;}
.ws2e{word-spacing:-0.264120px;}
.ws32{word-spacing:-0.264000px;}
.ws3c{word-spacing:-0.255365px;}
.ws57{word-spacing:-0.240240px;}
.ws62{word-spacing:-0.240000px;}
.ws41{word-spacing:-0.216000px;}
.ws33{word-spacing:-0.187440px;}
.ws5{word-spacing:-0.156179px;}
.ws12{word-spacing:-0.090381px;}
.ws2c{word-spacing:0.000000px;}
.ws17{word-spacing:19.341638px;}
.ws10{word-spacing:21.058886px;}
.wsd{word-spacing:21.420276px;}
.wsc{word-spacing:21.420412px;}
.wsb{word-spacing:22.143464px;}
.ws3{word-spacing:22.504990px;}
.ws1f{word-spacing:23.047278px;}
.wsa{word-spacing:23.228041px;}
.ws1c{word-spacing:23.589567px;}
.ws13{word-spacing:24.854908px;}
.ws20{word-spacing:24.945290px;}
.ws14{word-spacing:24.945685px;}
.ws2b{word-spacing:25.126053px;}
.wsf{word-spacing:25.216434px;}
.ws31{word-spacing:25.344000px;}
.ws15{word-spacing:25.577960px;}
.ws16{word-spacing:25.849105px;}
.ws28{word-spacing:25.902684px;}
.ws29{word-spacing:25.939486px;}
.ws18{word-spacing:26.120249px;}
.ws2a{word-spacing:26.301012px;}
.ws19{word-spacing:26.391393px;}
.ws27{word-spacing:26.481775px;}
.ws1a{word-spacing:27.114445px;}
.ws1b{word-spacing:27.114819px;}
.ws9{word-spacing:29.283601px;}
.ws1e{word-spacing:29.723949px;}
.ws1d{word-spacing:29.735508px;}
.ws24{word-spacing:29.916271px;}
.ws23{word-spacing:30.277797px;}
.wse{word-spacing:30.368179px;}
.ws11{word-spacing:31.452757px;}
.ws25{word-spacing:31.723901px;}
.ws21{word-spacing:31.814282px;}
.ws26{word-spacing:33.260386px;}
.ws22{word-spacing:34.344964px;}
.ws7{word-spacing:38.888683px;}
.ws8{word-spacing:38.889222px;}
.ws4e{word-spacing:39.336000px;}
.ws4d{word-spacing:43.824000px;}
.ws6{word-spacing:52.476296px;}
.ws4{word-spacing:52.476670px;}
.ws5b{word-spacing:70.573800px;}
.ws5c{word-spacing:70.574400px;}
.ws3d{word-spacing:70.735917px;}
.ws3b{word-spacing:70.735977px;}
.ws4a{word-spacing:73.069320px;}
.ws4f{word-spacing:73.145880px;}
.ws51{word-spacing:78.454680px;}
.ws5f{word-spacing:90.258000px;}
.ws50{word-spacing:91.128600px;}
.ws2d{word-spacing:102.961080px;}
.ws40{word-spacing:111.495600px;}
.ws39{word-spacing:134.514000px;}
.ws54{word-spacing:297.135600px;}
.ws48{word-spacing:419.805000px;}
.ws42{word-spacing:628.546800px;}
.ws60{word-spacing:759.135600px;}
.ws2{word-spacing:922.561577px;}
._39{margin-left:-5377.527120px;}
._45{margin-left:-43.145001px;}
._4{margin-left:-40.680000px;}
._3c{margin-left:-35.160000px;}
._29{margin-left:-28.080000px;}
._2a{margin-left:-27.000000px;}
._30{margin-left:-25.422501px;}
._46{margin-left:-24.203298px;}
._33{margin-left:-22.134501px;}
._44{margin-left:-21.038406px;}
._5{margin-left:-19.800000px;}
._27{margin-left:-18.060000px;}
._11{margin-left:-16.396800px;}
._35{margin-left:-15.240000px;}
._13{margin-left:-14.054400px;}
._3b{margin-left:-13.046203px;}
._26{margin-left:-11.812104px;}
._8{margin-left:-10.800000px;}
._1{margin-left:-9.000000px;}
._14{margin-left:-7.027200px;}
._1a{margin-left:-5.911197px;}
._12{margin-left:-4.684800px;}
._2{margin-left:-3.600000px;}
._6{margin-left:-2.520000px;}
._16{margin-left:-1.385499px;}
._3{width:1.080000px;}
._9{width:2.520000px;}
._7{width:3.600000px;}
._f{width:4.761600px;}
._2b{width:6.600000px;}
._c{width:7.977600px;}
._e{width:9.331200px;}
._0{width:10.800000px;}
._d{width:11.928000px;}
._b{width:13.320000px;}
._a{width:14.400000px;}
._43{width:15.792000px;}
._36{width:16.877499px;}
._21{width:18.416460px;}
._10{width:21.955200px;}
._40{width:23.640000px;}
._1b{width:26.752919px;}
._18{width:28.289405px;}
._1d{width:29.373982px;}
._25{width:31.370788px;}
._1f{width:32.617034px;}
._1e{width:34.671604px;}
._20{width:37.224407px;}
._22{width:38.721465px;}
._23{width:43.082624px;}
._19{width:47.710742px;}
._1c{width:51.366460px;}
._24{width:56.387365px;}
._42{width:113.678400px;}
._3f{width:118.647099px;}
._41{width:148.511170px;}
._32{width:184.629797px;}
._28{width:257.803200px;}
._3a{width:275.103699px;}
._2f{width:287.471897px;}
._31{width:344.900400px;}
._2e{width:358.152000px;}
._2c{width:449.191440px;}
._2d{width:483.333794px;}
._17{width:561.105080px;}
._15{width:969.777370px;}
._34{width:1715.353701px;}
._3e{width:1928.828597px;}
._3d{width:2041.918137px;}
._37{width:3070.213299px;}
._38{width:4605.180480px;}
.fc11{color:rgb(236,69,40);}
.fc10{color:rgb(96,96,96);}
.fcd{color:rgb(63,63,63);}
.fc0{color:rgb(255,255,255);}
.fc12{color:rgb(145,145,145);}
.fc2{color:rgb(0,0,0);}
.fc8{color:rgb(237,65,35);}
.fc3{color:transparent;}
.fc6{color:rgb(241,105,81);}
.fcb{color:rgb(12,20,103);}
.fcf{color:rgb(78,78,78);}
.fce{color:rgb(49,49,49);}
.fc9{color:rgb(236,65,36);}
.fc4{color:rgb(255,67,89);}
.fc5{color:rgb(255,67,89);}
.fca{color:rgb(237,65,36);}
.fc1{color:rgb(38,107,189);}
.fc7{color:rgb(255,0,0);}
.fcc{color:rgb(211,48,35);}
.fs4{font-size:63.266858px;}
.fs2{font-size:90.381484px;}
.fs32{font-size:150.000000px;}
.fs3{font-size:156.179452px;}
.fs1a{font-size:163.837567px;}
.fs2a{font-size:174.660000px;}
.fs1d{font-size:181.308780px;}
.fsd{font-size:187.440000px;}
.fs2e{font-size:192.000000px;}
.fs28{font-size:208.740000px;}
.fsc{font-size:210.000000px;}
.fs17{font-size:216.000000px;}
.fs19{font-size:218.450050px;}
.fs2c{font-size:238.560000px;}
.fs8{font-size:240.000000px;}
.fs30{font-size:240.240000px;}
.fs29{font-size:246.000000px;}
.fs18{font-size:255.364500px;}
.fs7{font-size:264.000000px;}
.fsb{font-size:264.120000px;}
.fsf{font-size:268.380000px;}
.fs31{font-size:284.022060px;}
.fs34{font-size:289.680000px;}
.fs27{font-size:294.000000px;}
.fs9{font-size:300.000000px;}
.fs20{font-size:302.460000px;}
.fs15{font-size:330.000000px;}
.fs2b{font-size:336.000000px;}
.fs2d{font-size:342.000000px;}
.fs13{font-size:345.060000px;}
.fs1c{font-size:357.840000px;}
.fs0{font-size:360.000000px;}
.fs2f{font-size:360.360000px;}
.fsa{font-size:372.000000px;}
.fse{font-size:378.000000px;}
.fs10{font-size:390.000000px;}
.fs24{font-size:391.920000px;}
.fs33{font-size:408.000000px;}
.fs25{font-size:420.000000px;}
.fs6{font-size:423.360000px;}
.fs1f{font-size:426.000000px;}
.fs11{font-size:438.000000px;}
.fs22{font-size:443.040000px;}
.fs16{font-size:462.000000px;}
.fs1{font-size:468.480000px;}
.fs1e{font-size:468.720000px;}
.fs5{font-size:480.000000px;}
.fs12{font-size:486.000000px;}
.fs14{font-size:495.000000px;}
.fs1b{font-size:504.000000px;}
.fs23{font-size:552.000000px;}
.fs21{font-size:624.000000px;}
.fs26{font-size:678.000000px;}
.y34{bottom:-1285.759986px;}
.y33{bottom:-1258.645812px;}
.y32{bottom:-1231.531639px;}
.y31{bottom:-1204.417466px;}
.y30{bottom:-1177.303293px;}
.y2f{bottom:-1150.189120px;}
.y2e{bottom:-1123.072679px;}
.y2d{bottom:-1095.958506px;}
.y2c{bottom:-1068.844333px;}
.y2b{bottom:-1041.730159px;}
.y2a{bottom:-1014.615986px;}
.y29{bottom:-987.499545px;}
.y28{bottom:-960.385372px;}
.y27{bottom:-933.271199px;}
.y26{bottom:-906.157026px;}
.y25{bottom:-879.042853px;}
.y24{bottom:-763.441899px;}
.y23{bottom:-736.327726px;}
.y22{bottom:-709.213553px;}
.y21{bottom:-682.097111px;}
.y20{bottom:-643.685933px;}
.y1f{bottom:-616.571760px;}
.y1e{bottom:-589.457587px;}
.y1d{bottom:-562.341146px;}
.y1c{bottom:-535.226973px;}
.y1b{bottom:-508.112800px;}
.y1a{bottom:-480.998626px;}
.y19{bottom:-453.884453px;}
.y18{bottom:-415.471007px;}
.y17{bottom:-388.356834px;}
.y16{bottom:-361.242661px;}
.y15{bottom:-334.128488px;}
.y14{bottom:-307.012047px;}
.y13{bottom:-279.897873px;}
.y12{bottom:-252.783700px;}
.y11{bottom:-225.669527px;}
.y10{bottom:-198.555354px;}
.yf{bottom:-128.782002px;}
.ye{bottom:-101.667829px;}
.yd{bottom:-74.551388px;}
.yc{bottom:-47.437215px;}
.yb{bottom:-15.805147px;}
.y0{bottom:0.000000px;}
.y72{bottom:0.000300px;}
.y8a{bottom:0.957300px;}
.y5b{bottom:9.958800px;}
.y59{bottom:11.811300px;}
.ycc{bottom:14.556045px;}
.y70{bottom:15.960300px;}
.y6e{bottom:16.458300px;}
.yb9{bottom:22.500150px;}
.ye7{bottom:23.128920px;}
.y45{bottom:28.125150px;}
.y7{bottom:32.182365px;}
.y57{bottom:40.680000px;}
.yb6{bottom:41.100000px;}
.ydf{bottom:41.100090px;}
.y63{bottom:43.777279px;}
.y60{bottom:45.210000px;}
.y4a{bottom:45.210150px;}
.y7e{bottom:51.375000px;}
.y66{bottom:53.864820px;}
.ya{bottom:55.124895px;}
.y3b{bottom:59.982075px;}
.y43{bottom:63.000585px;}
.y4c{bottom:63.000630px;}
.yb0{bottom:64.793430px;}
.y80{bottom:70.697955px;}
.ybc{bottom:75.628920px;}
.yae{bottom:80.212485px;}
.y38{bottom:82.200300px;}
.y9{bottom:92.231962px;}
.y41{bottom:92.373060px;}
.yca{bottom:93.016155px;}
.yd2{bottom:94.154130px;}
.yde{bottom:100.199490px;}
.y79{bottom:111.614850px;}
.yda{bottom:122.593740px;}
.y76{bottom:140.014890px;}
.y78{bottom:142.069800px;}
.yb5{bottom:152.699550px;}
.yf9{bottom:160.440000px;}
.y61{bottom:163.457850px;}
.yc9{bottom:173.485350px;}
.ydc{bottom:178.897740px;}
.y40{bottom:181.152600px;}
.yce{bottom:188.842500px;}
.y8{bottom:189.838449px;}
.ydb{bottom:199.093740px;}
.y64{bottom:202.578164px;}
.y7d{bottom:216.837600px;}
.y7b{bottom:217.486545px;}
.y7a{bottom:221.944735px;}
.yf8{bottom:240.900150px;}
.yf4{bottom:241.500000px;}
.y42{bottom:244.908600px;}
.yad{bottom:250.051200px;}
.y65{bottom:257.435850px;}
.ye5{bottom:260.442000px;}
.ye6{bottom:262.032000px;}
.y37{bottom:263.700300px;}
.yd9{bottom:271.003800px;}
.y77{bottom:273.490740px;}
.y75{bottom:281.849250px;}
.yb3{bottom:286.461000px;}
.yc8{bottom:287.896200px;}
.yb8{bottom:312.942000px;}
.yba{bottom:314.532000px;}
.y52{bottom:321.376500px;}
.yf3{bottom:321.960000px;}
.y62{bottom:322.535383px;}
.ye1{bottom:324.705600px;}
.y44{bottom:328.912350px;}
.y3c{bottom:328.949250px;}
.yac{bottom:335.834550px;}
.y4e{bottom:352.011750px;}
.yf7{bottom:358.560000px;}
.yc7{bottom:368.365500px;}
.y5f{bottom:368.870700px;}
.ya6{bottom:385.622250px;}
.y88{bottom:397.980015px;}
.ye0{bottom:405.765600px;}
.yab{bottom:421.618050px;}
.yb2{bottom:424.320150px;}
.yf6{bottom:439.020000px;}
.yf2{bottom:439.620000px;}
.y36{bottom:445.200300px;}
.y7c{bottom:462.276150px;}
.y51{bottom:470.859000px;}
.ya5{bottom:481.097100px;}
.yc6{bottom:482.776350px;}
.yd6{bottom:488.469000px;}
.y35{bottom:492.149850px;}
.yf1{bottom:520.080000px;}
.y9b{bottom:528.813450px;}
.y2{bottom:533.300250px;}
.y9a{bottom:535.444215px;}
.yf5{bottom:556.680000px;}
.y84{bottom:561.417015px;}
.yb1{bottom:562.179150px;}
.yc5{bottom:563.245650px;}
.y73{bottom:564.138150px;}
.y49{bottom:567.474000px;}
.yd8{bottom:577.468155px;}
.y7f{bottom:583.387650px;}
.ya4{bottom:588.670350px;}
.yfd{bottom:601.140000px;}
.yd5{bottom:607.617450px;}
.y3a{bottom:616.084950px;}
.yd4{bottom:616.138350px;}
.y3e{bottom:618.069525px;}
.y9c{bottom:623.877750px;}
.yaf{bottom:624.094950px;}
.y99{bottom:626.023215px;}
.y55{bottom:637.101600px;}
.yf0{bottom:637.140000px;}
.ybd{bottom:641.963850px;}
.y53{bottom:648.074100px;}
.y1{bottom:653.300250px;}
.y83{bottom:667.025850px;}
.ya3{bottom:669.730350px;}
.yd3{bottom:674.074350px;}
.yc4{bottom:677.656500px;}
.y86{bottom:678.680265px;}
.ye3{bottom:694.258500px;}
.y82{bottom:697.546500px;}
.y5e{bottom:709.552200px;}
.y4b{bottom:714.797100px;}
.yfc{bottom:718.800000px;}
.y9f{bottom:719.965050px;}
.y74{bottom:723.277500px;}
.y98{bottom:738.307050px;}
.ybb{bottom:744.360150px;}
.yef{bottom:754.800000px;}
.yc3{bottom:758.125800px;}
.y4d{bottom:760.147500px;}
.yd7{bottom:760.241955px;}
.y97{bottom:766.872540px;}
.ya2{bottom:768.601650px;}
.ye2{bottom:775.318500px;}
.y96{bottom:787.807050px;}
.yaa{bottom:788.640000px;}
.y3d{bottom:798.637800px;}
.yfb{bottom:799.260000px;}
.y85{bottom:808.432800px;}
.y46{bottom:822.941775px;}
.ya0{bottom:831.270900px;}
.yee{bottom:835.260000px;}
.y6{bottom:857.660700px;}
.yc2{bottom:872.536650px;}
.ya9{bottom:872.787900px;}
.y87{bottom:888.356265px;}
.ye9{bottom:888.523065px;}
.ydd{bottom:889.017150px;}
.yd1{bottom:891.527550px;}
.ya1{bottom:893.767650px;}
.ye8{bottom:905.023065px;}
.y5d{bottom:916.069950px;}
.yfa{bottom:916.320000px;}
.y6b{bottom:935.942400px;}
.y6c{bottom:940.781115px;}
.y47{bottom:941.346750px;}
.y95{bottom:945.749550px;}
.yed{bottom:952.920000px;}
.yc1{bottom:953.596650px;}
.y94{bottom:974.314890px;}
.y50{bottom:976.081050px;}
.y5{bottom:977.660700px;}
.y9d{bottom:982.577400px;}
.yb4{bottom:988.017150px;}
.y93{bottom:995.249550px;}
.y69{bottom:1004.677350px;}
.ycb{bottom:1021.673400px;}
.yec{bottom:1033.380000px;}
.yc0{bottom:1034.342250px;}
.y9e{bottom:1093.095150px;}
.y6a{bottom:1099.177350px;}
.ye4{bottom:1133.388450px;}
.yeb{bottom:1151.040000px;}
.y4f{bottom:1152.863490px;}
.ybf{bottom:1163.875050px;}
.y90{bottom:1167.594000px;}
.yd0{bottom:1176.423150px;}
.y4{bottom:1177.897350px;}
.y8f{bottom:1184.132595px;}
.yb7{bottom:1185.888450px;}
.y68{bottom:1191.661350px;}
.y3f{bottom:1196.637900px;}
.y92{bottom:1197.186240px;}
.y91{bottom:1222.518060px;}
.y8c{bottom:1223.704950px;}
.yea{bottom:1231.500000px;}
.ybe{bottom:1244.344200px;}
.y8e{bottom:1260.503880px;}
.y48{bottom:1270.459500px;}
.y8d{bottom:1275.878880px;}
.ya8{bottom:1276.461450px;}
.y3{bottom:1319.731500px;}
.y67{bottom:1371.060150px;}
.ycf{bottom:1377.208650px;}
.y81{bottom:1379.577150px;}
.y54{bottom:1389.214650px;}
.y5c{bottom:1393.182150px;}
.y39{bottom:1395.362550px;}
.y8b{bottom:1399.815900px;}
.ya7{bottom:1400.168850px;}
.ycd{bottom:1479.858150px;}
.y56{bottom:1505.080500px;}
.y6d{bottom:1529.302500px;}
.y6f{bottom:1529.800500px;}
.y58{bottom:1533.949500px;}
.y5a{bottom:1535.802000px;}
.y89{bottom:1544.803500px;}
.y71{bottom:1545.760500px;}
.h33{height:43.028910px;}
.h55{height:44.946495px;}
.h32{height:45.263355px;}
.h31{height:45.761955px;}
.h25{height:52.222035px;}
.h26{height:52.477395px;}
.h40{height:55.220010px;}
.h23{height:55.414095px;}
.h30{height:59.104755px;}
.h7{height:62.001698px;}
.h9{height:64.261235px;}
.h5{height:64.441998px;}
.h8{height:67.786113px;}
.h6{height:111.355949px;}
.h21{height:114.919500px;}
.h44{height:116.672880px;}
.h57{height:120.900000px;}
.h2b{height:122.878175px;}
.h50{height:135.000090px;}
.h18{height:148.500105px;}
.h29{height:153.351935px;}
.h4e{height:154.752000px;}
.h47{height:159.358080px;}
.h13{height:169.260000px;}
.h3e{height:170.250150px;}
.h4{height:171.670950px;}
.h34{height:172.626402px;}
.h22{height:174.096000px;}
.h24{height:174.413954px;}
.h2f{height:180.312000px;}
.h2a{height:180.651065px;}
.h45{height:182.903100px;}
.he{height:193.440000px;}
.h54{height:193.633440px;}
.h56{height:193.987067px;}
.hd{height:197.208000px;}
.h37{height:206.580180px;}
.h43{height:207.692880px;}
.hf{height:212.784000px;}
.h41{height:218.317817px;}
.h48{height:222.889920px;}
.h5b{height:225.701520px;}
.h4c{height:233.586000px;}
.h42{height:233.733240px;}
.h10{height:241.800000px;}
.h5c{height:246.312000px;}
.h4d{height:251.472000px;}
.h11{height:254.076000px;}
.h16{height:258.174000px;}
.h1f{height:265.980000px;}
.h12{height:266.019000px;}
.h1{height:271.080000px;}
.h3{height:273.600000px;}
.h58{height:275.808000px;}
.h46{height:283.678080px;}
.h1b{height:290.160000px;}
.h53{height:290.450160px;}
.h3b{height:290.958000px;}
.h19{height:299.154000px;}
.h14{height:310.332000px;}
.h17{height:314.340000px;}
.h38{height:316.734600px;}
.h27{height:328.482000px;}
.hc{height:329.797440px;}
.h2d{height:340.704000px;}
.h2e{height:344.232000px;}
.h1a{height:353.028000px;}
.h59{height:354.144000px;}
.h2{height:364.945920px;}
.h35{height:365.132880px;}
.h20{height:372.372000px;}
.hb{height:373.440000px;}
.h3d{height:377.016000px;}
.h28{height:384.835500px;}
.h2c{height:392.616000px;}
.h1e{height:398.970000px;}
.h1c{height:415.495980px;}
.h4f{height:423.779006px;}
.h3c{height:426.192000px;}
.h5a{height:434.928000px;}
.h3f{height:443.134800px;}
.h49{height:475.250640px;}
.h4b{height:484.255200px;}
.h4a{height:589.512000px;}
.h3a{height:603.642018px;}
.ha{height:634.500150px;}
.h52{height:766.860150px;}
.h51{height:770.040150px;}
.h15{height:962.175150px;}
.h1d{height:1085.238000px;}
.h36{height:1090.472640px;}
.h39{height:1304.791740px;}
.h0{height:1620.000000px;}
.w17{width:36.638850px;}
.wd{width:43.028910px;}
.w5{width:57.073965px;}
.wb{width:65.325090px;}
.w12{width:68.663685px;}
.wc{width:79.792770px;}
.wa{width:82.626045px;}
.w6{width:103.735515px;}
.w7{width:110.892030px;}
.w15{width:135.000000px;}
.w14{width:135.000105px;}
.w3{width:170.250000px;}
.w1{width:189.102000px;}
.w11{width:264.225150px;}
.we{width:338.550150px;}
.w10{width:368.229900px;}
.wf{width:553.800150px;}
.w13{width:741.600150px;}
.w4{width:827.886150px;}
.w8{width:1011.960150px;}
.w9{width:1278.317400px;}
.w2{width:1678.393500px;}
.w16{width:2196.132000px;}
.w0{width:2880.000000px;}
.x8{left:-896.718633px;}
.x9{left:-888.612731px;}
.xa{left:-872.802368px;}
.xb{left:-399.432678px;}
.x30{left:-3.294000px;}
.x2e{left:-1.915245px;}
.x0{left:0.000000px;}
.x68{left:1.276800px;}
.x4b{left:3.255900px;}
.x8b{left:22.500150px;}
.x21{left:24.750000px;}
.x59{left:28.875000px;}
.x94{left:30.212220px;}
.x8d{left:31.410345px;}
.x37{left:33.321060px;}
.x3a{left:38.487388px;}
.x90{left:41.100000px;}
.x4a{left:51.028590px;}
.x87{left:53.837805px;}
.x3{left:59.860815px;}
.xf{left:66.757050px;}
.x3b{left:74.661367px;}
.x95{left:88.907220px;}
.x8e{left:93.900000px;}
.x36{left:108.876615px;}
.xa5{left:111.864090px;}
.xa6{left:113.061630px;}
.x81{left:116.102130px;}
.x1c{left:118.875000px;}
.x2d{left:126.366630px;}
.x14{left:138.788685px;}
.xd{left:144.877050px;}
.xb3{left:149.824215px;}
.x17{left:152.204700px;}
.x39{left:153.565829px;}
.x96{left:159.212250px;}
.xe{left:160.897050px;}
.x28{left:165.502350px;}
.x9e{left:170.437050px;}
.x29{left:171.687150px;}
.x72{left:182.868750px;}
.x2c{left:188.930925px;}
.x4f{left:196.766700px;}
.x4{left:198.589500px;}
.x18{left:199.780500px;}
.x70{left:212.644350px;}
.x63{left:214.107480px;}
.x5f{left:218.391735px;}
.xa7{left:242.033400px;}
.xa8{left:248.149275px;}
.x50{left:254.359500px;}
.x73{left:255.562590px;}
.x51{left:281.428050px;}
.x60{left:284.416350px;}
.x6{left:304.703400px;}
.xb2{left:311.500125px;}
.x5{left:312.938400px;}
.x93{left:323.056950px;}
.x75{left:337.807500px;}
.x16{left:341.855700px;}
.x42{left:343.125600px;}
.x82{left:345.230100px;}
.x1b{left:364.762950px;}
.x5e{left:382.302750px;}
.xa9{left:407.352750px;}
.x23{left:409.895250px;}
.x65{left:416.062950px;}
.x25{left:448.982100px;}
.x76{left:450.295440px;}
.x26{left:457.454265px;}
.x6b{left:466.650000px;}
.x8a{left:477.191100px;}
.x15{left:488.279550px;}
.x2a{left:499.878450px;}
.x3d{left:504.650181px;}
.x84{left:524.590650px;}
.xa0{left:527.070600px;}
.x3e{left:535.133930px;}
.xa1{left:547.783980px;}
.x74{left:555.020250px;}
.x83{left:559.654650px;}
.x44{left:568.395000px;}
.x45{left:571.800600px;}
.x71{left:583.452300px;}
.x7f{left:589.963950px;}
.x46{left:592.513980px;}
.x66{left:596.128650px;}
.xc{left:600.802950px;}
.x9f{left:606.397050px;}
.x69{left:609.842250px;}
.x3c{left:619.734104px;}
.x5a{left:647.199750px;}
.x6e{left:657.130050px;}
.x4c{left:671.070000px;}
.x19{left:703.161600px;}
.x91{left:710.310450px;}
.x35{left:735.495000px;}
.x6f{left:749.833890px;}
.x58{left:754.824750px;}
.xa2{left:757.605600px;}
.xaf{left:776.574600px;}
.x47{left:802.335600px;}
.x2f{left:838.982850px;}
.x5d{left:858.440400px;}
.x48{left:933.833850px;}
.x27{left:948.522600px;}
.x80{left:954.562500px;}
.x7b{left:964.578000px;}
.xa3{left:966.107250px;}
.x40{left:970.812975px;}
.x41{left:995.613155px;}
.xae{left:1003.883100px;}
.x53{left:1052.208990px;}
.x1e{left:1057.106550px;}
.x89{left:1071.383100px;}
.x6a{left:1073.895000px;}
.x1a{left:1076.226000px;}
.x7a{left:1082.412000px;}
.x8c{left:1084.000650px;}
.x3f{left:1085.896897px;}
.x52{left:1112.826150px;}
.x33{left:1128.139500px;}
.x20{left:1129.772550px;}
.x7c{left:1131.604350px;}
.x24{left:1237.515000px;}
.xab{left:1264.632750px;}
.x1d{left:1290.190650px;}
.xaa{left:1295.338800px;}
.x67{left:1306.426950px;}
.x54{left:1320.938100px;}
.x7e{left:1324.080000px;}
.x32{left:1365.673500px;}
.x85{left:1367.116350px;}
.x10{left:1397.565450px;}
.x57{left:1404.170700px;}
.xa4{left:1407.344850px;}
.x12{left:1429.040100px;}
.x55{left:1434.123900px;}
.x38{left:1452.732300px;}
.x64{left:1461.945930px;}
.x7d{left:1467.809790px;}
.x13{left:1474.530750px;}
.x1{left:1508.818500px;}
.x62{left:1532.974500px;}
.x4d{left:1568.115000px;}
.x31{left:1569.966000px;}
.x22{left:1571.419230px;}
.x2b{left:1619.403000px;}
.x92{left:1644.771000px;}
.x6c{left:1703.164500px;}
.x34{left:1705.779000px;}
.x2{left:1737.778500px;}
.x6d{left:1738.852140px;}
.x43{left:1754.353500px;}
.x1f{left:1815.522000px;}
.x5b{left:1824.481500px;}
.x11{left:1838.998500px;}
.x5c{left:1876.483500px;}
.x86{left:1912.474500px;}
.x9a{left:2069.505000px;}
.x98{left:2121.148500px;}
.x9b{left:2141.382000px;}
.x9d{left:2144.676000px;}
.x7{left:2174.193000px;}
.x56{left:2180.463000px;}
.x9c{left:2181.468000px;}
.x78{left:2225.580000px;}
.x97{left:2228.332500px;}
.x49{left:2260.167000px;}
.x4e{left:2281.542000px;}
.xb0{left:2311.947000px;}
.xb1{left:2329.227000px;}
.x88{left:2408.293500px;}
.x99{left:2455.260000px;}
.xac{left:2483.408400px;}
.x77{left:2485.310775px;}
.x79{left:2486.996790px;}
.xad{left:2491.616400px;}
.x8f{left:2686.917000px;}
.x61{left:2716.909665px;}
@media print{
.vc{vertical-align:-251.856000pt;}
.v25{vertical-align:-138.666667pt;}
.v2f{vertical-align:-136.810667pt;}
.v27{vertical-align:-122.666667pt;}
.v16{vertical-align:-112.000000pt;}
.v17{vertical-align:-98.560000pt;}
.v23{vertical-align:-94.666667pt;}
.v5{vertical-align:-91.637333pt;}
.v38{vertical-align:-90.666661pt;}
.v13{vertical-align:-85.536000pt;}
.v7{vertical-align:-84.000000pt;}
.v3{vertical-align:-82.666667pt;}
.v36{vertical-align:-79.786667pt;}
.v1{vertical-align:-73.310454pt;}
.v37{vertical-align:-71.808000pt;}
.v18{vertical-align:-58.666667pt;}
.v19{vertical-align:-56.747787pt;}
.v14{vertical-align:-39.013333pt;}
.v1b{vertical-align:-37.333333pt;}
.v4{vertical-align:-21.458667pt;}
.v28{vertical-align:-13.505067pt;}
.v2{vertical-align:-12.047720pt;}
.v33{vertical-align:-5.333333pt;}
.v1c{vertical-align:-2.349653pt;}
.v0{vertical-align:0.000000pt;}
.v34{vertical-align:2.100800pt;}
.v35{vertical-align:6.710400pt;}
.v11{vertical-align:16.600000pt;}
.v3a{vertical-align:18.858661pt;}
.v15{vertical-align:24.265893pt;}
.v31{vertical-align:39.189333pt;}
.v1a{vertical-align:56.747787pt;}
.v29{vertical-align:58.666667pt;}
.ve{vertical-align:72.144000pt;}
.v2e{vertical-align:74.434347pt;}
.v2c{vertical-align:80.906667pt;}
.v8{vertical-align:84.000000pt;}
.v12{vertical-align:85.536000pt;}
.v2a{vertical-align:86.826667pt;}
.v39{vertical-align:90.666661pt;}
.v24{vertical-align:94.666667pt;}
.v20{vertical-align:98.628267pt;}
.v1f{vertical-align:101.947840pt;}
.v2d{vertical-align:110.506667pt;}
.va{vertical-align:112.320000pt;}
.v2b{vertical-align:113.461333pt;}
.v6{vertical-align:130.826667pt;}
.v26{vertical-align:138.666667pt;}
.v1e{vertical-align:140.106667pt;}
.v9{vertical-align:159.840000pt;}
.v30{vertical-align:172.245333pt;}
.v32{vertical-align:195.737920pt;}
.v10{vertical-align:238.464000pt;}
.vf{vertical-align:251.856000pt;}
.v22{vertical-align:277.941349pt;}
.vb{vertical-align:324.000000pt;}
.v1d{vertical-align:571.597120pt;}
.vd{vertical-align:628.559787pt;}
.v21{vertical-align:976.188053pt;}
.ls2b{letter-spacing:-15.680000pt;}
.lsd{letter-spacing:-14.574933pt;}
.lsa{letter-spacing:-12.800000pt;}
.ls46{letter-spacing:-9.813333pt;}
.lse{letter-spacing:-4.480000pt;}
.lsf{letter-spacing:-3.763200pt;}
.lsc{letter-spacing:-3.200000pt;}
.ls44{letter-spacing:-2.240000pt;}
.ls32{letter-spacing:-2.083200pt;}
.ls39{letter-spacing:-1.173333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000005pt;}
.ls4b{letter-spacing:0.000107pt;}
.ls3{letter-spacing:0.000227pt;}
.ls1{letter-spacing:0.000655pt;}
.ls1e{letter-spacing:0.001600pt;}
.ls6{letter-spacing:0.005645pt;}
.ls7{letter-spacing:0.059350pt;}
.ls45{letter-spacing:0.085333pt;}
.ls23{letter-spacing:0.131070pt;}
.ls34{letter-spacing:1.333333pt;}
.ls48{letter-spacing:2.240000pt;}
.ls9{letter-spacing:4.067278pt;}
.ls3b{letter-spacing:8.273883pt;}
.ls3a{letter-spacing:11.370667pt;}
.ls38{letter-spacing:11.803519pt;}
.ls36{letter-spacing:12.202667pt;}
.ls8{letter-spacing:13.392000pt;}
.ls2e{letter-spacing:14.327680pt;}
.ls14{letter-spacing:15.785547pt;}
.ls2d{letter-spacing:19.690667pt;}
.ls27{letter-spacing:19.911467pt;}
.ls54{letter-spacing:20.448000pt;}
.ls1d{letter-spacing:22.464000pt;}
.ls5{letter-spacing:27.926354pt;}
.ls33{letter-spacing:30.814827pt;}
.ls2{letter-spacing:34.706796pt;}
.ls40{letter-spacing:35.200000pt;}
.ls4{letter-spacing:36.637309pt;}
.ls41{letter-spacing:52.147733pt;}
.ls42{letter-spacing:52.148267pt;}
.ls3e{letter-spacing:52.946133pt;}
.ls2c{letter-spacing:56.800000pt;}
.ls2f{letter-spacing:59.333333pt;}
.ls29{letter-spacing:63.103359pt;}
.ls1c{letter-spacing:63.103411pt;}
.ls2a{letter-spacing:63.103440pt;}
.ls31{letter-spacing:63.237333pt;}
.ls18{letter-spacing:64.800000pt;}
.ls43{letter-spacing:65.184960pt;}
.ls3d{letter-spacing:65.185120pt;}
.ls3f{letter-spacing:65.185173pt;}
.ls53{letter-spacing:65.185227pt;}
.ls3c{letter-spacing:69.354827pt;}
.ls1f{letter-spacing:72.000000pt;}
.ls17{letter-spacing:72.144000pt;}
.ls13{letter-spacing:74.666667pt;}
.ls28{letter-spacing:74.816000pt;}
.ls37{letter-spacing:78.144053pt;}
.ls50{letter-spacing:80.590933pt;}
.ls51{letter-spacing:80.592000pt;}
.ls4e{letter-spacing:80.592533pt;}
.ls4f{letter-spacing:80.593067pt;}
.ls10{letter-spacing:91.851840pt;}
.ls11{letter-spacing:93.333333pt;}
.ls12{letter-spacing:93.333440pt;}
.ls1b{letter-spacing:93.813333pt;}
.ls16{letter-spacing:96.000000pt;}
.ls25{letter-spacing:99.555733pt;}
.ls4d{letter-spacing:100.740800pt;}
.ls52{letter-spacing:100.741333pt;}
.ls19{letter-spacing:102.816000pt;}
.ls4c{letter-spacing:105.184960pt;}
.ls4a{letter-spacing:105.185067pt;}
.ls49{letter-spacing:105.185173pt;}
.ls47{letter-spacing:110.034773pt;}
.ls1a{letter-spacing:120.000000pt;}
.ls24{letter-spacing:124.444267pt;}
.ls55{letter-spacing:130.773280pt;}
.ls30{letter-spacing:144.648533pt;}
.ls20{letter-spacing:168.048000pt;}
.ls15{letter-spacing:190.923200pt;}
.ls26{letter-spacing:317.731733pt;}
.ls35{letter-spacing:456.824533pt;}
.ls21{letter-spacing:704.639570pt;}
.ls22{letter-spacing:704.659060pt;}
.ws53{word-spacing:-212.138667pt;}
.ws35{word-spacing:-82.160000pt;}
.ws55{word-spacing:-77.056000pt;}
.ws36{word-spacing:-76.800000pt;}
.ws2f{word-spacing:-75.840000pt;}
.ws1{word-spacing:-66.560000pt;}
.ws47{word-spacing:-64.533333pt;}
.ws46{word-spacing:-63.200000pt;}
.ws63{word-spacing:-59.136000pt;}
.ws52{word-spacing:-56.320000pt;}
.ws30{word-spacing:-55.616000pt;}
.ws49{word-spacing:-54.442667pt;}
.ws56{word-spacing:-51.251200pt;}
.ws58{word-spacing:-50.610560pt;}
.ws61{word-spacing:-50.560000pt;}
.ws3a{word-spacing:-45.504000pt;}
.ws59{word-spacing:-40.448000pt;}
.ws44{word-spacing:-0.554667pt;}
.ws45{word-spacing:-0.490667pt;}
.ws3e{word-spacing:-0.448000pt;}
.ws37{word-spacing:-0.432000pt;}
.ws43{word-spacing:-0.378667pt;}
.ws5d{word-spacing:-0.362667pt;}
.ws34{word-spacing:-0.336000pt;}
.ws0{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.318080pt;}
.ws38{word-spacing:-0.306720pt;}
.ws4c{word-spacing:-0.298667pt;}
.ws5a{word-spacing:-0.268853pt;}
.ws4b{word-spacing:-0.261333pt;}
.ws5e{word-spacing:-0.257493pt;}
.ws2e{word-spacing:-0.234773pt;}
.ws32{word-spacing:-0.234667pt;}
.ws3c{word-spacing:-0.226991pt;}
.ws57{word-spacing:-0.213547pt;}
.ws62{word-spacing:-0.213333pt;}
.ws41{word-spacing:-0.192000pt;}
.ws33{word-spacing:-0.166613pt;}
.ws5{word-spacing:-0.138826pt;}
.ws12{word-spacing:-0.080339pt;}
.ws2c{word-spacing:0.000000pt;}
.ws17{word-spacing:17.192567pt;}
.ws10{word-spacing:18.719010pt;}
.wsd{word-spacing:19.040245pt;}
.wsc{word-spacing:19.040366pt;}
.wsb{word-spacing:19.683079pt;}
.ws3{word-spacing:20.004435pt;}
.ws1f{word-spacing:20.486470pt;}
.wsa{word-spacing:20.647148pt;}
.ws1c{word-spacing:20.968504pt;}
.ws13{word-spacing:22.093252pt;}
.ws20{word-spacing:22.173591pt;}
.ws14{word-spacing:22.173942pt;}
.ws2b{word-spacing:22.334269pt;}
.wsf{word-spacing:22.414608pt;}
.ws31{word-spacing:22.528000pt;}
.ws15{word-spacing:22.735964pt;}
.ws16{word-spacing:22.976982pt;}
.ws28{word-spacing:23.024608pt;}
.ws29{word-spacing:23.057321pt;}
.ws18{word-spacing:23.217999pt;}
.ws2a{word-spacing:23.378677pt;}
.ws19{word-spacing:23.459016pt;}
.ws27{word-spacing:23.539355pt;}
.ws1a{word-spacing:24.101729pt;}
.ws1b{word-spacing:24.102061pt;}
.ws9{word-spacing:26.029867pt;}
.ws1e{word-spacing:26.421288pt;}
.ws1d{word-spacing:26.431563pt;}
.ws24{word-spacing:26.592241pt;}
.ws23{word-spacing:26.913598pt;}
.wse{word-spacing:26.993937pt;}
.ws11{word-spacing:27.958006pt;}
.ws25{word-spacing:28.199023pt;}
.ws21{word-spacing:28.279362pt;}
.ws26{word-spacing:29.564788pt;}
.ws22{word-spacing:30.528857pt;}
.ws7{word-spacing:34.567719pt;}
.ws8{word-spacing:34.568198pt;}
.ws4e{word-spacing:34.965333pt;}
.ws4d{word-spacing:38.954667pt;}
.ws6{word-spacing:46.645596pt;}
.ws4{word-spacing:46.645928pt;}
.ws5b{word-spacing:62.732267pt;}
.ws5c{word-spacing:62.732800pt;}
.ws3d{word-spacing:62.876371pt;}
.ws3b{word-spacing:62.876424pt;}
.ws4a{word-spacing:64.950507pt;}
.ws4f{word-spacing:65.018560pt;}
.ws51{word-spacing:69.737493pt;}
.ws5f{word-spacing:80.229333pt;}
.ws50{word-spacing:81.003200pt;}
.ws2d{word-spacing:91.520960pt;}
.ws40{word-spacing:99.107200pt;}
.ws39{word-spacing:119.568000pt;}
.ws54{word-spacing:264.120533pt;}
.ws48{word-spacing:373.160000pt;}
.ws42{word-spacing:558.708267pt;}
.ws60{word-spacing:674.787200pt;}
.ws2{word-spacing:820.054735pt;}
._39{margin-left:-4780.024107pt;}
._45{margin-left:-38.351112pt;}
._4{margin-left:-36.160000pt;}
._3c{margin-left:-31.253333pt;}
._29{margin-left:-24.960000pt;}
._2a{margin-left:-24.000000pt;}
._30{margin-left:-22.597779pt;}
._46{margin-left:-21.514043pt;}
._33{margin-left:-19.675112pt;}
._44{margin-left:-18.700806pt;}
._5{margin-left:-17.600000pt;}
._27{margin-left:-16.053333pt;}
._11{margin-left:-14.574933pt;}
._35{margin-left:-13.546667pt;}
._13{margin-left:-12.492800pt;}
._3b{margin-left:-11.596624pt;}
._26{margin-left:-10.499648pt;}
._8{margin-left:-9.600000pt;}
._1{margin-left:-8.000000pt;}
._14{margin-left:-6.246400pt;}
._1a{margin-left:-5.254397pt;}
._12{margin-left:-4.164267pt;}
._2{margin-left:-3.200000pt;}
._6{margin-left:-2.240000pt;}
._16{margin-left:-1.231554pt;}
._3{width:0.960000pt;}
._9{width:2.240000pt;}
._7{width:3.200000pt;}
._f{width:4.232533pt;}
._2b{width:5.866667pt;}
._c{width:7.091200pt;}
._e{width:8.294400pt;}
._0{width:9.600000pt;}
._d{width:10.602667pt;}
._b{width:11.840000pt;}
._a{width:12.800000pt;}
._43{width:14.037333pt;}
._36{width:15.002221pt;}
._21{width:16.370186pt;}
._10{width:19.515733pt;}
._40{width:21.013333pt;}
._1b{width:23.780373pt;}
._18{width:25.146137pt;}
._1d{width:26.110207pt;}
._25{width:27.885145pt;}
._1f{width:28.992919pt;}
._1e{width:30.819203pt;}
._20{width:33.088361pt;}
._22{width:34.419080pt;}
._23{width:38.295666pt;}
._19{width:42.409549pt;}
._1c{width:45.659075pt;}
._24{width:50.122102pt;}
._42{width:101.047467pt;}
._3f{width:105.464088pt;}
._41{width:132.009929pt;}
._32{width:164.115376pt;}
._28{width:229.158400pt;}
._3a{width:244.536621pt;}
._2f{width:255.530576pt;}
._31{width:306.578133pt;}
._2e{width:318.357333pt;}
._2c{width:399.281280pt;}
._2d{width:429.630039pt;}
._17{width:498.760071pt;}
._15{width:862.024329pt;}
._34{width:1524.758846pt;}
._3e{width:1714.514309pt;}
._3d{width:1815.038344pt;}
._37{width:2729.078488pt;}
._38{width:4093.493760pt;}
.fs4{font-size:56.237207pt;}
.fs2{font-size:80.339097pt;}
.fs32{font-size:133.333333pt;}
.fs3{font-size:138.826179pt;}
.fs1a{font-size:145.633393pt;}
.fs2a{font-size:155.253333pt;}
.fs1d{font-size:161.163360pt;}
.fsd{font-size:166.613333pt;}
.fs2e{font-size:170.666667pt;}
.fs28{font-size:185.546667pt;}
.fsc{font-size:186.666667pt;}
.fs17{font-size:192.000000pt;}
.fs19{font-size:194.177822pt;}
.fs2c{font-size:212.053333pt;}
.fs8{font-size:213.333333pt;}
.fs30{font-size:213.546667pt;}
.fs29{font-size:218.666667pt;}
.fs18{font-size:226.990667pt;}
.fs7{font-size:234.666667pt;}
.fsb{font-size:234.773333pt;}
.fsf{font-size:238.560000pt;}
.fs31{font-size:252.464053pt;}
.fs34{font-size:257.493333pt;}
.fs27{font-size:261.333333pt;}
.fs9{font-size:266.666667pt;}
.fs20{font-size:268.853333pt;}
.fs15{font-size:293.333333pt;}
.fs2b{font-size:298.666667pt;}
.fs2d{font-size:304.000000pt;}
.fs13{font-size:306.720000pt;}
.fs1c{font-size:318.080000pt;}
.fs0{font-size:320.000000pt;}
.fs2f{font-size:320.320000pt;}
.fsa{font-size:330.666667pt;}
.fse{font-size:336.000000pt;}
.fs10{font-size:346.666667pt;}
.fs24{font-size:348.373333pt;}
.fs33{font-size:362.666667pt;}
.fs25{font-size:373.333333pt;}
.fs6{font-size:376.320000pt;}
.fs1f{font-size:378.666667pt;}
.fs11{font-size:389.333333pt;}
.fs22{font-size:393.813333pt;}
.fs16{font-size:410.666667pt;}
.fs1{font-size:416.426667pt;}
.fs1e{font-size:416.640000pt;}
.fs5{font-size:426.666667pt;}
.fs12{font-size:432.000000pt;}
.fs14{font-size:440.000000pt;}
.fs1b{font-size:448.000000pt;}
.fs23{font-size:490.666667pt;}
.fs21{font-size:554.666667pt;}
.fs26{font-size:602.666667pt;}
.y34{bottom:-1142.897765pt;}
.y33{bottom:-1118.796278pt;}
.y32{bottom:-1094.694791pt;}
.y31{bottom:-1070.593303pt;}
.y30{bottom:-1046.491816pt;}
.y2f{bottom:-1022.390329pt;}
.y2e{bottom:-998.286826pt;}
.y2d{bottom:-974.185338pt;}
.y2c{bottom:-950.083851pt;}
.y2b{bottom:-925.982364pt;}
.y2a{bottom:-901.880877pt;}
.y29{bottom:-877.777374pt;}
.y28{bottom:-853.675886pt;}
.y27{bottom:-829.574399pt;}
.y26{bottom:-805.472912pt;}
.y25{bottom:-781.371425pt;}
.y24{bottom:-678.615021pt;}
.y23{bottom:-654.513534pt;}
.y22{bottom:-630.412047pt;}
.y21{bottom:-606.308543pt;}
.y20{bottom:-572.165274pt;}
.y1f{bottom:-548.063787pt;}
.y1e{bottom:-523.962299pt;}
.y1d{bottom:-499.858796pt;}
.y1c{bottom:-475.757309pt;}
.y1b{bottom:-451.655822pt;}
.y1a{bottom:-427.554335pt;}
.y19{bottom:-403.452847pt;}
.y18{bottom:-369.307562pt;}
.y17{bottom:-345.206075pt;}
.y16{bottom:-321.104587pt;}
.y15{bottom:-297.003100pt;}
.y14{bottom:-272.899597pt;}
.y13{bottom:-248.798110pt;}
.y12{bottom:-224.696622pt;}
.y11{bottom:-200.595135pt;}
.y10{bottom:-176.493648pt;}
.yf{bottom:-114.472891pt;}
.ye{bottom:-90.371404pt;}
.yd{bottom:-66.267900pt;}
.yc{bottom:-42.166413pt;}
.yb{bottom:-14.049019pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:0.000267pt;}
.y8a{bottom:0.850933pt;}
.y5b{bottom:8.852267pt;}
.y59{bottom:10.498933pt;}
.ycc{bottom:12.938707pt;}
.y70{bottom:14.186933pt;}
.y6e{bottom:14.629600pt;}
.yb9{bottom:20.000133pt;}
.ye7{bottom:20.559040pt;}
.y45{bottom:25.000133pt;}
.y7{bottom:28.606547pt;}
.y57{bottom:36.160000pt;}
.yb6{bottom:36.533333pt;}
.ydf{bottom:36.533413pt;}
.y63{bottom:38.913137pt;}
.y60{bottom:40.186667pt;}
.y4a{bottom:40.186800pt;}
.y7e{bottom:45.666667pt;}
.y66{bottom:47.879840pt;}
.ya{bottom:48.999907pt;}
.y3b{bottom:53.317400pt;}
.y43{bottom:56.000520pt;}
.y4c{bottom:56.000560pt;}
.yb0{bottom:57.594160pt;}
.y80{bottom:62.842627pt;}
.ybc{bottom:67.225707pt;}
.yae{bottom:71.299987pt;}
.y38{bottom:73.066933pt;}
.y9{bottom:81.983966pt;}
.y41{bottom:82.109387pt;}
.yca{bottom:82.681027pt;}
.yd2{bottom:83.692560pt;}
.yde{bottom:89.066213pt;}
.y79{bottom:99.213200pt;}
.yda{bottom:108.972213pt;}
.y76{bottom:124.457680pt;}
.y78{bottom:126.284267pt;}
.yb5{bottom:135.732933pt;}
.yf9{bottom:142.613333pt;}
.y61{bottom:145.295867pt;}
.yc9{bottom:154.209200pt;}
.ydc{bottom:159.020213pt;}
.y40{bottom:161.024533pt;}
.yce{bottom:167.860000pt;}
.y8{bottom:168.745288pt;}
.ydb{bottom:176.972213pt;}
.y64{bottom:180.069479pt;}
.y7d{bottom:192.744533pt;}
.y7b{bottom:193.321373pt;}
.y7a{bottom:197.284209pt;}
.yf8{bottom:214.133467pt;}
.yf4{bottom:214.666667pt;}
.y42{bottom:217.696533pt;}
.yad{bottom:222.267733pt;}
.y65{bottom:228.831867pt;}
.ye5{bottom:231.504000pt;}
.ye6{bottom:232.917333pt;}
.y37{bottom:234.400267pt;}
.yd9{bottom:240.892267pt;}
.y77{bottom:243.102880pt;}
.y75{bottom:250.532667pt;}
.yb3{bottom:254.632000pt;}
.yc8{bottom:255.907733pt;}
.yb8{bottom:278.170667pt;}
.yba{bottom:279.584000pt;}
.y52{bottom:285.668000pt;}
.yf3{bottom:286.186667pt;}
.y62{bottom:286.698118pt;}
.ye1{bottom:288.627200pt;}
.y44{bottom:292.366533pt;}
.y3c{bottom:292.399333pt;}
.yac{bottom:298.519600pt;}
.y4e{bottom:312.899333pt;}
.yf7{bottom:318.720000pt;}
.yc7{bottom:327.436000pt;}
.y5f{bottom:327.885067pt;}
.ya6{bottom:342.775333pt;}
.y88{bottom:353.760013pt;}
.ye0{bottom:360.680533pt;}
.yab{bottom:374.771600pt;}
.yb2{bottom:377.173467pt;}
.yf6{bottom:390.240000pt;}
.yf2{bottom:390.773333pt;}
.y36{bottom:395.733600pt;}
.y7c{bottom:410.912133pt;}
.y51{bottom:418.541333pt;}
.ya5{bottom:427.641867pt;}
.yc6{bottom:429.134533pt;}
.yd6{bottom:434.194667pt;}
.y35{bottom:437.466533pt;}
.yf1{bottom:462.293333pt;}
.y9b{bottom:470.056400pt;}
.y2{bottom:474.044667pt;}
.y9a{bottom:475.950413pt;}
.yf5{bottom:494.826667pt;}
.y84{bottom:499.037347pt;}
.yb1{bottom:499.714800pt;}
.yc5{bottom:500.662800pt;}
.y73{bottom:501.456133pt;}
.y49{bottom:504.421333pt;}
.yd8{bottom:513.305027pt;}
.y7f{bottom:518.566800pt;}
.ya4{bottom:523.262533pt;}
.yfd{bottom:534.346667pt;}
.yd5{bottom:540.104400pt;}
.y3a{bottom:547.631067pt;}
.yd4{bottom:547.678533pt;}
.y3e{bottom:549.395133pt;}
.y9c{bottom:554.558000pt;}
.yaf{bottom:554.751067pt;}
.y99{bottom:556.465080pt;}
.y55{bottom:566.312533pt;}
.yf0{bottom:566.346667pt;}
.ybd{bottom:570.634533pt;}
.y53{bottom:576.065867pt;}
.y1{bottom:580.711333pt;}
.y83{bottom:592.911867pt;}
.ya3{bottom:595.315867pt;}
.yd3{bottom:599.177200pt;}
.yc4{bottom:602.361333pt;}
.y86{bottom:603.271347pt;}
.ye3{bottom:617.118667pt;}
.y82{bottom:620.041333pt;}
.y5e{bottom:630.713067pt;}
.y4b{bottom:635.375200pt;}
.yfc{bottom:638.933333pt;}
.y9f{bottom:639.968933pt;}
.y74{bottom:642.913333pt;}
.y98{bottom:656.272933pt;}
.ybb{bottom:661.653467pt;}
.yef{bottom:670.933333pt;}
.yc3{bottom:673.889600pt;}
.y4d{bottom:675.686667pt;}
.yd7{bottom:675.770627pt;}
.y97{bottom:681.664480pt;}
.ya2{bottom:683.201467pt;}
.ye2{bottom:689.172000pt;}
.y96{bottom:700.272933pt;}
.yaa{bottom:701.013333pt;}
.y3d{bottom:709.900267pt;}
.yfb{bottom:710.453333pt;}
.y85{bottom:718.606933pt;}
.y46{bottom:731.503800pt;}
.ya0{bottom:738.907467pt;}
.yee{bottom:742.453333pt;}
.y6{bottom:762.365067pt;}
.yc2{bottom:775.588133pt;}
.ya9{bottom:775.811467pt;}
.y87{bottom:789.650013pt;}
.ye9{bottom:789.798280pt;}
.ydd{bottom:790.237467pt;}
.yd1{bottom:792.468933pt;}
.ya1{bottom:794.460133pt;}
.ye8{bottom:804.464947pt;}
.y5d{bottom:814.284400pt;}
.yfa{bottom:814.506667pt;}
.y6b{bottom:831.948800pt;}
.y6c{bottom:836.249880pt;}
.y47{bottom:836.752667pt;}
.y95{bottom:840.666267pt;}
.yed{bottom:847.040000pt;}
.yc1{bottom:847.641467pt;}
.y94{bottom:866.057680pt;}
.y50{bottom:867.627600pt;}
.y5{bottom:869.031733pt;}
.y9d{bottom:873.402133pt;}
.yb4{bottom:878.237467pt;}
.y93{bottom:884.666267pt;}
.y69{bottom:893.046533pt;}
.ycb{bottom:908.154133pt;}
.yec{bottom:918.560000pt;}
.yc0{bottom:919.415333pt;}
.y9e{bottom:971.640133pt;}
.y6a{bottom:977.046533pt;}
.ye4{bottom:1007.456400pt;}
.yeb{bottom:1023.146667pt;}
.y4f{bottom:1024.767547pt;}
.ybf{bottom:1034.555600pt;}
.y90{bottom:1037.861333pt;}
.yd0{bottom:1045.709467pt;}
.y4{bottom:1047.019867pt;}
.y8f{bottom:1052.562307pt;}
.yb7{bottom:1054.123067pt;}
.y68{bottom:1059.254533pt;}
.y3f{bottom:1063.678133pt;}
.y92{bottom:1064.165547pt;}
.y91{bottom:1086.682720pt;}
.y8c{bottom:1087.737733pt;}
.yea{bottom:1094.666667pt;}
.ybe{bottom:1106.083733pt;}
.y8e{bottom:1120.447893pt;}
.y48{bottom:1129.297333pt;}
.y8d{bottom:1134.114560pt;}
.ya8{bottom:1134.632400pt;}
.y3{bottom:1173.094667pt;}
.y67{bottom:1218.720133pt;}
.ycf{bottom:1224.185467pt;}
.y81{bottom:1226.290800pt;}
.y54{bottom:1234.857467pt;}
.y5c{bottom:1238.384133pt;}
.y39{bottom:1240.322267pt;}
.y8b{bottom:1244.280800pt;}
.ya7{bottom:1244.594533pt;}
.ycd{bottom:1315.429467pt;}
.y56{bottom:1337.849333pt;}
.y6d{bottom:1359.380000pt;}
.y6f{bottom:1359.822667pt;}
.y58{bottom:1363.510667pt;}
.y5a{bottom:1365.157333pt;}
.y89{bottom:1373.158667pt;}
.y71{bottom:1374.009333pt;}
.h33{height:38.247920pt;}
.h55{height:39.952440pt;}
.h32{height:40.234093pt;}
.h31{height:40.677293pt;}
.h25{height:46.419587pt;}
.h26{height:46.646573pt;}
.h40{height:49.084453pt;}
.h23{height:49.256973pt;}
.h30{height:52.537560pt;}
.h7{height:55.112621pt;}
.h9{height:57.121098pt;}
.h5{height:57.281776pt;}
.h8{height:60.254323pt;}
.h6{height:98.983066pt;}
.h21{height:102.150667pt;}
.h44{height:103.709227pt;}
.h57{height:107.466667pt;}
.h2b{height:109.225045pt;}
.h50{height:120.000080pt;}
.h18{height:132.000093pt;}
.h29{height:136.312831pt;}
.h4e{height:137.557333pt;}
.h47{height:141.651627pt;}
.h13{height:150.453333pt;}
.h3e{height:151.333467pt;}
.h4{height:152.596400pt;}
.h34{height:153.445691pt;}
.h22{height:154.752000pt;}
.h24{height:155.034625pt;}
.h2f{height:160.277333pt;}
.h2a{height:160.578724pt;}
.h45{height:162.580533pt;}
.he{height:171.946667pt;}
.h54{height:172.118613pt;}
.h56{height:172.432948pt;}
.hd{height:175.296000pt;}
.h37{height:183.626827pt;}
.h43{height:184.615893pt;}
.hf{height:189.141333pt;}
.h41{height:194.060282pt;}
.h48{height:198.124373pt;}
.h5b{height:200.623573pt;}
.h4c{height:207.632000pt;}
.h42{height:207.762880pt;}
.h10{height:214.933333pt;}
.h5c{height:218.944000pt;}
.h4d{height:223.530667pt;}
.h11{height:225.845333pt;}
.h16{height:229.488000pt;}
.h1f{height:236.426667pt;}
.h12{height:236.461333pt;}
.h1{height:240.960000pt;}
.h3{height:243.200000pt;}
.h58{height:245.162667pt;}
.h46{height:252.158293pt;}
.h1b{height:257.920000pt;}
.h53{height:258.177920pt;}
.h3b{height:258.629333pt;}
.h19{height:265.914667pt;}
.h14{height:275.850667pt;}
.h17{height:279.413333pt;}
.h38{height:281.541867pt;}
.h27{height:291.984000pt;}
.hc{height:293.153280pt;}
.h2d{height:302.848000pt;}
.h2e{height:305.984000pt;}
.h1a{height:313.802667pt;}
.h59{height:314.794667pt;}
.h2{height:324.396373pt;}
.h35{height:324.562560pt;}
.h20{height:330.997333pt;}
.hb{height:331.946667pt;}
.h3d{height:335.125333pt;}
.h28{height:342.076000pt;}
.h2c{height:348.992000pt;}
.h1e{height:354.640000pt;}
.h1c{height:369.329760pt;}
.h4f{height:376.692449pt;}
.h3c{height:378.837333pt;}
.h5a{height:386.602667pt;}
.h3f{height:393.897600pt;}
.h49{height:422.445013pt;}
.h4b{height:430.449067pt;}
.h4a{height:524.010667pt;}
.h3a{height:536.570683pt;}
.ha{height:564.000133pt;}
.h52{height:681.653467pt;}
.h51{height:684.480133pt;}
.h15{height:855.266800pt;}
.h1d{height:964.656000pt;}
.h36{height:969.309013pt;}
.h39{height:1159.814880pt;}
.h0{height:1440.000000pt;}
.w17{width:32.567867pt;}
.wd{width:38.247920pt;}
.w5{width:50.732413pt;}
.wb{width:58.066747pt;}
.w12{width:61.034387pt;}
.wc{width:70.926907pt;}
.wa{width:73.445373pt;}
.w6{width:92.209347pt;}
.w7{width:98.570693pt;}
.w15{width:120.000000pt;}
.w14{width:120.000093pt;}
.w3{width:151.333333pt;}
.w1{width:168.090667pt;}
.w11{width:234.866800pt;}
.we{width:300.933467pt;}
.w10{width:327.315467pt;}
.wf{width:492.266800pt;}
.w13{width:659.200133pt;}
.w4{width:735.898800pt;}
.w8{width:899.520133pt;}
.w9{width:1136.282133pt;}
.w2{width:1491.905333pt;}
.w16{width:1952.117333pt;}
.w0{width:2560.000000pt;}
.x8{left:-797.083229pt;}
.x9{left:-789.877984pt;}
.xa{left:-775.824327pt;}
.xb{left:-355.051269pt;}
.x30{left:-2.928000pt;}
.x2e{left:-1.702440pt;}
.x0{left:0.000000pt;}
.x68{left:1.134933pt;}
.x4b{left:2.894133pt;}
.x8b{left:20.000133pt;}
.x21{left:22.000000pt;}
.x59{left:25.666667pt;}
.x94{left:26.855307pt;}
.x8d{left:27.920307pt;}
.x37{left:29.618720pt;}
.x3a{left:34.211011pt;}
.x90{left:36.533333pt;}
.x4a{left:45.358747pt;}
.x87{left:47.855827pt;}
.x3{left:53.209613pt;}
.xf{left:59.339600pt;}
.x3b{left:66.365660pt;}
.x95{left:79.028640pt;}
.x8e{left:83.466667pt;}
.x36{left:96.779213pt;}
.xa5{left:99.434747pt;}
.xa6{left:100.499227pt;}
.x81{left:103.201893pt;}
.x1c{left:105.666667pt;}
.x2d{left:112.325893pt;}
.x14{left:123.367720pt;}
.xd{left:128.779600pt;}
.xb3{left:133.177080pt;}
.x17{left:135.293067pt;}
.x39{left:136.502959pt;}
.x96{left:141.522000pt;}
.xe{left:143.019600pt;}
.x28{left:147.113200pt;}
.x9e{left:151.499600pt;}
.x29{left:152.610800pt;}
.x72{left:162.550000pt;}
.x2c{left:167.938600pt;}
.x4f{left:174.903733pt;}
.x4{left:176.524000pt;}
.x18{left:177.582667pt;}
.x70{left:189.017200pt;}
.x63{left:190.317760pt;}
.x5f{left:194.125987pt;}
.xa7{left:215.140800pt;}
.xa8{left:220.577133pt;}
.x50{left:226.097333pt;}
.x73{left:227.166747pt;}
.x51{left:250.158267pt;}
.x60{left:252.814533pt;}
.x6{left:270.847467pt;}
.xb2{left:276.889000pt;}
.x5{left:278.167467pt;}
.x93{left:287.161733pt;}
.x75{left:300.273333pt;}
.x16{left:303.871733pt;}
.x42{left:305.000533pt;}
.x82{left:306.871200pt;}
.x1b{left:324.233733pt;}
.x5e{left:339.824667pt;}
.xa9{left:362.091333pt;}
.x23{left:364.351333pt;}
.x65{left:369.833733pt;}
.x25{left:399.095200pt;}
.x76{left:400.262613pt;}
.x26{left:406.626013pt;}
.x6b{left:414.800000pt;}
.x8a{left:424.169867pt;}
.x15{left:434.026267pt;}
.x2a{left:444.336400pt;}
.x3d{left:448.577939pt;}
.x84{left:466.302800pt;}
.xa0{left:468.507200pt;}
.x3e{left:475.674605pt;}
.xa1{left:486.919093pt;}
.x74{left:493.351333pt;}
.x83{left:497.470800pt;}
.x44{left:505.240000pt;}
.x45{left:508.267200pt;}
.x71{left:518.624267pt;}
.x7f{left:524.412400pt;}
.x46{left:526.679093pt;}
.x66{left:529.892133pt;}
.xc{left:534.047067pt;}
.x9f{left:539.019600pt;}
.x69{left:542.082000pt;}
.x3c{left:550.874759pt;}
.x5a{left:575.288667pt;}
.x6e{left:584.115600pt;}
.x4c{left:596.506667pt;}
.x19{left:625.032533pt;}
.x91{left:631.387067pt;}
.x35{left:653.773333pt;}
.x6f{left:666.519013pt;}
.x58{left:670.955333pt;}
.xa2{left:673.427200pt;}
.xaf{left:690.288533pt;}
.x47{left:713.187200pt;}
.x2f{left:745.762533pt;}
.x5d{left:763.058133pt;}
.x48{left:830.074533pt;}
.x27{left:843.131200pt;}
.x80{left:848.500000pt;}
.x7b{left:857.402667pt;}
.xa3{left:858.762000pt;}
.x40{left:862.944866pt;}
.x41{left:884.989471pt;}
.xae{left:892.340533pt;}
.x53{left:935.296880pt;}
.x1e{left:939.650267pt;}
.x89{left:952.340533pt;}
.x6a{left:954.573333pt;}
.x1a{left:956.645333pt;}
.x7a{left:962.144000pt;}
.x8c{left:963.556133pt;}
.x3f{left:965.241686pt;}
.x52{left:989.178800pt;}
.x33{left:1002.790667pt;}
.x20{left:1004.242267pt;}
.x7c{left:1005.870533pt;}
.x24{left:1100.013333pt;}
.xab{left:1124.118000pt;}
.x1d{left:1146.836133pt;}
.xaa{left:1151.412267pt;}
.x67{left:1161.268400pt;}
.x54{left:1174.167200pt;}
.x7e{left:1176.960000pt;}
.x32{left:1213.932000pt;}
.x85{left:1215.214533pt;}
.x10{left:1242.280400pt;}
.x57{left:1248.151733pt;}
.xa4{left:1250.973200pt;}
.x12{left:1270.257867pt;}
.x55{left:1274.776800pt;}
.x38{left:1291.317600pt;}
.x64{left:1299.507493pt;}
.x7d{left:1304.719813pt;}
.x13{left:1310.694000pt;}
.x1{left:1341.172000pt;}
.x62{left:1362.644000pt;}
.x4d{left:1393.880000pt;}
.x31{left:1395.525333pt;}
.x22{left:1396.817093pt;}
.x2b{left:1439.469333pt;}
.x92{left:1462.018667pt;}
.x6c{left:1513.924000pt;}
.x34{left:1516.248000pt;}
.x2{left:1544.692000pt;}
.x6d{left:1545.646347pt;}
.x43{left:1559.425333pt;}
.x1f{left:1613.797333pt;}
.x5b{left:1621.761333pt;}
.x11{left:1634.665333pt;}
.x5c{left:1667.985333pt;}
.x86{left:1699.977333pt;}
.x9a{left:1839.560000pt;}
.x98{left:1885.465333pt;}
.x9b{left:1903.450667pt;}
.x9d{left:1906.378667pt;}
.x7{left:1932.616000pt;}
.x56{left:1938.189333pt;}
.x9c{left:1939.082667pt;}
.x78{left:1978.293333pt;}
.x97{left:1980.740000pt;}
.x49{left:2009.037333pt;}
.x4e{left:2028.037333pt;}
.xb0{left:2055.064000pt;}
.xb1{left:2070.424000pt;}
.x88{left:2140.705333pt;}
.x99{left:2182.453333pt;}
.xac{left:2207.474133pt;}
.x77{left:2209.165133pt;}
.x79{left:2210.663813pt;}
.xad{left:2214.770133pt;}
.x8f{left:2388.370667pt;}
.x61{left:2415.030813pt;}
}




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