
    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_aa2df665bb4ccf5d37d57477.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_68e1aa24275f7669e108b35b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.212000;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_66d650525c88e2b9871649db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.987793;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_d352d675ba8d6b89ce81e1bc.woff2')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_feb0360c37029043369375ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.849000;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_515164b22ac645a6192867c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.212000;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_dc12248a3f17abf611114dc1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.105000;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_ba547c5bb1c893e0258648f4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7445d6a9aa95717b07ea1b7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.071000;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_0b0b2477e9ecc241c2456ced.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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_d799146fbc1627bb3fa34152.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2be247a23f7a2972d520df9e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_7da334dffe4f967c85b34d21.woff2')format("woff");}.fff{font-family:fff;line-height:0.752441;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_3ba45ad2995de53baee75361.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.776855;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_ccbf6264c9b996704c513bdd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.212000;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_a154ec95186f70b8c5e8208a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c00236aaabb62eaa5206fc0a.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_a85ebbc8b76d76c23671ad92.woff2')format("woff");}.ff14{font-family:ff14;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;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ddd1ef13de8b8cc20b0e3286.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.853027;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_134668261eda8af2a4fd170a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.797150;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_1954977e9c98e72cce6f7bf1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.682617;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.222658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222658,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.223078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223078,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.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);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.284000px;}
.ls17{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.660000px;}
.ls1e{letter-spacing:-0.319800px;}
.ls19{letter-spacing:-0.303000px;}
.ls29{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.247800px;}
.lsd{letter-spacing:-0.233400px;}
.ls11{letter-spacing:-0.193800px;}
.ls26{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.133800px;}
.ls14{letter-spacing:-0.115800px;}
.ls21{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.036000px;}
.ls28{letter-spacing:-0.000003px;}
.ls25{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.130323px;}
.lsc{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.195000px;}
.ls23{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.269280px;}
.ls24{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.311400px;}
.ls8{letter-spacing:0.338895px;}
.lsf{letter-spacing:0.350400px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.370800px;}
.lsa{letter-spacing:0.410880px;}
.lsb{letter-spacing:0.439200px;}
.ls5{letter-spacing:0.561600px;}
.lse{letter-spacing:0.630000px;}
.ls22{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.050000px;}
.ls27{letter-spacing:1.422000px;}
.ls9{letter-spacing:1.527974px;}
.ls1c{letter-spacing:2.106720px;}
.ls1{letter-spacing:1257.636000px;}
.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;}
}
.ws19{word-spacing:-54.000000px;}
.wse{word-spacing:-17.005920px;}
.wsc{word-spacing:-16.395120px;}
.wsf{word-spacing:-16.315920px;}
.ws1d{word-spacing:-16.092000px;}
.ws15{word-spacing:-16.068258px;}
.ws1a{word-spacing:-16.002000px;}
.ws13{word-spacing:-15.955920px;}
.wsd{word-spacing:-15.762120px;}
.wsa{word-spacing:-15.594240px;}
.ws12{word-spacing:-15.264000px;}
.wsb{word-spacing:-14.996040px;}
.ws11{word-spacing:-14.788800px;}
.ws1c{word-spacing:-14.724000px;}
.ws1b{word-spacing:-14.634000px;}
.ws1{word-spacing:-14.418000px;}
.ws1e{word-spacing:-14.417999px;}
.ws21{word-spacing:-14.417997px;}
.ws18{word-spacing:-14.382000px;}
.ws7{word-spacing:-14.346000px;}
.ws1f{word-spacing:-14.238000px;}
.ws16{word-spacing:-14.098200px;}
.ws6{word-spacing:-13.441680px;}
.ws5{word-spacing:-13.191480px;}
.ws4{word-spacing:-12.880080px;}
.ws14{word-spacing:-12.852000px;}
.ws3{word-spacing:-12.746280px;}
.ws17{word-spacing:-12.669120px;}
.ws10{word-spacing:-11.448000px;}
.ws22{word-spacing:-11.178000px;}
.ws9{word-spacing:-10.568880px;}
.ws8{word-spacing:-9.705480px;}
.ws2{word-spacing:-9.612000px;}
.ws20{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-5.310720px;}
._a{margin-left:-4.197840px;}
._9{margin-left:-2.403120px;}
._0{margin-left:-1.296000px;}
._1{width:1.236000px;}
._2{width:2.900462px;}
._10{width:4.702586px;}
._17{width:5.729494px;}
._e{width:6.963840px;}
._8{width:8.033760px;}
._13{width:9.137465px;}
._f{width:10.250106px;}
._14{width:11.608276px;}
._1e{width:12.665601px;}
._7{width:13.692240px;}
._6{width:14.801760px;}
._18{width:17.040720px;}
._b{width:18.183120px;}
._1b{width:19.465680px;}
._1c{width:21.214800px;}
._1d{width:22.589280px;}
._19{width:23.605200px;}
._1a{width:24.737760px;}
._20{width:25.876080px;}
._1f{width:27.795211px;}
._12{width:29.628194px;}
._5{width:30.939360px;}
._2e{width:32.441520px;}
._11{width:33.848355px;}
._26{width:35.508000px;}
._c{width:37.271520px;}
._2a{width:38.463600px;}
._29{width:39.561120px;}
._31{width:42.498000px;}
._28{width:44.329200px;}
._15{width:46.811040px;}
._16{width:47.812320px;}
._4{width:48.819840px;}
._3{width:50.196000px;}
._24{width:57.512652px;}
._27{width:62.026800px;}
._22{width:68.359920px;}
._25{width:74.466240px;}
._21{width:81.995520px;}
._23{width:87.007964px;}
._2f{width:120.054000px;}
._30{width:121.182000px;}
._2d{width:182.369280px;}
._2c{width:189.426720px;}
._2b{width:252.913038px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(111,110,110);}
.fc1{color:rgb(224,120,44);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fsc{font-size:50.848916px;}
.fs5{font-size:54.000000px;}
.fsd{font-size:56.920429px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y154{bottom:4.680000px;}
.y166{bottom:4.725000px;}
.y1f6{bottom:4.860000px;}
.y52{bottom:8.100000px;}
.y1e7{bottom:12.240000px;}
.y1e4{bottom:13.320000px;}
.y152{bottom:14.760000px;}
.y161{bottom:15.480000px;}
.y1ee{bottom:17.460000px;}
.y1b9{bottom:24.834000px;}
.y160{bottom:24.840000px;}
.y1f4{bottom:24.870000px;}
.y150{bottom:25.020000px;}
.y165{bottom:25.065000px;}
.y15b{bottom:25.560000px;}
.y51{bottom:28.260000px;}
.y1f8{bottom:32.400000px;}
.y1e6{bottom:32.625000px;}
.y1ea{bottom:33.480000px;}
.y1e3{bottom:33.660000px;}
.y151{bottom:35.100000px;}
.y159{bottom:35.640000px;}
.y167{bottom:35.865000px;}
.y1b8{bottom:45.174000px;}
.y153{bottom:45.180000px;}
.y15d{bottom:45.210000px;}
.y164{bottom:45.225000px;}
.y1f0{bottom:45.360000px;}
.y157{bottom:45.900000px;}
.y1e2{bottom:53.820000px;}
.y1a7{bottom:55.260000px;}
.y1bb{bottom:55.440000px;}
.y158{bottom:55.980000px;}
.y1fa{bottom:60.120000px;}
.y1e9{bottom:61.425000px;}
.y19a{bottom:61.740000px;}
.y1b7{bottom:65.334000px;}
.y1a1{bottom:65.340000px;}
.y156{bottom:65.520000px;}
.y163{bottom:65.565000px;}
.y6{bottom:66.525004px;}
.y1ed{bottom:72.900000px;}
.y1f2{bottom:73.080000px;}
.y1a6{bottom:75.600000px;}
.y27{bottom:76.716000px;}
.y72{bottom:77.076000px;}
.y1b6{bottom:85.674000px;}
.y155{bottom:85.680000px;}
.y1a0{bottom:85.710000px;}
.y1be{bottom:85.725000px;}
.y1bc{bottom:85.860000px;}
.y199{bottom:89.490000px;}
.y26{bottom:91.296000px;}
.y1ad{bottom:95.760000px;}
.y1a5{bottom:95.790000px;}
.y5{bottom:97.125005px;}
.y1b5{bottom:105.834000px;}
.y1c1{bottom:105.840000px;}
.y19f{bottom:105.870000px;}
.y25{bottom:105.876000px;}
.y1bf{bottom:105.885000px;}
.y1af{bottom:106.014000px;}
.y1ab{bottom:106.020000px;}
.y11b{bottom:108.756000px;}
.y198{bottom:109.650000px;}
.y244{bottom:110.376000px;}
.y192{bottom:110.736000px;}
.y170{bottom:111.456000px;}
.yed{bottom:114.336000px;}
.y208{bottom:115.236000px;}
.y1ac{bottom:116.100000px;}
.y1a4{bottom:116.130000px;}
.ycb{bottom:117.036000px;}
.y218{bottom:117.576000px;}
.y149{bottom:120.096000px;}
.y9a{bottom:121.716000px;}
.y129{bottom:124.056000px;}
.y1dd{bottom:124.596000px;}
.y11a{bottom:125.496000px;}
.y1b4{bottom:126.174000px;}
.y1aa{bottom:126.180000px;}
.y19e{bottom:126.210000px;}
.y243{bottom:126.216000px;}
.y1ae{bottom:126.756000px;}
.y191{bottom:128.196000px;}
.y16f{bottom:128.916000px;}
.y24{bottom:129.276000px;}
.yfe{bottom:129.636000px;}
.y197{bottom:129.990000px;}
.y207{bottom:132.696000px;}
.y217{bottom:133.416000px;}
.yca{bottom:134.676000px;}
.y1a3{bottom:136.290000px;}
.y128{bottom:137.196000px;}
.y148{bottom:137.556000px;}
.y23{bottom:139.264499px;}
.y99{bottom:139.356000px;}
.yec{bottom:140.616000px;}
.y1dc{bottom:142.236000px;}
.y1b3{bottom:146.334000px;}
.y19d{bottom:146.370000px;}
.y16e{bottom:146.376000px;}
.y1a9{bottom:146.520000px;}
.y119{bottom:148.176000px;}
.yfd{bottom:148.896000px;}
.y206{bottom:150.330000px;}
.y242{bottom:150.510000px;}
.yc9{bottom:152.130000px;}
.y190{bottom:154.470000px;}
.y1a2{bottom:156.630000px;}
.y98{bottom:156.810000px;}
.y216{bottom:159.330000px;}
.y1db{bottom:159.690000px;}
.y147{bottom:163.830000px;}
.yfc{bottom:164.550000px;}
.y241{bottom:166.170000px;}
.y1b2{bottom:166.674000px;}
.y19c{bottom:166.710000px;}
.yeb{bottom:166.890000px;}
.y205{bottom:167.790000px;}
.y16d{bottom:168.510000px;}
.yc8{bottom:169.770000px;}
.y118{bottom:170.850000px;}
.y18f{bottom:172.110000px;}
.y1da{bottom:177.330000px;}
.yfb{bottom:179.130000px;}
.y215{bottom:180.750000px;}
.y146{bottom:181.470000px;}
.y97{bottom:183.090000px;}
.y4f{bottom:184.350000px;}
.y204{bottom:185.250000px;}
.y1b1{bottom:186.834000px;}
.y19b{bottom:186.870000px;}
.yc7{bottom:187.230000px;}
.y18e{bottom:189.570000px;}
.y240{bottom:190.650000px;}
.yea{bottom:192.990000px;}
.y117{bottom:193.530000px;}
.y1d9{bottom:194.790000px;}
.y1a{bottom:196.933500px;}
.y145{bottom:198.930000px;}
.y96{bottom:200.550000px;}
.y203{bottom:202.710000px;}
.yc6{bottom:204.690000px;}
.y4e{bottom:206.850000px;}
.y214{bottom:207.030000px;}
.y1b0{bottom:207.174000px;}
.y18d{bottom:207.210000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1d8{bottom:212.250000px;}
.y23f{bottom:214.950000px;}
.y116{bottom:216.210000px;}
.y144{bottom:216.390000px;}
.y95{bottom:218.190000px;}
.ye9{bottom:219.270000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y213{bottom:224.490000px;}
.y18c{bottom:224.670000px;}
.y4d{bottom:229.530000px;}
.y1d7{bottom:229.890000px;}
.y23e{bottom:230.610000px;}
.yc5{bottom:230.970000px;}
.y202{bottom:231.150000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y94{bottom:235.650000px;}
.y115{bottom:238.890000px;}
.y18b{bottom:242.130000px;}
.y143{bottom:242.670000px;}
.y16c{bottom:244.830000px;}
.ye8{bottom:245.550000px;}
.y1d6{bottom:247.350000px;}
.yc4{bottom:248.610000px;}
.y93{bottom:253.290000px;}
.y23d{bottom:254.910000px;}
.y201{bottom:255.990000px;}
.y18a{bottom:259.590000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y142{bottom:260.130000px;}
.y4c{bottom:260.490000px;}
.y114{bottom:261.570000px;}
.ye7{bottom:263.190000px;}
.yc3{bottom:266.070000px;}
.y16b{bottom:268.950000px;}
.y92{bottom:270.750000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1d5{bottom:273.630000px;}
.y212{bottom:277.050000px;}
.y141{bottom:277.590000px;}
.y23c{bottom:279.210000px;}
.ye6{bottom:280.650000px;}
.y200{bottom:281.550000px;}
.yc2{bottom:283.530000px;}
.y113{bottom:284.250000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y189{bottom:286.050000px;}
.y91{bottom:288.210000px;}
.y16a{bottom:288.750000px;}
.y1d4{bottom:291.090000px;}
.y4b{bottom:295.050000px;}
.ye5{bottom:298.110000px;}
.y211{bottom:303.330000px;}
.y188{bottom:303.510000px;}
.y140{bottom:304.050000px;}
.y90{bottom:305.850000px;}
.y112{bottom:306.930000px;}
.y169{bottom:307.290000px;}
.y1d3{bottom:308.730000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y23b{bottom:310.890000px;}
.yc1{bottom:311.970000px;}
.y4a{bottom:313.950000px;}
.ye4{bottom:315.750000px;}
.y210{bottom:320.790000px;}
.y187{bottom:320.970000px;}
.y13f{bottom:321.510000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y168{bottom:322.950000px;}
.y8f{bottom:323.310000px;}
.y1d2{bottom:326.190000px;}
.y111{bottom:329.610000px;}
.y1ff{bottom:331.770000px;}
.ye3{bottom:333.210000px;}
.y162{bottom:335.190000px;}
.y49{bottom:338.295000px;}
.y20f{bottom:338.475000px;}
.y186{bottom:338.655000px;}
.y13e{bottom:339.015000px;}
.y1d1{bottom:343.695000px;}
.y11{bottom:348.133500px;}
.ye2{bottom:350.895000px;}
.y23a{bottom:351.075000px;}
.y8e{bottom:351.615000px;}
.y110{bottom:352.515000px;}
.y20e{bottom:355.935000px;}
.y185{bottom:356.115000px;}
.yc0{bottom:356.655000px;}
.y1a8{bottom:357.015000px;}
.y1fe{bottom:359.535000px;}
.y1d0{bottom:361.335000px;}
.y48{bottom:362.595000px;}
.ye1{bottom:368.355000px;}
.y184{bottom:373.755000px;}
.ybf{bottom:374.115000px;}
.y10f{bottom:375.195000px;}
.y239{bottom:375.375000px;}
.y1cf{bottom:378.795000px;}
.y20d{bottom:384.375000px;}
.ye0{bottom:385.815000px;}
.y8d{bottom:386.535000px;}
.y10{bottom:386.785499px;}
.y1fd{bottom:387.255000px;}
.y47{bottom:389.955000px;}
.y183{bottom:391.215000px;}
.ybe{bottom:391.755000px;}
.y10e{bottom:399.315000px;}
.y238{bottom:399.675000px;}
.y13d{bottom:400.395000px;}
.y1ce{bottom:405.075000px;}
.yf{bottom:408.044999px;}
.y182{bottom:408.675000px;}
.ybd{bottom:409.215000px;}
.ydf{bottom:414.255000px;}
.y1fc{bottom:414.975000px;}
.y237{bottom:415.515000px;}
.y10d{bottom:416.775000px;}
.y13c{bottom:417.855000px;}
.y46{bottom:419.295000px;}
.y1cd{bottom:422.535000px;}
.y15f{bottom:425.055000px;}
.y127{bottom:425.415000px;}
.ybc{bottom:426.675000px;}
.y8c{bottom:426.855000px;}
.y10c{bottom:434.415000px;}
.y181{bottom:434.955000px;}
.y13b{bottom:435.495000px;}
.yde{bottom:437.655000px;}
.y236{bottom:439.815000px;}
.y1cc{bottom:440.175000px;}
.y1fb{bottom:442.695000px;}
.y45{bottom:443.595000px;}
.ybb{bottom:444.135000px;}
.y10b{bottom:451.875000px;}
.y13a{bottom:452.955000px;}
.y235{bottom:455.655000px;}
.y8b{bottom:457.455000px;}
.y1cb{bottom:457.635000px;}
.y180{bottom:460.155000px;}
.ydd{bottom:461.775000px;}
.y126{bottom:462.315000px;}
.y44{bottom:467.895000px;}
.y10a{bottom:469.515000px;}
.yba{bottom:470.415000px;}
.y1f9{bottom:471.675000px;}
.y15e{bottom:474.195000px;}
.y1ca{bottom:475.275000px;}
.y17f{bottom:477.435000px;}
.ydc{bottom:479.415000px;}
.y125{bottom:479.955000px;}
.y8a{bottom:484.635000px;}
.ye{bottom:484.864502px;}
.y109{bottom:486.975000px;}
.y139{bottom:487.875000px;}
.yb9{bottom:488.055000px;}
.y43{bottom:492.195000px;}
.y1c9{bottom:492.735000px;}
.y17e{bottom:494.715000px;}
.y234{bottom:495.615000px;}
.ydb{bottom:496.875000px;}
.y124{bottom:497.415000px;}
.y1f7{bottom:499.395000px;}
.yd{bottom:502.864502px;}
.yb8{bottom:505.515000px;}
.yfa{bottom:507.855000px;}
.y17d{bottom:511.995000px;}
.y108{bottom:512.355000px;}
.yda{bottom:514.335000px;}
.y123{bottom:515.055000px;}
.y138{bottom:516.315000px;}
.y89{bottom:516.675000px;}
.y1c8{bottom:519.015000px;}
.y42{bottom:519.555000px;}
.y233{bottom:519.915000px;}
.yc{bottom:520.864502px;}
.yb7{bottom:523.155000px;}
.yf9{bottom:526.575000px;}
.yd9{bottom:531.975000px;}
.y107{bottom:532.155000px;}
.y122{bottom:532.515000px;}
.y17c{bottom:535.215000px;}
.y232{bottom:535.755000px;}
.y1c7{bottom:536.475000px;}
.yb{bottom:538.864499px;}
.y88{bottom:539.175000px;}
.yb6{bottom:540.615000px;}
.y137{bottom:543.315000px;}
.yf8{bottom:544.755000px;}
.y106{bottom:547.815000px;}
.y41{bottom:548.895000px;}
.yd8{bottom:549.435000px;}
.y121{bottom:549.975000px;}
.y1c6{bottom:553.935000px;}
.y1f5{bottom:554.835000px;}
.ya{bottom:556.864499px;}
.yb5{bottom:558.075000px;}
.y105{bottom:559.155000px;}
.y17b{bottom:559.515000px;}
.y231{bottom:560.055000px;}
.y87{bottom:561.675000px;}
.yf7{bottom:562.395000px;}
.y15c{bottom:563.835000px;}
.yd7{bottom:566.895000px;}
.y136{bottom:567.255000px;}
.y120{bottom:567.435000px;}
.y40{bottom:573.195000px;}
.yb4{bottom:575.715000px;}
.y230{bottom:575.895000px;}
.y17a{bottom:576.975000px;}
.yf6{bottom:579.855000px;}
.y1c5{bottom:582.375000px;}
.y1f3{bottom:582.735000px;}
.y86{bottom:584.175000px;}
.y20c{bottom:584.355000px;}
.y135{bottom:586.515000px;}
.y11f{bottom:592.815000px;}
.yb3{bottom:593.175000px;}
.yf5{bottom:597.315000px;}
.y3f{bottom:597.495000px;}
.y134{bottom:599.835000px;}
.y22f{bottom:600.195000px;}
.y20b{bottom:601.995000px;}
.y179{bottom:603.255000px;}
.y85{bottom:606.705000px;}
.y1c4{bottom:608.325000px;}
.yd6{bottom:610.845000px;}
.y11e{bottom:612.105000px;}
.yb2{bottom:619.485000px;}
.y178{bottom:620.745000px;}
.y3e{bottom:621.825000px;}
.yf4{bottom:622.905000px;}
.y22e{bottom:624.525000px;}
.y1c3{bottom:626.865000px;}
.y11d{bottom:627.765000px;}
.yd5{bottom:628.305000px;}
.y84{bottom:629.205000px;}
.y1f1{bottom:630.645000px;}
.y15a{bottom:633.345000px;}
.yb1{bottom:636.945000px;}
.y177{bottom:638.205000px;}
.y11c{bottom:639.105000px;}
.y22d{bottom:640.365000px;}
.y1c2{bottom:642.525000px;}
.yf3{bottom:642.705000px;}
.y9{bottom:645.510000px;}
.yd4{bottom:645.765000px;}
.y3d{bottom:649.185000px;}
.y83{bottom:651.705000px;}
.yb0{bottom:654.585000px;}
.y1c0{bottom:654.945000px;}
.y1ef{bottom:658.365000px;}
.yf2{bottom:659.265000px;}
.yd3{bottom:663.405000px;}
.y176{bottom:664.485000px;}
.y22c{bottom:664.665000px;}
.y8{bottom:666.771000px;}
.yaf{bottom:672.045000px;}
.y82{bottom:674.205000px;}
.yf1{bottom:677.445000px;}
.y3c{bottom:678.525000px;}
.y22b{bottom:680.505000px;}
.yd2{bottom:680.865000px;}
.y175{bottom:681.945000px;}
.yae{bottom:689.685000px;}
.y81{bottom:696.705000px;}
.yd1{bottom:698.325000px;}
.y3b{bottom:702.825000px;}
.y174{bottom:704.085000px;}
.y22a{bottom:704.805000px;}
.yad{bottom:707.145000px;}
.y80{bottom:719.205000px;}
.yac{bottom:724.605000px;}
.y7{bottom:726.298500px;}
.y1ec{bottom:726.765000px;}
.y3a{bottom:727.125000px;}
.y229{bottom:729.105000px;}
.y20a{bottom:733.425000px;}
.y196{bottom:737.745000px;}
.y173{bottom:741.165000px;}
.y7f{bottom:741.705000px;}
.y228{bottom:744.945000px;}
.yab{bottom:750.885000px;}
.y39{bottom:751.425000px;}
.y4{bottom:752.599495px;}
.y1eb{bottom:754.485000px;}
.y227{bottom:760.605000px;}
.y172{bottom:763.305000px;}
.y7e{bottom:764.385000px;}
.yaa{bottom:768.345000px;}
.y252{bottom:769.965000px;}
.y38{bottom:778.785000px;}
.y226{bottom:784.905000px;}
.ya9{bottom:785.985000px;}
.y195{bottom:792.645000px;}
.y251{bottom:793.545000px;}
.y7d{bottom:797.325000px;}
.y225{bottom:800.745000px;}
.y37{bottom:802.905000px;}
.ya8{bottom:803.445000px;}
.y1bd{bottom:804.165000px;}
.y250{bottom:809.385000px;}
.y194{bottom:811.545000px;}
.y14f{bottom:813.885000px;}
.y224{bottom:816.585000px;}
.yd0{bottom:820.905000px;}
.ya7{bottom:821.085000px;}
.y36{bottom:821.265000px;}
.y1e8{bottom:822.705000px;}
.y24f{bottom:825.045000px;}
.y193{bottom:829.725000px;}
.y223{bottom:832.425000px;}
.y7c{bottom:833.505000px;}
.ya6{bottom:838.545000px;}
.ycf{bottom:847.185000px;}
.y24e{bottom:849.525000px;}
.y1e5{bottom:851.505000px;}
.y7b{bottom:853.845000px;}
.y35{bottom:854.205000px;}
.ya5{bottom:856.005000px;}
.y222{bottom:856.725000px;}
.yce{bottom:864.825000px;}
.y221{bottom:872.430000px;}
.y171{bottom:873.510000px;}
.y24d{bottom:873.870000px;}
.y3{bottom:879.369000px;}
.y133{bottom:879.990000px;}
.ya4{bottom:882.330000px;}
.y7a{bottom:887.370000px;}
.y14e{bottom:889.170000px;}
.y24c{bottom:889.530000px;}
.y220{bottom:896.730000px;}
.y132{bottom:898.710000px;}
.ya3{bottom:899.970000px;}
.y34{bottom:900.150000px;}
.y104{bottom:903.930000px;}
.y14d{bottom:908.070000px;}
.y1e1{bottom:908.250000px;}
.y79{bottom:909.870000px;}
.y21f{bottom:912.570000px;}
.y24b{bottom:913.830000px;}
.y131{bottom:917.070000px;}
.ya2{bottom:917.430000px;}
.y103{bottom:924.090000px;}
.y14c{bottom:926.250000px;}
.y24a{bottom:929.670000px;}
.y78{bottom:932.370000px;}
.y1ba{bottom:933.090000px;}
.y130{bottom:934.530000px;}
.y33{bottom:934.710000px;}
.ya1{bottom:934.890000px;}
.y21e{bottom:936.870000px;}
.y102{bottom:942.990000px;}
.y14b{bottom:943.710000px;}
.y2{bottom:945.126001px;}
.y12f{bottom:951.990000px;}
.y209{bottom:952.350000px;}
.ya0{bottom:952.530000px;}
.y21d{bottom:952.710000px;}
.y249{bottom:953.970000px;}
.y77{bottom:954.870000px;}
.y101{bottom:961.170000px;}
.y1{bottom:966.726000px;}
.y12e{bottom:969.630000px;}
.y248{bottom:969.810000px;}
.y9f{bottom:969.990000px;}
.y21c{bottom:977.010000px;}
.y76{bottom:977.370000px;}
.y100{bottom:978.810000px;}
.y12d{bottom:987.090000px;}
.ycd{bottom:987.450000px;}
.y9e{bottom:987.630000px;}
.y32{bottom:989.970000px;}
.y1e0{bottom:992.130000px;}
.y247{bottom:994.110000px;}
.yff{bottom:996.270000px;}
.y75{bottom:999.870000px;}
.y21b{bottom:1001.310000px;}
.y12c{bottom:1004.730000px;}
.y9d{bottom:1005.090000px;}
.yf0{bottom:1006.170000px;}
.y246{bottom:1009.950000px;}
.y31{bottom:1010.490000px;}
.y1df{bottom:1013.010000px;}
.ycc{bottom:1013.730000px;}
.y12b{bottom:1022.190000px;}
.y74{bottom:1022.370000px;}
.y14a{bottom:1022.550000px;}
.y21a{bottom:1025.610000px;}
.yef{bottom:1026.330000px;}
.y30{bottom:1027.050000px;}
.y9c{bottom:1031.370000px;}
.y1de{bottom:1031.550000px;}
.y2f{bottom:1043.430000px;}
.y73{bottom:1044.870000px;}
.yee{bottom:1046.670000px;}
.y12a{bottom:1047.570000px;}
.y9b{bottom:1048.830000px;}
.y245{bottom:1049.910000px;}
.y219{bottom:1050.090000px;}
.y2e{bottom:1059.810000px;}
.y71{bottom:1062.690000px;}
.y70{bottom:1063.950000px;}
.y6f{bottom:1065.390000px;}
.y6e{bottom:1066.650000px;}
.y6d{bottom:1067.910000px;}
.y6c{bottom:1069.350000px;}
.y6b{bottom:1070.610000px;}
.y6a{bottom:1072.050000px;}
.y69{bottom:1073.310000px;}
.y68{bottom:1074.750000px;}
.y67{bottom:1076.010000px;}
.y2d{bottom:1076.190000px;}
.y66{bottom:1077.450000px;}
.y65{bottom:1082.490000px;}
.y2c{bottom:1092.750000px;}
.y64{bottom:1100.490000px;}
.y2b{bottom:1109.130000px;}
.y63{bottom:1119.750000px;}
.y2a{bottom:1125.510000px;}
.y29{bottom:1141.920000px;}
.y62{bottom:1144.620000px;}
.y28{bottom:1158.480000px;}
.y61{bottom:1169.460000px;}
.y50{bottom:1175.400000px;}
.y60{bottom:1190.700000px;}
.y5f{bottom:1191.960000px;}
.y5e{bottom:1193.400000px;}
.y5d{bottom:1194.660000px;}
.y5c{bottom:1196.100000px;}
.y5b{bottom:1197.360000px;}
.y5a{bottom:1198.800000px;}
.y59{bottom:1200.060000px;}
.y58{bottom:1201.500000px;}
.y57{bottom:1202.760000px;}
.y56{bottom:1204.200000px;}
.y55{bottom:1205.460000px;}
.y54{bottom:1206.900000px;}
.y53{bottom:1208.160000px;}
.h35{height:27.720000px;}
.h3e{height:27.756000px;}
.h3b{height:27.900000px;}
.h15{height:28.195312px;}
.h13{height:28.728000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.he{height:33.912000px;}
.h19{height:37.781719px;}
.h2b{height:39.825030px;}
.h18{height:39.964320px;}
.h1e{height:41.317383px;}
.hd{height:42.292969px;}
.h17{height:42.660000px;}
.h1b{height:44.820000px;}
.hf{height:45.442080px;}
.h7{height:45.960000px;}
.h1a{height:46.804219px;}
.h3a{height:47.916000px;}
.h40{height:47.971025px;}
.h2a{height:48.122227px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h28{height:49.140000px;}
.h22{height:49.583118px;}
.h10{height:49.600800px;}
.hb{height:50.868000px;}
.h1f{height:51.678000px;}
.h1d{height:51.879375px;}
.h2{height:55.152000px;}
.h3c{height:55.440000px;}
.hc{height:55.503491px;}
.h33{height:55.656000px;}
.h16{height:56.293920px;}
.h3f{height:58.325760px;}
.h21{height:61.423863px;}
.h14{height:67.824000px;}
.h20{height:68.084282px;}
.h36{height:68.220000px;}
.h38{height:68.400000px;}
.h26{height:69.480000px;}
.h23{height:69.516000px;}
.h25{height:74.004654px;}
.h1c{height:74.953125px;}
.h12{height:76.416480px;}
.h32{height:78.120000px;}
.h5{height:78.132000px;}
.h3d{height:83.160000px;}
.h34{height:84.456000px;}
.h27{height:89.640000px;}
.h29{height:89.856000px;}
.h11{height:91.642320px;}
.h37{height:95.940000px;}
.h39{height:96.120000px;}
.h24{height:109.980000px;}
.h4{height:119.055004px;}
.h30{height:128.916000px;}
.h2f{height:129.060000px;}
.h31{height:149.220000px;}
.h2d{height:169.560000px;}
.h2c{height:209.910000px;}
.h2e{height:230.250000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w8{width:74.196000px;}
.wa{width:84.816000px;}
.wb{width:88.380000px;}
.w13{width:96.336000px;}
.w14{width:97.236000px;}
.w12{width:102.780000px;}
.w9{width:103.320000px;}
.wc{width:105.696000px;}
.w11{width:108.216000px;}
.wf{width:124.596000px;}
.w7{width:133.596000px;}
.w6{width:143.100000px;}
.we{width:148.536000px;}
.wd{width:157.140000px;}
.w10{width:199.290000px;}
.w5{width:600.945000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w3{width:893.340000px;}
.x0{left:0.000000px;}
.x1c{left:1.440000px;}
.x5e{left:8.460000px;}
.x5f{left:12.060000px;}
.x4c{left:16.560000px;}
.x48{left:19.080000px;}
.x5a{left:23.400000px;}
.x53{left:24.840000px;}
.x56{left:26.820000px;}
.x77{left:28.125000px;}
.x61{left:30.420000px;}
.x81{left:31.905000px;}
.x66{left:33.120000px;}
.x6b{left:35.100000px;}
.x4d{left:36.540000px;}
.x4e{left:39.600000px;}
.x46{left:41.580000px;}
.x57{left:43.740000px;}
.x54{left:44.820000px;}
.x58{left:46.800000px;}
.x50{left:48.240000px;}
.x64{left:49.350000px;}
.x7f{left:50.760000px;}
.x5b{left:52.020000px;}
.x80{left:53.820000px;}
.x67{left:57.240000px;}
.x60{left:59.220000px;}
.x85{left:61.380000px;}
.x49{left:62.505000px;}
.x6a{left:65.700000px;}
.x5c{left:67.320000px;}
.x1d{left:69.114000px;}
.x63{left:71.310000px;}
.x4a{left:73.125000px;}
.x68{left:74.160000px;}
.x69{left:75.420000px;}
.x5d{left:77.934000px;}
.x83{left:79.950000px;}
.xb{left:81.035987px;}
.x1e{left:83.154000px;}
.x87{left:85.005000px;}
.x51{left:86.040000px;}
.x1b{left:87.876000px;}
.xa{left:89.315987px;}
.x5{left:91.295987px;}
.x9{left:93.455987px;}
.x6c{left:96.335987px;}
.x65{left:98.094000px;}
.x1{left:102.045000px;}
.x2e{left:103.535987px;}
.x2{left:106.297500px;}
.x2f{left:107.675987px;}
.x43{left:108.935987px;}
.x35{left:110.375987px;}
.x24{left:111.635987px;}
.x62{left:114.834000px;}
.x79{left:117.215987px;}
.x31{left:124.235987px;}
.x39{left:125.495987px;}
.x19{left:131.795987px;}
.x1a{left:134.135987px;}
.x7c{left:135.405000px;}
.x44{left:137.195987px;}
.x6e{left:140.615987px;}
.x7a{left:144.755987px;}
.x6{left:154.469987px;}
.x8b{left:157.349987px;}
.x86{left:167.085000px;}
.x74{left:176.969987px;}
.x84{left:179.145000px;}
.x1f{left:182.919000px;}
.x73{left:185.969987px;}
.x89{left:189.029987px;}
.x88{left:195.345000px;}
.x20{left:197.139000px;}
.x3d{left:199.289987px;}
.x4{left:203.484001px;}
.x40{left:204.689987px;}
.x47{left:224.130000px;}
.x41{left:226.649987px;}
.x45{left:237.089987px;}
.x76{left:238.170000px;}
.x27{left:247.529987px;}
.x34{left:258.374987px;}
.x23{left:264.314987px;}
.x32{left:282.134987px;}
.x38{left:288.434987px;}
.x28{left:311.114987px;}
.x75{left:318.314987px;}
.x29{left:320.294987px;}
.x3f{left:322.634987px;}
.x7b{left:334.514987px;}
.x36{left:342.794987px;}
.x2a{left:353.774987px;}
.x4b{left:357.735000px;}
.x2b{left:362.954987px;}
.x7d{left:376.815000px;}
.x3c{left:379.334987px;}
.x78{left:386.715000px;}
.x6d{left:401.294987px;}
.x3a{left:403.814987px;}
.x17{left:422.924987px;}
.x4f{left:431.925000px;}
.x30{left:446.684987px;}
.x8a{left:451.724987px;}
.x3{left:454.959000px;}
.x2d{left:457.844987px;}
.x72{left:480.344987px;}
.x7e{left:485.025000px;}
.x11{left:495.644987px;}
.x21{left:501.234000px;}
.xc{left:507.524987px;}
.x6f{left:512.564987px;}
.x22{left:516.174000px;}
.x52{left:535.065000px;}
.xe{left:540.464987px;}
.xd{left:543.524987px;}
.x12{left:545.144987px;}
.x16{left:571.604987px;}
.x14{left:578.804987px;}
.x2c{left:588.749987px;}
.x55{left:619.890000px;}
.x13{left:647.969987px;}
.x18{left:659.669987px;}
.xf{left:667.589987px;}
.x15{left:681.989987px;}
.x82{left:684.150000px;}
.x59{left:708.270000px;}
.x3e{left:746.789987px;}
.x42{left:751.289987px;}
.x33{left:755.249987px;}
.x25{left:767.879987px;}
.x37{left:774.539987px;}
.x3b{left:785.159987px;}
.x71{left:791.999987px;}
.x7{left:799.199987px;}
.x8{left:803.159987px;}
.x26{left:806.219987px;}
.x70{left:810.719987px;}
.x10{left:813.959987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.141333pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.586667pt;}
.ls1e{letter-spacing:-0.284267pt;}
.ls19{letter-spacing:-0.269333pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.220267pt;}
.lsd{letter-spacing:-0.207467pt;}
.ls11{letter-spacing:-0.172267pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.118933pt;}
.ls14{letter-spacing:-0.102933pt;}
.ls21{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.032000pt;}
.ls28{letter-spacing:-0.000003pt;}
.ls25{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.115843pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.173333pt;}
.ls23{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.239360pt;}
.ls24{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.276800pt;}
.ls8{letter-spacing:0.301240pt;}
.lsf{letter-spacing:0.311467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.329600pt;}
.lsa{letter-spacing:0.365227pt;}
.lsb{letter-spacing:0.390400pt;}
.ls5{letter-spacing:0.499200pt;}
.lse{letter-spacing:0.560000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls12{letter-spacing:0.933333pt;}
.ls27{letter-spacing:1.264000pt;}
.ls9{letter-spacing:1.358199pt;}
.ls1c{letter-spacing:1.872640pt;}
.ls1{letter-spacing:1117.898667pt;}
.ws19{word-spacing:-48.000000pt;}
.wse{word-spacing:-15.116373pt;}
.wsc{word-spacing:-14.573440pt;}
.wsf{word-spacing:-14.503040pt;}
.ws1d{word-spacing:-14.304000pt;}
.ws15{word-spacing:-14.282896pt;}
.ws1a{word-spacing:-14.224000pt;}
.ws13{word-spacing:-14.183040pt;}
.wsd{word-spacing:-14.010773pt;}
.wsa{word-spacing:-13.861547pt;}
.ws12{word-spacing:-13.568000pt;}
.wsb{word-spacing:-13.329813pt;}
.ws11{word-spacing:-13.145600pt;}
.ws1c{word-spacing:-13.088000pt;}
.ws1b{word-spacing:-13.008000pt;}
.ws1{word-spacing:-12.816000pt;}
.ws1e{word-spacing:-12.815999pt;}
.ws21{word-spacing:-12.815997pt;}
.ws18{word-spacing:-12.784000pt;}
.ws7{word-spacing:-12.752000pt;}
.ws1f{word-spacing:-12.656000pt;}
.ws16{word-spacing:-12.531733pt;}
.ws6{word-spacing:-11.948160pt;}
.ws5{word-spacing:-11.725760pt;}
.ws4{word-spacing:-11.448960pt;}
.ws14{word-spacing:-11.424000pt;}
.ws3{word-spacing:-11.330027pt;}
.ws17{word-spacing:-11.261440pt;}
.ws10{word-spacing:-10.176000pt;}
.ws22{word-spacing:-9.936000pt;}
.ws9{word-spacing:-9.394560pt;}
.ws8{word-spacing:-8.627093pt;}
.ws2{word-spacing:-8.544000pt;}
.ws20{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-4.720640pt;}
._a{margin-left:-3.731413pt;}
._9{margin-left:-2.136107pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.098667pt;}
._2{width:2.578188pt;}
._10{width:4.180076pt;}
._17{width:5.092884pt;}
._e{width:6.190080pt;}
._8{width:7.141120pt;}
._13{width:8.122191pt;}
._f{width:9.111205pt;}
._14{width:10.318467pt;}
._1e{width:11.258312pt;}
._7{width:12.170880pt;}
._6{width:13.157120pt;}
._18{width:15.147307pt;}
._b{width:16.162773pt;}
._1b{width:17.302827pt;}
._1c{width:18.857600pt;}
._1d{width:20.079360pt;}
._19{width:20.982400pt;}
._1a{width:21.989120pt;}
._20{width:23.000960pt;}
._1f{width:24.706854pt;}
._12{width:26.336173pt;}
._5{width:27.501653pt;}
._2e{width:28.836907pt;}
._11{width:30.087427pt;}
._26{width:31.562667pt;}
._c{width:33.130240pt;}
._2a{width:34.189867pt;}
._29{width:35.165440pt;}
._31{width:37.776000pt;}
._28{width:39.403733pt;}
._15{width:41.609813pt;}
._16{width:42.499840pt;}
._4{width:43.395413pt;}
._3{width:44.618667pt;}
._24{width:51.122357pt;}
._27{width:55.134933pt;}
._22{width:60.764373pt;}
._25{width:66.192213pt;}
._21{width:72.884907pt;}
._23{width:77.340413pt;}
._2f{width:106.714667pt;}
._30{width:107.717333pt;}
._2d{width:162.106027pt;}
._2c{width:168.379307pt;}
._2b{width:224.811589pt;}
.fs6{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fsc{font-size:45.199037pt;}
.fs5{font-size:48.000000pt;}
.fsd{font-size:50.595937pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:4.160000pt;}
.y166{bottom:4.200000pt;}
.y1f6{bottom:4.320000pt;}
.y52{bottom:7.200000pt;}
.y1e7{bottom:10.880000pt;}
.y1e4{bottom:11.840000pt;}
.y152{bottom:13.120000pt;}
.y161{bottom:13.760000pt;}
.y1ee{bottom:15.520000pt;}
.y1b9{bottom:22.074667pt;}
.y160{bottom:22.080000pt;}
.y1f4{bottom:22.106667pt;}
.y150{bottom:22.240000pt;}
.y165{bottom:22.280000pt;}
.y15b{bottom:22.720000pt;}
.y51{bottom:25.120000pt;}
.y1f8{bottom:28.800000pt;}
.y1e6{bottom:29.000000pt;}
.y1ea{bottom:29.760000pt;}
.y1e3{bottom:29.920000pt;}
.y151{bottom:31.200000pt;}
.y159{bottom:31.680000pt;}
.y167{bottom:31.880000pt;}
.y1b8{bottom:40.154667pt;}
.y153{bottom:40.160000pt;}
.y15d{bottom:40.186667pt;}
.y164{bottom:40.200000pt;}
.y1f0{bottom:40.320000pt;}
.y157{bottom:40.800000pt;}
.y1e2{bottom:47.840000pt;}
.y1a7{bottom:49.120000pt;}
.y1bb{bottom:49.280000pt;}
.y158{bottom:49.760000pt;}
.y1fa{bottom:53.440000pt;}
.y1e9{bottom:54.600000pt;}
.y19a{bottom:54.880000pt;}
.y1b7{bottom:58.074667pt;}
.y1a1{bottom:58.080000pt;}
.y156{bottom:58.240000pt;}
.y163{bottom:58.280000pt;}
.y6{bottom:59.133337pt;}
.y1ed{bottom:64.800000pt;}
.y1f2{bottom:64.960000pt;}
.y1a6{bottom:67.200000pt;}
.y27{bottom:68.192000pt;}
.y72{bottom:68.512000pt;}
.y1b6{bottom:76.154667pt;}
.y155{bottom:76.160000pt;}
.y1a0{bottom:76.186667pt;}
.y1be{bottom:76.200000pt;}
.y1bc{bottom:76.320000pt;}
.y199{bottom:79.546667pt;}
.y26{bottom:81.152000pt;}
.y1ad{bottom:85.120000pt;}
.y1a5{bottom:85.146667pt;}
.y5{bottom:86.333337pt;}
.y1b5{bottom:94.074667pt;}
.y1c1{bottom:94.080000pt;}
.y19f{bottom:94.106667pt;}
.y25{bottom:94.112000pt;}
.y1bf{bottom:94.120000pt;}
.y1af{bottom:94.234667pt;}
.y1ab{bottom:94.240000pt;}
.y11b{bottom:96.672000pt;}
.y198{bottom:97.466667pt;}
.y244{bottom:98.112000pt;}
.y192{bottom:98.432000pt;}
.y170{bottom:99.072000pt;}
.yed{bottom:101.632000pt;}
.y208{bottom:102.432000pt;}
.y1ac{bottom:103.200000pt;}
.y1a4{bottom:103.226667pt;}
.ycb{bottom:104.032000pt;}
.y218{bottom:104.512000pt;}
.y149{bottom:106.752000pt;}
.y9a{bottom:108.192000pt;}
.y129{bottom:110.272000pt;}
.y1dd{bottom:110.752000pt;}
.y11a{bottom:111.552000pt;}
.y1b4{bottom:112.154667pt;}
.y1aa{bottom:112.160000pt;}
.y19e{bottom:112.186667pt;}
.y243{bottom:112.192000pt;}
.y1ae{bottom:112.672000pt;}
.y191{bottom:113.952000pt;}
.y16f{bottom:114.592000pt;}
.y24{bottom:114.912000pt;}
.yfe{bottom:115.232000pt;}
.y197{bottom:115.546667pt;}
.y207{bottom:117.952000pt;}
.y217{bottom:118.592000pt;}
.yca{bottom:119.712000pt;}
.y1a3{bottom:121.146667pt;}
.y128{bottom:121.952000pt;}
.y148{bottom:122.272000pt;}
.y23{bottom:123.790666pt;}
.y99{bottom:123.872000pt;}
.yec{bottom:124.992000pt;}
.y1dc{bottom:126.432000pt;}
.y1b3{bottom:130.074667pt;}
.y19d{bottom:130.106667pt;}
.y16e{bottom:130.112000pt;}
.y1a9{bottom:130.240000pt;}
.y119{bottom:131.712000pt;}
.yfd{bottom:132.352000pt;}
.y206{bottom:133.626667pt;}
.y242{bottom:133.786667pt;}
.yc9{bottom:135.226667pt;}
.y190{bottom:137.306667pt;}
.y1a2{bottom:139.226667pt;}
.y98{bottom:139.386667pt;}
.y216{bottom:141.626667pt;}
.y1db{bottom:141.946667pt;}
.y147{bottom:145.626667pt;}
.yfc{bottom:146.266667pt;}
.y241{bottom:147.706667pt;}
.y1b2{bottom:148.154667pt;}
.y19c{bottom:148.186667pt;}
.yeb{bottom:148.346667pt;}
.y205{bottom:149.146667pt;}
.y16d{bottom:149.786667pt;}
.yc8{bottom:150.906667pt;}
.y118{bottom:151.866667pt;}
.y18f{bottom:152.986667pt;}
.y1da{bottom:157.626667pt;}
.yfb{bottom:159.226667pt;}
.y215{bottom:160.666667pt;}
.y146{bottom:161.306667pt;}
.y97{bottom:162.746667pt;}
.y4f{bottom:163.866667pt;}
.y204{bottom:164.666667pt;}
.y1b1{bottom:166.074667pt;}
.y19b{bottom:166.106667pt;}
.yc7{bottom:166.426667pt;}
.y18e{bottom:168.506667pt;}
.y240{bottom:169.466667pt;}
.yea{bottom:171.546667pt;}
.y117{bottom:172.026667pt;}
.y1d9{bottom:173.146667pt;}
.y1a{bottom:175.052000pt;}
.y145{bottom:176.826667pt;}
.y96{bottom:178.266667pt;}
.y203{bottom:180.186667pt;}
.yc6{bottom:181.946667pt;}
.y4e{bottom:183.866667pt;}
.y214{bottom:184.026667pt;}
.y1b0{bottom:184.154667pt;}
.y18d{bottom:184.186667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1d8{bottom:188.666667pt;}
.y23f{bottom:191.066667pt;}
.y116{bottom:192.186667pt;}
.y144{bottom:192.346667pt;}
.y95{bottom:193.946667pt;}
.ye9{bottom:194.906667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y213{bottom:199.546667pt;}
.y18c{bottom:199.706667pt;}
.y4d{bottom:204.026667pt;}
.y1d7{bottom:204.346667pt;}
.y23e{bottom:204.986667pt;}
.yc5{bottom:205.306667pt;}
.y202{bottom:205.466667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y94{bottom:209.466667pt;}
.y115{bottom:212.346667pt;}
.y18b{bottom:215.226667pt;}
.y143{bottom:215.706667pt;}
.y16c{bottom:217.626667pt;}
.ye8{bottom:218.266667pt;}
.y1d6{bottom:219.866667pt;}
.yc4{bottom:220.986667pt;}
.y93{bottom:225.146667pt;}
.y23d{bottom:226.586667pt;}
.y201{bottom:227.546667pt;}
.y18a{bottom:230.746667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y142{bottom:231.226667pt;}
.y4c{bottom:231.546667pt;}
.y114{bottom:232.506667pt;}
.ye7{bottom:233.946667pt;}
.yc3{bottom:236.506667pt;}
.y16b{bottom:239.066667pt;}
.y92{bottom:240.666667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1d5{bottom:243.226667pt;}
.y212{bottom:246.266667pt;}
.y141{bottom:246.746667pt;}
.y23c{bottom:248.186667pt;}
.ye6{bottom:249.466667pt;}
.y200{bottom:250.266667pt;}
.yc2{bottom:252.026667pt;}
.y113{bottom:252.666667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y189{bottom:254.266667pt;}
.y91{bottom:256.186667pt;}
.y16a{bottom:256.666667pt;}
.y1d4{bottom:258.746667pt;}
.y4b{bottom:262.266667pt;}
.ye5{bottom:264.986667pt;}
.y211{bottom:269.626667pt;}
.y188{bottom:269.786667pt;}
.y140{bottom:270.266667pt;}
.y90{bottom:271.866667pt;}
.y112{bottom:272.826667pt;}
.y169{bottom:273.146667pt;}
.y1d3{bottom:274.426667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y23b{bottom:276.346667pt;}
.yc1{bottom:277.306667pt;}
.y4a{bottom:279.066667pt;}
.ye4{bottom:280.666667pt;}
.y210{bottom:285.146667pt;}
.y187{bottom:285.306667pt;}
.y13f{bottom:285.786667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y168{bottom:287.066667pt;}
.y8f{bottom:287.386667pt;}
.y1d2{bottom:289.946667pt;}
.y111{bottom:292.986667pt;}
.y1ff{bottom:294.906667pt;}
.ye3{bottom:296.186667pt;}
.y162{bottom:297.946667pt;}
.y49{bottom:300.706667pt;}
.y20f{bottom:300.866667pt;}
.y186{bottom:301.026667pt;}
.y13e{bottom:301.346667pt;}
.y1d1{bottom:305.506667pt;}
.y11{bottom:309.452000pt;}
.ye2{bottom:311.906667pt;}
.y23a{bottom:312.066667pt;}
.y8e{bottom:312.546667pt;}
.y110{bottom:313.346667pt;}
.y20e{bottom:316.386667pt;}
.y185{bottom:316.546667pt;}
.yc0{bottom:317.026667pt;}
.y1a8{bottom:317.346667pt;}
.y1fe{bottom:319.586667pt;}
.y1d0{bottom:321.186667pt;}
.y48{bottom:322.306667pt;}
.ye1{bottom:327.426667pt;}
.y184{bottom:332.226667pt;}
.ybf{bottom:332.546667pt;}
.y10f{bottom:333.506667pt;}
.y239{bottom:333.666667pt;}
.y1cf{bottom:336.706667pt;}
.y20d{bottom:341.666667pt;}
.ye0{bottom:342.946667pt;}
.y8d{bottom:343.586667pt;}
.y10{bottom:343.809333pt;}
.y1fd{bottom:344.226667pt;}
.y47{bottom:346.626667pt;}
.y183{bottom:347.746667pt;}
.ybe{bottom:348.226667pt;}
.y10e{bottom:354.946667pt;}
.y238{bottom:355.266667pt;}
.y13d{bottom:355.906667pt;}
.y1ce{bottom:360.066667pt;}
.yf{bottom:362.706666pt;}
.y182{bottom:363.266667pt;}
.ybd{bottom:363.746667pt;}
.ydf{bottom:368.226667pt;}
.y1fc{bottom:368.866667pt;}
.y237{bottom:369.346667pt;}
.y10d{bottom:370.466667pt;}
.y13c{bottom:371.426667pt;}
.y46{bottom:372.706667pt;}
.y1cd{bottom:375.586667pt;}
.y15f{bottom:377.826667pt;}
.y127{bottom:378.146667pt;}
.ybc{bottom:379.266667pt;}
.y8c{bottom:379.426667pt;}
.y10c{bottom:386.146667pt;}
.y181{bottom:386.626667pt;}
.y13b{bottom:387.106667pt;}
.yde{bottom:389.026667pt;}
.y236{bottom:390.946667pt;}
.y1cc{bottom:391.266667pt;}
.y1fb{bottom:393.506667pt;}
.y45{bottom:394.306667pt;}
.ybb{bottom:394.786667pt;}
.y10b{bottom:401.666667pt;}
.y13a{bottom:402.626667pt;}
.y235{bottom:405.026667pt;}
.y8b{bottom:406.626667pt;}
.y1cb{bottom:406.786667pt;}
.y180{bottom:409.026667pt;}
.ydd{bottom:410.466667pt;}
.y126{bottom:410.946667pt;}
.y44{bottom:415.906667pt;}
.y10a{bottom:417.346667pt;}
.yba{bottom:418.146667pt;}
.y1f9{bottom:419.266667pt;}
.y15e{bottom:421.506667pt;}
.y1ca{bottom:422.466667pt;}
.y17f{bottom:424.386667pt;}
.ydc{bottom:426.146667pt;}
.y125{bottom:426.626667pt;}
.y8a{bottom:430.786667pt;}
.ye{bottom:430.990669pt;}
.y109{bottom:432.866667pt;}
.y139{bottom:433.666667pt;}
.yb9{bottom:433.826667pt;}
.y43{bottom:437.506667pt;}
.y1c9{bottom:437.986667pt;}
.y17e{bottom:439.746667pt;}
.y234{bottom:440.546667pt;}
.ydb{bottom:441.666667pt;}
.y124{bottom:442.146667pt;}
.y1f7{bottom:443.906667pt;}
.yd{bottom:446.990669pt;}
.yb8{bottom:449.346667pt;}
.yfa{bottom:451.426667pt;}
.y17d{bottom:455.106667pt;}
.y108{bottom:455.426667pt;}
.yda{bottom:457.186667pt;}
.y123{bottom:457.826667pt;}
.y138{bottom:458.946667pt;}
.y89{bottom:459.266667pt;}
.y1c8{bottom:461.346667pt;}
.y42{bottom:461.826667pt;}
.y233{bottom:462.146667pt;}
.yc{bottom:462.990669pt;}
.yb7{bottom:465.026667pt;}
.yf9{bottom:468.066667pt;}
.yd9{bottom:472.866667pt;}
.y107{bottom:473.026667pt;}
.y122{bottom:473.346667pt;}
.y17c{bottom:475.746667pt;}
.y232{bottom:476.226667pt;}
.y1c7{bottom:476.866667pt;}
.yb{bottom:478.990666pt;}
.y88{bottom:479.266667pt;}
.yb6{bottom:480.546667pt;}
.y137{bottom:482.946667pt;}
.yf8{bottom:484.226667pt;}
.y106{bottom:486.946667pt;}
.y41{bottom:487.906667pt;}
.yd8{bottom:488.386667pt;}
.y121{bottom:488.866667pt;}
.y1c6{bottom:492.386667pt;}
.y1f5{bottom:493.186667pt;}
.ya{bottom:494.990666pt;}
.yb5{bottom:496.066667pt;}
.y105{bottom:497.026667pt;}
.y17b{bottom:497.346667pt;}
.y231{bottom:497.826667pt;}
.y87{bottom:499.266667pt;}
.yf7{bottom:499.906667pt;}
.y15c{bottom:501.186667pt;}
.yd7{bottom:503.906667pt;}
.y136{bottom:504.226667pt;}
.y120{bottom:504.386667pt;}
.y40{bottom:509.506667pt;}
.yb4{bottom:511.746667pt;}
.y230{bottom:511.906667pt;}
.y17a{bottom:512.866667pt;}
.yf6{bottom:515.426667pt;}
.y1c5{bottom:517.666667pt;}
.y1f3{bottom:517.986667pt;}
.y86{bottom:519.266667pt;}
.y20c{bottom:519.426667pt;}
.y135{bottom:521.346667pt;}
.y11f{bottom:526.946667pt;}
.yb3{bottom:527.266667pt;}
.yf5{bottom:530.946667pt;}
.y3f{bottom:531.106667pt;}
.y134{bottom:533.186667pt;}
.y22f{bottom:533.506667pt;}
.y20b{bottom:535.106667pt;}
.y179{bottom:536.226667pt;}
.y85{bottom:539.293333pt;}
.y1c4{bottom:540.733333pt;}
.yd6{bottom:542.973333pt;}
.y11e{bottom:544.093333pt;}
.yb2{bottom:550.653333pt;}
.y178{bottom:551.773333pt;}
.y3e{bottom:552.733333pt;}
.yf4{bottom:553.693333pt;}
.y22e{bottom:555.133333pt;}
.y1c3{bottom:557.213333pt;}
.y11d{bottom:558.013333pt;}
.yd5{bottom:558.493333pt;}
.y84{bottom:559.293333pt;}
.y1f1{bottom:560.573333pt;}
.y15a{bottom:562.973333pt;}
.yb1{bottom:566.173333pt;}
.y177{bottom:567.293333pt;}
.y11c{bottom:568.093333pt;}
.y22d{bottom:569.213333pt;}
.y1c2{bottom:571.133333pt;}
.yf3{bottom:571.293333pt;}
.y9{bottom:573.786667pt;}
.yd4{bottom:574.013333pt;}
.y3d{bottom:577.053333pt;}
.y83{bottom:579.293333pt;}
.yb0{bottom:581.853333pt;}
.y1c0{bottom:582.173333pt;}
.y1ef{bottom:585.213333pt;}
.yf2{bottom:586.013333pt;}
.yd3{bottom:589.693333pt;}
.y176{bottom:590.653333pt;}
.y22c{bottom:590.813333pt;}
.y8{bottom:592.685334pt;}
.yaf{bottom:597.373333pt;}
.y82{bottom:599.293333pt;}
.yf1{bottom:602.173333pt;}
.y3c{bottom:603.133333pt;}
.y22b{bottom:604.893333pt;}
.yd2{bottom:605.213333pt;}
.y175{bottom:606.173333pt;}
.yae{bottom:613.053333pt;}
.y81{bottom:619.293333pt;}
.yd1{bottom:620.733333pt;}
.y3b{bottom:624.733333pt;}
.y174{bottom:625.853333pt;}
.y22a{bottom:626.493333pt;}
.yad{bottom:628.573333pt;}
.y80{bottom:639.293333pt;}
.yac{bottom:644.093333pt;}
.y7{bottom:645.598667pt;}
.y1ec{bottom:646.013333pt;}
.y3a{bottom:646.333333pt;}
.y229{bottom:648.093333pt;}
.y20a{bottom:651.933333pt;}
.y196{bottom:655.773333pt;}
.y173{bottom:658.813333pt;}
.y7f{bottom:659.293333pt;}
.y228{bottom:662.173333pt;}
.yab{bottom:667.453333pt;}
.y39{bottom:667.933333pt;}
.y4{bottom:668.977329pt;}
.y1eb{bottom:670.653333pt;}
.y227{bottom:676.093333pt;}
.y172{bottom:678.493333pt;}
.y7e{bottom:679.453333pt;}
.yaa{bottom:682.973333pt;}
.y252{bottom:684.413333pt;}
.y38{bottom:692.253333pt;}
.y226{bottom:697.693333pt;}
.ya9{bottom:698.653333pt;}
.y195{bottom:704.573333pt;}
.y251{bottom:705.373333pt;}
.y7d{bottom:708.733333pt;}
.y225{bottom:711.773333pt;}
.y37{bottom:713.693333pt;}
.ya8{bottom:714.173333pt;}
.y1bd{bottom:714.813333pt;}
.y250{bottom:719.453333pt;}
.y194{bottom:721.373333pt;}
.y14f{bottom:723.453333pt;}
.y224{bottom:725.853333pt;}
.yd0{bottom:729.693333pt;}
.ya7{bottom:729.853333pt;}
.y36{bottom:730.013333pt;}
.y1e8{bottom:731.293333pt;}
.y24f{bottom:733.373333pt;}
.y193{bottom:737.533333pt;}
.y223{bottom:739.933333pt;}
.y7c{bottom:740.893333pt;}
.ya6{bottom:745.373333pt;}
.ycf{bottom:753.053333pt;}
.y24e{bottom:755.133333pt;}
.y1e5{bottom:756.893333pt;}
.y7b{bottom:758.973333pt;}
.y35{bottom:759.293333pt;}
.ya5{bottom:760.893333pt;}
.y222{bottom:761.533333pt;}
.yce{bottom:768.733333pt;}
.y221{bottom:775.493333pt;}
.y171{bottom:776.453333pt;}
.y24d{bottom:776.773333pt;}
.y3{bottom:781.661334pt;}
.y133{bottom:782.213333pt;}
.ya4{bottom:784.293333pt;}
.y7a{bottom:788.773333pt;}
.y14e{bottom:790.373333pt;}
.y24c{bottom:790.693333pt;}
.y220{bottom:797.093333pt;}
.y132{bottom:798.853333pt;}
.ya3{bottom:799.973333pt;}
.y34{bottom:800.133333pt;}
.y104{bottom:803.493333pt;}
.y14d{bottom:807.173333pt;}
.y1e1{bottom:807.333333pt;}
.y79{bottom:808.773333pt;}
.y21f{bottom:811.173333pt;}
.y24b{bottom:812.293333pt;}
.y131{bottom:815.173333pt;}
.ya2{bottom:815.493333pt;}
.y103{bottom:821.413333pt;}
.y14c{bottom:823.333333pt;}
.y24a{bottom:826.373333pt;}
.y78{bottom:828.773333pt;}
.y1ba{bottom:829.413333pt;}
.y130{bottom:830.693333pt;}
.y33{bottom:830.853333pt;}
.ya1{bottom:831.013333pt;}
.y21e{bottom:832.773333pt;}
.y102{bottom:838.213333pt;}
.y14b{bottom:838.853333pt;}
.y2{bottom:840.112001pt;}
.y12f{bottom:846.213333pt;}
.y209{bottom:846.533333pt;}
.ya0{bottom:846.693333pt;}
.y21d{bottom:846.853333pt;}
.y249{bottom:847.973333pt;}
.y77{bottom:848.773333pt;}
.y101{bottom:854.373333pt;}
.y1{bottom:859.312000pt;}
.y12e{bottom:861.893333pt;}
.y248{bottom:862.053333pt;}
.y9f{bottom:862.213333pt;}
.y21c{bottom:868.453333pt;}
.y76{bottom:868.773333pt;}
.y100{bottom:870.053333pt;}
.y12d{bottom:877.413333pt;}
.ycd{bottom:877.733333pt;}
.y9e{bottom:877.893333pt;}
.y32{bottom:879.973333pt;}
.y1e0{bottom:881.893333pt;}
.y247{bottom:883.653333pt;}
.yff{bottom:885.573333pt;}
.y75{bottom:888.773333pt;}
.y21b{bottom:890.053333pt;}
.y12c{bottom:893.093333pt;}
.y9d{bottom:893.413333pt;}
.yf0{bottom:894.373333pt;}
.y246{bottom:897.733333pt;}
.y31{bottom:898.213333pt;}
.y1df{bottom:900.453333pt;}
.ycc{bottom:901.093333pt;}
.y12b{bottom:908.613333pt;}
.y74{bottom:908.773333pt;}
.y14a{bottom:908.933333pt;}
.y21a{bottom:911.653333pt;}
.yef{bottom:912.293333pt;}
.y30{bottom:912.933333pt;}
.y9c{bottom:916.773333pt;}
.y1de{bottom:916.933333pt;}
.y2f{bottom:927.493333pt;}
.y73{bottom:928.773333pt;}
.yee{bottom:930.373333pt;}
.y12a{bottom:931.173333pt;}
.y9b{bottom:932.293333pt;}
.y245{bottom:933.253333pt;}
.y219{bottom:933.413333pt;}
.y2e{bottom:942.053333pt;}
.y71{bottom:944.613333pt;}
.y70{bottom:945.733333pt;}
.y6f{bottom:947.013333pt;}
.y6e{bottom:948.133333pt;}
.y6d{bottom:949.253333pt;}
.y6c{bottom:950.533333pt;}
.y6b{bottom:951.653333pt;}
.y6a{bottom:952.933333pt;}
.y69{bottom:954.053333pt;}
.y68{bottom:955.333333pt;}
.y67{bottom:956.453333pt;}
.y2d{bottom:956.613333pt;}
.y66{bottom:957.733333pt;}
.y65{bottom:962.213333pt;}
.y2c{bottom:971.333333pt;}
.y64{bottom:978.213333pt;}
.y2b{bottom:985.893333pt;}
.y63{bottom:995.333333pt;}
.y2a{bottom:1000.453333pt;}
.y29{bottom:1015.040000pt;}
.y62{bottom:1017.440000pt;}
.y28{bottom:1029.760000pt;}
.y61{bottom:1039.520000pt;}
.y50{bottom:1044.800000pt;}
.y60{bottom:1058.400000pt;}
.y5f{bottom:1059.520000pt;}
.y5e{bottom:1060.800000pt;}
.y5d{bottom:1061.920000pt;}
.y5c{bottom:1063.200000pt;}
.y5b{bottom:1064.320000pt;}
.y5a{bottom:1065.600000pt;}
.y59{bottom:1066.720000pt;}
.y58{bottom:1068.000000pt;}
.y57{bottom:1069.120000pt;}
.y56{bottom:1070.400000pt;}
.y55{bottom:1071.520000pt;}
.y54{bottom:1072.800000pt;}
.y53{bottom:1073.920000pt;}
.h35{height:24.640000pt;}
.h3e{height:24.672000pt;}
.h3b{height:24.800000pt;}
.h15{height:25.062500pt;}
.h13{height:25.536000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.he{height:30.144000pt;}
.h19{height:33.583750pt;}
.h2b{height:35.400027pt;}
.h18{height:35.523840pt;}
.h1e{height:36.726562pt;}
.hd{height:37.593750pt;}
.h17{height:37.920000pt;}
.h1b{height:39.840000pt;}
.hf{height:40.392960pt;}
.h7{height:40.853333pt;}
.h1a{height:41.603750pt;}
.h3a{height:42.592000pt;}
.h40{height:42.640911pt;}
.h2a{height:42.775312pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h28{height:43.680000pt;}
.h22{height:44.073883pt;}
.h10{height:44.089600pt;}
.hb{height:45.216000pt;}
.h1f{height:45.936000pt;}
.h1d{height:46.115000pt;}
.h2{height:49.024000pt;}
.h3c{height:49.280000pt;}
.hc{height:49.336436pt;}
.h33{height:49.472000pt;}
.h16{height:50.039040pt;}
.h3f{height:51.845120pt;}
.h21{height:54.598989pt;}
.h14{height:60.288000pt;}
.h20{height:60.519362pt;}
.h36{height:60.640000pt;}
.h38{height:60.800000pt;}
.h26{height:61.760000pt;}
.h23{height:61.792000pt;}
.h25{height:65.781915pt;}
.h1c{height:66.625000pt;}
.h12{height:67.925760pt;}
.h32{height:69.440000pt;}
.h5{height:69.450667pt;}
.h3d{height:73.920000pt;}
.h34{height:75.072000pt;}
.h27{height:79.680000pt;}
.h29{height:79.872000pt;}
.h11{height:81.459840pt;}
.h37{height:85.280000pt;}
.h39{height:85.440000pt;}
.h24{height:97.760000pt;}
.h4{height:105.826671pt;}
.h30{height:114.592000pt;}
.h2f{height:114.720000pt;}
.h31{height:132.640000pt;}
.h2d{height:150.720000pt;}
.h2c{height:186.586667pt;}
.h2e{height:204.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w8{width:65.952000pt;}
.wa{width:75.392000pt;}
.wb{width:78.560000pt;}
.w13{width:85.632000pt;}
.w14{width:86.432000pt;}
.w12{width:91.360000pt;}
.w9{width:91.840000pt;}
.wc{width:93.952000pt;}
.w11{width:96.192000pt;}
.wf{width:110.752000pt;}
.w7{width:118.752000pt;}
.w6{width:127.200000pt;}
.we{width:132.032000pt;}
.wd{width:139.680000pt;}
.w10{width:177.146667pt;}
.w5{width:534.173333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w3{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.280000pt;}
.x5e{left:7.520000pt;}
.x5f{left:10.720000pt;}
.x4c{left:14.720000pt;}
.x48{left:16.960000pt;}
.x5a{left:20.800000pt;}
.x53{left:22.080000pt;}
.x56{left:23.840000pt;}
.x77{left:25.000000pt;}
.x61{left:27.040000pt;}
.x81{left:28.360000pt;}
.x66{left:29.440000pt;}
.x6b{left:31.200000pt;}
.x4d{left:32.480000pt;}
.x4e{left:35.200000pt;}
.x46{left:36.960000pt;}
.x57{left:38.880000pt;}
.x54{left:39.840000pt;}
.x58{left:41.600000pt;}
.x50{left:42.880000pt;}
.x64{left:43.866667pt;}
.x7f{left:45.120000pt;}
.x5b{left:46.240000pt;}
.x80{left:47.840000pt;}
.x67{left:50.880000pt;}
.x60{left:52.640000pt;}
.x85{left:54.560000pt;}
.x49{left:55.560000pt;}
.x6a{left:58.400000pt;}
.x5c{left:59.840000pt;}
.x1d{left:61.434667pt;}
.x63{left:63.386667pt;}
.x4a{left:65.000000pt;}
.x68{left:65.920000pt;}
.x69{left:67.040000pt;}
.x5d{left:69.274667pt;}
.x83{left:71.066667pt;}
.xb{left:72.031988pt;}
.x1e{left:73.914667pt;}
.x87{left:75.560000pt;}
.x51{left:76.480000pt;}
.x1b{left:78.112000pt;}
.xa{left:79.391988pt;}
.x5{left:81.151988pt;}
.x9{left:83.071988pt;}
.x6c{left:85.631988pt;}
.x65{left:87.194667pt;}
.x1{left:90.706667pt;}
.x2e{left:92.031988pt;}
.x2{left:94.486667pt;}
.x2f{left:95.711988pt;}
.x43{left:96.831988pt;}
.x35{left:98.111988pt;}
.x24{left:99.231988pt;}
.x62{left:102.074667pt;}
.x79{left:104.191988pt;}
.x31{left:110.431988pt;}
.x39{left:111.551988pt;}
.x19{left:117.151988pt;}
.x1a{left:119.231988pt;}
.x7c{left:120.360000pt;}
.x44{left:121.951988pt;}
.x6e{left:124.991988pt;}
.x7a{left:128.671988pt;}
.x6{left:137.306655pt;}
.x8b{left:139.866655pt;}
.x86{left:148.520000pt;}
.x74{left:157.306655pt;}
.x84{left:159.240000pt;}
.x1f{left:162.594667pt;}
.x73{left:165.306655pt;}
.x89{left:168.026655pt;}
.x88{left:173.640000pt;}
.x20{left:175.234667pt;}
.x3d{left:177.146655pt;}
.x4{left:180.874667pt;}
.x40{left:181.946655pt;}
.x47{left:199.226667pt;}
.x41{left:201.466655pt;}
.x45{left:210.746655pt;}
.x76{left:211.706667pt;}
.x27{left:220.026655pt;}
.x34{left:229.666655pt;}
.x23{left:234.946655pt;}
.x32{left:250.786655pt;}
.x38{left:256.386655pt;}
.x28{left:276.546655pt;}
.x75{left:282.946655pt;}
.x29{left:284.706655pt;}
.x3f{left:286.786655pt;}
.x7b{left:297.346655pt;}
.x36{left:304.706655pt;}
.x2a{left:314.466655pt;}
.x4b{left:317.986667pt;}
.x2b{left:322.626655pt;}
.x7d{left:334.946667pt;}
.x3c{left:337.186655pt;}
.x78{left:343.746667pt;}
.x6d{left:356.706655pt;}
.x3a{left:358.946655pt;}
.x17{left:375.933321pt;}
.x4f{left:383.933333pt;}
.x30{left:397.053321pt;}
.x8a{left:401.533321pt;}
.x3{left:404.408000pt;}
.x2d{left:406.973321pt;}
.x72{left:426.973321pt;}
.x7e{left:431.133333pt;}
.x11{left:440.573321pt;}
.x21{left:445.541333pt;}
.xc{left:451.133321pt;}
.x6f{left:455.613321pt;}
.x22{left:458.821333pt;}
.x52{left:475.613333pt;}
.xe{left:480.413322pt;}
.xd{left:483.133322pt;}
.x12{left:484.573322pt;}
.x16{left:508.093322pt;}
.x14{left:514.493322pt;}
.x2c{left:523.333322pt;}
.x55{left:551.013333pt;}
.x13{left:575.973321pt;}
.x18{left:586.373321pt;}
.xf{left:593.413322pt;}
.x15{left:606.213322pt;}
.x82{left:608.133333pt;}
.x59{left:629.573333pt;}
.x3e{left:663.813321pt;}
.x42{left:667.813321pt;}
.x33{left:671.333322pt;}
.x25{left:682.559988pt;}
.x37{left:688.479988pt;}
.x3b{left:697.919988pt;}
.x71{left:703.999988pt;}
.x7{left:710.399988pt;}
.x8{left:713.919988pt;}
.x26{left:716.639988pt;}
.x70{left:720.639988pt;}
.x10{left:723.519988pt;}
}




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