
    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_e97cc87a0138b0acad41ed5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003418;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_aa429b0a1de101eb700bc393.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003418;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_0e2b322c12fe21b5028b5066.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_d7ded0b76d23d694b476a45e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003418;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_5ef896084204a0428ae9ae8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_122f0973423c116a6823b6ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_fa8f38a993026085ae0893aa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e5fc95092a6b406b0abf3e4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971191;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_f2aa62d96774beb67ffcf2e2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cd5deacc0f04914104a145ae.woff2')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_0269d8b4c5100bd6c4361f8c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0161f24324a0b94f93dd607d.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls40{letter-spacing:-0.749664px;}
.ls68{letter-spacing:-0.727776px;}
.ls83{letter-spacing:-0.693523px;}
.ls3c{letter-spacing:-0.656640px;}
.ls4c{letter-spacing:-0.640224px;}
.ls32{letter-spacing:-0.612864px;}
.ls60{letter-spacing:-0.580032px;}
.ls6b{letter-spacing:-0.552672px;}
.ls73{letter-spacing:-0.547200px;}
.ls59{letter-spacing:-0.541728px;}
.ls6e{letter-spacing:-0.536256px;}
.ls3d{letter-spacing:-0.525312px;}
.ls4f{letter-spacing:-0.519840px;}
.ls6c{letter-spacing:-0.514368px;}
.ls77{letter-spacing:-0.502804px;}
.ls80{letter-spacing:-0.497025px;}
.ls76{letter-spacing:-0.492480px;}
.ls7a{letter-spacing:-0.479687px;}
.ls55{letter-spacing:-0.476064px;}
.ls48{letter-spacing:-0.470592px;}
.ls5b{letter-spacing:-0.465120px;}
.ls50{letter-spacing:-0.459648px;}
.ls36{letter-spacing:-0.454176px;}
.ls5a{letter-spacing:-0.448704px;}
.ls82{letter-spacing:-0.445011px;}
.ls57{letter-spacing:-0.443232px;}
.ls6d{letter-spacing:-0.437760px;}
.ls7e{letter-spacing:-0.433452px;}
.ls41{letter-spacing:-0.432288px;}
.ls56{letter-spacing:-0.426816px;}
.ls79{letter-spacing:-0.421893px;}
.ls3a{letter-spacing:-0.421344px;}
.ls3f{letter-spacing:-0.410400px;}
.ls44{letter-spacing:-0.404928px;}
.ls4d{letter-spacing:-0.404555px;}
.ls4a{letter-spacing:-0.399456px;}
.ls31{letter-spacing:-0.393984px;}
.ls69{letter-spacing:-0.388512px;}
.ls3b{letter-spacing:-0.383040px;}
.ls84{letter-spacing:-0.381438px;}
.ls58{letter-spacing:-0.366624px;}
.ls2f{letter-spacing:-0.361152px;}
.ls49{letter-spacing:-0.355680px;}
.ls4e{letter-spacing:-0.350208px;}
.ls78{letter-spacing:-0.346762px;}
.ls64{letter-spacing:-0.333792px;}
.ls2e{letter-spacing:-0.328320px;}
.ls6a{letter-spacing:-0.322848px;}
.ls33{letter-spacing:-0.306432px;}
.ls7c{letter-spacing:-0.300960px;}
.ls7f{letter-spacing:-0.300527px;}
.ls43{letter-spacing:-0.284544px;}
.ls86{letter-spacing:-0.283189px;}
.ls62{letter-spacing:-0.279072px;}
.ls5f{letter-spacing:-0.273600px;}
.ls30{letter-spacing:-0.268128px;}
.ls63{letter-spacing:-0.262656px;}
.ls85{letter-spacing:-0.257184px;}
.ls34{letter-spacing:-0.240768px;}
.ls42{letter-spacing:-0.229824px;}
.ls81{letter-spacing:-0.225395px;}
.ls39{letter-spacing:-0.218880px;}
.ls37{letter-spacing:-0.213408px;}
.ls3e{letter-spacing:-0.207936px;}
.ls7b{letter-spacing:-0.202278px;}
.ls35{letter-spacing:-0.191520px;}
.ls1e{letter-spacing:-0.092736px;}
.ls19{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018720px;}
.ls5{letter-spacing:0.019440px;}
.ls2{letter-spacing:0.038880px;}
.ls47{letter-spacing:0.046656px;}
.ls45{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.054720px;}
.ls1{letter-spacing:0.061488px;}
.ls3{letter-spacing:0.062208px;}
.ls0{letter-spacing:0.066096px;}
.ls5d{letter-spacing:0.072000px;}
.ls46{letter-spacing:0.073872px;}
.ls27{letter-spacing:0.085536px;}
.ls12{letter-spacing:0.126144px;}
.ls18{letter-spacing:0.132624px;}
.ls23{letter-spacing:0.133056px;}
.ls10{letter-spacing:0.162720px;}
.ls13{letter-spacing:0.174240px;}
.ls14{letter-spacing:0.175680px;}
.ls1c{letter-spacing:0.175824px;}
.ls2d{letter-spacing:0.180576px;}
.ls29{letter-spacing:0.185328px;}
.ls7{letter-spacing:0.187776px;}
.ls9{letter-spacing:0.188640px;}
.ls2a{letter-spacing:0.190080px;}
.ls4b{letter-spacing:0.191520px;}
.ls20{letter-spacing:0.226800px;}
.ls2b{letter-spacing:0.228096px;}
.lse{letter-spacing:0.231840px;}
.lsb{letter-spacing:0.232128px;}
.ls2c{letter-spacing:0.242352px;}
.ls15{letter-spacing:0.247104px;}
.ls8{letter-spacing:0.251856px;}
.ls25{letter-spacing:0.256608px;}
.ls11{letter-spacing:0.257184px;}
.lsa{letter-spacing:0.266112px;}
.ls17{letter-spacing:0.270864px;}
.ls28{letter-spacing:0.275616px;}
.ls1b{letter-spacing:0.299376px;}
.ls26{letter-spacing:0.304128px;}
.lsd{letter-spacing:0.322416px;}
.lsf{letter-spacing:0.322560px;}
.ls22{letter-spacing:0.337392px;}
.lsc{letter-spacing:0.337680px;}
.ls1d{letter-spacing:0.342144px;}
.ls1a{letter-spacing:0.346896px;}
.ls21{letter-spacing:0.372960px;}
.ls24{letter-spacing:0.394416px;}
.ls1f{letter-spacing:0.438480px;}
.ls5e{letter-spacing:0.620640px;}
.ls67{letter-spacing:1.778400px;}
.ls71{letter-spacing:1.896480px;}
.ls53{letter-spacing:1.983024px;}
.ls16{letter-spacing:2.077344px;}
.ls74{letter-spacing:2.762208px;}
.ls52{letter-spacing:3.242880px;}
.ls54{letter-spacing:3.755520px;}
.ls65{letter-spacing:5.290560px;}
.ls6f{letter-spacing:5.480640px;}
.ls66{letter-spacing:5.517648px;}
.ls72{letter-spacing:5.785632px;}
.ls75{letter-spacing:6.002928px;}
.ls51{letter-spacing:6.272064px;}
.ls38{letter-spacing:6.868800px;}
.ls61{letter-spacing:7.436160px;}
.ls5c{letter-spacing:7.620480px;}
.ls70{letter-spacing:10.340640px;}
.ls7d{letter-spacing:10.767600px;}
.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;}
}
.ws3b{word-spacing:-18.089393px;}
.ws3c{word-spacing:-17.887115px;}
.ws3f{word-spacing:-17.788866px;}
.ws39{word-spacing:-17.742631px;}
.ws18{word-spacing:-17.684838px;}
.ws3a{word-spacing:-17.609706px;}
.ws11{word-spacing:-17.127360px;}
.ws3e{word-spacing:-16.935840px;}
.ws2b{word-spacing:-16.908480px;}
.ws41{word-spacing:-16.897536px;}
.ws17{word-spacing:-16.886592px;}
.ws26{word-spacing:-16.842816px;}
.ws13{word-spacing:-16.820928px;}
.ws1a{word-spacing:-16.777152px;}
.ws1d{word-spacing:-16.771680px;}
.ws42{word-spacing:-16.744320px;}
.ws1e{word-spacing:-16.727904px;}
.ws3d{word-spacing:-16.722432px;}
.ws34{word-spacing:-16.716960px;}
.ws1f{word-spacing:-16.706016px;}
.ws40{word-spacing:-16.673184px;}
.ws43{word-spacing:-16.656768px;}
.ws12{word-spacing:-16.514496px;}
.ws7{word-spacing:-16.148160px;}
.ws5{word-spacing:-16.112880px;}
.ws6{word-spacing:-16.097760px;}
.ws2e{word-spacing:-16.032960px;}
.ws31{word-spacing:-15.803136px;}
.ws1c{word-spacing:-15.759360px;}
.ws2c{word-spacing:-15.710112px;}
.wsf{word-spacing:-15.704640px;}
.ws10{word-spacing:-15.671808px;}
.ws33{word-spacing:-15.606144px;}
.ws30{word-spacing:-15.595200px;}
.ws32{word-spacing:-15.578784px;}
.ws2f{word-spacing:-15.556896px;}
.ws19{word-spacing:-15.513120px;}
.ws2d{word-spacing:-15.452928px;}
.wsa{word-spacing:-15.268176px;}
.ws1{word-spacing:-15.220656px;}
.ws9{word-spacing:-15.211152px;}
.ws4{word-spacing:-15.173136px;}
.wse{word-spacing:-15.149376px;}
.ws3{word-spacing:-15.144624px;}
.wsb{word-spacing:-15.130368px;}
.ws2{word-spacing:-15.125616px;}
.wsd{word-spacing:-15.120864px;}
.ws8{word-spacing:-15.049584px;}
.wsc{word-spacing:-14.959296px;}
.ws20{word-spacing:-12.366720px;}
.ws36{word-spacing:-12.366718px;}
.ws15{word-spacing:-12.243312px;}
.ws0{word-spacing:-12.231648px;}
.ws16{word-spacing:-12.216096px;}
.ws22{word-spacing:-12.104064px;}
.ws29{word-spacing:-12.032928px;}
.ws28{word-spacing:-11.934432px;}
.ws35{word-spacing:-11.923486px;}
.ws2a{word-spacing:-11.918016px;}
.ws1b{word-spacing:-11.918014px;}
.ws21{word-spacing:-11.726496px;}
.ws14{word-spacing:0.000000px;}
.ws24{word-spacing:76.179696px;}
.ws23{word-spacing:76.191552px;}
.ws37{word-spacing:76.832304px;}
.ws38{word-spacing:77.009520px;}
.ws25{word-spacing:112.543608px;}
.ws27{word-spacing:186.313752px;}
._10{margin-left:-4.742784px;}
._b{margin-left:-3.064320px;}
._0{margin-left:-1.710720px;}
._1{width:1.185984px;}
._2{width:2.340576px;}
._4{width:4.134240px;}
._6{width:5.464800px;}
._5{width:6.795360px;}
._7{width:8.553600px;}
._8{width:9.884160px;}
._f{width:11.341440px;}
._3{width:12.346848px;}
._11{width:13.401504px;}
._c{width:14.555520px;}
._14{width:15.649920px;}
._13{width:18.132480px;}
._12{width:19.425600px;}
._1e{width:21.012480px;}
._a{width:23.723280px;}
._9{width:24.792336px;}
._18{width:27.821232px;}
._29{width:29.994872px;}
._16{width:37.589544px;}
._2a{width:44.432640px;}
._2b{width:46.697219px;}
._17{width:48.011232px;}
._21{width:55.431360px;}
._22{width:58.429317px;}
._30{width:63.870480px;}
._31{width:68.837760px;}
._32{width:73.744618px;}
._20{width:77.574672px;}
._2c{width:81.423360px;}
._2d{width:86.197921px;}
._24{width:104.569920px;}
._1f{width:106.704000px;}
._23{width:110.817989px;}
._2f{width:119.180160px;}
._19{width:124.081176px;}
._2e{width:126.914719px;}
._1a{width:135.326640px;}
._27{width:138.605760px;}
._28{width:145.986603px;}
._15{width:147.492024px;}
._26{width:431.904960px;}
._25{width:456.597024px;}
._1b{width:566.056152px;}
._1d{width:681.572304px;}
._e{width:730.568160px;}
._1c{width:764.979768px;}
._d{width:1280.307744px;}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(17,17,17);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(46,116,181);}
.fc0{color:rgb(255,0,0);}
.fs1{font-size:38.880000px;}
.fs0{font-size:47.520000px;}
.fs3{font-size:50.400000px;}
.fs7{font-size:54.719991px;}
.fs4{font-size:54.720000px;}
.fs6{font-size:57.793588px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y15a{bottom:10.980000px;}
.y172{bottom:11.040000px;}
.y15f{bottom:11.100000px;}
.y16f{bottom:11.220000px;}
.y15c{bottom:11.280000px;}
.y162{bottom:11.400000px;}
.y164{bottom:11.700000px;}
.y168{bottom:11.820000px;}
.y166{bottom:12.000000px;}
.y16b{bottom:12.120000px;}
.y158{bottom:12.180000px;}
.y16d{bottom:12.420000px;}
.y155{bottom:15.840030px;}
.y19c{bottom:17.640000px;}
.y11a{bottom:18.000000px;}
.yd3{bottom:18.000030px;}
.y173{bottom:23.280000px;}
.y160{bottom:23.340000px;}
.y169{bottom:24.060000px;}
.y171{bottom:35.520000px;}
.y15e{bottom:35.580000px;}
.y157{bottom:36.300000px;}
.y154{bottom:41.040030px;}
.y195{bottom:46.080023px;}
.ycf{bottom:46.439997px;}
.y13f{bottom:46.440023px;}
.y119{bottom:47.520000px;}
.y19b{bottom:60.840023px;}
.y196{bottom:63.360023px;}
.yd0{bottom:63.719996px;}
.y118{bottom:63.720000px;}
.y140{bottom:63.720023px;}
.y197{bottom:64.440023px;}
.yd1{bottom:64.799996px;}
.y141{bottom:64.800023px;}
.y19a{bottom:69.221123px;}
.y153{bottom:70.920029px;}
.yce{bottom:74.568143px;}
.y13e{bottom:74.657423px;}
.y198{bottom:77.760023px;}
.yd2{bottom:78.119993px;}
.y142{bottom:78.120023px;}
.y10f{bottom:81.720000px;}
.y152{bottom:87.120027px;}
.y36{bottom:91.200000px;}
.y5{bottom:96.600000px;}
.y149{bottom:105.120030px;}
.y110{bottom:108.360000px;}
.y5e{bottom:111.000000px;}
.ybd{bottom:112.080000px;}
.y10d{bottom:117.840000px;}
.y4{bottom:118.560000px;}
.ybc{bottom:119.640000px;}
.y132{bottom:120.000000px;}
.y1a6{bottom:120.360000px;}
.yc2{bottom:122.880000px;}
.y147{bottom:124.320000px;}
.y174{bottom:126.840000px;}
.y178{bottom:128.640000px;}
.y18d{bottom:131.160000px;}
.y14a{bottom:132.480030px;}
.y111{bottom:134.640000px;}
.y3{bottom:135.120000px;}
.y5d{bottom:135.480000px;}
.y7e{bottom:136.560000px;}
.yc1{bottom:139.440000px;}
.y170{bottom:141.000000px;}
.y10c{bottom:142.320000px;}
.ybb{bottom:143.760000px;}
.y131{bottom:144.480000px;}
.y1a5{bottom:144.840000px;}
.y134{bottom:147.600000px;}
.yc4{bottom:147.960027px;}
.y146{bottom:148.800000px;}
.yc0{bottom:152.760000px;}
.yc3{bottom:153.120000px;}
.ya5{bottom:153.480000px;}
.y35{bottom:153.840000px;}
.y18c{bottom:155.640000px;}
.y14b{bottom:159.840030px;}
.y5c{bottom:159.960000px;}
.y112{bottom:160.920000px;}
.y7d{bottom:161.040000px;}
.y1b5{bottom:161.400000px;}
.y10b{bottom:166.800000px;}
.yc5{bottom:167.400030px;}
.yba{bottom:168.240000px;}
.y130{bottom:168.960000px;}
.y1a4{bottom:169.320000px;}
.y135{bottom:173.160000px;}
.y145{bottom:173.280000px;}
.y177{bottom:177.240000px;}
.ya4{bottom:177.960000px;}
.y34{bottom:178.320000px;}
.y18f{bottom:180.000000px;}
.y18b{bottom:180.120000px;}
.y5b{bottom:184.080000px;}
.y7c{bottom:185.520000px;}
.y1b4{bottom:185.880000px;}
.yc6{bottom:186.840030px;}
.y14c{bottom:187.200030px;}
.y113{bottom:187.560000px;}
.ycd{bottom:187.991850px;}
.y16e{bottom:190.500000px;}
.y10a{bottom:191.280000px;}
.yb9{bottom:192.720000px;}
.y12f{bottom:193.080000px;}
.y1a3{bottom:193.800000px;}
.y176{bottom:194.160000px;}
.y144{bottom:197.760000px;}
.y136{bottom:199.080000px;}
.ya3{bottom:202.080000px;}
.y33{bottom:202.800000px;}
.y18a{bottom:204.600000px;}
.yc7{bottom:206.280030px;}
.y5a{bottom:208.560000px;}
.y7b{bottom:210.000000px;}
.y175{bottom:210.360000px;}
.y190{bottom:212.040000px;}
.y114{bottom:213.840000px;}
.y16c{bottom:214.500000px;}
.y14d{bottom:214.560030px;}
.y109{bottom:215.760000px;}
.yb8{bottom:217.200000px;}
.y12e{bottom:217.560000px;}
.y1a2{bottom:217.920000px;}
.y143{bottom:221.520000px;}
.y148{bottom:221.880000px;}
.y137{bottom:224.640000px;}
.yc8{bottom:225.720030px;}
.ya2{bottom:226.560000px;}
.y32{bottom:227.280000px;}
.y189{bottom:229.080000px;}
.y59{bottom:233.040000px;}
.y7a{bottom:234.480000px;}
.y16a{bottom:240.000000px;}
.y108{bottom:240.240000px;}
.y115{bottom:240.480000px;}
.yb7{bottom:241.680000px;}
.y14e{bottom:241.920000px;}
.y12d{bottom:242.040000px;}
.y1a1{bottom:242.400000px;}
.yf0{bottom:242.760000px;}
.y191{bottom:244.440000px;}
.yc9{bottom:245.160030px;}
.y138{bottom:250.200000px;}
.ya1{bottom:251.040000px;}
.y31{bottom:251.760000px;}
.y188{bottom:253.560000px;}
.y58{bottom:257.520000px;}
.y79{bottom:258.960000px;}
.y107{bottom:264.720000px;}
.yca{bottom:264.960030px;}
.y167{bottom:265.500000px;}
.yb6{bottom:266.160000px;}
.y12c{bottom:266.520000px;}
.y116{bottom:266.760000px;}
.yef{bottom:266.880000px;}
.y14f{bottom:269.280000px;}
.y1d3{bottom:274.080000px;}
.ya0{bottom:275.520000px;}
.y139{bottom:275.760000px;}
.y30{bottom:276.240000px;}
.y192{bottom:276.840000px;}
.y187{bottom:278.040000px;}
.y57{bottom:282.000000px;}
.y78{bottom:283.440000px;}
.ycb{bottom:284.400030px;}
.y106{bottom:288.840000px;}
.yb5{bottom:290.640000px;}
.y12b{bottom:291.000000px;}
.yee{bottom:291.360000px;}
.y117{bottom:293.040000px;}
.y150{bottom:296.640000px;}
.y1cb{bottom:298.560000px;}
.y1b3{bottom:298.920000px;}
.y9f{bottom:300.000000px;}
.y2f{bottom:300.360000px;}
.y13a{bottom:301.320000px;}
.y186{bottom:302.520000px;}
.ycc{bottom:303.840000px;}
.y56{bottom:306.480000px;}
.y77{bottom:307.560000px;}
.y193{bottom:308.880000px;}
.y105{bottom:313.320000px;}
.y165{bottom:315.000000px;}
.yb4{bottom:315.120000px;}
.y12a{bottom:315.480000px;}
.yed{bottom:315.840000px;}
.y1b2{bottom:323.040000px;}
.y151{bottom:324.000000px;}
.y9e{bottom:324.480000px;}
.y2e{bottom:324.840000px;}
.y185{bottom:326.640000px;}
.y13b{bottom:327.240000px;}
.y1d2{bottom:330.600000px;}
.y55{bottom:330.960000px;}
.y76{bottom:332.040000px;}
.y104{bottom:337.800000px;}
.yb3{bottom:339.600000px;}
.y129{bottom:339.960000px;}
.yec{bottom:340.320000px;}
.y163{bottom:340.500000px;}
.y194{bottom:341.280000px;}
.y1b1{bottom:347.520000px;}
.y9d{bottom:348.960000px;}
.y2d{bottom:349.320000px;}
.y184{bottom:351.120000px;}
.y13c{bottom:352.800000px;}
.y1ca{bottom:355.080000px;}
.y54{bottom:355.440000px;}
.y75{bottom:356.520000px;}
.y103{bottom:362.280000px;}
.yb2{bottom:363.720000px;}
.y128{bottom:364.440000px;}
.yeb{bottom:364.800000px;}
.y161{bottom:366.000000px;}
.y9c{bottom:373.440000px;}
.y2c{bottom:373.800000px;}
.y183{bottom:375.600000px;}
.y1c9{bottom:379.200000px;}
.y53{bottom:379.920000px;}
.y74{bottom:381.000000px;}
.y1b0{bottom:384.240000px;}
.y102{bottom:386.760000px;}
.yb1{bottom:388.200000px;}
.y127{bottom:388.920000px;}
.yea{bottom:389.280000px;}
.y15d{bottom:391.500000px;}
.y9b{bottom:397.920000px;}
.y2b{bottom:398.280000px;}
.y182{bottom:400.080000px;}
.y1c8{bottom:403.680000px;}
.y52{bottom:404.400000px;}
.y1af{bottom:404.760000px;}
.yb0{bottom:405.120000px;}
.y73{bottom:405.480000px;}
.y101{bottom:411.240000px;}
.y126{bottom:413.400000px;}
.ye9{bottom:413.760000px;}
.y2a{bottom:417.000000px;}
.yaf{bottom:421.320000px;}
.y9a{bottom:422.400000px;}
.y181{bottom:424.560000px;}
.y51{bottom:428.520000px;}
.y72{bottom:429.960000px;}
.y1ae{bottom:432.120000px;}
.y29{bottom:435.720000px;}
.y125{bottom:437.520000px;}
.ye8{bottom:438.240000px;}
.yae{bottom:440.760000px;}
.y15b{bottom:441.000000px;}
.y99{bottom:446.520000px;}
.y180{bottom:449.040000px;}
.y50{bottom:453.000000px;}
.y28{bottom:454.440000px;}
.y1ad{bottom:456.600000px;}
.y100{bottom:460.200000px;}
.y124{bottom:462.000000px;}
.ye7{bottom:462.360000px;}
.yad{bottom:464.520000px;}
.y159{bottom:466.500000px;}
.y1d1{bottom:467.760000px;}
.y98{bottom:471.000000px;}
.y27{bottom:473.160000px;}
.y17f{bottom:473.520000px;}
.y1ac{bottom:474.240000px;}
.y4f{bottom:477.480000px;}
.y71{bottom:478.920000px;}
.ybf{bottom:481.080000px;}
.yff{bottom:484.680000px;}
.y123{bottom:486.480000px;}
.ye6{bottom:486.840000px;}
.yac{bottom:489.000000px;}
.y156{bottom:490.500000px;}
.y26{bottom:491.880000px;}
.y1d0{bottom:492.240000px;}
.y1ab{bottom:495.120000px;}
.y97{bottom:495.480000px;}
.y17e{bottom:498.000000px;}
.ybe{bottom:500.520000px;}
.y4e{bottom:501.960000px;}
.y70{bottom:503.400000px;}
.y25{bottom:508.440000px;}
.yfe{bottom:509.160000px;}
.y122{bottom:510.960000px;}
.ye5{bottom:511.320000px;}
.yab{bottom:513.480000px;}
.y1aa{bottom:514.560000px;}
.y1c7{bottom:516.720000px;}
.y96{bottom:519.960000px;}
.y17d{bottom:522.480000px;}
.y24{bottom:525.000000px;}
.y4d{bottom:526.440000px;}
.y6f{bottom:527.520000px;}
.yaa{bottom:530.040000px;}
.yfd{bottom:533.280000px;}
.y1a9{bottom:535.080000px;}
.y121{bottom:535.440000px;}
.ye4{bottom:535.800000px;}
.y1c6{bottom:541.200000px;}
.y23{bottom:541.560000px;}
.y95{bottom:544.440000px;}
.ya9{bottom:546.240000px;}
.y17c{bottom:546.600000px;}
.y1cf{bottom:548.400000px;}
.y4c{bottom:550.920000px;}
.y6e{bottom:552.000000px;}
.y1a8{bottom:554.520000px;}
.yfc{bottom:557.760000px;}
.y22{bottom:558.480000px;}
.y120{bottom:559.920000px;}
.ye3{bottom:560.280000px;}
.ya8{bottom:565.680000px;}
.y94{bottom:568.920000px;}
.y17b{bottom:571.080000px;}
.y1c5{bottom:572.880000px;}
.y1a7{bottom:573.960000px;}
.y21{bottom:575.040000px;}
.y4b{bottom:575.400000px;}
.y6d{bottom:576.480000px;}
.yfb{bottom:582.240000px;}
.y11f{bottom:584.400000px;}
.ye2{bottom:584.760000px;}
.ya7{bottom:585.120000px;}
.y20{bottom:591.600000px;}
.y93{bottom:593.400000px;}
.y17a{bottom:595.560000px;}
.y1c4{bottom:597.360000px;}
.y4a{bottom:599.880000px;}
.y6c{bottom:600.960000px;}
.ya6{bottom:601.320000px;}
.y1ce{bottom:604.920000px;}
.yfa{bottom:606.720000px;}
.y1f{bottom:608.160000px;}
.y11e{bottom:608.880000px;}
.ye1{bottom:609.240000px;}
.y92{bottom:617.880000px;}
.y179{bottom:619.680000px;}
.y18e{bottom:620.040000px;}
.y49{bottom:624.360000px;}
.y1e{bottom:625.080000px;}
.y6b{bottom:625.440000px;}
.y1c3{bottom:629.400000px;}
.yf9{bottom:631.200000px;}
.y11d{bottom:633.360000px;}
.ye0{bottom:633.720000px;}
.y1d{bottom:641.640000px;}
.y91{bottom:642.360000px;}
.yf8{bottom:647.760000px;}
.y48{bottom:648.480000px;}
.y6a{bottom:649.920000px;}
.y1c2{bottom:653.880000px;}
.y11c{bottom:657.840000px;}
.y1c{bottom:658.200000px;}
.y1cd{bottom:661.440000px;}
.y199{bottom:662.058900px;}
.yf7{bottom:665.400000px;}
.y90{bottom:666.480000px;}
.y47{bottom:672.960000px;}
.y69{bottom:674.400000px;}
.y1b{bottom:675.120000px;}
.y11b{bottom:681.600000px;}
.y133{bottom:681.960000px;}
.ydf{bottom:682.320000px;}
.y1c1{bottom:685.560000px;}
.yf6{bottom:685.920000px;}
.y8f{bottom:690.960000px;}
.y1a{bottom:691.680000px;}
.y46{bottom:697.440000px;}
.y68{bottom:698.880000px;}
.yde{bottom:706.800000px;}
.y19{bottom:708.240000px;}
.y1c0{bottom:710.040000px;}
.yf5{bottom:713.280000px;}
.y8e{bottom:715.440000px;}
.y13d{bottom:716.742600px;}
.y45{bottom:721.920000px;}
.y67{bottom:723.360000px;}
.y18{bottom:724.800000px;}
.ydd{bottom:731.280000px;}
.y1bf{bottom:734.520000px;}
.yf4{bottom:737.760000px;}
.y8d{bottom:739.920000px;}
.y17{bottom:741.720000px;}
.y44{bottom:746.400000px;}
.y66{bottom:747.840000px;}
.yf3{bottom:751.440000px;}
.y10e{bottom:751.800000px;}
.ydc{bottom:755.760000px;}
.y8c{bottom:756.480000px;}
.y16{bottom:758.280000px;}
.y1be{bottom:766.560000px;}
.y43{bottom:770.880000px;}
.y65{bottom:771.960000px;}
.y8b{bottom:772.680000px;}
.y15{bottom:774.840000px;}
.ydb{bottom:780.240000px;}
.y42{bottom:787.440000px;}
.y1bd{bottom:791.040000px;}
.y14{bottom:791.400000px;}
.y8a{bottom:792.120000px;}
.y64{bottom:796.440000px;}
.yda{bottom:804.720000px;}
.y13{bottom:808.320000px;}
.y89{bottom:816.240000px;}
.y63{bottom:820.920000px;}
.y1bc{bottom:823.080000px;}
.y41{bottom:824.520000px;}
.y12{bottom:824.880000px;}
.yd9{bottom:829.200000px;}
.y88{bottom:840.720000px;}
.y11{bottom:841.440000px;}
.y62{bottom:845.400000px;}
.y1a0{bottom:845.760000px;}
.y1bb{bottom:847.560000px;}
.yd8{bottom:853.680000px;}
.y10{bottom:858.000000px;}
.y19f{bottom:861.960000px;}
.y87{bottom:865.200000px;}
.y40{bottom:869.880000px;}
.yd7{bottom:870.240000px;}
.yf{bottom:874.920000px;}
.y19e{bottom:878.520000px;}
.y1ba{bottom:879.240000px;}
.yd6{bottom:886.440000px;}
.ye{bottom:889.320000px;}
.y86{bottom:889.680000px;}
.y3f{bottom:894.360000px;}
.y19d{bottom:894.720000px;}
.yd5{bottom:903.000000px;}
.yd{bottom:903.720000px;}
.y85{bottom:914.160000px;}
.yc{bottom:918.120000px;}
.y3e{bottom:918.840000px;}
.yd4{bottom:919.200000px;}
.y1b9{bottom:928.200000px;}
.yb{bottom:932.880000px;}
.y84{bottom:938.640000px;}
.y3d{bottom:943.320000px;}
.ya{bottom:947.640000px;}
.y1cc{bottom:952.680000px;}
.y1b8{bottom:960.240000px;}
.y83{bottom:963.120000px;}
.y9{bottom:963.480000px;}
.y3c{bottom:967.800000px;}
.y8{bottom:978.960000px;}
.y1b7{bottom:984.720000px;}
.y82{bottom:987.240000px;}
.y3b{bottom:992.280000px;}
.y7{bottom:995.160000px;}
.y1b6{bottom:1009.200000px;}
.y81{bottom:1011.720000px;}
.y3a{bottom:1016.400000px;}
.y80{bottom:1036.200000px;}
.y39{bottom:1040.880000px;}
.y6{bottom:1050.960000px;}
.y7f{bottom:1052.760000px;}
.y38{bottom:1065.360000px;}
.yf2{bottom:1070.760000px;}
.y37{bottom:1089.840000px;}
.yf1{bottom:1090.200000px;}
.y61{bottom:1151.400000px;}
.y2{bottom:1164.360000px;}
.y60{bottom:1165.080000px;}
.y1{bottom:1178.760000px;}
.y5f{bottom:1179.480000px;}
.h17{height:25.500000px;}
.h19{height:27.000000px;}
.h2{height:30.982500px;}
.h9{height:31.672266px;}
.h6{height:35.640000px;}
.h1{height:37.867500px;}
.he{height:39.276556px;}
.hc{height:39.276563px;}
.h20{height:39.468748px;}
.h1f{height:39.469172px;}
.h4{height:40.162500px;}
.h7{height:41.841563px;}
.h5{height:44.780625px;}
.ha{height:47.295924px;}
.h8{height:47.988281px;}
.h18{height:49.500000px;}
.h3{height:50.650313px;}
.h16{height:51.000000px;}
.h1e{height:167.160300px;}
.hd{height:179.967600px;}
.h1d{height:308.854650px;}
.h14{height:308.936700px;}
.hf{height:309.025950px;}
.h10{height:313.200000px;}
.hb{height:323.640000px;}
.h15{height:343.800000px;}
.h1c{height:348.868200px;}
.h13{height:348.950250px;}
.h1b{height:352.050150px;}
.h12{height:352.132350px;}
.h21{height:360.370950px;}
.h1a{height:361.440000px;}
.h11{height:372.600000px;}
.h0{height:1263.000000px;}
.w14{width:60.000000px;}
.w11{width:70.500000px;}
.w12{width:75.000000px;}
.w16{width:85.500000px;}
.w15{width:90.000000px;}
.w13{width:94.500000px;}
.w2{width:148.786785px;}
.wa{width:152.436300px;}
.w1c{width:167.160300px;}
.w10{width:169.500000px;}
.w4{width:179.967450px;}
.w3{width:179.967600px;}
.w7{width:278.840550px;}
.we{width:282.159450px;}
.w1d{width:344.210700px;}
.w18{width:366.919200px;}
.w19{width:378.349050px;}
.w1b{width:399.736350px;}
.w6{width:401.845200px;}
.wd{width:412.343100px;}
.w1a{width:438.590400px;}
.w5{width:475.741500px;}
.wc{width:493.417950px;}
.w1{width:540.000000px;}
.wb{width:572.309100px;}
.w9{width:590.040000px;}
.w17{width:591.480000px;}
.w8{width:605.160000px;}
.wf{width:637.560000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:9.824850px;}
.x38{left:11.712888px;}
.x3c{left:15.065400px;}
.xf{left:16.649850px;}
.x36{left:20.780664px;}
.x43{left:21.917640px;}
.x39{left:23.360760px;}
.x3e{left:24.883320px;}
.x41{left:28.722960px;}
.x3f{left:30.763200px;}
.x3a{left:33.297960px;}
.x45{left:35.575200px;}
.x44{left:37.615440px;}
.x42{left:40.150200px;}
.x4a{left:41.696550px;}
.x1d{left:43.699050px;}
.x49{left:48.521550px;}
.x11{left:50.118877px;}
.x24{left:53.768377px;}
.x2c{left:61.061550px;}
.x33{left:65.437350px;}
.x1e{left:72.311550px;}
.x4f{left:75.810877px;}
.x13{left:81.299677px;}
.x2a{left:83.334750px;}
.x4b{left:96.504877px;}
.x1a{left:109.276650px;}
.x2{left:127.439928px;}
.x1f{left:131.582850px;}
.x48{left:150.480000px;}
.x3{left:158.685408px;}
.x4c{left:160.988977px;}
.x55{left:163.590084px;}
.xe{left:176.400000px;}
.x6c{left:178.329348px;}
.x7{left:180.614844px;}
.x15{left:195.954877px;}
.x4d{left:212.743800px;}
.x12{left:214.872900px;}
.x17{left:218.681377px;}
.x26{left:221.140177px;}
.x27{left:224.062050px;}
.x46{left:226.862532px;}
.x53{left:230.558100px;}
.x4{left:232.870608px;}
.x64{left:234.109152px;}
.x56{left:235.387908px;}
.x22{left:238.960500px;}
.x16{left:240.658500px;}
.x6a{left:242.757576px;}
.x57{left:246.976308px;}
.x68{left:250.127172px;}
.x6d{left:252.406512px;}
.x25{left:253.573350px;}
.x7d{left:256.336668px;}
.x7b{left:272.203488px;}
.x65{left:275.861556px;}
.x66{left:280.080324px;}
.x14{left:284.526750px;}
.x5c{left:286.599600px;}
.x35{left:295.500000px;}
.x2d{left:301.356750px;}
.x28{left:305.136900px;}
.x72{left:307.594476px;}
.x34{left:311.771484px;}
.x18{left:314.554800px;}
.xb{left:326.738160px;}
.x1b{left:329.740740px;}
.x2b{left:331.810560px;}
.x6e{left:347.445180px;}
.x7e{left:352.636236px;}
.x37{left:364.500000px;}
.xd{left:372.656592px;}
.x2f{left:384.917550px;}
.x2e{left:391.832550px;}
.x52{left:397.749300px;}
.x4e{left:409.067850px;}
.x76{left:412.688520px;}
.x6{left:424.654200px;}
.x8{left:426.793320px;}
.x20{left:432.348600px;}
.x29{left:435.320550px;}
.x19{left:437.559450px;}
.x9{left:441.051120px;}
.x5{left:446.339880px;}
.xa{left:447.609960px;}
.x83{left:463.859640px;}
.x30{left:468.246150px;}
.x50{left:472.491300px;}
.x31{left:476.376150px;}
.x63{left:501.815160px;}
.x21{left:502.960050px;}
.x79{left:504.205560px;}
.x5d{left:507.150720px;}
.x77{left:522.844560px;}
.x73{left:526.716720px;}
.x3b{left:532.500000px;}
.x7c{left:534.742920px;}
.x51{left:535.914600px;}
.x32{left:540.226950px;}
.x75{left:557.078760px;}
.x60{left:561.328200px;}
.x58{left:566.738280px;}
.x7f{left:572.900040px;}
.x81{left:575.037720px;}
.x6f{left:578.036160px;}
.x3d{left:591.000000px;}
.x5e{left:635.271120px;}
.x6b{left:646.571880px;}
.x70{left:652.100400px;}
.x59{left:656.920440px;}
.x71{left:658.574640px;}
.x7a{left:665.701560px;}
.x5f{left:672.167880px;}
.x78{left:674.942400px;}
.x80{left:676.215360px;}
.x40{left:679.500000px;}
.x61{left:688.161600px;}
.x82{left:690.570360px;}
.x5a{left:691.845120px;}
.x67{left:701.747640px;}
.x62{left:702.900720px;}
.x5b{left:706.584600px;}
.x69{left:713.823840px;}
.xc{left:716.339880px;}
.x23{left:717.480000px;}
.x74{left:725.145120px;}
.x54{left:727.765560px;}
.x1c{left:732.600000px;}
.x47{left:742.079880px;}
.x1{left:765.239760px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls40{letter-spacing:-0.666368pt;}
.ls68{letter-spacing:-0.646912pt;}
.ls83{letter-spacing:-0.616465pt;}
.ls3c{letter-spacing:-0.583680pt;}
.ls4c{letter-spacing:-0.569088pt;}
.ls32{letter-spacing:-0.544768pt;}
.ls60{letter-spacing:-0.515584pt;}
.ls6b{letter-spacing:-0.491264pt;}
.ls73{letter-spacing:-0.486400pt;}
.ls59{letter-spacing:-0.481536pt;}
.ls6e{letter-spacing:-0.476672pt;}
.ls3d{letter-spacing:-0.466944pt;}
.ls4f{letter-spacing:-0.462080pt;}
.ls6c{letter-spacing:-0.457216pt;}
.ls77{letter-spacing:-0.446937pt;}
.ls80{letter-spacing:-0.441800pt;}
.ls76{letter-spacing:-0.437760pt;}
.ls7a{letter-spacing:-0.426388pt;}
.ls55{letter-spacing:-0.423168pt;}
.ls48{letter-spacing:-0.418304pt;}
.ls5b{letter-spacing:-0.413440pt;}
.ls50{letter-spacing:-0.408576pt;}
.ls36{letter-spacing:-0.403712pt;}
.ls5a{letter-spacing:-0.398848pt;}
.ls82{letter-spacing:-0.395565pt;}
.ls57{letter-spacing:-0.393984pt;}
.ls6d{letter-spacing:-0.389120pt;}
.ls7e{letter-spacing:-0.385291pt;}
.ls41{letter-spacing:-0.384256pt;}
.ls56{letter-spacing:-0.379392pt;}
.ls79{letter-spacing:-0.375016pt;}
.ls3a{letter-spacing:-0.374528pt;}
.ls3f{letter-spacing:-0.364800pt;}
.ls44{letter-spacing:-0.359936pt;}
.ls4d{letter-spacing:-0.359605pt;}
.ls4a{letter-spacing:-0.355072pt;}
.ls31{letter-spacing:-0.350208pt;}
.ls69{letter-spacing:-0.345344pt;}
.ls3b{letter-spacing:-0.340480pt;}
.ls84{letter-spacing:-0.339056pt;}
.ls58{letter-spacing:-0.325888pt;}
.ls2f{letter-spacing:-0.321024pt;}
.ls49{letter-spacing:-0.316160pt;}
.ls4e{letter-spacing:-0.311296pt;}
.ls78{letter-spacing:-0.308232pt;}
.ls64{letter-spacing:-0.296704pt;}
.ls2e{letter-spacing:-0.291840pt;}
.ls6a{letter-spacing:-0.286976pt;}
.ls33{letter-spacing:-0.272384pt;}
.ls7c{letter-spacing:-0.267520pt;}
.ls7f{letter-spacing:-0.267135pt;}
.ls43{letter-spacing:-0.252928pt;}
.ls86{letter-spacing:-0.251723pt;}
.ls62{letter-spacing:-0.248064pt;}
.ls5f{letter-spacing:-0.243200pt;}
.ls30{letter-spacing:-0.238336pt;}
.ls63{letter-spacing:-0.233472pt;}
.ls85{letter-spacing:-0.228608pt;}
.ls34{letter-spacing:-0.214016pt;}
.ls42{letter-spacing:-0.204288pt;}
.ls81{letter-spacing:-0.200351pt;}
.ls39{letter-spacing:-0.194560pt;}
.ls37{letter-spacing:-0.189696pt;}
.ls3e{letter-spacing:-0.184832pt;}
.ls7b{letter-spacing:-0.179802pt;}
.ls35{letter-spacing:-0.170240pt;}
.ls1e{letter-spacing:-0.082432pt;}
.ls19{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016640pt;}
.ls5{letter-spacing:0.017280pt;}
.ls2{letter-spacing:0.034560pt;}
.ls47{letter-spacing:0.041472pt;}
.ls45{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.048640pt;}
.ls1{letter-spacing:0.054656pt;}
.ls3{letter-spacing:0.055296pt;}
.ls0{letter-spacing:0.058752pt;}
.ls5d{letter-spacing:0.064000pt;}
.ls46{letter-spacing:0.065664pt;}
.ls27{letter-spacing:0.076032pt;}
.ls12{letter-spacing:0.112128pt;}
.ls18{letter-spacing:0.117888pt;}
.ls23{letter-spacing:0.118272pt;}
.ls10{letter-spacing:0.144640pt;}
.ls13{letter-spacing:0.154880pt;}
.ls14{letter-spacing:0.156160pt;}
.ls1c{letter-spacing:0.156288pt;}
.ls2d{letter-spacing:0.160512pt;}
.ls29{letter-spacing:0.164736pt;}
.ls7{letter-spacing:0.166912pt;}
.ls9{letter-spacing:0.167680pt;}
.ls2a{letter-spacing:0.168960pt;}
.ls4b{letter-spacing:0.170240pt;}
.ls20{letter-spacing:0.201600pt;}
.ls2b{letter-spacing:0.202752pt;}
.lse{letter-spacing:0.206080pt;}
.lsb{letter-spacing:0.206336pt;}
.ls2c{letter-spacing:0.215424pt;}
.ls15{letter-spacing:0.219648pt;}
.ls8{letter-spacing:0.223872pt;}
.ls25{letter-spacing:0.228096pt;}
.ls11{letter-spacing:0.228608pt;}
.lsa{letter-spacing:0.236544pt;}
.ls17{letter-spacing:0.240768pt;}
.ls28{letter-spacing:0.244992pt;}
.ls1b{letter-spacing:0.266112pt;}
.ls26{letter-spacing:0.270336pt;}
.lsd{letter-spacing:0.286592pt;}
.lsf{letter-spacing:0.286720pt;}
.ls22{letter-spacing:0.299904pt;}
.lsc{letter-spacing:0.300160pt;}
.ls1d{letter-spacing:0.304128pt;}
.ls1a{letter-spacing:0.308352pt;}
.ls21{letter-spacing:0.331520pt;}
.ls24{letter-spacing:0.350592pt;}
.ls1f{letter-spacing:0.389760pt;}
.ls5e{letter-spacing:0.551680pt;}
.ls67{letter-spacing:1.580800pt;}
.ls71{letter-spacing:1.685760pt;}
.ls53{letter-spacing:1.762688pt;}
.ls16{letter-spacing:1.846528pt;}
.ls74{letter-spacing:2.455296pt;}
.ls52{letter-spacing:2.882560pt;}
.ls54{letter-spacing:3.338240pt;}
.ls65{letter-spacing:4.702720pt;}
.ls6f{letter-spacing:4.871680pt;}
.ls66{letter-spacing:4.904576pt;}
.ls72{letter-spacing:5.142784pt;}
.ls75{letter-spacing:5.335936pt;}
.ls51{letter-spacing:5.575168pt;}
.ls38{letter-spacing:6.105600pt;}
.ls61{letter-spacing:6.609920pt;}
.ls5c{letter-spacing:6.773760pt;}
.ls70{letter-spacing:9.191680pt;}
.ls7d{letter-spacing:9.571200pt;}
.ws3b{word-spacing:-16.079460pt;}
.ws3c{word-spacing:-15.899658pt;}
.ws3f{word-spacing:-15.812326pt;}
.ws39{word-spacing:-15.771228pt;}
.ws18{word-spacing:-15.719856pt;}
.ws3a{word-spacing:-15.653072pt;}
.ws11{word-spacing:-15.224320pt;}
.ws3e{word-spacing:-15.054080pt;}
.ws2b{word-spacing:-15.029760pt;}
.ws41{word-spacing:-15.020032pt;}
.ws17{word-spacing:-15.010304pt;}
.ws26{word-spacing:-14.971392pt;}
.ws13{word-spacing:-14.951936pt;}
.ws1a{word-spacing:-14.913024pt;}
.ws1d{word-spacing:-14.908160pt;}
.ws42{word-spacing:-14.883840pt;}
.ws1e{word-spacing:-14.869248pt;}
.ws3d{word-spacing:-14.864384pt;}
.ws34{word-spacing:-14.859520pt;}
.ws1f{word-spacing:-14.849792pt;}
.ws40{word-spacing:-14.820608pt;}
.ws43{word-spacing:-14.806016pt;}
.ws12{word-spacing:-14.679552pt;}
.ws7{word-spacing:-14.353920pt;}
.ws5{word-spacing:-14.322560pt;}
.ws6{word-spacing:-14.309120pt;}
.ws2e{word-spacing:-14.251520pt;}
.ws31{word-spacing:-14.047232pt;}
.ws1c{word-spacing:-14.008320pt;}
.ws2c{word-spacing:-13.964544pt;}
.wsf{word-spacing:-13.959680pt;}
.ws10{word-spacing:-13.930496pt;}
.ws33{word-spacing:-13.872128pt;}
.ws30{word-spacing:-13.862400pt;}
.ws32{word-spacing:-13.847808pt;}
.ws2f{word-spacing:-13.828352pt;}
.ws19{word-spacing:-13.789440pt;}
.ws2d{word-spacing:-13.735936pt;}
.wsa{word-spacing:-13.571712pt;}
.ws1{word-spacing:-13.529472pt;}
.ws9{word-spacing:-13.521024pt;}
.ws4{word-spacing:-13.487232pt;}
.wse{word-spacing:-13.466112pt;}
.ws3{word-spacing:-13.461888pt;}
.wsb{word-spacing:-13.449216pt;}
.ws2{word-spacing:-13.444992pt;}
.wsd{word-spacing:-13.440768pt;}
.ws8{word-spacing:-13.377408pt;}
.wsc{word-spacing:-13.297152pt;}
.ws20{word-spacing:-10.992640pt;}
.ws36{word-spacing:-10.992638pt;}
.ws15{word-spacing:-10.882944pt;}
.ws0{word-spacing:-10.872576pt;}
.ws16{word-spacing:-10.858752pt;}
.ws22{word-spacing:-10.759168pt;}
.ws29{word-spacing:-10.695936pt;}
.ws28{word-spacing:-10.608384pt;}
.ws35{word-spacing:-10.598654pt;}
.ws2a{word-spacing:-10.593792pt;}
.ws1b{word-spacing:-10.593790pt;}
.ws21{word-spacing:-10.423552pt;}
.ws14{word-spacing:0.000000pt;}
.ws24{word-spacing:67.715285pt;}
.ws23{word-spacing:67.725824pt;}
.ws37{word-spacing:68.295381pt;}
.ws38{word-spacing:68.452907pt;}
.ws25{word-spacing:100.038763pt;}
.ws27{word-spacing:165.612224pt;}
._10{margin-left:-4.215808pt;}
._b{margin-left:-2.723840pt;}
._0{margin-left:-1.520640pt;}
._1{width:1.054208pt;}
._2{width:2.080512pt;}
._4{width:3.674880pt;}
._6{width:4.857600pt;}
._5{width:6.040320pt;}
._7{width:7.603200pt;}
._8{width:8.785920pt;}
._f{width:10.081280pt;}
._3{width:10.974976pt;}
._11{width:11.912448pt;}
._c{width:12.938240pt;}
._14{width:13.911040pt;}
._13{width:16.117760pt;}
._12{width:17.267200pt;}
._1e{width:18.677760pt;}
._a{width:21.087360pt;}
._9{width:22.037632pt;}
._18{width:24.729984pt;}
._29{width:26.662108pt;}
._16{width:33.412928pt;}
._2a{width:39.495680pt;}
._2b{width:41.508639pt;}
._17{width:42.676651pt;}
._21{width:49.272320pt;}
._22{width:51.937171pt;}
._30{width:56.773760pt;}
._31{width:61.189120pt;}
._32{width:65.550771pt;}
._20{width:68.955264pt;}
._2c{width:72.376320pt;}
._2d{width:76.620374pt;}
._24{width:92.951040pt;}
._1f{width:94.848000pt;}
._23{width:98.504879pt;}
._2f{width:105.937920pt;}
._19{width:110.294379pt;}
._2e{width:112.813083pt;}
._1a{width:120.290347pt;}
._27{width:123.205120pt;}
._28{width:129.765869pt;}
._15{width:131.104021pt;}
._26{width:383.915520pt;}
._25{width:405.864022pt;}
._1b{width:503.161024pt;}
._1d{width:605.842048pt;}
._e{width:649.393920pt;}
._1c{width:679.982016pt;}
._d{width:1138.051328pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:42.240000pt;}
.fs3{font-size:44.800000pt;}
.fs7{font-size:48.639992pt;}
.fs4{font-size:48.640000pt;}
.fs6{font-size:51.372078pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y15a{bottom:9.760000pt;}
.y172{bottom:9.813333pt;}
.y15f{bottom:9.866667pt;}
.y16f{bottom:9.973333pt;}
.y15c{bottom:10.026667pt;}
.y162{bottom:10.133333pt;}
.y164{bottom:10.400000pt;}
.y168{bottom:10.506667pt;}
.y166{bottom:10.666667pt;}
.y16b{bottom:10.773333pt;}
.y158{bottom:10.826667pt;}
.y16d{bottom:11.040000pt;}
.y155{bottom:14.080027pt;}
.y19c{bottom:15.680000pt;}
.y11a{bottom:16.000000pt;}
.yd3{bottom:16.000027pt;}
.y173{bottom:20.693333pt;}
.y160{bottom:20.746667pt;}
.y169{bottom:21.386667pt;}
.y171{bottom:31.573333pt;}
.y15e{bottom:31.626667pt;}
.y157{bottom:32.266667pt;}
.y154{bottom:36.480027pt;}
.y195{bottom:40.960020pt;}
.ycf{bottom:41.279998pt;}
.y13f{bottom:41.280020pt;}
.y119{bottom:42.240000pt;}
.y19b{bottom:54.080020pt;}
.y196{bottom:56.320020pt;}
.yd0{bottom:56.639996pt;}
.y118{bottom:56.640000pt;}
.y140{bottom:56.640020pt;}
.y197{bottom:57.280020pt;}
.yd1{bottom:57.599996pt;}
.y141{bottom:57.600020pt;}
.y19a{bottom:61.529887pt;}
.y153{bottom:63.040025pt;}
.yce{bottom:66.282794pt;}
.y13e{bottom:66.362154pt;}
.y198{bottom:69.120020pt;}
.yd2{bottom:69.439994pt;}
.y142{bottom:69.440020pt;}
.y10f{bottom:72.640000pt;}
.y152{bottom:77.440024pt;}
.y36{bottom:81.066667pt;}
.y5{bottom:85.866667pt;}
.y149{bottom:93.440027pt;}
.y110{bottom:96.320000pt;}
.y5e{bottom:98.666667pt;}
.ybd{bottom:99.626667pt;}
.y10d{bottom:104.746667pt;}
.y4{bottom:105.386667pt;}
.ybc{bottom:106.346667pt;}
.y132{bottom:106.666667pt;}
.y1a6{bottom:106.986667pt;}
.yc2{bottom:109.226667pt;}
.y147{bottom:110.506667pt;}
.y174{bottom:112.746667pt;}
.y178{bottom:114.346667pt;}
.y18d{bottom:116.586667pt;}
.y14a{bottom:117.760027pt;}
.y111{bottom:119.680000pt;}
.y3{bottom:120.106667pt;}
.y5d{bottom:120.426667pt;}
.y7e{bottom:121.386667pt;}
.yc1{bottom:123.946667pt;}
.y170{bottom:125.333333pt;}
.y10c{bottom:126.506667pt;}
.ybb{bottom:127.786667pt;}
.y131{bottom:128.426667pt;}
.y1a5{bottom:128.746667pt;}
.y134{bottom:131.200000pt;}
.yc4{bottom:131.520024pt;}
.y146{bottom:132.266667pt;}
.yc0{bottom:135.786667pt;}
.yc3{bottom:136.106667pt;}
.ya5{bottom:136.426667pt;}
.y35{bottom:136.746667pt;}
.y18c{bottom:138.346667pt;}
.y14b{bottom:142.080027pt;}
.y5c{bottom:142.186667pt;}
.y112{bottom:143.040000pt;}
.y7d{bottom:143.146667pt;}
.y1b5{bottom:143.466667pt;}
.y10b{bottom:148.266667pt;}
.yc5{bottom:148.800027pt;}
.yba{bottom:149.546667pt;}
.y130{bottom:150.186667pt;}
.y1a4{bottom:150.506667pt;}
.y135{bottom:153.920000pt;}
.y145{bottom:154.026667pt;}
.y177{bottom:157.546667pt;}
.ya4{bottom:158.186667pt;}
.y34{bottom:158.506667pt;}
.y18f{bottom:160.000000pt;}
.y18b{bottom:160.106667pt;}
.y5b{bottom:163.626667pt;}
.y7c{bottom:164.906667pt;}
.y1b4{bottom:165.226667pt;}
.yc6{bottom:166.080027pt;}
.y14c{bottom:166.400027pt;}
.y113{bottom:166.720000pt;}
.ycd{bottom:167.103867pt;}
.y16e{bottom:169.333333pt;}
.y10a{bottom:170.026667pt;}
.yb9{bottom:171.306667pt;}
.y12f{bottom:171.626667pt;}
.y1a3{bottom:172.266667pt;}
.y176{bottom:172.586667pt;}
.y144{bottom:175.786667pt;}
.y136{bottom:176.960000pt;}
.ya3{bottom:179.626667pt;}
.y33{bottom:180.266667pt;}
.y18a{bottom:181.866667pt;}
.yc7{bottom:183.360027pt;}
.y5a{bottom:185.386667pt;}
.y7b{bottom:186.666667pt;}
.y175{bottom:186.986667pt;}
.y190{bottom:188.480000pt;}
.y114{bottom:190.080000pt;}
.y16c{bottom:190.666667pt;}
.y14d{bottom:190.720027pt;}
.y109{bottom:191.786667pt;}
.yb8{bottom:193.066667pt;}
.y12e{bottom:193.386667pt;}
.y1a2{bottom:193.706667pt;}
.y143{bottom:196.906667pt;}
.y148{bottom:197.226667pt;}
.y137{bottom:199.680000pt;}
.yc8{bottom:200.640027pt;}
.ya2{bottom:201.386667pt;}
.y32{bottom:202.026667pt;}
.y189{bottom:203.626667pt;}
.y59{bottom:207.146667pt;}
.y7a{bottom:208.426667pt;}
.y16a{bottom:213.333333pt;}
.y108{bottom:213.546667pt;}
.y115{bottom:213.760000pt;}
.yb7{bottom:214.826667pt;}
.y14e{bottom:215.040000pt;}
.y12d{bottom:215.146667pt;}
.y1a1{bottom:215.466667pt;}
.yf0{bottom:215.786667pt;}
.y191{bottom:217.280000pt;}
.yc9{bottom:217.920027pt;}
.y138{bottom:222.400000pt;}
.ya1{bottom:223.146667pt;}
.y31{bottom:223.786667pt;}
.y188{bottom:225.386667pt;}
.y58{bottom:228.906667pt;}
.y79{bottom:230.186667pt;}
.y107{bottom:235.306667pt;}
.yca{bottom:235.520027pt;}
.y167{bottom:236.000000pt;}
.yb6{bottom:236.586667pt;}
.y12c{bottom:236.906667pt;}
.y116{bottom:237.120000pt;}
.yef{bottom:237.226667pt;}
.y14f{bottom:239.360000pt;}
.y1d3{bottom:243.626667pt;}
.ya0{bottom:244.906667pt;}
.y139{bottom:245.120000pt;}
.y30{bottom:245.546667pt;}
.y192{bottom:246.080000pt;}
.y187{bottom:247.146667pt;}
.y57{bottom:250.666667pt;}
.y78{bottom:251.946667pt;}
.ycb{bottom:252.800027pt;}
.y106{bottom:256.746667pt;}
.yb5{bottom:258.346667pt;}
.y12b{bottom:258.666667pt;}
.yee{bottom:258.986667pt;}
.y117{bottom:260.480000pt;}
.y150{bottom:263.680000pt;}
.y1cb{bottom:265.386667pt;}
.y1b3{bottom:265.706667pt;}
.y9f{bottom:266.666667pt;}
.y2f{bottom:266.986667pt;}
.y13a{bottom:267.840000pt;}
.y186{bottom:268.906667pt;}
.ycc{bottom:270.080000pt;}
.y56{bottom:272.426667pt;}
.y77{bottom:273.386667pt;}
.y193{bottom:274.560000pt;}
.y105{bottom:278.506667pt;}
.y165{bottom:280.000000pt;}
.yb4{bottom:280.106667pt;}
.y12a{bottom:280.426667pt;}
.yed{bottom:280.746667pt;}
.y1b2{bottom:287.146667pt;}
.y151{bottom:288.000000pt;}
.y9e{bottom:288.426667pt;}
.y2e{bottom:288.746667pt;}
.y185{bottom:290.346667pt;}
.y13b{bottom:290.880000pt;}
.y1d2{bottom:293.866667pt;}
.y55{bottom:294.186667pt;}
.y76{bottom:295.146667pt;}
.y104{bottom:300.266667pt;}
.yb3{bottom:301.866667pt;}
.y129{bottom:302.186667pt;}
.yec{bottom:302.506667pt;}
.y163{bottom:302.666667pt;}
.y194{bottom:303.360000pt;}
.y1b1{bottom:308.906667pt;}
.y9d{bottom:310.186667pt;}
.y2d{bottom:310.506667pt;}
.y184{bottom:312.106667pt;}
.y13c{bottom:313.600000pt;}
.y1ca{bottom:315.626667pt;}
.y54{bottom:315.946667pt;}
.y75{bottom:316.906667pt;}
.y103{bottom:322.026667pt;}
.yb2{bottom:323.306667pt;}
.y128{bottom:323.946667pt;}
.yeb{bottom:324.266667pt;}
.y161{bottom:325.333333pt;}
.y9c{bottom:331.946667pt;}
.y2c{bottom:332.266667pt;}
.y183{bottom:333.866667pt;}
.y1c9{bottom:337.066667pt;}
.y53{bottom:337.706667pt;}
.y74{bottom:338.666667pt;}
.y1b0{bottom:341.546667pt;}
.y102{bottom:343.786667pt;}
.yb1{bottom:345.066667pt;}
.y127{bottom:345.706667pt;}
.yea{bottom:346.026667pt;}
.y15d{bottom:348.000000pt;}
.y9b{bottom:353.706667pt;}
.y2b{bottom:354.026667pt;}
.y182{bottom:355.626667pt;}
.y1c8{bottom:358.826667pt;}
.y52{bottom:359.466667pt;}
.y1af{bottom:359.786667pt;}
.yb0{bottom:360.106667pt;}
.y73{bottom:360.426667pt;}
.y101{bottom:365.546667pt;}
.y126{bottom:367.466667pt;}
.ye9{bottom:367.786667pt;}
.y2a{bottom:370.666667pt;}
.yaf{bottom:374.506667pt;}
.y9a{bottom:375.466667pt;}
.y181{bottom:377.386667pt;}
.y51{bottom:380.906667pt;}
.y72{bottom:382.186667pt;}
.y1ae{bottom:384.106667pt;}
.y29{bottom:387.306667pt;}
.y125{bottom:388.906667pt;}
.ye8{bottom:389.546667pt;}
.yae{bottom:391.786667pt;}
.y15b{bottom:392.000000pt;}
.y99{bottom:396.906667pt;}
.y180{bottom:399.146667pt;}
.y50{bottom:402.666667pt;}
.y28{bottom:403.946667pt;}
.y1ad{bottom:405.866667pt;}
.y100{bottom:409.066667pt;}
.y124{bottom:410.666667pt;}
.ye7{bottom:410.986667pt;}
.yad{bottom:412.906667pt;}
.y159{bottom:414.666667pt;}
.y1d1{bottom:415.786667pt;}
.y98{bottom:418.666667pt;}
.y27{bottom:420.586667pt;}
.y17f{bottom:420.906667pt;}
.y1ac{bottom:421.546667pt;}
.y4f{bottom:424.426667pt;}
.y71{bottom:425.706667pt;}
.ybf{bottom:427.626667pt;}
.yff{bottom:430.826667pt;}
.y123{bottom:432.426667pt;}
.ye6{bottom:432.746667pt;}
.yac{bottom:434.666667pt;}
.y156{bottom:436.000000pt;}
.y26{bottom:437.226667pt;}
.y1d0{bottom:437.546667pt;}
.y1ab{bottom:440.106667pt;}
.y97{bottom:440.426667pt;}
.y17e{bottom:442.666667pt;}
.ybe{bottom:444.906667pt;}
.y4e{bottom:446.186667pt;}
.y70{bottom:447.466667pt;}
.y25{bottom:451.946667pt;}
.yfe{bottom:452.586667pt;}
.y122{bottom:454.186667pt;}
.ye5{bottom:454.506667pt;}
.yab{bottom:456.426667pt;}
.y1aa{bottom:457.386667pt;}
.y1c7{bottom:459.306667pt;}
.y96{bottom:462.186667pt;}
.y17d{bottom:464.426667pt;}
.y24{bottom:466.666667pt;}
.y4d{bottom:467.946667pt;}
.y6f{bottom:468.906667pt;}
.yaa{bottom:471.146667pt;}
.yfd{bottom:474.026667pt;}
.y1a9{bottom:475.626667pt;}
.y121{bottom:475.946667pt;}
.ye4{bottom:476.266667pt;}
.y1c6{bottom:481.066667pt;}
.y23{bottom:481.386667pt;}
.y95{bottom:483.946667pt;}
.ya9{bottom:485.546667pt;}
.y17c{bottom:485.866667pt;}
.y1cf{bottom:487.466667pt;}
.y4c{bottom:489.706667pt;}
.y6e{bottom:490.666667pt;}
.y1a8{bottom:492.906667pt;}
.yfc{bottom:495.786667pt;}
.y22{bottom:496.426667pt;}
.y120{bottom:497.706667pt;}
.ye3{bottom:498.026667pt;}
.ya8{bottom:502.826667pt;}
.y94{bottom:505.706667pt;}
.y17b{bottom:507.626667pt;}
.y1c5{bottom:509.226667pt;}
.y1a7{bottom:510.186667pt;}
.y21{bottom:511.146667pt;}
.y4b{bottom:511.466667pt;}
.y6d{bottom:512.426667pt;}
.yfb{bottom:517.546667pt;}
.y11f{bottom:519.466667pt;}
.ye2{bottom:519.786667pt;}
.ya7{bottom:520.106667pt;}
.y20{bottom:525.866667pt;}
.y93{bottom:527.466667pt;}
.y17a{bottom:529.386667pt;}
.y1c4{bottom:530.986667pt;}
.y4a{bottom:533.226667pt;}
.y6c{bottom:534.186667pt;}
.ya6{bottom:534.506667pt;}
.y1ce{bottom:537.706667pt;}
.yfa{bottom:539.306667pt;}
.y1f{bottom:540.586667pt;}
.y11e{bottom:541.226667pt;}
.ye1{bottom:541.546667pt;}
.y92{bottom:549.226667pt;}
.y179{bottom:550.826667pt;}
.y18e{bottom:551.146667pt;}
.y49{bottom:554.986667pt;}
.y1e{bottom:555.626667pt;}
.y6b{bottom:555.946667pt;}
.y1c3{bottom:559.466667pt;}
.yf9{bottom:561.066667pt;}
.y11d{bottom:562.986667pt;}
.ye0{bottom:563.306667pt;}
.y1d{bottom:570.346667pt;}
.y91{bottom:570.986667pt;}
.yf8{bottom:575.786667pt;}
.y48{bottom:576.426667pt;}
.y6a{bottom:577.706667pt;}
.y1c2{bottom:581.226667pt;}
.y11c{bottom:584.746667pt;}
.y1c{bottom:585.066667pt;}
.y1cd{bottom:587.946667pt;}
.y199{bottom:588.496800pt;}
.yf7{bottom:591.466667pt;}
.y90{bottom:592.426667pt;}
.y47{bottom:598.186667pt;}
.y69{bottom:599.466667pt;}
.y1b{bottom:600.106667pt;}
.y11b{bottom:605.866667pt;}
.y133{bottom:606.186667pt;}
.ydf{bottom:606.506667pt;}
.y1c1{bottom:609.386667pt;}
.yf6{bottom:609.706667pt;}
.y8f{bottom:614.186667pt;}
.y1a{bottom:614.826667pt;}
.y46{bottom:619.946667pt;}
.y68{bottom:621.226667pt;}
.yde{bottom:628.266667pt;}
.y19{bottom:629.546667pt;}
.y1c0{bottom:631.146667pt;}
.yf5{bottom:634.026667pt;}
.y8e{bottom:635.946667pt;}
.y13d{bottom:637.104533pt;}
.y45{bottom:641.706667pt;}
.y67{bottom:642.986667pt;}
.y18{bottom:644.266667pt;}
.ydd{bottom:650.026667pt;}
.y1bf{bottom:652.906667pt;}
.yf4{bottom:655.786667pt;}
.y8d{bottom:657.706667pt;}
.y17{bottom:659.306667pt;}
.y44{bottom:663.466667pt;}
.y66{bottom:664.746667pt;}
.yf3{bottom:667.946667pt;}
.y10e{bottom:668.266667pt;}
.ydc{bottom:671.786667pt;}
.y8c{bottom:672.426667pt;}
.y16{bottom:674.026667pt;}
.y1be{bottom:681.386667pt;}
.y43{bottom:685.226667pt;}
.y65{bottom:686.186667pt;}
.y8b{bottom:686.826667pt;}
.y15{bottom:688.746667pt;}
.ydb{bottom:693.546667pt;}
.y42{bottom:699.946667pt;}
.y1bd{bottom:703.146667pt;}
.y14{bottom:703.466667pt;}
.y8a{bottom:704.106667pt;}
.y64{bottom:707.946667pt;}
.yda{bottom:715.306667pt;}
.y13{bottom:718.506667pt;}
.y89{bottom:725.546667pt;}
.y63{bottom:729.706667pt;}
.y1bc{bottom:731.626667pt;}
.y41{bottom:732.906667pt;}
.y12{bottom:733.226667pt;}
.yd9{bottom:737.066667pt;}
.y88{bottom:747.306667pt;}
.y11{bottom:747.946667pt;}
.y62{bottom:751.466667pt;}
.y1a0{bottom:751.786667pt;}
.y1bb{bottom:753.386667pt;}
.yd8{bottom:758.826667pt;}
.y10{bottom:762.666667pt;}
.y19f{bottom:766.186667pt;}
.y87{bottom:769.066667pt;}
.y40{bottom:773.226667pt;}
.yd7{bottom:773.546667pt;}
.yf{bottom:777.706667pt;}
.y19e{bottom:780.906667pt;}
.y1ba{bottom:781.546667pt;}
.yd6{bottom:787.946667pt;}
.ye{bottom:790.506667pt;}
.y86{bottom:790.826667pt;}
.y3f{bottom:794.986667pt;}
.y19d{bottom:795.306667pt;}
.yd5{bottom:802.666667pt;}
.yd{bottom:803.306667pt;}
.y85{bottom:812.586667pt;}
.yc{bottom:816.106667pt;}
.y3e{bottom:816.746667pt;}
.yd4{bottom:817.066667pt;}
.y1b9{bottom:825.066667pt;}
.yb{bottom:829.226667pt;}
.y84{bottom:834.346667pt;}
.y3d{bottom:838.506667pt;}
.ya{bottom:842.346667pt;}
.y1cc{bottom:846.826667pt;}
.y1b8{bottom:853.546667pt;}
.y83{bottom:856.106667pt;}
.y9{bottom:856.426667pt;}
.y3c{bottom:860.266667pt;}
.y8{bottom:870.186667pt;}
.y1b7{bottom:875.306667pt;}
.y82{bottom:877.546667pt;}
.y3b{bottom:882.026667pt;}
.y7{bottom:884.586667pt;}
.y1b6{bottom:897.066667pt;}
.y81{bottom:899.306667pt;}
.y3a{bottom:903.466667pt;}
.y80{bottom:921.066667pt;}
.y39{bottom:925.226667pt;}
.y6{bottom:934.186667pt;}
.y7f{bottom:935.786667pt;}
.y38{bottom:946.986667pt;}
.yf2{bottom:951.786667pt;}
.y37{bottom:968.746667pt;}
.yf1{bottom:969.066667pt;}
.y61{bottom:1023.466667pt;}
.y2{bottom:1034.986667pt;}
.y60{bottom:1035.626667pt;}
.y1{bottom:1047.786667pt;}
.y5f{bottom:1048.426667pt;}
.h17{height:22.666667pt;}
.h19{height:24.000000pt;}
.h2{height:27.540000pt;}
.h9{height:28.153125pt;}
.h6{height:31.680000pt;}
.h1{height:33.660000pt;}
.he{height:34.912494pt;}
.hc{height:34.912500pt;}
.h20{height:35.083331pt;}
.h1f{height:35.083708pt;}
.h4{height:35.700000pt;}
.h7{height:37.192500pt;}
.h5{height:39.805000pt;}
.ha{height:42.040822pt;}
.h8{height:42.656250pt;}
.h18{height:44.000000pt;}
.h3{height:45.022500pt;}
.h16{height:45.333333pt;}
.h1e{height:148.586933pt;}
.hd{height:159.971200pt;}
.h1d{height:274.537467pt;}
.h14{height:274.610400pt;}
.hf{height:274.689733pt;}
.h10{height:278.400000pt;}
.hb{height:287.680000pt;}
.h15{height:305.600000pt;}
.h1c{height:310.105067pt;}
.h13{height:310.178000pt;}
.h1b{height:312.933467pt;}
.h12{height:313.006533pt;}
.h21{height:320.329733pt;}
.h1a{height:321.280000pt;}
.h11{height:331.200000pt;}
.h0{height:1122.666667pt;}
.w14{width:53.333333pt;}
.w11{width:62.666667pt;}
.w12{width:66.666667pt;}
.w16{width:76.000000pt;}
.w15{width:80.000000pt;}
.w13{width:84.000000pt;}
.w2{width:132.254920pt;}
.wa{width:135.498933pt;}
.w1c{width:148.586933pt;}
.w10{width:150.666667pt;}
.w4{width:159.971067pt;}
.w3{width:159.971200pt;}
.w7{width:247.858267pt;}
.we{width:250.808400pt;}
.w1d{width:305.965067pt;}
.w18{width:326.150400pt;}
.w19{width:336.310267pt;}
.w1b{width:355.321200pt;}
.w6{width:357.195733pt;}
.wd{width:366.527200pt;}
.w1a{width:389.858133pt;}
.w5{width:422.881333pt;}
.wc{width:438.593733pt;}
.w1{width:480.000000pt;}
.wb{width:508.719200pt;}
.w9{width:524.480000pt;}
.w17{width:525.760000pt;}
.w8{width:537.920000pt;}
.wf{width:566.720000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:8.733200pt;}
.x38{left:10.411456pt;}
.x3c{left:13.391467pt;}
.xf{left:14.799867pt;}
.x36{left:18.471701pt;}
.x43{left:19.482347pt;}
.x39{left:20.765120pt;}
.x3e{left:22.118507pt;}
.x41{left:25.531520pt;}
.x3f{left:27.345067pt;}
.x3a{left:29.598187pt;}
.x45{left:31.622400pt;}
.x44{left:33.435947pt;}
.x42{left:35.689067pt;}
.x4a{left:37.063600pt;}
.x1d{left:38.843600pt;}
.x49{left:43.130267pt;}
.x11{left:44.550113pt;}
.x24{left:47.794113pt;}
.x2c{left:54.276933pt;}
.x33{left:58.166533pt;}
.x1e{left:64.276933pt;}
.x4f{left:67.387446pt;}
.x13{left:72.266380pt;}
.x2a{left:74.075333pt;}
.x4b{left:85.782113pt;}
.x1a{left:97.134800pt;}
.x2{left:113.279936pt;}
.x1f{left:116.962533pt;}
.x48{left:133.760000pt;}
.x3{left:141.053696pt;}
.x4c{left:143.101313pt;}
.x55{left:145.413408pt;}
.xe{left:156.800000pt;}
.x6c{left:158.514976pt;}
.x7{left:160.546528pt;}
.x15{left:174.182113pt;}
.x4d{left:189.105600pt;}
.x12{left:190.998133pt;}
.x17{left:194.383446pt;}
.x26{left:196.569046pt;}
.x27{left:199.166267pt;}
.x46{left:201.655584pt;}
.x53{left:204.940533pt;}
.x4{left:206.996096pt;}
.x64{left:208.097024pt;}
.x56{left:209.233696pt;}
.x22{left:212.409333pt;}
.x16{left:213.918667pt;}
.x6a{left:215.784512pt;}
.x57{left:219.534496pt;}
.x68{left:222.335264pt;}
.x6d{left:224.361344pt;}
.x25{left:225.398533pt;}
.x7d{left:227.854816pt;}
.x7b{left:241.958656pt;}
.x65{left:245.210272pt;}
.x66{left:248.960288pt;}
.x14{left:252.912667pt;}
.x5c{left:254.755200pt;}
.x35{left:262.666667pt;}
.x2d{left:267.872667pt;}
.x28{left:271.232800pt;}
.x72{left:273.417312pt;}
.x34{left:277.130208pt;}
.x18{left:279.604267pt;}
.xb{left:290.433920pt;}
.x1b{left:293.102880pt;}
.x2b{left:294.942720pt;}
.x6e{left:308.840160pt;}
.x7e{left:313.454432pt;}
.x37{left:324.000000pt;}
.xd{left:331.250304pt;}
.x2f{left:342.148933pt;}
.x2e{left:348.295600pt;}
.x52{left:353.554933pt;}
.x4e{left:363.615867pt;}
.x76{left:366.834240pt;}
.x6{left:377.470400pt;}
.x8{left:379.371840pt;}
.x20{left:384.309867pt;}
.x29{left:386.951600pt;}
.x19{left:388.941733pt;}
.x9{left:392.045440pt;}
.x5{left:396.746560pt;}
.xa{left:397.875520pt;}
.x83{left:412.319680pt;}
.x30{left:416.218800pt;}
.x50{left:419.992267pt;}
.x31{left:423.445467pt;}
.x63{left:446.057920pt;}
.x21{left:447.075600pt;}
.x79{left:448.182720pt;}
.x5d{left:450.800640pt;}
.x77{left:464.750720pt;}
.x73{left:468.192640pt;}
.x3b{left:473.333333pt;}
.x7c{left:475.327040pt;}
.x51{left:476.368533pt;}
.x32{left:480.201733pt;}
.x75{left:495.181120pt;}
.x60{left:498.958400pt;}
.x58{left:503.767360pt;}
.x7f{left:509.244480pt;}
.x81{left:511.144640pt;}
.x6f{left:513.809920pt;}
.x3d{left:525.333333pt;}
.x5e{left:564.685440pt;}
.x6b{left:574.730560pt;}
.x70{left:579.644800pt;}
.x59{left:583.929280pt;}
.x71{left:585.399680pt;}
.x7a{left:591.734720pt;}
.x5f{left:597.482560pt;}
.x78{left:599.948800pt;}
.x80{left:601.080320pt;}
.x40{left:604.000000pt;}
.x61{left:611.699200pt;}
.x82{left:613.840320pt;}
.x5a{left:614.973440pt;}
.x67{left:623.775680pt;}
.x62{left:624.800640pt;}
.x5b{left:628.075200pt;}
.x69{left:634.510080pt;}
.xc{left:636.746560pt;}
.x23{left:637.760000pt;}
.x74{left:644.573440pt;}
.x54{left:646.902720pt;}
.x1c{left:651.200000pt;}
.x47{left:659.626560pt;}
.x1{left:680.213120pt;}
}




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