
    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_24c497edd789dd8b307f4f04.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9a01798652d88d2ac094c415.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_ff9e6e31f1e39ce39e86e20a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ea19c5951a446af28c60189.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942871;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_5123ebe0de06015e78a75dcd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ca1de9dfd324d122d8df7cf4.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2a045efbe6f4535e3fadcc51.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_619ba9015e4c04ebe43e04c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1fee8c64aba66f93bfa3e0ef.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b4a02237d3f9b5b0e7a45633.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_12d2958c86d3481b21e1a008.woff')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1300592af63044013c5ee011.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cfa45e08edc6a3596ba429d8.woff')format("woff");}.ffd{font-family:ffd;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:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-0.780000px;}
.ls23{letter-spacing:-0.768000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.594000px;}
.ls21{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.324000px;}
.ls22{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.120000px;}
.ls16{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.060000px;}
.lsf{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.006240px;}
.ls1f{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.378000px;}
.ls5{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.620000px;}
.ls0{letter-spacing:2.100000px;}
.ls1e{letter-spacing:5.969400px;}
.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;}
}
.ws11{word-spacing:-18.000000px;}
.ws12{word-spacing:-15.000000px;}
.ws13{word-spacing:-14.400000px;}
.ws29{word-spacing:-13.500000px;}
.ws60{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.609280px;}
.ws1{word-spacing:-7.830000px;}
.ws77{word-spacing:-7.560000px;}
.ws20{word-spacing:-7.500000px;}
.ws83{word-spacing:-7.440000px;}
.ws41{word-spacing:-6.750000px;}
.ws48{word-spacing:-6.696000px;}
.ws2e{word-spacing:-6.480000px;}
.ws70{word-spacing:-6.180000px;}
.ws17{word-spacing:-6.120000px;}
.ws91{word-spacing:-6.000000px;}
.ws56{word-spacing:-5.994000px;}
.ws93{word-spacing:-5.856000px;}
.ws7e{word-spacing:-5.460000px;}
.ws7a{word-spacing:-5.280000px;}
.ws33{word-spacing:-5.040000px;}
.ws8b{word-spacing:-4.914000px;}
.ws35{word-spacing:-4.860000px;}
.ws4d{word-spacing:-4.806000px;}
.ws26{word-spacing:-4.740000px;}
.ws8d{word-spacing:-4.704000px;}
.ws5b{word-spacing:-4.680000px;}
.ws19{word-spacing:-4.560000px;}
.ws36{word-spacing:-4.440000px;}
.ws4f{word-spacing:-4.374000px;}
.ws88{word-spacing:-4.320000px;}
.ws8e{word-spacing:-4.224000px;}
.ws72{word-spacing:-4.200000px;}
.ws5d{word-spacing:-4.140000px;}
.ws51{word-spacing:-4.104000px;}
.ws52{word-spacing:-4.050000px;}
.ws92{word-spacing:-3.936000px;}
.ws79{word-spacing:-3.540000px;}
.ws5{word-spacing:-3.456000px;}
.ws4e{word-spacing:-3.294000px;}
.ws2a{word-spacing:-3.186000px;}
.ws5e{word-spacing:-3.060000px;}
.ws14{word-spacing:-2.760000px;}
.ws8a{word-spacing:-2.592000px;}
.ws1d{word-spacing:-2.460000px;}
.ws67{word-spacing:-2.400000px;}
.ws38{word-spacing:-2.220000px;}
.ws62{word-spacing:-2.100000px;}
.ws18{word-spacing:-1.980000px;}
.ws96{word-spacing:-1.824000px;}
.ws76{word-spacing:-1.680000px;}
.ws44{word-spacing:-1.620000px;}
.ws58{word-spacing:-1.566000px;}
.ws1e{word-spacing:-1.440000px;}
.ws50{word-spacing:-1.350000px;}
.ws55{word-spacing:-1.296000px;}
.ws54{word-spacing:-1.026000px;}
.ws3{word-spacing:-1.020000px;}
.ws15{word-spacing:-0.900000px;}
.ws74{word-spacing:-0.840000px;}
.ws71{word-spacing:-0.780000px;}
.ws49{word-spacing:-0.756000px;}
.wsc{word-spacing:-0.720000px;}
.ws97{word-spacing:-0.672000px;}
.ws45{word-spacing:-0.594000px;}
.ws6c{word-spacing:-0.540000px;}
.ws16{word-spacing:-0.420000px;}
.ws3a{word-spacing:-0.378000px;}
.ws5a{word-spacing:-0.324000px;}
.ws2c{word-spacing:-0.300000px;}
.ws3f{word-spacing:-0.270000px;}
.ws80{word-spacing:-0.240000px;}
.ws53{word-spacing:-0.216000px;}
.ws8c{word-spacing:-0.192000px;}
.ws46{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws2f{word-spacing:0.060000px;}
.ws10{word-spacing:0.120000px;}
.ws3e{word-spacing:0.162000px;}
.ws2b{word-spacing:0.216000px;}
.ws65{word-spacing:0.240000px;}
.ws89{word-spacing:0.324000px;}
.ws25{word-spacing:0.360000px;}
.ws47{word-spacing:0.378000px;}
.ws4b{word-spacing:0.432000px;}
.ws27{word-spacing:0.480000px;}
.ws3c{word-spacing:0.486000px;}
.ws28{word-spacing:0.540000px;}
.ws8f{word-spacing:0.576000px;}
.ws86{word-spacing:0.594000px;}
.ws1f{word-spacing:0.600000px;}
.ws8{word-spacing:0.660000px;}
.ws84{word-spacing:0.720000px;}
.ws37{word-spacing:0.900000px;}
.ws1b{word-spacing:1.020000px;}
.ws7{word-spacing:1.080000px;}
.ws81{word-spacing:1.140000px;}
.ws3d{word-spacing:1.188000px;}
.ws61{word-spacing:1.242000px;}
.ws32{word-spacing:1.260000px;}
.ws7f{word-spacing:1.380000px;}
.ws39{word-spacing:1.620000px;}
.wse{word-spacing:1.740000px;}
.ws40{word-spacing:1.836000px;}
.ws73{word-spacing:2.040000px;}
.ws5f{word-spacing:2.100000px;}
.ws9{word-spacing:2.160000px;}
.ws1a{word-spacing:2.220000px;}
.ws6{word-spacing:2.340000px;}
.wsf{word-spacing:2.460000px;}
.wsb{word-spacing:2.520000px;}
.ws57{word-spacing:2.538000px;}
.ws4{word-spacing:2.592000px;}
.ws22{word-spacing:2.880000px;}
.ws87{word-spacing:3.024000px;}
.ws30{word-spacing:3.240000px;}
.ws68{word-spacing:3.300000px;}
.ws5c{word-spacing:3.540000px;}
.ws94{word-spacing:3.552000px;}
.wsa{word-spacing:4.020000px;}
.ws3b{word-spacing:4.158000px;}
.ws66{word-spacing:4.260000px;}
.ws85{word-spacing:4.320000px;}
.ws34{word-spacing:4.560000px;}
.ws59{word-spacing:6.318000px;}
.ws42{word-spacing:6.372000px;}
.ws95{word-spacing:6.432000px;}
.ws6e{word-spacing:6.480000px;}
.ws7c{word-spacing:6.840000px;}
.ws6a{word-spacing:7.140000px;}
.ws6b{word-spacing:7.320000px;}
.ws69{word-spacing:7.440000px;}
.ws2d{word-spacing:7.680000px;}
.ws1c{word-spacing:8.460000px;}
.ws4c{word-spacing:9.126000px;}
.ws7b{word-spacing:9.360000px;}
.ws63{word-spacing:9.720000px;}
.ws31{word-spacing:9.840000px;}
.ws43{word-spacing:10.152000px;}
.ws6f{word-spacing:10.920000px;}
.ws6d{word-spacing:10.980000px;}
.ws7d{word-spacing:11.580000px;}
.ws78{word-spacing:11.640000px;}
.ws90{word-spacing:12.000000px;}
.ws4a{word-spacing:12.096000px;}
.ws21{word-spacing:12.240000px;}
.ws23{word-spacing:12.420000px;}
.ws75{word-spacing:13.980000px;}
.ws64{word-spacing:14.340000px;}
.ws82{word-spacing:14.940000px;}
.ws24{word-spacing:15.000000px;}
._f{margin-left:-9.874800px;}
._5{margin-left:-8.652000px;}
._3{margin-left:-6.870000px;}
._8{margin-left:-4.887600px;}
._0{margin-left:-3.360000px;}
._b{margin-left:-2.346000px;}
._4{margin-left:-1.050000px;}
._2{width:1.040400px;}
._9{width:3.042000px;}
._a{width:4.386000px;}
._6{width:5.388000px;}
._11{width:6.672000px;}
._7{width:8.172000px;}
._d{width:9.252000px;}
._12{width:10.539600px;}
._10{width:12.552000px;}
._13{width:14.780400px;}
._e{width:16.014000px;}
._1{width:316.065000px;}
._c{width:424.906200px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:94.434300px;}
.y51{bottom:95.577150px;}
.y112{bottom:95.710500px;}
.ye0{bottom:96.088500px;}
.ya5{bottom:96.149250px;}
.y100{bottom:96.270150px;}
.yc6{bottom:96.289200px;}
.y106{bottom:96.560250px;}
.y2d{bottom:96.604350px;}
.y3f{bottom:96.801750px;}
.y144{bottom:99.692550px;}
.y16f{bottom:100.892550px;}
.y111{bottom:109.210500px;}
.y7e{bottom:110.934300px;}
.ydf{bottom:111.088500px;}
.ya4{bottom:111.149250px;}
.yc5{bottom:111.289200px;}
.yf3{bottom:111.838500px;}
.y50{bottom:112.077150px;}
.yff{bottom:112.770150px;}
.y105{bottom:113.060250px;}
.y3e{bottom:113.301750px;}
.y2c{bottom:116.059350px;}
.y143{bottom:116.192550px;}
.y16e{bottom:117.392550px;}
.y110{bottom:124.210500px;}
.yde{bottom:126.088500px;}
.ya3{bottom:126.149250px;}
.yc4{bottom:126.289200px;}
.y7d{bottom:127.434300px;}
.yf2{bottom:127.588500px;}
.y4f{bottom:128.577150px;}
.yfe{bottom:129.270150px;}
.y104{bottom:129.560250px;}
.y3d{bottom:129.801750px;}
.y2b{bottom:131.059350px;}
.y142{bottom:132.692550px;}
.y16d{bottom:133.892550px;}
.y10f{bottom:139.210500px;}
.ydd{bottom:141.088500px;}
.ya2{bottom:141.149250px;}
.yc3{bottom:141.289200px;}
.yf1{bottom:143.338500px;}
.y7c{bottom:143.934300px;}
.y4e{bottom:145.077150px;}
.yfd{bottom:145.770150px;}
.y103{bottom:146.060250px;}
.y3c{bottom:146.301750px;}
.y141{bottom:149.192550px;}
.y16c{bottom:150.392550px;}
.y10e{bottom:154.210500px;}
.ydc{bottom:156.088500px;}
.ya1{bottom:156.149250px;}
.yc2{bottom:156.289200px;}
.y2a{bottom:158.104350px;}
.yf0{bottom:159.088500px;}
.y7b{bottom:160.434300px;}
.y4d{bottom:161.577150px;}
.y102{bottom:162.560250px;}
.y3b{bottom:162.801750px;}
.y140{bottom:165.692550px;}
.y16b{bottom:166.892550px;}
.y10d{bottom:169.210500px;}
.ydb{bottom:171.088500px;}
.ya0{bottom:171.149250px;}
.yc1{bottom:171.289200px;}
.yef{bottom:174.838500px;}
.y7a{bottom:176.934300px;}
.yfc{bottom:177.270150px;}
.y4c{bottom:178.077150px;}
.y101{bottom:179.060250px;}
.y3a{bottom:179.301750px;}
.y13f{bottom:182.192550px;}
.y16a{bottom:183.392550px;}
.y10c{bottom:184.210500px;}
.yda{bottom:186.088500px;}
.y9f{bottom:186.149250px;}
.yc0{bottom:186.289200px;}
.yee{bottom:190.588500px;}
.y4b{bottom:194.577150px;}
.y39{bottom:195.801750px;}
.y29{bottom:196.204350px;}
.y10b{bottom:197.710500px;}
.y13e{bottom:198.692550px;}
.y169{bottom:199.892550px;}
.yd9{bottom:201.088500px;}
.y9e{bottom:201.149250px;}
.ybf{bottom:201.289200px;}
.yed{bottom:206.338500px;}
.y4a{bottom:211.077150px;}
.y79{bottom:212.071350px;}
.yfb{bottom:212.189550px;}
.y38{bottom:212.301750px;}
.y10a{bottom:212.710500px;}
.y13d{bottom:215.192550px;}
.yd8{bottom:216.088500px;}
.y9d{bottom:216.149250px;}
.ybe{bottom:216.289200px;}
.y168{bottom:216.392550px;}
.y28{bottom:221.404350px;}
.yec{bottom:222.088500px;}
.y78{bottom:227.071350px;}
.yfa{bottom:227.189550px;}
.y49{bottom:227.577150px;}
.y109{bottom:227.710500px;}
.y37{bottom:228.801750px;}
.yd7{bottom:231.088500px;}
.y9c{bottom:231.149250px;}
.ybd{bottom:231.289200px;}
.y13c{bottom:231.692550px;}
.y167{bottom:232.892550px;}
.yeb{bottom:237.838500px;}
.y77{bottom:242.071350px;}
.yf9{bottom:242.189550px;}
.y108{bottom:242.710500px;}
.y48{bottom:244.077150px;}
.y36{bottom:245.301750px;}
.yd6{bottom:246.088500px;}
.y9b{bottom:246.149250px;}
.ybc{bottom:246.289200px;}
.y13b{bottom:248.192550px;}
.y166{bottom:249.392550px;}
.yea{bottom:253.588500px;}
.y76{bottom:257.071350px;}
.yf8{bottom:257.189550px;}
.y107{bottom:257.710500px;}
.y47{bottom:260.577150px;}
.yd5{bottom:261.088500px;}
.y9a{bottom:261.149250px;}
.ybb{bottom:261.289200px;}
.y35{bottom:261.801750px;}
.y27{bottom:263.104350px;}
.y13a{bottom:264.692550px;}
.y165{bottom:265.892550px;}
.ye9{bottom:269.338500px;}
.y75{bottom:272.071350px;}
.yf7{bottom:272.189550px;}
.yd4{bottom:276.088500px;}
.y99{bottom:276.149250px;}
.yba{bottom:276.289200px;}
.y46{bottom:277.077150px;}
.y34{bottom:278.301750px;}
.y139{bottom:281.192550px;}
.y164{bottom:282.392550px;}
.ye8{bottom:285.088500px;}
.y74{bottom:287.071350px;}
.yf6{bottom:287.189550px;}
.yd3{bottom:291.088500px;}
.yb9{bottom:291.289200px;}
.y45{bottom:293.577150px;}
.y33{bottom:294.801750px;}
.y26{bottom:296.104350px;}
.y138{bottom:297.692550px;}
.y163{bottom:298.892550px;}
.ye7{bottom:300.838500px;}
.y73{bottom:302.071350px;}
.yf5{bottom:302.189550px;}
.yd2{bottom:306.088500px;}
.y98{bottom:306.149250px;}
.yb8{bottom:306.289200px;}
.y192{bottom:306.692550px;}
.y1c0{bottom:309.072600px;}
.y44{bottom:310.077150px;}
.y32{bottom:311.301750px;}
.y25{bottom:312.604350px;}
.y137{bottom:314.192550px;}
.y162{bottom:315.392550px;}
.ye6{bottom:316.588500px;}
.y72{bottom:317.071350px;}
.yf4{bottom:317.189550px;}
.y191{bottom:320.192550px;}
.yd1{bottom:321.088500px;}
.yb7{bottom:321.289200px;}
.y43{bottom:326.577150px;}
.y31{bottom:327.801750px;}
.y24{bottom:329.104350px;}
.y136{bottom:330.692550px;}
.y161{bottom:331.892550px;}
.ye5{bottom:332.338500px;}
.y190{bottom:333.692550px;}
.yd0{bottom:336.088500px;}
.yb6{bottom:336.289200px;}
.y42{bottom:343.077150px;}
.y97{bottom:344.249250px;}
.y30{bottom:344.301750px;}
.y1bf{bottom:345.072600px;}
.y23{bottom:345.604350px;}
.y135{bottom:347.192550px;}
.ye4{bottom:348.088500px;}
.y160{bottom:348.392550px;}
.ycf{bottom:351.088500px;}
.yb5{bottom:351.289200px;}
.y1be{bottom:358.872600px;}
.y41{bottom:359.577150px;}
.y18f{bottom:360.692550px;}
.y96{bottom:360.749250px;}
.y22{bottom:362.104350px;}
.y134{bottom:363.692550px;}
.ye3{bottom:363.838500px;}
.y15f{bottom:364.892550px;}
.yce{bottom:366.088500px;}
.yb4{bottom:366.289200px;}
.y1bd{bottom:372.672600px;}
.y18e{bottom:374.192550px;}
.y2f{bottom:374.301750px;}
.y40{bottom:376.077150px;}
.y95{bottom:377.249250px;}
.y21{bottom:378.604350px;}
.ye2{bottom:379.588500px;}
.y133{bottom:380.192550px;}
.ycd{bottom:381.088500px;}
.yb3{bottom:381.289200px;}
.y15e{bottom:381.392550px;}
.y1bc{bottom:386.472600px;}
.y18d{bottom:387.692550px;}
.y94{bottom:393.749250px;}
.y20{bottom:395.104350px;}
.ye1{bottom:395.338500px;}
.ycc{bottom:396.088500px;}
.yb2{bottom:396.289200px;}
.y132{bottom:396.692550px;}
.y15d{bottom:398.042550px;}
.y1bb{bottom:400.272600px;}
.y18c{bottom:401.192550px;}
.y71{bottom:405.819450px;}
.y93{bottom:410.249250px;}
.ycb{bottom:411.088500px;}
.yb1{bottom:411.289200px;}
.y1f{bottom:411.604350px;}
.y131{bottom:413.192550px;}
.y1ba{bottom:414.072600px;}
.y15c{bottom:414.692550px;}
.y70{bottom:422.319450px;}
.yb0{bottom:426.289200px;}
.y92{bottom:426.749250px;}
.y1b9{bottom:427.872600px;}
.y1e{bottom:428.104350px;}
.y18b{bottom:428.192550px;}
.y130{bottom:429.692550px;}
.y15b{bottom:431.342550px;}
.yaf{bottom:441.289200px;}
.y1b8{bottom:441.672600px;}
.y18a{bottom:441.692550px;}
.y91{bottom:443.249250px;}
.yca{bottom:444.372000px;}
.y1d{bottom:444.604350px;}
.y12f{bottom:446.192550px;}
.y15a{bottom:447.992550px;}
.y189{bottom:455.192550px;}
.y6f{bottom:455.319450px;}
.y1b7{bottom:455.472600px;}
.yae{bottom:456.289200px;}
.yc9{bottom:459.372000px;}
.y90{bottom:459.749250px;}
.y1c{bottom:461.104350px;}
.y12e{bottom:462.692550px;}
.y159{bottom:464.642550px;}
.y188{bottom:468.692550px;}
.y1b6{bottom:469.122600px;}
.yad{bottom:471.289200px;}
.y6e{bottom:471.819450px;}
.yc8{bottom:474.372000px;}
.y8f{bottom:476.249250px;}
.y1b{bottom:477.604350px;}
.y12d{bottom:479.192550px;}
.y158{bottom:481.292550px;}
.y187{bottom:482.192550px;}
.y1b5{bottom:482.772600px;}
.yac{bottom:486.289200px;}
.y6d{bottom:488.319450px;}
.yc7{bottom:489.372000px;}
.y8e{bottom:492.749250px;}
.y1a{bottom:494.104350px;}
.y12c{bottom:495.692550px;}
.y1b4{bottom:496.422600px;}
.y157{bottom:497.942550px;}
.yab{bottom:501.289200px;}
.y6c{bottom:504.819450px;}
.y186{bottom:509.192550px;}
.y8d{bottom:509.249250px;}
.y1b3{bottom:510.072600px;}
.y19{bottom:510.604350px;}
.y12b{bottom:512.192550px;}
.y156{bottom:514.592550px;}
.yaa{bottom:516.289200px;}
.y6b{bottom:521.319450px;}
.y185{bottom:522.692550px;}
.y1b2{bottom:523.722600px;}
.y8c{bottom:525.749250px;}
.y18{bottom:527.104350px;}
.y155{bottom:531.242550px;}
.ya9{bottom:531.289200px;}
.y184{bottom:536.192550px;}
.y1b1{bottom:537.372600px;}
.y6a{bottom:537.819450px;}
.y8b{bottom:542.249250px;}
.y17{bottom:543.604350px;}
.y12a{bottom:545.192550px;}
.ya8{bottom:546.289200px;}
.y154{bottom:547.892550px;}
.y183{bottom:549.692550px;}
.y1b0{bottom:551.022600px;}
.y69{bottom:554.319450px;}
.y8a{bottom:558.749250px;}
.y16{bottom:560.104350px;}
.ya7{bottom:561.289200px;}
.y182{bottom:563.192550px;}
.y153{bottom:564.542550px;}
.y1af{bottom:564.672600px;}
.y68{bottom:570.819450px;}
.y89{bottom:575.249250px;}
.ya6{bottom:576.289200px;}
.y15{bottom:576.604350px;}
.y181{bottom:576.692550px;}
.y1ae{bottom:578.322600px;}
.y152{bottom:581.192550px;}
.y129{bottom:583.292550px;}
.y67{bottom:587.319450px;}
.y180{bottom:590.192550px;}
.y1ad{bottom:591.972600px;}
.y14{bottom:593.104350px;}
.y151{bottom:597.842550px;}
.y128{bottom:599.792550px;}
.y17f{bottom:603.692550px;}
.y66{bottom:603.819450px;}
.y1ac{bottom:605.622600px;}
.y13{bottom:609.604350px;}
.y88{bottom:610.919100px;}
.y150{bottom:614.492550px;}
.y127{bottom:616.292550px;}
.y1ab{bottom:619.272600px;}
.y65{bottom:620.319450px;}
.y87{bottom:624.419100px;}
.y12{bottom:626.104350px;}
.y17e{bottom:629.192550px;}
.y14f{bottom:631.142550px;}
.y126{bottom:632.792550px;}
.y1aa{bottom:632.922600px;}
.y64{bottom:636.819450px;}
.y86{bottom:639.419100px;}
.y11{bottom:642.604350px;}
.y1a9{bottom:646.572600px;}
.y14e{bottom:647.792550px;}
.y125{bottom:649.292550px;}
.y63{bottom:653.319450px;}
.y85{bottom:654.419100px;}
.y10{bottom:659.104350px;}
.y1a8{bottom:660.372600px;}
.y14d{bottom:664.442550px;}
.y124{bottom:665.792550px;}
.y84{bottom:669.419100px;}
.y62{bottom:669.819450px;}
.y1a7{bottom:674.172600px;}
.yf{bottom:675.604350px;}
.y17d{bottom:680.792550px;}
.y14c{bottom:681.092550px;}
.y123{bottom:682.292550px;}
.y83{bottom:684.419100px;}
.y61{bottom:686.319450px;}
.y1a6{bottom:687.972600px;}
.ye{bottom:692.104350px;}
.y17c{bottom:695.792550px;}
.y14b{bottom:697.742550px;}
.y82{bottom:697.919100px;}
.y122{bottom:698.792550px;}
.y1a5{bottom:701.772600px;}
.y60{bottom:702.819450px;}
.yd{bottom:708.604350px;}
.y17b{bottom:710.792550px;}
.y81{bottom:712.919100px;}
.y14a{bottom:714.392550px;}
.y121{bottom:715.292550px;}
.y1a4{bottom:715.572600px;}
.y5f{bottom:719.319450px;}
.y17a{bottom:725.792550px;}
.y80{bottom:727.919100px;}
.y1a3{bottom:729.372600px;}
.y149{bottom:731.042550px;}
.y120{bottom:731.792550px;}
.y5e{bottom:735.819450px;}
.y179{bottom:740.792550px;}
.yc{bottom:741.604350px;}
.y1a2{bottom:743.172600px;}
.y148{bottom:747.692550px;}
.y11f{bottom:748.292550px;}
.y5d{bottom:752.319450px;}
.y178{bottom:755.792550px;}
.yb{bottom:756.604350px;}
.y1a1{bottom:756.972600px;}
.y147{bottom:764.342550px;}
.y11e{bottom:764.792550px;}
.y5c{bottom:768.819450px;}
.y1a0{bottom:770.772600px;}
.y177{bottom:770.792550px;}
.ya{bottom:771.604350px;}
.y146{bottom:780.992550px;}
.y11d{bottom:781.292550px;}
.y19f{bottom:784.572600px;}
.y5b{bottom:785.319450px;}
.y176{bottom:785.792550px;}
.y9{bottom:786.604350px;}
.y145{bottom:797.642550px;}
.y11c{bottom:797.792550px;}
.y19e{bottom:798.222600px;}
.y175{bottom:800.792550px;}
.y5a{bottom:801.819450px;}
.y8{bottom:806.059350px;}
.y19d{bottom:811.872600px;}
.y11b{bottom:814.292550px;}
.y174{bottom:815.792550px;}
.y7{bottom:816.604350px;}
.y59{bottom:818.319450px;}
.y19c{bottom:825.522600px;}
.y11a{bottom:830.792550px;}
.y58{bottom:834.819450px;}
.y6{bottom:836.059350px;}
.y19b{bottom:839.172600px;}
.y173{bottom:845.792550px;}
.y119{bottom:847.292550px;}
.y5{bottom:851.059350px;}
.y57{bottom:851.319450px;}
.y19a{bottom:852.822600px;}
.y118{bottom:863.792550px;}
.y199{bottom:866.472600px;}
.y56{bottom:867.819450px;}
.y172{bottom:872.792550px;}
.y4{bottom:878.104350px;}
.y198{bottom:880.122600px;}
.y117{bottom:880.292550px;}
.y55{bottom:884.319450px;}
.y171{bottom:887.792550px;}
.y197{bottom:893.772600px;}
.y116{bottom:896.792550px;}
.y170{bottom:902.792550px;}
.y196{bottom:907.422600px;}
.y115{bottom:913.292550px;}
.y3{bottom:916.204350px;}
.y54{bottom:917.319450px;}
.y195{bottom:921.072600px;}
.y114{bottom:929.792550px;}
.y53{bottom:932.319450px;}
.y194{bottom:934.722600px;}
.y2{bottom:941.404350px;}
.y113{bottom:946.292550px;}
.y193{bottom:948.372600px;}
.y52{bottom:951.774300px;}
.y1{bottom:988.797600px;}
.y2e{bottom:988.812150px;}
.h6{height:21.746602px;}
.hf{height:33.351562px;}
.he{height:36.597656px;}
.h7{height:37.494141px;}
.hd{height:37.520508px;}
.h8{height:41.689453px;}
.h2{height:41.747653px;}
.hc{height:42.117188px;}
.hb{height:47.381836px;}
.ha{height:48.796875px;}
.h9{height:52.646484px;}
.h5{height:54.162422px;}
.h3{height:61.154297px;}
.h4{height:61.523438px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.xd{left:84.783000px;}
.x1{left:85.821600px;}
.x2{left:92.370300px;}
.x6{left:97.548450px;}
.x5{left:106.299300px;}
.x3{left:202.625400px;}
.x9{left:206.528700px;}
.x7{left:234.499650px;}
.x8{left:235.841700px;}
.x4{left:243.400200px;}
.xc{left:326.649450px;}
.xa{left:382.677150px;}
.xb{left:403.936950px;}
.xe{left:480.206700px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls23{letter-spacing:-0.682667pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.106667pt;}
.ls16{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.053333pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.005547pt;}
.ls1f{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.336000pt;}
.ls5{letter-spacing:0.853333pt;}
.ls10{letter-spacing:1.440000pt;}
.ls0{letter-spacing:1.866667pt;}
.ls1e{letter-spacing:5.306133pt;}
.ws11{word-spacing:-16.000000pt;}
.ws12{word-spacing:-13.333333pt;}
.ws13{word-spacing:-12.800000pt;}
.ws29{word-spacing:-12.000000pt;}
.ws60{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.319360pt;}
.ws1{word-spacing:-6.960000pt;}
.ws77{word-spacing:-6.720000pt;}
.ws20{word-spacing:-6.666667pt;}
.ws83{word-spacing:-6.613333pt;}
.ws41{word-spacing:-6.000000pt;}
.ws48{word-spacing:-5.952000pt;}
.ws2e{word-spacing:-5.760000pt;}
.ws70{word-spacing:-5.493333pt;}
.ws17{word-spacing:-5.440000pt;}
.ws91{word-spacing:-5.333333pt;}
.ws56{word-spacing:-5.328000pt;}
.ws93{word-spacing:-5.205333pt;}
.ws7e{word-spacing:-4.853333pt;}
.ws7a{word-spacing:-4.693333pt;}
.ws33{word-spacing:-4.480000pt;}
.ws8b{word-spacing:-4.368000pt;}
.ws35{word-spacing:-4.320000pt;}
.ws4d{word-spacing:-4.272000pt;}
.ws26{word-spacing:-4.213333pt;}
.ws8d{word-spacing:-4.181333pt;}
.ws5b{word-spacing:-4.160000pt;}
.ws19{word-spacing:-4.053333pt;}
.ws36{word-spacing:-3.946667pt;}
.ws4f{word-spacing:-3.888000pt;}
.ws88{word-spacing:-3.840000pt;}
.ws8e{word-spacing:-3.754667pt;}
.ws72{word-spacing:-3.733333pt;}
.ws5d{word-spacing:-3.680000pt;}
.ws51{word-spacing:-3.648000pt;}
.ws52{word-spacing:-3.600000pt;}
.ws92{word-spacing:-3.498667pt;}
.ws79{word-spacing:-3.146667pt;}
.ws5{word-spacing:-3.072000pt;}
.ws4e{word-spacing:-2.928000pt;}
.ws2a{word-spacing:-2.832000pt;}
.ws5e{word-spacing:-2.720000pt;}
.ws14{word-spacing:-2.453333pt;}
.ws8a{word-spacing:-2.304000pt;}
.ws1d{word-spacing:-2.186667pt;}
.ws67{word-spacing:-2.133333pt;}
.ws38{word-spacing:-1.973333pt;}
.ws62{word-spacing:-1.866667pt;}
.ws18{word-spacing:-1.760000pt;}
.ws96{word-spacing:-1.621333pt;}
.ws76{word-spacing:-1.493333pt;}
.ws44{word-spacing:-1.440000pt;}
.ws58{word-spacing:-1.392000pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws50{word-spacing:-1.200000pt;}
.ws55{word-spacing:-1.152000pt;}
.ws54{word-spacing:-0.912000pt;}
.ws3{word-spacing:-0.906667pt;}
.ws15{word-spacing:-0.800000pt;}
.ws74{word-spacing:-0.746667pt;}
.ws71{word-spacing:-0.693333pt;}
.ws49{word-spacing:-0.672000pt;}
.wsc{word-spacing:-0.640000pt;}
.ws97{word-spacing:-0.597333pt;}
.ws45{word-spacing:-0.528000pt;}
.ws6c{word-spacing:-0.480000pt;}
.ws16{word-spacing:-0.373333pt;}
.ws3a{word-spacing:-0.336000pt;}
.ws5a{word-spacing:-0.288000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws3f{word-spacing:-0.240000pt;}
.ws80{word-spacing:-0.213333pt;}
.ws53{word-spacing:-0.192000pt;}
.ws8c{word-spacing:-0.170667pt;}
.ws46{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.053333pt;}
.ws10{word-spacing:0.106667pt;}
.ws3e{word-spacing:0.144000pt;}
.ws2b{word-spacing:0.192000pt;}
.ws65{word-spacing:0.213333pt;}
.ws89{word-spacing:0.288000pt;}
.ws25{word-spacing:0.320000pt;}
.ws47{word-spacing:0.336000pt;}
.ws4b{word-spacing:0.384000pt;}
.ws27{word-spacing:0.426667pt;}
.ws3c{word-spacing:0.432000pt;}
.ws28{word-spacing:0.480000pt;}
.ws8f{word-spacing:0.512000pt;}
.ws86{word-spacing:0.528000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws8{word-spacing:0.586667pt;}
.ws84{word-spacing:0.640000pt;}
.ws37{word-spacing:0.800000pt;}
.ws1b{word-spacing:0.906667pt;}
.ws7{word-spacing:0.960000pt;}
.ws81{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.056000pt;}
.ws61{word-spacing:1.104000pt;}
.ws32{word-spacing:1.120000pt;}
.ws7f{word-spacing:1.226667pt;}
.ws39{word-spacing:1.440000pt;}
.wse{word-spacing:1.546667pt;}
.ws40{word-spacing:1.632000pt;}
.ws73{word-spacing:1.813333pt;}
.ws5f{word-spacing:1.866667pt;}
.ws9{word-spacing:1.920000pt;}
.ws1a{word-spacing:1.973333pt;}
.ws6{word-spacing:2.080000pt;}
.wsf{word-spacing:2.186667pt;}
.wsb{word-spacing:2.240000pt;}
.ws57{word-spacing:2.256000pt;}
.ws4{word-spacing:2.304000pt;}
.ws22{word-spacing:2.560000pt;}
.ws87{word-spacing:2.688000pt;}
.ws30{word-spacing:2.880000pt;}
.ws68{word-spacing:2.933333pt;}
.ws5c{word-spacing:3.146667pt;}
.ws94{word-spacing:3.157333pt;}
.wsa{word-spacing:3.573333pt;}
.ws3b{word-spacing:3.696000pt;}
.ws66{word-spacing:3.786667pt;}
.ws85{word-spacing:3.840000pt;}
.ws34{word-spacing:4.053333pt;}
.ws59{word-spacing:5.616000pt;}
.ws42{word-spacing:5.664000pt;}
.ws95{word-spacing:5.717333pt;}
.ws6e{word-spacing:5.760000pt;}
.ws7c{word-spacing:6.080000pt;}
.ws6a{word-spacing:6.346667pt;}
.ws6b{word-spacing:6.506667pt;}
.ws69{word-spacing:6.613333pt;}
.ws2d{word-spacing:6.826667pt;}
.ws1c{word-spacing:7.520000pt;}
.ws4c{word-spacing:8.112000pt;}
.ws7b{word-spacing:8.320000pt;}
.ws63{word-spacing:8.640000pt;}
.ws31{word-spacing:8.746667pt;}
.ws43{word-spacing:9.024000pt;}
.ws6f{word-spacing:9.706667pt;}
.ws6d{word-spacing:9.760000pt;}
.ws7d{word-spacing:10.293333pt;}
.ws78{word-spacing:10.346667pt;}
.ws90{word-spacing:10.666667pt;}
.ws4a{word-spacing:10.752000pt;}
.ws21{word-spacing:10.880000pt;}
.ws23{word-spacing:11.040000pt;}
.ws75{word-spacing:12.426667pt;}
.ws64{word-spacing:12.746667pt;}
.ws82{word-spacing:13.280000pt;}
.ws24{word-spacing:13.333333pt;}
._f{margin-left:-8.777600pt;}
._5{margin-left:-7.690667pt;}
._3{margin-left:-6.106667pt;}
._8{margin-left:-4.344533pt;}
._0{margin-left:-2.986667pt;}
._b{margin-left:-2.085333pt;}
._4{margin-left:-0.933333pt;}
._2{width:0.924800pt;}
._9{width:2.704000pt;}
._a{width:3.898667pt;}
._6{width:4.789333pt;}
._11{width:5.930667pt;}
._7{width:7.264000pt;}
._d{width:8.224000pt;}
._12{width:9.368533pt;}
._10{width:11.157333pt;}
._13{width:13.138133pt;}
._e{width:14.234667pt;}
._1{width:280.946667pt;}
._c{width:377.694400pt;}
.fs4{font-size:27.840000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:83.941600pt;}
.y51{bottom:84.957467pt;}
.y112{bottom:85.076000pt;}
.ye0{bottom:85.412000pt;}
.ya5{bottom:85.466000pt;}
.y100{bottom:85.573467pt;}
.yc6{bottom:85.590400pt;}
.y106{bottom:85.831333pt;}
.y2d{bottom:85.870533pt;}
.y3f{bottom:86.046000pt;}
.y144{bottom:88.615600pt;}
.y16f{bottom:89.682267pt;}
.y111{bottom:97.076000pt;}
.y7e{bottom:98.608267pt;}
.ydf{bottom:98.745333pt;}
.ya4{bottom:98.799333pt;}
.yc5{bottom:98.923733pt;}
.yf3{bottom:99.412000pt;}
.y50{bottom:99.624133pt;}
.yff{bottom:100.240133pt;}
.y105{bottom:100.498000pt;}
.y3e{bottom:100.712667pt;}
.y2c{bottom:103.163867pt;}
.y143{bottom:103.282267pt;}
.y16e{bottom:104.348933pt;}
.y110{bottom:110.409333pt;}
.yde{bottom:112.078667pt;}
.ya3{bottom:112.132667pt;}
.yc4{bottom:112.257067pt;}
.y7d{bottom:113.274933pt;}
.yf2{bottom:113.412000pt;}
.y4f{bottom:114.290800pt;}
.yfe{bottom:114.906800pt;}
.y104{bottom:115.164667pt;}
.y3d{bottom:115.379333pt;}
.y2b{bottom:116.497200pt;}
.y142{bottom:117.948933pt;}
.y16d{bottom:119.015600pt;}
.y10f{bottom:123.742667pt;}
.ydd{bottom:125.412000pt;}
.ya2{bottom:125.466000pt;}
.yc3{bottom:125.590400pt;}
.yf1{bottom:127.412000pt;}
.y7c{bottom:127.941600pt;}
.y4e{bottom:128.957467pt;}
.yfd{bottom:129.573467pt;}
.y103{bottom:129.831333pt;}
.y3c{bottom:130.046000pt;}
.y141{bottom:132.615600pt;}
.y16c{bottom:133.682267pt;}
.y10e{bottom:137.076000pt;}
.ydc{bottom:138.745333pt;}
.ya1{bottom:138.799333pt;}
.yc2{bottom:138.923733pt;}
.y2a{bottom:140.537200pt;}
.yf0{bottom:141.412000pt;}
.y7b{bottom:142.608267pt;}
.y4d{bottom:143.624133pt;}
.y102{bottom:144.498000pt;}
.y3b{bottom:144.712667pt;}
.y140{bottom:147.282267pt;}
.y16b{bottom:148.348933pt;}
.y10d{bottom:150.409333pt;}
.ydb{bottom:152.078667pt;}
.ya0{bottom:152.132667pt;}
.yc1{bottom:152.257067pt;}
.yef{bottom:155.412000pt;}
.y7a{bottom:157.274933pt;}
.yfc{bottom:157.573467pt;}
.y4c{bottom:158.290800pt;}
.y101{bottom:159.164667pt;}
.y3a{bottom:159.379333pt;}
.y13f{bottom:161.948933pt;}
.y16a{bottom:163.015600pt;}
.y10c{bottom:163.742667pt;}
.yda{bottom:165.412000pt;}
.y9f{bottom:165.466000pt;}
.yc0{bottom:165.590400pt;}
.yee{bottom:169.412000pt;}
.y4b{bottom:172.957467pt;}
.y39{bottom:174.046000pt;}
.y29{bottom:174.403867pt;}
.y10b{bottom:175.742667pt;}
.y13e{bottom:176.615600pt;}
.y169{bottom:177.682267pt;}
.yd9{bottom:178.745333pt;}
.y9e{bottom:178.799333pt;}
.ybf{bottom:178.923733pt;}
.yed{bottom:183.412000pt;}
.y4a{bottom:187.624133pt;}
.y79{bottom:188.507867pt;}
.yfb{bottom:188.612933pt;}
.y38{bottom:188.712667pt;}
.y10a{bottom:189.076000pt;}
.y13d{bottom:191.282267pt;}
.yd8{bottom:192.078667pt;}
.y9d{bottom:192.132667pt;}
.ybe{bottom:192.257067pt;}
.y168{bottom:192.348933pt;}
.y28{bottom:196.803867pt;}
.yec{bottom:197.412000pt;}
.y78{bottom:201.841200pt;}
.yfa{bottom:201.946267pt;}
.y49{bottom:202.290800pt;}
.y109{bottom:202.409333pt;}
.y37{bottom:203.379333pt;}
.yd7{bottom:205.412000pt;}
.y9c{bottom:205.466000pt;}
.ybd{bottom:205.590400pt;}
.y13c{bottom:205.948933pt;}
.y167{bottom:207.015600pt;}
.yeb{bottom:211.412000pt;}
.y77{bottom:215.174533pt;}
.yf9{bottom:215.279600pt;}
.y108{bottom:215.742667pt;}
.y48{bottom:216.957467pt;}
.y36{bottom:218.046000pt;}
.yd6{bottom:218.745333pt;}
.y9b{bottom:218.799333pt;}
.ybc{bottom:218.923733pt;}
.y13b{bottom:220.615600pt;}
.y166{bottom:221.682267pt;}
.yea{bottom:225.412000pt;}
.y76{bottom:228.507867pt;}
.yf8{bottom:228.612933pt;}
.y107{bottom:229.076000pt;}
.y47{bottom:231.624133pt;}
.yd5{bottom:232.078667pt;}
.y9a{bottom:232.132667pt;}
.ybb{bottom:232.257067pt;}
.y35{bottom:232.712667pt;}
.y27{bottom:233.870533pt;}
.y13a{bottom:235.282267pt;}
.y165{bottom:236.348933pt;}
.ye9{bottom:239.412000pt;}
.y75{bottom:241.841200pt;}
.yf7{bottom:241.946267pt;}
.yd4{bottom:245.412000pt;}
.y99{bottom:245.466000pt;}
.yba{bottom:245.590400pt;}
.y46{bottom:246.290800pt;}
.y34{bottom:247.379333pt;}
.y139{bottom:249.948933pt;}
.y164{bottom:251.015600pt;}
.ye8{bottom:253.412000pt;}
.y74{bottom:255.174533pt;}
.yf6{bottom:255.279600pt;}
.yd3{bottom:258.745333pt;}
.yb9{bottom:258.923733pt;}
.y45{bottom:260.957467pt;}
.y33{bottom:262.046000pt;}
.y26{bottom:263.203867pt;}
.y138{bottom:264.615600pt;}
.y163{bottom:265.682267pt;}
.ye7{bottom:267.412000pt;}
.y73{bottom:268.507867pt;}
.yf5{bottom:268.612933pt;}
.yd2{bottom:272.078667pt;}
.y98{bottom:272.132667pt;}
.yb8{bottom:272.257067pt;}
.y192{bottom:272.615600pt;}
.y1c0{bottom:274.731200pt;}
.y44{bottom:275.624133pt;}
.y32{bottom:276.712667pt;}
.y25{bottom:277.870533pt;}
.y137{bottom:279.282267pt;}
.y162{bottom:280.348933pt;}
.ye6{bottom:281.412000pt;}
.y72{bottom:281.841200pt;}
.yf4{bottom:281.946267pt;}
.y191{bottom:284.615600pt;}
.yd1{bottom:285.412000pt;}
.yb7{bottom:285.590400pt;}
.y43{bottom:290.290800pt;}
.y31{bottom:291.379333pt;}
.y24{bottom:292.537200pt;}
.y136{bottom:293.948933pt;}
.y161{bottom:295.015600pt;}
.ye5{bottom:295.412000pt;}
.y190{bottom:296.615600pt;}
.yd0{bottom:298.745333pt;}
.yb6{bottom:298.923733pt;}
.y42{bottom:304.957467pt;}
.y97{bottom:305.999333pt;}
.y30{bottom:306.046000pt;}
.y1bf{bottom:306.731200pt;}
.y23{bottom:307.203867pt;}
.y135{bottom:308.615600pt;}
.ye4{bottom:309.412000pt;}
.y160{bottom:309.682267pt;}
.ycf{bottom:312.078667pt;}
.yb5{bottom:312.257067pt;}
.y1be{bottom:318.997867pt;}
.y41{bottom:319.624133pt;}
.y18f{bottom:320.615600pt;}
.y96{bottom:320.666000pt;}
.y22{bottom:321.870533pt;}
.y134{bottom:323.282267pt;}
.ye3{bottom:323.412000pt;}
.y15f{bottom:324.348933pt;}
.yce{bottom:325.412000pt;}
.yb4{bottom:325.590400pt;}
.y1bd{bottom:331.264533pt;}
.y18e{bottom:332.615600pt;}
.y2f{bottom:332.712667pt;}
.y40{bottom:334.290800pt;}
.y95{bottom:335.332667pt;}
.y21{bottom:336.537200pt;}
.ye2{bottom:337.412000pt;}
.y133{bottom:337.948933pt;}
.ycd{bottom:338.745333pt;}
.yb3{bottom:338.923733pt;}
.y15e{bottom:339.015600pt;}
.y1bc{bottom:343.531200pt;}
.y18d{bottom:344.615600pt;}
.y94{bottom:349.999333pt;}
.y20{bottom:351.203867pt;}
.ye1{bottom:351.412000pt;}
.ycc{bottom:352.078667pt;}
.yb2{bottom:352.257067pt;}
.y132{bottom:352.615600pt;}
.y15d{bottom:353.815600pt;}
.y1bb{bottom:355.797867pt;}
.y18c{bottom:356.615600pt;}
.y71{bottom:360.728400pt;}
.y93{bottom:364.666000pt;}
.ycb{bottom:365.412000pt;}
.yb1{bottom:365.590400pt;}
.y1f{bottom:365.870533pt;}
.y131{bottom:367.282267pt;}
.y1ba{bottom:368.064533pt;}
.y15c{bottom:368.615600pt;}
.y70{bottom:375.395067pt;}
.yb0{bottom:378.923733pt;}
.y92{bottom:379.332667pt;}
.y1b9{bottom:380.331200pt;}
.y1e{bottom:380.537200pt;}
.y18b{bottom:380.615600pt;}
.y130{bottom:381.948933pt;}
.y15b{bottom:383.415600pt;}
.yaf{bottom:392.257067pt;}
.y1b8{bottom:392.597867pt;}
.y18a{bottom:392.615600pt;}
.y91{bottom:393.999333pt;}
.yca{bottom:394.997333pt;}
.y1d{bottom:395.203867pt;}
.y12f{bottom:396.615600pt;}
.y15a{bottom:398.215600pt;}
.y189{bottom:404.615600pt;}
.y6f{bottom:404.728400pt;}
.y1b7{bottom:404.864533pt;}
.yae{bottom:405.590400pt;}
.yc9{bottom:408.330667pt;}
.y90{bottom:408.666000pt;}
.y1c{bottom:409.870533pt;}
.y12e{bottom:411.282267pt;}
.y159{bottom:413.015600pt;}
.y188{bottom:416.615600pt;}
.y1b6{bottom:416.997867pt;}
.yad{bottom:418.923733pt;}
.y6e{bottom:419.395067pt;}
.yc8{bottom:421.664000pt;}
.y8f{bottom:423.332667pt;}
.y1b{bottom:424.537200pt;}
.y12d{bottom:425.948933pt;}
.y158{bottom:427.815600pt;}
.y187{bottom:428.615600pt;}
.y1b5{bottom:429.131200pt;}
.yac{bottom:432.257067pt;}
.y6d{bottom:434.061733pt;}
.yc7{bottom:434.997333pt;}
.y8e{bottom:437.999333pt;}
.y1a{bottom:439.203867pt;}
.y12c{bottom:440.615600pt;}
.y1b4{bottom:441.264533pt;}
.y157{bottom:442.615600pt;}
.yab{bottom:445.590400pt;}
.y6c{bottom:448.728400pt;}
.y186{bottom:452.615600pt;}
.y8d{bottom:452.666000pt;}
.y1b3{bottom:453.397867pt;}
.y19{bottom:453.870533pt;}
.y12b{bottom:455.282267pt;}
.y156{bottom:457.415600pt;}
.yaa{bottom:458.923733pt;}
.y6b{bottom:463.395067pt;}
.y185{bottom:464.615600pt;}
.y1b2{bottom:465.531200pt;}
.y8c{bottom:467.332667pt;}
.y18{bottom:468.537200pt;}
.y155{bottom:472.215600pt;}
.ya9{bottom:472.257067pt;}
.y184{bottom:476.615600pt;}
.y1b1{bottom:477.664533pt;}
.y6a{bottom:478.061733pt;}
.y8b{bottom:481.999333pt;}
.y17{bottom:483.203867pt;}
.y12a{bottom:484.615600pt;}
.ya8{bottom:485.590400pt;}
.y154{bottom:487.015600pt;}
.y183{bottom:488.615600pt;}
.y1b0{bottom:489.797867pt;}
.y69{bottom:492.728400pt;}
.y8a{bottom:496.666000pt;}
.y16{bottom:497.870533pt;}
.ya7{bottom:498.923733pt;}
.y182{bottom:500.615600pt;}
.y153{bottom:501.815600pt;}
.y1af{bottom:501.931200pt;}
.y68{bottom:507.395067pt;}
.y89{bottom:511.332667pt;}
.ya6{bottom:512.257067pt;}
.y15{bottom:512.537200pt;}
.y181{bottom:512.615600pt;}
.y1ae{bottom:514.064533pt;}
.y152{bottom:516.615600pt;}
.y129{bottom:518.482267pt;}
.y67{bottom:522.061733pt;}
.y180{bottom:524.615600pt;}
.y1ad{bottom:526.197867pt;}
.y14{bottom:527.203867pt;}
.y151{bottom:531.415600pt;}
.y128{bottom:533.148933pt;}
.y17f{bottom:536.615600pt;}
.y66{bottom:536.728400pt;}
.y1ac{bottom:538.331200pt;}
.y13{bottom:541.870533pt;}
.y88{bottom:543.039200pt;}
.y150{bottom:546.215600pt;}
.y127{bottom:547.815600pt;}
.y1ab{bottom:550.464533pt;}
.y65{bottom:551.395067pt;}
.y87{bottom:555.039200pt;}
.y12{bottom:556.537200pt;}
.y17e{bottom:559.282267pt;}
.y14f{bottom:561.015600pt;}
.y126{bottom:562.482267pt;}
.y1aa{bottom:562.597867pt;}
.y64{bottom:566.061733pt;}
.y86{bottom:568.372533pt;}
.y11{bottom:571.203867pt;}
.y1a9{bottom:574.731200pt;}
.y14e{bottom:575.815600pt;}
.y125{bottom:577.148933pt;}
.y63{bottom:580.728400pt;}
.y85{bottom:581.705867pt;}
.y10{bottom:585.870533pt;}
.y1a8{bottom:586.997867pt;}
.y14d{bottom:590.615600pt;}
.y124{bottom:591.815600pt;}
.y84{bottom:595.039200pt;}
.y62{bottom:595.395067pt;}
.y1a7{bottom:599.264533pt;}
.yf{bottom:600.537200pt;}
.y17d{bottom:605.148933pt;}
.y14c{bottom:605.415600pt;}
.y123{bottom:606.482267pt;}
.y83{bottom:608.372533pt;}
.y61{bottom:610.061733pt;}
.y1a6{bottom:611.531200pt;}
.ye{bottom:615.203867pt;}
.y17c{bottom:618.482267pt;}
.y14b{bottom:620.215600pt;}
.y82{bottom:620.372533pt;}
.y122{bottom:621.148933pt;}
.y1a5{bottom:623.797867pt;}
.y60{bottom:624.728400pt;}
.yd{bottom:629.870533pt;}
.y17b{bottom:631.815600pt;}
.y81{bottom:633.705867pt;}
.y14a{bottom:635.015600pt;}
.y121{bottom:635.815600pt;}
.y1a4{bottom:636.064533pt;}
.y5f{bottom:639.395067pt;}
.y17a{bottom:645.148933pt;}
.y80{bottom:647.039200pt;}
.y1a3{bottom:648.331200pt;}
.y149{bottom:649.815600pt;}
.y120{bottom:650.482267pt;}
.y5e{bottom:654.061733pt;}
.y179{bottom:658.482267pt;}
.yc{bottom:659.203867pt;}
.y1a2{bottom:660.597867pt;}
.y148{bottom:664.615600pt;}
.y11f{bottom:665.148933pt;}
.y5d{bottom:668.728400pt;}
.y178{bottom:671.815600pt;}
.yb{bottom:672.537200pt;}
.y1a1{bottom:672.864533pt;}
.y147{bottom:679.415600pt;}
.y11e{bottom:679.815600pt;}
.y5c{bottom:683.395067pt;}
.y1a0{bottom:685.131200pt;}
.y177{bottom:685.148933pt;}
.ya{bottom:685.870533pt;}
.y146{bottom:694.215600pt;}
.y11d{bottom:694.482267pt;}
.y19f{bottom:697.397867pt;}
.y5b{bottom:698.061733pt;}
.y176{bottom:698.482267pt;}
.y9{bottom:699.203867pt;}
.y145{bottom:709.015600pt;}
.y11c{bottom:709.148933pt;}
.y19e{bottom:709.531200pt;}
.y175{bottom:711.815600pt;}
.y5a{bottom:712.728400pt;}
.y8{bottom:716.497200pt;}
.y19d{bottom:721.664533pt;}
.y11b{bottom:723.815600pt;}
.y174{bottom:725.148933pt;}
.y7{bottom:725.870533pt;}
.y59{bottom:727.395067pt;}
.y19c{bottom:733.797867pt;}
.y11a{bottom:738.482267pt;}
.y58{bottom:742.061733pt;}
.y6{bottom:743.163867pt;}
.y19b{bottom:745.931200pt;}
.y173{bottom:751.815600pt;}
.y119{bottom:753.148933pt;}
.y5{bottom:756.497200pt;}
.y57{bottom:756.728400pt;}
.y19a{bottom:758.064533pt;}
.y118{bottom:767.815600pt;}
.y199{bottom:770.197867pt;}
.y56{bottom:771.395067pt;}
.y172{bottom:775.815600pt;}
.y4{bottom:780.537200pt;}
.y198{bottom:782.331200pt;}
.y117{bottom:782.482267pt;}
.y55{bottom:786.061733pt;}
.y171{bottom:789.148933pt;}
.y197{bottom:794.464533pt;}
.y116{bottom:797.148933pt;}
.y170{bottom:802.482267pt;}
.y196{bottom:806.597867pt;}
.y115{bottom:811.815600pt;}
.y3{bottom:814.403867pt;}
.y54{bottom:815.395067pt;}
.y195{bottom:818.731200pt;}
.y114{bottom:826.482267pt;}
.y53{bottom:828.728400pt;}
.y194{bottom:830.864533pt;}
.y2{bottom:836.803867pt;}
.y113{bottom:841.148933pt;}
.y193{bottom:842.997867pt;}
.y52{bottom:846.021600pt;}
.y1{bottom:878.931200pt;}
.y2e{bottom:878.944133pt;}
.h6{height:19.330312pt;}
.hf{height:29.645833pt;}
.he{height:32.531250pt;}
.h7{height:33.328125pt;}
.hd{height:33.351562pt;}
.h8{height:37.057292pt;}
.h2{height:37.109025pt;}
.hc{height:37.437500pt;}
.hb{height:42.117188pt;}
.ha{height:43.375000pt;}
.h9{height:46.796875pt;}
.h5{height:48.144375pt;}
.h3{height:54.359375pt;}
.h4{height:54.687500pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.xd{left:75.362667pt;}
.x1{left:76.285867pt;}
.x2{left:82.106933pt;}
.x6{left:86.709733pt;}
.x5{left:94.488267pt;}
.x3{left:180.111467pt;}
.x9{left:183.581067pt;}
.x7{left:208.444133pt;}
.x8{left:209.637067pt;}
.x4{left:216.355733pt;}
.xc{left:290.355067pt;}
.xa{left:340.157467pt;}
.xb{left:359.055067pt;}
.xe{left:426.850400pt;}
}




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