
    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_292e316c373c3544adc9cce4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_e6eb3b5a069b5325bf2987fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_afdcf9d975074cb6cb7270f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_e81e8fc74b34e95308e9376f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_0b5725ea1a101ac0b2791eaf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_6f270ecec83f08e185b4863f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_514734f9a1f0ef7c2ffef270.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862793;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_019f5c0d63168d7cf57d198a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.320000px;}
.ls20{letter-spacing:-3.384000px;}
.ls42{letter-spacing:-2.053440px;}
.ls46{letter-spacing:-1.656000px;}
.ls3c{letter-spacing:-1.457280px;}
.ls24{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.296000px;}
.ls41{letter-spacing:-1.258560px;}
.ls15{letter-spacing:-1.152000px;}
.ls36{letter-spacing:-1.126080px;}
.ls48{letter-spacing:-0.927360px;}
.ls45{letter-spacing:-0.794880px;}
.ls40{letter-spacing:-0.662400px;}
.ls3{letter-spacing:-0.648000px;}
.ls37{letter-spacing:-0.596160px;}
.ls9{letter-spacing:-0.584640px;}
.lsc{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.483840px;}
.ls1b{letter-spacing:-0.463680px;}
.ls38{letter-spacing:-0.397440px;}
.lsf{letter-spacing:-0.334080px;}
.ls8{letter-spacing:-0.264960px;}
.ls3f{letter-spacing:-0.198720px;}
.ls17{letter-spacing:-0.144000px;}
.ls49{letter-spacing:-0.132480px;}
.ls39{letter-spacing:-0.066240px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.020160px;}
.ls3d{letter-spacing:0.066240px;}
.ls43{letter-spacing:0.119232px;}
.ls3b{letter-spacing:0.132480px;}
.ls27{letter-spacing:0.136800px;}
.lse{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.198720px;}
.ls5{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.302400px;}
.ls0{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.496800px;}
.lsa{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.529920px;}
.ls11{letter-spacing:0.578880px;}
.ls3a{letter-spacing:0.596160px;}
.ls4{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.662400px;}
.ls10{letter-spacing:1.002240px;}
.lsb{letter-spacing:1.085760px;}
.ls34{letter-spacing:1.252800px;}
.ls47{letter-spacing:1.331424px;}
.ls28{letter-spacing:1.576800px;}
.ls13{letter-spacing:1.584000px;}
.ls2c{letter-spacing:3.016800px;}
.ls2a{letter-spacing:3.024000px;}
.ls31{letter-spacing:3.031200px;}
.ls1d{letter-spacing:4.456800px;}
.ls2b{letter-spacing:4.464000px;}
.ls25{letter-spacing:5.904000px;}
.ls14{letter-spacing:7.344000px;}
.ls12{letter-spacing:8.784000px;}
.ls21{letter-spacing:10.216800px;}
.ls1c{letter-spacing:10.224000px;}
.ls1e{letter-spacing:11.664000px;}
.ls16{letter-spacing:13.104000px;}
.ls29{letter-spacing:14.544000px;}
.ls1f{letter-spacing:15.984000px;}
.ls2e{letter-spacing:17.424000px;}
.ls30{letter-spacing:18.864000px;}
.ls18{letter-spacing:20.296800px;}
.ls33{letter-spacing:20.304000px;}
.ls2d{letter-spacing:31.824000px;}
.ls6{letter-spacing:83.664000px;}
.ls26{letter-spacing:105.264000px;}
.ls44{letter-spacing:196.732800px;}
.ls22{letter-spacing:1173.744000px;}
.ls23{letter-spacing:1179.504000px;}
.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;}
}
.ws21{word-spacing:-27.400320px;}
.ws52{word-spacing:-24.471360px;}
.wsb{word-spacing:-24.304320px;}
.ws22{word-spacing:-23.218560px;}
.ws1c{word-spacing:-22.884480px;}
.ws5{word-spacing:-22.633920px;}
.ws30{word-spacing:-20.664000px;}
.ws38{word-spacing:-20.520000px;}
.ws1b{word-spacing:-20.304000px;}
.ws28{word-spacing:-20.016000px;}
.ws45{word-spacing:-19.872000px;}
.ws3f{word-spacing:-19.512000px;}
.ws47{word-spacing:-18.864000px;}
.ws41{word-spacing:-16.813440px;}
.ws5b{word-spacing:-15.632640px;}
.ws59{word-spacing:-15.566400px;}
.ws6c{word-spacing:-15.500160px;}
.ws5a{word-spacing:-15.102720px;}
.ws55{word-spacing:-14.970240px;}
.ws5d{word-spacing:-14.904000px;}
.ws70{word-spacing:-14.837760px;}
.ws60{word-spacing:-14.771520px;}
.ws54{word-spacing:-14.705280px;}
.ws58{word-spacing:-14.572800px;}
.ws56{word-spacing:-14.506560px;}
.ws57{word-spacing:-14.374080px;}
.ws5e{word-spacing:-14.307840px;}
.ws6b{word-spacing:-14.175360px;}
.ws6f{word-spacing:-14.042880px;}
.ws53{word-spacing:-13.844160px;}
.ws5f{word-spacing:-13.711680px;}
.ws5c{word-spacing:-13.512960px;}
.ws6d{word-spacing:-13.314240px;}
.ws61{word-spacing:-12.916800px;}
.ws17{word-spacing:-4.464000px;}
.ws48{word-spacing:-4.032000px;}
.wse{word-spacing:-3.024000px;}
.ws14{word-spacing:-2.880000px;}
.ws4c{word-spacing:-2.592000px;}
.ws3{word-spacing:-1.620000px;}
.ws16{word-spacing:-1.584000px;}
.ws6{word-spacing:-1.258560px;}
.ws64{word-spacing:-1.126080px;}
.ws6e{word-spacing:-0.662400px;}
.ws62{word-spacing:-0.529920px;}
.ws44{word-spacing:-0.504000px;}
.ws4f{word-spacing:-0.483840px;}
.ws7{word-spacing:-0.331200px;}
.ws18{word-spacing:-0.288000px;}
.ws2{word-spacing:-0.216000px;}
.ws67{word-spacing:-0.198720px;}
.wsa{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.132480px;}
.ws0{word-spacing:-0.108000px;}
.ws66{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws71{word-spacing:0.066240px;}
.ws3d{word-spacing:0.144000px;}
.ws23{word-spacing:0.167040px;}
.ws69{word-spacing:0.198720px;}
.ws65{word-spacing:0.264960px;}
.ws4a{word-spacing:0.288000px;}
.ws24{word-spacing:0.417600px;}
.ws2f{word-spacing:0.463680px;}
.ws42{word-spacing:0.483840px;}
.wsc{word-spacing:0.504000px;}
.ws68{word-spacing:0.596160px;}
.ws6a{word-spacing:0.662400px;}
.ws2e{word-spacing:0.967680px;}
.ws4{word-spacing:1.080000px;}
.ws29{word-spacing:1.152000px;}
.ws8{word-spacing:1.296000px;}
.ws3c{word-spacing:1.440000px;}
.ws50{word-spacing:1.584000px;}
.ws1f{word-spacing:1.586880px;}
.ws46{word-spacing:1.728000px;}
.ws15{word-spacing:2.736000px;}
.wsd{word-spacing:4.176000px;}
.ws34{word-spacing:4.968000px;}
.ws19{word-spacing:5.616000px;}
.ws51{word-spacing:6.048000px;}
.ws1e{word-spacing:6.840000px;}
.ws13{word-spacing:7.056000px;}
.ws1d{word-spacing:8.496000px;}
.ws39{word-spacing:8.928000px;}
.ws9{word-spacing:9.936000px;}
.ws4e{word-spacing:10.368000px;}
.ws27{word-spacing:11.376000px;}
.ws2a{word-spacing:12.816000px;}
.ws2b{word-spacing:13.248000px;}
.ws10{word-spacing:14.256000px;}
.ws43{word-spacing:14.688000px;}
.ws20{word-spacing:15.696000px;}
.ws11{word-spacing:17.136000px;}
.ws4d{word-spacing:17.568000px;}
.ws26{word-spacing:18.576000px;}
.ws2d{word-spacing:20.016000px;}
.ws35{word-spacing:21.456000px;}
.wsf{word-spacing:22.896000px;}
.ws25{word-spacing:24.336000px;}
.ws1a{word-spacing:25.776000px;}
.ws33{word-spacing:27.216000px;}
.ws4b{word-spacing:28.656000px;}
.ws31{word-spacing:30.096000px;}
.ws3a{word-spacing:31.536000px;}
.ws3b{word-spacing:34.416000px;}
.ws37{word-spacing:35.856000px;}
.ws36{word-spacing:37.296000px;}
.ws12{word-spacing:38.736000px;}
.ws40{word-spacing:45.936000px;}
.ws2c{word-spacing:48.816000px;}
.ws32{word-spacing:60.336000px;}
.ws49{word-spacing:71.856000px;}
.ws3e{word-spacing:104.976000px;}
._21{margin-left:-31.096800px;}
._13{margin-left:-8.310240px;}
._1f{margin-left:-7.056000px;}
._0{margin-left:-5.832000px;}
._6{margin-left:-4.503600px;}
._5{margin-left:-3.240000px;}
._1{margin-left:-2.052000px;}
._2{margin-left:-1.015200px;}
._4{width:1.144800px;}
._3{width:2.311200px;}
._20{width:3.708000px;}
._d{width:4.824000px;}
._1b{width:5.832000px;}
._1e{width:9.489600px;}
._19{width:11.236320px;}
._1d{width:12.636000px;}
._1c{width:13.680000px;}
._e{width:39.339360px;}
._16{width:71.061120px;}
._14{width:72.397440px;}
._c{width:83.664000px;}
._12{width:91.975680px;}
._1a{width:94.756320px;}
._18{width:143.193600px;}
._15{width:161.111520px;}
._11{width:163.785600px;}
._17{width:182.122560px;}
._10{width:188.421120px;}
._f{width:189.924480px;}
._a{width:257.209920px;}
._8{width:622.920960px;}
._b{width:722.280960px;}
._9{width:830.318400px;}
._7{width:1102.498560px;}
._22{width:1507.824000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.fs0{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:9.360000px;}
.yca{bottom:11.880000px;}
.y119{bottom:14.040000px;}
.y1d{bottom:57.623760px;}
.y1c{bottom:77.777280px;}
.y9d{bottom:112.320000px;}
.y1e2{bottom:113.190480px;}
.ye3{bottom:116.280000px;}
.y64{bottom:117.360000px;}
.y14d{bottom:119.160000px;}
.y17{bottom:119.878560px;}
.y152{bottom:121.320000px;}
.y7f{bottom:123.476400px;}
.y19c{bottom:126.720000px;}
.yed{bottom:127.800000px;}
.y33{bottom:127.910160px;}
.yff{bottom:128.160000px;}
.y1bd{bottom:130.327200px;}
.y113{bottom:131.400000px;}
.y10f{bottom:133.200000px;}
.y162{bottom:133.560000px;}
.y1e1{bottom:134.784720px;}
.yd4{bottom:135.720000px;}
.y12d{bottom:137.160000px;}
.y1ba{bottom:137.520000px;}
.y107{bottom:138.240000px;}
.y177{bottom:138.600000px;}
.y9c{bottom:143.280000px;}
.y206{bottom:147.020400px;}
.y228{bottom:147.053520px;}
.y16e{bottom:147.960000px;}
.y14c{bottom:150.480000px;}
.ye2{bottom:151.560000px;}
.y139{bottom:152.280000px;}
.y7e{bottom:156.232080px;}
.y16{bottom:157.671360px;}
.y19b{bottom:158.040000px;}
.yec{bottom:158.760000px;}
.yfe{bottom:159.120000px;}
.yb8{bottom:162.360000px;}
.y10e{bottom:164.160000px;}
.y63{bottom:166.320000px;}
.yd3{bottom:166.680000px;}
.y12c{bottom:168.120000px;}
.y1e0{bottom:168.616800px;}
.y1b9{bottom:168.840000px;}
.y106{bottom:169.200000px;}
.y176{bottom:169.560000px;}
.y9b{bottom:174.240000px;}
.y4b{bottom:175.320000px;}
.y32{bottom:176.142960px;}
.y1bc{bottom:178.560000px;}
.y16d{bottom:178.920000px;}
.y205{bottom:180.852480px;}
.y227{bottom:180.885600px;}
.y13c{bottom:181.440000px;}
.y151{bottom:183.240000px;}
.y168{bottom:185.040000px;}
.y7d{bottom:188.640000px;}
.y19a{bottom:189.000000px;}
.yeb{bottom:189.720000px;}
.yfd{bottom:190.080000px;}
.y1df{bottom:190.575360px;}
.yb7{bottom:193.320000px;}
.y10d{bottom:195.120000px;}
.y15{bottom:195.840000px;}
.y115{bottom:196.200000px;}
.yd2{bottom:197.640000px;}
.y1b8{bottom:199.800000px;}
.y105{bottom:200.520000px;}
.y204{bottom:202.446720px;}
.y226{bottom:202.479840px;}
.y16c{bottom:202.680000px;}
.y112{bottom:205.200000px;}
.yc6{bottom:205.560000px;}
.y1a9{bottom:207.360000px;}
.y62{bottom:209.520000px;}
.y12b{bottom:211.320000px;}
.y1de{bottom:212.169600px;}
.y13b{bottom:212.400000px;}
.yea{bottom:213.480000px;}
.y150{bottom:214.200000px;}
.y167{bottom:216.000000px;}
.y9a{bottom:217.440000px;}
.y199{bottom:219.960000px;}
.y4a{bottom:221.040000px;}
.y7c{bottom:222.393600px;}
.yb6{bottom:224.280000px;}
.y31{bottom:224.375760px;}
.y203{bottom:224.405280px;}
.y16b{bottom:225.360000px;}
.y10c{bottom:226.440000px;}
.yd1{bottom:228.600000px;}
.y1b7{bottom:230.760000px;}
.y175{bottom:231.480000px;}
.y114{bottom:231.840000px;}
.y14{bottom:236.160000px;}
.y225{bottom:236.311920px;}
.ye9{bottom:236.520000px;}
.y1a8{bottom:238.320000px;}
.y12a{bottom:242.280000px;}
.y104{bottom:243.360000px;}
.y14f{bottom:245.520000px;}
.y1dd{bottom:246.001680px;}
.y187{bottom:246.960000px;}
.y99{bottom:248.400000px;}
.y198{bottom:250.920000px;}
.y49{bottom:252.000000px;}
.y61{bottom:252.360000px;}
.yb5{bottom:255.600000px;}
.y16a{bottom:256.680000px;}
.y10b{bottom:257.400000px;}
.y202{bottom:258.237360px;}
.yd0{bottom:259.920000px;}
.y7b{bottom:260.186400px;}
.y1b6{bottom:261.720000px;}
.y149{bottom:263.880000px;}
.ye8{bottom:267.480000px;}
.y1dc{bottom:267.595920px;}
.y1a7{bottom:269.280000px;}
.y224{bottom:270.144000px;}
.y30{bottom:272.608560px;}
.y129{bottom:273.240000px;}
.y103{bottom:274.680000px;}
.y14e{bottom:276.480000px;}
.y186{bottom:277.920000px;}
.y98{bottom:279.360000px;}
.y13{bottom:281.520000px;}
.y197{bottom:282.240000px;}
.y48{bottom:283.320000px;}
.yb4{bottom:286.560000px;}
.y169{bottom:287.640000px;}
.y10a{bottom:288.360000px;}
.y1db{bottom:289.190160px;}
.ycf{bottom:290.880000px;}
.y201{bottom:291.721680px;}
.y1b5{bottom:293.040000px;}
.y60{bottom:295.560000px;}
.y7a{bottom:298.355040px;}
.ye7{bottom:298.440000px;}
.y1a6{bottom:300.600000px;}
.y223{bottom:303.976080px;}
.y128{bottom:304.200000px;}
.y102{bottom:305.640000px;}
.y148{bottom:307.080000px;}
.y185{bottom:308.880000px;}
.y163{bottom:309.240000px;}
.y97{bottom:310.680000px;}
.y1da{bottom:311.148720px;}
.y196{bottom:313.200000px;}
.y47{bottom:314.280000px;}
.yb3{bottom:317.520000px;}
.y138{bottom:319.320000px;}
.y2f{bottom:320.841360px;}
.yce{bottom:321.840000px;}
.y1b4{bottom:324.000000px;}
.y12{bottom:325.059840px;}
.y200{bottom:325.553760px;}
.ye6{bottom:329.400000px;}
.y109{bottom:333.720000px;}
.y127{bottom:335.520000px;}
.y79{bottom:336.523680px;}
.y101{bottom:336.600000px;}
.y222{bottom:337.460400px;}
.y5f{bottom:338.400000px;}
.y184{bottom:339.840000px;}
.y96{bottom:341.640000px;}
.y1a5{bottom:343.440000px;}
.y195{bottom:344.160000px;}
.y1d9{bottom:344.633040px;}
.y46{bottom:345.240000px;}
.y1ff{bottom:347.148000px;}
.yb2{bottom:348.480000px;}
.y166{bottom:349.560000px;}
.y147{bottom:350.280000px;}
.y137{bottom:350.640000px;}
.ycd{bottom:352.800000px;}
.ye5{bottom:360.720000px;}
.y11{bottom:362.852640px;}
.y126{bottom:366.480000px;}
.y1d8{bottom:366.591600px;}
.y1b3{bottom:366.840000px;}
.y100{bottom:367.560000px;}
.y174{bottom:367.920000px;}
.y2e{bottom:369.074160px;}
.y1fe{bottom:369.106560px;}
.y183{bottom:371.160000px;}
.y221{bottom:371.292480px;}
.y95{bottom:372.600000px;}
.y78{bottom:374.316480px;}
.y1a4{bottom:374.400000px;}
.y194{bottom:375.120000px;}
.y45{bottom:376.200000px;}
.yb1{bottom:379.800000px;}
.y165{bottom:380.880000px;}
.y146{bottom:381.240000px;}
.y5e{bottom:381.600000px;}
.ycc{bottom:384.120000px;}
.y1d7{bottom:388.185840px;}
.ye1{bottom:391.680000px;}
.y220{bottom:392.886720px;}
.y125{bottom:397.440000px;}
.y1b2{bottom:398.160000px;}
.y10{bottom:401.021280px;}
.y182{bottom:402.120000px;}
.y1fd{bottom:402.590880px;}
.y94{bottom:403.560000px;}
.y1a3{bottom:405.720000px;}
.y44{bottom:407.520000px;}
.yb0{bottom:410.760000px;}
.y164{bottom:411.840000px;}
.y145{bottom:412.200000px;}
.y77{bottom:412.485120px;}
.y136{bottom:412.560000px;}
.y21f{bottom:414.845280px;}
.y2d{bottom:417.306960px;}
.y193{bottom:418.320000px;}
.y1d6{bottom:422.017920px;}
.ye0{bottom:422.640000px;}
.y5d{bottom:424.440000px;}
.y1fc{bottom:424.549440px;}
.ycb{bottom:426.960000px;}
.y173{bottom:427.680000px;}
.y124{bottom:428.400000px;}
.y1b1{bottom:429.120000px;}
.y181{bottom:433.080000px;}
.yc5{bottom:434.880000px;}
.y1a2{bottom:436.680000px;}
.y43{bottom:438.480000px;}
.yf{bottom:439.189920px;}
.yaf{bottom:441.720000px;}
.y144{bottom:443.160000px;}
.y135{bottom:443.520000px;}
.y1d5{bottom:443.612160px;}
.yc9{bottom:443.880000px;}
.y1fb{bottom:446.143680px;}
.y93{bottom:446.760000px;}
.y21e{bottom:448.329600px;}
.y192{bottom:449.280000px;}
.y76{bottom:450.653760px;}
.ydf{bottom:453.600000px;}
.y1bb{bottom:457.920000px;}
.y171{bottom:458.640000px;}
.y123{bottom:459.720000px;}
.y1b0{bottom:460.080000px;}
.y172{bottom:462.960000px;}
.y180{bottom:464.040000px;}
.y2c{bottom:465.539760px;}
.y1d4{bottom:465.570720px;}
.yc4{bottom:465.840000px;}
.y5c{bottom:467.640000px;}
.yc7{bottom:469.800000px;}
.yae{bottom:472.680000px;}
.y143{bottom:474.480000px;}
.y134{bottom:474.840000px;}
.ye{bottom:477.358560px;}
.y92{bottom:477.720000px;}
.y1fa{bottom:479.975760px;}
.y191{bottom:480.240000px;}
.yfc{bottom:481.680000px;}
.y21d{bottom:482.161680px;}
.y42{bottom:483.840000px;}
.yde{bottom:484.920000px;}
.y161{bottom:486.000000px;}
.y1d3{bottom:487.164960px;}
.y75{bottom:488.822400px;}
.y1af{bottom:491.040000px;}
.y17f{bottom:495.360000px;}
.yc3{bottom:496.800000px;}
.y1a1{bottom:498.600000px;}
.y1f9{bottom:501.570000px;}
.y122{bottom:502.560000px;}
.yad{bottom:504.000000px;}
.y21c{bottom:504.120240px;}
.y142{bottom:505.440000px;}
.y133{bottom:505.800000px;}
.y91{bottom:508.680000px;}
.y5b{bottom:510.840000px;}
.y190{bottom:511.560000px;}
.yfb{bottom:512.640000px;}
.y2b{bottom:513.772560px;}
.yd{bottom:515.151360px;}
.ydd{bottom:515.880000px;}
.y160{bottom:516.960000px;}
.y1d2{bottom:520.997040px;}
.y1ae{bottom:522.360000px;}
.y21b{bottom:525.714480px;}
.y17e{bottom:526.320000px;}
.y74{bottom:526.615200px;}
.yc2{bottom:527.760000px;}
.y41{bottom:529.560000px;}
.y1a0{bottom:529.920000px;}
.y121{bottom:533.880000px;}
.yac{bottom:534.960000px;}
.y1f8{bottom:535.402080px;}
.y141{bottom:536.400000px;}
.y132{bottom:536.760000px;}
.y90{bottom:540.000000px;}
.y5a{bottom:541.800000px;}
.y18f{bottom:542.520000px;}
.y1d1{bottom:542.591280px;}
.yfa{bottom:543.600000px;}
.ydc{bottom:546.840000px;}
.y15f{bottom:547.920000px;}
.y170{bottom:551.880000px;}
.yc{bottom:553.320000px;}
.y1f7{bottom:556.996320px;}
.y17d{bottom:557.280000px;}
.y111{bottom:558.720000px;}
.yc1{bottom:559.080000px;}
.y21a{bottom:559.546560px;}
.y19f{bottom:560.880000px;}
.y2a{bottom:562.005360px;}
.y1d0{bottom:564.549840px;}
.y73{bottom:564.783840px;}
.y120{bottom:564.840000px;}
.yab{bottom:565.920000px;}
.y140{bottom:567.360000px;}
.y131{bottom:567.720000px;}
.y8f{bottom:570.960000px;}
.y40{bottom:572.760000px;}
.y18e{bottom:573.480000px;}
.yf9{bottom:574.560000px;}
.ydb{bottom:577.800000px;}
.y15e{bottom:578.880000px;}
.y219{bottom:581.140800px;}
.y16f{bottom:582.840000px;}
.y1ad{bottom:584.280000px;}
.y17c{bottom:588.240000px;}
.yb{bottom:590.036400px;}
.y110{bottom:590.040000px;}
.y1f6{bottom:590.828400px;}
.y11f{bottom:595.800000px;}
.y14b{bottom:596.880000px;}
.y1cf{bottom:598.034160px;}
.y130{bottom:599.040000px;}
.y8e{bottom:601.920000px;}
.y72{bottom:602.952480px;}
.y3f{bottom:603.720000px;}
.y18d{bottom:604.440000px;}
.yf8{bottom:605.520000px;}
.yaa{bottom:609.120000px;}
.y29{bottom:610.238160px;}
.y13f{bottom:610.560000px;}
.y218{bottom:614.972880px;}
.y1ac{bottom:615.240000px;}
.y17b{bottom:619.560000px;}
.y19e{bottom:620.640000px;}
.y108{bottom:621.000000px;}
.y15d{bottom:622.080000px;}
.ya{bottom:622.444320px;}
.y1f5{bottom:624.660480px;}
.y11e{bottom:626.760000px;}
.y13e{bottom:627.480000px;}
.y14a{bottom:628.200000px;}
.y1ce{bottom:631.866240px;}
.y1ab{bottom:632.160000px;}
.yc0{bottom:632.880000px;}
.y3e{bottom:635.040000px;}
.y18c{bottom:635.760000px;}
.y217{bottom:636.567120px;}
.yf7{bottom:636.840000px;}
.y59{bottom:637.200000px;}
.ya9{bottom:640.080000px;}
.y71{bottom:640.745280px;}
.y12f{bottom:644.040000px;}
.y8d{bottom:645.120000px;}
.y1f4{bottom:646.254720px;}
.ye4{bottom:651.960000px;}
.y15c{bottom:653.040000px;}
.y1cd{bottom:653.460480px;}
.y9{bottom:655.200000px;}
.y19d{bottom:655.920000px;}
.y11d{bottom:658.080000px;}
.y28{bottom:658.470960px;}
.y17a{bottom:662.400000px;}
.y13d{bottom:662.760000px;}
.ybf{bottom:664.200000px;}
.y3d{bottom:666.000000px;}
.y18b{bottom:666.720000px;}
.yf6{bottom:667.800000px;}
.y1f3{bottom:668.213280px;}
.y216{bottom:670.399200px;}
.ya8{bottom:671.040000px;}
.y8c{bottom:676.080000px;}
.y70{bottom:678.913920px;}
.y179{bottom:679.320000px;}
.yda{bottom:682.920000px;}
.y58{bottom:683.280000px;}
.y15b{bottom:684.000000px;}
.y1cc{bottom:687.292560px;}
.y11c{bottom:689.040000px;}
.y12e{bottom:690.120000px;}
.y1aa{bottom:693.360000px;}
.ybe{bottom:695.160000px;}
.y3c{bottom:696.960000px;}
.y8{bottom:698.742000px;}
.yf5{bottom:698.760000px;}
.y1f2{bottom:701.697600px;}
.ya7{bottom:702.000000px;}
.y215{bottom:704.231280px;}
.y27{bottom:706.703760px;}
.y8b{bottom:707.040000px;}
.y1cb{bottom:708.886800px;}
.y18a{bottom:709.560000px;}
.yd9{bottom:714.240000px;}
.y178{bottom:714.600000px;}
.y15a{bottom:715.320000px;}
.y6f{bottom:717.082560px;}
.y11b{bottom:720.000000px;}
.y1f1{bottom:723.656160px;}
.y214{bottom:725.825520px;}
.y57{bottom:726.120000px;}
.y189{bottom:726.480000px;}
.y3b{bottom:727.920000px;}
.ybd{bottom:730.440000px;}
.ya6{bottom:733.320000px;}
.y8a{bottom:738.000000px;}
.yf4{bottom:741.960000px;}
.y1ca{bottom:742.718880px;}
.yd8{bottom:745.200000px;}
.y1f0{bottom:745.250400px;}
.y159{bottom:746.280000px;}
.y213{bottom:747.419760px;}
.y11a{bottom:750.960000px;}
.y26{bottom:754.936560px;}
.y6e{bottom:755.251200px;}
.y56{bottom:757.080000px;}
.y3a{bottom:758.880000px;}
.y188{bottom:761.760000px;}
.ya5{bottom:764.280000px;}
.y1c9{bottom:764.677440px;}
.y118{bottom:767.880000px;}
.y89{bottom:769.320000px;}
.y212{bottom:769.378320px;}
.yf3{bottom:772.920000px;}
.ybc{bottom:776.160000px;}
.y158{bottom:777.240000px;}
.y7{bottom:777.960000px;}
.y1ef{bottom:779.082480px;}
.y1c8{bottom:786.271680px;}
.y55{bottom:788.400000px;}
.y211{bottom:790.972560px;}
.y6d{bottom:793.044000px;}
.ya4{bottom:795.240000px;}
.y117{bottom:798.840000px;}
.y88{bottom:800.280000px;}
.y1ee{bottom:800.676720px;}
.y39{bottom:802.080000px;}
.y25{bottom:802.814400px;}
.yf2{bottom:803.880000px;}
.yd7{bottom:807.120000px;}
.y1c7{bottom:807.865920px;}
.y54{bottom:819.360000px;}
.y210{bottom:824.804640px;}
.ya3{bottom:826.200000px;}
.y157{bottom:829.440000px;}
.y6c{bottom:831.212640px;}
.y87{bottom:831.240000px;}
.y38{bottom:833.040000px;}
.y1ed{bottom:834.508800px;}
.yf1{bottom:835.200000px;}
.y116{bottom:836.640000px;}
.yd6{bottom:838.440000px;}
.y1c6{bottom:841.698000px;}
.y20f{bottom:846.398880px;}
.ybb{bottom:850.320000px;}
.y24{bottom:851.047200px;}
.y53{bottom:854.640000px;}
.y1ec{bottom:856.103040px;}
.y6{bottom:856.800000px;}
.ya2{bottom:857.520000px;}
.y156{bottom:860.400000px;}
.y86{bottom:862.200000px;}
.y1c5{bottom:863.292240px;}
.y37{bottom:864.360000px;}
.yf0{bottom:866.160000px;}
.y20e{bottom:868.357440px;}
.y6b{bottom:869.381280px;}
.yd5{bottom:869.400000px;}
.y1eb{bottom:878.061600px;}
.yba{bottom:881.280000px;}
.y1c4{bottom:885.250800px;}
.y155{bottom:891.360000px;}
.y85{bottom:893.520000px;}
.y36{bottom:895.320000px;}
.yef{bottom:897.120000px;}
.y23{bottom:899.280000px;}
.y52{bottom:900.360000px;}
.y20d{bottom:901.841760px;}
.y6a{bottom:907.549920px;}
.y1ea{bottom:911.545920px;}
.yb9{bottom:912.240000px;}
.y1c3{bottom:918.735120px;}
.y154{bottom:922.320000px;}
.y5{bottom:923.760000px;}
.y20c{bottom:923.800320px;}
.y84{bottom:924.480000px;}
.y35{bottom:926.280000px;}
.yee{bottom:928.080000px;}
.ya1{bottom:931.320000px;}
.y1e9{bottom:933.504480px;}
.y51{bottom:943.560000px;}
.y69{bottom:945.342720px;}
.y22{bottom:945.360000px;}
.y20b{bottom:945.394560px;}
.y1c2{bottom:952.567200px;}
.y153{bottom:953.640000px;}
.y34{bottom:957.240000px;}
.ya0{bottom:962.640000px;}
.y1e8{bottom:966.988800px;}
.y83{bottom:967.320000px;}
.y50{bottom:974.520000px;}
.y1c1{bottom:974.525760px;}
.y20a{bottom:979.226640px;}
.y68{bottom:983.511360px;}
.y21{bottom:988.560000px;}
.y1e7{bottom:988.947360px;}
.y9f{bottom:993.600000px;}
.y4{bottom:995.049000px;}
.y1c0{bottom:996.120000px;}
.y82{bottom:998.640000px;}
.y209{bottom:1000.820880px;}
.y4f{bottom:1005.480000px;}
.y1e6{bottom:1010.541600px;}
.y20{bottom:1019.520000px;}
.y67{bottom:1021.680000px;}
.y208{bottom:1022.415120px;}
.y9e{bottom:1024.560000px;}
.y81{bottom:1029.600000px;}
.y1bf{bottom:1029.965760px;}
.y4e{bottom:1036.440000px;}
.y3{bottom:1040.409000px;}
.y1e5{bottom:1044.373680px;}
.y1f{bottom:1050.480000px;}
.y1be{bottom:1051.560000px;}
.y13a{bottom:1055.520000px;}
.y207{bottom:1056.247200px;}
.y66{bottom:1058.400000px;}
.y80{bottom:1060.560000px;}
.y4d{bottom:1067.760000px;}
.y1e4{bottom:1078.205760px;}
.y2{bottom:1085.769000px;}
.y65{bottom:1092.960000px;}
.y1e{bottom:1095.840000px;}
.y4c{bottom:1098.720000px;}
.y1e3{bottom:1099.800000px;}
.y1{bottom:1131.480000px;}
.y1b{bottom:1133.659440px;}
.y1a{bottom:1153.812960px;}
.y19{bottom:1173.966480px;}
.y18{bottom:1194.120000px;}
.h17{height:2.098125px;}
.hf{height:25.920000px;}
.h11{height:26.226562px;}
.h13{height:30.960000px;}
.h10{height:44.060625px;}
.h8{height:45.895781px;}
.h19{height:47.545312px;}
.h6{height:48.256875px;}
.h18{height:49.863679px;}
.ha{height:52.417969px;}
.hb{height:52.453125px;}
.h12{height:56.773125px;}
.h5{height:59.803594px;}
.hd{height:60.845625px;}
.h9{height:65.003906px;}
.h7{height:75.404531px;}
.h3{height:78.679688px;}
.hc{height:87.105234px;}
.h2{height:97.505859px;}
.h4{height:195.011719px;}
.h14{height:326.160000px;}
.he{height:354.240000px;}
.h16{height:457.560000px;}
.h15{height:662.040000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:286.920000px;}
.w4{width:308.521500px;}
.w6{width:619.920000px;}
.w3{width:637.200000px;}
.w2{width:637.920000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:8.280000px;}
.x1c{left:9.360000px;}
.x1e{left:20.520000px;}
.x1a{left:22.680000px;}
.x23{left:35.280000px;}
.x25{left:58.320000px;}
.xa{left:127.437840px;}
.x24{left:135.720000px;}
.x8{left:138.654000px;}
.x1f{left:143.280000px;}
.x19{left:148.680000px;}
.x31{left:151.920000px;}
.x12{left:154.440000px;}
.x27{left:162.720000px;}
.xf{left:167.415120px;}
.x2d{left:174.960000px;}
.xd{left:180.349920px;}
.x20{left:181.440000px;}
.x2c{left:186.120000px;}
.x22{left:191.160000px;}
.x2a{left:199.080000px;}
.x9{left:201.593520px;}
.x2f{left:203.400000px;}
.x10{left:207.722160px;}
.x6{left:227.538000px;}
.x7{left:234.774000px;}
.x5{left:239.040000px;}
.xb{left:251.280000px;}
.xc{left:252.360000px;}
.x29{left:255.240000px;}
.x1{left:311.400000px;}
.x3{left:312.858000px;}
.x2{left:318.609000px;}
.x18{left:405.000000px;}
.x1d{left:407.520000px;}
.x14{left:411.480000px;}
.x4{left:446.400000px;}
.x1b{left:457.200000px;}
.x13{left:459.720000px;}
.x2b{left:522.000000px;}
.x2e{left:541.800000px;}
.x30{left:557.640000px;}
.x28{left:569.520000px;}
.x17{left:593.280000px;}
.xe{left:600.840000px;}
.x15{left:645.840000px;}
.x21{left:723.960000px;}
.x16{left:748.820160px;}
.x11{left:757.100160px;}
@media print{
.v2{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.840000pt;}
.ls20{letter-spacing:-3.008000pt;}
.ls42{letter-spacing:-1.825280pt;}
.ls46{letter-spacing:-1.472000pt;}
.ls3c{letter-spacing:-1.295360pt;}
.ls24{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.152000pt;}
.ls41{letter-spacing:-1.118720pt;}
.ls15{letter-spacing:-1.024000pt;}
.ls36{letter-spacing:-1.000960pt;}
.ls48{letter-spacing:-0.824320pt;}
.ls45{letter-spacing:-0.706560pt;}
.ls40{letter-spacing:-0.588800pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls37{letter-spacing:-0.529920pt;}
.ls9{letter-spacing:-0.519680pt;}
.lsc{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.430080pt;}
.ls1b{letter-spacing:-0.412160pt;}
.ls38{letter-spacing:-0.353280pt;}
.lsf{letter-spacing:-0.296960pt;}
.ls8{letter-spacing:-0.235520pt;}
.ls3f{letter-spacing:-0.176640pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls49{letter-spacing:-0.117760pt;}
.ls39{letter-spacing:-0.058880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.017920pt;}
.ls3d{letter-spacing:0.058880pt;}
.ls43{letter-spacing:0.105984pt;}
.ls3b{letter-spacing:0.117760pt;}
.ls27{letter-spacing:0.121600pt;}
.lse{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.176640pt;}
.ls5{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.268800pt;}
.ls0{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.441600pt;}
.lsa{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.471040pt;}
.ls11{letter-spacing:0.514560pt;}
.ls3a{letter-spacing:0.529920pt;}
.ls4{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.588800pt;}
.ls10{letter-spacing:0.890880pt;}
.lsb{letter-spacing:0.965120pt;}
.ls34{letter-spacing:1.113600pt;}
.ls47{letter-spacing:1.183488pt;}
.ls28{letter-spacing:1.401600pt;}
.ls13{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:2.681600pt;}
.ls2a{letter-spacing:2.688000pt;}
.ls31{letter-spacing:2.694400pt;}
.ls1d{letter-spacing:3.961600pt;}
.ls2b{letter-spacing:3.968000pt;}
.ls25{letter-spacing:5.248000pt;}
.ls14{letter-spacing:6.528000pt;}
.ls12{letter-spacing:7.808000pt;}
.ls21{letter-spacing:9.081600pt;}
.ls1c{letter-spacing:9.088000pt;}
.ls1e{letter-spacing:10.368000pt;}
.ls16{letter-spacing:11.648000pt;}
.ls29{letter-spacing:12.928000pt;}
.ls1f{letter-spacing:14.208000pt;}
.ls2e{letter-spacing:15.488000pt;}
.ls30{letter-spacing:16.768000pt;}
.ls18{letter-spacing:18.041600pt;}
.ls33{letter-spacing:18.048000pt;}
.ls2d{letter-spacing:28.288000pt;}
.ls6{letter-spacing:74.368000pt;}
.ls26{letter-spacing:93.568000pt;}
.ls44{letter-spacing:174.873600pt;}
.ls22{letter-spacing:1043.328000pt;}
.ls23{letter-spacing:1048.448000pt;}
.ws21{word-spacing:-24.355840pt;}
.ws52{word-spacing:-21.752320pt;}
.wsb{word-spacing:-21.603840pt;}
.ws22{word-spacing:-20.638720pt;}
.ws1c{word-spacing:-20.341760pt;}
.ws5{word-spacing:-20.119040pt;}
.ws30{word-spacing:-18.368000pt;}
.ws38{word-spacing:-18.240000pt;}
.ws1b{word-spacing:-18.048000pt;}
.ws28{word-spacing:-17.792000pt;}
.ws45{word-spacing:-17.664000pt;}
.ws3f{word-spacing:-17.344000pt;}
.ws47{word-spacing:-16.768000pt;}
.ws41{word-spacing:-14.945280pt;}
.ws5b{word-spacing:-13.895680pt;}
.ws59{word-spacing:-13.836800pt;}
.ws6c{word-spacing:-13.777920pt;}
.ws5a{word-spacing:-13.424640pt;}
.ws55{word-spacing:-13.306880pt;}
.ws5d{word-spacing:-13.248000pt;}
.ws70{word-spacing:-13.189120pt;}
.ws60{word-spacing:-13.130240pt;}
.ws54{word-spacing:-13.071360pt;}
.ws58{word-spacing:-12.953600pt;}
.ws56{word-spacing:-12.894720pt;}
.ws57{word-spacing:-12.776960pt;}
.ws5e{word-spacing:-12.718080pt;}
.ws6b{word-spacing:-12.600320pt;}
.ws6f{word-spacing:-12.482560pt;}
.ws53{word-spacing:-12.305920pt;}
.ws5f{word-spacing:-12.188160pt;}
.ws5c{word-spacing:-12.011520pt;}
.ws6d{word-spacing:-11.834880pt;}
.ws61{word-spacing:-11.481600pt;}
.ws17{word-spacing:-3.968000pt;}
.ws48{word-spacing:-3.584000pt;}
.wse{word-spacing:-2.688000pt;}
.ws14{word-spacing:-2.560000pt;}
.ws4c{word-spacing:-2.304000pt;}
.ws3{word-spacing:-1.440000pt;}
.ws16{word-spacing:-1.408000pt;}
.ws6{word-spacing:-1.118720pt;}
.ws64{word-spacing:-1.000960pt;}
.ws6e{word-spacing:-0.588800pt;}
.ws62{word-spacing:-0.471040pt;}
.ws44{word-spacing:-0.448000pt;}
.ws4f{word-spacing:-0.430080pt;}
.ws7{word-spacing:-0.294400pt;}
.ws18{word-spacing:-0.256000pt;}
.ws2{word-spacing:-0.192000pt;}
.ws67{word-spacing:-0.176640pt;}
.wsa{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.117760pt;}
.ws0{word-spacing:-0.096000pt;}
.ws66{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws71{word-spacing:0.058880pt;}
.ws3d{word-spacing:0.128000pt;}
.ws23{word-spacing:0.148480pt;}
.ws69{word-spacing:0.176640pt;}
.ws65{word-spacing:0.235520pt;}
.ws4a{word-spacing:0.256000pt;}
.ws24{word-spacing:0.371200pt;}
.ws2f{word-spacing:0.412160pt;}
.ws42{word-spacing:0.430080pt;}
.wsc{word-spacing:0.448000pt;}
.ws68{word-spacing:0.529920pt;}
.ws6a{word-spacing:0.588800pt;}
.ws2e{word-spacing:0.860160pt;}
.ws4{word-spacing:0.960000pt;}
.ws29{word-spacing:1.024000pt;}
.ws8{word-spacing:1.152000pt;}
.ws3c{word-spacing:1.280000pt;}
.ws50{word-spacing:1.408000pt;}
.ws1f{word-spacing:1.410560pt;}
.ws46{word-spacing:1.536000pt;}
.ws15{word-spacing:2.432000pt;}
.wsd{word-spacing:3.712000pt;}
.ws34{word-spacing:4.416000pt;}
.ws19{word-spacing:4.992000pt;}
.ws51{word-spacing:5.376000pt;}
.ws1e{word-spacing:6.080000pt;}
.ws13{word-spacing:6.272000pt;}
.ws1d{word-spacing:7.552000pt;}
.ws39{word-spacing:7.936000pt;}
.ws9{word-spacing:8.832000pt;}
.ws4e{word-spacing:9.216000pt;}
.ws27{word-spacing:10.112000pt;}
.ws2a{word-spacing:11.392000pt;}
.ws2b{word-spacing:11.776000pt;}
.ws10{word-spacing:12.672000pt;}
.ws43{word-spacing:13.056000pt;}
.ws20{word-spacing:13.952000pt;}
.ws11{word-spacing:15.232000pt;}
.ws4d{word-spacing:15.616000pt;}
.ws26{word-spacing:16.512000pt;}
.ws2d{word-spacing:17.792000pt;}
.ws35{word-spacing:19.072000pt;}
.wsf{word-spacing:20.352000pt;}
.ws25{word-spacing:21.632000pt;}
.ws1a{word-spacing:22.912000pt;}
.ws33{word-spacing:24.192000pt;}
.ws4b{word-spacing:25.472000pt;}
.ws31{word-spacing:26.752000pt;}
.ws3a{word-spacing:28.032000pt;}
.ws3b{word-spacing:30.592000pt;}
.ws37{word-spacing:31.872000pt;}
.ws36{word-spacing:33.152000pt;}
.ws12{word-spacing:34.432000pt;}
.ws40{word-spacing:40.832000pt;}
.ws2c{word-spacing:43.392000pt;}
.ws32{word-spacing:53.632000pt;}
.ws49{word-spacing:63.872000pt;}
.ws3e{word-spacing:93.312000pt;}
._21{margin-left:-27.641600pt;}
._13{margin-left:-7.386880pt;}
._1f{margin-left:-6.272000pt;}
._0{margin-left:-5.184000pt;}
._6{margin-left:-4.003200pt;}
._5{margin-left:-2.880000pt;}
._1{margin-left:-1.824000pt;}
._2{margin-left:-0.902400pt;}
._4{width:1.017600pt;}
._3{width:2.054400pt;}
._20{width:3.296000pt;}
._d{width:4.288000pt;}
._1b{width:5.184000pt;}
._1e{width:8.435200pt;}
._19{width:9.987840pt;}
._1d{width:11.232000pt;}
._1c{width:12.160000pt;}
._e{width:34.968320pt;}
._16{width:63.165440pt;}
._14{width:64.353280pt;}
._c{width:74.368000pt;}
._12{width:81.756160pt;}
._1a{width:84.227840pt;}
._18{width:127.283200pt;}
._15{width:143.210240pt;}
._11{width:145.587200pt;}
._17{width:161.886720pt;}
._10{width:167.485440pt;}
._f{width:168.821760pt;}
._a{width:228.631040pt;}
._8{width:553.707520pt;}
._b{width:642.027520pt;}
._9{width:738.060800pt;}
._7{width:979.998720pt;}
._22{width:1340.288000pt;}
.fs9{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.fs0{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:8.320000pt;}
.yca{bottom:10.560000pt;}
.y119{bottom:12.480000pt;}
.y1d{bottom:51.221120pt;}
.y1c{bottom:69.135360pt;}
.y9d{bottom:99.840000pt;}
.y1e2{bottom:100.613760pt;}
.ye3{bottom:103.360000pt;}
.y64{bottom:104.320000pt;}
.y14d{bottom:105.920000pt;}
.y17{bottom:106.558720pt;}
.y152{bottom:107.840000pt;}
.y7f{bottom:109.756800pt;}
.y19c{bottom:112.640000pt;}
.yed{bottom:113.600000pt;}
.y33{bottom:113.697920pt;}
.yff{bottom:113.920000pt;}
.y1bd{bottom:115.846400pt;}
.y113{bottom:116.800000pt;}
.y10f{bottom:118.400000pt;}
.y162{bottom:118.720000pt;}
.y1e1{bottom:119.808640pt;}
.yd4{bottom:120.640000pt;}
.y12d{bottom:121.920000pt;}
.y1ba{bottom:122.240000pt;}
.y107{bottom:122.880000pt;}
.y177{bottom:123.200000pt;}
.y9c{bottom:127.360000pt;}
.y206{bottom:130.684800pt;}
.y228{bottom:130.714240pt;}
.y16e{bottom:131.520000pt;}
.y14c{bottom:133.760000pt;}
.ye2{bottom:134.720000pt;}
.y139{bottom:135.360000pt;}
.y7e{bottom:138.872960pt;}
.y16{bottom:140.152320pt;}
.y19b{bottom:140.480000pt;}
.yec{bottom:141.120000pt;}
.yfe{bottom:141.440000pt;}
.yb8{bottom:144.320000pt;}
.y10e{bottom:145.920000pt;}
.y63{bottom:147.840000pt;}
.yd3{bottom:148.160000pt;}
.y12c{bottom:149.440000pt;}
.y1e0{bottom:149.881600pt;}
.y1b9{bottom:150.080000pt;}
.y106{bottom:150.400000pt;}
.y176{bottom:150.720000pt;}
.y9b{bottom:154.880000pt;}
.y4b{bottom:155.840000pt;}
.y32{bottom:156.571520pt;}
.y1bc{bottom:158.720000pt;}
.y16d{bottom:159.040000pt;}
.y205{bottom:160.757760pt;}
.y227{bottom:160.787200pt;}
.y13c{bottom:161.280000pt;}
.y151{bottom:162.880000pt;}
.y168{bottom:164.480000pt;}
.y7d{bottom:167.680000pt;}
.y19a{bottom:168.000000pt;}
.yeb{bottom:168.640000pt;}
.yfd{bottom:168.960000pt;}
.y1df{bottom:169.400320pt;}
.yb7{bottom:171.840000pt;}
.y10d{bottom:173.440000pt;}
.y15{bottom:174.080000pt;}
.y115{bottom:174.400000pt;}
.yd2{bottom:175.680000pt;}
.y1b8{bottom:177.600000pt;}
.y105{bottom:178.240000pt;}
.y204{bottom:179.952640pt;}
.y226{bottom:179.982080pt;}
.y16c{bottom:180.160000pt;}
.y112{bottom:182.400000pt;}
.yc6{bottom:182.720000pt;}
.y1a9{bottom:184.320000pt;}
.y62{bottom:186.240000pt;}
.y12b{bottom:187.840000pt;}
.y1de{bottom:188.595200pt;}
.y13b{bottom:188.800000pt;}
.yea{bottom:189.760000pt;}
.y150{bottom:190.400000pt;}
.y167{bottom:192.000000pt;}
.y9a{bottom:193.280000pt;}
.y199{bottom:195.520000pt;}
.y4a{bottom:196.480000pt;}
.y7c{bottom:197.683200pt;}
.yb6{bottom:199.360000pt;}
.y31{bottom:199.445120pt;}
.y203{bottom:199.471360pt;}
.y16b{bottom:200.320000pt;}
.y10c{bottom:201.280000pt;}
.yd1{bottom:203.200000pt;}
.y1b7{bottom:205.120000pt;}
.y175{bottom:205.760000pt;}
.y114{bottom:206.080000pt;}
.y14{bottom:209.920000pt;}
.y225{bottom:210.055040pt;}
.ye9{bottom:210.240000pt;}
.y1a8{bottom:211.840000pt;}
.y12a{bottom:215.360000pt;}
.y104{bottom:216.320000pt;}
.y14f{bottom:218.240000pt;}
.y1dd{bottom:218.668160pt;}
.y187{bottom:219.520000pt;}
.y99{bottom:220.800000pt;}
.y198{bottom:223.040000pt;}
.y49{bottom:224.000000pt;}
.y61{bottom:224.320000pt;}
.yb5{bottom:227.200000pt;}
.y16a{bottom:228.160000pt;}
.y10b{bottom:228.800000pt;}
.y202{bottom:229.544320pt;}
.yd0{bottom:231.040000pt;}
.y7b{bottom:231.276800pt;}
.y1b6{bottom:232.640000pt;}
.y149{bottom:234.560000pt;}
.ye8{bottom:237.760000pt;}
.y1dc{bottom:237.863040pt;}
.y1a7{bottom:239.360000pt;}
.y224{bottom:240.128000pt;}
.y30{bottom:242.318720pt;}
.y129{bottom:242.880000pt;}
.y103{bottom:244.160000pt;}
.y14e{bottom:245.760000pt;}
.y186{bottom:247.040000pt;}
.y98{bottom:248.320000pt;}
.y13{bottom:250.240000pt;}
.y197{bottom:250.880000pt;}
.y48{bottom:251.840000pt;}
.yb4{bottom:254.720000pt;}
.y169{bottom:255.680000pt;}
.y10a{bottom:256.320000pt;}
.y1db{bottom:257.057920pt;}
.ycf{bottom:258.560000pt;}
.y201{bottom:259.308160pt;}
.y1b5{bottom:260.480000pt;}
.y60{bottom:262.720000pt;}
.y7a{bottom:265.204480pt;}
.ye7{bottom:265.280000pt;}
.y1a6{bottom:267.200000pt;}
.y223{bottom:270.200960pt;}
.y128{bottom:270.400000pt;}
.y102{bottom:271.680000pt;}
.y148{bottom:272.960000pt;}
.y185{bottom:274.560000pt;}
.y163{bottom:274.880000pt;}
.y97{bottom:276.160000pt;}
.y1da{bottom:276.576640pt;}
.y196{bottom:278.400000pt;}
.y47{bottom:279.360000pt;}
.yb3{bottom:282.240000pt;}
.y138{bottom:283.840000pt;}
.y2f{bottom:285.192320pt;}
.yce{bottom:286.080000pt;}
.y1b4{bottom:288.000000pt;}
.y12{bottom:288.942080pt;}
.y200{bottom:289.381120pt;}
.ye6{bottom:292.800000pt;}
.y109{bottom:296.640000pt;}
.y127{bottom:298.240000pt;}
.y79{bottom:299.132160pt;}
.y101{bottom:299.200000pt;}
.y222{bottom:299.964800pt;}
.y5f{bottom:300.800000pt;}
.y184{bottom:302.080000pt;}
.y96{bottom:303.680000pt;}
.y1a5{bottom:305.280000pt;}
.y195{bottom:305.920000pt;}
.y1d9{bottom:306.340480pt;}
.y46{bottom:306.880000pt;}
.y1ff{bottom:308.576000pt;}
.yb2{bottom:309.760000pt;}
.y166{bottom:310.720000pt;}
.y147{bottom:311.360000pt;}
.y137{bottom:311.680000pt;}
.ycd{bottom:313.600000pt;}
.ye5{bottom:320.640000pt;}
.y11{bottom:322.535680pt;}
.y126{bottom:325.760000pt;}
.y1d8{bottom:325.859200pt;}
.y1b3{bottom:326.080000pt;}
.y100{bottom:326.720000pt;}
.y174{bottom:327.040000pt;}
.y2e{bottom:328.065920pt;}
.y1fe{bottom:328.094720pt;}
.y183{bottom:329.920000pt;}
.y221{bottom:330.037760pt;}
.y95{bottom:331.200000pt;}
.y78{bottom:332.725760pt;}
.y1a4{bottom:332.800000pt;}
.y194{bottom:333.440000pt;}
.y45{bottom:334.400000pt;}
.yb1{bottom:337.600000pt;}
.y165{bottom:338.560000pt;}
.y146{bottom:338.880000pt;}
.y5e{bottom:339.200000pt;}
.ycc{bottom:341.440000pt;}
.y1d7{bottom:345.054080pt;}
.ye1{bottom:348.160000pt;}
.y220{bottom:349.232640pt;}
.y125{bottom:353.280000pt;}
.y1b2{bottom:353.920000pt;}
.y10{bottom:356.463360pt;}
.y182{bottom:357.440000pt;}
.y1fd{bottom:357.858560pt;}
.y94{bottom:358.720000pt;}
.y1a3{bottom:360.640000pt;}
.y44{bottom:362.240000pt;}
.yb0{bottom:365.120000pt;}
.y164{bottom:366.080000pt;}
.y145{bottom:366.400000pt;}
.y77{bottom:366.653440pt;}
.y136{bottom:366.720000pt;}
.y21f{bottom:368.751360pt;}
.y2d{bottom:370.939520pt;}
.y193{bottom:371.840000pt;}
.y1d6{bottom:375.127040pt;}
.ye0{bottom:375.680000pt;}
.y5d{bottom:377.280000pt;}
.y1fc{bottom:377.377280pt;}
.ycb{bottom:379.520000pt;}
.y173{bottom:380.160000pt;}
.y124{bottom:380.800000pt;}
.y1b1{bottom:381.440000pt;}
.y181{bottom:384.960000pt;}
.yc5{bottom:386.560000pt;}
.y1a2{bottom:388.160000pt;}
.y43{bottom:389.760000pt;}
.yf{bottom:390.391040pt;}
.yaf{bottom:392.640000pt;}
.y144{bottom:393.920000pt;}
.y135{bottom:394.240000pt;}
.y1d5{bottom:394.321920pt;}
.yc9{bottom:394.560000pt;}
.y1fb{bottom:396.572160pt;}
.y93{bottom:397.120000pt;}
.y21e{bottom:398.515200pt;}
.y192{bottom:399.360000pt;}
.y76{bottom:400.581120pt;}
.ydf{bottom:403.200000pt;}
.y1bb{bottom:407.040000pt;}
.y171{bottom:407.680000pt;}
.y123{bottom:408.640000pt;}
.y1b0{bottom:408.960000pt;}
.y172{bottom:411.520000pt;}
.y180{bottom:412.480000pt;}
.y2c{bottom:413.813120pt;}
.y1d4{bottom:413.840640pt;}
.yc4{bottom:414.080000pt;}
.y5c{bottom:415.680000pt;}
.yc7{bottom:417.600000pt;}
.yae{bottom:420.160000pt;}
.y143{bottom:421.760000pt;}
.y134{bottom:422.080000pt;}
.ye{bottom:424.318720pt;}
.y92{bottom:424.640000pt;}
.y1fa{bottom:426.645120pt;}
.y191{bottom:426.880000pt;}
.yfc{bottom:428.160000pt;}
.y21d{bottom:428.588160pt;}
.y42{bottom:430.080000pt;}
.yde{bottom:431.040000pt;}
.y161{bottom:432.000000pt;}
.y1d3{bottom:433.035520pt;}
.y75{bottom:434.508800pt;}
.y1af{bottom:436.480000pt;}
.y17f{bottom:440.320000pt;}
.yc3{bottom:441.600000pt;}
.y1a1{bottom:443.200000pt;}
.y1f9{bottom:445.840000pt;}
.y122{bottom:446.720000pt;}
.yad{bottom:448.000000pt;}
.y21c{bottom:448.106880pt;}
.y142{bottom:449.280000pt;}
.y133{bottom:449.600000pt;}
.y91{bottom:452.160000pt;}
.y5b{bottom:454.080000pt;}
.y190{bottom:454.720000pt;}
.yfb{bottom:455.680000pt;}
.y2b{bottom:456.686720pt;}
.yd{bottom:457.912320pt;}
.ydd{bottom:458.560000pt;}
.y160{bottom:459.520000pt;}
.y1d2{bottom:463.108480pt;}
.y1ae{bottom:464.320000pt;}
.y21b{bottom:467.301760pt;}
.y17e{bottom:467.840000pt;}
.y74{bottom:468.102400pt;}
.yc2{bottom:469.120000pt;}
.y41{bottom:470.720000pt;}
.y1a0{bottom:471.040000pt;}
.y121{bottom:474.560000pt;}
.yac{bottom:475.520000pt;}
.y1f8{bottom:475.912960pt;}
.y141{bottom:476.800000pt;}
.y132{bottom:477.120000pt;}
.y90{bottom:480.000000pt;}
.y5a{bottom:481.600000pt;}
.y18f{bottom:482.240000pt;}
.y1d1{bottom:482.303360pt;}
.yfa{bottom:483.200000pt;}
.ydc{bottom:486.080000pt;}
.y15f{bottom:487.040000pt;}
.y170{bottom:490.560000pt;}
.yc{bottom:491.840000pt;}
.y1f7{bottom:495.107840pt;}
.y17d{bottom:495.360000pt;}
.y111{bottom:496.640000pt;}
.yc1{bottom:496.960000pt;}
.y21a{bottom:497.374720pt;}
.y19f{bottom:498.560000pt;}
.y2a{bottom:499.560320pt;}
.y1d0{bottom:501.822080pt;}
.y73{bottom:502.030080pt;}
.y120{bottom:502.080000pt;}
.yab{bottom:503.040000pt;}
.y140{bottom:504.320000pt;}
.y131{bottom:504.640000pt;}
.y8f{bottom:507.520000pt;}
.y40{bottom:509.120000pt;}
.y18e{bottom:509.760000pt;}
.yf9{bottom:510.720000pt;}
.ydb{bottom:513.600000pt;}
.y15e{bottom:514.560000pt;}
.y219{bottom:516.569600pt;}
.y16f{bottom:518.080000pt;}
.y1ad{bottom:519.360000pt;}
.y17c{bottom:522.880000pt;}
.yb{bottom:524.476800pt;}
.y110{bottom:524.480000pt;}
.y1f6{bottom:525.180800pt;}
.y11f{bottom:529.600000pt;}
.y14b{bottom:530.560000pt;}
.y1cf{bottom:531.585920pt;}
.y130{bottom:532.480000pt;}
.y8e{bottom:535.040000pt;}
.y72{bottom:535.957760pt;}
.y3f{bottom:536.640000pt;}
.y18d{bottom:537.280000pt;}
.yf8{bottom:538.240000pt;}
.yaa{bottom:541.440000pt;}
.y29{bottom:542.433920pt;}
.y13f{bottom:542.720000pt;}
.y218{bottom:546.642560pt;}
.y1ac{bottom:546.880000pt;}
.y17b{bottom:550.720000pt;}
.y19e{bottom:551.680000pt;}
.y108{bottom:552.000000pt;}
.y15d{bottom:552.960000pt;}
.ya{bottom:553.283840pt;}
.y1f5{bottom:555.253760pt;}
.y11e{bottom:557.120000pt;}
.y13e{bottom:557.760000pt;}
.y14a{bottom:558.400000pt;}
.y1ce{bottom:561.658880pt;}
.y1ab{bottom:561.920000pt;}
.yc0{bottom:562.560000pt;}
.y3e{bottom:564.480000pt;}
.y18c{bottom:565.120000pt;}
.y217{bottom:565.837440pt;}
.yf7{bottom:566.080000pt;}
.y59{bottom:566.400000pt;}
.ya9{bottom:568.960000pt;}
.y71{bottom:569.551360pt;}
.y12f{bottom:572.480000pt;}
.y8d{bottom:573.440000pt;}
.y1f4{bottom:574.448640pt;}
.ye4{bottom:579.520000pt;}
.y15c{bottom:580.480000pt;}
.y1cd{bottom:580.853760pt;}
.y9{bottom:582.400000pt;}
.y19d{bottom:583.040000pt;}
.y11d{bottom:584.960000pt;}
.y28{bottom:585.307520pt;}
.y17a{bottom:588.800000pt;}
.y13d{bottom:589.120000pt;}
.ybf{bottom:590.400000pt;}
.y3d{bottom:592.000000pt;}
.y18b{bottom:592.640000pt;}
.yf6{bottom:593.600000pt;}
.y1f3{bottom:593.967360pt;}
.y216{bottom:595.910400pt;}
.ya8{bottom:596.480000pt;}
.y8c{bottom:600.960000pt;}
.y70{bottom:603.479040pt;}
.y179{bottom:603.840000pt;}
.yda{bottom:607.040000pt;}
.y58{bottom:607.360000pt;}
.y15b{bottom:608.000000pt;}
.y1cc{bottom:610.926720pt;}
.y11c{bottom:612.480000pt;}
.y12e{bottom:613.440000pt;}
.y1aa{bottom:616.320000pt;}
.ybe{bottom:617.920000pt;}
.y3c{bottom:619.520000pt;}
.y8{bottom:621.104000pt;}
.yf5{bottom:621.120000pt;}
.y1f2{bottom:623.731200pt;}
.ya7{bottom:624.000000pt;}
.y215{bottom:625.983360pt;}
.y27{bottom:628.181120pt;}
.y8b{bottom:628.480000pt;}
.y1cb{bottom:630.121600pt;}
.y18a{bottom:630.720000pt;}
.yd9{bottom:634.880000pt;}
.y178{bottom:635.200000pt;}
.y15a{bottom:635.840000pt;}
.y6f{bottom:637.406720pt;}
.y11b{bottom:640.000000pt;}
.y1f1{bottom:643.249920pt;}
.y214{bottom:645.178240pt;}
.y57{bottom:645.440000pt;}
.y189{bottom:645.760000pt;}
.y3b{bottom:647.040000pt;}
.ybd{bottom:649.280000pt;}
.ya6{bottom:651.840000pt;}
.y8a{bottom:656.000000pt;}
.yf4{bottom:659.520000pt;}
.y1ca{bottom:660.194560pt;}
.yd8{bottom:662.400000pt;}
.y1f0{bottom:662.444800pt;}
.y159{bottom:663.360000pt;}
.y213{bottom:664.373120pt;}
.y11a{bottom:667.520000pt;}
.y26{bottom:671.054720pt;}
.y6e{bottom:671.334400pt;}
.y56{bottom:672.960000pt;}
.y3a{bottom:674.560000pt;}
.y188{bottom:677.120000pt;}
.ya5{bottom:679.360000pt;}
.y1c9{bottom:679.713280pt;}
.y118{bottom:682.560000pt;}
.y89{bottom:683.840000pt;}
.y212{bottom:683.891840pt;}
.yf3{bottom:687.040000pt;}
.ybc{bottom:689.920000pt;}
.y158{bottom:690.880000pt;}
.y7{bottom:691.520000pt;}
.y1ef{bottom:692.517760pt;}
.y1c8{bottom:698.908160pt;}
.y55{bottom:700.800000pt;}
.y211{bottom:703.086720pt;}
.y6d{bottom:704.928000pt;}
.ya4{bottom:706.880000pt;}
.y117{bottom:710.080000pt;}
.y88{bottom:711.360000pt;}
.y1ee{bottom:711.712640pt;}
.y39{bottom:712.960000pt;}
.y25{bottom:713.612800pt;}
.yf2{bottom:714.560000pt;}
.yd7{bottom:717.440000pt;}
.y1c7{bottom:718.103040pt;}
.y54{bottom:728.320000pt;}
.y210{bottom:733.159680pt;}
.ya3{bottom:734.400000pt;}
.y157{bottom:737.280000pt;}
.y6c{bottom:738.855680pt;}
.y87{bottom:738.880000pt;}
.y38{bottom:740.480000pt;}
.y1ed{bottom:741.785600pt;}
.yf1{bottom:742.400000pt;}
.y116{bottom:743.680000pt;}
.yd6{bottom:745.280000pt;}
.y1c6{bottom:748.176000pt;}
.y20f{bottom:752.354560pt;}
.ybb{bottom:755.840000pt;}
.y24{bottom:756.486400pt;}
.y53{bottom:759.680000pt;}
.y1ec{bottom:760.980480pt;}
.y6{bottom:761.600000pt;}
.ya2{bottom:762.240000pt;}
.y156{bottom:764.800000pt;}
.y86{bottom:766.400000pt;}
.y1c5{bottom:767.370880pt;}
.y37{bottom:768.320000pt;}
.yf0{bottom:769.920000pt;}
.y20e{bottom:771.873280pt;}
.y6b{bottom:772.783360pt;}
.yd5{bottom:772.800000pt;}
.y1eb{bottom:780.499200pt;}
.yba{bottom:783.360000pt;}
.y1c4{bottom:786.889600pt;}
.y155{bottom:792.320000pt;}
.y85{bottom:794.240000pt;}
.y36{bottom:795.840000pt;}
.yef{bottom:797.440000pt;}
.y23{bottom:799.360000pt;}
.y52{bottom:800.320000pt;}
.y20d{bottom:801.637120pt;}
.y6a{bottom:806.711040pt;}
.y1ea{bottom:810.263040pt;}
.yb9{bottom:810.880000pt;}
.y1c3{bottom:816.653440pt;}
.y154{bottom:819.840000pt;}
.y5{bottom:821.120000pt;}
.y20c{bottom:821.155840pt;}
.y84{bottom:821.760000pt;}
.y35{bottom:823.360000pt;}
.yee{bottom:824.960000pt;}
.ya1{bottom:827.840000pt;}
.y1e9{bottom:829.781760pt;}
.y51{bottom:838.720000pt;}
.y69{bottom:840.304640pt;}
.y22{bottom:840.320000pt;}
.y20b{bottom:840.350720pt;}
.y1c2{bottom:846.726400pt;}
.y153{bottom:847.680000pt;}
.y34{bottom:850.880000pt;}
.ya0{bottom:855.680000pt;}
.y1e8{bottom:859.545600pt;}
.y83{bottom:859.840000pt;}
.y50{bottom:866.240000pt;}
.y1c1{bottom:866.245120pt;}
.y20a{bottom:870.423680pt;}
.y68{bottom:874.232320pt;}
.y21{bottom:878.720000pt;}
.y1e7{bottom:879.064320pt;}
.y9f{bottom:883.200000pt;}
.y4{bottom:884.488000pt;}
.y1c0{bottom:885.440000pt;}
.y82{bottom:887.680000pt;}
.y209{bottom:889.618560pt;}
.y4f{bottom:893.760000pt;}
.y1e6{bottom:898.259200pt;}
.y20{bottom:906.240000pt;}
.y67{bottom:908.160000pt;}
.y208{bottom:908.813440pt;}
.y9e{bottom:910.720000pt;}
.y81{bottom:915.200000pt;}
.y1bf{bottom:915.525120pt;}
.y4e{bottom:921.280000pt;}
.y3{bottom:924.808000pt;}
.y1e5{bottom:928.332160pt;}
.y1f{bottom:933.760000pt;}
.y1be{bottom:934.720000pt;}
.y13a{bottom:938.240000pt;}
.y207{bottom:938.886400pt;}
.y66{bottom:940.800000pt;}
.y80{bottom:942.720000pt;}
.y4d{bottom:949.120000pt;}
.y1e4{bottom:958.405120pt;}
.y2{bottom:965.128000pt;}
.y65{bottom:971.520000pt;}
.y1e{bottom:974.080000pt;}
.y4c{bottom:976.640000pt;}
.y1e3{bottom:977.600000pt;}
.y1{bottom:1005.760000pt;}
.y1b{bottom:1007.697280pt;}
.y1a{bottom:1025.611520pt;}
.y19{bottom:1043.525760pt;}
.y18{bottom:1061.440000pt;}
.h17{height:1.865000pt;}
.hf{height:23.040000pt;}
.h11{height:23.312500pt;}
.h13{height:27.520000pt;}
.h10{height:39.165000pt;}
.h8{height:40.796250pt;}
.h19{height:42.262500pt;}
.h6{height:42.895000pt;}
.h18{height:44.323270pt;}
.ha{height:46.593750pt;}
.hb{height:46.625000pt;}
.h12{height:50.465000pt;}
.h5{height:53.158750pt;}
.hd{height:54.085000pt;}
.h9{height:57.781250pt;}
.h7{height:67.026250pt;}
.h3{height:69.937500pt;}
.hc{height:77.426875pt;}
.h2{height:86.671875pt;}
.h4{height:173.343750pt;}
.h14{height:289.920000pt;}
.he{height:314.880000pt;}
.h16{height:406.720000pt;}
.h15{height:588.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:255.040000pt;}
.w4{width:274.241333pt;}
.w6{width:551.040000pt;}
.w3{width:566.400000pt;}
.w2{width:567.040000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:7.360000pt;}
.x1c{left:8.320000pt;}
.x1e{left:18.240000pt;}
.x1a{left:20.160000pt;}
.x23{left:31.360000pt;}
.x25{left:51.840000pt;}
.xa{left:113.278080pt;}
.x24{left:120.640000pt;}
.x8{left:123.248000pt;}
.x1f{left:127.360000pt;}
.x19{left:132.160000pt;}
.x31{left:135.040000pt;}
.x12{left:137.280000pt;}
.x27{left:144.640000pt;}
.xf{left:148.813440pt;}
.x2d{left:155.520000pt;}
.xd{left:160.311040pt;}
.x20{left:161.280000pt;}
.x2c{left:165.440000pt;}
.x22{left:169.920000pt;}
.x2a{left:176.960000pt;}
.x9{left:179.194240pt;}
.x2f{left:180.800000pt;}
.x10{left:184.641920pt;}
.x6{left:202.256000pt;}
.x7{left:208.688000pt;}
.x5{left:212.480000pt;}
.xb{left:223.360000pt;}
.xc{left:224.320000pt;}
.x29{left:226.880000pt;}
.x1{left:276.800000pt;}
.x3{left:278.096000pt;}
.x2{left:283.208000pt;}
.x18{left:360.000000pt;}
.x1d{left:362.240000pt;}
.x14{left:365.760000pt;}
.x4{left:396.800000pt;}
.x1b{left:406.400000pt;}
.x13{left:408.640000pt;}
.x2b{left:464.000000pt;}
.x2e{left:481.600000pt;}
.x30{left:495.680000pt;}
.x28{left:506.240000pt;}
.x17{left:527.360000pt;}
.xe{left:534.080000pt;}
.x15{left:574.080000pt;}
.x21{left:643.520000pt;}
.x16{left:665.617920pt;}
.x11{left:672.977920pt;}
}




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