
    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_d6353622eb19f641f476f9fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_b6444275ff3725544e2ffcd5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_860001bc2b32995e02b27705.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.066000;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_4f7b097238b401460aae298c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_bdf11b8210bcc23c1b9b5fba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_a2cca3a8ab958041a3a0ee6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_122dea06f4795bc731db543e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.067000;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_d2e881db5d6502855a33043e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.022000;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_13fd2a7cf84cdc085beae88a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_10353b58abcf62d201f4133d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.861816;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_8739b49a8966d6d55a7669f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_c54a890af91a82c840d8afef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909180;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_f9d9238bfac47a0fbea21533.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.915039;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_a79cce69575c0eba3a15475a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_ad9bfc0c21d83cbb6e2995e7.woff2')format("woff");}.fff{font-family:fff;line-height:1.179000;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_81a19875b92ace26fb29f2d7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_583b17c0c742d02b174d7875.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_bf8a886adece28efcfae58e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919922;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_9f241f47c895cc36430a8beb.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_769c0771c14fdf4e9ee70cfb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_fbd9046f9e5b9eb7ba14274d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.919434;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);}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-0.417312px;}
.ls11{letter-spacing:-0.399168px;}
.ls28{letter-spacing:-0.393120px;}
.ls1a{letter-spacing:-0.362880px;}
.ls35{letter-spacing:-0.356832px;}
.ls23{letter-spacing:-0.344736px;}
.ls19{letter-spacing:-0.338688px;}
.ls39{letter-spacing:-0.326592px;}
.ls2e{letter-spacing:-0.320544px;}
.ls22{letter-spacing:-0.314496px;}
.ls1f{letter-spacing:-0.308448px;}
.ls1e{letter-spacing:-0.302400px;}
.lsb{letter-spacing:-0.296352px;}
.ls17{letter-spacing:-0.290304px;}
.lsf{letter-spacing:-0.284256px;}
.ls1b{letter-spacing:-0.278208px;}
.lsd{letter-spacing:-0.272160px;}
.ls33{letter-spacing:-0.266112px;}
.ls14{letter-spacing:-0.260064px;}
.ls34{letter-spacing:-0.254016px;}
.lse{letter-spacing:-0.247968px;}
.ls27{letter-spacing:-0.241920px;}
.ls18{letter-spacing:-0.235872px;}
.ls15{letter-spacing:-0.229824px;}
.ls12{letter-spacing:-0.223776px;}
.ls2a{letter-spacing:-0.217728px;}
.ls36{letter-spacing:-0.205632px;}
.ls2b{letter-spacing:-0.193536px;}
.ls9{letter-spacing:-0.185472px;}
.ls37{letter-spacing:-0.181440px;}
.ls8{letter-spacing:-0.165600px;}
.ls2d{letter-spacing:-0.163296px;}
.ls7{letter-spacing:-0.152352px;}
.ls16{letter-spacing:-0.145152px;}
.ls10{letter-spacing:-0.139104px;}
.ls38{letter-spacing:-0.133056px;}
.ls2c{letter-spacing:-0.120960px;}
.ls6{letter-spacing:-0.119232px;}
.ls21{letter-spacing:-0.102816px;}
.ls13{letter-spacing:-0.090720px;}
.ls1c{letter-spacing:-0.036000px;}
.ls1d{letter-spacing:-0.021600px;}
.lsc{letter-spacing:-0.007200px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.021600px;}
.ls20{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.116928px;}
.ls31{letter-spacing:0.258912px;}
.ls0{letter-spacing:0.283968px;}
.ls4{letter-spacing:0.300672px;}
.ls1{letter-spacing:0.323712px;}
.ls32{letter-spacing:0.350784px;}
.ls2{letter-spacing:0.493920px;}
.ls24{letter-spacing:2.293920px;}
.ls2f{letter-spacing:7.325280px;}
.ls26{letter-spacing:7.620480px;}
.ls30{letter-spacing:12.908160px;}
.ls25{letter-spacing:14.295168px;}
.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;}
}
.ws0{word-spacing:-22.416768px;}
.ws3d{word-spacing:-18.057024px;}
.wsa{word-spacing:-0.093600px;}
.ws8{word-spacing:-0.072000px;}
.ws6{word-spacing:-0.066240px;}
.ws9{word-spacing:-0.064800px;}
.wsb{word-spacing:-0.060480px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.030240px;}
.ws1e{word-spacing:0.042336px;}
.ws2{word-spacing:0.052992px;}
.ws49{word-spacing:0.072576px;}
.wsf{word-spacing:0.078624px;}
.ws15{word-spacing:0.084672px;}
.ws3{word-spacing:0.086112px;}
.ws4{word-spacing:0.099360px;}
.ws34{word-spacing:0.102816px;}
.ws5{word-spacing:0.119232px;}
.ws48{word-spacing:0.120960px;}
.ws26{word-spacing:0.133056px;}
.ws47{word-spacing:0.145152px;}
.ws27{word-spacing:0.157248px;}
.ws11{word-spacing:0.163296px;}
.ws14{word-spacing:0.169344px;}
.ws17{word-spacing:0.175392px;}
.ws21{word-spacing:0.181440px;}
.wsd{word-spacing:0.187488px;}
.ws45{word-spacing:0.193536px;}
.ws13{word-spacing:0.199584px;}
.ws3f{word-spacing:0.205632px;}
.wsc{word-spacing:0.211680px;}
.ws1b{word-spacing:0.217728px;}
.wse{word-spacing:0.223776px;}
.ws16{word-spacing:0.229824px;}
.ws7{word-spacing:0.235872px;}
.ws1c{word-spacing:0.241920px;}
.ws1d{word-spacing:0.247968px;}
.ws1f{word-spacing:0.254016px;}
.ws3b{word-spacing:0.260064px;}
.ws4a{word-spacing:0.266112px;}
.ws19{word-spacing:0.278208px;}
.ws20{word-spacing:0.284256px;}
.ws46{word-spacing:0.296352px;}
.ws1a{word-spacing:0.302400px;}
.ws22{word-spacing:0.332640px;}
.ws10{word-spacing:0.338688px;}
.ws23{word-spacing:0.356832px;}
.ws28{word-spacing:10.747296px;}
.ws24{word-spacing:10.862208px;}
.ws25{word-spacing:10.928736px;}
.ws39{word-spacing:11.225088px;}
.ws3e{word-spacing:11.473056px;}
.ws37{word-spacing:12.797568px;}
.ws38{word-spacing:12.888288px;}
.ws40{word-spacing:13.148352px;}
.ws41{word-spacing:13.287456px;}
.ws42{word-spacing:13.390272px;}
.ws31{word-spacing:14.234400px;}
.ws30{word-spacing:14.414400px;}
.ws33{word-spacing:14.505984px;}
.ws2e{word-spacing:14.672448px;}
.ws2f{word-spacing:14.678496px;}
.ws32{word-spacing:14.680800px;}
.ws3c{word-spacing:14.714784px;}
.ws29{word-spacing:14.878080px;}
.ws2d{word-spacing:16.057440px;}
.ws2c{word-spacing:16.069536px;}
.ws2b{word-spacing:16.311456px;}
.ws2a{word-spacing:16.317504px;}
.ws43{word-spacing:17.375904px;}
.ws44{word-spacing:17.515008px;}
.ws35{word-spacing:23.992416px;}
.ws36{word-spacing:24.016608px;}
.ws3a{word-spacing:848.088000px;}
.ws4b{word-spacing:850.633920px;}
.ws18{word-spacing:2019.840192px;}
._5{margin-left:-11.257920px;}
._4{margin-left:-9.790848px;}
._6{margin-left:-4.182480px;}
._7{margin-left:-2.673072px;}
._1{margin-left:-1.087056px;}
._2{width:1.059120px;}
._8{width:2.720160px;}
._9{width:3.875040px;}
._a{width:4.932000px;}
._b{width:6.289920px;}
._c{width:7.862400px;}
._d{width:16.251840px;}
._3{width:1655.399232px;}
._0{width:2395.700352px;}
.fc5{color:transparent;}
.fc3{color:rgb(27,70,94);}
.fc2{color:rgb(2,136,149);}
.fc4{color:rgb(173,173,173);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.426150px;}
.y1ce{bottom:3.486150px;}
.y1c8{bottom:3.546150px;}
.y1e0{bottom:3.606150px;}
.y1bc{bottom:3.666150px;}
.y1d8{bottom:3.726150px;}
.y221{bottom:3.786150px;}
.y1d0{bottom:3.846150px;}
.y1ca{bottom:3.906150px;}
.y1c4{bottom:3.966150px;}
.y1be{bottom:4.026150px;}
.y1b7{bottom:4.086150px;}
.y1ee{bottom:4.146150px;}
.y1d2{bottom:4.206150px;}
.y1cc{bottom:4.266150px;}
.y1e2{bottom:4.326150px;}
.y1c0{bottom:4.386150px;}
.y1b9{bottom:4.446150px;}
.y1b3{bottom:4.506150px;}
.y1d4{bottom:4.566150px;}
.y1e7{bottom:4.626150px;}
.y1e4{bottom:4.686150px;}
.y1c2{bottom:4.746150px;}
.y95{bottom:4.806150px;}
.y1b5{bottom:4.866150px;}
.y5a{bottom:4.926150px;}
.y146{bottom:5.106150px;}
.y155{bottom:5.166150px;}
.y71{bottom:5.286150px;}
.y14b{bottom:5.406150px;}
.yd3{bottom:5.466150px;}
.y86{bottom:5.526150px;}
.yb2{bottom:5.946150px;}
.y10c{bottom:6.126150px;}
.yc3{bottom:6.306150px;}
.y159{bottom:6.366150px;}
.y15b{bottom:6.786150px;}
.y15d{bottom:7.326150px;}
.yb4{bottom:7.386150px;}
.y143{bottom:8.826150px;}
.yb0{bottom:14.226150px;}
.y167{bottom:14.346150px;}
.y16f{bottom:15.306150px;}
.ycf{bottom:15.546150px;}
.y177{bottom:15.846150px;}
.y298{bottom:21.126150px;}
.y26a{bottom:21.186150px;}
.y240{bottom:21.246150px;}
.y291{bottom:21.306150px;}
.y284{bottom:21.366150px;}
.y2a6{bottom:21.426150px;}
.y23b{bottom:21.486150px;}
.y28a{bottom:21.546150px;}
.y253{bottom:21.606150px;}
.y27a{bottom:21.666150px;}
.y25d{bottom:21.786150px;}
.y26f{bottom:21.846150px;}
.y29b{bottom:21.906150px;}
.y295{bottom:21.966150px;}
.y23e{bottom:22.086150px;}
.y274{bottom:22.146150px;}
.y243{bottom:22.266150px;}
.y27f{bottom:22.326150px;}
.y287{bottom:22.386150px;}
.y145{bottom:25.986150px;}
.y94{bottom:26.046150px;}
.y14a{bottom:26.286150px;}
.yd2{bottom:26.346150px;}
.y142{bottom:26.466150px;}
.y70{bottom:26.526150px;}
.y85{bottom:26.766150px;}
.yaf{bottom:31.866150px;}
.y166{bottom:31.986150px;}
.y16e{bottom:32.946150px;}
.yce{bottom:33.186150px;}
.y176{bottom:33.486150px;}
.y249{bottom:38.886150px;}
.y23a{bottom:39.126150px;}
.y252{bottom:39.246150px;}
.y279{bottom:39.306150px;}
.y25c{bottom:39.426150px;}
.y242{bottom:39.906150px;}
.y286{bottom:40.026150px;}
.y141{bottom:44.106150px;}
.yc1{bottom:48.786150px;}
.y165{bottom:48.906150px;}
.yae{bottom:49.506150px;}
.y16d{bottom:49.866150px;}
.ycd{bottom:50.106150px;}
.y175{bottom:51.126150px;}
.y59{bottom:55.500000px;}
.y248{bottom:56.526150px;}
.y6b{bottom:57.000000px;}
.y25b{bottom:57.066150px;}
.y26{bottom:57.546150px;}
.y6a{bottom:57.906150px;}
.y140{bottom:61.746150px;}
.yc0{bottom:63.546150px;}
.y164{bottom:63.666150px;}
.y16c{bottom:64.626150px;}
.ycc{bottom:64.866150px;}
.yad{bottom:67.146150px;}
.y174{bottom:68.046150px;}
.y247{bottom:74.166150px;}
.y13f{bottom:79.386150px;}
.ybf{bottom:81.186150px;}
.y163{bottom:81.306150px;}
.y16b{bottom:82.266150px;}
.ycb{bottom:82.506150px;}
.y173{bottom:82.806150px;}
.yac{bottom:84.786150px;}
.y250{bottom:89.586150px;}
.ya1{bottom:94.986150px;}
.y1f6{bottom:96.000000px;}
.y57{bottom:96.066150px;}
.y13e{bottom:97.026150px;}
.ybe{bottom:98.106150px;}
.y162{bottom:98.946150px;}
.yca{bottom:99.426150px;}
.y16a{bottom:99.546150px;}
.y172{bottom:100.086150px;}
.y283{bottom:100.500000px;}
.y10a{bottom:100.746150px;}
.yab{bottom:101.706150px;}
.y24f{bottom:102.000000px;}
.y299{bottom:104.346150px;}
.y25{bottom:107.586150px;}
.ya0{bottom:112.626150px;}
.ybd{bottom:112.866150px;}
.yc4{bottom:114.000000px;}
.yc9{bottom:114.186150px;}
.y13d{bottom:114.306150px;}
.y56{bottom:115.506150px;}
.y161{bottom:115.866150px;}
.yaa{bottom:116.466150px;}
.y169{bottom:117.186150px;}
.y171{bottom:117.726150px;}
.y109{bottom:118.386150px;}
.y297{bottom:118.500000px;}
.y24e{bottom:120.000000px;}
.y24{bottom:129.186150px;}
.y9f{bottom:130.266150px;}
.ybc{bottom:130.506150px;}
.y160{bottom:130.626150px;}
.y1ae{bottom:130.986150px;}
.yc8{bottom:131.466150px;}
.y13c{bottom:131.946150px;}
.y1f5{bottom:132.000000px;}
.ya9{bottom:133.746150px;}
.y282{bottom:135.000000px;}
.y108{bottom:136.026150px;}
.y24d{bottom:138.000000px;}
.y2ab{bottom:139.626150px;}
.y55{bottom:143.946150px;}
.y10d{bottom:147.000000px;}
.ybb{bottom:147.426150px;}
.y9e{bottom:147.546150px;}
.y239{bottom:147.906150px;}
.y15f{bottom:148.266150px;}
.yc7{bottom:149.106150px;}
.y13b{bottom:149.586150px;}
.y23{bottom:149.706150px;}
.y1f4{bottom:150.000000px;}
.ya8{bottom:150.666150px;}
.y1ad{bottom:151.146150px;}
.y281{bottom:153.000000px;}
.y237{bottom:153.306150px;}
.y107{bottom:153.666150px;}
.y2aa{bottom:156.906150px;}
.y24c{bottom:159.786150px;}
.yba{bottom:162.186150px;}
.y54{bottom:163.026150px;}
.y9d{bottom:165.186150px;}
.ya7{bottom:165.426150px;}
.y1f3{bottom:166.500000px;}
.yc6{bottom:166.746150px;}
.y13a{bottom:167.226150px;}
.y1ac{bottom:168.786150px;}
.y22{bottom:170.586150px;}
.y280{bottom:171.000000px;}
.y106{bottom:171.306150px;}
.y24b{bottom:174.000000px;}
.y236{bottom:174.546150px;}
.y238{bottom:177.426150px;}
.yb9{bottom:179.826150px;}
.y9c{bottom:182.826150px;}
.ya6{bottom:183.066150px;}
.yc5{bottom:184.386150px;}
.y1f2{bottom:184.500000px;}
.y139{bottom:184.866150px;}
.y1ab{bottom:186.426150px;}
.y27e{bottom:187.500000px;}
.y105{bottom:188.586150px;}
.y235{bottom:190.500000px;}
.y21{bottom:191.106150px;}
.y296{bottom:192.186150px;}
.y53{bottom:193.986150px;}
.yb8{bottom:196.746150px;}
.y9b{bottom:200.466150px;}
.ya5{bottom:200.706150px;}
.y1f1{bottom:202.500000px;}
.y138{bottom:202.506150px;}
.y1aa{bottom:204.066150px;}
.y294{bottom:205.500000px;}
.y104{bottom:206.226150px;}
.y234{bottom:208.500000px;}
.yb7{bottom:211.506150px;}
.y20{bottom:211.986150px;}
.y9a{bottom:218.106150px;}
.ya4{bottom:218.346150px;}
.y1f0{bottom:219.000000px;}
.y137{bottom:219.786150px;}
.y1a9{bottom:221.706150px;}
.y27d{bottom:223.500000px;}
.y103{bottom:223.866150px;}
.y233{bottom:226.500000px;}
.y2a9{bottom:227.466150px;}
.yb6{bottom:229.146150px;}
.y52{bottom:229.986150px;}
.y1f{bottom:232.506150px;}
.y99{bottom:235.746150px;}
.ya3{bottom:235.986150px;}
.y1ef{bottom:237.000000px;}
.y136{bottom:237.426150px;}
.y1a8{bottom:238.986150px;}
.y27c{bottom:241.500000px;}
.y102{bottom:241.506150px;}
.y232{bottom:243.000000px;}
.y1e{bottom:253.386150px;}
.y1ed{bottom:255.000000px;}
.y135{bottom:255.066150px;}
.y1a7{bottom:256.626150px;}
.y293{bottom:258.000000px;}
.y101{bottom:259.146150px;}
.y231{bottom:261.000000px;}
.y27b{bottom:262.746150px;}
.y51{bottom:265.986150px;}
.y98{bottom:270.666150px;}
.y134{bottom:272.706150px;}
.y1ec{bottom:273.000000px;}
.y1d{bottom:273.906150px;}
.y1a6{bottom:274.266150px;}
.y278{bottom:276.000000px;}
.y100{bottom:276.786150px;}
.y230{bottom:279.000000px;}
.y292{bottom:280.026150px;}
.y97{bottom:288.306150px;}
.y1eb{bottom:289.500000px;}
.y133{bottom:290.346150px;}
.y50{bottom:290.826150px;}
.y1a5{bottom:291.906150px;}
.y290{bottom:294.000000px;}
.yff{bottom:294.066150px;}
.y1c{bottom:294.786150px;}
.y22f{bottom:297.000000px;}
.y96{bottom:305.946150px;}
.y1ea{bottom:307.500000px;}
.y132{bottom:307.986150px;}
.y1a4{bottom:309.546150px;}
.y4f{bottom:311.706150px;}
.y22e{bottom:313.500000px;}
.y1b{bottom:315.306150px;}
.y93{bottom:319.500000px;}
.y1e9{bottom:325.500000px;}
.y131{bottom:325.626150px;}
.y1a3{bottom:327.186150px;}
.y277{bottom:328.500000px;}
.yfe{bottom:329.346150px;}
.y22d{bottom:331.500000px;}
.y4e{bottom:332.226150px;}
.y24a{bottom:335.826150px;}
.y1a{bottom:336.186150px;}
.y130{bottom:342.906150px;}
.y1e8{bottom:343.500000px;}
.y1a2{bottom:344.826150px;}
.y276{bottom:346.500000px;}
.yfd{bottom:346.986150px;}
.y22c{bottom:349.500000px;}
.y4d{bottom:353.106150px;}
.yc2{bottom:354.000000px;}
.y19{bottom:356.706150px;}
.y1e6{bottom:360.000000px;}
.y12f{bottom:360.546150px;}
.y1a1{bottom:362.106150px;}
.y2a8{bottom:364.500000px;}
.yfc{bottom:364.626150px;}
.y22b{bottom:366.000000px;}
.y92{bottom:366.426150px;}
.y275{bottom:368.226150px;}
.y4c{bottom:373.626150px;}
.y18{bottom:377.586150px;}
.y12e{bottom:378.186150px;}
.y1a0{bottom:379.746150px;}
.y273{bottom:381.000000px;}
.yfb{bottom:382.266150px;}
.y22a{bottom:384.000000px;}
.y91{bottom:387.666150px;}
.y1e5{bottom:390.906150px;}
.y4b{bottom:394.506150px;}
.y12d{bottom:395.826150px;}
.y19f{bottom:397.386150px;}
.y17{bottom:398.106150px;}
.yfa{bottom:399.906150px;}
.y229{bottom:402.000000px;}
.y2a7{bottom:403.146150px;}
.y90{bottom:408.546150px;}
.y12c{bottom:413.466150px;}
.y4a{bottom:415.026150px;}
.y272{bottom:417.000000px;}
.yf9{bottom:417.186150px;}
.y16{bottom:418.986150px;}
.y228{bottom:420.000000px;}
.y1e3{bottom:421.500000px;}
.yb5{bottom:426.000000px;}
.y8f{bottom:429.786150px;}
.y12b{bottom:431.106150px;}
.y19e{bottom:432.666150px;}
.yf8{bottom:434.826150px;}
.y271{bottom:435.000000px;}
.y49{bottom:435.906150px;}
.y227{bottom:436.500000px;}
.y1e1{bottom:439.500000px;}
.y15{bottom:439.506150px;}
.y12a{bottom:448.386150px;}
.y19d{bottom:450.306150px;}
.y8e{bottom:451.026150px;}
.y2a5{bottom:451.500000px;}
.yf7{bottom:452.466150px;}
.y226{bottom:454.500000px;}
.y270{bottom:456.066150px;}
.y48{bottom:456.426150px;}
.y170{bottom:457.500000px;}
.y14{bottom:460.386150px;}
.y129{bottom:466.026150px;}
.y19c{bottom:467.586150px;}
.y26e{bottom:469.500000px;}
.yf6{bottom:470.106150px;}
.y8d{bottom:471.906150px;}
.y225{bottom:472.500000px;}
.y1df{bottom:475.500000px;}
.y246{bottom:476.226150px;}
.y47{bottom:477.306150px;}
.y13{bottom:480.906150px;}
.y128{bottom:483.666150px;}
.y19b{bottom:485.226150px;}
.yf5{bottom:487.746150px;}
.y224{bottom:489.000000px;}
.y2a4{bottom:491.346150px;}
.y1de{bottom:492.000000px;}
.y8c{bottom:493.146150px;}
.y46{bottom:497.826150px;}
.y127{bottom:501.306150px;}
.y12{bottom:501.786150px;}
.y19a{bottom:502.866150px;}
.y26d{bottom:504.000000px;}
.yf4{bottom:505.386150px;}
.y223{bottom:507.000000px;}
.y8b{bottom:514.026150px;}
.y45{bottom:518.706150px;}
.y126{bottom:518.946150px;}
.y199{bottom:520.506150px;}
.y26c{bottom:522.000000px;}
.yf3{bottom:522.666150px;}
.y1dd{bottom:523.026150px;}
.y222{bottom:525.000000px;}
.y11{bottom:528.426150px;}
.y1{bottom:531.666150px;}
.y8a{bottom:535.266150px;}
.y125{bottom:536.586150px;}
.y198{bottom:538.146150px;}
.y44{bottom:539.226150px;}
.y2a3{bottom:540.000000px;}
.yf2{bottom:540.306150px;}
.y1dc{bottom:540.666150px;}
.y220{bottom:543.000000px;}
.y26b{bottom:543.906150px;}
.y245{bottom:546.786150px;}
.y1db{bottom:553.500000px;}
.y124{bottom:554.226150px;}
.y197{bottom:555.786150px;}
.y89{bottom:556.506150px;}
.yf1{bottom:557.946150px;}
.y269{bottom:558.000000px;}
.y10{bottom:559.386150px;}
.y43{bottom:560.106150px;}
.y21f{bottom:561.000000px;}
.y1da{bottom:571.500000px;}
.y123{bottom:571.506150px;}
.y196{bottom:573.426150px;}
.yf0{bottom:575.586150px;}
.y88{bottom:576.666150px;}
.y21e{bottom:577.500000px;}
.y2a2{bottom:579.186150px;}
.y42{bottom:580.626150px;}
.y122{bottom:589.146150px;}
.y1d9{bottom:589.500000px;}
.yf{bottom:590.346150px;}
.y195{bottom:590.706150px;}
.y268{bottom:592.500000px;}
.yef{bottom:593.226150px;}
.y87{bottom:594.306150px;}
.y21d{bottom:595.500000px;}
.y41{bottom:601.506150px;}
.y157{bottom:604.386150px;}
.y121{bottom:606.786150px;}
.y84{bottom:607.500000px;}
.y194{bottom:608.346150px;}
.y267{bottom:610.500000px;}
.yee{bottom:610.866150px;}
.y21c{bottom:613.500000px;}
.y244{bottom:616.986150px;}
.ye{bottom:621.666150px;}
.y40{bottom:622.026150px;}
.y120{bottom:623.706150px;}
.y1d7{bottom:624.000000px;}
.y156{bottom:624.186150px;}
.y15c{bottom:625.500000px;}
.y193{bottom:625.986150px;}
.y2a1{bottom:627.000000px;}
.yed{bottom:628.506150px;}
.y21b{bottom:630.000000px;}
.y266{bottom:631.746150px;}
.y154{bottom:634.500000px;}
.y11f{bottom:638.466150px;}
.y3f{bottom:642.906150px;}
.y192{bottom:643.626150px;}
.y265{bottom:645.000000px;}
.yec{bottom:645.786150px;}
.y21a{bottom:648.000000px;}
.yd{bottom:652.626150px;}
.y83{bottom:655.146150px;}
.y11e{bottom:656.106150px;}
.y191{bottom:661.266150px;}
.y264{bottom:663.000000px;}
.y69{bottom:663.066150px;}
.y3e{bottom:663.426150px;}
.y219{bottom:666.000000px;}
.y2a0{bottom:667.026150px;}
.y1d6{bottom:672.786150px;}
.y11d{bottom:673.746150px;}
.y82{bottom:676.386150px;}
.y190{bottom:678.906150px;}
.y263{bottom:681.000000px;}
.yeb{bottom:681.066150px;}
.y153{bottom:681.786150px;}
.y218{bottom:682.500000px;}
.yc{bottom:683.586150px;}
.y3d{bottom:684.306150px;}
.y1d5{bottom:687.000000px;}
.y11c{bottom:691.386150px;}
.y168{bottom:696.000000px;}
.y18f{bottom:696.186150px;}
.y81{bottom:697.626150px;}
.yea{bottom:698.706150px;}
.y217{bottom:700.500000px;}
.y262{bottom:702.306150px;}
.y152{bottom:703.026150px;}
.y1d3{bottom:703.500000px;}
.y3c{bottom:704.826150px;}
.yb3{bottom:705.000000px;}
.y68{bottom:705.186150px;}
.y11b{bottom:708.666150px;}
.yb{bottom:712.746150px;}
.y18e{bottom:713.826150px;}
.y261{bottom:715.500000px;}
.ye9{bottom:716.346150px;}
.y216{bottom:718.500000px;}
.y80{bottom:718.506150px;}
.y1d1{bottom:721.500000px;}
.y241{bottom:722.466150px;}
.y151{bottom:723.906150px;}
.y11a{bottom:725.586150px;}
.y3b{bottom:725.706150px;}
.y67{bottom:726.426150px;}
.y18d{bottom:731.466150px;}
.y260{bottom:733.500000px;}
.ye8{bottom:733.986150px;}
.y215{bottom:736.500000px;}
.ya{bottom:738.666150px;}
.y1cf{bottom:739.500000px;}
.y7f{bottom:739.746150px;}
.y119{bottom:740.346150px;}
.y150{bottom:745.146150px;}
.y3a{bottom:746.226150px;}
.y66{bottom:747.666150px;}
.y18c{bottom:749.106150px;}
.y25f{bottom:750.000000px;}
.ye7{bottom:751.626150px;}
.y214{bottom:753.000000px;}
.y29f{bottom:754.866150px;}
.y1cd{bottom:757.500000px;}
.y118{bottom:757.986150px;}
.y9{bottom:758.826150px;}
.y7e{bottom:760.986150px;}
.y14f{bottom:766.386150px;}
.y18b{bottom:766.746150px;}
.y39{bottom:767.106150px;}
.y29e{bottom:768.000000px;}
.y65{bottom:768.546150px;}
.ye6{bottom:768.906150px;}
.y213{bottom:771.000000px;}
.y25e{bottom:772.506150px;}
.y1cb{bottom:774.000000px;}
.y117{bottom:774.906150px;}
.ya2{bottom:777.000000px;}
.y7d{bottom:781.506150px;}
.y18a{bottom:784.386150px;}
.y8{bottom:785.106150px;}
.y25a{bottom:786.000000px;}
.ye5{bottom:786.546150px;}
.y14e{bottom:787.266150px;}
.y38{bottom:787.626150px;}
.y212{bottom:789.000000px;}
.y116{bottom:789.666150px;}
.y64{bottom:789.786150px;}
.y1c9{bottom:792.000000px;}
.y189{bottom:802.026150px;}
.y7c{bottom:802.386150px;}
.y28f{bottom:804.000000px;}
.ye4{bottom:804.186150px;}
.y211{bottom:805.500000px;}
.y115{bottom:807.306150px;}
.y37{bottom:808.506150px;}
.y1c7{bottom:810.000000px;}
.y23f{bottom:810.306150px;}
.y63{bottom:811.026150px;}
.y188{bottom:819.306150px;}
.y7{bottom:821.106150px;}
.ye3{bottom:821.826150px;}
.y28e{bottom:822.000000px;}
.y7b{bottom:822.906150px;}
.y210{bottom:823.500000px;}
.y114{bottom:824.946150px;}
.y29d{bottom:825.426150px;}
.y36{bottom:829.026150px;}
.y14d{bottom:829.386150px;}
.y187{bottom:836.946150px;}
.y29c{bottom:838.500000px;}
.ye2{bottom:839.466150px;}
.y1c6{bottom:840.186150px;}
.y20f{bottom:841.500000px;}
.y113{bottom:841.866150px;}
.y62{bottom:842.346150px;}
.y28d{bottom:843.066150px;}
.y7a{bottom:843.786150px;}
.y35{bottom:849.906150px;}
.y14c{bottom:850.626150px;}
.y186{bottom:854.586150px;}
.y259{bottom:856.500000px;}
.y112{bottom:856.626150px;}
.ye1{bottom:857.106150px;}
.y1c5{bottom:857.826150px;}
.y20e{bottom:859.500000px;}
.y6{bottom:861.426150px;}
.y15a{bottom:864.000000px;}
.y79{bottom:864.306150px;}
.y34{bottom:870.426150px;}
.y1c3{bottom:871.500000px;}
.y185{bottom:872.226150px;}
.y61{bottom:874.026150px;}
.y111{bottom:874.266150px;}
.ye0{bottom:874.386150px;}
.y258{bottom:874.500000px;}
.y20d{bottom:876.000000px;}
.y149{bottom:880.500000px;}
.y78{bottom:885.186150px;}
.y1c1{bottom:888.000000px;}
.y184{bottom:889.866150px;}
.y28c{bottom:891.000000px;}
.y110{bottom:891.186150px;}
.y33{bottom:891.306150px;}
.ydf{bottom:892.026150px;}
.y20c{bottom:894.000000px;}
.y257{bottom:895.626150px;}
.y23d{bottom:898.506150px;}
.y77{bottom:905.706150px;}
.y10f{bottom:905.946150px;}
.y1bf{bottom:906.000000px;}
.y183{bottom:907.506150px;}
.y256{bottom:909.000000px;}
.yde{bottom:909.666150px;}
.y32{bottom:911.826150px;}
.y20b{bottom:912.000000px;}
.y28b{bottom:913.266150px;}
.y60{bottom:914.706150px;}
.y10e{bottom:923.226150px;}
.y1bd{bottom:924.000000px;}
.y182{bottom:925.146150px;}
.y202{bottom:926.226150px;}
.y76{bottom:926.586150px;}
.y255{bottom:927.000000px;}
.ydd{bottom:927.306150px;}
.y5{bottom:929.106150px;}
.y20a{bottom:930.000000px;}
.y31{bottom:932.706150px;}
.y15e{bottom:936.000000px;}
.y1bb{bottom:942.000000px;}
.y181{bottom:942.426150px;}
.ydc{bottom:944.946150px;}
.y254{bottom:945.000000px;}
.y209{bottom:946.500000px;}
.y75{bottom:947.106150px;}
.y30{bottom:953.226150px;}
.y5f{bottom:955.386150px;}
.y1ba{bottom:958.500000px;}
.y180{bottom:960.066150px;}
.y289{bottom:961.500000px;}
.ydb{bottom:962.586150px;}
.y208{bottom:964.500000px;}
.y2ac{bottom:964.746150px;}
.y201{bottom:965.826150px;}
.y74{bottom:967.986150px;}
.y23c{bottom:968.706150px;}
.y2f{bottom:974.106150px;}
.y1b8{bottom:976.500000px;}
.y17f{bottom:977.706150px;}
.y200{bottom:979.500000px;}
.yda{bottom:980.226150px;}
.y207{bottom:982.500000px;}
.y29a{bottom:983.466150px;}
.y73{bottom:988.506150px;}
.y4{bottom:994.266150px;}
.y1b6{bottom:994.500000px;}
.y2e{bottom:994.626150px;}
.y17e{bottom:995.346150px;}
.y5e{bottom:996.066150px;}
.y1ff{bottom:997.500000px;}
.yd9{bottom:997.506150px;}
.y206{bottom:1000.500000px;}
.y288{bottom:1001.106150px;}
.y1b4{bottom:1011.000000px;}
.y17d{bottom:1012.986150px;}
.y1fe{bottom:1014.000000px;}
.y72{bottom:1014.426150px;}
.yd8{bottom:1015.146150px;}
.y2d{bottom:1015.506150px;}
.y205{bottom:1017.000000px;}
.y1b2{bottom:1029.000000px;}
.y17c{bottom:1030.626150px;}
.y1fd{bottom:1032.000000px;}
.yd7{bottom:1032.786150px;}
.y204{bottom:1035.000000px;}
.y2c{bottom:1036.026150px;}
.y5d{bottom:1036.746150px;}
.y17b{bottom:1047.906150px;}
.y1fc{bottom:1050.000000px;}
.yd6{bottom:1050.426150px;}
.y3{bottom:1052.946150px;}
.y203{bottom:1053.000000px;}
.y6f{bottom:1054.500000px;}
.y2b{bottom:1056.906150px;}
.y1b1{bottom:1060.146150px;}
.yb1{bottom:1065.000000px;}
.y17a{bottom:1065.546150px;}
.y1fb{bottom:1068.000000px;}
.yd5{bottom:1068.066150px;}
.y251{bottom:1071.666150px;}
.y2a{bottom:1077.426150px;}
.y179{bottom:1083.186150px;}
.y1fa{bottom:1084.500000px;}
.yd4{bottom:1084.986150px;}
.y148{bottom:1085.706150px;}
.y1b0{bottom:1086.786150px;}
.yd1{bottom:1095.000000px;}
.y29{bottom:1098.306150px;}
.y178{bottom:1101.546150px;}
.y6e{bottom:1102.266150px;}
.y1f9{bottom:1102.500000px;}
.y147{bottom:1102.626150px;}
.y1af{bottom:1104.426150px;}
.y285{bottom:1106.586150px;}
.y5c{bottom:1107.666150px;}
.y2{bottom:1111.266150px;}
.y144{bottom:1113.000000px;}
.y28{bottom:1118.826150px;}
.y1f8{bottom:1120.500000px;}
.y10b{bottom:1123.500000px;}
.y5b{bottom:1131.786150px;}
.y6d{bottom:1132.146150px;}
.y158{bottom:1135.500000px;}
.y1f7{bottom:1137.000000px;}
.y27{bottom:1139.706150px;}
.yd0{bottom:1141.866150px;}
.y58{bottom:1195.146150px;}
.h13{height:18.000000px;}
.hf{height:19.500000px;}
.h1a{height:25.500000px;}
.h1b{height:27.000000px;}
.h19{height:31.672266px;}
.h23{height:36.000000px;}
.h22{height:37.500000px;}
.h10{height:40.310156px;}
.h16{height:42.406875px;}
.h7{height:42.908906px;}
.h15{height:43.500000px;}
.h17{height:45.000000px;}
.hd{height:46.316250px;}
.he{height:46.445625px;}
.h3{height:47.988281px;}
.hc{height:49.218750px;}
.h12{height:50.449219px;}
.h21{height:54.000000px;}
.ha{height:55.008000px;}
.h25{height:55.500000px;}
.h8{height:55.666406px;}
.h9{height:57.672000px;}
.h6{height:63.809280px;}
.hb{height:67.536000px;}
.h26{height:72.000000px;}
.h11{height:76.253760px;}
.h24{height:88.500000px;}
.h4{height:108.864000px;}
.h20{height:144.000000px;}
.h5{height:144.180000px;}
.h1f{height:174.000000px;}
.h1d{height:210.000000px;}
.h1c{height:253.500000px;}
.h18{height:261.000000px;}
.h1e{height:943.500000px;}
.h14{height:1245.000000px;}
.h2{height:1257.000000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:4.500000px;}
.w3{width:9.000000px;}
.w31{width:18.000000px;}
.w1f{width:31.500000px;}
.w18{width:33.000000px;}
.w2f{width:34.500000px;}
.w3e{width:36.000000px;}
.wc{width:54.000000px;}
.wf{width:57.000000px;}
.w13{width:64.500000px;}
.w2b{width:73.500000px;}
.w14{width:75.000000px;}
.w1d{width:76.500000px;}
.w2c{width:82.500000px;}
.w29{width:84.000000px;}
.w1e{width:85.500000px;}
.w19{width:87.000000px;}
.w20{width:88.500000px;}
.w25{width:90.000000px;}
.w34{width:91.500000px;}
.w2d{width:93.000000px;}
.wd{width:99.000000px;}
.wa{width:100.500000px;}
.w15{width:127.500000px;}
.w10{width:129.000000px;}
.w12{width:139.500000px;}
.w17{width:150.000000px;}
.w39{width:174.000000px;}
.w22{width:184.500000px;}
.w3c{width:192.000000px;}
.w33{width:193.500000px;}
.w24{width:195.000000px;}
.w1c{width:196.500000px;}
.w30{width:198.000000px;}
.w35{width:205.500000px;}
.w3b{width:207.000000px;}
.w27{width:208.500000px;}
.w1b{width:210.000000px;}
.w23{width:211.500000px;}
.w32{width:213.000000px;}
.w37{width:214.500000px;}
.w3d{width:216.000000px;}
.w21{width:222.000000px;}
.w38{width:234.000000px;}
.w11{width:297.000000px;}
.w2a{width:328.500000px;}
.w16{width:343.500000px;}
.wb{width:529.500000px;}
.we{width:531.000000px;}
.w2e{width:558.000000px;}
.w3a{width:559.500000px;}
.w26{width:561.000000px;}
.w28{width:562.500000px;}
.w1a{width:564.000000px;}
.w36{width:567.000000px;}
.w9{width:661.500000px;}
.w6{width:672.000000px;}
.w7{width:673.500000px;}
.w8{width:675.000000px;}
.w5{width:681.000000px;}
.w4{width:874.913250px;}
.w0{width:892.913250px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.348658px;}
.x20{left:9.368550px;}
.x17{left:10.748442px;}
.xd{left:11.828406px;}
.x8{left:18.000000px;}
.x1c{left:22.067910px;}
.x2a{left:23.675190px;}
.x26{left:28.797870px;}
.x25{left:32.950830px;}
.x9{left:88.568622px;}
.x2{left:106.568622px;}
.x10{left:108.000000px;}
.xc{left:109.500000px;}
.x13{left:115.500000px;}
.x31{left:136.500000px;}
.x2c{left:138.000000px;}
.x3c{left:139.500000px;}
.x44{left:141.000000px;}
.x1f{left:162.000000px;}
.x1d{left:204.000000px;}
.x1a{left:205.500000px;}
.x3f{left:220.500000px;}
.x16{left:221.714130px;}
.x2d{left:223.500000px;}
.x35{left:225.000000px;}
.x34{left:226.500000px;}
.x42{left:228.000000px;}
.x39{left:229.500000px;}
.x28{left:232.500000px;}
.x1e{left:239.895018px;}
.x14{left:245.657358px;}
.x15{left:257.780010px;}
.x11{left:263.964978px;}
.x27{left:266.438358px;}
.xe{left:270.546150px;}
.x18{left:272.150550px;}
.x12{left:280.288830px;}
.x19{left:281.936790px;}
.xf{left:283.993590px;}
.x21{left:289.500000px;}
.x36{left:306.000000px;}
.x3{left:311.377230px;}
.x4{left:313.208298px;}
.x2b{left:339.475482px;}
.x2e{left:432.000000px;}
.x33{left:433.500000px;}
.x43{left:435.000000px;}
.x3a{left:436.500000px;}
.x1{left:438.165990px;}
.x32{left:444.000000px;}
.x40{left:457.500000px;}
.x5{left:514.877670px;}
.xa{left:568.707030px;}
.x29{left:574.500000px;}
.x22{left:585.000000px;}
.x2f{left:627.000000px;}
.x3e{left:628.500000px;}
.x3b{left:630.000000px;}
.x37{left:633.000000px;}
.x30{left:702.000000px;}
.x41{left:703.500000px;}
.x38{left:705.000000px;}
.x24{left:712.500000px;}
.x23{left:723.000000px;}
.x1b{left:733.500000px;}
.x3d{left:769.500000px;}
.x7{left:778.500000px;}
.x6{left:783.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.370944pt;}
.ls11{letter-spacing:-0.354816pt;}
.ls28{letter-spacing:-0.349440pt;}
.ls1a{letter-spacing:-0.322560pt;}
.ls35{letter-spacing:-0.317184pt;}
.ls23{letter-spacing:-0.306432pt;}
.ls19{letter-spacing:-0.301056pt;}
.ls39{letter-spacing:-0.290304pt;}
.ls2e{letter-spacing:-0.284928pt;}
.ls22{letter-spacing:-0.279552pt;}
.ls1f{letter-spacing:-0.274176pt;}
.ls1e{letter-spacing:-0.268800pt;}
.lsb{letter-spacing:-0.263424pt;}
.ls17{letter-spacing:-0.258048pt;}
.lsf{letter-spacing:-0.252672pt;}
.ls1b{letter-spacing:-0.247296pt;}
.lsd{letter-spacing:-0.241920pt;}
.ls33{letter-spacing:-0.236544pt;}
.ls14{letter-spacing:-0.231168pt;}
.ls34{letter-spacing:-0.225792pt;}
.lse{letter-spacing:-0.220416pt;}
.ls27{letter-spacing:-0.215040pt;}
.ls18{letter-spacing:-0.209664pt;}
.ls15{letter-spacing:-0.204288pt;}
.ls12{letter-spacing:-0.198912pt;}
.ls2a{letter-spacing:-0.193536pt;}
.ls36{letter-spacing:-0.182784pt;}
.ls2b{letter-spacing:-0.172032pt;}
.ls9{letter-spacing:-0.164864pt;}
.ls37{letter-spacing:-0.161280pt;}
.ls8{letter-spacing:-0.147200pt;}
.ls2d{letter-spacing:-0.145152pt;}
.ls7{letter-spacing:-0.135424pt;}
.ls16{letter-spacing:-0.129024pt;}
.ls10{letter-spacing:-0.123648pt;}
.ls38{letter-spacing:-0.118272pt;}
.ls2c{letter-spacing:-0.107520pt;}
.ls6{letter-spacing:-0.105984pt;}
.ls21{letter-spacing:-0.091392pt;}
.ls13{letter-spacing:-0.080640pt;}
.ls1c{letter-spacing:-0.032000pt;}
.ls1d{letter-spacing:-0.019200pt;}
.lsc{letter-spacing:-0.006400pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.019200pt;}
.ls20{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.103936pt;}
.ls31{letter-spacing:0.230144pt;}
.ls0{letter-spacing:0.252416pt;}
.ls4{letter-spacing:0.267264pt;}
.ls1{letter-spacing:0.287744pt;}
.ls32{letter-spacing:0.311808pt;}
.ls2{letter-spacing:0.439040pt;}
.ls24{letter-spacing:2.039040pt;}
.ls2f{letter-spacing:6.511360pt;}
.ls26{letter-spacing:6.773760pt;}
.ls30{letter-spacing:11.473920pt;}
.ls25{letter-spacing:12.706816pt;}
.ws0{word-spacing:-19.926016pt;}
.ws3d{word-spacing:-16.050688pt;}
.wsa{word-spacing:-0.083200pt;}
.ws8{word-spacing:-0.064000pt;}
.ws6{word-spacing:-0.058880pt;}
.ws9{word-spacing:-0.057600pt;}
.wsb{word-spacing:-0.053760pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.026880pt;}
.ws1e{word-spacing:0.037632pt;}
.ws2{word-spacing:0.047104pt;}
.ws49{word-spacing:0.064512pt;}
.wsf{word-spacing:0.069888pt;}
.ws15{word-spacing:0.075264pt;}
.ws3{word-spacing:0.076544pt;}
.ws4{word-spacing:0.088320pt;}
.ws34{word-spacing:0.091392pt;}
.ws5{word-spacing:0.105984pt;}
.ws48{word-spacing:0.107520pt;}
.ws26{word-spacing:0.118272pt;}
.ws47{word-spacing:0.129024pt;}
.ws27{word-spacing:0.139776pt;}
.ws11{word-spacing:0.145152pt;}
.ws14{word-spacing:0.150528pt;}
.ws17{word-spacing:0.155904pt;}
.ws21{word-spacing:0.161280pt;}
.wsd{word-spacing:0.166656pt;}
.ws45{word-spacing:0.172032pt;}
.ws13{word-spacing:0.177408pt;}
.ws3f{word-spacing:0.182784pt;}
.wsc{word-spacing:0.188160pt;}
.ws1b{word-spacing:0.193536pt;}
.wse{word-spacing:0.198912pt;}
.ws16{word-spacing:0.204288pt;}
.ws7{word-spacing:0.209664pt;}
.ws1c{word-spacing:0.215040pt;}
.ws1d{word-spacing:0.220416pt;}
.ws1f{word-spacing:0.225792pt;}
.ws3b{word-spacing:0.231168pt;}
.ws4a{word-spacing:0.236544pt;}
.ws19{word-spacing:0.247296pt;}
.ws20{word-spacing:0.252672pt;}
.ws46{word-spacing:0.263424pt;}
.ws1a{word-spacing:0.268800pt;}
.ws22{word-spacing:0.295680pt;}
.ws10{word-spacing:0.301056pt;}
.ws23{word-spacing:0.317184pt;}
.ws28{word-spacing:9.553152pt;}
.ws24{word-spacing:9.655296pt;}
.ws25{word-spacing:9.714432pt;}
.ws39{word-spacing:9.977856pt;}
.ws3e{word-spacing:10.198272pt;}
.ws37{word-spacing:11.375616pt;}
.ws38{word-spacing:11.456256pt;}
.ws40{word-spacing:11.687424pt;}
.ws41{word-spacing:11.811072pt;}
.ws42{word-spacing:11.902464pt;}
.ws31{word-spacing:12.652800pt;}
.ws30{word-spacing:12.812800pt;}
.ws33{word-spacing:12.894208pt;}
.ws2e{word-spacing:13.042176pt;}
.ws2f{word-spacing:13.047552pt;}
.ws32{word-spacing:13.049600pt;}
.ws3c{word-spacing:13.079808pt;}
.ws29{word-spacing:13.224960pt;}
.ws2d{word-spacing:14.273280pt;}
.ws2c{word-spacing:14.284032pt;}
.ws2b{word-spacing:14.499072pt;}
.ws2a{word-spacing:14.504448pt;}
.ws43{word-spacing:15.445248pt;}
.ws44{word-spacing:15.568896pt;}
.ws35{word-spacing:21.326592pt;}
.ws36{word-spacing:21.348096pt;}
.ws3a{word-spacing:753.856000pt;}
.ws4b{word-spacing:756.119040pt;}
.ws18{word-spacing:1795.413504pt;}
._5{margin-left:-10.007040pt;}
._4{margin-left:-8.702976pt;}
._6{margin-left:-3.717760pt;}
._7{margin-left:-2.376064pt;}
._1{margin-left:-0.966272pt;}
._2{width:0.941440pt;}
._8{width:2.417920pt;}
._9{width:3.444480pt;}
._a{width:4.384000pt;}
._b{width:5.591040pt;}
._c{width:6.988800pt;}
._d{width:14.446080pt;}
._3{width:1471.465984pt;}
._0{width:2129.511424pt;}
.fs7{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:3.045467pt;}
.y1ce{bottom:3.098800pt;}
.y1c8{bottom:3.152133pt;}
.y1e0{bottom:3.205467pt;}
.y1bc{bottom:3.258800pt;}
.y1d8{bottom:3.312133pt;}
.y221{bottom:3.365467pt;}
.y1d0{bottom:3.418800pt;}
.y1ca{bottom:3.472133pt;}
.y1c4{bottom:3.525467pt;}
.y1be{bottom:3.578800pt;}
.y1b7{bottom:3.632133pt;}
.y1ee{bottom:3.685467pt;}
.y1d2{bottom:3.738800pt;}
.y1cc{bottom:3.792133pt;}
.y1e2{bottom:3.845467pt;}
.y1c0{bottom:3.898800pt;}
.y1b9{bottom:3.952133pt;}
.y1b3{bottom:4.005467pt;}
.y1d4{bottom:4.058800pt;}
.y1e7{bottom:4.112133pt;}
.y1e4{bottom:4.165467pt;}
.y1c2{bottom:4.218800pt;}
.y95{bottom:4.272133pt;}
.y1b5{bottom:4.325467pt;}
.y5a{bottom:4.378800pt;}
.y146{bottom:4.538800pt;}
.y155{bottom:4.592133pt;}
.y71{bottom:4.698800pt;}
.y14b{bottom:4.805467pt;}
.yd3{bottom:4.858800pt;}
.y86{bottom:4.912133pt;}
.yb2{bottom:5.285467pt;}
.y10c{bottom:5.445467pt;}
.yc3{bottom:5.605467pt;}
.y159{bottom:5.658800pt;}
.y15b{bottom:6.032133pt;}
.y15d{bottom:6.512133pt;}
.yb4{bottom:6.565467pt;}
.y143{bottom:7.845467pt;}
.yb0{bottom:12.645467pt;}
.y167{bottom:12.752133pt;}
.y16f{bottom:13.605467pt;}
.ycf{bottom:13.818800pt;}
.y177{bottom:14.085467pt;}
.y298{bottom:18.778800pt;}
.y26a{bottom:18.832133pt;}
.y240{bottom:18.885467pt;}
.y291{bottom:18.938800pt;}
.y284{bottom:18.992133pt;}
.y2a6{bottom:19.045467pt;}
.y23b{bottom:19.098800pt;}
.y28a{bottom:19.152133pt;}
.y253{bottom:19.205467pt;}
.y27a{bottom:19.258800pt;}
.y25d{bottom:19.365467pt;}
.y26f{bottom:19.418800pt;}
.y29b{bottom:19.472133pt;}
.y295{bottom:19.525467pt;}
.y23e{bottom:19.632133pt;}
.y274{bottom:19.685467pt;}
.y243{bottom:19.792133pt;}
.y27f{bottom:19.845467pt;}
.y287{bottom:19.898800pt;}
.y145{bottom:23.098800pt;}
.y94{bottom:23.152133pt;}
.y14a{bottom:23.365467pt;}
.yd2{bottom:23.418800pt;}
.y142{bottom:23.525467pt;}
.y70{bottom:23.578800pt;}
.y85{bottom:23.792133pt;}
.yaf{bottom:28.325467pt;}
.y166{bottom:28.432133pt;}
.y16e{bottom:29.285467pt;}
.yce{bottom:29.498800pt;}
.y176{bottom:29.765467pt;}
.y249{bottom:34.565467pt;}
.y23a{bottom:34.778800pt;}
.y252{bottom:34.885467pt;}
.y279{bottom:34.938800pt;}
.y25c{bottom:35.045467pt;}
.y242{bottom:35.472133pt;}
.y286{bottom:35.578800pt;}
.y141{bottom:39.205467pt;}
.yc1{bottom:43.365467pt;}
.y165{bottom:43.472133pt;}
.yae{bottom:44.005467pt;}
.y16d{bottom:44.325467pt;}
.ycd{bottom:44.538800pt;}
.y175{bottom:45.445467pt;}
.y59{bottom:49.333333pt;}
.y248{bottom:50.245467pt;}
.y6b{bottom:50.666667pt;}
.y25b{bottom:50.725467pt;}
.y26{bottom:51.152133pt;}
.y6a{bottom:51.472133pt;}
.y140{bottom:54.885467pt;}
.yc0{bottom:56.485467pt;}
.y164{bottom:56.592133pt;}
.y16c{bottom:57.445467pt;}
.ycc{bottom:57.658800pt;}
.yad{bottom:59.685467pt;}
.y174{bottom:60.485467pt;}
.y247{bottom:65.925467pt;}
.y13f{bottom:70.565467pt;}
.ybf{bottom:72.165467pt;}
.y163{bottom:72.272133pt;}
.y16b{bottom:73.125467pt;}
.ycb{bottom:73.338800pt;}
.y173{bottom:73.605467pt;}
.yac{bottom:75.365467pt;}
.y250{bottom:79.632133pt;}
.ya1{bottom:84.432133pt;}
.y1f6{bottom:85.333333pt;}
.y57{bottom:85.392133pt;}
.y13e{bottom:86.245467pt;}
.ybe{bottom:87.205467pt;}
.y162{bottom:87.952133pt;}
.yca{bottom:88.378800pt;}
.y16a{bottom:88.485467pt;}
.y172{bottom:88.965467pt;}
.y283{bottom:89.333333pt;}
.y10a{bottom:89.552133pt;}
.yab{bottom:90.405467pt;}
.y24f{bottom:90.666667pt;}
.y299{bottom:92.752133pt;}
.y25{bottom:95.632133pt;}
.ya0{bottom:100.112133pt;}
.ybd{bottom:100.325467pt;}
.yc4{bottom:101.333333pt;}
.yc9{bottom:101.498800pt;}
.y13d{bottom:101.605467pt;}
.y56{bottom:102.672133pt;}
.y161{bottom:102.992133pt;}
.yaa{bottom:103.525467pt;}
.y169{bottom:104.165467pt;}
.y171{bottom:104.645467pt;}
.y109{bottom:105.232133pt;}
.y297{bottom:105.333333pt;}
.y24e{bottom:106.666667pt;}
.y24{bottom:114.832133pt;}
.y9f{bottom:115.792133pt;}
.ybc{bottom:116.005467pt;}
.y160{bottom:116.112133pt;}
.y1ae{bottom:116.432133pt;}
.yc8{bottom:116.858800pt;}
.y13c{bottom:117.285467pt;}
.y1f5{bottom:117.333333pt;}
.ya9{bottom:118.885467pt;}
.y282{bottom:120.000000pt;}
.y108{bottom:120.912133pt;}
.y24d{bottom:122.666667pt;}
.y2ab{bottom:124.112133pt;}
.y55{bottom:127.952133pt;}
.y10d{bottom:130.666667pt;}
.ybb{bottom:131.045467pt;}
.y9e{bottom:131.152133pt;}
.y239{bottom:131.472133pt;}
.y15f{bottom:131.792133pt;}
.yc7{bottom:132.538800pt;}
.y13b{bottom:132.965467pt;}
.y23{bottom:133.072133pt;}
.y1f4{bottom:133.333333pt;}
.ya8{bottom:133.925467pt;}
.y1ad{bottom:134.352133pt;}
.y281{bottom:136.000000pt;}
.y237{bottom:136.272133pt;}
.y107{bottom:136.592133pt;}
.y2aa{bottom:139.472133pt;}
.y24c{bottom:142.032133pt;}
.yba{bottom:144.165467pt;}
.y54{bottom:144.912133pt;}
.y9d{bottom:146.832133pt;}
.ya7{bottom:147.045467pt;}
.y1f3{bottom:148.000000pt;}
.yc6{bottom:148.218800pt;}
.y13a{bottom:148.645467pt;}
.y1ac{bottom:150.032133pt;}
.y22{bottom:151.632133pt;}
.y280{bottom:152.000000pt;}
.y106{bottom:152.272133pt;}
.y24b{bottom:154.666667pt;}
.y236{bottom:155.152133pt;}
.y238{bottom:157.712133pt;}
.yb9{bottom:159.845467pt;}
.y9c{bottom:162.512133pt;}
.ya6{bottom:162.725467pt;}
.yc5{bottom:163.898800pt;}
.y1f2{bottom:164.000000pt;}
.y139{bottom:164.325467pt;}
.y1ab{bottom:165.712133pt;}
.y27e{bottom:166.666667pt;}
.y105{bottom:167.632133pt;}
.y235{bottom:169.333333pt;}
.y21{bottom:169.872133pt;}
.y296{bottom:170.832133pt;}
.y53{bottom:172.432133pt;}
.yb8{bottom:174.885467pt;}
.y9b{bottom:178.192133pt;}
.ya5{bottom:178.405467pt;}
.y1f1{bottom:180.000000pt;}
.y138{bottom:180.005467pt;}
.y1aa{bottom:181.392133pt;}
.y294{bottom:182.666667pt;}
.y104{bottom:183.312133pt;}
.y234{bottom:185.333333pt;}
.yb7{bottom:188.005467pt;}
.y20{bottom:188.432133pt;}
.y9a{bottom:193.872133pt;}
.ya4{bottom:194.085467pt;}
.y1f0{bottom:194.666667pt;}
.y137{bottom:195.365467pt;}
.y1a9{bottom:197.072133pt;}
.y27d{bottom:198.666667pt;}
.y103{bottom:198.992133pt;}
.y233{bottom:201.333333pt;}
.y2a9{bottom:202.192133pt;}
.yb6{bottom:203.685467pt;}
.y52{bottom:204.432133pt;}
.y1f{bottom:206.672133pt;}
.y99{bottom:209.552133pt;}
.ya3{bottom:209.765467pt;}
.y1ef{bottom:210.666667pt;}
.y136{bottom:211.045467pt;}
.y1a8{bottom:212.432133pt;}
.y27c{bottom:214.666667pt;}
.y102{bottom:214.672133pt;}
.y232{bottom:216.000000pt;}
.y1e{bottom:225.232133pt;}
.y1ed{bottom:226.666667pt;}
.y135{bottom:226.725467pt;}
.y1a7{bottom:228.112133pt;}
.y293{bottom:229.333333pt;}
.y101{bottom:230.352133pt;}
.y231{bottom:232.000000pt;}
.y27b{bottom:233.552133pt;}
.y51{bottom:236.432133pt;}
.y98{bottom:240.592133pt;}
.y134{bottom:242.405467pt;}
.y1ec{bottom:242.666667pt;}
.y1d{bottom:243.472133pt;}
.y1a6{bottom:243.792133pt;}
.y278{bottom:245.333333pt;}
.y100{bottom:246.032133pt;}
.y230{bottom:248.000000pt;}
.y292{bottom:248.912133pt;}
.y97{bottom:256.272133pt;}
.y1eb{bottom:257.333333pt;}
.y133{bottom:258.085467pt;}
.y50{bottom:258.512133pt;}
.y1a5{bottom:259.472133pt;}
.y290{bottom:261.333333pt;}
.yff{bottom:261.392133pt;}
.y1c{bottom:262.032133pt;}
.y22f{bottom:264.000000pt;}
.y96{bottom:271.952133pt;}
.y1ea{bottom:273.333333pt;}
.y132{bottom:273.765467pt;}
.y1a4{bottom:275.152133pt;}
.y4f{bottom:277.072133pt;}
.y22e{bottom:278.666667pt;}
.y1b{bottom:280.272133pt;}
.y93{bottom:284.000000pt;}
.y1e9{bottom:289.333333pt;}
.y131{bottom:289.445467pt;}
.y1a3{bottom:290.832133pt;}
.y277{bottom:292.000000pt;}
.yfe{bottom:292.752133pt;}
.y22d{bottom:294.666667pt;}
.y4e{bottom:295.312133pt;}
.y24a{bottom:298.512133pt;}
.y1a{bottom:298.832133pt;}
.y130{bottom:304.805467pt;}
.y1e8{bottom:305.333333pt;}
.y1a2{bottom:306.512133pt;}
.y276{bottom:308.000000pt;}
.yfd{bottom:308.432133pt;}
.y22c{bottom:310.666667pt;}
.y4d{bottom:313.872133pt;}
.yc2{bottom:314.666667pt;}
.y19{bottom:317.072133pt;}
.y1e6{bottom:320.000000pt;}
.y12f{bottom:320.485467pt;}
.y1a1{bottom:321.872133pt;}
.y2a8{bottom:324.000000pt;}
.yfc{bottom:324.112133pt;}
.y22b{bottom:325.333333pt;}
.y92{bottom:325.712133pt;}
.y275{bottom:327.312133pt;}
.y4c{bottom:332.112133pt;}
.y18{bottom:335.632133pt;}
.y12e{bottom:336.165467pt;}
.y1a0{bottom:337.552133pt;}
.y273{bottom:338.666667pt;}
.yfb{bottom:339.792133pt;}
.y22a{bottom:341.333333pt;}
.y91{bottom:344.592133pt;}
.y1e5{bottom:347.472133pt;}
.y4b{bottom:350.672133pt;}
.y12d{bottom:351.845467pt;}
.y19f{bottom:353.232133pt;}
.y17{bottom:353.872133pt;}
.yfa{bottom:355.472133pt;}
.y229{bottom:357.333333pt;}
.y2a7{bottom:358.352133pt;}
.y90{bottom:363.152133pt;}
.y12c{bottom:367.525467pt;}
.y4a{bottom:368.912133pt;}
.y272{bottom:370.666667pt;}
.yf9{bottom:370.832133pt;}
.y16{bottom:372.432133pt;}
.y228{bottom:373.333333pt;}
.y1e3{bottom:374.666667pt;}
.yb5{bottom:378.666667pt;}
.y8f{bottom:382.032133pt;}
.y12b{bottom:383.205467pt;}
.y19e{bottom:384.592133pt;}
.yf8{bottom:386.512133pt;}
.y271{bottom:386.666667pt;}
.y49{bottom:387.472133pt;}
.y227{bottom:388.000000pt;}
.y1e1{bottom:390.666667pt;}
.y15{bottom:390.672133pt;}
.y12a{bottom:398.565467pt;}
.y19d{bottom:400.272133pt;}
.y8e{bottom:400.912133pt;}
.y2a5{bottom:401.333333pt;}
.yf7{bottom:402.192133pt;}
.y226{bottom:404.000000pt;}
.y270{bottom:405.392133pt;}
.y48{bottom:405.712133pt;}
.y170{bottom:406.666667pt;}
.y14{bottom:409.232133pt;}
.y129{bottom:414.245467pt;}
.y19c{bottom:415.632133pt;}
.y26e{bottom:417.333333pt;}
.yf6{bottom:417.872133pt;}
.y8d{bottom:419.472133pt;}
.y225{bottom:420.000000pt;}
.y1df{bottom:422.666667pt;}
.y246{bottom:423.312133pt;}
.y47{bottom:424.272133pt;}
.y13{bottom:427.472133pt;}
.y128{bottom:429.925467pt;}
.y19b{bottom:431.312133pt;}
.yf5{bottom:433.552133pt;}
.y224{bottom:434.666667pt;}
.y2a4{bottom:436.752133pt;}
.y1de{bottom:437.333333pt;}
.y8c{bottom:438.352133pt;}
.y46{bottom:442.512133pt;}
.y127{bottom:445.605467pt;}
.y12{bottom:446.032133pt;}
.y19a{bottom:446.992133pt;}
.y26d{bottom:448.000000pt;}
.yf4{bottom:449.232133pt;}
.y223{bottom:450.666667pt;}
.y8b{bottom:456.912133pt;}
.y45{bottom:461.072133pt;}
.y126{bottom:461.285467pt;}
.y199{bottom:462.672133pt;}
.y26c{bottom:464.000000pt;}
.yf3{bottom:464.592133pt;}
.y1dd{bottom:464.912133pt;}
.y222{bottom:466.666667pt;}
.y11{bottom:469.712133pt;}
.y1{bottom:472.592133pt;}
.y8a{bottom:475.792133pt;}
.y125{bottom:476.965467pt;}
.y198{bottom:478.352133pt;}
.y44{bottom:479.312133pt;}
.y2a3{bottom:480.000000pt;}
.yf2{bottom:480.272133pt;}
.y1dc{bottom:480.592133pt;}
.y220{bottom:482.666667pt;}
.y26b{bottom:483.472133pt;}
.y245{bottom:486.032133pt;}
.y1db{bottom:492.000000pt;}
.y124{bottom:492.645467pt;}
.y197{bottom:494.032133pt;}
.y89{bottom:494.672133pt;}
.yf1{bottom:495.952133pt;}
.y269{bottom:496.000000pt;}
.y10{bottom:497.232133pt;}
.y43{bottom:497.872133pt;}
.y21f{bottom:498.666667pt;}
.y1da{bottom:508.000000pt;}
.y123{bottom:508.005467pt;}
.y196{bottom:509.712133pt;}
.yf0{bottom:511.632133pt;}
.y88{bottom:512.592133pt;}
.y21e{bottom:513.333333pt;}
.y2a2{bottom:514.832133pt;}
.y42{bottom:516.112133pt;}
.y122{bottom:523.685467pt;}
.y1d9{bottom:524.000000pt;}
.yf{bottom:524.752133pt;}
.y195{bottom:525.072133pt;}
.y268{bottom:526.666667pt;}
.yef{bottom:527.312133pt;}
.y87{bottom:528.272133pt;}
.y21d{bottom:529.333333pt;}
.y41{bottom:534.672133pt;}
.y157{bottom:537.232133pt;}
.y121{bottom:539.365467pt;}
.y84{bottom:540.000000pt;}
.y194{bottom:540.752133pt;}
.y267{bottom:542.666667pt;}
.yee{bottom:542.992133pt;}
.y21c{bottom:545.333333pt;}
.y244{bottom:548.432133pt;}
.ye{bottom:552.592133pt;}
.y40{bottom:552.912133pt;}
.y120{bottom:554.405467pt;}
.y1d7{bottom:554.666667pt;}
.y156{bottom:554.832133pt;}
.y15c{bottom:556.000000pt;}
.y193{bottom:556.432133pt;}
.y2a1{bottom:557.333333pt;}
.yed{bottom:558.672133pt;}
.y21b{bottom:560.000000pt;}
.y266{bottom:561.552133pt;}
.y154{bottom:564.000000pt;}
.y11f{bottom:567.525467pt;}
.y3f{bottom:571.472133pt;}
.y192{bottom:572.112133pt;}
.y265{bottom:573.333333pt;}
.yec{bottom:574.032133pt;}
.y21a{bottom:576.000000pt;}
.yd{bottom:580.112133pt;}
.y83{bottom:582.352133pt;}
.y11e{bottom:583.205467pt;}
.y191{bottom:587.792133pt;}
.y264{bottom:589.333333pt;}
.y69{bottom:589.392133pt;}
.y3e{bottom:589.712133pt;}
.y219{bottom:592.000000pt;}
.y2a0{bottom:592.912133pt;}
.y1d6{bottom:598.032133pt;}
.y11d{bottom:598.885467pt;}
.y82{bottom:601.232133pt;}
.y190{bottom:603.472133pt;}
.y263{bottom:605.333333pt;}
.yeb{bottom:605.392133pt;}
.y153{bottom:606.032133pt;}
.y218{bottom:606.666667pt;}
.yc{bottom:607.632133pt;}
.y3d{bottom:608.272133pt;}
.y1d5{bottom:610.666667pt;}
.y11c{bottom:614.565467pt;}
.y168{bottom:618.666667pt;}
.y18f{bottom:618.832133pt;}
.y81{bottom:620.112133pt;}
.yea{bottom:621.072133pt;}
.y217{bottom:622.666667pt;}
.y262{bottom:624.272133pt;}
.y152{bottom:624.912133pt;}
.y1d3{bottom:625.333333pt;}
.y3c{bottom:626.512133pt;}
.yb3{bottom:626.666667pt;}
.y68{bottom:626.832133pt;}
.y11b{bottom:629.925467pt;}
.yb{bottom:633.552133pt;}
.y18e{bottom:634.512133pt;}
.y261{bottom:636.000000pt;}
.ye9{bottom:636.752133pt;}
.y216{bottom:638.666667pt;}
.y80{bottom:638.672133pt;}
.y1d1{bottom:641.333333pt;}
.y241{bottom:642.192133pt;}
.y151{bottom:643.472133pt;}
.y11a{bottom:644.965467pt;}
.y3b{bottom:645.072133pt;}
.y67{bottom:645.712133pt;}
.y18d{bottom:650.192133pt;}
.y260{bottom:652.000000pt;}
.ye8{bottom:652.432133pt;}
.y215{bottom:654.666667pt;}
.ya{bottom:656.592133pt;}
.y1cf{bottom:657.333333pt;}
.y7f{bottom:657.552133pt;}
.y119{bottom:658.085467pt;}
.y150{bottom:662.352133pt;}
.y3a{bottom:663.312133pt;}
.y66{bottom:664.592133pt;}
.y18c{bottom:665.872133pt;}
.y25f{bottom:666.666667pt;}
.ye7{bottom:668.112133pt;}
.y214{bottom:669.333333pt;}
.y29f{bottom:670.992133pt;}
.y1cd{bottom:673.333333pt;}
.y118{bottom:673.765467pt;}
.y9{bottom:674.512133pt;}
.y7e{bottom:676.432133pt;}
.y14f{bottom:681.232133pt;}
.y18b{bottom:681.552133pt;}
.y39{bottom:681.872133pt;}
.y29e{bottom:682.666667pt;}
.y65{bottom:683.152133pt;}
.ye6{bottom:683.472133pt;}
.y213{bottom:685.333333pt;}
.y25e{bottom:686.672133pt;}
.y1cb{bottom:688.000000pt;}
.y117{bottom:688.805467pt;}
.ya2{bottom:690.666667pt;}
.y7d{bottom:694.672133pt;}
.y18a{bottom:697.232133pt;}
.y8{bottom:697.872133pt;}
.y25a{bottom:698.666667pt;}
.ye5{bottom:699.152133pt;}
.y14e{bottom:699.792133pt;}
.y38{bottom:700.112133pt;}
.y212{bottom:701.333333pt;}
.y116{bottom:701.925467pt;}
.y64{bottom:702.032133pt;}
.y1c9{bottom:704.000000pt;}
.y189{bottom:712.912133pt;}
.y7c{bottom:713.232133pt;}
.y28f{bottom:714.666667pt;}
.ye4{bottom:714.832133pt;}
.y211{bottom:716.000000pt;}
.y115{bottom:717.605467pt;}
.y37{bottom:718.672133pt;}
.y1c7{bottom:720.000000pt;}
.y23f{bottom:720.272133pt;}
.y63{bottom:720.912133pt;}
.y188{bottom:728.272133pt;}
.y7{bottom:729.872133pt;}
.ye3{bottom:730.512133pt;}
.y28e{bottom:730.666667pt;}
.y7b{bottom:731.472133pt;}
.y210{bottom:732.000000pt;}
.y114{bottom:733.285467pt;}
.y29d{bottom:733.712133pt;}
.y36{bottom:736.912133pt;}
.y14d{bottom:737.232133pt;}
.y187{bottom:743.952133pt;}
.y29c{bottom:745.333333pt;}
.ye2{bottom:746.192133pt;}
.y1c6{bottom:746.832133pt;}
.y20f{bottom:748.000000pt;}
.y113{bottom:748.325467pt;}
.y62{bottom:748.752133pt;}
.y28d{bottom:749.392133pt;}
.y7a{bottom:750.032133pt;}
.y35{bottom:755.472133pt;}
.y14c{bottom:756.112133pt;}
.y186{bottom:759.632133pt;}
.y259{bottom:761.333333pt;}
.y112{bottom:761.445467pt;}
.ye1{bottom:761.872133pt;}
.y1c5{bottom:762.512133pt;}
.y20e{bottom:764.000000pt;}
.y6{bottom:765.712133pt;}
.y15a{bottom:768.000000pt;}
.y79{bottom:768.272133pt;}
.y34{bottom:773.712133pt;}
.y1c3{bottom:774.666667pt;}
.y185{bottom:775.312133pt;}
.y61{bottom:776.912133pt;}
.y111{bottom:777.125467pt;}
.ye0{bottom:777.232133pt;}
.y258{bottom:777.333333pt;}
.y20d{bottom:778.666667pt;}
.y149{bottom:782.666667pt;}
.y78{bottom:786.832133pt;}
.y1c1{bottom:789.333333pt;}
.y184{bottom:790.992133pt;}
.y28c{bottom:792.000000pt;}
.y110{bottom:792.165467pt;}
.y33{bottom:792.272133pt;}
.ydf{bottom:792.912133pt;}
.y20c{bottom:794.666667pt;}
.y257{bottom:796.112133pt;}
.y23d{bottom:798.672133pt;}
.y77{bottom:805.072133pt;}
.y10f{bottom:805.285467pt;}
.y1bf{bottom:805.333333pt;}
.y183{bottom:806.672133pt;}
.y256{bottom:808.000000pt;}
.yde{bottom:808.592133pt;}
.y32{bottom:810.512133pt;}
.y20b{bottom:810.666667pt;}
.y28b{bottom:811.792133pt;}
.y60{bottom:813.072133pt;}
.y10e{bottom:820.645467pt;}
.y1bd{bottom:821.333333pt;}
.y182{bottom:822.352133pt;}
.y202{bottom:823.312133pt;}
.y76{bottom:823.632133pt;}
.y255{bottom:824.000000pt;}
.ydd{bottom:824.272133pt;}
.y5{bottom:825.872133pt;}
.y20a{bottom:826.666667pt;}
.y31{bottom:829.072133pt;}
.y15e{bottom:832.000000pt;}
.y1bb{bottom:837.333333pt;}
.y181{bottom:837.712133pt;}
.ydc{bottom:839.952133pt;}
.y254{bottom:840.000000pt;}
.y209{bottom:841.333333pt;}
.y75{bottom:841.872133pt;}
.y30{bottom:847.312133pt;}
.y5f{bottom:849.232133pt;}
.y1ba{bottom:852.000000pt;}
.y180{bottom:853.392133pt;}
.y289{bottom:854.666667pt;}
.ydb{bottom:855.632133pt;}
.y208{bottom:857.333333pt;}
.y2ac{bottom:857.552133pt;}
.y201{bottom:858.512133pt;}
.y74{bottom:860.432133pt;}
.y23c{bottom:861.072133pt;}
.y2f{bottom:865.872133pt;}
.y1b8{bottom:868.000000pt;}
.y17f{bottom:869.072133pt;}
.y200{bottom:870.666667pt;}
.yda{bottom:871.312133pt;}
.y207{bottom:873.333333pt;}
.y29a{bottom:874.192133pt;}
.y73{bottom:878.672133pt;}
.y4{bottom:883.792133pt;}
.y1b6{bottom:884.000000pt;}
.y2e{bottom:884.112133pt;}
.y17e{bottom:884.752133pt;}
.y5e{bottom:885.392133pt;}
.y1ff{bottom:886.666667pt;}
.yd9{bottom:886.672133pt;}
.y206{bottom:889.333333pt;}
.y288{bottom:889.872133pt;}
.y1b4{bottom:898.666667pt;}
.y17d{bottom:900.432133pt;}
.y1fe{bottom:901.333333pt;}
.y72{bottom:901.712133pt;}
.yd8{bottom:902.352133pt;}
.y2d{bottom:902.672133pt;}
.y205{bottom:904.000000pt;}
.y1b2{bottom:914.666667pt;}
.y17c{bottom:916.112133pt;}
.y1fd{bottom:917.333333pt;}
.yd7{bottom:918.032133pt;}
.y204{bottom:920.000000pt;}
.y2c{bottom:920.912133pt;}
.y5d{bottom:921.552133pt;}
.y17b{bottom:931.472133pt;}
.y1fc{bottom:933.333333pt;}
.yd6{bottom:933.712133pt;}
.y3{bottom:935.952133pt;}
.y203{bottom:936.000000pt;}
.y6f{bottom:937.333333pt;}
.y2b{bottom:939.472133pt;}
.y1b1{bottom:942.352133pt;}
.yb1{bottom:946.666667pt;}
.y17a{bottom:947.152133pt;}
.y1fb{bottom:949.333333pt;}
.yd5{bottom:949.392133pt;}
.y251{bottom:952.592133pt;}
.y2a{bottom:957.712133pt;}
.y179{bottom:962.832133pt;}
.y1fa{bottom:964.000000pt;}
.yd4{bottom:964.432133pt;}
.y148{bottom:965.072133pt;}
.y1b0{bottom:966.032133pt;}
.yd1{bottom:973.333333pt;}
.y29{bottom:976.272133pt;}
.y178{bottom:979.152133pt;}
.y6e{bottom:979.792133pt;}
.y1f9{bottom:980.000000pt;}
.y147{bottom:980.112133pt;}
.y1af{bottom:981.712133pt;}
.y285{bottom:983.632133pt;}
.y5c{bottom:984.592133pt;}
.y2{bottom:987.792133pt;}
.y144{bottom:989.333333pt;}
.y28{bottom:994.512133pt;}
.y1f8{bottom:996.000000pt;}
.y10b{bottom:998.666667pt;}
.y5b{bottom:1006.032133pt;}
.y6d{bottom:1006.352133pt;}
.y158{bottom:1009.333333pt;}
.y1f7{bottom:1010.666667pt;}
.y27{bottom:1013.072133pt;}
.yd0{bottom:1014.992133pt;}
.y58{bottom:1062.352133pt;}
.h13{height:16.000000pt;}
.hf{height:17.333333pt;}
.h1a{height:22.666667pt;}
.h1b{height:24.000000pt;}
.h19{height:28.153125pt;}
.h23{height:32.000000pt;}
.h22{height:33.333333pt;}
.h10{height:35.831250pt;}
.h16{height:37.695000pt;}
.h7{height:38.141250pt;}
.h15{height:38.666667pt;}
.h17{height:40.000000pt;}
.hd{height:41.170000pt;}
.he{height:41.285000pt;}
.h3{height:42.656250pt;}
.hc{height:43.750000pt;}
.h12{height:44.843750pt;}
.h21{height:48.000000pt;}
.ha{height:48.896000pt;}
.h25{height:49.333333pt;}
.h8{height:49.481250pt;}
.h9{height:51.264000pt;}
.h6{height:56.719360pt;}
.hb{height:60.032000pt;}
.h26{height:64.000000pt;}
.h11{height:67.781120pt;}
.h24{height:78.666667pt;}
.h4{height:96.768000pt;}
.h20{height:128.000000pt;}
.h5{height:128.160000pt;}
.h1f{height:154.666667pt;}
.h1d{height:186.666667pt;}
.h1c{height:225.333333pt;}
.h18{height:232.000000pt;}
.h1e{height:838.666667pt;}
.h14{height:1106.666667pt;}
.h2{height:1117.333333pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:4.000000pt;}
.w3{width:8.000000pt;}
.w31{width:16.000000pt;}
.w1f{width:28.000000pt;}
.w18{width:29.333333pt;}
.w2f{width:30.666667pt;}
.w3e{width:32.000000pt;}
.wc{width:48.000000pt;}
.wf{width:50.666667pt;}
.w13{width:57.333333pt;}
.w2b{width:65.333333pt;}
.w14{width:66.666667pt;}
.w1d{width:68.000000pt;}
.w2c{width:73.333333pt;}
.w29{width:74.666667pt;}
.w1e{width:76.000000pt;}
.w19{width:77.333333pt;}
.w20{width:78.666667pt;}
.w25{width:80.000000pt;}
.w34{width:81.333333pt;}
.w2d{width:82.666667pt;}
.wd{width:88.000000pt;}
.wa{width:89.333333pt;}
.w15{width:113.333333pt;}
.w10{width:114.666667pt;}
.w12{width:124.000000pt;}
.w17{width:133.333333pt;}
.w39{width:154.666667pt;}
.w22{width:164.000000pt;}
.w3c{width:170.666667pt;}
.w33{width:172.000000pt;}
.w24{width:173.333333pt;}
.w1c{width:174.666667pt;}
.w30{width:176.000000pt;}
.w35{width:182.666667pt;}
.w3b{width:184.000000pt;}
.w27{width:185.333333pt;}
.w1b{width:186.666667pt;}
.w23{width:188.000000pt;}
.w32{width:189.333333pt;}
.w37{width:190.666667pt;}
.w3d{width:192.000000pt;}
.w21{width:197.333333pt;}
.w38{width:208.000000pt;}
.w11{width:264.000000pt;}
.w2a{width:292.000000pt;}
.w16{width:305.333333pt;}
.wb{width:470.666667pt;}
.we{width:472.000000pt;}
.w2e{width:496.000000pt;}
.w3a{width:497.333333pt;}
.w26{width:498.666667pt;}
.w28{width:500.000000pt;}
.w1a{width:501.333333pt;}
.w36{width:504.000000pt;}
.w9{width:588.000000pt;}
.w6{width:597.333333pt;}
.w7{width:598.666667pt;}
.w8{width:600.000000pt;}
.w5{width:605.333333pt;}
.w4{width:777.700667pt;}
.w0{width:793.700667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.421029pt;}
.x20{left:8.327600pt;}
.x17{left:9.554171pt;}
.xd{left:10.514139pt;}
.x8{left:16.000000pt;}
.x1c{left:19.615920pt;}
.x2a{left:21.044613pt;}
.x26{left:25.598107pt;}
.x25{left:29.289627pt;}
.x9{left:78.727664pt;}
.x2{left:94.727664pt;}
.x10{left:96.000000pt;}
.xc{left:97.333333pt;}
.x13{left:102.666667pt;}
.x31{left:121.333333pt;}
.x2c{left:122.666667pt;}
.x3c{left:124.000000pt;}
.x44{left:125.333333pt;}
.x1f{left:144.000000pt;}
.x1d{left:181.333333pt;}
.x1a{left:182.666667pt;}
.x3f{left:196.000000pt;}
.x16{left:197.079227pt;}
.x2d{left:198.666667pt;}
.x35{left:200.000000pt;}
.x34{left:201.333333pt;}
.x42{left:202.666667pt;}
.x39{left:204.000000pt;}
.x28{left:206.666667pt;}
.x1e{left:213.240016pt;}
.x14{left:218.362096pt;}
.x15{left:229.137787pt;}
.x11{left:234.635536pt;}
.x27{left:236.834096pt;}
.xe{left:240.485467pt;}
.x18{left:241.911600pt;}
.x12{left:249.145627pt;}
.x19{left:250.610480pt;}
.xf{left:252.438747pt;}
.x21{left:257.333333pt;}
.x36{left:272.000000pt;}
.x3{left:276.779760pt;}
.x4{left:278.407376pt;}
.x2b{left:301.755984pt;}
.x2e{left:384.000000pt;}
.x33{left:385.333333pt;}
.x43{left:386.666667pt;}
.x3a{left:388.000000pt;}
.x1{left:389.480880pt;}
.x32{left:394.666667pt;}
.x40{left:406.666667pt;}
.x5{left:457.669040pt;}
.xa{left:505.517360pt;}
.x29{left:510.666667pt;}
.x22{left:520.000000pt;}
.x2f{left:557.333333pt;}
.x3e{left:558.666667pt;}
.x3b{left:560.000000pt;}
.x37{left:562.666667pt;}
.x30{left:624.000000pt;}
.x41{left:625.333333pt;}
.x38{left:626.666667pt;}
.x24{left:633.333333pt;}
.x23{left:642.666667pt;}
.x1b{left:652.000000pt;}
.x3d{left:684.000000pt;}
.x7{left:692.000000pt;}
.x6{left:696.000000pt;}
}




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