
    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_383d68d7b8b815f06baf6b5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.138071;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_fbafdee2008c2a89c1fb13d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.748000;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_59a71fdc644d9b43c8e4ca76.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.138071;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_207c48a0841f39d2a527bf31.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_93b1301460255d065282cacc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.980000;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_b787853348c1ba928259dabf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;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_5387202a6c80884e4698eb5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.140000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978600px;}
.ls5{letter-spacing:-1.800000px;}
.ls6{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:1.080000px;}
.ls3{letter-spacing:3.360000px;}
.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;}
}
.ws16{word-spacing:-17.064000px;}
.ws4{word-spacing:-15.642000px;}
.ws59{word-spacing:-14.400000px;}
.ws2{word-spacing:-14.220000px;}
.ws1{word-spacing:-13.200000px;}
.ws3{word-spacing:-12.000000px;}
.ws0{word-spacing:-7.695600px;}
.ws61{word-spacing:-3.528000px;}
.ws50{word-spacing:-3.360000px;}
.ws38{word-spacing:-3.168000px;}
.ws68{word-spacing:-2.952000px;}
.ws7a{word-spacing:-2.880000px;}
.ws44{word-spacing:-2.808000px;}
.ws5f{word-spacing:-2.736000px;}
.ws74{word-spacing:-2.592000px;}
.ws4e{word-spacing:-2.448000px;}
.ws89{word-spacing:-2.232000px;}
.ws28{word-spacing:-2.160000px;}
.ws92{word-spacing:-1.980000px;}
.ws4f{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.656000px;}
.ws83{word-spacing:-1.620000px;}
.ws6d{word-spacing:-1.584000px;}
.ws4b{word-spacing:-1.560000px;}
.ws3a{word-spacing:-1.512000px;}
.ws11{word-spacing:-1.452000px;}
.ws3b{word-spacing:-1.440000px;}
.ws7d{word-spacing:-1.296000px;}
.ws82{word-spacing:-1.260000px;}
.ws75{word-spacing:-1.224000px;}
.ws6c{word-spacing:-1.152000px;}
.wsf{word-spacing:-1.122000px;}
.ws39{word-spacing:-1.080000px;}
.ws87{word-spacing:-1.008000px;}
.ws12{word-spacing:-0.990000px;}
.wsa0{word-spacing:-0.936000px;}
.ws60{word-spacing:-0.864000px;}
.ws78{word-spacing:-0.792000px;}
.ws37{word-spacing:-0.780000px;}
.ws34{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.648000px;}
.ws14{word-spacing:-0.594000px;}
.ws6e{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.504000px;}
.ws3f{word-spacing:-0.432000px;}
.ws2d{word-spacing:-0.360000px;}
.ws69{word-spacing:-0.288000px;}
.ws62{word-spacing:-0.216000px;}
.ws29{word-spacing:-0.144000px;}
.ws42{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws2a{word-spacing:0.072000px;}
.ws46{word-spacing:0.144000px;}
.ws1b{word-spacing:0.216000px;}
.ws5b{word-spacing:0.288000px;}
.ws85{word-spacing:0.300000px;}
.ws9{word-spacing:0.330000px;}
.ws64{word-spacing:0.360000px;}
.ws91{word-spacing:0.420000px;}
.ws6f{word-spacing:0.600000px;}
.ws30{word-spacing:0.648000px;}
.ws48{word-spacing:0.660000px;}
.ws25{word-spacing:0.720000px;}
.ws7c{word-spacing:0.792000px;}
.ws1d{word-spacing:0.864000px;}
.ws84{word-spacing:0.900000px;}
.ws2b{word-spacing:0.936000px;}
.ws5c{word-spacing:1.008000px;}
.ws93{word-spacing:1.020000px;}
.ws10{word-spacing:1.122000px;}
.ws15{word-spacing:1.140000px;}
.ws67{word-spacing:1.152000px;}
.ws21{word-spacing:1.224000px;}
.ws27{word-spacing:1.296000px;}
.ws6{word-spacing:1.320000px;}
.ws1f{word-spacing:1.368000px;}
.ws32{word-spacing:1.440000px;}
.ws7b{word-spacing:1.512000px;}
.ws3c{word-spacing:1.584000px;}
.ws41{word-spacing:1.656000px;}
.ws18{word-spacing:1.728000px;}
.ws3d{word-spacing:1.800000px;}
.ws73{word-spacing:1.872000px;}
.ws71{word-spacing:1.944000px;}
.ws33{word-spacing:2.016000px;}
.ws8c{word-spacing:2.040000px;}
.ws24{word-spacing:2.088000px;}
.ws8d{word-spacing:2.100000px;}
.ws31{word-spacing:2.160000px;}
.wse{word-spacing:2.244000px;}
.ws99{word-spacing:2.304000px;}
.ws58{word-spacing:2.340000px;}
.wsc{word-spacing:2.442000px;}
.ws2e{word-spacing:2.448000px;}
.ws8b{word-spacing:2.460000px;}
.ws88{word-spacing:2.592000px;}
.ws65{word-spacing:2.736000px;}
.ws6b{word-spacing:2.808000px;}
.ws8e{word-spacing:2.940000px;}
.ws2f{word-spacing:3.024000px;}
.ws54{word-spacing:3.240000px;}
.ws70{word-spacing:3.312000px;}
.ws22{word-spacing:3.384000px;}
.wsd{word-spacing:3.432000px;}
.ws72{word-spacing:3.528000px;}
.ws52{word-spacing:3.540000px;}
.ws2c{word-spacing:3.600000px;}
.ws20{word-spacing:3.744000px;}
.ws1a{word-spacing:3.816000px;}
.wsa{word-spacing:3.960000px;}
.ws7{word-spacing:4.026000px;}
.ws7f{word-spacing:4.032000px;}
.ws94{word-spacing:4.080000px;}
.ws26{word-spacing:4.104000px;}
.ws97{word-spacing:4.176000px;}
.ws57{word-spacing:4.200000px;}
.ws86{word-spacing:4.248000px;}
.ws6a{word-spacing:4.320000px;}
.ws5a{word-spacing:4.392000px;}
.ws5d{word-spacing:4.464000px;}
.ws81{word-spacing:4.500000px;}
.ws8f{word-spacing:4.536000px;}
.ws3e{word-spacing:4.608000px;}
.ws13{word-spacing:4.620000px;}
.wsb{word-spacing:4.686000px;}
.ws95{word-spacing:4.752000px;}
.ws4c{word-spacing:4.800000px;}
.ws35{word-spacing:4.824000px;}
.ws9c{word-spacing:4.896000px;}
.ws9a{word-spacing:4.968000px;}
.ws47{word-spacing:5.040000px;}
.ws1c{word-spacing:5.184000px;}
.ws4d{word-spacing:5.256000px;}
.ws63{word-spacing:5.400000px;}
.ws4a{word-spacing:5.520000px;}
.ws9b{word-spacing:5.688000px;}
.ws49{word-spacing:5.880000px;}
.ws36{word-spacing:5.904000px;}
.ws77{word-spacing:5.976000px;}
.ws40{word-spacing:6.120000px;}
.ws56{word-spacing:6.264000px;}
.ws51{word-spacing:6.360000px;}
.ws79{word-spacing:6.552000px;}
.ws43{word-spacing:6.696000px;}
.ws8{word-spacing:6.732000px;}
.ws45{word-spacing:6.912000px;}
.ws98{word-spacing:6.984000px;}
.ws9e{word-spacing:7.056000px;}
.ws66{word-spacing:7.128000px;}
.ws55{word-spacing:7.272000px;}
.ws96{word-spacing:7.560000px;}
.ws90{word-spacing:7.704000px;}
.ws7e{word-spacing:7.776000px;}
.ws17{word-spacing:7.920000px;}
.ws8a{word-spacing:8.208000px;}
.ws80{word-spacing:8.352000px;}
.ws23{word-spacing:8.424000px;}
.ws9f{word-spacing:8.496000px;}
.ws19{word-spacing:8.640000px;}
.ws76{word-spacing:8.856000px;}
.ws9d{word-spacing:11.520000px;}
._c{margin-left:-16.351200px;}
._d{margin-left:-9.492000px;}
._1{margin-left:-7.724400px;}
._2{margin-left:-6.322800px;}
._5{margin-left:-4.908240px;}
._4{margin-left:-2.934000px;}
._0{margin-left:-1.686000px;}
._3{width:1.512000px;}
._8{width:2.586000px;}
._7{width:4.032000px;}
._6{width:5.040000px;}
._b{width:6.153600px;}
._a{width:7.899600px;}
._9{width:16.014000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(178,178,178);}
.fs4{font-size:38.478000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.592250px;}
.y200{bottom:84.961200px;}
.y157{bottom:84.983100px;}
.ya6{bottom:84.998700px;}
.y1ac{bottom:85.008150px;}
.y181{bottom:85.009200px;}
.ydd{bottom:85.019100px;}
.y29{bottom:85.036200px;}
.yc1{bottom:85.038900px;}
.y117{bottom:85.039200px;}
.yfc{bottom:85.039350px;}
.y1d9{bottom:85.051200px;}
.y129{bottom:85.055850px;}
.y7b{bottom:85.071000px;}
.y8f{bottom:85.075800px;}
.y56{bottom:85.303350px;}
.y28{bottom:103.036200px;}
.yc0{bottom:105.408900px;}
.y1ff{bottom:107.947200px;}
.y1ab{bottom:108.030150px;}
.y1d8{bottom:108.127200px;}
.y180{bottom:108.247200px;}
.ya5{bottom:108.992700px;}
.y156{bottom:109.157100px;}
.y55{bottom:109.477350px;}
.y128{bottom:109.769850px;}
.ydc{bottom:110.183100px;}
.y7a{bottom:112.503000px;}
.y8e{bottom:115.171800px;}
.y27{bottom:121.036200px;}
.ybf{bottom:125.778900px;}
.y1fe{bottom:130.933200px;}
.y1aa{bottom:131.052150px;}
.y1d7{bottom:131.203200px;}
.y17f{bottom:131.485200px;}
.ya4{bottom:132.986700px;}
.y155{bottom:133.331100px;}
.y54{bottom:133.651350px;}
.y127{bottom:134.483850px;}
.ydb{bottom:135.347100px;}
.y26{bottom:139.036200px;}
.y79{bottom:139.935000px;}
.y8d{bottom:145.267800px;}
.ybe{bottom:146.148900px;}
.y1fd{bottom:153.919200px;}
.y1a9{bottom:154.074150px;}
.y1d6{bottom:154.279200px;}
.y17e{bottom:154.723200px;}
.ya3{bottom:156.980700px;}
.y154{bottom:157.505100px;}
.y53{bottom:157.825350px;}
.y126{bottom:159.197850px;}
.yda{bottom:160.511100px;}
.y25{bottom:164.551200px;}
.ybd{bottom:166.518900px;}
.y78{bottom:167.367000px;}
.y8c{bottom:175.363800px;}
.y1a8{bottom:177.096150px;}
.y1d5{bottom:177.355200px;}
.y17d{bottom:177.961200px;}
.ya2{bottom:180.974700px;}
.y153{bottom:181.679100px;}
.y52{bottom:181.999350px;}
.y24{bottom:182.551200px;}
.y125{bottom:183.911850px;}
.yd9{bottom:185.675100px;}
.ybc{bottom:186.888900px;}
.y1fc{bottom:193.915200px;}
.y77{bottom:194.799000px;}
.y1a7{bottom:200.118150px;}
.y1d4{bottom:200.431200px;}
.y23{bottom:200.551200px;}
.y17c{bottom:201.199200px;}
.ya1{bottom:204.968700px;}
.y8b{bottom:205.459800px;}
.y152{bottom:205.853100px;}
.y51{bottom:206.173350px;}
.y124{bottom:208.625850px;}
.yd8{bottom:210.839100px;}
.y22{bottom:218.551200px;}
.y76{bottom:222.231000px;}
.y1a6{bottom:223.140150px;}
.y1d3{bottom:223.507200px;}
.y17b{bottom:224.437200px;}
.ya0{bottom:228.962700px;}
.y151{bottom:230.027100px;}
.y50{bottom:230.347350px;}
.y123{bottom:233.339850px;}
.y1fb{bottom:233.911200px;}
.y8a{bottom:235.555800px;}
.yd7{bottom:236.003100px;}
.y21{bottom:236.551200px;}
.ybb{bottom:241.244100px;}
.y1a5{bottom:246.162150px;}
.y1d2{bottom:246.583200px;}
.y17a{bottom:247.675200px;}
.y75{bottom:249.663000px;}
.y150{bottom:254.201100px;}
.y4f{bottom:254.521350px;}
.y1fa{bottom:256.897200px;}
.yd6{bottom:261.167100px;}
.y89{bottom:265.651800px;}
.yba{bottom:266.120100px;}
.y1a4{bottom:269.184150px;}
.y1d1{bottom:269.659200px;}
.y179{bottom:270.913200px;}
.y122{bottom:275.064450px;}
.y74{bottom:277.095000px;}
.y14f{bottom:278.375100px;}
.y4e{bottom:278.695350px;}
.y1f9{bottom:279.883200px;}
.yd5{bottom:286.331100px;}
.y9f{bottom:286.983750px;}
.yb9{bottom:290.996100px;}
.y1a3{bottom:292.206150px;}
.y1d0{bottom:292.735200px;}
.y88{bottom:295.747800px;}
.y20{bottom:300.333600px;}
.y14e{bottom:302.549100px;}
.y1f8{bottom:302.869200px;}
.y4d{bottom:302.869350px;}
.y73{bottom:304.527000px;}
.y9e{bottom:306.468750px;}
.yd4{bottom:311.495100px;}
.y1a2{bottom:315.228150px;}
.y1cf{bottom:315.811200px;}
.yb8{bottom:315.872100px;}
.y87{bottom:325.843800px;}
.y9d{bottom:325.953750px;}
.y14d{bottom:326.723100px;}
.y4c{bottom:327.043350px;}
.y178{bottom:328.159200px;}
.y72{bottom:331.959000px;}
.yd3{bottom:336.659100px;}
.y1a1{bottom:338.250150px;}
.y1ce{bottom:338.887200px;}
.y1f{bottom:340.511100px;}
.yb7{bottom:340.748100px;}
.y1f7{bottom:342.865200px;}
.y9c{bottom:345.438750px;}
.y177{bottom:346.894200px;}
.y14c{bottom:350.897100px;}
.y4b{bottom:351.217350px;}
.y86{bottom:355.939800px;}
.y71{bottom:359.391000px;}
.y1a0{bottom:361.272150px;}
.yd2{bottom:361.823100px;}
.y1cd{bottom:361.963200px;}
.y1e{bottom:363.677100px;}
.y9b{bottom:364.923750px;}
.yb6{bottom:365.624100px;}
.y176{bottom:365.629200px;}
.y1f6{bottom:365.851200px;}
.y14b{bottom:375.071100px;}
.y4a{bottom:375.391350px;}
.y19f{bottom:384.294150px;}
.y175{bottom:384.364200px;}
.y9a{bottom:384.408750px;}
.y1cc{bottom:385.039200px;}
.y85{bottom:386.035800px;}
.y70{bottom:386.823000px;}
.y1d{bottom:386.843100px;}
.yd1{bottom:386.987100px;}
.y1f5{bottom:388.837200px;}
.y49{bottom:399.565350px;}
.y174{bottom:403.099200px;}
.y99{bottom:403.893750px;}
.y19e{bottom:407.316150px;}
.yb5{bottom:407.501850px;}
.y1cb{bottom:408.115200px;}
.y1c{bottom:410.009100px;}
.yd0{bottom:412.151100px;}
.y6f{bottom:414.255000px;}
.y84{bottom:416.131800px;}
.y14a{bottom:416.255100px;}
.y173{bottom:421.834200px;}
.y98{bottom:423.378750px;}
.y48{bottom:423.739350px;}
.y1f4{bottom:428.833200px;}
.y19d{bottom:430.338150px;}
.y1ca{bottom:431.191200px;}
.y1b{bottom:433.175100px;}
.ycf{bottom:437.315100px;}
.y97{bottom:442.863750px;}
.y83{bottom:446.227800px;}
.yfb{bottom:447.837300px;}
.y47{bottom:447.913350px;}
.y1f3{bottom:451.819200px;}
.y19c{bottom:453.360150px;}
.y1c9{bottom:454.267200px;}
.y1a{bottom:456.341100px;}
.yfa{bottom:464.757300px;}
.y149{bottom:465.935100px;}
.y46{bottom:472.087350px;}
.y172{bottom:474.561600px;}
.y6e{bottom:475.704300px;}
.y82{bottom:476.323800px;}
.y19b{bottom:476.382150px;}
.y1c8{bottom:477.343200px;}
.yce{bottom:479.485500px;}
.y19{bottom:479.507100px;}
.y148{bottom:490.109100px;}
.y1f2{bottom:491.815200px;}
.y45{bottom:496.261350px;}
.y96{bottom:496.332900px;}
.y171{bottom:497.799600px;}
.y6d{bottom:498.639300px;}
.y19a{bottom:499.404150px;}
.y1c7{bottom:500.419200px;}
.y18{bottom:502.673100px;}
.y81{bottom:506.419800px;}
.yf9{bottom:507.349350px;}
.y116{bottom:513.089250px;}
.y147{bottom:514.283100px;}
.y1f1{bottom:514.801200px;}
.y95{bottom:520.326900px;}
.y44{bottom:520.435350px;}
.y170{bottom:521.037600px;}
.y6c{bottom:521.574300px;}
.y199{bottom:522.426150px;}
.y1c6{bottom:523.495200px;}
.y17{bottom:525.839100px;}
.yf8{bottom:530.263350px;}
.y80{bottom:536.515800px;}
.y146{bottom:538.457100px;}
.y16f{bottom:544.275600px;}
.y94{bottom:544.320900px;}
.y6b{bottom:544.509300px;}
.y43{bottom:544.609350px;}
.y198{bottom:545.448150px;}
.y1c5{bottom:546.571200px;}
.y16{bottom:549.005100px;}
.yf7{bottom:553.177350px;}
.y1f0{bottom:554.797200px;}
.y115{bottom:557.137200px;}
.y145{bottom:562.631100px;}
.y7f{bottom:566.611800px;}
.y16e{bottom:567.513600px;}
.y93{bottom:568.314900px;}
.y197{bottom:568.470150px;}
.y42{bottom:568.783350px;}
.y1c4{bottom:569.647200px;}
.yf6{bottom:576.091350px;}
.y1ef{bottom:577.783200px;}
.y114{bottom:581.491200px;}
.y144{bottom:586.805100px;}
.y16d{bottom:590.751600px;}
.y196{bottom:591.492150px;}
.y92{bottom:592.308900px;}
.y1c3{bottom:592.723200px;}
.y41{bottom:592.957350px;}
.y7e{bottom:596.707800px;}
.y15{bottom:597.683550px;}
.yf5{bottom:599.005350px;}
.y1ee{bottom:600.769200px;}
.y6a{bottom:601.507200px;}
.y113{bottom:605.845200px;}
.y143{bottom:610.979100px;}
.y16c{bottom:613.989600px;}
.y91{bottom:616.302900px;}
.y40{bottom:617.131350px;}
.yf4{bottom:621.919350px;}
.y1ed{bottom:623.755200px;}
.y12f{bottom:626.415450px;}
.y69{bottom:628.939200px;}
.y112{bottom:630.199200px;}
.y1c2{bottom:632.809200px;}
.y142{bottom:635.153100px;}
.y14{bottom:637.868100px;}
.y3f{bottom:641.305350px;}
.y7d{bottom:643.813800px;}
.yf3{bottom:644.833350px;}
.y1ec{bottom:646.741200px;}
.y195{bottom:648.506400px;}
.y111{bottom:654.553200px;}
.y68{bottom:656.371200px;}
.y90{bottom:657.298050px;}
.y13{bottom:661.034100px;}
.y3e{bottom:665.479350px;}
.y194{bottom:667.031400px;}
.yf2{bottom:667.747350px;}
.y12e{bottom:668.550450px;}
.y1eb{bottom:669.727200px;}
.y16b{bottom:671.237100px;}
.y141{bottom:676.332150px;}
.y110{bottom:678.907200px;}
.y1c1{bottom:681.391200px;}
.y67{bottom:683.803200px;}
.y12{bottom:684.200100px;}
.y193{bottom:685.556400px;}
.y3d{bottom:689.653350px;}
.y16a{bottom:689.972100px;}
.yf1{bottom:690.661350px;}
.y1ea{bottom:692.713200px;}
.y10f{bottom:703.261200px;}
.y192{bottom:704.081400px;}
.y1c0{bottom:704.467200px;}
.y140{bottom:706.306650px;}
.y11{bottom:707.366100px;}
.y169{bottom:708.707100px;}
.y66{bottom:711.235200px;}
.yf0{bottom:713.575350px;}
.y3c{bottom:713.827350px;}
.y191{bottom:722.606400px;}
.y13f{bottom:726.556650px;}
.y168{bottom:727.442100px;}
.y1bf{bottom:727.543200px;}
.y10e{bottom:727.615200px;}
.y10{bottom:730.532100px;}
.y1e9{bottom:732.709200px;}
.yef{bottom:736.489350px;}
.y3b{bottom:738.001350px;}
.y190{bottom:741.131400px;}
.y1be{bottom:750.619200px;}
.y10d{bottom:751.969200px;}
.yf{bottom:753.698100px;}
.y65{bottom:755.677200px;}
.y1e8{bottom:755.695200px;}
.yee{bottom:759.403350px;}
.y3a{bottom:762.175350px;}
.y13e{bottom:772.327200px;}
.y1bd{bottom:773.695200px;}
.y10c{bottom:776.323200px;}
.ye{bottom:776.864100px;}
.y1e7{bottom:778.681200px;}
.y167{bottom:780.150450px;}
.yed{bottom:782.317350px;}
.y39{bottom:786.349350px;}
.y18f{bottom:793.656300px;}
.y1bc{bottom:796.771200px;}
.yb4{bottom:797.748750px;}
.y13d{bottom:798.571200px;}
.yd{bottom:800.030100px;}
.y10b{bottom:800.677200px;}
.y1e6{bottom:801.667200px;}
.y166{bottom:803.388450px;}
.yec{bottom:805.231350px;}
.y64{bottom:808.615200px;}
.y38{bottom:810.523350px;}
.y18e{bottom:816.678300px;}
.y1bb{bottom:819.847200px;}
.yc{bottom:823.196100px;}
.y1e5{bottom:824.653200px;}
.y13c{bottom:824.815200px;}
.y10a{bottom:825.031200px;}
.y165{bottom:826.626450px;}
.yeb{bottom:828.145350px;}
.y37{bottom:834.697350px;}
.y63{bottom:836.047200px;}
.y18d{bottom:839.700300px;}
.yb3{bottom:842.100150px;}
.y1ba{bottom:842.923200px;}
.ycd{bottom:844.525050px;}
.yb{bottom:846.362100px;}
.y109{bottom:849.385200px;}
.y164{bottom:849.864450px;}
.y13b{bottom:851.059200px;}
.yea{bottom:851.059350px;}
.y36{bottom:858.871350px;}
.y18c{bottom:862.722300px;}
.y62{bottom:863.479200px;}
.y1e4{bottom:864.649200px;}
.y1b9{bottom:865.999200px;}
.yb2{bottom:866.976150px;}
.ya{bottom:869.528100px;}
.y163{bottom:873.102450px;}
.y108{bottom:873.739200px;}
.ye9{bottom:873.973350px;}
.y13a{bottom:877.303200px;}
.y35{bottom:883.045350px;}
.y18b{bottom:885.744300px;}
.y1b8{bottom:889.075200px;}
.ycc{bottom:889.183200px;}
.y61{bottom:890.911200px;}
.yb1{bottom:891.852150px;}
.y162{bottom:896.340450px;}
.ye8{bottom:896.887350px;}
.y107{bottom:898.093200px;}
.y121{bottom:899.308200px;}
.y139{bottom:903.547200px;}
.y34{bottom:907.219350px;}
.y18a{bottom:908.766300px;}
.y1b7{bottom:912.151200px;}
.y1e3{bottom:913.141200px;}
.ycb{bottom:914.347200px;}
.yb0{bottom:916.728150px;}
.y9{bottom:918.203700px;}
.y60{bottom:918.343200px;}
.y161{bottom:919.578450px;}
.ye7{bottom:919.801350px;}
.y106{bottom:922.447200px;}
.y138{bottom:929.791200px;}
.y33{bottom:931.393350px;}
.y189{bottom:931.788300px;}
.y1b6{bottom:935.227200px;}
.y1e2{bottom:936.127200px;}
.yca{bottom:939.511200px;}
.y8{bottom:941.369700px;}
.yaf{bottom:941.604150px;}
.ye6{bottom:942.715350px;}
.y160{bottom:942.816450px;}
.y120{bottom:943.561200px;}
.y5f{bottom:945.775200px;}
.y105{bottom:946.801200px;}
.y188{bottom:954.810300px;}
.y32{bottom:955.567350px;}
.y137{bottom:956.035200px;}
.y1b5{bottom:958.303200px;}
.y1e1{bottom:959.113200px;}
.yc9{bottom:964.675200px;}
.ye5{bottom:965.629350px;}
.y15f{bottom:966.054450px;}
.yae{bottom:966.480150px;}
.y11f{bottom:968.275200px;}
.y104{bottom:971.155200px;}
.y5e{bottom:973.207200px;}
.y187{bottom:977.832300px;}
.y31{bottom:979.741350px;}
.y1b4{bottom:981.379200px;}
.y1e0{bottom:982.099200px;}
.y136{bottom:982.279200px;}
.ye4{bottom:988.543350px;}
.y15e{bottom:989.292450px;}
.yc8{bottom:989.839200px;}
.y11e{bottom:992.989200px;}
.y103{bottom:995.509200px;}
.y5d{bottom:1000.639200px;}
.y30{bottom:1003.915350px;}
.y1b3{bottom:1004.455200px;}
.y1df{bottom:1005.085200px;}
.y135{bottom:1008.523200px;}
.ye3{bottom:1011.457350px;}
.y15d{bottom:1012.530450px;}
.yc7{bottom:1015.003200px;}
.y11d{bottom:1017.703200px;}
.y102{bottom:1019.863200px;}
.yad{bottom:1025.365200px;}
.y1b2{bottom:1027.531200px;}
.y5c{bottom:1028.071200px;}
.y2f{bottom:1028.089350px;}
.y7{bottom:1028.329200px;}
.ye2{bottom:1034.371350px;}
.y134{bottom:1034.767200px;}
.y186{bottom:1034.855400px;}
.y15c{bottom:1035.768450px;}
.yc6{bottom:1040.167200px;}
.y11c{bottom:1042.417200px;}
.y101{bottom:1044.217200px;}
.yac{bottom:1045.735200px;}
.y1b1{bottom:1050.607200px;}
.y1de{bottom:1051.057200px;}
.y2e{bottom:1052.263350px;}
.y6{bottom:1052.989200px;}
.y185{bottom:1053.380400px;}
.y5b{bottom:1055.503200px;}
.y12d{bottom:1055.957100px;}
.ye1{bottom:1057.285350px;}
.y133{bottom:1061.011200px;}
.yc5{bottom:1065.331200px;}
.yab{bottom:1066.105200px;}
.y11b{bottom:1067.131200px;}
.y100{bottom:1068.571200px;}
.y184{bottom:1071.905400px;}
.y1b0{bottom:1073.683200px;}
.y1dd{bottom:1074.043200px;}
.y2d{bottom:1076.437350px;}
.y5{bottom:1077.649200px;}
.ye0{bottom:1080.199350px;}
.y5a{bottom:1082.935200px;}
.yaa{bottom:1086.475200px;}
.y132{bottom:1087.255200px;}
.y183{bottom:1090.430400px;}
.yc4{bottom:1090.495200px;}
.y11a{bottom:1091.845200px;}
.yff{bottom:1092.925200px;}
.y15b{bottom:1093.015200px;}
.y1af{bottom:1096.759200px;}
.y1dc{bottom:1097.029200px;}
.y12c{bottom:1098.109200px;}
.y2c{bottom:1100.611350px;}
.ya9{bottom:1106.845200px;}
.y59{bottom:1110.367200px;}
.ydf{bottom:1111.627350px;}
.y15a{bottom:1111.750200px;}
.y131{bottom:1113.499200px;}
.yc3{bottom:1115.659200px;}
.y119{bottom:1116.559200px;}
.yfe{bottom:1117.279200px;}
.y1ae{bottom:1119.835200px;}
.y1db{bottom:1120.015200px;}
.y12b{bottom:1120.735200px;}
.y2b{bottom:1124.785350px;}
.ya8{bottom:1127.215200px;}
.y159{bottom:1130.485200px;}
.yde{bottom:1134.541350px;}
.y4{bottom:1136.341200px;}
.y58{bottom:1137.799200px;}
.y130{bottom:1139.743200px;}
.yc2{bottom:1140.823200px;}
.y118{bottom:1141.273200px;}
.yfd{bottom:1141.633200px;}
.y1ad{bottom:1142.911200px;}
.y182{bottom:1142.965200px;}
.y1da{bottom:1143.001200px;}
.y12a{bottom:1143.361200px;}
.ya7{bottom:1147.585200px;}
.y158{bottom:1149.220200px;}
.y2{bottom:1162.675350px;}
.y3{bottom:1163.998200px;}
.y2a{bottom:1165.969350px;}
.y57{bottom:1165.987200px;}
.y7c{bottom:1167.955200px;}
.h8{height:46.596000px;}
.ha{height:50.280000px;}
.hc{height:50.832000px;}
.h2{height:50.944286px;}
.h7{height:55.308000px;}
.h9{height:56.038714px;}
.h5{height:60.336000px;}
.h6{height:61.133143px;}
.hb{height:61.200000px;}
.h3{height:61.656000px;}
.h4{height:71.322000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x10{left:88.620300px;}
.x6{left:95.737950px;}
.x15{left:103.125150px;}
.xd{left:106.688100px;}
.x12{left:122.654850px;}
.x3{left:127.555350px;}
.x11{left:129.232350px;}
.x13{left:137.615100px;}
.xa{left:139.680450px;}
.x9{left:182.414550px;}
.xc{left:183.907050px;}
.xb{left:225.328950px;}
.x5{left:248.804400px;}
.x8{left:253.123650px;}
.x4{left:255.118050px;}
.x7{left:257.511300px;}
.xe{left:309.068100px;}
.xf{left:351.065100px;}
.x14{left:375.600150px;}
.x2{left:765.355800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536533pt;}
.ls5{letter-spacing:-1.600000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.960000pt;}
.ls3{letter-spacing:2.986667pt;}
.ws16{word-spacing:-15.168000pt;}
.ws4{word-spacing:-13.904000pt;}
.ws59{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.640000pt;}
.ws1{word-spacing:-11.733333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws0{word-spacing:-6.840533pt;}
.ws61{word-spacing:-3.136000pt;}
.ws50{word-spacing:-2.986667pt;}
.ws38{word-spacing:-2.816000pt;}
.ws68{word-spacing:-2.624000pt;}
.ws7a{word-spacing:-2.560000pt;}
.ws44{word-spacing:-2.496000pt;}
.ws5f{word-spacing:-2.432000pt;}
.ws74{word-spacing:-2.304000pt;}
.ws4e{word-spacing:-2.176000pt;}
.ws89{word-spacing:-1.984000pt;}
.ws28{word-spacing:-1.920000pt;}
.ws92{word-spacing:-1.760000pt;}
.ws4f{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.472000pt;}
.ws83{word-spacing:-1.440000pt;}
.ws6d{word-spacing:-1.408000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws3a{word-spacing:-1.344000pt;}
.ws11{word-spacing:-1.290667pt;}
.ws3b{word-spacing:-1.280000pt;}
.ws7d{word-spacing:-1.152000pt;}
.ws82{word-spacing:-1.120000pt;}
.ws75{word-spacing:-1.088000pt;}
.ws6c{word-spacing:-1.024000pt;}
.wsf{word-spacing:-0.997333pt;}
.ws39{word-spacing:-0.960000pt;}
.ws87{word-spacing:-0.896000pt;}
.ws12{word-spacing:-0.880000pt;}
.wsa0{word-spacing:-0.832000pt;}
.ws60{word-spacing:-0.768000pt;}
.ws78{word-spacing:-0.704000pt;}
.ws37{word-spacing:-0.693333pt;}
.ws34{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.576000pt;}
.ws14{word-spacing:-0.528000pt;}
.ws6e{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws3f{word-spacing:-0.384000pt;}
.ws2d{word-spacing:-0.320000pt;}
.ws69{word-spacing:-0.256000pt;}
.ws62{word-spacing:-0.192000pt;}
.ws29{word-spacing:-0.128000pt;}
.ws42{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.064000pt;}
.ws46{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws5b{word-spacing:0.256000pt;}
.ws85{word-spacing:0.266667pt;}
.ws9{word-spacing:0.293333pt;}
.ws64{word-spacing:0.320000pt;}
.ws91{word-spacing:0.373333pt;}
.ws6f{word-spacing:0.533333pt;}
.ws30{word-spacing:0.576000pt;}
.ws48{word-spacing:0.586667pt;}
.ws25{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.704000pt;}
.ws1d{word-spacing:0.768000pt;}
.ws84{word-spacing:0.800000pt;}
.ws2b{word-spacing:0.832000pt;}
.ws5c{word-spacing:0.896000pt;}
.ws93{word-spacing:0.906667pt;}
.ws10{word-spacing:0.997333pt;}
.ws15{word-spacing:1.013333pt;}
.ws67{word-spacing:1.024000pt;}
.ws21{word-spacing:1.088000pt;}
.ws27{word-spacing:1.152000pt;}
.ws6{word-spacing:1.173333pt;}
.ws1f{word-spacing:1.216000pt;}
.ws32{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.344000pt;}
.ws3c{word-spacing:1.408000pt;}
.ws41{word-spacing:1.472000pt;}
.ws18{word-spacing:1.536000pt;}
.ws3d{word-spacing:1.600000pt;}
.ws73{word-spacing:1.664000pt;}
.ws71{word-spacing:1.728000pt;}
.ws33{word-spacing:1.792000pt;}
.ws8c{word-spacing:1.813333pt;}
.ws24{word-spacing:1.856000pt;}
.ws8d{word-spacing:1.866667pt;}
.ws31{word-spacing:1.920000pt;}
.wse{word-spacing:1.994667pt;}
.ws99{word-spacing:2.048000pt;}
.ws58{word-spacing:2.080000pt;}
.wsc{word-spacing:2.170667pt;}
.ws2e{word-spacing:2.176000pt;}
.ws8b{word-spacing:2.186667pt;}
.ws88{word-spacing:2.304000pt;}
.ws65{word-spacing:2.432000pt;}
.ws6b{word-spacing:2.496000pt;}
.ws8e{word-spacing:2.613333pt;}
.ws2f{word-spacing:2.688000pt;}
.ws54{word-spacing:2.880000pt;}
.ws70{word-spacing:2.944000pt;}
.ws22{word-spacing:3.008000pt;}
.wsd{word-spacing:3.050667pt;}
.ws72{word-spacing:3.136000pt;}
.ws52{word-spacing:3.146667pt;}
.ws2c{word-spacing:3.200000pt;}
.ws20{word-spacing:3.328000pt;}
.ws1a{word-spacing:3.392000pt;}
.wsa{word-spacing:3.520000pt;}
.ws7{word-spacing:3.578667pt;}
.ws7f{word-spacing:3.584000pt;}
.ws94{word-spacing:3.626667pt;}
.ws26{word-spacing:3.648000pt;}
.ws97{word-spacing:3.712000pt;}
.ws57{word-spacing:3.733333pt;}
.ws86{word-spacing:3.776000pt;}
.ws6a{word-spacing:3.840000pt;}
.ws5a{word-spacing:3.904000pt;}
.ws5d{word-spacing:3.968000pt;}
.ws81{word-spacing:4.000000pt;}
.ws8f{word-spacing:4.032000pt;}
.ws3e{word-spacing:4.096000pt;}
.ws13{word-spacing:4.106667pt;}
.wsb{word-spacing:4.165333pt;}
.ws95{word-spacing:4.224000pt;}
.ws4c{word-spacing:4.266667pt;}
.ws35{word-spacing:4.288000pt;}
.ws9c{word-spacing:4.352000pt;}
.ws9a{word-spacing:4.416000pt;}
.ws47{word-spacing:4.480000pt;}
.ws1c{word-spacing:4.608000pt;}
.ws4d{word-spacing:4.672000pt;}
.ws63{word-spacing:4.800000pt;}
.ws4a{word-spacing:4.906667pt;}
.ws9b{word-spacing:5.056000pt;}
.ws49{word-spacing:5.226667pt;}
.ws36{word-spacing:5.248000pt;}
.ws77{word-spacing:5.312000pt;}
.ws40{word-spacing:5.440000pt;}
.ws56{word-spacing:5.568000pt;}
.ws51{word-spacing:5.653333pt;}
.ws79{word-spacing:5.824000pt;}
.ws43{word-spacing:5.952000pt;}
.ws8{word-spacing:5.984000pt;}
.ws45{word-spacing:6.144000pt;}
.ws98{word-spacing:6.208000pt;}
.ws9e{word-spacing:6.272000pt;}
.ws66{word-spacing:6.336000pt;}
.ws55{word-spacing:6.464000pt;}
.ws96{word-spacing:6.720000pt;}
.ws90{word-spacing:6.848000pt;}
.ws7e{word-spacing:6.912000pt;}
.ws17{word-spacing:7.040000pt;}
.ws8a{word-spacing:7.296000pt;}
.ws80{word-spacing:7.424000pt;}
.ws23{word-spacing:7.488000pt;}
.ws9f{word-spacing:7.552000pt;}
.ws19{word-spacing:7.680000pt;}
.ws76{word-spacing:7.872000pt;}
.ws9d{word-spacing:10.240000pt;}
._c{margin-left:-14.534400pt;}
._d{margin-left:-8.437333pt;}
._1{margin-left:-6.866133pt;}
._2{margin-left:-5.620267pt;}
._5{margin-left:-4.362880pt;}
._4{margin-left:-2.608000pt;}
._0{margin-left:-1.498667pt;}
._3{width:1.344000pt;}
._8{width:2.298667pt;}
._7{width:3.584000pt;}
._6{width:4.480000pt;}
._b{width:5.469867pt;}
._a{width:7.021867pt;}
._9{width:14.234667pt;}
.fs4{font-size:34.202667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.415333pt;}
.y200{bottom:75.521067pt;}
.y157{bottom:75.540533pt;}
.ya6{bottom:75.554400pt;}
.y1ac{bottom:75.562800pt;}
.y181{bottom:75.563733pt;}
.ydd{bottom:75.572533pt;}
.y29{bottom:75.587733pt;}
.yc1{bottom:75.590133pt;}
.y117{bottom:75.590400pt;}
.yfc{bottom:75.590533pt;}
.y1d9{bottom:75.601067pt;}
.y129{bottom:75.605200pt;}
.y7b{bottom:75.618667pt;}
.y8f{bottom:75.622933pt;}
.y56{bottom:75.825200pt;}
.y28{bottom:91.587733pt;}
.yc0{bottom:93.696800pt;}
.y1ff{bottom:95.953067pt;}
.y1ab{bottom:96.026800pt;}
.y1d8{bottom:96.113067pt;}
.y180{bottom:96.219733pt;}
.ya5{bottom:96.882400pt;}
.y156{bottom:97.028533pt;}
.y55{bottom:97.313200pt;}
.y128{bottom:97.573200pt;}
.ydc{bottom:97.940533pt;}
.y7a{bottom:100.002667pt;}
.y8e{bottom:102.374933pt;}
.y27{bottom:107.587733pt;}
.ybf{bottom:111.803467pt;}
.y1fe{bottom:116.385067pt;}
.y1aa{bottom:116.490800pt;}
.y1d7{bottom:116.625067pt;}
.y17f{bottom:116.875733pt;}
.ya4{bottom:118.210400pt;}
.y155{bottom:118.516533pt;}
.y54{bottom:118.801200pt;}
.y127{bottom:119.541200pt;}
.ydb{bottom:120.308533pt;}
.y26{bottom:123.587733pt;}
.y79{bottom:124.386667pt;}
.y8d{bottom:129.126933pt;}
.ybe{bottom:129.910133pt;}
.y1fd{bottom:136.817067pt;}
.y1a9{bottom:136.954800pt;}
.y1d6{bottom:137.137067pt;}
.y17e{bottom:137.531733pt;}
.ya3{bottom:139.538400pt;}
.y154{bottom:140.004533pt;}
.y53{bottom:140.289200pt;}
.y126{bottom:141.509200pt;}
.yda{bottom:142.676533pt;}
.y25{bottom:146.267733pt;}
.ybd{bottom:148.016800pt;}
.y78{bottom:148.770667pt;}
.y8c{bottom:155.878933pt;}
.y1a8{bottom:157.418800pt;}
.y1d5{bottom:157.649067pt;}
.y17d{bottom:158.187733pt;}
.ya2{bottom:160.866400pt;}
.y153{bottom:161.492533pt;}
.y52{bottom:161.777200pt;}
.y24{bottom:162.267733pt;}
.y125{bottom:163.477200pt;}
.yd9{bottom:165.044533pt;}
.ybc{bottom:166.123467pt;}
.y1fc{bottom:172.369067pt;}
.y77{bottom:173.154667pt;}
.y1a7{bottom:177.882800pt;}
.y1d4{bottom:178.161067pt;}
.y23{bottom:178.267733pt;}
.y17c{bottom:178.843733pt;}
.ya1{bottom:182.194400pt;}
.y8b{bottom:182.630933pt;}
.y152{bottom:182.980533pt;}
.y51{bottom:183.265200pt;}
.y124{bottom:185.445200pt;}
.yd8{bottom:187.412533pt;}
.y22{bottom:194.267733pt;}
.y76{bottom:197.538667pt;}
.y1a6{bottom:198.346800pt;}
.y1d3{bottom:198.673067pt;}
.y17b{bottom:199.499733pt;}
.ya0{bottom:203.522400pt;}
.y151{bottom:204.468533pt;}
.y50{bottom:204.753200pt;}
.y123{bottom:207.413200pt;}
.y1fb{bottom:207.921067pt;}
.y8a{bottom:209.382933pt;}
.yd7{bottom:209.780533pt;}
.y21{bottom:210.267733pt;}
.ybb{bottom:214.439200pt;}
.y1a5{bottom:218.810800pt;}
.y1d2{bottom:219.185067pt;}
.y17a{bottom:220.155733pt;}
.y75{bottom:221.922667pt;}
.y150{bottom:225.956533pt;}
.y4f{bottom:226.241200pt;}
.y1fa{bottom:228.353067pt;}
.yd6{bottom:232.148533pt;}
.y89{bottom:236.134933pt;}
.yba{bottom:236.551200pt;}
.y1a4{bottom:239.274800pt;}
.y1d1{bottom:239.697067pt;}
.y179{bottom:240.811733pt;}
.y122{bottom:244.501733pt;}
.y74{bottom:246.306667pt;}
.y14f{bottom:247.444533pt;}
.y4e{bottom:247.729200pt;}
.y1f9{bottom:248.785067pt;}
.yd5{bottom:254.516533pt;}
.y9f{bottom:255.096667pt;}
.yb9{bottom:258.663200pt;}
.y1a3{bottom:259.738800pt;}
.y1d0{bottom:260.209067pt;}
.y88{bottom:262.886933pt;}
.y20{bottom:266.963200pt;}
.y14e{bottom:268.932533pt;}
.y1f8{bottom:269.217067pt;}
.y4d{bottom:269.217200pt;}
.y73{bottom:270.690667pt;}
.y9e{bottom:272.416667pt;}
.yd4{bottom:276.884533pt;}
.y1a2{bottom:280.202800pt;}
.y1cf{bottom:280.721067pt;}
.yb8{bottom:280.775200pt;}
.y87{bottom:289.638933pt;}
.y9d{bottom:289.736667pt;}
.y14d{bottom:290.420533pt;}
.y4c{bottom:290.705200pt;}
.y178{bottom:291.697067pt;}
.y72{bottom:295.074667pt;}
.yd3{bottom:299.252533pt;}
.y1a1{bottom:300.666800pt;}
.y1ce{bottom:301.233067pt;}
.y1f{bottom:302.676533pt;}
.yb7{bottom:302.887200pt;}
.y1f7{bottom:304.769067pt;}
.y9c{bottom:307.056667pt;}
.y177{bottom:308.350400pt;}
.y14c{bottom:311.908533pt;}
.y4b{bottom:312.193200pt;}
.y86{bottom:316.390933pt;}
.y71{bottom:319.458667pt;}
.y1a0{bottom:321.130800pt;}
.yd2{bottom:321.620533pt;}
.y1cd{bottom:321.745067pt;}
.y1e{bottom:323.268533pt;}
.y9b{bottom:324.376667pt;}
.yb6{bottom:324.999200pt;}
.y176{bottom:325.003733pt;}
.y1f6{bottom:325.201067pt;}
.y14b{bottom:333.396533pt;}
.y4a{bottom:333.681200pt;}
.y19f{bottom:341.594800pt;}
.y175{bottom:341.657067pt;}
.y9a{bottom:341.696667pt;}
.y1cc{bottom:342.257067pt;}
.y85{bottom:343.142933pt;}
.y70{bottom:343.842667pt;}
.y1d{bottom:343.860533pt;}
.yd1{bottom:343.988533pt;}
.y1f5{bottom:345.633067pt;}
.y49{bottom:355.169200pt;}
.y174{bottom:358.310400pt;}
.y99{bottom:359.016667pt;}
.y19e{bottom:362.058800pt;}
.yb5{bottom:362.223867pt;}
.y1cb{bottom:362.769067pt;}
.y1c{bottom:364.452533pt;}
.yd0{bottom:366.356533pt;}
.y6f{bottom:368.226667pt;}
.y84{bottom:369.894933pt;}
.y14a{bottom:370.004533pt;}
.y173{bottom:374.963733pt;}
.y98{bottom:376.336667pt;}
.y48{bottom:376.657200pt;}
.y1f4{bottom:381.185067pt;}
.y19d{bottom:382.522800pt;}
.y1ca{bottom:383.281067pt;}
.y1b{bottom:385.044533pt;}
.ycf{bottom:388.724533pt;}
.y97{bottom:393.656667pt;}
.y83{bottom:396.646933pt;}
.yfb{bottom:398.077600pt;}
.y47{bottom:398.145200pt;}
.y1f3{bottom:401.617067pt;}
.y19c{bottom:402.986800pt;}
.y1c9{bottom:403.793067pt;}
.y1a{bottom:405.636533pt;}
.yfa{bottom:413.117600pt;}
.y149{bottom:414.164533pt;}
.y46{bottom:419.633200pt;}
.y172{bottom:421.832533pt;}
.y6e{bottom:422.848267pt;}
.y82{bottom:423.398933pt;}
.y19b{bottom:423.450800pt;}
.y1c8{bottom:424.305067pt;}
.yce{bottom:426.209333pt;}
.y19{bottom:426.228533pt;}
.y148{bottom:435.652533pt;}
.y1f2{bottom:437.169067pt;}
.y45{bottom:441.121200pt;}
.y96{bottom:441.184800pt;}
.y171{bottom:442.488533pt;}
.y6d{bottom:443.234933pt;}
.y19a{bottom:443.914800pt;}
.y1c7{bottom:444.817067pt;}
.y18{bottom:446.820533pt;}
.y81{bottom:450.150933pt;}
.yf9{bottom:450.977200pt;}
.y116{bottom:456.079333pt;}
.y147{bottom:457.140533pt;}
.y1f1{bottom:457.601067pt;}
.y95{bottom:462.512800pt;}
.y44{bottom:462.609200pt;}
.y170{bottom:463.144533pt;}
.y6c{bottom:463.621600pt;}
.y199{bottom:464.378800pt;}
.y1c6{bottom:465.329067pt;}
.y17{bottom:467.412533pt;}
.yf8{bottom:471.345200pt;}
.y80{bottom:476.902933pt;}
.y146{bottom:478.628533pt;}
.y16f{bottom:483.800533pt;}
.y94{bottom:483.840800pt;}
.y6b{bottom:484.008267pt;}
.y43{bottom:484.097200pt;}
.y198{bottom:484.842800pt;}
.y1c5{bottom:485.841067pt;}
.y16{bottom:488.004533pt;}
.yf7{bottom:491.713200pt;}
.y1f0{bottom:493.153067pt;}
.y115{bottom:495.233067pt;}
.y145{bottom:500.116533pt;}
.y7f{bottom:503.654933pt;}
.y16e{bottom:504.456533pt;}
.y93{bottom:505.168800pt;}
.y197{bottom:505.306800pt;}
.y42{bottom:505.585200pt;}
.y1c4{bottom:506.353067pt;}
.yf6{bottom:512.081200pt;}
.y1ef{bottom:513.585067pt;}
.y114{bottom:516.881067pt;}
.y144{bottom:521.604533pt;}
.y16d{bottom:525.112533pt;}
.y196{bottom:525.770800pt;}
.y92{bottom:526.496800pt;}
.y1c3{bottom:526.865067pt;}
.y41{bottom:527.073200pt;}
.y7e{bottom:530.406933pt;}
.y15{bottom:531.274267pt;}
.yf5{bottom:532.449200pt;}
.y1ee{bottom:534.017067pt;}
.y6a{bottom:534.673067pt;}
.y113{bottom:538.529067pt;}
.y143{bottom:543.092533pt;}
.y16c{bottom:545.768533pt;}
.y91{bottom:547.824800pt;}
.y40{bottom:548.561200pt;}
.yf4{bottom:552.817200pt;}
.y1ed{bottom:554.449067pt;}
.y12f{bottom:556.813733pt;}
.y69{bottom:559.057067pt;}
.y112{bottom:560.177067pt;}
.y1c2{bottom:562.497067pt;}
.y142{bottom:564.580533pt;}
.y14{bottom:566.993867pt;}
.y3f{bottom:570.049200pt;}
.y7d{bottom:572.278933pt;}
.yf3{bottom:573.185200pt;}
.y1ec{bottom:574.881067pt;}
.y195{bottom:576.450133pt;}
.y111{bottom:581.825067pt;}
.y68{bottom:583.441067pt;}
.y90{bottom:584.264933pt;}
.y13{bottom:587.585867pt;}
.y3e{bottom:591.537200pt;}
.y194{bottom:592.916800pt;}
.yf2{bottom:593.553200pt;}
.y12e{bottom:594.267067pt;}
.y1eb{bottom:595.313067pt;}
.y16b{bottom:596.655200pt;}
.y141{bottom:601.184133pt;}
.y110{bottom:603.473067pt;}
.y1c1{bottom:605.681067pt;}
.y67{bottom:607.825067pt;}
.y12{bottom:608.177867pt;}
.y193{bottom:609.383467pt;}
.y3d{bottom:613.025200pt;}
.y16a{bottom:613.308533pt;}
.yf1{bottom:613.921200pt;}
.y1ea{bottom:615.745067pt;}
.y10f{bottom:625.121067pt;}
.y192{bottom:625.850133pt;}
.y1c0{bottom:626.193067pt;}
.y140{bottom:627.828133pt;}
.y11{bottom:628.769867pt;}
.y169{bottom:629.961867pt;}
.y66{bottom:632.209067pt;}
.yf0{bottom:634.289200pt;}
.y3c{bottom:634.513200pt;}
.y191{bottom:642.316800pt;}
.y13f{bottom:645.828133pt;}
.y168{bottom:646.615200pt;}
.y1bf{bottom:646.705067pt;}
.y10e{bottom:646.769067pt;}
.y10{bottom:649.361867pt;}
.y1e9{bottom:651.297067pt;}
.yef{bottom:654.657200pt;}
.y3b{bottom:656.001200pt;}
.y190{bottom:658.783467pt;}
.y1be{bottom:667.217067pt;}
.y10d{bottom:668.417067pt;}
.yf{bottom:669.953867pt;}
.y65{bottom:671.713067pt;}
.y1e8{bottom:671.729067pt;}
.yee{bottom:675.025200pt;}
.y3a{bottom:677.489200pt;}
.y13e{bottom:686.513067pt;}
.y1bd{bottom:687.729067pt;}
.y10c{bottom:690.065067pt;}
.ye{bottom:690.545867pt;}
.y1e7{bottom:692.161067pt;}
.y167{bottom:693.467067pt;}
.yed{bottom:695.393200pt;}
.y39{bottom:698.977200pt;}
.y18f{bottom:705.472267pt;}
.y1bc{bottom:708.241067pt;}
.yb4{bottom:709.110000pt;}
.y13d{bottom:709.841067pt;}
.yd{bottom:711.137867pt;}
.y10b{bottom:711.713067pt;}
.y1e6{bottom:712.593067pt;}
.y166{bottom:714.123067pt;}
.yec{bottom:715.761200pt;}
.y64{bottom:718.769067pt;}
.y38{bottom:720.465200pt;}
.y18e{bottom:725.936267pt;}
.y1bb{bottom:728.753067pt;}
.yc{bottom:731.729867pt;}
.y1e5{bottom:733.025067pt;}
.y13c{bottom:733.169067pt;}
.y10a{bottom:733.361067pt;}
.y165{bottom:734.779067pt;}
.yeb{bottom:736.129200pt;}
.y37{bottom:741.953200pt;}
.y63{bottom:743.153067pt;}
.y18d{bottom:746.400267pt;}
.yb3{bottom:748.533467pt;}
.y1ba{bottom:749.265067pt;}
.ycd{bottom:750.688933pt;}
.yb{bottom:752.321867pt;}
.y109{bottom:755.009067pt;}
.y164{bottom:755.435067pt;}
.y13b{bottom:756.497067pt;}
.yea{bottom:756.497200pt;}
.y36{bottom:763.441200pt;}
.y18c{bottom:766.864267pt;}
.y62{bottom:767.537067pt;}
.y1e4{bottom:768.577067pt;}
.y1b9{bottom:769.777067pt;}
.yb2{bottom:770.645467pt;}
.ya{bottom:772.913867pt;}
.y163{bottom:776.091067pt;}
.y108{bottom:776.657067pt;}
.ye9{bottom:776.865200pt;}
.y13a{bottom:779.825067pt;}
.y35{bottom:784.929200pt;}
.y18b{bottom:787.328267pt;}
.y1b8{bottom:790.289067pt;}
.ycc{bottom:790.385067pt;}
.y61{bottom:791.921067pt;}
.yb1{bottom:792.757467pt;}
.y162{bottom:796.747067pt;}
.ye8{bottom:797.233200pt;}
.y107{bottom:798.305067pt;}
.y121{bottom:799.385067pt;}
.y139{bottom:803.153067pt;}
.y34{bottom:806.417200pt;}
.y18a{bottom:807.792267pt;}
.y1b7{bottom:810.801067pt;}
.y1e3{bottom:811.681067pt;}
.ycb{bottom:812.753067pt;}
.yb0{bottom:814.869467pt;}
.y9{bottom:816.181067pt;}
.y60{bottom:816.305067pt;}
.y161{bottom:817.403067pt;}
.ye7{bottom:817.601200pt;}
.y106{bottom:819.953067pt;}
.y138{bottom:826.481067pt;}
.y33{bottom:827.905200pt;}
.y189{bottom:828.256267pt;}
.y1b6{bottom:831.313067pt;}
.y1e2{bottom:832.113067pt;}
.yca{bottom:835.121067pt;}
.y8{bottom:836.773067pt;}
.yaf{bottom:836.981467pt;}
.ye6{bottom:837.969200pt;}
.y160{bottom:838.059067pt;}
.y120{bottom:838.721067pt;}
.y5f{bottom:840.689067pt;}
.y105{bottom:841.601067pt;}
.y188{bottom:848.720267pt;}
.y32{bottom:849.393200pt;}
.y137{bottom:849.809067pt;}
.y1b5{bottom:851.825067pt;}
.y1e1{bottom:852.545067pt;}
.yc9{bottom:857.489067pt;}
.ye5{bottom:858.337200pt;}
.y15f{bottom:858.715067pt;}
.yae{bottom:859.093467pt;}
.y11f{bottom:860.689067pt;}
.y104{bottom:863.249067pt;}
.y5e{bottom:865.073067pt;}
.y187{bottom:869.184267pt;}
.y31{bottom:870.881200pt;}
.y1b4{bottom:872.337067pt;}
.y1e0{bottom:872.977067pt;}
.y136{bottom:873.137067pt;}
.ye4{bottom:878.705200pt;}
.y15e{bottom:879.371067pt;}
.yc8{bottom:879.857067pt;}
.y11e{bottom:882.657067pt;}
.y103{bottom:884.897067pt;}
.y5d{bottom:889.457067pt;}
.y30{bottom:892.369200pt;}
.y1b3{bottom:892.849067pt;}
.y1df{bottom:893.409067pt;}
.y135{bottom:896.465067pt;}
.ye3{bottom:899.073200pt;}
.y15d{bottom:900.027067pt;}
.yc7{bottom:902.225067pt;}
.y11d{bottom:904.625067pt;}
.y102{bottom:906.545067pt;}
.yad{bottom:911.435733pt;}
.y1b2{bottom:913.361067pt;}
.y5c{bottom:913.841067pt;}
.y2f{bottom:913.857200pt;}
.y7{bottom:914.070400pt;}
.ye2{bottom:919.441200pt;}
.y134{bottom:919.793067pt;}
.y186{bottom:919.871467pt;}
.y15c{bottom:920.683067pt;}
.yc6{bottom:924.593067pt;}
.y11c{bottom:926.593067pt;}
.y101{bottom:928.193067pt;}
.yac{bottom:929.542400pt;}
.y1b1{bottom:933.873067pt;}
.y1de{bottom:934.273067pt;}
.y2e{bottom:935.345200pt;}
.y6{bottom:935.990400pt;}
.y185{bottom:936.338133pt;}
.y5b{bottom:938.225067pt;}
.y12d{bottom:938.628533pt;}
.ye1{bottom:939.809200pt;}
.y133{bottom:943.121067pt;}
.yc5{bottom:946.961067pt;}
.yab{bottom:947.649067pt;}
.y11b{bottom:948.561067pt;}
.y100{bottom:949.841067pt;}
.y184{bottom:952.804800pt;}
.y1b0{bottom:954.385067pt;}
.y1dd{bottom:954.705067pt;}
.y2d{bottom:956.833200pt;}
.y5{bottom:957.910400pt;}
.ye0{bottom:960.177200pt;}
.y5a{bottom:962.609067pt;}
.yaa{bottom:965.755733pt;}
.y132{bottom:966.449067pt;}
.y183{bottom:969.271467pt;}
.yc4{bottom:969.329067pt;}
.y11a{bottom:970.529067pt;}
.yff{bottom:971.489067pt;}
.y15b{bottom:971.569067pt;}
.y1af{bottom:974.897067pt;}
.y1dc{bottom:975.137067pt;}
.y12c{bottom:976.097067pt;}
.y2c{bottom:978.321200pt;}
.ya9{bottom:983.862400pt;}
.y59{bottom:986.993067pt;}
.ydf{bottom:988.113200pt;}
.y15a{bottom:988.222400pt;}
.y131{bottom:989.777067pt;}
.yc3{bottom:991.697067pt;}
.y119{bottom:992.497067pt;}
.yfe{bottom:993.137067pt;}
.y1ae{bottom:995.409067pt;}
.y1db{bottom:995.569067pt;}
.y12b{bottom:996.209067pt;}
.y2b{bottom:999.809200pt;}
.ya8{bottom:1001.969067pt;}
.y159{bottom:1004.875733pt;}
.yde{bottom:1008.481200pt;}
.y4{bottom:1010.081067pt;}
.y58{bottom:1011.377067pt;}
.y130{bottom:1013.105067pt;}
.yc2{bottom:1014.065067pt;}
.y118{bottom:1014.465067pt;}
.yfd{bottom:1014.785067pt;}
.y1ad{bottom:1015.921067pt;}
.y182{bottom:1015.969067pt;}
.y1da{bottom:1016.001067pt;}
.y12a{bottom:1016.321067pt;}
.ya7{bottom:1020.075733pt;}
.y158{bottom:1021.529067pt;}
.y2{bottom:1033.489200pt;}
.y3{bottom:1034.665067pt;}
.y2a{bottom:1036.417200pt;}
.y57{bottom:1036.433067pt;}
.y7c{bottom:1038.182400pt;}
.h8{height:41.418667pt;}
.ha{height:44.693333pt;}
.hc{height:45.184000pt;}
.h2{height:45.283810pt;}
.h7{height:49.162667pt;}
.h9{height:49.812190pt;}
.h5{height:53.632000pt;}
.h6{height:54.340571pt;}
.hb{height:54.400000pt;}
.h3{height:54.805333pt;}
.h4{height:63.397333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x10{left:78.773600pt;}
.x6{left:85.100400pt;}
.x15{left:91.666800pt;}
.xd{left:94.833867pt;}
.x12{left:109.026533pt;}
.x3{left:113.382533pt;}
.x11{left:114.873200pt;}
.x13{left:122.324533pt;}
.xa{left:124.160400pt;}
.x9{left:162.146267pt;}
.xc{left:163.472933pt;}
.xb{left:200.292400pt;}
.x5{left:221.159467pt;}
.x8{left:224.998800pt;}
.x4{left:226.771600pt;}
.x7{left:228.898933pt;}
.xe{left:274.727200pt;}
.xf{left:312.057867pt;}
.x14{left:333.866800pt;}
.x2{left:680.316267pt;}
}




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