
    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_e8a0e9d651a9ad64a97513f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100667;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_1eea651d4062ed743824d923.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980200;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_6758f3ca411c2ccbe2495f40.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122000;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_3a5c6af0275210af2cae03cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_1177f31b376785e86edc924e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1bb55a72eb51868a4816fe8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030000;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_703e62d3ad7999ec7d234a99.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719000;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_6e368b1baea13c261eb16ced.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951000;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_bf395e4fdd16dfb281fd9eb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_3a5c6af0275210af2cae03cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_1177f31b376785e86edc924e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_453ad251654f32089d00f7b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100667;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_11c831c11a3dd63c74a55615.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.017090;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_5a701de4639c9e0270165d8b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.207031;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);}
.v3{vertical-align:-70.369500px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.256200px;}
.ls16{letter-spacing:-0.322500px;}
.ls17{letter-spacing:-0.129000px;}
.ls6{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.013200px;}
.ls1c{letter-spacing:0.032250px;}
.ls7{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.064500px;}
.ls1f{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.129000px;}
.ls2{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.161250px;}
.ls2b{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.193500px;}
.ls15{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.225750px;}
.lsd{letter-spacing:0.258000px;}
.ls8{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.322500px;}
.ls9{letter-spacing:0.324000px;}
.ls21{letter-spacing:0.354750px;}
.ls14{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.387000px;}
.ls19{letter-spacing:0.451500px;}
.ls3{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.486000px;}
.ls20{letter-spacing:0.513000px;}
.lse{letter-spacing:0.516000px;}
.ls1{letter-spacing:0.528000px;}
.ls11{letter-spacing:0.580500px;}
.ls23{letter-spacing:0.594000px;}
.ls24{letter-spacing:0.645000px;}
.ls1d{letter-spacing:0.741750px;}
.ls2d{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.798000px;}
.ls1b{letter-spacing:0.967500px;}
.ls26{letter-spacing:1.242000px;}
.ls18{letter-spacing:1.290000px;}
.ls22{letter-spacing:2.160000px;}
.ls25{letter-spacing:2.457000px;}
.ls2c{letter-spacing:2.484000px;}
.ls27{letter-spacing:2.970000px;}
.ls29{letter-spacing:3.780000px;}
.ls28{letter-spacing:4.428000px;}
.ls2f{letter-spacing:5.688000px;}
.ls5{letter-spacing:9.990000px;}
.lsc{letter-spacing:1459.270800px;}
.ls0{letter-spacing:2130.501600px;}
.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;}
}
.wsa5{word-spacing:-13.230000px;}
.ws9a{word-spacing:-13.190250px;}
.ws35{word-spacing:-12.835500px;}
.ws54{word-spacing:-10.746000px;}
.ws14{word-spacing:-9.552000px;}
.ws33{word-spacing:-8.955000px;}
.wsb6{word-spacing:-8.618400px;}
.ws34{word-spacing:-7.483156px;}
.ws15{word-spacing:-6.264918px;}
.wsb1{word-spacing:-4.428000px;}
.wsaf{word-spacing:-2.970000px;}
.wsa7{word-spacing:-2.484000px;}
.ws9f{word-spacing:-2.160000px;}
.wsba{word-spacing:-0.756000px;}
.ws9c{word-spacing:-0.645000px;}
.ws3{word-spacing:-0.528000px;}
.ws9{word-spacing:-0.480000px;}
.ws40{word-spacing:-0.258000px;}
.ws11{word-spacing:-0.240000px;}
.ws48{word-spacing:-0.193500px;}
.ws6a{word-spacing:-0.064500px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.064500px;}
.wsb{word-spacing:0.096000px;}
.wsa0{word-spacing:0.108000px;}
.ws1a{word-spacing:0.129000px;}
.wsd{word-spacing:0.192000px;}
.ws5f{word-spacing:0.193500px;}
.ws89{word-spacing:0.322500px;}
.ws43{word-spacing:0.387000px;}
.wsbb{word-spacing:0.420000px;}
.ws2c{word-spacing:0.451500px;}
.wsc{word-spacing:0.480000px;}
.wsb5{word-spacing:0.486000px;}
.ws18{word-spacing:0.580500px;}
.ws2d{word-spacing:0.645000px;}
.ws6f{word-spacing:0.702000px;}
.ws42{word-spacing:0.774000px;}
.ws55{word-spacing:0.838500px;}
.ws4b{word-spacing:0.903000px;}
.ws8{word-spacing:0.960000px;}
.ws60{word-spacing:0.967500px;}
.wsb4{word-spacing:0.972000px;}
.ws58{word-spacing:1.032000px;}
.ws9d{word-spacing:1.080000px;}
.ws20{word-spacing:1.096500px;}
.ws53{word-spacing:1.134000px;}
.ws97{word-spacing:1.161000px;}
.wsa9{word-spacing:1.188000px;}
.ws13{word-spacing:1.218000px;}
.ws95{word-spacing:1.225500px;}
.wsa4{word-spacing:1.242000px;}
.ws73{word-spacing:1.290000px;}
.wsab{word-spacing:1.350000px;}
.ws88{word-spacing:1.354500px;}
.ws71{word-spacing:1.404000px;}
.ws4e{word-spacing:1.419000px;}
.ws68{word-spacing:1.483500px;}
.wsa{word-spacing:1.488000px;}
.ws27{word-spacing:1.512000px;}
.ws93{word-spacing:1.548000px;}
.wsb8{word-spacing:1.566000px;}
.ws6b{word-spacing:1.612500px;}
.ws99{word-spacing:1.620000px;}
.ws7f{word-spacing:1.677000px;}
.ws7b{word-spacing:1.741500px;}
.ws1f{word-spacing:1.806000px;}
.ws7{word-spacing:1.824000px;}
.ws5b{word-spacing:1.870500px;}
.wsa3{word-spacing:1.890000px;}
.ws5{word-spacing:1.920000px;}
.ws3d{word-spacing:1.935000px;}
.ws10{word-spacing:1.968000px;}
.ws2b{word-spacing:1.999500px;}
.ws26{word-spacing:2.052000px;}
.ws6e{word-spacing:2.128500px;}
.ws94{word-spacing:2.193000px;}
.ws6d{word-spacing:2.257500px;}
.wsa1{word-spacing:2.268000px;}
.ws36{word-spacing:2.322000px;}
.ws1b{word-spacing:2.386500px;}
.wsaa{word-spacing:2.430000px;}
.ws45{word-spacing:2.451000px;}
.ws56{word-spacing:2.515500px;}
.ws29{word-spacing:2.538000px;}
.ws69{word-spacing:2.580000px;}
.ws39{word-spacing:2.644500px;}
.ws76{word-spacing:2.709000px;}
.ws17{word-spacing:2.773500px;}
.ws6{word-spacing:2.832000px;}
.ws62{word-spacing:2.838000px;}
.ws70{word-spacing:2.862000px;}
.ws66{word-spacing:2.902500px;}
.ws8e{word-spacing:2.916000px;}
.ws75{word-spacing:2.967000px;}
.ws4f{word-spacing:3.031500px;}
.ws98{word-spacing:3.078000px;}
.ws5e{word-spacing:3.096000px;}
.ws81{word-spacing:3.132000px;}
.ws2e{word-spacing:3.160500px;}
.wsbc{word-spacing:3.192000px;}
.ws3e{word-spacing:3.225000px;}
.ws64{word-spacing:3.289500px;}
.ws25{word-spacing:3.294000px;}
.ws8d{word-spacing:3.348000px;}
.ws1e{word-spacing:3.354000px;}
.ws3c{word-spacing:3.418500px;}
.ws50{word-spacing:3.456000px;}
.ws21{word-spacing:3.483000px;}
.ws90{word-spacing:3.510000px;}
.ws7e{word-spacing:3.547500px;}
.wsa8{word-spacing:3.564000px;}
.ws78{word-spacing:3.612000px;}
.ws8c{word-spacing:3.618000px;}
.ws28{word-spacing:3.672000px;}
.ws5c{word-spacing:3.676500px;}
.ws5d{word-spacing:3.741000px;}
.ws67{word-spacing:3.805500px;}
.ws87{word-spacing:3.870000px;}
.ws2a{word-spacing:3.888000px;}
.ws61{word-spacing:3.934500px;}
.wsa2{word-spacing:3.996000px;}
.ws1d{word-spacing:3.999000px;}
.ws52{word-spacing:4.050000px;}
.ws2f{word-spacing:4.063500px;}
.wsb7{word-spacing:4.104000px;}
.ws91{word-spacing:4.128000px;}
.wsb9{word-spacing:4.158000px;}
.ws5a{word-spacing:4.192500px;}
.ws8f{word-spacing:4.212000px;}
.ws19{word-spacing:4.257000px;}
.wse{word-spacing:4.320000px;}
.ws7c{word-spacing:4.321500px;}
.ws1c{word-spacing:4.386000px;}
.ws72{word-spacing:4.428000px;}
.ws9b{word-spacing:4.450500px;}
.ws3a{word-spacing:4.515000px;}
.ws8a{word-spacing:4.536000px;}
.ws59{word-spacing:4.579500px;}
.ws6c{word-spacing:4.644000px;}
.ws12{word-spacing:4.662000px;}
.wsad{word-spacing:4.698000px;}
.ws4a{word-spacing:4.708500px;}
.wsf{word-spacing:4.752000px;}
.ws30{word-spacing:4.773000px;}
.ws4{word-spacing:4.800000px;}
.ws32{word-spacing:4.806000px;}
.ws65{word-spacing:4.837500px;}
.ws7d{word-spacing:4.902000px;}
.wsb3{word-spacing:4.914000px;}
.ws37{word-spacing:4.966500px;}
.wsac{word-spacing:5.022000px;}
.ws84{word-spacing:5.031000px;}
.ws3f{word-spacing:5.095500px;}
.ws63{word-spacing:5.160000px;}
.ws8b{word-spacing:5.184000px;}
.ws85{word-spacing:5.224500px;}
.ws51{word-spacing:5.238000px;}
.ws38{word-spacing:5.289000px;}
.ws24{word-spacing:5.346000px;}
.ws47{word-spacing:5.353500px;}
.ws23{word-spacing:5.400000px;}
.ws92{word-spacing:5.418000px;}
.ws57{word-spacing:5.482500px;}
.ws82{word-spacing:5.547000px;}
.ws79{word-spacing:5.611500px;}
.ws4c{word-spacing:5.676000px;}
.ws83{word-spacing:5.740500px;}
.ws44{word-spacing:5.805000px;}
.ws80{word-spacing:5.869500px;}
.ws3b{word-spacing:5.934000px;}
.ws74{word-spacing:5.998500px;}
.ws7a{word-spacing:6.063000px;}
.ws41{word-spacing:6.127500px;}
.ws4d{word-spacing:6.192000px;}
.ws77{word-spacing:6.256500px;}
.ws96{word-spacing:6.321000px;}
.ws31{word-spacing:6.385500px;}
.ws46{word-spacing:6.450000px;}
.ws49{word-spacing:6.579000px;}
.ws9e{word-spacing:7.128000px;}
.wsa6{word-spacing:8.154000px;}
.ws86{word-spacing:9.288000px;}
.wsae{word-spacing:9.936000px;}
.ws2{word-spacing:10.656000px;}
.wsb2{word-spacing:12.690000px;}
.ws1{word-spacing:13.344000px;}
.wsb0{word-spacing:14.796000px;}
.ws16{word-spacing:19.414500px;}
._10{margin-left:-19.866000px;}
._15{margin-left:-18.576000px;}
._12{margin-left:-16.125000px;}
._7{margin-left:-13.348800px;}
._6{margin-left:-11.676000px;}
._4{margin-left:-9.324000px;}
._16{margin-left:-4.428000px;}
._13{margin-left:-2.386500px;}
._3{margin-left:-1.050000px;}
._1{width:1.972800px;}
._d{width:3.548700px;}
._f{width:4.784400px;}
._2{width:6.972000px;}
._5{width:11.676000px;}
._14{width:12.835500px;}
._0{width:14.112000px;}
._a{width:15.354000px;}
._b{width:19.414500px;}
._c{width:28.673748px;}
._e{width:30.023748px;}
._11{width:32.777748px;}
._9{width:1579.440000px;}
._8{width:1874.400000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:25.200000px;}
.fsa{font-size:31.482000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:37.603800px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:64.500000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:56.003550px;}
.y1{bottom:56.123550px;}
.y21{bottom:110.549700px;}
.y4c{bottom:110.554200px;}
.yc7{bottom:110.560200px;}
.y7a{bottom:110.563200px;}
.y15c{bottom:110.590800px;}
.y12f{bottom:111.016050px;}
.y1aa{bottom:111.062850px;}
.y15a{bottom:111.444825px;}
.y183{bottom:111.920775px;}
.y100{bottom:112.051200px;}
.y12d{bottom:112.067325px;}
.y1db{bottom:113.609700px;}
.y20{bottom:122.551200px;}
.yc6{bottom:126.544200px;}
.y79{bottom:126.547200px;}
.y15b{bottom:126.574800px;}
.y12e{bottom:127.000050px;}
.y1a9{bottom:127.222350px;}
.y159{bottom:129.037200px;}
.y182{bottom:129.513150px;}
.yff{bottom:129.643575px;}
.y12c{bottom:129.659700px;}
.y1da{bottom:129.769200px;}
.y4b{bottom:131.033700px;}
.y1f{bottom:138.791700px;}
.yc5{bottom:142.528200px;}
.y78{bottom:142.531200px;}
.y1a8{bottom:143.381850px;}
.y1d9{bottom:145.928700px;}
.y158{bottom:146.629575px;}
.y181{bottom:147.105525px;}
.yfe{bottom:147.235950px;}
.y12b{bottom:147.252075px;}
.y1e{bottom:154.226700px;}
.y77{bottom:158.515200px;}
.y1a7{bottom:159.541350px;}
.y1d8{bottom:162.088200px;}
.yc4{bottom:163.007700px;}
.y157{bottom:164.221950px;}
.y180{bottom:164.697900px;}
.yfd{bottom:164.828325px;}
.y12a{bottom:164.844450px;}
.y1d{bottom:174.208200px;}
.y1a6{bottom:175.700850px;}
.y1d7{bottom:178.247700px;}
.y76{bottom:178.994700px;}
.y156{bottom:181.814325px;}
.y17f{bottom:182.290275px;}
.y11d{bottom:182.313675px;}
.y9d{bottom:182.347950px;}
.yfc{bottom:182.420700px;}
.y129{bottom:182.436825px;}
.y4a{bottom:182.440425px;}
.y1c{bottom:185.390700px;}
.y1a5{bottom:191.860350px;}
.y1d6{bottom:194.407200px;}
.y155{bottom:199.406700px;}
.y17e{bottom:199.882650px;}
.y11c{bottom:199.906050px;}
.y9c{bottom:199.940325px;}
.yfb{bottom:200.013075px;}
.y128{bottom:200.029200px;}
.y49{bottom:200.032800px;}
.y1b{bottom:205.372200px;}
.y1a4{bottom:208.019850px;}
.y1d5{bottom:210.566700px;}
.y1a{bottom:216.554700px;}
.y154{bottom:216.999075px;}
.y17d{bottom:217.475025px;}
.y11b{bottom:217.498425px;}
.ye0{bottom:217.504050px;}
.y9b{bottom:217.532700px;}
.y75{bottom:217.551900px;}
.yfa{bottom:217.605450px;}
.yc3{bottom:217.613325px;}
.y127{bottom:217.621575px;}
.y48{bottom:217.625175px;}
.y1a3{bottom:224.179350px;}
.y1d4{bottom:226.726200px;}
.y153{bottom:234.591450px;}
.y17c{bottom:235.067400px;}
.y11a{bottom:235.090800px;}
.ydf{bottom:235.096425px;}
.y9a{bottom:235.125075px;}
.y74{bottom:235.144275px;}
.yf9{bottom:235.197825px;}
.yc2{bottom:235.205700px;}
.y126{bottom:235.213950px;}
.y47{bottom:235.217550px;}
.y1a2{bottom:240.338850px;}
.y1d3{bottom:242.885700px;}
.y152{bottom:252.183825px;}
.y17b{bottom:252.659775px;}
.y119{bottom:252.683175px;}
.yde{bottom:252.688800px;}
.y99{bottom:252.717450px;}
.y73{bottom:252.736650px;}
.yf8{bottom:252.790200px;}
.yc1{bottom:252.798075px;}
.y125{bottom:252.806325px;}
.y46{bottom:252.809925px;}
.y1a1{bottom:256.498350px;}
.y1d2{bottom:259.045200px;}
.y151{bottom:269.776200px;}
.y17a{bottom:270.252150px;}
.y118{bottom:270.275550px;}
.ydd{bottom:270.281175px;}
.y98{bottom:270.309825px;}
.y72{bottom:270.329025px;}
.yf7{bottom:270.382575px;}
.yc0{bottom:270.390450px;}
.y124{bottom:270.398700px;}
.y45{bottom:270.402300px;}
.y1a0{bottom:272.657850px;}
.y1d1{bottom:275.204700px;}
.y150{bottom:287.368575px;}
.y179{bottom:287.844525px;}
.y117{bottom:287.867925px;}
.ydc{bottom:287.873550px;}
.y97{bottom:287.902200px;}
.y71{bottom:287.921400px;}
.yf6{bottom:287.974950px;}
.ybf{bottom:287.982825px;}
.y123{bottom:287.991075px;}
.y44{bottom:287.994675px;}
.y19f{bottom:288.817350px;}
.y1d0{bottom:291.364200px;}
.y14f{bottom:304.960950px;}
.y19e{bottom:304.976850px;}
.y178{bottom:305.436900px;}
.y116{bottom:305.460300px;}
.ydb{bottom:305.465925px;}
.y96{bottom:305.494575px;}
.y70{bottom:305.513775px;}
.yf5{bottom:305.567325px;}
.ybe{bottom:305.575200px;}
.y122{bottom:305.583450px;}
.y43{bottom:305.587050px;}
.y1cf{bottom:307.523700px;}
.y19d{bottom:321.136350px;}
.y14e{bottom:322.553325px;}
.y177{bottom:323.029275px;}
.y115{bottom:323.052675px;}
.y95{bottom:323.086950px;}
.y6f{bottom:323.106150px;}
.yf4{bottom:323.159700px;}
.ybd{bottom:323.167575px;}
.y121{bottom:323.175825px;}
.y42{bottom:323.179425px;}
.yda{bottom:323.191875px;}
.y1ce{bottom:323.683200px;}
.y19c{bottom:337.295850px;}
.y19{bottom:337.350750px;}
.y1cd{bottom:339.842700px;}
.y14d{bottom:340.145700px;}
.y176{bottom:340.621650px;}
.y114{bottom:340.645050px;}
.y94{bottom:340.679325px;}
.y6e{bottom:340.698525px;}
.yf3{bottom:340.752075px;}
.ybc{bottom:340.759950px;}
.y120{bottom:340.768200px;}
.y41{bottom:340.771800px;}
.yd9{bottom:340.784250px;}
.y19b{bottom:353.455350px;}
.y1cc{bottom:356.002200px;}
.y14c{bottom:357.738075px;}
.y175{bottom:358.214025px;}
.y113{bottom:358.237425px;}
.y93{bottom:358.271700px;}
.y6d{bottom:358.290900px;}
.yf2{bottom:358.344450px;}
.ybb{bottom:358.352325px;}
.y11f{bottom:358.360575px;}
.yd8{bottom:358.376625px;}
.y18{bottom:358.938750px;}
.y19a{bottom:369.614850px;}
.y1cb{bottom:372.161700px;}
.y17{bottom:373.326750px;}
.y14b{bottom:375.330450px;}
.y174{bottom:375.806400px;}
.y112{bottom:375.829800px;}
.y92{bottom:375.864075px;}
.y6c{bottom:375.883275px;}
.yf1{bottom:375.936825px;}
.yba{bottom:375.944700px;}
.y11e{bottom:375.952950px;}
.yd7{bottom:375.969000px;}
.y40{bottom:375.992850px;}
.y199{bottom:385.774350px;}
.y16{bottom:387.714750px;}
.y1ca{bottom:388.321200px;}
.y3f{bottom:391.976850px;}
.y14a{bottom:392.922825px;}
.y173{bottom:393.398775px;}
.y91{bottom:393.456450px;}
.y6b{bottom:393.475650px;}
.yf0{bottom:393.529200px;}
.yb9{bottom:393.537075px;}
.y111{bottom:393.545325px;}
.yd6{bottom:393.561375px;}
.y198{bottom:401.933850px;}
.y15{bottom:402.102750px;}
.y1c9{bottom:404.480700px;}
.y3e{bottom:407.960850px;}
.y172{bottom:410.991150px;}
.y90{bottom:411.048825px;}
.y6a{bottom:411.068025px;}
.yef{bottom:411.121575px;}
.yb8{bottom:411.129450px;}
.y110{bottom:411.137700px;}
.yd5{bottom:411.153750px;}
.y14{bottom:416.490750px;}
.y197{bottom:418.093350px;}
.y1c8{bottom:420.640200px;}
.y3d{bottom:423.944850px;}
.y149{bottom:426.672450px;}
.y171{bottom:428.583525px;}
.y8f{bottom:428.641200px;}
.y69{bottom:428.660400px;}
.yee{bottom:428.713950px;}
.yb7{bottom:428.721825px;}
.y10f{bottom:428.730075px;}
.yd4{bottom:428.746125px;}
.y13{bottom:430.878750px;}
.y196{bottom:434.252850px;}
.y1c7{bottom:436.799700px;}
.y3c{bottom:439.928850px;}
.y12{bottom:445.266750px;}
.y170{bottom:446.175900px;}
.y8e{bottom:446.233575px;}
.y68{bottom:446.252775px;}
.yed{bottom:446.306325px;}
.yb6{bottom:446.314200px;}
.y10e{bottom:446.322450px;}
.yd3{bottom:446.338500px;}
.y195{bottom:450.412350px;}
.y1c6{bottom:452.959200px;}
.y3b{bottom:455.912850px;}
.y11{bottom:459.654750px;}
.y16f{bottom:463.768275px;}
.y8d{bottom:463.825950px;}
.y67{bottom:463.845150px;}
.yec{bottom:463.898700px;}
.yb5{bottom:463.906575px;}
.y10d{bottom:463.914825px;}
.yd2{bottom:463.930875px;}
.y194{bottom:466.571850px;}
.y1c5{bottom:469.118700px;}
.y3a{bottom:471.896850px;}
.y148{bottom:477.433950px;}
.y16e{bottom:481.360650px;}
.y8c{bottom:481.418325px;}
.y66{bottom:481.437525px;}
.yeb{bottom:481.491075px;}
.yb4{bottom:481.498950px;}
.y10c{bottom:481.507200px;}
.yd1{bottom:481.523250px;}
.y193{bottom:482.731350px;}
.y1c4{bottom:485.278200px;}
.y39{bottom:487.880850px;}
.y10{bottom:488.442750px;}
.y1e0{bottom:493.730100px;}
.y147{bottom:495.026325px;}
.y192{bottom:498.890850px;}
.y16d{bottom:498.953025px;}
.y65{bottom:499.029900px;}
.y8b{bottom:499.083450px;}
.yb3{bottom:499.091325px;}
.y10b{bottom:499.099575px;}
.yd0{bottom:499.115625px;}
.y1c3{bottom:501.437700px;}
.y38{bottom:503.864850px;}
.y1df{bottom:506.519100px;}
.yf{bottom:510.030750px;}
.y146{bottom:512.618700px;}
.y191{bottom:515.050350px;}
.y16c{bottom:516.545400px;}
.y64{bottom:516.622275px;}
.y8a{bottom:516.675825px;}
.yb2{bottom:516.683700px;}
.y10a{bottom:516.691950px;}
.ycf{bottom:516.708000px;}
.y1c2{bottom:517.597200px;}
.y37{bottom:519.848850px;}
.ye{bottom:524.418750px;}
.y1de{bottom:524.919300px;}
.y145{bottom:530.211075px;}
.y190{bottom:531.209850px;}
.y1c1{bottom:533.756700px;}
.y16b{bottom:534.137775px;}
.y63{bottom:534.214650px;}
.y89{bottom:534.268200px;}
.yb1{bottom:534.276075px;}
.y109{bottom:534.284325px;}
.yce{bottom:534.300375px;}
.y36{bottom:535.832850px;}
.y1dd{bottom:537.708300px;}
.yd{bottom:538.806750px;}
.y18f{bottom:547.369350px;}
.y144{bottom:547.803450px;}
.y1c0{bottom:549.916200px;}
.y1dc{bottom:550.497300px;}
.y16a{bottom:551.730150px;}
.y62{bottom:551.807025px;}
.y88{bottom:551.860575px;}
.yb0{bottom:551.868450px;}
.y108{bottom:551.876700px;}
.ycd{bottom:551.892750px;}
.yc{bottom:553.194750px;}
.y18e{bottom:563.528850px;}
.y143{bottom:565.395825px;}
.y1bf{bottom:566.075700px;}
.yb{bottom:567.582750px;}
.y169{bottom:569.322525px;}
.y61{bottom:569.399400px;}
.y35{bottom:569.420850px;}
.y87{bottom:569.452950px;}
.yaf{bottom:569.460825px;}
.y107{bottom:569.469075px;}
.ycc{bottom:569.485125px;}
.y18d{bottom:579.688350px;}
.ya{bottom:581.970750px;}
.y1be{bottom:582.235200px;}
.y142{bottom:582.988200px;}
.y168{bottom:586.914900px;}
.y60{bottom:586.991775px;}
.y86{bottom:587.045325px;}
.yae{bottom:587.053200px;}
.y106{bottom:587.061450px;}
.ycb{bottom:587.077500px;}
.y18c{bottom:595.847850px;}
.y9{bottom:596.358750px;}
.y1bd{bottom:598.394700px;}
.y141{bottom:600.580575px;}
.y167{bottom:604.507275px;}
.y34{bottom:604.605600px;}
.y85{bottom:604.637700px;}
.y5f{bottom:604.641600px;}
.yad{bottom:604.645575px;}
.y105{bottom:604.653825px;}
.yca{bottom:604.669875px;}
.y18b{bottom:612.007350px;}
.y1bc{bottom:614.554200px;}
.y140{bottom:618.172950px;}
.y166{bottom:622.099650px;}
.yea{bottom:622.230075px;}
.y5e{bottom:622.233975px;}
.yac{bottom:622.237950px;}
.y104{bottom:622.246200px;}
.yc9{bottom:622.262250px;}
.y18a{bottom:628.166850px;}
.y1bb{bottom:630.713700px;}
.y13f{bottom:635.765325px;}
.y165{bottom:639.692025px;}
.y84{bottom:639.822450px;}
.y5d{bottom:639.826350px;}
.yab{bottom:639.830325px;}
.y103{bottom:639.838575px;}
.yc8{bottom:639.854625px;}
.y189{bottom:644.326350px;}
.y1ba{bottom:646.873200px;}
.ye9{bottom:648.626700px;}
.y13e{bottom:653.357700px;}
.y164{bottom:657.284400px;}
.y5c{bottom:657.418725px;}
.yaa{bottom:657.422700px;}
.y102{bottom:657.430950px;}
.y33{bottom:657.447000px;}
.y188{bottom:660.485850px;}
.y1b9{bottom:663.032700px;}
.ye8{bottom:666.219075px;}
.y13d{bottom:670.950075px;}
.y163{bottom:674.876775px;}
.y5b{bottom:675.011100px;}
.ya9{bottom:675.015075px;}
.y101{bottom:675.023325px;}
.y32{bottom:675.039375px;}
.y187{bottom:676.645350px;}
.y1b8{bottom:679.192200px;}
.y8{bottom:682.698300px;}
.ye7{bottom:683.811450px;}
.y13c{bottom:688.542450px;}
.y162{bottom:692.469150px;}
.y5a{bottom:692.603475px;}
.ya8{bottom:692.607450px;}
.y83{bottom:692.615700px;}
.y31{bottom:692.631750px;}
.y1b7{bottom:695.351700px;}
.y7{bottom:701.334750px;}
.ye6{bottom:701.403825px;}
.y13b{bottom:706.134825px;}
.y59{bottom:710.195850px;}
.ya7{bottom:710.199825px;}
.y82{bottom:710.208075px;}
.y30{bottom:710.224125px;}
.y1b6{bottom:711.511200px;}
.y186{bottom:714.061950px;}
.ye5{bottom:718.996200px;}
.y13a{bottom:723.727200px;}
.y161{bottom:727.653900px;}
.y1b5{bottom:727.670700px;}
.y58{bottom:727.788225px;}
.ya6{bottom:727.792200px;}
.y81{bottom:727.800450px;}
.y2f{bottom:727.816500px;}
.ye4{bottom:736.588575px;}
.y139{bottom:741.319575px;}
.y1b4{bottom:743.830200px;}
.y57{bottom:745.380600px;}
.ya5{bottom:745.384575px;}
.y80{bottom:745.392825px;}
.y2e{bottom:745.408875px;}
.y6{bottom:746.924250px;}
.ye3{bottom:754.180950px;}
.y138{bottom:758.911950px;}
.y1b3{bottom:759.989700px;}
.y56{bottom:762.972975px;}
.ya4{bottom:762.976950px;}
.y7f{bottom:762.985200px;}
.y2d{bottom:763.001250px;}
.ye2{bottom:771.773325px;}
.y1b2{bottom:776.149200px;}
.y5{bottom:777.300750px;}
.y185{bottom:780.561450px;}
.y55{bottom:780.565350px;}
.ya3{bottom:780.569325px;}
.y7e{bottom:780.577575px;}
.y2c{bottom:780.593625px;}
.y160{bottom:781.817775px;}
.ye1{bottom:789.365700px;}
.y1b1{bottom:792.308700px;}
.y137{bottom:793.537200px;}
.y4{bottom:798.090750px;}
.y54{bottom:798.157725px;}
.ya2{bottom:798.161700px;}
.y7d{bottom:798.169950px;}
.y2b{bottom:798.186000px;}
.y15f{bottom:799.410150px;}
.y1b0{bottom:808.468200px;}
.y136{bottom:809.521200px;}
.y184{bottom:815.746200px;}
.y53{bottom:815.750100px;}
.ya1{bottom:815.754075px;}
.y7c{bottom:815.762325px;}
.y2a{bottom:815.778375px;}
.y15e{bottom:817.002525px;}
.y1af{bottom:824.627700px;}
.y135{bottom:825.505200px;}
.y52{bottom:833.342475px;}
.ya0{bottom:833.346450px;}
.y7b{bottom:833.354700px;}
.y29{bottom:833.370750px;}
.y15d{bottom:834.594900px;}
.y1ae{bottom:840.787200px;}
.y134{bottom:841.489200px;}
.y9f{bottom:850.938825px;}
.y51{bottom:850.947075px;}
.y28{bottom:850.963125px;}
.y1ad{bottom:856.946700px;}
.y133{bottom:857.473200px;}
.y9e{bottom:868.531200px;}
.y50{bottom:868.539450px;}
.y27{bottom:868.555500px;}
.y3{bottom:872.507400px;}
.y1ac{bottom:873.106200px;}
.y132{bottom:873.457200px;}
.y4f{bottom:886.131825px;}
.y1ab{bottom:889.265700px;}
.y131{bottom:889.441200px;}
.y2{bottom:900.688050px;}
.y4e{bottom:903.724200px;}
.y26{bottom:903.740250px;}
.y130{bottom:905.425200px;}
.y24{bottom:948.916950px;}
.y4d{bottom:949.402950px;}
.y23{bottom:952.869600px;}
.y22{bottom:966.369600px;}
.h10{height:26.496000px;}
.hb{height:31.206000px;}
.hc{height:31.500000px;}
.ha{height:35.136000px;}
.h4{height:35.664000px;}
.h2{height:37.065000px;}
.h11{height:39.528000px;}
.h9{height:39.536000px;}
.h8{height:42.007000px;}
.h12{height:42.020508px;}
.hf{height:44.478000px;}
.hd{height:47.214000px;}
.h6{height:48.312000px;}
.h5{height:50.990400px;}
.he{height:53.126500px;}
.h7{height:54.362000px;}
.h3{height:77.400000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:87.755550px;}
.xe{left:102.047250px;}
.x11{left:106.301850px;}
.xa{left:110.543850px;}
.xf{left:116.928750px;}
.x9{left:123.469050px;}
.x10{left:129.689475px;}
.x4{left:142.209150px;}
.xb{left:145.195650px;}
.xc{left:150.820650px;}
.xd{left:163.853850px;}
.x5{left:265.887150px;}
.x8{left:275.866500px;}
.x7{left:302.503050px;}
.x3{left:460.558800px;}
.x2{left:511.415400px;}
@media print{
.v3{vertical-align:-62.550667pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.894400pt;}
.ls16{letter-spacing:-0.286667pt;}
.ls17{letter-spacing:-0.114667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.011733pt;}
.ls1c{letter-spacing:0.028667pt;}
.ls7{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.057333pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.114667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.143333pt;}
.ls2b{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.172000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.200667pt;}
.lsd{letter-spacing:0.229333pt;}
.ls8{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.286667pt;}
.ls9{letter-spacing:0.288000pt;}
.ls21{letter-spacing:0.315333pt;}
.ls14{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.344000pt;}
.ls19{letter-spacing:0.401333pt;}
.ls3{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.432000pt;}
.ls20{letter-spacing:0.456000pt;}
.lse{letter-spacing:0.458667pt;}
.ls1{letter-spacing:0.469333pt;}
.ls11{letter-spacing:0.516000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls24{letter-spacing:0.573333pt;}
.ls1d{letter-spacing:0.659333pt;}
.ls2d{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.709333pt;}
.ls1b{letter-spacing:0.860000pt;}
.ls26{letter-spacing:1.104000pt;}
.ls18{letter-spacing:1.146667pt;}
.ls22{letter-spacing:1.920000pt;}
.ls25{letter-spacing:2.184000pt;}
.ls2c{letter-spacing:2.208000pt;}
.ls27{letter-spacing:2.640000pt;}
.ls29{letter-spacing:3.360000pt;}
.ls28{letter-spacing:3.936000pt;}
.ls2f{letter-spacing:5.056000pt;}
.ls5{letter-spacing:8.880000pt;}
.lsc{letter-spacing:1297.129600pt;}
.ls0{letter-spacing:1893.779200pt;}
.wsa5{word-spacing:-11.760000pt;}
.ws9a{word-spacing:-11.724667pt;}
.ws35{word-spacing:-11.409333pt;}
.ws54{word-spacing:-9.552000pt;}
.ws14{word-spacing:-8.490667pt;}
.ws33{word-spacing:-7.960000pt;}
.wsb6{word-spacing:-7.660800pt;}
.ws34{word-spacing:-6.651694pt;}
.ws15{word-spacing:-5.568816pt;}
.wsb1{word-spacing:-3.936000pt;}
.wsaf{word-spacing:-2.640000pt;}
.wsa7{word-spacing:-2.208000pt;}
.ws9f{word-spacing:-1.920000pt;}
.wsba{word-spacing:-0.672000pt;}
.ws9c{word-spacing:-0.573333pt;}
.ws3{word-spacing:-0.469333pt;}
.ws9{word-spacing:-0.426667pt;}
.ws40{word-spacing:-0.229333pt;}
.ws11{word-spacing:-0.213333pt;}
.ws48{word-spacing:-0.172000pt;}
.ws6a{word-spacing:-0.057333pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.057333pt;}
.wsb{word-spacing:0.085333pt;}
.wsa0{word-spacing:0.096000pt;}
.ws1a{word-spacing:0.114667pt;}
.wsd{word-spacing:0.170667pt;}
.ws5f{word-spacing:0.172000pt;}
.ws89{word-spacing:0.286667pt;}
.ws43{word-spacing:0.344000pt;}
.wsbb{word-spacing:0.373333pt;}
.ws2c{word-spacing:0.401333pt;}
.wsc{word-spacing:0.426667pt;}
.wsb5{word-spacing:0.432000pt;}
.ws18{word-spacing:0.516000pt;}
.ws2d{word-spacing:0.573333pt;}
.ws6f{word-spacing:0.624000pt;}
.ws42{word-spacing:0.688000pt;}
.ws55{word-spacing:0.745333pt;}
.ws4b{word-spacing:0.802667pt;}
.ws8{word-spacing:0.853333pt;}
.ws60{word-spacing:0.860000pt;}
.wsb4{word-spacing:0.864000pt;}
.ws58{word-spacing:0.917333pt;}
.ws9d{word-spacing:0.960000pt;}
.ws20{word-spacing:0.974667pt;}
.ws53{word-spacing:1.008000pt;}
.ws97{word-spacing:1.032000pt;}
.wsa9{word-spacing:1.056000pt;}
.ws13{word-spacing:1.082667pt;}
.ws95{word-spacing:1.089333pt;}
.wsa4{word-spacing:1.104000pt;}
.ws73{word-spacing:1.146667pt;}
.wsab{word-spacing:1.200000pt;}
.ws88{word-spacing:1.204000pt;}
.ws71{word-spacing:1.248000pt;}
.ws4e{word-spacing:1.261333pt;}
.ws68{word-spacing:1.318667pt;}
.wsa{word-spacing:1.322667pt;}
.ws27{word-spacing:1.344000pt;}
.ws93{word-spacing:1.376000pt;}
.wsb8{word-spacing:1.392000pt;}
.ws6b{word-spacing:1.433333pt;}
.ws99{word-spacing:1.440000pt;}
.ws7f{word-spacing:1.490667pt;}
.ws7b{word-spacing:1.548000pt;}
.ws1f{word-spacing:1.605333pt;}
.ws7{word-spacing:1.621333pt;}
.ws5b{word-spacing:1.662667pt;}
.wsa3{word-spacing:1.680000pt;}
.ws5{word-spacing:1.706667pt;}
.ws3d{word-spacing:1.720000pt;}
.ws10{word-spacing:1.749333pt;}
.ws2b{word-spacing:1.777333pt;}
.ws26{word-spacing:1.824000pt;}
.ws6e{word-spacing:1.892000pt;}
.ws94{word-spacing:1.949333pt;}
.ws6d{word-spacing:2.006667pt;}
.wsa1{word-spacing:2.016000pt;}
.ws36{word-spacing:2.064000pt;}
.ws1b{word-spacing:2.121333pt;}
.wsaa{word-spacing:2.160000pt;}
.ws45{word-spacing:2.178667pt;}
.ws56{word-spacing:2.236000pt;}
.ws29{word-spacing:2.256000pt;}
.ws69{word-spacing:2.293333pt;}
.ws39{word-spacing:2.350667pt;}
.ws76{word-spacing:2.408000pt;}
.ws17{word-spacing:2.465333pt;}
.ws6{word-spacing:2.517333pt;}
.ws62{word-spacing:2.522667pt;}
.ws70{word-spacing:2.544000pt;}
.ws66{word-spacing:2.580000pt;}
.ws8e{word-spacing:2.592000pt;}
.ws75{word-spacing:2.637333pt;}
.ws4f{word-spacing:2.694667pt;}
.ws98{word-spacing:2.736000pt;}
.ws5e{word-spacing:2.752000pt;}
.ws81{word-spacing:2.784000pt;}
.ws2e{word-spacing:2.809333pt;}
.wsbc{word-spacing:2.837333pt;}
.ws3e{word-spacing:2.866667pt;}
.ws64{word-spacing:2.924000pt;}
.ws25{word-spacing:2.928000pt;}
.ws8d{word-spacing:2.976000pt;}
.ws1e{word-spacing:2.981333pt;}
.ws3c{word-spacing:3.038667pt;}
.ws50{word-spacing:3.072000pt;}
.ws21{word-spacing:3.096000pt;}
.ws90{word-spacing:3.120000pt;}
.ws7e{word-spacing:3.153333pt;}
.wsa8{word-spacing:3.168000pt;}
.ws78{word-spacing:3.210667pt;}
.ws8c{word-spacing:3.216000pt;}
.ws28{word-spacing:3.264000pt;}
.ws5c{word-spacing:3.268000pt;}
.ws5d{word-spacing:3.325333pt;}
.ws67{word-spacing:3.382667pt;}
.ws87{word-spacing:3.440000pt;}
.ws2a{word-spacing:3.456000pt;}
.ws61{word-spacing:3.497333pt;}
.wsa2{word-spacing:3.552000pt;}
.ws1d{word-spacing:3.554667pt;}
.ws52{word-spacing:3.600000pt;}
.ws2f{word-spacing:3.612000pt;}
.wsb7{word-spacing:3.648000pt;}
.ws91{word-spacing:3.669333pt;}
.wsb9{word-spacing:3.696000pt;}
.ws5a{word-spacing:3.726667pt;}
.ws8f{word-spacing:3.744000pt;}
.ws19{word-spacing:3.784000pt;}
.wse{word-spacing:3.840000pt;}
.ws7c{word-spacing:3.841333pt;}
.ws1c{word-spacing:3.898667pt;}
.ws72{word-spacing:3.936000pt;}
.ws9b{word-spacing:3.956000pt;}
.ws3a{word-spacing:4.013333pt;}
.ws8a{word-spacing:4.032000pt;}
.ws59{word-spacing:4.070667pt;}
.ws6c{word-spacing:4.128000pt;}
.ws12{word-spacing:4.144000pt;}
.wsad{word-spacing:4.176000pt;}
.ws4a{word-spacing:4.185333pt;}
.wsf{word-spacing:4.224000pt;}
.ws30{word-spacing:4.242667pt;}
.ws4{word-spacing:4.266667pt;}
.ws32{word-spacing:4.272000pt;}
.ws65{word-spacing:4.300000pt;}
.ws7d{word-spacing:4.357333pt;}
.wsb3{word-spacing:4.368000pt;}
.ws37{word-spacing:4.414667pt;}
.wsac{word-spacing:4.464000pt;}
.ws84{word-spacing:4.472000pt;}
.ws3f{word-spacing:4.529333pt;}
.ws63{word-spacing:4.586667pt;}
.ws8b{word-spacing:4.608000pt;}
.ws85{word-spacing:4.644000pt;}
.ws51{word-spacing:4.656000pt;}
.ws38{word-spacing:4.701333pt;}
.ws24{word-spacing:4.752000pt;}
.ws47{word-spacing:4.758667pt;}
.ws23{word-spacing:4.800000pt;}
.ws92{word-spacing:4.816000pt;}
.ws57{word-spacing:4.873333pt;}
.ws82{word-spacing:4.930667pt;}
.ws79{word-spacing:4.988000pt;}
.ws4c{word-spacing:5.045333pt;}
.ws83{word-spacing:5.102667pt;}
.ws44{word-spacing:5.160000pt;}
.ws80{word-spacing:5.217333pt;}
.ws3b{word-spacing:5.274667pt;}
.ws74{word-spacing:5.332000pt;}
.ws7a{word-spacing:5.389333pt;}
.ws41{word-spacing:5.446667pt;}
.ws4d{word-spacing:5.504000pt;}
.ws77{word-spacing:5.561333pt;}
.ws96{word-spacing:5.618667pt;}
.ws31{word-spacing:5.676000pt;}
.ws46{word-spacing:5.733333pt;}
.ws49{word-spacing:5.848000pt;}
.ws9e{word-spacing:6.336000pt;}
.wsa6{word-spacing:7.248000pt;}
.ws86{word-spacing:8.256000pt;}
.wsae{word-spacing:8.832000pt;}
.ws2{word-spacing:9.472000pt;}
.wsb2{word-spacing:11.280000pt;}
.ws1{word-spacing:11.861333pt;}
.wsb0{word-spacing:13.152000pt;}
.ws16{word-spacing:17.257333pt;}
._10{margin-left:-17.658667pt;}
._15{margin-left:-16.512000pt;}
._12{margin-left:-14.333333pt;}
._7{margin-left:-11.865600pt;}
._6{margin-left:-10.378667pt;}
._4{margin-left:-8.288000pt;}
._16{margin-left:-3.936000pt;}
._13{margin-left:-2.121333pt;}
._3{margin-left:-0.933333pt;}
._1{width:1.753600pt;}
._d{width:3.154400pt;}
._f{width:4.252800pt;}
._2{width:6.197333pt;}
._5{width:10.378667pt;}
._14{width:11.409333pt;}
._0{width:12.544000pt;}
._a{width:13.648000pt;}
._b{width:17.257333pt;}
._c{width:25.487776pt;}
._e{width:26.687776pt;}
._11{width:29.135776pt;}
._9{width:1403.946667pt;}
._8{width:1666.133333pt;}
.fsc{font-size:22.400000pt;}
.fsa{font-size:27.984000pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:33.425600pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:57.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:49.780933pt;}
.y1{bottom:49.887600pt;}
.y21{bottom:98.266400pt;}
.y4c{bottom:98.270400pt;}
.yc7{bottom:98.275733pt;}
.y7a{bottom:98.278400pt;}
.y15c{bottom:98.302933pt;}
.y12f{bottom:98.680933pt;}
.y1aa{bottom:98.722533pt;}
.y15a{bottom:99.062067pt;}
.y183{bottom:99.485133pt;}
.y100{bottom:99.601067pt;}
.y12d{bottom:99.615400pt;}
.y1db{bottom:100.986400pt;}
.y20{bottom:108.934400pt;}
.yc6{bottom:112.483733pt;}
.y79{bottom:112.486400pt;}
.y15b{bottom:112.510933pt;}
.y12e{bottom:112.888933pt;}
.y1a9{bottom:113.086533pt;}
.y159{bottom:114.699733pt;}
.y182{bottom:115.122800pt;}
.yff{bottom:115.238733pt;}
.y12c{bottom:115.253067pt;}
.y1da{bottom:115.350400pt;}
.y4b{bottom:116.474400pt;}
.y1f{bottom:123.370400pt;}
.yc5{bottom:126.691733pt;}
.y78{bottom:126.694400pt;}
.y1a8{bottom:127.450533pt;}
.y1d9{bottom:129.714400pt;}
.y158{bottom:130.337400pt;}
.y181{bottom:130.760467pt;}
.yfe{bottom:130.876400pt;}
.y12b{bottom:130.890733pt;}
.y1e{bottom:137.090400pt;}
.y77{bottom:140.902400pt;}
.y1a7{bottom:141.814533pt;}
.y1d8{bottom:144.078400pt;}
.yc4{bottom:144.895733pt;}
.y157{bottom:145.975067pt;}
.y180{bottom:146.398133pt;}
.yfd{bottom:146.514067pt;}
.y12a{bottom:146.528400pt;}
.y1d{bottom:154.851733pt;}
.y1a6{bottom:156.178533pt;}
.y1d7{bottom:158.442400pt;}
.y76{bottom:159.106400pt;}
.y156{bottom:161.612733pt;}
.y17f{bottom:162.035800pt;}
.y11d{bottom:162.056600pt;}
.y9d{bottom:162.087067pt;}
.yfc{bottom:162.151733pt;}
.y129{bottom:162.166067pt;}
.y4a{bottom:162.169267pt;}
.y1c{bottom:164.791733pt;}
.y1a5{bottom:170.542533pt;}
.y1d6{bottom:172.806400pt;}
.y155{bottom:177.250400pt;}
.y17e{bottom:177.673467pt;}
.y11c{bottom:177.694267pt;}
.y9c{bottom:177.724733pt;}
.yfb{bottom:177.789400pt;}
.y128{bottom:177.803733pt;}
.y49{bottom:177.806933pt;}
.y1b{bottom:182.553067pt;}
.y1a4{bottom:184.906533pt;}
.y1d5{bottom:187.170400pt;}
.y1a{bottom:192.493067pt;}
.y154{bottom:192.888067pt;}
.y17d{bottom:193.311133pt;}
.y11b{bottom:193.331933pt;}
.ye0{bottom:193.336933pt;}
.y9b{bottom:193.362400pt;}
.y75{bottom:193.379467pt;}
.yfa{bottom:193.427067pt;}
.yc3{bottom:193.434067pt;}
.y127{bottom:193.441400pt;}
.y48{bottom:193.444600pt;}
.y1a3{bottom:199.270533pt;}
.y1d4{bottom:201.534400pt;}
.y153{bottom:208.525733pt;}
.y17c{bottom:208.948800pt;}
.y11a{bottom:208.969600pt;}
.ydf{bottom:208.974600pt;}
.y9a{bottom:209.000067pt;}
.y74{bottom:209.017133pt;}
.yf9{bottom:209.064733pt;}
.yc2{bottom:209.071733pt;}
.y126{bottom:209.079067pt;}
.y47{bottom:209.082267pt;}
.y1a2{bottom:213.634533pt;}
.y1d3{bottom:215.898400pt;}
.y152{bottom:224.163400pt;}
.y17b{bottom:224.586467pt;}
.y119{bottom:224.607267pt;}
.yde{bottom:224.612267pt;}
.y99{bottom:224.637733pt;}
.y73{bottom:224.654800pt;}
.yf8{bottom:224.702400pt;}
.yc1{bottom:224.709400pt;}
.y125{bottom:224.716733pt;}
.y46{bottom:224.719933pt;}
.y1a1{bottom:227.998533pt;}
.y1d2{bottom:230.262400pt;}
.y151{bottom:239.801067pt;}
.y17a{bottom:240.224133pt;}
.y118{bottom:240.244933pt;}
.ydd{bottom:240.249933pt;}
.y98{bottom:240.275400pt;}
.y72{bottom:240.292467pt;}
.yf7{bottom:240.340067pt;}
.yc0{bottom:240.347067pt;}
.y124{bottom:240.354400pt;}
.y45{bottom:240.357600pt;}
.y1a0{bottom:242.362533pt;}
.y1d1{bottom:244.626400pt;}
.y150{bottom:255.438733pt;}
.y179{bottom:255.861800pt;}
.y117{bottom:255.882600pt;}
.ydc{bottom:255.887600pt;}
.y97{bottom:255.913067pt;}
.y71{bottom:255.930133pt;}
.yf6{bottom:255.977733pt;}
.ybf{bottom:255.984733pt;}
.y123{bottom:255.992067pt;}
.y44{bottom:255.995267pt;}
.y19f{bottom:256.726533pt;}
.y1d0{bottom:258.990400pt;}
.y14f{bottom:271.076400pt;}
.y19e{bottom:271.090533pt;}
.y178{bottom:271.499467pt;}
.y116{bottom:271.520267pt;}
.ydb{bottom:271.525267pt;}
.y96{bottom:271.550733pt;}
.y70{bottom:271.567800pt;}
.yf5{bottom:271.615400pt;}
.ybe{bottom:271.622400pt;}
.y122{bottom:271.629733pt;}
.y43{bottom:271.632933pt;}
.y1cf{bottom:273.354400pt;}
.y19d{bottom:285.454533pt;}
.y14e{bottom:286.714067pt;}
.y177{bottom:287.137133pt;}
.y115{bottom:287.157933pt;}
.y95{bottom:287.188400pt;}
.y6f{bottom:287.205467pt;}
.yf4{bottom:287.253067pt;}
.ybd{bottom:287.260067pt;}
.y121{bottom:287.267400pt;}
.y42{bottom:287.270600pt;}
.yda{bottom:287.281667pt;}
.y1ce{bottom:287.718400pt;}
.y19c{bottom:299.818533pt;}
.y19{bottom:299.867333pt;}
.y1cd{bottom:302.082400pt;}
.y14d{bottom:302.351733pt;}
.y176{bottom:302.774800pt;}
.y114{bottom:302.795600pt;}
.y94{bottom:302.826067pt;}
.y6e{bottom:302.843133pt;}
.yf3{bottom:302.890733pt;}
.ybc{bottom:302.897733pt;}
.y120{bottom:302.905067pt;}
.y41{bottom:302.908267pt;}
.yd9{bottom:302.919333pt;}
.y19b{bottom:314.182533pt;}
.y1cc{bottom:316.446400pt;}
.y14c{bottom:317.989400pt;}
.y175{bottom:318.412467pt;}
.y113{bottom:318.433267pt;}
.y93{bottom:318.463733pt;}
.y6d{bottom:318.480800pt;}
.yf2{bottom:318.528400pt;}
.ybb{bottom:318.535400pt;}
.y11f{bottom:318.542733pt;}
.yd8{bottom:318.557000pt;}
.y18{bottom:319.056667pt;}
.y19a{bottom:328.546533pt;}
.y1cb{bottom:330.810400pt;}
.y17{bottom:331.846000pt;}
.y14b{bottom:333.627067pt;}
.y174{bottom:334.050133pt;}
.y112{bottom:334.070933pt;}
.y92{bottom:334.101400pt;}
.y6c{bottom:334.118467pt;}
.yf1{bottom:334.166067pt;}
.yba{bottom:334.173067pt;}
.y11e{bottom:334.180400pt;}
.yd7{bottom:334.194667pt;}
.y40{bottom:334.215867pt;}
.y199{bottom:342.910533pt;}
.y16{bottom:344.635333pt;}
.y1ca{bottom:345.174400pt;}
.y3f{bottom:348.423867pt;}
.y14a{bottom:349.264733pt;}
.y173{bottom:349.687800pt;}
.y91{bottom:349.739067pt;}
.y6b{bottom:349.756133pt;}
.yf0{bottom:349.803733pt;}
.yb9{bottom:349.810733pt;}
.y111{bottom:349.818067pt;}
.yd6{bottom:349.832333pt;}
.y198{bottom:357.274533pt;}
.y15{bottom:357.424667pt;}
.y1c9{bottom:359.538400pt;}
.y3e{bottom:362.631867pt;}
.y172{bottom:365.325467pt;}
.y90{bottom:365.376733pt;}
.y6a{bottom:365.393800pt;}
.yef{bottom:365.441400pt;}
.yb8{bottom:365.448400pt;}
.y110{bottom:365.455733pt;}
.yd5{bottom:365.470000pt;}
.y14{bottom:370.214000pt;}
.y197{bottom:371.638533pt;}
.y1c8{bottom:373.902400pt;}
.y3d{bottom:376.839867pt;}
.y149{bottom:379.264400pt;}
.y171{bottom:380.963133pt;}
.y8f{bottom:381.014400pt;}
.y69{bottom:381.031467pt;}
.yee{bottom:381.079067pt;}
.yb7{bottom:381.086067pt;}
.y10f{bottom:381.093400pt;}
.yd4{bottom:381.107667pt;}
.y13{bottom:383.003333pt;}
.y196{bottom:386.002533pt;}
.y1c7{bottom:388.266400pt;}
.y3c{bottom:391.047867pt;}
.y12{bottom:395.792667pt;}
.y170{bottom:396.600800pt;}
.y8e{bottom:396.652067pt;}
.y68{bottom:396.669133pt;}
.yed{bottom:396.716733pt;}
.yb6{bottom:396.723733pt;}
.y10e{bottom:396.731067pt;}
.yd3{bottom:396.745333pt;}
.y195{bottom:400.366533pt;}
.y1c6{bottom:402.630400pt;}
.y3b{bottom:405.255867pt;}
.y11{bottom:408.582000pt;}
.y16f{bottom:412.238467pt;}
.y8d{bottom:412.289733pt;}
.y67{bottom:412.306800pt;}
.yec{bottom:412.354400pt;}
.yb5{bottom:412.361400pt;}
.y10d{bottom:412.368733pt;}
.yd2{bottom:412.383000pt;}
.y194{bottom:414.730533pt;}
.y1c5{bottom:416.994400pt;}
.y3a{bottom:419.463867pt;}
.y148{bottom:424.385733pt;}
.y16e{bottom:427.876133pt;}
.y8c{bottom:427.927400pt;}
.y66{bottom:427.944467pt;}
.yeb{bottom:427.992067pt;}
.yb4{bottom:427.999067pt;}
.y10c{bottom:428.006400pt;}
.yd1{bottom:428.020667pt;}
.y193{bottom:429.094533pt;}
.y1c4{bottom:431.358400pt;}
.y39{bottom:433.671867pt;}
.y10{bottom:434.171333pt;}
.y1e0{bottom:438.871200pt;}
.y147{bottom:440.023400pt;}
.y192{bottom:443.458533pt;}
.y16d{bottom:443.513800pt;}
.y65{bottom:443.582133pt;}
.y8b{bottom:443.629733pt;}
.yb3{bottom:443.636733pt;}
.y10b{bottom:443.644067pt;}
.yd0{bottom:443.658333pt;}
.y1c3{bottom:445.722400pt;}
.y38{bottom:447.879867pt;}
.y1df{bottom:450.239200pt;}
.yf{bottom:453.360667pt;}
.y146{bottom:455.661067pt;}
.y191{bottom:457.822533pt;}
.y16c{bottom:459.151467pt;}
.y64{bottom:459.219800pt;}
.y8a{bottom:459.267400pt;}
.yb2{bottom:459.274400pt;}
.y10a{bottom:459.281733pt;}
.ycf{bottom:459.296000pt;}
.y1c2{bottom:460.086400pt;}
.y37{bottom:462.087867pt;}
.ye{bottom:466.150000pt;}
.y1de{bottom:466.594933pt;}
.y145{bottom:471.298733pt;}
.y190{bottom:472.186533pt;}
.y1c1{bottom:474.450400pt;}
.y16b{bottom:474.789133pt;}
.y63{bottom:474.857467pt;}
.y89{bottom:474.905067pt;}
.yb1{bottom:474.912067pt;}
.y109{bottom:474.919400pt;}
.yce{bottom:474.933667pt;}
.y36{bottom:476.295867pt;}
.y1dd{bottom:477.962933pt;}
.yd{bottom:478.939333pt;}
.y18f{bottom:486.550533pt;}
.y144{bottom:486.936400pt;}
.y1c0{bottom:488.814400pt;}
.y1dc{bottom:489.330933pt;}
.y16a{bottom:490.426800pt;}
.y62{bottom:490.495133pt;}
.y88{bottom:490.542733pt;}
.yb0{bottom:490.549733pt;}
.y108{bottom:490.557067pt;}
.ycd{bottom:490.571333pt;}
.yc{bottom:491.728667pt;}
.y18e{bottom:500.914533pt;}
.y143{bottom:502.574067pt;}
.y1bf{bottom:503.178400pt;}
.yb{bottom:504.518000pt;}
.y169{bottom:506.064467pt;}
.y61{bottom:506.132800pt;}
.y35{bottom:506.151867pt;}
.y87{bottom:506.180400pt;}
.yaf{bottom:506.187400pt;}
.y107{bottom:506.194733pt;}
.ycc{bottom:506.209000pt;}
.y18d{bottom:515.278533pt;}
.ya{bottom:517.307333pt;}
.y1be{bottom:517.542400pt;}
.y142{bottom:518.211733pt;}
.y168{bottom:521.702133pt;}
.y60{bottom:521.770467pt;}
.y86{bottom:521.818067pt;}
.yae{bottom:521.825067pt;}
.y106{bottom:521.832400pt;}
.ycb{bottom:521.846667pt;}
.y18c{bottom:529.642533pt;}
.y9{bottom:530.096667pt;}
.y1bd{bottom:531.906400pt;}
.y141{bottom:533.849400pt;}
.y167{bottom:537.339800pt;}
.y34{bottom:537.427200pt;}
.y85{bottom:537.455733pt;}
.y5f{bottom:537.459200pt;}
.yad{bottom:537.462733pt;}
.y105{bottom:537.470067pt;}
.yca{bottom:537.484333pt;}
.y18b{bottom:544.006533pt;}
.y1bc{bottom:546.270400pt;}
.y140{bottom:549.487067pt;}
.y166{bottom:552.977467pt;}
.yea{bottom:553.093400pt;}
.y5e{bottom:553.096867pt;}
.yac{bottom:553.100400pt;}
.y104{bottom:553.107733pt;}
.yc9{bottom:553.122000pt;}
.y18a{bottom:558.370533pt;}
.y1bb{bottom:560.634400pt;}
.y13f{bottom:565.124733pt;}
.y165{bottom:568.615133pt;}
.y84{bottom:568.731067pt;}
.y5d{bottom:568.734533pt;}
.yab{bottom:568.738067pt;}
.y103{bottom:568.745400pt;}
.yc8{bottom:568.759667pt;}
.y189{bottom:572.734533pt;}
.y1ba{bottom:574.998400pt;}
.ye9{bottom:576.557067pt;}
.y13e{bottom:580.762400pt;}
.y164{bottom:584.252800pt;}
.y5c{bottom:584.372200pt;}
.yaa{bottom:584.375733pt;}
.y102{bottom:584.383067pt;}
.y33{bottom:584.397333pt;}
.y188{bottom:587.098533pt;}
.y1b9{bottom:589.362400pt;}
.ye8{bottom:592.194733pt;}
.y13d{bottom:596.400067pt;}
.y163{bottom:599.890467pt;}
.y5b{bottom:600.009867pt;}
.ya9{bottom:600.013400pt;}
.y101{bottom:600.020733pt;}
.y32{bottom:600.035000pt;}
.y187{bottom:601.462533pt;}
.y1b8{bottom:603.726400pt;}
.y8{bottom:606.842933pt;}
.ye7{bottom:607.832400pt;}
.y13c{bottom:612.037733pt;}
.y162{bottom:615.528133pt;}
.y5a{bottom:615.647533pt;}
.ya8{bottom:615.651067pt;}
.y83{bottom:615.658400pt;}
.y31{bottom:615.672667pt;}
.y1b7{bottom:618.090400pt;}
.y7{bottom:623.408667pt;}
.ye6{bottom:623.470067pt;}
.y13b{bottom:627.675400pt;}
.y59{bottom:631.285200pt;}
.ya7{bottom:631.288733pt;}
.y82{bottom:631.296067pt;}
.y30{bottom:631.310333pt;}
.y1b6{bottom:632.454400pt;}
.y186{bottom:634.721733pt;}
.ye5{bottom:639.107733pt;}
.y13a{bottom:643.313067pt;}
.y161{bottom:646.803467pt;}
.y1b5{bottom:646.818400pt;}
.y58{bottom:646.922867pt;}
.ya6{bottom:646.926400pt;}
.y81{bottom:646.933733pt;}
.y2f{bottom:646.948000pt;}
.ye4{bottom:654.745400pt;}
.y139{bottom:658.950733pt;}
.y1b4{bottom:661.182400pt;}
.y57{bottom:662.560533pt;}
.ya5{bottom:662.564067pt;}
.y80{bottom:662.571400pt;}
.y2e{bottom:662.585667pt;}
.y6{bottom:663.932667pt;}
.ye3{bottom:670.383067pt;}
.y138{bottom:674.588400pt;}
.y1b3{bottom:675.546400pt;}
.y56{bottom:678.198200pt;}
.ya4{bottom:678.201733pt;}
.y7f{bottom:678.209067pt;}
.y2d{bottom:678.223333pt;}
.ye2{bottom:686.020733pt;}
.y1b2{bottom:689.910400pt;}
.y5{bottom:690.934000pt;}
.y185{bottom:693.832400pt;}
.y55{bottom:693.835867pt;}
.ya3{bottom:693.839400pt;}
.y7e{bottom:693.846733pt;}
.y2c{bottom:693.861000pt;}
.y160{bottom:694.949133pt;}
.ye1{bottom:701.658400pt;}
.y1b1{bottom:704.274400pt;}
.y137{bottom:705.366400pt;}
.y4{bottom:709.414000pt;}
.y54{bottom:709.473533pt;}
.ya2{bottom:709.477067pt;}
.y7d{bottom:709.484400pt;}
.y2b{bottom:709.498667pt;}
.y15f{bottom:710.586800pt;}
.y1b0{bottom:718.638400pt;}
.y136{bottom:719.574400pt;}
.y184{bottom:725.107733pt;}
.y53{bottom:725.111200pt;}
.ya1{bottom:725.114733pt;}
.y7c{bottom:725.122067pt;}
.y2a{bottom:725.136333pt;}
.y15e{bottom:726.224467pt;}
.y1af{bottom:733.002400pt;}
.y135{bottom:733.782400pt;}
.y52{bottom:740.748867pt;}
.ya0{bottom:740.752400pt;}
.y7b{bottom:740.759733pt;}
.y29{bottom:740.774000pt;}
.y15d{bottom:741.862133pt;}
.y1ae{bottom:747.366400pt;}
.y134{bottom:747.990400pt;}
.y9f{bottom:756.390067pt;}
.y51{bottom:756.397400pt;}
.y28{bottom:756.411667pt;}
.y1ad{bottom:761.730400pt;}
.y133{bottom:762.198400pt;}
.y9e{bottom:772.027733pt;}
.y50{bottom:772.035067pt;}
.y27{bottom:772.049333pt;}
.y3{bottom:775.562133pt;}
.y1ac{bottom:776.094400pt;}
.y132{bottom:776.406400pt;}
.y4f{bottom:787.672733pt;}
.y1ab{bottom:790.458400pt;}
.y131{bottom:790.614400pt;}
.y2{bottom:800.611600pt;}
.y4e{bottom:803.310400pt;}
.y26{bottom:803.324667pt;}
.y130{bottom:804.822400pt;}
.y24{bottom:843.481733pt;}
.y4d{bottom:843.913733pt;}
.y23{bottom:846.995200pt;}
.y22{bottom:858.995200pt;}
.h10{height:23.552000pt;}
.hb{height:27.738667pt;}
.hc{height:28.000000pt;}
.ha{height:31.232000pt;}
.h4{height:31.701333pt;}
.h2{height:32.946667pt;}
.h11{height:35.136000pt;}
.h9{height:35.143111pt;}
.h8{height:37.339556pt;}
.h12{height:37.351562pt;}
.hf{height:39.536000pt;}
.hd{height:41.968000pt;}
.h6{height:42.944000pt;}
.h5{height:45.324800pt;}
.he{height:47.223556pt;}
.h7{height:48.321778pt;}
.h3{height:68.800000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:78.004933pt;}
.xe{left:90.708667pt;}
.x11{left:94.490533pt;}
.xa{left:98.261200pt;}
.xf{left:103.936667pt;}
.x9{left:109.750267pt;}
.x10{left:115.279533pt;}
.x4{left:126.408133pt;}
.xb{left:129.062800pt;}
.xc{left:134.062800pt;}
.xd{left:145.647867pt;}
.x5{left:236.344133pt;}
.x8{left:245.214667pt;}
.x7{left:268.891600pt;}
.x3{left:409.385600pt;}
.x2{left:454.591467pt;}
}




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