
    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_e7301e1a54ad9d7e60e33f63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_23acabf283f498dfb6b76ec2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_93fdf580e321309e7cf9838f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.912020;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_09a09d7a8ae23db75187300f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.795000;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_5d3da9f1a240d4eaa76eaf68.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928000;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_388cc3d14e2bb32df1d631db.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_c2386a1a03e3ce42731e634b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728000;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_0f6b101781379b988af43a94.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_8f8d58389489968f4a8acc8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.896000;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_65543c53a7a941114e797156.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.132000;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_cb687cb577561a54984a83ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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_da5c508df92a7513966f8c21.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.935000;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_3d019c467afb492e65da63d0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;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:ffe;src:url('chunks/assets/font_3bad09ab104ea11bc333b1c7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942000;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:fff;src:url('chunks/assets/font_2eac346174df38e5c8f109fc.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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:ff10;src:url('chunks/assets/font_a95135da08168a01870c3f8d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.020000px;}
.v1{vertical-align:26.613000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000096px;}
.ls4{letter-spacing:0.026400px;}
.ls5{letter-spacing:0.037200px;}
.ls7{letter-spacing:0.080400px;}
.ls3{letter-spacing:0.756000px;}
.ls1{letter-spacing:2.268000px;}
.ls6{letter-spacing:39.582000px;}
.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;}
}
.ws1{word-spacing:-15.012000px;}
.wsa1{word-spacing:-5.940000px;}
.ws8a{word-spacing:-5.508000px;}
.ws9d{word-spacing:-4.752000px;}
.wsf{word-spacing:-4.644000px;}
.wsb9{word-spacing:-4.590000px;}
.wsbd{word-spacing:-4.482000px;}
.ws55{word-spacing:-4.320000px;}
.ws2d{word-spacing:-3.942000px;}
.ws10{word-spacing:-3.834000px;}
.ws25{word-spacing:-3.726000px;}
.ws5e{word-spacing:-3.618000px;}
.ws27{word-spacing:-3.456000px;}
.ws60{word-spacing:-3.402000px;}
.ws9a{word-spacing:-3.240000px;}
.ws19{word-spacing:-3.186000px;}
.ws91{word-spacing:-2.970000px;}
.ws5f{word-spacing:-2.916000px;}
.wsc4{word-spacing:-2.862000px;}
.ws7c{word-spacing:-2.808000px;}
.ws7{word-spacing:-2.784000px;}
.ws5c{word-spacing:-2.700000px;}
.ws1f{word-spacing:-2.646000px;}
.wsb8{word-spacing:-2.538000px;}
.wsc{word-spacing:-2.448000px;}
.ws0{word-spacing:-2.442000px;}
.ws39{word-spacing:-2.430000px;}
.ws7d{word-spacing:-2.376000px;}
.ws81{word-spacing:-2.322000px;}
.wsc1{word-spacing:-2.268000px;}
.ws6{word-spacing:-2.208000px;}
.ws68{word-spacing:-2.160000px;}
.ws1b{word-spacing:-2.052000px;}
.ws5b{word-spacing:-1.944000px;}
.wsc5{word-spacing:-1.836000px;}
.ws9c{word-spacing:-1.728000px;}
.wsa9{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.584000px;}
.ws96{word-spacing:-1.566000px;}
.ws4b{word-spacing:-1.512000px;}
.ws28{word-spacing:-1.458000px;}
.ws45{word-spacing:-1.350000px;}
.ws11{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.242000px;}
.ws89{word-spacing:-1.188000px;}
.ws66{word-spacing:-1.080000px;}
.ws56{word-spacing:-0.972000px;}
.wsaf{word-spacing:-0.864000px;}
.ws8b{word-spacing:-0.810000px;}
.ws71{word-spacing:-0.768000px;}
.ws63{word-spacing:-0.756000px;}
.ws4f{word-spacing:-0.648000px;}
.wsa6{word-spacing:-0.594000px;}
.ws83{word-spacing:-0.540000px;}
.ws8d{word-spacing:-0.486000px;}
.ws26{word-spacing:-0.432000px;}
.ws93{word-spacing:-0.270000px;}
.ws4e{word-spacing:-0.216000px;}
.wsb0{word-spacing:-0.162000px;}
.ws2{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsb4{word-spacing:0.108000px;}
.ws8c{word-spacing:0.162000px;}
.ws5d{word-spacing:0.270000px;}
.ws51{word-spacing:0.324000px;}
.wsa3{word-spacing:0.378000px;}
.ws9b{word-spacing:0.432000px;}
.wsb6{word-spacing:0.486000px;}
.ws37{word-spacing:0.540000px;}
.ws6c{word-spacing:0.594000px;}
.wsd{word-spacing:0.624000px;}
.ws8f{word-spacing:0.648000px;}
.ws42{word-spacing:0.756000px;}
.ws12{word-spacing:0.864000px;}
.ws2c{word-spacing:0.918000px;}
.ws22{word-spacing:0.972000px;}
.ws8e{word-spacing:1.080000px;}
.ws2f{word-spacing:1.134000px;}
.ws35{word-spacing:1.242000px;}
.ws78{word-spacing:1.248000px;}
.ws84{word-spacing:1.296000px;}
.wsa0{word-spacing:1.404000px;}
.ws29{word-spacing:1.512000px;}
.ws3a{word-spacing:1.566000px;}
.ws70{word-spacing:1.632000px;}
.ws16{word-spacing:1.674000px;}
.ws86{word-spacing:1.728000px;}
.ws46{word-spacing:1.782000px;}
.ws5a{word-spacing:1.836000px;}
.ws67{word-spacing:1.890000px;}
.ws38{word-spacing:1.944000px;}
.ws15{word-spacing:2.106000px;}
.ws14{word-spacing:2.160000px;}
.ws4c{word-spacing:2.214000px;}
.wsa7{word-spacing:2.268000px;}
.ws32{word-spacing:2.322000px;}
.wse{word-spacing:2.352000px;}
.ws40{word-spacing:2.376000px;}
.ws43{word-spacing:2.430000px;}
.wsb2{word-spacing:2.484000px;}
.ws7e{word-spacing:2.538000px;}
.ws2b{word-spacing:2.592000px;}
.ws24{word-spacing:2.754000px;}
.ws73{word-spacing:2.862000px;}
.ws90{word-spacing:2.970000px;}
.ws85{word-spacing:3.078000px;}
.wsa5{word-spacing:3.132000px;}
.ws94{word-spacing:3.186000px;}
.ws33{word-spacing:3.240000px;}
.ws95{word-spacing:3.294000px;}
.ws88{word-spacing:3.348000px;}
.ws3f{word-spacing:3.402000px;}
.ws6d{word-spacing:3.456000px;}
.ws82{word-spacing:3.510000px;}
.ws9{word-spacing:3.552000px;}
.ws13{word-spacing:3.564000px;}
.ws57{word-spacing:3.618000px;}
.ws69{word-spacing:3.780000px;}
.ws3c{word-spacing:3.834000px;}
.ws41{word-spacing:3.888000px;}
.ws98{word-spacing:3.942000px;}
.ws23{word-spacing:3.996000px;}
.ws52{word-spacing:4.212000px;}
.ws61{word-spacing:4.266000px;}
.ws1c{word-spacing:4.320000px;}
.ws36{word-spacing:4.374000px;}
.ws6a{word-spacing:4.428000px;}
.ws54{word-spacing:4.482000px;}
.ws44{word-spacing:4.536000px;}
.ws72{word-spacing:4.608000px;}
.ws4a{word-spacing:4.644000px;}
.wsa2{word-spacing:4.698000px;}
.ws1a{word-spacing:4.752000px;}
.ws4d{word-spacing:4.914000px;}
.ws5{word-spacing:4.992000px;}
.ws3e{word-spacing:5.130000px;}
.ws1e{word-spacing:5.238000px;}
.ws79{word-spacing:5.328000px;}
.ws99{word-spacing:5.346000px;}
.ws47{word-spacing:5.400000px;}
.ws1d{word-spacing:5.508000px;}
.ws75{word-spacing:5.562000px;}
.ws17{word-spacing:5.616000px;}
.ws65{word-spacing:5.724000px;}
.wsab{word-spacing:5.832000px;}
.ws50{word-spacing:5.886000px;}
.ws74{word-spacing:5.940000px;}
.ws6f{word-spacing:5.952000px;}
.wsb1{word-spacing:5.994000px;}
.ws8{word-spacing:6.000000px;}
.wsbf{word-spacing:6.048000px;}
.ws9f{word-spacing:6.102000px;}
.wsb5{word-spacing:6.210000px;}
.ws3b{word-spacing:6.264000px;}
.ws31{word-spacing:6.318000px;}
.ws53{word-spacing:6.372000px;}
.wsaa{word-spacing:6.426000px;}
.ws92{word-spacing:6.480000px;}
.ws77{word-spacing:6.528000px;}
.ws58{word-spacing:6.534000px;}
.ws6b{word-spacing:6.642000px;}
.wsc6{word-spacing:6.696000px;}
.ws80{word-spacing:6.804000px;}
.wsad{word-spacing:6.858000px;}
.wsb7{word-spacing:7.020000px;}
.ws87{word-spacing:7.290000px;}
.wsa{word-spacing:7.296000px;}
.ws30{word-spacing:7.344000px;}
.ws59{word-spacing:7.452000px;}
.ws7b{word-spacing:7.506000px;}
.ws34{word-spacing:7.884000px;}
.wsae{word-spacing:7.992000px;}
.ws7a{word-spacing:8.262000px;}
.ws4{word-spacing:8.352000px;}
.ws9e{word-spacing:8.532000px;}
.ws97{word-spacing:8.586000px;}
.ws6e{word-spacing:8.592000px;}
.ws20{word-spacing:8.748000px;}
.ws76{word-spacing:8.964000px;}
.wsac{word-spacing:9.018000px;}
.ws64{word-spacing:9.180000px;}
.ws21{word-spacing:9.288000px;}
.wsa8{word-spacing:9.396000px;}
.ws2a{word-spacing:9.666000px;}
.wsba{word-spacing:9.720000px;}
.wsc0{word-spacing:9.936000px;}
.wsa4{word-spacing:10.422000px;}
.wsb3{word-spacing:10.746000px;}
.ws3d{word-spacing:11.070000px;}
.ws7f{word-spacing:11.124000px;}
.ws62{word-spacing:11.664000px;}
.ws49{word-spacing:12.474000px;}
.ws48{word-spacing:14.526000px;}
.ws18{word-spacing:14.634000px;}
.wsc7{word-spacing:16.740000px;}
.wsbc{word-spacing:22.950000px;}
.wsc2{word-spacing:23.868000px;}
.wsbb{word-spacing:28.026000px;}
.wsbe{word-spacing:33.750000px;}
.wsc3{word-spacing:39.420000px;}
._b{margin-left:-889.448400px;}
._16{margin-left:-55.290000px;}
._13{margin-left:-37.962000px;}
._11{margin-left:-18.246000px;}
._a{margin-left:-16.740000px;}
._15{margin-left:-14.671920px;}
._4{margin-left:-7.974000px;}
._7{margin-left:-6.588000px;}
._5{margin-left:-5.184000px;}
._1{margin-left:-3.694080px;}
._0{margin-left:-2.220000px;}
._3{margin-left:-1.020000px;}
._8{width:1.896000px;}
._9{width:3.312000px;}
._2{width:8.352000px;}
._14{width:12.826080px;}
._12{width:23.274000px;}
._6{width:33.520008px;}
._d{width:48.492000px;}
._f{width:49.518000px;}
._c{width:51.516000px;}
._e{width:64.530000px;}
._10{width:68.526000px;}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(90,87,88);}
.fc0{color:rgb(79,76,77);}
.fs7{font-size:20.988000px;}
.fs9{font-size:27.984000px;}
.fs8{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:46.593600px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:79.920000px;}
.y0{bottom:0.000000px;}
.y32{bottom:63.782250px;}
.y11a{bottom:67.095750px;}
.y152{bottom:67.101600px;}
.y97{bottom:67.105050px;}
.y195{bottom:67.109250px;}
.y6a{bottom:67.112250px;}
.y170{bottom:67.113750px;}
.y31{bottom:67.121250px;}
.y30{bottom:106.299150px;}
.yf4{bottom:109.296300px;}
.yc1{bottom:110.698350px;}
.y151{bottom:113.325600px;}
.y2f{bottom:120.096150px;}
.y96{bottom:123.224550px;}
.yc0{bottom:126.826350px;}
.y69{bottom:127.268250px;}
.y150{bottom:129.525600px;}
.ybf{bottom:142.954350px;}
.y68{bottom:143.468250px;}
.yf3{bottom:146.856150px;}
.y95{bottom:147.929550px;}
.y16f{bottom:157.901250px;}
.y2e{bottom:159.102000px;}
.y67{bottom:159.668250px;}
.y14f{bottom:162.735600px;}
.yf2{bottom:163.056150px;}
.ybe{bottom:171.831000px;}
.y94{bottom:172.634550px;}
.y16e{bottom:174.101250px;}
.y2d{bottom:175.302000px;}
.y14e{bottom:178.935600px;}
.yf1{bottom:179.256150px;}
.y93{bottom:188.834550px;}
.y2c{bottom:191.502000px;}
.y66{bottom:192.878250px;}
.y16d{bottom:194.553750px;}
.y14d{bottom:195.135600px;}
.yf0{bottom:195.456150px;}
.y119{bottom:199.301250px;}
.ybd{bottom:205.041000px;}
.y2b{bottom:207.702000px;}
.y65{bottom:209.078250px;}
.y16c{bottom:210.753750px;}
.y92{bottom:213.539550px;}
.y118{bottom:215.501250px;}
.ybc{bottom:221.241000px;}
.y2a{bottom:223.902000px;}
.y64{bottom:225.278250px;}
.y14c{bottom:228.345600px;}
.yef{bottom:228.666150px;}
.y16b{bottom:231.206250px;}
.y117{bottom:231.701250px;}
.ybb{bottom:237.441000px;}
.y91{bottom:238.244550px;}
.y29{bottom:240.102000px;}
.y63{bottom:241.478250px;}
.y14b{bottom:244.545600px;}
.yee{bottom:244.866150px;}
.y16a{bottom:247.406250px;}
.y116{bottom:247.901250px;}
.yba{bottom:253.641000px;}
.y90{bottom:254.444550px;}
.y28{bottom:256.302000px;}
.y62{bottom:257.678250px;}
.y14a{bottom:260.745600px;}
.yed{bottom:261.066150px;}
.y169{bottom:263.606250px;}
.y27{bottom:272.502000px;}
.y61{bottom:273.878250px;}
.y149{bottom:276.945600px;}
.yec{bottom:277.266150px;}
.y8f{bottom:279.149550px;}
.y115{bottom:281.111250px;}
.y168{bottom:284.058750px;}
.yb9{bottom:286.851000px;}
.y26{bottom:288.702000px;}
.y60{bottom:290.078250px;}
.y148{bottom:293.145600px;}
.yeb{bottom:293.466150px;}
.y8e{bottom:295.349550px;}
.y114{bottom:297.311250px;}
.y167{bottom:300.258750px;}
.yb8{bottom:303.051000px;}
.y25{bottom:304.902000px;}
.y5f{bottom:306.278250px;}
.y147{bottom:309.345600px;}
.yea{bottom:309.666150px;}
.y113{bottom:313.511250px;}
.y166{bottom:316.458750px;}
.yb7{bottom:319.251000px;}
.y8d{bottom:320.054550px;}
.y24{bottom:321.102000px;}
.y5e{bottom:322.478250px;}
.y146{bottom:325.545600px;}
.ye9{bottom:325.866150px;}
.y112{bottom:329.711250px;}
.yb6{bottom:335.451000px;}
.y23{bottom:337.302000px;}
.y5d{bottom:338.678250px;}
.y145{bottom:341.745600px;}
.ye8{bottom:342.066150px;}
.y8c{bottom:344.759550px;}
.y111{bottom:345.911250px;}
.y165{bottom:349.666650px;}
.y22{bottom:353.502000px;}
.y5c{bottom:354.878250px;}
.y144{bottom:357.945600px;}
.ye7{bottom:358.266150px;}
.y8b{bottom:360.959550px;}
.y110{bottom:362.111250px;}
.yb5{bottom:368.658900px;}
.y21{bottom:369.702000px;}
.y5b{bottom:371.078250px;}
.y143{bottom:374.145600px;}
.ye6{bottom:374.466150px;}
.y10f{bottom:378.311250px;}
.y8a{bottom:385.664550px;}
.y20{bottom:385.902000px;}
.y142{bottom:390.345600px;}
.y194{bottom:401.801250px;}
.y89{bottom:401.864550px;}
.y164{bottom:403.478250px;}
.y5a{bottom:404.288250px;}
.y141{bottom:406.545600px;}
.ye5{bottom:407.676150px;}
.y10e{bottom:411.521250px;}
.y193{bottom:418.001250px;}
.yb4{bottom:418.203750px;}
.y1f{bottom:419.112000px;}
.y163{bottom:419.678250px;}
.y59{bottom:420.488250px;}
.y140{bottom:422.745600px;}
.ye4{bottom:423.876150px;}
.y10d{bottom:427.721250px;}
.yb3{bottom:434.403750px;}
.y88{bottom:435.074550px;}
.y1e{bottom:435.312000px;}
.y162{bottom:435.878250px;}
.y58{bottom:436.688250px;}
.y192{bottom:438.453750px;}
.y13f{bottom:438.945600px;}
.ye3{bottom:440.076150px;}
.y10c{bottom:443.921250px;}
.yb2{bottom:450.603750px;}
.y87{bottom:451.274550px;}
.y1d{bottom:451.512000px;}
.y57{bottom:452.888250px;}
.y191{bottom:454.653750px;}
.ye2{bottom:456.276150px;}
.y10b{bottom:460.121250px;}
.y86{bottom:467.474550px;}
.y1c{bottom:467.712000px;}
.y56{bottom:469.088250px;}
.y190{bottom:470.853750px;}
.y13e{bottom:472.155600px;}
.ye1{bottom:472.476150px;}
.y10a{bottom:476.321250px;}
.y85{bottom:483.674550px;}
.yb1{bottom:483.813750px;}
.y1b{bottom:483.912000px;}
.y161{bottom:485.288250px;}
.y13d{bottom:488.355600px;}
.ye0{bottom:488.676150px;}
.y18f{bottom:491.306250px;}
.yb0{bottom:500.013750px;}
.y1a{bottom:500.112000px;}
.y160{bottom:501.488250px;}
.y55{bottom:502.298250px;}
.y13c{bottom:504.555600px;}
.ydf{bottom:504.876150px;}
.y18e{bottom:507.506250px;}
.y109{bottom:509.531250px;}
.yaf{bottom:516.213750px;}
.y84{bottom:516.882450px;}
.y15f{bottom:517.688250px;}
.y54{bottom:518.498250px;}
.y13b{bottom:520.755600px;}
.y108{bottom:525.731250px;}
.y18d{bottom:527.958750px;}
.yae{bottom:532.413750px;}
.y19{bottom:533.319900px;}
.y15e{bottom:533.888250px;}
.y53{bottom:534.698250px;}
.y13a{bottom:536.955600px;}
.yde{bottom:538.086150px;}
.y107{bottom:541.931250px;}
.y18c{bottom:548.411250px;}
.yad{bottom:548.613750px;}
.y15d{bottom:550.088250px;}
.y52{bottom:550.898250px;}
.y139{bottom:553.155600px;}
.ydd{bottom:554.286150px;}
.y106{bottom:558.131250px;}
.y18b{bottom:564.611250px;}
.y15c{bottom:566.288250px;}
.y51{bottom:567.098250px;}
.y138{bottom:569.355600px;}
.ydc{bottom:570.486150px;}
.y83{bottom:570.686250px;}
.yac{bottom:581.823750px;}
.y50{bottom:583.298250px;}
.y18a{bottom:585.063750px;}
.y137{bottom:585.555600px;}
.ydb{bottom:586.686150px;}
.y82{bottom:586.886250px;}
.y18{bottom:587.139300px;}
.y105{bottom:591.341250px;}
.y4f{bottom:599.498250px;}
.y189{bottom:601.263750px;}
.yab{bottom:602.276250px;}
.y81{bottom:603.086250px;}
.y17{bottom:614.295300px;}
.y4e{bottom:615.698250px;}
.y104{bottom:616.046250px;}
.y188{bottom:617.463750px;}
.y136{bottom:618.765600px;}
.y80{bottom:619.286250px;}
.yda{bottom:619.896150px;}
.yaa{bottom:622.728750px;}
.y16{bottom:630.795300px;}
.y15b{bottom:631.898250px;}
.y135{bottom:634.965600px;}
.yd9{bottom:636.096150px;}
.y187{bottom:637.916250px;}
.y103{bottom:640.751250px;}
.ya9{bottom:643.181250px;}
.y15{bottom:647.295300px;}
.y15a{bottom:648.098250px;}
.y4d{bottom:648.906150px;}
.y134{bottom:651.165600px;}
.yd8{bottom:652.296150px;}
.y7f{bottom:652.496250px;}
.y186{bottom:654.116250px;}
.ya8{bottom:663.633750px;}
.y14{bottom:663.795300px;}
.y159{bottom:664.298250px;}
.y102{bottom:665.456250px;}
.y133{bottom:667.365600px;}
.yd7{bottom:668.496150px;}
.y7e{bottom:668.696250px;}
.y185{bottom:670.316250px;}
.y13{bottom:680.295300px;}
.y132{bottom:683.565600px;}
.ya7{bottom:684.086250px;}
.yd6{bottom:684.696150px;}
.y7d{bottom:684.896250px;}
.y101{bottom:690.161250px;}
.y184{bottom:690.768750px;}
.y12{bottom:696.795300px;}
.y158{bottom:697.506150px;}
.yd5{bottom:700.896150px;}
.y7c{bottom:701.096250px;}
.y4c{bottom:702.716250px;}
.ya6{bottom:704.538750px;}
.y183{bottom:706.968750px;}
.y100{bottom:714.866250px;}
.y131{bottom:716.775600px;}
.yd4{bottom:717.096150px;}
.y7b{bottom:717.296250px;}
.y4b{bottom:718.916250px;}
.ya5{bottom:724.991250px;}
.y182{bottom:727.421250px;}
.y11{bottom:730.299300px;}
.y130{bottom:732.975600px;}
.yd3{bottom:733.296150px;}
.y7a{bottom:733.496250px;}
.y4a{bottom:735.116250px;}
.yff{bottom:739.571250px;}
.y181{bottom:743.621250px;}
.ya4{bottom:745.443750px;}
.y12f{bottom:749.175600px;}
.y79{bottom:749.696250px;}
.y49{bottom:751.316250px;}
.y10{bottom:757.455300px;}
.y180{bottom:764.073750px;}
.yfe{bottom:764.276250px;}
.y12e{bottom:765.375600px;}
.yd2{bottom:766.506150px;}
.y48{bottom:767.516250px;}
.yf{bottom:773.955300px;}
.ya3{bottom:778.653750px;}
.y12d{bottom:781.575600px;}
.yd1{bottom:782.706150px;}
.y78{bottom:782.906250px;}
.y47{bottom:783.716250px;}
.y17f{bottom:784.526250px;}
.yfd{bottom:788.981250px;}
.ye{bottom:790.455300px;}
.ya2{bottom:794.853750px;}
.y12c{bottom:797.775600px;}
.yd0{bottom:798.906150px;}
.y77{bottom:799.106250px;}
.y46{bottom:799.916250px;}
.y17e{bottom:800.726250px;}
.yd{bottom:806.955300px;}
.yfc{bottom:813.686250px;}
.y76{bottom:815.306250px;}
.y45{bottom:816.116250px;}
.y17d{bottom:821.178750px;}
.yc{bottom:823.455300px;}
.ya1{bottom:828.063750px;}
.y12b{bottom:830.985600px;}
.y75{bottom:831.506250px;}
.ycf{bottom:832.105050px;}
.y44{bottom:832.316250px;}
.y17c{bottom:837.378750px;}
.yfb{bottom:838.391250px;}
.yb{bottom:839.955300px;}
.ya0{bottom:844.263750px;}
.y12a{bottom:847.185600px;}
.yce{bottom:848.233050px;}
.y157{bottom:849.326250px;}
.y17b{bottom:853.578750px;}
.ya{bottom:856.455300px;}
.yfa{bottom:863.096250px;}
.y129{bottom:863.385600px;}
.ycd{bottom:864.361050px;}
.y74{bottom:864.716250px;}
.y43{bottom:865.526250px;}
.y17a{bottom:874.031250px;}
.y128{bottom:879.585600px;}
.ycc{bottom:880.489050px;}
.y73{bottom:880.916250px;}
.y42{bottom:881.726250px;}
.yf9{bottom:887.801250px;}
.y179{bottom:890.231250px;}
.y127{bottom:895.785600px;}
.y72{bottom:897.116250px;}
.y41{bottom:897.926250px;}
.y9f{bottom:901.368750px;}
.y178{bottom:910.683750px;}
.y126{bottom:911.985600px;}
.yf8{bottom:912.506250px;}
.y71{bottom:913.316250px;}
.ycb{bottom:913.619700px;}
.y40{bottom:914.126250px;}
.y9e{bottom:917.568750px;}
.y9{bottom:923.979000px;}
.y177{bottom:926.883750px;}
.y125{bottom:928.185600px;}
.y70{bottom:929.516250px;}
.yca{bottom:929.819700px;}
.y156{bottom:930.326250px;}
.yf7{bottom:937.211250px;}
.y9d{bottom:938.021250px;}
.y8{bottom:941.964000px;}
.y155{bottom:946.526250px;}
.y3f{bottom:947.336250px;}
.y9c{bottom:954.221250px;}
.y7{bottom:961.089000px;}
.y124{bottom:961.395600px;}
.yf6{bottom:961.916250px;}
.y6f{bottom:962.726250px;}
.yc9{bottom:963.029700px;}
.y3e{bottom:963.536250px;}
.y9b{bottom:974.673750px;}
.y123{bottom:977.595600px;}
.y6e{bottom:978.926250px;}
.yc8{bottom:979.229700px;}
.y3d{bottom:979.736250px;}
.y176{bottom:983.988750px;}
.yf5{bottom:986.621250px;}
.y9a{bottom:990.873750px;}
.y122{bottom:993.795600px;}
.y6d{bottom:995.126250px;}
.yc7{bottom:995.429700px;}
.y3c{bottom:995.936250px;}
.y175{bottom:1000.188750px;}
.y121{bottom:1009.995600px;}
.y6c{bottom:1011.326250px;}
.yc6{bottom:1011.629700px;}
.y6{bottom:1011.994800px;}
.y3b{bottom:1012.136250px;}
.y174{bottom:1020.641250px;}
.y120{bottom:1026.195600px;}
.y154{bottom:1027.526250px;}
.y3a{bottom:1028.336250px;}
.y5{bottom:1035.970800px;}
.y173{bottom:1036.841250px;}
.y11f{bottom:1042.395600px;}
.y153{bottom:1043.726250px;}
.y39{bottom:1044.536250px;}
.yc5{bottom:1044.828600px;}
.y172{bottom:1057.293750px;}
.y11e{bottom:1058.595600px;}
.y38{bottom:1060.736250px;}
.yc4{bottom:1060.956600px;}
.y171{bottom:1073.493750px;}
.y11d{bottom:1074.795600px;}
.y6b{bottom:1076.936250px;}
.yc3{bottom:1077.084600px;}
.y99{bottom:1085.441250px;}
.y11c{bottom:1090.995600px;}
.yc2{bottom:1093.212600px;}
.y37{bottom:1093.946250px;}
.y98{bottom:1101.641250px;}
.y36{bottom:1110.146250px;}
.y11b{bottom:1124.203500px;}
.y35{bottom:1126.346250px;}
.y4{bottom:1135.984200px;}
.y3{bottom:1148.584200px;}
.y2{bottom:1161.184200px;}
.y34{bottom:1177.794750px;}
.y1{bottom:1178.036250px;}
.y33{bottom:1198.247250px;}
.hb{height:16.496568px;}
.hc{height:28.296000px;}
.h3{height:30.618000px;}
.h8{height:35.088000px;}
.h7{height:37.728000px;}
.hd{height:40.554000px;}
.h6{height:43.860000px;}
.h10{height:44.256000px;}
.h13{height:44.292000px;}
.h5{height:45.120000px;}
.h16{height:45.150000px;}
.he{height:45.156000px;}
.h17{height:45.168000px;}
.hf{height:45.184800px;}
.h15{height:45.198600px;}
.h14{height:45.222000px;}
.ha{height:49.788000px;}
.h2{height:54.900000px;}
.h9{height:60.390000px;}
.h11{height:60.876000px;}
.h12{height:60.888000px;}
.h4{height:71.768160px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:106.299150px;}
.xa{left:119.055150px;}
.x9{left:127.559100px;}
.x10{left:146.691150px;}
.xf{left:155.193600px;}
.xe{left:316.510350px;}
.xc{left:341.401650px;}
.x8{left:485.002500px;}
.xd{left:488.095350px;}
.x1{left:545.523900px;}
.x4{left:598.129050px;}
.x6{left:599.302500px;}
.x7{left:638.496000px;}
.x2{left:670.642050px;}
.x3{left:703.927050px;}
.xb{left:786.614100px;}
@media print{
.v2{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.240000pt;}
.v1{vertical-align:23.656000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000085pt;}
.ls4{letter-spacing:0.023467pt;}
.ls5{letter-spacing:0.033067pt;}
.ls7{letter-spacing:0.071467pt;}
.ls3{letter-spacing:0.672000pt;}
.ls1{letter-spacing:2.016000pt;}
.ls6{letter-spacing:35.184000pt;}
.ws1{word-spacing:-13.344000pt;}
.wsa1{word-spacing:-5.280000pt;}
.ws8a{word-spacing:-4.896000pt;}
.ws9d{word-spacing:-4.224000pt;}
.wsf{word-spacing:-4.128000pt;}
.wsb9{word-spacing:-4.080000pt;}
.wsbd{word-spacing:-3.984000pt;}
.ws55{word-spacing:-3.840000pt;}
.ws2d{word-spacing:-3.504000pt;}
.ws10{word-spacing:-3.408000pt;}
.ws25{word-spacing:-3.312000pt;}
.ws5e{word-spacing:-3.216000pt;}
.ws27{word-spacing:-3.072000pt;}
.ws60{word-spacing:-3.024000pt;}
.ws9a{word-spacing:-2.880000pt;}
.ws19{word-spacing:-2.832000pt;}
.ws91{word-spacing:-2.640000pt;}
.ws5f{word-spacing:-2.592000pt;}
.wsc4{word-spacing:-2.544000pt;}
.ws7c{word-spacing:-2.496000pt;}
.ws7{word-spacing:-2.474667pt;}
.ws5c{word-spacing:-2.400000pt;}
.ws1f{word-spacing:-2.352000pt;}
.wsb8{word-spacing:-2.256000pt;}
.wsc{word-spacing:-2.176000pt;}
.ws0{word-spacing:-2.170667pt;}
.ws39{word-spacing:-2.160000pt;}
.ws7d{word-spacing:-2.112000pt;}
.ws81{word-spacing:-2.064000pt;}
.wsc1{word-spacing:-2.016000pt;}
.ws6{word-spacing:-1.962667pt;}
.ws68{word-spacing:-1.920000pt;}
.ws1b{word-spacing:-1.824000pt;}
.ws5b{word-spacing:-1.728000pt;}
.wsc5{word-spacing:-1.632000pt;}
.ws9c{word-spacing:-1.536000pt;}
.wsa9{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.408000pt;}
.ws96{word-spacing:-1.392000pt;}
.ws4b{word-spacing:-1.344000pt;}
.ws28{word-spacing:-1.296000pt;}
.ws45{word-spacing:-1.200000pt;}
.ws11{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.104000pt;}
.ws89{word-spacing:-1.056000pt;}
.ws66{word-spacing:-0.960000pt;}
.ws56{word-spacing:-0.864000pt;}
.wsaf{word-spacing:-0.768000pt;}
.ws8b{word-spacing:-0.720000pt;}
.ws71{word-spacing:-0.682667pt;}
.ws63{word-spacing:-0.672000pt;}
.ws4f{word-spacing:-0.576000pt;}
.wsa6{word-spacing:-0.528000pt;}
.ws83{word-spacing:-0.480000pt;}
.ws8d{word-spacing:-0.432000pt;}
.ws26{word-spacing:-0.384000pt;}
.ws93{word-spacing:-0.240000pt;}
.ws4e{word-spacing:-0.192000pt;}
.wsb0{word-spacing:-0.144000pt;}
.ws2{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.144000pt;}
.ws5d{word-spacing:0.240000pt;}
.ws51{word-spacing:0.288000pt;}
.wsa3{word-spacing:0.336000pt;}
.ws9b{word-spacing:0.384000pt;}
.wsb6{word-spacing:0.432000pt;}
.ws37{word-spacing:0.480000pt;}
.ws6c{word-spacing:0.528000pt;}
.wsd{word-spacing:0.554667pt;}
.ws8f{word-spacing:0.576000pt;}
.ws42{word-spacing:0.672000pt;}
.ws12{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.816000pt;}
.ws22{word-spacing:0.864000pt;}
.ws8e{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.008000pt;}
.ws35{word-spacing:1.104000pt;}
.ws78{word-spacing:1.109333pt;}
.ws84{word-spacing:1.152000pt;}
.wsa0{word-spacing:1.248000pt;}
.ws29{word-spacing:1.344000pt;}
.ws3a{word-spacing:1.392000pt;}
.ws70{word-spacing:1.450667pt;}
.ws16{word-spacing:1.488000pt;}
.ws86{word-spacing:1.536000pt;}
.ws46{word-spacing:1.584000pt;}
.ws5a{word-spacing:1.632000pt;}
.ws67{word-spacing:1.680000pt;}
.ws38{word-spacing:1.728000pt;}
.ws15{word-spacing:1.872000pt;}
.ws14{word-spacing:1.920000pt;}
.ws4c{word-spacing:1.968000pt;}
.wsa7{word-spacing:2.016000pt;}
.ws32{word-spacing:2.064000pt;}
.wse{word-spacing:2.090667pt;}
.ws40{word-spacing:2.112000pt;}
.ws43{word-spacing:2.160000pt;}
.wsb2{word-spacing:2.208000pt;}
.ws7e{word-spacing:2.256000pt;}
.ws2b{word-spacing:2.304000pt;}
.ws24{word-spacing:2.448000pt;}
.ws73{word-spacing:2.544000pt;}
.ws90{word-spacing:2.640000pt;}
.ws85{word-spacing:2.736000pt;}
.wsa5{word-spacing:2.784000pt;}
.ws94{word-spacing:2.832000pt;}
.ws33{word-spacing:2.880000pt;}
.ws95{word-spacing:2.928000pt;}
.ws88{word-spacing:2.976000pt;}
.ws3f{word-spacing:3.024000pt;}
.ws6d{word-spacing:3.072000pt;}
.ws82{word-spacing:3.120000pt;}
.ws9{word-spacing:3.157333pt;}
.ws13{word-spacing:3.168000pt;}
.ws57{word-spacing:3.216000pt;}
.ws69{word-spacing:3.360000pt;}
.ws3c{word-spacing:3.408000pt;}
.ws41{word-spacing:3.456000pt;}
.ws98{word-spacing:3.504000pt;}
.ws23{word-spacing:3.552000pt;}
.ws52{word-spacing:3.744000pt;}
.ws61{word-spacing:3.792000pt;}
.ws1c{word-spacing:3.840000pt;}
.ws36{word-spacing:3.888000pt;}
.ws6a{word-spacing:3.936000pt;}
.ws54{word-spacing:3.984000pt;}
.ws44{word-spacing:4.032000pt;}
.ws72{word-spacing:4.096000pt;}
.ws4a{word-spacing:4.128000pt;}
.wsa2{word-spacing:4.176000pt;}
.ws1a{word-spacing:4.224000pt;}
.ws4d{word-spacing:4.368000pt;}
.ws5{word-spacing:4.437333pt;}
.ws3e{word-spacing:4.560000pt;}
.ws1e{word-spacing:4.656000pt;}
.ws79{word-spacing:4.736000pt;}
.ws99{word-spacing:4.752000pt;}
.ws47{word-spacing:4.800000pt;}
.ws1d{word-spacing:4.896000pt;}
.ws75{word-spacing:4.944000pt;}
.ws17{word-spacing:4.992000pt;}
.ws65{word-spacing:5.088000pt;}
.wsab{word-spacing:5.184000pt;}
.ws50{word-spacing:5.232000pt;}
.ws74{word-spacing:5.280000pt;}
.ws6f{word-spacing:5.290667pt;}
.wsb1{word-spacing:5.328000pt;}
.ws8{word-spacing:5.333333pt;}
.wsbf{word-spacing:5.376000pt;}
.ws9f{word-spacing:5.424000pt;}
.wsb5{word-spacing:5.520000pt;}
.ws3b{word-spacing:5.568000pt;}
.ws31{word-spacing:5.616000pt;}
.ws53{word-spacing:5.664000pt;}
.wsaa{word-spacing:5.712000pt;}
.ws92{word-spacing:5.760000pt;}
.ws77{word-spacing:5.802667pt;}
.ws58{word-spacing:5.808000pt;}
.ws6b{word-spacing:5.904000pt;}
.wsc6{word-spacing:5.952000pt;}
.ws80{word-spacing:6.048000pt;}
.wsad{word-spacing:6.096000pt;}
.wsb7{word-spacing:6.240000pt;}
.ws87{word-spacing:6.480000pt;}
.wsa{word-spacing:6.485333pt;}
.ws30{word-spacing:6.528000pt;}
.ws59{word-spacing:6.624000pt;}
.ws7b{word-spacing:6.672000pt;}
.ws34{word-spacing:7.008000pt;}
.wsae{word-spacing:7.104000pt;}
.ws7a{word-spacing:7.344000pt;}
.ws4{word-spacing:7.424000pt;}
.ws9e{word-spacing:7.584000pt;}
.ws97{word-spacing:7.632000pt;}
.ws6e{word-spacing:7.637333pt;}
.ws20{word-spacing:7.776000pt;}
.ws76{word-spacing:7.968000pt;}
.wsac{word-spacing:8.016000pt;}
.ws64{word-spacing:8.160000pt;}
.ws21{word-spacing:8.256000pt;}
.wsa8{word-spacing:8.352000pt;}
.ws2a{word-spacing:8.592000pt;}
.wsba{word-spacing:8.640000pt;}
.wsc0{word-spacing:8.832000pt;}
.wsa4{word-spacing:9.264000pt;}
.wsb3{word-spacing:9.552000pt;}
.ws3d{word-spacing:9.840000pt;}
.ws7f{word-spacing:9.888000pt;}
.ws62{word-spacing:10.368000pt;}
.ws49{word-spacing:11.088000pt;}
.ws48{word-spacing:12.912000pt;}
.ws18{word-spacing:13.008000pt;}
.wsc7{word-spacing:14.880000pt;}
.wsbc{word-spacing:20.400000pt;}
.wsc2{word-spacing:21.216000pt;}
.wsbb{word-spacing:24.912000pt;}
.wsbe{word-spacing:30.000000pt;}
.wsc3{word-spacing:35.040000pt;}
._b{margin-left:-790.620800pt;}
._16{margin-left:-49.146667pt;}
._13{margin-left:-33.744000pt;}
._11{margin-left:-16.218667pt;}
._a{margin-left:-14.880000pt;}
._15{margin-left:-13.041707pt;}
._4{margin-left:-7.088000pt;}
._7{margin-left:-5.856000pt;}
._5{margin-left:-4.608000pt;}
._1{margin-left:-3.283627pt;}
._0{margin-left:-1.973333pt;}
._3{margin-left:-0.906667pt;}
._8{width:1.685333pt;}
._9{width:2.944000pt;}
._2{width:7.424000pt;}
._14{width:11.400960pt;}
._12{width:20.688000pt;}
._6{width:29.795563pt;}
._d{width:43.104000pt;}
._f{width:44.016000pt;}
._c{width:45.792000pt;}
._e{width:57.360000pt;}
._10{width:60.912000pt;}
.fs7{font-size:18.656000pt;}
.fs9{font-size:24.874667pt;}
.fs8{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:41.416533pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:71.040000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:56.695333pt;}
.y11a{bottom:59.640667pt;}
.y152{bottom:59.645867pt;}
.y97{bottom:59.648933pt;}
.y195{bottom:59.652667pt;}
.y6a{bottom:59.655333pt;}
.y170{bottom:59.656667pt;}
.y31{bottom:59.663333pt;}
.y30{bottom:94.488133pt;}
.yf4{bottom:97.152267pt;}
.yc1{bottom:98.398533pt;}
.y151{bottom:100.733867pt;}
.y2f{bottom:106.752133pt;}
.y96{bottom:109.532933pt;}
.yc0{bottom:112.734533pt;}
.y69{bottom:113.127333pt;}
.y150{bottom:115.133867pt;}
.ybf{bottom:127.070533pt;}
.y68{bottom:127.527333pt;}
.yf3{bottom:130.538800pt;}
.y95{bottom:131.492933pt;}
.y16f{bottom:140.356667pt;}
.y2e{bottom:141.424000pt;}
.y67{bottom:141.927333pt;}
.y14f{bottom:144.653867pt;}
.yf2{bottom:144.938800pt;}
.ybe{bottom:152.738667pt;}
.y94{bottom:153.452933pt;}
.y16e{bottom:154.756667pt;}
.y2d{bottom:155.824000pt;}
.y14e{bottom:159.053867pt;}
.yf1{bottom:159.338800pt;}
.y93{bottom:167.852933pt;}
.y2c{bottom:170.224000pt;}
.y66{bottom:171.447333pt;}
.y16d{bottom:172.936667pt;}
.y14d{bottom:173.453867pt;}
.yf0{bottom:173.738800pt;}
.y119{bottom:177.156667pt;}
.ybd{bottom:182.258667pt;}
.y2b{bottom:184.624000pt;}
.y65{bottom:185.847333pt;}
.y16c{bottom:187.336667pt;}
.y92{bottom:189.812933pt;}
.y118{bottom:191.556667pt;}
.ybc{bottom:196.658667pt;}
.y2a{bottom:199.024000pt;}
.y64{bottom:200.247333pt;}
.y14c{bottom:202.973867pt;}
.yef{bottom:203.258800pt;}
.y16b{bottom:205.516667pt;}
.y117{bottom:205.956667pt;}
.ybb{bottom:211.058667pt;}
.y91{bottom:211.772933pt;}
.y29{bottom:213.424000pt;}
.y63{bottom:214.647333pt;}
.y14b{bottom:217.373867pt;}
.yee{bottom:217.658800pt;}
.y16a{bottom:219.916667pt;}
.y116{bottom:220.356667pt;}
.yba{bottom:225.458667pt;}
.y90{bottom:226.172933pt;}
.y28{bottom:227.824000pt;}
.y62{bottom:229.047333pt;}
.y14a{bottom:231.773867pt;}
.yed{bottom:232.058800pt;}
.y169{bottom:234.316667pt;}
.y27{bottom:242.224000pt;}
.y61{bottom:243.447333pt;}
.y149{bottom:246.173867pt;}
.yec{bottom:246.458800pt;}
.y8f{bottom:248.132933pt;}
.y115{bottom:249.876667pt;}
.y168{bottom:252.496667pt;}
.yb9{bottom:254.978667pt;}
.y26{bottom:256.624000pt;}
.y60{bottom:257.847333pt;}
.y148{bottom:260.573867pt;}
.yeb{bottom:260.858800pt;}
.y8e{bottom:262.532933pt;}
.y114{bottom:264.276667pt;}
.y167{bottom:266.896667pt;}
.yb8{bottom:269.378667pt;}
.y25{bottom:271.024000pt;}
.y5f{bottom:272.247333pt;}
.y147{bottom:274.973867pt;}
.yea{bottom:275.258800pt;}
.y113{bottom:278.676667pt;}
.y166{bottom:281.296667pt;}
.yb7{bottom:283.778667pt;}
.y8d{bottom:284.492933pt;}
.y24{bottom:285.424000pt;}
.y5e{bottom:286.647333pt;}
.y146{bottom:289.373867pt;}
.ye9{bottom:289.658800pt;}
.y112{bottom:293.076667pt;}
.yb6{bottom:298.178667pt;}
.y23{bottom:299.824000pt;}
.y5d{bottom:301.047333pt;}
.y145{bottom:303.773867pt;}
.ye8{bottom:304.058800pt;}
.y8c{bottom:306.452933pt;}
.y111{bottom:307.476667pt;}
.y165{bottom:310.814800pt;}
.y22{bottom:314.224000pt;}
.y5c{bottom:315.447333pt;}
.y144{bottom:318.173867pt;}
.ye7{bottom:318.458800pt;}
.y8b{bottom:320.852933pt;}
.y110{bottom:321.876667pt;}
.yb5{bottom:327.696800pt;}
.y21{bottom:328.624000pt;}
.y5b{bottom:329.847333pt;}
.y143{bottom:332.573867pt;}
.ye6{bottom:332.858800pt;}
.y10f{bottom:336.276667pt;}
.y8a{bottom:342.812933pt;}
.y20{bottom:343.024000pt;}
.y142{bottom:346.973867pt;}
.y194{bottom:357.156667pt;}
.y89{bottom:357.212933pt;}
.y164{bottom:358.647333pt;}
.y5a{bottom:359.367333pt;}
.y141{bottom:361.373867pt;}
.ye5{bottom:362.378800pt;}
.y10e{bottom:365.796667pt;}
.y193{bottom:371.556667pt;}
.yb4{bottom:371.736667pt;}
.y1f{bottom:372.544000pt;}
.y163{bottom:373.047333pt;}
.y59{bottom:373.767333pt;}
.y140{bottom:375.773867pt;}
.ye4{bottom:376.778800pt;}
.y10d{bottom:380.196667pt;}
.yb3{bottom:386.136667pt;}
.y88{bottom:386.732933pt;}
.y1e{bottom:386.944000pt;}
.y162{bottom:387.447333pt;}
.y58{bottom:388.167333pt;}
.y192{bottom:389.736667pt;}
.y13f{bottom:390.173867pt;}
.ye3{bottom:391.178800pt;}
.y10c{bottom:394.596667pt;}
.yb2{bottom:400.536667pt;}
.y87{bottom:401.132933pt;}
.y1d{bottom:401.344000pt;}
.y57{bottom:402.567333pt;}
.y191{bottom:404.136667pt;}
.ye2{bottom:405.578800pt;}
.y10b{bottom:408.996667pt;}
.y86{bottom:415.532933pt;}
.y1c{bottom:415.744000pt;}
.y56{bottom:416.967333pt;}
.y190{bottom:418.536667pt;}
.y13e{bottom:419.693867pt;}
.ye1{bottom:419.978800pt;}
.y10a{bottom:423.396667pt;}
.y85{bottom:429.932933pt;}
.yb1{bottom:430.056667pt;}
.y1b{bottom:430.144000pt;}
.y161{bottom:431.367333pt;}
.y13d{bottom:434.093867pt;}
.ye0{bottom:434.378800pt;}
.y18f{bottom:436.716667pt;}
.yb0{bottom:444.456667pt;}
.y1a{bottom:444.544000pt;}
.y160{bottom:445.767333pt;}
.y55{bottom:446.487333pt;}
.y13c{bottom:448.493867pt;}
.ydf{bottom:448.778800pt;}
.y18e{bottom:451.116667pt;}
.y109{bottom:452.916667pt;}
.yaf{bottom:458.856667pt;}
.y84{bottom:459.451067pt;}
.y15f{bottom:460.167333pt;}
.y54{bottom:460.887333pt;}
.y13b{bottom:462.893867pt;}
.y108{bottom:467.316667pt;}
.y18d{bottom:469.296667pt;}
.yae{bottom:473.256667pt;}
.y19{bottom:474.062133pt;}
.y15e{bottom:474.567333pt;}
.y53{bottom:475.287333pt;}
.y13a{bottom:477.293867pt;}
.yde{bottom:478.298800pt;}
.y107{bottom:481.716667pt;}
.y18c{bottom:487.476667pt;}
.yad{bottom:487.656667pt;}
.y15d{bottom:488.967333pt;}
.y52{bottom:489.687333pt;}
.y139{bottom:491.693867pt;}
.ydd{bottom:492.698800pt;}
.y106{bottom:496.116667pt;}
.y18b{bottom:501.876667pt;}
.y15c{bottom:503.367333pt;}
.y51{bottom:504.087333pt;}
.y138{bottom:506.093867pt;}
.ydc{bottom:507.098800pt;}
.y83{bottom:507.276667pt;}
.yac{bottom:517.176667pt;}
.y50{bottom:518.487333pt;}
.y18a{bottom:520.056667pt;}
.y137{bottom:520.493867pt;}
.ydb{bottom:521.498800pt;}
.y82{bottom:521.676667pt;}
.y18{bottom:521.901600pt;}
.y105{bottom:525.636667pt;}
.y4f{bottom:532.887333pt;}
.y189{bottom:534.456667pt;}
.yab{bottom:535.356667pt;}
.y81{bottom:536.076667pt;}
.y17{bottom:546.040267pt;}
.y4e{bottom:547.287333pt;}
.y104{bottom:547.596667pt;}
.y188{bottom:548.856667pt;}
.y136{bottom:550.013867pt;}
.y80{bottom:550.476667pt;}
.yda{bottom:551.018800pt;}
.yaa{bottom:553.536667pt;}
.y16{bottom:560.706933pt;}
.y15b{bottom:561.687333pt;}
.y135{bottom:564.413867pt;}
.yd9{bottom:565.418800pt;}
.y187{bottom:567.036667pt;}
.y103{bottom:569.556667pt;}
.ya9{bottom:571.716667pt;}
.y15{bottom:575.373600pt;}
.y15a{bottom:576.087333pt;}
.y4d{bottom:576.805467pt;}
.y134{bottom:578.813867pt;}
.yd8{bottom:579.818800pt;}
.y7f{bottom:579.996667pt;}
.y186{bottom:581.436667pt;}
.ya8{bottom:589.896667pt;}
.y14{bottom:590.040267pt;}
.y159{bottom:590.487333pt;}
.y102{bottom:591.516667pt;}
.y133{bottom:593.213867pt;}
.yd7{bottom:594.218800pt;}
.y7e{bottom:594.396667pt;}
.y185{bottom:595.836667pt;}
.y13{bottom:604.706933pt;}
.y132{bottom:607.613867pt;}
.ya7{bottom:608.076667pt;}
.yd6{bottom:608.618800pt;}
.y7d{bottom:608.796667pt;}
.y101{bottom:613.476667pt;}
.y184{bottom:614.016667pt;}
.y12{bottom:619.373600pt;}
.y158{bottom:620.005467pt;}
.yd5{bottom:623.018800pt;}
.y7c{bottom:623.196667pt;}
.y4c{bottom:624.636667pt;}
.ya6{bottom:626.256667pt;}
.y183{bottom:628.416667pt;}
.y100{bottom:635.436667pt;}
.y131{bottom:637.133867pt;}
.yd4{bottom:637.418800pt;}
.y7b{bottom:637.596667pt;}
.y4b{bottom:639.036667pt;}
.ya5{bottom:644.436667pt;}
.y182{bottom:646.596667pt;}
.y11{bottom:649.154933pt;}
.y130{bottom:651.533867pt;}
.yd3{bottom:651.818800pt;}
.y7a{bottom:651.996667pt;}
.y4a{bottom:653.436667pt;}
.yff{bottom:657.396667pt;}
.y181{bottom:660.996667pt;}
.ya4{bottom:662.616667pt;}
.y12f{bottom:665.933867pt;}
.y79{bottom:666.396667pt;}
.y49{bottom:667.836667pt;}
.y10{bottom:673.293600pt;}
.y180{bottom:679.176667pt;}
.yfe{bottom:679.356667pt;}
.y12e{bottom:680.333867pt;}
.yd2{bottom:681.338800pt;}
.y48{bottom:682.236667pt;}
.yf{bottom:687.960267pt;}
.ya3{bottom:692.136667pt;}
.y12d{bottom:694.733867pt;}
.yd1{bottom:695.738800pt;}
.y78{bottom:695.916667pt;}
.y47{bottom:696.636667pt;}
.y17f{bottom:697.356667pt;}
.yfd{bottom:701.316667pt;}
.ye{bottom:702.626933pt;}
.ya2{bottom:706.536667pt;}
.y12c{bottom:709.133867pt;}
.yd0{bottom:710.138800pt;}
.y77{bottom:710.316667pt;}
.y46{bottom:711.036667pt;}
.y17e{bottom:711.756667pt;}
.yd{bottom:717.293600pt;}
.yfc{bottom:723.276667pt;}
.y76{bottom:724.716667pt;}
.y45{bottom:725.436667pt;}
.y17d{bottom:729.936667pt;}
.yc{bottom:731.960267pt;}
.ya1{bottom:736.056667pt;}
.y12b{bottom:738.653867pt;}
.y75{bottom:739.116667pt;}
.ycf{bottom:739.648933pt;}
.y44{bottom:739.836667pt;}
.y17c{bottom:744.336667pt;}
.yfb{bottom:745.236667pt;}
.yb{bottom:746.626933pt;}
.ya0{bottom:750.456667pt;}
.y12a{bottom:753.053867pt;}
.yce{bottom:753.984933pt;}
.y157{bottom:754.956667pt;}
.y17b{bottom:758.736667pt;}
.ya{bottom:761.293600pt;}
.yfa{bottom:767.196667pt;}
.y129{bottom:767.453867pt;}
.ycd{bottom:768.320933pt;}
.y74{bottom:768.636667pt;}
.y43{bottom:769.356667pt;}
.y17a{bottom:776.916667pt;}
.y128{bottom:781.853867pt;}
.ycc{bottom:782.656933pt;}
.y73{bottom:783.036667pt;}
.y42{bottom:783.756667pt;}
.yf9{bottom:789.156667pt;}
.y179{bottom:791.316667pt;}
.y127{bottom:796.253867pt;}
.y72{bottom:797.436667pt;}
.y41{bottom:798.156667pt;}
.y9f{bottom:801.216667pt;}
.y178{bottom:809.496667pt;}
.y126{bottom:810.653867pt;}
.yf8{bottom:811.116667pt;}
.y71{bottom:811.836667pt;}
.ycb{bottom:812.106400pt;}
.y40{bottom:812.556667pt;}
.y9e{bottom:815.616667pt;}
.y9{bottom:821.314667pt;}
.y177{bottom:823.896667pt;}
.y125{bottom:825.053867pt;}
.y70{bottom:826.236667pt;}
.yca{bottom:826.506400pt;}
.y156{bottom:826.956667pt;}
.yf7{bottom:833.076667pt;}
.y9d{bottom:833.796667pt;}
.y8{bottom:837.301333pt;}
.y155{bottom:841.356667pt;}
.y3f{bottom:842.076667pt;}
.y9c{bottom:848.196667pt;}
.y7{bottom:854.301333pt;}
.y124{bottom:854.573867pt;}
.yf6{bottom:855.036667pt;}
.y6f{bottom:855.756667pt;}
.yc9{bottom:856.026400pt;}
.y3e{bottom:856.476667pt;}
.y9b{bottom:866.376667pt;}
.y123{bottom:868.973867pt;}
.y6e{bottom:870.156667pt;}
.yc8{bottom:870.426400pt;}
.y3d{bottom:870.876667pt;}
.y176{bottom:874.656667pt;}
.yf5{bottom:876.996667pt;}
.y9a{bottom:880.776667pt;}
.y122{bottom:883.373867pt;}
.y6d{bottom:884.556667pt;}
.yc7{bottom:884.826400pt;}
.y3c{bottom:885.276667pt;}
.y175{bottom:889.056667pt;}
.y121{bottom:897.773867pt;}
.y6c{bottom:898.956667pt;}
.yc6{bottom:899.226400pt;}
.y6{bottom:899.550933pt;}
.y3b{bottom:899.676667pt;}
.y174{bottom:907.236667pt;}
.y120{bottom:912.173867pt;}
.y154{bottom:913.356667pt;}
.y3a{bottom:914.076667pt;}
.y5{bottom:920.862933pt;}
.y173{bottom:921.636667pt;}
.y11f{bottom:926.573867pt;}
.y153{bottom:927.756667pt;}
.y39{bottom:928.476667pt;}
.yc5{bottom:928.736533pt;}
.y172{bottom:939.816667pt;}
.y11e{bottom:940.973867pt;}
.y38{bottom:942.876667pt;}
.yc4{bottom:943.072533pt;}
.y171{bottom:954.216667pt;}
.y11d{bottom:955.373867pt;}
.y6b{bottom:957.276667pt;}
.yc3{bottom:957.408533pt;}
.y99{bottom:964.836667pt;}
.y11c{bottom:969.773867pt;}
.yc2{bottom:971.744533pt;}
.y37{bottom:972.396667pt;}
.y98{bottom:979.236667pt;}
.y36{bottom:986.796667pt;}
.y11b{bottom:999.292000pt;}
.y35{bottom:1001.196667pt;}
.y4{bottom:1009.763733pt;}
.y3{bottom:1020.963733pt;}
.y2{bottom:1032.163733pt;}
.y34{bottom:1046.928667pt;}
.y1{bottom:1047.143333pt;}
.y33{bottom:1065.108667pt;}
.hb{height:14.663616pt;}
.hc{height:25.152000pt;}
.h3{height:27.216000pt;}
.h8{height:31.189333pt;}
.h7{height:33.536000pt;}
.hd{height:36.048000pt;}
.h6{height:38.986667pt;}
.h10{height:39.338667pt;}
.h13{height:39.370667pt;}
.h5{height:40.106667pt;}
.h16{height:40.133333pt;}
.he{height:40.138667pt;}
.h17{height:40.149333pt;}
.hf{height:40.164267pt;}
.h15{height:40.176533pt;}
.h14{height:40.197333pt;}
.ha{height:44.256000pt;}
.h2{height:48.800000pt;}
.h9{height:53.680000pt;}
.h11{height:54.112000pt;}
.h12{height:54.122667pt;}
.h4{height:63.793920pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:94.488133pt;}
.xa{left:105.826800pt;}
.x9{left:113.385867pt;}
.x10{left:130.392133pt;}
.xf{left:137.949867pt;}
.xe{left:281.342533pt;}
.xc{left:303.468133pt;}
.x8{left:431.113333pt;}
.xd{left:433.862533pt;}
.x1{left:484.910133pt;}
.x4{left:531.670267pt;}
.x6{left:532.713333pt;}
.x7{left:567.552000pt;}
.x2{left:596.126267pt;}
.x3{left:625.712933pt;}
.xb{left:699.212533pt;}
}




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