
    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_7f1cb0a4fa2ce52b56a7ff35.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a3397b0e1cebb0c90247899a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8d4080343aea9651e6925c62.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1f8bd461228c1235b473ba48.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_56b85b56eecc7126f0ad3bbb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a253940b254123683355748a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a07c6d6faf329752002cc7cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01e9d87fbcbedd3d50df477b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_079957bfe2ef8e290bc4f4dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_7517b5d51fba7749f3644966.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d8dbbcfe0faa3b2fde2e0fce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_e419f17debffe54b8a85108a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_fd12068c18c3aedddbdfed23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692383;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_169fc9b1381cae3547a9b7ad.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v4{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.984000px;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v5{vertical-align:21.978000px;}
.v1{vertical-align:25.974000px;}
.lsc{letter-spacing:-1.038906px;}
.lse{letter-spacing:-1.035408px;}
.ls7{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.279840px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls11{letter-spacing:0.006600px;}
.ls10{letter-spacing:0.009000px;}
.lsf{letter-spacing:0.009600px;}
.ls12{letter-spacing:0.010200px;}
.lsd{letter-spacing:0.384780px;}
.ls1{letter-spacing:0.407400px;}
.ls9{letter-spacing:0.619200px;}
.ls8{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.810000px;}
.lsb{letter-spacing:0.918600px;}
.lsa{letter-spacing:51.097800px;}
.ls2{letter-spacing:78.043800px;}
.ls4{letter-spacing:87.600000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9a{word-spacing:-37.884000px;}
.ws20{word-spacing:-37.224000px;}
.ws3f{word-spacing:-33.840000px;}
.ws3{word-spacing:-30.456000px;}
.ws6{word-spacing:-27.072000px;}
.ws1{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.000000px;}
.ws97{word-spacing:-17.160000px;}
.ws21{word-spacing:-16.500000px;}
.ws3e{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.676000px;}
.ws40{word-spacing:-11.550000px;}
.ws63{word-spacing:-11.520000px;}
.wsb9{word-spacing:-10.500000px;}
.ws99{word-spacing:-10.004280px;}
.ws22{word-spacing:-9.619500px;}
.wsea{word-spacing:-8.745000px;}
.ws98{word-spacing:-8.580594px;}
.ws41{word-spacing:-8.400000px;}
.ws5{word-spacing:-7.870500px;}
.ws64{word-spacing:-6.996000px;}
.ws9b{word-spacing:-5.960592px;}
.ws11{word-spacing:-4.824000px;}
.ws37{word-spacing:-3.630000px;}
.ws13{word-spacing:-3.564000px;}
.ws12{word-spacing:-3.528000px;}
.wsf4{word-spacing:-3.480000px;}
.wsc5{word-spacing:-3.432000px;}
.wsa{word-spacing:-3.300000px;}
.ws30{word-spacing:-3.234000px;}
.ws51{word-spacing:-3.168000px;}
.ws2f{word-spacing:-3.102000px;}
.wsa6{word-spacing:-3.036000px;}
.ws6d{word-spacing:-2.904000px;}
.ws42{word-spacing:-2.820000px;}
.wsb2{word-spacing:-2.772000px;}
.ws58{word-spacing:-2.640000px;}
.ws14{word-spacing:-2.592000px;}
.wsf3{word-spacing:-2.400000px;}
.wsaa{word-spacing:-2.376000px;}
.wsac{word-spacing:-2.310000px;}
.wsd3{word-spacing:-2.280000px;}
.wsb7{word-spacing:-2.208000px;}
.ws49{word-spacing:-2.160000px;}
.ws50{word-spacing:-2.112000px;}
.wsc6{word-spacing:-2.046000px;}
.wse7{word-spacing:-2.040000px;}
.wsd4{word-spacing:-1.980000px;}
.ws76{word-spacing:-1.920000px;}
.ws4e{word-spacing:-1.782000px;}
.ws61{word-spacing:-1.776000px;}
.wsd1{word-spacing:-1.740000px;}
.ws2a{word-spacing:-1.716000px;}
.wsa3{word-spacing:-1.650000px;}
.ws46{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.512000px;}
.ws60{word-spacing:-1.440000px;}
.ws77{word-spacing:-1.392000px;}
.ws39{word-spacing:-1.386000px;}
.wsf0{word-spacing:-1.380000px;}
.ws3a{word-spacing:-1.344000px;}
.wse4{word-spacing:-1.260000px;}
.wsca{word-spacing:-1.254000px;}
.ws4d{word-spacing:-1.188000px;}
.wscc{word-spacing:-1.080000px;}
.ws5e{word-spacing:-1.056000px;}
.ws2b{word-spacing:-0.990000px;}
.wsb6{word-spacing:-0.960000px;}
.ws35{word-spacing:-0.924000px;}
.ws73{word-spacing:-0.864000px;}
.wsc9{word-spacing:-0.858000px;}
.ws7b{word-spacing:-0.816000px;}
.wsbe{word-spacing:-0.792000px;}
.wsed{word-spacing:-0.780000px;}
.wscd{word-spacing:-0.768000px;}
.ws65{word-spacing:-0.726000px;}
.ws7f{word-spacing:-0.660000px;}
.wse9{word-spacing:-0.600000px;}
.wscb{word-spacing:-0.594000px;}
.wsa8{word-spacing:-0.528000px;}
.ws56{word-spacing:-0.462000px;}
.ws8f{word-spacing:-0.396000px;}
.ws17{word-spacing:-0.378000px;}
.wsda{word-spacing:-0.360000px;}
.wsef{word-spacing:-0.300000px;}
.wsce{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.264000px;}
.wsec{word-spacing:-0.240000px;}
.wsa0{word-spacing:-0.198000px;}
.ws84{word-spacing:-0.132000px;}
.ws94{word-spacing:-0.096000px;}
.wsa7{word-spacing:-0.066000px;}
.ws3c{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws67{word-spacing:0.132000px;}
.wscf{word-spacing:0.144000px;}
.ws71{word-spacing:0.180000px;}
.ws66{word-spacing:0.198000px;}
.ws23{word-spacing:0.216000px;}
.wseb{word-spacing:0.240000px;}
.ws29{word-spacing:0.264000px;}
.ws1c{word-spacing:0.270000px;}
.ws72{word-spacing:0.279840px;}
.wsdd{word-spacing:0.300000px;}
.wsdf{word-spacing:0.360000px;}
.wsbd{word-spacing:0.396000px;}
.ws1a{word-spacing:0.432000px;}
.ws74{word-spacing:0.480000px;}
.wsad{word-spacing:0.594000px;}
.wsaf{word-spacing:0.660000px;}
.ws78{word-spacing:0.672000px;}
.wsdb{word-spacing:0.720000px;}
.ws57{word-spacing:0.726000px;}
.ws96{word-spacing:0.768000px;}
.wsb{word-spacing:0.810000px;}
.wsd2{word-spacing:0.840000px;}
.ws36{word-spacing:0.858000px;}
.wsb8{word-spacing:0.912000px;}
.ws31{word-spacing:0.924000px;}
.wsf2{word-spacing:0.960000px;}
.ws25{word-spacing:0.990000px;}
.wsb0{word-spacing:1.056000px;}
.wsb5{word-spacing:1.104000px;}
.ws52{word-spacing:1.122000px;}
.wsba{word-spacing:1.188000px;}
.ws69{word-spacing:1.254000px;}
.ws4f{word-spacing:1.320000px;}
.wsdc{word-spacing:1.380000px;}
.ws2e{word-spacing:1.386000px;}
.ws90{word-spacing:1.452000px;}
.wsf{word-spacing:1.458000px;}
.wsb3{word-spacing:1.488000px;}
.wsf5{word-spacing:1.500000px;}
.ws5a{word-spacing:1.518000px;}
.wsb4{word-spacing:1.536000px;}
.ws55{word-spacing:1.584000px;}
.ws10{word-spacing:1.620000px;}
.ws8e{word-spacing:1.650000px;}
.wsd5{word-spacing:1.680000px;}
.ws32{word-spacing:1.716000px;}
.ws87{word-spacing:1.740000px;}
.wsc7{word-spacing:1.782000px;}
.ws5c{word-spacing:1.914000px;}
.ws62{word-spacing:1.920000px;}
.wsa9{word-spacing:1.980000px;}
.ws28{word-spacing:2.046000px;}
.ws15{word-spacing:2.052000px;}
.ws68{word-spacing:2.244000px;}
.ws88{word-spacing:2.280000px;}
.wse{word-spacing:2.322000px;}
.wsc2{word-spacing:2.442000px;}
.ws7c{word-spacing:2.448000px;}
.ws8a{word-spacing:2.460000px;}
.wsc{word-spacing:2.484000px;}
.ws81{word-spacing:2.508000px;}
.ws7e{word-spacing:2.520000px;}
.wsb1{word-spacing:2.574000px;}
.wse5{word-spacing:2.640000px;}
.wsa4{word-spacing:2.706000px;}
.ws93{word-spacing:2.772000px;}
.ws6a{word-spacing:2.838000px;}
.ws16{word-spacing:2.916000px;}
.ws79{word-spacing:2.928000px;}
.ws9c{word-spacing:3.036000px;}
.ws2d{word-spacing:3.102000px;}
.ws7a{word-spacing:3.168000px;}
.ws80{word-spacing:3.180000px;}
.ws1b{word-spacing:3.186000px;}
.ws4c{word-spacing:3.300000px;}
.ws9{word-spacing:3.354000px;}
.wsbf{word-spacing:3.366000px;}
.ws19{word-spacing:3.402000px;}
.ws75{word-spacing:3.456000px;}
.ws54{word-spacing:3.498000px;}
.ws9e{word-spacing:3.564000px;}
.wsc1{word-spacing:3.630000px;}
.ws4b{word-spacing:3.660000px;}
.wsc3{word-spacing:3.762000px;}
.ws1f{word-spacing:3.792000px;}
.ws53{word-spacing:3.894000px;}
.ws26{word-spacing:3.960000px;}
.wse2{word-spacing:4.020000px;}
.ws9d{word-spacing:4.026000px;}
.ws6e{word-spacing:4.092000px;}
.ws91{word-spacing:4.290000px;}
.ws18{word-spacing:4.320000px;}
.wsbc{word-spacing:4.422000px;}
.ws24{word-spacing:4.428000px;}
.ws27{word-spacing:4.686000px;}
.ws8c{word-spacing:4.740000px;}
.wsa2{word-spacing:4.752000px;}
.wsa5{word-spacing:4.884000px;}
.ws5f{word-spacing:4.896000px;}
.ws59{word-spacing:4.950000px;}
.ws9f{word-spacing:5.016000px;}
.wse3{word-spacing:5.040000px;}
.ws4a{word-spacing:5.100000px;}
.ws3b{word-spacing:5.136000px;}
.wsde{word-spacing:5.220000px;}
.ws5d{word-spacing:5.232000px;}
.wsc0{word-spacing:5.346000px;}
.wsc8{word-spacing:5.478000px;}
.wsab{word-spacing:5.544000px;}
.ws1e{word-spacing:5.568000px;}
.ws43{word-spacing:5.580000px;}
.ws6c{word-spacing:5.610000px;}
.wsd8{word-spacing:5.640000px;}
.ws95{word-spacing:5.712000px;}
.ws33{word-spacing:5.808000px;}
.wse6{word-spacing:5.940000px;}
.wsd9{word-spacing:6.000000px;}
.ws45{word-spacing:6.060000px;}
.ws83{word-spacing:6.072000px;}
.ws85{word-spacing:6.180000px;}
.ws82{word-spacing:6.336000px;}
.wsf1{word-spacing:6.360000px;}
.wse8{word-spacing:6.660000px;}
.wsee{word-spacing:6.840000px;}
.ws6b{word-spacing:6.864000px;}
.wse0{word-spacing:6.900000px;}
.wsa1{word-spacing:6.930000px;}
.ws38{word-spacing:7.260000px;}
.wsd7{word-spacing:7.320000px;}
.ws34{word-spacing:7.392000px;}
.wsc4{word-spacing:7.788000px;}
.wsbb{word-spacing:7.854000px;}
.ws1d{word-spacing:7.920000px;}
.wsd6{word-spacing:8.160000px;}
.ws48{word-spacing:8.280000px;}
.ws89{word-spacing:8.340000px;}
.ws70{word-spacing:8.382000px;}
.wsae{word-spacing:8.580000px;}
.ws92{word-spacing:8.910000px;}
.wsd0{word-spacing:8.940000px;}
.ws6f{word-spacing:8.976000px;}
.wse1{word-spacing:9.300000px;}
.ws5b{word-spacing:9.834000px;}
.ws8d{word-spacing:10.920000px;}
.ws8b{word-spacing:13.980000px;}
.ws44{word-spacing:21.060000px;}
.ws86{word-spacing:22.920000px;}
.ws47{word-spacing:25.080000px;}
.ws3d{word-spacing:605.679600px;}
.ws7d{word-spacing:665.207400px;}
._0{margin-left:-2211.023400px;}
._9{margin-left:-1070.352000px;}
._b{margin-left:-220.176000px;}
._e{margin-left:-8.613000px;}
._11{margin-left:-7.353240px;}
._8{margin-left:-6.182400px;}
._2{margin-left:-4.312800px;}
._3{margin-left:-2.373000px;}
._4{margin-left:-1.012200px;}
._6{width:1.210200px;}
._c{width:2.307600px;}
._1{width:3.337200px;}
._5{width:4.644000px;}
._d{width:6.006000px;}
._10{width:7.822800px;}
._f{width:50.059800px;}
._7{width:64.051200px;}
._a{width:1508.986800px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(248,248,248);}
.fs8{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fse{font-size:33.600000px;}
.fs5{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.478000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:45.474000px;}
.fsd{font-size:46.200000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.y2a{bottom:-25.015800px;}
.y0{bottom:0.000000px;}
.y2{bottom:42.428250px;}
.y54{bottom:71.893800px;}
.y29{bottom:75.889800px;}
.y53{bottom:86.893800px;}
.y28{bottom:90.889800px;}
.y133{bottom:94.502250px;}
.y52{bottom:101.893800px;}
.y27{bottom:101.893950px;}
.y132{bottom:112.502250px;}
.y51{bottom:116.893800px;}
.y26{bottom:116.893950px;}
.yc8{bottom:120.889800px;}
.y131{bottom:130.502250px;}
.y50{bottom:131.893800px;}
.y25{bottom:131.893950px;}
.yf0{bottom:135.889800px;}
.y4f{bottom:146.893800px;}
.yef{bottom:146.893950px;}
.y130{bottom:148.502250px;}
.y7f{bottom:150.889800px;}
.y24{bottom:150.889950px;}
.y115{bottom:156.460800px;}
.ya4{bottom:161.893800px;}
.y7e{bottom:161.893950px;}
.y4e{bottom:165.889800px;}
.yee{bottom:165.889950px;}
.y12f{bottom:166.502250px;}
.y7d{bottom:176.893950px;}
.yed{bottom:176.894100px;}
.ya3{bottom:180.889800px;}
.y12e{bottom:184.502250px;}
.ya2{bottom:191.893950px;}
.yec{bottom:191.894100px;}
.y114{bottom:192.460800px;}
.y7c{bottom:195.889950px;}
.y12d{bottom:202.502250px;}
.ya1{bottom:206.893950px;}
.yeb{bottom:210.890100px;}
.y23{bottom:217.651500px;}
.y12c{bottom:220.502250px;}
.ya0{bottom:221.893950px;}
.yc7{bottom:222.324900px;}
.y22{bottom:232.651500px;}
.y4d{bottom:236.543700px;}
.y7b{bottom:237.088500px;}
.y12b{bottom:238.502250px;}
.yc6{bottom:240.324900px;}
.y9f{bottom:240.889950px;}
.y21{bottom:247.651500px;}
.y113{bottom:250.960800px;}
.yea{bottom:251.242800px;}
.y9e{bottom:251.894100px;}
.y4c{bottom:254.543700px;}
.y7a{bottom:255.088500px;}
.y12a{bottom:256.502250px;}
.yc5{bottom:258.324900px;}
.y9d{bottom:266.894100px;}
.y112{bottom:268.960800px;}
.ye9{bottom:269.242800px;}
.y4b{bottom:272.543700px;}
.y79{bottom:273.088500px;}
.y129{bottom:274.502250px;}
.yc4{bottom:276.324900px;}
.y9c{bottom:285.890100px;}
.y111{bottom:286.960800px;}
.ye8{bottom:287.242800px;}
.y4a{bottom:290.543700px;}
.y78{bottom:291.088500px;}
.y128{bottom:292.502250px;}
.y20{bottom:292.651500px;}
.yc3{bottom:294.324900px;}
.y9b{bottom:296.894250px;}
.y110{bottom:304.960800px;}
.ye7{bottom:305.242800px;}
.y1f{bottom:307.651500px;}
.y77{bottom:309.088500px;}
.y127{bottom:310.502250px;}
.yc2{bottom:312.324900px;}
.y9a{bottom:315.890250px;}
.y1e{bottom:322.651500px;}
.y10f{bottom:322.960800px;}
.ye6{bottom:323.242800px;}
.y49{bottom:326.543700px;}
.y76{bottom:327.088500px;}
.y126{bottom:328.502250px;}
.yc1{bottom:330.324900px;}
.y1d{bottom:337.651500px;}
.y10e{bottom:340.960800px;}
.ye5{bottom:341.242800px;}
.y75{bottom:345.088500px;}
.y125{bottom:346.502250px;}
.yc0{bottom:348.324900px;}
.y1c{bottom:352.651500px;}
.y10d{bottom:358.960800px;}
.y99{bottom:358.976850px;}
.ye4{bottom:359.242800px;}
.y74{bottom:363.088500px;}
.y124{bottom:364.502250px;}
.y153{bottom:364.516950px;}
.y48{bottom:367.043700px;}
.y1b{bottom:367.651500px;}
.y10c{bottom:376.960800px;}
.y98{bottom:376.976850px;}
.ye3{bottom:377.242800px;}
.y73{bottom:381.088500px;}
.y123{bottom:382.502250px;}
.y152{bottom:382.516950px;}
.y1a{bottom:382.651500px;}
.y47{bottom:385.043700px;}
.ybf{bottom:393.584700px;}
.y10b{bottom:394.960800px;}
.ye2{bottom:395.242800px;}
.y19{bottom:397.651500px;}
.y72{bottom:399.088500px;}
.y122{bottom:400.502250px;}
.y151{bottom:400.516950px;}
.y46{bottom:403.043700px;}
.ybe{bottom:410.084700px;}
.y18{bottom:412.651500px;}
.y10a{bottom:412.960800px;}
.y97{bottom:412.976850px;}
.ye1{bottom:413.242800px;}
.y71{bottom:417.088500px;}
.y121{bottom:418.502250px;}
.y150{bottom:418.516950px;}
.y45{bottom:421.043700px;}
.ybd{bottom:426.584700px;}
.y17{bottom:427.651500px;}
.y109{bottom:430.960800px;}
.y96{bottom:430.976850px;}
.ye0{bottom:431.242800px;}
.y70{bottom:435.088500px;}
.y120{bottom:436.502250px;}
.y14f{bottom:436.516950px;}
.y44{bottom:439.043700px;}
.y108{bottom:448.960800px;}
.y95{bottom:448.976850px;}
.ydf{bottom:449.242800px;}
.y6f{bottom:453.088500px;}
.y11f{bottom:454.502250px;}
.y14e{bottom:454.516950px;}
.ybc{bottom:454.985100px;}
.y43{bottom:457.043700px;}
.y16{bottom:457.651500px;}
.y107{bottom:466.960800px;}
.y94{bottom:466.976850px;}
.y6e{bottom:471.088500px;}
.ybb{bottom:471.485100px;}
.y11e{bottom:472.502250px;}
.y14d{bottom:472.516950px;}
.y42{bottom:475.043700px;}
.y15{bottom:478.651500px;}
.y106{bottom:484.960800px;}
.yde{bottom:485.242800px;}
.yba{bottom:487.985100px;}
.y6d{bottom:489.088500px;}
.y11d{bottom:490.502250px;}
.y14c{bottom:490.516950px;}
.y41{bottom:493.043700px;}
.y105{bottom:502.960800px;}
.y93{bottom:502.976850px;}
.y6c{bottom:507.088500px;}
.y11c{bottom:508.502250px;}
.y14b{bottom:508.516950px;}
.y40{bottom:511.043700px;}
.yb9{bottom:516.385500px;}
.y104{bottom:520.960800px;}
.y6b{bottom:525.088500px;}
.y11b{bottom:526.502250px;}
.y14a{bottom:526.516950px;}
.y3f{bottom:529.043700px;}
.y14{bottom:529.651500px;}
.yb8{bottom:532.885500px;}
.y103{bottom:538.960800px;}
.y6a{bottom:543.088500px;}
.ydd{bottom:543.742800px;}
.y11a{bottom:544.502250px;}
.y149{bottom:544.516950px;}
.y13{bottom:544.651500px;}
.y3e{bottom:547.043700px;}
.yb7{bottom:549.385500px;}
.y102{bottom:556.960800px;}
.y12{bottom:559.651500px;}
.y69{bottom:561.088500px;}
.y92{bottom:561.476850px;}
.ydc{bottom:561.742800px;}
.y119{bottom:562.502250px;}
.y148{bottom:562.516950px;}
.y3d{bottom:565.043700px;}
.y11{bottom:574.651500px;}
.y101{bottom:574.960800px;}
.yb6{bottom:578.827350px;}
.y68{bottom:579.088500px;}
.y91{bottom:579.476850px;}
.ydb{bottom:579.742800px;}
.y118{bottom:580.502250px;}
.y147{bottom:580.516950px;}
.y3c{bottom:583.043700px;}
.y10{bottom:589.651500px;}
.y100{bottom:592.960800px;}
.y67{bottom:597.088500px;}
.y90{bottom:597.476850px;}
.yda{bottom:597.742800px;}
.y117{bottom:598.502250px;}
.y146{bottom:598.516950px;}
.y3b{bottom:601.043700px;}
.yf{bottom:604.651500px;}
.yff{bottom:610.960800px;}
.y66{bottom:615.088500px;}
.y8f{bottom:615.476850px;}
.yd9{bottom:615.742800px;}
.yb5{bottom:616.502250px;}
.y145{bottom:616.516950px;}
.y3a{bottom:619.043700px;}
.ye{bottom:619.651500px;}
.yfe{bottom:628.960800px;}
.y65{bottom:633.088500px;}
.y8e{bottom:633.476850px;}
.yd8{bottom:633.742800px;}
.yb4{bottom:634.502250px;}
.y144{bottom:634.516950px;}
.yd{bottom:634.651500px;}
.y39{bottom:637.043700px;}
.yfd{bottom:646.960800px;}
.yc{bottom:649.651500px;}
.y64{bottom:651.088500px;}
.y8d{bottom:651.476850px;}
.yd7{bottom:651.742800px;}
.yb3{bottom:652.502250px;}
.y143{bottom:652.516950px;}
.y38{bottom:655.043700px;}
.yb{bottom:664.651500px;}
.y63{bottom:669.088500px;}
.y8c{bottom:669.476850px;}
.yd6{bottom:669.742800px;}
.yb2{bottom:670.502250px;}
.y142{bottom:670.516950px;}
.y37{bottom:673.043700px;}
.yfc{bottom:682.960800px;}
.y62{bottom:687.088500px;}
.y8b{bottom:687.476850px;}
.yd5{bottom:687.742800px;}
.yb1{bottom:688.502250px;}
.y141{bottom:688.516950px;}
.y36{bottom:691.043700px;}
.ya{bottom:694.651500px;}
.yd4{bottom:705.742800px;}
.yb0{bottom:706.502250px;}
.y140{bottom:706.516950px;}
.y35{bottom:709.043700px;}
.y8a{bottom:723.476850px;}
.yd3{bottom:723.742800px;}
.yaf{bottom:724.502250px;}
.y13f{bottom:724.516950px;}
.y34{bottom:727.043700px;}
.y60{bottom:732.348300px;}
.y9{bottom:740.401500px;}
.yfb{bottom:741.460800px;}
.y89{bottom:741.476850px;}
.yd2{bottom:741.742800px;}
.y116{bottom:742.502250px;}
.y13e{bottom:742.516950px;}
.y33{bottom:745.043700px;}
.y5f{bottom:748.848300px;}
.yfa{bottom:759.460800px;}
.y88{bottom:759.476850px;}
.yd1{bottom:759.742800px;}
.yae{bottom:760.502250px;}
.y13d{bottom:760.516950px;}
.y32{bottom:763.043700px;}
.y61{bottom:765.348300px;}
.y5e{bottom:765.590100px;}
.yf9{bottom:777.460800px;}
.yd0{bottom:777.742800px;}
.y8{bottom:777.901500px;}
.yad{bottom:778.502250px;}
.y13c{bottom:778.516950px;}
.y31{bottom:781.043700px;}
.y5c{bottom:793.701450px;}
.yf8{bottom:795.460800px;}
.y87{bottom:795.476850px;}
.ycf{bottom:795.742800px;}
.yac{bottom:796.502250px;}
.y13b{bottom:796.516950px;}
.y30{bottom:799.043700px;}
.y7{bottom:800.401500px;}
.y5d{bottom:810.201450px;}
.y5b{bottom:810.443250px;}
.yf7{bottom:813.460800px;}
.y86{bottom:813.476850px;}
.yce{bottom:813.742800px;}
.yab{bottom:814.502250px;}
.y13a{bottom:814.516950px;}
.yf6{bottom:831.460800px;}
.y85{bottom:831.476850px;}
.ycd{bottom:831.742800px;}
.yaa{bottom:832.502250px;}
.y139{bottom:832.516950px;}
.y2f{bottom:835.043700px;}
.y5a{bottom:838.601850px;}
.yf5{bottom:849.460800px;}
.y84{bottom:849.476850px;}
.ycc{bottom:849.742800px;}
.ya9{bottom:850.502250px;}
.y138{bottom:850.516950px;}
.y58{bottom:855.101850px;}
.y6{bottom:865.496700px;}
.yf4{bottom:867.460800px;}
.y83{bottom:867.476850px;}
.ycb{bottom:867.742800px;}
.ya8{bottom:868.502250px;}
.y137{bottom:868.516950px;}
.y57{bottom:871.601850px;}
.y5{bottom:881.996700px;}
.yf3{bottom:885.460800px;}
.y82{bottom:885.476850px;}
.yca{bottom:885.742800px;}
.ya7{bottom:886.502250px;}
.y136{bottom:886.516950px;}
.y59{bottom:888.101850px;}
.y56{bottom:888.343500px;}
.y2e{bottom:893.543700px;}
.y4{bottom:894.596700px;}
.yf2{bottom:903.460800px;}
.y81{bottom:903.476850px;}
.ya6{bottom:904.502250px;}
.y135{bottom:904.516950px;}
.y2d{bottom:908.543700px;}
.y3{bottom:910.796700px;}
.y55{bottom:916.502250px;}
.yf1{bottom:921.460800px;}
.y80{bottom:921.476850px;}
.yc9{bottom:921.742800px;}
.ya5{bottom:922.502250px;}
.y134{bottom:922.516950px;}
.y2c{bottom:923.543700px;}
.y1{bottom:942.987900px;}
.y2b{bottom:960.555000px;}
.h11{height:26.133187px;}
.he{height:26.250375px;}
.h12{height:26.525391px;}
.h8{height:36.852539px;}
.h2{height:38.724000px;}
.h4{height:39.474000px;}
.hf{height:42.117188px;}
.h10{height:42.234375px;}
.ha{height:47.381836px;}
.hb{height:47.513672px;}
.h9{height:47.961914px;}
.h3{height:49.788000px;}
.h7{height:52.646484px;}
.h16{height:52.792969px;}
.h17{height:53.291016px;}
.h14{height:57.911133px;}
.h15{height:58.072266px;}
.h13{height:58.620117px;}
.hd{height:63.175781px;}
.hc{height:63.351562px;}
.h6{height:68.440430px;}
.h5{height:68.630859px;}
.h0{height:1015.441200px;}
.h1{height:1015.500000px;}
.w1{width:717.750000px;}
.w0{width:717.803700px;}
.x0{left:0.000000px;}
.x6{left:12.484200px;}
.x4{left:82.523550px;}
.x9{left:88.523550px;}
.x3{left:92.090550px;}
.x5{left:103.783500px;}
.xa{left:117.923550px;}
.xc{left:146.303100px;}
.xd{left:206.048700px;}
.x8{left:221.118900px;}
.x7{left:247.740600px;}
.xb{left:379.940700px;}
.x1{left:552.116700px;}
.x2{left:617.765400px;}
@media print{
.v4{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.208000pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v5{vertical-align:19.536000pt;}
.v1{vertical-align:23.088000pt;}
.lsc{letter-spacing:-0.923472pt;}
.lse{letter-spacing:-0.920363pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.248747pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls11{letter-spacing:0.005867pt;}
.ls10{letter-spacing:0.008000pt;}
.lsf{letter-spacing:0.008533pt;}
.ls12{letter-spacing:0.009067pt;}
.lsd{letter-spacing:0.342027pt;}
.ls1{letter-spacing:0.362133pt;}
.ls9{letter-spacing:0.550400pt;}
.ls8{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.720000pt;}
.lsb{letter-spacing:0.816533pt;}
.lsa{letter-spacing:45.420267pt;}
.ls2{letter-spacing:69.372267pt;}
.ls4{letter-spacing:77.866667pt;}
.ws9a{word-spacing:-33.674667pt;}
.ws20{word-spacing:-33.088000pt;}
.ws3f{word-spacing:-30.080000pt;}
.ws3{word-spacing:-27.072000pt;}
.ws6{word-spacing:-24.064000pt;}
.ws1{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws97{word-spacing:-15.253333pt;}
.ws21{word-spacing:-14.666667pt;}
.ws3e{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws40{word-spacing:-10.266667pt;}
.ws63{word-spacing:-10.240000pt;}
.wsb9{word-spacing:-9.333333pt;}
.ws99{word-spacing:-8.892693pt;}
.ws22{word-spacing:-8.550667pt;}
.wsea{word-spacing:-7.773333pt;}
.ws98{word-spacing:-7.627195pt;}
.ws41{word-spacing:-7.466667pt;}
.ws5{word-spacing:-6.996000pt;}
.ws64{word-spacing:-6.218667pt;}
.ws9b{word-spacing:-5.298304pt;}
.ws11{word-spacing:-4.288000pt;}
.ws37{word-spacing:-3.226667pt;}
.ws13{word-spacing:-3.168000pt;}
.ws12{word-spacing:-3.136000pt;}
.wsf4{word-spacing:-3.093333pt;}
.wsc5{word-spacing:-3.050667pt;}
.wsa{word-spacing:-2.933333pt;}
.ws30{word-spacing:-2.874667pt;}
.ws51{word-spacing:-2.816000pt;}
.ws2f{word-spacing:-2.757333pt;}
.wsa6{word-spacing:-2.698667pt;}
.ws6d{word-spacing:-2.581333pt;}
.ws42{word-spacing:-2.506667pt;}
.wsb2{word-spacing:-2.464000pt;}
.ws58{word-spacing:-2.346667pt;}
.ws14{word-spacing:-2.304000pt;}
.wsf3{word-spacing:-2.133333pt;}
.wsaa{word-spacing:-2.112000pt;}
.wsac{word-spacing:-2.053333pt;}
.wsd3{word-spacing:-2.026667pt;}
.wsb7{word-spacing:-1.962667pt;}
.ws49{word-spacing:-1.920000pt;}
.ws50{word-spacing:-1.877333pt;}
.wsc6{word-spacing:-1.818667pt;}
.wse7{word-spacing:-1.813333pt;}
.wsd4{word-spacing:-1.760000pt;}
.ws76{word-spacing:-1.706667pt;}
.ws4e{word-spacing:-1.584000pt;}
.ws61{word-spacing:-1.578667pt;}
.wsd1{word-spacing:-1.546667pt;}
.ws2a{word-spacing:-1.525333pt;}
.wsa3{word-spacing:-1.466667pt;}
.ws46{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.344000pt;}
.ws60{word-spacing:-1.280000pt;}
.ws77{word-spacing:-1.237333pt;}
.ws39{word-spacing:-1.232000pt;}
.wsf0{word-spacing:-1.226667pt;}
.ws3a{word-spacing:-1.194667pt;}
.wse4{word-spacing:-1.120000pt;}
.wsca{word-spacing:-1.114667pt;}
.ws4d{word-spacing:-1.056000pt;}
.wscc{word-spacing:-0.960000pt;}
.ws5e{word-spacing:-0.938667pt;}
.ws2b{word-spacing:-0.880000pt;}
.wsb6{word-spacing:-0.853333pt;}
.ws35{word-spacing:-0.821333pt;}
.ws73{word-spacing:-0.768000pt;}
.wsc9{word-spacing:-0.762667pt;}
.ws7b{word-spacing:-0.725333pt;}
.wsbe{word-spacing:-0.704000pt;}
.wsed{word-spacing:-0.693333pt;}
.wscd{word-spacing:-0.682667pt;}
.ws65{word-spacing:-0.645333pt;}
.ws7f{word-spacing:-0.586667pt;}
.wse9{word-spacing:-0.533333pt;}
.wscb{word-spacing:-0.528000pt;}
.wsa8{word-spacing:-0.469333pt;}
.ws56{word-spacing:-0.410667pt;}
.ws8f{word-spacing:-0.352000pt;}
.ws17{word-spacing:-0.336000pt;}
.wsda{word-spacing:-0.320000pt;}
.wsef{word-spacing:-0.266667pt;}
.wsce{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.234667pt;}
.wsec{word-spacing:-0.213333pt;}
.wsa0{word-spacing:-0.176000pt;}
.ws84{word-spacing:-0.117333pt;}
.ws94{word-spacing:-0.085333pt;}
.wsa7{word-spacing:-0.058667pt;}
.ws3c{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws67{word-spacing:0.117333pt;}
.wscf{word-spacing:0.128000pt;}
.ws71{word-spacing:0.160000pt;}
.ws66{word-spacing:0.176000pt;}
.ws23{word-spacing:0.192000pt;}
.wseb{word-spacing:0.213333pt;}
.ws29{word-spacing:0.234667pt;}
.ws1c{word-spacing:0.240000pt;}
.ws72{word-spacing:0.248747pt;}
.wsdd{word-spacing:0.266667pt;}
.wsdf{word-spacing:0.320000pt;}
.wsbd{word-spacing:0.352000pt;}
.ws1a{word-spacing:0.384000pt;}
.ws74{word-spacing:0.426667pt;}
.wsad{word-spacing:0.528000pt;}
.wsaf{word-spacing:0.586667pt;}
.ws78{word-spacing:0.597333pt;}
.wsdb{word-spacing:0.640000pt;}
.ws57{word-spacing:0.645333pt;}
.ws96{word-spacing:0.682667pt;}
.wsb{word-spacing:0.720000pt;}
.wsd2{word-spacing:0.746667pt;}
.ws36{word-spacing:0.762667pt;}
.wsb8{word-spacing:0.810667pt;}
.ws31{word-spacing:0.821333pt;}
.wsf2{word-spacing:0.853333pt;}
.ws25{word-spacing:0.880000pt;}
.wsb0{word-spacing:0.938667pt;}
.wsb5{word-spacing:0.981333pt;}
.ws52{word-spacing:0.997333pt;}
.wsba{word-spacing:1.056000pt;}
.ws69{word-spacing:1.114667pt;}
.ws4f{word-spacing:1.173333pt;}
.wsdc{word-spacing:1.226667pt;}
.ws2e{word-spacing:1.232000pt;}
.ws90{word-spacing:1.290667pt;}
.wsf{word-spacing:1.296000pt;}
.wsb3{word-spacing:1.322667pt;}
.wsf5{word-spacing:1.333333pt;}
.ws5a{word-spacing:1.349333pt;}
.wsb4{word-spacing:1.365333pt;}
.ws55{word-spacing:1.408000pt;}
.ws10{word-spacing:1.440000pt;}
.ws8e{word-spacing:1.466667pt;}
.wsd5{word-spacing:1.493333pt;}
.ws32{word-spacing:1.525333pt;}
.ws87{word-spacing:1.546667pt;}
.wsc7{word-spacing:1.584000pt;}
.ws5c{word-spacing:1.701333pt;}
.ws62{word-spacing:1.706667pt;}
.wsa9{word-spacing:1.760000pt;}
.ws28{word-spacing:1.818667pt;}
.ws15{word-spacing:1.824000pt;}
.ws68{word-spacing:1.994667pt;}
.ws88{word-spacing:2.026667pt;}
.wse{word-spacing:2.064000pt;}
.wsc2{word-spacing:2.170667pt;}
.ws7c{word-spacing:2.176000pt;}
.ws8a{word-spacing:2.186667pt;}
.wsc{word-spacing:2.208000pt;}
.ws81{word-spacing:2.229333pt;}
.ws7e{word-spacing:2.240000pt;}
.wsb1{word-spacing:2.288000pt;}
.wse5{word-spacing:2.346667pt;}
.wsa4{word-spacing:2.405333pt;}
.ws93{word-spacing:2.464000pt;}
.ws6a{word-spacing:2.522667pt;}
.ws16{word-spacing:2.592000pt;}
.ws79{word-spacing:2.602667pt;}
.ws9c{word-spacing:2.698667pt;}
.ws2d{word-spacing:2.757333pt;}
.ws7a{word-spacing:2.816000pt;}
.ws80{word-spacing:2.826667pt;}
.ws1b{word-spacing:2.832000pt;}
.ws4c{word-spacing:2.933333pt;}
.ws9{word-spacing:2.981333pt;}
.wsbf{word-spacing:2.992000pt;}
.ws19{word-spacing:3.024000pt;}
.ws75{word-spacing:3.072000pt;}
.ws54{word-spacing:3.109333pt;}
.ws9e{word-spacing:3.168000pt;}
.wsc1{word-spacing:3.226667pt;}
.ws4b{word-spacing:3.253333pt;}
.wsc3{word-spacing:3.344000pt;}
.ws1f{word-spacing:3.370667pt;}
.ws53{word-spacing:3.461333pt;}
.ws26{word-spacing:3.520000pt;}
.wse2{word-spacing:3.573333pt;}
.ws9d{word-spacing:3.578667pt;}
.ws6e{word-spacing:3.637333pt;}
.ws91{word-spacing:3.813333pt;}
.ws18{word-spacing:3.840000pt;}
.wsbc{word-spacing:3.930667pt;}
.ws24{word-spacing:3.936000pt;}
.ws27{word-spacing:4.165333pt;}
.ws8c{word-spacing:4.213333pt;}
.wsa2{word-spacing:4.224000pt;}
.wsa5{word-spacing:4.341333pt;}
.ws5f{word-spacing:4.352000pt;}
.ws59{word-spacing:4.400000pt;}
.ws9f{word-spacing:4.458667pt;}
.wse3{word-spacing:4.480000pt;}
.ws4a{word-spacing:4.533333pt;}
.ws3b{word-spacing:4.565333pt;}
.wsde{word-spacing:4.640000pt;}
.ws5d{word-spacing:4.650667pt;}
.wsc0{word-spacing:4.752000pt;}
.wsc8{word-spacing:4.869333pt;}
.wsab{word-spacing:4.928000pt;}
.ws1e{word-spacing:4.949333pt;}
.ws43{word-spacing:4.960000pt;}
.ws6c{word-spacing:4.986667pt;}
.wsd8{word-spacing:5.013333pt;}
.ws95{word-spacing:5.077333pt;}
.ws33{word-spacing:5.162667pt;}
.wse6{word-spacing:5.280000pt;}
.wsd9{word-spacing:5.333333pt;}
.ws45{word-spacing:5.386667pt;}
.ws83{word-spacing:5.397333pt;}
.ws85{word-spacing:5.493333pt;}
.ws82{word-spacing:5.632000pt;}
.wsf1{word-spacing:5.653333pt;}
.wse8{word-spacing:5.920000pt;}
.wsee{word-spacing:6.080000pt;}
.ws6b{word-spacing:6.101333pt;}
.wse0{word-spacing:6.133333pt;}
.wsa1{word-spacing:6.160000pt;}
.ws38{word-spacing:6.453333pt;}
.wsd7{word-spacing:6.506667pt;}
.ws34{word-spacing:6.570667pt;}
.wsc4{word-spacing:6.922667pt;}
.wsbb{word-spacing:6.981333pt;}
.ws1d{word-spacing:7.040000pt;}
.wsd6{word-spacing:7.253333pt;}
.ws48{word-spacing:7.360000pt;}
.ws89{word-spacing:7.413333pt;}
.ws70{word-spacing:7.450667pt;}
.wsae{word-spacing:7.626667pt;}
.ws92{word-spacing:7.920000pt;}
.wsd0{word-spacing:7.946667pt;}
.ws6f{word-spacing:7.978667pt;}
.wse1{word-spacing:8.266667pt;}
.ws5b{word-spacing:8.741333pt;}
.ws8d{word-spacing:9.706667pt;}
.ws8b{word-spacing:12.426667pt;}
.ws44{word-spacing:18.720000pt;}
.ws86{word-spacing:20.373333pt;}
.ws47{word-spacing:22.293333pt;}
.ws3d{word-spacing:538.381867pt;}
.ws7d{word-spacing:591.295467pt;}
._0{margin-left:-1965.354133pt;}
._9{margin-left:-951.424000pt;}
._b{margin-left:-195.712000pt;}
._e{margin-left:-7.656000pt;}
._11{margin-left:-6.536213pt;}
._8{margin-left:-5.495467pt;}
._2{margin-left:-3.833600pt;}
._3{margin-left:-2.109333pt;}
._4{margin-left:-0.899733pt;}
._6{width:1.075733pt;}
._c{width:2.051200pt;}
._1{width:2.966400pt;}
._5{width:4.128000pt;}
._d{width:5.338667pt;}
._10{width:6.953600pt;}
._f{width:44.497600pt;}
._7{width:56.934400pt;}
._a{width:1341.321600pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fse{font-size:29.866667pt;}
.fs5{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.202667pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:40.421333pt;}
.fsd{font-size:41.066667pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.y2a{bottom:-22.236267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:37.714000pt;}
.y54{bottom:63.905600pt;}
.y29{bottom:67.457600pt;}
.y53{bottom:77.238933pt;}
.y28{bottom:80.790933pt;}
.y133{bottom:84.002000pt;}
.y52{bottom:90.572267pt;}
.y27{bottom:90.572400pt;}
.y132{bottom:100.002000pt;}
.y51{bottom:103.905600pt;}
.y26{bottom:103.905733pt;}
.yc8{bottom:107.457600pt;}
.y131{bottom:116.002000pt;}
.y50{bottom:117.238933pt;}
.y25{bottom:117.239067pt;}
.yf0{bottom:120.790933pt;}
.y4f{bottom:130.572267pt;}
.yef{bottom:130.572400pt;}
.y130{bottom:132.002000pt;}
.y7f{bottom:134.124267pt;}
.y24{bottom:134.124400pt;}
.y115{bottom:139.076267pt;}
.ya4{bottom:143.905600pt;}
.y7e{bottom:143.905733pt;}
.y4e{bottom:147.457600pt;}
.yee{bottom:147.457733pt;}
.y12f{bottom:148.002000pt;}
.y7d{bottom:157.239067pt;}
.yed{bottom:157.239200pt;}
.ya3{bottom:160.790933pt;}
.y12e{bottom:164.002000pt;}
.ya2{bottom:170.572400pt;}
.yec{bottom:170.572533pt;}
.y114{bottom:171.076267pt;}
.y7c{bottom:174.124400pt;}
.y12d{bottom:180.002000pt;}
.ya1{bottom:183.905733pt;}
.yeb{bottom:187.457867pt;}
.y23{bottom:193.468000pt;}
.y12c{bottom:196.002000pt;}
.ya0{bottom:197.239067pt;}
.yc7{bottom:197.622133pt;}
.y22{bottom:206.801333pt;}
.y4d{bottom:210.261067pt;}
.y7b{bottom:210.745333pt;}
.y12b{bottom:212.002000pt;}
.yc6{bottom:213.622133pt;}
.y9f{bottom:214.124400pt;}
.y21{bottom:220.134667pt;}
.y113{bottom:223.076267pt;}
.yea{bottom:223.326933pt;}
.y9e{bottom:223.905867pt;}
.y4c{bottom:226.261067pt;}
.y7a{bottom:226.745333pt;}
.y12a{bottom:228.002000pt;}
.yc5{bottom:229.622133pt;}
.y9d{bottom:237.239200pt;}
.y112{bottom:239.076267pt;}
.ye9{bottom:239.326933pt;}
.y4b{bottom:242.261067pt;}
.y79{bottom:242.745333pt;}
.y129{bottom:244.002000pt;}
.yc4{bottom:245.622133pt;}
.y9c{bottom:254.124533pt;}
.y111{bottom:255.076267pt;}
.ye8{bottom:255.326933pt;}
.y4a{bottom:258.261067pt;}
.y78{bottom:258.745333pt;}
.y128{bottom:260.002000pt;}
.y20{bottom:260.134667pt;}
.yc3{bottom:261.622133pt;}
.y9b{bottom:263.906000pt;}
.y110{bottom:271.076267pt;}
.ye7{bottom:271.326933pt;}
.y1f{bottom:273.468000pt;}
.y77{bottom:274.745333pt;}
.y127{bottom:276.002000pt;}
.yc2{bottom:277.622133pt;}
.y9a{bottom:280.791333pt;}
.y1e{bottom:286.801333pt;}
.y10f{bottom:287.076267pt;}
.ye6{bottom:287.326933pt;}
.y49{bottom:290.261067pt;}
.y76{bottom:290.745333pt;}
.y126{bottom:292.002000pt;}
.yc1{bottom:293.622133pt;}
.y1d{bottom:300.134667pt;}
.y10e{bottom:303.076267pt;}
.ye5{bottom:303.326933pt;}
.y75{bottom:306.745333pt;}
.y125{bottom:308.002000pt;}
.yc0{bottom:309.622133pt;}
.y1c{bottom:313.468000pt;}
.y10d{bottom:319.076267pt;}
.y99{bottom:319.090533pt;}
.ye4{bottom:319.326933pt;}
.y74{bottom:322.745333pt;}
.y124{bottom:324.002000pt;}
.y153{bottom:324.015067pt;}
.y48{bottom:326.261067pt;}
.y1b{bottom:326.801333pt;}
.y10c{bottom:335.076267pt;}
.y98{bottom:335.090533pt;}
.ye3{bottom:335.326933pt;}
.y73{bottom:338.745333pt;}
.y123{bottom:340.002000pt;}
.y152{bottom:340.015067pt;}
.y1a{bottom:340.134667pt;}
.y47{bottom:342.261067pt;}
.ybf{bottom:349.853067pt;}
.y10b{bottom:351.076267pt;}
.ye2{bottom:351.326933pt;}
.y19{bottom:353.468000pt;}
.y72{bottom:354.745333pt;}
.y122{bottom:356.002000pt;}
.y151{bottom:356.015067pt;}
.y46{bottom:358.261067pt;}
.ybe{bottom:364.519733pt;}
.y18{bottom:366.801333pt;}
.y10a{bottom:367.076267pt;}
.y97{bottom:367.090533pt;}
.ye1{bottom:367.326933pt;}
.y71{bottom:370.745333pt;}
.y121{bottom:372.002000pt;}
.y150{bottom:372.015067pt;}
.y45{bottom:374.261067pt;}
.ybd{bottom:379.186400pt;}
.y17{bottom:380.134667pt;}
.y109{bottom:383.076267pt;}
.y96{bottom:383.090533pt;}
.ye0{bottom:383.326933pt;}
.y70{bottom:386.745333pt;}
.y120{bottom:388.002000pt;}
.y14f{bottom:388.015067pt;}
.y44{bottom:390.261067pt;}
.y108{bottom:399.076267pt;}
.y95{bottom:399.090533pt;}
.ydf{bottom:399.326933pt;}
.y6f{bottom:402.745333pt;}
.y11f{bottom:404.002000pt;}
.y14e{bottom:404.015067pt;}
.ybc{bottom:404.431200pt;}
.y43{bottom:406.261067pt;}
.y16{bottom:406.801333pt;}
.y107{bottom:415.076267pt;}
.y94{bottom:415.090533pt;}
.y6e{bottom:418.745333pt;}
.ybb{bottom:419.097867pt;}
.y11e{bottom:420.002000pt;}
.y14d{bottom:420.015067pt;}
.y42{bottom:422.261067pt;}
.y15{bottom:425.468000pt;}
.y106{bottom:431.076267pt;}
.yde{bottom:431.326933pt;}
.yba{bottom:433.764533pt;}
.y6d{bottom:434.745333pt;}
.y11d{bottom:436.002000pt;}
.y14c{bottom:436.015067pt;}
.y41{bottom:438.261067pt;}
.y105{bottom:447.076267pt;}
.y93{bottom:447.090533pt;}
.y6c{bottom:450.745333pt;}
.y11c{bottom:452.002000pt;}
.y14b{bottom:452.015067pt;}
.y40{bottom:454.261067pt;}
.yb9{bottom:459.009333pt;}
.y104{bottom:463.076267pt;}
.y6b{bottom:466.745333pt;}
.y11b{bottom:468.002000pt;}
.y14a{bottom:468.015067pt;}
.y3f{bottom:470.261067pt;}
.y14{bottom:470.801333pt;}
.yb8{bottom:473.676000pt;}
.y103{bottom:479.076267pt;}
.y6a{bottom:482.745333pt;}
.ydd{bottom:483.326933pt;}
.y11a{bottom:484.002000pt;}
.y149{bottom:484.015067pt;}
.y13{bottom:484.134667pt;}
.y3e{bottom:486.261067pt;}
.yb7{bottom:488.342667pt;}
.y102{bottom:495.076267pt;}
.y12{bottom:497.468000pt;}
.y69{bottom:498.745333pt;}
.y92{bottom:499.090533pt;}
.ydc{bottom:499.326933pt;}
.y119{bottom:500.002000pt;}
.y148{bottom:500.015067pt;}
.y3d{bottom:502.261067pt;}
.y11{bottom:510.801333pt;}
.y101{bottom:511.076267pt;}
.yb6{bottom:514.513200pt;}
.y68{bottom:514.745333pt;}
.y91{bottom:515.090533pt;}
.ydb{bottom:515.326933pt;}
.y118{bottom:516.002000pt;}
.y147{bottom:516.015067pt;}
.y3c{bottom:518.261067pt;}
.y10{bottom:524.134667pt;}
.y100{bottom:527.076267pt;}
.y67{bottom:530.745333pt;}
.y90{bottom:531.090533pt;}
.yda{bottom:531.326933pt;}
.y117{bottom:532.002000pt;}
.y146{bottom:532.015067pt;}
.y3b{bottom:534.261067pt;}
.yf{bottom:537.468000pt;}
.yff{bottom:543.076267pt;}
.y66{bottom:546.745333pt;}
.y8f{bottom:547.090533pt;}
.yd9{bottom:547.326933pt;}
.yb5{bottom:548.002000pt;}
.y145{bottom:548.015067pt;}
.y3a{bottom:550.261067pt;}
.ye{bottom:550.801333pt;}
.yfe{bottom:559.076267pt;}
.y65{bottom:562.745333pt;}
.y8e{bottom:563.090533pt;}
.yd8{bottom:563.326933pt;}
.yb4{bottom:564.002000pt;}
.y144{bottom:564.015067pt;}
.yd{bottom:564.134667pt;}
.y39{bottom:566.261067pt;}
.yfd{bottom:575.076267pt;}
.yc{bottom:577.468000pt;}
.y64{bottom:578.745333pt;}
.y8d{bottom:579.090533pt;}
.yd7{bottom:579.326933pt;}
.yb3{bottom:580.002000pt;}
.y143{bottom:580.015067pt;}
.y38{bottom:582.261067pt;}
.yb{bottom:590.801333pt;}
.y63{bottom:594.745333pt;}
.y8c{bottom:595.090533pt;}
.yd6{bottom:595.326933pt;}
.yb2{bottom:596.002000pt;}
.y142{bottom:596.015067pt;}
.y37{bottom:598.261067pt;}
.yfc{bottom:607.076267pt;}
.y62{bottom:610.745333pt;}
.y8b{bottom:611.090533pt;}
.yd5{bottom:611.326933pt;}
.yb1{bottom:612.002000pt;}
.y141{bottom:612.015067pt;}
.y36{bottom:614.261067pt;}
.ya{bottom:617.468000pt;}
.yd4{bottom:627.326933pt;}
.yb0{bottom:628.002000pt;}
.y140{bottom:628.015067pt;}
.y35{bottom:630.261067pt;}
.y8a{bottom:643.090533pt;}
.yd3{bottom:643.326933pt;}
.yaf{bottom:644.002000pt;}
.y13f{bottom:644.015067pt;}
.y34{bottom:646.261067pt;}
.y60{bottom:650.976267pt;}
.y9{bottom:658.134667pt;}
.yfb{bottom:659.076267pt;}
.y89{bottom:659.090533pt;}
.yd2{bottom:659.326933pt;}
.y116{bottom:660.002000pt;}
.y13e{bottom:660.015067pt;}
.y33{bottom:662.261067pt;}
.y5f{bottom:665.642933pt;}
.yfa{bottom:675.076267pt;}
.y88{bottom:675.090533pt;}
.yd1{bottom:675.326933pt;}
.yae{bottom:676.002000pt;}
.y13d{bottom:676.015067pt;}
.y32{bottom:678.261067pt;}
.y61{bottom:680.309600pt;}
.y5e{bottom:680.524533pt;}
.yf9{bottom:691.076267pt;}
.yd0{bottom:691.326933pt;}
.y8{bottom:691.468000pt;}
.yad{bottom:692.002000pt;}
.y13c{bottom:692.015067pt;}
.y31{bottom:694.261067pt;}
.y5c{bottom:705.512400pt;}
.yf8{bottom:707.076267pt;}
.y87{bottom:707.090533pt;}
.ycf{bottom:707.326933pt;}
.yac{bottom:708.002000pt;}
.y13b{bottom:708.015067pt;}
.y30{bottom:710.261067pt;}
.y7{bottom:711.468000pt;}
.y5d{bottom:720.179067pt;}
.y5b{bottom:720.394000pt;}
.yf7{bottom:723.076267pt;}
.y86{bottom:723.090533pt;}
.yce{bottom:723.326933pt;}
.yab{bottom:724.002000pt;}
.y13a{bottom:724.015067pt;}
.yf6{bottom:739.076267pt;}
.y85{bottom:739.090533pt;}
.ycd{bottom:739.326933pt;}
.yaa{bottom:740.002000pt;}
.y139{bottom:740.015067pt;}
.y2f{bottom:742.261067pt;}
.y5a{bottom:745.423867pt;}
.yf5{bottom:755.076267pt;}
.y84{bottom:755.090533pt;}
.ycc{bottom:755.326933pt;}
.ya9{bottom:756.002000pt;}
.y138{bottom:756.015067pt;}
.y58{bottom:760.090533pt;}
.y6{bottom:769.330400pt;}
.yf4{bottom:771.076267pt;}
.y83{bottom:771.090533pt;}
.ycb{bottom:771.326933pt;}
.ya8{bottom:772.002000pt;}
.y137{bottom:772.015067pt;}
.y57{bottom:774.757200pt;}
.y5{bottom:783.997067pt;}
.yf3{bottom:787.076267pt;}
.y82{bottom:787.090533pt;}
.yca{bottom:787.326933pt;}
.ya7{bottom:788.002000pt;}
.y136{bottom:788.015067pt;}
.y59{bottom:789.423867pt;}
.y56{bottom:789.638667pt;}
.y2e{bottom:794.261067pt;}
.y4{bottom:795.197067pt;}
.yf2{bottom:803.076267pt;}
.y81{bottom:803.090533pt;}
.ya6{bottom:804.002000pt;}
.y135{bottom:804.015067pt;}
.y2d{bottom:807.594400pt;}
.y3{bottom:809.597067pt;}
.y55{bottom:814.668667pt;}
.yf1{bottom:819.076267pt;}
.y80{bottom:819.090533pt;}
.yc9{bottom:819.326933pt;}
.ya5{bottom:820.002000pt;}
.y134{bottom:820.015067pt;}
.y2c{bottom:820.927733pt;}
.y1{bottom:838.211467pt;}
.y2b{bottom:853.826667pt;}
.h11{height:23.229500pt;}
.he{height:23.333667pt;}
.h12{height:23.578125pt;}
.h8{height:32.757812pt;}
.h2{height:34.421333pt;}
.h4{height:35.088000pt;}
.hf{height:37.437500pt;}
.h10{height:37.541667pt;}
.ha{height:42.117188pt;}
.hb{height:42.234375pt;}
.h9{height:42.632812pt;}
.h3{height:44.256000pt;}
.h7{height:46.796875pt;}
.h16{height:46.927083pt;}
.h17{height:47.369792pt;}
.h14{height:51.476562pt;}
.h15{height:51.619792pt;}
.h13{height:52.106771pt;}
.hd{height:56.156250pt;}
.hc{height:56.312500pt;}
.h6{height:60.835938pt;}
.h5{height:61.005208pt;}
.h0{height:902.614400pt;}
.h1{height:902.666667pt;}
.w1{width:638.000000pt;}
.w0{width:638.047733pt;}
.x0{left:0.000000pt;}
.x6{left:11.097067pt;}
.x4{left:73.354267pt;}
.x9{left:78.687600pt;}
.x3{left:81.858267pt;}
.x5{left:92.252000pt;}
.xa{left:104.820933pt;}
.xc{left:130.047200pt;}
.xd{left:183.154400pt;}
.x8{left:196.550133pt;}
.x7{left:220.213867pt;}
.xb{left:337.725067pt;}
.x1{left:490.770400pt;}
.x2{left:549.124800pt;}
}




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