
    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_6addf0cef4a93361d8c73954.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202862;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_cfaa000203846562755de6dc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_97f4109b246ea3d8e2c882ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.198154;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_c3ee15cb1e1490f1c799bd61.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6e4a3a843acf3809abbd7aa2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.161000;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_e5aac4796e05b3fd3718216c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_34eefa5ea986147c9114f6de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.167000;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_77de6e4e20735491c0f95165.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_e3f9e445a7e5b97da20887ef.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fa5fef1922c8b73a7c2c3884.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.167000;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_c7a6261069219f6921f4168d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_ba4b254917daa5c1563f2f4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937500;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_55ca42b850aae2663a9379fe.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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_9b3c19b17b753d498618b2f0.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;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_afeb34f073829b44972d2f5e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172000;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_888341dd21c5f0e7d966cf83.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.202148;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_cbc3d45d4cdd8726ab0e9835.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.084473;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_3c109a6927353af6a4bc7e0f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.240000;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_7dfb0b20a82b1f7d1b0a285c.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.055664;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_727d7149d0125b6b2c9e03b2.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.240000;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_5eee18674989f3ab1721a875.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_bd0489cbd6eebabb5756f2b1.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.196321;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-102.780000px;}
.v13{vertical-align:-17.280000px;}
.vf{vertical-align:-15.696000px;}
.v15{vertical-align:-14.400000px;}
.v10{vertical-align:-8.640000px;}
.v3{vertical-align:-7.200000px;}
.vd{vertical-align:-4.896000px;}
.v8{vertical-align:-3.480000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.740000px;}
.v12{vertical-align:3.744000px;}
.va{vertical-align:6.192000px;}
.vb{vertical-align:9.216000px;}
.v11{vertical-align:10.224000px;}
.v4{vertical-align:12.960000px;}
.v5{vertical-align:21.600000px;}
.v2{vertical-align:25.320000px;}
.v1{vertical-align:26.640000px;}
.v7{vertical-align:39.744000px;}
.v14{vertical-align:54.864000px;}
.v6{vertical-align:64.944000px;}
.vc{vertical-align:92.340000px;}
.ls20{letter-spacing:-0.439200px;}
.lsa{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.318000px;}
.ls18{letter-spacing:-0.313800px;}
.ls36{letter-spacing:-0.306000px;}
.ls3b{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.187800px;}
.lsb{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.166800px;}
.ls40{letter-spacing:-0.154200px;}
.ls41{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.130800px;}
.ls22{letter-spacing:-0.126600px;}
.ls2c{letter-spacing:-0.109200px;}
.ls27{letter-spacing:-0.107400px;}
.ls28{letter-spacing:-0.096000px;}
.ls26{letter-spacing:-0.090000px;}
.ls2b{letter-spacing:-0.036000px;}
.ls1{letter-spacing:-0.034560px;}
.ls37{letter-spacing:-0.020160px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.022320px;}
.ls35{letter-spacing:0.033720px;}
.ls3f{letter-spacing:0.036120px;}
.ls30{letter-spacing:0.072000px;}
.ls48{letter-spacing:0.100800px;}
.ls4f{letter-spacing:0.121200px;}
.ls1a{letter-spacing:0.123600px;}
.ls7{letter-spacing:0.124800px;}
.ls12{letter-spacing:0.125400px;}
.ls2f{letter-spacing:0.127152px;}
.ls33{letter-spacing:0.127200px;}
.ls4a{letter-spacing:0.132480px;}
.ls31{letter-spacing:0.136200px;}
.ls2d{letter-spacing:0.142800px;}
.ls24{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.161400px;}
.ls16{letter-spacing:0.166800px;}
.ls9{letter-spacing:0.174000px;}
.ls4d{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.185760px;}
.ls2{letter-spacing:0.190080px;}
.ls5{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.210000px;}
.ls13{letter-spacing:0.210240px;}
.ls1c{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.326880px;}
.ls43{letter-spacing:0.360000px;}
.ls4c{letter-spacing:1.218000px;}
.ls14{letter-spacing:1.728000px;}
.ls10{letter-spacing:6.768000px;}
.ls46{letter-spacing:22.151520px;}
.ls4e{letter-spacing:27.240480px;}
.ls3c{letter-spacing:33.876000px;}
.ls25{letter-spacing:38.109600px;}
.ls23{letter-spacing:38.160000px;}
.ls3d{letter-spacing:38.829600px;}
.lse{letter-spacing:38.880000px;}
.ls1e{letter-spacing:41.853600px;}
.ls1d{letter-spacing:41.904000px;}
.ls15{letter-spacing:43.113600px;}
.lsf{letter-spacing:43.164000px;}
.ls34{letter-spacing:48.960000px;}
.ls3{letter-spacing:53.375040px;}
.ls6{letter-spacing:55.287648px;}
.ls4{letter-spacing:55.353600px;}
.ls32{letter-spacing:56.109600px;}
.ls21{letter-spacing:56.160000px;}
.lsd{letter-spacing:58.125600px;}
.lsc{letter-spacing:58.176000px;}
.ls49{letter-spacing:61.725600px;}
.ls47{letter-spacing:61.776000px;}
.ls39{letter-spacing:90.129600px;}
.ls38{letter-spacing:90.180000px;}
.ls3a{letter-spacing:90.324000px;}
.ls45{letter-spacing:105.825600px;}
.ls44{letter-spacing:105.876000px;}
.ls3e{letter-spacing:365.484000px;}
.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;}
}
.ws3f{word-spacing:-84.240000px;}
.ws43{word-spacing:-72.000000px;}
.ws41{word-spacing:-71.856000px;}
.ws40{word-spacing:-61.200000px;}
.ws1a{word-spacing:-59.904000px;}
.ws3e{word-spacing:-59.436720px;}
.ws45{word-spacing:-54.384000px;}
.ws44{word-spacing:-52.560000px;}
.ws42{word-spacing:-49.896000px;}
.ws2f{word-spacing:-32.576544px;}
.ws7{word-spacing:-28.674000px;}
.ws8{word-spacing:-28.633344px;}
.wsa{word-spacing:-28.508544px;}
.ws6{word-spacing:-28.476000px;}
.ws5{word-spacing:-27.499680px;}
.ws55{word-spacing:-27.174240px;}
.ws24{word-spacing:-24.408000px;}
.ws3c{word-spacing:-23.250240px;}
.wsc{word-spacing:-21.641760px;}
.ws3b{word-spacing:-20.372544px;}
.ws3a{word-spacing:-20.340000px;}
.ws39{word-spacing:-20.070000px;}
.ws37{word-spacing:-19.070784px;}
.ws1f{word-spacing:-19.038240px;}
.ws9{word-spacing:-18.419904px;}
.ws4e{word-spacing:-18.036000px;}
.ws4a{word-spacing:-18.000000px;}
.ws2c{word-spacing:-16.984200px;}
.ws10{word-spacing:-16.848000px;}
.ws27{word-spacing:-16.740600px;}
.ws2b{word-spacing:-16.447344px;}
.ws1c{word-spacing:-16.304544px;}
.ws11{word-spacing:-16.272000px;}
.ws53{word-spacing:-15.071040px;}
.wsf{word-spacing:-14.970240px;}
.ws30{word-spacing:-14.556000px;}
.ws25{word-spacing:-14.544000px;}
.ws3{word-spacing:-14.509440px;}
.ws26{word-spacing:-14.428800px;}
.ws3d{word-spacing:-14.274600px;}
.ws1b{word-spacing:-13.505760px;}
.ws1d{word-spacing:-12.672000px;}
.wsb{word-spacing:-12.236544px;}
.wsd{word-spacing:-12.204000px;}
.ws2d{word-spacing:-11.952000px;}
.ws31{word-spacing:-11.064960px;}
.ws46{word-spacing:-10.902240px;}
.ws4{word-spacing:-10.251360px;}
.ws29{word-spacing:-8.848200px;}
.ws19{word-spacing:-8.562000px;}
.ws12{word-spacing:-8.518800px;}
.ws16{word-spacing:-8.477400px;}
.ws18{word-spacing:-8.475600px;}
.ws14{word-spacing:-8.352000px;}
.ws13{word-spacing:-8.185200px;}
.ws15{word-spacing:-8.038200px;}
.ws21{word-spacing:-6.834240px;}
.ws17{word-spacing:-5.485200px;}
.ws1{word-spacing:-2.662080px;}
.ws32{word-spacing:-1.990080px;}
.ws33{word-spacing:-1.555200px;}
.ws59{word-spacing:-1.019760px;}
.ws36{word-spacing:-0.765624px;}
.ws35{word-spacing:-0.607680px;}
.ws0{word-spacing:-0.483840px;}
.ws28{word-spacing:-0.395280px;}
.ws56{word-spacing:-0.355680px;}
.ws34{word-spacing:-0.282528px;}
.ws58{word-spacing:-0.197280px;}
.ws57{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws52{word-spacing:2.249760px;}
.ws20{word-spacing:4.622400px;}
.ws54{word-spacing:43.056000px;}
.ws22{word-spacing:147.823200px;}
.ws38{word-spacing:159.056880px;}
.ws50{word-spacing:234.093696px;}
.ws4b{word-spacing:234.168000px;}
.ws48{word-spacing:236.232000px;}
.ws4f{word-spacing:236.273424px;}
.ws4d{word-spacing:254.232000px;}
.ws49{word-spacing:270.888000px;}
.ws4c{word-spacing:282.492000px;}
.ws51{word-spacing:282.533040px;}
.wse{word-spacing:399.367680px;}
.ws47{word-spacing:464.208000px;}
.ws23{word-spacing:702.598800px;}
.ws2a{word-spacing:1201.188000px;}
.ws2e{word-spacing:2152.368000px;}
.ws1e{word-spacing:2861.129040px;}
._15{margin-left:-2542.596720px;}
._40{margin-left:-2503.494000px;}
._2b{margin-left:-8.964000px;}
._8{margin-left:-6.798960px;}
._12{margin-left:-5.544000px;}
._11{margin-left:-4.105728px;}
._4{margin-left:-2.535120px;}
._0{margin-left:-1.134000px;}
._1{width:1.134000px;}
._10{width:2.323440px;}
._b{width:3.559680px;}
._1d{width:4.586160px;}
._e{width:6.038640px;}
._f{width:7.233120px;}
._42{width:11.647200px;}
._3{width:13.873200px;}
._2{width:15.533520px;}
._26{width:20.714976px;}
._1e{width:22.356960px;}
._2c{width:26.352720px;}
._22{width:30.840000px;}
._31{width:33.387120px;}
._33{width:40.983120px;}
._36{width:50.472000px;}
._5{width:53.519664px;}
._38{width:55.191888px;}
._35{width:59.526000px;}
._6{width:73.368480px;}
._2a{width:102.312000px;}
._3a{width:107.571120px;}
._37{width:109.110000px;}
._2d{width:143.880000px;}
._39{width:166.494000px;}
._30{width:196.623312px;}
._34{width:199.740000px;}
._1f{width:209.759856px;}
._25{width:294.980880px;}
._29{width:324.819120px;}
._2f{width:326.145120px;}
._2e{width:336.330000px;}
._21{width:395.660880px;}
._3f{width:500.399760px;}
._7{width:567.075360px;}
._1c{width:874.509840px;}
._3e{width:956.429040px;}
._9{width:1078.689120px;}
._3b{width:1092.471360px;}
._16{width:1102.973040px;}
._13{width:1138.101360px;}
._32{width:1154.124480px;}
._1a{width:1193.537616px;}
._d{width:1203.580560px;}
._17{width:1267.946640px;}
._19{width:1277.571120px;}
._3c{width:1289.884080px;}
._14{width:1300.284480px;}
._18{width:1391.066640px;}
._a{width:1412.591520px;}
._23{width:1598.316000px;}
._41{width:1604.976000px;}
._28{width:1695.553440px;}
._27{width:1759.816080px;}
._1b{width:1965.455760px;}
._c{width:1973.716320px;}
._20{width:2017.604832px;}
._24{width:2148.693600px;}
._3d{width:3601.373040px;}
.fc11{color:rgb(101,10,101);}
.fc10{color:rgb(255,0,0);}
.fcf{color:rgb(0,176,80);}
.fcd{color:rgb(173,26,127);}
.fc0{color:rgb(83,83,83);}
.fc1{color:rgb(21,21,21);}
.fc2{color:rgb(167,167,167);}
.fc3{color:rgb(138,138,138);}
.fc7{color:rgb(0,0,0);}
.fc9{color:rgb(255,255,255);}
.fca{color:rgb(64,64,64);}
.fc12{color:rgb(125,154,124);}
.fc4{color:rgb(19,1,124);}
.fc6{color:rgb(212,0,9);}
.fc5{color:rgb(124,153,123);}
.fc8{color:rgb(211,10,17);}
.fce{color:rgb(0,0,255);}
.fcb{color:transparent;}
.fcc{color:rgb(192,0,0);}
.fs12{font-size:23.760000px;}
.fs19{font-size:28.080000px;}
.fs11{font-size:30.240000px;}
.fs1f{font-size:30.384000px;}
.fs18{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fs10{font-size:48.240000px;}
.fs1a{font-size:48.384000px;}
.fs21{font-size:48.960000px;}
.fs27{font-size:49.104000px;}
.fs2b{font-size:52.560000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs1e{font-size:56.160000px;}
.fs17{font-size:59.760000px;}
.fs1b{font-size:59.904000px;}
.fs2a{font-size:61.200000px;}
.fs1{font-size:63.360000px;}
.fs1d{font-size:63.504000px;}
.fs14{font-size:66.240000px;}
.fs15{font-size:66.384000px;}
.fs16{font-size:72.000000px;}
.fs1c{font-size:72.144000px;}
.fs2c{font-size:77.904000px;}
.fs3{font-size:81.360000px;}
.fs2{font-size:81.504000px;}
.fs13{font-size:84.240000px;}
.fs22{font-size:84.384000px;}
.fs29{font-size:90.000000px;}
.fs28{font-size:90.144000px;}
.fs9{font-size:95.760000px;}
.fs23{font-size:95.904000px;}
.fsd{font-size:100.800000px;}
.fse{font-size:100.944000px;}
.fsb{font-size:105.120000px;}
.fsa{font-size:108.000000px;}
.fs24{font-size:108.144000px;}
.fs20{font-size:120.240000px;}
.fs2d{font-size:120.384000px;}
.fs7{font-size:121.680000px;}
.fsc{font-size:126.000000px;}
.fsf{font-size:126.144000px;}
.fs5{font-size:135.504000px;}
.fs25{font-size:144.000000px;}
.fs26{font-size:144.144000px;}
.fs2f{font-size:192.240000px;}
.fs2e{font-size:192.384000px;}
.fs4{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y18{bottom:12.744000px;}
.y79{bottom:12.780000px;}
.y1ae{bottom:25.812000px;}
.y1b0{bottom:32.112000px;}
.yaa{bottom:35.676000px;}
.yad{bottom:37.980000px;}
.y31{bottom:38.340000px;}
.y8c{bottom:38.556000px;}
.yab{bottom:38.736000px;}
.y78{bottom:38.844000px;}
.y89{bottom:39.060000px;}
.ydb{bottom:41.220000px;}
.y1ad{bottom:42.012000px;}
.ybc{bottom:43.164000px;}
.y94{bottom:43.848000px;}
.y92{bottom:46.692000px;}
.yac{bottom:47.016000px;}
.y1af{bottom:49.392000px;}
.y6f{bottom:52.344000px;}
.y1a8{bottom:54.540000px;}
.y10a{bottom:55.728000px;}
.yae{bottom:56.628000px;}
.y115{bottom:58.212000px;}
.yc7{bottom:66.312000px;}
.ydc{bottom:66.672000px;}
.y81{bottom:67.248000px;}
.y3e{bottom:69.084000px;}
.y95{bottom:69.336000px;}
.y164{bottom:69.405000px;}
.y157{bottom:69.450000px;}
.ya4{bottom:69.624000px;}
.y102{bottom:69.732000px;}
.y98{bottom:69.984000px;}
.yba{bottom:70.272000px;}
.ycc{bottom:71.064000px;}
.yc8{bottom:71.460000px;}
.ycd{bottom:71.604000px;}
.y30{bottom:71.856000px;}
.y7e{bottom:72.216000px;}
.y1a1{bottom:72.756000px;}
.y183{bottom:73.224000px;}
.yfa{bottom:73.728000px;}
.y193{bottom:73.836000px;}
.y1d{bottom:74.376000px;}
.y1ac{bottom:74.448000px;}
.yfb{bottom:74.808000px;}
.y86{bottom:74.916000px;}
.yfc{bottom:75.204000px;}
.y91{bottom:75.492000px;}
.y155{bottom:75.600000px;}
.y185{bottom:76.068000px;}
.y149{bottom:76.932000px;}
.y19e{bottom:77.724000px;}
.y148{bottom:78.120000px;}
.ye9{bottom:81.576000px;}
.y3d{bottom:81.684000px;}
.y42{bottom:82.044000px;}
.y192{bottom:82.836000px;}
.yf2{bottom:86.004000px;}
.y141{bottom:86.976000px;}
.yef{bottom:87.156000px;}
.y13c{bottom:87.192000px;}
.yf0{bottom:87.480000px;}
.yf1{bottom:87.876000px;}
.y13e{bottom:88.956000px;}
.y16f{bottom:89.892000px;}
.y93{bottom:90.072000px;}
.y3{bottom:90.540000px;}
.y13f{bottom:90.612000px;}
.y9f{bottom:91.584000px;}
.y2f{bottom:91.656000px;}
.yd8{bottom:91.692000px;}
.y45{bottom:92.916000px;}
.y110{bottom:93.204000px;}
.y7d{bottom:93.492000px;}
.y172{bottom:94.140000px;}
.y119{bottom:95.976000px;}
.y41{bottom:96.264000px;}
.y88{bottom:98.748000px;}
.y3c{bottom:98.784000px;}
.y147{bottom:99.720000px;}
.y85{bottom:100.152000px;}
.y194{bottom:100.476000px;}
.y13b{bottom:101.232000px;}
.y182{bottom:105.984000px;}
.yfe{bottom:106.308000px;}
.y1ab{bottom:106.848000px;}
.y44{bottom:107.172000px;}
.ycf{bottom:108.828000px;}
.y18f{bottom:109.512000px;}
.y17{bottom:109.548000px;}
.yf3{bottom:109.584000px;}
.y40{bottom:110.700000px;}
.y19d{bottom:111.024000px;}
.y3b{bottom:111.384000px;}
.y140{bottom:112.716000px;}
.yeb{bottom:114.624000px;}
.y13d{bottom:114.732000px;}
.y16e{bottom:115.092000px;}
.yf7{bottom:115.560000px;}
.y9e{bottom:117.504000px;}
.y124{bottom:117.864000px;}
.y7c{bottom:118.692000px;}
.y196{bottom:120.960000px;}
.y43{bottom:121.572000px;}
.y5b{bottom:121.824000px;}
.y121{bottom:122.076000px;}
.y1aa{bottom:123.048000px;}
.y181{bottom:123.804000px;}
.y87{bottom:123.948000px;}
.yd0{bottom:124.236000px;}
.y139{bottom:124.416000px;}
.y3f{bottom:125.100000px;}
.y84{bottom:125.352000px;}
.y10f{bottom:125.604000px;}
.yde{bottom:125.856000px;}
.y2e{bottom:126.252000px;}
.ydd{bottom:127.080000px;}
.y5c{bottom:128.124000px;}
.y118{bottom:128.376000px;}
.y5{bottom:129.132000px;}
.y2{bottom:129.276000px;}
.y18e{bottom:131.112000px;}
.y14f{bottom:131.220000px;}
.y161{bottom:134.250000px;}
.y90{bottom:136.188000px;}
.y16{bottom:136.728000px;}
.y8f{bottom:137.196000px;}
.yea{bottom:137.664000px;}
.y151{bottom:137.916000px;}
.yfd{bottom:138.708000px;}
.y16d{bottom:140.292000px;}
.y4a{bottom:140.976000px;}
.y9d{bottom:143.424000px;}
.y154{bottom:144.720000px;}
.y5a{bottom:147.564000px;}
.y1{bottom:148.716000px;}
.y120{bottom:149.076000px;}
.y180{bottom:149.184000px;}
.ya7{bottom:150.090000px;}
.ye6{bottom:152.355000px;}
.y13a{bottom:152.715000px;}
.y170{bottom:154.875000px;}
.y160{bottom:155.850000px;}
.y105{bottom:156.600000px;}
.y10e{bottom:158.040000px;}
.y8a{bottom:159.630000px;}
.y8b{bottom:160.350000px;}
.y117{bottom:160.770000px;}
.y4{bottom:162.645000px;}
.y16c{bottom:165.495000px;}
.y49{bottom:165.630000px;}
.y7f{bottom:167.295000px;}
.y9c{bottom:169.380000px;}
.y123{bottom:170.535000px;}
.ya6{bottom:171.690000px;}
.y59{bottom:173.130000px;}
.y18d{bottom:174.315000px;}
.y17f{bottom:174.600000px;}
.y11f{bottom:176.070000px;}
.y5e{bottom:181.650000px;}
.y173{bottom:184.170000px;}
.y158{bottom:185.580000px;}
.y104{bottom:189.000000px;}
.yec{bottom:189.255000px;}
.y15{bottom:189.645000px;}
.y48{bottom:190.110000px;}
.y10d{bottom:190.440000px;}
.y5d{bottom:190.650000px;}
.y16b{bottom:190.695000px;}
.ya5{bottom:193.290000px;}
.ye3{bottom:194.010000px;}
.yb0{bottom:197.385000px;}
.y15d{bottom:199.050000px;}
.y58{bottom:199.770000px;}
.y17e{bottom:199.800000px;}
.y9b{bottom:202.680000px;}
.y11e{bottom:203.070000px;}
.y11a{bottom:205.485000px;}
.y29{bottom:205.635000px;}
.yf4{bottom:211.110000px;}
.y47{bottom:211.755000px;}
.y1a7{bottom:214.530000px;}
.yc5{bottom:216.330000px;}
.y166{bottom:217.980000px;}
.yc9{bottom:219.390000px;}
.y15b{bottom:220.650000px;}
.y103{bottom:221.400000px;}
.y10c{bottom:222.840000px;}
.y137{bottom:223.530000px;}
.y28{bottom:225.435000px;}
.y14{bottom:227.490000px;}
.y57{bottom:228.570000px;}
.y9a{bottom:228.600000px;}
.y11d{bottom:230.070000px;}
.y184{bottom:231.510000px;}
.y6d{bottom:232.020000px;}
.yce{bottom:232.125000px;}
.y17d{bottom:232.740000px;}
.y6c{bottom:232.920000px;}
.yb9{bottom:233.310000px;}
.y46{bottom:237.495000px;}
.y18c{bottom:241.530000px;}
.y159{bottom:242.250000px;}
.y27{bottom:245.235000px;}
.y136{bottom:248.190000px;}
.yd4{bottom:249.450000px;}
.y163{bottom:250.380000px;}
.y7{bottom:252.030000px;}
.yb8{bottom:254.910000px;}
.y168{bottom:254.985000px;}
.y11c{bottom:257.115000px;}
.y56{bottom:257.580000px;}
.y17c{bottom:257.940000px;}
.y116{bottom:261.030000px;}
.y99{bottom:262.080000px;}
.ye2{bottom:264.705000px;}
.y80{bottom:266.610000px;}
.y1a0{bottom:269.895000px;}
.y19c{bottom:270.900000px;}
.y1a2{bottom:271.080000px;}
.yc4{bottom:271.905000px;}
.y15f{bottom:271.980000px;}
.y18b{bottom:272.130000px;}
.y10b{bottom:273.030000px;}
.y1e{bottom:275.685000px;}
.yb7{bottom:276.510000px;}
.y3a{bottom:278.820000px;}
.y13{bottom:280.410000px;}
.y114{bottom:281.670000px;}
.y135{bottom:282.390000px;}
.y17b{bottom:283.320000px;}
.y55{bottom:283.500000px;}
.y22{bottom:285.225000px;}
.ye4{bottom:285.480000px;}
.y167{bottom:287.385000px;}
.y64{bottom:291.420000px;}
.y109{bottom:294.840000px;}
.y69{bottom:298.230000px;}
.yf5{bottom:300.135000px;}
.y18a{bottom:302.760000px;}
.yc3{bottom:303.225000px;}
.y19b{bottom:303.300000px;}
.y134{bottom:306.150000px;}
.y39{bottom:306.720000px;}
.y1a5{bottom:309.315000px;}
.y77{bottom:309.495000px;}
.yf6{bottom:311.370000px;}
.y191{bottom:311.400000px;}
.y54{bottom:312.480000px;}
.y113{bottom:314.070000px;}
.ya3{bottom:314.820000px;}
.y17a{bottom:316.110000px;}
.y12{bottom:318.210000px;}
.yb6{bottom:319.755000px;}
.y165{bottom:319.785000px;}
.y12a{bottom:321.405000px;}
.y63{bottom:322.020000px;}
.yff{bottom:322.380000px;}
.y6{bottom:322.530000px;}
.y189{bottom:324.360000px;}
.yc2{bottom:327.030000px;}
.ye5{bottom:327.135000px;}
.y108{bottom:327.240000px;}
.y38{bottom:328.320000px;}
.y133{bottom:329.940000px;}
.y76{bottom:331.125000px;}
.y19a{bottom:335.700000px;}
.y53{bottom:338.400000px;}
.y122{bottom:338.865000px;}
.y179{bottom:341.490000px;}
.ye1{bottom:343.290000px;}
.y62{bottom:343.650000px;}
.y2d{bottom:344.775000px;}
.y112{bottom:346.470000px;}
.ya2{bottom:348.330000px;}
.y129{bottom:348.405000px;}
.y67{bottom:349.485000px;}
.y162{bottom:352.185000px;}
.y37{bottom:352.800000px;}
.y26{bottom:353.085000px;}
.y132{bottom:353.700000px;}
.y188{bottom:354.960000px;}
.yc1{bottom:358.350000px;}
.y156{bottom:358.380000px;}
.y66{bottom:358.485000px;}
.y178{bottom:359.310000px;}
.y107{bottom:359.640000px;}
.yb5{bottom:362.955000px;}
.y4d{bottom:366.045000px;}
.y1a4{bottom:366.915000px;}
.y52{bottom:367.200000px;}
.y2c{bottom:367.350000px;}
.y65{bottom:367.485000px;}
.y199{bottom:368.100000px;}
.y75{bottom:370.725000px;}
.y11{bottom:371.160000px;}
.y25{bottom:372.885000px;}
.y61{bottom:374.250000px;}
.y36{bottom:374.430000px;}
.y4c{bottom:375.045000px;}
.y128{bottom:375.405000px;}
.yc6{bottom:375.840000px;}
.y131{bottom:377.460000px;}
.y111{bottom:378.900000px;}
.y14e{bottom:378.930000px;}
.ya1{bottom:381.630000px;}
.yc0{bottom:382.110000px;}
.y68{bottom:383.220000px;}
.y4b{bottom:384.045000px;}
.yb4{bottom:384.555000px;}
.y15e{bottom:384.630000px;}
.y177{bottom:384.690000px;}
.y187{bottom:385.560000px;}
.y146{bottom:387.030000px;}
.y2b{bottom:387.180000px;}
.y106{bottom:392.070000px;}
.y24{bottom:392.685000px;}
.y51{bottom:393.150000px;}
.y60{bottom:395.850000px;}
.y74{bottom:399.885000px;}
.y35{bottom:400.170000px;}
.y198{bottom:400.530000px;}
.y130{bottom:401.220000px;}
.y127{bottom:402.450000px;}
.yd7{bottom:403.530000px;}
.y10{bottom:406.080000px;}
.yb3{bottom:406.155000px;}
.y15c{bottom:406.230000px;}
.y2a{bottom:406.980000px;}
.y186{bottom:407.160000px;}
.yd3{bottom:412.050000px;}
.y23{bottom:412.485000px;}
.ybf{bottom:413.250000px;}
.ya0{bottom:415.110000px;}
.y14d{bottom:416.550000px;}
.y176{bottom:417.450000px;}
.ya9{bottom:418.965000px;}
.ye0{bottom:419.730000px;}
.y50{bottom:422.130000px;}
.y1a3{bottom:424.545000px;}
.y145{bottom:424.695000px;}
.yd6{bottom:425.130000px;}
.y8{bottom:425.880000px;}
.y12f{bottom:426.060000px;}
.y34{bottom:426.090000px;}
.y5f{bottom:426.450000px;}
.yb2{bottom:427.755000px;}
.y15a{bottom:427.830000px;}
.y73{bottom:428.865000px;}
.y126{bottom:429.450000px;}
.y175{bottom:435.315000px;}
.ybe{bottom:437.040000px;}
.yda{bottom:439.845000px;}
.y21{bottom:445.065000px;}
.y1a9{bottom:446.505000px;}
.y6e{bottom:448.380000px;}
.y138{bottom:450.690000px;}
.y150{bottom:452.310000px;}
.y14c{bottom:454.350000px;}
.y7b{bottom:455.790000px;}
.y125{bottom:456.450000px;}
.y72{bottom:458.025000px;}
.y101{bottom:458.430000px;}
.yd2{bottom:459.390000px;}
.y12e{bottom:460.290000px;}
.y144{bottom:462.495000px;}
.y97{bottom:463.890000px;}
.yd5{bottom:465.735000px;}
.y33{bottom:467.025000px;}
.yf{bottom:467.745000px;}
.y174{bottom:468.075000px;}
.y8e{bottom:468.330000px;}
.ybd{bottom:468.360000px;}
.yd9{bottom:468.645000px;}
.y16a{bottom:472.350000px;}
.yb1{bottom:472.605000px;}
.y4f{bottom:473.070000px;}
.y6a{bottom:473.550000px;}
.y7a{bottom:475.590000px;}
.y12c{bottom:477.720000px;}
.y143{bottom:478.440000px;}
.y20{bottom:478.725000px;}
.y153{bottom:478.950000px;}
.y14b{bottom:479.625000px;}
.yf9{bottom:480.885000px;}
.y83{bottom:482.145000px;}
.ycb{bottom:483.015000px;}
.y195{bottom:484.710000px;}
.y12d{bottom:484.950000px;}
.y197{bottom:485.310000px;}
.ye8{bottom:485.820000px;}
.yee{bottom:486.000000px;}
.y190{bottom:486.750000px;}
.y100{bottom:490.860000px;}
.y6b{bottom:491.760000px;}
.y32{bottom:493.125000px;}
.ya8{bottom:493.920000px;}
.y8d{bottom:494.280000px;}
.y71{bottom:497.880000px;}
.y1a6{bottom:498.135000px;}
.y19f{bottom:498.315000px;}
.y169{bottom:498.450000px;}
.y4e{bottom:499.170000px;}
.ye{bottom:499.290000px;}
.yd1{bottom:501.015000px;}
.y171{bottom:501.735000px;}
.ydf{bottom:502.770000px;}
.y12b{bottom:503.670000px;}
.y142{bottom:504.360000px;}
.yaf{bottom:504.390000px;}
.y96{bottom:504.435000px;}
.y1f{bottom:504.825000px;}
.y152{bottom:504.900000px;}
.y14a{bottom:505.545000px;}
.yf8{bottom:506.985000px;}
.y82{bottom:508.065000px;}
.y11b{bottom:508.680000px;}
.yca{bottom:509.115000px;}
.ybb{bottom:510.630000px;}
.ye7{bottom:511.920000px;}
.yed{bottom:512.100000px;}
.yb{bottom:533.490000px;}
.ya{bottom:547.275000px;}
.y1b{bottom:547.530000px;}
.y1a{bottom:562.215000px;}
.yc{bottom:568.185000px;}
.y70{bottom:574.200000px;}
.yd{bottom:574.230000px;}
.y9{bottom:576.435000px;}
.y1c{bottom:577.185000px;}
.y19{bottom:584.025000px;}
.h16{height:23.632383px;}
.h42{height:26.208984px;}
.h15{height:30.077578px;}
.h2a{height:30.220805px;}
.h3e{height:30.963516px;}
.h22{height:33.683203px;}
.h23{height:33.783750px;}
.h5a{height:34.517578px;}
.h20{height:36.498240px;}
.h3a{height:36.845578px;}
.h21{height:37.501920px;}
.h11{height:39.644640px;}
.h59{height:41.535703px;}
.hb{height:42.269263px;}
.h14{height:44.953026px;}
.h2d{height:46.224000px;}
.hc{height:46.347264px;}
.h8{height:46.445273px;}
.h2f{height:48.697031px;}
.h3c{height:48.840258px;}
.h57{height:50.068125px;}
.h1{height:50.320552px;}
.h5f{height:50.454740px;}
.h55{height:50.800781px;}
.h56{height:50.902383px;}
.h33{height:53.709961px;}
.h18{height:54.236160px;}
.h25{height:54.667969px;}
.h28{height:55.376640px;}
.h12{height:55.439437px;}
.h1a{height:57.893760px;}
.h2{height:59.042781px;}
.h1e{height:59.439023px;}
.h24{height:59.582250px;}
.h4e{height:60.679688px;}
.h37{height:61.632000px;}
.h27{height:62.928000px;}
.h7{height:63.019687px;}
.h2e{height:63.053856px;}
.h5d{height:64.070859px;}
.h19{height:65.884219px;}
.h1b{height:66.027445px;}
.h4b{height:67.824844px;}
.ha{height:68.909263px;}
.h13{height:70.273026px;}
.h4d{height:70.995234px;}
.h1f{height:71.613281px;}
.h26{height:71.756508px;}
.h17{height:73.625760px;}
.h1d{height:73.722656px;}
.h53{height:73.870102px;}
.h50{height:77.485570px;}
.h4{height:80.923008px;}
.h3{height:81.066234px;}
.h31{height:83.787539px;}
.h32{height:83.930766px;}
.h3b{height:86.255508px;}
.h3d{height:87.525360px;}
.h43{height:87.531539px;}
.h40{height:87.674976px;}
.h48{height:89.516602px;}
.h49{height:89.659828px;}
.h44{height:90.122766px;}
.h2b{height:90.884531px;}
.h4a{height:92.153320px;}
.h47{height:92.300766px;}
.h2c{height:92.624531px;}
.h41{height:94.011539px;}
.h36{height:94.221281px;}
.h1c{height:95.245664px;}
.hd{height:98.051133px;}
.h34{height:98.198578px;}
.h30{height:107.419922px;}
.h46{height:107.563148px;}
.he{height:110.583984px;}
.h45{height:110.731430px;}
.h3f{height:112.212000px;}
.h35{height:113.755148px;}
.h38{height:123.116836px;}
.h58{height:123.264281px;}
.h9{height:124.591289px;}
.h6{height:125.633055px;}
.h29{height:125.999508px;}
.hf{height:129.014648px;}
.h10{height:129.162094px;}
.h4c{height:135.075234px;}
.h5e{height:135.550286px;}
.h51{height:151.380000px;}
.h4f{height:170.263688px;}
.h5c{height:196.839492px;}
.h5b{height:196.986938px;}
.h39{height:235.709789px;}
.h5{height:250.646484px;}
.h54{height:302.580000px;}
.h52{height:421.920000px;}
.h0{height:607.500000px;}
.w4{width:99.900000px;}
.w5{width:110.520000px;}
.w3{width:113.760000px;}
.w2{width:161.640000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2f{left:5.111984px;}
.xb0{left:6.515984px;}
.x94{left:8.100000px;}
.x41{left:13.859984px;}
.x4c{left:15.047984px;}
.x8{left:18.071984px;}
.x1f{left:20.195984px;}
.x7{left:21.815984px;}
.x4e{left:23.399984px;}
.x9{left:25.199984px;}
.xb2{left:28.115984px;}
.x4a{left:30.743984px;}
.x4d{left:32.327984px;}
.xb1{left:33.983984px;}
.x44{left:35.135984px;}
.x93{left:36.900000px;}
.x11{left:38.051984px;}
.x45{left:39.419984px;}
.x1b{left:40.643984px;}
.xb{left:42.587984px;}
.x30{left:44.171984px;}
.x39{left:46.655984px;}
.x27{left:48.851984px;}
.x6b{left:51.335984px;}
.x53{left:52.451984px;}
.xc{left:55.871984px;}
.x23{left:57.671984px;}
.x36{left:59.003984px;}
.x9f{left:60.947984px;}
.x8e{left:62.135984px;}
.x34{left:63.395984px;}
.x46{left:67.247984px;}
.x13{left:68.327984px;}
.x12{left:71.927984px;}
.x24{left:73.691984px;}
.x14{left:75.923984px;}
.x54{left:77.111984px;}
.x66{left:79.343984px;}
.xd{left:81.251984px;}
.x47{left:83.087984px;}
.x31{left:84.527984px;}
.x1c{left:88.343984px;}
.x55{left:92.951984px;}
.xa0{left:94.787984px;}
.x3{left:96.911984px;}
.x2{left:98.423984px;}
.xac{left:102.131984px;}
.x82{left:104.183984px;}
.xaa{left:105.263984px;}
.x48{left:107.567984px;}
.x1d{left:112.823984px;}
.x74{left:114.479984px;}
.x42{left:116.963984px;}
.x7d{left:118.079984px;}
.x2c{left:119.735984px;}
.x1e{left:128.843984px;}
.x79{left:133.523984px;}
.xa3{left:135.143984px;}
.x62{left:137.015984px;}
.x5c{left:138.887984px;}
.x85{left:146.879984px;}
.x3f{left:148.679984px;}
.x8f{left:153.929984px;}
.x7e{left:159.509984px;}
.x6c{left:176.969984px;}
.x52{left:179.069984px;}
.x3c{left:180.869984px;}
.x95{left:198.360000px;}
.x97{left:212.189984px;}
.x6f{left:223.484984px;}
.x71{left:228.209984px;}
.xe{left:229.574984px;}
.x5{left:233.639984px;}
.x6{left:239.834984px;}
.x9e{left:241.529984px;}
.x4{left:243.254984px;}
.xa{left:263.189984px;}
.x96{left:270.689984px;}
.x98{left:311.940000px;}
.x7a{left:335.189984px;}
.x7c{left:337.289984px;}
.x99{left:356.969984px;}
.x73{left:367.454984px;}
.x7b{left:369.029984px;}
.x69{left:371.519984px;}
.x77{left:376.529984px;}
.x18{left:394.274984px;}
.x1a{left:405.464984px;}
.x19{left:408.704984px;}
.x78{left:410.369984px;}
.x9a{left:411.660000px;}
.x5a{left:416.084984px;}
.x68{left:422.999984px;}
.x9b{left:425.444984px;}
.x5b{left:431.384984px;}
.x43{left:441.329984px;}
.x6d{left:443.909984px;}
.x65{left:449.894984px;}
.x3d{left:461.594984px;}
.x17{left:465.944984px;}
.xad{left:471.059984px;}
.xaf{left:476.489984px;}
.x58{left:480.749984px;}
.x5d{left:492.194984px;}
.x1{left:498.164984px;}
.x2d{left:499.649984px;}
.x3e{left:509.759984px;}
.x61{left:511.844984px;}
.x5e{left:536.939984px;}
.x9d{left:556.559984px;}
.x6a{left:559.364984px;}
.x70{left:566.744984px;}
.x9c{left:576.539984px;}
.x2e{left:591.374984px;}
.x50{left:594.614984px;}
.x25{left:604.724984px;}
.x87{left:607.319984px;}
.x2b{left:608.324984px;}
.x38{left:610.814984px;}
.x51{left:614.954984px;}
.xab{left:626.504984px;}
.x86{left:634.754984px;}
.x21{left:643.469984px;}
.x75{left:645.584984px;}
.x88{left:647.819984px;}
.x15{left:649.514984px;}
.x76{left:659.339984px;}
.x8d{left:661.679984px;}
.xb3{left:668.849984px;}
.x16{left:669.854984px;}
.x91{left:677.234984px;}
.xa8{left:686.369984px;}
.x80{left:688.964984px;}
.x83{left:691.019984px;}
.x4b{left:692.999984px;}
.x4f{left:700.019984px;}
.xa4{left:714.029984px;}
.x89{left:719.069984px;}
.xa9{left:720.209984px;}
.x90{left:725.549984px;}
.x7f{left:731.594984px;}
.xa2{left:733.709984px;}
.xa5{left:736.229984px;}
.x59{left:740.954984px;}
.x60{left:741.989984px;}
.x84{left:747.359984px;}
.x3b{left:754.169984px;}
.xa1{left:756.509984px;}
.xae{left:761.474984px;}
.x92{left:762.584984px;}
.x64{left:764.174984px;}
.x63{left:766.364984px;}
.xf{left:768.449984px;}
.x6e{left:770.189984px;}
.x32{left:783.569984px;}
.x22{left:785.549984px;}
.x49{left:798.839984px;}
.x35{left:811.184984px;}
.x56{left:813.344984px;}
.x29{left:816.944984px;}
.x28{left:818.969984px;}
.x57{left:821.159984px;}
.x26{left:842.654984px;}
.x3a{left:848.879984px;}
.x5f{left:856.439984px;}
.x20{left:865.904984px;}
.xa7{left:867.959984px;}
.x81{left:870.299984px;}
.x8a{left:882.254984px;}
.x10{left:884.804984px;}
.x37{left:905.789984px;}
.x67{left:910.904984px;}
.x2a{left:915.449984px;}
.x40{left:946.439984px;}
.x72{left:955.259984px;}
.x33{left:999.719984px;}
.x8b{left:1002.599984px;}
.x8c{left:1011.059984px;}
.xa6{left:1030.499984px;}
@media print{
.ve{vertical-align:-91.360000pt;}
.v13{vertical-align:-15.360000pt;}
.vf{vertical-align:-13.952000pt;}
.v15{vertical-align:-12.800000pt;}
.v10{vertical-align:-7.680000pt;}
.v3{vertical-align:-6.400000pt;}
.vd{vertical-align:-4.352000pt;}
.v8{vertical-align:-3.093333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.546667pt;}
.v12{vertical-align:3.328000pt;}
.va{vertical-align:5.504000pt;}
.vb{vertical-align:8.192000pt;}
.v11{vertical-align:9.088000pt;}
.v4{vertical-align:11.520000pt;}
.v5{vertical-align:19.200000pt;}
.v2{vertical-align:22.506667pt;}
.v1{vertical-align:23.680000pt;}
.v7{vertical-align:35.328000pt;}
.v14{vertical-align:48.768000pt;}
.v6{vertical-align:57.728000pt;}
.vc{vertical-align:82.080000pt;}
.ls20{letter-spacing:-0.390400pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.282667pt;}
.ls18{letter-spacing:-0.278933pt;}
.ls36{letter-spacing:-0.272000pt;}
.ls3b{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.166933pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.148267pt;}
.ls40{letter-spacing:-0.137067pt;}
.ls41{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.116267pt;}
.ls22{letter-spacing:-0.112533pt;}
.ls2c{letter-spacing:-0.097067pt;}
.ls27{letter-spacing:-0.095467pt;}
.ls28{letter-spacing:-0.085333pt;}
.ls26{letter-spacing:-0.080000pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:-0.030720pt;}
.ls37{letter-spacing:-0.017920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.019840pt;}
.ls35{letter-spacing:0.029973pt;}
.ls3f{letter-spacing:0.032107pt;}
.ls30{letter-spacing:0.064000pt;}
.ls48{letter-spacing:0.089600pt;}
.ls4f{letter-spacing:0.107733pt;}
.ls1a{letter-spacing:0.109867pt;}
.ls7{letter-spacing:0.110933pt;}
.ls12{letter-spacing:0.111467pt;}
.ls2f{letter-spacing:0.113024pt;}
.ls33{letter-spacing:0.113067pt;}
.ls4a{letter-spacing:0.117760pt;}
.ls31{letter-spacing:0.121067pt;}
.ls2d{letter-spacing:0.126933pt;}
.ls24{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.143467pt;}
.ls16{letter-spacing:0.148267pt;}
.ls9{letter-spacing:0.154667pt;}
.ls4d{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.165120pt;}
.ls2{letter-spacing:0.168960pt;}
.ls5{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.186667pt;}
.ls13{letter-spacing:0.186880pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.290560pt;}
.ls43{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:1.082667pt;}
.ls14{letter-spacing:1.536000pt;}
.ls10{letter-spacing:6.016000pt;}
.ls46{letter-spacing:19.690240pt;}
.ls4e{letter-spacing:24.213760pt;}
.ls3c{letter-spacing:30.112000pt;}
.ls25{letter-spacing:33.875200pt;}
.ls23{letter-spacing:33.920000pt;}
.ls3d{letter-spacing:34.515200pt;}
.lse{letter-spacing:34.560000pt;}
.ls1e{letter-spacing:37.203200pt;}
.ls1d{letter-spacing:37.248000pt;}
.ls15{letter-spacing:38.323200pt;}
.lsf{letter-spacing:38.368000pt;}
.ls34{letter-spacing:43.520000pt;}
.ls3{letter-spacing:47.444480pt;}
.ls6{letter-spacing:49.144576pt;}
.ls4{letter-spacing:49.203200pt;}
.ls32{letter-spacing:49.875200pt;}
.ls21{letter-spacing:49.920000pt;}
.lsd{letter-spacing:51.667200pt;}
.lsc{letter-spacing:51.712000pt;}
.ls49{letter-spacing:54.867200pt;}
.ls47{letter-spacing:54.912000pt;}
.ls39{letter-spacing:80.115200pt;}
.ls38{letter-spacing:80.160000pt;}
.ls3a{letter-spacing:80.288000pt;}
.ls45{letter-spacing:94.067200pt;}
.ls44{letter-spacing:94.112000pt;}
.ls3e{letter-spacing:324.874667pt;}
.ws3f{word-spacing:-74.880000pt;}
.ws43{word-spacing:-64.000000pt;}
.ws41{word-spacing:-63.872000pt;}
.ws40{word-spacing:-54.400000pt;}
.ws1a{word-spacing:-53.248000pt;}
.ws3e{word-spacing:-52.832640pt;}
.ws45{word-spacing:-48.341333pt;}
.ws44{word-spacing:-46.720000pt;}
.ws42{word-spacing:-44.352000pt;}
.ws2f{word-spacing:-28.956928pt;}
.ws7{word-spacing:-25.488000pt;}
.ws8{word-spacing:-25.451861pt;}
.wsa{word-spacing:-25.340928pt;}
.ws6{word-spacing:-25.312000pt;}
.ws5{word-spacing:-24.444160pt;}
.ws55{word-spacing:-24.154880pt;}
.ws24{word-spacing:-21.696000pt;}
.ws3c{word-spacing:-20.666880pt;}
.wsc{word-spacing:-19.237120pt;}
.ws3b{word-spacing:-18.108928pt;}
.ws3a{word-spacing:-18.080000pt;}
.ws39{word-spacing:-17.840000pt;}
.ws37{word-spacing:-16.951808pt;}
.ws1f{word-spacing:-16.922880pt;}
.ws9{word-spacing:-16.373248pt;}
.ws4e{word-spacing:-16.032000pt;}
.ws4a{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-15.097067pt;}
.ws10{word-spacing:-14.976000pt;}
.ws27{word-spacing:-14.880533pt;}
.ws2b{word-spacing:-14.619861pt;}
.ws1c{word-spacing:-14.492928pt;}
.ws11{word-spacing:-14.464000pt;}
.ws53{word-spacing:-13.396480pt;}
.wsf{word-spacing:-13.306880pt;}
.ws30{word-spacing:-12.938667pt;}
.ws25{word-spacing:-12.928000pt;}
.ws3{word-spacing:-12.897280pt;}
.ws26{word-spacing:-12.825600pt;}
.ws3d{word-spacing:-12.688533pt;}
.ws1b{word-spacing:-12.005120pt;}
.ws1d{word-spacing:-11.264000pt;}
.wsb{word-spacing:-10.876928pt;}
.wsd{word-spacing:-10.848000pt;}
.ws2d{word-spacing:-10.624000pt;}
.ws31{word-spacing:-9.835520pt;}
.ws46{word-spacing:-9.690880pt;}
.ws4{word-spacing:-9.112320pt;}
.ws29{word-spacing:-7.865067pt;}
.ws19{word-spacing:-7.610667pt;}
.ws12{word-spacing:-7.572267pt;}
.ws16{word-spacing:-7.535467pt;}
.ws18{word-spacing:-7.533867pt;}
.ws14{word-spacing:-7.424000pt;}
.ws13{word-spacing:-7.275733pt;}
.ws15{word-spacing:-7.145067pt;}
.ws21{word-spacing:-6.074880pt;}
.ws17{word-spacing:-4.875733pt;}
.ws1{word-spacing:-2.366293pt;}
.ws32{word-spacing:-1.768960pt;}
.ws33{word-spacing:-1.382400pt;}
.ws59{word-spacing:-0.906453pt;}
.ws36{word-spacing:-0.680555pt;}
.ws35{word-spacing:-0.540160pt;}
.ws0{word-spacing:-0.430080pt;}
.ws28{word-spacing:-0.351360pt;}
.ws56{word-spacing:-0.316160pt;}
.ws34{word-spacing:-0.251136pt;}
.ws58{word-spacing:-0.175360pt;}
.ws57{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws52{word-spacing:1.999787pt;}
.ws20{word-spacing:4.108800pt;}
.ws54{word-spacing:38.272000pt;}
.ws22{word-spacing:131.398400pt;}
.ws38{word-spacing:141.383893pt;}
.ws50{word-spacing:208.083285pt;}
.ws4b{word-spacing:208.149333pt;}
.ws48{word-spacing:209.984000pt;}
.ws4f{word-spacing:210.020821pt;}
.ws4d{word-spacing:225.984000pt;}
.ws49{word-spacing:240.789333pt;}
.ws4c{word-spacing:251.104000pt;}
.ws51{word-spacing:251.140480pt;}
.wse{word-spacing:354.993493pt;}
.ws47{word-spacing:412.629333pt;}
.ws23{word-spacing:624.532267pt;}
.ws2a{word-spacing:1067.722667pt;}
.ws2e{word-spacing:1913.216000pt;}
.ws1e{word-spacing:2543.225813pt;}
._15{margin-left:-2260.085973pt;}
._40{margin-left:-2225.328000pt;}
._2b{margin-left:-7.968000pt;}
._8{margin-left:-6.043520pt;}
._12{margin-left:-4.928000pt;}
._11{margin-left:-3.649536pt;}
._4{margin-left:-2.253440pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.008000pt;}
._10{width:2.065280pt;}
._b{width:3.164160pt;}
._1d{width:4.076587pt;}
._e{width:5.367680pt;}
._f{width:6.429440pt;}
._42{width:10.353067pt;}
._3{width:12.331733pt;}
._2{width:13.807573pt;}
._26{width:18.413312pt;}
._1e{width:19.872853pt;}
._2c{width:23.424640pt;}
._22{width:27.413333pt;}
._31{width:29.677440pt;}
._33{width:36.429440pt;}
._36{width:44.864000pt;}
._5{width:47.573035pt;}
._38{width:49.059456pt;}
._35{width:52.912000pt;}
._6{width:65.216427pt;}
._2a{width:90.944000pt;}
._3a{width:95.618773pt;}
._37{width:96.986667pt;}
._2d{width:127.893333pt;}
._39{width:147.994667pt;}
._30{width:174.776277pt;}
._34{width:177.546667pt;}
._1f{width:186.453205pt;}
._25{width:262.205227pt;}
._29{width:288.728107pt;}
._2f{width:289.906773pt;}
._2e{width:298.960000pt;}
._21{width:351.698560pt;}
._3f{width:444.799787pt;}
._7{width:504.066987pt;}
._1c{width:777.342080pt;}
._3e{width:850.159147pt;}
._9{width:958.834773pt;}
._3b{width:971.085653pt;}
._16{width:980.420480pt;}
._13{width:1011.645653pt;}
._32{width:1025.888427pt;}
._1a{width:1060.922325pt;}
._d{width:1069.849387pt;}
._17{width:1127.063680pt;}
._19{width:1135.618773pt;}
._3c{width:1146.563627pt;}
._14{width:1155.808427pt;}
._18{width:1236.503680pt;}
._a{width:1255.636907pt;}
._23{width:1420.725333pt;}
._41{width:1426.645333pt;}
._28{width:1507.158613pt;}
._27{width:1564.280960pt;}
._1b{width:1747.071787pt;}
._c{width:1754.414507pt;}
._20{width:1793.426517pt;}
._24{width:1909.949867pt;}
._3d{width:3201.220480pt;}
.fs12{font-size:21.120000pt;}
.fs19{font-size:24.960000pt;}
.fs11{font-size:26.880000pt;}
.fs1f{font-size:27.008000pt;}
.fs18{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fs10{font-size:42.880000pt;}
.fs1a{font-size:43.008000pt;}
.fs21{font-size:43.520000pt;}
.fs27{font-size:43.648000pt;}
.fs2b{font-size:46.720000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs1e{font-size:49.920000pt;}
.fs17{font-size:53.120000pt;}
.fs1b{font-size:53.248000pt;}
.fs2a{font-size:54.400000pt;}
.fs1{font-size:56.320000pt;}
.fs1d{font-size:56.448000pt;}
.fs14{font-size:58.880000pt;}
.fs15{font-size:59.008000pt;}
.fs16{font-size:64.000000pt;}
.fs1c{font-size:64.128000pt;}
.fs2c{font-size:69.248000pt;}
.fs3{font-size:72.320000pt;}
.fs2{font-size:72.448000pt;}
.fs13{font-size:74.880000pt;}
.fs22{font-size:75.008000pt;}
.fs29{font-size:80.000000pt;}
.fs28{font-size:80.128000pt;}
.fs9{font-size:85.120000pt;}
.fs23{font-size:85.248000pt;}
.fsd{font-size:89.600000pt;}
.fse{font-size:89.728000pt;}
.fsb{font-size:93.440000pt;}
.fsa{font-size:96.000000pt;}
.fs24{font-size:96.128000pt;}
.fs20{font-size:106.880000pt;}
.fs2d{font-size:107.008000pt;}
.fs7{font-size:108.160000pt;}
.fsc{font-size:112.000000pt;}
.fsf{font-size:112.128000pt;}
.fs5{font-size:120.448000pt;}
.fs25{font-size:128.000000pt;}
.fs26{font-size:128.128000pt;}
.fs2f{font-size:170.880000pt;}
.fs2e{font-size:171.008000pt;}
.fs4{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:11.328000pt;}
.y79{bottom:11.360000pt;}
.y1ae{bottom:22.944000pt;}
.y1b0{bottom:28.544000pt;}
.yaa{bottom:31.712000pt;}
.yad{bottom:33.760000pt;}
.y31{bottom:34.080000pt;}
.y8c{bottom:34.272000pt;}
.yab{bottom:34.432000pt;}
.y78{bottom:34.528000pt;}
.y89{bottom:34.720000pt;}
.ydb{bottom:36.640000pt;}
.y1ad{bottom:37.344000pt;}
.ybc{bottom:38.368000pt;}
.y94{bottom:38.976000pt;}
.y92{bottom:41.504000pt;}
.yac{bottom:41.792000pt;}
.y1af{bottom:43.904000pt;}
.y6f{bottom:46.528000pt;}
.y1a8{bottom:48.480000pt;}
.y10a{bottom:49.536000pt;}
.yae{bottom:50.336000pt;}
.y115{bottom:51.744000pt;}
.yc7{bottom:58.944000pt;}
.ydc{bottom:59.264000pt;}
.y81{bottom:59.776000pt;}
.y3e{bottom:61.408000pt;}
.y95{bottom:61.632000pt;}
.y164{bottom:61.693333pt;}
.y157{bottom:61.733333pt;}
.ya4{bottom:61.888000pt;}
.y102{bottom:61.984000pt;}
.y98{bottom:62.208000pt;}
.yba{bottom:62.464000pt;}
.ycc{bottom:63.168000pt;}
.yc8{bottom:63.520000pt;}
.ycd{bottom:63.648000pt;}
.y30{bottom:63.872000pt;}
.y7e{bottom:64.192000pt;}
.y1a1{bottom:64.672000pt;}
.y183{bottom:65.088000pt;}
.yfa{bottom:65.536000pt;}
.y193{bottom:65.632000pt;}
.y1d{bottom:66.112000pt;}
.y1ac{bottom:66.176000pt;}
.yfb{bottom:66.496000pt;}
.y86{bottom:66.592000pt;}
.yfc{bottom:66.848000pt;}
.y91{bottom:67.104000pt;}
.y155{bottom:67.200000pt;}
.y185{bottom:67.616000pt;}
.y149{bottom:68.384000pt;}
.y19e{bottom:69.088000pt;}
.y148{bottom:69.440000pt;}
.ye9{bottom:72.512000pt;}
.y3d{bottom:72.608000pt;}
.y42{bottom:72.928000pt;}
.y192{bottom:73.632000pt;}
.yf2{bottom:76.448000pt;}
.y141{bottom:77.312000pt;}
.yef{bottom:77.472000pt;}
.y13c{bottom:77.504000pt;}
.yf0{bottom:77.760000pt;}
.yf1{bottom:78.112000pt;}
.y13e{bottom:79.072000pt;}
.y16f{bottom:79.904000pt;}
.y93{bottom:80.064000pt;}
.y3{bottom:80.480000pt;}
.y13f{bottom:80.544000pt;}
.y9f{bottom:81.408000pt;}
.y2f{bottom:81.472000pt;}
.yd8{bottom:81.504000pt;}
.y45{bottom:82.592000pt;}
.y110{bottom:82.848000pt;}
.y7d{bottom:83.104000pt;}
.y172{bottom:83.680000pt;}
.y119{bottom:85.312000pt;}
.y41{bottom:85.568000pt;}
.y88{bottom:87.776000pt;}
.y3c{bottom:87.808000pt;}
.y147{bottom:88.640000pt;}
.y85{bottom:89.024000pt;}
.y194{bottom:89.312000pt;}
.y13b{bottom:89.984000pt;}
.y182{bottom:94.208000pt;}
.yfe{bottom:94.496000pt;}
.y1ab{bottom:94.976000pt;}
.y44{bottom:95.264000pt;}
.ycf{bottom:96.736000pt;}
.y18f{bottom:97.344000pt;}
.y17{bottom:97.376000pt;}
.yf3{bottom:97.408000pt;}
.y40{bottom:98.400000pt;}
.y19d{bottom:98.688000pt;}
.y3b{bottom:99.008000pt;}
.y140{bottom:100.192000pt;}
.yeb{bottom:101.888000pt;}
.y13d{bottom:101.984000pt;}
.y16e{bottom:102.304000pt;}
.yf7{bottom:102.720000pt;}
.y9e{bottom:104.448000pt;}
.y124{bottom:104.768000pt;}
.y7c{bottom:105.504000pt;}
.y196{bottom:107.520000pt;}
.y43{bottom:108.064000pt;}
.y5b{bottom:108.288000pt;}
.y121{bottom:108.512000pt;}
.y1aa{bottom:109.376000pt;}
.y181{bottom:110.048000pt;}
.y87{bottom:110.176000pt;}
.yd0{bottom:110.432000pt;}
.y139{bottom:110.592000pt;}
.y3f{bottom:111.200000pt;}
.y84{bottom:111.424000pt;}
.y10f{bottom:111.648000pt;}
.yde{bottom:111.872000pt;}
.y2e{bottom:112.224000pt;}
.ydd{bottom:112.960000pt;}
.y5c{bottom:113.888000pt;}
.y118{bottom:114.112000pt;}
.y5{bottom:114.784000pt;}
.y2{bottom:114.912000pt;}
.y18e{bottom:116.544000pt;}
.y14f{bottom:116.640000pt;}
.y161{bottom:119.333333pt;}
.y90{bottom:121.056000pt;}
.y16{bottom:121.536000pt;}
.y8f{bottom:121.952000pt;}
.yea{bottom:122.368000pt;}
.y151{bottom:122.592000pt;}
.yfd{bottom:123.296000pt;}
.y16d{bottom:124.704000pt;}
.y4a{bottom:125.312000pt;}
.y9d{bottom:127.488000pt;}
.y154{bottom:128.640000pt;}
.y5a{bottom:131.168000pt;}
.y1{bottom:132.192000pt;}
.y120{bottom:132.512000pt;}
.y180{bottom:132.608000pt;}
.ya7{bottom:133.413333pt;}
.ye6{bottom:135.426667pt;}
.y13a{bottom:135.746667pt;}
.y170{bottom:137.666667pt;}
.y160{bottom:138.533333pt;}
.y105{bottom:139.200000pt;}
.y10e{bottom:140.480000pt;}
.y8a{bottom:141.893333pt;}
.y8b{bottom:142.533333pt;}
.y117{bottom:142.906667pt;}
.y4{bottom:144.573333pt;}
.y16c{bottom:147.106667pt;}
.y49{bottom:147.226667pt;}
.y7f{bottom:148.706667pt;}
.y9c{bottom:150.560000pt;}
.y123{bottom:151.586667pt;}
.ya6{bottom:152.613333pt;}
.y59{bottom:153.893333pt;}
.y18d{bottom:154.946667pt;}
.y17f{bottom:155.200000pt;}
.y11f{bottom:156.506667pt;}
.y5e{bottom:161.466667pt;}
.y173{bottom:163.706667pt;}
.y158{bottom:164.960000pt;}
.y104{bottom:168.000000pt;}
.yec{bottom:168.226667pt;}
.y15{bottom:168.573333pt;}
.y48{bottom:168.986667pt;}
.y10d{bottom:169.280000pt;}
.y5d{bottom:169.466667pt;}
.y16b{bottom:169.506667pt;}
.ya5{bottom:171.813333pt;}
.ye3{bottom:172.453333pt;}
.yb0{bottom:175.453333pt;}
.y15d{bottom:176.933333pt;}
.y58{bottom:177.573333pt;}
.y17e{bottom:177.600000pt;}
.y9b{bottom:180.160000pt;}
.y11e{bottom:180.506667pt;}
.y11a{bottom:182.653333pt;}
.y29{bottom:182.786667pt;}
.yf4{bottom:187.653333pt;}
.y47{bottom:188.226667pt;}
.y1a7{bottom:190.693333pt;}
.yc5{bottom:192.293333pt;}
.y166{bottom:193.760000pt;}
.yc9{bottom:195.013333pt;}
.y15b{bottom:196.133333pt;}
.y103{bottom:196.800000pt;}
.y10c{bottom:198.080000pt;}
.y137{bottom:198.693333pt;}
.y28{bottom:200.386667pt;}
.y14{bottom:202.213333pt;}
.y57{bottom:203.173333pt;}
.y9a{bottom:203.200000pt;}
.y11d{bottom:204.506667pt;}
.y184{bottom:205.786667pt;}
.y6d{bottom:206.240000pt;}
.yce{bottom:206.333333pt;}
.y17d{bottom:206.880000pt;}
.y6c{bottom:207.040000pt;}
.yb9{bottom:207.386667pt;}
.y46{bottom:211.106667pt;}
.y18c{bottom:214.693333pt;}
.y159{bottom:215.333333pt;}
.y27{bottom:217.986667pt;}
.y136{bottom:220.613333pt;}
.yd4{bottom:221.733333pt;}
.y163{bottom:222.560000pt;}
.y7{bottom:224.026667pt;}
.yb8{bottom:226.586667pt;}
.y168{bottom:226.653333pt;}
.y11c{bottom:228.546667pt;}
.y56{bottom:228.960000pt;}
.y17c{bottom:229.280000pt;}
.y116{bottom:232.026667pt;}
.y99{bottom:232.960000pt;}
.ye2{bottom:235.293333pt;}
.y80{bottom:236.986667pt;}
.y1a0{bottom:239.906667pt;}
.y19c{bottom:240.800000pt;}
.y1a2{bottom:240.960000pt;}
.yc4{bottom:241.693333pt;}
.y15f{bottom:241.760000pt;}
.y18b{bottom:241.893333pt;}
.y10b{bottom:242.693333pt;}
.y1e{bottom:245.053333pt;}
.yb7{bottom:245.786667pt;}
.y3a{bottom:247.840000pt;}
.y13{bottom:249.253333pt;}
.y114{bottom:250.373333pt;}
.y135{bottom:251.013333pt;}
.y17b{bottom:251.840000pt;}
.y55{bottom:252.000000pt;}
.y22{bottom:253.533333pt;}
.ye4{bottom:253.760000pt;}
.y167{bottom:255.453333pt;}
.y64{bottom:259.040000pt;}
.y109{bottom:262.080000pt;}
.y69{bottom:265.093333pt;}
.yf5{bottom:266.786667pt;}
.y18a{bottom:269.120000pt;}
.yc3{bottom:269.533333pt;}
.y19b{bottom:269.600000pt;}
.y134{bottom:272.133333pt;}
.y39{bottom:272.640000pt;}
.y1a5{bottom:274.946667pt;}
.y77{bottom:275.106667pt;}
.yf6{bottom:276.773333pt;}
.y191{bottom:276.800000pt;}
.y54{bottom:277.760000pt;}
.y113{bottom:279.173333pt;}
.ya3{bottom:279.840000pt;}
.y17a{bottom:280.986667pt;}
.y12{bottom:282.853333pt;}
.yb6{bottom:284.226667pt;}
.y165{bottom:284.253333pt;}
.y12a{bottom:285.693333pt;}
.y63{bottom:286.240000pt;}
.yff{bottom:286.560000pt;}
.y6{bottom:286.693333pt;}
.y189{bottom:288.320000pt;}
.yc2{bottom:290.693333pt;}
.ye5{bottom:290.786667pt;}
.y108{bottom:290.880000pt;}
.y38{bottom:291.840000pt;}
.y133{bottom:293.280000pt;}
.y76{bottom:294.333333pt;}
.y19a{bottom:298.400000pt;}
.y53{bottom:300.800000pt;}
.y122{bottom:301.213333pt;}
.y179{bottom:303.546667pt;}
.ye1{bottom:305.146667pt;}
.y62{bottom:305.466667pt;}
.y2d{bottom:306.466667pt;}
.y112{bottom:307.973333pt;}
.ya2{bottom:309.626667pt;}
.y129{bottom:309.693333pt;}
.y67{bottom:310.653333pt;}
.y162{bottom:313.053333pt;}
.y37{bottom:313.600000pt;}
.y26{bottom:313.853333pt;}
.y132{bottom:314.400000pt;}
.y188{bottom:315.520000pt;}
.yc1{bottom:318.533333pt;}
.y156{bottom:318.560000pt;}
.y66{bottom:318.653333pt;}
.y178{bottom:319.386667pt;}
.y107{bottom:319.680000pt;}
.yb5{bottom:322.626667pt;}
.y4d{bottom:325.373333pt;}
.y1a4{bottom:326.146667pt;}
.y52{bottom:326.400000pt;}
.y2c{bottom:326.533333pt;}
.y65{bottom:326.653333pt;}
.y199{bottom:327.200000pt;}
.y75{bottom:329.533333pt;}
.y11{bottom:329.920000pt;}
.y25{bottom:331.453333pt;}
.y61{bottom:332.666667pt;}
.y36{bottom:332.826667pt;}
.y4c{bottom:333.373333pt;}
.y128{bottom:333.693333pt;}
.yc6{bottom:334.080000pt;}
.y131{bottom:335.520000pt;}
.y111{bottom:336.800000pt;}
.y14e{bottom:336.826667pt;}
.ya1{bottom:339.226667pt;}
.yc0{bottom:339.653333pt;}
.y68{bottom:340.640000pt;}
.y4b{bottom:341.373333pt;}
.yb4{bottom:341.826667pt;}
.y15e{bottom:341.893333pt;}
.y177{bottom:341.946667pt;}
.y187{bottom:342.720000pt;}
.y146{bottom:344.026667pt;}
.y2b{bottom:344.160000pt;}
.y106{bottom:348.506667pt;}
.y24{bottom:349.053333pt;}
.y51{bottom:349.466667pt;}
.y60{bottom:351.866667pt;}
.y74{bottom:355.453333pt;}
.y35{bottom:355.706667pt;}
.y198{bottom:356.026667pt;}
.y130{bottom:356.640000pt;}
.y127{bottom:357.733333pt;}
.yd7{bottom:358.693333pt;}
.y10{bottom:360.960000pt;}
.yb3{bottom:361.026667pt;}
.y15c{bottom:361.093333pt;}
.y2a{bottom:361.760000pt;}
.y186{bottom:361.920000pt;}
.yd3{bottom:366.266667pt;}
.y23{bottom:366.653333pt;}
.ybf{bottom:367.333333pt;}
.ya0{bottom:368.986667pt;}
.y14d{bottom:370.266667pt;}
.y176{bottom:371.066667pt;}
.ya9{bottom:372.413333pt;}
.ye0{bottom:373.093333pt;}
.y50{bottom:375.226667pt;}
.y1a3{bottom:377.373333pt;}
.y145{bottom:377.506667pt;}
.yd6{bottom:377.893333pt;}
.y8{bottom:378.560000pt;}
.y12f{bottom:378.720000pt;}
.y34{bottom:378.746667pt;}
.y5f{bottom:379.066667pt;}
.yb2{bottom:380.226667pt;}
.y15a{bottom:380.293333pt;}
.y73{bottom:381.213333pt;}
.y126{bottom:381.733333pt;}
.y175{bottom:386.946667pt;}
.ybe{bottom:388.480000pt;}
.yda{bottom:390.973333pt;}
.y21{bottom:395.613333pt;}
.y1a9{bottom:396.893333pt;}
.y6e{bottom:398.560000pt;}
.y138{bottom:400.613333pt;}
.y150{bottom:402.053333pt;}
.y14c{bottom:403.866667pt;}
.y7b{bottom:405.146667pt;}
.y125{bottom:405.733333pt;}
.y72{bottom:407.133333pt;}
.y101{bottom:407.493333pt;}
.yd2{bottom:408.346667pt;}
.y12e{bottom:409.146667pt;}
.y144{bottom:411.106667pt;}
.y97{bottom:412.346667pt;}
.yd5{bottom:413.986667pt;}
.y33{bottom:415.133333pt;}
.yf{bottom:415.773333pt;}
.y174{bottom:416.066667pt;}
.y8e{bottom:416.293333pt;}
.ybd{bottom:416.320000pt;}
.yd9{bottom:416.573333pt;}
.y16a{bottom:419.866667pt;}
.yb1{bottom:420.093333pt;}
.y4f{bottom:420.506667pt;}
.y6a{bottom:420.933333pt;}
.y7a{bottom:422.746667pt;}
.y12c{bottom:424.640000pt;}
.y143{bottom:425.280000pt;}
.y20{bottom:425.533333pt;}
.y153{bottom:425.733333pt;}
.y14b{bottom:426.333333pt;}
.yf9{bottom:427.453333pt;}
.y83{bottom:428.573333pt;}
.ycb{bottom:429.346667pt;}
.y195{bottom:430.853333pt;}
.y12d{bottom:431.066667pt;}
.y197{bottom:431.386667pt;}
.ye8{bottom:431.840000pt;}
.yee{bottom:432.000000pt;}
.y190{bottom:432.666667pt;}
.y100{bottom:436.320000pt;}
.y6b{bottom:437.120000pt;}
.y32{bottom:438.333333pt;}
.ya8{bottom:439.040000pt;}
.y8d{bottom:439.360000pt;}
.y71{bottom:442.560000pt;}
.y1a6{bottom:442.786667pt;}
.y19f{bottom:442.946667pt;}
.y169{bottom:443.066667pt;}
.y4e{bottom:443.706667pt;}
.ye{bottom:443.813333pt;}
.yd1{bottom:445.346667pt;}
.y171{bottom:445.986667pt;}
.ydf{bottom:446.906667pt;}
.y12b{bottom:447.706667pt;}
.y142{bottom:448.320000pt;}
.yaf{bottom:448.346667pt;}
.y96{bottom:448.386667pt;}
.y1f{bottom:448.733333pt;}
.y152{bottom:448.800000pt;}
.y14a{bottom:449.373333pt;}
.yf8{bottom:450.653333pt;}
.y82{bottom:451.613333pt;}
.y11b{bottom:452.160000pt;}
.yca{bottom:452.546667pt;}
.ybb{bottom:453.893333pt;}
.ye7{bottom:455.040000pt;}
.yed{bottom:455.200000pt;}
.yb{bottom:474.213333pt;}
.ya{bottom:486.466667pt;}
.y1b{bottom:486.693333pt;}
.y1a{bottom:499.746667pt;}
.yc{bottom:505.053333pt;}
.y70{bottom:510.400000pt;}
.yd{bottom:510.426667pt;}
.y9{bottom:512.386667pt;}
.y1c{bottom:513.053333pt;}
.y19{bottom:519.133333pt;}
.h16{height:21.006562pt;}
.h42{height:23.296875pt;}
.h15{height:26.735625pt;}
.h2a{height:26.862937pt;}
.h3e{height:27.523125pt;}
.h22{height:29.940625pt;}
.h23{height:30.030000pt;}
.h5a{height:30.682292pt;}
.h20{height:32.442880pt;}
.h3a{height:32.751625pt;}
.h21{height:33.335040pt;}
.h11{height:35.239680pt;}
.h59{height:36.920625pt;}
.hb{height:37.572679pt;}
.h14{height:39.958246pt;}
.h2d{height:41.088000pt;}
.hc{height:41.197568pt;}
.h8{height:41.284687pt;}
.h2f{height:43.286250pt;}
.h3c{height:43.413562pt;}
.h57{height:44.505000pt;}
.h1{height:44.729379pt;}
.h5f{height:44.848658pt;}
.h55{height:45.156250pt;}
.h56{height:45.246562pt;}
.h33{height:47.742188pt;}
.h18{height:48.209920pt;}
.h25{height:48.593750pt;}
.h28{height:49.223680pt;}
.h12{height:49.279500pt;}
.h1a{height:51.461120pt;}
.h2{height:52.482472pt;}
.h1e{height:52.834688pt;}
.h24{height:52.962000pt;}
.h4e{height:53.937500pt;}
.h37{height:54.784000pt;}
.h27{height:55.936000pt;}
.h7{height:56.017500pt;}
.h2e{height:56.047872pt;}
.h5d{height:56.951875pt;}
.h19{height:58.563750pt;}
.h1b{height:58.691063pt;}
.h4b{height:60.288750pt;}
.ha{height:61.252679pt;}
.h13{height:62.464912pt;}
.h4d{height:63.106875pt;}
.h1f{height:63.656250pt;}
.h26{height:63.783562pt;}
.h17{height:65.445120pt;}
.h1d{height:65.531250pt;}
.h53{height:65.662312pt;}
.h50{height:68.876063pt;}
.h4{height:71.931562pt;}
.h3{height:72.058875pt;}
.h31{height:74.477812pt;}
.h32{height:74.605125pt;}
.h3b{height:76.671562pt;}
.h3d{height:77.800320pt;}
.h43{height:77.805813pt;}
.h40{height:77.933312pt;}
.h48{height:79.570312pt;}
.h49{height:79.697625pt;}
.h44{height:80.109125pt;}
.h2b{height:80.786250pt;}
.h4a{height:81.914062pt;}
.h47{height:82.045125pt;}
.h2c{height:82.332917pt;}
.h41{height:83.565813pt;}
.h36{height:83.752250pt;}
.h1c{height:84.662813pt;}
.hd{height:87.156562pt;}
.h34{height:87.287625pt;}
.h30{height:95.484375pt;}
.h46{height:95.611688pt;}
.he{height:98.296875pt;}
.h45{height:98.427937pt;}
.h3f{height:99.744000pt;}
.h35{height:101.115688pt;}
.h38{height:109.437187pt;}
.h58{height:109.568250pt;}
.h9{height:110.747812pt;}
.h6{height:111.673826pt;}
.h29{height:111.999562pt;}
.hf{height:114.679688pt;}
.h10{height:114.810750pt;}
.h4c{height:120.066875pt;}
.h5e{height:120.489143pt;}
.h51{height:134.560000pt;}
.h4f{height:151.345500pt;}
.h5c{height:174.968437pt;}
.h5b{height:175.099500pt;}
.h39{height:209.519812pt;}
.h5{height:222.796875pt;}
.h54{height:268.960000pt;}
.h52{height:375.040000pt;}
.h0{height:540.000000pt;}
.w4{width:88.800000pt;}
.w5{width:98.240000pt;}
.w3{width:101.120000pt;}
.w2{width:143.680000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:4.543986pt;}
.xb0{left:5.791986pt;}
.x94{left:7.200000pt;}
.x41{left:12.319986pt;}
.x4c{left:13.375986pt;}
.x8{left:16.063986pt;}
.x1f{left:17.951986pt;}
.x7{left:19.391986pt;}
.x4e{left:20.799986pt;}
.x9{left:22.399986pt;}
.xb2{left:24.991986pt;}
.x4a{left:27.327986pt;}
.x4d{left:28.735986pt;}
.xb1{left:30.207986pt;}
.x44{left:31.231986pt;}
.x93{left:32.800000pt;}
.x11{left:33.823986pt;}
.x45{left:35.039986pt;}
.x1b{left:36.127986pt;}
.xb{left:37.855986pt;}
.x30{left:39.263986pt;}
.x39{left:41.471986pt;}
.x27{left:43.423986pt;}
.x6b{left:45.631986pt;}
.x53{left:46.623986pt;}
.xc{left:49.663986pt;}
.x23{left:51.263986pt;}
.x36{left:52.447986pt;}
.x9f{left:54.175986pt;}
.x8e{left:55.231986pt;}
.x34{left:56.351986pt;}
.x46{left:59.775986pt;}
.x13{left:60.735986pt;}
.x12{left:63.935986pt;}
.x24{left:65.503986pt;}
.x14{left:67.487986pt;}
.x54{left:68.543986pt;}
.x66{left:70.527986pt;}
.xd{left:72.223986pt;}
.x47{left:73.855986pt;}
.x31{left:75.135986pt;}
.x1c{left:78.527986pt;}
.x55{left:82.623986pt;}
.xa0{left:84.255986pt;}
.x3{left:86.143986pt;}
.x2{left:87.487986pt;}
.xac{left:90.783986pt;}
.x82{left:92.607986pt;}
.xaa{left:93.567986pt;}
.x48{left:95.615986pt;}
.x1d{left:100.287986pt;}
.x74{left:101.759986pt;}
.x42{left:103.967986pt;}
.x7d{left:104.959986pt;}
.x2c{left:106.431986pt;}
.x1e{left:114.527986pt;}
.x79{left:118.687986pt;}
.xa3{left:120.127986pt;}
.x62{left:121.791986pt;}
.x5c{left:123.455986pt;}
.x85{left:130.559986pt;}
.x3f{left:132.159986pt;}
.x8f{left:136.826652pt;}
.x7e{left:141.786652pt;}
.x6c{left:157.306652pt;}
.x52{left:159.173319pt;}
.x3c{left:160.773319pt;}
.x95{left:176.320000pt;}
.x97{left:188.613319pt;}
.x6f{left:198.653319pt;}
.x71{left:202.853319pt;}
.xe{left:204.066652pt;}
.x5{left:207.679986pt;}
.x6{left:213.186652pt;}
.x9e{left:214.693319pt;}
.x4{left:216.226652pt;}
.xa{left:233.946652pt;}
.x96{left:240.613319pt;}
.x98{left:277.280000pt;}
.x7a{left:297.946652pt;}
.x7c{left:299.813319pt;}
.x99{left:317.306652pt;}
.x73{left:326.626652pt;}
.x7b{left:328.026652pt;}
.x69{left:330.239986pt;}
.x77{left:334.693319pt;}
.x18{left:350.466652pt;}
.x1a{left:360.413319pt;}
.x19{left:363.293319pt;}
.x78{left:364.773319pt;}
.x9a{left:365.920000pt;}
.x5a{left:369.853319pt;}
.x68{left:375.999986pt;}
.x9b{left:378.173319pt;}
.x5b{left:383.453319pt;}
.x43{left:392.293319pt;}
.x6d{left:394.586652pt;}
.x65{left:399.906652pt;}
.x3d{left:410.306652pt;}
.x17{left:414.173319pt;}
.xad{left:418.719986pt;}
.xaf{left:423.546652pt;}
.x58{left:427.333319pt;}
.x5d{left:437.506652pt;}
.x1{left:442.813319pt;}
.x2d{left:444.133319pt;}
.x3e{left:453.119986pt;}
.x61{left:454.973319pt;}
.x5e{left:477.279986pt;}
.x9d{left:494.719986pt;}
.x6a{left:497.213319pt;}
.x70{left:503.773319pt;}
.x9c{left:512.479986pt;}
.x2e{left:525.666652pt;}
.x50{left:528.546652pt;}
.x25{left:537.533319pt;}
.x87{left:539.839986pt;}
.x2b{left:540.733319pt;}
.x38{left:542.946652pt;}
.x51{left:546.626652pt;}
.xab{left:556.893319pt;}
.x86{left:564.226652pt;}
.x21{left:571.973319pt;}
.x75{left:573.853319pt;}
.x88{left:575.839986pt;}
.x15{left:577.346652pt;}
.x76{left:586.079986pt;}
.x8d{left:588.159986pt;}
.xb3{left:594.533319pt;}
.x16{left:595.426652pt;}
.x91{left:601.986652pt;}
.xa8{left:610.106652pt;}
.x80{left:612.413319pt;}
.x83{left:614.239986pt;}
.x4b{left:615.999986pt;}
.x4f{left:622.239986pt;}
.xa4{left:634.693319pt;}
.x89{left:639.173319pt;}
.xa9{left:640.186652pt;}
.x90{left:644.933319pt;}
.x7f{left:650.306652pt;}
.xa2{left:652.186652pt;}
.xa5{left:654.426652pt;}
.x59{left:658.626652pt;}
.x60{left:659.546652pt;}
.x84{left:664.319986pt;}
.x3b{left:670.373319pt;}
.xa1{left:672.453319pt;}
.xae{left:676.866652pt;}
.x92{left:677.853319pt;}
.x64{left:679.266652pt;}
.x63{left:681.213319pt;}
.xf{left:683.066652pt;}
.x6e{left:684.613319pt;}
.x32{left:696.506652pt;}
.x22{left:698.266652pt;}
.x49{left:710.079986pt;}
.x35{left:721.053319pt;}
.x56{left:722.973319pt;}
.x29{left:726.173319pt;}
.x28{left:727.973319pt;}
.x57{left:729.919986pt;}
.x26{left:749.026652pt;}
.x3a{left:754.559986pt;}
.x5f{left:761.279986pt;}
.x20{left:769.693319pt;}
.xa7{left:771.519986pt;}
.x81{left:773.599986pt;}
.x8a{left:784.226652pt;}
.x10{left:786.493319pt;}
.x37{left:805.146652pt;}
.x67{left:809.693319pt;}
.x2a{left:813.733319pt;}
.x40{left:841.279986pt;}
.x72{left:849.119986pt;}
.x33{left:888.639986pt;}
.x8b{left:891.199986pt;}
.x8c{left:898.719986pt;}
.xa6{left:915.999986pt;}
}




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