
    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_fd229e05adda3d92922d9d8f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_42db664fd715dc3a40a06065.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_b9a5e2974df50f998894bfa6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_5d4cdec052c81747cf693fbd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_314099b6cbdd0f9d6a8e2a3a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.125488;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_4721cdac8d0d24d55c29acbb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f4ad31d4ef2ce2b3b14467c6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_55624bfe39d4a195844549e3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_af40d10622679db04dc2ddd2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_6534d5d56b33f25be9c5245f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fdfcb31d242235d8689b7fc0.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffd98ac3dae1e0c5c3418c4c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_2bbf7b85bf8c01acc5b0ff6a.woff')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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;}
.m23{transform:matrix(0.220046,0.000000,-0.073341,0.239000,0,0);-ms-transform:matrix(0.220046,0.000000,-0.073341,0.239000,0,0);-webkit-transform:matrix(0.220046,0.000000,-0.073341,0.239000,0,0);}
.m22{transform:matrix(0.230174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230174,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.231673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231673,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.234619,0.000000,-0.078198,0.237455,0,0);-ms-transform:matrix(0.234619,0.000000,-0.078198,0.237455,0,0);-webkit-transform:matrix(0.234619,0.000000,-0.078198,0.237455,0,0);}
.m5{transform:matrix(0.234773,0.000000,-0.078250,0.237438,0,0);-ms-transform:matrix(0.234773,0.000000,-0.078250,0.237438,0,0);-webkit-transform:matrix(0.234773,0.000000,-0.078250,0.237438,0,0);}
.m3{transform:matrix(0.236502,0.000000,-0.078826,0.237248,0,0);-ms-transform:matrix(0.236502,0.000000,-0.078826,0.237248,0,0);-webkit-transform:matrix(0.236502,0.000000,-0.078826,0.237248,0,0);}
.m1f{transform:matrix(0.237729,0.000000,-0.079235,0.237111,0,0);-ms-transform:matrix(0.237729,0.000000,-0.079235,0.237111,0,0);-webkit-transform:matrix(0.237729,0.000000,-0.079235,0.237111,0,0);}
.m18{transform:matrix(0.238561,0.000000,-0.079512,0.237019,0,0);-ms-transform:matrix(0.238561,0.000000,-0.079512,0.237019,0,0);-webkit-transform:matrix(0.238561,0.000000,-0.079512,0.237019,0,0);}
.m9{transform:matrix(0.240973,0.000000,-0.080316,0.236747,0,0);-ms-transform:matrix(0.240973,0.000000,-0.080316,0.236747,0,0);-webkit-transform:matrix(0.240973,0.000000,-0.080316,0.236747,0,0);}
.m1a{transform:matrix(0.241567,0.000000,-0.080514,0.236680,0,0);-ms-transform:matrix(0.241567,0.000000,-0.080514,0.236680,0,0);-webkit-transform:matrix(0.241567,0.000000,-0.080514,0.236680,0,0);}
.m16{transform:matrix(0.242349,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.242349,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242349,0.000001,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242362,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247193,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,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);}
.mc{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250581,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250977,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251549,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251901,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253074,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253359,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254058,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.254092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254092,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254462,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.255162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255162,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-53.454668px;}
.v4{vertical-align:-48.802476px;}
.v2{vertical-align:-40.612512px;}
.v5{vertical-align:-36.532639px;}
.v7{vertical-align:-11.059277px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.428648px;}
.v6{vertical-align:42.308661px;}
.v3{vertical-align:49.512525px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls30{letter-spacing:-1.800000px;}
.ls21{letter-spacing:-0.437350px;}
.lsc{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.168000px;}
.ls20{letter-spacing:-0.146817px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls38{letter-spacing:0.060000px;}
.ls2a{letter-spacing:0.071290px;}
.ls27{letter-spacing:0.093678px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.191480px;}
.ls17{letter-spacing:0.213869px;}
.ls3b{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls10{letter-spacing:4.800000px;}
.ls3c{letter-spacing:10.200000px;}
.ls15{letter-spacing:10.546222px;}
.ls2d{letter-spacing:18.520907px;}
.ls2e{letter-spacing:19.950174px;}
.ls1f{letter-spacing:20.730164px;}
.ls1b{letter-spacing:21.129694px;}
.lsd{letter-spacing:21.648000px;}
.ls31{letter-spacing:23.476968px;}
.ls26{letter-spacing:24.450555px;}
.ls1a{letter-spacing:24.509472px;}
.ls16{letter-spacing:24.568389px;}
.ls2b{letter-spacing:24.627306px;}
.ls22{letter-spacing:24.745140px;}
.ls3a{letter-spacing:26.520000px;}
.ls12{letter-spacing:27.331679px;}
.ls1c{letter-spacing:27.352355px;}
.lsf{letter-spacing:33.984000px;}
.lse{letter-spacing:37.092076px;}
.lsb{letter-spacing:54.984000px;}
.ls28{letter-spacing:59.565087px;}
.ls11{letter-spacing:63.720000px;}
.ls29{letter-spacing:64.160613px;}
.ls33{letter-spacing:66.219385px;}
.ls1e{letter-spacing:69.680124px;}
.ls32{letter-spacing:72.408993px;}
.ls18{letter-spacing:83.190804px;}
.ls3d{letter-spacing:84.048000px;}
.ls2c{letter-spacing:100.689153px;}
.ls25{letter-spacing:118.776672px;}
.ls39{letter-spacing:126.048000px;}
.ls1d{letter-spacing:132.522159px;}
.ls24{letter-spacing:142.284555px;}
.ls19{letter-spacing:154.151956px;}
.ls13{letter-spacing:177.499213px;}
.ls35{letter-spacing:189.285501px;}
.ls2f{letter-spacing:294.222851px;}
.ls36{letter-spacing:358.187918px;}
.ls37{letter-spacing:613.882113px;}
.ls14{letter-spacing:709.558514px;}
.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;}
}
.wsa{word-spacing:-39.528000px;}
.ws1d{word-spacing:-32.940000px;}
.ws3a{word-spacing:-23.548513px;}
.wse{word-spacing:-21.000000px;}
.ws44{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.024000px;}
.wsb{word-spacing:-18.000000px;}
.ws3b{word-spacing:-17.832000px;}
.wsd{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws30{word-spacing:-0.050331px;}
.ws1e{word-spacing:-0.041179px;}
.ws9{word-spacing:0.000000px;}
.ws36{word-spacing:10.951534px;}
.ws2d{word-spacing:12.703961px;}
.ws3d{word-spacing:14.575712px;}
.ws16{word-spacing:20.582510px;}
.ws2e{word-spacing:22.299661px;}
.ws1f{word-spacing:23.747746px;}
.ws2b{word-spacing:23.830030px;}
.ws3e{word-spacing:24.032150px;}
.ws3c{word-spacing:24.174352px;}
.ws28{word-spacing:24.848307px;}
.ws20{word-spacing:24.885362px;}
.ws21{word-spacing:25.352883px;}
.ws43{word-spacing:25.708330px;}
.ws25{word-spacing:26.203132px;}
.ws38{word-spacing:26.307383px;}
.ws39{word-spacing:26.490580px;}
.ws29{word-spacing:26.561984px;}
.ws12{word-spacing:27.195250px;}
.wsf{word-spacing:27.420759px;}
.ws41{word-spacing:27.484234px;}
.ws34{word-spacing:27.987254px;}
.ws13{word-spacing:28.032027px;}
.ws31{word-spacing:28.074171px;}
.ws35{word-spacing:30.507845px;}
.ws19{word-spacing:50.761773px;}
.ws40{word-spacing:52.614766px;}
.ws14{word-spacing:62.172525px;}
.ws24{word-spacing:66.783204px;}
.ws2a{word-spacing:71.407754px;}
.ws1b{word-spacing:76.778496px;}
.ws1a{word-spacing:78.478711px;}
.ws11{word-spacing:93.572323px;}
.ws3f{word-spacing:151.249948px;}
.ws2c{word-spacing:151.496848px;}
.ws18{word-spacing:151.578388px;}
.ws37{word-spacing:153.679501px;}
.ws15{word-spacing:170.498774px;}
.ws1c{word-spacing:173.688603px;}
.ws42{word-spacing:175.313605px;}
.ws10{word-spacing:175.896304px;}
.ws22{word-spacing:177.808793px;}
.ws17{word-spacing:179.664768px;}
.ws23{word-spacing:201.348087px;}
.ws27{word-spacing:239.074594px;}
.ws26{word-spacing:252.755875px;}
.ws2f{word-spacing:387.499415px;}
.ws32{word-spacing:566.527265px;}
.ws33{word-spacing:583.841176px;}
._6c{margin-left:-504.140114px;}
._58{margin-left:-229.927209px;}
._6d{margin-left:-205.652688px;}
._6e{margin-left:-148.511314px;}
._36{margin-left:-8.258312px;}
._1a{margin-left:-4.320000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._4{width:2.880000px;}
._5{width:4.524000px;}
._9{width:5.628000px;}
._20{width:6.912000px;}
._e{width:8.856000px;}
._6{width:10.512000px;}
._11{width:12.342000px;}
._7e{width:13.398000px;}
._a{width:14.478000px;}
._12{width:15.552000px;}
._13{width:16.632000px;}
._21{width:19.368000px;}
._22{width:20.448000px;}
._d{width:22.104000px;}
._7{width:23.184000px;}
._8{width:24.480000px;}
._1b{width:26.208000px;}
._19{width:28.008000px;}
._b{width:29.376000px;}
._c{width:30.672000px;}
._2c{width:31.824000px;}
._2b{width:32.904000px;}
._28{width:34.344000px;}
._23{width:35.784000px;}
._24{width:36.864000px;}
._25{width:37.944000px;}
._10{width:39.168000px;}
._f{width:40.608000px;}
._16{width:42.408000px;}
._17{width:43.488000px;}
._7b{width:44.712000px;}
._29{width:45.888000px;}
._2a{width:47.136000px;}
._79{width:48.264000px;}
._46{width:50.150427px;}
._7c{width:51.369573px;}
._4b{width:52.614766px;}
._57{width:54.409224px;}
._2d{width:55.728000px;}
._1e{width:56.736000px;}
._1f{width:57.888000px;}
._14{width:59.688000px;}
._15{width:60.840000px;}
._3d{width:62.947124px;}
._72{width:64.186257px;}
._7d{width:65.437743px;}
._26{width:66.744000px;}
._27{width:68.112000px;}
._62{width:69.446633px;}
._1c{width:70.776000px;}
._1d{width:72.144000px;}
._77{width:73.319768px;}
._45{width:74.501109px;}
._47{width:75.637567px;}
._5b{width:77.706071px;}
._70{width:82.619403px;}
._73{width:84.436117px;}
._4c{width:85.534546px;}
._78{width:89.218052px;}
._2f{width:90.968571px;}
._4f{width:92.677154px;}
._59{width:94.360946px;}
._18{width:95.760000px;}
._6b{width:97.692823px;}
._5f{width:98.737641px;}
._30{width:100.081701px;}
._44{width:101.270999px;}
._3c{width:103.134308px;}
._53{width:105.121710px;}
._74{width:108.245599px;}
._71{width:111.797407px;}
._63{width:112.992019px;}
._37{width:115.809925px;}
._69{width:117.387810px;}
._32{width:119.691206px;}
._43{width:121.285281px;}
._34{width:127.164285px;}
._68{width:132.319027px;}
._3e{width:136.690595px;}
._6a{width:138.647019px;}
._5a{width:140.866812px;}
._5e{width:147.355088px;}
._2e{width:150.692123px;}
._7f{width:152.427877px;}
._33{width:154.109547px;}
._61{width:160.622500px;}
._67{width:165.471982px;}
._40{width:166.947969px;}
._3f{width:168.416535px;}
._3b{width:180.191666px;}
._50{width:183.112743px;}
._7a{width:189.576000px;}
._3a{width:194.550000px;}
._6f{width:198.656293px;}
._65{width:199.735122px;}
._64{width:207.296895px;}
._5d{width:211.816576px;}
._4a{width:214.474804px;}
._66{width:217.031592px;}
._60{width:229.113047px;}
._48{width:231.332258px;}
._42{width:240.992148px;}
._55{width:256.466053px;}
._49{width:269.087905px;}
._5c{width:290.389488px;}
._4e{width:304.447099px;}
._41{width:307.866220px;}
._31{width:321.410519px;}
._75{width:382.457893px;}
._54{width:384.580787px;}
._76{width:418.606026px;}
._52{width:435.404846px;}
._35{width:437.048582px;}
._56{width:451.404989px;}
._39{width:480.477304px;}
._38{width:517.546521px;}
._4d{width:541.454100px;}
._51{width:542.991768px;}
.fc2{color:transparent;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:36.507319px;}
.fs7{font-size:41.178859px;}
.fsd{font-size:42.190965px;}
.fs1a{font-size:42.199679px;}
.fs17{font-size:44.694359px;}
.fs8{font-size:47.031097px;}
.fsf{font-size:48.289899px;}
.fs23{font-size:48.970281px;}
.fs1e{font-size:50.331136px;}
.fs11{font-size:50.993074px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs13{font-size:63.136533px;}
.fs4{font-size:66.000000px;}
.fs15{font-size:70.170972px;}
.fs19{font-size:70.174607px;}
.fsb{font-size:71.101036px;}
.fs6{font-size:71.242436px;}
.fs18{font-size:71.403182px;}
.fs21{font-size:71.545466px;}
.fs5{font-size:72.000000px;}
.fs1b{font-size:72.874709px;}
.fsc{font-size:74.862564px;}
.fs22{font-size:74.965810px;}
.fse{font-size:76.736524px;}
.fs1c{font-size:76.866034px;}
.fs16{font-size:77.295375px;}
.fs9{font-size:81.367237px;}
.fs10{font-size:83.677691px;}
.fs0{font-size:84.000000px;}
.fs24{font-size:84.566874px;}
.fsa{font-size:85.740821px;}
.fs1f{font-size:86.916937px;}
.fs12{font-size:88.361808px;}
.fs25{font-size:88.459043px;}
.fs20{font-size:91.808459px;}
.fs1d{font-size:109.457968px;}
.fs26{font-size:127.019624px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.yba{bottom:3.353051px;}
.y2c{bottom:3.900000px;}
.ydb{bottom:4.104952px;}
.ya4{bottom:4.393853px;}
.ya8{bottom:4.393856px;}
.yd4{bottom:4.535741px;}
.ye5{bottom:4.535770px;}
.y87{bottom:4.535789px;}
.ycd{bottom:4.571370px;}
.yc8{bottom:4.571385px;}
.yc3{bottom:4.571402px;}
.y123{bottom:4.571407px;}
.y10e{bottom:4.571421px;}
.y97{bottom:4.571427px;}
.yea{bottom:4.571430px;}
.y9c{bottom:4.594625px;}
.yff{bottom:4.650072px;}
.y103{bottom:4.650093px;}
.yd0{bottom:4.715892px;}
.ybf{bottom:4.715928px;}
.yf0{bottom:4.716213px;}
.y90{bottom:5.180407px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y115{bottom:7.726524px;}
.y112{bottom:7.762399px;}
.yed{bottom:7.762430px;}
.y129{bottom:7.875509px;}
.yd3{bottom:9.142750px;}
.yd5{bottom:9.142760px;}
.y86{bottom:9.142777px;}
.ye6{bottom:9.142816px;}
.y88{bottom:9.142819px;}
.ycc{bottom:9.178532px;}
.yc7{bottom:9.178539px;}
.yc2{bottom:9.178545px;}
.yc9{bottom:9.178552px;}
.y118{bottom:9.178555px;}
.ye9{bottom:9.178563px;}
.ye1{bottom:9.178570px;}
.y96{bottom:9.178572px;}
.y98{bottom:9.178608px;}
.ye2{bottom:9.178610px;}
.y10f{bottom:9.178613px;}
.y9d{bottom:9.335131px;}
.y107{bottom:10.290202px;}
.y109{bottom:10.290236px;}
.y101{bottom:10.290255px;}
.y105{bottom:10.290259px;}
.y92{bottom:10.442121px;}
.y8f{bottom:10.442152px;}
.y91{bottom:10.442164px;}
.y12f{bottom:11.394466px;}
.yf5{bottom:13.537235px;}
.yb9{bottom:15.731185px;}
.y9b{bottom:17.504122px;}
.yf9{bottom:17.544242px;}
.ydc{bottom:19.258972px;}
.yf8{bottom:19.385911px;}
.y8e{bottom:19.579757px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.yac{bottom:20.767340px;}
.ya3{bottom:20.767353px;}
.ya7{bottom:20.767356px;}
.yb7{bottom:21.779634px;}
.y12d{bottom:22.496238px;}
.y131{bottom:23.123394px;}
.yf6{bottom:24.114400px;}
.y2b{bottom:24.600000px;}
.yb6{bottom:25.884309px;}
.yb8{bottom:25.884312px;}
.yda{bottom:26.663835px;}
.y130{bottom:27.983378px;}
.y12e{bottom:27.983383px;}
.yd9{bottom:31.459591px;}
.yd8{bottom:31.689015px;}
.y9{bottom:33.900000px;}
.ya6{bottom:33.990475px;}
.ya2{bottom:33.990477px;}
.yaa{bottom:33.990480px;}
.y5{bottom:36.000000px;}
.y102{bottom:38.017780px;}
.yfe{bottom:38.017796px;}
.y12a{bottom:41.347048px;}
.ya1{bottom:43.356935px;}
.ya9{bottom:43.356937px;}
.yab{bottom:43.356939px;}
.ya5{bottom:43.356944px;}
.y106{bottom:43.657357px;}
.y108{bottom:43.657409px;}
.y100{bottom:43.657423px;}
.y104{bottom:43.657427px;}
.yf7{bottom:45.015929px;}
.y2a{bottom:45.300000px;}
.y12c{bottom:49.515556px;}
.y12b{bottom:52.238391px;}
.y3{bottom:57.637500px;}
.y29{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y28{bottom:86.700000px;}
.y27{bottom:107.400000px;}
.y3d{bottom:114.787500px;}
.y68{bottom:124.087500px;}
.y159{bottom:124.387500px;}
.y134{bottom:124.687500px;}
.y80{bottom:125.437500px;}
.y145{bottom:126.637500px;}
.y26{bottom:128.100000px;}
.yde{bottom:137.737500px;}
.y3c{bottom:138.637500px;}
.y158{bottom:145.087500px;}
.y67{bottom:147.937500px;}
.y133{bottom:148.537500px;}
.y25{bottom:148.800000px;}
.y7f{bottom:149.287500px;}
.y144{bottom:150.495000px;}
.ydd{bottom:161.430000px;}
.yd7{bottom:161.475000px;}
.y3b{bottom:162.330000px;}
.y157{bottom:168.630000px;}
.y24{bottom:169.500000px;}
.y66{bottom:171.795000px;}
.y132{bottom:172.245000px;}
.y128{bottom:172.274980px;}
.y7e{bottom:172.995000px;}
.y143{bottom:174.345000px;}
.y3a{bottom:186.180000px;}
.y156{bottom:189.330000px;}
.y23{bottom:190.200000px;}
.y65{bottom:195.495000px;}
.y7d{bottom:196.845000px;}
.y142{bottom:198.195000px;}
.y39{bottom:210.045000px;}
.y22{bottom:210.945000px;}
.yd6{bottom:218.445000px;}
.y64{bottom:219.330000px;}
.y7c{bottom:220.695000px;}
.y141{bottom:221.895000px;}
.y21{bottom:231.645000px;}
.y155{bottom:233.445000px;}
.y38{bottom:233.745000px;}
.yd1{bottom:242.145000px;}
.yd2{bottom:242.174980px;}
.y63{bottom:244.395000px;}
.y140{bottom:245.745000px;}
.y154{bottom:254.145000px;}
.y37{bottom:257.595000px;}
.y62{bottom:268.245000px;}
.y13f{bottom:269.595000px;}
.y153{bottom:274.845000px;}
.yce{bottom:276.045000px;}
.ycf{bottom:276.075000px;}
.y36{bottom:281.445000px;}
.y126{bottom:291.945000px;}
.y127{bottom:291.975000px;}
.y61{bottom:292.095000px;}
.y13e{bottom:293.295000px;}
.y152{bottom:298.395000px;}
.yca{bottom:303.945000px;}
.ycb{bottom:303.975000px;}
.y35{bottom:305.145000px;}
.y60{bottom:315.795000px;}
.y17e{bottom:316.245000px;}
.y13d{bottom:317.130000px;}
.y151{bottom:319.095000px;}
.y125{bottom:325.995000px;}
.y34{bottom:328.995000px;}
.yc5{bottom:337.995000px;}
.yc6{bottom:338.024980px;}
.y17d{bottom:338.445000px;}
.y5f{bottom:339.645000px;}
.y150{bottom:339.795000px;}
.y13c{bottom:340.995000px;}
.y124{bottom:349.845000px;}
.y122{bottom:349.874959px;}
.y33{bottom:352.845000px;}
.y17c{bottom:359.145000px;}
.y14f{bottom:360.495000px;}
.y5e{bottom:363.495000px;}
.y13b{bottom:364.695000px;}
.yc4{bottom:371.895000px;}
.y32{bottom:376.695000px;}
.y17b{bottom:379.875000px;}
.y121{bottom:383.775000px;}
.y14e{bottom:384.075000px;}
.y5d{bottom:387.225000px;}
.y13a{bottom:388.575000px;}
.yc1{bottom:395.774959px;}
.yc0{bottom:395.775000px;}
.y31{bottom:400.425000px;}
.y17a{bottom:400.575000px;}
.y14d{bottom:404.775000px;}
.y5c{bottom:411.075000px;}
.y120{bottom:411.675000px;}
.y139{bottom:412.425000px;}
.y179{bottom:424.125000px;}
.y30{bottom:424.275000px;}
.y14c{bottom:425.475000px;}
.ybe{bottom:429.674959px;}
.ybd{bottom:429.675000px;}
.y5b{bottom:434.925000px;}
.y11f{bottom:435.375000px;}
.y138{bottom:436.125000px;}
.y178{bottom:444.825000px;}
.y14b{bottom:446.175000px;}
.y2f{bottom:456.975000px;}
.ybc{bottom:457.575000px;}
.y5a{bottom:458.625000px;}
.y11e{bottom:459.225000px;}
.y137{bottom:459.975000px;}
.y177{bottom:465.525000px;}
.y14a{bottom:466.875000px;}
.y2e{bottom:473.775000px;}
.yb5{bottom:481.424959px;}
.ybb{bottom:481.425000px;}
.y59{bottom:482.475000px;}
.y136{bottom:483.825000px;}
.y11d{bottom:484.275000px;}
.y176{bottom:486.225000px;}
.y149{bottom:490.275000px;}
.y58{bottom:506.175000px;}
.y7b{bottom:506.325000px;}
.y135{bottom:507.525000px;}
.y11c{bottom:508.125000px;}
.y175{bottom:509.775000px;}
.y148{bottom:510.975000px;}
.y2d{bottom:515.175000px;}
.yb4{bottom:529.275000px;}
.y7a{bottom:530.175000px;}
.y174{bottom:530.475000px;}
.y57{bottom:531.375000px;}
.y147{bottom:531.675000px;}
.y11b{bottom:531.975000px;}
.y20{bottom:535.875000px;}
.y173{bottom:551.175000px;}
.y146{bottom:552.375000px;}
.yb3{bottom:553.125000px;}
.y79{bottom:553.875000px;}
.y56{bottom:555.225000px;}
.y11a{bottom:555.675000px;}
.y172{bottom:571.875000px;}
.yb2{bottom:576.825000px;}
.y78{bottom:577.725000px;}
.y55{bottom:579.075000px;}
.y119{bottom:579.525000px;}
.y171{bottom:592.575000px;}
.yb1{bottom:600.675000px;}
.y77{bottom:601.575000px;}
.y54{bottom:602.775000px;}
.y117{bottom:603.374959px;}
.y116{bottom:603.375000px;}
.y170{bottom:615.975000px;}
.yb0{bottom:624.375000px;}
.y76{bottom:625.275000px;}
.y53{bottom:626.625000px;}
.y16f{bottom:636.675000px;}
.y114{bottom:637.424959px;}
.y113{bottom:637.425000px;}
.y75{bottom:649.125000px;}
.yaf{bottom:649.575000px;}
.y52{bottom:650.475000px;}
.y16e{bottom:657.375000px;}
.y111{bottom:668.624959px;}
.y110{bottom:668.625000px;}
.y74{bottom:672.975000px;}
.yae{bottom:673.425000px;}
.y51{bottom:674.175000px;}
.y16d{bottom:678.075000px;}
.y73{bottom:696.675000px;}
.ya0{bottom:697.124919px;}
.yad{bottom:697.125000px;}
.y50{bottom:698.025000px;}
.y16c{bottom:698.775000px;}
.y10d{bottom:699.674919px;}
.y10c{bottom:699.675000px;}
.y72{bottom:720.525000px;}
.y4f{bottom:721.875000px;}
.y16b{bottom:722.325000px;}
.y10b{bottom:733.725000px;}
.y16a{bottom:743.070000px;}
.y71{bottom:744.420000px;}
.y4e{bottom:745.620000px;}
.yfd{bottom:757.574919px;}
.y10a{bottom:757.620000px;}
.y9f{bottom:761.670000px;}
.y169{bottom:763.770000px;}
.y70{bottom:768.120000px;}
.y4d{bottom:769.470000px;}
.y9e{bottom:785.370000px;}
.y168{bottom:787.320000px;}
.y1f{bottom:787.920000px;}
.y6f{bottom:791.970000px;}
.y4c{bottom:793.320000px;}
.y1e{bottom:807.120000px;}
.y167{bottom:808.020000px;}
.y9a{bottom:812.025000px;}
.y99{bottom:812.070000px;}
.y6e{bottom:815.820000px;}
.y4b{bottom:817.020000px;}
.y1d{bottom:827.820000px;}
.y166{bottom:828.570000px;}
.yfc{bottom:829.770000px;}
.y6d{bottom:839.520000px;}
.y4a{bottom:840.870000px;}
.y95{bottom:848.174919px;}
.y94{bottom:848.220000px;}
.y1c{bottom:848.520000px;}
.y165{bottom:852.120000px;}
.yfb{bottom:853.455000px;}
.y6c{bottom:863.370000px;}
.y49{bottom:864.720000px;}
.y1b{bottom:869.220000px;}
.y164{bottom:872.820000px;}
.yf4{bottom:877.275000px;}
.yfa{bottom:877.320000px;}
.y8d{bottom:882.074919px;}
.y93{bottom:882.120000px;}
.y6b{bottom:887.220000px;}
.y48{bottom:888.420000px;}
.y1a{bottom:889.920000px;}
.y163{bottom:893.520000px;}
.y19{bottom:910.620000px;}
.y6a{bottom:911.070000px;}
.y47{bottom:912.270000px;}
.y162{bottom:914.220000px;}
.y8c{bottom:917.820000px;}
.y18{bottom:931.320000px;}
.y69{bottom:934.770000px;}
.y161{bottom:934.920000px;}
.y46{bottom:936.120000px;}
.yf3{bottom:940.470000px;}
.y8b{bottom:945.570000px;}
.y17{bottom:952.020000px;}
.y160{bottom:955.620000px;}
.y45{bottom:959.970000px;}
.yf2{bottom:964.170000px;}
.y8a{bottom:969.420000px;}
.y16{bottom:972.720000px;}
.y15f{bottom:979.170000px;}
.y44{bottom:983.670000px;}
.yf1{bottom:989.370000px;}
.y85{bottom:993.224919px;}
.y89{bottom:993.270000px;}
.y15{bottom:993.420000px;}
.y15e{bottom:999.870000px;}
.y43{bottom:1007.520000px;}
.yef{bottom:1013.024919px;}
.yee{bottom:1013.070000px;}
.y14{bottom:1014.120000px;}
.y15d{bottom:1020.570000px;}
.y84{bottom:1027.170000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yec{bottom:1040.924919px;}
.yeb{bottom:1040.970000px;}
.y15c{bottom:1043.970000px;}
.y83{bottom:1053.870000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y15b{bottom:1064.670000px;}
.ye8{bottom:1072.124919px;}
.ye7{bottom:1072.170000px;}
.y11{bottom:1076.220000px;}
.y82{bottom:1077.570000px;}
.y40{bottom:1078.920000px;}
.y15a{bottom:1085.370000px;}
.y10{bottom:1096.950000px;}
.y81{bottom:1101.450000px;}
.y3f{bottom:1102.800000px;}
.ye4{bottom:1106.024919px;}
.ye3{bottom:1106.100000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye0{bottom:1140.074919px;}
.ydf{bottom:1140.150000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h3a{height:20.849190px;}
.h34{height:20.849231px;}
.h43{height:20.850352px;}
.h54{height:24.149896px;}
.h41{height:24.149937px;}
.h39{height:27.000188px;}
.h38{height:27.000208px;}
.h36{height:27.000229px;}
.h13{height:27.000270px;}
.h20{height:29.099344px;}
.h17{height:32.550004px;}
.h30{height:35.812111px;}
.h15{height:40.394691px;}
.h2e{height:40.801243px;}
.h22{height:41.387524px;}
.h48{height:41.396072px;}
.h10{height:41.400000px;}
.h21{height:41.408125px;}
.h46{height:41.416677px;}
.h3e{height:43.843246px;}
.h2b{height:43.927774px;}
.h5d{height:44.546696px;}
.h6{height:45.300000px;}
.h1a{height:46.135486px;}
.h18{height:46.158450px;}
.h29{height:46.386766px;}
.h27{height:47.370316px;}
.h25{height:47.393895px;}
.h5a{height:48.037741px;}
.h58{height:48.061653px;}
.h3{height:48.600000px;}
.h50{height:49.372682px;}
.h4e{height:49.397257px;}
.h3c{height:49.951179px;}
.he{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h45{height:56.098697px;}
.h24{height:57.450284px;}
.h35{height:57.836231px;}
.h4{height:58.886719px;}
.h63{height:59.343750px;}
.h33{height:61.670545px;}
.h31{height:61.934226px;}
.h2f{height:61.965055px;}
.hc{height:64.775391px;}
.h4d{height:65.098999px;}
.h57{height:65.099306px;}
.h9{height:65.645508px;}
.h4b{height:66.291788px;}
.h1f{height:68.100077px;}
.h56{height:68.193997px;}
.h3b{height:68.834708px;}
.h44{height:68.838274px;}
.h37{height:69.747061px;}
.h1d{height:69.781778px;}
.h23{height:69.804758px;}
.h16{height:69.885769px;}
.h14{height:69.920555px;}
.h4a{height:69.922569px;}
.h42{height:70.078318px;}
.h55{height:70.217963px;}
.h40{height:70.313127px;}
.h62{height:70.628906px;}
.hb{height:70.664062px;}
.h47{height:71.522541px;}
.ha{height:72.562500px;}
.h11{height:74.004654px;}
.h2d{height:74.953125px;}
.h3f{height:75.823441px;}
.h3d{height:75.861183px;}
.h2c{height:76.118916px;}
.h5e{height:76.927776px;}
.h1c{height:77.995679px;}
.h53{height:79.065554px;}
.h1b{height:79.817763px;}
.h19{height:79.857493px;}
.h2a{height:80.379906px;}
.h5c{height:80.468358px;}
.h28{height:82.084220px;}
.h26{height:82.125078px;}
.h2{height:82.441406px;}
.h5b{height:82.956470px;}
.h59{height:82.997762px;}
.h52{height:83.515214px;}
.h61{height:83.794922px;}
.h51{height:85.261781px;}
.h4f{height:85.304221px;}
.h60{height:86.338763px;}
.h12{height:87.445312px;}
.h1e{height:88.175709px;}
.h4c{height:99.570407px;}
.h32{height:106.945807px;}
.h49{height:113.795619px;}
.h5f{height:115.545684px;}
.hd{height:248.445000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wf{width:18.000590px;}
.w1a{width:18.000620px;}
.w13{width:20.100303px;}
.wc{width:24.149754px;}
.w17{width:31.949972px;}
.w1f{width:38.100073px;}
.w14{width:42.150973px;}
.wb{width:42.900810px;}
.w16{width:44.999927px;}
.w9{width:47.850231px;}
.w18{width:56.100738px;}
.w1e{width:56.700599px;}
.w11{width:60.300004px;}
.w19{width:62.998779px;}
.w10{width:65.850157px;}
.w12{width:78.300946px;}
.w21{width:101.097600px;}
.w20{width:114.901079px;}
.w1d{width:177.144334px;}
.wa{width:177.155005px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w1c{width:263.246284px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w1b{width:299.087351px;}
.w15{width:318.457974px;}
.wd{width:326.099946px;}
.w22{width:339.306698px;}
.we{width:354.004038px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:1.602129px;}
.x2d{left:2.958657px;}
.x49{left:4.354456px;}
.x4{left:6.900000px;}
.x26{left:10.431692px;}
.x9{left:12.435000px;}
.x3f{left:14.859130px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x5d{left:19.536109px;}
.x1f{left:20.887500px;}
.x5{left:22.200000px;}
.x4d{left:24.214490px;}
.x25{left:26.382108px;}
.x3b{left:27.661136px;}
.x2a{left:29.767882px;}
.x43{left:31.059333px;}
.xb{left:32.100000px;}
.x50{left:34.728035px;}
.x64{left:36.315090px;}
.x3a{left:37.625656px;}
.x41{left:39.087404px;}
.x3{left:42.599987px;}
.x3e{left:44.683456px;}
.x54{left:51.932318px;}
.x66{left:54.973698px;}
.x63{left:57.973709px;}
.x61{left:61.128016px;}
.x4b{left:62.184832px;}
.x31{left:63.975000px;}
.x38{left:65.606277px;}
.x47{left:67.274995px;}
.x23{left:69.599987px;}
.x2f{left:73.124995px;}
.x4a{left:77.922148px;}
.x57{left:88.539561px;}
.x48{left:92.514387px;}
.x65{left:94.212447px;}
.x20{left:95.699987px;}
.x30{left:97.199987px;}
.x1e{left:100.200000px;}
.x1d{left:104.700000px;}
.xd{left:106.980000px;}
.x29{left:109.649987px;}
.x3d{left:114.599987px;}
.x45{left:116.699987px;}
.x10{left:119.699987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x33{left:135.545241px;}
.x62{left:136.759799px;}
.x46{left:138.787487px;}
.x2c{left:143.174990px;}
.x28{left:144.487487px;}
.x35{left:157.259137px;}
.x11{left:160.244987px;}
.x42{left:161.429987px;}
.x40{left:162.479987px;}
.x34{left:168.706827px;}
.x44{left:174.929987px;}
.x37{left:175.987133px;}
.x36{left:183.521484px;}
.x2e{left:186.029987px;}
.x59{left:187.906199px;}
.x55{left:189.171739px;}
.x32{left:191.804050px;}
.x58{left:232.436025px;}
.x2b{left:272.879987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x14{left:351.644987px;}
.x4c{left:385.724987px;}
.x39{left:390.074987px;}
.x16{left:393.674987px;}
.x3c{left:396.674987px;}
.x15{left:406.574987px;}
.x21{left:457.274987px;}
.x60{left:467.925000px;}
.x24{left:484.274987px;}
.x22{left:510.374987px;}
.x53{left:529.274987px;}
.x4f{left:543.224987px;}
.x1b{left:544.724987px;}
.x5c{left:549.374987px;}
.x4e{left:556.274987px;}
.x13{left:562.274987px;}
.x51{left:567.374987px;}
.x52{left:574.274987px;}
.x1a{left:594.674987px;}
.x12{left:606.074987px;}
.x1c{left:611.624987px;}
.xc{left:625.425000px;}
.x5e{left:642.824959px;}
.x5b{left:688.469987px;}
.x17{left:694.619987px;}
.x18{left:705.569987px;}
.xf{left:713.655000px;}
.x5f{left:743.969987px;}
.x5a{left:773.669987px;}
.x67{left:807.254987px;}
.x56{left:809.504987px;}
.x2{left:829.619987px;}
.x19{left:850.619987px;}
@media print{
.v8{vertical-align:-47.515260pt;}
.v4{vertical-align:-43.379978pt;}
.v2{vertical-align:-36.100010pt;}
.v5{vertical-align:-32.473457pt;}
.v7{vertical-align:-9.830468pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.381021pt;}
.v6{vertical-align:37.607698pt;}
.v3{vertical-align:44.011133pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls30{letter-spacing:-1.600000pt;}
.ls21{letter-spacing:-0.388755pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.149333pt;}
.ls20{letter-spacing:-0.130504pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls38{letter-spacing:0.053333pt;}
.ls2a{letter-spacing:0.063369pt;}
.ls27{letter-spacing:0.083269pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.170205pt;}
.ls17{letter-spacing:0.190106pt;}
.ls3b{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls10{letter-spacing:4.266667pt;}
.ls3c{letter-spacing:9.066667pt;}
.ls15{letter-spacing:9.374420pt;}
.ls2d{letter-spacing:16.463029pt;}
.ls2e{letter-spacing:17.733488pt;}
.ls1f{letter-spacing:18.426813pt;}
.ls1b{letter-spacing:18.781950pt;}
.lsd{letter-spacing:19.242667pt;}
.ls31{letter-spacing:20.868416pt;}
.ls26{letter-spacing:21.733827pt;}
.ls1a{letter-spacing:21.786197pt;}
.ls16{letter-spacing:21.838568pt;}
.ls2b{letter-spacing:21.890939pt;}
.ls22{letter-spacing:21.995680pt;}
.ls3a{letter-spacing:23.573333pt;}
.ls12{letter-spacing:24.294826pt;}
.ls1c{letter-spacing:24.313204pt;}
.lsf{letter-spacing:30.208000pt;}
.lse{letter-spacing:32.970735pt;}
.lsb{letter-spacing:48.874667pt;}
.ls28{letter-spacing:52.946744pt;}
.ls11{letter-spacing:56.640000pt;}
.ls29{letter-spacing:57.031656pt;}
.ls33{letter-spacing:58.861676pt;}
.ls1e{letter-spacing:61.937888pt;}
.ls32{letter-spacing:64.363549pt;}
.ls18{letter-spacing:73.947381pt;}
.ls3d{letter-spacing:74.709333pt;}
.ls2c{letter-spacing:89.501469pt;}
.ls25{letter-spacing:105.579264pt;}
.ls39{letter-spacing:112.042667pt;}
.ls1d{letter-spacing:117.797475pt;}
.ls24{letter-spacing:126.475160pt;}
.ls19{letter-spacing:137.023961pt;}
.ls13{letter-spacing:157.777079pt;}
.ls35{letter-spacing:168.253779pt;}
.ls2f{letter-spacing:261.531423pt;}
.ls36{letter-spacing:318.389261pt;}
.ls37{letter-spacing:545.672989pt;}
.ls14{letter-spacing:630.718679pt;}
.wsa{word-spacing:-35.136000pt;}
.ws1d{word-spacing:-29.280000pt;}
.ws3a{word-spacing:-20.932012pt;}
.wse{word-spacing:-18.666667pt;}
.ws44{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.021333pt;}
.wsb{word-spacing:-16.000000pt;}
.ws3b{word-spacing:-15.850667pt;}
.wsd{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws30{word-spacing:-0.044739pt;}
.ws1e{word-spacing:-0.036603pt;}
.ws9{word-spacing:0.000000pt;}
.ws36{word-spacing:9.734697pt;}
.ws2d{word-spacing:11.292410pt;}
.ws3d{word-spacing:12.956189pt;}
.ws16{word-spacing:18.295564pt;}
.ws2e{word-spacing:19.821921pt;}
.ws1f{word-spacing:21.109107pt;}
.ws2b{word-spacing:21.182249pt;}
.ws3e{word-spacing:21.361911pt;}
.ws3c{word-spacing:21.488313pt;}
.ws28{word-spacing:22.087384pt;}
.ws20{word-spacing:22.120322pt;}
.ws21{word-spacing:22.535896pt;}
.ws43{word-spacing:22.851849pt;}
.ws25{word-spacing:23.291673pt;}
.ws38{word-spacing:23.384341pt;}
.ws39{word-spacing:23.547183pt;}
.ws29{word-spacing:23.610652pt;}
.ws12{word-spacing:24.173555pt;}
.wsf{word-spacing:24.374008pt;}
.ws41{word-spacing:24.430430pt;}
.ws34{word-spacing:24.877559pt;}
.ws13{word-spacing:24.917357pt;}
.ws31{word-spacing:24.954818pt;}
.ws35{word-spacing:27.118084pt;}
.ws19{word-spacing:45.121576pt;}
.ws40{word-spacing:46.768681pt;}
.ws14{word-spacing:55.264466pt;}
.ws24{word-spacing:59.362848pt;}
.ws2a{word-spacing:63.473559pt;}
.ws1b{word-spacing:68.247552pt;}
.ws1a{word-spacing:69.758854pt;}
.ws11{word-spacing:83.175398pt;}
.ws3f{word-spacing:134.444399pt;}
.ws2c{word-spacing:134.663865pt;}
.ws18{word-spacing:134.736345pt;}
.ws37{word-spacing:136.604001pt;}
.ws15{word-spacing:151.554466pt;}
.ws1c{word-spacing:154.389870pt;}
.ws42{word-spacing:155.834316pt;}
.ws10{word-spacing:156.352270pt;}
.ws22{word-spacing:158.052261pt;}
.ws17{word-spacing:159.702016pt;}
.ws23{word-spacing:178.976078pt;}
.ws27{word-spacing:212.510750pt;}
.ws26{word-spacing:224.671889pt;}
.ws2f{word-spacing:344.443924pt;}
.ws32{word-spacing:503.579791pt;}
.ws33{word-spacing:518.969934pt;}
._6c{margin-left:-448.124545pt;}
._58{margin-left:-204.379741pt;}
._6d{margin-left:-182.802389pt;}
._6e{margin-left:-132.010057pt;}
._36{margin-left:-7.340722pt;}
._1a{margin-left:-3.840000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._4{width:2.560000pt;}
._5{width:4.021333pt;}
._9{width:5.002667pt;}
._20{width:6.144000pt;}
._e{width:7.872000pt;}
._6{width:9.344000pt;}
._11{width:10.970667pt;}
._7e{width:11.909333pt;}
._a{width:12.869333pt;}
._12{width:13.824000pt;}
._13{width:14.784000pt;}
._21{width:17.216000pt;}
._22{width:18.176000pt;}
._d{width:19.648000pt;}
._7{width:20.608000pt;}
._8{width:21.760000pt;}
._1b{width:23.296000pt;}
._19{width:24.896000pt;}
._b{width:26.112000pt;}
._c{width:27.264000pt;}
._2c{width:28.288000pt;}
._2b{width:29.248000pt;}
._28{width:30.528000pt;}
._23{width:31.808000pt;}
._24{width:32.768000pt;}
._25{width:33.728000pt;}
._10{width:34.816000pt;}
._f{width:36.096000pt;}
._16{width:37.696000pt;}
._17{width:38.656000pt;}
._7b{width:39.744000pt;}
._29{width:40.789333pt;}
._2a{width:41.898667pt;}
._79{width:42.901333pt;}
._46{width:44.578157pt;}
._7c{width:45.661843pt;}
._4b{width:46.768681pt;}
._57{width:48.363755pt;}
._2d{width:49.536000pt;}
._1e{width:50.432000pt;}
._1f{width:51.456000pt;}
._14{width:53.056000pt;}
._15{width:54.080000pt;}
._3d{width:55.952999pt;}
._72{width:57.054451pt;}
._7d{width:58.166882pt;}
._26{width:59.328000pt;}
._27{width:60.544000pt;}
._62{width:61.730340pt;}
._1c{width:62.912000pt;}
._1d{width:64.128000pt;}
._77{width:65.173127pt;}
._45{width:66.223208pt;}
._47{width:67.233393pt;}
._5b{width:69.072064pt;}
._70{width:73.439470pt;}
._73{width:75.054326pt;}
._4c{width:76.030707pt;}
._78{width:79.304935pt;}
._2f{width:80.860952pt;}
._4f{width:82.379693pt;}
._59{width:83.876397pt;}
._18{width:85.120000pt;}
._6b{width:86.838065pt;}
._5f{width:87.766792pt;}
._30{width:88.961512pt;}
._44{width:90.018666pt;}
._3c{width:91.674940pt;}
._53{width:93.441520pt;}
._74{width:96.218310pt;}
._71{width:99.375473pt;}
._63{width:100.437350pt;}
._37{width:102.942155pt;}
._69{width:104.344720pt;}
._32{width:106.392183pt;}
._43{width:107.809138pt;}
._34{width:113.034920pt;}
._68{width:117.616913pt;}
._3e{width:121.502751pt;}
._6a{width:123.241795pt;}
._5a{width:125.214944pt;}
._5e{width:130.982300pt;}
._2e{width:133.948554pt;}
._7f{width:135.491446pt;}
._33{width:136.986264pt;}
._61{width:142.775556pt;}
._67{width:147.086206pt;}
._40{width:148.398195pt;}
._3f{width:149.703587pt;}
._3b{width:160.170370pt;}
._50{width:162.766882pt;}
._7a{width:168.512000pt;}
._3a{width:172.933333pt;}
._6f{width:176.583372pt;}
._65{width:177.542331pt;}
._64{width:184.263907pt;}
._5d{width:188.281401pt;}
._4a{width:190.644270pt;}
._66{width:192.916971pt;}
._60{width:203.656042pt;}
._48{width:205.628674pt;}
._42{width:214.215242pt;}
._55{width:227.969825pt;}
._49{width:239.189249pt;}
._5c{width:258.123989pt;}
._4e{width:270.619643pt;}
._41{width:273.658862pt;}
._31{width:285.698239pt;}
._75{width:339.962571pt;}
._54{width:341.849588pt;}
._76{width:372.094246pt;}
._52{width:387.026530pt;}
._35{width:388.487629pt;}
._56{width:401.248879pt;}
._39{width:427.090937pt;}
._38{width:460.041352pt;}
._4d{width:481.292533pt;}
._51{width:482.659349pt;}
.fs14{font-size:32.450950pt;}
.fs7{font-size:36.603430pt;}
.fsd{font-size:37.503080pt;}
.fs1a{font-size:37.510826pt;}
.fs17{font-size:39.728319pt;}
.fs8{font-size:41.805420pt;}
.fsf{font-size:42.924354pt;}
.fs23{font-size:43.529138pt;}
.fs1e{font-size:44.738787pt;}
.fs11{font-size:45.327177pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs13{font-size:56.121363pt;}
.fs4{font-size:58.666667pt;}
.fs15{font-size:62.374197pt;}
.fs19{font-size:62.377428pt;}
.fsb{font-size:63.200921pt;}
.fs6{font-size:63.326610pt;}
.fs18{font-size:63.469495pt;}
.fs21{font-size:63.595970pt;}
.fs5{font-size:64.000000pt;}
.fs1b{font-size:64.777519pt;}
.fsc{font-size:66.544502pt;}
.fs22{font-size:66.636276pt;}
.fse{font-size:68.210243pt;}
.fs1c{font-size:68.325363pt;}
.fs16{font-size:68.707000pt;}
.fs9{font-size:72.326433pt;}
.fs10{font-size:74.380170pt;}
.fs0{font-size:74.666667pt;}
.fs24{font-size:75.170555pt;}
.fsa{font-size:76.214063pt;}
.fs1f{font-size:77.259500pt;}
.fs12{font-size:78.543829pt;}
.fs25{font-size:78.630260pt;}
.fs20{font-size:81.607519pt;}
.fs1d{font-size:97.295971pt;}
.fs26{font-size:112.906333pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.yba{bottom:2.980490pt;}
.y2c{bottom:3.466667pt;}
.ydb{bottom:3.648846pt;}
.ya4{bottom:3.905647pt;}
.ya8{bottom:3.905650pt;}
.yd4{bottom:4.031769pt;}
.ye5{bottom:4.031796pt;}
.y87{bottom:4.031812pt;}
.ycd{bottom:4.063440pt;}
.yc8{bottom:4.063454pt;}
.yc3{bottom:4.063468pt;}
.y123{bottom:4.063473pt;}
.y10e{bottom:4.063486pt;}
.y97{bottom:4.063490pt;}
.yea{bottom:4.063494pt;}
.y9c{bottom:4.084111pt;}
.yff{bottom:4.133397pt;}
.y103{bottom:4.133416pt;}
.yd0{bottom:4.191904pt;}
.ybf{bottom:4.191936pt;}
.yf0{bottom:4.192189pt;}
.y90{bottom:4.604807pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y115{bottom:6.868021pt;}
.y112{bottom:6.899910pt;}
.yed{bottom:6.899937pt;}
.y129{bottom:7.000453pt;}
.yd3{bottom:8.126889pt;}
.yd5{bottom:8.126897pt;}
.y86{bottom:8.126913pt;}
.ye6{bottom:8.126948pt;}
.y88{bottom:8.126950pt;}
.ycc{bottom:8.158695pt;}
.yc7{bottom:8.158702pt;}
.yc2{bottom:8.158707pt;}
.yc9{bottom:8.158713pt;}
.y118{bottom:8.158716pt;}
.ye9{bottom:8.158723pt;}
.ye1{bottom:8.158729pt;}
.y96{bottom:8.158730pt;}
.y98{bottom:8.158763pt;}
.ye2{bottom:8.158764pt;}
.y10f{bottom:8.158767pt;}
.y9d{bottom:8.297894pt;}
.y107{bottom:9.146846pt;}
.y109{bottom:9.146876pt;}
.y101{bottom:9.146893pt;}
.y105{bottom:9.146897pt;}
.y92{bottom:9.281886pt;}
.y8f{bottom:9.281913pt;}
.y91{bottom:9.281924pt;}
.y12f{bottom:10.128414pt;}
.yf5{bottom:12.033098pt;}
.yb9{bottom:13.983276pt;}
.y9b{bottom:15.559220pt;}
.yf9{bottom:15.594882pt;}
.ydc{bottom:17.119086pt;}
.yf8{bottom:17.231921pt;}
.y8e{bottom:17.404228pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.yac{bottom:18.459858pt;}
.ya3{bottom:18.459869pt;}
.ya7{bottom:18.459872pt;}
.yb7{bottom:19.359675pt;}
.y12d{bottom:19.996656pt;}
.y131{bottom:20.554128pt;}
.yf6{bottom:21.435022pt;}
.y2b{bottom:21.866667pt;}
.yb6{bottom:23.008275pt;}
.yb8{bottom:23.008277pt;}
.yda{bottom:23.701186pt;}
.y130{bottom:24.874114pt;}
.y12e{bottom:24.874118pt;}
.yd9{bottom:27.964081pt;}
.yd8{bottom:28.168013pt;}
.y9{bottom:30.133333pt;}
.ya6{bottom:30.213756pt;}
.ya2{bottom:30.213757pt;}
.yaa{bottom:30.213760pt;}
.y5{bottom:32.000000pt;}
.y102{bottom:33.793582pt;}
.yfe{bottom:33.793596pt;}
.y12a{bottom:36.752932pt;}
.ya1{bottom:38.539498pt;}
.ya9{bottom:38.539500pt;}
.yab{bottom:38.539501pt;}
.ya5{bottom:38.539505pt;}
.y106{bottom:38.806539pt;}
.y108{bottom:38.806586pt;}
.y100{bottom:38.806599pt;}
.y104{bottom:38.806602pt;}
.yf7{bottom:40.014159pt;}
.y2a{bottom:40.266667pt;}
.y12c{bottom:44.013827pt;}
.y12b{bottom:46.434125pt;}
.y3{bottom:51.233333pt;}
.y29{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y28{bottom:77.066667pt;}
.y27{bottom:95.466667pt;}
.y3d{bottom:102.033333pt;}
.y68{bottom:110.300000pt;}
.y159{bottom:110.566667pt;}
.y134{bottom:110.833333pt;}
.y80{bottom:111.500000pt;}
.y145{bottom:112.566667pt;}
.y26{bottom:113.866667pt;}
.yde{bottom:122.433333pt;}
.y3c{bottom:123.233333pt;}
.y158{bottom:128.966667pt;}
.y67{bottom:131.500000pt;}
.y133{bottom:132.033333pt;}
.y25{bottom:132.266667pt;}
.y7f{bottom:132.700000pt;}
.y144{bottom:133.773333pt;}
.ydd{bottom:143.493333pt;}
.yd7{bottom:143.533333pt;}
.y3b{bottom:144.293333pt;}
.y157{bottom:149.893333pt;}
.y24{bottom:150.666667pt;}
.y66{bottom:152.706667pt;}
.y132{bottom:153.106667pt;}
.y128{bottom:153.133315pt;}
.y7e{bottom:153.773333pt;}
.y143{bottom:154.973333pt;}
.y3a{bottom:165.493333pt;}
.y156{bottom:168.293333pt;}
.y23{bottom:169.066667pt;}
.y65{bottom:173.773333pt;}
.y7d{bottom:174.973333pt;}
.y142{bottom:176.173333pt;}
.y39{bottom:186.706667pt;}
.y22{bottom:187.506667pt;}
.yd6{bottom:194.173333pt;}
.y64{bottom:194.960000pt;}
.y7c{bottom:196.173333pt;}
.y141{bottom:197.240000pt;}
.y21{bottom:205.906667pt;}
.y155{bottom:207.506667pt;}
.y38{bottom:207.773333pt;}
.yd1{bottom:215.240000pt;}
.yd2{bottom:215.266649pt;}
.y63{bottom:217.240000pt;}
.y140{bottom:218.440000pt;}
.y154{bottom:225.906667pt;}
.y37{bottom:228.973333pt;}
.y62{bottom:238.440000pt;}
.y13f{bottom:239.640000pt;}
.y153{bottom:244.306667pt;}
.yce{bottom:245.373333pt;}
.ycf{bottom:245.400000pt;}
.y36{bottom:250.173333pt;}
.y126{bottom:259.506667pt;}
.y127{bottom:259.533333pt;}
.y61{bottom:259.640000pt;}
.y13e{bottom:260.706667pt;}
.y152{bottom:265.240000pt;}
.yca{bottom:270.173333pt;}
.ycb{bottom:270.200000pt;}
.y35{bottom:271.240000pt;}
.y60{bottom:280.706667pt;}
.y17e{bottom:281.106667pt;}
.y13d{bottom:281.893333pt;}
.y151{bottom:283.640000pt;}
.y125{bottom:289.773333pt;}
.y34{bottom:292.440000pt;}
.yc5{bottom:300.440000pt;}
.yc6{bottom:300.466649pt;}
.y17d{bottom:300.840000pt;}
.y5f{bottom:301.906667pt;}
.y150{bottom:302.040000pt;}
.y13c{bottom:303.106667pt;}
.y124{bottom:310.973333pt;}
.y122{bottom:310.999964pt;}
.y33{bottom:313.640000pt;}
.y17c{bottom:319.240000pt;}
.y14f{bottom:320.440000pt;}
.y5e{bottom:323.106667pt;}
.y13b{bottom:324.173333pt;}
.yc4{bottom:330.573333pt;}
.y32{bottom:334.840000pt;}
.y17b{bottom:337.666667pt;}
.y121{bottom:341.133333pt;}
.y14e{bottom:341.400000pt;}
.y5d{bottom:344.200000pt;}
.y13a{bottom:345.400000pt;}
.yc1{bottom:351.799964pt;}
.yc0{bottom:351.800000pt;}
.y31{bottom:355.933333pt;}
.y17a{bottom:356.066667pt;}
.y14d{bottom:359.800000pt;}
.y5c{bottom:365.400000pt;}
.y120{bottom:365.933333pt;}
.y139{bottom:366.600000pt;}
.y179{bottom:377.000000pt;}
.y30{bottom:377.133333pt;}
.y14c{bottom:378.200000pt;}
.ybe{bottom:381.933297pt;}
.ybd{bottom:381.933333pt;}
.y5b{bottom:386.600000pt;}
.y11f{bottom:387.000000pt;}
.y138{bottom:387.666667pt;}
.y178{bottom:395.400000pt;}
.y14b{bottom:396.600000pt;}
.y2f{bottom:406.200000pt;}
.ybc{bottom:406.733333pt;}
.y5a{bottom:407.666667pt;}
.y11e{bottom:408.200000pt;}
.y137{bottom:408.866667pt;}
.y177{bottom:413.800000pt;}
.y14a{bottom:415.000000pt;}
.y2e{bottom:421.133333pt;}
.yb5{bottom:427.933297pt;}
.ybb{bottom:427.933333pt;}
.y59{bottom:428.866667pt;}
.y136{bottom:430.066667pt;}
.y11d{bottom:430.466667pt;}
.y176{bottom:432.200000pt;}
.y149{bottom:435.800000pt;}
.y58{bottom:449.933333pt;}
.y7b{bottom:450.066667pt;}
.y135{bottom:451.133333pt;}
.y11c{bottom:451.666667pt;}
.y175{bottom:453.133333pt;}
.y148{bottom:454.200000pt;}
.y2d{bottom:457.933333pt;}
.yb4{bottom:470.466667pt;}
.y7a{bottom:471.266667pt;}
.y174{bottom:471.533333pt;}
.y57{bottom:472.333333pt;}
.y147{bottom:472.600000pt;}
.y11b{bottom:472.866667pt;}
.y20{bottom:476.333333pt;}
.y173{bottom:489.933333pt;}
.y146{bottom:491.000000pt;}
.yb3{bottom:491.666667pt;}
.y79{bottom:492.333333pt;}
.y56{bottom:493.533333pt;}
.y11a{bottom:493.933333pt;}
.y172{bottom:508.333333pt;}
.yb2{bottom:512.733333pt;}
.y78{bottom:513.533333pt;}
.y55{bottom:514.733333pt;}
.y119{bottom:515.133333pt;}
.y171{bottom:526.733333pt;}
.yb1{bottom:533.933333pt;}
.y77{bottom:534.733333pt;}
.y54{bottom:535.800000pt;}
.y117{bottom:536.333297pt;}
.y116{bottom:536.333333pt;}
.y170{bottom:547.533333pt;}
.yb0{bottom:555.000000pt;}
.y76{bottom:555.800000pt;}
.y53{bottom:557.000000pt;}
.y16f{bottom:565.933333pt;}
.y114{bottom:566.599964pt;}
.y113{bottom:566.600000pt;}
.y75{bottom:577.000000pt;}
.yaf{bottom:577.400000pt;}
.y52{bottom:578.200000pt;}
.y16e{bottom:584.333333pt;}
.y111{bottom:594.333297pt;}
.y110{bottom:594.333333pt;}
.y74{bottom:598.200000pt;}
.yae{bottom:598.600000pt;}
.y51{bottom:599.266667pt;}
.y16d{bottom:602.733333pt;}
.y73{bottom:619.266667pt;}
.ya0{bottom:619.666594pt;}
.yad{bottom:619.666667pt;}
.y50{bottom:620.466667pt;}
.y16c{bottom:621.133333pt;}
.y10d{bottom:621.933261pt;}
.y10c{bottom:621.933333pt;}
.y72{bottom:640.466667pt;}
.y4f{bottom:641.666667pt;}
.y16b{bottom:642.066667pt;}
.y10b{bottom:652.200000pt;}
.y16a{bottom:660.506667pt;}
.y71{bottom:661.706667pt;}
.y4e{bottom:662.773333pt;}
.yfd{bottom:673.399928pt;}
.y10a{bottom:673.440000pt;}
.y9f{bottom:677.040000pt;}
.y169{bottom:678.906667pt;}
.y70{bottom:682.773333pt;}
.y4d{bottom:683.973333pt;}
.y9e{bottom:698.106667pt;}
.y168{bottom:699.840000pt;}
.y1f{bottom:700.373333pt;}
.y6f{bottom:703.973333pt;}
.y4c{bottom:705.173333pt;}
.y1e{bottom:717.440000pt;}
.y167{bottom:718.240000pt;}
.y9a{bottom:721.800000pt;}
.y99{bottom:721.840000pt;}
.y6e{bottom:725.173333pt;}
.y4b{bottom:726.240000pt;}
.y1d{bottom:735.840000pt;}
.y166{bottom:736.506667pt;}
.yfc{bottom:737.573333pt;}
.y6d{bottom:746.240000pt;}
.y4a{bottom:747.440000pt;}
.y95{bottom:753.933261pt;}
.y94{bottom:753.973333pt;}
.y1c{bottom:754.240000pt;}
.y165{bottom:757.440000pt;}
.yfb{bottom:758.626667pt;}
.y6c{bottom:767.440000pt;}
.y49{bottom:768.640000pt;}
.y1b{bottom:772.640000pt;}
.y164{bottom:775.840000pt;}
.yf4{bottom:779.800000pt;}
.yfa{bottom:779.840000pt;}
.y8d{bottom:784.066594pt;}
.y93{bottom:784.106667pt;}
.y6b{bottom:788.640000pt;}
.y48{bottom:789.706667pt;}
.y1a{bottom:791.040000pt;}
.y163{bottom:794.240000pt;}
.y19{bottom:809.440000pt;}
.y6a{bottom:809.840000pt;}
.y47{bottom:810.906667pt;}
.y162{bottom:812.640000pt;}
.y8c{bottom:815.840000pt;}
.y18{bottom:827.840000pt;}
.y69{bottom:830.906667pt;}
.y161{bottom:831.040000pt;}
.y46{bottom:832.106667pt;}
.yf3{bottom:835.973333pt;}
.y8b{bottom:840.506667pt;}
.y17{bottom:846.240000pt;}
.y160{bottom:849.440000pt;}
.y45{bottom:853.306667pt;}
.yf2{bottom:857.040000pt;}
.y8a{bottom:861.706667pt;}
.y16{bottom:864.640000pt;}
.y15f{bottom:870.373333pt;}
.y44{bottom:874.373333pt;}
.yf1{bottom:879.440000pt;}
.y85{bottom:882.866594pt;}
.y89{bottom:882.906667pt;}
.y15{bottom:883.040000pt;}
.y15e{bottom:888.773333pt;}
.y43{bottom:895.573333pt;}
.yef{bottom:900.466594pt;}
.yee{bottom:900.506667pt;}
.y14{bottom:901.440000pt;}
.y15d{bottom:907.173333pt;}
.y84{bottom:913.040000pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yec{bottom:925.266594pt;}
.yeb{bottom:925.306667pt;}
.y15c{bottom:927.973333pt;}
.y83{bottom:936.773333pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y15b{bottom:946.373333pt;}
.ye8{bottom:952.999928pt;}
.ye7{bottom:953.040000pt;}
.y11{bottom:956.640000pt;}
.y82{bottom:957.840000pt;}
.y40{bottom:959.040000pt;}
.y15a{bottom:964.773333pt;}
.y10{bottom:975.066667pt;}
.y81{bottom:979.066667pt;}
.y3f{bottom:980.266667pt;}
.ye4{bottom:983.133261pt;}
.ye3{bottom:983.200000pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye0{bottom:1013.399928pt;}
.ydf{bottom:1013.466667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h3a{height:18.532614pt;}
.h34{height:18.532650pt;}
.h43{height:18.533646pt;}
.h54{height:21.466574pt;}
.h41{height:21.466611pt;}
.h39{height:24.000167pt;}
.h38{height:24.000185pt;}
.h36{height:24.000203pt;}
.h13{height:24.000240pt;}
.h20{height:25.866083pt;}
.h17{height:28.933337pt;}
.h30{height:31.832988pt;}
.h15{height:35.906392pt;}
.h2e{height:36.267772pt;}
.h22{height:36.788910pt;}
.h48{height:36.796508pt;}
.h10{height:36.800000pt;}
.h21{height:36.807222pt;}
.h46{height:36.814824pt;}
.h3e{height:38.971774pt;}
.h2b{height:39.046910pt;}
.h5d{height:39.597063pt;}
.h6{height:40.266667pt;}
.h1a{height:41.009321pt;}
.h18{height:41.029733pt;}
.h29{height:41.232681pt;}
.h27{height:42.106947pt;}
.h25{height:42.127906pt;}
.h5a{height:42.700214pt;}
.h58{height:42.721469pt;}
.h3{height:43.200000pt;}
.h50{height:43.886828pt;}
.h4e{height:43.908673pt;}
.h3c{height:44.401048pt;}
.he{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h45{height:49.865509pt;}
.h24{height:51.066919pt;}
.h35{height:51.409983pt;}
.h4{height:52.343750pt;}
.h63{height:52.750000pt;}
.h33{height:54.818262pt;}
.h31{height:55.052646pt;}
.h2f{height:55.080049pt;}
.hc{height:57.578125pt;}
.h4d{height:57.865777pt;}
.h57{height:57.866049pt;}
.h9{height:58.351562pt;}
.h4b{height:58.926034pt;}
.h1f{height:60.533402pt;}
.h56{height:60.616886pt;}
.h3b{height:61.186407pt;}
.h44{height:61.189577pt;}
.h37{height:61.997387pt;}
.h1d{height:62.028247pt;}
.h23{height:62.048674pt;}
.h16{height:62.120683pt;}
.h14{height:62.151605pt;}
.h4a{height:62.153395pt;}
.h42{height:62.291838pt;}
.h55{height:62.415967pt;}
.h40{height:62.500557pt;}
.h62{height:62.781250pt;}
.hb{height:62.812500pt;}
.h47{height:63.575592pt;}
.ha{height:64.500000pt;}
.h11{height:65.781915pt;}
.h2d{height:66.625000pt;}
.h3f{height:67.398615pt;}
.h3d{height:67.432163pt;}
.h2c{height:67.661258pt;}
.h5e{height:68.380246pt;}
.h1c{height:69.329492pt;}
.h53{height:70.280492pt;}
.h1b{height:70.949123pt;}
.h19{height:70.984439pt;}
.h2a{height:71.448805pt;}
.h5c{height:71.527429pt;}
.h28{height:72.963751pt;}
.h26{height:73.000069pt;}
.h2{height:73.281250pt;}
.h5b{height:73.739084pt;}
.h59{height:73.775789pt;}
.h52{height:74.235746pt;}
.h61{height:74.484375pt;}
.h51{height:75.788250pt;}
.h4f{height:75.825974pt;}
.h60{height:76.745567pt;}
.h12{height:77.729167pt;}
.h1e{height:78.378408pt;}
.h4c{height:88.507028pt;}
.h32{height:95.062939pt;}
.h49{height:101.151661pt;}
.h5f{height:102.707274pt;}
.hd{height:220.840000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wf{width:16.000524pt;}
.w1a{width:16.000551pt;}
.w13{width:17.866936pt;}
.wc{width:21.466448pt;}
.w17{width:28.399975pt;}
.w1f{width:33.866732pt;}
.w14{width:37.467532pt;}
.wb{width:38.134053pt;}
.w16{width:39.999935pt;}
.w9{width:42.533539pt;}
.w18{width:49.867323pt;}
.w1e{width:50.400533pt;}
.w11{width:53.600004pt;}
.w19{width:55.998915pt;}
.w10{width:58.533473pt;}
.w12{width:69.600841pt;}
.w21{width:89.864533pt;}
.w20{width:102.134293pt;}
.w1d{width:157.461630pt;}
.wa{width:157.471116pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w1c{width:233.996697pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w1b{width:265.855423pt;}
.w15{width:283.073754pt;}
.wd{width:289.866619pt;}
.w22{width:301.605954pt;}
.we{width:314.670256pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:1.424115pt;}
.x2d{left:2.629918pt;}
.x49{left:3.870628pt;}
.x4{left:6.133333pt;}
.x26{left:9.272615pt;}
.x9{left:11.053333pt;}
.x3f{left:13.208116pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x5d{left:17.365430pt;}
.x1f{left:18.566667pt;}
.x5{left:19.733333pt;}
.x4d{left:21.523991pt;}
.x25{left:23.450762pt;}
.x3b{left:24.587676pt;}
.x2a{left:26.460340pt;}
.x43{left:27.608296pt;}
.xb{left:28.533333pt;}
.x50{left:30.869364pt;}
.x64{left:32.280080pt;}
.x3a{left:33.445027pt;}
.x41{left:34.744359pt;}
.x3{left:37.866655pt;}
.x3e{left:39.718628pt;}
.x54{left:46.162061pt;}
.x66{left:48.865509pt;}
.x63{left:51.532186pt;}
.x61{left:54.336014pt;}
.x4b{left:55.275407pt;}
.x31{left:56.866667pt;}
.x38{left:58.316691pt;}
.x47{left:59.799995pt;}
.x23{left:61.866655pt;}
.x2f{left:64.999995pt;}
.x4a{left:69.264132pt;}
.x57{left:78.701832pt;}
.x48{left:82.235011pt;}
.x65{left:83.744398pt;}
.x20{left:85.066655pt;}
.x30{left:86.399988pt;}
.x1e{left:89.066667pt;}
.x1d{left:93.066667pt;}
.xd{left:95.093333pt;}
.x29{left:97.466655pt;}
.x3d{left:101.866655pt;}
.x45{left:103.733322pt;}
.x10{left:106.399988pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x33{left:120.484659pt;}
.x62{left:121.564266pt;}
.x46{left:123.366655pt;}
.x2c{left:127.266658pt;}
.x28{left:128.433322pt;}
.x35{left:139.785899pt;}
.x11{left:142.439988pt;}
.x42{left:143.493322pt;}
.x40{left:144.426655pt;}
.x34{left:149.961624pt;}
.x44{left:155.493322pt;}
.x37{left:156.433007pt;}
.x36{left:163.130208pt;}
.x2e{left:165.359988pt;}
.x59{left:167.027733pt;}
.x55{left:168.152657pt;}
.x32{left:170.492489pt;}
.x58{left:206.609800pt;}
.x2b{left:242.559988pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x14{left:312.573322pt;}
.x4c{left:342.866655pt;}
.x39{left:346.733322pt;}
.x16{left:349.933322pt;}
.x3c{left:352.599988pt;}
.x15{left:361.399988pt;}
.x21{left:406.466655pt;}
.x60{left:415.933333pt;}
.x24{left:430.466655pt;}
.x22{left:453.666655pt;}
.x53{left:470.466655pt;}
.x4f{left:482.866655pt;}
.x1b{left:484.199988pt;}
.x5c{left:488.333322pt;}
.x4e{left:494.466655pt;}
.x13{left:499.799988pt;}
.x51{left:504.333322pt;}
.x52{left:510.466655pt;}
.x1a{left:528.599988pt;}
.x12{left:538.733322pt;}
.x1c{left:543.666655pt;}
.xc{left:555.933333pt;}
.x5e{left:571.399964pt;}
.x5b{left:611.973322pt;}
.x17{left:617.439988pt;}
.x18{left:627.173322pt;}
.xf{left:634.360000pt;}
.x5f{left:661.306655pt;}
.x5a{left:687.706655pt;}
.x67{left:717.559988pt;}
.x56{left:719.559988pt;}
.x2{left:737.439988pt;}
.x19{left:756.106655pt;}
}




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