
    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_e0e26908c8de041a73c1d0d6.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_f911832fa87cad840cde8f93.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_4a59b83386a7e8c45cb574f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_84d6aebece36406ecfa77e10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.692383;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_3c8b46359206a9b07186e473.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_d7765b8dadf8f86a9b8a5ca2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_4b74463dadcf1e4cfbe639a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_ed6b9bb50b8c36c9e46d54bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_f624fdd8d5afed2c30822a13.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_fd7c12b1792e93949fbcfc4d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_f040e7d0a052eb15598a8bc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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_55e09fdfe410ab8da31eeff2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_db8431b53a739d64b0c5071a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.857910;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_aa8838c46bfb1c53e8818694.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.057617;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_64c0ec6b03c58370c5d707a8.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_02bee09380e2c3cf942732f0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.904297;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_528267d57d12312ca8b58d90.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;}
.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);}
.v2{vertical-align:-34.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.720000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:38.880000px;}
.ls29{letter-spacing:-1.783872px;}
.ls47{letter-spacing:-1.767456px;}
.ls3b{letter-spacing:-1.712736px;}
.ls4d{letter-spacing:-1.679904px;}
.ls33{letter-spacing:-1.647072px;}
.ls43{letter-spacing:-1.608768px;}
.ls28{letter-spacing:-1.592352px;}
.ls36{letter-spacing:-1.559520px;}
.ls25{letter-spacing:-1.554048px;}
.ls26{letter-spacing:-1.543104px;}
.ls15{letter-spacing:-1.536192px;}
.ls38{letter-spacing:-1.532160px;}
.ls18{letter-spacing:-1.518048px;}
.ls35{letter-spacing:-1.510272px;}
.ls27{letter-spacing:-1.504800px;}
.ls14{letter-spacing:-1.499904px;}
.ls22{letter-spacing:-1.477440px;}
.lsa{letter-spacing:-1.476144px;}
.ls34{letter-spacing:-1.471968px;}
.ls2e{letter-spacing:-1.457568px;}
.ls24{letter-spacing:-1.444608px;}
.ls16{letter-spacing:-1.439424px;}
.ls44{letter-spacing:-1.437408px;}
.ls55{letter-spacing:-1.421280px;}
.lsd{letter-spacing:-1.418256px;}
.ls2d{letter-spacing:-1.415232px;}
.ls37{letter-spacing:-1.411776px;}
.ls30{letter-spacing:-1.406304px;}
.ls4f{letter-spacing:-1.404288px;}
.ls45{letter-spacing:-1.397664px;}
.ls6a{letter-spacing:-1.378944px;}
.lsb{letter-spacing:-1.370016px;}
.ls3e{letter-spacing:-1.364544px;}
.ls42{letter-spacing:-1.360800px;}
.lsc{letter-spacing:-1.360368px;}
.ls3c{letter-spacing:-1.357920px;}
.ls19{letter-spacing:-1.342656px;}
.ls23{letter-spacing:-1.340640px;}
.ls48{letter-spacing:-1.324800px;}
.ls17{letter-spacing:-1.318464px;}
.ls3a{letter-spacing:-1.318176px;}
.ls40{letter-spacing:-1.285056px;}
.ls3d{letter-spacing:-1.278432px;}
.ls3f{letter-spacing:-1.258560px;}
.ls9{letter-spacing:-1.040688px;}
.ls5a{letter-spacing:-0.968544px;}
.ls8{letter-spacing:-0.959904px;}
.ls7{letter-spacing:-0.926640px;}
.ls57{letter-spacing:-0.787968px;}
.ls59{letter-spacing:-0.634752px;}
.ls6c{letter-spacing:-0.618336px;}
.ls5d{letter-spacing:-0.530784px;}
.ls63{letter-spacing:-0.487008px;}
.ls61{letter-spacing:-0.448704px;}
.ls6f{letter-spacing:-0.443232px;}
.ls31{letter-spacing:-0.437760px;}
.lsf{letter-spacing:-0.426240px;}
.ls6d{letter-spacing:-0.421344px;}
.ls1c{letter-spacing:-0.417312px;}
.ls5e{letter-spacing:-0.415872px;}
.ls21{letter-spacing:-0.404928px;}
.ls39{letter-spacing:-0.399456px;}
.ls60{letter-spacing:-0.393984px;}
.ls56{letter-spacing:-0.383040px;}
.lse{letter-spacing:-0.374400px;}
.ls2f{letter-spacing:-0.372096px;}
.ls73{letter-spacing:-0.344736px;}
.ls70{letter-spacing:-0.339264px;}
.ls10{letter-spacing:-0.338688px;}
.ls1a{letter-spacing:-0.320544px;}
.ls62{letter-spacing:-0.306432px;}
.ls1e{letter-spacing:-0.302400px;}
.ls71{letter-spacing:-0.290304px;}
.ls64{letter-spacing:-0.290016px;}
.ls72{letter-spacing:-0.272160px;}
.ls74{letter-spacing:-0.266112px;}
.ls20{letter-spacing:-0.260064px;}
.ls11{letter-spacing:-0.241920px;}
.ls76{letter-spacing:-0.229824px;}
.ls1f{letter-spacing:-0.223776px;}
.ls32{letter-spacing:-0.213408px;}
.ls13{letter-spacing:-0.201600px;}
.ls75{letter-spacing:-0.199584px;}
.ls7b{letter-spacing:-0.158976px;}
.ls1d{letter-spacing:-0.157248px;}
.ls12{letter-spacing:-0.145152px;}
.ls7e{letter-spacing:-0.125856px;}
.ls1b{letter-spacing:-0.120960px;}
.ls7c{letter-spacing:-0.119232px;}
.ls7d{letter-spacing:-0.079488px;}
.ls7f{letter-spacing:-0.059616px;}
.ls5f{letter-spacing:-0.038304px;}
.ls65{letter-spacing:-0.005472px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.011520px;}
.ls2{letter-spacing:0.012096px;}
.ls58{letter-spacing:0.032832px;}
.ls5c{letter-spacing:0.071136px;}
.ls5b{letter-spacing:0.202464px;}
.ls49{letter-spacing:0.392688px;}
.ls67{letter-spacing:1.070928px;}
.ls68{letter-spacing:1.071360px;}
.ls4{letter-spacing:1.256256px;}
.ls54{letter-spacing:1.381392px;}
.ls50{letter-spacing:1.696176px;}
.ls2a{letter-spacing:1.908288px;}
.ls5{letter-spacing:2.598048px;}
.ls4b{letter-spacing:2.721888px;}
.ls3{letter-spacing:3.052800px;}
.ls69{letter-spacing:3.745440px;}
.ls51{letter-spacing:4.111920px;}
.ls2b{letter-spacing:4.902336px;}
.ls6b{letter-spacing:8.254080px;}
.ls2c{letter-spacing:10.326240px;}
.ls66{letter-spacing:10.478880px;}
.ls7a{letter-spacing:10.668960px;}
.ls79{letter-spacing:11.579616px;}
.ls4e{letter-spacing:11.702592px;}
.ls4a{letter-spacing:12.932640px;}
.ls78{letter-spacing:13.839984px;}
.ls77{letter-spacing:16.973136px;}
.ls80{letter-spacing:19.758240px;}
.ls53{letter-spacing:23.176656px;}
.ls81{letter-spacing:30.807360px;}
.ls4c{letter-spacing:36.618336px;}
.ls46{letter-spacing:46.337616px;}
.ls52{letter-spacing:118.440000px;}
.ls6e{letter-spacing:136.196160px;}
.ls41{letter-spacing:803.091744px;}
.ls0{letter-spacing:1030.699152px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws17{word-spacing:-16.560000px;}
.ws4f{word-spacing:-16.440768px;}
.ws4e{word-spacing:-16.401024px;}
.ws11{word-spacing:-15.355872px;}
.ws1c{word-spacing:-15.281568px;}
.ws1a{word-spacing:-15.274944px;}
.ws16{word-spacing:-15.241824px;}
.ws4c{word-spacing:-15.235200px;}
.ws39{word-spacing:-15.202080px;}
.ws1d{word-spacing:-15.195456px;}
.ws1b{word-spacing:-15.162336px;}
.ws4d{word-spacing:-15.155712px;}
.ws50{word-spacing:-15.122592px;}
.ws7{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.974848px;}
.ws5{word-spacing:-14.878080px;}
.wsd{word-spacing:-14.859936px;}
.wsb{word-spacing:-14.799456px;}
.wsc{word-spacing:-14.781312px;}
.ws8{word-spacing:-14.198400px;}
.ws2{word-spacing:-14.025600px;}
.ws4{word-spacing:-13.973760px;}
.wsa{word-spacing:-13.777344px;}
.ws36{word-spacing:-13.741056px;}
.ws1f{word-spacing:-13.698720px;}
.wse{word-spacing:-13.680576px;}
.ws19{word-spacing:-13.668480px;}
.ws46{word-spacing:-13.601952px;}
.ws9{word-spacing:-13.583808px;}
.ws45{word-spacing:-13.438656px;}
.ws44{word-spacing:-13.402368px;}
.ws43{word-spacing:-13.396320px;}
.ws42{word-spacing:-13.378176px;}
.ws25{word-spacing:-12.569184px;}
.ws28{word-spacing:-12.437856px;}
.ws14{word-spacing:-12.366720px;}
.ws2c{word-spacing:-12.328416px;}
.ws18{word-spacing:-12.307680px;}
.ws34{word-spacing:-12.076704px;}
.ws2e{word-spacing:-12.060288px;}
.ws1e{word-spacing:-12.000096px;}
.ws20{word-spacing:-11.983680px;}
.ws15{word-spacing:-11.967264px;}
.wsf{word-spacing:-11.961792px;}
.ws2b{word-spacing:-11.950848px;}
.ws41{word-spacing:-11.945376px;}
.ws13{word-spacing:-11.928960px;}
.ws40{word-spacing:-11.923488px;}
.ws0{word-spacing:-11.880000px;}
.ws2f{word-spacing:-11.879712px;}
.ws2a{word-spacing:-11.835936px;}
.ws3e{word-spacing:-11.748384px;}
.ws32{word-spacing:-11.731968px;}
.ws27{word-spacing:-11.578752px;}
.ws24{word-spacing:-11.398176px;}
.ws1{word-spacing:-10.920096px;}
.ws12{word-spacing:-10.774368px;}
.ws10{word-spacing:0.000000px;}
.ws2d{word-spacing:7.719720px;}
.ws33{word-spacing:17.945016px;}
.ws35{word-spacing:40.944192px;}
.ws4a{word-spacing:49.943616px;}
.ws37{word-spacing:61.444416px;}
.ws3b{word-spacing:68.444616px;}
.ws48{word-spacing:68.738520px;}
.ws4b{word-spacing:72.943992px;}
.ws47{word-spacing:81.652440px;}
.ws38{word-spacing:84.444192px;}
.ws3d{word-spacing:88.559520px;}
.ws3c{word-spacing:91.444392px;}
.ws23{word-spacing:95.339856px;}
.ws30{word-spacing:100.841640px;}
.ws29{word-spacing:103.140792px;}
.ws3f{word-spacing:110.914920px;}
.ws21{word-spacing:113.330400px;}
.ws26{word-spacing:120.369960px;}
.ws31{word-spacing:128.201640px;}
.ws22{word-spacing:132.462672px;}
.ws49{word-spacing:146.522040px;}
.ws3a{word-spacing:151.341840px;}
._1a{margin-left:-4.591152px;}
._10{margin-left:-3.519360px;}
._4{margin-left:-2.479680px;}
._0{margin-left:-1.079568px;}
._3{width:1.061280px;}
._6{width:2.395728px;}
._5{width:3.474720px;}
._9{width:4.739040px;}
._c{width:5.758992px;}
._b{width:6.785280px;}
._e{width:7.816320px;}
._2{width:8.876160px;}
._1{width:10.033920px;}
._d{width:12.038400px;}
._f{width:13.181760px;}
._11{width:14.191344px;}
._8{width:16.675920px;}
._7{width:17.841600px;}
._12{width:18.987840px;}
._13{width:20.105280px;}
._19{width:21.127680px;}
._1b{width:22.190400px;}
._1c{width:23.382720px;}
._1d{width:25.436160px;}
._15{width:26.496000px;}
._22{width:27.554400px;}
._16{width:28.615680px;}
._25{width:29.675520px;}
._17{width:31.066560px;}
._18{width:32.412096px;}
._27{width:33.496704px;}
._31{width:37.198368px;}
._1e{width:38.248992px;}
._1f{width:39.396240px;}
._2f{width:40.870080px;}
._3c{width:41.929920px;}
._36{width:44.447040px;}
._23{width:46.625640px;}
._14{width:48.530016px;}
._39{width:51.336000px;}
._2e{width:53.256960px;}
._29{width:57.218112px;}
._28{width:58.556160px;}
._35{width:62.596800px;}
._38{width:65.577600px;}
._20{width:73.517832px;}
._3a{width:78.067872px;}
._3b{width:79.199136px;}
._37{width:93.530880px;}
._34{width:95.724288px;}
._33{width:96.901632px;}
._2b{width:98.896320px;}
._21{width:105.036264px;}
._26{width:107.699760px;}
._24{width:113.786040px;}
._30{width:127.315872px;}
._2c{width:133.871040px;}
._3d{width:176.766192px;}
._32{width:198.073584px;}
._2a{width:919.339632px;}
._2d{width:927.997488px;}
._a{width:1152.698976px;}
.fca{color:rgb(112,173,71);}
.fc8{color:rgb(255,192,0);}
.fc9{color:rgb(91,155,213);}
.fc5{color:rgb(68,114,196);}
.fc1{color:rgb(0,0,255);}
.fc7{color:rgb(165,165,165);}
.fc6{color:rgb(237,125,49);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs5{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y165{bottom:3.960000px;}
.y163{bottom:4.320000px;}
.y174{bottom:6.120060px;}
.y194{bottom:6.840000px;}
.y17c{bottom:6.840060px;}
.y192{bottom:7.200000px;}
.y30{bottom:7.980000px;}
.y148{bottom:9.000000px;}
.y142{bottom:9.000060px;}
.y145{bottom:9.360000px;}
.yda{bottom:10.080000px;}
.yd8{bottom:12.960000px;}
.yc3{bottom:12.960060px;}
.yb0{bottom:13.320000px;}
.y105{bottom:13.320060px;}
.y173{bottom:24.480060px;}
.yec{bottom:29.520000px;}
.yc2{bottom:29.520060px;}
.y12f{bottom:29.880000px;}
.ya9{bottom:31.320000px;}
.y15d{bottom:38.520000px;}
.y18c{bottom:41.760000px;}
.y176{bottom:41.760060px;}
.y172{bottom:42.840060px;}
.y13c{bottom:43.560060px;}
.yd2{bottom:44.640000px;}
.y3{bottom:45.000000px;}
.y1c0{bottom:45.720000px;}
.yeb{bottom:46.080000px;}
.yc1{bottom:46.080060px;}
.ya7{bottom:53.280000px;}
.yaa{bottom:55.800000px;}
.y15e{bottom:56.160000px;}
.y2{bottom:59.040000px;}
.y175{bottom:60.120060px;}
.y171{bottom:60.840060px;}
.yea{bottom:62.640000px;}
.y127{bottom:64.080000px;}
.yb8{bottom:64.080060px;}
.y18d{bottom:64.800000px;}
.y13d{bottom:70.920060px;}
.y16f{bottom:72.000060px;}
.ya4{bottom:72.720000px;}
.y15f{bottom:73.440000px;}
.yd3{bottom:73.800000px;}
.y178{bottom:74.520060px;}
.ya8{bottom:74.880000px;}
.y170{bottom:79.200060px;}
.y17a{bottom:79.920000px;}
.yab{bottom:80.640000px;}
.yb9{bottom:81.000059px;}
.y128{bottom:82.800000px;}
.y1bc{bottom:83.880000px;}
.yfe{bottom:85.320060px;}
.y18e{bottom:87.840000px;}
.y16e{bottom:90.360060px;}
.y160{bottom:90.720000px;}
.ye5{bottom:92.160000px;}
.y177{bottom:92.520060px;}
.y126{bottom:93.600000px;}
.y1bb{bottom:95.040000px;}
.y1e1{bottom:97.920000px;}
.yba{bottom:97.920059px;}
.y13e{bottom:98.280000px;}
.y129{bottom:101.160000px;}
.y2d{bottom:102.600000px;}
.yd4{bottom:102.960000px;}
.ye6{bottom:103.319999px;}
.ya6{bottom:103.320000px;}
.y1bd{bottom:103.680000px;}
.yfd{bottom:103.680060px;}
.y120{bottom:104.040000px;}
.yb7{bottom:104.400060px;}
.yf6{bottom:104.760000px;}
.yac{bottom:105.120000px;}
.yff{bottom:106.200060px;}
.y161{bottom:108.000000px;}
.y84{bottom:108.360000px;}
.yf8{bottom:110.520000px;}
.yb5{bottom:110.880060px;}
.y18f{bottom:111.240000px;}
.y5b{bottom:111.600000px;}
.y1b9{bottom:111.960000px;}
.yd0{bottom:112.320000px;}
.ye4{bottom:113.399999px;}
.ye7{bottom:114.839999px;}
.ybb{bottom:115.200060px;}
.y1e0{bottom:116.640000px;}
.yb2{bottom:118.800060px;}
.y2c{bottom:119.160000px;}
.y12a{bottom:119.880000px;}
.y13a{bottom:120.240000px;}
.y125{bottom:120.960000px;}
.y15c{bottom:122.760000px;}
.y17b{bottom:122.760060px;}
.y11f{bottom:123.120000px;}
.y1be{bottom:123.480000px;}
.yf5{bottom:123.840000px;}
.y122{bottom:124.560000px;}
.ya2{bottom:124.920000px;}
.y162{bottom:125.280000px;}
.yfc{bottom:125.640000px;}
.ye8{bottom:125.999999px;}
.y13f{bottom:126.000000px;}
.ycf{bottom:126.360000px;}
.y83{bottom:127.080000px;}
.ye0{bottom:127.080060px;}
.y94{bottom:127.440000px;}
.y1ba{bottom:128.520000px;}
.yad{bottom:129.960000px;}
.y5a{bottom:130.680000px;}
.ye1{bottom:131.039999px;}
.y204{bottom:131.040000px;}
.yd5{bottom:132.120000px;}
.ybc{bottom:132.120060px;}
.y190{bottom:134.280000px;}
.y1b7{bottom:134.640000px;}
.y2b{bottom:135.360000px;}
.ye3{bottom:135.720000px;}
.ye9{bottom:137.520000px;}
.yb6{bottom:137.880060px;}
.y12b{bottom:138.240000px;}
.y139{bottom:138.960000px;}
.y16d{bottom:141.120000px;}
.y15b{bottom:141.840000px;}
.y11e{bottom:142.200000px;}
.yf4{bottom:142.920000px;}
.y1bf{bottom:143.280000px;}
.ya1{bottom:143.640000px;}
.yb3{bottom:143.640060px;}
.y82{bottom:146.160000px;}
.y93{bottom:146.520000px;}
.y18a{bottom:147.240000px;}
.y100{bottom:148.320000px;}
.ye2{bottom:148.680000px;}
.ybd{bottom:149.040060px;}
.y59{bottom:149.760000px;}
.y1ef{bottom:150.120000px;}
.y2a{bottom:151.920000px;}
.y140{bottom:153.360000px;}
.y1b6{bottom:153.720000px;}
.yae{bottom:154.440000px;}
.y1df{bottom:154.800000px;}
.y12c{bottom:156.600000px;}
.ya0{bottom:157.680000px;}
.y138{bottom:158.040000px;}
.yf9{bottom:158.760000px;}
.y16c{bottom:159.120000px;}
.yb1{bottom:159.480000px;}
.y11d{bottom:160.920000px;}
.yd6{bottom:161.640000px;}
.y81{bottom:165.240000px;}
.y189{bottom:166.320000px;}
.ybe{bottom:166.320060px;}
.yfb{bottom:166.680000px;}
.ya5{bottom:167.040000px;}
.y123{bottom:167.760000px;}
.y29{bottom:168.480000px;}
.y1ee{bottom:168.840000px;}
.y101{bottom:169.560000px;}
.y1b5{bottom:172.800000px;}
.y1de{bottom:173.520000px;}
.y12d{bottom:175.320000px;}
.y137{bottom:177.120000px;}
.y16b{bottom:177.480000px;}
.yaf{bottom:179.280000px;}
.y15a{bottom:179.640000px;}
.y11c{bottom:180.000000px;}
.yf3{bottom:180.720000px;}
.ybf{bottom:183.240060px;}
.y80{bottom:183.960000px;}
.y92{bottom:184.320000px;}
.y28{bottom:185.040000px;}
.y188{bottom:185.400000px;}
.y58{bottom:187.560000px;}
.y1ed{bottom:187.920000px;}
.y102{bottom:190.440000px;}
.yd7{bottom:190.800000px;}
.y1b4{bottom:191.520000px;}
.y1dd{bottom:192.240000px;}
.yb4{bottom:192.600060px;}
.y12e{bottom:193.680000px;}
.y136{bottom:195.840000px;}
.y124{bottom:198.360000px;}
.y159{bottom:198.720000px;}
.y11b{bottom:199.080000px;}
.yf2{bottom:199.800000px;}
.yc0{bottom:200.160060px;}
.y27{bottom:201.600000px;}
.y7f{bottom:203.040000px;}
.y91{bottom:203.400000px;}
.y187{bottom:204.120000px;}
.y57{bottom:206.640000px;}
.y1ec{bottom:207.000000px;}
.y1dc{bottom:210.240000px;}
.y1b3{bottom:210.600000px;}
.y103{bottom:211.680000px;}
.y135{bottom:214.920000px;}
.y26{bottom:217.800000px;}
.y11a{bottom:218.160000px;}
.yf1{bottom:218.520000px;}
.y7e{bottom:222.120000px;}
.y186{bottom:223.200000px;}
.yfa{bottom:223.560000px;}
.y56{bottom:225.360000px;}
.y1eb{bottom:225.720000px;}
.y1db{bottom:228.600000px;}
.y1b2{bottom:229.680000px;}
.y104{bottom:232.560000px;}
.y134{bottom:234.000000px;}
.y25{bottom:234.360000px;}
.y119{bottom:236.880000px;}
.yf0{bottom:237.600000px;}
.y7d{bottom:241.200000px;}
.y185{bottom:242.280000px;}
.y55{bottom:244.440000px;}
.y1ea{bottom:244.800000px;}
.y1da{bottom:247.680000px;}
.y1b1{bottom:248.400000px;}
.y24{bottom:250.920000px;}
.y133{bottom:253.080000px;}
.y158{bottom:255.240000px;}
.y118{bottom:255.960000px;}
.yef{bottom:256.320000px;}
.y7c{bottom:259.920000px;}
.y90{bottom:260.280000px;}
.y184{bottom:261.360000px;}
.y54{bottom:263.520000px;}
.y1e9{bottom:263.880000px;}
.y1d9{bottom:266.760000px;}
.y23{bottom:267.480000px;}
.y157{bottom:269.280000px;}
.y16a{bottom:270.360000px;}
.y132{bottom:271.800000px;}
.yee{bottom:273.600000px;}
.y117{bottom:275.040000px;}
.y7b{bottom:279.000000px;}
.y183{bottom:280.080000px;}
.y53{bottom:282.240000px;}
.y1e8{bottom:282.600000px;}
.y22{bottom:283.680000px;}
.y1d8{bottom:285.480000px;}
.y1b0{bottom:286.560000px;}
.yed{bottom:287.640000px;}
.yf7{bottom:288.360000px;}
.y131{bottom:290.520000px;}
.y116{bottom:293.760000px;}
.y7a{bottom:298.080000px;}
.y182{bottom:299.160000px;}
.yce{bottom:299.520000px;}
.y21{bottom:300.240000px;}
.y52{bottom:301.320000px;}
.y1e7{bottom:301.680000px;}
.y130{bottom:304.560000px;}
.y1af{bottom:305.280000px;}
.y13b{bottom:306.360000px;}
.y115{bottom:312.840000px;}
.y20{bottom:316.800000px;}
.y8f{bottom:317.160000px;}
.ycd{bottom:318.240000px;}
.y51{bottom:320.400000px;}
.y1e6{bottom:320.760000px;}
.y1d7{bottom:323.280000px;}
.y1ae{bottom:324.360000px;}
.y114{bottom:331.920000px;}
.y1f{bottom:333.360000px;}
.y79{bottom:335.880000px;}
.y8e{bottom:336.240000px;}
.y181{bottom:336.960000px;}
.ycc{bottom:337.320000px;}
.y50{bottom:339.480000px;}
.y1e5{bottom:339.840000px;}
.y1d6{bottom:341.280000px;}
.y141{bottom:342.000000px;}
.y1ad{bottom:343.440000px;}
.y1e{bottom:349.560000px;}
.y113{bottom:350.640000px;}
.y78{bottom:354.960000px;}
.y180{bottom:356.040000px;}
.ycb{bottom:356.400000px;}
.y4f{bottom:358.200000px;}
.y203{bottom:358.560000px;}
.y1d5{bottom:359.640000px;}
.y1ac{bottom:362.520000px;}
.y1d{bottom:366.480000px;}
.y179{bottom:367.920000px;}
.y143{bottom:369.360000px;}
.y112{bottom:369.720000px;}
.y77{bottom:373.680000px;}
.y8d{bottom:374.040000px;}
.y17f{bottom:374.760000px;}
.yca{bottom:375.120000px;}
.y1e4{bottom:376.200000px;}
.y4e{bottom:377.280000px;}
.y202{bottom:377.640000px;}
.y1d4{bottom:378.360000px;}
.y1ab{bottom:381.240000px;}
.y9f{bottom:383.400000px;}
.y1c{bottom:383.760000px;}
.y111{bottom:388.800000px;}
.y17e{bottom:392.040000px;}
.y76{bottom:392.760000px;}
.y8c{bottom:393.120000px;}
.yc9{bottom:394.200000px;}
.y1e3{bottom:394.560000px;}
.y4d{bottom:396.360000px;}
.y144{bottom:396.720000px;}
.y1aa{bottom:400.320000px;}
.y1b{bottom:401.040000px;}
.y9e{bottom:402.120000px;}
.y17d{bottom:406.080000px;}
.y18b{bottom:407.520000px;}
.y110{bottom:407.880000px;}
.y75{bottom:411.840000px;}
.y1e2{bottom:412.560000px;}
.yc8{bottom:413.280000px;}
.y1d3{bottom:414.360000px;}
.y4c{bottom:415.080000px;}
.y201{bottom:415.440000px;}
.y1a{bottom:418.320000px;}
.y1a9{bottom:419.400000px;}
.y9d{bottom:421.200000px;}
.y146{bottom:424.080000px;}
.y10f{bottom:426.600000px;}
.y74{bottom:430.920000px;}
.yc7{bottom:432.000000px;}
.y1d2{bottom:432.720000px;}
.y4b{bottom:434.160000px;}
.y200{bottom:434.520000px;}
.y19{bottom:435.600000px;}
.y1a8{bottom:438.120000px;}
.y9c{bottom:440.280000px;}
.y191{bottom:443.160000px;}
.y10e{bottom:445.680000px;}
.y73{bottom:449.640000px;}
.y8b{bottom:450.000000px;}
.yc6{bottom:451.080000px;}
.y147{bottom:451.800000px;}
.y18{bottom:452.880000px;}
.y4a{bottom:453.240000px;}
.y1ff{bottom:453.600000px;}
.y1a7{bottom:457.200000px;}
.y9b{bottom:459.000000px;}
.y10d{bottom:464.760000px;}
.y193{bottom:466.560000px;}
.y156{bottom:468.000000px;}
.y72{bottom:468.720000px;}
.y8a{bottom:469.080000px;}
.y17{bottom:470.160000px;}
.y1d1{bottom:470.520000px;}
.y49{bottom:472.320000px;}
.y1fe{bottom:472.680000px;}
.y1a6{bottom:476.280000px;}
.y9a{bottom:478.080000px;}
.y149{bottom:479.160000px;}
.y10c{bottom:483.480000px;}
.y155{bottom:487.080000px;}
.y16{bottom:487.440000px;}
.y71{bottom:487.800000px;}
.yc5{bottom:489.240000px;}
.y195{bottom:489.600000px;}
.y48{bottom:491.040000px;}
.y1fd{bottom:491.400000px;}
.y1a5{bottom:495.000000px;}
.y99{bottom:497.160000px;}
.y10b{bottom:502.560000px;}
.y15{bottom:504.720000px;}
.y154{bottom:505.800000px;}
.y70{bottom:506.520000px;}
.y89{bottom:506.880000px;}
.yc4{bottom:507.600000px;}
.y1d0{bottom:508.680000px;}
.y47{bottom:510.120000px;}
.y1fc{bottom:510.480000px;}
.y196{bottom:513.000000px;}
.y1a4{bottom:514.080000px;}
.y98{bottom:516.240000px;}
.y10a{bottom:521.640000px;}
.y14{bottom:522.000000px;}
.yd1{bottom:523.080000px;}
.y153{bottom:524.880000px;}
.y6f{bottom:525.600000px;}
.y88{bottom:525.960000px;}
.y1cf{bottom:527.400000px;}
.y46{bottom:529.200000px;}
.y1fb{bottom:529.560000px;}
.y1a3{bottom:533.160000px;}
.y97{bottom:534.960000px;}
.y197{bottom:536.040000px;}
.y13{bottom:539.280000px;}
.y109{bottom:540.360000px;}
.y152{bottom:543.960000px;}
.y6e{bottom:544.680000px;}
.y1ce{bottom:546.480000px;}
.y45{bottom:547.920000px;}
.y1fa{bottom:548.280000px;}
.y1a2{bottom:552.240000px;}
.y96{bottom:553.680000px;}
.y12{bottom:556.200000px;}
.yd9{bottom:558.720000px;}
.y108{bottom:559.440000px;}
.y151{bottom:562.680000px;}
.y6d{bottom:563.400000px;}
.y87{bottom:563.760000px;}
.y1cd{bottom:565.560000px;}
.y44{bottom:567.000000px;}
.y1f9{bottom:567.360000px;}
.y95{bottom:567.720000px;}
.ya3{bottom:569.520000px;}
.y1a1{bottom:570.960000px;}
.y11{bottom:573.480000px;}
.y107{bottom:578.160000px;}
.y150{bottom:581.760000px;}
.y6c{bottom:582.480000px;}
.y86{bottom:582.840000px;}
.y1cc{bottom:584.280000px;}
.y1f8{bottom:586.440000px;}
.ydb{bottom:587.880000px;}
.y1a0{bottom:590.040000px;}
.y10{bottom:590.760000px;}
.y43{bottom:591.840000px;}
.y106{bottom:592.200000px;}
.y121{bottom:592.920000px;}
.y20d{bottom:600.120000px;}
.y14f{bottom:600.840000px;}
.y6b{bottom:601.560000px;}
.y1cb{bottom:603.360000px;}
.y1f7{bottom:605.160000px;}
.yf{bottom:608.040000px;}
.y42{bottom:608.400000px;}
.y19f{bottom:609.120000px;}
.y85{bottom:617.040000px;}
.ydc{bottom:617.400000px;}
.y20c{bottom:618.840000px;}
.y14e{bottom:619.560000px;}
.y6a{bottom:620.640000px;}
.y1ca{bottom:622.440000px;}
.y1f6{bottom:624.240000px;}
.y41{bottom:624.960000px;}
.ye{bottom:626.400000px;}
.y19e{bottom:627.840000px;}
.y20b{bottom:637.920000px;}
.y14d{bottom:638.640000px;}
.y69{bottom:639.360000px;}
.y40{bottom:641.520000px;}
.y1f5{bottom:643.320000px;}
.ydd{bottom:646.560000px;}
.y19d{bottom:646.920000px;}
.yd{bottom:655.200000px;}
.y20a{bottom:657.000000px;}
.y14c{bottom:657.360000px;}
.y3f{bottom:658.080000px;}
.y68{bottom:658.440000px;}
.y1c9{bottom:660.240000px;}
.y1f4{bottom:662.400000px;}
.y19c{bottom:666.000000px;}
.yc{bottom:672.480000px;}
.y3e{bottom:674.280000px;}
.y14b{bottom:674.640000px;}
.yde{bottom:675.720000px;}
.y67{bottom:677.520000px;}
.y1c8{bottom:679.320000px;}
.y1f3{bottom:680.760000px;}
.y19b{bottom:685.080000px;}
.y14a{bottom:688.680000px;}
.yb{bottom:689.400000px;}
.y3d{bottom:690.840000px;}
.y209{bottom:694.800000px;}
.y66{bottom:696.240000px;}
.y1c7{bottom:698.400000px;}
.y1f2{bottom:698.760000px;}
.y19a{bottom:703.800000px;}
.ydf{bottom:704.880000px;}
.ya{bottom:706.680000px;}
.y3c{bottom:707.400000px;}
.y208{bottom:713.880000px;}
.y65{bottom:715.320000px;}
.y1f1{bottom:716.760000px;}
.y1c6{bottom:717.120000px;}
.y199{bottom:722.520000px;}
.y3b{bottom:723.960000px;}
.y9{bottom:725.040000px;}
.y207{bottom:732.600000px;}
.y64{bottom:734.400000px;}
.y1f0{bottom:735.120000px;}
.y1c5{bottom:736.200000px;}
.y198{bottom:736.560000px;}
.y1b8{bottom:738.360000px;}
.y3a{bottom:740.160000px;}
.y164{bottom:742.680000px;}
.y206{bottom:751.680000px;}
.y63{bottom:753.480000px;}
.y1c4{bottom:755.280000px;}
.y39{bottom:756.720000px;}
.y166{bottom:759.960000px;}
.y8{bottom:761.760000px;}
.y205{bottom:771.120000px;}
.y62{bottom:772.200000px;}
.y38{bottom:773.280000px;}
.y1c3{bottom:774.360000px;}
.y167{bottom:777.240000px;}
.y37{bottom:789.840000px;}
.y7{bottom:790.920000px;}
.y61{bottom:791.280000px;}
.y1c2{bottom:792.720000px;}
.y168{bottom:794.520000px;}
.y36{bottom:806.400000px;}
.y60{bottom:810.360000px;}
.y1c1{bottom:810.720000px;}
.y169{bottom:811.800000px;}
.y6{bottom:820.080000px;}
.y35{bottom:822.600000px;}
.y5f{bottom:829.080000px;}
.y34{bottom:839.160000px;}
.y5e{bottom:848.160000px;}
.y5{bottom:849.600000px;}
.y33{bottom:855.720000px;}
.y5d{bottom:867.240000px;}
.y32{bottom:872.280000px;}
.y4{bottom:878.760000px;}
.y5c{bottom:885.960000px;}
.y31{bottom:888.480000px;}
.y2f{bottom:925.500000px;}
.y2e{bottom:938.160000px;}
.y1{bottom:939.960000px;}
.h1e{height:17.640000px;}
.h1d{height:18.000000px;}
.h24{height:23.400000px;}
.h23{height:23.760000px;}
.h9{height:27.000000px;}
.h1a{height:27.720000px;}
.h1b{height:28.080000px;}
.h12{height:29.520000px;}
.h13{height:29.880000px;}
.h2{height:36.471094px;}
.hb{height:37.192500px;}
.h7{height:39.276563px;}
.h3{height:41.696016px;}
.h6{height:42.022969px;}
.h8{height:43.410938px;}
.h20{height:43.912969px;}
.hc{height:44.893125px;}
.ha{height:45.360000px;}
.he{height:45.992813px;}
.h5{height:50.540625px;}
.hd{height:55.760625px;}
.h15{height:57.996562px;}
.h4{height:66.848203px;}
.h26{height:69.516563px;}
.h18{height:78.156563px;}
.h21{height:96.480000px;}
.h1c{height:155.160000px;}
.h25{height:163.080000px;}
.h14{height:168.840000px;}
.h22{height:190.440000px;}
.h1f{height:194.040000px;}
.hf{height:199.080000px;}
.h17{height:213.840000px;}
.h19{height:215.640000px;}
.h10{height:220.320000px;}
.h11{height:226.800000px;}
.h16{height:252.720000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w2{width:60.000000px;}
.w15{width:139.320000px;}
.wb{width:141.480000px;}
.w9{width:146.520000px;}
.w12{width:177.480000px;}
.w8{width:179.280000px;}
.w7{width:180.360000px;}
.w10{width:181.440000px;}
.w11{width:206.280000px;}
.w13{width:210.240000px;}
.wa{width:240.120000px;}
.w17{width:258.120000px;}
.w14{width:265.680000px;}
.w1a{width:271.080000px;}
.w6{width:273.960000px;}
.w19{width:282.240000px;}
.w18{width:337.680000px;}
.w16{width:347.760000px;}
.wc{width:365.400000px;}
.w1c{width:413.280000px;}
.wd{width:430.560000px;}
.we{width:441.000000px;}
.w3{width:447.120000px;}
.wf{width:450.000000px;}
.w1b{width:456.120000px;}
.w5{width:486.720000px;}
.w4{width:515.520000px;}
.w0{width:722.925000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x15{left:10.050120px;}
.x14{left:16.890120px;}
.x2f{left:21.292620px;}
.x59{left:28.575060px;}
.x58{left:29.902620px;}
.x63{left:32.190180px;}
.x7{left:34.709880px;}
.x57{left:38.137680px;}
.x35{left:39.715035px;}
.x2e{left:41.257680px;}
.x74{left:43.715085px;}
.x44{left:45.152595px;}
.x67{left:48.701625px;}
.x31{left:50.357715px;}
.x1e{left:51.982680px;}
.x30{left:54.217680px;}
.x4c{left:56.670150px;}
.x1d{left:57.738900px;}
.x3f{left:59.215200px;}
.x17{left:62.857650px;}
.x16{left:65.674500px;}
.x60{left:67.065300px;}
.x56{left:69.685050px;}
.x2d{left:71.695050px;}
.x68{left:75.563550px;}
.xe{left:76.853400px;}
.x6a{left:80.131050px;}
.x62{left:84.975300px;}
.x69{left:89.168550px;}
.x36{left:90.629100px;}
.x9{left:94.500000px;}
.x2{left:95.760144px;}
.x2b{left:97.483800px;}
.x32{left:102.490350px;}
.x45{left:106.941600px;}
.x50{left:109.566600px;}
.x71{left:114.490350px;}
.x40{left:118.802850px;}
.x4d{left:121.427850px;}
.x4{left:122.760144px;}
.xa{left:127.710216px;}
.x78{left:129.510144px;}
.x61{left:131.400000px;}
.xf{left:134.734800px;}
.x18{left:139.990350px;}
.x39{left:143.365650px;}
.x8{left:148.935060px;}
.x37{left:151.101900px;}
.x2a{left:152.614200px;}
.x38{left:157.124400px;}
.x64{left:160.735350px;}
.x75{left:163.365450px;}
.x46{left:167.301750px;}
.x47{left:170.553000px;}
.x51{left:171.676800px;}
.x52{left:174.928050px;}
.x41{left:181.810650px;}
.x2c{left:186.976350px;}
.x5f{left:192.516300px;}
.x1f{left:194.799150px;}
.x10{left:196.036350px;}
.x20{left:198.511800px;}
.x3a{left:202.559550px;}
.x5a{left:204.936300px;}
.x33{left:206.755800px;}
.x6c{left:212.313150px;}
.x66{left:213.467850px;}
.x19{left:217.123050px;}
.x5e{left:222.311400px;}
.x65{left:229.075350px;}
.x6f{left:231.275100px;}
.x29{left:235.806900px;}
.x72{left:238.175850px;}
.x48{left:240.622050px;}
.x42{left:244.818300px;}
.x53{left:246.747000px;}
.x5d{left:248.954100px;}
.x4e{left:250.943250px;}
.x3b{left:255.367350px;}
.x11{left:257.337750px;}
.x5b{left:259.611300px;}
.x34{left:262.308600px;}
.x21{left:275.040750px;}
.x76{left:291.367350px;}
.x6d{left:296.219400px;}
.x1a{left:297.675900px;}
.x3d{left:302.126250px;}
.x49{left:304.304700px;}
.x3c{left:307.492350px;}
.x54{left:312.179700px;}
.x12{left:322.059150px;}
.x6e{left:340.915350px;}
.x5c{left:346.200600px;}
.x77{left:351.492450px;}
.x5{left:356.404932px;}
.x73{left:358.441200px;}
.x22{left:360.513600px;}
.x4a{left:361.938600px;}
.x28{left:366.925950px;}
.x1b{left:371.388600px;}
.x43{left:374.253750px;}
.x55{left:376.929900px;}
.x13{left:379.940700px;}
.x4f{left:383.878650px;}
.x24{left:434.961300px;}
.x25{left:439.626300px;}
.x23{left:444.992400px;}
.x1c{left:451.941300px;}
.x27{left:461.520360px;}
.x1{left:467.010000px;}
.x70{left:509.760000px;}
.x3e{left:527.760000px;}
.x4b{left:538.200000px;}
.xc{left:543.960000px;}
.x3{left:547.444080px;}
.x6b{left:552.960000px;}
.x6{left:568.500000px;}
.x26{left:583.200000px;}
.xd{left:611.640000px;}
.xb{left:660.240360px;}
@media print{
.v2{vertical-align:-30.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.640000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:34.560000pt;}
.ls29{letter-spacing:-1.585664pt;}
.ls47{letter-spacing:-1.571072pt;}
.ls3b{letter-spacing:-1.522432pt;}
.ls4d{letter-spacing:-1.493248pt;}
.ls33{letter-spacing:-1.464064pt;}
.ls43{letter-spacing:-1.430016pt;}
.ls28{letter-spacing:-1.415424pt;}
.ls36{letter-spacing:-1.386240pt;}
.ls25{letter-spacing:-1.381376pt;}
.ls26{letter-spacing:-1.371648pt;}
.ls15{letter-spacing:-1.365504pt;}
.ls38{letter-spacing:-1.361920pt;}
.ls18{letter-spacing:-1.349376pt;}
.ls35{letter-spacing:-1.342464pt;}
.ls27{letter-spacing:-1.337600pt;}
.ls14{letter-spacing:-1.333248pt;}
.ls22{letter-spacing:-1.313280pt;}
.lsa{letter-spacing:-1.312128pt;}
.ls34{letter-spacing:-1.308416pt;}
.ls2e{letter-spacing:-1.295616pt;}
.ls24{letter-spacing:-1.284096pt;}
.ls16{letter-spacing:-1.279488pt;}
.ls44{letter-spacing:-1.277696pt;}
.ls55{letter-spacing:-1.263360pt;}
.lsd{letter-spacing:-1.260672pt;}
.ls2d{letter-spacing:-1.257984pt;}
.ls37{letter-spacing:-1.254912pt;}
.ls30{letter-spacing:-1.250048pt;}
.ls4f{letter-spacing:-1.248256pt;}
.ls45{letter-spacing:-1.242368pt;}
.ls6a{letter-spacing:-1.225728pt;}
.lsb{letter-spacing:-1.217792pt;}
.ls3e{letter-spacing:-1.212928pt;}
.ls42{letter-spacing:-1.209600pt;}
.lsc{letter-spacing:-1.209216pt;}
.ls3c{letter-spacing:-1.207040pt;}
.ls19{letter-spacing:-1.193472pt;}
.ls23{letter-spacing:-1.191680pt;}
.ls48{letter-spacing:-1.177600pt;}
.ls17{letter-spacing:-1.171968pt;}
.ls3a{letter-spacing:-1.171712pt;}
.ls40{letter-spacing:-1.142272pt;}
.ls3d{letter-spacing:-1.136384pt;}
.ls3f{letter-spacing:-1.118720pt;}
.ls9{letter-spacing:-0.925056pt;}
.ls5a{letter-spacing:-0.860928pt;}
.ls8{letter-spacing:-0.853248pt;}
.ls7{letter-spacing:-0.823680pt;}
.ls57{letter-spacing:-0.700416pt;}
.ls59{letter-spacing:-0.564224pt;}
.ls6c{letter-spacing:-0.549632pt;}
.ls5d{letter-spacing:-0.471808pt;}
.ls63{letter-spacing:-0.432896pt;}
.ls61{letter-spacing:-0.398848pt;}
.ls6f{letter-spacing:-0.393984pt;}
.ls31{letter-spacing:-0.389120pt;}
.lsf{letter-spacing:-0.378880pt;}
.ls6d{letter-spacing:-0.374528pt;}
.ls1c{letter-spacing:-0.370944pt;}
.ls5e{letter-spacing:-0.369664pt;}
.ls21{letter-spacing:-0.359936pt;}
.ls39{letter-spacing:-0.355072pt;}
.ls60{letter-spacing:-0.350208pt;}
.ls56{letter-spacing:-0.340480pt;}
.lse{letter-spacing:-0.332800pt;}
.ls2f{letter-spacing:-0.330752pt;}
.ls73{letter-spacing:-0.306432pt;}
.ls70{letter-spacing:-0.301568pt;}
.ls10{letter-spacing:-0.301056pt;}
.ls1a{letter-spacing:-0.284928pt;}
.ls62{letter-spacing:-0.272384pt;}
.ls1e{letter-spacing:-0.268800pt;}
.ls71{letter-spacing:-0.258048pt;}
.ls64{letter-spacing:-0.257792pt;}
.ls72{letter-spacing:-0.241920pt;}
.ls74{letter-spacing:-0.236544pt;}
.ls20{letter-spacing:-0.231168pt;}
.ls11{letter-spacing:-0.215040pt;}
.ls76{letter-spacing:-0.204288pt;}
.ls1f{letter-spacing:-0.198912pt;}
.ls32{letter-spacing:-0.189696pt;}
.ls13{letter-spacing:-0.179200pt;}
.ls75{letter-spacing:-0.177408pt;}
.ls7b{letter-spacing:-0.141312pt;}
.ls1d{letter-spacing:-0.139776pt;}
.ls12{letter-spacing:-0.129024pt;}
.ls7e{letter-spacing:-0.111872pt;}
.ls1b{letter-spacing:-0.107520pt;}
.ls7c{letter-spacing:-0.105984pt;}
.ls7d{letter-spacing:-0.070656pt;}
.ls7f{letter-spacing:-0.052992pt;}
.ls5f{letter-spacing:-0.034048pt;}
.ls65{letter-spacing:-0.004864pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010240pt;}
.ls2{letter-spacing:0.010752pt;}
.ls58{letter-spacing:0.029184pt;}
.ls5c{letter-spacing:0.063232pt;}
.ls5b{letter-spacing:0.179968pt;}
.ls49{letter-spacing:0.349056pt;}
.ls67{letter-spacing:0.951936pt;}
.ls68{letter-spacing:0.952320pt;}
.ls4{letter-spacing:1.116672pt;}
.ls54{letter-spacing:1.227904pt;}
.ls50{letter-spacing:1.507712pt;}
.ls2a{letter-spacing:1.696256pt;}
.ls5{letter-spacing:2.309376pt;}
.ls4b{letter-spacing:2.419456pt;}
.ls3{letter-spacing:2.713600pt;}
.ls69{letter-spacing:3.329280pt;}
.ls51{letter-spacing:3.655040pt;}
.ls2b{letter-spacing:4.357632pt;}
.ls6b{letter-spacing:7.336960pt;}
.ls2c{letter-spacing:9.178880pt;}
.ls66{letter-spacing:9.314560pt;}
.ls7a{letter-spacing:9.483520pt;}
.ls79{letter-spacing:10.292992pt;}
.ls4e{letter-spacing:10.402304pt;}
.ls4a{letter-spacing:11.495680pt;}
.ls78{letter-spacing:12.302208pt;}
.ls77{letter-spacing:15.087232pt;}
.ls80{letter-spacing:17.562880pt;}
.ls53{letter-spacing:20.601472pt;}
.ls81{letter-spacing:27.384320pt;}
.ls4c{letter-spacing:32.549632pt;}
.ls46{letter-spacing:41.188992pt;}
.ls52{letter-spacing:105.280000pt;}
.ls6e{letter-spacing:121.063253pt;}
.ls41{letter-spacing:713.859328pt;}
.ls0{letter-spacing:916.177024pt;}
.ws3{word-spacing:-16.000000pt;}
.ws17{word-spacing:-14.720000pt;}
.ws4f{word-spacing:-14.614016pt;}
.ws4e{word-spacing:-14.578688pt;}
.ws11{word-spacing:-13.649664pt;}
.ws1c{word-spacing:-13.583616pt;}
.ws1a{word-spacing:-13.577728pt;}
.ws16{word-spacing:-13.548288pt;}
.ws4c{word-spacing:-13.542400pt;}
.ws39{word-spacing:-13.512960pt;}
.ws1d{word-spacing:-13.507072pt;}
.ws1b{word-spacing:-13.477632pt;}
.ws4d{word-spacing:-13.471744pt;}
.ws50{word-spacing:-13.442304pt;}
.ws7{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.310976pt;}
.ws5{word-spacing:-13.224960pt;}
.wsd{word-spacing:-13.208832pt;}
.wsb{word-spacing:-13.155072pt;}
.wsc{word-spacing:-13.138944pt;}
.ws8{word-spacing:-12.620800pt;}
.ws2{word-spacing:-12.467200pt;}
.ws4{word-spacing:-12.421120pt;}
.wsa{word-spacing:-12.246528pt;}
.ws36{word-spacing:-12.214272pt;}
.ws1f{word-spacing:-12.176640pt;}
.wse{word-spacing:-12.160512pt;}
.ws19{word-spacing:-12.149760pt;}
.ws46{word-spacing:-12.090624pt;}
.ws9{word-spacing:-12.074496pt;}
.ws45{word-spacing:-11.945472pt;}
.ws44{word-spacing:-11.913216pt;}
.ws43{word-spacing:-11.907840pt;}
.ws42{word-spacing:-11.891712pt;}
.ws25{word-spacing:-11.172608pt;}
.ws28{word-spacing:-11.055872pt;}
.ws14{word-spacing:-10.992640pt;}
.ws2c{word-spacing:-10.958592pt;}
.ws18{word-spacing:-10.940160pt;}
.ws34{word-spacing:-10.734848pt;}
.ws2e{word-spacing:-10.720256pt;}
.ws1e{word-spacing:-10.666752pt;}
.ws20{word-spacing:-10.652160pt;}
.ws15{word-spacing:-10.637568pt;}
.wsf{word-spacing:-10.632704pt;}
.ws2b{word-spacing:-10.622976pt;}
.ws41{word-spacing:-10.618112pt;}
.ws13{word-spacing:-10.603520pt;}
.ws40{word-spacing:-10.598656pt;}
.ws0{word-spacing:-10.560000pt;}
.ws2f{word-spacing:-10.559744pt;}
.ws2a{word-spacing:-10.520832pt;}
.ws3e{word-spacing:-10.443008pt;}
.ws32{word-spacing:-10.428416pt;}
.ws27{word-spacing:-10.292224pt;}
.ws24{word-spacing:-10.131712pt;}
.ws1{word-spacing:-9.706752pt;}
.ws12{word-spacing:-9.577216pt;}
.ws10{word-spacing:0.000000pt;}
.ws2d{word-spacing:6.861973pt;}
.ws33{word-spacing:15.951125pt;}
.ws35{word-spacing:36.394837pt;}
.ws4a{word-spacing:44.394325pt;}
.ws37{word-spacing:54.617259pt;}
.ws3b{word-spacing:60.839659pt;}
.ws48{word-spacing:61.100907pt;}
.ws4b{word-spacing:64.839104pt;}
.ws47{word-spacing:72.579947pt;}
.ws38{word-spacing:75.061504pt;}
.ws3d{word-spacing:78.719573pt;}
.ws3c{word-spacing:81.283904pt;}
.ws23{word-spacing:84.746539pt;}
.ws30{word-spacing:89.637013pt;}
.ws29{word-spacing:91.680704pt;}
.ws3f{word-spacing:98.591040pt;}
.ws21{word-spacing:100.738133pt;}
.ws26{word-spacing:106.995520pt;}
.ws31{word-spacing:113.957013pt;}
.ws22{word-spacing:117.744597pt;}
.ws49{word-spacing:130.241813pt;}
.ws3a{word-spacing:134.526080pt;}
._1a{margin-left:-4.081024pt;}
._10{margin-left:-3.128320pt;}
._4{margin-left:-2.204160pt;}
._0{margin-left:-0.959616pt;}
._3{width:0.943360pt;}
._6{width:2.129536pt;}
._5{width:3.088640pt;}
._9{width:4.212480pt;}
._c{width:5.119104pt;}
._b{width:6.031360pt;}
._e{width:6.947840pt;}
._2{width:7.889920pt;}
._1{width:8.919040pt;}
._d{width:10.700800pt;}
._f{width:11.717120pt;}
._11{width:12.614528pt;}
._8{width:14.823040pt;}
._7{width:15.859200pt;}
._12{width:16.878080pt;}
._13{width:17.871360pt;}
._19{width:18.780160pt;}
._1b{width:19.724800pt;}
._1c{width:20.784640pt;}
._1d{width:22.609920pt;}
._15{width:23.552000pt;}
._22{width:24.492800pt;}
._16{width:25.436160pt;}
._25{width:26.378240pt;}
._17{width:27.614720pt;}
._18{width:28.810752pt;}
._27{width:29.774848pt;}
._31{width:33.065216pt;}
._1e{width:33.999104pt;}
._1f{width:35.018880pt;}
._2f{width:36.328960pt;}
._3c{width:37.271040pt;}
._36{width:39.508480pt;}
._23{width:41.445013pt;}
._14{width:43.137792pt;}
._39{width:45.632000pt;}
._2e{width:47.339520pt;}
._29{width:50.860544pt;}
._28{width:52.049920pt;}
._35{width:55.641600pt;}
._38{width:58.291200pt;}
._20{width:65.349184pt;}
._3a{width:69.393664pt;}
._3b{width:70.399232pt;}
._37{width:83.138560pt;}
._34{width:85.088256pt;}
._33{width:86.134784pt;}
._2b{width:87.907840pt;}
._21{width:93.365568pt;}
._26{width:95.733120pt;}
._24{width:101.143147pt;}
._30{width:113.169664pt;}
._2c{width:118.996480pt;}
._3d{width:157.125504pt;}
._32{width:176.065408pt;}
._2a{width:817.190784pt;}
._2d{width:824.886656pt;}
._a{width:1024.621312pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs5{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y165{bottom:3.520000pt;}
.y163{bottom:3.840000pt;}
.y174{bottom:5.440053pt;}
.y194{bottom:6.080000pt;}
.y17c{bottom:6.080053pt;}
.y192{bottom:6.400000pt;}
.y30{bottom:7.093333pt;}
.y148{bottom:8.000000pt;}
.y142{bottom:8.000053pt;}
.y145{bottom:8.320000pt;}
.yda{bottom:8.960000pt;}
.yd8{bottom:11.520000pt;}
.yc3{bottom:11.520053pt;}
.yb0{bottom:11.840000pt;}
.y105{bottom:11.840053pt;}
.y173{bottom:21.760053pt;}
.yec{bottom:26.240000pt;}
.yc2{bottom:26.240053pt;}
.y12f{bottom:26.560000pt;}
.ya9{bottom:27.840000pt;}
.y15d{bottom:34.240000pt;}
.y18c{bottom:37.120000pt;}
.y176{bottom:37.120053pt;}
.y172{bottom:38.080053pt;}
.y13c{bottom:38.720053pt;}
.yd2{bottom:39.680000pt;}
.y3{bottom:40.000000pt;}
.y1c0{bottom:40.640000pt;}
.yeb{bottom:40.960000pt;}
.yc1{bottom:40.960053pt;}
.ya7{bottom:47.360000pt;}
.yaa{bottom:49.600000pt;}
.y15e{bottom:49.920000pt;}
.y2{bottom:52.480000pt;}
.y175{bottom:53.440053pt;}
.y171{bottom:54.080053pt;}
.yea{bottom:55.680000pt;}
.y127{bottom:56.960000pt;}
.yb8{bottom:56.960053pt;}
.y18d{bottom:57.600000pt;}
.y13d{bottom:63.040053pt;}
.y16f{bottom:64.000053pt;}
.ya4{bottom:64.640000pt;}
.y15f{bottom:65.280000pt;}
.yd3{bottom:65.600000pt;}
.y178{bottom:66.240053pt;}
.ya8{bottom:66.560000pt;}
.y170{bottom:70.400053pt;}
.y17a{bottom:71.040000pt;}
.yab{bottom:71.680000pt;}
.yb9{bottom:72.000052pt;}
.y128{bottom:73.600000pt;}
.y1bc{bottom:74.560000pt;}
.yfe{bottom:75.840053pt;}
.y18e{bottom:78.080000pt;}
.y16e{bottom:80.320053pt;}
.y160{bottom:80.640000pt;}
.ye5{bottom:81.920000pt;}
.y177{bottom:82.240053pt;}
.y126{bottom:83.200000pt;}
.y1bb{bottom:84.480000pt;}
.y1e1{bottom:87.040000pt;}
.yba{bottom:87.040052pt;}
.y13e{bottom:87.360000pt;}
.y129{bottom:89.920000pt;}
.y2d{bottom:91.200000pt;}
.yd4{bottom:91.520000pt;}
.ye6{bottom:91.839999pt;}
.ya6{bottom:91.840000pt;}
.y1bd{bottom:92.160000pt;}
.yfd{bottom:92.160053pt;}
.y120{bottom:92.480000pt;}
.yb7{bottom:92.800053pt;}
.yf6{bottom:93.120000pt;}
.yac{bottom:93.440000pt;}
.yff{bottom:94.400053pt;}
.y161{bottom:96.000000pt;}
.y84{bottom:96.320000pt;}
.yf8{bottom:98.240000pt;}
.yb5{bottom:98.560053pt;}
.y18f{bottom:98.880000pt;}
.y5b{bottom:99.200000pt;}
.y1b9{bottom:99.520000pt;}
.yd0{bottom:99.840000pt;}
.ye4{bottom:100.799999pt;}
.ye7{bottom:102.079999pt;}
.ybb{bottom:102.400053pt;}
.y1e0{bottom:103.680000pt;}
.yb2{bottom:105.600053pt;}
.y2c{bottom:105.920000pt;}
.y12a{bottom:106.560000pt;}
.y13a{bottom:106.880000pt;}
.y125{bottom:107.520000pt;}
.y15c{bottom:109.120000pt;}
.y17b{bottom:109.120053pt;}
.y11f{bottom:109.440000pt;}
.y1be{bottom:109.760000pt;}
.yf5{bottom:110.080000pt;}
.y122{bottom:110.720000pt;}
.ya2{bottom:111.040000pt;}
.y162{bottom:111.360000pt;}
.yfc{bottom:111.680000pt;}
.ye8{bottom:111.999999pt;}
.y13f{bottom:112.000000pt;}
.ycf{bottom:112.320000pt;}
.y83{bottom:112.960000pt;}
.ye0{bottom:112.960053pt;}
.y94{bottom:113.280000pt;}
.y1ba{bottom:114.240000pt;}
.yad{bottom:115.520000pt;}
.y5a{bottom:116.160000pt;}
.ye1{bottom:116.479999pt;}
.y204{bottom:116.480000pt;}
.yd5{bottom:117.440000pt;}
.ybc{bottom:117.440053pt;}
.y190{bottom:119.360000pt;}
.y1b7{bottom:119.680000pt;}
.y2b{bottom:120.320000pt;}
.ye3{bottom:120.640000pt;}
.ye9{bottom:122.240000pt;}
.yb6{bottom:122.560053pt;}
.y12b{bottom:122.880000pt;}
.y139{bottom:123.520000pt;}
.y16d{bottom:125.440000pt;}
.y15b{bottom:126.080000pt;}
.y11e{bottom:126.400000pt;}
.yf4{bottom:127.040000pt;}
.y1bf{bottom:127.360000pt;}
.ya1{bottom:127.680000pt;}
.yb3{bottom:127.680053pt;}
.y82{bottom:129.920000pt;}
.y93{bottom:130.240000pt;}
.y18a{bottom:130.880000pt;}
.y100{bottom:131.840000pt;}
.ye2{bottom:132.160000pt;}
.ybd{bottom:132.480053pt;}
.y59{bottom:133.120000pt;}
.y1ef{bottom:133.440000pt;}
.y2a{bottom:135.040000pt;}
.y140{bottom:136.320000pt;}
.y1b6{bottom:136.640000pt;}
.yae{bottom:137.280000pt;}
.y1df{bottom:137.600000pt;}
.y12c{bottom:139.200000pt;}
.ya0{bottom:140.160000pt;}
.y138{bottom:140.480000pt;}
.yf9{bottom:141.120000pt;}
.y16c{bottom:141.440000pt;}
.yb1{bottom:141.760000pt;}
.y11d{bottom:143.040000pt;}
.yd6{bottom:143.680000pt;}
.y81{bottom:146.880000pt;}
.y189{bottom:147.840000pt;}
.ybe{bottom:147.840053pt;}
.yfb{bottom:148.160000pt;}
.ya5{bottom:148.480000pt;}
.y123{bottom:149.120000pt;}
.y29{bottom:149.760000pt;}
.y1ee{bottom:150.080000pt;}
.y101{bottom:150.720000pt;}
.y1b5{bottom:153.600000pt;}
.y1de{bottom:154.240000pt;}
.y12d{bottom:155.840000pt;}
.y137{bottom:157.440000pt;}
.y16b{bottom:157.760000pt;}
.yaf{bottom:159.360000pt;}
.y15a{bottom:159.680000pt;}
.y11c{bottom:160.000000pt;}
.yf3{bottom:160.640000pt;}
.ybf{bottom:162.880053pt;}
.y80{bottom:163.520000pt;}
.y92{bottom:163.840000pt;}
.y28{bottom:164.480000pt;}
.y188{bottom:164.800000pt;}
.y58{bottom:166.720000pt;}
.y1ed{bottom:167.040000pt;}
.y102{bottom:169.280000pt;}
.yd7{bottom:169.600000pt;}
.y1b4{bottom:170.240000pt;}
.y1dd{bottom:170.880000pt;}
.yb4{bottom:171.200053pt;}
.y12e{bottom:172.160000pt;}
.y136{bottom:174.080000pt;}
.y124{bottom:176.320000pt;}
.y159{bottom:176.640000pt;}
.y11b{bottom:176.960000pt;}
.yf2{bottom:177.600000pt;}
.yc0{bottom:177.920053pt;}
.y27{bottom:179.200000pt;}
.y7f{bottom:180.480000pt;}
.y91{bottom:180.800000pt;}
.y187{bottom:181.440000pt;}
.y57{bottom:183.680000pt;}
.y1ec{bottom:184.000000pt;}
.y1dc{bottom:186.880000pt;}
.y1b3{bottom:187.200000pt;}
.y103{bottom:188.160000pt;}
.y135{bottom:191.040000pt;}
.y26{bottom:193.600000pt;}
.y11a{bottom:193.920000pt;}
.yf1{bottom:194.240000pt;}
.y7e{bottom:197.440000pt;}
.y186{bottom:198.400000pt;}
.yfa{bottom:198.720000pt;}
.y56{bottom:200.320000pt;}
.y1eb{bottom:200.640000pt;}
.y1db{bottom:203.200000pt;}
.y1b2{bottom:204.160000pt;}
.y104{bottom:206.720000pt;}
.y134{bottom:208.000000pt;}
.y25{bottom:208.320000pt;}
.y119{bottom:210.560000pt;}
.yf0{bottom:211.200000pt;}
.y7d{bottom:214.400000pt;}
.y185{bottom:215.360000pt;}
.y55{bottom:217.280000pt;}
.y1ea{bottom:217.600000pt;}
.y1da{bottom:220.160000pt;}
.y1b1{bottom:220.800000pt;}
.y24{bottom:223.040000pt;}
.y133{bottom:224.960000pt;}
.y158{bottom:226.880000pt;}
.y118{bottom:227.520000pt;}
.yef{bottom:227.840000pt;}
.y7c{bottom:231.040000pt;}
.y90{bottom:231.360000pt;}
.y184{bottom:232.320000pt;}
.y54{bottom:234.240000pt;}
.y1e9{bottom:234.560000pt;}
.y1d9{bottom:237.120000pt;}
.y23{bottom:237.760000pt;}
.y157{bottom:239.360000pt;}
.y16a{bottom:240.320000pt;}
.y132{bottom:241.600000pt;}
.yee{bottom:243.200000pt;}
.y117{bottom:244.480000pt;}
.y7b{bottom:248.000000pt;}
.y183{bottom:248.960000pt;}
.y53{bottom:250.880000pt;}
.y1e8{bottom:251.200000pt;}
.y22{bottom:252.160000pt;}
.y1d8{bottom:253.760000pt;}
.y1b0{bottom:254.720000pt;}
.yed{bottom:255.680000pt;}
.yf7{bottom:256.320000pt;}
.y131{bottom:258.240000pt;}
.y116{bottom:261.120000pt;}
.y7a{bottom:264.960000pt;}
.y182{bottom:265.920000pt;}
.yce{bottom:266.240000pt;}
.y21{bottom:266.880000pt;}
.y52{bottom:267.840000pt;}
.y1e7{bottom:268.160000pt;}
.y130{bottom:270.720000pt;}
.y1af{bottom:271.360000pt;}
.y13b{bottom:272.320000pt;}
.y115{bottom:278.080000pt;}
.y20{bottom:281.600000pt;}
.y8f{bottom:281.920000pt;}
.ycd{bottom:282.880000pt;}
.y51{bottom:284.800000pt;}
.y1e6{bottom:285.120000pt;}
.y1d7{bottom:287.360000pt;}
.y1ae{bottom:288.320000pt;}
.y114{bottom:295.040000pt;}
.y1f{bottom:296.320000pt;}
.y79{bottom:298.560000pt;}
.y8e{bottom:298.880000pt;}
.y181{bottom:299.520000pt;}
.ycc{bottom:299.840000pt;}
.y50{bottom:301.760000pt;}
.y1e5{bottom:302.080000pt;}
.y1d6{bottom:303.360000pt;}
.y141{bottom:304.000000pt;}
.y1ad{bottom:305.280000pt;}
.y1e{bottom:310.720000pt;}
.y113{bottom:311.680000pt;}
.y78{bottom:315.520000pt;}
.y180{bottom:316.480000pt;}
.ycb{bottom:316.800000pt;}
.y4f{bottom:318.400000pt;}
.y203{bottom:318.720000pt;}
.y1d5{bottom:319.680000pt;}
.y1ac{bottom:322.240000pt;}
.y1d{bottom:325.760000pt;}
.y179{bottom:327.040000pt;}
.y143{bottom:328.320000pt;}
.y112{bottom:328.640000pt;}
.y77{bottom:332.160000pt;}
.y8d{bottom:332.480000pt;}
.y17f{bottom:333.120000pt;}
.yca{bottom:333.440000pt;}
.y1e4{bottom:334.400000pt;}
.y4e{bottom:335.360000pt;}
.y202{bottom:335.680000pt;}
.y1d4{bottom:336.320000pt;}
.y1ab{bottom:338.880000pt;}
.y9f{bottom:340.800000pt;}
.y1c{bottom:341.120000pt;}
.y111{bottom:345.600000pt;}
.y17e{bottom:348.480000pt;}
.y76{bottom:349.120000pt;}
.y8c{bottom:349.440000pt;}
.yc9{bottom:350.400000pt;}
.y1e3{bottom:350.720000pt;}
.y4d{bottom:352.320000pt;}
.y144{bottom:352.640000pt;}
.y1aa{bottom:355.840000pt;}
.y1b{bottom:356.480000pt;}
.y9e{bottom:357.440000pt;}
.y17d{bottom:360.960000pt;}
.y18b{bottom:362.240000pt;}
.y110{bottom:362.560000pt;}
.y75{bottom:366.080000pt;}
.y1e2{bottom:366.720000pt;}
.yc8{bottom:367.360000pt;}
.y1d3{bottom:368.320000pt;}
.y4c{bottom:368.960000pt;}
.y201{bottom:369.280000pt;}
.y1a{bottom:371.840000pt;}
.y1a9{bottom:372.800000pt;}
.y9d{bottom:374.400000pt;}
.y146{bottom:376.960000pt;}
.y10f{bottom:379.200000pt;}
.y74{bottom:383.040000pt;}
.yc7{bottom:384.000000pt;}
.y1d2{bottom:384.640000pt;}
.y4b{bottom:385.920000pt;}
.y200{bottom:386.240000pt;}
.y19{bottom:387.200000pt;}
.y1a8{bottom:389.440000pt;}
.y9c{bottom:391.360000pt;}
.y191{bottom:393.920000pt;}
.y10e{bottom:396.160000pt;}
.y73{bottom:399.680000pt;}
.y8b{bottom:400.000000pt;}
.yc6{bottom:400.960000pt;}
.y147{bottom:401.600000pt;}
.y18{bottom:402.560000pt;}
.y4a{bottom:402.880000pt;}
.y1ff{bottom:403.200000pt;}
.y1a7{bottom:406.400000pt;}
.y9b{bottom:408.000000pt;}
.y10d{bottom:413.120000pt;}
.y193{bottom:414.720000pt;}
.y156{bottom:416.000000pt;}
.y72{bottom:416.640000pt;}
.y8a{bottom:416.960000pt;}
.y17{bottom:417.920000pt;}
.y1d1{bottom:418.240000pt;}
.y49{bottom:419.840000pt;}
.y1fe{bottom:420.160000pt;}
.y1a6{bottom:423.360000pt;}
.y9a{bottom:424.960000pt;}
.y149{bottom:425.920000pt;}
.y10c{bottom:429.760000pt;}
.y155{bottom:432.960000pt;}
.y16{bottom:433.280000pt;}
.y71{bottom:433.600000pt;}
.yc5{bottom:434.880000pt;}
.y195{bottom:435.200000pt;}
.y48{bottom:436.480000pt;}
.y1fd{bottom:436.800000pt;}
.y1a5{bottom:440.000000pt;}
.y99{bottom:441.920000pt;}
.y10b{bottom:446.720000pt;}
.y15{bottom:448.640000pt;}
.y154{bottom:449.600000pt;}
.y70{bottom:450.240000pt;}
.y89{bottom:450.560000pt;}
.yc4{bottom:451.200000pt;}
.y1d0{bottom:452.160000pt;}
.y47{bottom:453.440000pt;}
.y1fc{bottom:453.760000pt;}
.y196{bottom:456.000000pt;}
.y1a4{bottom:456.960000pt;}
.y98{bottom:458.880000pt;}
.y10a{bottom:463.680000pt;}
.y14{bottom:464.000000pt;}
.yd1{bottom:464.960000pt;}
.y153{bottom:466.560000pt;}
.y6f{bottom:467.200000pt;}
.y88{bottom:467.520000pt;}
.y1cf{bottom:468.800000pt;}
.y46{bottom:470.400000pt;}
.y1fb{bottom:470.720000pt;}
.y1a3{bottom:473.920000pt;}
.y97{bottom:475.520000pt;}
.y197{bottom:476.480000pt;}
.y13{bottom:479.360000pt;}
.y109{bottom:480.320000pt;}
.y152{bottom:483.520000pt;}
.y6e{bottom:484.160000pt;}
.y1ce{bottom:485.760000pt;}
.y45{bottom:487.040000pt;}
.y1fa{bottom:487.360000pt;}
.y1a2{bottom:490.880000pt;}
.y96{bottom:492.160000pt;}
.y12{bottom:494.400000pt;}
.yd9{bottom:496.640000pt;}
.y108{bottom:497.280000pt;}
.y151{bottom:500.160000pt;}
.y6d{bottom:500.800000pt;}
.y87{bottom:501.120000pt;}
.y1cd{bottom:502.720000pt;}
.y44{bottom:504.000000pt;}
.y1f9{bottom:504.320000pt;}
.y95{bottom:504.640000pt;}
.ya3{bottom:506.240000pt;}
.y1a1{bottom:507.520000pt;}
.y11{bottom:509.760000pt;}
.y107{bottom:513.920000pt;}
.y150{bottom:517.120000pt;}
.y6c{bottom:517.760000pt;}
.y86{bottom:518.080000pt;}
.y1cc{bottom:519.360000pt;}
.y1f8{bottom:521.280000pt;}
.ydb{bottom:522.560000pt;}
.y1a0{bottom:524.480000pt;}
.y10{bottom:525.120000pt;}
.y43{bottom:526.080000pt;}
.y106{bottom:526.400000pt;}
.y121{bottom:527.040000pt;}
.y20d{bottom:533.440000pt;}
.y14f{bottom:534.080000pt;}
.y6b{bottom:534.720000pt;}
.y1cb{bottom:536.320000pt;}
.y1f7{bottom:537.920000pt;}
.yf{bottom:540.480000pt;}
.y42{bottom:540.800000pt;}
.y19f{bottom:541.440000pt;}
.y85{bottom:548.480000pt;}
.ydc{bottom:548.800000pt;}
.y20c{bottom:550.080000pt;}
.y14e{bottom:550.720000pt;}
.y6a{bottom:551.680000pt;}
.y1ca{bottom:553.280000pt;}
.y1f6{bottom:554.880000pt;}
.y41{bottom:555.520000pt;}
.ye{bottom:556.800000pt;}
.y19e{bottom:558.080000pt;}
.y20b{bottom:567.040000pt;}
.y14d{bottom:567.680000pt;}
.y69{bottom:568.320000pt;}
.y40{bottom:570.240000pt;}
.y1f5{bottom:571.840000pt;}
.ydd{bottom:574.720000pt;}
.y19d{bottom:575.040000pt;}
.yd{bottom:582.400000pt;}
.y20a{bottom:584.000000pt;}
.y14c{bottom:584.320000pt;}
.y3f{bottom:584.960000pt;}
.y68{bottom:585.280000pt;}
.y1c9{bottom:586.880000pt;}
.y1f4{bottom:588.800000pt;}
.y19c{bottom:592.000000pt;}
.yc{bottom:597.760000pt;}
.y3e{bottom:599.360000pt;}
.y14b{bottom:599.680000pt;}
.yde{bottom:600.640000pt;}
.y67{bottom:602.240000pt;}
.y1c8{bottom:603.840000pt;}
.y1f3{bottom:605.120000pt;}
.y19b{bottom:608.960000pt;}
.y14a{bottom:612.160000pt;}
.yb{bottom:612.800000pt;}
.y3d{bottom:614.080000pt;}
.y209{bottom:617.600000pt;}
.y66{bottom:618.880000pt;}
.y1c7{bottom:620.800000pt;}
.y1f2{bottom:621.120000pt;}
.y19a{bottom:625.600000pt;}
.ydf{bottom:626.560000pt;}
.ya{bottom:628.160000pt;}
.y3c{bottom:628.800000pt;}
.y208{bottom:634.560000pt;}
.y65{bottom:635.840000pt;}
.y1f1{bottom:637.120000pt;}
.y1c6{bottom:637.440000pt;}
.y199{bottom:642.240000pt;}
.y3b{bottom:643.520000pt;}
.y9{bottom:644.480000pt;}
.y207{bottom:651.200000pt;}
.y64{bottom:652.800000pt;}
.y1f0{bottom:653.440000pt;}
.y1c5{bottom:654.400000pt;}
.y198{bottom:654.720000pt;}
.y1b8{bottom:656.320000pt;}
.y3a{bottom:657.920000pt;}
.y164{bottom:660.160000pt;}
.y206{bottom:668.160000pt;}
.y63{bottom:669.760000pt;}
.y1c4{bottom:671.360000pt;}
.y39{bottom:672.640000pt;}
.y166{bottom:675.520000pt;}
.y8{bottom:677.120000pt;}
.y205{bottom:685.440000pt;}
.y62{bottom:686.400000pt;}
.y38{bottom:687.360000pt;}
.y1c3{bottom:688.320000pt;}
.y167{bottom:690.880000pt;}
.y37{bottom:702.080000pt;}
.y7{bottom:703.040000pt;}
.y61{bottom:703.360000pt;}
.y1c2{bottom:704.640000pt;}
.y168{bottom:706.240000pt;}
.y36{bottom:716.800000pt;}
.y60{bottom:720.320000pt;}
.y1c1{bottom:720.640000pt;}
.y169{bottom:721.600000pt;}
.y6{bottom:728.960000pt;}
.y35{bottom:731.200000pt;}
.y5f{bottom:736.960000pt;}
.y34{bottom:745.920000pt;}
.y5e{bottom:753.920000pt;}
.y5{bottom:755.200000pt;}
.y33{bottom:760.640000pt;}
.y5d{bottom:770.880000pt;}
.y32{bottom:775.360000pt;}
.y4{bottom:781.120000pt;}
.y5c{bottom:787.520000pt;}
.y31{bottom:789.760000pt;}
.y2f{bottom:822.666667pt;}
.y2e{bottom:833.920000pt;}
.y1{bottom:835.520000pt;}
.h1e{height:15.680000pt;}
.h1d{height:16.000000pt;}
.h24{height:20.800000pt;}
.h23{height:21.120000pt;}
.h9{height:24.000000pt;}
.h1a{height:24.640000pt;}
.h1b{height:24.960000pt;}
.h12{height:26.240000pt;}
.h13{height:26.560000pt;}
.h2{height:32.418750pt;}
.hb{height:33.060000pt;}
.h7{height:34.912500pt;}
.h3{height:37.063125pt;}
.h6{height:37.353750pt;}
.h8{height:38.587500pt;}
.h20{height:39.033750pt;}
.hc{height:39.905000pt;}
.ha{height:40.320000pt;}
.he{height:40.882500pt;}
.h5{height:44.925000pt;}
.hd{height:49.565000pt;}
.h15{height:51.552500pt;}
.h4{height:59.420625pt;}
.h26{height:61.792500pt;}
.h18{height:69.472500pt;}
.h21{height:85.760000pt;}
.h1c{height:137.920000pt;}
.h25{height:144.960000pt;}
.h14{height:150.080000pt;}
.h22{height:169.280000pt;}
.h1f{height:172.480000pt;}
.hf{height:176.960000pt;}
.h17{height:190.080000pt;}
.h19{height:191.680000pt;}
.h10{height:195.840000pt;}
.h11{height:201.600000pt;}
.h16{height:224.640000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w2{width:53.333333pt;}
.w15{width:123.840000pt;}
.wb{width:125.760000pt;}
.w9{width:130.240000pt;}
.w12{width:157.760000pt;}
.w8{width:159.360000pt;}
.w7{width:160.320000pt;}
.w10{width:161.280000pt;}
.w11{width:183.360000pt;}
.w13{width:186.880000pt;}
.wa{width:213.440000pt;}
.w17{width:229.440000pt;}
.w14{width:236.160000pt;}
.w1a{width:240.960000pt;}
.w6{width:243.520000pt;}
.w19{width:250.880000pt;}
.w18{width:300.160000pt;}
.w16{width:309.120000pt;}
.wc{width:324.800000pt;}
.w1c{width:367.360000pt;}
.wd{width:382.720000pt;}
.we{width:392.000000pt;}
.w3{width:397.440000pt;}
.wf{width:400.000000pt;}
.w1b{width:405.440000pt;}
.w5{width:432.640000pt;}
.w4{width:458.240000pt;}
.w0{width:642.600000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x15{left:8.933440pt;}
.x14{left:15.013440pt;}
.x2f{left:18.926773pt;}
.x59{left:25.400053pt;}
.x58{left:26.580107pt;}
.x63{left:28.613493pt;}
.x7{left:30.853227pt;}
.x57{left:33.900160pt;}
.x35{left:35.302253pt;}
.x2e{left:36.673493pt;}
.x74{left:38.857853pt;}
.x44{left:40.135640pt;}
.x67{left:43.290333pt;}
.x31{left:44.762413pt;}
.x1e{left:46.206827pt;}
.x30{left:48.193493pt;}
.x4c{left:50.373467pt;}
.x1d{left:51.323467pt;}
.x3f{left:52.635733pt;}
.x17{left:55.873467pt;}
.x16{left:58.377333pt;}
.x60{left:59.613600pt;}
.x56{left:61.942267pt;}
.x2d{left:63.728933pt;}
.x68{left:67.167600pt;}
.xe{left:68.314133pt;}
.x6a{left:71.227600pt;}
.x62{left:75.533600pt;}
.x69{left:79.260933pt;}
.x36{left:80.559200pt;}
.x9{left:84.000000pt;}
.x2{left:85.120128pt;}
.x2b{left:86.652267pt;}
.x32{left:91.102533pt;}
.x45{left:95.059200pt;}
.x50{left:97.392533pt;}
.x71{left:101.769200pt;}
.x40{left:105.602533pt;}
.x4d{left:107.935867pt;}
.x4{left:109.120128pt;}
.xa{left:113.520192pt;}
.x78{left:115.120128pt;}
.x61{left:116.800000pt;}
.xf{left:119.764267pt;}
.x18{left:124.435867pt;}
.x39{left:127.436133pt;}
.x8{left:132.386720pt;}
.x37{left:134.312800pt;}
.x2a{left:135.657067pt;}
.x38{left:139.666133pt;}
.x64{left:142.875867pt;}
.x75{left:145.213733pt;}
.x46{left:148.712667pt;}
.x47{left:151.602667pt;}
.x51{left:152.601600pt;}
.x52{left:155.491600pt;}
.x41{left:161.609467pt;}
.x2c{left:166.201200pt;}
.x5f{left:171.125600pt;}
.x1f{left:173.154800pt;}
.x10{left:174.254533pt;}
.x20{left:176.454933pt;}
.x3a{left:180.052933pt;}
.x5a{left:182.165600pt;}
.x33{left:183.782933pt;}
.x6c{left:188.722800pt;}
.x66{left:189.749200pt;}
.x19{left:192.998267pt;}
.x5e{left:197.610133pt;}
.x65{left:203.622533pt;}
.x6f{left:205.577867pt;}
.x29{left:209.606133pt;}
.x72{left:211.711867pt;}
.x48{left:213.886267pt;}
.x42{left:217.616267pt;}
.x53{left:219.330667pt;}
.x5d{left:221.292533pt;}
.x4e{left:223.060667pt;}
.x3b{left:226.993200pt;}
.x11{left:228.744667pt;}
.x5b{left:230.765600pt;}
.x34{left:233.163200pt;}
.x21{left:244.480667pt;}
.x76{left:258.993200pt;}
.x6d{left:263.306133pt;}
.x1a{left:264.600800pt;}
.x3d{left:268.556667pt;}
.x49{left:270.493067pt;}
.x3c{left:273.326533pt;}
.x54{left:277.493067pt;}
.x12{left:286.274800pt;}
.x6e{left:303.035867pt;}
.x5c{left:307.733867pt;}
.x77{left:312.437733pt;}
.x5{left:316.804384pt;}
.x73{left:318.614400pt;}
.x22{left:320.456533pt;}
.x4a{left:321.723200pt;}
.x28{left:326.156400pt;}
.x1b{left:330.123200pt;}
.x43{left:332.670000pt;}
.x55{left:335.048800pt;}
.x13{left:337.725067pt;}
.x4f{left:341.225467pt;}
.x24{left:386.632267pt;}
.x25{left:390.778933pt;}
.x23{left:395.548800pt;}
.x1c{left:401.725600pt;}
.x27{left:410.240320pt;}
.x1{left:415.120000pt;}
.x70{left:453.120000pt;}
.x3e{left:469.120000pt;}
.x4b{left:478.400000pt;}
.xc{left:483.520000pt;}
.x3{left:486.616960pt;}
.x6b{left:491.520000pt;}
.x6{left:505.333333pt;}
.x26{left:518.400000pt;}
.xd{left:543.680000pt;}
.xb{left:586.880320pt;}
}




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