
    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_ee975a70fa2ed31263c2c271.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038000;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_395cbc8fa055894072623c8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122000;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_477f399845b29f209cff0d3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_0538edf99cb16120a74cffa1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_477f399845b29f209cff0d3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_eda8deb3b486935cdb8b9729.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_e0e349acd7115092654a7fd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_ff878347c7e473f8be280a05.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_0538edf99cb16120a74cffa1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f7dbd39a03a2d43e37643ed8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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_5a6648441a63639baa4c6fe3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035000;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_ce63f17e2ffffe15b07d7ea9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7d25d6f71c977c80a7778c05.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.038000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6b59b19f009d154b9a5a961e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cfb81ed506a078d218647caf.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-32.400000px;}
.v3{vertical-align:-19.935600px;}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.158000px;}
.lsa{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000142px;}
.ls39{letter-spacing:0.000161px;}
.ls1c{letter-spacing:0.000292px;}
.ls2b{letter-spacing:0.000455px;}
.ls25{letter-spacing:0.005700px;}
.ls4d{letter-spacing:0.006600px;}
.ls24{letter-spacing:0.009000px;}
.ls4f{letter-spacing:0.013200px;}
.ls23{letter-spacing:0.014100px;}
.ls3a{letter-spacing:0.019200px;}
.ls28{letter-spacing:0.019800px;}
.ls30{letter-spacing:0.020100px;}
.ls29{letter-spacing:0.022500px;}
.ls21{letter-spacing:0.029100px;}
.ls20{letter-spacing:0.030455px;}
.ls2e{letter-spacing:0.031800px;}
.ls31{letter-spacing:0.047100px;}
.ls6{letter-spacing:0.048000px;}
.ls27{letter-spacing:0.048900px;}
.ls1d{letter-spacing:0.054000px;}
.ls2f{letter-spacing:0.055800px;}
.ls12{letter-spacing:0.064500px;}
.ls4{letter-spacing:0.096000px;}
.ls4a{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.122700px;}
.lsc{letter-spacing:0.129000px;}
.ls8{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.161250px;}
.ls52{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.174892px;}
.ls36{letter-spacing:0.175492px;}
.ls7{letter-spacing:0.192000px;}
.ls3e{letter-spacing:0.193500px;}
.ls18{letter-spacing:0.209542px;}
.ls3c{letter-spacing:0.214200px;}
.ls3b{letter-spacing:0.219600px;}
.ls19{letter-spacing:0.225750px;}
.ls13{letter-spacing:0.242700px;}
.lsd{letter-spacing:0.258000px;}
.ls34{letter-spacing:0.270000px;}
.ls32{letter-spacing:0.276300px;}
.ls35{letter-spacing:0.292800px;}
.lsb{letter-spacing:0.322500px;}
.ls37{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.336000px;}
.ls1b{letter-spacing:0.354750px;}
.ls16{letter-spacing:0.387000px;}
.ls38{letter-spacing:0.429000px;}
.ls4b{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.451500px;}
.ls9{letter-spacing:0.480000px;}
.ls51{letter-spacing:0.486000px;}
.lse{letter-spacing:0.516000px;}
.ls5{letter-spacing:0.528000px;}
.ls49{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.580500px;}
.ls50{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.630000px;}
.ls4c{letter-spacing:0.645000px;}
.ls42{letter-spacing:0.774000px;}
.lsf{letter-spacing:0.903000px;}
.ls15{letter-spacing:0.967500px;}
.ls1f{letter-spacing:1.032000px;}
.ls10{letter-spacing:1.096500px;}
.ls44{letter-spacing:1.290000px;}
.ls3f{letter-spacing:1.419000px;}
.ls3d{letter-spacing:2.644500px;}
.ls47{letter-spacing:2.709000px;}
.ls2c{letter-spacing:3.289500px;}
.ls41{letter-spacing:3.741000px;}
.ls48{letter-spacing:4.837500px;}
.ls26{letter-spacing:4.902000px;}
.ls46{letter-spacing:4.921350px;}
.ls1e{letter-spacing:4.966500px;}
.ls2d{letter-spacing:5.095500px;}
.ls17{letter-spacing:5.289000px;}
.ls45{letter-spacing:5.482500px;}
.ls4e{letter-spacing:5.688000px;}
.ls40{letter-spacing:6.385500px;}
.ls43{letter-spacing:6.514500px;}
.ls2{letter-spacing:9.990000px;}
.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;}
}
.ws8c{word-spacing:-13.609500px;}
.ws91{word-spacing:-13.351500px;}
.ws99{word-spacing:-13.287000px;}
.ws57{word-spacing:-13.158000px;}
.ws8d{word-spacing:-12.964500px;}
.ws8b{word-spacing:-12.900000px;}
.ws39{word-spacing:-12.835500px;}
.ws78{word-spacing:-11.343000px;}
.ws7a{word-spacing:-10.746000px;}
.ws1a{word-spacing:-9.552000px;}
.wsa6{word-spacing:-9.234000px;}
.ws38{word-spacing:-8.342956px;}
.ws79{word-spacing:-7.372831px;}
.ws3a{word-spacing:-6.984781px;}
.ws65{word-spacing:-0.967500px;}
.ws9a{word-spacing:-0.645000px;}
.ws6{word-spacing:-0.576000px;}
.wsf{word-spacing:-0.528000px;}
.ws4b{word-spacing:-0.516000px;}
.ws90{word-spacing:-0.387000px;}
.ws60{word-spacing:-0.322500px;}
.ws83{word-spacing:-0.270000px;}
.ws46{word-spacing:-0.064500px;}
.ws1{word-spacing:0.000000px;}
.ws70{word-spacing:0.129000px;}
.wsaa{word-spacing:0.162000px;}
.ws3e{word-spacing:0.193500px;}
.ws3b{word-spacing:0.258000px;}
.ws32{word-spacing:0.322500px;}
.ws52{word-spacing:0.324000px;}
.ws86{word-spacing:0.387000px;}
.ws5a{word-spacing:0.451500px;}
.wsa3{word-spacing:0.486000px;}
.ws96{word-spacing:0.516000px;}
.wsad{word-spacing:0.546000px;}
.ws20{word-spacing:0.580500px;}
.wsac{word-spacing:0.588000px;}
.ws55{word-spacing:0.594000px;}
.ws8{word-spacing:0.624000px;}
.ws7e{word-spacing:0.645000px;}
.ws3d{word-spacing:0.709500px;}
.ws25{word-spacing:0.774000px;}
.ws16{word-spacing:0.816000px;}
.ws62{word-spacing:0.838500px;}
.ws35{word-spacing:0.903000px;}
.ws5f{word-spacing:0.967500px;}
.ws11{word-spacing:1.008000px;}
.ws75{word-spacing:1.032000px;}
.ws22{word-spacing:1.096500px;}
.ws5{word-spacing:1.134000px;}
.ws31{word-spacing:1.161000px;}
.ws45{word-spacing:1.225500px;}
.ws1c{word-spacing:1.290000px;}
.ws9e{word-spacing:1.296000px;}
.ws18{word-spacing:1.344000px;}
.ws47{word-spacing:1.354500px;}
.ws97{word-spacing:1.419000px;}
.ws2d{word-spacing:1.483500px;}
.wsb{word-spacing:1.536000px;}
.ws48{word-spacing:1.548000px;}
.ws19{word-spacing:1.584000px;}
.ws6b{word-spacing:1.612500px;}
.ws17{word-spacing:1.632000px;}
.wsa7{word-spacing:1.674000px;}
.ws42{word-spacing:1.677000px;}
.ws14{word-spacing:1.728000px;}
.ws37{word-spacing:1.741500px;}
.ws53{word-spacing:1.782000px;}
.ws77{word-spacing:1.806000px;}
.ws6a{word-spacing:1.870500px;}
.ws84{word-spacing:1.890000px;}
.ws58{word-spacing:1.935000px;}
.wsa5{word-spacing:1.998000px;}
.ws4f{word-spacing:1.999500px;}
.ws10{word-spacing:2.016000px;}
.ws9b{word-spacing:2.052000px;}
.ws98{word-spacing:2.064000px;}
.wsc{word-spacing:2.112000px;}
.ws24{word-spacing:2.128500px;}
.wsa0{word-spacing:2.160000px;}
.ws6d{word-spacing:2.193000px;}
.wsa9{word-spacing:2.214000px;}
.ws74{word-spacing:2.257500px;}
.wsa8{word-spacing:2.268000px;}
.ws29{word-spacing:2.322000px;}
.ws54{word-spacing:2.376000px;}
.ws4a{word-spacing:2.386500px;}
.ws2f{word-spacing:2.451000px;}
.ws34{word-spacing:2.515500px;}
.ws15{word-spacing:2.544000px;}
.ws40{word-spacing:2.580000px;}
.ws13{word-spacing:2.592000px;}
.ws2a{word-spacing:2.644500px;}
.ws81{word-spacing:2.646000px;}
.wsab{word-spacing:2.688000px;}
.ws2b{word-spacing:2.709000px;}
.ws87{word-spacing:2.773500px;}
.ws2e{word-spacing:2.838000px;}
.ws44{word-spacing:2.902500px;}
.wsd{word-spacing:2.928000px;}
.ws41{word-spacing:2.967000px;}
.ws9{word-spacing:2.976000px;}
.ws36{word-spacing:3.031500px;}
.ws51{word-spacing:3.078000px;}
.ws5c{word-spacing:3.096000px;}
.ws59{word-spacing:3.160500px;}
.ws50{word-spacing:3.186000px;}
.ws4c{word-spacing:3.225000px;}
.ws7d{word-spacing:3.289500px;}
.wsa2{word-spacing:3.294000px;}
.ws6e{word-spacing:3.354000px;}
.wsa{word-spacing:3.360000px;}
.ws56{word-spacing:3.402000px;}
.ws85{word-spacing:3.418500px;}
.ws63{word-spacing:3.483000px;}
.ws67{word-spacing:3.510000px;}
.ws23{word-spacing:3.547500px;}
.ws8a{word-spacing:3.564000px;}
.ws30{word-spacing:3.612000px;}
.ws68{word-spacing:3.618000px;}
.ws2c{word-spacing:3.676500px;}
.wsa4{word-spacing:3.726000px;}
.ws71{word-spacing:3.741000px;}
.ws5b{word-spacing:3.805500px;}
.ws66{word-spacing:3.870000px;}
.ws6c{word-spacing:3.934500px;}
.ws9c{word-spacing:3.996000px;}
.ws3f{word-spacing:4.063500px;}
.wse{word-spacing:4.128000px;}
.ws33{word-spacing:4.192500px;}
.ws6f{word-spacing:4.257000px;}
.ws8e{word-spacing:4.321500px;}
.ws82{word-spacing:4.374000px;}
.ws72{word-spacing:4.386000px;}
.ws3c{word-spacing:4.450500px;}
.ws92{word-spacing:4.515000px;}
.ws95{word-spacing:4.644000px;}
.ws4{word-spacing:4.662000px;}
.ws8f{word-spacing:4.708500px;}
.ws12{word-spacing:4.752000px;}
.ws49{word-spacing:4.773000px;}
.ws7{word-spacing:4.800000px;}
.wsa1{word-spacing:4.806000px;}
.ws93{word-spacing:4.837500px;}
.ws7b{word-spacing:4.902000px;}
.ws1d{word-spacing:4.966500px;}
.ws1e{word-spacing:5.031000px;}
.ws7c{word-spacing:5.095500px;}
.ws5e{word-spacing:5.224500px;}
.ws73{word-spacing:5.289000px;}
.ws9d{word-spacing:5.292000px;}
.ws69{word-spacing:5.346000px;}
.ws5d{word-spacing:5.353500px;}
.ws9f{word-spacing:5.400000px;}
.ws94{word-spacing:5.418000px;}
.ws27{word-spacing:5.482500px;}
.ws76{word-spacing:5.547000px;}
.ws43{word-spacing:5.611500px;}
.ws89{word-spacing:5.676000px;}
.ws7f{word-spacing:5.740500px;}
.ws26{word-spacing:5.805000px;}
.ws88{word-spacing:5.869500px;}
.ws64{word-spacing:5.998500px;}
.ws4d{word-spacing:6.063000px;}
.ws61{word-spacing:6.127500px;}
.ws4e{word-spacing:6.192000px;}
.ws28{word-spacing:6.321000px;}
.ws21{word-spacing:6.385500px;}
.ws1f{word-spacing:6.450000px;}
.ws3{word-spacing:10.656000px;}
.ws2{word-spacing:13.344000px;}
.ws1b{word-spacing:19.414500px;}
.ws80{word-spacing:31.266000px;}
.ws0{word-spacing:2158.335000px;}
._10{margin-left:-28.620000px;}
._12{margin-left:-17.866500px;}
._0{margin-left:-13.348800px;}
._4{margin-left:-11.676000px;}
._2{margin-left:-9.324000px;}
._7{margin-left:-1.008000px;}
._a{width:1.584000px;}
._c{width:2.902500px;}
._e{width:4.773000px;}
._f{width:5.990542px;}
._1{width:7.014000px;}
._3{width:11.676000px;}
._5{width:14.112000px;}
._8{width:15.312000px;}
._b{width:19.414500px;}
._d{width:28.511692px;}
._11{width:29.807692px;}
._9{width:1481.988600px;}
._14{width:1562.148000px;}
._6{width:1649.424000px;}
._13{width:1964.298000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.000000px;}
.fs9{font-size:35.099400px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:37.049400px;}
.fs8{font-size:41.924400px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:64.500000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:56.003400px;}
.y1{bottom:56.489400px;}
.yd{bottom:110.549700px;}
.ye4{bottom:110.554500px;}
.ya4{bottom:110.560350px;}
.y108{bottom:110.560500px;}
.y85{bottom:110.572350px;}
.y14b{bottom:110.576550px;}
.yc7{bottom:111.892425px;}
.y123{bottom:112.051200px;}
.y11a{bottom:112.067325px;}
.y5a{bottom:112.083375px;}
.yc{bottom:122.551200px;}
.ye3{bottom:126.541500px;}
.ya3{bottom:126.544350px;}
.y107{bottom:126.544500px;}
.y84{bottom:126.556350px;}
.y14a{bottom:126.736050px;}
.yc6{bottom:129.497175px;}
.y122{bottom:129.643575px;}
.y119{bottom:129.659700px;}
.y59{bottom:129.675750px;}
.yb{bottom:138.793350px;}
.ya2{bottom:142.528350px;}
.y106{bottom:142.528500px;}
.y83{bottom:142.540350px;}
.y149{bottom:142.895550px;}
.ye2{bottom:146.575500px;}
.yc5{bottom:147.089550px;}
.y121{bottom:147.235950px;}
.y118{bottom:147.252075px;}
.y58{bottom:147.268125px;}
.ya{bottom:154.228350px;}
.ye1{bottom:158.518500px;}
.y82{bottom:158.524350px;}
.y148{bottom:159.055050px;}
.ya1{bottom:162.562500px;}
.yc4{bottom:164.681925px;}
.y120{bottom:164.828325px;}
.y117{bottom:164.844450px;}
.y57{bottom:164.860500px;}
.y9{bottom:174.209850px;}
.ye0{bottom:174.502500px;}
.y81{bottom:174.508350px;}
.y147{bottom:175.214550px;}
.yc3{bottom:182.420700px;}
.y116{bottom:182.436825px;}
.y56{bottom:182.452875px;}
.y8{bottom:185.392350px;}
.y80{bottom:190.492350px;}
.y146{bottom:191.374050px;}
.ydf{bottom:194.536500px;}
.y7{bottom:196.574850px;}
.yc2{bottom:200.013075px;}
.y115{bottom:200.029200px;}
.y55{bottom:200.045250px;}
.y7f{bottom:206.476350px;}
.y145{bottom:207.533550px;}
.y6{bottom:207.757350px;}
.ya0{bottom:217.504875px;}
.y105{bottom:217.581000px;}
.yc1{bottom:217.605450px;}
.y114{bottom:217.621575px;}
.y54{bottom:217.637625px;}
.y144{bottom:223.693050px;}
.y7e{bottom:226.510350px;}
.y9f{bottom:235.097250px;}
.y104{bottom:235.173375px;}
.yc0{bottom:235.197825px;}
.y113{bottom:235.213950px;}
.y53{bottom:235.230000px;}
.y143{bottom:239.852550px;}
.yde{bottom:246.089325px;}
.y2b{bottom:251.509950px;}
.y9e{bottom:252.689625px;}
.y103{bottom:252.765750px;}
.ybf{bottom:252.790200px;}
.y112{bottom:252.806325px;}
.y52{bottom:252.822375px;}
.y142{bottom:256.012050px;}
.ydd{bottom:263.685825px;}
.y2a{bottom:265.897950px;}
.y9d{bottom:270.282000px;}
.y7d{bottom:270.334575px;}
.y102{bottom:270.358125px;}
.ybe{bottom:270.382575px;}
.y111{bottom:270.398700px;}
.y51{bottom:270.414750px;}
.y141{bottom:272.171550px;}
.ydc{bottom:281.278200px;}
.y29{bottom:287.485950px;}
.y9c{bottom:287.874375px;}
.y7c{bottom:287.926950px;}
.y101{bottom:287.950500px;}
.ybd{bottom:287.974950px;}
.y110{bottom:287.991075px;}
.y50{bottom:288.007125px;}
.y140{bottom:288.331050px;}
.y28{bottom:301.873950px;}
.y13f{bottom:304.490550px;}
.y9b{bottom:305.466750px;}
.y7b{bottom:305.519325px;}
.y100{bottom:305.542875px;}
.ybc{bottom:305.567325px;}
.y10f{bottom:305.583450px;}
.y4f{bottom:305.599500px;}
.y27{bottom:316.279950px;}
.y13e{bottom:320.650050px;}
.y9a{bottom:323.059125px;}
.y7a{bottom:323.111700px;}
.yff{bottom:323.135250px;}
.ybb{bottom:323.159700px;}
.y10e{bottom:323.175825px;}
.y4e{bottom:323.191875px;}
.y26{bottom:330.667950px;}
.ydb{bottom:334.059450px;}
.y13d{bottom:336.809550px;}
.y99{bottom:340.651500px;}
.y79{bottom:340.704075px;}
.yfe{bottom:340.727625px;}
.yba{bottom:340.752075px;}
.y10d{bottom:340.768200px;}
.y4d{bottom:340.784250px;}
.y25{bottom:345.055950px;}
.yda{bottom:350.047950px;}
.y13c{bottom:352.969050px;}
.y78{bottom:358.296450px;}
.yfd{bottom:358.320000px;}
.y11f{bottom:358.344450px;}
.y10c{bottom:358.360575px;}
.y4c{bottom:358.376625px;}
.y24{bottom:359.443950px;}
.yd9{bottom:366.036450px;}
.y98{bottom:367.048125px;}
.y13b{bottom:369.128550px;}
.y23{bottom:373.836450px;}
.y77{bottom:375.888825px;}
.yfc{bottom:375.912375px;}
.yb9{bottom:375.936825px;}
.y10b{bottom:375.952950px;}
.y4b{bottom:375.969000px;}
.yd8{bottom:382.024950px;}
.y97{bottom:384.640500px;}
.y13a{bottom:385.288050px;}
.y22{bottom:388.233450px;}
.y76{bottom:393.481200px;}
.yfb{bottom:393.504750px;}
.y11e{bottom:393.529200px;}
.y10a{bottom:393.545325px;}
.y4a{bottom:393.561375px;}
.y139{bottom:401.447550px;}
.y96{bottom:402.232875px;}
.y21{bottom:402.621450px;}
.yd7{bottom:404.389950px;}
.y75{bottom:411.073575px;}
.yfa{bottom:411.097125px;}
.y11d{bottom:411.121575px;}
.y109{bottom:411.137700px;}
.y49{bottom:411.153750px;}
.y20{bottom:417.018000px;}
.y138{bottom:417.607050px;}
.y95{bottom:428.629500px;}
.y74{bottom:428.665950px;}
.yf9{bottom:428.689500px;}
.y11c{bottom:428.713950px;}
.yb8{bottom:428.730075px;}
.y48{bottom:428.746125px;}
.y1f{bottom:431.406000px;}
.y137{bottom:433.766550px;}
.y94{bottom:446.221875px;}
.y73{bottom:446.258325px;}
.yf8{bottom:446.281875px;}
.y11b{bottom:446.306325px;}
.yb7{bottom:446.322450px;}
.y47{bottom:446.338500px;}
.y136{bottom:449.926050px;}
.y72{bottom:463.850700px;}
.yf7{bottom:463.874250px;}
.y93{bottom:463.898700px;}
.yb6{bottom:463.914825px;}
.y46{bottom:463.930875px;}
.y135{bottom:466.085550px;}
.y1e{bottom:477.786000px;}
.y71{bottom:481.443075px;}
.yf6{bottom:481.466625px;}
.y92{bottom:481.491075px;}
.yb5{bottom:481.507200px;}
.y45{bottom:481.523250px;}
.y134{bottom:482.245050px;}
.y1d{bottom:492.206550px;}
.y133{bottom:498.404550px;}
.y70{bottom:499.035450px;}
.yf5{bottom:499.059000px;}
.y91{bottom:499.083450px;}
.yb4{bottom:499.099575px;}
.y44{bottom:499.115625px;}
.y1c{bottom:513.794550px;}
.y132{bottom:514.564050px;}
.y6f{bottom:516.627825px;}
.yf4{bottom:516.651375px;}
.y90{bottom:516.675825px;}
.yb3{bottom:516.691950px;}
.y43{bottom:516.708000px;}
.y1b{bottom:528.182550px;}
.y131{bottom:530.723550px;}
.y6e{bottom:534.220200px;}
.y8f{bottom:534.268200px;}
.yb2{bottom:534.284325px;}
.y42{bottom:534.300375px;}
.y1a{bottom:542.570550px;}
.y130{bottom:546.883050px;}
.y6d{bottom:551.812575px;}
.yf3{bottom:551.836125px;}
.y8e{bottom:551.860575px;}
.yb1{bottom:551.876700px;}
.y41{bottom:551.892750px;}
.y19{bottom:556.958550px;}
.y12f{bottom:563.042550px;}
.y160{bottom:565.081950px;}
.y6c{bottom:569.404950px;}
.y8d{bottom:569.452950px;}
.yb0{bottom:569.469075px;}
.y40{bottom:569.485125px;}
.y18{bottom:571.346550px;}
.y15f{bottom:577.870950px;}
.y12e{bottom:579.202050px;}
.y17{bottom:585.734550px;}
.y6b{bottom:586.997325px;}
.y8c{bottom:587.045325px;}
.yaf{bottom:587.061450px;}
.y3f{bottom:587.077500px;}
.y15e{bottom:590.659950px;}
.y12d{bottom:595.361550px;}
.y16{bottom:600.122550px;}
.y15d{bottom:603.448950px;}
.yd6{bottom:604.613025px;}
.yf2{bottom:604.629375px;}
.y6a{bottom:604.637700px;}
.yae{bottom:604.653825px;}
.y3e{bottom:604.669875px;}
.y12c{bottom:611.521050px;}
.y15{bottom:614.515050px;}
.y15c{bottom:621.849150px;}
.yd5{bottom:622.205400px;}
.yf1{bottom:622.221750px;}
.y69{bottom:622.230075px;}
.yad{bottom:622.246200px;}
.y3d{bottom:622.262250px;}
.y12b{bottom:627.680550px;}
.y14{bottom:628.907550px;}
.y15b{bottom:634.638150px;}
.yd4{bottom:639.797775px;}
.yf0{bottom:639.814125px;}
.y68{bottom:639.822450px;}
.yac{bottom:639.838575px;}
.y3c{bottom:639.854625px;}
.y13{bottom:643.304550px;}
.y12a{bottom:643.840050px;}
.y15a{bottom:647.427150px;}
.yd3{bottom:657.390150px;}
.yef{bottom:657.406500px;}
.y67{bottom:657.414825px;}
.yab{bottom:657.430950px;}
.y3b{bottom:657.447000px;}
.y12{bottom:657.692550px;}
.y129{bottom:659.999550px;}
.yd2{bottom:674.982525px;}
.yee{bottom:674.998875px;}
.y66{bottom:675.007200px;}
.yaa{bottom:675.023325px;}
.y3a{bottom:675.039375px;}
.yd1{bottom:692.574900px;}
.yed{bottom:692.591250px;}
.y65{bottom:692.599575px;}
.ya9{bottom:692.615700px;}
.y39{bottom:692.631750px;}
.y128{bottom:693.163950px;}
.y159{bottom:695.351700px;}
.y11{bottom:707.737350px;}
.yd0{bottom:710.167275px;}
.yec{bottom:710.183625px;}
.y64{bottom:710.191950px;}
.ya8{bottom:710.208075px;}
.y38{bottom:710.224125px;}
.y158{bottom:711.511200px;}
.y8b{bottom:718.996200px;}
.y10{bottom:722.121900px;}
.y157{bottom:727.670700px;}
.ycf{bottom:727.767900px;}
.yeb{bottom:727.776000px;}
.y63{bottom:727.784325px;}
.ya7{bottom:727.800450px;}
.y37{bottom:727.816500px;}
.y8a{bottom:736.588575px;}
.y156{bottom:743.830200px;}
.yce{bottom:745.360275px;}
.yea{bottom:745.368375px;}
.y62{bottom:745.376700px;}
.ya6{bottom:745.392825px;}
.y36{bottom:745.408875px;}
.y127{bottom:745.957200px;}
.y89{bottom:754.180950px;}
.y155{bottom:759.989700px;}
.ycd{bottom:762.960750px;}
.ya5{bottom:762.985200px;}
.y35{bottom:763.001250px;}
.y126{bottom:763.549575px;}
.yf{bottom:767.711400px;}
.y154{bottom:776.149200px;}
.ycc{bottom:780.553125px;}
.y61{bottom:780.561450px;}
.y88{bottom:780.577575px;}
.y34{bottom:780.593625px;}
.y125{bottom:781.141950px;}
.y153{bottom:792.308700px;}
.ye{bottom:798.090750px;}
.ycb{bottom:798.149625px;}
.ye9{bottom:798.157725px;}
.y87{bottom:798.169950px;}
.y33{bottom:798.186000px;}
.y152{bottom:808.468200px;}
.y124{bottom:815.746200px;}
.ye8{bottom:815.750100px;}
.yca{bottom:815.754225px;}
.y86{bottom:815.762325px;}
.y32{bottom:815.778375px;}
.y151{bottom:824.627700px;}
.ye7{bottom:833.342475px;}
.yc9{bottom:833.346600px;}
.y60{bottom:833.354700px;}
.y31{bottom:833.370750px;}
.y150{bottom:840.787200px;}
.yc8{bottom:850.938975px;}
.ye6{bottom:850.942950px;}
.y5f{bottom:850.947075px;}
.y30{bottom:850.963125px;}
.y14f{bottom:856.946700px;}
.ye5{bottom:868.535325px;}
.y5e{bottom:868.539450px;}
.y2f{bottom:868.555500px;}
.y3{bottom:872.507400px;}
.y14e{bottom:873.106200px;}
.y5d{bottom:886.131825px;}
.y14d{bottom:889.265700px;}
.y2{bottom:900.688050px;}
.y5c{bottom:903.724200px;}
.y2e{bottom:903.740250px;}
.y14c{bottom:905.425200px;}
.y2c{bottom:948.916950px;}
.y5b{bottom:949.402950px;}
.y5{bottom:952.869600px;}
.y4{bottom:966.369600px;}
.h10{height:26.710643px;}
.h5{height:31.206000px;}
.h6{height:31.500000px;}
.h2{height:34.245000px;}
.h19{height:34.371094px;}
.hc{height:35.376000px;}
.h4{height:35.664000px;}
.h18{height:36.017578px;}
.hb{height:36.528000px;}
.ha{height:38.811000px;}
.h11{height:41.094000px;}
.h14{height:43.377000px;}
.h15{height:43.395000px;}
.hd{height:47.536500px;}
.h8{height:48.642000px;}
.he{height:49.084500px;}
.h9{height:50.226000px;}
.h12{height:50.916668px;}
.hf{height:51.062468px;}
.h13{height:51.222068px;}
.h16{height:51.238568px;}
.h17{height:51.254468px;}
.h7{height:51.840000px;}
.h3{height:77.400000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x11{left:92.004900px;}
.x13{left:97.149150px;}
.xd{left:102.047100px;}
.x15{left:106.301850px;}
.x4{left:110.543850px;}
.x12{left:111.769650px;}
.x7{left:114.156300px;}
.xe{left:116.922600px;}
.xb{left:123.466050px;}
.x8{left:128.476500px;}
.xf{left:136.058850px;}
.x5{left:145.195650px;}
.x6{left:150.820650px;}
.x14{left:206.546400px;}
.xa{left:287.245650px;}
.x9{left:323.358000px;}
.x10{left:336.666000px;}
.x3{left:460.558800px;}
.x2{left:511.415400px;}
.xc{left:586.364250px;}
@media print{
.v4{vertical-align:-28.800000pt;}
.v3{vertical-align:-17.720533pt;}
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.029333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000126pt;}
.ls39{letter-spacing:0.000143pt;}
.ls1c{letter-spacing:0.000259pt;}
.ls2b{letter-spacing:0.000404pt;}
.ls25{letter-spacing:0.005067pt;}
.ls4d{letter-spacing:0.005867pt;}
.ls24{letter-spacing:0.008000pt;}
.ls4f{letter-spacing:0.011733pt;}
.ls23{letter-spacing:0.012533pt;}
.ls3a{letter-spacing:0.017067pt;}
.ls28{letter-spacing:0.017600pt;}
.ls30{letter-spacing:0.017867pt;}
.ls29{letter-spacing:0.020000pt;}
.ls21{letter-spacing:0.025867pt;}
.ls20{letter-spacing:0.027071pt;}
.ls2e{letter-spacing:0.028267pt;}
.ls31{letter-spacing:0.041867pt;}
.ls6{letter-spacing:0.042667pt;}
.ls27{letter-spacing:0.043467pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls2f{letter-spacing:0.049600pt;}
.ls12{letter-spacing:0.057333pt;}
.ls4{letter-spacing:0.085333pt;}
.ls4a{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.109067pt;}
.lsc{letter-spacing:0.114667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.143333pt;}
.ls52{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.155459pt;}
.ls36{letter-spacing:0.155993pt;}
.ls7{letter-spacing:0.170667pt;}
.ls3e{letter-spacing:0.172000pt;}
.ls18{letter-spacing:0.186259pt;}
.ls3c{letter-spacing:0.190400pt;}
.ls3b{letter-spacing:0.195200pt;}
.ls19{letter-spacing:0.200667pt;}
.ls13{letter-spacing:0.215733pt;}
.lsd{letter-spacing:0.229333pt;}
.ls34{letter-spacing:0.240000pt;}
.ls32{letter-spacing:0.245600pt;}
.ls35{letter-spacing:0.260267pt;}
.lsb{letter-spacing:0.286667pt;}
.ls37{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.298667pt;}
.ls1b{letter-spacing:0.315333pt;}
.ls16{letter-spacing:0.344000pt;}
.ls38{letter-spacing:0.381333pt;}
.ls4b{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.401333pt;}
.ls9{letter-spacing:0.426667pt;}
.ls51{letter-spacing:0.432000pt;}
.lse{letter-spacing:0.458667pt;}
.ls5{letter-spacing:0.469333pt;}
.ls49{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.516000pt;}
.ls50{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.560000pt;}
.ls4c{letter-spacing:0.573333pt;}
.ls42{letter-spacing:0.688000pt;}
.lsf{letter-spacing:0.802667pt;}
.ls15{letter-spacing:0.860000pt;}
.ls1f{letter-spacing:0.917333pt;}
.ls10{letter-spacing:0.974667pt;}
.ls44{letter-spacing:1.146667pt;}
.ls3f{letter-spacing:1.261333pt;}
.ls3d{letter-spacing:2.350667pt;}
.ls47{letter-spacing:2.408000pt;}
.ls2c{letter-spacing:2.924000pt;}
.ls41{letter-spacing:3.325333pt;}
.ls48{letter-spacing:4.300000pt;}
.ls26{letter-spacing:4.357333pt;}
.ls46{letter-spacing:4.374533pt;}
.ls1e{letter-spacing:4.414667pt;}
.ls2d{letter-spacing:4.529333pt;}
.ls17{letter-spacing:4.701333pt;}
.ls45{letter-spacing:4.873333pt;}
.ls4e{letter-spacing:5.056000pt;}
.ls40{letter-spacing:5.676000pt;}
.ls43{letter-spacing:5.790667pt;}
.ls2{letter-spacing:8.880000pt;}
.ws8c{word-spacing:-12.097333pt;}
.ws91{word-spacing:-11.868000pt;}
.ws99{word-spacing:-11.810667pt;}
.ws57{word-spacing:-11.696000pt;}
.ws8d{word-spacing:-11.524000pt;}
.ws8b{word-spacing:-11.466667pt;}
.ws39{word-spacing:-11.409333pt;}
.ws78{word-spacing:-10.082667pt;}
.ws7a{word-spacing:-9.552000pt;}
.ws1a{word-spacing:-8.490667pt;}
.wsa6{word-spacing:-8.208000pt;}
.ws38{word-spacing:-7.415961pt;}
.ws79{word-spacing:-6.553627pt;}
.ws3a{word-spacing:-6.208694pt;}
.ws65{word-spacing:-0.860000pt;}
.ws9a{word-spacing:-0.573333pt;}
.ws6{word-spacing:-0.512000pt;}
.wsf{word-spacing:-0.469333pt;}
.ws4b{word-spacing:-0.458667pt;}
.ws90{word-spacing:-0.344000pt;}
.ws60{word-spacing:-0.286667pt;}
.ws83{word-spacing:-0.240000pt;}
.ws46{word-spacing:-0.057333pt;}
.ws1{word-spacing:0.000000pt;}
.ws70{word-spacing:0.114667pt;}
.wsaa{word-spacing:0.144000pt;}
.ws3e{word-spacing:0.172000pt;}
.ws3b{word-spacing:0.229333pt;}
.ws32{word-spacing:0.286667pt;}
.ws52{word-spacing:0.288000pt;}
.ws86{word-spacing:0.344000pt;}
.ws5a{word-spacing:0.401333pt;}
.wsa3{word-spacing:0.432000pt;}
.ws96{word-spacing:0.458667pt;}
.wsad{word-spacing:0.485333pt;}
.ws20{word-spacing:0.516000pt;}
.wsac{word-spacing:0.522667pt;}
.ws55{word-spacing:0.528000pt;}
.ws8{word-spacing:0.554667pt;}
.ws7e{word-spacing:0.573333pt;}
.ws3d{word-spacing:0.630667pt;}
.ws25{word-spacing:0.688000pt;}
.ws16{word-spacing:0.725333pt;}
.ws62{word-spacing:0.745333pt;}
.ws35{word-spacing:0.802667pt;}
.ws5f{word-spacing:0.860000pt;}
.ws11{word-spacing:0.896000pt;}
.ws75{word-spacing:0.917333pt;}
.ws22{word-spacing:0.974667pt;}
.ws5{word-spacing:1.008000pt;}
.ws31{word-spacing:1.032000pt;}
.ws45{word-spacing:1.089333pt;}
.ws1c{word-spacing:1.146667pt;}
.ws9e{word-spacing:1.152000pt;}
.ws18{word-spacing:1.194667pt;}
.ws47{word-spacing:1.204000pt;}
.ws97{word-spacing:1.261333pt;}
.ws2d{word-spacing:1.318667pt;}
.wsb{word-spacing:1.365333pt;}
.ws48{word-spacing:1.376000pt;}
.ws19{word-spacing:1.408000pt;}
.ws6b{word-spacing:1.433333pt;}
.ws17{word-spacing:1.450667pt;}
.wsa7{word-spacing:1.488000pt;}
.ws42{word-spacing:1.490667pt;}
.ws14{word-spacing:1.536000pt;}
.ws37{word-spacing:1.548000pt;}
.ws53{word-spacing:1.584000pt;}
.ws77{word-spacing:1.605333pt;}
.ws6a{word-spacing:1.662667pt;}
.ws84{word-spacing:1.680000pt;}
.ws58{word-spacing:1.720000pt;}
.wsa5{word-spacing:1.776000pt;}
.ws4f{word-spacing:1.777333pt;}
.ws10{word-spacing:1.792000pt;}
.ws9b{word-spacing:1.824000pt;}
.ws98{word-spacing:1.834667pt;}
.wsc{word-spacing:1.877333pt;}
.ws24{word-spacing:1.892000pt;}
.wsa0{word-spacing:1.920000pt;}
.ws6d{word-spacing:1.949333pt;}
.wsa9{word-spacing:1.968000pt;}
.ws74{word-spacing:2.006667pt;}
.wsa8{word-spacing:2.016000pt;}
.ws29{word-spacing:2.064000pt;}
.ws54{word-spacing:2.112000pt;}
.ws4a{word-spacing:2.121333pt;}
.ws2f{word-spacing:2.178667pt;}
.ws34{word-spacing:2.236000pt;}
.ws15{word-spacing:2.261333pt;}
.ws40{word-spacing:2.293333pt;}
.ws13{word-spacing:2.304000pt;}
.ws2a{word-spacing:2.350667pt;}
.ws81{word-spacing:2.352000pt;}
.wsab{word-spacing:2.389333pt;}
.ws2b{word-spacing:2.408000pt;}
.ws87{word-spacing:2.465333pt;}
.ws2e{word-spacing:2.522667pt;}
.ws44{word-spacing:2.580000pt;}
.wsd{word-spacing:2.602667pt;}
.ws41{word-spacing:2.637333pt;}
.ws9{word-spacing:2.645333pt;}
.ws36{word-spacing:2.694667pt;}
.ws51{word-spacing:2.736000pt;}
.ws5c{word-spacing:2.752000pt;}
.ws59{word-spacing:2.809333pt;}
.ws50{word-spacing:2.832000pt;}
.ws4c{word-spacing:2.866667pt;}
.ws7d{word-spacing:2.924000pt;}
.wsa2{word-spacing:2.928000pt;}
.ws6e{word-spacing:2.981333pt;}
.wsa{word-spacing:2.986667pt;}
.ws56{word-spacing:3.024000pt;}
.ws85{word-spacing:3.038667pt;}
.ws63{word-spacing:3.096000pt;}
.ws67{word-spacing:3.120000pt;}
.ws23{word-spacing:3.153333pt;}
.ws8a{word-spacing:3.168000pt;}
.ws30{word-spacing:3.210667pt;}
.ws68{word-spacing:3.216000pt;}
.ws2c{word-spacing:3.268000pt;}
.wsa4{word-spacing:3.312000pt;}
.ws71{word-spacing:3.325333pt;}
.ws5b{word-spacing:3.382667pt;}
.ws66{word-spacing:3.440000pt;}
.ws6c{word-spacing:3.497333pt;}
.ws9c{word-spacing:3.552000pt;}
.ws3f{word-spacing:3.612000pt;}
.wse{word-spacing:3.669333pt;}
.ws33{word-spacing:3.726667pt;}
.ws6f{word-spacing:3.784000pt;}
.ws8e{word-spacing:3.841333pt;}
.ws82{word-spacing:3.888000pt;}
.ws72{word-spacing:3.898667pt;}
.ws3c{word-spacing:3.956000pt;}
.ws92{word-spacing:4.013333pt;}
.ws95{word-spacing:4.128000pt;}
.ws4{word-spacing:4.144000pt;}
.ws8f{word-spacing:4.185333pt;}
.ws12{word-spacing:4.224000pt;}
.ws49{word-spacing:4.242667pt;}
.ws7{word-spacing:4.266667pt;}
.wsa1{word-spacing:4.272000pt;}
.ws93{word-spacing:4.300000pt;}
.ws7b{word-spacing:4.357333pt;}
.ws1d{word-spacing:4.414667pt;}
.ws1e{word-spacing:4.472000pt;}
.ws7c{word-spacing:4.529333pt;}
.ws5e{word-spacing:4.644000pt;}
.ws73{word-spacing:4.701333pt;}
.ws9d{word-spacing:4.704000pt;}
.ws69{word-spacing:4.752000pt;}
.ws5d{word-spacing:4.758667pt;}
.ws9f{word-spacing:4.800000pt;}
.ws94{word-spacing:4.816000pt;}
.ws27{word-spacing:4.873333pt;}
.ws76{word-spacing:4.930667pt;}
.ws43{word-spacing:4.988000pt;}
.ws89{word-spacing:5.045333pt;}
.ws7f{word-spacing:5.102667pt;}
.ws26{word-spacing:5.160000pt;}
.ws88{word-spacing:5.217333pt;}
.ws64{word-spacing:5.332000pt;}
.ws4d{word-spacing:5.389333pt;}
.ws61{word-spacing:5.446667pt;}
.ws4e{word-spacing:5.504000pt;}
.ws28{word-spacing:5.618667pt;}
.ws21{word-spacing:5.676000pt;}
.ws1f{word-spacing:5.733333pt;}
.ws3{word-spacing:9.472000pt;}
.ws2{word-spacing:11.861333pt;}
.ws1b{word-spacing:17.257333pt;}
.ws80{word-spacing:27.792000pt;}
.ws0{word-spacing:1918.520000pt;}
._10{margin-left:-25.440000pt;}
._12{margin-left:-15.881333pt;}
._0{margin-left:-11.865600pt;}
._4{margin-left:-10.378667pt;}
._2{margin-left:-8.288000pt;}
._7{margin-left:-0.896000pt;}
._a{width:1.408000pt;}
._c{width:2.580000pt;}
._e{width:4.242667pt;}
._f{width:5.324926pt;}
._1{width:6.234667pt;}
._3{width:10.378667pt;}
._5{width:12.544000pt;}
._8{width:13.610667pt;}
._b{width:17.257333pt;}
._d{width:25.343726pt;}
._11{width:26.495726pt;}
._9{width:1317.323200pt;}
._14{width:1388.576000pt;}
._6{width:1466.154667pt;}
._13{width:1746.042667pt;}
.fse{font-size:24.000000pt;}
.fs9{font-size:31.199467pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:32.932800pt;}
.fs8{font-size:37.266133pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:57.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:49.780800pt;}
.y1{bottom:50.212800pt;}
.yd{bottom:98.266400pt;}
.ye4{bottom:98.270667pt;}
.ya4{bottom:98.275867pt;}
.y108{bottom:98.276000pt;}
.y85{bottom:98.286533pt;}
.y14b{bottom:98.290267pt;}
.yc7{bottom:99.459933pt;}
.y123{bottom:99.601067pt;}
.y11a{bottom:99.615400pt;}
.y5a{bottom:99.629667pt;}
.yc{bottom:108.934400pt;}
.ye3{bottom:112.481333pt;}
.ya3{bottom:112.483867pt;}
.y107{bottom:112.484000pt;}
.y84{bottom:112.494533pt;}
.y14a{bottom:112.654267pt;}
.yc6{bottom:115.108600pt;}
.y122{bottom:115.238733pt;}
.y119{bottom:115.253067pt;}
.y59{bottom:115.267333pt;}
.yb{bottom:123.371867pt;}
.ya2{bottom:126.691867pt;}
.y106{bottom:126.692000pt;}
.y83{bottom:126.702533pt;}
.y149{bottom:127.018267pt;}
.ye2{bottom:130.289333pt;}
.yc5{bottom:130.746267pt;}
.y121{bottom:130.876400pt;}
.y118{bottom:130.890733pt;}
.y58{bottom:130.905000pt;}
.ya{bottom:137.091867pt;}
.ye1{bottom:140.905333pt;}
.y82{bottom:140.910533pt;}
.y148{bottom:141.382267pt;}
.ya1{bottom:144.500000pt;}
.yc4{bottom:146.383933pt;}
.y120{bottom:146.514067pt;}
.y117{bottom:146.528400pt;}
.y57{bottom:146.542667pt;}
.y9{bottom:154.853200pt;}
.ye0{bottom:155.113333pt;}
.y81{bottom:155.118533pt;}
.y147{bottom:155.746267pt;}
.yc3{bottom:162.151733pt;}
.y116{bottom:162.166067pt;}
.y56{bottom:162.180333pt;}
.y8{bottom:164.793200pt;}
.y80{bottom:169.326533pt;}
.y146{bottom:170.110267pt;}
.ydf{bottom:172.921333pt;}
.y7{bottom:174.733200pt;}
.yc2{bottom:177.789400pt;}
.y115{bottom:177.803733pt;}
.y55{bottom:177.818000pt;}
.y7f{bottom:183.534533pt;}
.y145{bottom:184.474267pt;}
.y6{bottom:184.673200pt;}
.ya0{bottom:193.337667pt;}
.y105{bottom:193.405333pt;}
.yc1{bottom:193.427067pt;}
.y114{bottom:193.441400pt;}
.y54{bottom:193.455667pt;}
.y144{bottom:198.838267pt;}
.y7e{bottom:201.342533pt;}
.y9f{bottom:208.975333pt;}
.y104{bottom:209.043000pt;}
.yc0{bottom:209.064733pt;}
.y113{bottom:209.079067pt;}
.y53{bottom:209.093333pt;}
.y143{bottom:213.202267pt;}
.yde{bottom:218.746067pt;}
.y2b{bottom:223.564400pt;}
.y9e{bottom:224.613000pt;}
.y103{bottom:224.680667pt;}
.ybf{bottom:224.702400pt;}
.y112{bottom:224.716733pt;}
.y52{bottom:224.731000pt;}
.y142{bottom:227.566267pt;}
.ydd{bottom:234.387400pt;}
.y2a{bottom:236.353733pt;}
.y9d{bottom:240.250667pt;}
.y7d{bottom:240.297400pt;}
.y102{bottom:240.318333pt;}
.ybe{bottom:240.340067pt;}
.y111{bottom:240.354400pt;}
.y51{bottom:240.368667pt;}
.y141{bottom:241.930267pt;}
.ydc{bottom:250.025067pt;}
.y29{bottom:255.543067pt;}
.y9c{bottom:255.888333pt;}
.y7c{bottom:255.935067pt;}
.y101{bottom:255.956000pt;}
.ybd{bottom:255.977733pt;}
.y110{bottom:255.992067pt;}
.y50{bottom:256.006333pt;}
.y140{bottom:256.294267pt;}
.y28{bottom:268.332400pt;}
.y13f{bottom:270.658267pt;}
.y9b{bottom:271.526000pt;}
.y7b{bottom:271.572733pt;}
.y100{bottom:271.593667pt;}
.ybc{bottom:271.615400pt;}
.y10f{bottom:271.629733pt;}
.y4f{bottom:271.644000pt;}
.y27{bottom:281.137733pt;}
.y13e{bottom:285.022267pt;}
.y9a{bottom:287.163667pt;}
.y7a{bottom:287.210400pt;}
.yff{bottom:287.231333pt;}
.ybb{bottom:287.253067pt;}
.y10e{bottom:287.267400pt;}
.y4e{bottom:287.281667pt;}
.y26{bottom:293.927067pt;}
.ydb{bottom:296.941733pt;}
.y13d{bottom:299.386267pt;}
.y99{bottom:302.801333pt;}
.y79{bottom:302.848067pt;}
.yfe{bottom:302.869000pt;}
.yba{bottom:302.890733pt;}
.y10d{bottom:302.905067pt;}
.y4d{bottom:302.919333pt;}
.y25{bottom:306.716400pt;}
.yda{bottom:311.153733pt;}
.y13c{bottom:313.750267pt;}
.y78{bottom:318.485733pt;}
.yfd{bottom:318.506667pt;}
.y11f{bottom:318.528400pt;}
.y10c{bottom:318.542733pt;}
.y4c{bottom:318.557000pt;}
.y24{bottom:319.505733pt;}
.yd9{bottom:325.365733pt;}
.y98{bottom:326.265000pt;}
.y13b{bottom:328.114267pt;}
.y23{bottom:332.299067pt;}
.y77{bottom:334.123400pt;}
.yfc{bottom:334.144333pt;}
.yb9{bottom:334.166067pt;}
.y10b{bottom:334.180400pt;}
.y4b{bottom:334.194667pt;}
.yd8{bottom:339.577733pt;}
.y97{bottom:341.902667pt;}
.y13a{bottom:342.478267pt;}
.y22{bottom:345.096400pt;}
.y76{bottom:349.761067pt;}
.yfb{bottom:349.782000pt;}
.y11e{bottom:349.803733pt;}
.y10a{bottom:349.818067pt;}
.y4a{bottom:349.832333pt;}
.y139{bottom:356.842267pt;}
.y96{bottom:357.540333pt;}
.y21{bottom:357.885733pt;}
.yd7{bottom:359.457733pt;}
.y75{bottom:365.398733pt;}
.yfa{bottom:365.419667pt;}
.y11d{bottom:365.441400pt;}
.y109{bottom:365.455733pt;}
.y49{bottom:365.470000pt;}
.y20{bottom:370.682667pt;}
.y138{bottom:371.206267pt;}
.y95{bottom:381.004000pt;}
.y74{bottom:381.036400pt;}
.yf9{bottom:381.057333pt;}
.y11c{bottom:381.079067pt;}
.yb8{bottom:381.093400pt;}
.y48{bottom:381.107667pt;}
.y1f{bottom:383.472000pt;}
.y137{bottom:385.570267pt;}
.y94{bottom:396.641667pt;}
.y73{bottom:396.674067pt;}
.yf8{bottom:396.695000pt;}
.y11b{bottom:396.716733pt;}
.yb7{bottom:396.731067pt;}
.y47{bottom:396.745333pt;}
.y136{bottom:399.934267pt;}
.y72{bottom:412.311733pt;}
.yf7{bottom:412.332667pt;}
.y93{bottom:412.354400pt;}
.yb6{bottom:412.368733pt;}
.y46{bottom:412.383000pt;}
.y135{bottom:414.298267pt;}
.y1e{bottom:424.698667pt;}
.y71{bottom:427.949400pt;}
.yf6{bottom:427.970333pt;}
.y92{bottom:427.992067pt;}
.yb5{bottom:428.006400pt;}
.y45{bottom:428.020667pt;}
.y134{bottom:428.662267pt;}
.y1d{bottom:437.516933pt;}
.y133{bottom:443.026267pt;}
.y70{bottom:443.587067pt;}
.yf5{bottom:443.608000pt;}
.y91{bottom:443.629733pt;}
.yb4{bottom:443.644067pt;}
.y44{bottom:443.658333pt;}
.y1c{bottom:456.706267pt;}
.y132{bottom:457.390267pt;}
.y6f{bottom:459.224733pt;}
.yf4{bottom:459.245667pt;}
.y90{bottom:459.267400pt;}
.yb3{bottom:459.281733pt;}
.y43{bottom:459.296000pt;}
.y1b{bottom:469.495600pt;}
.y131{bottom:471.754267pt;}
.y6e{bottom:474.862400pt;}
.y8f{bottom:474.905067pt;}
.yb2{bottom:474.919400pt;}
.y42{bottom:474.933667pt;}
.y1a{bottom:482.284933pt;}
.y130{bottom:486.118267pt;}
.y6d{bottom:490.500067pt;}
.yf3{bottom:490.521000pt;}
.y8e{bottom:490.542733pt;}
.yb1{bottom:490.557067pt;}
.y41{bottom:490.571333pt;}
.y19{bottom:495.074267pt;}
.y12f{bottom:500.482267pt;}
.y160{bottom:502.295067pt;}
.y6c{bottom:506.137733pt;}
.y8d{bottom:506.180400pt;}
.yb0{bottom:506.194733pt;}
.y40{bottom:506.209000pt;}
.y18{bottom:507.863600pt;}
.y15f{bottom:513.663067pt;}
.y12e{bottom:514.846267pt;}
.y17{bottom:520.652933pt;}
.y6b{bottom:521.775400pt;}
.y8c{bottom:521.818067pt;}
.yaf{bottom:521.832400pt;}
.y3f{bottom:521.846667pt;}
.y15e{bottom:525.031067pt;}
.y12d{bottom:529.210267pt;}
.y16{bottom:533.442267pt;}
.y15d{bottom:536.399067pt;}
.yd6{bottom:537.433800pt;}
.yf2{bottom:537.448333pt;}
.y6a{bottom:537.455733pt;}
.yae{bottom:537.470067pt;}
.y3e{bottom:537.484333pt;}
.y12c{bottom:543.574267pt;}
.y15{bottom:546.235600pt;}
.y15c{bottom:552.754800pt;}
.yd5{bottom:553.071467pt;}
.yf1{bottom:553.086000pt;}
.y69{bottom:553.093400pt;}
.yad{bottom:553.107733pt;}
.y3d{bottom:553.122000pt;}
.y12b{bottom:557.938267pt;}
.y14{bottom:559.028933pt;}
.y15b{bottom:564.122800pt;}
.yd4{bottom:568.709133pt;}
.yf0{bottom:568.723667pt;}
.y68{bottom:568.731067pt;}
.yac{bottom:568.745400pt;}
.y3c{bottom:568.759667pt;}
.y13{bottom:571.826267pt;}
.y12a{bottom:572.302267pt;}
.y15a{bottom:575.490800pt;}
.yd3{bottom:584.346800pt;}
.yef{bottom:584.361333pt;}
.y67{bottom:584.368733pt;}
.yab{bottom:584.383067pt;}
.y3b{bottom:584.397333pt;}
.y12{bottom:584.615600pt;}
.y129{bottom:586.666267pt;}
.yd2{bottom:599.984467pt;}
.yee{bottom:599.999000pt;}
.y66{bottom:600.006400pt;}
.yaa{bottom:600.020733pt;}
.y3a{bottom:600.035000pt;}
.yd1{bottom:615.622133pt;}
.yed{bottom:615.636667pt;}
.y65{bottom:615.644067pt;}
.ya9{bottom:615.658400pt;}
.y39{bottom:615.672667pt;}
.y128{bottom:616.145733pt;}
.y159{bottom:618.090400pt;}
.y11{bottom:629.099867pt;}
.yd0{bottom:631.259800pt;}
.yec{bottom:631.274333pt;}
.y64{bottom:631.281733pt;}
.ya8{bottom:631.296067pt;}
.y38{bottom:631.310333pt;}
.y158{bottom:632.454400pt;}
.y8b{bottom:639.107733pt;}
.y10{bottom:641.886133pt;}
.y157{bottom:646.818400pt;}
.ycf{bottom:646.904800pt;}
.yeb{bottom:646.912000pt;}
.y63{bottom:646.919400pt;}
.ya7{bottom:646.933733pt;}
.y37{bottom:646.948000pt;}
.y8a{bottom:654.745400pt;}
.y156{bottom:661.182400pt;}
.yce{bottom:662.542467pt;}
.yea{bottom:662.549667pt;}
.y62{bottom:662.557067pt;}
.ya6{bottom:662.571400pt;}
.y36{bottom:662.585667pt;}
.y127{bottom:663.073067pt;}
.y89{bottom:670.383067pt;}
.y155{bottom:675.546400pt;}
.ycd{bottom:678.187333pt;}
.ya5{bottom:678.209067pt;}
.y35{bottom:678.223333pt;}
.y126{bottom:678.710733pt;}
.yf{bottom:682.410133pt;}
.y154{bottom:689.910400pt;}
.ycc{bottom:693.825000pt;}
.y61{bottom:693.832400pt;}
.y88{bottom:693.846733pt;}
.y34{bottom:693.861000pt;}
.y125{bottom:694.348400pt;}
.y153{bottom:704.274400pt;}
.ye{bottom:709.414000pt;}
.ycb{bottom:709.466333pt;}
.ye9{bottom:709.473533pt;}
.y87{bottom:709.484400pt;}
.y33{bottom:709.498667pt;}
.y152{bottom:718.638400pt;}
.y124{bottom:725.107733pt;}
.ye8{bottom:725.111200pt;}
.yca{bottom:725.114867pt;}
.y86{bottom:725.122067pt;}
.y32{bottom:725.136333pt;}
.y151{bottom:733.002400pt;}
.ye7{bottom:740.748867pt;}
.yc9{bottom:740.752533pt;}
.y60{bottom:740.759733pt;}
.y31{bottom:740.774000pt;}
.y150{bottom:747.366400pt;}
.yc8{bottom:756.390200pt;}
.ye6{bottom:756.393733pt;}
.y5f{bottom:756.397400pt;}
.y30{bottom:756.411667pt;}
.y14f{bottom:761.730400pt;}
.ye5{bottom:772.031400pt;}
.y5e{bottom:772.035067pt;}
.y2f{bottom:772.049333pt;}
.y3{bottom:775.562133pt;}
.y14e{bottom:776.094400pt;}
.y5d{bottom:787.672733pt;}
.y14d{bottom:790.458400pt;}
.y2{bottom:800.611600pt;}
.y5c{bottom:803.310400pt;}
.y2e{bottom:803.324667pt;}
.y14c{bottom:804.822400pt;}
.y2c{bottom:843.481733pt;}
.y5b{bottom:843.913733pt;}
.y5{bottom:846.995200pt;}
.y4{bottom:858.995200pt;}
.h10{height:23.742794pt;}
.h5{height:27.738667pt;}
.h6{height:28.000000pt;}
.h2{height:30.440000pt;}
.h19{height:30.552083pt;}
.hc{height:31.445333pt;}
.h4{height:31.701333pt;}
.h18{height:32.015625pt;}
.hb{height:32.469333pt;}
.ha{height:34.498667pt;}
.h11{height:36.528000pt;}
.h14{height:38.557333pt;}
.h15{height:38.573333pt;}
.hd{height:42.254667pt;}
.h8{height:43.237333pt;}
.he{height:43.630667pt;}
.h9{height:44.645333pt;}
.h12{height:45.259261pt;}
.hf{height:45.388861pt;}
.h13{height:45.530727pt;}
.h16{height:45.545394pt;}
.h17{height:45.559527pt;}
.h7{height:46.080000pt;}
.h3{height:68.800000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x11{left:81.782133pt;}
.x13{left:86.354800pt;}
.xd{left:90.708533pt;}
.x15{left:94.490533pt;}
.x4{left:98.261200pt;}
.x12{left:99.350800pt;}
.x7{left:101.472267pt;}
.xe{left:103.931200pt;}
.xb{left:109.747600pt;}
.x8{left:114.201333pt;}
.xf{left:120.941200pt;}
.x5{left:129.062800pt;}
.x6{left:134.062800pt;}
.x14{left:183.596800pt;}
.xa{left:255.329467pt;}
.x9{left:287.429333pt;}
.x10{left:299.258667pt;}
.x3{left:409.385600pt;}
.x2{left:454.591467pt;}
.xc{left:521.212667pt;}
}




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