
    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_bf69693a90af3563f1b520da.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_cab3aa57e9eaac708d11182a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_61dafa5a2e0e3201786a07f8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5078c072176e355ae6765e30.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_e6bb07dcad61d9f5a1f37ab0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923340;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_f89dd8c99b8cd10f3a9c6085.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_ad93831958a4a05e1cdbf268.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4daf495fce33720075e51a20.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_0fa7a76f9ac7eb20b75a175d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_92a1dae83df1c12ba22746c8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9c58b2b9bb900b0baef770a4.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0052dfbbe94fcb26fa3ca6d6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_be7c3bc4f69fa22f06a2fbc7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4c69b840c0a09325be3b0ea3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.006000px;}
.lsc{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls16{letter-spacing:0.864000px;}
.ls1c{letter-spacing:1.080000px;}
.ls24{letter-spacing:2.985600px;}
.ls22{letter-spacing:3.408000px;}
.ls12{letter-spacing:3.648000px;}
.ls1a{letter-spacing:3.678000px;}
.ls7{letter-spacing:4.608000px;}
.ls23{letter-spacing:4.752000px;}
.lsb{letter-spacing:5.479200px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws56{word-spacing:-72.000000px;}
.ws7f{word-spacing:-60.300000px;}
.ws64{word-spacing:-60.000000px;}
.ws80{word-spacing:-59.700000px;}
.ws46{word-spacing:-58.550400px;}
.ws55{word-spacing:-57.823200px;}
.ws4d{word-spacing:-48.168000px;}
.ws4e{word-spacing:-33.343200px;}
.ws47{word-spacing:-32.630400px;}
.ws76{word-spacing:-32.352000px;}
.ws4c{word-spacing:-31.903200px;}
.ws73{word-spacing:-25.320000px;}
.ws29{word-spacing:-20.232000px;}
.ws18{word-spacing:-20.088000px;}
.ws19{word-spacing:-17.784000px;}
.ws45{word-spacing:-16.860000px;}
.ws2e{word-spacing:-16.560000px;}
.ws77{word-spacing:-13.488000px;}
.ws7b{word-spacing:-4.752000px;}
.ws6{word-spacing:-4.608000px;}
.ws68{word-spacing:-2.016000px;}
.ws70{word-spacing:-1.008000px;}
.ws5f{word-spacing:-0.504000px;}
.ws7{word-spacing:0.000000px;}
.ws49{word-spacing:0.072000px;}
.ws43{word-spacing:0.144000px;}
.ws48{word-spacing:0.288000px;}
.ws38{word-spacing:0.300000px;}
.ws6b{word-spacing:0.360000px;}
.ws30{word-spacing:0.432000px;}
.ws7e{word-spacing:0.576000px;}
.ws5e{word-spacing:0.648000px;}
.wse{word-spacing:0.792000px;}
.ws2a{word-spacing:0.936000px;}
.ws39{word-spacing:1.008000px;}
.ws60{word-spacing:1.080000px;}
.ws63{word-spacing:1.152000px;}
.ws40{word-spacing:1.296000px;}
.ws12{word-spacing:1.440000px;}
.ws3a{word-spacing:1.656000px;}
.ws4{word-spacing:1.800000px;}
.ws6c{word-spacing:1.872000px;}
.wsf{word-spacing:1.944000px;}
.ws54{word-spacing:2.016000px;}
.ws17{word-spacing:2.088000px;}
.ws1f{word-spacing:2.160000px;}
.ws57{word-spacing:2.304000px;}
.ws62{word-spacing:2.400000px;}
.ws4b{word-spacing:2.448000px;}
.ws9{word-spacing:2.520000px;}
.ws51{word-spacing:2.664000px;}
.ws79{word-spacing:2.880000px;}
.ws7a{word-spacing:2.952000px;}
.ws7d{word-spacing:2.976000px;}
.ws21{word-spacing:3.024000px;}
.ws37{word-spacing:3.168000px;}
.ws5d{word-spacing:3.312000px;}
.ws7c{word-spacing:3.360000px;}
.ws3f{word-spacing:3.384000px;}
.ws6d{word-spacing:3.528000px;}
.ws1d{word-spacing:3.600000px;}
.ws1a{word-spacing:3.720000px;}
.ws66{word-spacing:3.744000px;}
.ws4f{word-spacing:3.816000px;}
.ws58{word-spacing:3.960000px;}
.ws31{word-spacing:4.032000px;}
.ws13{word-spacing:4.104000px;}
.ws11{word-spacing:4.176000px;}
.ws1{word-spacing:4.200000px;}
.ws5b{word-spacing:4.248000px;}
.ws2f{word-spacing:4.320000px;}
.ws5{word-spacing:4.464000px;}
.ws14{word-spacing:4.536000px;}
.ws24{word-spacing:4.608000px;}
.ws1e{word-spacing:4.680000px;}
.ws2b{word-spacing:4.752000px;}
.ws42{word-spacing:4.824000px;}
.ws2d{word-spacing:4.896000px;}
.ws69{word-spacing:4.968000px;}
.ws10{word-spacing:5.040000px;}
.ws36{word-spacing:5.112000px;}
.ws4a{word-spacing:5.184000px;}
.ws22{word-spacing:5.256000px;}
.ws5a{word-spacing:5.328000px;}
.ws23{word-spacing:5.544000px;}
.ws33{word-spacing:5.616000px;}
.ws16{word-spacing:5.760000px;}
.ws59{word-spacing:5.832000px;}
.ws8{word-spacing:6.192000px;}
.ws1c{word-spacing:6.264000px;}
.ws26{word-spacing:6.336000px;}
.ws6a{word-spacing:6.480000px;}
.ws15{word-spacing:6.624000px;}
.wsa{word-spacing:6.696000px;}
.ws2c{word-spacing:6.912000px;}
.ws3c{word-spacing:7.200000px;}
.ws75{word-spacing:7.488000px;}
.wsc{word-spacing:7.632000px;}
.ws71{word-spacing:7.704000px;}
.ws52{word-spacing:7.848000px;}
.ws25{word-spacing:7.920000px;}
.ws41{word-spacing:8.136000px;}
.ws32{word-spacing:8.208000px;}
.ws6f{word-spacing:8.280000px;}
.ws28{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws3{word-spacing:8.400000px;}
.ws5c{word-spacing:8.424000px;}
.ws3e{word-spacing:8.496000px;}
.ws34{word-spacing:8.568000px;}
.ws27{word-spacing:8.640000px;}
.ws44{word-spacing:8.712000px;}
.ws6e{word-spacing:8.784000px;}
.ws53{word-spacing:8.928000px;}
.ws74{word-spacing:9.000000px;}
.ws78{word-spacing:9.072000px;}
.ws3d{word-spacing:9.216000px;}
.ws20{word-spacing:9.360000px;}
.ws35{word-spacing:9.504000px;}
.ws72{word-spacing:9.576000px;}
.ws61{word-spacing:9.648000px;}
.ws65{word-spacing:9.864000px;}
.ws3b{word-spacing:10.008000px;}
.wsd{word-spacing:10.080000px;}
.wsb{word-spacing:10.152000px;}
.ws50{word-spacing:10.440000px;}
.ws67{word-spacing:11.664000px;}
.ws2{word-spacing:56.280000px;}
.ws1b{word-spacing:75.180000px;}
._0{margin-left:-940.386000px;}
._6{margin-left:-69.156000px;}
._1a{margin-left:-57.636000px;}
._4{margin-left:-47.952000px;}
._20{margin-left:-45.432000px;}
._1b{margin-left:-41.844000px;}
._1f{margin-left:-19.656000px;}
._21{margin-left:-14.643600px;}
._9{margin-left:-12.192000px;}
._b{margin-left:-10.668000px;}
._1d{margin-left:-9.580800px;}
._d{margin-left:-8.450400px;}
._c{margin-left:-7.372800px;}
._1{margin-left:-5.964000px;}
._1c{margin-left:-4.884000px;}
._5{margin-left:-3.552000px;}
._8{margin-left:-2.508000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._7{width:3.840000px;}
._a{width:5.160000px;}
._e{width:6.624000px;}
._1e{width:10.860000px;}
._15{width:13.824000px;}
._10{width:27.756000px;}
._18{width:29.460000px;}
._17{width:59.460000px;}
._19{width:64.266000px;}
._16{width:65.460000px;}
._13{width:69.336000px;}
._11{width:71.460000px;}
._12{width:73.584000px;}
._14{width:135.096000px;}
._f{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:39.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y192{bottom:118.546050px;}
.y48{bottom:118.760100px;}
.y177{bottom:119.303100px;}
.y70{bottom:119.388150px;}
.y12f{bottom:119.421300px;}
.y95{bottom:120.716100px;}
.ydf{bottom:120.764100px;}
.y1fc{bottom:121.344000px;}
.y104{bottom:121.488150px;}
.y1b5{bottom:121.834050px;}
.y1d4{bottom:121.926000px;}
.ybb{bottom:121.956150px;}
.y129{bottom:122.118000px;}
.y167{bottom:122.238150px;}
.y140{bottom:122.521650px;}
.y21{bottom:123.968550px;}
.y1fb{bottom:136.800000px;}
.y191{bottom:136.846050px;}
.y6f{bottom:138.588150px;}
.y13f{bottom:141.271650px;}
.y47{bottom:141.566100px;}
.y176{bottom:141.803100px;}
.y12e{bottom:141.921300px;}
.y94{bottom:143.360100px;}
.yde{bottom:143.408100px;}
.y103{bottom:143.988150px;}
.yba{bottom:144.150150px;}
.y128{bottom:144.168000px;}
.y1d3{bottom:144.282000px;}
.y166{bottom:144.438150px;}
.y1b4{bottom:144.640050px;}
.y20{bottom:146.468550px;}
.y1fa{bottom:152.256000px;}
.y190{bottom:155.146050px;}
.y6e{bottom:157.788150px;}
.y13e{bottom:160.021650px;}
.y175{bottom:164.303100px;}
.y46{bottom:164.372100px;}
.y93{bottom:166.004100px;}
.ydd{bottom:166.052100px;}
.y127{bottom:166.218000px;}
.yb9{bottom:166.344150px;}
.y102{bottom:166.488150px;}
.y1d2{bottom:166.638000px;}
.y165{bottom:166.638150px;}
.y1b3{bottom:167.446050px;}
.y1f9{bottom:167.712000px;}
.y1f{bottom:168.968550px;}
.y12d{bottom:172.925250px;}
.y18f{bottom:173.446050px;}
.y6d{bottom:176.988150px;}
.y13d{bottom:178.771650px;}
.y1f8{bottom:183.168000px;}
.y174{bottom:186.803100px;}
.y45{bottom:187.178100px;}
.y126{bottom:188.268000px;}
.yb8{bottom:188.538150px;}
.y92{bottom:188.648100px;}
.ydc{bottom:188.696100px;}
.y164{bottom:188.838150px;}
.y101{bottom:188.988150px;}
.y1d1{bottom:188.994000px;}
.y1b2{bottom:190.234050px;}
.y1e{bottom:191.468550px;}
.y12c{bottom:191.675250px;}
.y6c{bottom:196.188150px;}
.y13c{bottom:197.521650px;}
.y1f7{bottom:198.624000px;}
.y18e{bottom:200.250000px;}
.y173{bottom:209.303100px;}
.y44{bottom:209.984100px;}
.y125{bottom:210.318000px;}
.y12b{bottom:210.425250px;}
.y163{bottom:211.044150px;}
.y91{bottom:211.292100px;}
.ydb{bottom:211.340100px;}
.y1d0{bottom:211.350000px;}
.y100{bottom:211.488150px;}
.y1b1{bottom:213.040050px;}
.y1d{bottom:213.968550px;}
.y1f6{bottom:214.080000px;}
.y6b{bottom:215.388150px;}
.y13b{bottom:216.271650px;}
.yb7{bottom:221.688150px;}
.y18d{bottom:222.300000px;}
.y12a{bottom:229.175250px;}
.y1f5{bottom:229.536000px;}
.y172{bottom:231.803100px;}
.y124{bottom:232.368000px;}
.y43{bottom:232.790100px;}
.y162{bottom:233.238150px;}
.yda{bottom:233.984100px;}
.yff{bottom:233.988150px;}
.y6a{bottom:234.588150px;}
.y13a{bottom:235.021650px;}
.y1b0{bottom:235.846050px;}
.y1c{bottom:236.468550px;}
.yb6{bottom:240.138150px;}
.y90{bottom:242.446050px;}
.y18c{bottom:244.350000px;}
.y1cf{bottom:244.794000px;}
.y1f4{bottom:244.992000px;}
.y139{bottom:253.771650px;}
.y69{bottom:253.788150px;}
.y171{bottom:254.303100px;}
.y123{bottom:254.418000px;}
.y42{bottom:255.596100px;}
.yfe{bottom:256.488150px;}
.yb5{bottom:258.588150px;}
.y1af{bottom:258.628050px;}
.y1b{bottom:258.968550px;}
.y1f3{bottom:260.448000px;}
.y8f{bottom:261.346050px;}
.y161{bottom:263.942100px;}
.y18b{bottom:266.400000px;}
.y1ce{bottom:267.150000px;}
.yd9{bottom:267.590100px;}
.y138{bottom:272.521650px;}
.y68{bottom:272.988150px;}
.y1f2{bottom:275.904000px;}
.y122{bottom:276.468000px;}
.y170{bottom:276.803100px;}
.yb4{bottom:277.038150px;}
.y41{bottom:278.402100px;}
.yfd{bottom:278.988150px;}
.y8e{bottom:280.246050px;}
.y1ae{bottom:281.434050px;}
.y1a{bottom:281.468550px;}
.y160{bottom:282.392100px;}
.y18a{bottom:288.450000px;}
.y1cd{bottom:289.488000px;}
.yd8{bottom:290.234100px;}
.y137{bottom:291.271650px;}
.y1f1{bottom:291.360000px;}
.y67{bottom:292.338150px;}
.yb3{bottom:295.488150px;}
.y121{bottom:298.518000px;}
.y8d{bottom:299.146050px;}
.y16f{bottom:299.303100px;}
.y15f{bottom:300.842100px;}
.y40{bottom:301.208100px;}
.yfc{bottom:301.488150px;}
.y19{bottom:303.968550px;}
.y1ad{bottom:304.240050px;}
.y21b{bottom:305.622000px;}
.y1f0{bottom:306.816000px;}
.y136{bottom:310.021650px;}
.y189{bottom:310.500000px;}
.y66{bottom:311.688150px;}
.y1cc{bottom:311.844000px;}
.yd7{bottom:312.878100px;}
.yb2{bottom:313.938150px;}
.y8c{bottom:318.046050px;}
.y15e{bottom:319.292100px;}
.y1ef{bottom:322.272000px;}
.yfb{bottom:323.988150px;}
.y3f{bottom:324.014100px;}
.y21a{bottom:324.372000px;}
.y18{bottom:326.468550px;}
.y1ac{bottom:327.046050px;}
.y135{bottom:328.771650px;}
.y65{bottom:331.038150px;}
.y120{bottom:331.368000px;}
.yb1{bottom:332.388150px;}
.y188{bottom:332.550000px;}
.y1cb{bottom:334.200000px;}
.yd6{bottom:335.522100px;}
.y8b{bottom:336.946050px;}
.y1ee{bottom:337.728000px;}
.y15d{bottom:337.742100px;}
.y219{bottom:343.122000px;}
.y16e{bottom:344.303100px;}
.yfa{bottom:346.488150px;}
.y3e{bottom:346.820100px;}
.y134{bottom:347.521650px;}
.y17{bottom:348.968550px;}
.y1ab{bottom:349.834050px;}
.y64{bottom:350.388150px;}
.yb0{bottom:350.838150px;}
.y1ed{bottom:353.184000px;}
.y11f{bottom:353.418000px;}
.y187{bottom:354.600000px;}
.y8a{bottom:355.846050px;}
.y15c{bottom:356.192100px;}
.y1ca{bottom:356.550000px;}
.yd5{bottom:358.166100px;}
.y218{bottom:361.872000px;}
.y16d{bottom:366.803100px;}
.y1ec{bottom:368.640000px;}
.y3d{bottom:369.626100px;}
.y63{bottom:369.738150px;}
.y16{bottom:371.468550px;}
.y1aa{bottom:372.640050px;}
.y15b{bottom:374.642100px;}
.y133{bottom:374.775600px;}
.y11e{bottom:375.612000px;}
.y186{bottom:376.650000px;}
.yf9{bottom:377.491050px;}
.yaf{bottom:377.864100px;}
.y1c9{bottom:378.894000px;}
.yd4{bottom:380.810100px;}
.y89{bottom:383.394000px;}
.y1eb{bottom:384.096000px;}
.y62{bottom:389.088150px;}
.y217{bottom:391.872000px;}
.y3c{bottom:392.432100px;}
.y15a{bottom:393.092100px;}
.y15{bottom:393.968550px;}
.y1a9{bottom:395.446050px;}
.yf8{bottom:396.241050px;}
.y132{bottom:397.275600px;}
.y11d{bottom:397.806000px;}
.y1ea{bottom:399.552000px;}
.yae{bottom:400.058100px;}
.y1c8{bottom:401.250000px;}
.yd3{bottom:403.454100px;}
.y88{bottom:406.038000px;}
.y61{bottom:408.438150px;}
.y185{bottom:409.500000px;}
.y159{bottom:411.542100px;}
.yf7{bottom:414.991050px;}
.y1e9{bottom:415.008000px;}
.y3b{bottom:415.238100px;}
.y14{bottom:416.468550px;}
.y1a8{bottom:418.234050px;}
.y131{bottom:419.775600px;}
.y11c{bottom:420.000000px;}
.yad{bottom:422.252100px;}
.y1c7{bottom:423.558000px;}
.yd2{bottom:426.098100px;}
.y60{bottom:427.788150px;}
.y87{bottom:428.682000px;}
.y158{bottom:429.992100px;}
.y1e8{bottom:430.464000px;}
.y184{bottom:431.550000px;}
.y216{bottom:433.122000px;}
.yf6{bottom:433.741050px;}
.y3a{bottom:438.044100px;}
.y13{bottom:438.968550px;}
.y1a7{bottom:441.040050px;}
.y11b{bottom:442.200000px;}
.y130{bottom:442.275600px;}
.yac{bottom:444.446100px;}
.y1c6{bottom:445.914000px;}
.y1e7{bottom:445.920000px;}
.y5f{bottom:447.138150px;}
.y157{bottom:448.442100px;}
.yd1{bottom:448.742100px;}
.y86{bottom:451.326000px;}
.y215{bottom:451.872000px;}
.yf5{bottom:452.491050px;}
.y183{bottom:453.600000px;}
.y39{bottom:460.850100px;}
.y1e6{bottom:461.376000px;}
.y12{bottom:461.468550px;}
.y1a6{bottom:463.846050px;}
.y11a{bottom:464.400000px;}
.y5e{bottom:466.488150px;}
.yab{bottom:466.640100px;}
.y156{bottom:466.892100px;}
.y1c5{bottom:468.270000px;}
.y214{bottom:470.622000px;}
.yf4{bottom:471.241050px;}
.y85{bottom:473.970000px;}
.y182{bottom:475.650000px;}
.y1e5{bottom:476.832000px;}
.yd0{bottom:479.896050px;}
.y38{bottom:483.656100px;}
.y11{bottom:483.968550px;}
.y155{bottom:485.342100px;}
.y5d{bottom:485.838150px;}
.y119{bottom:486.450000px;}
.y1a5{bottom:486.634050px;}
.yaa{bottom:488.834100px;}
.y213{bottom:489.372000px;}
.yf3{bottom:489.991050px;}
.y1c4{bottom:490.626000px;}
.y84{bottom:496.614000px;}
.y181{bottom:497.700000px;}
.y1e4{bottom:498.660000px;}
.ycf{bottom:498.796050px;}
.y154{bottom:503.792100px;}
.y37{bottom:506.462100px;}
.y10{bottom:506.468550px;}
.y212{bottom:508.122000px;}
.y118{bottom:508.500000px;}
.yf2{bottom:508.741050px;}
.y1a4{bottom:509.440050px;}
.ya9{bottom:511.028100px;}
.y1c3{bottom:512.982000px;}
.y5c{bottom:513.728100px;}
.yce{bottom:517.696050px;}
.y83{bottom:519.258000px;}
.y180{bottom:519.750000px;}
.y153{bottom:522.242100px;}
.y211{bottom:526.872000px;}
.yf1{bottom:527.491050px;}
.yf{bottom:528.968550px;}
.y36{bottom:529.268100px;}
.y117{bottom:530.550000px;}
.y1a3{bottom:532.246050px;}
.ya8{bottom:533.222100px;}
.y1c2{bottom:535.338000px;}
.ycd{bottom:536.596050px;}
.y5b{bottom:536.822100px;}
.y17f{bottom:541.800000px;}
.y82{bottom:541.902000px;}
.y1e3{bottom:544.560000px;}
.y210{bottom:545.622000px;}
.yf0{bottom:546.241050px;}
.y152{bottom:549.256050px;}
.ye{bottom:551.468550px;}
.y35{bottom:552.074100px;}
.y116{bottom:552.600000px;}
.y1a2{bottom:555.022050px;}
.ya7{bottom:555.416100px;}
.ycc{bottom:555.496050px;}
.y1c1{bottom:557.694000px;}
.y5a{bottom:559.916100px;}
.y1e2{bottom:560.004000px;}
.y17e{bottom:563.850000px;}
.y20f{bottom:564.372000px;}
.y81{bottom:564.546000px;}
.yef{bottom:564.991050px;}
.y151{bottom:571.450050px;}
.yd{bottom:573.968550px;}
.ycb{bottom:574.396050px;}
.y115{bottom:574.650000px;}
.y34{bottom:574.880100px;}
.y1e1{bottom:575.460000px;}
.ya6{bottom:577.610100px;}
.y1a1{bottom:577.828050px;}
.y1c0{bottom:580.050000px;}
.y59{bottom:583.010100px;}
.y20e{bottom:583.122000px;}
.y17d{bottom:585.900000px;}
.y80{bottom:587.190000px;}
.y1e0{bottom:590.916000px;}
.yee{bottom:592.246050px;}
.yca{bottom:593.296050px;}
.y150{bottom:593.644050px;}
.yc{bottom:596.468550px;}
.y114{bottom:596.700000px;}
.y33{bottom:597.686100px;}
.ya5{bottom:599.804100px;}
.y1a0{bottom:600.634050px;}
.y20d{bottom:601.872000px;}
.y1bf{bottom:602.400000px;}
.y58{bottom:606.104100px;}
.y1df{bottom:606.372000px;}
.y17c{bottom:607.950000px;}
.y7f{bottom:609.834000px;}
.yed{bottom:610.996050px;}
.yc9{bottom:612.196050px;}
.y14f{bottom:615.838050px;}
.y113{bottom:618.750000px;}
.yb{bottom:618.968550px;}
.y32{bottom:620.492100px;}
.y20c{bottom:620.622000px;}
.ya4{bottom:621.998100px;}
.y19f{bottom:623.440050px;}
.y1de{bottom:628.200000px;}
.y57{bottom:629.198100px;}
.yec{bottom:629.746050px;}
.y17b{bottom:630.000000px;}
.yc8{bottom:631.096050px;}
.y7e{bottom:632.478000px;}
.y20b{bottom:639.372000px;}
.y112{bottom:640.800000px;}
.ya{bottom:641.468550px;}
.ya3{bottom:644.192100px;}
.y19e{bottom:646.246050px;}
.y1be{bottom:647.046000px;}
.y14e{bottom:648.994050px;}
.yc7{bottom:649.996050px;}
.y31{bottom:651.796050px;}
.y17a{bottom:652.050000px;}
.y56{bottom:652.292100px;}
.y7d{bottom:655.122000px;}
.yeb{bottom:657.000000px;}
.y20a{bottom:658.122000px;}
.y111{bottom:662.850000px;}
.y9{bottom:663.968550px;}
.y19d{bottom:669.046050px;}
.y1bd{bottom:669.402000px;}
.y30{bottom:670.846050px;}
.y14d{bottom:671.188050px;}
.y179{bottom:674.100000px;}
.ya2{bottom:674.896050px;}
.y209{bottom:676.872000px;}
.yc6{bottom:677.460000px;}
.y7c{bottom:677.766000px;}
.yea{bottom:679.500000px;}
.y55{bottom:683.896050px;}
.y110{bottom:684.900000px;}
.y2f{bottom:689.896050px;}
.y1bc{bottom:691.758000px;}
.ya1{bottom:693.346050px;}
.y14c{bottom:693.382050px;}
.y208{bottom:695.622000px;}
.y178{bottom:696.150000px;}
.y1dd{bottom:697.050000px;}
.yc5{bottom:700.104000px;}
.y7b{bottom:700.410000px;}
.ye9{bottom:702.000000px;}
.y54{bottom:703.096050px;}
.y10f{bottom:706.950000px;}
.y2e{bottom:708.946050px;}
.y8{bottom:708.968550px;}
.ya0{bottom:711.796050px;}
.y1bb{bottom:714.114000px;}
.y207{bottom:714.372000px;}
.y19c{bottom:714.796050px;}
.y14b{bottom:715.576050px;}
.y1dc{bottom:720.000000px;}
.y53{bottom:722.296050px;}
.yc4{bottom:722.748000px;}
.y7a{bottom:723.054000px;}
.ye8{bottom:724.500000px;}
.y7{bottom:727.718550px;}
.y2d{bottom:727.996050px;}
.y10e{bottom:729.000000px;}
.y9f{bottom:730.246050px;}
.y206{bottom:733.122000px;}
.y16c{bottom:735.750000px;}
.y1ba{bottom:736.470000px;}
.y19b{bottom:737.746050px;}
.y14a{bottom:737.770050px;}
.y52{bottom:741.496050px;}
.y1db{bottom:742.950000px;}
.yc3{bottom:745.392000px;}
.y79{bottom:745.698000px;}
.ye7{bottom:747.000000px;}
.y2c{bottom:747.046050px;}
.y9e{bottom:748.696050px;}
.y10d{bottom:751.050000px;}
.y205{bottom:751.872000px;}
.y1b9{bottom:758.826000px;}
.y149{bottom:759.964050px;}
.y51{bottom:760.696050px;}
.y1da{bottom:765.900000px;}
.y2b{bottom:766.096050px;}
.y9d{bottom:767.146050px;}
.yc2{bottom:768.036000px;}
.y78{bottom:768.342000px;}
.ye6{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.y204{bottom:770.622000px;}
.y10c{bottom:773.100000px;}
.y50{bottom:779.896050px;}
.y16b{bottom:780.750000px;}
.y1b8{bottom:781.182000px;}
.y148{bottom:782.158050px;}
.y19a{bottom:783.646050px;}
.y2a{bottom:785.146050px;}
.y1d9{bottom:788.850000px;}
.y203{bottom:789.372000px;}
.yc1{bottom:790.680000px;}
.y77{bottom:790.986000px;}
.ye5{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.y9c{bottom:794.136000px;}
.y10b{bottom:795.150000px;}
.y4f{bottom:799.096050px;}
.y16a{bottom:803.250000px;}
.y1b7{bottom:803.538000px;}
.y147{bottom:804.352050px;}
.y202{bottom:808.122000px;}
.y1d8{bottom:811.800000px;}
.y29{bottom:812.670000px;}
.yc0{bottom:813.324000px;}
.y76{bottom:813.630000px;}
.ye4{bottom:814.500000px;}
.y199{bottom:815.100000px;}
.y9b{bottom:816.330000px;}
.y10a{bottom:817.200000px;}
.y4e{bottom:818.296050px;}
.y169{bottom:825.750000px;}
.y1b6{bottom:825.894000px;}
.y146{bottom:826.546050px;}
.y201{bottom:826.872000px;}
.y198{bottom:834.300000px;}
.y1d7{bottom:834.750000px;}
.y28{bottom:835.476000px;}
.ybf{bottom:835.968000px;}
.y75{bottom:836.274000px;}
.ye3{bottom:837.000000px;}
.y4d{bottom:837.496050px;}
.y9a{bottom:838.524000px;}
.y109{bottom:839.250000px;}
.y200{bottom:845.622000px;}
.y168{bottom:848.250000px;}
.y197{bottom:853.500000px;}
.y4c{bottom:856.696050px;}
.y145{bottom:857.250000px;}
.y1d6{bottom:857.700000px;}
.y27{bottom:858.282000px;}
.ybe{bottom:858.612000px;}
.y74{bottom:858.918000px;}
.y4{bottom:859.500000px;}
.y99{bottom:860.718000px;}
.y108{bottom:861.300000px;}
.y1ff{bottom:864.372000px;}
.y196{bottom:872.700000px;}
.y144{bottom:875.700000px;}
.y4b{bottom:875.896050px;}
.y1d5{bottom:880.650000px;}
.y26{bottom:881.088000px;}
.ybd{bottom:881.256000px;}
.y73{bottom:881.562000px;}
.ye2{bottom:882.000000px;}
.y98{bottom:882.912000px;}
.y1fe{bottom:883.122000px;}
.y107{bottom:883.350000px;}
.y3{bottom:889.500000px;}
.y195{bottom:891.900000px;}
.y143{bottom:894.150000px;}
.y1fd{bottom:901.872000px;}
.y4a{bottom:903.600000px;}
.y25{bottom:903.894000px;}
.ybc{bottom:903.900000px;}
.y72{bottom:904.206000px;}
.ye1{bottom:904.500000px;}
.y97{bottom:905.106000px;}
.y106{bottom:905.400000px;}
.y194{bottom:911.100000px;}
.y142{bottom:912.600000px;}
.y2{bottom:919.500000px;}
.y49{bottom:926.550000px;}
.y24{bottom:926.700000px;}
.y71{bottom:926.850000px;}
.ye0{bottom:927.000000px;}
.y96{bottom:927.300000px;}
.y105{bottom:927.450000px;}
.y193{bottom:930.300000px;}
.y141{bottom:931.050000px;}
.hb{height:33.117188px;}
.ha{height:39.072000px;}
.h6{height:39.990234px;}
.h1{height:41.396484px;}
.h3{height:42.000000px;}
.h9{height:47.988281px;}
.h8{height:48.840000px;}
.h4{height:49.675781px;}
.hc{height:50.947266px;}
.h7{height:52.031250px;}
.h5{height:61.136719px;}
.h2{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.381950px;}
.x6{left:97.263750px;}
.xa{left:110.027250px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x5{left:135.000000px;}
.x8{left:142.263750px;}
.x9{left:157.143750px;}
.xb{left:180.541950px;}
.x1{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.005333pt;}
.lsc{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls16{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls24{letter-spacing:2.653867pt;}
.ls22{letter-spacing:3.029333pt;}
.ls12{letter-spacing:3.242667pt;}
.ls1a{letter-spacing:3.269333pt;}
.ls7{letter-spacing:4.096000pt;}
.ls23{letter-spacing:4.224000pt;}
.lsb{letter-spacing:4.870400pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ws56{word-spacing:-64.000000pt;}
.ws7f{word-spacing:-53.600000pt;}
.ws64{word-spacing:-53.333333pt;}
.ws80{word-spacing:-53.066667pt;}
.ws46{word-spacing:-52.044800pt;}
.ws55{word-spacing:-51.398400pt;}
.ws4d{word-spacing:-42.816000pt;}
.ws4e{word-spacing:-29.638400pt;}
.ws47{word-spacing:-29.004800pt;}
.ws76{word-spacing:-28.757333pt;}
.ws4c{word-spacing:-28.358400pt;}
.ws73{word-spacing:-22.506667pt;}
.ws29{word-spacing:-17.984000pt;}
.ws18{word-spacing:-17.856000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws45{word-spacing:-14.986667pt;}
.ws2e{word-spacing:-14.720000pt;}
.ws77{word-spacing:-11.989333pt;}
.ws7b{word-spacing:-4.224000pt;}
.ws6{word-spacing:-4.096000pt;}
.ws68{word-spacing:-1.792000pt;}
.ws70{word-spacing:-0.896000pt;}
.ws5f{word-spacing:-0.448000pt;}
.ws7{word-spacing:0.000000pt;}
.ws49{word-spacing:0.064000pt;}
.ws43{word-spacing:0.128000pt;}
.ws48{word-spacing:0.256000pt;}
.ws38{word-spacing:0.266667pt;}
.ws6b{word-spacing:0.320000pt;}
.ws30{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.512000pt;}
.ws5e{word-spacing:0.576000pt;}
.wse{word-spacing:0.704000pt;}
.ws2a{word-spacing:0.832000pt;}
.ws39{word-spacing:0.896000pt;}
.ws60{word-spacing:0.960000pt;}
.ws63{word-spacing:1.024000pt;}
.ws40{word-spacing:1.152000pt;}
.ws12{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.472000pt;}
.ws4{word-spacing:1.600000pt;}
.ws6c{word-spacing:1.664000pt;}
.wsf{word-spacing:1.728000pt;}
.ws54{word-spacing:1.792000pt;}
.ws17{word-spacing:1.856000pt;}
.ws1f{word-spacing:1.920000pt;}
.ws57{word-spacing:2.048000pt;}
.ws62{word-spacing:2.133333pt;}
.ws4b{word-spacing:2.176000pt;}
.ws9{word-spacing:2.240000pt;}
.ws51{word-spacing:2.368000pt;}
.ws79{word-spacing:2.560000pt;}
.ws7a{word-spacing:2.624000pt;}
.ws7d{word-spacing:2.645333pt;}
.ws21{word-spacing:2.688000pt;}
.ws37{word-spacing:2.816000pt;}
.ws5d{word-spacing:2.944000pt;}
.ws7c{word-spacing:2.986667pt;}
.ws3f{word-spacing:3.008000pt;}
.ws6d{word-spacing:3.136000pt;}
.ws1d{word-spacing:3.200000pt;}
.ws1a{word-spacing:3.306667pt;}
.ws66{word-spacing:3.328000pt;}
.ws4f{word-spacing:3.392000pt;}
.ws58{word-spacing:3.520000pt;}
.ws31{word-spacing:3.584000pt;}
.ws13{word-spacing:3.648000pt;}
.ws11{word-spacing:3.712000pt;}
.ws1{word-spacing:3.733333pt;}
.ws5b{word-spacing:3.776000pt;}
.ws2f{word-spacing:3.840000pt;}
.ws5{word-spacing:3.968000pt;}
.ws14{word-spacing:4.032000pt;}
.ws24{word-spacing:4.096000pt;}
.ws1e{word-spacing:4.160000pt;}
.ws2b{word-spacing:4.224000pt;}
.ws42{word-spacing:4.288000pt;}
.ws2d{word-spacing:4.352000pt;}
.ws69{word-spacing:4.416000pt;}
.ws10{word-spacing:4.480000pt;}
.ws36{word-spacing:4.544000pt;}
.ws4a{word-spacing:4.608000pt;}
.ws22{word-spacing:4.672000pt;}
.ws5a{word-spacing:4.736000pt;}
.ws23{word-spacing:4.928000pt;}
.ws33{word-spacing:4.992000pt;}
.ws16{word-spacing:5.120000pt;}
.ws59{word-spacing:5.184000pt;}
.ws8{word-spacing:5.504000pt;}
.ws1c{word-spacing:5.568000pt;}
.ws26{word-spacing:5.632000pt;}
.ws6a{word-spacing:5.760000pt;}
.ws15{word-spacing:5.888000pt;}
.wsa{word-spacing:5.952000pt;}
.ws2c{word-spacing:6.144000pt;}
.ws3c{word-spacing:6.400000pt;}
.ws75{word-spacing:6.656000pt;}
.wsc{word-spacing:6.784000pt;}
.ws71{word-spacing:6.848000pt;}
.ws52{word-spacing:6.976000pt;}
.ws25{word-spacing:7.040000pt;}
.ws41{word-spacing:7.232000pt;}
.ws32{word-spacing:7.296000pt;}
.ws6f{word-spacing:7.360000pt;}
.ws28{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws3{word-spacing:7.466667pt;}
.ws5c{word-spacing:7.488000pt;}
.ws3e{word-spacing:7.552000pt;}
.ws34{word-spacing:7.616000pt;}
.ws27{word-spacing:7.680000pt;}
.ws44{word-spacing:7.744000pt;}
.ws6e{word-spacing:7.808000pt;}
.ws53{word-spacing:7.936000pt;}
.ws74{word-spacing:8.000000pt;}
.ws78{word-spacing:8.064000pt;}
.ws3d{word-spacing:8.192000pt;}
.ws20{word-spacing:8.320000pt;}
.ws35{word-spacing:8.448000pt;}
.ws72{word-spacing:8.512000pt;}
.ws61{word-spacing:8.576000pt;}
.ws65{word-spacing:8.768000pt;}
.ws3b{word-spacing:8.896000pt;}
.wsd{word-spacing:8.960000pt;}
.wsb{word-spacing:9.024000pt;}
.ws50{word-spacing:9.280000pt;}
.ws67{word-spacing:10.368000pt;}
.ws2{word-spacing:50.026667pt;}
.ws1b{word-spacing:66.826667pt;}
._0{margin-left:-835.898667pt;}
._6{margin-left:-61.472000pt;}
._1a{margin-left:-51.232000pt;}
._4{margin-left:-42.624000pt;}
._20{margin-left:-40.384000pt;}
._1b{margin-left:-37.194667pt;}
._1f{margin-left:-17.472000pt;}
._21{margin-left:-13.016533pt;}
._9{margin-left:-10.837333pt;}
._b{margin-left:-9.482667pt;}
._1d{margin-left:-8.516267pt;}
._d{margin-left:-7.511467pt;}
._c{margin-left:-6.553600pt;}
._1{margin-left:-5.301333pt;}
._1c{margin-left:-4.341333pt;}
._5{margin-left:-3.157333pt;}
._8{margin-left:-2.229333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._7{width:3.413333pt;}
._a{width:4.586667pt;}
._e{width:5.888000pt;}
._1e{width:9.653333pt;}
._15{width:12.288000pt;}
._10{width:24.672000pt;}
._18{width:26.186667pt;}
._17{width:52.853333pt;}
._19{width:57.125333pt;}
._16{width:58.186667pt;}
._13{width:61.632000pt;}
._11{width:63.520000pt;}
._12{width:65.408000pt;}
._14{width:120.085333pt;}
._f{width:179.168000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:34.666667pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y192{bottom:105.374267pt;}
.y48{bottom:105.564533pt;}
.y177{bottom:106.047200pt;}
.y70{bottom:106.122800pt;}
.y12f{bottom:106.152267pt;}
.y95{bottom:107.303200pt;}
.ydf{bottom:107.345867pt;}
.y1fc{bottom:107.861333pt;}
.y104{bottom:107.989467pt;}
.y1b5{bottom:108.296933pt;}
.y1d4{bottom:108.378667pt;}
.ybb{bottom:108.405467pt;}
.y129{bottom:108.549333pt;}
.y167{bottom:108.656133pt;}
.y140{bottom:108.908133pt;}
.y21{bottom:110.194267pt;}
.y1fb{bottom:121.600000pt;}
.y191{bottom:121.640933pt;}
.y6f{bottom:123.189467pt;}
.y13f{bottom:125.574800pt;}
.y47{bottom:125.836533pt;}
.y176{bottom:126.047200pt;}
.y12e{bottom:126.152267pt;}
.y94{bottom:127.431200pt;}
.yde{bottom:127.473867pt;}
.y103{bottom:127.989467pt;}
.yba{bottom:128.133467pt;}
.y128{bottom:128.149333pt;}
.y1d3{bottom:128.250667pt;}
.y166{bottom:128.389467pt;}
.y1b4{bottom:128.568933pt;}
.y20{bottom:130.194267pt;}
.y1fa{bottom:135.338667pt;}
.y190{bottom:137.907600pt;}
.y6e{bottom:140.256133pt;}
.y13e{bottom:142.241467pt;}
.y175{bottom:146.047200pt;}
.y46{bottom:146.108533pt;}
.y93{bottom:147.559200pt;}
.ydd{bottom:147.601867pt;}
.y127{bottom:147.749333pt;}
.yb9{bottom:147.861467pt;}
.y102{bottom:147.989467pt;}
.y1d2{bottom:148.122667pt;}
.y165{bottom:148.122800pt;}
.y1b3{bottom:148.840933pt;}
.y1f9{bottom:149.077333pt;}
.y1f{bottom:150.194267pt;}
.y12d{bottom:153.711333pt;}
.y18f{bottom:154.174267pt;}
.y6d{bottom:157.322800pt;}
.y13d{bottom:158.908133pt;}
.y1f8{bottom:162.816000pt;}
.y174{bottom:166.047200pt;}
.y45{bottom:166.380533pt;}
.y126{bottom:167.349333pt;}
.yb8{bottom:167.589467pt;}
.y92{bottom:167.687200pt;}
.ydc{bottom:167.729867pt;}
.y164{bottom:167.856133pt;}
.y101{bottom:167.989467pt;}
.y1d1{bottom:167.994667pt;}
.y1b2{bottom:169.096933pt;}
.y1e{bottom:170.194267pt;}
.y12c{bottom:170.378000pt;}
.y6c{bottom:174.389467pt;}
.y13c{bottom:175.574800pt;}
.y1f7{bottom:176.554667pt;}
.y18e{bottom:178.000000pt;}
.y173{bottom:186.047200pt;}
.y44{bottom:186.652533pt;}
.y125{bottom:186.949333pt;}
.y12b{bottom:187.044667pt;}
.y163{bottom:187.594800pt;}
.y91{bottom:187.815200pt;}
.ydb{bottom:187.857867pt;}
.y1d0{bottom:187.866667pt;}
.y100{bottom:187.989467pt;}
.y1b1{bottom:189.368933pt;}
.y1d{bottom:190.194267pt;}
.y1f6{bottom:190.293333pt;}
.y6b{bottom:191.456133pt;}
.y13b{bottom:192.241467pt;}
.yb7{bottom:197.056133pt;}
.y18d{bottom:197.600000pt;}
.y12a{bottom:203.711333pt;}
.y1f5{bottom:204.032000pt;}
.y172{bottom:206.047200pt;}
.y124{bottom:206.549333pt;}
.y43{bottom:206.924533pt;}
.y162{bottom:207.322800pt;}
.yda{bottom:207.985867pt;}
.yff{bottom:207.989467pt;}
.y6a{bottom:208.522800pt;}
.y13a{bottom:208.908133pt;}
.y1b0{bottom:209.640933pt;}
.y1c{bottom:210.194267pt;}
.yb6{bottom:213.456133pt;}
.y90{bottom:215.507600pt;}
.y18c{bottom:217.200000pt;}
.y1cf{bottom:217.594667pt;}
.y1f4{bottom:217.770667pt;}
.y139{bottom:225.574800pt;}
.y69{bottom:225.589467pt;}
.y171{bottom:226.047200pt;}
.y123{bottom:226.149333pt;}
.y42{bottom:227.196533pt;}
.yfe{bottom:227.989467pt;}
.yb5{bottom:229.856133pt;}
.y1af{bottom:229.891600pt;}
.y1b{bottom:230.194267pt;}
.y1f3{bottom:231.509333pt;}
.y8f{bottom:232.307600pt;}
.y161{bottom:234.615200pt;}
.y18b{bottom:236.800000pt;}
.y1ce{bottom:237.466667pt;}
.yd9{bottom:237.857867pt;}
.y138{bottom:242.241467pt;}
.y68{bottom:242.656133pt;}
.y1f2{bottom:245.248000pt;}
.y122{bottom:245.749333pt;}
.y170{bottom:246.047200pt;}
.yb4{bottom:246.256133pt;}
.y41{bottom:247.468533pt;}
.yfd{bottom:247.989467pt;}
.y8e{bottom:249.107600pt;}
.y1ae{bottom:250.163600pt;}
.y1a{bottom:250.194267pt;}
.y160{bottom:251.015200pt;}
.y18a{bottom:256.400000pt;}
.y1cd{bottom:257.322667pt;}
.yd8{bottom:257.985867pt;}
.y137{bottom:258.908133pt;}
.y1f1{bottom:258.986667pt;}
.y67{bottom:259.856133pt;}
.yb3{bottom:262.656133pt;}
.y121{bottom:265.349333pt;}
.y8d{bottom:265.907600pt;}
.y16f{bottom:266.047200pt;}
.y15f{bottom:267.415200pt;}
.y40{bottom:267.740533pt;}
.yfc{bottom:267.989467pt;}
.y19{bottom:270.194267pt;}
.y1ad{bottom:270.435600pt;}
.y21b{bottom:271.664000pt;}
.y1f0{bottom:272.725333pt;}
.y136{bottom:275.574800pt;}
.y189{bottom:276.000000pt;}
.y66{bottom:277.056133pt;}
.y1cc{bottom:277.194667pt;}
.yd7{bottom:278.113867pt;}
.yb2{bottom:279.056133pt;}
.y8c{bottom:282.707600pt;}
.y15e{bottom:283.815200pt;}
.y1ef{bottom:286.464000pt;}
.yfb{bottom:287.989467pt;}
.y3f{bottom:288.012533pt;}
.y21a{bottom:288.330667pt;}
.y18{bottom:290.194267pt;}
.y1ac{bottom:290.707600pt;}
.y135{bottom:292.241467pt;}
.y65{bottom:294.256133pt;}
.y120{bottom:294.549333pt;}
.yb1{bottom:295.456133pt;}
.y188{bottom:295.600000pt;}
.y1cb{bottom:297.066667pt;}
.yd6{bottom:298.241867pt;}
.y8b{bottom:299.507600pt;}
.y1ee{bottom:300.202667pt;}
.y15d{bottom:300.215200pt;}
.y219{bottom:304.997333pt;}
.y16e{bottom:306.047200pt;}
.yfa{bottom:307.989467pt;}
.y3e{bottom:308.284533pt;}
.y134{bottom:308.908133pt;}
.y17{bottom:310.194267pt;}
.y1ab{bottom:310.963600pt;}
.y64{bottom:311.456133pt;}
.yb0{bottom:311.856133pt;}
.y1ed{bottom:313.941333pt;}
.y11f{bottom:314.149333pt;}
.y187{bottom:315.200000pt;}
.y8a{bottom:316.307600pt;}
.y15c{bottom:316.615200pt;}
.y1ca{bottom:316.933333pt;}
.yd5{bottom:318.369867pt;}
.y218{bottom:321.664000pt;}
.y16d{bottom:326.047200pt;}
.y1ec{bottom:327.680000pt;}
.y3d{bottom:328.556533pt;}
.y63{bottom:328.656133pt;}
.y16{bottom:330.194267pt;}
.y1aa{bottom:331.235600pt;}
.y15b{bottom:333.015200pt;}
.y133{bottom:333.133867pt;}
.y11e{bottom:333.877333pt;}
.y186{bottom:334.800000pt;}
.yf9{bottom:335.547600pt;}
.yaf{bottom:335.879200pt;}
.y1c9{bottom:336.794667pt;}
.yd4{bottom:338.497867pt;}
.y89{bottom:340.794667pt;}
.y1eb{bottom:341.418667pt;}
.y62{bottom:345.856133pt;}
.y217{bottom:348.330667pt;}
.y3c{bottom:348.828533pt;}
.y15a{bottom:349.415200pt;}
.y15{bottom:350.194267pt;}
.y1a9{bottom:351.507600pt;}
.yf8{bottom:352.214267pt;}
.y132{bottom:353.133867pt;}
.y11d{bottom:353.605333pt;}
.y1ea{bottom:355.157333pt;}
.yae{bottom:355.607200pt;}
.y1c8{bottom:356.666667pt;}
.yd3{bottom:358.625867pt;}
.y88{bottom:360.922667pt;}
.y61{bottom:363.056133pt;}
.y185{bottom:364.000000pt;}
.y159{bottom:365.815200pt;}
.yf7{bottom:368.880933pt;}
.y1e9{bottom:368.896000pt;}
.y3b{bottom:369.100533pt;}
.y14{bottom:370.194267pt;}
.y1a8{bottom:371.763600pt;}
.y131{bottom:373.133867pt;}
.y11c{bottom:373.333333pt;}
.yad{bottom:375.335200pt;}
.y1c7{bottom:376.496000pt;}
.yd2{bottom:378.753867pt;}
.y60{bottom:380.256133pt;}
.y87{bottom:381.050667pt;}
.y158{bottom:382.215200pt;}
.y1e8{bottom:382.634667pt;}
.y184{bottom:383.600000pt;}
.y216{bottom:384.997333pt;}
.yf6{bottom:385.547600pt;}
.y3a{bottom:389.372533pt;}
.y13{bottom:390.194267pt;}
.y1a7{bottom:392.035600pt;}
.y11b{bottom:393.066667pt;}
.y130{bottom:393.133867pt;}
.yac{bottom:395.063200pt;}
.y1c6{bottom:396.368000pt;}
.y1e7{bottom:396.373333pt;}
.y5f{bottom:397.456133pt;}
.y157{bottom:398.615200pt;}
.yd1{bottom:398.881867pt;}
.y86{bottom:401.178667pt;}
.y215{bottom:401.664000pt;}
.yf5{bottom:402.214267pt;}
.y183{bottom:403.200000pt;}
.y39{bottom:409.644533pt;}
.y1e6{bottom:410.112000pt;}
.y12{bottom:410.194267pt;}
.y1a6{bottom:412.307600pt;}
.y11a{bottom:412.800000pt;}
.y5e{bottom:414.656133pt;}
.yab{bottom:414.791200pt;}
.y156{bottom:415.015200pt;}
.y1c5{bottom:416.240000pt;}
.y214{bottom:418.330667pt;}
.yf4{bottom:418.880933pt;}
.y85{bottom:421.306667pt;}
.y182{bottom:422.800000pt;}
.y1e5{bottom:423.850667pt;}
.yd0{bottom:426.574267pt;}
.y38{bottom:429.916533pt;}
.y11{bottom:430.194267pt;}
.y155{bottom:431.415200pt;}
.y5d{bottom:431.856133pt;}
.y119{bottom:432.400000pt;}
.y1a5{bottom:432.563600pt;}
.yaa{bottom:434.519200pt;}
.y213{bottom:434.997333pt;}
.yf3{bottom:435.547600pt;}
.y1c4{bottom:436.112000pt;}
.y84{bottom:441.434667pt;}
.y181{bottom:442.400000pt;}
.y1e4{bottom:443.253333pt;}
.ycf{bottom:443.374267pt;}
.y154{bottom:447.815200pt;}
.y37{bottom:450.188533pt;}
.y10{bottom:450.194267pt;}
.y212{bottom:451.664000pt;}
.y118{bottom:452.000000pt;}
.yf2{bottom:452.214267pt;}
.y1a4{bottom:452.835600pt;}
.ya9{bottom:454.247200pt;}
.y1c3{bottom:455.984000pt;}
.y5c{bottom:456.647200pt;}
.yce{bottom:460.174267pt;}
.y83{bottom:461.562667pt;}
.y180{bottom:462.000000pt;}
.y153{bottom:464.215200pt;}
.y211{bottom:468.330667pt;}
.yf1{bottom:468.880933pt;}
.yf{bottom:470.194267pt;}
.y36{bottom:470.460533pt;}
.y117{bottom:471.600000pt;}
.y1a3{bottom:473.107600pt;}
.ya8{bottom:473.975200pt;}
.y1c2{bottom:475.856000pt;}
.ycd{bottom:476.974267pt;}
.y5b{bottom:477.175200pt;}
.y17f{bottom:481.600000pt;}
.y82{bottom:481.690667pt;}
.y1e3{bottom:484.053333pt;}
.y210{bottom:484.997333pt;}
.yf0{bottom:485.547600pt;}
.y152{bottom:488.227600pt;}
.ye{bottom:490.194267pt;}
.y35{bottom:490.732533pt;}
.y116{bottom:491.200000pt;}
.y1a2{bottom:493.352933pt;}
.ya7{bottom:493.703200pt;}
.ycc{bottom:493.774267pt;}
.y1c1{bottom:495.728000pt;}
.y5a{bottom:497.703200pt;}
.y1e2{bottom:497.781333pt;}
.y17e{bottom:501.200000pt;}
.y20f{bottom:501.664000pt;}
.y81{bottom:501.818667pt;}
.yef{bottom:502.214267pt;}
.y151{bottom:507.955600pt;}
.yd{bottom:510.194267pt;}
.ycb{bottom:510.574267pt;}
.y115{bottom:510.800000pt;}
.y34{bottom:511.004533pt;}
.y1e1{bottom:511.520000pt;}
.ya6{bottom:513.431200pt;}
.y1a1{bottom:513.624933pt;}
.y1c0{bottom:515.600000pt;}
.y59{bottom:518.231200pt;}
.y20e{bottom:518.330667pt;}
.y17d{bottom:520.800000pt;}
.y80{bottom:521.946667pt;}
.y1e0{bottom:525.258667pt;}
.yee{bottom:526.440933pt;}
.yca{bottom:527.374267pt;}
.y150{bottom:527.683600pt;}
.yc{bottom:530.194267pt;}
.y114{bottom:530.400000pt;}
.y33{bottom:531.276533pt;}
.ya5{bottom:533.159200pt;}
.y1a0{bottom:533.896933pt;}
.y20d{bottom:534.997333pt;}
.y1bf{bottom:535.466667pt;}
.y58{bottom:538.759200pt;}
.y1df{bottom:538.997333pt;}
.y17c{bottom:540.400000pt;}
.y7f{bottom:542.074667pt;}
.yed{bottom:543.107600pt;}
.yc9{bottom:544.174267pt;}
.y14f{bottom:547.411600pt;}
.y113{bottom:550.000000pt;}
.yb{bottom:550.194267pt;}
.y32{bottom:551.548533pt;}
.y20c{bottom:551.664000pt;}
.ya4{bottom:552.887200pt;}
.y19f{bottom:554.168933pt;}
.y1de{bottom:558.400000pt;}
.y57{bottom:559.287200pt;}
.yec{bottom:559.774267pt;}
.y17b{bottom:560.000000pt;}
.yc8{bottom:560.974267pt;}
.y7e{bottom:562.202667pt;}
.y20b{bottom:568.330667pt;}
.y112{bottom:569.600000pt;}
.ya{bottom:570.194267pt;}
.ya3{bottom:572.615200pt;}
.y19e{bottom:574.440933pt;}
.y1be{bottom:575.152000pt;}
.y14e{bottom:576.883600pt;}
.yc7{bottom:577.774267pt;}
.y31{bottom:579.374267pt;}
.y17a{bottom:579.600000pt;}
.y56{bottom:579.815200pt;}
.y7d{bottom:582.330667pt;}
.yeb{bottom:584.000000pt;}
.y20a{bottom:584.997333pt;}
.y111{bottom:589.200000pt;}
.y9{bottom:590.194267pt;}
.y19d{bottom:594.707600pt;}
.y1bd{bottom:595.024000pt;}
.y30{bottom:596.307600pt;}
.y14d{bottom:596.611600pt;}
.y179{bottom:599.200000pt;}
.ya2{bottom:599.907600pt;}
.y209{bottom:601.664000pt;}
.yc6{bottom:602.186667pt;}
.y7c{bottom:602.458667pt;}
.yea{bottom:604.000000pt;}
.y55{bottom:607.907600pt;}
.y110{bottom:608.800000pt;}
.y2f{bottom:613.240933pt;}
.y1bc{bottom:614.896000pt;}
.ya1{bottom:616.307600pt;}
.y14c{bottom:616.339600pt;}
.y208{bottom:618.330667pt;}
.y178{bottom:618.800000pt;}
.y1dd{bottom:619.600000pt;}
.yc5{bottom:622.314667pt;}
.y7b{bottom:622.586667pt;}
.ye9{bottom:624.000000pt;}
.y54{bottom:624.974267pt;}
.y10f{bottom:628.400000pt;}
.y2e{bottom:630.174267pt;}
.y8{bottom:630.194267pt;}
.ya0{bottom:632.707600pt;}
.y1bb{bottom:634.768000pt;}
.y207{bottom:634.997333pt;}
.y19c{bottom:635.374267pt;}
.y14b{bottom:636.067600pt;}
.y1dc{bottom:640.000000pt;}
.y53{bottom:642.040933pt;}
.yc4{bottom:642.442667pt;}
.y7a{bottom:642.714667pt;}
.ye8{bottom:644.000000pt;}
.y7{bottom:646.860933pt;}
.y2d{bottom:647.107600pt;}
.y10e{bottom:648.000000pt;}
.y9f{bottom:649.107600pt;}
.y206{bottom:651.664000pt;}
.y16c{bottom:654.000000pt;}
.y1ba{bottom:654.640000pt;}
.y19b{bottom:655.774267pt;}
.y14a{bottom:655.795600pt;}
.y52{bottom:659.107600pt;}
.y1db{bottom:660.400000pt;}
.yc3{bottom:662.570667pt;}
.y79{bottom:662.842667pt;}
.ye7{bottom:664.000000pt;}
.y2c{bottom:664.040933pt;}
.y9e{bottom:665.507600pt;}
.y10d{bottom:667.600000pt;}
.y205{bottom:668.330667pt;}
.y1b9{bottom:674.512000pt;}
.y149{bottom:675.523600pt;}
.y51{bottom:676.174267pt;}
.y1da{bottom:680.800000pt;}
.y2b{bottom:680.974267pt;}
.y9d{bottom:681.907600pt;}
.yc2{bottom:682.698667pt;}
.y78{bottom:682.970667pt;}
.ye6{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.y204{bottom:684.997333pt;}
.y10c{bottom:687.200000pt;}
.y50{bottom:693.240933pt;}
.y16b{bottom:694.000000pt;}
.y1b8{bottom:694.384000pt;}
.y148{bottom:695.251600pt;}
.y19a{bottom:696.574267pt;}
.y2a{bottom:697.907600pt;}
.y1d9{bottom:701.200000pt;}
.y203{bottom:701.664000pt;}
.yc1{bottom:702.826667pt;}
.y77{bottom:703.098667pt;}
.ye5{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.y9c{bottom:705.898667pt;}
.y10b{bottom:706.800000pt;}
.y4f{bottom:710.307600pt;}
.y16a{bottom:714.000000pt;}
.y1b7{bottom:714.256000pt;}
.y147{bottom:714.979600pt;}
.y202{bottom:718.330667pt;}
.y1d8{bottom:721.600000pt;}
.y29{bottom:722.373333pt;}
.yc0{bottom:722.954667pt;}
.y76{bottom:723.226667pt;}
.ye4{bottom:724.000000pt;}
.y199{bottom:724.533333pt;}
.y9b{bottom:725.626667pt;}
.y10a{bottom:726.400000pt;}
.y4e{bottom:727.374267pt;}
.y169{bottom:734.000000pt;}
.y1b6{bottom:734.128000pt;}
.y146{bottom:734.707600pt;}
.y201{bottom:734.997333pt;}
.y198{bottom:741.600000pt;}
.y1d7{bottom:742.000000pt;}
.y28{bottom:742.645333pt;}
.ybf{bottom:743.082667pt;}
.y75{bottom:743.354667pt;}
.ye3{bottom:744.000000pt;}
.y4d{bottom:744.440933pt;}
.y9a{bottom:745.354667pt;}
.y109{bottom:746.000000pt;}
.y200{bottom:751.664000pt;}
.y168{bottom:754.000000pt;}
.y197{bottom:758.666667pt;}
.y4c{bottom:761.507600pt;}
.y145{bottom:762.000000pt;}
.y1d6{bottom:762.400000pt;}
.y27{bottom:762.917333pt;}
.ybe{bottom:763.210667pt;}
.y74{bottom:763.482667pt;}
.y4{bottom:764.000000pt;}
.y99{bottom:765.082667pt;}
.y108{bottom:765.600000pt;}
.y1ff{bottom:768.330667pt;}
.y196{bottom:775.733333pt;}
.y144{bottom:778.400000pt;}
.y4b{bottom:778.574267pt;}
.y1d5{bottom:782.800000pt;}
.y26{bottom:783.189333pt;}
.ybd{bottom:783.338667pt;}
.y73{bottom:783.610667pt;}
.ye2{bottom:784.000000pt;}
.y98{bottom:784.810667pt;}
.y1fe{bottom:784.997333pt;}
.y107{bottom:785.200000pt;}
.y3{bottom:790.666667pt;}
.y195{bottom:792.800000pt;}
.y143{bottom:794.800000pt;}
.y1fd{bottom:801.664000pt;}
.y4a{bottom:803.200000pt;}
.y25{bottom:803.461333pt;}
.ybc{bottom:803.466667pt;}
.y72{bottom:803.738667pt;}
.ye1{bottom:804.000000pt;}
.y97{bottom:804.538667pt;}
.y106{bottom:804.800000pt;}
.y194{bottom:809.866667pt;}
.y142{bottom:811.200000pt;}
.y2{bottom:817.333333pt;}
.y49{bottom:823.600000pt;}
.y24{bottom:823.733333pt;}
.y71{bottom:823.866667pt;}
.ye0{bottom:824.000000pt;}
.y96{bottom:824.266667pt;}
.y105{bottom:824.400000pt;}
.y193{bottom:826.933333pt;}
.y141{bottom:827.600000pt;}
.hb{height:29.437500pt;}
.ha{height:34.730667pt;}
.h6{height:35.546875pt;}
.h1{height:36.796875pt;}
.h3{height:37.333333pt;}
.h9{height:42.656250pt;}
.h8{height:43.413333pt;}
.h4{height:44.156250pt;}
.hc{height:45.286458pt;}
.h7{height:46.250000pt;}
.h5{height:54.343750pt;}
.h2{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.228400pt;}
.x6{left:86.456667pt;}
.xa{left:97.802000pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x5{left:120.000000pt;}
.x8{left:126.456667pt;}
.x9{left:139.683333pt;}
.xb{left:160.481733pt;}
.x1{left:564.791600pt;}
}




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