
    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_ffb787d18d290fe147ff72cd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_477ab92dacf411593f51738c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995000;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_d8573b1ca6e1b8e648fc7711.woff')format("woff");}.ff3{font-family:ff3;line-height:0.675537;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_7f5f22304ce84ead091780ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.674561;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_eb49ac63f166fd2327acb8aa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_561b433d5644f68b61120b0c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_793d760496384cba0aa53c45.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_c3bcb1ed578902e99b2c6a98.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c3344443a121c8edff87a0ae.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_ec7e37eaca2476ede15f4ef4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3f6f3f739c5bedf484123bf1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.674316;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);}
.v3{vertical-align:-18.720000px;}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls71{letter-spacing:-1.834848px;}
.ls31{letter-spacing:-1.711584px;}
.ls15{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.324224px;}
.ls7c{letter-spacing:-1.238688px;}
.ls63{letter-spacing:-1.179072px;}
.ls21{letter-spacing:-1.165536px;}
.ls2a{letter-spacing:-0.973728px;}
.ls8a{letter-spacing:-0.735264px;}
.ls1b{letter-spacing:-0.733248px;}
.ls1f{letter-spacing:-0.662112px;}
.ls37{letter-spacing:-0.642528px;}
.ls6a{letter-spacing:-0.622656px;}
.ls3e{letter-spacing:-0.617760px;}
.ls97{letter-spacing:-0.598752px;}
.ls46{letter-spacing:-0.574560px;}
.ls5a{letter-spacing:-0.563040px;}
.ls2d{letter-spacing:-0.544320px;}
.ls51{letter-spacing:-0.523296px;}
.ls19{letter-spacing:-0.519840px;}
.ls24{letter-spacing:-0.514080px;}
.ls3c{letter-spacing:-0.510048px;}
.ls7b{letter-spacing:-0.483552px;}
.ls1d{letter-spacing:-0.443232px;}
.ls48{letter-spacing:-0.441504px;}
.ls3d{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.426816px;}
.ls29{letter-spacing:-0.417312px;}
.ls35{letter-spacing:-0.397440px;}
.ls38{letter-spacing:-0.390816px;}
.ls66{letter-spacing:-0.377568px;}
.ls2e{letter-spacing:-0.362880px;}
.ls73{letter-spacing:-0.351072px;}
.lsf{letter-spacing:-0.344736px;}
.ls65{letter-spacing:-0.337824px;}
.ls8e{letter-spacing:-0.332640px;}
.ls9f{letter-spacing:-0.296352px;}
.ls33{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.279072px;}
.ls27{letter-spacing:-0.272160px;}
.ls98{letter-spacing:-0.266112px;}
.ls7a{letter-spacing:-0.264960px;}
.ls7e{letter-spacing:-0.260496px;}
.ls81{letter-spacing:-0.258336px;}
.ls8c{letter-spacing:-0.254016px;}
.lsa{letter-spacing:-0.229824px;}
.ls4a{letter-spacing:-0.211968px;}
.ls7f{letter-spacing:-0.202608px;}
.ls23{letter-spacing:-0.199584px;}
.ls32{letter-spacing:-0.193536px;}
.ls9c{letter-spacing:-0.181440px;}
.ls7d{letter-spacing:-0.172224px;}
.ls57{letter-spacing:-0.139104px;}
.ls28{letter-spacing:-0.133056px;}
.ls2c{letter-spacing:-0.114912px;}
.ls53{letter-spacing:-0.112608px;}
.lsd{letter-spacing:-0.093024px;}
.ls25{letter-spacing:-0.090720px;}
.ls9a{letter-spacing:-0.066528px;}
.ls4d{letter-spacing:-0.059616px;}
.ls6e{letter-spacing:-0.052992px;}
.ls2b{letter-spacing:-0.030240px;}
.ls60{letter-spacing:-0.019872px;}
.lsa5{letter-spacing:-0.018144px;}
.ls72{letter-spacing:-0.013248px;}
.lsb{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.006048px;}
.ls1c{letter-spacing:0.010944px;}
.ls75{letter-spacing:0.023040px;}
.ls22{letter-spacing:0.027360px;}
.ls49{letter-spacing:0.030240px;}
.ls20{letter-spacing:0.032832px;}
.ls74{letter-spacing:0.043200px;}
.ls64{letter-spacing:0.046368px;}
.ls58{letter-spacing:0.059616px;}
.ls11{letter-spacing:0.065664px;}
.ls79{letter-spacing:0.066240px;}
.ls5b{letter-spacing:0.072864px;}
.lsa0{letter-spacing:0.078624px;}
.ls2{letter-spacing:0.079200px;}
.ls88{letter-spacing:0.079488px;}
.ls50{letter-spacing:0.086112px;}
.ls43{letter-spacing:0.086400px;}
.ls9d{letter-spacing:0.090720px;}
.lsc{letter-spacing:0.114912px;}
.ls3{letter-spacing:0.115200px;}
.ls84{letter-spacing:0.125856px;}
.ls3f{letter-spacing:0.152064px;}
.ls4{letter-spacing:0.172800px;}
.ls18{letter-spacing:0.175104px;}
.ls34{letter-spacing:0.178848px;}
.ls85{letter-spacing:0.181440px;}
.ls67{letter-spacing:0.198720px;}
.ls3b{letter-spacing:0.205344px;}
.ls9e{letter-spacing:0.211680px;}
.ls5c{letter-spacing:0.216000px;}
.ls96{letter-spacing:0.229824px;}
.ls42{letter-spacing:0.245088px;}
.ls59{letter-spacing:0.258336px;}
.ls1{letter-spacing:0.259200px;}
.ls90{letter-spacing:0.260064px;}
.ls68{letter-spacing:0.291456px;}
.lsa2{letter-spacing:0.302400px;}
.ls62{letter-spacing:0.304704px;}
.ls54{letter-spacing:0.317952px;}
.ls45{letter-spacing:0.326592px;}
.ls36{letter-spacing:0.331200px;}
.ls2f{letter-spacing:0.350784px;}
.ls7{letter-spacing:0.360000px;}
.ls78{letter-spacing:0.370944px;}
.lse{letter-spacing:0.372096px;}
.ls17{letter-spacing:0.394416px;}
.ls4b{letter-spacing:0.397440px;}
.ls9{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.443808px;}
.ls92{letter-spacing:0.447552px;}
.ls55{letter-spacing:0.450432px;}
.ls9b{letter-spacing:0.453600px;}
.ls6b{letter-spacing:0.457056px;}
.ls40{letter-spacing:0.470448px;}
.ls91{letter-spacing:0.477792px;}
.ls80{letter-spacing:0.489456px;}
.ls89{letter-spacing:0.489888px;}
.ls5d{letter-spacing:0.490176px;}
.ls8b{letter-spacing:0.495936px;}
.ls13{letter-spacing:0.514368px;}
.ls4e{letter-spacing:0.516672px;}
.ls8d{letter-spacing:0.526176px;}
.ls8f{letter-spacing:0.532224px;}
.ls52{letter-spacing:0.536544px;}
.lsa3{letter-spacing:0.556416px;}
.ls8{letter-spacing:0.570240px;}
.ls0{letter-spacing:0.576000px;}
.lsa4{letter-spacing:0.586656px;}
.ls12{letter-spacing:0.590976px;}
.ls99{letter-spacing:0.598752px;}
.ls56{letter-spacing:0.602784px;}
.ls61{letter-spacing:0.616032px;}
.ls30{letter-spacing:0.622944px;}
.ls77{letter-spacing:0.635904px;}
.ls69{letter-spacing:0.642528px;}
.ls70{letter-spacing:0.669024px;}
.ls93{letter-spacing:0.677376px;}
.ls6{letter-spacing:0.708480px;}
.ls4c{letter-spacing:0.708768px;}
.ls95{letter-spacing:0.713664px;}
.ls16{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.735264px;}
.lsa1{letter-spacing:0.762048px;}
.ls14{letter-spacing:0.771552px;}
.ls41{letter-spacing:0.864000px;}
.ls47{letter-spacing:0.864864px;}
.ls6f{letter-spacing:0.927360px;}
.ls4f{letter-spacing:1.039968px;}
.ls6c{letter-spacing:1.152000px;}
.ls5e{letter-spacing:2.592000px;}
.ls76{letter-spacing:4.032000px;}
.ls83{letter-spacing:4.320000px;}
.ls94{letter-spacing:4.808160px;}
.ls5{letter-spacing:6.624000px;}
.ls86{letter-spacing:8.352000px;}
.ls44{letter-spacing:10.385280px;}
.ls87{letter-spacing:11.232000px;}
.ls82{letter-spacing:14.705280px;}
.ls6d{letter-spacing:37.745280px;}
.ls5f{letter-spacing:849.600000px;}
.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;}
}
.ws1d{word-spacing:-17.280000px;}
.ws13{word-spacing:-16.776000px;}
.ws34{word-spacing:-16.334784px;}
.ws20{word-spacing:-16.096320px;}
.ws30{word-spacing:-16.069824px;}
.ws1a{word-spacing:-15.758496px;}
.ws27{word-spacing:-15.698880px;}
.ws9{word-spacing:-15.624000px;}
.ws21{word-spacing:-15.361056px;}
.ws31{word-spacing:-15.215328px;}
.ws12{word-spacing:-14.760000px;}
.ws11{word-spacing:-14.400000px;}
.wsa{word-spacing:-13.989024px;}
.ws26{word-spacing:-13.983264px;}
.ws2d{word-spacing:-13.956768px;}
.ws29{word-spacing:-13.890528px;}
.ws28{word-spacing:-13.764672px;}
.ws2c{word-spacing:-13.705056px;}
.ws39{word-spacing:-13.645440px;}
.ws38{word-spacing:-13.579200px;}
.ws2e{word-spacing:-13.552704px;}
.ws32{word-spacing:-13.506336px;}
.ws25{word-spacing:-13.446720px;}
.ws37{word-spacing:-13.426848px;}
.ws1e{word-spacing:-13.248000px;}
.ws1f{word-spacing:-13.228128px;}
.ws18{word-spacing:-13.188384px;}
.wsb{word-spacing:-13.143744px;}
.ws22{word-spacing:-13.135392px;}
.wsf{word-spacing:-12.979584px;}
.ws2f{word-spacing:-12.896928px;}
.ws23{word-spacing:-12.870432px;}
.ws48{word-spacing:-12.858048px;}
.ws14{word-spacing:-12.857184px;}
.ws3a{word-spacing:-12.850560px;}
.ws19{word-spacing:-12.830688px;}
.ws33{word-spacing:-12.737952px;}
.ws2b{word-spacing:-12.724704px;}
.ws1c{word-spacing:-12.684960px;}
.ws4a{word-spacing:-12.682656px;}
.ws49{word-spacing:-12.652416px;}
.ws3c{word-spacing:-12.628224px;}
.ws2a{word-spacing:-12.625344px;}
.ws3b{word-spacing:-12.622176px;}
.ws24{word-spacing:-12.605472px;}
.ws47{word-spacing:-12.591936px;}
.ws46{word-spacing:-12.543552px;}
.wsc{word-spacing:-12.448800px;}
.ws41{word-spacing:-12.325824px;}
.ws44{word-spacing:-12.307680px;}
.wse{word-spacing:-12.235392px;}
.ws3d{word-spacing:-12.102048px;}
.ws17{word-spacing:-12.096000px;}
.ws10{word-spacing:-12.065760px;}
.ws43{word-spacing:-12.029472px;}
.ws0{word-spacing:-11.866176px;}
.ws42{word-spacing:-11.829888px;}
.ws3e{word-spacing:-11.763360px;}
.ws8{word-spacing:-11.715552px;}
.ws4b{word-spacing:-11.654496px;}
.ws40{word-spacing:-11.551680px;}
.ws6{word-spacing:-11.534976px;}
.ws7{word-spacing:-11.458368px;}
.ws5{word-spacing:-11.058912px;}
.ws1{word-spacing:-10.944000px;}
.ws2{word-spacing:-10.599264px;}
.wsd{word-spacing:-10.517184px;}
.ws3{word-spacing:-9.619776px;}
.ws15{word-spacing:-9.504000px;}
.ws4{word-spacing:-9.028800px;}
.ws35{word-spacing:-7.515504px;}
.ws3f{word-spacing:-7.416000px;}
.ws45{word-spacing:-6.912000px;}
.ws36{word-spacing:-5.845392px;}
.ws1b{word-spacing:-0.066240px;}
.ws16{word-spacing:0.000000px;}
._14{margin-left:-4.511808px;}
._3{margin-left:-3.263616px;}
._1{margin-left:-2.153664px;}
._0{margin-left:-1.094400px;}
._2{width:1.570752px;}
._7{width:2.649888px;}
._d{width:3.652416px;}
._9{width:5.444928px;}
._a{width:6.656256px;}
._b{width:8.115264px;}
._c{width:9.198720px;}
._4{width:10.830240px;}
._12{width:12.032064px;}
._19{width:13.815072px;}
._10{width:15.202944px;}
._11{width:16.230528px;}
._13{width:17.486208px;}
._5{width:18.591552px;}
._6{width:21.246336px;}
._18{width:22.256064px;}
._16{width:23.482944px;}
._17{width:24.516576px;}
._21{width:28.803456px;}
._22{width:30.062016px;}
._20{width:31.814208px;}
._f{width:34.324128px;}
._e{width:35.892864px;}
._1f{width:56.321856px;}
._1d{width:58.242240px;}
._1e{width:60.006528px;}
._1b{width:61.024320px;}
._1a{width:62.173440px;}
._1c{width:63.580608px;}
._24{width:64.732032px;}
._25{width:66.889152px;}
._23{width:67.982976px;}
._8{width:353.376000px;}
._15{width:850.752000px;}
.fc3{color:transparent;}
.fc2{color:rgb(83,129,53);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:2.880000px;}
.fs5{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y55{bottom:4.500000px;}
.y40{bottom:4.860000px;}
.ya3{bottom:5.160000px;}
.yc9{bottom:5.280000px;}
.ya9{bottom:5.340000px;}
.yb5{bottom:5.460000px;}
.yc4{bottom:5.580000px;}
.yfa{bottom:5.640000px;}
.yb3{bottom:5.700000px;}
.ya4{bottom:5.760000px;}
.ybb{bottom:5.820000px;}
.yc7{bottom:5.880000px;}
.ycb{bottom:5.940000px;}
.y10e{bottom:6.000000px;}
.y14{bottom:6.060000px;}
.ybe{bottom:6.120000px;}
.y7{bottom:6.240000px;}
.yb1{bottom:6.300000px;}
.ya6{bottom:6.360000px;}
.yc1{bottom:6.420000px;}
.y111{bottom:6.540000px;}
.y120{bottom:6.600000px;}
.ya1{bottom:6.660000px;}
.y2b{bottom:7.380000px;}
.y90{bottom:8.280000px;}
.y88{bottom:8.520000px;}
.y8a{bottom:8.820000px;}
.y3{bottom:9.120000px;}
.y84{bottom:9.420000px;}
.y8c{bottom:9.480000px;}
.y86{bottom:9.720000px;}
.y8e{bottom:9.780000px;}
.yf3{bottom:10.320000px;}
.yf4{bottom:11.100000px;}
.yb{bottom:11.280000px;}
.yf5{bottom:11.460000px;}
.y52{bottom:13.800000px;}
.y16{bottom:14.040000px;}
.y10c{bottom:16.260000px;}
.y110{bottom:17.340000px;}
.y11a{bottom:17.400000px;}
.ye{bottom:17.580000px;}
.y9f{bottom:17.640000px;}
.y46{bottom:18.420000px;}
.y3f{bottom:24.300000px;}
.y6{bottom:25.320000px;}
.y123{bottom:26.520000px;}
.y12b{bottom:26.700000px;}
.yf7{bottom:26.880000px;}
.y54{bottom:27.000000px;}
.yba{bottom:27.060000px;}
.yc3{bottom:27.180000px;}
.yf9{bottom:27.240000px;}
.yc6{bottom:27.480000px;}
.yfc{bottom:27.600000px;}
.ybd{bottom:27.720000px;}
.y11d{bottom:27.840000px;}
.yc0{bottom:28.020000px;}
.y11f{bottom:28.200000px;}
.y1{bottom:29.340000px;}
.ya{bottom:30.720000px;}
.y13{bottom:34.500000px;}
.yd{bottom:37.380000px;}
.yf1{bottom:38.820000px;}
.y5{bottom:42.960000px;}
.y2a{bottom:43.020000px;}
.y3e{bottom:43.740000px;}
.y9{bottom:44.040000px;}
.y45{bottom:45.420000px;}
.y50{bottom:48.060000px;}
.y141{bottom:52.380000px;}
.y81{bottom:58.500000px;}
.y4{bottom:60.600000px;}
.y29{bottom:60.660000px;}
.y3d{bottom:63.540000px;}
.y4f{bottom:64.620000px;}
.y8{bottom:64.920000px;}
.y12{bottom:67.620000px;}
.y44{bottom:72.420000px;}
.y171{bottom:75.060000px;}
.y140{bottom:77.220000px;}
.y28{bottom:78.300000px;}
.ye6{bottom:80.460000px;}
.y3c{bottom:82.980000px;}
.y80{bottom:83.340000px;}
.y150{bottom:84.420000px;}
.y4e{bottom:91.980000px;}
.y170{bottom:94.500000px;}
.y11{bottom:95.340000px;}
.y27{bottom:95.940000px;}
.y43{bottom:99.420000px;}
.y13f{bottom:102.060000px;}
.y3b{bottom:102.420000px;}
.ye5{bottom:105.300000px;}
.y7f{bottom:108.180000px;}
.y14f{bottom:109.260000px;}
.y16f{bottom:113.940000px;}
.yee{bottom:116.460000px;}
.y4d{bottom:116.820000px;}
.y3a{bottom:122.220000px;}
.y26{bottom:122.580000px;}
.y10{bottom:122.700000px;}
.y42{bottom:122.820000px;}
.y13e{bottom:126.900000px;}
.ye4{bottom:130.140000px;}
.y7e{bottom:133.020000px;}
.y14e{bottom:133.740000px;}
.yed{bottom:138.060000px;}
.y25{bottom:140.220000px;}
.y39{bottom:141.660000px;}
.y13d{bottom:151.380000px;}
.y16e{bottom:153.180000px;}
.ye3{bottom:154.980000px;}
.y7d{bottom:157.500000px;}
.y24{bottom:157.860000px;}
.y14d{bottom:158.580000px;}
.yec{bottom:159.660000px;}
.y38{bottom:161.460000px;}
.y4c{bottom:166.500000px;}
.y16d{bottom:172.620000px;}
.y23{bottom:175.140000px;}
.yeb{bottom:175.860000px;}
.y13c{bottom:176.220000px;}
.ye2{bottom:179.460000px;}
.y37{bottom:180.900000px;}
.y7c{bottom:182.340000px;}
.y14c{bottom:183.420000px;}
.yae{bottom:187.020000px;}
.y4b{bottom:190.980000px;}
.y16c{bottom:192.420000px;}
.y22{bottom:192.780000px;}
.y36{bottom:200.340000px;}
.y13b{bottom:201.060000px;}
.y7b{bottom:204.300000px;}
.y14b{bottom:208.260000px;}
.y21{bottom:210.420000px;}
.yad{bottom:211.860000px;}
.ye1{bottom:213.300000px;}
.y4a{bottom:215.820000px;}
.y35{bottom:220.140000px;}
.y13a{bottom:225.900000px;}
.y20{bottom:228.060000px;}
.y16b{bottom:231.660000px;}
.y14a{bottom:233.820000px;}
.yac{bottom:236.700000px;}
.ye0{bottom:238.140000px;}
.y34{bottom:239.580000px;}
.y49{bottom:240.660000px;}
.y1f{bottom:245.700000px;}
.y7a{bottom:248.580000px;}
.y139{bottom:250.740000px;}
.y16a{bottom:251.100000px;}
.y33{bottom:259.020000px;}
.yab{bottom:261.180000px;}
.ydf{bottom:262.620000px;}
.y1e{bottom:263.340000px;}
.y48{bottom:265.500000px;}
.y169{bottom:270.540000px;}
.y79{bottom:273.420000px;}
.y138{bottom:275.220000px;}
.y149{bottom:278.100000px;}
.y32{bottom:278.820000px;}
.y1d{bottom:280.980000px;}
.yaa{bottom:286.020000px;}
.y168{bottom:290.340000px;}
.y47{bottom:291.060000px;}
.yde{bottom:292.140000px;}
.y31{bottom:298.260000px;}
.y1c{bottom:298.620000px;}
.y137{bottom:300.060000px;}
.y148{bottom:302.580000px;}
.y167{bottom:309.780000px;}
.ya8{bottom:312.000000px;}
.y1b{bottom:316.260000px;}
.ydd{bottom:316.980000px;}
.y30{bottom:318.060000px;}
.y118{bottom:318.420000px;}
.y78{bottom:323.100000px;}
.y136{bottom:324.900000px;}
.y41{bottom:327.000000px;}
.y147{bottom:327.420000px;}
.y166{bottom:329.220000px;}
.ya7{bottom:334.500000px;}
.y2f{bottom:337.500000px;}
.ydc{bottom:341.820000px;}
.y1a{bottom:342.900000px;}
.y117{bottom:343.260000px;}
.y77{bottom:347.580000px;}
.y165{bottom:349.020000px;}
.y135{bottom:349.740000px;}
.y146{bottom:352.260000px;}
.y2e{bottom:356.940000px;}
.ya5{bottom:358.500000px;}
.y19{bottom:360.540000px;}
.ydb{bottom:366.300000px;}
.y116{bottom:367.740000px;}
.y164{bottom:368.460000px;}
.y76{bottom:372.420000px;}
.y2c{bottom:373.860000px;}
.y134{bottom:374.220000px;}
.y2d{bottom:376.740000px;}
.y145{bottom:377.100000px;}
.y18{bottom:378.180000px;}
.y9e{bottom:382.500000px;}
.y163{bottom:388.260000px;}
.yda{bottom:391.140000px;}
.y115{bottom:392.580000px;}
.y75{bottom:397.260000px;}
.y133{bottom:399.060000px;}
.y144{bottom:401.580000px;}
.ya0{bottom:405.000000px;}
.ya2{bottom:406.500000px;}
.y162{bottom:407.700000px;}
.yd9{bottom:415.980000px;}
.y114{bottom:417.420000px;}
.y74{bottom:422.100000px;}
.y132{bottom:423.900000px;}
.y143{bottom:426.420000px;}
.y161{bottom:427.140000px;}
.y9d{bottom:435.060000px;}
.yd8{bottom:440.820000px;}
.y113{bottom:442.260000px;}
.y73{bottom:446.580000px;}
.y160{bottom:446.940000px;}
.y131{bottom:449.460000px;}
.y142{bottom:451.260000px;}
.yd7{bottom:465.660000px;}
.y15f{bottom:466.380000px;}
.y112{bottom:467.100000px;}
.y9c{bottom:468.900000px;}
.y72{bottom:476.100000px;}
.y17{bottom:477.000000px;}
.y15e{bottom:485.820000px;}
.yd6{bottom:490.140000px;}
.y9b{bottom:493.740000px;}
.yea{bottom:496.260000px;}
.y71{bottom:500.940000px;}
.y15d{bottom:505.620000px;}
.y10f{bottom:507.000000px;}
.yd5{bottom:514.980000px;}
.ye9{bottom:517.860000px;}
.y9a{bottom:518.580000px;}
.y15c{bottom:525.060000px;}
.y70{bottom:525.420000px;}
.y10d{bottom:529.500000px;}
.ye8{bottom:539.460000px;}
.yd4{bottom:539.820000px;}
.y99{bottom:543.060000px;}
.y15b{bottom:544.860000px;}
.y6f{bottom:550.260000px;}
.y10b{bottom:552.000000px;}
.ye7{bottom:555.660000px;}
.y15a{bottom:564.300000px;}
.yd3{bottom:564.660000px;}
.y98{bottom:567.900000px;}
.y6e{bottom:575.100000px;}
.y159{bottom:584.820000px;}
.yd2{bottom:589.500000px;}
.y130{bottom:592.740000px;}
.y97{bottom:593.460000px;}
.y6d{bottom:599.940000px;}
.y10a{bottom:600.660000px;}
.yd1{bottom:613.980000px;}
.y12f{bottom:617.580000px;}
.y109{bottom:622.260000px;}
.y6c{bottom:624.420000px;}
.y158{bottom:629.100000px;}
.y96{bottom:637.740000px;}
.ycf{bottom:638.820000px;}
.yd0{bottom:639.180000px;}
.y12e{bottom:642.420000px;}
.y6b{bottom:649.260000px;}
.y157{bottom:653.940000px;}
.y108{bottom:656.100000px;}
.y95{bottom:662.580000px;}
.yce{bottom:664.500000px;}
.y12d{bottom:667.500000px;}
.y6a{bottom:674.100000px;}
.y156{bottom:678.780000px;}
.y107{bottom:680.940000px;}
.ycd{bottom:685.500000px;}
.y94{bottom:687.420000px;}
.y12c{bottom:690.000000px;}
.y69{bottom:698.940000px;}
.y155{bottom:703.260000px;}
.y106{bottom:705.420000px;}
.ycc{bottom:708.000000px;}
.y93{bottom:711.900000px;}
.y12a{bottom:714.000000px;}
.y68{bottom:723.780000px;}
.y154{bottom:728.100000px;}
.yca{bottom:729.000000px;}
.y105{bottom:730.260000px;}
.y92{bottom:736.740000px;}
.y67{bottom:748.260000px;}
.y153{bottom:752.940000px;}
.y104{bottom:754.740000px;}
.y129{bottom:757.500000px;}
.y91{bottom:761.580000px;}
.yc8{bottom:772.500000px;}
.y66{bottom:773.100000px;}
.y8d{bottom:777.000000px;}
.y152{bottom:777.780000px;}
.y8f{bottom:778.500000px;}
.y128{bottom:781.500000px;}
.y103{bottom:784.260000px;}
.yc5{bottom:793.500000px;}
.y65{bottom:797.940000px;}
.y8b{bottom:802.500000px;}
.y151{bottom:803.340000px;}
.y102{bottom:809.100000px;}
.y64{bottom:822.780000px;}
.y127{bottom:825.000000px;}
.y89{bottom:828.000000px;}
.y101{bottom:833.940000px;}
.yc2{bottom:837.000000px;}
.y63{bottom:847.620000px;}
.y126{bottom:849.000000px;}
.y87{bottom:853.500000px;}
.y100{bottom:858.780000px;}
.y15{bottom:868.500000px;}
.y62{bottom:872.100000px;}
.y85{bottom:877.500000px;}
.ybf{bottom:879.000000px;}
.yff{bottom:883.500000px;}
.y125{bottom:892.500000px;}
.y61{bottom:896.940000px;}
.y83{bottom:903.000000px;}
.yf{bottom:906.000000px;}
.yfe{bottom:907.500000px;}
.y17f{bottom:916.020000px;}
.y124{bottom:916.500000px;}
.y60{bottom:921.780000px;}
.ybc{bottom:922.500000px;}
.yfd{bottom:930.000000px;}
.y17e{bottom:935.820000px;}
.y82{bottom:937.620000px;}
.y5f{bottom:946.620000px;}
.yfb{bottom:952.500000px;}
.y17d{bottom:955.620000px;}
.y122{bottom:961.500000px;}
.yb9{bottom:966.000000px;}
.y5e{bottom:971.100000px;}
.y17c{bottom:975.060000px;}
.y17b{bottom:994.500000px;}
.y5d{bottom:995.940000px;}
.yf8{bottom:997.500000px;}
.y121{bottom:1005.000000px;}
.yb8{bottom:1008.000000px;}
.y17a{bottom:1014.300000px;}
.y5c{bottom:1020.780000px;}
.y11e{bottom:1027.500000px;}
.yb7{bottom:1030.500000px;}
.y179{bottom:1033.740000px;}
.yf6{bottom:1042.500000px;}
.y5b{bottom:1045.620000px;}
.yb6{bottom:1051.500000px;}
.y178{bottom:1053.540000px;}
.yc{bottom:1059.000000px;}
.y5a{bottom:1070.460000px;}
.y11c{bottom:1072.500000px;}
.y177{bottom:1072.980000px;}
.yb4{bottom:1074.000000px;}
.yf0{bottom:1086.000000px;}
.y176{bottom:1092.420000px;}
.y59{bottom:1094.940000px;}
.yb2{bottom:1095.000000px;}
.y2{bottom:1108.500000px;}
.y175{bottom:1112.220000px;}
.yf2{bottom:1114.500000px;}
.yb0{bottom:1116.000000px;}
.y119{bottom:1117.500000px;}
.y58{bottom:1119.780000px;}
.y174{bottom:1131.660000px;}
.yaf{bottom:1138.500000px;}
.y11b{bottom:1140.000000px;}
.y57{bottom:1144.620000px;}
.yef{bottom:1147.860000px;}
.y173{bottom:1151.100000px;}
.y56{bottom:1169.460000px;}
.y172{bottom:1170.900000px;}
.y53{bottom:1190.700000px;}
.y51{bottom:1207.500000px;}
.h4{height:2.033280px;}
.h8{height:16.303680px;}
.h16{height:19.500000px;}
.h24{height:21.349440px;}
.h1d{height:22.500000px;}
.h1c{height:24.000000px;}
.h1a{height:25.500000px;}
.h19{height:27.000000px;}
.h22{height:28.500000px;}
.h14{height:30.000000px;}
.hc{height:33.549120px;}
.h5{height:38.632320px;}
.hd{height:39.000000px;}
.h2{height:42.698880px;}
.h15{height:42.880320px;}
.h7{height:43.500000px;}
.h1f{height:44.149219px;}
.h1e{height:45.000000px;}
.h20{height:45.325440px;}
.h1b{height:46.500000px;}
.h11{height:46.765440px;}
.h17{height:46.964160px;}
.h25{height:47.016000px;}
.h18{height:47.868750px;}
.h13{height:47.988281px;}
.h9{height:50.832000px;}
.h10{height:51.048000px;}
.h23{height:51.929280px;}
.hb{height:53.962560px;}
.h21{height:55.500000px;}
.h6{height:58.965120px;}
.h3{height:79.500000px;}
.hf{height:150.000000px;}
.ha{height:153.000000px;}
.he{height:393.000000px;}
.h12{height:1251.000000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wc{width:15.000000px;}
.w8{width:40.500000px;}
.w17{width:63.000000px;}
.w16{width:75.000000px;}
.w1f{width:79.500000px;}
.w2{width:85.500000px;}
.w18{width:94.500000px;}
.w4{width:97.500000px;}
.w1b{width:99.000000px;}
.w1e{width:102.000000px;}
.w1c{width:114.000000px;}
.w14{width:121.500000px;}
.w1d{width:144.000000px;}
.w13{width:154.500000px;}
.w7{width:181.500000px;}
.w10{width:223.500000px;}
.we{width:232.500000px;}
.wd{width:234.000000px;}
.w12{width:243.000000px;}
.w3{width:246.000000px;}
.w11{width:276.000000px;}
.wf{width:277.500000px;}
.w1a{width:304.500000px;}
.w5{width:310.500000px;}
.w19{width:439.500000px;}
.w15{width:514.500000px;}
.w9{width:516.000000px;}
.w6{width:735.000000px;}
.wb{width:745.500000px;}
.wa{width:880.800000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xc{left:2.400000px;}
.x30{left:7.140000px;}
.x5{left:8.760000px;}
.x3f{left:10.680000px;}
.x10{left:12.000000px;}
.x37{left:14.280000px;}
.x24{left:16.140000px;}
.x63{left:17.160000px;}
.x25{left:20.100000px;}
.x45{left:21.840000px;}
.x42{left:23.280000px;}
.x68{left:25.800000px;}
.x44{left:27.240000px;}
.x5d{left:29.460000px;}
.x43{left:30.480000px;}
.x5b{left:31.980000px;}
.x5a{left:33.120000px;}
.x58{left:35.520000px;}
.x6b{left:36.660000px;}
.x26{left:39.180000px;}
.x65{left:40.980000px;}
.x35{left:43.140000px;}
.x66{left:46.020000px;}
.x74{left:49.920000px;}
.x27{left:51.420000px;}
.x3a{left:52.620000px;}
.x3{left:54.600000px;}
.x3c{left:56.760000px;}
.x28{left:59.340000px;}
.x11{left:62.880000px;}
.x32{left:64.500000px;}
.x39{left:68.700000px;}
.x73{left:69.840000px;}
.x3b{left:72.660000px;}
.x2{left:75.000000px;}
.x4f{left:78.480000px;}
.x13{left:80.640000px;}
.x7{left:88.620000px;}
.x2e{left:94.200000px;}
.x47{left:96.120000px;}
.x33{left:98.340000px;}
.x14{left:101.880000px;}
.x34{left:103.740000px;}
.x54{left:115.080000px;}
.x61{left:116.160000px;}
.x17{left:125.880000px;}
.x89{left:127.320000px;}
.x15{left:128.880000px;}
.x55{left:130.320000px;}
.x62{left:132.120000px;}
.x1c{left:141.000000px;}
.x18{left:143.280000px;}
.x85{left:144.960000px;}
.x8a{left:150.480000px;}
.x1d{left:156.240000px;}
.x4{left:159.000000px;}
.x19{left:160.560000px;}
.x8b{left:167.280000px;}
.x7e{left:179.640000px;}
.x1a{left:188.880000px;}
.x8c{left:190.440000px;}
.x5c{left:191.760000px;}
.xa{left:199.980000px;}
.x1b{left:204.120000px;}
.x7f{left:205.800000px;}
.x80{left:226.440000px;}
.x46{left:231.720000px;}
.x3d{left:241.440000px;}
.xd{left:255.000000px;}
.xb{left:264.780000px;}
.x12{left:290.880000px;}
.xe{left:294.000000px;}
.x2f{left:298.500000px;}
.x9{left:300.780000px;}
.x22{left:307.500000px;}
.x79{left:359.160000px;}
.x7c{left:376.920000px;}
.x7a{left:379.440000px;}
.x8d{left:389.040000px;}
.xf{left:397.440000px;}
.x6{left:403.500000px;}
.x7d{left:406.080000px;}
.x8e{left:407.520000px;}
.x16{left:416.880000px;}
.x2d{left:419.040000px;}
.x81{left:420.720000px;}
.x5f{left:422.520000px;}
.x86{left:423.600000px;}
.x4a{left:436.320000px;}
.x60{left:438.120000px;}
.x1{left:439.560000px;}
.x82{left:440.640000px;}
.x64{left:442.500000px;}
.x36{left:453.000000px;}
.x51{left:455.040000px;}
.x8f{left:458.520000px;}
.x90{left:477.000000px;}
.x83{left:486.960000px;}
.x6e{left:498.480000px;}
.x8{left:499.500000px;}
.x84{left:507.600000px;}
.x56{left:513.000000px;}
.x91{left:516.480000px;}
.x5e{left:523.680000px;}
.x6f{left:525.960000px;}
.x72{left:528.840000px;}
.x20{left:530.880000px;}
.x92{left:534.960000px;}
.x23{left:538.500000px;}
.x67{left:543.000000px;}
.x21{left:548.640000px;}
.x71{left:570.480000px;}
.x31{left:574.500000px;}
.x4c{left:586.680000px;}
.x3e{left:588.000000px;}
.x87{left:592.920000px;}
.x4d{left:601.560000px;}
.x93{left:603.240000px;}
.x57{left:606.000000px;}
.x1e{left:618.360000px;}
.x69{left:621.000000px;}
.x29{left:628.080000px;}
.x1f{left:633.960000px;}
.x2a{left:643.320000px;}
.x6c{left:647.520000px;}
.x40{left:661.500000px;}
.x88{left:663.840000px;}
.x6d{left:679.320000px;}
.x77{left:687.120000px;}
.x38{left:696.000000px;}
.x59{left:703.500000px;}
.x78{left:707.400000px;}
.x6a{left:718.500000px;}
.x41{left:723.000000px;}
.x75{left:729.240000px;}
.x52{left:741.120000px;}
.x76{left:749.520000px;}
.x50{left:752.760000px;}
.x48{left:754.080000px;}
.x53{left:757.080000px;}
.x49{left:766.080000px;}
.x4e{left:773.280000px;}
.x7b{left:777.240000px;}
.x2b{left:803.400000px;}
.x70{left:807.000000px;}
.x4b{left:810.240000px;}
.x2c{left:819.000000px;}
@media print{
.v3{vertical-align:-16.640000pt;}
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls71{letter-spacing:-1.630976pt;}
.ls31{letter-spacing:-1.521408pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.177088pt;}
.ls7c{letter-spacing:-1.101056pt;}
.ls63{letter-spacing:-1.048064pt;}
.ls21{letter-spacing:-1.036032pt;}
.ls2a{letter-spacing:-0.865536pt;}
.ls8a{letter-spacing:-0.653568pt;}
.ls1b{letter-spacing:-0.651776pt;}
.ls1f{letter-spacing:-0.588544pt;}
.ls37{letter-spacing:-0.571136pt;}
.ls6a{letter-spacing:-0.553472pt;}
.ls3e{letter-spacing:-0.549120pt;}
.ls97{letter-spacing:-0.532224pt;}
.ls46{letter-spacing:-0.510720pt;}
.ls5a{letter-spacing:-0.500480pt;}
.ls2d{letter-spacing:-0.483840pt;}
.ls51{letter-spacing:-0.465152pt;}
.ls19{letter-spacing:-0.462080pt;}
.ls24{letter-spacing:-0.456960pt;}
.ls3c{letter-spacing:-0.453376pt;}
.ls7b{letter-spacing:-0.429824pt;}
.ls1d{letter-spacing:-0.393984pt;}
.ls48{letter-spacing:-0.392448pt;}
.ls3d{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.379392pt;}
.ls29{letter-spacing:-0.370944pt;}
.ls35{letter-spacing:-0.353280pt;}
.ls38{letter-spacing:-0.347392pt;}
.ls66{letter-spacing:-0.335616pt;}
.ls2e{letter-spacing:-0.322560pt;}
.ls73{letter-spacing:-0.312064pt;}
.lsf{letter-spacing:-0.306432pt;}
.ls65{letter-spacing:-0.300288pt;}
.ls8e{letter-spacing:-0.295680pt;}
.ls9f{letter-spacing:-0.263424pt;}
.ls33{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.248064pt;}
.ls27{letter-spacing:-0.241920pt;}
.ls98{letter-spacing:-0.236544pt;}
.ls7a{letter-spacing:-0.235520pt;}
.ls7e{letter-spacing:-0.231552pt;}
.ls81{letter-spacing:-0.229632pt;}
.ls8c{letter-spacing:-0.225792pt;}
.lsa{letter-spacing:-0.204288pt;}
.ls4a{letter-spacing:-0.188416pt;}
.ls7f{letter-spacing:-0.180096pt;}
.ls23{letter-spacing:-0.177408pt;}
.ls32{letter-spacing:-0.172032pt;}
.ls9c{letter-spacing:-0.161280pt;}
.ls7d{letter-spacing:-0.153088pt;}
.ls57{letter-spacing:-0.123648pt;}
.ls28{letter-spacing:-0.118272pt;}
.ls2c{letter-spacing:-0.102144pt;}
.ls53{letter-spacing:-0.100096pt;}
.lsd{letter-spacing:-0.082688pt;}
.ls25{letter-spacing:-0.080640pt;}
.ls9a{letter-spacing:-0.059136pt;}
.ls4d{letter-spacing:-0.052992pt;}
.ls6e{letter-spacing:-0.047104pt;}
.ls2b{letter-spacing:-0.026880pt;}
.ls60{letter-spacing:-0.017664pt;}
.lsa5{letter-spacing:-0.016128pt;}
.ls72{letter-spacing:-0.011776pt;}
.lsb{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.005376pt;}
.ls1c{letter-spacing:0.009728pt;}
.ls75{letter-spacing:0.020480pt;}
.ls22{letter-spacing:0.024320pt;}
.ls49{letter-spacing:0.026880pt;}
.ls20{letter-spacing:0.029184pt;}
.ls74{letter-spacing:0.038400pt;}
.ls64{letter-spacing:0.041216pt;}
.ls58{letter-spacing:0.052992pt;}
.ls11{letter-spacing:0.058368pt;}
.ls79{letter-spacing:0.058880pt;}
.ls5b{letter-spacing:0.064768pt;}
.lsa0{letter-spacing:0.069888pt;}
.ls2{letter-spacing:0.070400pt;}
.ls88{letter-spacing:0.070656pt;}
.ls50{letter-spacing:0.076544pt;}
.ls43{letter-spacing:0.076800pt;}
.ls9d{letter-spacing:0.080640pt;}
.lsc{letter-spacing:0.102144pt;}
.ls3{letter-spacing:0.102400pt;}
.ls84{letter-spacing:0.111872pt;}
.ls3f{letter-spacing:0.135168pt;}
.ls4{letter-spacing:0.153600pt;}
.ls18{letter-spacing:0.155648pt;}
.ls34{letter-spacing:0.158976pt;}
.ls85{letter-spacing:0.161280pt;}
.ls67{letter-spacing:0.176640pt;}
.ls3b{letter-spacing:0.182528pt;}
.ls9e{letter-spacing:0.188160pt;}
.ls5c{letter-spacing:0.192000pt;}
.ls96{letter-spacing:0.204288pt;}
.ls42{letter-spacing:0.217856pt;}
.ls59{letter-spacing:0.229632pt;}
.ls1{letter-spacing:0.230400pt;}
.ls90{letter-spacing:0.231168pt;}
.ls68{letter-spacing:0.259072pt;}
.lsa2{letter-spacing:0.268800pt;}
.ls62{letter-spacing:0.270848pt;}
.ls54{letter-spacing:0.282624pt;}
.ls45{letter-spacing:0.290304pt;}
.ls36{letter-spacing:0.294400pt;}
.ls2f{letter-spacing:0.311808pt;}
.ls7{letter-spacing:0.320000pt;}
.ls78{letter-spacing:0.329728pt;}
.lse{letter-spacing:0.330752pt;}
.ls17{letter-spacing:0.350592pt;}
.ls4b{letter-spacing:0.353280pt;}
.ls9{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.394496pt;}
.ls92{letter-spacing:0.397824pt;}
.ls55{letter-spacing:0.400384pt;}
.ls9b{letter-spacing:0.403200pt;}
.ls6b{letter-spacing:0.406272pt;}
.ls40{letter-spacing:0.418176pt;}
.ls91{letter-spacing:0.424704pt;}
.ls80{letter-spacing:0.435072pt;}
.ls89{letter-spacing:0.435456pt;}
.ls5d{letter-spacing:0.435712pt;}
.ls8b{letter-spacing:0.440832pt;}
.ls13{letter-spacing:0.457216pt;}
.ls4e{letter-spacing:0.459264pt;}
.ls8d{letter-spacing:0.467712pt;}
.ls8f{letter-spacing:0.473088pt;}
.ls52{letter-spacing:0.476928pt;}
.lsa3{letter-spacing:0.494592pt;}
.ls8{letter-spacing:0.506880pt;}
.ls0{letter-spacing:0.512000pt;}
.lsa4{letter-spacing:0.521472pt;}
.ls12{letter-spacing:0.525312pt;}
.ls99{letter-spacing:0.532224pt;}
.ls56{letter-spacing:0.535808pt;}
.ls61{letter-spacing:0.547584pt;}
.ls30{letter-spacing:0.553728pt;}
.ls77{letter-spacing:0.565248pt;}
.ls69{letter-spacing:0.571136pt;}
.ls70{letter-spacing:0.594688pt;}
.ls93{letter-spacing:0.602112pt;}
.ls6{letter-spacing:0.629760pt;}
.ls4c{letter-spacing:0.630016pt;}
.ls95{letter-spacing:0.634368pt;}
.ls16{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.653568pt;}
.lsa1{letter-spacing:0.677376pt;}
.ls14{letter-spacing:0.685824pt;}
.ls41{letter-spacing:0.768000pt;}
.ls47{letter-spacing:0.768768pt;}
.ls6f{letter-spacing:0.824320pt;}
.ls4f{letter-spacing:0.924416pt;}
.ls6c{letter-spacing:1.024000pt;}
.ls5e{letter-spacing:2.304000pt;}
.ls76{letter-spacing:3.584000pt;}
.ls83{letter-spacing:3.840000pt;}
.ls94{letter-spacing:4.273920pt;}
.ls5{letter-spacing:5.888000pt;}
.ls86{letter-spacing:7.424000pt;}
.ls44{letter-spacing:9.231360pt;}
.ls87{letter-spacing:9.984000pt;}
.ls82{letter-spacing:13.071360pt;}
.ls6d{letter-spacing:33.551360pt;}
.ls5f{letter-spacing:755.200000pt;}
.ws1d{word-spacing:-15.360000pt;}
.ws13{word-spacing:-14.912000pt;}
.ws34{word-spacing:-14.519808pt;}
.ws20{word-spacing:-14.307840pt;}
.ws30{word-spacing:-14.284288pt;}
.ws1a{word-spacing:-14.007552pt;}
.ws27{word-spacing:-13.954560pt;}
.ws9{word-spacing:-13.888000pt;}
.ws21{word-spacing:-13.654272pt;}
.ws31{word-spacing:-13.524736pt;}
.ws12{word-spacing:-13.120000pt;}
.ws11{word-spacing:-12.800000pt;}
.wsa{word-spacing:-12.434688pt;}
.ws26{word-spacing:-12.429568pt;}
.ws2d{word-spacing:-12.406016pt;}
.ws29{word-spacing:-12.347136pt;}
.ws28{word-spacing:-12.235264pt;}
.ws2c{word-spacing:-12.182272pt;}
.ws39{word-spacing:-12.129280pt;}
.ws38{word-spacing:-12.070400pt;}
.ws2e{word-spacing:-12.046848pt;}
.ws32{word-spacing:-12.005632pt;}
.ws25{word-spacing:-11.952640pt;}
.ws37{word-spacing:-11.934976pt;}
.ws1e{word-spacing:-11.776000pt;}
.ws1f{word-spacing:-11.758336pt;}
.ws18{word-spacing:-11.723008pt;}
.wsb{word-spacing:-11.683328pt;}
.ws22{word-spacing:-11.675904pt;}
.wsf{word-spacing:-11.537408pt;}
.ws2f{word-spacing:-11.463936pt;}
.ws23{word-spacing:-11.440384pt;}
.ws48{word-spacing:-11.429376pt;}
.ws14{word-spacing:-11.428608pt;}
.ws3a{word-spacing:-11.422720pt;}
.ws19{word-spacing:-11.405056pt;}
.ws33{word-spacing:-11.322624pt;}
.ws2b{word-spacing:-11.310848pt;}
.ws1c{word-spacing:-11.275520pt;}
.ws4a{word-spacing:-11.273472pt;}
.ws49{word-spacing:-11.246592pt;}
.ws3c{word-spacing:-11.225088pt;}
.ws2a{word-spacing:-11.222528pt;}
.ws3b{word-spacing:-11.219712pt;}
.ws24{word-spacing:-11.204864pt;}
.ws47{word-spacing:-11.192832pt;}
.ws46{word-spacing:-11.149824pt;}
.wsc{word-spacing:-11.065600pt;}
.ws41{word-spacing:-10.956288pt;}
.ws44{word-spacing:-10.940160pt;}
.wse{word-spacing:-10.875904pt;}
.ws3d{word-spacing:-10.757376pt;}
.ws17{word-spacing:-10.752000pt;}
.ws10{word-spacing:-10.725120pt;}
.ws43{word-spacing:-10.692864pt;}
.ws0{word-spacing:-10.547712pt;}
.ws42{word-spacing:-10.515456pt;}
.ws3e{word-spacing:-10.456320pt;}
.ws8{word-spacing:-10.413824pt;}
.ws4b{word-spacing:-10.359552pt;}
.ws40{word-spacing:-10.268160pt;}
.ws6{word-spacing:-10.253312pt;}
.ws7{word-spacing:-10.185216pt;}
.ws5{word-spacing:-9.830144pt;}
.ws1{word-spacing:-9.728000pt;}
.ws2{word-spacing:-9.421568pt;}
.wsd{word-spacing:-9.348608pt;}
.ws3{word-spacing:-8.550912pt;}
.ws15{word-spacing:-8.448000pt;}
.ws4{word-spacing:-8.025600pt;}
.ws35{word-spacing:-6.680448pt;}
.ws3f{word-spacing:-6.592000pt;}
.ws45{word-spacing:-6.144000pt;}
.ws36{word-spacing:-5.195904pt;}
.ws1b{word-spacing:-0.058880pt;}
.ws16{word-spacing:0.000000pt;}
._14{margin-left:-4.010496pt;}
._3{margin-left:-2.900992pt;}
._1{margin-left:-1.914368pt;}
._0{margin-left:-0.972800pt;}
._2{width:1.396224pt;}
._7{width:2.355456pt;}
._d{width:3.246592pt;}
._9{width:4.839936pt;}
._a{width:5.916672pt;}
._b{width:7.213568pt;}
._c{width:8.176640pt;}
._4{width:9.626880pt;}
._12{width:10.695168pt;}
._19{width:12.280064pt;}
._10{width:13.513728pt;}
._11{width:14.427136pt;}
._13{width:15.543296pt;}
._5{width:16.525824pt;}
._6{width:18.885632pt;}
._18{width:19.783168pt;}
._16{width:20.873728pt;}
._17{width:21.792512pt;}
._21{width:25.603072pt;}
._22{width:26.721792pt;}
._20{width:28.279296pt;}
._f{width:30.510336pt;}
._e{width:31.904768pt;}
._1f{width:50.063872pt;}
._1d{width:51.770880pt;}
._1e{width:53.339136pt;}
._1b{width:54.243840pt;}
._1a{width:55.265280pt;}
._1c{width:56.516096pt;}
._24{width:57.539584pt;}
._25{width:59.457024pt;}
._23{width:60.429312pt;}
._8{width:314.112000pt;}
._15{width:756.224000pt;}
.fs1{font-size:2.560000pt;}
.fs5{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:4.000000pt;}
.y40{bottom:4.320000pt;}
.ya3{bottom:4.586667pt;}
.yc9{bottom:4.693333pt;}
.ya9{bottom:4.746667pt;}
.yb5{bottom:4.853333pt;}
.yc4{bottom:4.960000pt;}
.yfa{bottom:5.013333pt;}
.yb3{bottom:5.066667pt;}
.ya4{bottom:5.120000pt;}
.ybb{bottom:5.173333pt;}
.yc7{bottom:5.226667pt;}
.ycb{bottom:5.280000pt;}
.y10e{bottom:5.333333pt;}
.y14{bottom:5.386667pt;}
.ybe{bottom:5.440000pt;}
.y7{bottom:5.546667pt;}
.yb1{bottom:5.600000pt;}
.ya6{bottom:5.653333pt;}
.yc1{bottom:5.706667pt;}
.y111{bottom:5.813333pt;}
.y120{bottom:5.866667pt;}
.ya1{bottom:5.920000pt;}
.y2b{bottom:6.560000pt;}
.y90{bottom:7.360000pt;}
.y88{bottom:7.573333pt;}
.y8a{bottom:7.840000pt;}
.y3{bottom:8.106667pt;}
.y84{bottom:8.373333pt;}
.y8c{bottom:8.426667pt;}
.y86{bottom:8.640000pt;}
.y8e{bottom:8.693333pt;}
.yf3{bottom:9.173333pt;}
.yf4{bottom:9.866667pt;}
.yb{bottom:10.026667pt;}
.yf5{bottom:10.186667pt;}
.y52{bottom:12.266667pt;}
.y16{bottom:12.480000pt;}
.y10c{bottom:14.453333pt;}
.y110{bottom:15.413333pt;}
.y11a{bottom:15.466667pt;}
.ye{bottom:15.626667pt;}
.y9f{bottom:15.680000pt;}
.y46{bottom:16.373333pt;}
.y3f{bottom:21.600000pt;}
.y6{bottom:22.506667pt;}
.y123{bottom:23.573333pt;}
.y12b{bottom:23.733333pt;}
.yf7{bottom:23.893333pt;}
.y54{bottom:24.000000pt;}
.yba{bottom:24.053333pt;}
.yc3{bottom:24.160000pt;}
.yf9{bottom:24.213333pt;}
.yc6{bottom:24.426667pt;}
.yfc{bottom:24.533333pt;}
.ybd{bottom:24.640000pt;}
.y11d{bottom:24.746667pt;}
.yc0{bottom:24.906667pt;}
.y11f{bottom:25.066667pt;}
.y1{bottom:26.080000pt;}
.ya{bottom:27.306667pt;}
.y13{bottom:30.666667pt;}
.yd{bottom:33.226667pt;}
.yf1{bottom:34.506667pt;}
.y5{bottom:38.186667pt;}
.y2a{bottom:38.240000pt;}
.y3e{bottom:38.880000pt;}
.y9{bottom:39.146667pt;}
.y45{bottom:40.373333pt;}
.y50{bottom:42.720000pt;}
.y141{bottom:46.560000pt;}
.y81{bottom:52.000000pt;}
.y4{bottom:53.866667pt;}
.y29{bottom:53.920000pt;}
.y3d{bottom:56.480000pt;}
.y4f{bottom:57.440000pt;}
.y8{bottom:57.706667pt;}
.y12{bottom:60.106667pt;}
.y44{bottom:64.373333pt;}
.y171{bottom:66.720000pt;}
.y140{bottom:68.640000pt;}
.y28{bottom:69.600000pt;}
.ye6{bottom:71.520000pt;}
.y3c{bottom:73.760000pt;}
.y80{bottom:74.080000pt;}
.y150{bottom:75.040000pt;}
.y4e{bottom:81.760000pt;}
.y170{bottom:84.000000pt;}
.y11{bottom:84.746667pt;}
.y27{bottom:85.280000pt;}
.y43{bottom:88.373333pt;}
.y13f{bottom:90.720000pt;}
.y3b{bottom:91.040000pt;}
.ye5{bottom:93.600000pt;}
.y7f{bottom:96.160000pt;}
.y14f{bottom:97.120000pt;}
.y16f{bottom:101.280000pt;}
.yee{bottom:103.520000pt;}
.y4d{bottom:103.840000pt;}
.y3a{bottom:108.640000pt;}
.y26{bottom:108.960000pt;}
.y10{bottom:109.066667pt;}
.y42{bottom:109.173333pt;}
.y13e{bottom:112.800000pt;}
.ye4{bottom:115.680000pt;}
.y7e{bottom:118.240000pt;}
.y14e{bottom:118.880000pt;}
.yed{bottom:122.720000pt;}
.y25{bottom:124.640000pt;}
.y39{bottom:125.920000pt;}
.y13d{bottom:134.560000pt;}
.y16e{bottom:136.160000pt;}
.ye3{bottom:137.760000pt;}
.y7d{bottom:140.000000pt;}
.y24{bottom:140.320000pt;}
.y14d{bottom:140.960000pt;}
.yec{bottom:141.920000pt;}
.y38{bottom:143.520000pt;}
.y4c{bottom:148.000000pt;}
.y16d{bottom:153.440000pt;}
.y23{bottom:155.680000pt;}
.yeb{bottom:156.320000pt;}
.y13c{bottom:156.640000pt;}
.ye2{bottom:159.520000pt;}
.y37{bottom:160.800000pt;}
.y7c{bottom:162.080000pt;}
.y14c{bottom:163.040000pt;}
.yae{bottom:166.240000pt;}
.y4b{bottom:169.760000pt;}
.y16c{bottom:171.040000pt;}
.y22{bottom:171.360000pt;}
.y36{bottom:178.080000pt;}
.y13b{bottom:178.720000pt;}
.y7b{bottom:181.600000pt;}
.y14b{bottom:185.120000pt;}
.y21{bottom:187.040000pt;}
.yad{bottom:188.320000pt;}
.ye1{bottom:189.600000pt;}
.y4a{bottom:191.840000pt;}
.y35{bottom:195.680000pt;}
.y13a{bottom:200.800000pt;}
.y20{bottom:202.720000pt;}
.y16b{bottom:205.920000pt;}
.y14a{bottom:207.840000pt;}
.yac{bottom:210.400000pt;}
.ye0{bottom:211.680000pt;}
.y34{bottom:212.960000pt;}
.y49{bottom:213.920000pt;}
.y1f{bottom:218.400000pt;}
.y7a{bottom:220.960000pt;}
.y139{bottom:222.880000pt;}
.y16a{bottom:223.200000pt;}
.y33{bottom:230.240000pt;}
.yab{bottom:232.160000pt;}
.ydf{bottom:233.440000pt;}
.y1e{bottom:234.080000pt;}
.y48{bottom:236.000000pt;}
.y169{bottom:240.480000pt;}
.y79{bottom:243.040000pt;}
.y138{bottom:244.640000pt;}
.y149{bottom:247.200000pt;}
.y32{bottom:247.840000pt;}
.y1d{bottom:249.760000pt;}
.yaa{bottom:254.240000pt;}
.y168{bottom:258.080000pt;}
.y47{bottom:258.720000pt;}
.yde{bottom:259.680000pt;}
.y31{bottom:265.120000pt;}
.y1c{bottom:265.440000pt;}
.y137{bottom:266.720000pt;}
.y148{bottom:268.960000pt;}
.y167{bottom:275.360000pt;}
.ya8{bottom:277.333333pt;}
.y1b{bottom:281.120000pt;}
.ydd{bottom:281.760000pt;}
.y30{bottom:282.720000pt;}
.y118{bottom:283.040000pt;}
.y78{bottom:287.200000pt;}
.y136{bottom:288.800000pt;}
.y41{bottom:290.666667pt;}
.y147{bottom:291.040000pt;}
.y166{bottom:292.640000pt;}
.ya7{bottom:297.333333pt;}
.y2f{bottom:300.000000pt;}
.ydc{bottom:303.840000pt;}
.y1a{bottom:304.800000pt;}
.y117{bottom:305.120000pt;}
.y77{bottom:308.960000pt;}
.y165{bottom:310.240000pt;}
.y135{bottom:310.880000pt;}
.y146{bottom:313.120000pt;}
.y2e{bottom:317.280000pt;}
.ya5{bottom:318.666667pt;}
.y19{bottom:320.480000pt;}
.ydb{bottom:325.600000pt;}
.y116{bottom:326.880000pt;}
.y164{bottom:327.520000pt;}
.y76{bottom:331.040000pt;}
.y2c{bottom:332.320000pt;}
.y134{bottom:332.640000pt;}
.y2d{bottom:334.880000pt;}
.y145{bottom:335.200000pt;}
.y18{bottom:336.160000pt;}
.y9e{bottom:340.000000pt;}
.y163{bottom:345.120000pt;}
.yda{bottom:347.680000pt;}
.y115{bottom:348.960000pt;}
.y75{bottom:353.120000pt;}
.y133{bottom:354.720000pt;}
.y144{bottom:356.960000pt;}
.ya0{bottom:360.000000pt;}
.ya2{bottom:361.333333pt;}
.y162{bottom:362.400000pt;}
.yd9{bottom:369.760000pt;}
.y114{bottom:371.040000pt;}
.y74{bottom:375.200000pt;}
.y132{bottom:376.800000pt;}
.y143{bottom:379.040000pt;}
.y161{bottom:379.680000pt;}
.y9d{bottom:386.720000pt;}
.yd8{bottom:391.840000pt;}
.y113{bottom:393.120000pt;}
.y73{bottom:396.960000pt;}
.y160{bottom:397.280000pt;}
.y131{bottom:399.520000pt;}
.y142{bottom:401.120000pt;}
.yd7{bottom:413.920000pt;}
.y15f{bottom:414.560000pt;}
.y112{bottom:415.200000pt;}
.y9c{bottom:416.800000pt;}
.y72{bottom:423.200000pt;}
.y17{bottom:424.000000pt;}
.y15e{bottom:431.840000pt;}
.yd6{bottom:435.680000pt;}
.y9b{bottom:438.880000pt;}
.yea{bottom:441.120000pt;}
.y71{bottom:445.280000pt;}
.y15d{bottom:449.440000pt;}
.y10f{bottom:450.666667pt;}
.yd5{bottom:457.760000pt;}
.ye9{bottom:460.320000pt;}
.y9a{bottom:460.960000pt;}
.y15c{bottom:466.720000pt;}
.y70{bottom:467.040000pt;}
.y10d{bottom:470.666667pt;}
.ye8{bottom:479.520000pt;}
.yd4{bottom:479.840000pt;}
.y99{bottom:482.720000pt;}
.y15b{bottom:484.320000pt;}
.y6f{bottom:489.120000pt;}
.y10b{bottom:490.666667pt;}
.ye7{bottom:493.920000pt;}
.y15a{bottom:501.600000pt;}
.yd3{bottom:501.920000pt;}
.y98{bottom:504.800000pt;}
.y6e{bottom:511.200000pt;}
.y159{bottom:519.840000pt;}
.yd2{bottom:524.000000pt;}
.y130{bottom:526.880000pt;}
.y97{bottom:527.520000pt;}
.y6d{bottom:533.280000pt;}
.y10a{bottom:533.920000pt;}
.yd1{bottom:545.760000pt;}
.y12f{bottom:548.960000pt;}
.y109{bottom:553.120000pt;}
.y6c{bottom:555.040000pt;}
.y158{bottom:559.200000pt;}
.y96{bottom:566.880000pt;}
.ycf{bottom:567.840000pt;}
.yd0{bottom:568.160000pt;}
.y12e{bottom:571.040000pt;}
.y6b{bottom:577.120000pt;}
.y157{bottom:581.280000pt;}
.y108{bottom:583.200000pt;}
.y95{bottom:588.960000pt;}
.yce{bottom:590.666667pt;}
.y12d{bottom:593.333333pt;}
.y6a{bottom:599.200000pt;}
.y156{bottom:603.360000pt;}
.y107{bottom:605.280000pt;}
.ycd{bottom:609.333333pt;}
.y94{bottom:611.040000pt;}
.y12c{bottom:613.333333pt;}
.y69{bottom:621.280000pt;}
.y155{bottom:625.120000pt;}
.y106{bottom:627.040000pt;}
.ycc{bottom:629.333333pt;}
.y93{bottom:632.800000pt;}
.y12a{bottom:634.666667pt;}
.y68{bottom:643.360000pt;}
.y154{bottom:647.200000pt;}
.yca{bottom:648.000000pt;}
.y105{bottom:649.120000pt;}
.y92{bottom:654.880000pt;}
.y67{bottom:665.120000pt;}
.y153{bottom:669.280000pt;}
.y104{bottom:670.880000pt;}
.y129{bottom:673.333333pt;}
.y91{bottom:676.960000pt;}
.yc8{bottom:686.666667pt;}
.y66{bottom:687.200000pt;}
.y8d{bottom:690.666667pt;}
.y152{bottom:691.360000pt;}
.y8f{bottom:692.000000pt;}
.y128{bottom:694.666667pt;}
.y103{bottom:697.120000pt;}
.yc5{bottom:705.333333pt;}
.y65{bottom:709.280000pt;}
.y8b{bottom:713.333333pt;}
.y151{bottom:714.080000pt;}
.y102{bottom:719.200000pt;}
.y64{bottom:731.360000pt;}
.y127{bottom:733.333333pt;}
.y89{bottom:736.000000pt;}
.y101{bottom:741.280000pt;}
.yc2{bottom:744.000000pt;}
.y63{bottom:753.440000pt;}
.y126{bottom:754.666667pt;}
.y87{bottom:758.666667pt;}
.y100{bottom:763.360000pt;}
.y15{bottom:772.000000pt;}
.y62{bottom:775.200000pt;}
.y85{bottom:780.000000pt;}
.ybf{bottom:781.333333pt;}
.yff{bottom:785.333333pt;}
.y125{bottom:793.333333pt;}
.y61{bottom:797.280000pt;}
.y83{bottom:802.666667pt;}
.yf{bottom:805.333333pt;}
.yfe{bottom:806.666667pt;}
.y17f{bottom:814.240000pt;}
.y124{bottom:814.666667pt;}
.y60{bottom:819.360000pt;}
.ybc{bottom:820.000000pt;}
.yfd{bottom:826.666667pt;}
.y17e{bottom:831.840000pt;}
.y82{bottom:833.440000pt;}
.y5f{bottom:841.440000pt;}
.yfb{bottom:846.666667pt;}
.y17d{bottom:849.440000pt;}
.y122{bottom:854.666667pt;}
.yb9{bottom:858.666667pt;}
.y5e{bottom:863.200000pt;}
.y17c{bottom:866.720000pt;}
.y17b{bottom:884.000000pt;}
.y5d{bottom:885.280000pt;}
.yf8{bottom:886.666667pt;}
.y121{bottom:893.333333pt;}
.yb8{bottom:896.000000pt;}
.y17a{bottom:901.600000pt;}
.y5c{bottom:907.360000pt;}
.y11e{bottom:913.333333pt;}
.yb7{bottom:916.000000pt;}
.y179{bottom:918.880000pt;}
.yf6{bottom:926.666667pt;}
.y5b{bottom:929.440000pt;}
.yb6{bottom:934.666667pt;}
.y178{bottom:936.480000pt;}
.yc{bottom:941.333333pt;}
.y5a{bottom:951.520000pt;}
.y11c{bottom:953.333333pt;}
.y177{bottom:953.760000pt;}
.yb4{bottom:954.666667pt;}
.yf0{bottom:965.333333pt;}
.y176{bottom:971.040000pt;}
.y59{bottom:973.280000pt;}
.yb2{bottom:973.333333pt;}
.y2{bottom:985.333333pt;}
.y175{bottom:988.640000pt;}
.yf2{bottom:990.666667pt;}
.yb0{bottom:992.000000pt;}
.y119{bottom:993.333333pt;}
.y58{bottom:995.360000pt;}
.y174{bottom:1005.920000pt;}
.yaf{bottom:1012.000000pt;}
.y11b{bottom:1013.333333pt;}
.y57{bottom:1017.440000pt;}
.yef{bottom:1020.320000pt;}
.y173{bottom:1023.200000pt;}
.y56{bottom:1039.520000pt;}
.y172{bottom:1040.800000pt;}
.y53{bottom:1058.400000pt;}
.y51{bottom:1073.333333pt;}
.h4{height:1.807360pt;}
.h8{height:14.492160pt;}
.h16{height:17.333333pt;}
.h24{height:18.977280pt;}
.h1d{height:20.000000pt;}
.h1c{height:21.333333pt;}
.h1a{height:22.666667pt;}
.h19{height:24.000000pt;}
.h22{height:25.333333pt;}
.h14{height:26.666667pt;}
.hc{height:29.821440pt;}
.h5{height:34.339840pt;}
.hd{height:34.666667pt;}
.h2{height:37.954560pt;}
.h15{height:38.115840pt;}
.h7{height:38.666667pt;}
.h1f{height:39.243750pt;}
.h1e{height:40.000000pt;}
.h20{height:40.289280pt;}
.h1b{height:41.333333pt;}
.h11{height:41.569280pt;}
.h17{height:41.745920pt;}
.h25{height:41.792000pt;}
.h18{height:42.550000pt;}
.h13{height:42.656250pt;}
.h9{height:45.184000pt;}
.h10{height:45.376000pt;}
.h23{height:46.159360pt;}
.hb{height:47.966720pt;}
.h21{height:49.333333pt;}
.h6{height:52.413440pt;}
.h3{height:70.666667pt;}
.hf{height:133.333333pt;}
.ha{height:136.000000pt;}
.he{height:349.333333pt;}
.h12{height:1112.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wc{width:13.333333pt;}
.w8{width:36.000000pt;}
.w17{width:56.000000pt;}
.w16{width:66.666667pt;}
.w1f{width:70.666667pt;}
.w2{width:76.000000pt;}
.w18{width:84.000000pt;}
.w4{width:86.666667pt;}
.w1b{width:88.000000pt;}
.w1e{width:90.666667pt;}
.w1c{width:101.333333pt;}
.w14{width:108.000000pt;}
.w1d{width:128.000000pt;}
.w13{width:137.333333pt;}
.w7{width:161.333333pt;}
.w10{width:198.666667pt;}
.we{width:206.666667pt;}
.wd{width:208.000000pt;}
.w12{width:216.000000pt;}
.w3{width:218.666667pt;}
.w11{width:245.333333pt;}
.wf{width:246.666667pt;}
.w1a{width:270.666667pt;}
.w5{width:276.000000pt;}
.w19{width:390.666667pt;}
.w15{width:457.333333pt;}
.w9{width:458.666667pt;}
.w6{width:653.333333pt;}
.wb{width:662.666667pt;}
.wa{width:782.933333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xc{left:2.133333pt;}
.x30{left:6.346667pt;}
.x5{left:7.786667pt;}
.x3f{left:9.493333pt;}
.x10{left:10.666667pt;}
.x37{left:12.693333pt;}
.x24{left:14.346667pt;}
.x63{left:15.253333pt;}
.x25{left:17.866667pt;}
.x45{left:19.413333pt;}
.x42{left:20.693333pt;}
.x68{left:22.933333pt;}
.x44{left:24.213333pt;}
.x5d{left:26.186667pt;}
.x43{left:27.093333pt;}
.x5b{left:28.426667pt;}
.x5a{left:29.440000pt;}
.x58{left:31.573333pt;}
.x6b{left:32.586667pt;}
.x26{left:34.826667pt;}
.x65{left:36.426667pt;}
.x35{left:38.346667pt;}
.x66{left:40.906667pt;}
.x74{left:44.373333pt;}
.x27{left:45.706667pt;}
.x3a{left:46.773333pt;}
.x3{left:48.533333pt;}
.x3c{left:50.453333pt;}
.x28{left:52.746667pt;}
.x11{left:55.893333pt;}
.x32{left:57.333333pt;}
.x39{left:61.066667pt;}
.x73{left:62.080000pt;}
.x3b{left:64.586667pt;}
.x2{left:66.666667pt;}
.x4f{left:69.760000pt;}
.x13{left:71.680000pt;}
.x7{left:78.773333pt;}
.x2e{left:83.733333pt;}
.x47{left:85.440000pt;}
.x33{left:87.413333pt;}
.x14{left:90.560000pt;}
.x34{left:92.213333pt;}
.x54{left:102.293333pt;}
.x61{left:103.253333pt;}
.x17{left:111.893333pt;}
.x89{left:113.173333pt;}
.x15{left:114.560000pt;}
.x55{left:115.840000pt;}
.x62{left:117.440000pt;}
.x1c{left:125.333333pt;}
.x18{left:127.360000pt;}
.x85{left:128.853333pt;}
.x8a{left:133.760000pt;}
.x1d{left:138.880000pt;}
.x4{left:141.333333pt;}
.x19{left:142.720000pt;}
.x8b{left:148.693333pt;}
.x7e{left:159.680000pt;}
.x1a{left:167.893333pt;}
.x8c{left:169.280000pt;}
.x5c{left:170.453333pt;}
.xa{left:177.760000pt;}
.x1b{left:181.440000pt;}
.x7f{left:182.933333pt;}
.x80{left:201.280000pt;}
.x46{left:205.973333pt;}
.x3d{left:214.613333pt;}
.xd{left:226.666667pt;}
.xb{left:235.360000pt;}
.x12{left:258.560000pt;}
.xe{left:261.333333pt;}
.x2f{left:265.333333pt;}
.x9{left:267.360000pt;}
.x22{left:273.333333pt;}
.x79{left:319.253333pt;}
.x7c{left:335.040000pt;}
.x7a{left:337.280000pt;}
.x8d{left:345.813333pt;}
.xf{left:353.280000pt;}
.x6{left:358.666667pt;}
.x7d{left:360.960000pt;}
.x8e{left:362.240000pt;}
.x16{left:370.560000pt;}
.x2d{left:372.480000pt;}
.x81{left:373.973333pt;}
.x5f{left:375.573333pt;}
.x86{left:376.533333pt;}
.x4a{left:387.840000pt;}
.x60{left:389.440000pt;}
.x1{left:390.720000pt;}
.x82{left:391.680000pt;}
.x64{left:393.333333pt;}
.x36{left:402.666667pt;}
.x51{left:404.480000pt;}
.x8f{left:407.573333pt;}
.x90{left:424.000000pt;}
.x83{left:432.853333pt;}
.x6e{left:443.093333pt;}
.x8{left:444.000000pt;}
.x84{left:451.200000pt;}
.x56{left:456.000000pt;}
.x91{left:459.093333pt;}
.x5e{left:465.493333pt;}
.x6f{left:467.520000pt;}
.x72{left:470.080000pt;}
.x20{left:471.893333pt;}
.x92{left:475.520000pt;}
.x23{left:478.666667pt;}
.x67{left:482.666667pt;}
.x21{left:487.680000pt;}
.x71{left:507.093333pt;}
.x31{left:510.666667pt;}
.x4c{left:521.493333pt;}
.x3e{left:522.666667pt;}
.x87{left:527.040000pt;}
.x4d{left:534.720000pt;}
.x93{left:536.213333pt;}
.x57{left:538.666667pt;}
.x1e{left:549.653333pt;}
.x69{left:552.000000pt;}
.x29{left:558.293333pt;}
.x1f{left:563.520000pt;}
.x2a{left:571.840000pt;}
.x6c{left:575.573333pt;}
.x40{left:588.000000pt;}
.x88{left:590.080000pt;}
.x6d{left:603.840000pt;}
.x77{left:610.773333pt;}
.x38{left:618.666667pt;}
.x59{left:625.333333pt;}
.x78{left:628.800000pt;}
.x6a{left:638.666667pt;}
.x41{left:642.666667pt;}
.x75{left:648.213333pt;}
.x52{left:658.773333pt;}
.x76{left:666.240000pt;}
.x50{left:669.120000pt;}
.x48{left:670.293333pt;}
.x53{left:672.960000pt;}
.x49{left:680.960000pt;}
.x4e{left:687.360000pt;}
.x7b{left:690.880000pt;}
.x2b{left:714.133333pt;}
.x70{left:717.333333pt;}
.x4b{left:720.213333pt;}
.x2c{left:728.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; }
  