
    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_abbaeb8be5904485b2e9995b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d7c8679f8ab005194b07185.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1d10b6fb3c2489ab2048e133.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5918c780cbd636fc1024dd47.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_004bdf9822ee4dcd1a4fa645.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_82f63ea8d8eae57f8e7857cf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_4f1975ebd9c8dc4b927987ee.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:26.640000px;}
.ls4e{letter-spacing:-7.920000px;}
.ls24{letter-spacing:-4.032000px;}
.ls38{letter-spacing:-1.386000px;}
.ls2d{letter-spacing:-1.368000px;}
.ls42{letter-spacing:-1.254000px;}
.ls15{letter-spacing:-1.152000px;}
.ls36{letter-spacing:-1.056000px;}
.ls10{letter-spacing:-1.008000px;}
.ls35{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.858000px;}
.ls53{letter-spacing:-0.726000px;}
.ls14{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.648000px;}
.ls50{letter-spacing:-0.594000px;}
.ls23{letter-spacing:-0.576000px;}
.ls43{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.432000px;}
.ls34{letter-spacing:-0.396000px;}
.lsf{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.330000px;}
.ls26{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls4f{letter-spacing:-0.198000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.066000px;}
.ls9{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.259200px;}
.ls18{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.330000px;}
.ls1f{letter-spacing:0.345600px;}
.ls12{letter-spacing:0.360000px;}
.ls40{letter-spacing:0.396000px;}
.lse{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls4d{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.576000px;}
.ls3a{letter-spacing:0.594000px;}
.ls16{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.660000px;}
.ls25{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.726000px;}
.ls2e{letter-spacing:0.792000px;}
.ls3d{letter-spacing:0.924000px;}
.ls19{letter-spacing:0.936000px;}
.ls17{letter-spacing:1.008000px;}
.ls3c{letter-spacing:1.056000px;}
.ls20{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.512000px;}
.ls7{letter-spacing:1.518000px;}
.ls1d{letter-spacing:3.600000px;}
.ls29{letter-spacing:3.816000px;}
.ls4b{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls28{letter-spacing:4.392000px;}
.lsa{letter-spacing:5.220000px;}
.ls52{letter-spacing:5.700000px;}
.ls32{letter-spacing:6.000000px;}
.ls51{letter-spacing:6.540000px;}
.ls1{letter-spacing:6.600000px;}
.ls30{letter-spacing:7.128000px;}
.ls3{letter-spacing:7.200000px;}
.ls41{letter-spacing:9.570000px;}
.ls31{letter-spacing:9.966000px;}
.ls2b{letter-spacing:10.152000px;}
.ls2{letter-spacing:10.200000px;}
.ls33{letter-spacing:10.560000px;}
.ls4a{letter-spacing:10.758000px;}
.ls3b{letter-spacing:10.890000px;}
.ls2f{letter-spacing:10.956000px;}
.ls3e{letter-spacing:11.022000px;}
.ls45{letter-spacing:11.286000px;}
.ls3f{letter-spacing:11.352000px;}
.ls39{letter-spacing:11.550000px;}
.ls49{letter-spacing:11.880000px;}
.ls47{letter-spacing:12.012000px;}
.ls4c{letter-spacing:19.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5f{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws40{word-spacing:-20.592000px;}
.ws3e{word-spacing:-20.520000px;}
.ws29{word-spacing:-20.232000px;}
.ws3d{word-spacing:-19.800000px;}
.ws2{word-spacing:-19.206000px;}
.ws2d{word-spacing:-19.080000px;}
.ws4c{word-spacing:-18.546000px;}
.ws5d{word-spacing:-18.480000px;}
.ws20{word-spacing:-18.360000px;}
.ws38{word-spacing:-18.216000px;}
.ws2c{word-spacing:-18.129600px;}
.ws2b{word-spacing:-18.072000px;}
.ws22{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.784000px;}
.ws33{word-spacing:-17.640000px;}
.ws43{word-spacing:-17.556000px;}
.ws3c{word-spacing:-17.352000px;}
.ws28{word-spacing:-17.280000px;}
.ws32{word-spacing:-17.208000px;}
.ws31{word-spacing:-17.136000px;}
.ws37{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws5e{word-spacing:-16.302000px;}
.ws2a{word-spacing:-13.752000px;}
.ws1b{word-spacing:-12.139200px;}
.ws56{word-spacing:-12.012000px;}
.ws61{word-spacing:-11.880000px;}
.ws51{word-spacing:-11.550000px;}
.ws5b{word-spacing:-11.352000px;}
.ws53{word-spacing:-11.286000px;}
.ws59{word-spacing:-11.022000px;}
.ws45{word-spacing:-10.956000px;}
.ws54{word-spacing:-10.890000px;}
.ws62{word-spacing:-10.758000px;}
.ws46{word-spacing:-10.560000px;}
.ws6{word-spacing:-10.200000px;}
.ws3b{word-spacing:-10.152000px;}
.ws48{word-spacing:-9.966000px;}
.ws4d{word-spacing:-9.570000px;}
.ws19{word-spacing:-7.200000px;}
.ws41{word-spacing:-6.600000px;}
.ws66{word-spacing:-6.540000px;}
.ws44{word-spacing:-6.000000px;}
.ws68{word-spacing:-5.700000px;}
.ws7{word-spacing:-5.220000px;}
.wse{word-spacing:-4.200000px;}
.ws24{word-spacing:-3.600000px;}
.wsc{word-spacing:-1.518000px;}
.ws2f{word-spacing:-1.512000px;}
.ws30{word-spacing:-1.296000px;}
.ws57{word-spacing:-1.056000px;}
.ws1d{word-spacing:-1.008000px;}
.ws1e{word-spacing:-0.936000px;}
.ws58{word-spacing:-0.924000px;}
.ws42{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.726000px;}
.ws36{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.660000px;}
.ws1a{word-spacing:-0.648000px;}
.ws52{word-spacing:-0.594000px;}
.ws23{word-spacing:-0.576000px;}
.ws64{word-spacing:-0.528000px;}
.wsf{word-spacing:-0.504000px;}
.ws12{word-spacing:-0.432000px;}
.ws5c{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.330000px;}
.ws26{word-spacing:-0.288000px;}
.ws1f{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.198000px;}
.ws11{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.072000px;}
.ws5a{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws55{word-spacing:0.066000px;}
.ws1c{word-spacing:0.072000px;}
.ws27{word-spacing:0.144000px;}
.ws63{word-spacing:0.198000px;}
.ws39{word-spacing:0.216000px;}
.ws34{word-spacing:0.288000px;}
.ws4a{word-spacing:0.330000px;}
.ws10{word-spacing:0.360000px;}
.ws47{word-spacing:0.396000px;}
.ws16{word-spacing:0.432000px;}
.ws50{word-spacing:0.462000px;}
.ws3a{word-spacing:0.504000px;}
.ws4f{word-spacing:0.528000px;}
.ws2e{word-spacing:0.576000px;}
.ws65{word-spacing:0.594000px;}
.ws35{word-spacing:0.648000px;}
.ws17{word-spacing:0.720000px;}
.ws67{word-spacing:0.726000px;}
.ws8{word-spacing:0.858000px;}
.ws49{word-spacing:0.990000px;}
.ws13{word-spacing:1.008000px;}
.ws18{word-spacing:1.152000px;}
.ws4e{word-spacing:1.254000px;}
.ws3f{word-spacing:1.296000px;}
.ws4b{word-spacing:1.386000px;}
.ws3{word-spacing:2.940000px;}
.ws5{word-spacing:3.360000px;}
.ws25{word-spacing:4.620000px;}
.ws60{word-spacing:7.920000px;}
._10{margin-left:-14.572800px;}
._13{margin-left:-11.912400px;}
._15{margin-left:-10.474800px;}
._9{margin-left:-9.291000px;}
._b{margin-left:-7.723800px;}
._7{margin-left:-5.988000px;}
._1{margin-left:-4.771200px;}
._0{margin-left:-3.565800px;}
._2{margin-left:-1.593600px;}
._d{width:1.000800px;}
._5{width:2.220000px;}
._3{width:3.840600px;}
._4{width:5.038800px;}
._6{width:6.282000px;}
._8{width:7.696800px;}
._c{width:9.342000px;}
._e{width:10.346400px;}
._f{width:11.571600px;}
._11{width:13.148400px;}
._12{width:14.337600px;}
._16{width:15.576000px;}
._a{width:17.442000px;}
._14{width:19.800000px;}
._17{width:21.082800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:61.939350px;}
.y1{bottom:76.339350px;}
.y88{bottom:141.610350px;}
.y187{bottom:142.519800px;}
.y126{bottom:142.866300px;}
.y1cc{bottom:143.149800px;}
.y21{bottom:143.566650px;}
.y66{bottom:144.086400px;}
.y46{bottom:144.778350px;}
.y1a9{bottom:145.000800px;}
.y160{bottom:145.099950px;}
.y106{bottom:145.164300px;}
.yf0{bottom:145.266300px;}
.y13e{bottom:145.614300px;}
.yaa{bottom:145.758300px;}
.y144{bottom:146.100300px;}
.ycd{bottom:146.964300px;}
.y1cb{bottom:162.652800px;}
.y87{bottom:163.210350px;}
.y186{bottom:163.227300px;}
.y20{bottom:163.812150px;}
.y15f{bottom:164.157450px;}
.y125{bottom:164.610300px;}
.y1a8{bottom:165.097800px;}
.y65{bottom:165.380400px;}
.y45{bottom:166.234350px;}
.y105{bottom:166.314300px;}
.yef{bottom:166.416300px;}
.ya9{bottom:166.458300px;}
.y13d{bottom:166.764300px;}
.y143{bottom:167.394300px;}
.ycc{bottom:168.114300px;}
.y1ca{bottom:182.155800px;}
.y15e{bottom:183.511950px;}
.y185{bottom:183.934800px;}
.y1f{bottom:184.057650px;}
.y86{bottom:184.810350px;}
.y1a7{bottom:185.194800px;}
.y124{bottom:186.354300px;}
.y64{bottom:186.674400px;}
.y104{bottom:187.464300px;}
.yee{bottom:187.566300px;}
.y44{bottom:187.690350px;}
.y13c{bottom:187.914300px;}
.ya8{bottom:188.202300px;}
.y142{bottom:188.688300px;}
.ycb{bottom:189.264300px;}
.y1c9{bottom:201.658800px;}
.y15d{bottom:202.866450px;}
.y184{bottom:204.180300px;}
.y1e{bottom:204.303150px;}
.y1a6{bottom:205.291800px;}
.y63{bottom:207.968400px;}
.y123{bottom:208.098300px;}
.yed{bottom:208.572300px;}
.y103{bottom:208.614300px;}
.y13b{bottom:209.064300px;}
.y43{bottom:209.146350px;}
.ya7{bottom:209.946300px;}
.y141{bottom:209.982300px;}
.yca{bottom:210.414300px;}
.y85{bottom:214.914300px;}
.y1c8{bottom:221.161800px;}
.y15c{bottom:222.220950px;}
.y183{bottom:224.425800px;}
.y1d{bottom:224.548650px;}
.y1a5{bottom:225.388800px;}
.y62{bottom:229.262400px;}
.yec{bottom:229.578300px;}
.y102{bottom:229.764300px;}
.y122{bottom:229.842300px;}
.y13a{bottom:230.214300px;}
.y42{bottom:230.602350px;}
.y140{bottom:231.276300px;}
.yc9{bottom:231.564300px;}
.ya6{bottom:231.690300px;}
.y15b{bottom:241.575450px;}
.y182{bottom:244.671300px;}
.y1c{bottom:244.794150px;}
.y1a4{bottom:245.485800px;}
.y61{bottom:250.556400px;}
.yeb{bottom:250.584300px;}
.y101{bottom:250.914300px;}
.y139{bottom:251.364300px;}
.y121{bottom:251.586300px;}
.y41{bottom:252.058350px;}
.y13f{bottom:252.570300px;}
.yc8{bottom:252.714300px;}
.ya5{bottom:253.434300px;}
.y1c7{bottom:255.361800px;}
.y1ec{bottom:260.911800px;}
.y15a{bottom:260.929950px;}
.y181{bottom:264.916800px;}
.y1b{bottom:265.039650px;}
.y1a3{bottom:265.582800px;}
.yea{bottom:271.590300px;}
.y100{bottom:272.064300px;}
.y138{bottom:272.514300px;}
.y120{bottom:273.330300px;}
.y40{bottom:273.514350px;}
.yc7{bottom:273.864300px;}
.ya4{bottom:275.178300px;}
.y1eb{bottom:278.911800px;}
.y84{bottom:279.714300px;}
.y159{bottom:280.284450px;}
.y60{bottom:280.366350px;}
.y180{bottom:285.162300px;}
.y1a{bottom:285.285150px;}
.y1a2{bottom:285.679800px;}
.y1c6{bottom:289.567800px;}
.ye9{bottom:292.596300px;}
.yff{bottom:293.214300px;}
.y137{bottom:293.664300px;}
.y3f{bottom:294.970350px;}
.yc6{bottom:295.014300px;}
.y11f{bottom:295.074300px;}
.y1ea{bottom:296.911800px;}
.ya3{bottom:296.922300px;}
.y158{bottom:299.638950px;}
.y83{bottom:301.314300px;}
.y5f{bottom:301.660350px;}
.y17f{bottom:305.407800px;}
.y1a1{bottom:305.776800px;}
.y1c5{bottom:310.861800px;}
.ye8{bottom:313.602300px;}
.y19{bottom:314.038950px;}
.yfe{bottom:314.364300px;}
.y136{bottom:314.814300px;}
.y1e9{bottom:314.911800px;}
.yc5{bottom:316.164300px;}
.y3e{bottom:316.426350px;}
.y11e{bottom:316.818300px;}
.ya2{bottom:318.666300px;}
.y157{bottom:318.993450px;}
.y82{bottom:322.914300px;}
.y17e{bottom:325.653300px;}
.y1a0{bottom:325.873800px;}
.y1c4{bottom:332.161800px;}
.y1e8{bottom:332.911800px;}
.ye7{bottom:334.608300px;}
.yfd{bottom:335.514300px;}
.y135{bottom:335.964300px;}
.yc4{bottom:337.314300px;}
.y3d{bottom:337.882350px;}
.y156{bottom:338.347950px;}
.y11d{bottom:338.562300px;}
.ya1{bottom:340.410300px;}
.y81{bottom:344.514300px;}
.y17d{bottom:345.898800px;}
.y19f{bottom:345.970800px;}
.ye6{bottom:355.614300px;}
.yfc{bottom:356.664300px;}
.y134{bottom:357.114300px;}
.y155{bottom:357.702450px;}
.yc3{bottom:358.464300px;}
.y3c{bottom:359.338350px;}
.y11c{bottom:360.306300px;}
.ya0{bottom:362.154300px;}
.y5e{bottom:365.650350px;}
.y17c{bottom:365.995800px;}
.y19e{bottom:366.067800px;}
.y80{bottom:366.114300px;}
.y18{bottom:367.020450px;}
.y1e7{bottom:372.511800px;}
.ye5{bottom:376.614300px;}
.yfb{bottom:377.814300px;}
.y133{bottom:378.264300px;}
.y1c3{bottom:379.261800px;}
.yc2{bottom:379.614300px;}
.y3b{bottom:380.794350px;}
.y11b{bottom:382.050300px;}
.y9f{bottom:383.898300px;}
.y154{bottom:385.556400px;}
.y17b{bottom:386.092800px;}
.y19d{bottom:386.164800px;}
.y5d{bottom:386.944350px;}
.y17{bottom:387.265950px;}
.y7f{bottom:387.714300px;}
.y1e6{bottom:392.311800px;}
.y1c2{bottom:398.011800px;}
.yfa{bottom:398.964300px;}
.y132{bottom:399.414300px;}
.yc1{bottom:400.764300px;}
.y3a{bottom:402.250350px;}
.y11a{bottom:403.794300px;}
.y9e{bottom:405.642300px;}
.y17a{bottom:406.189800px;}
.y19c{bottom:406.261800px;}
.y16{bottom:407.511450px;}
.y5c{bottom:408.238350px;}
.y7e{bottom:409.314300px;}
.y1e5{bottom:412.111800px;}
.y1c1{bottom:416.761800px;}
.ye4{bottom:417.174300px;}
.yf9{bottom:420.114300px;}
.y131{bottom:420.564300px;}
.yc0{bottom:421.914300px;}
.y39{bottom:423.706350px;}
.y119{bottom:425.538300px;}
.y179{bottom:426.286800px;}
.y9d{bottom:427.386300px;}
.y15{bottom:427.756950px;}
.y5b{bottom:429.532350px;}
.y7d{bottom:430.914300px;}
.y153{bottom:432.760350px;}
.y1c0{bottom:435.511800px;}
.ye3{bottom:438.468300px;}
.yf8{bottom:441.264300px;}
.y130{bottom:441.714300px;}
.ybf{bottom:443.064300px;}
.y38{bottom:445.162350px;}
.y178{bottom:446.383800px;}
.y118{bottom:447.282300px;}
.y14{bottom:448.002450px;}
.y19b{bottom:448.411800px;}
.y9c{bottom:449.130300px;}
.y5a{bottom:450.826350px;}
.y7c{bottom:452.514300px;}
.y1e4{bottom:453.511800px;}
.y152{bottom:453.910350px;}
.y1bf{bottom:454.261800px;}
.ye2{bottom:459.762300px;}
.yf7{bottom:462.414300px;}
.y12f{bottom:462.864300px;}
.ybe{bottom:464.214300px;}
.y177{bottom:466.480800px;}
.y37{bottom:466.618350px;}
.y13{bottom:468.247950px;}
.y117{bottom:469.026300px;}
.y9b{bottom:470.874300px;}
.y59{bottom:472.120350px;}
.y1e3{bottom:473.311800px;}
.y7b{bottom:474.114300px;}
.y151{bottom:475.060350px;}
.ye1{bottom:481.056300px;}
.yf6{bottom:483.564300px;}
.y12e{bottom:484.014300px;}
.ybd{bottom:485.364300px;}
.y176{bottom:486.577800px;}
.y36{bottom:488.074350px;}
.y12{bottom:488.493450px;}
.y19a{bottom:490.711800px;}
.y116{bottom:490.770300px;}
.y9a{bottom:492.618300px;}
.y1e2{bottom:493.111800px;}
.y58{bottom:493.414350px;}
.y1be{bottom:495.369300px;}
.y7a{bottom:495.714300px;}
.y150{bottom:496.210350px;}
.ye0{bottom:502.350300px;}
.yf5{bottom:504.714300px;}
.y12d{bottom:505.164300px;}
.ybc{bottom:506.514300px;}
.y175{bottom:506.674800px;}
.y11{bottom:508.738950px;}
.y35{bottom:509.530350px;}
.y115{bottom:512.514300px;}
.y199{bottom:512.761800px;}
.y1e1{bottom:512.911800px;}
.y99{bottom:514.362300px;}
.y57{bottom:514.708350px;}
.y1bd{bottom:515.911800px;}
.y79{bottom:517.314300px;}
.y14f{bottom:517.360350px;}
.ydf{bottom:523.644300px;}
.yf4{bottom:525.864300px;}
.y12c{bottom:526.314300px;}
.y174{bottom:526.771800px;}
.ybb{bottom:527.664300px;}
.y34{bottom:530.986350px;}
.y1e0{bottom:532.711800px;}
.y114{bottom:534.330300px;}
.y198{bottom:534.811800px;}
.y56{bottom:536.002350px;}
.y98{bottom:536.106300px;}
.y10{bottom:537.492900px;}
.y14e{bottom:538.510350px;}
.y78{bottom:538.914300px;}
.yde{bottom:544.938300px;}
.y173{bottom:546.868800px;}
.yf3{bottom:547.014300px;}
.y12b{bottom:547.464300px;}
.yba{bottom:548.814300px;}
.y33{bottom:552.442350px;}
.y1df{bottom:552.511800px;}
.y113{bottom:556.074300px;}
.y197{bottom:556.861800px;}
.y55{bottom:557.296350px;}
.y97{bottom:557.850300px;}
.y1bc{bottom:558.765300px;}
.y14d{bottom:559.660350px;}
.y77{bottom:560.514300px;}
.ydd{bottom:566.232300px;}
.y172{bottom:566.965800px;}
.yf2{bottom:568.164300px;}
.y12a{bottom:568.614300px;}
.yb9{bottom:569.964300px;}
.y1de{bottom:572.311800px;}
.y32{bottom:573.898350px;}
.y112{bottom:577.818300px;}
.y1bb{bottom:578.268300px;}
.y54{bottom:578.590350px;}
.y96{bottom:579.594300px;}
.y14c{bottom:580.810350px;}
.y76{bottom:582.114300px;}
.y171{bottom:587.062800px;}
.ydc{bottom:587.526300px;}
.yf1{bottom:589.314300px;}
.y129{bottom:589.764300px;}
.yf{bottom:590.447400px;}
.y1dd{bottom:592.111800px;}
.y31{bottom:595.354350px;}
.y1ba{bottom:597.771300px;}
.y111{bottom:599.562300px;}
.y53{bottom:599.884350px;}
.y95{bottom:601.338300px;}
.y14b{bottom:601.960350px;}
.y75{bottom:603.714300px;}
.y170{bottom:607.159800px;}
.ydb{bottom:608.820300px;}
.yb8{bottom:610.464300px;}
.ye{bottom:610.692900px;}
.y1dc{bottom:611.911800px;}
.y30{bottom:616.810350px;}
.y1b9{bottom:617.274300px;}
.y196{bottom:619.405800px;}
.y52{bottom:621.178350px;}
.y110{bottom:621.306300px;}
.y94{bottom:623.082300px;}
.y14a{bottom:623.110350px;}
.y128{bottom:623.664300px;}
.y74{bottom:625.314300px;}
.y16f{bottom:627.256800px;}
.yda{bottom:630.174300px;}
.yb7{bottom:631.614300px;}
.y1db{bottom:631.711800px;}
.y1b8{bottom:636.777300px;}
.y195{bottom:636.961800px;}
.y2f{bottom:638.410350px;}
.y51{bottom:642.472350px;}
.y10f{bottom:643.050300px;}
.y149{bottom:644.260350px;}
.y127{bottom:644.814300px;}
.y93{bottom:644.826300px;}
.y73{bottom:646.914300px;}
.y16e{bottom:647.353800px;}
.yd9{bottom:651.468300px;}
.y1da{bottom:651.511800px;}
.yb6{bottom:652.764300px;}
.yd{bottom:652.965900px;}
.y1b7{bottom:656.280300px;}
.y2e{bottom:660.010350px;}
.y50{bottom:663.766350px;}
.y10e{bottom:664.794300px;}
.y148{bottom:665.410350px;}
.y194{bottom:665.520300px;}
.y92{bottom:666.570300px;}
.y16d{bottom:667.450800px;}
.y72{bottom:668.514300px;}
.y1d9{bottom:671.311800px;}
.yd8{bottom:672.762300px;}
.yb5{bottom:673.914300px;}
.y1b6{bottom:675.783300px;}
.y2d{bottom:681.610350px;}
.yc{bottom:684.024900px;}
.y4f{bottom:685.060350px;}
.y193{bottom:685.765800px;}
.y10d{bottom:686.538300px;}
.y147{bottom:686.560350px;}
.y16c{bottom:687.547800px;}
.y91{bottom:688.314300px;}
.y71{bottom:690.114300px;}
.y1d8{bottom:691.111800px;}
.yd7{bottom:694.056300px;}
.yb4{bottom:695.064300px;}
.y1b5{bottom:695.286300px;}
.y2c{bottom:703.210350px;}
.y192{bottom:706.011300px;}
.y16b{bottom:707.644800px;}
.y146{bottom:707.710350px;}
.y10c{bottom:708.282300px;}
.y90{bottom:710.064300px;}
.y1d7{bottom:710.911800px;}
.y70{bottom:711.714300px;}
.y1b4{bottom:714.789300px;}
.y4e{bottom:714.864300px;}
.yb{bottom:715.083900px;}
.yd6{bottom:715.350300px;}
.yb3{bottom:716.214300px;}
.y2b{bottom:724.810350px;}
.y191{bottom:726.256800px;}
.y16a{bottom:727.741800px;}
.y145{bottom:728.860350px;}
.y10b{bottom:730.026300px;}
.y1d6{bottom:730.711800px;}
.y6f{bottom:733.314300px;}
.y1b3{bottom:734.292300px;}
.yd5{bottom:736.644300px;}
.yb2{bottom:737.364300px;}
.y8f{bottom:745.170300px;}
.ya{bottom:746.142900px;}
.y2a{bottom:746.410350px;}
.y190{bottom:746.502300px;}
.y169{bottom:747.838800px;}
.y1d5{bottom:750.511800px;}
.y10a{bottom:751.770300px;}
.y1b2{bottom:753.795300px;}
.y6e{bottom:754.914300px;}
.yd4{bottom:757.938300px;}
.yb1{bottom:758.514300px;}
.y18f{bottom:766.747800px;}
.y8e{bottom:766.914300px;}
.y168{bottom:767.935800px;}
.y29{bottom:768.010350px;}
.y1d4{bottom:770.311800px;}
.y1b1{bottom:773.298300px;}
.y109{bottom:773.514300px;}
.y6d{bottom:776.514300px;}
.y4d{bottom:778.800300px;}
.yd3{bottom:779.232300px;}
.yb0{bottom:779.664300px;}
.y18e{bottom:786.993300px;}
.y167{bottom:788.032800px;}
.y28{bottom:789.610350px;}
.y1d3{bottom:790.111800px;}
.y1b0{bottom:792.801300px;}
.y6c{bottom:798.114300px;}
.y4c{bottom:800.094300px;}
.yd2{bottom:800.526300px;}
.yaf{bottom:800.814300px;}
.y9{bottom:801.856800px;}
.y18d{bottom:807.238800px;}
.y166{bottom:808.129800px;}
.y1d2{bottom:809.911800px;}
.y108{bottom:810.420300px;}
.y27{bottom:811.210350px;}
.y1af{bottom:812.304300px;}
.y8d{bottom:818.994300px;}
.y6b{bottom:819.714300px;}
.y8{bottom:820.306800px;}
.y4b{bottom:821.388300px;}
.yd1{bottom:821.820300px;}
.yae{bottom:821.964300px;}
.y18c{bottom:827.484300px;}
.y165{bottom:828.226800px;}
.y1d1{bottom:829.711800px;}
.y1ae{bottom:831.807300px;}
.y107{bottom:832.164300px;}
.y26{bottom:832.810350px;}
.y7{bottom:838.756800px;}
.y8c{bottom:840.738300px;}
.y6a{bottom:841.314300px;}
.y4a{bottom:842.682300px;}
.yad{bottom:843.114300px;}
.y18b{bottom:847.729800px;}
.y164{bottom:848.323800px;}
.y1d0{bottom:849.511800px;}
.y1ad{bottom:851.310300px;}
.y25{bottom:854.410350px;}
.y6{bottom:857.206800px;}
.y8b{bottom:862.482300px;}
.y69{bottom:862.914300px;}
.y49{bottom:863.976300px;}
.yac{bottom:864.264300px;}
.yd0{bottom:864.408300px;}
.y18a{bottom:867.975300px;}
.y163{bottom:868.420800px;}
.y1cf{bottom:869.311800px;}
.y1ac{bottom:870.813300px;}
.y24{bottom:876.010350px;}
.y8a{bottom:884.226300px;}
.y68{bottom:884.514300px;}
.y48{bottom:885.270300px;}
.yab{bottom:885.414300px;}
.ycf{bottom:885.702300px;}
.y189{bottom:888.220800px;}
.y162{bottom:888.517800px;}
.y1ce{bottom:889.111800px;}
.y1ab{bottom:890.316300px;}
.y5{bottom:891.811800px;}
.y23{bottom:897.610350px;}
.y89{bottom:905.970300px;}
.y67{bottom:906.114300px;}
.y47{bottom:906.564300px;}
.yce{bottom:906.708300px;}
.y188{bottom:908.466300px;}
.y161{bottom:908.614800px;}
.y1cd{bottom:908.911800px;}
.y1aa{bottom:909.819300px;}
.y4{bottom:910.261800px;}
.y22{bottom:927.714300px;}
.y3{bottom:928.711800px;}
.h2{height:28.977539px;}
.h4{height:33.117188px;}
.h9{height:35.663086px;}
.h3{height:41.396484px;}
.hb{height:43.989258px;}
.hd{height:48.399902px;}
.h5{height:50.947266px;}
.h6{height:56.041992px;}
.h8{height:61.136719px;}
.hc{height:63.082031px;}
.ha{height:63.322031px;}
.h7{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.x7{left:97.797900px;}
.xa{left:119.053350px;}
.xc{left:140.323650px;}
.xb{left:144.658050px;}
.x9{left:150.670350px;}
.x8{left:176.202450px;}
.xf{left:181.067400px;}
.x1{left:210.892950px;}
.x10{left:257.935800px;}
.x4{left:290.943450px;}
.x2{left:322.832700px;}
.x3{left:328.106250px;}
.xe{left:531.240300px;}
.xd{left:540.203550px;}
.x5{left:602.539350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:23.680000pt;}
.ls4e{letter-spacing:-7.040000pt;}
.ls24{letter-spacing:-3.584000pt;}
.ls38{letter-spacing:-1.232000pt;}
.ls2d{letter-spacing:-1.216000pt;}
.ls42{letter-spacing:-1.114667pt;}
.ls15{letter-spacing:-1.024000pt;}
.ls36{letter-spacing:-0.938667pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls35{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.762667pt;}
.ls53{letter-spacing:-0.645333pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls50{letter-spacing:-0.528000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls43{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls34{letter-spacing:-0.352000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.293333pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls4f{letter-spacing:-0.176000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.058667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.230400pt;}
.ls18{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.293333pt;}
.ls1f{letter-spacing:0.307200pt;}
.ls12{letter-spacing:0.320000pt;}
.ls40{letter-spacing:0.352000pt;}
.lse{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls4d{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls3a{letter-spacing:0.528000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls25{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.645333pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls3d{letter-spacing:0.821333pt;}
.ls19{letter-spacing:0.832000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls3c{letter-spacing:0.938667pt;}
.ls20{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.344000pt;}
.ls7{letter-spacing:1.349333pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls29{letter-spacing:3.392000pt;}
.ls4b{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls28{letter-spacing:3.904000pt;}
.lsa{letter-spacing:4.640000pt;}
.ls52{letter-spacing:5.066667pt;}
.ls32{letter-spacing:5.333333pt;}
.ls51{letter-spacing:5.813333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls30{letter-spacing:6.336000pt;}
.ls3{letter-spacing:6.400000pt;}
.ls41{letter-spacing:8.506667pt;}
.ls31{letter-spacing:8.858667pt;}
.ls2b{letter-spacing:9.024000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls33{letter-spacing:9.386667pt;}
.ls4a{letter-spacing:9.562667pt;}
.ls3b{letter-spacing:9.680000pt;}
.ls2f{letter-spacing:9.738667pt;}
.ls3e{letter-spacing:9.797333pt;}
.ls45{letter-spacing:10.032000pt;}
.ls3f{letter-spacing:10.090667pt;}
.ls39{letter-spacing:10.266667pt;}
.ls49{letter-spacing:10.560000pt;}
.ls47{letter-spacing:10.677333pt;}
.ls4c{letter-spacing:17.600000pt;}
.ws5f{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws40{word-spacing:-18.304000pt;}
.ws3e{word-spacing:-18.240000pt;}
.ws29{word-spacing:-17.984000pt;}
.ws3d{word-spacing:-17.600000pt;}
.ws2{word-spacing:-17.072000pt;}
.ws2d{word-spacing:-16.960000pt;}
.ws4c{word-spacing:-16.485333pt;}
.ws5d{word-spacing:-16.426667pt;}
.ws20{word-spacing:-16.320000pt;}
.ws38{word-spacing:-16.192000pt;}
.ws2c{word-spacing:-16.115200pt;}
.ws2b{word-spacing:-16.064000pt;}
.ws22{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.808000pt;}
.ws33{word-spacing:-15.680000pt;}
.ws43{word-spacing:-15.605333pt;}
.ws3c{word-spacing:-15.424000pt;}
.ws28{word-spacing:-15.360000pt;}
.ws32{word-spacing:-15.296000pt;}
.ws31{word-spacing:-15.232000pt;}
.ws37{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws5e{word-spacing:-14.490667pt;}
.ws2a{word-spacing:-12.224000pt;}
.ws1b{word-spacing:-10.790400pt;}
.ws56{word-spacing:-10.677333pt;}
.ws61{word-spacing:-10.560000pt;}
.ws51{word-spacing:-10.266667pt;}
.ws5b{word-spacing:-10.090667pt;}
.ws53{word-spacing:-10.032000pt;}
.ws59{word-spacing:-9.797333pt;}
.ws45{word-spacing:-9.738667pt;}
.ws54{word-spacing:-9.680000pt;}
.ws62{word-spacing:-9.562667pt;}
.ws46{word-spacing:-9.386667pt;}
.ws6{word-spacing:-9.066667pt;}
.ws3b{word-spacing:-9.024000pt;}
.ws48{word-spacing:-8.858667pt;}
.ws4d{word-spacing:-8.506667pt;}
.ws19{word-spacing:-6.400000pt;}
.ws41{word-spacing:-5.866667pt;}
.ws66{word-spacing:-5.813333pt;}
.ws44{word-spacing:-5.333333pt;}
.ws68{word-spacing:-5.066667pt;}
.ws7{word-spacing:-4.640000pt;}
.wse{word-spacing:-3.733333pt;}
.ws24{word-spacing:-3.200000pt;}
.wsc{word-spacing:-1.349333pt;}
.ws2f{word-spacing:-1.344000pt;}
.ws30{word-spacing:-1.152000pt;}
.ws57{word-spacing:-0.938667pt;}
.ws1d{word-spacing:-0.896000pt;}
.ws1e{word-spacing:-0.832000pt;}
.ws58{word-spacing:-0.821333pt;}
.ws42{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.645333pt;}
.ws36{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.586667pt;}
.ws1a{word-spacing:-0.576000pt;}
.ws52{word-spacing:-0.528000pt;}
.ws23{word-spacing:-0.512000pt;}
.ws64{word-spacing:-0.469333pt;}
.wsf{word-spacing:-0.448000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws5c{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.293333pt;}
.ws26{word-spacing:-0.256000pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.176000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws5a{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws55{word-spacing:0.058667pt;}
.ws1c{word-spacing:0.064000pt;}
.ws27{word-spacing:0.128000pt;}
.ws63{word-spacing:0.176000pt;}
.ws39{word-spacing:0.192000pt;}
.ws34{word-spacing:0.256000pt;}
.ws4a{word-spacing:0.293333pt;}
.ws10{word-spacing:0.320000pt;}
.ws47{word-spacing:0.352000pt;}
.ws16{word-spacing:0.384000pt;}
.ws50{word-spacing:0.410667pt;}
.ws3a{word-spacing:0.448000pt;}
.ws4f{word-spacing:0.469333pt;}
.ws2e{word-spacing:0.512000pt;}
.ws65{word-spacing:0.528000pt;}
.ws35{word-spacing:0.576000pt;}
.ws17{word-spacing:0.640000pt;}
.ws67{word-spacing:0.645333pt;}
.ws8{word-spacing:0.762667pt;}
.ws49{word-spacing:0.880000pt;}
.ws13{word-spacing:0.896000pt;}
.ws18{word-spacing:1.024000pt;}
.ws4e{word-spacing:1.114667pt;}
.ws3f{word-spacing:1.152000pt;}
.ws4b{word-spacing:1.232000pt;}
.ws3{word-spacing:2.613333pt;}
.ws5{word-spacing:2.986667pt;}
.ws25{word-spacing:4.106667pt;}
.ws60{word-spacing:7.040000pt;}
._10{margin-left:-12.953600pt;}
._13{margin-left:-10.588800pt;}
._15{margin-left:-9.310933pt;}
._9{margin-left:-8.258667pt;}
._b{margin-left:-6.865600pt;}
._7{margin-left:-5.322667pt;}
._1{margin-left:-4.241067pt;}
._0{margin-left:-3.169600pt;}
._2{margin-left:-1.416533pt;}
._d{width:0.889600pt;}
._5{width:1.973333pt;}
._3{width:3.413867pt;}
._4{width:4.478933pt;}
._6{width:5.584000pt;}
._8{width:6.841600pt;}
._c{width:8.304000pt;}
._e{width:9.196800pt;}
._f{width:10.285867pt;}
._11{width:11.687467pt;}
._12{width:12.744533pt;}
._16{width:13.845333pt;}
._a{width:15.504000pt;}
._14{width:17.600000pt;}
._17{width:18.740267pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:55.057200pt;}
.y1{bottom:67.857200pt;}
.y88{bottom:125.875867pt;}
.y187{bottom:126.684267pt;}
.y126{bottom:126.992267pt;}
.y1cc{bottom:127.244267pt;}
.y21{bottom:127.614800pt;}
.y66{bottom:128.076800pt;}
.y46{bottom:128.691867pt;}
.y1a9{bottom:128.889600pt;}
.y160{bottom:128.977733pt;}
.y106{bottom:129.034933pt;}
.yf0{bottom:129.125600pt;}
.y13e{bottom:129.434933pt;}
.yaa{bottom:129.562933pt;}
.y144{bottom:129.866933pt;}
.ycd{bottom:130.634933pt;}
.y1cb{bottom:144.580267pt;}
.y87{bottom:145.075867pt;}
.y186{bottom:145.090933pt;}
.y20{bottom:145.610800pt;}
.y15f{bottom:145.917733pt;}
.y125{bottom:146.320267pt;}
.y1a8{bottom:146.753600pt;}
.y65{bottom:147.004800pt;}
.y45{bottom:147.763867pt;}
.y105{bottom:147.834933pt;}
.yef{bottom:147.925600pt;}
.ya9{bottom:147.962933pt;}
.y13d{bottom:148.234933pt;}
.y143{bottom:148.794933pt;}
.ycc{bottom:149.434933pt;}
.y1ca{bottom:161.916267pt;}
.y15e{bottom:163.121733pt;}
.y185{bottom:163.497600pt;}
.y1f{bottom:163.606800pt;}
.y86{bottom:164.275867pt;}
.y1a7{bottom:164.617600pt;}
.y124{bottom:165.648267pt;}
.y64{bottom:165.932800pt;}
.y104{bottom:166.634933pt;}
.yee{bottom:166.725600pt;}
.y44{bottom:166.835867pt;}
.y13c{bottom:167.034933pt;}
.ya8{bottom:167.290933pt;}
.y142{bottom:167.722933pt;}
.ycb{bottom:168.234933pt;}
.y1c9{bottom:179.252267pt;}
.y15d{bottom:180.325733pt;}
.y184{bottom:181.493600pt;}
.y1e{bottom:181.602800pt;}
.y1a6{bottom:182.481600pt;}
.y63{bottom:184.860800pt;}
.y123{bottom:184.976267pt;}
.yed{bottom:185.397600pt;}
.y103{bottom:185.434933pt;}
.y13b{bottom:185.834933pt;}
.y43{bottom:185.907867pt;}
.ya7{bottom:186.618933pt;}
.y141{bottom:186.650933pt;}
.yca{bottom:187.034933pt;}
.y85{bottom:191.034933pt;}
.y1c8{bottom:196.588267pt;}
.y15c{bottom:197.529733pt;}
.y183{bottom:199.489600pt;}
.y1d{bottom:199.598800pt;}
.y1a5{bottom:200.345600pt;}
.y62{bottom:203.788800pt;}
.yec{bottom:204.069600pt;}
.y102{bottom:204.234933pt;}
.y122{bottom:204.304267pt;}
.y13a{bottom:204.634933pt;}
.y42{bottom:204.979867pt;}
.y140{bottom:205.578933pt;}
.yc9{bottom:205.834933pt;}
.ya6{bottom:205.946933pt;}
.y15b{bottom:214.733733pt;}
.y182{bottom:217.485600pt;}
.y1c{bottom:217.594800pt;}
.y1a4{bottom:218.209600pt;}
.y61{bottom:222.716800pt;}
.yeb{bottom:222.741600pt;}
.y101{bottom:223.034933pt;}
.y139{bottom:223.434933pt;}
.y121{bottom:223.632267pt;}
.y41{bottom:224.051867pt;}
.y13f{bottom:224.506933pt;}
.yc8{bottom:224.634933pt;}
.ya5{bottom:225.274933pt;}
.y1c7{bottom:226.988267pt;}
.y1ec{bottom:231.921600pt;}
.y15a{bottom:231.937733pt;}
.y181{bottom:235.481600pt;}
.y1b{bottom:235.590800pt;}
.y1a3{bottom:236.073600pt;}
.yea{bottom:241.413600pt;}
.y100{bottom:241.834933pt;}
.y138{bottom:242.234933pt;}
.y120{bottom:242.960267pt;}
.y40{bottom:243.123867pt;}
.yc7{bottom:243.434933pt;}
.ya4{bottom:244.602933pt;}
.y1eb{bottom:247.921600pt;}
.y84{bottom:248.634933pt;}
.y159{bottom:249.141733pt;}
.y60{bottom:249.214533pt;}
.y180{bottom:253.477600pt;}
.y1a{bottom:253.586800pt;}
.y1a2{bottom:253.937600pt;}
.y1c6{bottom:257.393600pt;}
.ye9{bottom:260.085600pt;}
.yff{bottom:260.634933pt;}
.y137{bottom:261.034933pt;}
.y3f{bottom:262.195867pt;}
.yc6{bottom:262.234933pt;}
.y11f{bottom:262.288267pt;}
.y1ea{bottom:263.921600pt;}
.ya3{bottom:263.930933pt;}
.y158{bottom:266.345733pt;}
.y83{bottom:267.834933pt;}
.y5f{bottom:268.142533pt;}
.y17f{bottom:271.473600pt;}
.y1a1{bottom:271.801600pt;}
.y1c5{bottom:276.321600pt;}
.ye8{bottom:278.757600pt;}
.y19{bottom:279.145733pt;}
.yfe{bottom:279.434933pt;}
.y136{bottom:279.834933pt;}
.y1e9{bottom:279.921600pt;}
.yc5{bottom:281.034933pt;}
.y3e{bottom:281.267867pt;}
.y11e{bottom:281.616267pt;}
.ya2{bottom:283.258933pt;}
.y157{bottom:283.549733pt;}
.y82{bottom:287.034933pt;}
.y17e{bottom:289.469600pt;}
.y1a0{bottom:289.665600pt;}
.y1c4{bottom:295.254933pt;}
.y1e8{bottom:295.921600pt;}
.ye7{bottom:297.429600pt;}
.yfd{bottom:298.234933pt;}
.y135{bottom:298.634933pt;}
.yc4{bottom:299.834933pt;}
.y3d{bottom:300.339867pt;}
.y156{bottom:300.753733pt;}
.y11d{bottom:300.944267pt;}
.ya1{bottom:302.586933pt;}
.y81{bottom:306.234933pt;}
.y17d{bottom:307.465600pt;}
.y19f{bottom:307.529600pt;}
.ye6{bottom:316.101600pt;}
.yfc{bottom:317.034933pt;}
.y134{bottom:317.434933pt;}
.y155{bottom:317.957733pt;}
.yc3{bottom:318.634933pt;}
.y3c{bottom:319.411867pt;}
.y11c{bottom:320.272267pt;}
.ya0{bottom:321.914933pt;}
.y5e{bottom:325.022533pt;}
.y17c{bottom:325.329600pt;}
.y19e{bottom:325.393600pt;}
.y80{bottom:325.434933pt;}
.y18{bottom:326.240400pt;}
.y1e7{bottom:331.121600pt;}
.ye5{bottom:334.768267pt;}
.yfb{bottom:335.834933pt;}
.y133{bottom:336.234933pt;}
.y1c3{bottom:337.121600pt;}
.yc2{bottom:337.434933pt;}
.y3b{bottom:338.483867pt;}
.y11b{bottom:339.600267pt;}
.y9f{bottom:341.242933pt;}
.y154{bottom:342.716800pt;}
.y17b{bottom:343.193600pt;}
.y19d{bottom:343.257600pt;}
.y5d{bottom:343.950533pt;}
.y17{bottom:344.236400pt;}
.y7f{bottom:344.634933pt;}
.y1e6{bottom:348.721600pt;}
.y1c2{bottom:353.788267pt;}
.yfa{bottom:354.634933pt;}
.y132{bottom:355.034933pt;}
.yc1{bottom:356.234933pt;}
.y3a{bottom:357.555867pt;}
.y11a{bottom:358.928267pt;}
.y9e{bottom:360.570933pt;}
.y17a{bottom:361.057600pt;}
.y19c{bottom:361.121600pt;}
.y16{bottom:362.232400pt;}
.y5c{bottom:362.878533pt;}
.y7e{bottom:363.834933pt;}
.y1e5{bottom:366.321600pt;}
.y1c1{bottom:370.454933pt;}
.ye4{bottom:370.821600pt;}
.yf9{bottom:373.434933pt;}
.y131{bottom:373.834933pt;}
.yc0{bottom:375.034933pt;}
.y39{bottom:376.627867pt;}
.y119{bottom:378.256267pt;}
.y179{bottom:378.921600pt;}
.y9d{bottom:379.898933pt;}
.y15{bottom:380.228400pt;}
.y5b{bottom:381.806533pt;}
.y7d{bottom:383.034933pt;}
.y153{bottom:384.675867pt;}
.y1c0{bottom:387.121600pt;}
.ye3{bottom:389.749600pt;}
.yf8{bottom:392.234933pt;}
.y130{bottom:392.634933pt;}
.ybf{bottom:393.834933pt;}
.y38{bottom:395.699867pt;}
.y178{bottom:396.785600pt;}
.y118{bottom:397.584267pt;}
.y14{bottom:398.224400pt;}
.y19b{bottom:398.588267pt;}
.y9c{bottom:399.226933pt;}
.y5a{bottom:400.734533pt;}
.y7c{bottom:402.234933pt;}
.y1e4{bottom:403.121600pt;}
.y152{bottom:403.475867pt;}
.y1bf{bottom:403.788267pt;}
.ye2{bottom:408.677600pt;}
.yf7{bottom:411.034933pt;}
.y12f{bottom:411.434933pt;}
.ybe{bottom:412.634933pt;}
.y177{bottom:414.649600pt;}
.y37{bottom:414.771867pt;}
.y13{bottom:416.220400pt;}
.y117{bottom:416.912267pt;}
.y9b{bottom:418.554933pt;}
.y59{bottom:419.662533pt;}
.y1e3{bottom:420.721600pt;}
.y7b{bottom:421.434933pt;}
.y151{bottom:422.275867pt;}
.ye1{bottom:427.605600pt;}
.yf6{bottom:429.834933pt;}
.y12e{bottom:430.234933pt;}
.ybd{bottom:431.434933pt;}
.y176{bottom:432.513600pt;}
.y36{bottom:433.843867pt;}
.y12{bottom:434.216400pt;}
.y19a{bottom:436.188267pt;}
.y116{bottom:436.240267pt;}
.y9a{bottom:437.882933pt;}
.y1e2{bottom:438.321600pt;}
.y58{bottom:438.590533pt;}
.y1be{bottom:440.328267pt;}
.y7a{bottom:440.634933pt;}
.y150{bottom:441.075867pt;}
.ye0{bottom:446.533600pt;}
.yf5{bottom:448.634933pt;}
.y12d{bottom:449.034933pt;}
.ybc{bottom:450.234933pt;}
.y175{bottom:450.377600pt;}
.y11{bottom:452.212400pt;}
.y35{bottom:452.915867pt;}
.y115{bottom:455.568267pt;}
.y199{bottom:455.788267pt;}
.y1e1{bottom:455.921600pt;}
.y99{bottom:457.210933pt;}
.y57{bottom:457.518533pt;}
.y1bd{bottom:458.588267pt;}
.y79{bottom:459.834933pt;}
.y14f{bottom:459.875867pt;}
.ydf{bottom:465.461600pt;}
.yf4{bottom:467.434933pt;}
.y12c{bottom:467.834933pt;}
.y174{bottom:468.241600pt;}
.ybb{bottom:469.034933pt;}
.y34{bottom:471.987867pt;}
.y1e0{bottom:473.521600pt;}
.y114{bottom:474.960267pt;}
.y198{bottom:475.388267pt;}
.y56{bottom:476.446533pt;}
.y98{bottom:476.538933pt;}
.y10{bottom:477.771467pt;}
.y14e{bottom:478.675867pt;}
.y78{bottom:479.034933pt;}
.yde{bottom:484.389600pt;}
.y173{bottom:486.105600pt;}
.yf3{bottom:486.234933pt;}
.y12b{bottom:486.634933pt;}
.yba{bottom:487.834933pt;}
.y33{bottom:491.059867pt;}
.y1df{bottom:491.121600pt;}
.y113{bottom:494.288267pt;}
.y197{bottom:494.988267pt;}
.y55{bottom:495.374533pt;}
.y97{bottom:495.866933pt;}
.y1bc{bottom:496.680267pt;}
.y14d{bottom:497.475867pt;}
.y77{bottom:498.234933pt;}
.ydd{bottom:503.317600pt;}
.y172{bottom:503.969600pt;}
.yf2{bottom:505.034933pt;}
.y12a{bottom:505.434933pt;}
.yb9{bottom:506.634933pt;}
.y1de{bottom:508.721600pt;}
.y32{bottom:510.131867pt;}
.y112{bottom:513.616267pt;}
.y1bb{bottom:514.016267pt;}
.y54{bottom:514.302533pt;}
.y96{bottom:515.194933pt;}
.y14c{bottom:516.275867pt;}
.y76{bottom:517.434933pt;}
.y171{bottom:521.833600pt;}
.ydc{bottom:522.245600pt;}
.yf1{bottom:523.834933pt;}
.y129{bottom:524.234933pt;}
.yf{bottom:524.842133pt;}
.y1dd{bottom:526.321600pt;}
.y31{bottom:529.203867pt;}
.y1ba{bottom:531.352267pt;}
.y111{bottom:532.944267pt;}
.y53{bottom:533.230533pt;}
.y95{bottom:534.522933pt;}
.y14b{bottom:535.075867pt;}
.y75{bottom:536.634933pt;}
.y170{bottom:539.697600pt;}
.ydb{bottom:541.173600pt;}
.yb8{bottom:542.634933pt;}
.ye{bottom:542.838133pt;}
.y1dc{bottom:543.921600pt;}
.y30{bottom:548.275867pt;}
.y1b9{bottom:548.688267pt;}
.y196{bottom:550.582933pt;}
.y52{bottom:552.158533pt;}
.y110{bottom:552.272267pt;}
.y94{bottom:553.850933pt;}
.y14a{bottom:553.875867pt;}
.y128{bottom:554.368267pt;}
.y74{bottom:555.834933pt;}
.y16f{bottom:557.561600pt;}
.yda{bottom:560.154933pt;}
.yb7{bottom:561.434933pt;}
.y1db{bottom:561.521600pt;}
.y1b8{bottom:566.024267pt;}
.y195{bottom:566.188267pt;}
.y2f{bottom:567.475867pt;}
.y51{bottom:571.086533pt;}
.y10f{bottom:571.600267pt;}
.y149{bottom:572.675867pt;}
.y127{bottom:573.168267pt;}
.y93{bottom:573.178933pt;}
.y73{bottom:575.034933pt;}
.y16e{bottom:575.425600pt;}
.yd9{bottom:579.082933pt;}
.y1da{bottom:579.121600pt;}
.yb6{bottom:580.234933pt;}
.yd{bottom:580.414133pt;}
.y1b7{bottom:583.360267pt;}
.y2e{bottom:586.675867pt;}
.y50{bottom:590.014533pt;}
.y10e{bottom:590.928267pt;}
.y148{bottom:591.475867pt;}
.y194{bottom:591.573600pt;}
.y92{bottom:592.506933pt;}
.y16d{bottom:593.289600pt;}
.y72{bottom:594.234933pt;}
.y1d9{bottom:596.721600pt;}
.yd8{bottom:598.010933pt;}
.yb5{bottom:599.034933pt;}
.y1b6{bottom:600.696267pt;}
.y2d{bottom:605.875867pt;}
.yc{bottom:608.022133pt;}
.y4f{bottom:608.942533pt;}
.y193{bottom:609.569600pt;}
.y10d{bottom:610.256267pt;}
.y147{bottom:610.275867pt;}
.y16c{bottom:611.153600pt;}
.y91{bottom:611.834933pt;}
.y71{bottom:613.434933pt;}
.y1d8{bottom:614.321600pt;}
.yd7{bottom:616.938933pt;}
.yb4{bottom:617.834933pt;}
.y1b5{bottom:618.032267pt;}
.y2c{bottom:625.075867pt;}
.y192{bottom:627.565600pt;}
.y16b{bottom:629.017600pt;}
.y146{bottom:629.075867pt;}
.y10c{bottom:629.584267pt;}
.y90{bottom:631.168267pt;}
.y1d7{bottom:631.921600pt;}
.y70{bottom:632.634933pt;}
.y1b4{bottom:635.368267pt;}
.y4e{bottom:635.434933pt;}
.yb{bottom:635.630133pt;}
.yd6{bottom:635.866933pt;}
.yb3{bottom:636.634933pt;}
.y2b{bottom:644.275867pt;}
.y191{bottom:645.561600pt;}
.y16a{bottom:646.881600pt;}
.y145{bottom:647.875867pt;}
.y10b{bottom:648.912267pt;}
.y1d6{bottom:649.521600pt;}
.y6f{bottom:651.834933pt;}
.y1b3{bottom:652.704267pt;}
.yd5{bottom:654.794933pt;}
.yb2{bottom:655.434933pt;}
.y8f{bottom:662.373600pt;}
.ya{bottom:663.238133pt;}
.y2a{bottom:663.475867pt;}
.y190{bottom:663.557600pt;}
.y169{bottom:664.745600pt;}
.y1d5{bottom:667.121600pt;}
.y10a{bottom:668.240267pt;}
.y1b2{bottom:670.040267pt;}
.y6e{bottom:671.034933pt;}
.yd4{bottom:673.722933pt;}
.yb1{bottom:674.234933pt;}
.y18f{bottom:681.553600pt;}
.y8e{bottom:681.701600pt;}
.y168{bottom:682.609600pt;}
.y29{bottom:682.675867pt;}
.y1d4{bottom:684.721600pt;}
.y1b1{bottom:687.376267pt;}
.y109{bottom:687.568267pt;}
.y6d{bottom:690.234933pt;}
.y4d{bottom:692.266933pt;}
.yd3{bottom:692.650933pt;}
.yb0{bottom:693.034933pt;}
.y18e{bottom:699.549600pt;}
.y167{bottom:700.473600pt;}
.y28{bottom:701.875867pt;}
.y1d3{bottom:702.321600pt;}
.y1b0{bottom:704.712267pt;}
.y6c{bottom:709.434933pt;}
.y4c{bottom:711.194933pt;}
.yd2{bottom:711.578933pt;}
.yaf{bottom:711.834933pt;}
.y9{bottom:712.761600pt;}
.y18d{bottom:717.545600pt;}
.y166{bottom:718.337600pt;}
.y1d2{bottom:719.921600pt;}
.y108{bottom:720.373600pt;}
.y27{bottom:721.075867pt;}
.y1af{bottom:722.048267pt;}
.y8d{bottom:727.994933pt;}
.y6b{bottom:728.634933pt;}
.y8{bottom:729.161600pt;}
.y4b{bottom:730.122933pt;}
.yd1{bottom:730.506933pt;}
.yae{bottom:730.634933pt;}
.y18c{bottom:735.541600pt;}
.y165{bottom:736.201600pt;}
.y1d1{bottom:737.521600pt;}
.y1ae{bottom:739.384267pt;}
.y107{bottom:739.701600pt;}
.y26{bottom:740.275867pt;}
.y7{bottom:745.561600pt;}
.y8c{bottom:747.322933pt;}
.y6a{bottom:747.834933pt;}
.y4a{bottom:749.050933pt;}
.yad{bottom:749.434933pt;}
.y18b{bottom:753.537600pt;}
.y164{bottom:754.065600pt;}
.y1d0{bottom:755.121600pt;}
.y1ad{bottom:756.720267pt;}
.y25{bottom:759.475867pt;}
.y6{bottom:761.961600pt;}
.y8b{bottom:766.650933pt;}
.y69{bottom:767.034933pt;}
.y49{bottom:767.978933pt;}
.yac{bottom:768.234933pt;}
.yd0{bottom:768.362933pt;}
.y18a{bottom:771.533600pt;}
.y163{bottom:771.929600pt;}
.y1cf{bottom:772.721600pt;}
.y1ac{bottom:774.056267pt;}
.y24{bottom:778.675867pt;}
.y8a{bottom:785.978933pt;}
.y68{bottom:786.234933pt;}
.y48{bottom:786.906933pt;}
.yab{bottom:787.034933pt;}
.ycf{bottom:787.290933pt;}
.y189{bottom:789.529600pt;}
.y162{bottom:789.793600pt;}
.y1ce{bottom:790.321600pt;}
.y1ab{bottom:791.392267pt;}
.y5{bottom:792.721600pt;}
.y23{bottom:797.875867pt;}
.y89{bottom:805.306933pt;}
.y67{bottom:805.434933pt;}
.y47{bottom:805.834933pt;}
.yce{bottom:805.962933pt;}
.y188{bottom:807.525600pt;}
.y161{bottom:807.657600pt;}
.y1cd{bottom:807.921600pt;}
.y1aa{bottom:808.728267pt;}
.y4{bottom:809.121600pt;}
.y22{bottom:824.634933pt;}
.y3{bottom:825.521600pt;}
.h2{height:25.757812pt;}
.h4{height:29.437500pt;}
.h9{height:31.700521pt;}
.h3{height:36.796875pt;}
.hb{height:39.101562pt;}
.hd{height:43.022135pt;}
.h5{height:45.286458pt;}
.h6{height:49.815104pt;}
.h8{height:54.343750pt;}
.hc{height:56.072917pt;}
.ha{height:56.286250pt;}
.h7{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.x7{left:86.931467pt;}
.xa{left:105.825200pt;}
.xc{left:124.732133pt;}
.xb{left:128.584933pt;}
.x9{left:133.929200pt;}
.x8{left:156.624400pt;}
.xf{left:160.948800pt;}
.x1{left:187.460400pt;}
.x10{left:229.276267pt;}
.x4{left:258.616400pt;}
.x2{left:286.962400pt;}
.x3{left:291.650000pt;}
.xe{left:472.213600pt;}
.xd{left:480.180933pt;}
.x5{left:535.590533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  