
    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_41ad86655c6a5fad28a9834c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_8d8a60da3f620ae2b733e1a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_84e3edd24fb4b2c182f01157.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_520c3737723e6cd985440d61.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_c320e04deaca424df35ffd26.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_897c8c45a5755be36f222b71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961000;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_2d1fa45cc993403b4986889d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:21.978000px;}
.lsb{letter-spacing:-2.442000px;}
.ls5{letter-spacing:-2.160000px;}
.ls8{letter-spacing:-1.998000px;}
.ls7{letter-spacing:-1.423686px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.600000px;}
.lsa{letter-spacing:0.918000px;}
.ls9{letter-spacing:1.054200px;}
.ls1{letter-spacing:1.890000px;}
.ls3{letter-spacing:2.100000px;}
.lsd{letter-spacing:2.310000px;}
.ls0{letter-spacing:2.940000px;}
.lsc{letter-spacing:6.072000px;}
.ls6{letter-spacing:9.213600px;}
.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;}
}
.ws12{word-spacing:-16.500000px;}
.ws66{word-spacing:-15.000000px;}
.ws8f{word-spacing:-14.058000px;}
.ws13{word-spacing:-13.500000px;}
.ws2b{word-spacing:-11.502000px;}
.wsa{word-spacing:-9.619500px;}
.ws9{word-spacing:-8.745000px;}
.ws2a{word-spacing:-8.195814px;}
.wsba{word-spacing:-3.696000px;}
.ws17{word-spacing:-3.234000px;}
.ws47{word-spacing:-3.168000px;}
.wsa6{word-spacing:-3.102000px;}
.ws57{word-spacing:-3.036000px;}
.ws9e{word-spacing:-2.772000px;}
.ws42{word-spacing:-2.538000px;}
.ws61{word-spacing:-2.520000px;}
.ws18{word-spacing:-2.442000px;}
.ws7a{word-spacing:-2.430000px;}
.ws98{word-spacing:-2.310000px;}
.ws5e{word-spacing:-2.280000px;}
.wsa7{word-spacing:-2.178000px;}
.ws70{word-spacing:-2.160000px;}
.wsb{word-spacing:-2.100000px;}
.ws28{word-spacing:-1.944000px;}
.ws2{word-spacing:-1.890000px;}
.ws7b{word-spacing:-1.782000px;}
.ws79{word-spacing:-1.728000px;}
.wsf{word-spacing:-1.650000px;}
.ws71{word-spacing:-1.620000px;}
.ws5f{word-spacing:-1.584000px;}
.ws65{word-spacing:-1.512000px;}
.ws5b{word-spacing:-1.458000px;}
.ws96{word-spacing:-1.452000px;}
.ws1{word-spacing:-1.428000px;}
.ws6{word-spacing:-1.404000px;}
.ws34{word-spacing:-1.386000px;}
.ws38{word-spacing:-1.380000px;}
.ws43{word-spacing:-1.350000px;}
.ws8c{word-spacing:-1.188000px;}
.wsb7{word-spacing:-1.056000px;}
.ws26{word-spacing:-1.026000px;}
.ws56{word-spacing:-0.990000px;}
.ws8{word-spacing:-0.972000px;}
.wsae{word-spacing:-0.924000px;}
.ws6a{word-spacing:-0.900000px;}
.ws5a{word-spacing:-0.864000px;}
.ws60{word-spacing:-0.858000px;}
.ws62{word-spacing:-0.792000px;}
.ws97{word-spacing:-0.726000px;}
.ws6b{word-spacing:-0.660000px;}
.wsc{word-spacing:-0.600000px;}
.ws27{word-spacing:-0.594000px;}
.ws5{word-spacing:-0.432000px;}
.ws80{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.132000px;}
.ws36{word-spacing:-0.108000px;}
.ws3c{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws75{word-spacing:0.054000px;}
.ws54{word-spacing:0.060000px;}
.ws16{word-spacing:0.132000px;}
.ws50{word-spacing:0.162000px;}
.ws21{word-spacing:0.216000px;}
.ws83{word-spacing:0.264000px;}
.ws86{word-spacing:0.270000px;}
.ws44{word-spacing:0.300000px;}
.ws37{word-spacing:0.360000px;}
.ws23{word-spacing:0.432000px;}
.ws58{word-spacing:0.540000px;}
.ws45{word-spacing:0.594000px;}
.ws7d{word-spacing:0.600000px;}
.ws3{word-spacing:0.648000px;}
.ws7e{word-spacing:0.660000px;}
.ws64{word-spacing:0.756000px;}
.wsb0{word-spacing:0.792000px;}
.ws53{word-spacing:0.840000px;}
.ws8a{word-spacing:0.918000px;}
.ws1a{word-spacing:0.924000px;}
.ws4d{word-spacing:0.972000px;}
.wsa4{word-spacing:0.990000px;}
.ws77{word-spacing:1.026000px;}
.wse{word-spacing:1.122000px;}
.ws25{word-spacing:1.188000px;}
.ws90{word-spacing:1.260000px;}
.ws39{word-spacing:1.320000px;}
.ws52{word-spacing:1.350000px;}
.ws8b{word-spacing:1.386000px;}
.ws2f{word-spacing:1.452000px;}
.ws19{word-spacing:1.518000px;}
.wsa8{word-spacing:1.584000px;}
.ws33{word-spacing:1.650000px;}
.ws92{word-spacing:1.716000px;}
.ws5c{word-spacing:1.728000px;}
.ws3e{word-spacing:1.782000px;}
.ws93{word-spacing:1.914000px;}
.ws4c{word-spacing:1.998000px;}
.ws3b{word-spacing:2.046000px;}
.ws6f{word-spacing:2.052000px;}
.wsb6{word-spacing:2.112000px;}
.wsd{word-spacing:2.160000px;}
.ws4b{word-spacing:2.178000px;}
.ws31{word-spacing:2.268000px;}
.ws20{word-spacing:2.322000px;}
.ws29{word-spacing:2.376000px;}
.ws48{word-spacing:2.640000px;}
.ws46{word-spacing:2.706000px;}
.ws6d{word-spacing:2.838000px;}
.ws88{word-spacing:2.862000px;}
.wsb3{word-spacing:2.904000px;}
.ws41{word-spacing:2.970000px;}
.ws87{word-spacing:3.078000px;}
.ws9d{word-spacing:3.102000px;}
.ws5d{word-spacing:3.120000px;}
.ws76{word-spacing:3.132000px;}
.ws10{word-spacing:3.234000px;}
.ws74{word-spacing:3.240000px;}
.wsa3{word-spacing:3.300000px;}
.ws24{word-spacing:3.402000px;}
.ws51{word-spacing:3.510000px;}
.wsad{word-spacing:3.630000px;}
.ws72{word-spacing:3.672000px;}
.wsb9{word-spacing:3.696000px;}
.ws85{word-spacing:3.726000px;}
.ws55{word-spacing:3.762000px;}
.ws84{word-spacing:3.780000px;}
.ws4f{word-spacing:3.942000px;}
.wsb1{word-spacing:3.960000px;}
.wsaf{word-spacing:4.026000px;}
.ws78{word-spacing:4.104000px;}
.ws73{word-spacing:4.212000px;}
.wsb2{word-spacing:4.290000px;}
.wsa2{word-spacing:4.356000px;}
.ws1e{word-spacing:4.374000px;}
.ws30{word-spacing:4.422000px;}
.ws4{word-spacing:4.428000px;}
.ws3a{word-spacing:4.488000px;}
.ws63{word-spacing:4.590000px;}
.wsa9{word-spacing:4.620000px;}
.wsb4{word-spacing:4.686000px;}
.ws81{word-spacing:4.800000px;}
.wsa0{word-spacing:4.818000px;}
.ws8e{word-spacing:5.022000px;}
.ws40{word-spacing:5.076000px;}
.ws68{word-spacing:5.082000px;}
.ws1c{word-spacing:5.117574px;}
.wsab{word-spacing:5.148000px;}
.ws82{word-spacing:5.220000px;}
.ws99{word-spacing:5.346000px;}
.wsaa{word-spacing:5.478000px;}
.ws7{word-spacing:5.562000px;}
.ws35{word-spacing:5.778000px;}
.ws2d{word-spacing:5.874000px;}
.ws7c{word-spacing:5.940000px;}
.ws4a{word-spacing:6.006000px;}
.ws9f{word-spacing:6.072000px;}
.ws49{word-spacing:6.204000px;}
.ws32{word-spacing:6.210000px;}
.ws91{word-spacing:6.360000px;}
.ws3f{word-spacing:6.372000px;}
.ws3d{word-spacing:6.534000px;}
.ws1f{word-spacing:6.642000px;}
.ws89{word-spacing:6.696000px;}
.wsbb{word-spacing:6.930000px;}
.ws69{word-spacing:6.960000px;}
.ws59{word-spacing:7.020000px;}
.ws2e{word-spacing:7.458000px;}
.ws9c{word-spacing:7.524000px;}
.ws8d{word-spacing:7.560000px;}
.ws94{word-spacing:7.740000px;}
.ws14{word-spacing:7.788000px;}
.ws4e{word-spacing:7.884000px;}
.wsa5{word-spacing:7.986000px;}
.ws1b{word-spacing:8.052000px;}
.ws7f{word-spacing:8.640000px;}
.ws1d{word-spacing:8.778000px;}
.ws6e{word-spacing:8.802000px;}
.ws95{word-spacing:8.820000px;}
.ws67{word-spacing:8.844000px;}
.ws9b{word-spacing:9.174000px;}
.ws2c{word-spacing:9.240000px;}
.wsa1{word-spacing:9.306000px;}
.ws6c{word-spacing:9.372000px;}
.wsac{word-spacing:11.880000px;}
.wsb5{word-spacing:12.474000px;}
.ws9a{word-spacing:14.982000px;}
.wsb8{word-spacing:20.196000px;}
.ws22{word-spacing:65.070000px;}
._d{margin-left:-2044.958400px;}
._14{margin-left:-64.638000px;}
._f{margin-left:-9.426000px;}
._e{margin-left:-8.281200px;}
._4{margin-left:-7.004400px;}
._b{margin-left:-5.968800px;}
._3{margin-left:-4.402800px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-2.059200px;}
._0{margin-left:-1.003200px;}
._9{width:1.857600px;}
._8{width:2.862000px;}
._a{width:3.952800px;}
._7{width:5.011200px;}
._6{width:6.944400px;}
._5{width:7.954200px;}
._12{width:8.955600px;}
._13{width:10.498800px;}
._1b{width:11.654400px;}
._1d{width:13.188000px;}
._1c{width:14.317200px;}
._1a{width:17.926200px;}
._1f{width:19.507200px;}
._1e{width:20.785800px;}
._18{width:29.268000px;}
._19{width:30.510000px;}
._17{width:33.480000px;}
._15{width:38.070000px;}
._10{width:65.070000px;}
._11{width:723.727200px;}
._16{width:2077.102800px;}
._c{width:2094.382800px;}
.fc5{color:rgb(4,6,6);}
.fc2{color:rgb(26,26,27);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc4{color:rgb(238,37,43);}
.fc0{color:rgb(28,29,30);}
.fs5{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.478000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:9.000000px;}
.y2{bottom:77.782200px;}
.y27{bottom:81.325500px;}
.y1{bottom:89.782200px;}
.y26{bottom:93.325500px;}
.y140{bottom:139.925100px;}
.y4a{bottom:139.925250px;}
.y196{bottom:140.988150px;}
.y1c6{bottom:143.035050px;}
.y23{bottom:145.639500px;}
.y1cc{bottom:152.735100px;}
.y13f{bottom:153.425100px;}
.y49{bottom:153.425250px;}
.y195{bottom:154.488150px;}
.y22{bottom:161.839500px;}
.y1c5{bottom:162.835050px;}
.y13e{bottom:166.925100px;}
.y48{bottom:166.925250px;}
.y194{bottom:167.988150px;}
.y1cb{bottom:172.535100px;}
.y21{bottom:178.039500px;}
.y13d{bottom:180.425100px;}
.y47{bottom:180.425250px;}
.y193{bottom:181.488150px;}
.y1c4{bottom:182.635050px;}
.y1ca{bottom:192.335100px;}
.y13c{bottom:193.925100px;}
.y6c{bottom:193.925250px;}
.y192{bottom:194.988150px;}
.y10c{bottom:195.080100px;}
.y1c3{bottom:202.435050px;}
.y13b{bottom:207.425100px;}
.y8f{bottom:207.425250px;}
.y191{bottom:208.488150px;}
.y1c9{bottom:212.135100px;}
.y10b{bottom:214.880100px;}
.y20{bottom:215.502000px;}
.y1a1{bottom:220.483950px;}
.y13a{bottom:220.925100px;}
.y8e{bottom:220.925250px;}
.yd0{bottom:221.007600px;}
.y190{bottom:221.988150px;}
.y1c2{bottom:222.235050px;}
.y1f{bottom:231.702000px;}
.y1c8{bottom:231.935100px;}
.y139{bottom:234.425100px;}
.y8d{bottom:234.425250px;}
.y10a{bottom:234.680100px;}
.y18f{bottom:235.488150px;}
.y46{bottom:239.636850px;}
.y1a0{bottom:240.283950px;}
.ycf{bottom:240.807600px;}
.y1c1{bottom:242.035050px;}
.y1e{bottom:247.902000px;}
.y138{bottom:247.925100px;}
.y8c{bottom:247.925250px;}
.y18e{bottom:248.988150px;}
.y1c7{bottom:251.735100px;}
.y109{bottom:254.480100px;}
.y45{bottom:259.436850px;}
.y19f{bottom:260.083950px;}
.yce{bottom:260.607600px;}
.y137{bottom:261.425100px;}
.y8b{bottom:261.425250px;}
.y1c0{bottom:261.835050px;}
.y18d{bottom:262.488150px;}
.y1d{bottom:264.102000px;}
.y1e8{bottom:271.519050px;}
.y6b{bottom:271.535100px;}
.y108{bottom:274.280100px;}
.y136{bottom:274.925100px;}
.y8a{bottom:274.925250px;}
.y18c{bottom:275.988150px;}
.y44{bottom:279.236850px;}
.y1c{bottom:280.302000px;}
.ycd{bottom:280.407600px;}
.y1bf{bottom:281.635050px;}
.y135{bottom:288.425100px;}
.y89{bottom:288.425250px;}
.y18b{bottom:289.488150px;}
.y1e7{bottom:291.319050px;}
.y6a{bottom:291.335100px;}
.y107{bottom:294.080100px;}
.y1b{bottom:296.502000px;}
.y43{bottom:299.036850px;}
.ycc{bottom:300.207600px;}
.y1be{bottom:301.435050px;}
.y134{bottom:301.925100px;}
.y88{bottom:301.925250px;}
.y18a{bottom:302.988150px;}
.y19e{bottom:309.647700px;}
.y1e6{bottom:311.119050px;}
.y69{bottom:311.135100px;}
.y1a{bottom:312.702000px;}
.y106{bottom:313.880100px;}
.y133{bottom:315.425100px;}
.y87{bottom:315.425250px;}
.y189{bottom:316.488150px;}
.y42{bottom:318.836850px;}
.ycb{bottom:320.007600px;}
.y1bd{bottom:321.235050px;}
.y19d{bottom:324.647700px;}
.yf7{bottom:325.483800px;}
.y19{bottom:328.902000px;}
.y132{bottom:328.925100px;}
.y86{bottom:328.925250px;}
.y188{bottom:329.988150px;}
.y1e5{bottom:330.919050px;}
.y68{bottom:330.935100px;}
.y41{bottom:338.636850px;}
.y19c{bottom:339.647700px;}
.yca{bottom:339.807600px;}
.yb1{bottom:340.611450px;}
.y1bc{bottom:341.035050px;}
.y131{bottom:342.425100px;}
.y85{bottom:342.425250px;}
.y187{bottom:343.488150px;}
.y18{bottom:345.102000px;}
.yf6{bottom:345.283800px;}
.y1e4{bottom:350.719050px;}
.y67{bottom:350.735100px;}
.y19b{bottom:354.647700px;}
.y130{bottom:355.925100px;}
.y84{bottom:355.925250px;}
.y186{bottom:356.988150px;}
.y40{bottom:358.436850px;}
.yc9{bottom:359.607600px;}
.yb0{bottom:360.411450px;}
.y1bb{bottom:360.835050px;}
.y17{bottom:361.302000px;}
.y105{bottom:363.443850px;}
.yf5{bottom:365.083800px;}
.y12f{bottom:369.425100px;}
.y83{bottom:369.425250px;}
.y19a{bottom:369.647700px;}
.y185{bottom:370.488150px;}
.y1e3{bottom:370.519050px;}
.y66{bottom:370.535100px;}
.y16{bottom:377.502000px;}
.y3f{bottom:378.236850px;}
.y104{bottom:378.443850px;}
.yc8{bottom:379.407600px;}
.yaf{bottom:380.211450px;}
.y1ba{bottom:380.635050px;}
.y12e{bottom:382.925100px;}
.y82{bottom:382.925250px;}
.y199{bottom:384.647700px;}
.yf4{bottom:384.883800px;}
.y1e2{bottom:390.319050px;}
.y65{bottom:390.335100px;}
.y103{bottom:393.443850px;}
.y15{bottom:393.702000px;}
.y12d{bottom:396.425100px;}
.y81{bottom:396.425250px;}
.y3e{bottom:398.036850px;}
.yc7{bottom:399.207600px;}
.y198{bottom:399.647700px;}
.yae{bottom:400.011450px;}
.y1b9{bottom:400.435050px;}
.yf3{bottom:404.683800px;}
.y102{bottom:408.443850px;}
.y14{bottom:409.902000px;}
.y12c{bottom:409.925100px;}
.y80{bottom:409.925250px;}
.y1e1{bottom:410.119050px;}
.y64{bottom:410.135100px;}
.y197{bottom:414.647700px;}
.y3d{bottom:417.836850px;}
.yc6{bottom:419.007600px;}
.yad{bottom:419.811450px;}
.y1b8{bottom:420.235050px;}
.y12b{bottom:423.425100px;}
.y7f{bottom:423.425250px;}
.y101{bottom:423.443850px;}
.ye2{bottom:423.807600px;}
.y1e0{bottom:429.919050px;}
.y63{bottom:429.935100px;}
.y167{bottom:433.407600px;}
.y12a{bottom:436.925100px;}
.y7e{bottom:436.925250px;}
.y3c{bottom:437.636850px;}
.y100{bottom:438.443850px;}
.yc5{bottom:438.807600px;}
.yac{bottom:439.611450px;}
.y1b7{bottom:440.035050px;}
.ye1{bottom:443.607600px;}
.y13{bottom:447.364500px;}
.y1df{bottom:449.719050px;}
.y62{bottom:449.735100px;}
.y129{bottom:450.425100px;}
.y7d{bottom:450.425250px;}
.y166{bottom:453.207600px;}
.yff{bottom:453.443850px;}
.yf2{bottom:454.247700px;}
.y3b{bottom:457.436850px;}
.yc4{bottom:458.607600px;}
.yab{bottom:459.411450px;}
.y1b6{bottom:459.835050px;}
.y151{bottom:463.043850px;}
.ye0{bottom:463.407600px;}
.y12{bottom:463.564500px;}
.y128{bottom:463.925100px;}
.y7c{bottom:463.925250px;}
.yf1{bottom:469.247700px;}
.y1de{bottom:469.519050px;}
.y61{bottom:469.535100px;}
.y94{bottom:469.535250px;}
.y184{bottom:470.598150px;}
.y165{bottom:473.007600px;}
.y3a{bottom:477.236850px;}
.y127{bottom:477.425100px;}
.y7b{bottom:477.425250px;}
.y150{bottom:478.043850px;}
.yc3{bottom:478.407600px;}
.yaa{bottom:479.211450px;}
.y1b5{bottom:479.635050px;}
.y11{bottom:479.764500px;}
.ydf{bottom:483.207600px;}
.yf0{bottom:484.247700px;}
.y1dd{bottom:489.319050px;}
.y60{bottom:489.335100px;}
.y93{bottom:489.335250px;}
.y183{bottom:490.398150px;}
.y126{bottom:490.925100px;}
.y7a{bottom:490.925250px;}
.y164{bottom:492.807600px;}
.y14f{bottom:493.043850px;}
.y10{bottom:495.964500px;}
.y39{bottom:497.036850px;}
.yc2{bottom:498.207600px;}
.ya9{bottom:499.011450px;}
.yef{bottom:499.247700px;}
.y1b4{bottom:499.435050px;}
.yde{bottom:503.007600px;}
.y125{bottom:504.425100px;}
.y79{bottom:504.425250px;}
.y14e{bottom:508.043850px;}
.y1dc{bottom:509.119050px;}
.y5f{bottom:509.135100px;}
.y92{bottom:509.135250px;}
.y182{bottom:510.198150px;}
.yf{bottom:512.164500px;}
.y163{bottom:512.607600px;}
.y38{bottom:516.836850px;}
.y124{bottom:517.925100px;}
.y78{bottom:517.925250px;}
.yc1{bottom:518.007600px;}
.ya8{bottom:518.811450px;}
.y1b3{bottom:519.235050px;}
.ydd{bottom:522.807600px;}
.y14d{bottom:523.043850px;}
.ye{bottom:528.364500px;}
.y1db{bottom:528.919050px;}
.y5e{bottom:528.935100px;}
.y91{bottom:528.935250px;}
.y181{bottom:529.998150px;}
.y123{bottom:531.425100px;}
.y77{bottom:531.425250px;}
.y162{bottom:532.407600px;}
.y37{bottom:536.636850px;}
.yc0{bottom:537.807600px;}
.ya7{bottom:538.611450px;}
.y1b2{bottom:539.035050px;}
.ydc{bottom:542.607600px;}
.yee{bottom:544.011450px;}
.yd{bottom:544.564500px;}
.y122{bottom:544.925100px;}
.y76{bottom:544.925250px;}
.y1da{bottom:548.719050px;}
.y5d{bottom:548.735100px;}
.y180{bottom:549.798150px;}
.y161{bottom:552.207600px;}
.y36{bottom:556.436850px;}
.ybf{bottom:557.607600px;}
.ya6{bottom:558.411450px;}
.y121{bottom:558.425100px;}
.y75{bottom:558.425250px;}
.y1b1{bottom:558.835050px;}
.yc{bottom:560.764500px;}
.ydb{bottom:562.407600px;}
.yed{bottom:563.811450px;}
.yfe{bottom:567.571350px;}
.y14c{bottom:567.807600px;}
.y1d9{bottom:568.519050px;}
.y5c{bottom:568.535100px;}
.y17f{bottom:569.598150px;}
.y120{bottom:571.925100px;}
.y16e{bottom:571.925250px;}
.y160{bottom:572.007600px;}
.y35{bottom:576.236850px;}
.yb{bottom:576.964500px;}
.ybe{bottom:577.407600px;}
.ya5{bottom:578.211450px;}
.y1b0{bottom:578.635050px;}
.yda{bottom:582.207600px;}
.yfd{bottom:582.571350px;}
.yec{bottom:583.611450px;}
.y11f{bottom:585.425100px;}
.y16d{bottom:585.425250px;}
.y14b{bottom:587.607600px;}
.y1d8{bottom:588.319050px;}
.y5b{bottom:588.335100px;}
.y17e{bottom:589.398150px;}
.y15f{bottom:591.807600px;}
.ya{bottom:593.164500px;}
.y34{bottom:596.036850px;}
.ybd{bottom:597.207600px;}
.yfc{bottom:597.571350px;}
.ya4{bottom:598.011450px;}
.y1af{bottom:598.435050px;}
.y11e{bottom:598.925100px;}
.y16c{bottom:598.925250px;}
.yd9{bottom:602.007600px;}
.yeb{bottom:603.411450px;}
.y14a{bottom:607.407600px;}
.y1d7{bottom:608.119050px;}
.y5a{bottom:608.135100px;}
.y17d{bottom:609.198150px;}
.y9{bottom:609.364500px;}
.y15e{bottom:611.607600px;}
.y11d{bottom:612.425100px;}
.y16b{bottom:612.425250px;}
.yfb{bottom:612.571350px;}
.y33{bottom:615.836850px;}
.ybc{bottom:617.007600px;}
.ya3{bottom:617.811450px;}
.y1ae{bottom:618.235050px;}
.yd8{bottom:621.807600px;}
.yea{bottom:623.211450px;}
.y8{bottom:625.564500px;}
.y11c{bottom:625.925100px;}
.y16a{bottom:625.925250px;}
.yfa{bottom:627.571350px;}
.y1d6{bottom:627.919050px;}
.y59{bottom:627.935100px;}
.y17c{bottom:628.998150px;}
.y15d{bottom:631.407600px;}
.y32{bottom:635.636850px;}
.ybb{bottom:636.807600px;}
.ya2{bottom:637.611450px;}
.y1ad{bottom:638.035050px;}
.y11b{bottom:639.425100px;}
.y169{bottom:639.425250px;}
.y7{bottom:641.764500px;}
.yf9{bottom:642.571350px;}
.ye9{bottom:643.011450px;}
.y1d5{bottom:647.719050px;}
.y58{bottom:647.735100px;}
.y17b{bottom:648.798150px;}
.y15c{bottom:651.207600px;}
.y11a{bottom:652.925100px;}
.y168{bottom:652.925250px;}
.y31{bottom:655.436850px;}
.yba{bottom:656.607600px;}
.y149{bottom:656.971350px;}
.ya1{bottom:657.411450px;}
.y1ac{bottom:657.835050px;}
.ye8{bottom:662.811450px;}
.y119{bottom:666.425100px;}
.y1d4{bottom:667.519050px;}
.y74{bottom:667.535100px;}
.y57{bottom:667.535250px;}
.y17a{bottom:668.598150px;}
.y15b{bottom:671.007600px;}
.yd7{bottom:671.371350px;}
.y148{bottom:671.971350px;}
.y30{bottom:675.236850px;}
.yb9{bottom:676.407600px;}
.ya0{bottom:677.211450px;}
.y1ab{bottom:677.635050px;}
.y118{bottom:679.925100px;}
.ye7{bottom:682.611450px;}
.yd6{bottom:686.371350px;}
.y147{bottom:686.971350px;}
.y1d3{bottom:687.319050px;}
.y73{bottom:687.335100px;}
.y56{bottom:687.335250px;}
.y6{bottom:687.728250px;}
.y179{bottom:688.398150px;}
.y117{bottom:693.425100px;}
.y2f{bottom:695.036850px;}
.yb8{bottom:696.207600px;}
.y9f{bottom:697.011450px;}
.y1aa{bottom:697.435050px;}
.yd5{bottom:701.371350px;}
.y146{bottom:701.971350px;}
.ye6{bottom:702.411450px;}
.y5{bottom:705.728250px;}
.y116{bottom:706.925100px;}
.y1d2{bottom:707.119050px;}
.y72{bottom:707.135100px;}
.y55{bottom:707.135250px;}
.y178{bottom:708.198150px;}
.y2e{bottom:714.836850px;}
.yd4{bottom:716.371350px;}
.y9e{bottom:716.811450px;}
.y1a9{bottom:717.235050px;}
.y115{bottom:720.425100px;}
.y15a{bottom:720.571350px;}
.ye5{bottom:722.211450px;}
.y1d1{bottom:726.919050px;}
.y71{bottom:726.935100px;}
.y54{bottom:726.935250px;}
.y177{bottom:727.998150px;}
.yd3{bottom:731.371350px;}
.y114{bottom:733.925100px;}
.y159{bottom:735.571350px;}
.y1a8{bottom:737.035050px;}
.ye4{bottom:742.011450px;}
.yb7{bottom:745.771350px;}
.yd2{bottom:746.371350px;}
.y1d0{bottom:746.719050px;}
.y70{bottom:746.735100px;}
.y53{bottom:746.735250px;}
.y113{bottom:747.425100px;}
.y176{bottom:747.798150px;}
.y158{bottom:750.571350px;}
.y4{bottom:753.492000px;}
.y1a7{bottom:756.835050px;}
.yb6{bottom:760.771350px;}
.y112{bottom:760.925100px;}
.yd1{bottom:761.371350px;}
.ye3{bottom:761.811450px;}
.y157{bottom:765.571350px;}
.y9d{bottom:766.370100px;}
.y1cf{bottom:766.519050px;}
.y6f{bottom:766.535100px;}
.y52{bottom:766.535250px;}
.y175{bottom:767.598150px;}
.y111{bottom:774.425100px;}
.yb5{bottom:775.771350px;}
.y1a6{bottom:776.635050px;}
.y3{bottom:778.692000px;}
.y2d{bottom:779.400600px;}
.y156{bottom:780.571350px;}
.y9c{bottom:781.370100px;}
.y1ce{bottom:786.319050px;}
.y90{bottom:786.335100px;}
.y51{bottom:786.335250px;}
.y174{bottom:787.398150px;}
.y145{bottom:787.925100px;}
.yb4{bottom:790.771350px;}
.y2c{bottom:794.400600px;}
.y155{bottom:795.571350px;}
.y9b{bottom:796.370100px;}
.y1a5{bottom:796.435050px;}
.y144{bottom:801.425100px;}
.yb3{bottom:805.771350px;}
.y1cd{bottom:806.119050px;}
.y50{bottom:806.135100px;}
.y6e{bottom:806.135250px;}
.y173{bottom:807.198150px;}
.y2b{bottom:809.400600px;}
.y154{bottom:810.571350px;}
.y9a{bottom:811.370100px;}
.y143{bottom:814.925100px;}
.y1a4{bottom:816.235050px;}
.yb2{bottom:820.771350px;}
.y2a{bottom:824.400600px;}
.y153{bottom:825.571350px;}
.y110{bottom:825.919050px;}
.y4f{bottom:825.935100px;}
.y99{bottom:826.370100px;}
.y172{bottom:826.998150px;}
.y142{bottom:828.425100px;}
.y1a3{bottom:836.035050px;}
.y29{bottom:839.400600px;}
.y152{bottom:840.571350px;}
.y98{bottom:841.370100px;}
.y141{bottom:841.925100px;}
.y10f{bottom:845.719050px;}
.y4e{bottom:845.735100px;}
.y171{bottom:846.798150px;}
.y28{bottom:854.400600px;}
.y97{bottom:856.370100px;}
.y10e{bottom:865.519050px;}
.y4d{bottom:865.535100px;}
.y170{bottom:866.598150px;}
.y96{bottom:871.370100px;}
.y10d{bottom:885.319050px;}
.y4c{bottom:885.335100px;}
.y1a2{bottom:885.601050px;}
.y95{bottom:886.370100px;}
.y16f{bottom:886.398150px;}
.y6d{bottom:926.814750px;}
.y4b{bottom:928.880100px;}
.y25{bottom:928.894800px;}
.yf8{bottom:928.899750px;}
.h8{height:28.656000px;}
.he{height:37.494141px;}
.h3{height:42.117188px;}
.h2{height:42.234375px;}
.h11{height:45.826172px;}
.h6{height:47.381836px;}
.h7{height:47.513672px;}
.h5{height:52.646484px;}
.hf{height:52.666884px;}
.hb{height:52.792969px;}
.h9{height:57.911133px;}
.hc{height:57.911733px;}
.ha{height:58.072266px;}
.h10{height:58.620117px;}
.hd{height:63.175781px;}
.h4{height:74.607422px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x9{left:46.500000px;}
.x1{left:137.799150px;}
.xb{left:142.051200px;}
.x2{left:145.736700px;}
.xd{left:151.904250px;}
.x3{left:166.778700px;}
.x8{left:167.796300px;}
.xc{left:191.168250px;}
.x5{left:318.882900px;}
.x10{left:328.294950px;}
.x4{left:334.557900px;}
.x7{left:356.121300px;}
.x6{left:359.239800px;}
.xf{left:493.564800px;}
.xa{left:494.585700px;}
.xe{left:497.500800px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:19.536000pt;}
.lsb{letter-spacing:-2.170667pt;}
.ls5{letter-spacing:-1.920000pt;}
.ls8{letter-spacing:-1.776000pt;}
.ls7{letter-spacing:-1.265499pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.533333pt;}
.lsa{letter-spacing:0.816000pt;}
.ls9{letter-spacing:0.937067pt;}
.ls1{letter-spacing:1.680000pt;}
.ls3{letter-spacing:1.866667pt;}
.lsd{letter-spacing:2.053333pt;}
.ls0{letter-spacing:2.613333pt;}
.lsc{letter-spacing:5.397333pt;}
.ls6{letter-spacing:8.189867pt;}
.ws12{word-spacing:-14.666667pt;}
.ws66{word-spacing:-13.333333pt;}
.ws8f{word-spacing:-12.496000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws2b{word-spacing:-10.224000pt;}
.wsa{word-spacing:-8.550667pt;}
.ws9{word-spacing:-7.773333pt;}
.ws2a{word-spacing:-7.285168pt;}
.wsba{word-spacing:-3.285333pt;}
.ws17{word-spacing:-2.874667pt;}
.ws47{word-spacing:-2.816000pt;}
.wsa6{word-spacing:-2.757333pt;}
.ws57{word-spacing:-2.698667pt;}
.ws9e{word-spacing:-2.464000pt;}
.ws42{word-spacing:-2.256000pt;}
.ws61{word-spacing:-2.240000pt;}
.ws18{word-spacing:-2.170667pt;}
.ws7a{word-spacing:-2.160000pt;}
.ws98{word-spacing:-2.053333pt;}
.ws5e{word-spacing:-2.026667pt;}
.wsa7{word-spacing:-1.936000pt;}
.ws70{word-spacing:-1.920000pt;}
.wsb{word-spacing:-1.866667pt;}
.ws28{word-spacing:-1.728000pt;}
.ws2{word-spacing:-1.680000pt;}
.ws7b{word-spacing:-1.584000pt;}
.ws79{word-spacing:-1.536000pt;}
.wsf{word-spacing:-1.466667pt;}
.ws71{word-spacing:-1.440000pt;}
.ws5f{word-spacing:-1.408000pt;}
.ws65{word-spacing:-1.344000pt;}
.ws5b{word-spacing:-1.296000pt;}
.ws96{word-spacing:-1.290667pt;}
.ws1{word-spacing:-1.269333pt;}
.ws6{word-spacing:-1.248000pt;}
.ws34{word-spacing:-1.232000pt;}
.ws38{word-spacing:-1.226667pt;}
.ws43{word-spacing:-1.200000pt;}
.ws8c{word-spacing:-1.056000pt;}
.wsb7{word-spacing:-0.938667pt;}
.ws26{word-spacing:-0.912000pt;}
.ws56{word-spacing:-0.880000pt;}
.ws8{word-spacing:-0.864000pt;}
.wsae{word-spacing:-0.821333pt;}
.ws6a{word-spacing:-0.800000pt;}
.ws5a{word-spacing:-0.768000pt;}
.ws60{word-spacing:-0.762667pt;}
.ws62{word-spacing:-0.704000pt;}
.ws97{word-spacing:-0.645333pt;}
.ws6b{word-spacing:-0.586667pt;}
.wsc{word-spacing:-0.533333pt;}
.ws27{word-spacing:-0.528000pt;}
.ws5{word-spacing:-0.384000pt;}
.ws80{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.117333pt;}
.ws36{word-spacing:-0.096000pt;}
.ws3c{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws75{word-spacing:0.048000pt;}
.ws54{word-spacing:0.053333pt;}
.ws16{word-spacing:0.117333pt;}
.ws50{word-spacing:0.144000pt;}
.ws21{word-spacing:0.192000pt;}
.ws83{word-spacing:0.234667pt;}
.ws86{word-spacing:0.240000pt;}
.ws44{word-spacing:0.266667pt;}
.ws37{word-spacing:0.320000pt;}
.ws23{word-spacing:0.384000pt;}
.ws58{word-spacing:0.480000pt;}
.ws45{word-spacing:0.528000pt;}
.ws7d{word-spacing:0.533333pt;}
.ws3{word-spacing:0.576000pt;}
.ws7e{word-spacing:0.586667pt;}
.ws64{word-spacing:0.672000pt;}
.wsb0{word-spacing:0.704000pt;}
.ws53{word-spacing:0.746667pt;}
.ws8a{word-spacing:0.816000pt;}
.ws1a{word-spacing:0.821333pt;}
.ws4d{word-spacing:0.864000pt;}
.wsa4{word-spacing:0.880000pt;}
.ws77{word-spacing:0.912000pt;}
.wse{word-spacing:0.997333pt;}
.ws25{word-spacing:1.056000pt;}
.ws90{word-spacing:1.120000pt;}
.ws39{word-spacing:1.173333pt;}
.ws52{word-spacing:1.200000pt;}
.ws8b{word-spacing:1.232000pt;}
.ws2f{word-spacing:1.290667pt;}
.ws19{word-spacing:1.349333pt;}
.wsa8{word-spacing:1.408000pt;}
.ws33{word-spacing:1.466667pt;}
.ws92{word-spacing:1.525333pt;}
.ws5c{word-spacing:1.536000pt;}
.ws3e{word-spacing:1.584000pt;}
.ws93{word-spacing:1.701333pt;}
.ws4c{word-spacing:1.776000pt;}
.ws3b{word-spacing:1.818667pt;}
.ws6f{word-spacing:1.824000pt;}
.wsb6{word-spacing:1.877333pt;}
.wsd{word-spacing:1.920000pt;}
.ws4b{word-spacing:1.936000pt;}
.ws31{word-spacing:2.016000pt;}
.ws20{word-spacing:2.064000pt;}
.ws29{word-spacing:2.112000pt;}
.ws48{word-spacing:2.346667pt;}
.ws46{word-spacing:2.405333pt;}
.ws6d{word-spacing:2.522667pt;}
.ws88{word-spacing:2.544000pt;}
.wsb3{word-spacing:2.581333pt;}
.ws41{word-spacing:2.640000pt;}
.ws87{word-spacing:2.736000pt;}
.ws9d{word-spacing:2.757333pt;}
.ws5d{word-spacing:2.773333pt;}
.ws76{word-spacing:2.784000pt;}
.ws10{word-spacing:2.874667pt;}
.ws74{word-spacing:2.880000pt;}
.wsa3{word-spacing:2.933333pt;}
.ws24{word-spacing:3.024000pt;}
.ws51{word-spacing:3.120000pt;}
.wsad{word-spacing:3.226667pt;}
.ws72{word-spacing:3.264000pt;}
.wsb9{word-spacing:3.285333pt;}
.ws85{word-spacing:3.312000pt;}
.ws55{word-spacing:3.344000pt;}
.ws84{word-spacing:3.360000pt;}
.ws4f{word-spacing:3.504000pt;}
.wsb1{word-spacing:3.520000pt;}
.wsaf{word-spacing:3.578667pt;}
.ws78{word-spacing:3.648000pt;}
.ws73{word-spacing:3.744000pt;}
.wsb2{word-spacing:3.813333pt;}
.wsa2{word-spacing:3.872000pt;}
.ws1e{word-spacing:3.888000pt;}
.ws30{word-spacing:3.930667pt;}
.ws4{word-spacing:3.936000pt;}
.ws3a{word-spacing:3.989333pt;}
.ws63{word-spacing:4.080000pt;}
.wsa9{word-spacing:4.106667pt;}
.wsb4{word-spacing:4.165333pt;}
.ws81{word-spacing:4.266667pt;}
.wsa0{word-spacing:4.282667pt;}
.ws8e{word-spacing:4.464000pt;}
.ws40{word-spacing:4.512000pt;}
.ws68{word-spacing:4.517333pt;}
.ws1c{word-spacing:4.548955pt;}
.wsab{word-spacing:4.576000pt;}
.ws82{word-spacing:4.640000pt;}
.ws99{word-spacing:4.752000pt;}
.wsaa{word-spacing:4.869333pt;}
.ws7{word-spacing:4.944000pt;}
.ws35{word-spacing:5.136000pt;}
.ws2d{word-spacing:5.221333pt;}
.ws7c{word-spacing:5.280000pt;}
.ws4a{word-spacing:5.338667pt;}
.ws9f{word-spacing:5.397333pt;}
.ws49{word-spacing:5.514667pt;}
.ws32{word-spacing:5.520000pt;}
.ws91{word-spacing:5.653333pt;}
.ws3f{word-spacing:5.664000pt;}
.ws3d{word-spacing:5.808000pt;}
.ws1f{word-spacing:5.904000pt;}
.ws89{word-spacing:5.952000pt;}
.wsbb{word-spacing:6.160000pt;}
.ws69{word-spacing:6.186667pt;}
.ws59{word-spacing:6.240000pt;}
.ws2e{word-spacing:6.629333pt;}
.ws9c{word-spacing:6.688000pt;}
.ws8d{word-spacing:6.720000pt;}
.ws94{word-spacing:6.880000pt;}
.ws14{word-spacing:6.922667pt;}
.ws4e{word-spacing:7.008000pt;}
.wsa5{word-spacing:7.098667pt;}
.ws1b{word-spacing:7.157333pt;}
.ws7f{word-spacing:7.680000pt;}
.ws1d{word-spacing:7.802667pt;}
.ws6e{word-spacing:7.824000pt;}
.ws95{word-spacing:7.840000pt;}
.ws67{word-spacing:7.861333pt;}
.ws9b{word-spacing:8.154667pt;}
.ws2c{word-spacing:8.213333pt;}
.wsa1{word-spacing:8.272000pt;}
.ws6c{word-spacing:8.330667pt;}
.wsac{word-spacing:10.560000pt;}
.wsb5{word-spacing:11.088000pt;}
.ws9a{word-spacing:13.317333pt;}
.wsb8{word-spacing:17.952000pt;}
.ws22{word-spacing:57.840000pt;}
._d{margin-left:-1817.740800pt;}
._14{margin-left:-57.456000pt;}
._f{margin-left:-8.378667pt;}
._e{margin-left:-7.361067pt;}
._4{margin-left:-6.226133pt;}
._b{margin-left:-5.305600pt;}
._3{margin-left:-3.913600pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-1.830400pt;}
._0{margin-left:-0.891733pt;}
._9{width:1.651200pt;}
._8{width:2.544000pt;}
._a{width:3.513600pt;}
._7{width:4.454400pt;}
._6{width:6.172800pt;}
._5{width:7.070400pt;}
._12{width:7.960533pt;}
._13{width:9.332267pt;}
._1b{width:10.359467pt;}
._1d{width:11.722667pt;}
._1c{width:12.726400pt;}
._1a{width:15.934400pt;}
._1f{width:17.339733pt;}
._1e{width:18.476267pt;}
._18{width:26.016000pt;}
._19{width:27.120000pt;}
._17{width:29.760000pt;}
._15{width:33.840000pt;}
._10{width:57.840000pt;}
._11{width:643.313067pt;}
._16{width:1846.313600pt;}
._c{width:1861.673600pt;}
.fs5{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.202667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:8.000000pt;}
.y2{bottom:69.139733pt;}
.y27{bottom:72.289333pt;}
.y1{bottom:79.806400pt;}
.y26{bottom:82.956000pt;}
.y140{bottom:124.377867pt;}
.y4a{bottom:124.378000pt;}
.y196{bottom:125.322800pt;}
.y1c6{bottom:127.142267pt;}
.y23{bottom:129.457333pt;}
.y1cc{bottom:135.764533pt;}
.y13f{bottom:136.377867pt;}
.y49{bottom:136.378000pt;}
.y195{bottom:137.322800pt;}
.y22{bottom:143.857333pt;}
.y1c5{bottom:144.742267pt;}
.y13e{bottom:148.377867pt;}
.y48{bottom:148.378000pt;}
.y194{bottom:149.322800pt;}
.y1cb{bottom:153.364533pt;}
.y21{bottom:158.257333pt;}
.y13d{bottom:160.377867pt;}
.y47{bottom:160.378000pt;}
.y193{bottom:161.322800pt;}
.y1c4{bottom:162.342267pt;}
.y1ca{bottom:170.964533pt;}
.y13c{bottom:172.377867pt;}
.y6c{bottom:172.378000pt;}
.y192{bottom:173.322800pt;}
.y10c{bottom:173.404533pt;}
.y1c3{bottom:179.942267pt;}
.y13b{bottom:184.377867pt;}
.y8f{bottom:184.378000pt;}
.y191{bottom:185.322800pt;}
.y1c9{bottom:188.564533pt;}
.y10b{bottom:191.004533pt;}
.y20{bottom:191.557333pt;}
.y1a1{bottom:195.985733pt;}
.y13a{bottom:196.377867pt;}
.y8e{bottom:196.378000pt;}
.yd0{bottom:196.451200pt;}
.y190{bottom:197.322800pt;}
.y1c2{bottom:197.542267pt;}
.y1f{bottom:205.957333pt;}
.y1c8{bottom:206.164533pt;}
.y139{bottom:208.377867pt;}
.y8d{bottom:208.378000pt;}
.y10a{bottom:208.604533pt;}
.y18f{bottom:209.322800pt;}
.y46{bottom:213.010533pt;}
.y1a0{bottom:213.585733pt;}
.ycf{bottom:214.051200pt;}
.y1c1{bottom:215.142267pt;}
.y1e{bottom:220.357333pt;}
.y138{bottom:220.377867pt;}
.y8c{bottom:220.378000pt;}
.y18e{bottom:221.322800pt;}
.y1c7{bottom:223.764533pt;}
.y109{bottom:226.204533pt;}
.y45{bottom:230.610533pt;}
.y19f{bottom:231.185733pt;}
.yce{bottom:231.651200pt;}
.y137{bottom:232.377867pt;}
.y8b{bottom:232.378000pt;}
.y1c0{bottom:232.742267pt;}
.y18d{bottom:233.322800pt;}
.y1d{bottom:234.757333pt;}
.y1e8{bottom:241.350267pt;}
.y6b{bottom:241.364533pt;}
.y108{bottom:243.804533pt;}
.y136{bottom:244.377867pt;}
.y8a{bottom:244.378000pt;}
.y18c{bottom:245.322800pt;}
.y44{bottom:248.210533pt;}
.y1c{bottom:249.157333pt;}
.ycd{bottom:249.251200pt;}
.y1bf{bottom:250.342267pt;}
.y135{bottom:256.377867pt;}
.y89{bottom:256.378000pt;}
.y18b{bottom:257.322800pt;}
.y1e7{bottom:258.950267pt;}
.y6a{bottom:258.964533pt;}
.y107{bottom:261.404533pt;}
.y1b{bottom:263.557333pt;}
.y43{bottom:265.810533pt;}
.ycc{bottom:266.851200pt;}
.y1be{bottom:267.942267pt;}
.y134{bottom:268.377867pt;}
.y88{bottom:268.378000pt;}
.y18a{bottom:269.322800pt;}
.y19e{bottom:275.242400pt;}
.y1e6{bottom:276.550267pt;}
.y69{bottom:276.564533pt;}
.y1a{bottom:277.957333pt;}
.y106{bottom:279.004533pt;}
.y133{bottom:280.377867pt;}
.y87{bottom:280.378000pt;}
.y189{bottom:281.322800pt;}
.y42{bottom:283.410533pt;}
.ycb{bottom:284.451200pt;}
.y1bd{bottom:285.542267pt;}
.y19d{bottom:288.575733pt;}
.yf7{bottom:289.318933pt;}
.y19{bottom:292.357333pt;}
.y132{bottom:292.377867pt;}
.y86{bottom:292.378000pt;}
.y188{bottom:293.322800pt;}
.y1e5{bottom:294.150267pt;}
.y68{bottom:294.164533pt;}
.y41{bottom:301.010533pt;}
.y19c{bottom:301.909067pt;}
.yca{bottom:302.051200pt;}
.yb1{bottom:302.765733pt;}
.y1bc{bottom:303.142267pt;}
.y131{bottom:304.377867pt;}
.y85{bottom:304.378000pt;}
.y187{bottom:305.322800pt;}
.y18{bottom:306.757333pt;}
.yf6{bottom:306.918933pt;}
.y1e4{bottom:311.750267pt;}
.y67{bottom:311.764533pt;}
.y19b{bottom:315.242400pt;}
.y130{bottom:316.377867pt;}
.y84{bottom:316.378000pt;}
.y186{bottom:317.322800pt;}
.y40{bottom:318.610533pt;}
.yc9{bottom:319.651200pt;}
.yb0{bottom:320.365733pt;}
.y1bb{bottom:320.742267pt;}
.y17{bottom:321.157333pt;}
.y105{bottom:323.061200pt;}
.yf5{bottom:324.518933pt;}
.y12f{bottom:328.377867pt;}
.y83{bottom:328.378000pt;}
.y19a{bottom:328.575733pt;}
.y185{bottom:329.322800pt;}
.y1e3{bottom:329.350267pt;}
.y66{bottom:329.364533pt;}
.y16{bottom:335.557333pt;}
.y3f{bottom:336.210533pt;}
.y104{bottom:336.394533pt;}
.yc8{bottom:337.251200pt;}
.yaf{bottom:337.965733pt;}
.y1ba{bottom:338.342267pt;}
.y12e{bottom:340.377867pt;}
.y82{bottom:340.378000pt;}
.y199{bottom:341.909067pt;}
.yf4{bottom:342.118933pt;}
.y1e2{bottom:346.950267pt;}
.y65{bottom:346.964533pt;}
.y103{bottom:349.727867pt;}
.y15{bottom:349.957333pt;}
.y12d{bottom:352.377867pt;}
.y81{bottom:352.378000pt;}
.y3e{bottom:353.810533pt;}
.yc7{bottom:354.851200pt;}
.y198{bottom:355.242400pt;}
.yae{bottom:355.565733pt;}
.y1b9{bottom:355.942267pt;}
.yf3{bottom:359.718933pt;}
.y102{bottom:363.061200pt;}
.y14{bottom:364.357333pt;}
.y12c{bottom:364.377867pt;}
.y80{bottom:364.378000pt;}
.y1e1{bottom:364.550267pt;}
.y64{bottom:364.564533pt;}
.y197{bottom:368.575733pt;}
.y3d{bottom:371.410533pt;}
.yc6{bottom:372.451200pt;}
.yad{bottom:373.165733pt;}
.y1b8{bottom:373.542267pt;}
.y12b{bottom:376.377867pt;}
.y7f{bottom:376.378000pt;}
.y101{bottom:376.394533pt;}
.ye2{bottom:376.717867pt;}
.y1e0{bottom:382.150267pt;}
.y63{bottom:382.164533pt;}
.y167{bottom:385.251200pt;}
.y12a{bottom:388.377867pt;}
.y7e{bottom:388.378000pt;}
.y3c{bottom:389.010533pt;}
.y100{bottom:389.727867pt;}
.yc5{bottom:390.051200pt;}
.yac{bottom:390.765733pt;}
.y1b7{bottom:391.142267pt;}
.ye1{bottom:394.317867pt;}
.y13{bottom:397.657333pt;}
.y1df{bottom:399.750267pt;}
.y62{bottom:399.764533pt;}
.y129{bottom:400.377867pt;}
.y7d{bottom:400.378000pt;}
.y166{bottom:402.851200pt;}
.yff{bottom:403.061200pt;}
.yf2{bottom:403.775733pt;}
.y3b{bottom:406.610533pt;}
.yc4{bottom:407.651200pt;}
.yab{bottom:408.365733pt;}
.y1b6{bottom:408.742267pt;}
.y151{bottom:411.594533pt;}
.ye0{bottom:411.917867pt;}
.y12{bottom:412.057333pt;}
.y128{bottom:412.377867pt;}
.y7c{bottom:412.378000pt;}
.yf1{bottom:417.109067pt;}
.y1de{bottom:417.350267pt;}
.y61{bottom:417.364533pt;}
.y94{bottom:417.364667pt;}
.y184{bottom:418.309467pt;}
.y165{bottom:420.451200pt;}
.y3a{bottom:424.210533pt;}
.y127{bottom:424.377867pt;}
.y7b{bottom:424.378000pt;}
.y150{bottom:424.927867pt;}
.yc3{bottom:425.251200pt;}
.yaa{bottom:425.965733pt;}
.y1b5{bottom:426.342267pt;}
.y11{bottom:426.457333pt;}
.ydf{bottom:429.517867pt;}
.yf0{bottom:430.442400pt;}
.y1dd{bottom:434.950267pt;}
.y60{bottom:434.964533pt;}
.y93{bottom:434.964667pt;}
.y183{bottom:435.909467pt;}
.y126{bottom:436.377867pt;}
.y7a{bottom:436.378000pt;}
.y164{bottom:438.051200pt;}
.y14f{bottom:438.261200pt;}
.y10{bottom:440.857333pt;}
.y39{bottom:441.810533pt;}
.yc2{bottom:442.851200pt;}
.ya9{bottom:443.565733pt;}
.yef{bottom:443.775733pt;}
.y1b4{bottom:443.942267pt;}
.yde{bottom:447.117867pt;}
.y125{bottom:448.377867pt;}
.y79{bottom:448.378000pt;}
.y14e{bottom:451.594533pt;}
.y1dc{bottom:452.550267pt;}
.y5f{bottom:452.564533pt;}
.y92{bottom:452.564667pt;}
.y182{bottom:453.509467pt;}
.yf{bottom:455.257333pt;}
.y163{bottom:455.651200pt;}
.y38{bottom:459.410533pt;}
.y124{bottom:460.377867pt;}
.y78{bottom:460.378000pt;}
.yc1{bottom:460.451200pt;}
.ya8{bottom:461.165733pt;}
.y1b3{bottom:461.542267pt;}
.ydd{bottom:464.717867pt;}
.y14d{bottom:464.927867pt;}
.ye{bottom:469.657333pt;}
.y1db{bottom:470.150267pt;}
.y5e{bottom:470.164533pt;}
.y91{bottom:470.164667pt;}
.y181{bottom:471.109467pt;}
.y123{bottom:472.377867pt;}
.y77{bottom:472.378000pt;}
.y162{bottom:473.251200pt;}
.y37{bottom:477.010533pt;}
.yc0{bottom:478.051200pt;}
.ya7{bottom:478.765733pt;}
.y1b2{bottom:479.142267pt;}
.ydc{bottom:482.317867pt;}
.yee{bottom:483.565733pt;}
.yd{bottom:484.057333pt;}
.y122{bottom:484.377867pt;}
.y76{bottom:484.378000pt;}
.y1da{bottom:487.750267pt;}
.y5d{bottom:487.764533pt;}
.y180{bottom:488.709467pt;}
.y161{bottom:490.851200pt;}
.y36{bottom:494.610533pt;}
.ybf{bottom:495.651200pt;}
.ya6{bottom:496.365733pt;}
.y121{bottom:496.377867pt;}
.y75{bottom:496.378000pt;}
.y1b1{bottom:496.742267pt;}
.yc{bottom:498.457333pt;}
.ydb{bottom:499.917867pt;}
.yed{bottom:501.165733pt;}
.yfe{bottom:504.507867pt;}
.y14c{bottom:504.717867pt;}
.y1d9{bottom:505.350267pt;}
.y5c{bottom:505.364533pt;}
.y17f{bottom:506.309467pt;}
.y120{bottom:508.377867pt;}
.y16e{bottom:508.378000pt;}
.y160{bottom:508.451200pt;}
.y35{bottom:512.210533pt;}
.yb{bottom:512.857333pt;}
.ybe{bottom:513.251200pt;}
.ya5{bottom:513.965733pt;}
.y1b0{bottom:514.342267pt;}
.yda{bottom:517.517867pt;}
.yfd{bottom:517.841200pt;}
.yec{bottom:518.765733pt;}
.y11f{bottom:520.377867pt;}
.y16d{bottom:520.378000pt;}
.y14b{bottom:522.317867pt;}
.y1d8{bottom:522.950267pt;}
.y5b{bottom:522.964533pt;}
.y17e{bottom:523.909467pt;}
.y15f{bottom:526.051200pt;}
.ya{bottom:527.257333pt;}
.y34{bottom:529.810533pt;}
.ybd{bottom:530.851200pt;}
.yfc{bottom:531.174533pt;}
.ya4{bottom:531.565733pt;}
.y1af{bottom:531.942267pt;}
.y11e{bottom:532.377867pt;}
.y16c{bottom:532.378000pt;}
.yd9{bottom:535.117867pt;}
.yeb{bottom:536.365733pt;}
.y14a{bottom:539.917867pt;}
.y1d7{bottom:540.550267pt;}
.y5a{bottom:540.564533pt;}
.y17d{bottom:541.509467pt;}
.y9{bottom:541.657333pt;}
.y15e{bottom:543.651200pt;}
.y11d{bottom:544.377867pt;}
.y16b{bottom:544.378000pt;}
.yfb{bottom:544.507867pt;}
.y33{bottom:547.410533pt;}
.ybc{bottom:548.451200pt;}
.ya3{bottom:549.165733pt;}
.y1ae{bottom:549.542267pt;}
.yd8{bottom:552.717867pt;}
.yea{bottom:553.965733pt;}
.y8{bottom:556.057333pt;}
.y11c{bottom:556.377867pt;}
.y16a{bottom:556.378000pt;}
.yfa{bottom:557.841200pt;}
.y1d6{bottom:558.150267pt;}
.y59{bottom:558.164533pt;}
.y17c{bottom:559.109467pt;}
.y15d{bottom:561.251200pt;}
.y32{bottom:565.010533pt;}
.ybb{bottom:566.051200pt;}
.ya2{bottom:566.765733pt;}
.y1ad{bottom:567.142267pt;}
.y11b{bottom:568.377867pt;}
.y169{bottom:568.378000pt;}
.y7{bottom:570.457333pt;}
.yf9{bottom:571.174533pt;}
.ye9{bottom:571.565733pt;}
.y1d5{bottom:575.750267pt;}
.y58{bottom:575.764533pt;}
.y17b{bottom:576.709467pt;}
.y15c{bottom:578.851200pt;}
.y11a{bottom:580.377867pt;}
.y168{bottom:580.378000pt;}
.y31{bottom:582.610533pt;}
.yba{bottom:583.651200pt;}
.y149{bottom:583.974533pt;}
.ya1{bottom:584.365733pt;}
.y1ac{bottom:584.742267pt;}
.ye8{bottom:589.165733pt;}
.y119{bottom:592.377867pt;}
.y1d4{bottom:593.350267pt;}
.y74{bottom:593.364533pt;}
.y57{bottom:593.364667pt;}
.y17a{bottom:594.309467pt;}
.y15b{bottom:596.451200pt;}
.yd7{bottom:596.774533pt;}
.y148{bottom:597.307867pt;}
.y30{bottom:600.210533pt;}
.yb9{bottom:601.251200pt;}
.ya0{bottom:601.965733pt;}
.y1ab{bottom:602.342267pt;}
.y118{bottom:604.377867pt;}
.ye7{bottom:606.765733pt;}
.yd6{bottom:610.107867pt;}
.y147{bottom:610.641200pt;}
.y1d3{bottom:610.950267pt;}
.y73{bottom:610.964533pt;}
.y56{bottom:610.964667pt;}
.y6{bottom:611.314000pt;}
.y179{bottom:611.909467pt;}
.y117{bottom:616.377867pt;}
.y2f{bottom:617.810533pt;}
.yb8{bottom:618.851200pt;}
.y9f{bottom:619.565733pt;}
.y1aa{bottom:619.942267pt;}
.yd5{bottom:623.441200pt;}
.y146{bottom:623.974533pt;}
.ye6{bottom:624.365733pt;}
.y5{bottom:627.314000pt;}
.y116{bottom:628.377867pt;}
.y1d2{bottom:628.550267pt;}
.y72{bottom:628.564533pt;}
.y55{bottom:628.564667pt;}
.y178{bottom:629.509467pt;}
.y2e{bottom:635.410533pt;}
.yd4{bottom:636.774533pt;}
.y9e{bottom:637.165733pt;}
.y1a9{bottom:637.542267pt;}
.y115{bottom:640.377867pt;}
.y15a{bottom:640.507867pt;}
.ye5{bottom:641.965733pt;}
.y1d1{bottom:646.150267pt;}
.y71{bottom:646.164533pt;}
.y54{bottom:646.164667pt;}
.y177{bottom:647.109467pt;}
.yd3{bottom:650.107867pt;}
.y114{bottom:652.377867pt;}
.y159{bottom:653.841200pt;}
.y1a8{bottom:655.142267pt;}
.ye4{bottom:659.565733pt;}
.yb7{bottom:662.907867pt;}
.yd2{bottom:663.441200pt;}
.y1d0{bottom:663.750267pt;}
.y70{bottom:663.764533pt;}
.y53{bottom:663.764667pt;}
.y113{bottom:664.377867pt;}
.y176{bottom:664.709467pt;}
.y158{bottom:667.174533pt;}
.y4{bottom:669.770667pt;}
.y1a7{bottom:672.742267pt;}
.yb6{bottom:676.241200pt;}
.y112{bottom:676.377867pt;}
.yd1{bottom:676.774533pt;}
.ye3{bottom:677.165733pt;}
.y157{bottom:680.507867pt;}
.y9d{bottom:681.217867pt;}
.y1cf{bottom:681.350267pt;}
.y6f{bottom:681.364533pt;}
.y52{bottom:681.364667pt;}
.y175{bottom:682.309467pt;}
.y111{bottom:688.377867pt;}
.yb5{bottom:689.574533pt;}
.y1a6{bottom:690.342267pt;}
.y3{bottom:692.170667pt;}
.y2d{bottom:692.800533pt;}
.y156{bottom:693.841200pt;}
.y9c{bottom:694.551200pt;}
.y1ce{bottom:698.950267pt;}
.y90{bottom:698.964533pt;}
.y51{bottom:698.964667pt;}
.y174{bottom:699.909467pt;}
.y145{bottom:700.377867pt;}
.yb4{bottom:702.907867pt;}
.y2c{bottom:706.133867pt;}
.y155{bottom:707.174533pt;}
.y9b{bottom:707.884533pt;}
.y1a5{bottom:707.942267pt;}
.y144{bottom:712.377867pt;}
.yb3{bottom:716.241200pt;}
.y1cd{bottom:716.550267pt;}
.y50{bottom:716.564533pt;}
.y6e{bottom:716.564667pt;}
.y173{bottom:717.509467pt;}
.y2b{bottom:719.467200pt;}
.y154{bottom:720.507867pt;}
.y9a{bottom:721.217867pt;}
.y143{bottom:724.377867pt;}
.y1a4{bottom:725.542267pt;}
.yb2{bottom:729.574533pt;}
.y2a{bottom:732.800533pt;}
.y153{bottom:733.841200pt;}
.y110{bottom:734.150267pt;}
.y4f{bottom:734.164533pt;}
.y99{bottom:734.551200pt;}
.y172{bottom:735.109467pt;}
.y142{bottom:736.377867pt;}
.y1a3{bottom:743.142267pt;}
.y29{bottom:746.133867pt;}
.y152{bottom:747.174533pt;}
.y98{bottom:747.884533pt;}
.y141{bottom:748.377867pt;}
.y10f{bottom:751.750267pt;}
.y4e{bottom:751.764533pt;}
.y171{bottom:752.709467pt;}
.y28{bottom:759.467200pt;}
.y97{bottom:761.217867pt;}
.y10e{bottom:769.350267pt;}
.y4d{bottom:769.364533pt;}
.y170{bottom:770.309467pt;}
.y96{bottom:774.551200pt;}
.y10d{bottom:786.950267pt;}
.y4c{bottom:786.964533pt;}
.y1a2{bottom:787.200933pt;}
.y95{bottom:787.884533pt;}
.y16f{bottom:787.909467pt;}
.y6d{bottom:823.835333pt;}
.y4b{bottom:825.671200pt;}
.y25{bottom:825.684267pt;}
.yf8{bottom:825.688667pt;}
.h8{height:25.472000pt;}
.he{height:33.328125pt;}
.h3{height:37.437500pt;}
.h2{height:37.541667pt;}
.h11{height:40.734375pt;}
.h6{height:42.117188pt;}
.h7{height:42.234375pt;}
.h5{height:46.796875pt;}
.hf{height:46.815008pt;}
.hb{height:46.927083pt;}
.h9{height:51.476562pt;}
.hc{height:51.477096pt;}
.ha{height:51.619792pt;}
.h10{height:52.106771pt;}
.hd{height:56.156250pt;}
.h4{height:66.317708pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x9{left:41.333333pt;}
.x1{left:122.488133pt;}
.xb{left:126.267733pt;}
.x2{left:129.543733pt;}
.xd{left:135.026000pt;}
.x3{left:148.247733pt;}
.x8{left:149.152267pt;}
.xc{left:169.927333pt;}
.x5{left:283.451467pt;}
.x10{left:291.817733pt;}
.x4{left:297.384800pt;}
.x7{left:316.552267pt;}
.x6{left:319.324267pt;}
.xf{left:438.724267pt;}
.xa{left:439.631733pt;}
.xe{left:442.222933pt;}
}




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