
    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_ab1052ab8052570939782616.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e5aea59c7afd4288c042c2d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_82c6a36eba2879663772fa05.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_183c31cc454c9a3854ca6d1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{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;}
.ls12{letter-spacing:-1.640160px;}
.ls1b{letter-spacing:-1.451520px;}
.ls11{letter-spacing:-1.398960px;}
.ls1a{letter-spacing:-1.175040px;}
.ls31{letter-spacing:-1.135440px;}
.lse{letter-spacing:-1.013040px;}
.ls41{letter-spacing:-0.967680px;}
.ls3d{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.691200px;}
.ls4a{letter-spacing:-0.657360px;}
.ls4d{letter-spacing:-0.597600px;}
.ls2c{letter-spacing:-0.594000px;}
.ls4c{letter-spacing:-0.537840px;}
.ls14{letter-spacing:-0.483840px;}
.ls4e{letter-spacing:-0.478080px;}
.ls15{letter-spacing:-0.414720px;}
.ls33{letter-spacing:-0.358560px;}
.lsd{letter-spacing:-0.289440px;}
.ls19{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.276480px;}
.ls34{letter-spacing:-0.239040px;}
.ls1d{letter-spacing:-0.207360px;}
.ls28{letter-spacing:-0.144000px;}
.ls4b{letter-spacing:-0.119520px;}
.ls23{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.048240px;}
.ls3{letter-spacing:0.053280px;}
.ls51{letter-spacing:0.059760px;}
.ls25{letter-spacing:0.072000px;}
.ls50{letter-spacing:0.101592px;}
.ls2d{letter-spacing:0.119520px;}
.ls43{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.178560px;}
.ls2e{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.207360px;}
.ls2a{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.235008px;}
.ls44{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.240480px;}
.ls0{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.276480px;}
.lsf{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.460080px;}
.ls3e{letter-spacing:0.576000px;}
.ls3c{letter-spacing:0.622080px;}
.ls26{letter-spacing:0.691200px;}
.ls6{letter-spacing:0.857520px;}
.ls5{letter-spacing:0.882000px;}
.ls47{letter-spacing:0.896400px;}
.ls46{letter-spacing:0.914328px;}
.ls45{letter-spacing:0.938232px;}
.ls42{letter-spacing:1.444608px;}
.ls1c{letter-spacing:1.451520px;}
.ls40{letter-spacing:1.555200px;}
.ls4f{letter-spacing:1.613520px;}
.ls49{letter-spacing:1.637424px;}
.ls16{letter-spacing:2.142720px;}
.ls2f{letter-spacing:2.330640px;}
.ls3f{letter-spacing:2.350080px;}
.ls27{letter-spacing:2.847744px;}
.ls20{letter-spacing:2.882304px;}
.ls7{letter-spacing:2.903040px;}
.ls36{letter-spacing:3.566592px;}
.ls21{letter-spacing:3.580416px;}
.ls30{letter-spacing:3.594240px;}
.lsa{letter-spacing:4.285440px;}
.ls9{letter-spacing:4.354560px;}
.ls18{letter-spacing:4.361472px;}
.ls2b{letter-spacing:5.045760px;}
.ls29{letter-spacing:5.059584px;}
.ls1f{letter-spacing:5.736960px;}
.ls1e{letter-spacing:5.951232px;}
.ls38{letter-spacing:6.421248px;}
.ls39{letter-spacing:6.497280px;}
.ls3a{letter-spacing:7.948800px;}
.ls17{letter-spacing:8.640000px;}
.ls48{letter-spacing:13.864320px;}
.ls37{letter-spacing:15.137280px;}
.ls24{letter-spacing:36.910080px;}
.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;}
}
.ws75{word-spacing:-18.576000px;}
.ws27{word-spacing:-18.000000px;}
.ws7e{word-spacing:-17.928000px;}
.ws4d{word-spacing:-17.856000px;}
.ws26{word-spacing:-17.712000px;}
.ws29{word-spacing:-17.556480px;}
.ws25{word-spacing:-17.487360px;}
.ws28{word-spacing:-17.280000px;}
.ws40{word-spacing:-17.072640px;}
.ws74{word-spacing:-17.064000px;}
.ws44{word-spacing:-17.003520px;}
.ws6{word-spacing:-16.865280px;}
.ws5{word-spacing:-16.796160px;}
.ws4{word-spacing:-16.588800px;}
.ws7f{word-spacing:-15.298560px;}
.ws90{word-spacing:-15.179040px;}
.ws59{word-spacing:-15.059520px;}
.wsb3{word-spacing:-14.999760px;}
.ws0{word-spacing:-14.940000px;}
.ws8f{word-spacing:-14.880240px;}
.ws61{word-spacing:-14.700960px;}
.ws8e{word-spacing:-14.581440px;}
.ws8b{word-spacing:-14.282640px;}
.ws60{word-spacing:-13.804560px;}
.ws50{word-spacing:-13.716000px;}
.ws8c{word-spacing:-13.505760px;}
.ws8d{word-spacing:-13.446000px;}
.ws58{word-spacing:-12.906000px;}
.ws3{word-spacing:-11.770560px;}
.ws1{word-spacing:-11.046960px;}
.ws2{word-spacing:-10.661040px;}
.ws24{word-spacing:-4.561920px;}
.ws5d{word-spacing:-4.492800px;}
.ws23{word-spacing:-4.285440px;}
.ws47{word-spacing:-3.870720px;}
.ws2b{word-spacing:-3.801600px;}
.wsb7{word-spacing:-3.764880px;}
.ws2c{word-spacing:-3.594240px;}
.wsb6{word-spacing:-3.346560px;}
.ws3d{word-spacing:-3.179520px;}
.ws51{word-spacing:-3.110400px;}
.wsc1{word-spacing:-3.047760px;}
.ws2f{word-spacing:-2.903040px;}
.wsbf{word-spacing:-2.808720px;}
.wsa1{word-spacing:-2.629440px;}
.ws30{word-spacing:-2.419200px;}
.ws1c{word-spacing:-2.350080px;}
.wsb8{word-spacing:-2.330640px;}
.ws9f{word-spacing:-2.151360px;}
.ws13{word-spacing:-2.142720px;}
.wsc0{word-spacing:-2.091600px;}
.wsd2{word-spacing:-1.912320px;}
.ws1d{word-spacing:-1.728000px;}
.wsb9{word-spacing:-1.613520px;}
.ws1a{word-spacing:-1.451520px;}
.ws83{word-spacing:-1.434240px;}
.ws64{word-spacing:-1.374480px;}
.wsa0{word-spacing:-1.195200px;}
.ws7d{word-spacing:-1.175040px;}
.ws2a{word-spacing:-0.967680px;}
.ws3c{word-spacing:-0.898560px;}
.ws6b{word-spacing:-0.896400px;}
.ws94{word-spacing:-0.776880px;}
.ws3a{word-spacing:-0.760320px;}
.ws82{word-spacing:-0.717120px;}
.ws19{word-spacing:-0.691200px;}
.ws9a{word-spacing:-0.657360px;}
.wsab{word-spacing:-0.478080px;}
.ws87{word-spacing:-0.358560px;}
.ws15{word-spacing:-0.276480px;}
.ws88{word-spacing:-0.239040px;}
.ws16{word-spacing:-0.207360px;}
.wsa{word-spacing:-0.179280px;}
.ws99{word-spacing:-0.119520px;}
.wsc{word-spacing:-0.048240px;}
.ws7{word-spacing:0.000000px;}
.ws5f{word-spacing:0.059760px;}
.ws49{word-spacing:0.072000px;}
.ws95{word-spacing:0.119520px;}
.ws56{word-spacing:0.207360px;}
.ws62{word-spacing:0.239040px;}
.ws48{word-spacing:0.276480px;}
.ws8{word-spacing:0.289440px;}
.wsa8{word-spacing:0.358560px;}
.ws1b{word-spacing:0.414720px;}
.wsba{word-spacing:0.418320px;}
.wsb1{word-spacing:0.478080px;}
.ws37{word-spacing:0.483840px;}
.ws65{word-spacing:0.537840px;}
.wsae{word-spacing:0.597600px;}
.ws11{word-spacing:0.691200px;}
.ws96{word-spacing:0.717120px;}
.ws6a{word-spacing:0.776880px;}
.wsc8{word-spacing:0.956160px;}
.ws7c{word-spacing:0.967680px;}
.wsb{word-spacing:1.013040px;}
.ws79{word-spacing:1.105920px;}
.wsf{word-spacing:1.175040px;}
.ws9{word-spacing:1.206000px;}
.ws38{word-spacing:1.244160px;}
.ws84{word-spacing:1.254960px;}
.ws78{word-spacing:1.382400px;}
.ws39{word-spacing:1.451520px;}
.ws81{word-spacing:1.494000px;}
.wsd{word-spacing:1.640160px;}
.ws10{word-spacing:1.866240px;}
.ws5e{word-spacing:1.935360px;}
.ws68{word-spacing:1.972080px;}
.ws12{word-spacing:2.142720px;}
.ws9b{word-spacing:2.211120px;}
.wsa4{word-spacing:2.390400px;}
.ws2d{word-spacing:2.557440px;}
.ws9c{word-spacing:2.569680px;}
.ws42{word-spacing:2.626560px;}
.ws69{word-spacing:2.689200px;}
.ws5a{word-spacing:2.695680px;}
.ws5c{word-spacing:2.833920px;}
.ws2e{word-spacing:2.880000px;}
.ws1f{word-spacing:2.903040px;}
.ws63{word-spacing:2.928240px;}
.ws1e{word-spacing:3.317760px;}
.ws4c{word-spacing:3.386880px;}
.ws89{word-spacing:3.585600px;}
.ws22{word-spacing:3.594240px;}
.ws4b{word-spacing:3.600000px;}
.wsb0{word-spacing:3.645360px;}
.wsa7{word-spacing:3.824640px;}
.ws18{word-spacing:4.078080px;}
.wsc5{word-spacing:4.123440px;}
.ws17{word-spacing:4.147200px;}
.ws71{word-spacing:4.285440px;}
.ws14{word-spacing:4.354560px;}
.wsaf{word-spacing:4.362480px;}
.wsc4{word-spacing:4.541760px;}
.ws4a{word-spacing:4.608000px;}
.ws6c{word-spacing:4.631040px;}
.ws46{word-spacing:4.769280px;}
.ws67{word-spacing:4.840560px;}
.ws3e{word-spacing:5.045760px;}
.ws72{word-spacing:5.079600px;}
.ws80{word-spacing:5.322240px;}
.ws3f{word-spacing:5.460480px;}
.ws8a{word-spacing:5.557680px;}
.ws3b{word-spacing:5.736960px;}
.ws73{word-spacing:5.796720px;}
.ws21{word-spacing:6.220800px;}
.wsad{word-spacing:6.274800px;}
.ws55{word-spacing:6.289920px;}
.ws45{word-spacing:6.428160px;}
.ws20{word-spacing:6.497280px;}
.wsac{word-spacing:6.513840px;}
.ws52{word-spacing:6.912000px;}
.ws76{word-spacing:6.981120px;}
.wsb5{word-spacing:7.051680px;}
.ws43{word-spacing:7.188480px;}
.ws77{word-spacing:7.464960px;}
.ws53{word-spacing:7.603200px;}
.ws33{word-spacing:7.672320px;}
.ws54{word-spacing:7.879680px;}
.ws36{word-spacing:7.920000px;}
.ws34{word-spacing:7.948800px;}
.ws35{word-spacing:8.208000px;}
.ws6d{word-spacing:8.363520px;}
.wse{word-spacing:8.640000px;}
.ws31{word-spacing:9.054720px;}
.wsca{word-spacing:9.203040px;}
.wscb{word-spacing:9.322560px;}
.ws32{word-spacing:9.331200px;}
.ws93{word-spacing:9.920160px;}
.ws91{word-spacing:10.159200px;}
.wsc9{word-spacing:10.338480px;}
.ws92{word-spacing:10.637280px;}
.ws57{word-spacing:10.782720px;}
.ws5b{word-spacing:11.543040px;}
.wsa6{word-spacing:13.505760px;}
.ws6f{word-spacing:14.169600px;}
.ws6e{word-spacing:14.376960px;}
.wsa5{word-spacing:14.461920px;}
.ws70{word-spacing:14.653440px;}
.ws4e{word-spacing:14.929920px;}
.wsbc{word-spacing:14.940000px;}
.ws4f{word-spacing:15.137280px;}
.wsbb{word-spacing:15.358320px;}
.ws7a{word-spacing:16.312320px;}
.ws7b{word-spacing:16.588800px;}
.wsd3{word-spacing:17.808480px;}
.ws66{word-spacing:20.183040px;}
.wsc2{word-spacing:20.198880px;}
.wscf{word-spacing:21.453840px;}
.wsce{word-spacing:22.051440px;}
.wsb4{word-spacing:23.605200px;}
.ws41{word-spacing:24.192000px;}
.wsbe{word-spacing:24.322320px;}
.wsbd{word-spacing:24.561360px;}
.wsa3{word-spacing:26.712720px;}
.wsd1{word-spacing:31.493520px;}
.wsd0{word-spacing:32.628960px;}
.wscc{word-spacing:41.832000px;}
.wscd{word-spacing:42.011280px;}
.ws9d{word-spacing:46.612800px;}
.ws9e{word-spacing:46.732320px;}
.ws86{word-spacing:63.584640px;}
.ws85{word-spacing:63.883440px;}
.wsc6{word-spacing:68.245920px;}
.wsc7{word-spacing:69.142320px;}
.wsa2{word-spacing:79.002720px;}
.ws97{word-spacing:216.092160px;}
.ws98{word-spacing:216.570240px;}
.wsaa{word-spacing:218.721600px;}
.wsa9{word-spacing:218.960640px;}
.wsc3{word-spacing:291.449520px;}
.wsb2{word-spacing:379.236960px;}
._9{margin-left:-4.122288px;}
._6{margin-left:-2.950272px;}
._1{margin-left:-1.782576px;}
._0{width:1.423008px;}
._2{width:2.561544px;}
._3{width:4.354560px;}
._b{width:5.601744px;}
._5{width:7.021152px;}
._4{width:8.432640px;}
._8{width:10.243728px;}
._7{width:15.039072px;}
._12{width:17.519328px;}
._a{width:20.488032px;}
._10{width:23.580144px;}
._e{width:47.654208px;}
._c{width:63.207648px;}
._f{width:80.087040px;}
._d{width:215.853120px;}
._11{width:493.979040px;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:92.069280px;}
.y46{bottom:92.227530px;}
.y15c{bottom:92.877300px;}
.y63{bottom:94.844160px;}
.y11b{bottom:95.579100px;}
.y184{bottom:101.334600px;}
.y1aa{bottom:102.054600px;}
.yd0{bottom:104.022540px;}
.yf9{bottom:104.391360px;}
.y143{bottom:107.285760px;}
.y137{bottom:109.425600px;}
.y15b{bottom:110.880000px;}
.y20{bottom:113.496480px;}
.y45{bottom:113.654730px;}
.yac{bottom:114.107040px;}
.y11a{bottom:114.298920px;}
.y79{bottom:115.512480px;}
.y95{bottom:116.179050px;}
.y62{bottom:116.271360px;}
.y183{bottom:119.337300px;}
.y1a9{bottom:120.057300px;}
.ycf{bottom:121.128840px;}
.yf8{bottom:124.194240px;}
.y142{bottom:128.712960px;}
.y136{bottom:130.852800px;}
.y119{bottom:132.839460px;}
.yab{bottom:133.909920px;}
.y1f{bottom:134.923680px;}
.y44{bottom:135.081930px;}
.y78{bottom:136.939680px;}
.y182{bottom:137.340000px;}
.y94{bottom:137.606250px;}
.y61{bottom:137.698560px;}
.y15a{bottom:137.863800px;}
.y1a8{bottom:138.060000px;}
.yce{bottom:138.414420px;}
.yf7{bottom:143.997120px;}
.y141{bottom:150.140160px;}
.y118{bottom:151.380000px;}
.y135{bottom:152.280000px;}
.yaa{bottom:153.712800px;}
.ycd{bottom:155.700000px;}
.y159{bottom:155.866500px;}
.y1e{bottom:156.350880px;}
.y43{bottom:156.509130px;}
.y77{bottom:158.366880px;}
.y93{bottom:159.033450px;}
.yf6{bottom:163.800000px;}
.y181{bottom:164.340000px;}
.y1a7{bottom:165.054600px;}
.y60{bottom:168.111360px;}
.y140{bottom:171.567360px;}
.ya9{bottom:173.515680px;}
.y158{bottom:173.869200px;}
.y1d{bottom:177.778080px;}
.y76{bottom:179.794080px;}
.y92{bottom:180.460650px;}
.y117{bottom:181.029600px;}
.y180{bottom:182.329920px;}
.ycc{bottom:182.485290px;}
.y1a6{bottom:183.057300px;}
.y42{bottom:186.749130px;}
.y134{bottom:189.000000px;}
.y5f{bottom:189.538560px;}
.y157{bottom:191.871900px;}
.y13f{bottom:192.994560px;}
.yf5{bottom:196.738560px;}
.y1c{bottom:199.015200px;}
.y17f{bottom:200.332620px;}
.y116{bottom:200.832480px;}
.y1a5{bottom:201.060000px;}
.y75{bottom:201.221280px;}
.y91{bottom:201.887850px;}
.ycb{bottom:202.288170px;}
.ya8{bottom:205.369920px;}
.y41{bottom:208.176330px;}
.y156{bottom:209.874600px;}
.y5e{bottom:210.965760px;}
.yf4{bottom:215.279100px;}
.y17e{bottom:218.335320px;}
.y1b{bottom:220.442400px;}
.y115{bottom:220.808160px;}
.yca{bottom:222.263850px;}
.y13e{bottom:223.407360px;}
.y155{bottom:227.877300px;}
.y1a4{bottom:228.051900px;}
.y40{bottom:229.603530px;}
.y74{bottom:231.634080px;}
.y90{bottom:232.127850px;}
.y5d{bottom:232.392960px;}
.yf3{bottom:233.819640px;}
.y17d{bottom:236.338020px;}
.y133{bottom:236.419200px;}
.y114{bottom:240.611040px;}
.y1a{bottom:241.869600px;}
.ya7{bottom:244.785600px;}
.y13d{bottom:244.834560px;}
.y154{bottom:245.880000px;}
.y1a3{bottom:246.054600px;}
.y3f{bottom:251.030730px;}
.yc9{bottom:251.069610px;}
.yf2{bottom:252.539460px;}
.y73{bottom:253.061280px;}
.y8f{bottom:253.555050px;}
.y5c{bottom:253.820160px;}
.y132{bottom:256.222080px;}
.y113{bottom:260.413920px;}
.y19{bottom:263.296800px;}
.y17c{bottom:263.334600px;}
.y1a2{bottom:264.057300px;}
.ya6{bottom:266.212800px;}
.y13c{bottom:266.261760px;}
.yc8{bottom:270.872490px;}
.yf1{bottom:271.080000px;}
.y3e{bottom:272.457930px;}
.y72{bottom:274.298400px;}
.y8e{bottom:274.982250px;}
.y5b{bottom:275.247360px;}
.y131{bottom:276.024960px;}
.y112{bottom:280.216800px;}
.y17b{bottom:281.337300px;}
.y153{bottom:281.340000px;}
.y1a1{bottom:282.060000px;}
.y18{bottom:284.724000px;}
.ya5{bottom:287.640000px;}
.y13b{bottom:287.688960px;}
.yc7{bottom:290.675370px;}
.y3d{bottom:293.885130px;}
.y71{bottom:295.725600px;}
.y8d{bottom:296.409450px;}
.y5a{bottom:296.674560px;}
.y17a{bottom:299.340000px;}
.y111{bottom:300.019680px;}
.yf0{bottom:300.755370px;}
.y130{bottom:305.003520px;}
.y17{bottom:306.151200px;}
.y1a0{bottom:309.051900px;}
.y13a{bottom:309.116160px;}
.yc6{bottom:310.478250px;}
.y3c{bottom:315.312330px;}
.y70{bottom:317.152800px;}
.y8c{bottom:317.836650px;}
.y59{bottom:318.101760px;}
.yef{bottom:320.558250px;}
.ya4{bottom:324.180000px;}
.y12f{bottom:324.806400px;}
.y179{bottom:326.331900px;}
.y19f{bottom:327.054600px;}
.y16{bottom:327.578400px;}
.y110{bottom:328.998240px;}
.y139{bottom:330.353280px;}
.y152{bottom:330.425130px;}
.yc5{bottom:330.453930px;}
.y3b{bottom:336.739530px;}
.y6f{bottom:338.580000px;}
.y58{bottom:339.338880px;}
.y178{bottom:344.334600px;}
.y12e{bottom:344.609280px;}
.y19e{bottom:345.057300px;}
.y8b{bottom:348.249450px;}
.y10f{bottom:348.801120px;}
.yee{bottom:349.364010px;}
.yc4{bottom:350.256810px;}
.y138{bottom:351.780480px;}
.y151{bottom:351.852330px;}
.y15{bottom:357.991200px;}
.y3a{bottom:358.166730px;}
.y6e{bottom:360.180000px;}
.y57{bottom:360.766080px;}
.y177{bottom:362.337300px;}
.y19d{bottom:363.060000px;}
.y12d{bottom:364.412160px;}
.y10e{bottom:368.604000px;}
.yed{bottom:369.339690px;}
.y8a{bottom:369.676650px;}
.yc3{bottom:370.059690px;}
.ya3{bottom:373.207680px;}
.y150{bottom:373.279530px;}
.y14{bottom:379.418400px;}
.y39{bottom:379.593930px;}
.y176{bottom:380.340000px;}
.y56{bottom:382.193280px;}
.y12c{bottom:384.215040px;}
.y10d{bottom:388.406880px;}
.yec{bottom:389.142570px;}
.yc2{bottom:389.862570px;}
.y19c{bottom:390.059850px;}
.y89{bottom:391.103850px;}
.y6d{bottom:391.178880px;}
.ya2{bottom:394.634880px;}
.y13{bottom:400.845600px;}
.y38{bottom:401.021130px;}
.y55{bottom:403.620480px;}
.y14f{bottom:403.692330px;}
.y12b{bottom:404.190720px;}
.y175{bottom:407.329770px;}
.y19b{bottom:408.051750px;}
.y10c{bottom:408.209760px;}
.yeb{bottom:408.945450px;}
.y88{bottom:412.531050px;}
.y6c{bottom:412.606080px;}
.ya1{bottom:416.062080px;}
.yc1{bottom:418.668330px;}
.y12{bottom:422.272800px;}
.y14e{bottom:424.929450px;}
.y54{bottom:425.047680px;}
.y174{bottom:425.332470px;}
.y19a{bottom:426.054450px;}
.y10b{bottom:428.185440px;}
.yea{bottom:428.748330px;}
.y37{bottom:431.433930px;}
.y87{bottom:433.958250px;}
.y6b{bottom:434.033280px;}
.y12a{bottom:434.430720px;}
.ya0{bottom:437.489280px;}
.yc0{bottom:438.644010px;}
.y173{bottom:443.335170px;}
.y11{bottom:443.700000px;}
.y199{bottom:444.057150px;}
.y14d{bottom:446.356650px;}
.y53{bottom:446.474880px;}
.y10a{bottom:447.988320px;}
.ye9{bottom:448.551210px;}
.y36{bottom:452.861130px;}
.y86{bottom:455.385450px;}
.y6a{bottom:455.460480px;}
.y129{bottom:455.857920px;}
.ybf{bottom:458.446890px;}
.y172{bottom:461.337870px;}
.y198{bottom:462.059850px;}
.y10{bottom:465.127200px;}
.y14c{bottom:467.783850px;}
.y109{bottom:467.791200px;}
.y52{bottom:467.902080px;}
.ye8{bottom:468.526890px;}
.y1b9{bottom:469.800000px;}
.y35{bottom:474.098250px;}
.y85{bottom:476.812650px;}
.y69{bottom:476.887680px;}
.y128{bottom:477.285120px;}
.ybe{bottom:478.249770px;}
.y171{bottom:479.340570px;}
.ye7{bottom:488.329770px;}
.y197{bottom:489.051750px;}
.y14b{bottom:489.211050px;}
.y51{bottom:489.329280px;}
.yf{bottom:495.367200px;}
.y34{bottom:495.525450px;}
.y108{bottom:496.596960px;}
.ybd{bottom:498.052650px;}
.y1b8{bottom:498.059850px;}
.y84{bottom:498.239850px;}
.y68{bottom:498.314880px;}
.y127{bottom:498.712320px;}
.y170{bottom:506.337150px;}
.y196{bottom:507.054450px;}
.ye6{bottom:508.132650px;}
.y14a{bottom:510.638250px;}
.y50{bottom:510.756480px;}
.y1b7{bottom:516.051750px;}
.y107{bottom:516.399840px;}
.y33{bottom:516.952650px;}
.ybc{bottom:517.855530px;}
.y67{bottom:519.742080px;}
.y126{bottom:520.139520px;}
.y16f{bottom:524.339850px;}
.y195{bottom:525.057150px;}
.ye{bottom:525.780000px;}
.y149{bottom:532.065450px;}
.y9f{bottom:532.183680px;}
.y1b6{bottom:534.054450px;}
.y83{bottom:534.780000px;}
.y106{bottom:536.375520px;}
.ye5{bottom:536.938410px;}
.y32{bottom:538.379850px;}
.y4f{bottom:541.169280px;}
.y125{bottom:541.566720px;}
.y194{bottom:543.059850px;}
.ybb{bottom:549.671040px;}
.y16e{bottom:551.329050px;}
.y1b5{bottom:552.057150px;}
.y148{bottom:553.492650px;}
.y9e{bottom:553.610880px;}
.yd{bottom:555.477330px;}
.y105{bottom:556.178400px;}
.ye4{bottom:556.741290px;}
.y31{bottom:559.969770px;}
.y4e{bottom:562.596480px;}
.y124{bottom:562.993920px;}
.y16d{bottom:569.331750px;}
.y193{bottom:570.059850px;}
.y147{bottom:574.919850px;}
.y9d{bottom:575.038080px;}
.y104{bottom:575.981280px;}
.ye3{bottom:576.716970px;}
.yc{bottom:577.262190px;}
.y30{bottom:582.105450px;}
.y82{bottom:583.893930px;}
.y4d{bottom:584.023680px;}
.y123{bottom:584.421120px;}
.y16c{bottom:587.334450px;}
.y192{bottom:588.047940px;}
.yba{bottom:589.086720px;}
.y103{bottom:595.784160px;}
.y9c{bottom:596.465280px;}
.ye2{bottom:596.519850px;}
.y1b4{bottom:597.057150px;}
.y2f{bottom:603.532650px;}
.yb{bottom:604.796610px;}
.y81{bottom:605.321130px;}
.y16b{bottom:605.337150px;}
.y4c{bottom:605.450880px;}
.y122{bottom:605.848320px;}
.y191{bottom:606.050640px;}
.yb9{bottom:610.513920px;}
.y146{bottom:611.460000px;}
.y1b3{bottom:615.059850px;}
.y9b{bottom:617.702400px;}
.ye1{bottom:618.569280px;}
.y16a{bottom:623.339850px;}
.y190{bottom:624.053340px;}
.y102{bottom:624.589920px;}
.ya{bottom:626.399850px;}
.y4b{bottom:626.688000px;}
.y80{bottom:626.748330px;}
.y121{bottom:627.275520px;}
.yb8{bottom:631.941120px;}
.y2e{bottom:633.945450px;}
.ye0{bottom:635.854860px;}
.y1b2{bottom:642.041100px;}
.y18f{bottom:642.056040px;}
.y101{bottom:644.565600px;}
.y4a{bottom:648.115200px;}
.y7f{bottom:648.175530px;}
.y120{bottom:648.702720px;}
.y169{bottom:650.339850px;}
.ydf{bottom:653.140440px;}
.yb7{bottom:653.368320px;}
.y9{bottom:653.937330px;}
.y2d{bottom:655.372650px;}
.y1b1{bottom:660.043800px;}
.y18e{bottom:660.058740px;}
.y145{bottom:660.556800px;}
.y100{bottom:664.368480px;}
.y168{bottom:668.331750px;}
.y66{bottom:669.542400px;}
.y7e{bottom:669.602730px;}
.y11f{bottom:670.129920px;}
.yde{bottom:670.426020px;}
.yb6{bottom:674.795520px;}
.y8{bottom:675.722190px;}
.y2c{bottom:676.799850px;}
.y1b0{bottom:678.046500px;}
.y49{bottom:678.528000px;}
.y144{bottom:681.984000px;}
.yff{bottom:684.171360px;}
.y167{bottom:686.334450px;}
.y18d{bottom:687.055320px;}
.ydd{bottom:687.711600px;}
.y65{bottom:690.969600px;}
.y1af{bottom:696.049200px;}
.yb5{bottom:696.222720px;}
.y2b{bottom:698.399850px;}
.y48{bottom:699.955200px;}
.y7d{bottom:700.015530px;}
.y11e{bottom:700.542720px;}
.y7{bottom:703.256610px;}
.yfe{bottom:703.974240px;}
.y166{bottom:704.337150px;}
.ydc{bottom:704.997180px;}
.y18c{bottom:705.058020px;}
.y64{bottom:712.396800px;}
.y1ae{bottom:714.051900px;}
.y2a{bottom:720.673920px;}
.y7c{bottom:721.252650px;}
.y47{bottom:721.382400px;}
.y11d{bottom:721.779840px;}
.ydb{bottom:722.103480px;}
.y165{bottom:722.339850px;}
.y18b{bottom:723.060720px;}
.yfd{bottom:723.777120px;}
.y6{bottom:724.859850px;}
.yb4{bottom:725.028480px;}
.y1ad{bottom:732.054600px;}
.y9a{bottom:733.824000px;}
.yda{bottom:739.389060px;}
.y7b{bottom:742.679850px;}
.y29{bottom:742.809600px;}
.y11c{bottom:743.207040px;}
.yfc{bottom:743.752800px;}
.yb3{bottom:744.831360px;}
.y5{bottom:747.899850px;}
.y164{bottom:749.335500px;}
.y18a{bottom:750.057300px;}
.y99{bottom:755.251200px;}
.yd9{bottom:756.674640px;}
.yfb{bottom:763.555680px;}
.y28{bottom:764.236800px;}
.yb2{bottom:764.634240px;}
.y163{bottom:767.338200px;}
.y189{bottom:768.060000px;}
.yd8{bottom:773.960220px;}
.y98{bottom:776.678400px;}
.y7a{bottom:779.400000px;}
.y162{bottom:785.340900px;}
.y27{bottom:785.664000px;}
.yd7{bottom:791.245800px;}
.yb1{bottom:793.612800px;}
.y188{bottom:795.052620px;}
.y1ac{bottom:795.060000px;}
.yfa{bottom:795.409920px;}
.y97{bottom:798.105600px;}
.y26{bottom:807.091200px;}
.yd6{bottom:808.531380px;}
.y4{bottom:808.740000px;}
.y161{bottom:812.696040px;}
.y1ab{bottom:813.054600px;}
.y187{bottom:813.055320px;}
.yb0{bottom:813.415680px;}
.y96{bottom:819.532800px;}
.yd5{bottom:825.637680px;}
.y25{bottom:828.518400px;}
.y160{bottom:831.057300px;}
.y186{bottom:831.058020px;}
.y3{bottom:833.040000px;}
.yaf{bottom:833.218560px;}
.yd4{bottom:842.923260px;}
.y15f{bottom:849.060000px;}
.y185{bottom:849.060720px;}
.y24{bottom:849.945600px;}
.yae{bottom:853.021440px;}
.y2{bottom:857.340000px;}
.yd3{bottom:860.208840px;}
.y23{bottom:871.372800px;}
.yad{bottom:872.824320px;}
.y15e{bottom:876.057300px;}
.yd2{bottom:877.494420px;}
.y1{bottom:889.740000px;}
.y22{bottom:892.800000px;}
.y15d{bottom:894.060000px;}
.yd1{bottom:894.780000px;}
.h6{height:58.621992px;}
.h5{height:58.651172px;}
.he{height:58.661972px;}
.h13{height:58.672772px;}
.h14{height:58.680692px;}
.h10{height:58.683572px;}
.h12{height:58.691492px;}
.h11{height:58.694372px;}
.h15{height:58.698812px;}
.hd{height:58.715972px;}
.h16{height:58.726172px;}
.h2{height:67.837500px;}
.hb{height:67.877820px;}
.hc{height:68.032740px;}
.h8{height:70.664062px;}
.hf{height:70.681463px;}
.h9{height:70.704383px;}
.h7{height:70.847782px;}
.ha{height:72.090000px;}
.h3{height:76.317188px;}
.h4{height:78.367500px;}
.h0{height:993.420000px;}
.h1{height:993.750000px;}
.w1{width:663.000000px;}
.w0{width:663.300000px;}
.x0{left:0.000000px;}
.x1{left:84.960000px;}
.x2{left:99.900000px;}
.x9{left:111.968640px;}
.xa{left:138.960000px;}
.xb{left:148.860000px;}
.x3{left:196.905600px;}
.x5{left:333.353160px;}
.x4{left:391.500000px;}
.x7{left:395.100000px;}
.x6{left:416.344860px;}
.x8{left:435.243960px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.457920pt;}
.ls1b{letter-spacing:-1.290240pt;}
.ls11{letter-spacing:-1.243520pt;}
.ls1a{letter-spacing:-1.044480pt;}
.ls31{letter-spacing:-1.009280pt;}
.lse{letter-spacing:-0.900480pt;}
.ls41{letter-spacing:-0.860160pt;}
.ls3d{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.614400pt;}
.ls4a{letter-spacing:-0.584320pt;}
.ls4d{letter-spacing:-0.531200pt;}
.ls2c{letter-spacing:-0.528000pt;}
.ls4c{letter-spacing:-0.478080pt;}
.ls14{letter-spacing:-0.430080pt;}
.ls4e{letter-spacing:-0.424960pt;}
.ls15{letter-spacing:-0.368640pt;}
.ls33{letter-spacing:-0.318720pt;}
.lsd{letter-spacing:-0.257280pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.245760pt;}
.ls34{letter-spacing:-0.212480pt;}
.ls1d{letter-spacing:-0.184320pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls4b{letter-spacing:-0.106240pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.042880pt;}
.ls3{letter-spacing:0.047360pt;}
.ls51{letter-spacing:0.053120pt;}
.ls25{letter-spacing:0.064000pt;}
.ls50{letter-spacing:0.090304pt;}
.ls2d{letter-spacing:0.106240pt;}
.ls43{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.158720pt;}
.ls2e{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.184320pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.208896pt;}
.ls44{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.213760pt;}
.ls0{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.245760pt;}
.lsf{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.408960pt;}
.ls3e{letter-spacing:0.512000pt;}
.ls3c{letter-spacing:0.552960pt;}
.ls26{letter-spacing:0.614400pt;}
.ls6{letter-spacing:0.762240pt;}
.ls5{letter-spacing:0.784000pt;}
.ls47{letter-spacing:0.796800pt;}
.ls46{letter-spacing:0.812736pt;}
.ls45{letter-spacing:0.833984pt;}
.ls42{letter-spacing:1.284096pt;}
.ls1c{letter-spacing:1.290240pt;}
.ls40{letter-spacing:1.382400pt;}
.ls4f{letter-spacing:1.434240pt;}
.ls49{letter-spacing:1.455488pt;}
.ls16{letter-spacing:1.904640pt;}
.ls2f{letter-spacing:2.071680pt;}
.ls3f{letter-spacing:2.088960pt;}
.ls27{letter-spacing:2.531328pt;}
.ls20{letter-spacing:2.562048pt;}
.ls7{letter-spacing:2.580480pt;}
.ls36{letter-spacing:3.170304pt;}
.ls21{letter-spacing:3.182592pt;}
.ls30{letter-spacing:3.194880pt;}
.lsa{letter-spacing:3.809280pt;}
.ls9{letter-spacing:3.870720pt;}
.ls18{letter-spacing:3.876864pt;}
.ls2b{letter-spacing:4.485120pt;}
.ls29{letter-spacing:4.497408pt;}
.ls1f{letter-spacing:5.099520pt;}
.ls1e{letter-spacing:5.289984pt;}
.ls38{letter-spacing:5.707776pt;}
.ls39{letter-spacing:5.775360pt;}
.ls3a{letter-spacing:7.065600pt;}
.ls17{letter-spacing:7.680000pt;}
.ls48{letter-spacing:12.323840pt;}
.ls37{letter-spacing:13.455360pt;}
.ls24{letter-spacing:32.808960pt;}
.ws75{word-spacing:-16.512000pt;}
.ws27{word-spacing:-16.000000pt;}
.ws7e{word-spacing:-15.936000pt;}
.ws4d{word-spacing:-15.872000pt;}
.ws26{word-spacing:-15.744000pt;}
.ws29{word-spacing:-15.605760pt;}
.ws25{word-spacing:-15.544320pt;}
.ws28{word-spacing:-15.360000pt;}
.ws40{word-spacing:-15.175680pt;}
.ws74{word-spacing:-15.168000pt;}
.ws44{word-spacing:-15.114240pt;}
.ws6{word-spacing:-14.991360pt;}
.ws5{word-spacing:-14.929920pt;}
.ws4{word-spacing:-14.745600pt;}
.ws7f{word-spacing:-13.598720pt;}
.ws90{word-spacing:-13.492480pt;}
.ws59{word-spacing:-13.386240pt;}
.wsb3{word-spacing:-13.333120pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8f{word-spacing:-13.226880pt;}
.ws61{word-spacing:-13.067520pt;}
.ws8e{word-spacing:-12.961280pt;}
.ws8b{word-spacing:-12.695680pt;}
.ws60{word-spacing:-12.270720pt;}
.ws50{word-spacing:-12.192000pt;}
.ws8c{word-spacing:-12.005120pt;}
.ws8d{word-spacing:-11.952000pt;}
.ws58{word-spacing:-11.472000pt;}
.ws3{word-spacing:-10.462720pt;}
.ws1{word-spacing:-9.819520pt;}
.ws2{word-spacing:-9.476480pt;}
.ws24{word-spacing:-4.055040pt;}
.ws5d{word-spacing:-3.993600pt;}
.ws23{word-spacing:-3.809280pt;}
.ws47{word-spacing:-3.440640pt;}
.ws2b{word-spacing:-3.379200pt;}
.wsb7{word-spacing:-3.346560pt;}
.ws2c{word-spacing:-3.194880pt;}
.wsb6{word-spacing:-2.974720pt;}
.ws3d{word-spacing:-2.826240pt;}
.ws51{word-spacing:-2.764800pt;}
.wsc1{word-spacing:-2.709120pt;}
.ws2f{word-spacing:-2.580480pt;}
.wsbf{word-spacing:-2.496640pt;}
.wsa1{word-spacing:-2.337280pt;}
.ws30{word-spacing:-2.150400pt;}
.ws1c{word-spacing:-2.088960pt;}
.wsb8{word-spacing:-2.071680pt;}
.ws9f{word-spacing:-1.912320pt;}
.ws13{word-spacing:-1.904640pt;}
.wsc0{word-spacing:-1.859200pt;}
.wsd2{word-spacing:-1.699840pt;}
.ws1d{word-spacing:-1.536000pt;}
.wsb9{word-spacing:-1.434240pt;}
.ws1a{word-spacing:-1.290240pt;}
.ws83{word-spacing:-1.274880pt;}
.ws64{word-spacing:-1.221760pt;}
.wsa0{word-spacing:-1.062400pt;}
.ws7d{word-spacing:-1.044480pt;}
.ws2a{word-spacing:-0.860160pt;}
.ws3c{word-spacing:-0.798720pt;}
.ws6b{word-spacing:-0.796800pt;}
.ws94{word-spacing:-0.690560pt;}
.ws3a{word-spacing:-0.675840pt;}
.ws82{word-spacing:-0.637440pt;}
.ws19{word-spacing:-0.614400pt;}
.ws9a{word-spacing:-0.584320pt;}
.wsab{word-spacing:-0.424960pt;}
.ws87{word-spacing:-0.318720pt;}
.ws15{word-spacing:-0.245760pt;}
.ws88{word-spacing:-0.212480pt;}
.ws16{word-spacing:-0.184320pt;}
.wsa{word-spacing:-0.159360pt;}
.ws99{word-spacing:-0.106240pt;}
.wsc{word-spacing:-0.042880pt;}
.ws7{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.053120pt;}
.ws49{word-spacing:0.064000pt;}
.ws95{word-spacing:0.106240pt;}
.ws56{word-spacing:0.184320pt;}
.ws62{word-spacing:0.212480pt;}
.ws48{word-spacing:0.245760pt;}
.ws8{word-spacing:0.257280pt;}
.wsa8{word-spacing:0.318720pt;}
.ws1b{word-spacing:0.368640pt;}
.wsba{word-spacing:0.371840pt;}
.wsb1{word-spacing:0.424960pt;}
.ws37{word-spacing:0.430080pt;}
.ws65{word-spacing:0.478080pt;}
.wsae{word-spacing:0.531200pt;}
.ws11{word-spacing:0.614400pt;}
.ws96{word-spacing:0.637440pt;}
.ws6a{word-spacing:0.690560pt;}
.wsc8{word-spacing:0.849920pt;}
.ws7c{word-spacing:0.860160pt;}
.wsb{word-spacing:0.900480pt;}
.ws79{word-spacing:0.983040pt;}
.wsf{word-spacing:1.044480pt;}
.ws9{word-spacing:1.072000pt;}
.ws38{word-spacing:1.105920pt;}
.ws84{word-spacing:1.115520pt;}
.ws78{word-spacing:1.228800pt;}
.ws39{word-spacing:1.290240pt;}
.ws81{word-spacing:1.328000pt;}
.wsd{word-spacing:1.457920pt;}
.ws10{word-spacing:1.658880pt;}
.ws5e{word-spacing:1.720320pt;}
.ws68{word-spacing:1.752960pt;}
.ws12{word-spacing:1.904640pt;}
.ws9b{word-spacing:1.965440pt;}
.wsa4{word-spacing:2.124800pt;}
.ws2d{word-spacing:2.273280pt;}
.ws9c{word-spacing:2.284160pt;}
.ws42{word-spacing:2.334720pt;}
.ws69{word-spacing:2.390400pt;}
.ws5a{word-spacing:2.396160pt;}
.ws5c{word-spacing:2.519040pt;}
.ws2e{word-spacing:2.560000pt;}
.ws1f{word-spacing:2.580480pt;}
.ws63{word-spacing:2.602880pt;}
.ws1e{word-spacing:2.949120pt;}
.ws4c{word-spacing:3.010560pt;}
.ws89{word-spacing:3.187200pt;}
.ws22{word-spacing:3.194880pt;}
.ws4b{word-spacing:3.200000pt;}
.wsb0{word-spacing:3.240320pt;}
.wsa7{word-spacing:3.399680pt;}
.ws18{word-spacing:3.624960pt;}
.wsc5{word-spacing:3.665280pt;}
.ws17{word-spacing:3.686400pt;}
.ws71{word-spacing:3.809280pt;}
.ws14{word-spacing:3.870720pt;}
.wsaf{word-spacing:3.877760pt;}
.wsc4{word-spacing:4.037120pt;}
.ws4a{word-spacing:4.096000pt;}
.ws6c{word-spacing:4.116480pt;}
.ws46{word-spacing:4.239360pt;}
.ws67{word-spacing:4.302720pt;}
.ws3e{word-spacing:4.485120pt;}
.ws72{word-spacing:4.515200pt;}
.ws80{word-spacing:4.730880pt;}
.ws3f{word-spacing:4.853760pt;}
.ws8a{word-spacing:4.940160pt;}
.ws3b{word-spacing:5.099520pt;}
.ws73{word-spacing:5.152640pt;}
.ws21{word-spacing:5.529600pt;}
.wsad{word-spacing:5.577600pt;}
.ws55{word-spacing:5.591040pt;}
.ws45{word-spacing:5.713920pt;}
.ws20{word-spacing:5.775360pt;}
.wsac{word-spacing:5.790080pt;}
.ws52{word-spacing:6.144000pt;}
.ws76{word-spacing:6.205440pt;}
.wsb5{word-spacing:6.268160pt;}
.ws43{word-spacing:6.389760pt;}
.ws77{word-spacing:6.635520pt;}
.ws53{word-spacing:6.758400pt;}
.ws33{word-spacing:6.819840pt;}
.ws54{word-spacing:7.004160pt;}
.ws36{word-spacing:7.040000pt;}
.ws34{word-spacing:7.065600pt;}
.ws35{word-spacing:7.296000pt;}
.ws6d{word-spacing:7.434240pt;}
.wse{word-spacing:7.680000pt;}
.ws31{word-spacing:8.048640pt;}
.wsca{word-spacing:8.180480pt;}
.wscb{word-spacing:8.286720pt;}
.ws32{word-spacing:8.294400pt;}
.ws93{word-spacing:8.817920pt;}
.ws91{word-spacing:9.030400pt;}
.wsc9{word-spacing:9.189760pt;}
.ws92{word-spacing:9.455360pt;}
.ws57{word-spacing:9.584640pt;}
.ws5b{word-spacing:10.260480pt;}
.wsa6{word-spacing:12.005120pt;}
.ws6f{word-spacing:12.595200pt;}
.ws6e{word-spacing:12.779520pt;}
.wsa5{word-spacing:12.855040pt;}
.ws70{word-spacing:13.025280pt;}
.ws4e{word-spacing:13.271040pt;}
.wsbc{word-spacing:13.280000pt;}
.ws4f{word-spacing:13.455360pt;}
.wsbb{word-spacing:13.651840pt;}
.ws7a{word-spacing:14.499840pt;}
.ws7b{word-spacing:14.745600pt;}
.wsd3{word-spacing:15.829760pt;}
.ws66{word-spacing:17.940480pt;}
.wsc2{word-spacing:17.954560pt;}
.wscf{word-spacing:19.070080pt;}
.wsce{word-spacing:19.601280pt;}
.wsb4{word-spacing:20.982400pt;}
.ws41{word-spacing:21.504000pt;}
.wsbe{word-spacing:21.619840pt;}
.wsbd{word-spacing:21.832320pt;}
.wsa3{word-spacing:23.744640pt;}
.wsd1{word-spacing:27.994240pt;}
.wsd0{word-spacing:29.003520pt;}
.wscc{word-spacing:37.184000pt;}
.wscd{word-spacing:37.343360pt;}
.ws9d{word-spacing:41.433600pt;}
.ws9e{word-spacing:41.539840pt;}
.ws86{word-spacing:56.519680pt;}
.ws85{word-spacing:56.785280pt;}
.wsc6{word-spacing:60.663040pt;}
.wsc7{word-spacing:61.459840pt;}
.wsa2{word-spacing:70.224640pt;}
.ws97{word-spacing:192.081920pt;}
.ws98{word-spacing:192.506880pt;}
.wsaa{word-spacing:194.419200pt;}
.wsa9{word-spacing:194.631680pt;}
.wsc3{word-spacing:259.066240pt;}
.wsb2{word-spacing:337.099520pt;}
._9{margin-left:-3.664256pt;}
._6{margin-left:-2.622464pt;}
._1{margin-left:-1.584512pt;}
._0{width:1.264896pt;}
._2{width:2.276928pt;}
._3{width:3.870720pt;}
._b{width:4.979328pt;}
._5{width:6.241024pt;}
._4{width:7.495680pt;}
._8{width:9.105536pt;}
._7{width:13.368064pt;}
._12{width:15.572736pt;}
._a{width:18.211584pt;}
._10{width:20.960128pt;}
._e{width:42.359296pt;}
._c{width:56.184576pt;}
._f{width:71.188480pt;}
._d{width:191.869440pt;}
._11{width:439.092480pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:81.839360pt;}
.y46{bottom:81.980027pt;}
.y15c{bottom:82.557600pt;}
.y63{bottom:84.305920pt;}
.y11b{bottom:84.959200pt;}
.y184{bottom:90.075200pt;}
.y1aa{bottom:90.715200pt;}
.yd0{bottom:92.464480pt;}
.yf9{bottom:92.792320pt;}
.y143{bottom:95.365120pt;}
.y137{bottom:97.267200pt;}
.y15b{bottom:98.560000pt;}
.y20{bottom:100.885760pt;}
.y45{bottom:101.026427pt;}
.yac{bottom:101.428480pt;}
.y11a{bottom:101.599040pt;}
.y79{bottom:102.677760pt;}
.y95{bottom:103.270267pt;}
.y62{bottom:103.352320pt;}
.y183{bottom:106.077600pt;}
.y1a9{bottom:106.717600pt;}
.ycf{bottom:107.670080pt;}
.yf8{bottom:110.394880pt;}
.y142{bottom:114.411520pt;}
.y136{bottom:116.313600pt;}
.y119{bottom:118.079520pt;}
.yab{bottom:119.031040pt;}
.y1f{bottom:119.932160pt;}
.y44{bottom:120.072827pt;}
.y78{bottom:121.724160pt;}
.y182{bottom:122.080000pt;}
.y94{bottom:122.316667pt;}
.y61{bottom:122.398720pt;}
.y15a{bottom:122.545600pt;}
.y1a8{bottom:122.720000pt;}
.yce{bottom:123.035040pt;}
.yf7{bottom:127.997440pt;}
.y141{bottom:133.457920pt;}
.y118{bottom:134.560000pt;}
.y135{bottom:135.360000pt;}
.yaa{bottom:136.633600pt;}
.ycd{bottom:138.400000pt;}
.y159{bottom:138.548000pt;}
.y1e{bottom:138.978560pt;}
.y43{bottom:139.119227pt;}
.y77{bottom:140.770560pt;}
.y93{bottom:141.363067pt;}
.yf6{bottom:145.600000pt;}
.y181{bottom:146.080000pt;}
.y1a7{bottom:146.715200pt;}
.y60{bottom:149.432320pt;}
.y140{bottom:152.504320pt;}
.ya9{bottom:154.236160pt;}
.y158{bottom:154.550400pt;}
.y1d{bottom:158.024960pt;}
.y76{bottom:159.816960pt;}
.y92{bottom:160.409467pt;}
.y117{bottom:160.915200pt;}
.y180{bottom:162.071040pt;}
.ycc{bottom:162.209147pt;}
.y1a6{bottom:162.717600pt;}
.y42{bottom:165.999227pt;}
.y134{bottom:168.000000pt;}
.y5f{bottom:168.478720pt;}
.y157{bottom:170.552800pt;}
.y13f{bottom:171.550720pt;}
.yf5{bottom:174.878720pt;}
.y1c{bottom:176.902400pt;}
.y17f{bottom:178.073440pt;}
.y116{bottom:178.517760pt;}
.y1a5{bottom:178.720000pt;}
.y75{bottom:178.863360pt;}
.y91{bottom:179.455867pt;}
.ycb{bottom:179.811707pt;}
.ya8{bottom:182.551040pt;}
.y41{bottom:185.045627pt;}
.y156{bottom:186.555200pt;}
.y5e{bottom:187.525120pt;}
.yf4{bottom:191.359200pt;}
.y17e{bottom:194.075840pt;}
.y1b{bottom:195.948800pt;}
.y115{bottom:196.273920pt;}
.yca{bottom:197.567867pt;}
.y13e{bottom:198.584320pt;}
.y155{bottom:202.557600pt;}
.y1a4{bottom:202.712800pt;}
.y40{bottom:204.092027pt;}
.y74{bottom:205.896960pt;}
.y90{bottom:206.335867pt;}
.y5d{bottom:206.571520pt;}
.yf3{bottom:207.839680pt;}
.y17d{bottom:210.078240pt;}
.y133{bottom:210.150400pt;}
.y114{bottom:213.876480pt;}
.y1a{bottom:214.995200pt;}
.ya7{bottom:217.587200pt;}
.y13d{bottom:217.630720pt;}
.y154{bottom:218.560000pt;}
.y1a3{bottom:218.715200pt;}
.y3f{bottom:223.138427pt;}
.yc9{bottom:223.172987pt;}
.yf2{bottom:224.479520pt;}
.y73{bottom:224.943360pt;}
.y8f{bottom:225.382267pt;}
.y5c{bottom:225.617920pt;}
.y132{bottom:227.752960pt;}
.y113{bottom:231.479040pt;}
.y19{bottom:234.041600pt;}
.y17c{bottom:234.075200pt;}
.y1a2{bottom:234.717600pt;}
.ya6{bottom:236.633600pt;}
.y13c{bottom:236.677120pt;}
.yc8{bottom:240.775547pt;}
.yf1{bottom:240.960000pt;}
.y3e{bottom:242.184827pt;}
.y72{bottom:243.820800pt;}
.y8e{bottom:244.428667pt;}
.y5b{bottom:244.664320pt;}
.y131{bottom:245.355520pt;}
.y112{bottom:249.081600pt;}
.y17b{bottom:250.077600pt;}
.y153{bottom:250.080000pt;}
.y1a1{bottom:250.720000pt;}
.y18{bottom:253.088000pt;}
.ya5{bottom:255.680000pt;}
.y13b{bottom:255.723520pt;}
.yc7{bottom:258.378107pt;}
.y3d{bottom:261.231227pt;}
.y71{bottom:262.867200pt;}
.y8d{bottom:263.475067pt;}
.y5a{bottom:263.710720pt;}
.y17a{bottom:266.080000pt;}
.y111{bottom:266.684160pt;}
.yf0{bottom:267.338107pt;}
.y130{bottom:271.114240pt;}
.y17{bottom:272.134400pt;}
.y1a0{bottom:274.712800pt;}
.y13a{bottom:274.769920pt;}
.yc6{bottom:275.980667pt;}
.y3c{bottom:280.277627pt;}
.y70{bottom:281.913600pt;}
.y8c{bottom:282.521467pt;}
.y59{bottom:282.757120pt;}
.yef{bottom:284.940667pt;}
.ya4{bottom:288.160000pt;}
.y12f{bottom:288.716800pt;}
.y179{bottom:290.072800pt;}
.y19f{bottom:290.715200pt;}
.y16{bottom:291.180800pt;}
.y110{bottom:292.442880pt;}
.y139{bottom:293.647360pt;}
.y152{bottom:293.711227pt;}
.yc5{bottom:293.736827pt;}
.y3b{bottom:299.324027pt;}
.y6f{bottom:300.960000pt;}
.y58{bottom:301.634560pt;}
.y178{bottom:306.075200pt;}
.y12e{bottom:306.319360pt;}
.y19e{bottom:306.717600pt;}
.y8b{bottom:309.555067pt;}
.y10f{bottom:310.045440pt;}
.yee{bottom:310.545787pt;}
.yc4{bottom:311.339387pt;}
.y138{bottom:312.693760pt;}
.y151{bottom:312.757627pt;}
.y15{bottom:318.214400pt;}
.y3a{bottom:318.370427pt;}
.y6e{bottom:320.160000pt;}
.y57{bottom:320.680960pt;}
.y177{bottom:322.077600pt;}
.y19d{bottom:322.720000pt;}
.y12d{bottom:323.921920pt;}
.y10e{bottom:327.648000pt;}
.yed{bottom:328.301947pt;}
.y8a{bottom:328.601467pt;}
.yc3{bottom:328.941947pt;}
.ya3{bottom:331.740160pt;}
.y150{bottom:331.804027pt;}
.y14{bottom:337.260800pt;}
.y39{bottom:337.416827pt;}
.y176{bottom:338.080000pt;}
.y56{bottom:339.727360pt;}
.y12c{bottom:341.524480pt;}
.y10d{bottom:345.250560pt;}
.yec{bottom:345.904507pt;}
.yc2{bottom:346.544507pt;}
.y19c{bottom:346.719867pt;}
.y89{bottom:347.647867pt;}
.y6d{bottom:347.714560pt;}
.ya2{bottom:350.786560pt;}
.y13{bottom:356.307200pt;}
.y38{bottom:356.463227pt;}
.y55{bottom:358.773760pt;}
.y14f{bottom:358.837627pt;}
.y12b{bottom:359.280640pt;}
.y175{bottom:362.070907pt;}
.y19b{bottom:362.712667pt;}
.y10c{bottom:362.853120pt;}
.yeb{bottom:363.507067pt;}
.y88{bottom:366.694267pt;}
.y6c{bottom:366.760960pt;}
.ya1{bottom:369.832960pt;}
.yc1{bottom:372.149627pt;}
.y12{bottom:375.353600pt;}
.y14e{bottom:377.715067pt;}
.y54{bottom:377.820160pt;}
.y174{bottom:378.073307pt;}
.y19a{bottom:378.715067pt;}
.y10b{bottom:380.609280pt;}
.yea{bottom:381.109627pt;}
.y37{bottom:383.496827pt;}
.y87{bottom:385.740667pt;}
.y6b{bottom:385.807360pt;}
.y12a{bottom:386.160640pt;}
.ya0{bottom:388.879360pt;}
.yc0{bottom:389.905787pt;}
.y173{bottom:394.075707pt;}
.y11{bottom:394.400000pt;}
.y199{bottom:394.717467pt;}
.y14d{bottom:396.761467pt;}
.y53{bottom:396.866560pt;}
.y10a{bottom:398.211840pt;}
.ye9{bottom:398.712187pt;}
.y36{bottom:402.543227pt;}
.y86{bottom:404.787067pt;}
.y6a{bottom:404.853760pt;}
.y129{bottom:405.207040pt;}
.ybf{bottom:407.508347pt;}
.y172{bottom:410.078107pt;}
.y198{bottom:410.719867pt;}
.y10{bottom:413.446400pt;}
.y14c{bottom:415.807867pt;}
.y109{bottom:415.814400pt;}
.y52{bottom:415.912960pt;}
.ye8{bottom:416.468347pt;}
.y1b9{bottom:417.600000pt;}
.y35{bottom:421.420667pt;}
.y85{bottom:423.833467pt;}
.y69{bottom:423.900160pt;}
.y128{bottom:424.253440pt;}
.ybe{bottom:425.110907pt;}
.y171{bottom:426.080507pt;}
.ye7{bottom:434.070907pt;}
.y197{bottom:434.712667pt;}
.y14b{bottom:434.854267pt;}
.y51{bottom:434.959360pt;}
.yf{bottom:440.326400pt;}
.y34{bottom:440.467067pt;}
.y108{bottom:441.419520pt;}
.ybd{bottom:442.713467pt;}
.y1b8{bottom:442.719867pt;}
.y84{bottom:442.879867pt;}
.y68{bottom:442.946560pt;}
.y127{bottom:443.299840pt;}
.y170{bottom:450.077467pt;}
.y196{bottom:450.715067pt;}
.ye6{bottom:451.673467pt;}
.y14a{bottom:453.900667pt;}
.y50{bottom:454.005760pt;}
.y1b7{bottom:458.712667pt;}
.y107{bottom:459.022080pt;}
.y33{bottom:459.513467pt;}
.ybc{bottom:460.316027pt;}
.y67{bottom:461.992960pt;}
.y126{bottom:462.346240pt;}
.y16f{bottom:466.079867pt;}
.y195{bottom:466.717467pt;}
.ye{bottom:467.360000pt;}
.y149{bottom:472.947067pt;}
.y9f{bottom:473.052160pt;}
.y1b6{bottom:474.715067pt;}
.y83{bottom:475.360000pt;}
.y106{bottom:476.778240pt;}
.ye5{bottom:477.278587pt;}
.y32{bottom:478.559867pt;}
.y4f{bottom:481.039360pt;}
.y125{bottom:481.392640pt;}
.y194{bottom:482.719867pt;}
.ybb{bottom:488.596480pt;}
.y16e{bottom:490.070267pt;}
.y1b5{bottom:490.717467pt;}
.y148{bottom:491.993467pt;}
.y9e{bottom:492.098560pt;}
.yd{bottom:493.757627pt;}
.y105{bottom:494.380800pt;}
.ye4{bottom:494.881147pt;}
.y31{bottom:497.750907pt;}
.y4e{bottom:500.085760pt;}
.y124{bottom:500.439040pt;}
.y16d{bottom:506.072667pt;}
.y193{bottom:506.719867pt;}
.y147{bottom:511.039867pt;}
.y9d{bottom:511.144960pt;}
.y104{bottom:511.983360pt;}
.ye3{bottom:512.637307pt;}
.yc{bottom:513.121947pt;}
.y30{bottom:517.427067pt;}
.y82{bottom:519.016827pt;}
.y4d{bottom:519.132160pt;}
.y123{bottom:519.485440pt;}
.y16c{bottom:522.075067pt;}
.y192{bottom:522.709280pt;}
.yba{bottom:523.632640pt;}
.y103{bottom:529.585920pt;}
.y9c{bottom:530.191360pt;}
.ye2{bottom:530.239867pt;}
.y1b4{bottom:530.717467pt;}
.y2f{bottom:536.473467pt;}
.yb{bottom:537.596987pt;}
.y81{bottom:538.063227pt;}
.y16b{bottom:538.077467pt;}
.y4c{bottom:538.178560pt;}
.y122{bottom:538.531840pt;}
.y191{bottom:538.711680pt;}
.yb9{bottom:542.679040pt;}
.y146{bottom:543.520000pt;}
.y1b3{bottom:546.719867pt;}
.y9b{bottom:549.068800pt;}
.ye1{bottom:549.839360pt;}
.y16a{bottom:554.079867pt;}
.y190{bottom:554.714080pt;}
.y102{bottom:555.191040pt;}
.ya{bottom:556.799867pt;}
.y4b{bottom:557.056000pt;}
.y80{bottom:557.109627pt;}
.y121{bottom:557.578240pt;}
.yb8{bottom:561.725440pt;}
.y2e{bottom:563.507067pt;}
.ye0{bottom:565.204320pt;}
.y1b2{bottom:570.703200pt;}
.y18f{bottom:570.716480pt;}
.y101{bottom:572.947200pt;}
.y4a{bottom:576.102400pt;}
.y7f{bottom:576.156027pt;}
.y120{bottom:576.624640pt;}
.y169{bottom:578.079867pt;}
.ydf{bottom:580.569280pt;}
.yb7{bottom:580.771840pt;}
.y9{bottom:581.277627pt;}
.y2d{bottom:582.553467pt;}
.y1b1{bottom:586.705600pt;}
.y18e{bottom:586.718880pt;}
.y145{bottom:587.161600pt;}
.y100{bottom:590.549760pt;}
.y168{bottom:594.072667pt;}
.y66{bottom:595.148800pt;}
.y7e{bottom:595.202427pt;}
.y11f{bottom:595.671040pt;}
.yde{bottom:595.934240pt;}
.yb6{bottom:599.818240pt;}
.y8{bottom:600.641947pt;}
.y2c{bottom:601.599867pt;}
.y1b0{bottom:602.708000pt;}
.y49{bottom:603.136000pt;}
.y144{bottom:606.208000pt;}
.yff{bottom:608.152320pt;}
.y167{bottom:610.075067pt;}
.y18d{bottom:610.715840pt;}
.ydd{bottom:611.299200pt;}
.y65{bottom:614.195200pt;}
.y1af{bottom:618.710400pt;}
.yb5{bottom:618.864640pt;}
.y2b{bottom:620.799867pt;}
.y48{bottom:622.182400pt;}
.y7d{bottom:622.236027pt;}
.y11e{bottom:622.704640pt;}
.y7{bottom:625.116987pt;}
.yfe{bottom:625.754880pt;}
.y166{bottom:626.077467pt;}
.ydc{bottom:626.664160pt;}
.y18c{bottom:626.718240pt;}
.y64{bottom:633.241600pt;}
.y1ae{bottom:634.712800pt;}
.y2a{bottom:640.599040pt;}
.y7c{bottom:641.113467pt;}
.y47{bottom:641.228800pt;}
.y11d{bottom:641.582080pt;}
.ydb{bottom:641.869760pt;}
.y165{bottom:642.079867pt;}
.y18b{bottom:642.720640pt;}
.yfd{bottom:643.357440pt;}
.y6{bottom:644.319867pt;}
.yb4{bottom:644.469760pt;}
.y1ad{bottom:650.715200pt;}
.y9a{bottom:652.288000pt;}
.yda{bottom:657.234720pt;}
.y7b{bottom:660.159867pt;}
.y29{bottom:660.275200pt;}
.y11c{bottom:660.628480pt;}
.yfc{bottom:661.113600pt;}
.yb3{bottom:662.072320pt;}
.y5{bottom:664.799867pt;}
.y164{bottom:666.076000pt;}
.y18a{bottom:666.717600pt;}
.y99{bottom:671.334400pt;}
.yd9{bottom:672.599680pt;}
.yfb{bottom:678.716160pt;}
.y28{bottom:679.321600pt;}
.yb2{bottom:679.674880pt;}
.y163{bottom:682.078400pt;}
.y189{bottom:682.720000pt;}
.yd8{bottom:687.964640pt;}
.y98{bottom:690.380800pt;}
.y7a{bottom:692.800000pt;}
.y162{bottom:698.080800pt;}
.y27{bottom:698.368000pt;}
.yd7{bottom:703.329600pt;}
.yb1{bottom:705.433600pt;}
.y188{bottom:706.713440pt;}
.y1ac{bottom:706.720000pt;}
.yfa{bottom:707.031040pt;}
.y97{bottom:709.427200pt;}
.y26{bottom:717.414400pt;}
.yd6{bottom:718.694560pt;}
.y4{bottom:718.880000pt;}
.y161{bottom:722.396480pt;}
.y1ab{bottom:722.715200pt;}
.y187{bottom:722.715840pt;}
.yb0{bottom:723.036160pt;}
.y96{bottom:728.473600pt;}
.yd5{bottom:733.900160pt;}
.y25{bottom:736.460800pt;}
.y160{bottom:738.717600pt;}
.y186{bottom:738.718240pt;}
.y3{bottom:740.480000pt;}
.yaf{bottom:740.638720pt;}
.yd4{bottom:749.265120pt;}
.y15f{bottom:754.720000pt;}
.y185{bottom:754.720640pt;}
.y24{bottom:755.507200pt;}
.yae{bottom:758.241280pt;}
.y2{bottom:762.080000pt;}
.yd3{bottom:764.630080pt;}
.y23{bottom:774.553600pt;}
.yad{bottom:775.843840pt;}
.y15e{bottom:778.717600pt;}
.yd2{bottom:779.995040pt;}
.y1{bottom:790.880000pt;}
.y22{bottom:793.600000pt;}
.y15d{bottom:794.720000pt;}
.yd1{bottom:795.360000pt;}
.h6{height:52.108438pt;}
.h5{height:52.134375pt;}
.he{height:52.143975pt;}
.h13{height:52.153575pt;}
.h14{height:52.160615pt;}
.h10{height:52.163175pt;}
.h12{height:52.170215pt;}
.h11{height:52.172775pt;}
.h15{height:52.176722pt;}
.hd{height:52.191975pt;}
.h16{height:52.201042pt;}
.h2{height:60.300000pt;}
.hb{height:60.335840pt;}
.hc{height:60.473547pt;}
.h8{height:62.812500pt;}
.hf{height:62.827967pt;}
.h9{height:62.848340pt;}
.h7{height:62.975807pt;}
.ha{height:64.080000pt;}
.h3{height:67.837500pt;}
.h4{height:69.660000pt;}
.h0{height:883.040000pt;}
.h1{height:883.333333pt;}
.w1{width:589.333333pt;}
.w0{width:589.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.520000pt;}
.x2{left:88.800000pt;}
.x9{left:99.527680pt;}
.xa{left:123.520000pt;}
.xb{left:132.320000pt;}
.x3{left:175.027200pt;}
.x5{left:296.313920pt;}
.x4{left:348.000000pt;}
.x7{left:351.200000pt;}
.x6{left:370.084320pt;}
.x8{left:386.883520pt;}
}




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