
    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_91cf1f8ed9fb3be26f65dd29.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_59d3a6ef477b376215c4beb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_ab6412080d55a2d9938b3680.woff2')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_e9e3e7723a1bad4595b03616.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_669bca1b439b3d70db7bfd9e.woff2')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_62860cc94c862b6b4d578461.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_cf46334e2406ffd564fb546c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_342997ef7fb6bd7330dedb12.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.737305;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;}
.m2{transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,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:-14.785200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.452800px;}
.v4{vertical-align:8.840230px;}
.v1{vertical-align:21.978000px;}
.ls1d{letter-spacing:-0.702000px;}
.ls1b{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.486000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls34{letter-spacing:-0.399600px;}
.ls20{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.324000px;}
.ls35{letter-spacing:-0.310800px;}
.lse{letter-spacing:-0.270000px;}
.ls33{letter-spacing:-0.266400px;}
.ls32{letter-spacing:-0.222000px;}
.ls1c{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.133200px;}
.lsf{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.054000px;}
.ls2d{letter-spacing:-0.044400px;}
.ls8{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.003629px;}
.ls2f{letter-spacing:0.044400px;}
.ls2{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.102000px;}
.ls14{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.177600px;}
.ls30{letter-spacing:0.222000px;}
.ls17{letter-spacing:0.270000px;}
.ls24{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.378000px;}
.ls16{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.486000px;}
.ls18{letter-spacing:0.540000px;}
.ls15{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.702000px;}
.ls1{letter-spacing:0.810000px;}
.ls2c{letter-spacing:0.843600px;}
.ls6{letter-spacing:0.961950px;}
.ls22{letter-spacing:0.976800px;}
.ls27{letter-spacing:1.347000px;}
.ls2e{letter-spacing:1.376400px;}
.ls5{letter-spacing:1.566000px;}
.ls0{letter-spacing:1.650000px;}
.ls26{letter-spacing:1.985400px;}
.ls13{letter-spacing:2.055000px;}
.ls23{letter-spacing:2.808600px;}
.ls12{letter-spacing:3.855000px;}
.ls28{letter-spacing:4.327800px;}
.ls25{letter-spacing:4.745400px;}
.ls2a{letter-spacing:8.958890px;}
.ls21{letter-spacing:55.688400px;}
.ls19{letter-spacing:336.324000px;}
.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;}
}
.ws1c{word-spacing:-67.650000px;}
.wsb{word-spacing:-54.810000px;}
.ws82{word-spacing:-54.702000px;}
.ws13{word-spacing:-54.648000px;}
.ws84{word-spacing:-54.594000px;}
.ws40{word-spacing:-54.486000px;}
.ws46{word-spacing:-54.432000px;}
.ws44{word-spacing:-54.378000px;}
.ws86{word-spacing:-54.324000px;}
.ws1a{word-spacing:-54.054000px;}
.ws9{word-spacing:-54.000000px;}
.ws89{word-spacing:-53.946000px;}
.ws15{word-spacing:-53.892000px;}
.ws10{word-spacing:-53.838000px;}
.ws42{word-spacing:-53.784000px;}
.ws14{word-spacing:-53.730000px;}
.ws47{word-spacing:-53.676000px;}
.ws49{word-spacing:-53.568000px;}
.wsf{word-spacing:-53.514000px;}
.ws45{word-spacing:-53.460000px;}
.wsd{word-spacing:-53.406000px;}
.ws43{word-spacing:-53.298000px;}
.ws19{word-spacing:-47.898000px;}
.ws7{word-spacing:-47.077200px;}
.ws4e{word-spacing:-46.818000px;}
.ws18{word-spacing:-46.742400px;}
.ws16{word-spacing:-46.731000px;}
.ws88{word-spacing:-46.710000px;}
.ws4c{word-spacing:-46.602000px;}
.wse{word-spacing:-46.440000px;}
.wsa5{word-spacing:-45.776400px;}
.ws7d{word-spacing:-45.376800px;}
.ws83{word-spacing:-45.243600px;}
.wsa8{word-spacing:-44.622000px;}
.wsaa{word-spacing:-44.577600px;}
.wsa7{word-spacing:-44.444400px;}
.ws6{word-spacing:-44.400000px;}
.ws8d{word-spacing:-44.355600px;}
.ws20{word-spacing:-44.266800px;}
.wsa1{word-spacing:-44.178000px;}
.wsa2{word-spacing:-44.133600px;}
.wsa4{word-spacing:-44.089200px;}
.wsa3{word-spacing:-44.000400px;}
.ws3e{word-spacing:-42.000000px;}
.ws8e{word-spacing:-39.072000px;}
.wsa6{word-spacing:-38.166240px;}
.ws1e{word-spacing:-37.122840px;}
.ws3{word-spacing:-33.000000px;}
.ws1b{word-spacing:-23.352000px;}
.ws8{word-spacing:-15.714000px;}
.ws12{word-spacing:-15.660000px;}
.ws85{word-spacing:-15.606000px;}
.ws7f{word-spacing:-15.444000px;}
.ws17{word-spacing:-15.390000px;}
.ws87{word-spacing:-15.336000px;}
.ws4d{word-spacing:-15.282000px;}
.ws80{word-spacing:-15.066000px;}
.wsa{word-spacing:-15.012000px;}
.ws5b{word-spacing:-14.958000px;}
.ws4b{word-spacing:-14.904000px;}
.ws11{word-spacing:-14.850000px;}
.ws7e{word-spacing:-14.796000px;}
.ws48{word-spacing:-14.688000px;}
.ws4a{word-spacing:-14.634000px;}
.ws4f{word-spacing:-14.526000px;}
.ws41{word-spacing:-14.472000px;}
.wsc{word-spacing:-14.418000px;}
.ws7c{word-spacing:-13.320000px;}
.wsa9{word-spacing:-12.520800px;}
.ws5{word-spacing:-12.343200px;}
.ws8c{word-spacing:-12.298800px;}
.ws1f{word-spacing:-12.210000px;}
.ws3f{word-spacing:-11.676000px;}
.ws1d{word-spacing:-11.658834px;}
.ws27{word-spacing:-6.696000px;}
.ws2d{word-spacing:-3.780000px;}
.ws25{word-spacing:-3.726000px;}
.ws60{word-spacing:-3.456000px;}
.ws2{word-spacing:-3.240600px;}
.ws3a{word-spacing:-3.108000px;}
.ws9d{word-spacing:-3.063600px;}
.ws3c{word-spacing:-2.974800px;}
.ws26{word-spacing:-2.916000px;}
.ws96{word-spacing:-2.646000px;}
.wsaf{word-spacing:-2.575200px;}
.ws78{word-spacing:-2.484000px;}
.ws22{word-spacing:-2.442000px;}
.ws98{word-spacing:-2.322000px;}
.ws70{word-spacing:-2.310000px;}
.ws54{word-spacing:-2.052000px;}
.ws6e{word-spacing:-1.782000px;}
.ws73{word-spacing:-1.620000px;}
.ws65{word-spacing:-1.566000px;}
.ws31{word-spacing:-1.404000px;}
.ws6d{word-spacing:-1.134000px;}
.ws9e{word-spacing:-1.080000px;}
.ws74{word-spacing:-1.026000px;}
.ws81{word-spacing:-0.982800px;}
.ws24{word-spacing:-0.864000px;}
.ws32{word-spacing:-0.756000px;}
.ws7b{word-spacing:-0.666000px;}
.ws69{word-spacing:-0.540000px;}
.ws37{word-spacing:-0.486000px;}
.ws5e{word-spacing:-0.432000px;}
.ws34{word-spacing:-0.378000px;}
.ws53{word-spacing:-0.270000px;}
.wsab{word-spacing:-0.222000px;}
.ws36{word-spacing:-0.216000px;}
.ws7a{word-spacing:-0.044400px;}
.ws8b{word-spacing:-0.031080px;}
.ws21{word-spacing:0.000000px;}
.ws8a{word-spacing:0.097200px;}
.ws2b{word-spacing:0.108000px;}
.ws9c{word-spacing:0.133200px;}
.ws58{word-spacing:0.162000px;}
.ws91{word-spacing:0.216000px;}
.ws35{word-spacing:0.270000px;}
.ws3d{word-spacing:0.355200px;}
.ws6b{word-spacing:0.378000px;}
.ws68{word-spacing:0.432000px;}
.ws2a{word-spacing:0.540000px;}
.ws55{word-spacing:0.594000px;}
.ws6f{word-spacing:0.648000px;}
.ws6c{word-spacing:0.756000px;}
.ws67{word-spacing:0.864000px;}
.ws9f{word-spacing:0.888000px;}
.ws38{word-spacing:0.972000px;}
.ws23{word-spacing:1.242000px;}
.ws3b{word-spacing:1.243200px;}
.ws9b{word-spacing:1.376400px;}
.ws28{word-spacing:1.782000px;}
.ws29{word-spacing:1.836000px;}
.ws5f{word-spacing:1.890000px;}
.ws61{word-spacing:1.998000px;}
.ws57{word-spacing:2.052000px;}
.ws79{word-spacing:2.106000px;}
.ws39{word-spacing:2.352000px;}
.ws6a{word-spacing:2.376000px;}
.ws75{word-spacing:2.484000px;}
.ws99{word-spacing:2.575200px;}
.ws90{word-spacing:2.592000px;}
.ws72{word-spacing:2.646000px;}
.wsae{word-spacing:2.664000px;}
.ws94{word-spacing:2.797200px;}
.wsad{word-spacing:2.916000px;}
.ws5d{word-spacing:3.132000px;}
.ws5c{word-spacing:3.564000px;}
.ws95{word-spacing:3.618000px;}
.ws5a{word-spacing:3.672000px;}
.ws92{word-spacing:3.774000px;}
.ws56{word-spacing:3.888000px;}
.ws2c{word-spacing:4.266000px;}
.wsb0{word-spacing:4.395600px;}
.ws33{word-spacing:4.428000px;}
.ws64{word-spacing:4.644000px;}
.ws9a{word-spacing:4.750800px;}
.wsac{word-spacing:5.106000px;}
.ws62{word-spacing:5.130000px;}
.ws59{word-spacing:5.508000px;}
.ws77{word-spacing:5.724000px;}
.ws8f{word-spacing:5.832000px;}
.ws66{word-spacing:6.156000px;}
.ws93{word-spacing:6.171600px;}
.ws63{word-spacing:6.696000px;}
.ws76{word-spacing:6.750000px;}
.ws2e{word-spacing:6.858000px;}
.ws30{word-spacing:6.966000px;}
.ws97{word-spacing:7.452000px;}
.ws2f{word-spacing:7.506000px;}
.ws1{word-spacing:44.477400px;}
.ws0{word-spacing:136.092000px;}
.ws50{word-spacing:137.382000px;}
.ws51{word-spacing:165.929400px;}
.ws52{word-spacing:196.266000px;}
.ws4{word-spacing:978.730200px;}
.ws71{word-spacing:2370.639000px;}
.wsa0{word-spacing:2405.295000px;}
._d{margin-left:-22.323000px;}
._a{margin-left:-15.627000px;}
._b{margin-left:-14.302800px;}
._f{margin-left:-13.230000px;}
._28{margin-left:-11.413800px;}
._e{margin-left:-10.408200px;}
._9{margin-left:-7.084800px;}
._7{margin-left:-5.450400px;}
._8{margin-left:-4.123800px;}
._0{margin-left:-3.029400px;}
._1{margin-left:-1.805100px;}
._2{width:1.326600px;}
._4{width:2.428800px;}
._5{width:3.963720px;}
._3{width:5.817600px;}
._6{width:7.452000px;}
._c{width:11.360400px;}
._1a{width:86.562000px;}
._1d{width:97.734000px;}
._1b{width:107.695800px;}
._17{width:119.196000px;}
._22{width:128.310000px;}
._12{width:137.928000px;}
._15{width:186.929400px;}
._23{width:237.048000px;}
._21{width:252.336000px;}
._25{width:312.438000px;}
._1c{width:336.336000px;}
._26{width:372.456000px;}
._11{width:426.114000px;}
._10{width:573.930000px;}
._1e{width:589.554000px;}
._16{width:608.214600px;}
._14{width:659.568000px;}
._13{width:669.606000px;}
._18{width:723.282000px;}
._1f{width:732.618600px;}
._19{width:748.230000px;}
._20{width:815.976000px;}
._27{width:828.324000px;}
._24{width:888.300000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(33,94,158);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:25.885200px;}
.fs9{font-size:31.080000px;}
.fs0{font-size:33.000000px;}
.fs7{font-size:38.478000px;}
.fs2{font-size:42.000000px;}
.fs4{font-size:44.400000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:59.330400px;}
.fs3{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:51.079650px;}
.y159{bottom:51.115350px;}
.y7{bottom:51.203700px;}
.y13d{bottom:51.219300px;}
.y17b{bottom:52.368150px;}
.yc9{bottom:52.764150px;}
.yb9{bottom:55.886850px;}
.y6{bottom:61.103700px;}
.y13a{bottom:65.479650px;}
.y158{bottom:65.515350px;}
.y13c{bottom:65.619300px;}
.y17a{bottom:66.768150px;}
.yc8{bottom:67.164150px;}
.yb8{bottom:69.386850px;}
.y5{bottom:71.003700px;}
.y157{bottom:79.915350px;}
.y4{bottom:80.903700px;}
.y179{bottom:81.168150px;}
.yc7{bottom:81.564150px;}
.y104{bottom:84.490500px;}
.yb7{bottom:87.386850px;}
.y3{bottom:90.803700px;}
.y156{bottom:94.315350px;}
.y178{bottom:95.568150px;}
.y2{bottom:100.703700px;}
.yb6{bottom:100.886850px;}
.y155{bottom:108.715350px;}
.y177{bottom:109.968150px;}
.y1{bottom:115.103700px;}
.yb5{bottom:118.886850px;}
.y154{bottom:123.115350px;}
.y176{bottom:124.368150px;}
.yb4{bottom:136.886850px;}
.y153{bottom:137.515350px;}
.y175{bottom:138.768150px;}
.y10a{bottom:144.106505px;}
.y109{bottom:144.269664px;}
.y54{bottom:145.131150px;}
.y133{bottom:145.382109px;}
.y132{bottom:145.545268px;}
.y106{bottom:145.738091px;}
.y105{bottom:145.901250px;}
.y4c{bottom:147.288600px;}
.y135{bottom:148.007479px;}
.y134{bottom:148.170638px;}
.y10c{bottom:148.452457px;}
.y10b{bottom:148.615616px;}
.yb3{bottom:150.386850px;}
.y152{bottom:151.915350px;}
.y124{bottom:152.412761px;}
.y123{bottom:152.575920px;}
.y120{bottom:153.896021px;}
.y11f{bottom:154.059180px;}
.y125{bottom:154.459660px;}
.y10e{bottom:154.518991px;}
.y12a{bottom:154.637651px;}
.y10d{bottom:154.682149px;}
.y122{bottom:154.711814px;}
.y129{bottom:154.800810px;}
.y121{bottom:154.874973px;}
.y131{bottom:154.889806px;}
.y12f{bottom:154.963969px;}
.y130{bottom:155.052964px;}
.y12c{bottom:155.290286px;}
.y12b{bottom:155.453444px;}
.y114{bottom:155.512775px;}
.y128{bottom:155.616603px;}
.y113{bottom:155.675933px;}
.y116{bottom:155.764929px;}
.y11e{bottom:155.779762px;}
.y115{bottom:155.928088px;}
.y11d{bottom:155.942920px;}
.y118{bottom:156.017083px;}
.y12e{bottom:156.106079px;}
.y117{bottom:156.180242px;}
.y12d{bottom:156.269237px;}
.y127{bottom:156.595555px;}
.y126{bottom:156.758713px;}
.y11c{bottom:157.085030px;}
.y112{bottom:157.233356px;}
.y11b{bottom:157.248189px;}
.y111{bottom:157.396515px;}
.y11a{bottom:157.737665px;}
.y119{bottom:157.900823px;}
.y53{bottom:162.327450px;}
.y4b{bottom:163.788600px;}
.yb2{bottom:163.886850px;}
.y137{bottom:165.376454px;}
.y136{bottom:165.539612px;}
.y151{bottom:166.315350px;}
.y108{bottom:166.800383px;}
.y107{bottom:166.963542px;}
.y174{bottom:168.168150px;}
.y139{bottom:168.239146px;}
.y138{bottom:168.402304px;}
.y52{bottom:172.131150px;}
.y4a{bottom:180.288600px;}
.y150{bottom:180.715350px;}
.yb1{bottom:181.886850px;}
.y51{bottom:189.327450px;}
.y110{bottom:189.924407px;}
.y10f{bottom:190.087565px;}
.y14f{bottom:195.115350px;}
.y49{bottom:196.788600px;}
.yb0{bottom:199.886850px;}
.y173{bottom:207.168150px;}
.y14e{bottom:209.515350px;}
.y48{bottom:213.288600px;}
.yaf{bottom:217.886850px;}
.y2c{bottom:219.288750px;}
.y172{bottom:221.568150px;}
.y14d{bottom:223.915350px;}
.y47{bottom:229.788600px;}
.y2b{bottom:235.788750px;}
.y171{bottom:235.968150px;}
.y14c{bottom:238.315350px;}
.yae{bottom:240.386850px;}
.y46{bottom:246.288600px;}
.y170{bottom:250.368150px;}
.y2a{bottom:252.288750px;}
.y14b{bottom:252.715350px;}
.y45{bottom:262.788600px;}
.y16f{bottom:264.768150px;}
.y14a{bottom:267.115350px;}
.yba{bottom:267.233550px;}
.y29{bottom:268.788750px;}
.y16e{bottom:279.168150px;}
.y149{bottom:281.515350px;}
.y28{bottom:289.788750px;}
.y16d{bottom:293.568150px;}
.y44{bottom:294.288600px;}
.y148{bottom:295.915350px;}
.y27{bottom:306.288750px;}
.y16c{bottom:307.968150px;}
.y147{bottom:310.315350px;}
.y93{bottom:313.876050px;}
.y16b{bottom:322.368150px;}
.y26{bottom:322.788750px;}
.y146{bottom:324.715350px;}
.y92{bottom:330.376050px;}
.y43{bottom:333.288600px;}
.y16a{bottom:336.768150px;}
.y145{bottom:339.115350px;}
.y25{bottom:339.288750px;}
.y91{bottom:346.876050px;}
.y42{bottom:349.788600px;}
.y144{bottom:353.515350px;}
.y24{bottom:355.788750px;}
.y90{bottom:363.376050px;}
.y41{bottom:366.288600px;}
.y143{bottom:367.915350px;}
.y169{bottom:372.168150px;}
.y23{bottom:372.288750px;}
.yad{bottom:379.876050px;}
.y142{bottom:382.315350px;}
.y40{bottom:382.788600px;}
.y8f{bottom:384.376050px;}
.y168{bottom:388.668150px;}
.y22{bottom:388.788750px;}
.yac{bottom:396.376050px;}
.y141{bottom:396.715350px;}
.y3f{bottom:399.288600px;}
.y8e{bottom:400.876050px;}
.y167{bottom:405.168150px;}
.y21{bottom:405.288750px;}
.y140{bottom:411.115350px;}
.yab{bottom:412.876050px;}
.y3e{bottom:415.788600px;}
.y8d{bottom:417.376050px;}
.y166{bottom:421.668150px;}
.y20{bottom:421.788750px;}
.y13f{bottom:425.515350px;}
.yaa{bottom:429.376050px;}
.y3d{bottom:432.288600px;}
.y8c{bottom:433.876050px;}
.y165{bottom:438.168150px;}
.y1f{bottom:438.288750px;}
.y13e{bottom:439.915350px;}
.yf1{bottom:445.275900px;}
.ya9{bottom:445.876050px;}
.y8b{bottom:450.376050px;}
.y1e{bottom:454.788750px;}
.yf0{bottom:461.775900px;}
.y3c{bottom:463.788600px;}
.y8a{bottom:466.876050px;}
.y1d{bottom:471.288750px;}
.yef{bottom:478.275900px;}
.y89{bottom:483.376050px;}
.y164{bottom:484.277400px;}
.y1c{bottom:487.788750px;}
.yee{bottom:494.775900px;}
.y163{bottom:498.677400px;}
.y88{bottom:499.876050px;}
.y3b{bottom:502.788600px;}
.y1b{bottom:504.288750px;}
.yed{bottom:511.275900px;}
.y87{bottom:516.376050px;}
.y3a{bottom:519.288600px;}
.y1a{bottom:520.788750px;}
.y162{bottom:521.118750px;}
.y161{bottom:521.528550px;}
.yec{bottom:527.775900px;}
.y86{bottom:532.876050px;}
.y39{bottom:535.788600px;}
.y19{bottom:537.288750px;}
.yeb{bottom:544.275900px;}
.y85{bottom:549.376050px;}
.y38{bottom:552.288600px;}
.y18{bottom:553.788750px;}
.yea{bottom:560.775900px;}
.y84{bottom:565.876050px;}
.y37{bottom:568.788600px;}
.y17{bottom:570.288750px;}
.ya8{bottom:570.376050px;}
.ye9{bottom:577.275900px;}
.y83{bottom:582.376050px;}
.y36{bottom:585.288600px;}
.y16{bottom:586.788750px;}
.ya7{bottom:586.876050px;}
.ye8{bottom:593.775900px;}
.y82{bottom:598.876050px;}
.y35{bottom:601.788600px;}
.y15{bottom:603.288750px;}
.ya6{bottom:603.376050px;}
.ye7{bottom:610.275900px;}
.y103{bottom:612.975900px;}
.y81{bottom:615.376050px;}
.y34{bottom:618.288600px;}
.y14{bottom:619.788750px;}
.ya5{bottom:619.876050px;}
.ye6{bottom:626.775900px;}
.y102{bottom:629.475900px;}
.y80{bottom:631.876050px;}
.y33{bottom:634.788600px;}
.y13{bottom:636.288750px;}
.ya4{bottom:636.376050px;}
.ye5{bottom:643.275900px;}
.y101{bottom:645.975900px;}
.y7f{bottom:648.376050px;}
.y32{bottom:651.288600px;}
.y12{bottom:652.788750px;}
.ya3{bottom:652.876050px;}
.ye4{bottom:659.775900px;}
.y100{bottom:662.475900px;}
.y7e{bottom:664.876050px;}
.y31{bottom:667.788600px;}
.y11{bottom:669.288750px;}
.ya2{bottom:669.376050px;}
.ye3{bottom:676.275900px;}
.yff{bottom:678.975900px;}
.y7d{bottom:681.376050px;}
.y30{bottom:684.288600px;}
.y10{bottom:685.788750px;}
.ya1{bottom:685.876050px;}
.ye2{bottom:692.775900px;}
.yfe{bottom:695.475900px;}
.y7c{bottom:697.876050px;}
.y2f{bottom:700.788600px;}
.yf{bottom:702.288750px;}
.ya0{bottom:702.376050px;}
.yfd{bottom:711.975900px;}
.y7b{bottom:714.376050px;}
.y2e{bottom:717.288600px;}
.ye1{bottom:718.275900px;}
.y9f{bottom:718.876050px;}
.y7a{bottom:730.876050px;}
.ye0{bottom:732.675900px;}
.y2d{bottom:733.788600px;}
.ye{bottom:733.788750px;}
.y9e{bottom:735.376050px;}
.yfc{bottom:737.475900px;}
.ydf{bottom:747.075900px;}
.y79{bottom:747.376050px;}
.yfb{bottom:751.875900px;}
.y9d{bottom:751.876050px;}
.yde{bottom:761.475900px;}
.y78{bottom:763.876050px;}
.yfa{bottom:766.275900px;}
.y9c{bottom:768.376050px;}
.y77{bottom:780.376050px;}
.yf9{bottom:780.675900px;}
.ydd{bottom:784.875900px;}
.y9b{bottom:784.876050px;}
.y15e{bottom:792.317550px;}
.yf8{bottom:795.075900px;}
.y160{bottom:795.365850px;}
.ydc{bottom:801.375900px;}
.y76{bottom:801.376050px;}
.y15d{bottom:806.717700px;}
.yf7{bottom:809.475900px;}
.y75{bottom:817.876050px;}
.y15c{bottom:821.117700px;}
.yf6{bottom:823.875900px;}
.y74{bottom:834.376050px;}
.y15b{bottom:835.517550px;}
.yd{bottom:836.039400px;}
.yf5{bottom:838.275900px;}
.ydb{bottom:840.375900px;}
.y15a{bottom:849.917700px;}
.yc{bottom:850.439400px;}
.y73{bottom:850.876050px;}
.yf4{bottom:852.675900px;}
.yda{bottom:856.875900px;}
.yb{bottom:864.839400px;}
.yf3{bottom:867.075900px;}
.y72{bottom:867.376050px;}
.yd9{bottom:873.375900px;}
.yf2{bottom:881.475900px;}
.y71{bottom:883.876050px;}
.y9a{bottom:888.376050px;}
.yd8{bottom:889.875900px;}
.y70{bottom:900.376050px;}
.y99{bottom:904.876050px;}
.yd7{bottom:906.375900px;}
.y5e{bottom:911.406750px;}
.y15f{bottom:913.410150px;}
.y6f{bottom:916.876050px;}
.y59{bottom:919.806750px;}
.y98{bottom:921.376050px;}
.yd6{bottom:922.875900px;}
.y5d{bottom:925.806750px;}
.y6e{bottom:933.376050px;}
.y58{bottom:934.206750px;}
.y97{bottom:937.876050px;}
.yd5{bottom:939.375900px;}
.y5c{bottom:940.206750px;}
.y57{bottom:948.606750px;}
.y6d{bottom:949.876050px;}
.y96{bottom:954.376050px;}
.y5b{bottom:954.606750px;}
.yd4{bottom:955.875900px;}
.y56{bottom:963.006750px;}
.y6c{bottom:966.376050px;}
.y5a{bottom:969.006750px;}
.y95{bottom:970.876050px;}
.yd3{bottom:972.375900px;}
.y6b{bottom:982.876050px;}
.y55{bottom:983.406750px;}
.y94{bottom:987.376050px;}
.yd2{bottom:988.875900px;}
.y6a{bottom:1003.876050px;}
.yd1{bottom:1005.375900px;}
.ybe{bottom:1017.376050px;}
.yc6{bottom:1017.976050px;}
.y69{bottom:1020.376050px;}
.yd0{bottom:1030.875900px;}
.ybd{bottom:1033.876050px;}
.yc5{bottom:1034.776050px;}
.y68{bottom:1036.876050px;}
.yc4{bottom:1051.576050px;}
.y67{bottom:1053.376050px;}
.ycf{bottom:1054.275900px;}
.y50{bottom:1056.915750px;}
.ybc{bottom:1065.376050px;}
.yc3{bottom:1068.376050px;}
.yce{bottom:1068.675900px;}
.y66{bottom:1069.876050px;}
.ycd{bottom:1083.075900px;}
.yc2{bottom:1085.176050px;}
.y65{bottom:1086.376050px;}
.y4f{bottom:1092.915750px;}
.ycc{bottom:1097.475900px;}
.yc1{bottom:1101.976050px;}
.y64{bottom:1102.876050px;}
.yc0{bottom:1118.776050px;}
.y63{bottom:1119.376050px;}
.y4e{bottom:1119.915750px;}
.ycb{bottom:1120.875900px;}
.ybf{bottom:1135.576050px;}
.y62{bottom:1135.876050px;}
.y4d{bottom:1146.915750px;}
.yca{bottom:1152.375900px;}
.y61{bottom:1152.376050px;}
.y5f{bottom:1190.247600px;}
.y60{bottom:1191.339600px;}
.y9{bottom:1192.253100px;}
.ybb{bottom:1192.444500px;}
.ya{bottom:1195.877100px;}
.y8{bottom:1206.653100px;}
.hb{height:18.845133px;}
.h1{height:24.024902px;}
.h2{height:24.057129px;}
.he{height:30.577148px;}
.hd{height:30.618164px;}
.hc{height:32.324414px;}
.h6{height:32.367773px;}
.h3{height:34.945312px;}
.h4{height:34.992188px;}
.h7{height:39.313477px;}
.h8{height:39.366211px;}
.h10{height:41.531280px;}
.h5{height:48.049805px;}
.ha{height:49.991036px;}
.h11{height:50.371510px;}
.h12{height:51.820312px;}
.h9{height:61.154297px;}
.hf{height:331.687500px;}
.h0{height:1252.500000px;}
.w1{width:366.235500px;}
.w0{width:874.500000px;}
.x0{left:0.000000px;}
.xb{left:52.596329px;}
.x1{left:56.279550px;}
.x4{left:64.783500px;}
.x11{left:65.941842px;}
.x10{left:67.790130px;}
.xe{left:69.725739px;}
.x7{left:73.287450px;}
.x8{left:75.110516px;}
.xd{left:80.495292px;}
.xa{left:82.183492px;}
.xc{left:83.391429px;}
.xf{left:85.239717px;}
.x9{left:89.416557px;}
.x16{left:104.774700px;}
.x15{left:188.728350px;}
.x5{left:267.177150px;}
.x2{left:349.333800px;}
.x13{left:446.275800px;}
.x14{left:448.401600px;}
.x3{left:455.964450px;}
.x12{left:464.468400px;}
.x6{left:801.612300px;}
@media print{
.v2{vertical-align:-13.142400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.180267pt;}
.v4{vertical-align:7.857982pt;}
.v1{vertical-align:19.536000pt;}
.ls1d{letter-spacing:-0.624000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.432000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls34{letter-spacing:-0.355200pt;}
.ls20{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.288000pt;}
.ls35{letter-spacing:-0.276267pt;}
.lse{letter-spacing:-0.240000pt;}
.ls33{letter-spacing:-0.236800pt;}
.ls32{letter-spacing:-0.197333pt;}
.ls1c{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.118400pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.048000pt;}
.ls2d{letter-spacing:-0.039467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.003226pt;}
.ls2f{letter-spacing:0.039467pt;}
.ls2{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.090667pt;}
.ls14{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.157867pt;}
.ls30{letter-spacing:0.197333pt;}
.ls17{letter-spacing:0.240000pt;}
.ls24{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.432000pt;}
.ls18{letter-spacing:0.480000pt;}
.ls15{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.624000pt;}
.ls1{letter-spacing:0.720000pt;}
.ls2c{letter-spacing:0.749867pt;}
.ls6{letter-spacing:0.855067pt;}
.ls22{letter-spacing:0.868267pt;}
.ls27{letter-spacing:1.197333pt;}
.ls2e{letter-spacing:1.223467pt;}
.ls5{letter-spacing:1.392000pt;}
.ls0{letter-spacing:1.466667pt;}
.ls26{letter-spacing:1.764800pt;}
.ls13{letter-spacing:1.826667pt;}
.ls23{letter-spacing:2.496533pt;}
.ls12{letter-spacing:3.426667pt;}
.ls28{letter-spacing:3.846933pt;}
.ls25{letter-spacing:4.218133pt;}
.ls2a{letter-spacing:7.963458pt;}
.ls21{letter-spacing:49.500800pt;}
.ls19{letter-spacing:298.954667pt;}
.ws1c{word-spacing:-60.133333pt;}
.wsb{word-spacing:-48.720000pt;}
.ws82{word-spacing:-48.624000pt;}
.ws13{word-spacing:-48.576000pt;}
.ws84{word-spacing:-48.528000pt;}
.ws40{word-spacing:-48.432000pt;}
.ws46{word-spacing:-48.384000pt;}
.ws44{word-spacing:-48.336000pt;}
.ws86{word-spacing:-48.288000pt;}
.ws1a{word-spacing:-48.048000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws89{word-spacing:-47.952000pt;}
.ws15{word-spacing:-47.904000pt;}
.ws10{word-spacing:-47.856000pt;}
.ws42{word-spacing:-47.808000pt;}
.ws14{word-spacing:-47.760000pt;}
.ws47{word-spacing:-47.712000pt;}
.ws49{word-spacing:-47.616000pt;}
.wsf{word-spacing:-47.568000pt;}
.ws45{word-spacing:-47.520000pt;}
.wsd{word-spacing:-47.472000pt;}
.ws43{word-spacing:-47.376000pt;}
.ws19{word-spacing:-42.576000pt;}
.ws7{word-spacing:-41.846400pt;}
.ws4e{word-spacing:-41.616000pt;}
.ws18{word-spacing:-41.548800pt;}
.ws16{word-spacing:-41.538667pt;}
.ws88{word-spacing:-41.520000pt;}
.ws4c{word-spacing:-41.424000pt;}
.wse{word-spacing:-41.280000pt;}
.wsa5{word-spacing:-40.690133pt;}
.ws7d{word-spacing:-40.334933pt;}
.ws83{word-spacing:-40.216533pt;}
.wsa8{word-spacing:-39.664000pt;}
.wsaa{word-spacing:-39.624533pt;}
.wsa7{word-spacing:-39.506133pt;}
.ws6{word-spacing:-39.466667pt;}
.ws8d{word-spacing:-39.427200pt;}
.ws20{word-spacing:-39.348267pt;}
.wsa1{word-spacing:-39.269333pt;}
.wsa2{word-spacing:-39.229867pt;}
.wsa4{word-spacing:-39.190400pt;}
.wsa3{word-spacing:-39.111467pt;}
.ws3e{word-spacing:-37.333333pt;}
.ws8e{word-spacing:-34.730667pt;}
.wsa6{word-spacing:-33.925547pt;}
.ws1e{word-spacing:-32.998080pt;}
.ws3{word-spacing:-29.333333pt;}
.ws1b{word-spacing:-20.757333pt;}
.ws8{word-spacing:-13.968000pt;}
.ws12{word-spacing:-13.920000pt;}
.ws85{word-spacing:-13.872000pt;}
.ws7f{word-spacing:-13.728000pt;}
.ws17{word-spacing:-13.680000pt;}
.ws87{word-spacing:-13.632000pt;}
.ws4d{word-spacing:-13.584000pt;}
.ws80{word-spacing:-13.392000pt;}
.wsa{word-spacing:-13.344000pt;}
.ws5b{word-spacing:-13.296000pt;}
.ws4b{word-spacing:-13.248000pt;}
.ws11{word-spacing:-13.200000pt;}
.ws7e{word-spacing:-13.152000pt;}
.ws48{word-spacing:-13.056000pt;}
.ws4a{word-spacing:-13.008000pt;}
.ws4f{word-spacing:-12.912000pt;}
.ws41{word-spacing:-12.864000pt;}
.wsc{word-spacing:-12.816000pt;}
.ws7c{word-spacing:-11.840000pt;}
.wsa9{word-spacing:-11.129600pt;}
.ws5{word-spacing:-10.971733pt;}
.ws8c{word-spacing:-10.932267pt;}
.ws1f{word-spacing:-10.853333pt;}
.ws3f{word-spacing:-10.378667pt;}
.ws1d{word-spacing:-10.363408pt;}
.ws27{word-spacing:-5.952000pt;}
.ws2d{word-spacing:-3.360000pt;}
.ws25{word-spacing:-3.312000pt;}
.ws60{word-spacing:-3.072000pt;}
.ws2{word-spacing:-2.880533pt;}
.ws3a{word-spacing:-2.762667pt;}
.ws9d{word-spacing:-2.723200pt;}
.ws3c{word-spacing:-2.644267pt;}
.ws26{word-spacing:-2.592000pt;}
.ws96{word-spacing:-2.352000pt;}
.wsaf{word-spacing:-2.289067pt;}
.ws78{word-spacing:-2.208000pt;}
.ws22{word-spacing:-2.170667pt;}
.ws98{word-spacing:-2.064000pt;}
.ws70{word-spacing:-2.053333pt;}
.ws54{word-spacing:-1.824000pt;}
.ws6e{word-spacing:-1.584000pt;}
.ws73{word-spacing:-1.440000pt;}
.ws65{word-spacing:-1.392000pt;}
.ws31{word-spacing:-1.248000pt;}
.ws6d{word-spacing:-1.008000pt;}
.ws9e{word-spacing:-0.960000pt;}
.ws74{word-spacing:-0.912000pt;}
.ws81{word-spacing:-0.873600pt;}
.ws24{word-spacing:-0.768000pt;}
.ws32{word-spacing:-0.672000pt;}
.ws7b{word-spacing:-0.592000pt;}
.ws69{word-spacing:-0.480000pt;}
.ws37{word-spacing:-0.432000pt;}
.ws5e{word-spacing:-0.384000pt;}
.ws34{word-spacing:-0.336000pt;}
.ws53{word-spacing:-0.240000pt;}
.wsab{word-spacing:-0.197333pt;}
.ws36{word-spacing:-0.192000pt;}
.ws7a{word-spacing:-0.039467pt;}
.ws8b{word-spacing:-0.027627pt;}
.ws21{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.086400pt;}
.ws2b{word-spacing:0.096000pt;}
.ws9c{word-spacing:0.118400pt;}
.ws58{word-spacing:0.144000pt;}
.ws91{word-spacing:0.192000pt;}
.ws35{word-spacing:0.240000pt;}
.ws3d{word-spacing:0.315733pt;}
.ws6b{word-spacing:0.336000pt;}
.ws68{word-spacing:0.384000pt;}
.ws2a{word-spacing:0.480000pt;}
.ws55{word-spacing:0.528000pt;}
.ws6f{word-spacing:0.576000pt;}
.ws6c{word-spacing:0.672000pt;}
.ws67{word-spacing:0.768000pt;}
.ws9f{word-spacing:0.789333pt;}
.ws38{word-spacing:0.864000pt;}
.ws23{word-spacing:1.104000pt;}
.ws3b{word-spacing:1.105067pt;}
.ws9b{word-spacing:1.223467pt;}
.ws28{word-spacing:1.584000pt;}
.ws29{word-spacing:1.632000pt;}
.ws5f{word-spacing:1.680000pt;}
.ws61{word-spacing:1.776000pt;}
.ws57{word-spacing:1.824000pt;}
.ws79{word-spacing:1.872000pt;}
.ws39{word-spacing:2.090667pt;}
.ws6a{word-spacing:2.112000pt;}
.ws75{word-spacing:2.208000pt;}
.ws99{word-spacing:2.289067pt;}
.ws90{word-spacing:2.304000pt;}
.ws72{word-spacing:2.352000pt;}
.wsae{word-spacing:2.368000pt;}
.ws94{word-spacing:2.486400pt;}
.wsad{word-spacing:2.592000pt;}
.ws5d{word-spacing:2.784000pt;}
.ws5c{word-spacing:3.168000pt;}
.ws95{word-spacing:3.216000pt;}
.ws5a{word-spacing:3.264000pt;}
.ws92{word-spacing:3.354667pt;}
.ws56{word-spacing:3.456000pt;}
.ws2c{word-spacing:3.792000pt;}
.wsb0{word-spacing:3.907200pt;}
.ws33{word-spacing:3.936000pt;}
.ws64{word-spacing:4.128000pt;}
.ws9a{word-spacing:4.222933pt;}
.wsac{word-spacing:4.538667pt;}
.ws62{word-spacing:4.560000pt;}
.ws59{word-spacing:4.896000pt;}
.ws77{word-spacing:5.088000pt;}
.ws8f{word-spacing:5.184000pt;}
.ws66{word-spacing:5.472000pt;}
.ws93{word-spacing:5.485867pt;}
.ws63{word-spacing:5.952000pt;}
.ws76{word-spacing:6.000000pt;}
.ws2e{word-spacing:6.096000pt;}
.ws30{word-spacing:6.192000pt;}
.ws97{word-spacing:6.624000pt;}
.ws2f{word-spacing:6.672000pt;}
.ws1{word-spacing:39.535467pt;}
.ws0{word-spacing:120.970667pt;}
.ws50{word-spacing:122.117333pt;}
.ws51{word-spacing:147.492800pt;}
.ws52{word-spacing:174.458667pt;}
.ws4{word-spacing:869.982400pt;}
.ws71{word-spacing:2107.234667pt;}
.wsa0{word-spacing:2138.040000pt;}
._d{margin-left:-19.842667pt;}
._a{margin-left:-13.890667pt;}
._b{margin-left:-12.713600pt;}
._f{margin-left:-11.760000pt;}
._28{margin-left:-10.145600pt;}
._e{margin-left:-9.251733pt;}
._9{margin-left:-6.297600pt;}
._7{margin-left:-4.844800pt;}
._8{margin-left:-3.665600pt;}
._0{margin-left:-2.692800pt;}
._1{margin-left:-1.604533pt;}
._2{width:1.179200pt;}
._4{width:2.158933pt;}
._5{width:3.523307pt;}
._3{width:5.171200pt;}
._6{width:6.624000pt;}
._c{width:10.098133pt;}
._1a{width:76.944000pt;}
._1d{width:86.874667pt;}
._1b{width:95.729600pt;}
._17{width:105.952000pt;}
._22{width:114.053333pt;}
._12{width:122.602667pt;}
._15{width:166.159467pt;}
._23{width:210.709333pt;}
._21{width:224.298667pt;}
._25{width:277.722667pt;}
._1c{width:298.965333pt;}
._26{width:331.072000pt;}
._11{width:378.768000pt;}
._10{width:510.160000pt;}
._1e{width:524.048000pt;}
._16{width:540.635200pt;}
._14{width:586.282667pt;}
._13{width:595.205333pt;}
._18{width:642.917333pt;}
._1f{width:651.216533pt;}
._19{width:665.093333pt;}
._20{width:725.312000pt;}
._27{width:736.288000pt;}
._24{width:789.600000pt;}
.fs8{font-size:23.009067pt;}
.fs9{font-size:27.626667pt;}
.fs0{font-size:29.333333pt;}
.fs7{font-size:34.202667pt;}
.fs2{font-size:37.333333pt;}
.fs4{font-size:39.466667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:52.738133pt;}
.fs3{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:45.404133pt;}
.y159{bottom:45.435867pt;}
.y7{bottom:45.514400pt;}
.y13d{bottom:45.528267pt;}
.y17b{bottom:46.549467pt;}
.yc9{bottom:46.901467pt;}
.yb9{bottom:49.677200pt;}
.y6{bottom:54.314400pt;}
.y13a{bottom:58.204133pt;}
.y158{bottom:58.235867pt;}
.y13c{bottom:58.328267pt;}
.y17a{bottom:59.349467pt;}
.yc8{bottom:59.701467pt;}
.yb8{bottom:61.677200pt;}
.y5{bottom:63.114400pt;}
.y157{bottom:71.035867pt;}
.y4{bottom:71.914400pt;}
.y179{bottom:72.149467pt;}
.yc7{bottom:72.501467pt;}
.y104{bottom:75.102667pt;}
.yb7{bottom:77.677200pt;}
.y3{bottom:80.714400pt;}
.y156{bottom:83.835867pt;}
.y178{bottom:84.949467pt;}
.y2{bottom:89.514400pt;}
.yb6{bottom:89.677200pt;}
.y155{bottom:96.635867pt;}
.y177{bottom:97.749467pt;}
.y1{bottom:102.314400pt;}
.yb5{bottom:105.677200pt;}
.y154{bottom:109.435867pt;}
.y176{bottom:110.549467pt;}
.yb4{bottom:121.677200pt;}
.y153{bottom:122.235867pt;}
.y175{bottom:123.349467pt;}
.y10a{bottom:128.094671pt;}
.y109{bottom:128.239701pt;}
.y54{bottom:129.005467pt;}
.y133{bottom:129.228541pt;}
.y132{bottom:129.373571pt;}
.y106{bottom:129.544970pt;}
.y105{bottom:129.690000pt;}
.y4c{bottom:130.923200pt;}
.y135{bottom:131.562204pt;}
.y134{bottom:131.707234pt;}
.y10c{bottom:131.957740pt;}
.y10b{bottom:132.102770pt;}
.yb3{bottom:133.677200pt;}
.y152{bottom:135.035867pt;}
.y124{bottom:135.478010pt;}
.y123{bottom:135.623040pt;}
.y120{bottom:136.796463pt;}
.y11f{bottom:136.941493pt;}
.y125{bottom:137.297476pt;}
.y10e{bottom:137.350214pt;}
.y12a{bottom:137.455690pt;}
.y10d{bottom:137.495244pt;}
.y122{bottom:137.521613pt;}
.y129{bottom:137.600720pt;}
.y121{bottom:137.666643pt;}
.y131{bottom:137.679827pt;}
.y12f{bottom:137.745750pt;}
.y130{bottom:137.824857pt;}
.y12c{bottom:138.035810pt;}
.y12b{bottom:138.180839pt;}
.y114{bottom:138.233578pt;}
.y128{bottom:138.325869pt;}
.y113{bottom:138.378607pt;}
.y116{bottom:138.457715pt;}
.y11e{bottom:138.470899pt;}
.y115{bottom:138.602745pt;}
.y11d{bottom:138.615929pt;}
.y118{bottom:138.681852pt;}
.y12e{bottom:138.760959pt;}
.y117{bottom:138.826882pt;}
.y12d{bottom:138.905989pt;}
.y127{bottom:139.196049pt;}
.y126{bottom:139.341078pt;}
.y11c{bottom:139.631138pt;}
.y112{bottom:139.762983pt;}
.y11b{bottom:139.776168pt;}
.y111{bottom:139.908013pt;}
.y11a{bottom:140.211258pt;}
.y119{bottom:140.356287pt;}
.y53{bottom:144.291067pt;}
.y4b{bottom:145.589867pt;}
.yb2{bottom:145.677200pt;}
.y137{bottom:147.001292pt;}
.y136{bottom:147.146322pt;}
.y151{bottom:147.835867pt;}
.y108{bottom:148.267007pt;}
.y107{bottom:148.412037pt;}
.y174{bottom:149.482800pt;}
.y139{bottom:149.545907pt;}
.y138{bottom:149.690937pt;}
.y52{bottom:153.005467pt;}
.y4a{bottom:160.256533pt;}
.y150{bottom:160.635867pt;}
.yb1{bottom:161.677200pt;}
.y51{bottom:168.291067pt;}
.y110{bottom:168.821695pt;}
.y10f{bottom:168.966725pt;}
.y14f{bottom:173.435867pt;}
.y49{bottom:174.923200pt;}
.yb0{bottom:177.677200pt;}
.y173{bottom:184.149467pt;}
.y14e{bottom:186.235867pt;}
.y48{bottom:189.589867pt;}
.yaf{bottom:193.677200pt;}
.y2c{bottom:194.923333pt;}
.y172{bottom:196.949467pt;}
.y14d{bottom:199.035867pt;}
.y47{bottom:204.256533pt;}
.y2b{bottom:209.590000pt;}
.y171{bottom:209.749467pt;}
.y14c{bottom:211.835867pt;}
.yae{bottom:213.677200pt;}
.y46{bottom:218.923200pt;}
.y170{bottom:222.549467pt;}
.y2a{bottom:224.256667pt;}
.y14b{bottom:224.635867pt;}
.y45{bottom:233.589867pt;}
.y16f{bottom:235.349467pt;}
.y14a{bottom:237.435867pt;}
.yba{bottom:237.540933pt;}
.y29{bottom:238.923333pt;}
.y16e{bottom:248.149467pt;}
.y149{bottom:250.235867pt;}
.y28{bottom:257.590000pt;}
.y16d{bottom:260.949467pt;}
.y44{bottom:261.589867pt;}
.y148{bottom:263.035867pt;}
.y27{bottom:272.256667pt;}
.y16c{bottom:273.749467pt;}
.y147{bottom:275.835867pt;}
.y93{bottom:279.000933pt;}
.y16b{bottom:286.549467pt;}
.y26{bottom:286.923333pt;}
.y146{bottom:288.635867pt;}
.y92{bottom:293.667600pt;}
.y43{bottom:296.256533pt;}
.y16a{bottom:299.349467pt;}
.y145{bottom:301.435867pt;}
.y25{bottom:301.590000pt;}
.y91{bottom:308.334267pt;}
.y42{bottom:310.923200pt;}
.y144{bottom:314.235867pt;}
.y24{bottom:316.256667pt;}
.y90{bottom:323.000933pt;}
.y41{bottom:325.589867pt;}
.y143{bottom:327.035867pt;}
.y169{bottom:330.816133pt;}
.y23{bottom:330.923333pt;}
.yad{bottom:337.667600pt;}
.y142{bottom:339.835867pt;}
.y40{bottom:340.256533pt;}
.y8f{bottom:341.667600pt;}
.y168{bottom:345.482800pt;}
.y22{bottom:345.590000pt;}
.yac{bottom:352.334267pt;}
.y141{bottom:352.635867pt;}
.y3f{bottom:354.923200pt;}
.y8e{bottom:356.334267pt;}
.y167{bottom:360.149467pt;}
.y21{bottom:360.256667pt;}
.y140{bottom:365.435867pt;}
.yab{bottom:367.000933pt;}
.y3e{bottom:369.589867pt;}
.y8d{bottom:371.000933pt;}
.y166{bottom:374.816133pt;}
.y20{bottom:374.923333pt;}
.y13f{bottom:378.235867pt;}
.yaa{bottom:381.667600pt;}
.y3d{bottom:384.256533pt;}
.y8c{bottom:385.667600pt;}
.y165{bottom:389.482800pt;}
.y1f{bottom:389.590000pt;}
.y13e{bottom:391.035867pt;}
.yf1{bottom:395.800800pt;}
.ya9{bottom:396.334267pt;}
.y8b{bottom:400.334267pt;}
.y1e{bottom:404.256667pt;}
.yf0{bottom:410.467467pt;}
.y3c{bottom:412.256533pt;}
.y8a{bottom:415.000933pt;}
.y1d{bottom:418.923333pt;}
.yef{bottom:425.134133pt;}
.y89{bottom:429.667600pt;}
.y164{bottom:430.468800pt;}
.y1c{bottom:433.590000pt;}
.yee{bottom:439.800800pt;}
.y163{bottom:443.268800pt;}
.y88{bottom:444.334267pt;}
.y3b{bottom:446.923200pt;}
.y1b{bottom:448.256667pt;}
.yed{bottom:454.467467pt;}
.y87{bottom:459.000933pt;}
.y3a{bottom:461.589867pt;}
.y1a{bottom:462.923333pt;}
.y162{bottom:463.216667pt;}
.y161{bottom:463.580933pt;}
.yec{bottom:469.134133pt;}
.y86{bottom:473.667600pt;}
.y39{bottom:476.256533pt;}
.y19{bottom:477.590000pt;}
.yeb{bottom:483.800800pt;}
.y85{bottom:488.334267pt;}
.y38{bottom:490.923200pt;}
.y18{bottom:492.256667pt;}
.yea{bottom:498.467467pt;}
.y84{bottom:503.000933pt;}
.y37{bottom:505.589867pt;}
.y17{bottom:506.923333pt;}
.ya8{bottom:507.000933pt;}
.ye9{bottom:513.134133pt;}
.y83{bottom:517.667600pt;}
.y36{bottom:520.256533pt;}
.y16{bottom:521.590000pt;}
.ya7{bottom:521.667600pt;}
.ye8{bottom:527.800800pt;}
.y82{bottom:532.334267pt;}
.y35{bottom:534.923200pt;}
.y15{bottom:536.256667pt;}
.ya6{bottom:536.334267pt;}
.ye7{bottom:542.467467pt;}
.y103{bottom:544.867467pt;}
.y81{bottom:547.000933pt;}
.y34{bottom:549.589867pt;}
.y14{bottom:550.923333pt;}
.ya5{bottom:551.000933pt;}
.ye6{bottom:557.134133pt;}
.y102{bottom:559.534133pt;}
.y80{bottom:561.667600pt;}
.y33{bottom:564.256533pt;}
.y13{bottom:565.590000pt;}
.ya4{bottom:565.667600pt;}
.ye5{bottom:571.800800pt;}
.y101{bottom:574.200800pt;}
.y7f{bottom:576.334267pt;}
.y32{bottom:578.923200pt;}
.y12{bottom:580.256667pt;}
.ya3{bottom:580.334267pt;}
.ye4{bottom:586.467467pt;}
.y100{bottom:588.867467pt;}
.y7e{bottom:591.000933pt;}
.y31{bottom:593.589867pt;}
.y11{bottom:594.923333pt;}
.ya2{bottom:595.000933pt;}
.ye3{bottom:601.134133pt;}
.yff{bottom:603.534133pt;}
.y7d{bottom:605.667600pt;}
.y30{bottom:608.256533pt;}
.y10{bottom:609.590000pt;}
.ya1{bottom:609.667600pt;}
.ye2{bottom:615.800800pt;}
.yfe{bottom:618.200800pt;}
.y7c{bottom:620.334267pt;}
.y2f{bottom:622.923200pt;}
.yf{bottom:624.256667pt;}
.ya0{bottom:624.334267pt;}
.yfd{bottom:632.867467pt;}
.y7b{bottom:635.000933pt;}
.y2e{bottom:637.589867pt;}
.ye1{bottom:638.467467pt;}
.y9f{bottom:639.000933pt;}
.y7a{bottom:649.667600pt;}
.ye0{bottom:651.267467pt;}
.y2d{bottom:652.256533pt;}
.ye{bottom:652.256667pt;}
.y9e{bottom:653.667600pt;}
.yfc{bottom:655.534133pt;}
.ydf{bottom:664.067467pt;}
.y79{bottom:664.334267pt;}
.yfb{bottom:668.334133pt;}
.y9d{bottom:668.334267pt;}
.yde{bottom:676.867467pt;}
.y78{bottom:679.000933pt;}
.yfa{bottom:681.134133pt;}
.y9c{bottom:683.000933pt;}
.y77{bottom:693.667600pt;}
.yf9{bottom:693.934133pt;}
.ydd{bottom:697.667467pt;}
.y9b{bottom:697.667600pt;}
.y15e{bottom:704.282267pt;}
.yf8{bottom:706.734133pt;}
.y160{bottom:706.991867pt;}
.ydc{bottom:712.334133pt;}
.y76{bottom:712.334267pt;}
.y15d{bottom:717.082400pt;}
.yf7{bottom:719.534133pt;}
.y75{bottom:727.000933pt;}
.y15c{bottom:729.882400pt;}
.yf6{bottom:732.334133pt;}
.y74{bottom:741.667600pt;}
.y15b{bottom:742.682267pt;}
.yd{bottom:743.146133pt;}
.yf5{bottom:745.134133pt;}
.ydb{bottom:747.000800pt;}
.y15a{bottom:755.482400pt;}
.yc{bottom:755.946133pt;}
.y73{bottom:756.334267pt;}
.yf4{bottom:757.934133pt;}
.yda{bottom:761.667467pt;}
.yb{bottom:768.746133pt;}
.yf3{bottom:770.734133pt;}
.y72{bottom:771.000933pt;}
.yd9{bottom:776.334133pt;}
.yf2{bottom:783.534133pt;}
.y71{bottom:785.667600pt;}
.y9a{bottom:789.667600pt;}
.yd8{bottom:791.000800pt;}
.y70{bottom:800.334267pt;}
.y99{bottom:804.334267pt;}
.yd7{bottom:805.667467pt;}
.y5e{bottom:810.139333pt;}
.y15f{bottom:811.920133pt;}
.y6f{bottom:815.000933pt;}
.y59{bottom:817.606000pt;}
.y98{bottom:819.000933pt;}
.yd6{bottom:820.334133pt;}
.y5d{bottom:822.939333pt;}
.y6e{bottom:829.667600pt;}
.y58{bottom:830.406000pt;}
.y97{bottom:833.667600pt;}
.yd5{bottom:835.000800pt;}
.y5c{bottom:835.739333pt;}
.y57{bottom:843.206000pt;}
.y6d{bottom:844.334267pt;}
.y96{bottom:848.334267pt;}
.y5b{bottom:848.539333pt;}
.yd4{bottom:849.667467pt;}
.y56{bottom:856.006000pt;}
.y6c{bottom:859.000933pt;}
.y5a{bottom:861.339333pt;}
.y95{bottom:863.000933pt;}
.yd3{bottom:864.334133pt;}
.y6b{bottom:873.667600pt;}
.y55{bottom:874.139333pt;}
.y94{bottom:877.667600pt;}
.yd2{bottom:879.000800pt;}
.y6a{bottom:892.334267pt;}
.yd1{bottom:893.667467pt;}
.ybe{bottom:904.334267pt;}
.yc6{bottom:904.867600pt;}
.y69{bottom:907.000933pt;}
.yd0{bottom:916.334133pt;}
.ybd{bottom:919.000933pt;}
.yc5{bottom:919.800933pt;}
.y68{bottom:921.667600pt;}
.yc4{bottom:934.734267pt;}
.y67{bottom:936.334267pt;}
.ycf{bottom:937.134133pt;}
.y50{bottom:939.480667pt;}
.ybc{bottom:947.000933pt;}
.yc3{bottom:949.667600pt;}
.yce{bottom:949.934133pt;}
.y66{bottom:951.000933pt;}
.ycd{bottom:962.734133pt;}
.yc2{bottom:964.600933pt;}
.y65{bottom:965.667600pt;}
.y4f{bottom:971.480667pt;}
.ycc{bottom:975.534133pt;}
.yc1{bottom:979.534267pt;}
.y64{bottom:980.334267pt;}
.yc0{bottom:994.467600pt;}
.y63{bottom:995.000933pt;}
.y4e{bottom:995.480667pt;}
.ycb{bottom:996.334133pt;}
.ybf{bottom:1009.400933pt;}
.y62{bottom:1009.667600pt;}
.y4d{bottom:1019.480667pt;}
.yca{bottom:1024.334133pt;}
.y61{bottom:1024.334267pt;}
.y5f{bottom:1057.997867pt;}
.y60{bottom:1058.968533pt;}
.y9{bottom:1059.780533pt;}
.ybb{bottom:1059.950667pt;}
.ya{bottom:1063.001867pt;}
.y8{bottom:1072.580533pt;}
.hb{height:16.751230pt;}
.h1{height:21.355469pt;}
.h2{height:21.384115pt;}
.he{height:27.179688pt;}
.hd{height:27.216146pt;}
.hc{height:28.732813pt;}
.h6{height:28.771354pt;}
.h3{height:31.062500pt;}
.h4{height:31.104167pt;}
.h7{height:34.945312pt;}
.h8{height:34.992188pt;}
.h10{height:36.916693pt;}
.h5{height:42.710938pt;}
.ha{height:44.436477pt;}
.h11{height:44.774675pt;}
.h12{height:46.062500pt;}
.h9{height:54.359375pt;}
.hf{height:294.833333pt;}
.h0{height:1113.333333pt;}
.w1{width:325.542667pt;}
.w0{width:777.333333pt;}
.x0{left:0.000000pt;}
.xb{left:46.752292pt;}
.x1{left:50.026267pt;}
.x4{left:57.585333pt;}
.x11{left:58.614971pt;}
.x10{left:60.257894pt;}
.xe{left:61.978435pt;}
.x7{left:65.144400pt;}
.x8{left:66.764903pt;}
.xd{left:71.551371pt;}
.xa{left:73.051993pt;}
.xc{left:74.125714pt;}
.xf{left:75.768637pt;}
.x9{left:79.481384pt;}
.x16{left:93.133067pt;}
.x15{left:167.758533pt;}
.x5{left:237.490800pt;}
.x2{left:310.518933pt;}
.x13{left:396.689600pt;}
.x14{left:398.579200pt;}
.x3{left:405.301733pt;}
.x12{left:412.860800pt;}
.x6{left:712.544267pt;}
}




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