
    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_010e120a5da50e5142b31c27.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_751900acea05e67e416c34c3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_6c7995038ce1cba4f3de2d80.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_ecdd19b2c5b1051bd887c96c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_72cda2fa00a5408faac88de7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.678711;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_a3b5e652b53c6c7fbb73162c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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_16d782509cb5a7730a902203.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_4014eb52898259bd496d5ab5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_cabda4eb4df7e40eb67842d1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.982000px;}
.v1{vertical-align:24.456000px;}
.ls48{letter-spacing:-6.600000px;}
.ls23{letter-spacing:-2.880000px;}
.ls49{letter-spacing:-1.518000px;}
.ls4a{letter-spacing:-1.452000px;}
.ls39{letter-spacing:-1.152000px;}
.ls26{letter-spacing:-1.080000px;}
.ls38{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls36{letter-spacing:-0.864000px;}
.ls55{letter-spacing:-0.858000px;}
.lsd{letter-spacing:-0.792000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls4b{letter-spacing:-0.660000px;}
.ls21{letter-spacing:-0.648000px;}
.ls4c{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.576000px;}
.ls52{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.432000px;}
.ls56{letter-spacing:-0.396000px;}
.ls27{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls1d{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.264000px;}
.ls17{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.132000px;}
.ls1e{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.066000px;}
.ls9{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.026400px;}
.ls6{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.072000px;}
.ls3f{letter-spacing:0.132000px;}
.lsf{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.198000px;}
.ls1a{letter-spacing:0.216000px;}
.ls53{letter-spacing:0.264000px;}
.ls29{letter-spacing:0.273600px;}
.ls16{letter-spacing:0.288000px;}
.ls54{letter-spacing:0.330000px;}
.lse{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.462000px;}
.ls1c{letter-spacing:0.504000px;}
.ls50{letter-spacing:0.528000px;}
.ls1f{letter-spacing:0.576000px;}
.ls42{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.648000px;}
.ls51{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.726000px;}
.ls14{letter-spacing:0.792000px;}
.ls4f{letter-spacing:0.858000px;}
.ls10{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.936000px;}
.ls15{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.224000px;}
.ls41{letter-spacing:2.046000px;}
.ls37{letter-spacing:3.024000px;}
.ls34{letter-spacing:3.168000px;}
.ls0{letter-spacing:4.200000px;}
.ls46{letter-spacing:4.210800px;}
.ls57{letter-spacing:5.220000px;}
.ls47{letter-spacing:5.491200px;}
.ls3{letter-spacing:5.700000px;}
.ls25{letter-spacing:5.911200px;}
.ls3a{letter-spacing:6.000000px;}
.ls31{letter-spacing:6.192000px;}
.ls2d{letter-spacing:6.372000px;}
.ls1{letter-spacing:6.600000px;}
.ls7{letter-spacing:7.200000px;}
.ls33{letter-spacing:7.848000px;}
.ls2c{letter-spacing:7.992000px;}
.ls1b{letter-spacing:8.496000px;}
.ls35{letter-spacing:8.769600px;}
.ls40{letter-spacing:9.438000px;}
.ls2{letter-spacing:10.200000px;}
.ls43{letter-spacing:10.296000px;}
.ls44{letter-spacing:10.626000px;}
.ls3c{letter-spacing:10.692000px;}
.ls30{letter-spacing:10.706400px;}
.ls32{letter-spacing:10.872000px;}
.ls3e{letter-spacing:10.890000px;}
.ls3b{letter-spacing:10.956000px;}
.ls4d{letter-spacing:19.800000px;}
.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;}
}
.ws55{word-spacing:-38.346000px;}
.ws0{word-spacing:-27.432000px;}
.ws43{word-spacing:-22.860000px;}
.ws3c{word-spacing:-20.952000px;}
.ws3b{word-spacing:-20.592000px;}
.ws2f{word-spacing:-20.376000px;}
.ws34{word-spacing:-20.304000px;}
.ws1c{word-spacing:-20.232000px;}
.ws31{word-spacing:-20.160000px;}
.ws32{word-spacing:-19.872000px;}
.ws1d{word-spacing:-19.800000px;}
.ws30{word-spacing:-19.656000px;}
.ws2a{word-spacing:-19.152000px;}
.ws44{word-spacing:-18.546000px;}
.ws38{word-spacing:-18.144000px;}
.ws2b{word-spacing:-17.784000px;}
.ws3f{word-spacing:-17.712000px;}
.ws33{word-spacing:-17.424000px;}
.ws1f{word-spacing:-17.352000px;}
.ws1e{word-spacing:-17.208000px;}
.ws40{word-spacing:-16.992000px;}
.ws10{word-spacing:-16.860000px;}
.ws4a{word-spacing:-16.302000px;}
.ws4c{word-spacing:-15.972000px;}
.ws4b{word-spacing:-14.850000px;}
.ws1{word-spacing:-11.127600px;}
.ws45{word-spacing:-10.956000px;}
.ws48{word-spacing:-10.890000px;}
.ws46{word-spacing:-10.692000px;}
.ws54{word-spacing:-10.626000px;}
.ws51{word-spacing:-10.296000px;}
.ws5{word-spacing:-10.200000px;}
.ws4e{word-spacing:-9.438000px;}
.ws37{word-spacing:-7.992000px;}
.ws3d{word-spacing:-7.848000px;}
.ws9{word-spacing:-7.200000px;}
.ws4{word-spacing:-6.600000px;}
.ws56{word-spacing:-6.000000px;}
.ws6{word-spacing:-5.700000px;}
.ws61{word-spacing:-5.220000px;}
.ws2{word-spacing:-4.200000px;}
.ws2e{word-spacing:-1.224000px;}
.ws39{word-spacing:-1.080000px;}
.ws19{word-spacing:-1.008000px;}
.ws21{word-spacing:-0.936000px;}
.ws15{word-spacing:-0.864000px;}
.ws59{word-spacing:-0.858000px;}
.ws18{word-spacing:-0.792000px;}
.wsa{word-spacing:-0.726000px;}
.ws2c{word-spacing:-0.720000px;}
.ws5b{word-spacing:-0.660000px;}
.ws25{word-spacing:-0.648000px;}
.ws50{word-spacing:-0.594000px;}
.ws23{word-spacing:-0.576000px;}
.ws5a{word-spacing:-0.528000px;}
.ws29{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.462000px;}
.ws16{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.396000px;}
.ws12{word-spacing:-0.360000px;}
.ws5d{word-spacing:-0.330000px;}
.ws17{word-spacing:-0.288000px;}
.ws5c{word-spacing:-0.264000px;}
.ws28{word-spacing:-0.216000px;}
.ws58{word-spacing:-0.198000px;}
.ws13{word-spacing:-0.144000px;}
.ws49{word-spacing:-0.132000px;}
.ws11{word-spacing:-0.072000px;}
.wsb{word-spacing:-0.066000px;}
.ws1b{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.066000px;}
.ws22{word-spacing:0.072000px;}
.ws60{word-spacing:0.132000px;}
.ws14{word-spacing:0.144000px;}
.ws47{word-spacing:0.198000px;}
.ws1a{word-spacing:0.216000px;}
.wsd{word-spacing:0.264000px;}
.ws20{word-spacing:0.288000px;}
.ws7{word-spacing:0.330000px;}
.ws2d{word-spacing:0.360000px;}
.ws5f{word-spacing:0.396000px;}
.ws24{word-spacing:0.432000px;}
.ws36{word-spacing:0.504000px;}
.ws57{word-spacing:0.528000px;}
.ws27{word-spacing:0.576000px;}
.ws53{word-spacing:0.594000px;}
.ws26{word-spacing:0.648000px;}
.ws52{word-spacing:0.660000px;}
.ws35{word-spacing:0.720000px;}
.wsf{word-spacing:0.792000px;}
.ws5e{word-spacing:0.858000px;}
.ws3e{word-spacing:0.864000px;}
.ws3a{word-spacing:0.936000px;}
.ws41{word-spacing:1.008000px;}
.ws42{word-spacing:1.152000px;}
.ws4f{word-spacing:1.518000px;}
.ws4d{word-spacing:6.600000px;}
._14{margin-left:-20.045600px;}
._e{margin-left:-18.546000px;}
._17{margin-left:-15.696000px;}
._16{margin-left:-14.491200px;}
._6{margin-left:-12.750000px;}
._18{margin-left:-11.690000px;}
._7{margin-left:-10.281600px;}
._9{margin-left:-8.661600px;}
._a{margin-left:-7.609200px;}
._c{margin-left:-6.240000px;}
._10{margin-left:-5.232600px;}
._3{margin-left:-3.537600px;}
._0{margin-left:-2.255400px;}
._d{margin-left:-1.011400px;}
._2{width:1.811600px;}
._12{width:2.999800px;}
._1{width:4.200000px;}
._b{width:5.562000px;}
._13{width:6.865600px;}
._11{width:7.879200px;}
._f{width:8.954400px;}
._8{width:10.200000px;}
._4{width:11.253000px;}
._15{width:12.908800px;}
._19{width:14.784800px;}
._1b{width:16.194600px;}
._5{width:17.401200px;}
._1a{width:20.394000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y116{bottom:141.382350px;}
.y161{bottom:141.734400px;}
.y188{bottom:141.968550px;}
.y13c{bottom:141.994350px;}
.yf3{bottom:142.510350px;}
.y1d3{bottom:143.011800px;}
.y8c{bottom:143.504400px;}
.y1ae{bottom:143.692950px;}
.y20{bottom:144.052650px;}
.yd3{bottom:144.184350px;}
.y45{bottom:144.930300px;}
.yb1{bottom:145.164300px;}
.y68{bottom:145.254300px;}
.y117{bottom:145.308300px;}
.y1f5{bottom:146.230950px;}
.y187{bottom:158.911800px;}
.y160{bottom:161.088900px;}
.y1d2{bottom:161.611800px;}
.y115{bottom:162.532350px;}
.y13b{bottom:163.000350px;}
.y1ad{bottom:163.938450px;}
.yf2{bottom:164.110350px;}
.y8b{bottom:164.798400px;}
.y1f{bottom:164.896650px;}
.yd2{bottom:165.640350px;}
.yb0{bottom:166.314300px;}
.y1f4{bottom:166.476450px;}
.y44{bottom:166.674300px;}
.y67{bottom:167.610300px;}
.y1d1{bottom:180.211800px;}
.y15f{bottom:180.443400px;}
.y114{bottom:183.538350px;}
.y13a{bottom:184.006350px;}
.y1ac{bottom:184.183950px;}
.yf1{bottom:185.710350px;}
.y1e{bottom:185.740650px;}
.y8a{bottom:186.092400px;}
.y1f3{bottom:186.721950px;}
.yd1{bottom:187.096350px;}
.yaf{bottom:187.464300px;}
.y43{bottom:188.418300px;}
.y66{bottom:189.966300px;}
.y186{bottom:190.617300px;}
.y1d0{bottom:198.811800px;}
.y15e{bottom:199.797900px;}
.y1ab{bottom:204.429450px;}
.y113{bottom:204.544350px;}
.y139{bottom:205.012350px;}
.y1d{bottom:206.584650px;}
.y1f2{bottom:206.967450px;}
.yf0{bottom:207.310350px;}
.y89{bottom:207.386400px;}
.yd0{bottom:208.552350px;}
.yae{bottom:208.614300px;}
.y42{bottom:210.162300px;}
.y185{bottom:210.565800px;}
.y65{bottom:212.322300px;}
.y15d{bottom:219.152400px;}
.y1aa{bottom:224.674950px;}
.y112{bottom:225.550350px;}
.y138{bottom:226.018350px;}
.y1f1{bottom:227.212950px;}
.y88{bottom:228.680400px;}
.yef{bottom:228.910350px;}
.yad{bottom:229.764300px;}
.ycf{bottom:230.008350px;}
.y184{bottom:230.514300px;}
.y41{bottom:231.906300px;}
.y64{bottom:234.678300px;}
.y1c{bottom:235.938600px;}
.y15c{bottom:238.506900px;}
.y1cf{bottom:239.623800px;}
.y1a9{bottom:244.920450px;}
.y111{bottom:246.556350px;}
.y137{bottom:247.024350px;}
.y1f0{bottom:247.458450px;}
.y87{bottom:249.974400px;}
.y183{bottom:250.462800px;}
.yee{bottom:250.510350px;}
.yac{bottom:250.914300px;}
.yce{bottom:251.464350px;}
.y40{bottom:253.650300px;}
.y63{bottom:257.034300px;}
.y15b{bottom:257.861400px;}
.y1ce{bottom:260.017800px;}
.y1a8{bottom:265.165950px;}
.y110{bottom:267.562350px;}
.y1ef{bottom:267.703950px;}
.y136{bottom:268.030350px;}
.y182{bottom:270.411300px;}
.y86{bottom:271.268400px;}
.yab{bottom:272.064300px;}
.yed{bottom:272.110350px;}
.ycd{bottom:272.920350px;}
.y3f{bottom:275.394300px;}
.y15a{bottom:277.215900px;}
.y62{bottom:279.390300px;}
.y1cd{bottom:280.411800px;}
.y1a7{bottom:285.411450px;}
.y1ee{bottom:287.949450px;}
.y10f{bottom:288.568350px;}
.y135{bottom:289.036350px;}
.y181{bottom:290.359800px;}
.y85{bottom:292.562400px;}
.y1b{bottom:292.766100px;}
.yaa{bottom:293.214300px;}
.yec{bottom:293.710350px;}
.ycc{bottom:294.376350px;}
.y159{bottom:296.570400px;}
.y3e{bottom:297.138300px;}
.y61{bottom:301.746300px;}
.y1a6{bottom:305.656950px;}
.y1ed{bottom:308.194950px;}
.y10e{bottom:309.574350px;}
.y134{bottom:310.042350px;}
.y180{bottom:310.308300px;}
.y1a{bottom:312.120600px;}
.y84{bottom:313.856400px;}
.ya9{bottom:314.364300px;}
.yeb{bottom:315.310350px;}
.ycb{bottom:315.832350px;}
.y158{bottom:315.924900px;}
.y1cc{bottom:316.471800px;}
.y3d{bottom:318.882300px;}
.y60{bottom:324.102300px;}
.y1a5{bottom:325.902450px;}
.y1ec{bottom:328.440450px;}
.y17f{bottom:330.256800px;}
.y10d{bottom:330.580350px;}
.y133{bottom:331.048350px;}
.y19{bottom:331.475100px;}
.y83{bottom:335.150400px;}
.y157{bottom:335.279400px;}
.ya8{bottom:335.514300px;}
.y1cb{bottom:336.865800px;}
.yea{bottom:336.910350px;}
.yca{bottom:337.288350px;}
.y3c{bottom:340.626300px;}
.y1a4{bottom:346.147950px;}
.y5f{bottom:346.458300px;}
.y1eb{bottom:348.685950px;}
.y17e{bottom:350.205300px;}
.y18{bottom:350.829600px;}
.y10c{bottom:351.586350px;}
.y132{bottom:352.054350px;}
.y156{bottom:354.633900px;}
.y82{bottom:356.444400px;}
.ya7{bottom:356.664300px;}
.y1ca{bottom:357.259800px;}
.ye9{bottom:358.510350px;}
.yc9{bottom:358.744350px;}
.y3b{bottom:362.370300px;}
.y1a3{bottom:366.393450px;}
.y5e{bottom:368.814300px;}
.y1ea{bottom:368.931450px;}
.y17d{bottom:370.153800px;}
.y17{bottom:370.184100px;}
.y10b{bottom:372.592350px;}
.y131{bottom:373.060350px;}
.y155{bottom:373.988400px;}
.y1c9{bottom:377.653800px;}
.y81{bottom:377.738400px;}
.ya6{bottom:377.814300px;}
.ye8{bottom:380.110350px;}
.yc8{bottom:380.200350px;}
.y3a{bottom:384.114300px;}
.y1a2{bottom:386.638950px;}
.y1e9{bottom:389.176950px;}
.y16{bottom:389.529600px;}
.y17c{bottom:390.102300px;}
.y5d{bottom:391.170300px;}
.y154{bottom:393.342900px;}
.y10a{bottom:393.598350px;}
.y130{bottom:394.066350px;}
.y1c8{bottom:398.047800px;}
.ya5{bottom:398.964300px;}
.y80{bottom:399.032400px;}
.yc7{bottom:401.656350px;}
.ye7{bottom:401.710350px;}
.y39{bottom:405.858300px;}
.y1a1{bottom:406.884450px;}
.y15{bottom:408.884100px;}
.y1e8{bottom:409.422450px;}
.y17b{bottom:410.050800px;}
.y153{bottom:412.697400px;}
.y5c{bottom:413.526300px;}
.y109{bottom:414.604350px;}
.y12f{bottom:415.072350px;}
.y1c7{bottom:418.441800px;}
.ya4{bottom:420.114300px;}
.y7f{bottom:420.326400px;}
.yc6{bottom:423.112350px;}
.ye6{bottom:423.310350px;}
.y1a0{bottom:427.129950px;}
.y38{bottom:427.602300px;}
.y14{bottom:428.238600px;}
.y1e7{bottom:429.667950px;}
.y17a{bottom:429.999300px;}
.y152{bottom:432.051900px;}
.y108{bottom:435.610350px;}
.y5b{bottom:435.882300px;}
.y12e{bottom:436.078350px;}
.y1c6{bottom:438.835800px;}
.ya3{bottom:441.264300px;}
.y7e{bottom:441.620400px;}
.y20d{bottom:441.661800px;}
.yc5{bottom:444.568350px;}
.ye5{bottom:444.910350px;}
.y19f{bottom:447.375450px;}
.y37{bottom:449.346300px;}
.y1e6{bottom:449.913450px;}
.y179{bottom:449.947800px;}
.y151{bottom:451.406400px;}
.y13{bottom:456.092550px;}
.y12d{bottom:457.084350px;}
.y5a{bottom:458.238300px;}
.y1c5{bottom:459.229800px;}
.y20c{bottom:459.661800px;}
.ya2{bottom:462.414300px;}
.y7d{bottom:462.914400px;}
.y107{bottom:465.114300px;}
.yc4{bottom:466.024350px;}
.ye4{bottom:466.510350px;}
.y19e{bottom:467.620950px;}
.y178{bottom:469.896300px;}
.y1e5{bottom:470.158950px;}
.y36{bottom:471.090300px;}
.y20b{bottom:477.661800px;}
.y12c{bottom:478.090350px;}
.y150{bottom:479.260350px;}
.y1c4{bottom:479.623800px;}
.y59{bottom:480.594300px;}
.ya1{bottom:483.564300px;}
.y7c{bottom:484.208400px;}
.yc3{bottom:487.480350px;}
.y19d{bottom:487.866450px;}
.ye3{bottom:488.110350px;}
.y177{bottom:489.844800px;}
.y1e4{bottom:490.404450px;}
.y35{bottom:492.834300px;}
.y20a{bottom:495.661800px;}
.y12{bottom:498.365550px;}
.y12b{bottom:499.096350px;}
.y1c3{bottom:500.017800px;}
.y58{bottom:502.950300px;}
.ya0{bottom:504.714300px;}
.y7b{bottom:505.502400px;}
.y19c{bottom:508.111950px;}
.yc2{bottom:508.936350px;}
.ye2{bottom:509.710350px;}
.y176{bottom:509.793300px;}
.y1e3{bottom:510.649950px;}
.y34{bottom:514.578300px;}
.y11{bottom:517.720050px;}
.y12a{bottom:520.102350px;}
.y1c2{bottom:520.534800px;}
.y57{bottom:525.306300px;}
.y9f{bottom:525.864300px;}
.y7a{bottom:526.796400px;}
.y19b{bottom:528.357450px;}
.y106{bottom:528.600300px;}
.y175{bottom:529.741800px;}
.yc1{bottom:530.392350px;}
.y1e2{bottom:530.895450px;}
.ye1{bottom:531.310350px;}
.y14f{bottom:534.414300px;}
.y209{bottom:535.252800px;}
.y33{bottom:536.322300px;}
.y10{bottom:537.074550px;}
.y1c1{bottom:540.928800px;}
.y129{bottom:541.108350px;}
.y9e{bottom:547.014300px;}
.y56{bottom:547.662300px;}
.y79{bottom:548.090400px;}
.y19a{bottom:548.602950px;}
.y105{bottom:549.606300px;}
.y174{bottom:549.690300px;}
.y1e1{bottom:551.140950px;}
.yc0{bottom:551.848350px;}
.ye0{bottom:552.910350px;}
.y208{bottom:554.607300px;}
.y14e{bottom:555.114300px;}
.yf{bottom:556.429050px;}
.y32{bottom:558.066300px;}
.y1c0{bottom:561.322800px;}
.y128{bottom:562.114350px;}
.y9d{bottom:568.164300px;}
.y199{bottom:568.848450px;}
.y78{bottom:569.384400px;}
.y173{bottom:569.638800px;}
.y55{bottom:570.018300px;}
.y104{bottom:570.612300px;}
.y1e0{bottom:571.386450px;}
.ybf{bottom:573.304350px;}
.y207{bottom:573.961800px;}
.ydf{bottom:574.510350px;}
.ye{bottom:575.783550px;}
.y14d{bottom:575.814300px;}
.y31{bottom:579.810300px;}
.y1bf{bottom:581.716800px;}
.y127{bottom:583.120350px;}
.y198{bottom:589.093950px;}
.y9c{bottom:589.314300px;}
.y172{bottom:589.587300px;}
.y77{bottom:590.678400px;}
.y103{bottom:591.618300px;}
.y1df{bottom:591.631950px;}
.y54{bottom:592.374300px;}
.y206{bottom:593.311800px;}
.ybe{bottom:594.760350px;}
.yd{bottom:595.138050px;}
.yde{bottom:596.110350px;}
.y14c{bottom:596.514300px;}
.y30{bottom:601.554300px;}
.y1be{bottom:602.110800px;}
.y126{bottom:604.126350px;}
.y205{bottom:608.347800px;}
.y197{bottom:609.339450px;}
.y171{bottom:609.535800px;}
.y9b{bottom:610.464300px;}
.y1de{bottom:611.877450px;}
.y76{bottom:611.972400px;}
.y102{bottom:612.624300px;}
.yc{bottom:614.492550px;}
.y53{bottom:614.730300px;}
.y14b{bottom:617.214300px;}
.ydd{bottom:617.710350px;}
.y1bd{bottom:622.504800px;}
.y2f{bottom:623.298300px;}
.ybd{bottom:624.714300px;}
.y125{bottom:625.132350px;}
.y204{bottom:628.147800px;}
.y170{bottom:629.484300px;}
.y196{bottom:629.584950px;}
.y9a{bottom:631.614300px;}
.y1dd{bottom:632.122950px;}
.y75{bottom:633.266400px;}
.y101{bottom:633.630300px;}
.y52{bottom:637.086300px;}
.y14a{bottom:637.914300px;}
.ydc{bottom:639.310350px;}
.yb{bottom:642.346500px;}
.y1bc{bottom:642.898800px;}
.y2e{bottom:645.042300px;}
.y124{bottom:646.138350px;}
.y203{bottom:647.947800px;}
.y16f{bottom:649.432800px;}
.y195{bottom:649.830450px;}
.y1dc{bottom:652.368450px;}
.y99{bottom:652.764300px;}
.y74{bottom:654.560400px;}
.y100{bottom:654.636300px;}
.y149{bottom:658.614300px;}
.y51{bottom:659.442300px;}
.ydb{bottom:660.910350px;}
.y1bb{bottom:663.292800px;}
.y2d{bottom:666.786300px;}
.y123{bottom:667.144350px;}
.y202{bottom:667.747800px;}
.y16e{bottom:669.381300px;}
.y194{bottom:670.075950px;}
.y1db{bottom:672.613950px;}
.y98{bottom:673.914300px;}
.yff{bottom:675.642300px;}
.y73{bottom:675.854400px;}
.y148{bottom:679.314300px;}
.y50{bottom:681.798300px;}
.yda{bottom:682.510350px;}
.y1ba{bottom:683.835300px;}
.y201{bottom:687.547800px;}
.y122{bottom:688.150350px;}
.y2c{bottom:688.530300px;}
.y16d{bottom:689.329800px;}
.y193{bottom:690.321450px;}
.ybc{bottom:691.698300px;}
.ya{bottom:692.587500px;}
.y1da{bottom:692.859450px;}
.y97{bottom:695.064300px;}
.yfe{bottom:696.648300px;}
.y72{bottom:697.148400px;}
.y147{bottom:700.014300px;}
.yd9{bottom:704.110350px;}
.y4f{bottom:704.154300px;}
.y1b9{bottom:704.377800px;}
.y200{bottom:707.644800px;}
.y121{bottom:709.156350px;}
.y16c{bottom:709.278300px;}
.y2b{bottom:710.274300px;}
.y192{bottom:710.566950px;}
.y9{bottom:711.942000px;}
.y1d9{bottom:712.659450px;}
.ybb{bottom:713.154300px;}
.y96{bottom:716.214300px;}
.yfd{bottom:717.654300px;}
.y71{bottom:718.442400px;}
.y146{bottom:720.714300px;}
.y1b8{bottom:724.771800px;}
.yd8{bottom:725.710350px;}
.y4e{bottom:726.510300px;}
.y1ff{bottom:727.741800px;}
.y16b{bottom:729.226800px;}
.y120{bottom:730.162350px;}
.y191{bottom:730.515450px;}
.y8{bottom:731.296500px;}
.y2a{bottom:732.018300px;}
.y1d8{bottom:732.459450px;}
.yba{bottom:734.610300px;}
.y95{bottom:737.364300px;}
.yfc{bottom:738.660300px;}
.y70{bottom:739.736400px;}
.y145{bottom:741.414300px;}
.y1b7{bottom:745.165800px;}
.yd7{bottom:747.310350px;}
.y1fe{bottom:747.838800px;}
.y4d{bottom:748.866300px;}
.y16a{bottom:749.175300px;}
.y190{bottom:750.463950px;}
.y11f{bottom:751.168350px;}
.y1d7{bottom:752.259450px;}
.y29{bottom:753.762300px;}
.yb9{bottom:756.066300px;}
.y94{bottom:758.514300px;}
.yfb{bottom:759.666300px;}
.y6f{bottom:761.030400px;}
.y144{bottom:762.114300px;}
.y1b6{bottom:765.559800px;}
.y1fd{bottom:767.935800px;}
.yd6{bottom:768.910350px;}
.y169{bottom:769.123800px;}
.y18f{bottom:770.718450px;}
.y4c{bottom:771.222300px;}
.y7{bottom:771.475500px;}
.y1d6{bottom:772.059450px;}
.y11e{bottom:772.174350px;}
.y28{bottom:775.506300px;}
.yb8{bottom:777.522300px;}
.y93{bottom:779.664300px;}
.yfa{bottom:780.672300px;}
.y6e{bottom:782.324400px;}
.y143{bottom:782.814300px;}
.y1b5{bottom:785.953800px;}
.y1fc{bottom:788.032800px;}
.y168{bottom:789.072300px;}
.y18e{bottom:790.963950px;}
.y1d5{bottom:791.859450px;}
.y11d{bottom:793.180350px;}
.y4b{bottom:793.578300px;}
.y27{bottom:797.250300px;}
.yb7{bottom:798.978300px;}
.yd5{bottom:799.014300px;}
.y92{bottom:800.814300px;}
.y6{bottom:801.336000px;}
.yf9{bottom:801.678300px;}
.y142{bottom:803.514300px;}
.y6d{bottom:803.618400px;}
.y1b4{bottom:806.347800px;}
.y1fb{bottom:808.129800px;}
.y167{bottom:809.020800px;}
.y18d{bottom:811.209450px;}
.y1d4{bottom:811.659450px;}
.y11c{bottom:814.186350px;}
.y4a{bottom:815.934300px;}
.y26{bottom:818.994300px;}
.yb6{bottom:820.434300px;}
.yd4{bottom:820.614300px;}
.y91{bottom:821.964300px;}
.yf8{bottom:822.684300px;}
.y141{bottom:824.214300px;}
.y6c{bottom:824.912400px;}
.y1b3{bottom:826.741800px;}
.y1fa{bottom:828.226800px;}
.y166{bottom:828.969300px;}
.y5{bottom:831.196500px;}
.y11b{bottom:835.192350px;}
.y49{bottom:838.290300px;}
.y25{bottom:840.738300px;}
.yb5{bottom:841.890300px;}
.y90{bottom:843.114300px;}
.yf7{bottom:843.690300px;}
.y140{bottom:844.914300px;}
.y6b{bottom:846.206400px;}
.y1b2{bottom:847.135800px;}
.y1f9{bottom:848.323800px;}
.y165{bottom:848.917800px;}
.y18c{bottom:849.309450px;}
.y11a{bottom:856.198350px;}
.y48{bottom:860.646300px;}
.y24{bottom:862.482300px;}
.yb4{bottom:863.346300px;}
.y8f{bottom:864.264300px;}
.yf6{bottom:864.696300px;}
.y13f{bottom:865.614300px;}
.y1b1{bottom:867.529800px;}
.y1f8{bottom:868.420800px;}
.y164{bottom:868.866300px;}
.y6a{bottom:876.018300px;}
.y119{bottom:877.204350px;}
.y47{bottom:883.002300px;}
.y23{bottom:884.226300px;}
.yb3{bottom:884.802300px;}
.y8e{bottom:885.414300px;}
.yf5{bottom:885.702300px;}
.y4{bottom:885.706800px;}
.y13e{bottom:886.314300px;}
.y18b{bottom:886.803450px;}
.y1b0{bottom:887.923800px;}
.y1f7{bottom:888.517800px;}
.y163{bottom:888.814800px;}
.y118{bottom:898.210350px;}
.y69{bottom:901.866300px;}
.y46{bottom:905.358300px;}
.y22{bottom:905.970300px;}
.yb2{bottom:906.258300px;}
.y8d{bottom:906.564300px;}
.yf4{bottom:906.708300px;}
.y13d{bottom:907.014300px;}
.y18a{bottom:908.259450px;}
.y1af{bottom:908.317800px;}
.y1f6{bottom:908.614800px;}
.y162{bottom:908.763300px;}
.y3{bottom:911.461800px;}
.y21{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.y189{bottom:929.709450px;}
.h8{height:35.663086px;}
.h2{height:40.757812px;}
.h9{height:47.988281px;}
.ha{height:48.399902px;}
.h4{height:50.947266px;}
.h3{height:56.041992px;}
.hc{height:57.553195px;}
.hb{height:58.009195px;}
.h7{height:58.081195px;}
.h6{height:61.136719px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x5{left:97.795350px;}
.x7{left:119.055150px;}
.x1{left:135.084150px;}
.x8{left:140.323650px;}
.x6{left:150.670350px;}
.xb{left:177.918750px;}
.xc{left:234.753750px;}
.x4{left:236.493450px;}
.xa{left:509.980350px;}
.x9{left:518.943600px;}
.x2{left:572.164350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.650667pt;}
.v1{vertical-align:21.738667pt;}
.ls48{letter-spacing:-5.866667pt;}
.ls23{letter-spacing:-2.560000pt;}
.ls49{letter-spacing:-1.349333pt;}
.ls4a{letter-spacing:-1.290667pt;}
.ls39{letter-spacing:-1.024000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls38{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls36{letter-spacing:-0.768000pt;}
.ls55{letter-spacing:-0.762667pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls4b{letter-spacing:-0.586667pt;}
.ls21{letter-spacing:-0.576000pt;}
.ls4c{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls52{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls56{letter-spacing:-0.352000pt;}
.ls27{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls1d{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.234667pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.117333pt;}
.ls1e{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.058667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.023467pt;}
.ls6{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.064000pt;}
.ls3f{letter-spacing:0.117333pt;}
.lsf{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.176000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls53{letter-spacing:0.234667pt;}
.ls29{letter-spacing:0.243200pt;}
.ls16{letter-spacing:0.256000pt;}
.ls54{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.410667pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls50{letter-spacing:0.469333pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls42{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls51{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.645333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls4f{letter-spacing:0.762667pt;}
.ls10{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.832000pt;}
.ls15{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.088000pt;}
.ls41{letter-spacing:1.818667pt;}
.ls37{letter-spacing:2.688000pt;}
.ls34{letter-spacing:2.816000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls46{letter-spacing:3.742933pt;}
.ls57{letter-spacing:4.640000pt;}
.ls47{letter-spacing:4.881067pt;}
.ls3{letter-spacing:5.066667pt;}
.ls25{letter-spacing:5.254400pt;}
.ls3a{letter-spacing:5.333333pt;}
.ls31{letter-spacing:5.504000pt;}
.ls2d{letter-spacing:5.664000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls7{letter-spacing:6.400000pt;}
.ls33{letter-spacing:6.976000pt;}
.ls2c{letter-spacing:7.104000pt;}
.ls1b{letter-spacing:7.552000pt;}
.ls35{letter-spacing:7.795200pt;}
.ls40{letter-spacing:8.389333pt;}
.ls2{letter-spacing:9.066667pt;}
.ls43{letter-spacing:9.152000pt;}
.ls44{letter-spacing:9.445333pt;}
.ls3c{letter-spacing:9.504000pt;}
.ls30{letter-spacing:9.516800pt;}
.ls32{letter-spacing:9.664000pt;}
.ls3e{letter-spacing:9.680000pt;}
.ls3b{letter-spacing:9.738667pt;}
.ls4d{letter-spacing:17.600000pt;}
.ws55{word-spacing:-34.085333pt;}
.ws0{word-spacing:-24.384000pt;}
.ws43{word-spacing:-20.320000pt;}
.ws3c{word-spacing:-18.624000pt;}
.ws3b{word-spacing:-18.304000pt;}
.ws2f{word-spacing:-18.112000pt;}
.ws34{word-spacing:-18.048000pt;}
.ws1c{word-spacing:-17.984000pt;}
.ws31{word-spacing:-17.920000pt;}
.ws32{word-spacing:-17.664000pt;}
.ws1d{word-spacing:-17.600000pt;}
.ws30{word-spacing:-17.472000pt;}
.ws2a{word-spacing:-17.024000pt;}
.ws44{word-spacing:-16.485333pt;}
.ws38{word-spacing:-16.128000pt;}
.ws2b{word-spacing:-15.808000pt;}
.ws3f{word-spacing:-15.744000pt;}
.ws33{word-spacing:-15.488000pt;}
.ws1f{word-spacing:-15.424000pt;}
.ws1e{word-spacing:-15.296000pt;}
.ws40{word-spacing:-15.104000pt;}
.ws10{word-spacing:-14.986667pt;}
.ws4a{word-spacing:-14.490667pt;}
.ws4c{word-spacing:-14.197333pt;}
.ws4b{word-spacing:-13.200000pt;}
.ws1{word-spacing:-9.891200pt;}
.ws45{word-spacing:-9.738667pt;}
.ws48{word-spacing:-9.680000pt;}
.ws46{word-spacing:-9.504000pt;}
.ws54{word-spacing:-9.445333pt;}
.ws51{word-spacing:-9.152000pt;}
.ws5{word-spacing:-9.066667pt;}
.ws4e{word-spacing:-8.389333pt;}
.ws37{word-spacing:-7.104000pt;}
.ws3d{word-spacing:-6.976000pt;}
.ws9{word-spacing:-6.400000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws56{word-spacing:-5.333333pt;}
.ws6{word-spacing:-5.066667pt;}
.ws61{word-spacing:-4.640000pt;}
.ws2{word-spacing:-3.733333pt;}
.ws2e{word-spacing:-1.088000pt;}
.ws39{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.896000pt;}
.ws21{word-spacing:-0.832000pt;}
.ws15{word-spacing:-0.768000pt;}
.ws59{word-spacing:-0.762667pt;}
.ws18{word-spacing:-0.704000pt;}
.wsa{word-spacing:-0.645333pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws5b{word-spacing:-0.586667pt;}
.ws25{word-spacing:-0.576000pt;}
.ws50{word-spacing:-0.528000pt;}
.ws23{word-spacing:-0.512000pt;}
.ws5a{word-spacing:-0.469333pt;}
.ws29{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.410667pt;}
.ws16{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.352000pt;}
.ws12{word-spacing:-0.320000pt;}
.ws5d{word-spacing:-0.293333pt;}
.ws17{word-spacing:-0.256000pt;}
.ws5c{word-spacing:-0.234667pt;}
.ws28{word-spacing:-0.192000pt;}
.ws58{word-spacing:-0.176000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws49{word-spacing:-0.117333pt;}
.ws11{word-spacing:-0.064000pt;}
.wsb{word-spacing:-0.058667pt;}
.ws1b{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.058667pt;}
.ws22{word-spacing:0.064000pt;}
.ws60{word-spacing:0.117333pt;}
.ws14{word-spacing:0.128000pt;}
.ws47{word-spacing:0.176000pt;}
.ws1a{word-spacing:0.192000pt;}
.wsd{word-spacing:0.234667pt;}
.ws20{word-spacing:0.256000pt;}
.ws7{word-spacing:0.293333pt;}
.ws2d{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.352000pt;}
.ws24{word-spacing:0.384000pt;}
.ws36{word-spacing:0.448000pt;}
.ws57{word-spacing:0.469333pt;}
.ws27{word-spacing:0.512000pt;}
.ws53{word-spacing:0.528000pt;}
.ws26{word-spacing:0.576000pt;}
.ws52{word-spacing:0.586667pt;}
.ws35{word-spacing:0.640000pt;}
.wsf{word-spacing:0.704000pt;}
.ws5e{word-spacing:0.762667pt;}
.ws3e{word-spacing:0.768000pt;}
.ws3a{word-spacing:0.832000pt;}
.ws41{word-spacing:0.896000pt;}
.ws42{word-spacing:1.024000pt;}
.ws4f{word-spacing:1.349333pt;}
.ws4d{word-spacing:5.866667pt;}
._14{margin-left:-17.818311pt;}
._e{margin-left:-16.485333pt;}
._17{margin-left:-13.952000pt;}
._16{margin-left:-12.881067pt;}
._6{margin-left:-11.333333pt;}
._18{margin-left:-10.391111pt;}
._7{margin-left:-9.139200pt;}
._9{margin-left:-7.699200pt;}
._a{margin-left:-6.763733pt;}
._c{margin-left:-5.546667pt;}
._10{margin-left:-4.651200pt;}
._3{margin-left:-3.144533pt;}
._0{margin-left:-2.004800pt;}
._d{margin-left:-0.899022pt;}
._2{width:1.610311pt;}
._12{width:2.666489pt;}
._1{width:3.733333pt;}
._b{width:4.944000pt;}
._13{width:6.102756pt;}
._11{width:7.003733pt;}
._f{width:7.959467pt;}
._8{width:9.066667pt;}
._4{width:10.002667pt;}
._15{width:11.474489pt;}
._19{width:13.142044pt;}
._1b{width:14.395200pt;}
._5{width:15.467733pt;}
._1a{width:18.128000pt;}
.fs6{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y116{bottom:125.673200pt;}
.y161{bottom:125.986133pt;}
.y188{bottom:126.194267pt;}
.y13c{bottom:126.217200pt;}
.yf3{bottom:126.675867pt;}
.y1d3{bottom:127.121600pt;}
.y8c{bottom:127.559467pt;}
.y1ae{bottom:127.727067pt;}
.y20{bottom:128.046800pt;}
.yd3{bottom:128.163867pt;}
.y45{bottom:128.826933pt;}
.yb1{bottom:129.034933pt;}
.y68{bottom:129.114933pt;}
.y117{bottom:129.162933pt;}
.y1f5{bottom:129.983067pt;}
.y187{bottom:141.254933pt;}
.y160{bottom:143.190133pt;}
.y1d2{bottom:143.654933pt;}
.y115{bottom:144.473200pt;}
.y13b{bottom:144.889200pt;}
.y1ad{bottom:145.723067pt;}
.yf2{bottom:145.875867pt;}
.y8b{bottom:146.487467pt;}
.y1f{bottom:146.574800pt;}
.yd2{bottom:147.235867pt;}
.yb0{bottom:147.834933pt;}
.y1f4{bottom:147.979067pt;}
.y44{bottom:148.154933pt;}
.y67{bottom:148.986933pt;}
.y1d1{bottom:160.188267pt;}
.y15f{bottom:160.394133pt;}
.y114{bottom:163.145200pt;}
.y13a{bottom:163.561200pt;}
.y1ac{bottom:163.719067pt;}
.yf1{bottom:165.075867pt;}
.y1e{bottom:165.102800pt;}
.y8a{bottom:165.415467pt;}
.y1f3{bottom:165.975067pt;}
.yd1{bottom:166.307867pt;}
.yaf{bottom:166.634933pt;}
.y43{bottom:167.482933pt;}
.y66{bottom:168.858933pt;}
.y186{bottom:169.437600pt;}
.y1d0{bottom:176.721600pt;}
.y15e{bottom:177.598133pt;}
.y1ab{bottom:181.715067pt;}
.y113{bottom:181.817200pt;}
.y139{bottom:182.233200pt;}
.y1d{bottom:183.630800pt;}
.y1f2{bottom:183.971067pt;}
.yf0{bottom:184.275867pt;}
.y89{bottom:184.343467pt;}
.yd0{bottom:185.379867pt;}
.yae{bottom:185.434933pt;}
.y42{bottom:186.810933pt;}
.y185{bottom:187.169600pt;}
.y65{bottom:188.730933pt;}
.y15d{bottom:194.802133pt;}
.y1aa{bottom:199.711067pt;}
.y112{bottom:200.489200pt;}
.y138{bottom:200.905200pt;}
.y1f1{bottom:201.967067pt;}
.y88{bottom:203.271467pt;}
.yef{bottom:203.475867pt;}
.yad{bottom:204.234933pt;}
.ycf{bottom:204.451867pt;}
.y184{bottom:204.901600pt;}
.y41{bottom:206.138933pt;}
.y64{bottom:208.602933pt;}
.y1c{bottom:209.723200pt;}
.y15c{bottom:212.006133pt;}
.y1cf{bottom:212.998933pt;}
.y1a9{bottom:217.707067pt;}
.y111{bottom:219.161200pt;}
.y137{bottom:219.577200pt;}
.y1f0{bottom:219.963067pt;}
.y87{bottom:222.199467pt;}
.y183{bottom:222.633600pt;}
.yee{bottom:222.675867pt;}
.yac{bottom:223.034933pt;}
.yce{bottom:223.523867pt;}
.y40{bottom:225.466933pt;}
.y63{bottom:228.474933pt;}
.y15b{bottom:229.210133pt;}
.y1ce{bottom:231.126933pt;}
.y1a8{bottom:235.703067pt;}
.y110{bottom:237.833200pt;}
.y1ef{bottom:237.959067pt;}
.y136{bottom:238.249200pt;}
.y182{bottom:240.365600pt;}
.y86{bottom:241.127467pt;}
.yab{bottom:241.834933pt;}
.yed{bottom:241.875867pt;}
.ycd{bottom:242.595867pt;}
.y3f{bottom:244.794933pt;}
.y15a{bottom:246.414133pt;}
.y62{bottom:248.346933pt;}
.y1cd{bottom:249.254933pt;}
.y1a7{bottom:253.699067pt;}
.y1ee{bottom:255.955067pt;}
.y10f{bottom:256.505200pt;}
.y135{bottom:256.921200pt;}
.y181{bottom:258.097600pt;}
.y85{bottom:260.055467pt;}
.y1b{bottom:260.236533pt;}
.yaa{bottom:260.634933pt;}
.yec{bottom:261.075867pt;}
.ycc{bottom:261.667867pt;}
.y159{bottom:263.618133pt;}
.y3e{bottom:264.122933pt;}
.y61{bottom:268.218933pt;}
.y1a6{bottom:271.695067pt;}
.y1ed{bottom:273.951067pt;}
.y10e{bottom:275.177200pt;}
.y134{bottom:275.593200pt;}
.y180{bottom:275.829600pt;}
.y1a{bottom:277.440533pt;}
.y84{bottom:278.983467pt;}
.ya9{bottom:279.434933pt;}
.yeb{bottom:280.275867pt;}
.ycb{bottom:280.739867pt;}
.y158{bottom:280.822133pt;}
.y1cc{bottom:281.308267pt;}
.y3d{bottom:283.450933pt;}
.y60{bottom:288.090933pt;}
.y1a5{bottom:289.691067pt;}
.y1ec{bottom:291.947067pt;}
.y17f{bottom:293.561600pt;}
.y10d{bottom:293.849200pt;}
.y133{bottom:294.265200pt;}
.y19{bottom:294.644533pt;}
.y83{bottom:297.911467pt;}
.y157{bottom:298.026133pt;}
.ya8{bottom:298.234933pt;}
.y1cb{bottom:299.436267pt;}
.yea{bottom:299.475867pt;}
.yca{bottom:299.811867pt;}
.y3c{bottom:302.778933pt;}
.y1a4{bottom:307.687067pt;}
.y5f{bottom:307.962933pt;}
.y1eb{bottom:309.943067pt;}
.y17e{bottom:311.293600pt;}
.y18{bottom:311.848533pt;}
.y10c{bottom:312.521200pt;}
.y132{bottom:312.937200pt;}
.y156{bottom:315.230133pt;}
.y82{bottom:316.839467pt;}
.ya7{bottom:317.034933pt;}
.y1ca{bottom:317.564267pt;}
.ye9{bottom:318.675867pt;}
.yc9{bottom:318.883867pt;}
.y3b{bottom:322.106933pt;}
.y1a3{bottom:325.683067pt;}
.y5e{bottom:327.834933pt;}
.y1ea{bottom:327.939067pt;}
.y17d{bottom:329.025600pt;}
.y17{bottom:329.052533pt;}
.y10b{bottom:331.193200pt;}
.y131{bottom:331.609200pt;}
.y155{bottom:332.434133pt;}
.y1c9{bottom:335.692267pt;}
.y81{bottom:335.767467pt;}
.ya6{bottom:335.834933pt;}
.ye8{bottom:337.875867pt;}
.yc8{bottom:337.955867pt;}
.y3a{bottom:341.434933pt;}
.y1a2{bottom:343.679067pt;}
.y1e9{bottom:345.935067pt;}
.y16{bottom:346.248533pt;}
.y17c{bottom:346.757600pt;}
.y5d{bottom:347.706933pt;}
.y154{bottom:349.638133pt;}
.y10a{bottom:349.865200pt;}
.y130{bottom:350.281200pt;}
.y1c8{bottom:353.820267pt;}
.ya5{bottom:354.634933pt;}
.y80{bottom:354.695467pt;}
.yc7{bottom:357.027867pt;}
.ye7{bottom:357.075867pt;}
.y39{bottom:360.762933pt;}
.y1a1{bottom:361.675067pt;}
.y15{bottom:363.452533pt;}
.y1e8{bottom:363.931067pt;}
.y17b{bottom:364.489600pt;}
.y153{bottom:366.842133pt;}
.y5c{bottom:367.578933pt;}
.y109{bottom:368.537200pt;}
.y12f{bottom:368.953200pt;}
.y1c7{bottom:371.948267pt;}
.ya4{bottom:373.434933pt;}
.y7f{bottom:373.623467pt;}
.yc6{bottom:376.099867pt;}
.ye6{bottom:376.275867pt;}
.y1a0{bottom:379.671067pt;}
.y38{bottom:380.090933pt;}
.y14{bottom:380.656533pt;}
.y1e7{bottom:381.927067pt;}
.y17a{bottom:382.221600pt;}
.y152{bottom:384.046133pt;}
.y108{bottom:387.209200pt;}
.y5b{bottom:387.450933pt;}
.y12e{bottom:387.625200pt;}
.y1c6{bottom:390.076267pt;}
.ya3{bottom:392.234933pt;}
.y7e{bottom:392.551467pt;}
.y20d{bottom:392.588267pt;}
.yc5{bottom:395.171867pt;}
.ye5{bottom:395.475867pt;}
.y19f{bottom:397.667067pt;}
.y37{bottom:399.418933pt;}
.y1e6{bottom:399.923067pt;}
.y179{bottom:399.953600pt;}
.y151{bottom:401.250133pt;}
.y13{bottom:405.415600pt;}
.y12d{bottom:406.297200pt;}
.y5a{bottom:407.322933pt;}
.y1c5{bottom:408.204267pt;}
.y20c{bottom:408.588267pt;}
.ya2{bottom:411.034933pt;}
.y7d{bottom:411.479467pt;}
.y107{bottom:413.434933pt;}
.yc4{bottom:414.243867pt;}
.ye4{bottom:414.675867pt;}
.y19e{bottom:415.663067pt;}
.y178{bottom:417.685600pt;}
.y1e5{bottom:417.919067pt;}
.y36{bottom:418.746933pt;}
.y20b{bottom:424.588267pt;}
.y12c{bottom:424.969200pt;}
.y150{bottom:426.009200pt;}
.y1c4{bottom:426.332267pt;}
.y59{bottom:427.194933pt;}
.ya1{bottom:429.834933pt;}
.y7c{bottom:430.407467pt;}
.yc3{bottom:433.315867pt;}
.y19d{bottom:433.659067pt;}
.ye3{bottom:433.875867pt;}
.y177{bottom:435.417600pt;}
.y1e4{bottom:435.915067pt;}
.y35{bottom:438.074933pt;}
.y20a{bottom:440.588267pt;}
.y12{bottom:442.991600pt;}
.y12b{bottom:443.641200pt;}
.y1c3{bottom:444.460267pt;}
.y58{bottom:447.066933pt;}
.ya0{bottom:448.634933pt;}
.y7b{bottom:449.335467pt;}
.y19c{bottom:451.655067pt;}
.yc2{bottom:452.387867pt;}
.ye2{bottom:453.075867pt;}
.y176{bottom:453.149600pt;}
.y1e3{bottom:453.911067pt;}
.y34{bottom:457.402933pt;}
.y11{bottom:460.195600pt;}
.y12a{bottom:462.313200pt;}
.y1c2{bottom:462.697600pt;}
.y57{bottom:466.938933pt;}
.y9f{bottom:467.434933pt;}
.y7a{bottom:468.263467pt;}
.y19b{bottom:469.651067pt;}
.y106{bottom:469.866933pt;}
.y175{bottom:470.881600pt;}
.yc1{bottom:471.459867pt;}
.y1e2{bottom:471.907067pt;}
.ye1{bottom:472.275867pt;}
.y14f{bottom:475.034933pt;}
.y209{bottom:475.780267pt;}
.y33{bottom:476.730933pt;}
.y10{bottom:477.399600pt;}
.y1c1{bottom:480.825600pt;}
.y129{bottom:480.985200pt;}
.y9e{bottom:486.234933pt;}
.y56{bottom:486.810933pt;}
.y79{bottom:487.191467pt;}
.y19a{bottom:487.647067pt;}
.y105{bottom:488.538933pt;}
.y174{bottom:488.613600pt;}
.y1e1{bottom:489.903067pt;}
.yc0{bottom:490.531867pt;}
.ye0{bottom:491.475867pt;}
.y208{bottom:492.984267pt;}
.y14e{bottom:493.434933pt;}
.yf{bottom:494.603600pt;}
.y32{bottom:496.058933pt;}
.y1c0{bottom:498.953600pt;}
.y128{bottom:499.657200pt;}
.y9d{bottom:505.034933pt;}
.y199{bottom:505.643067pt;}
.y78{bottom:506.119467pt;}
.y173{bottom:506.345600pt;}
.y55{bottom:506.682933pt;}
.y104{bottom:507.210933pt;}
.y1e0{bottom:507.899067pt;}
.ybf{bottom:509.603867pt;}
.y207{bottom:510.188267pt;}
.ydf{bottom:510.675867pt;}
.ye{bottom:511.807600pt;}
.y14d{bottom:511.834933pt;}
.y31{bottom:515.386933pt;}
.y1bf{bottom:517.081600pt;}
.y127{bottom:518.329200pt;}
.y198{bottom:523.639067pt;}
.y9c{bottom:523.834933pt;}
.y172{bottom:524.077600pt;}
.y77{bottom:525.047467pt;}
.y103{bottom:525.882933pt;}
.y1df{bottom:525.895067pt;}
.y54{bottom:526.554933pt;}
.y206{bottom:527.388267pt;}
.ybe{bottom:528.675867pt;}
.yd{bottom:529.011600pt;}
.yde{bottom:529.875867pt;}
.y14c{bottom:530.234933pt;}
.y30{bottom:534.714933pt;}
.y1be{bottom:535.209600pt;}
.y126{bottom:537.001200pt;}
.y205{bottom:540.753600pt;}
.y197{bottom:541.635067pt;}
.y171{bottom:541.809600pt;}
.y9b{bottom:542.634933pt;}
.y1de{bottom:543.891067pt;}
.y76{bottom:543.975467pt;}
.y102{bottom:544.554933pt;}
.yc{bottom:546.215600pt;}
.y53{bottom:546.426933pt;}
.y14b{bottom:548.634933pt;}
.ydd{bottom:549.075867pt;}
.y1bd{bottom:553.337600pt;}
.y2f{bottom:554.042933pt;}
.ybd{bottom:555.301600pt;}
.y125{bottom:555.673200pt;}
.y204{bottom:558.353600pt;}
.y170{bottom:559.541600pt;}
.y196{bottom:559.631067pt;}
.y9a{bottom:561.434933pt;}
.y1dd{bottom:561.887067pt;}
.y75{bottom:562.903467pt;}
.y101{bottom:563.226933pt;}
.y52{bottom:566.298933pt;}
.y14a{bottom:567.034933pt;}
.ydc{bottom:568.275867pt;}
.yb{bottom:570.974667pt;}
.y1bc{bottom:571.465600pt;}
.y2e{bottom:573.370933pt;}
.y124{bottom:574.345200pt;}
.y203{bottom:575.953600pt;}
.y16f{bottom:577.273600pt;}
.y195{bottom:577.627067pt;}
.y1dc{bottom:579.883067pt;}
.y99{bottom:580.234933pt;}
.y74{bottom:581.831467pt;}
.y100{bottom:581.898933pt;}
.y149{bottom:585.434933pt;}
.y51{bottom:586.170933pt;}
.ydb{bottom:587.475867pt;}
.y1bb{bottom:589.593600pt;}
.y2d{bottom:592.698933pt;}
.y123{bottom:593.017200pt;}
.y202{bottom:593.553600pt;}
.y16e{bottom:595.005600pt;}
.y194{bottom:595.623067pt;}
.y1db{bottom:597.879067pt;}
.y98{bottom:599.034933pt;}
.yff{bottom:600.570933pt;}
.y73{bottom:600.759467pt;}
.y148{bottom:603.834933pt;}
.y50{bottom:606.042933pt;}
.yda{bottom:606.675867pt;}
.y1ba{bottom:607.853600pt;}
.y201{bottom:611.153600pt;}
.y122{bottom:611.689200pt;}
.y2c{bottom:612.026933pt;}
.y16d{bottom:612.737600pt;}
.y193{bottom:613.619067pt;}
.ybc{bottom:614.842933pt;}
.ya{bottom:615.633333pt;}
.y1da{bottom:615.875067pt;}
.y97{bottom:617.834933pt;}
.yfe{bottom:619.242933pt;}
.y72{bottom:619.687467pt;}
.y147{bottom:622.234933pt;}
.yd9{bottom:625.875867pt;}
.y4f{bottom:625.914933pt;}
.y1b9{bottom:626.113600pt;}
.y200{bottom:629.017600pt;}
.y121{bottom:630.361200pt;}
.y16c{bottom:630.469600pt;}
.y2b{bottom:631.354933pt;}
.y192{bottom:631.615067pt;}
.y9{bottom:632.837333pt;}
.y1d9{bottom:633.475067pt;}
.ybb{bottom:633.914933pt;}
.y96{bottom:636.634933pt;}
.yfd{bottom:637.914933pt;}
.y71{bottom:638.615467pt;}
.y146{bottom:640.634933pt;}
.y1b8{bottom:644.241600pt;}
.yd8{bottom:645.075867pt;}
.y4e{bottom:645.786933pt;}
.y1ff{bottom:646.881600pt;}
.y16b{bottom:648.201600pt;}
.y120{bottom:649.033200pt;}
.y191{bottom:649.347067pt;}
.y8{bottom:650.041333pt;}
.y2a{bottom:650.682933pt;}
.y1d8{bottom:651.075067pt;}
.yba{bottom:652.986933pt;}
.y95{bottom:655.434933pt;}
.yfc{bottom:656.586933pt;}
.y70{bottom:657.543467pt;}
.y145{bottom:659.034933pt;}
.y1b7{bottom:662.369600pt;}
.yd7{bottom:664.275867pt;}
.y1fe{bottom:664.745600pt;}
.y4d{bottom:665.658933pt;}
.y16a{bottom:665.933600pt;}
.y190{bottom:667.079067pt;}
.y11f{bottom:667.705200pt;}
.y1d7{bottom:668.675067pt;}
.y29{bottom:670.010933pt;}
.yb9{bottom:672.058933pt;}
.y94{bottom:674.234933pt;}
.yfb{bottom:675.258933pt;}
.y6f{bottom:676.471467pt;}
.y144{bottom:677.434933pt;}
.y1b6{bottom:680.497600pt;}
.y1fd{bottom:682.609600pt;}
.yd6{bottom:683.475867pt;}
.y169{bottom:683.665600pt;}
.y18f{bottom:685.083067pt;}
.y4c{bottom:685.530933pt;}
.y7{bottom:685.756000pt;}
.y1d6{bottom:686.275067pt;}
.y11e{bottom:686.377200pt;}
.y28{bottom:689.338933pt;}
.yb8{bottom:691.130933pt;}
.y93{bottom:693.034933pt;}
.yfa{bottom:693.930933pt;}
.y6e{bottom:695.399467pt;}
.y143{bottom:695.834933pt;}
.y1b5{bottom:698.625600pt;}
.y1fc{bottom:700.473600pt;}
.y168{bottom:701.397600pt;}
.y18e{bottom:703.079067pt;}
.y1d5{bottom:703.875067pt;}
.y11d{bottom:705.049200pt;}
.y4b{bottom:705.402933pt;}
.y27{bottom:708.666933pt;}
.yb7{bottom:710.202933pt;}
.yd5{bottom:710.234933pt;}
.y92{bottom:711.834933pt;}
.y6{bottom:712.298667pt;}
.yf9{bottom:712.602933pt;}
.y142{bottom:714.234933pt;}
.y6d{bottom:714.327467pt;}
.y1b4{bottom:716.753600pt;}
.y1fb{bottom:718.337600pt;}
.y167{bottom:719.129600pt;}
.y18d{bottom:721.075067pt;}
.y1d4{bottom:721.475067pt;}
.y11c{bottom:723.721200pt;}
.y4a{bottom:725.274933pt;}
.y26{bottom:727.994933pt;}
.yb6{bottom:729.274933pt;}
.yd4{bottom:729.434933pt;}
.y91{bottom:730.634933pt;}
.yf8{bottom:731.274933pt;}
.y141{bottom:732.634933pt;}
.y6c{bottom:733.255467pt;}
.y1b3{bottom:734.881600pt;}
.y1fa{bottom:736.201600pt;}
.y166{bottom:736.861600pt;}
.y5{bottom:738.841333pt;}
.y11b{bottom:742.393200pt;}
.y49{bottom:745.146933pt;}
.y25{bottom:747.322933pt;}
.yb5{bottom:748.346933pt;}
.y90{bottom:749.434933pt;}
.yf7{bottom:749.946933pt;}
.y140{bottom:751.034933pt;}
.y6b{bottom:752.183467pt;}
.y1b2{bottom:753.009600pt;}
.y1f9{bottom:754.065600pt;}
.y165{bottom:754.593600pt;}
.y18c{bottom:754.941733pt;}
.y11a{bottom:761.065200pt;}
.y48{bottom:765.018933pt;}
.y24{bottom:766.650933pt;}
.yb4{bottom:767.418933pt;}
.y8f{bottom:768.234933pt;}
.yf6{bottom:768.618933pt;}
.y13f{bottom:769.434933pt;}
.y1b1{bottom:771.137600pt;}
.y1f8{bottom:771.929600pt;}
.y164{bottom:772.325600pt;}
.y6a{bottom:778.682933pt;}
.y119{bottom:779.737200pt;}
.y47{bottom:784.890933pt;}
.y23{bottom:785.978933pt;}
.yb3{bottom:786.490933pt;}
.y8e{bottom:787.034933pt;}
.yf5{bottom:787.290933pt;}
.y4{bottom:787.294933pt;}
.y13e{bottom:787.834933pt;}
.y18b{bottom:788.269733pt;}
.y1b0{bottom:789.265600pt;}
.y1f7{bottom:789.793600pt;}
.y163{bottom:790.057600pt;}
.y118{bottom:798.409200pt;}
.y69{bottom:801.658933pt;}
.y46{bottom:804.762933pt;}
.y22{bottom:805.306933pt;}
.yb2{bottom:805.562933pt;}
.y8d{bottom:805.834933pt;}
.yf4{bottom:805.962933pt;}
.y13d{bottom:806.234933pt;}
.y18a{bottom:807.341733pt;}
.y1af{bottom:807.393600pt;}
.y1f6{bottom:807.657600pt;}
.y162{bottom:807.789600pt;}
.y3{bottom:810.188267pt;}
.y21{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.y189{bottom:826.408400pt;}
.h8{height:31.700521pt;}
.h2{height:36.229167pt;}
.h9{height:42.656250pt;}
.ha{height:43.022135pt;}
.h4{height:45.286458pt;}
.h3{height:49.815104pt;}
.hc{height:51.158396pt;}
.hb{height:51.563729pt;}
.h7{height:51.627729pt;}
.h6{height:54.343750pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x5{left:86.929200pt;}
.x7{left:105.826800pt;}
.x1{left:120.074800pt;}
.x8{left:124.732133pt;}
.x6{left:133.929200pt;}
.xb{left:158.150000pt;}
.xc{left:208.670000pt;}
.x4{left:210.216400pt;}
.xa{left:453.315867pt;}
.x9{left:461.283200pt;}
.x2{left:508.590533pt;}
}




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