
    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_4bed7f984c781dae478344d8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_56cde0c51f4efd5f279ca8df.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_69b0bcaa4b5cf6c1de43a287.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_6ca9751d81670f47f105edb7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_acdeed66ff6e52d5d76c291c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_c6ffb90c720a51d6789739c7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_ce2353be218f274c6f4ccc97.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_0ee9fd6c5980f1e5418c23e9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_18716ed804833db383e9b710.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_eafc172840c3e4557c0888cd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708000;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;}
.m1{transform:matrix(-0.500000,0.000000,0.000000,-0.250000,0,0);-ms-transform:matrix(-0.500000,0.000000,0.000000,-0.250000,0,0);-webkit-transform:matrix(-0.500000,0.000000,0.000000,-0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-14.400000px;}
.v4{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.216000px;}
.ls25{letter-spacing:-2.808000px;}
.ls30{letter-spacing:-2.376000px;}
.ls3e{letter-spacing:-1.980000px;}
.ls3c{letter-spacing:-1.872000px;}
.ls31{letter-spacing:-1.152000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.792000px;}
.ls21{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls3f{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.240000px;}
.lse{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.792000px;}
.ls24{letter-spacing:0.864000px;}
.ls26{letter-spacing:0.936000px;}
.ls11{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.224000px;}
.ls33{letter-spacing:1.296000px;}
.ls2c{letter-spacing:1.584000px;}
.ls2d{letter-spacing:2.469600px;}
.ls0{letter-spacing:2.850000px;}
.ls3b{letter-spacing:2.923200px;}
.ls35{letter-spacing:2.928000px;}
.ls37{letter-spacing:2.956800px;}
.ls36{letter-spacing:2.976000px;}
.ls2e{letter-spacing:3.168000px;}
.ls34{letter-spacing:3.408000px;}
.ls27{letter-spacing:3.909600px;}
.ls32{letter-spacing:4.190400px;}
.ls5{letter-spacing:4.512000px;}
.ls20{letter-spacing:4.600800px;}
.ls7{letter-spacing:4.704000px;}
.ls39{letter-spacing:4.752000px;}
.ls1a{letter-spacing:7.272000px;}
.ls12{letter-spacing:7.380000px;}
.ls3d{letter-spacing:8.100000px;}
.ls3{letter-spacing:8.460000px;}
.ls2f{letter-spacing:9.216000px;}
.ls1{letter-spacing:10.740000px;}
.ls2a{letter-spacing:288.060000px;}
.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;}
}
.ws2{word-spacing:-25.320000px;}
.ws71{word-spacing:-21.456000px;}
.ws72{word-spacing:-21.096000px;}
.ws8b{word-spacing:-20.952000px;}
.wsbc{word-spacing:-20.592000px;}
.ws38{word-spacing:-20.232000px;}
.ws7c{word-spacing:-20.088000px;}
.wsb4{word-spacing:-19.872000px;}
.ws1{word-spacing:-18.867000px;}
.ws70{word-spacing:-18.864000px;}
.ws66{word-spacing:-18.648000px;}
.ws3a{word-spacing:-18.432000px;}
.ws94{word-spacing:-18.144000px;}
.wsa3{word-spacing:-17.856000px;}
.ws39{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.568000px;}
.ws9b{word-spacing:-16.860000px;}
.wscc{word-spacing:-14.880000px;}
.wsa2{word-spacing:-14.162400px;}
.wsc2{word-spacing:-13.488000px;}
.wsc8{word-spacing:-13.248000px;}
.wsc1{word-spacing:-11.856000px;}
.wscb{word-spacing:-11.802000px;}
.wsbd{word-spacing:-8.460000px;}
.wsca{word-spacing:-8.100000px;}
.wsc3{word-spacing:-4.752000px;}
.ws9{word-spacing:-4.512000px;}
.wsab{word-spacing:-4.248000px;}
.ws5f{word-spacing:-2.088000px;}
.ws65{word-spacing:-2.016000px;}
.ws93{word-spacing:-1.944000px;}
.ws7b{word-spacing:-1.800000px;}
.ws60{word-spacing:-1.728000px;}
.ws74{word-spacing:-1.224000px;}
.ws76{word-spacing:-1.080000px;}
.ws78{word-spacing:-1.008000px;}
.ws90{word-spacing:-0.936000px;}
.ws73{word-spacing:-0.864000px;}
.ws92{word-spacing:-0.792000px;}
.ws75{word-spacing:-0.648000px;}
.ws8f{word-spacing:-0.576000px;}
.ws7a{word-spacing:-0.432000px;}
.ws6e{word-spacing:-0.360000px;}
.wse{word-spacing:-0.300000px;}
.wsc7{word-spacing:-0.240000px;}
.ws8{word-spacing:-0.180000px;}
.wsb1{word-spacing:-0.072000px;}
.wsae{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws91{word-spacing:0.072000px;}
.ws79{word-spacing:0.144000px;}
.ws40{word-spacing:0.216000px;}
.wsc6{word-spacing:0.240000px;}
.wsce{word-spacing:0.300000px;}
.ws43{word-spacing:0.360000px;}
.ws1e{word-spacing:0.504000px;}
.ws67{word-spacing:0.576000px;}
.wscd{word-spacing:0.600000px;}
.ws30{word-spacing:0.648000px;}
.ws6b{word-spacing:0.720000px;}
.ws34{word-spacing:0.792000px;}
.ws35{word-spacing:0.864000px;}
.ws46{word-spacing:0.936000px;}
.ws4e{word-spacing:1.008000px;}
.wsc0{word-spacing:1.080000px;}
.ws3d{word-spacing:1.152000px;}
.ws22{word-spacing:1.224000px;}
.ws8d{word-spacing:1.368000px;}
.wsc9{word-spacing:1.440000px;}
.ws8c{word-spacing:1.512000px;}
.ws55{word-spacing:1.584000px;}
.ws51{word-spacing:1.656000px;}
.wsf{word-spacing:1.728000px;}
.ws5{word-spacing:1.800000px;}
.ws9d{word-spacing:1.872000px;}
.ws36{word-spacing:1.944000px;}
.ws58{word-spacing:2.016000px;}
.ws9f{word-spacing:2.088000px;}
.ws49{word-spacing:2.160000px;}
.ws8a{word-spacing:2.232000px;}
.wsa6{word-spacing:2.304000px;}
.ws20{word-spacing:2.376000px;}
.ws84{word-spacing:2.400000px;}
.ws42{word-spacing:2.448000px;}
.ws7d{word-spacing:2.520000px;}
.wsa7{word-spacing:2.592000px;}
.ws96{word-spacing:2.664000px;}
.ws5a{word-spacing:2.736000px;}
.ws27{word-spacing:2.808000px;}
.ws63{word-spacing:2.880000px;}
.ws62{word-spacing:2.952000px;}
.wsc5{word-spacing:2.976000px;}
.ws41{word-spacing:3.024000px;}
.ws6d{word-spacing:3.096000px;}
.ws81{word-spacing:3.168000px;}
.ws4a{word-spacing:3.240000px;}
.wsd{word-spacing:3.312000px;}
.wsc4{word-spacing:3.360000px;}
.ws10{word-spacing:3.384000px;}
.ws3e{word-spacing:3.456000px;}
.ws48{word-spacing:3.528000px;}
.ws98{word-spacing:3.600000px;}
.ws50{word-spacing:3.672000px;}
.wsb{word-spacing:3.720000px;}
.ws13{word-spacing:3.744000px;}
.ws16{word-spacing:3.816000px;}
.wsa5{word-spacing:3.888000px;}
.ws6c{word-spacing:3.960000px;}
.ws9c{word-spacing:4.032000px;}
.wsb0{word-spacing:4.104000px;}
.ws9e{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws32{word-spacing:4.248000px;}
.ws2b{word-spacing:4.320000px;}
.ws68{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws31{word-spacing:4.536000px;}
.ws2e{word-spacing:4.608000px;}
.wsa4{word-spacing:4.680000px;}
.ws54{word-spacing:4.752000px;}
.ws2a{word-spacing:4.896000px;}
.ws53{word-spacing:4.968000px;}
.ws1a{word-spacing:5.040000px;}
.ws61{word-spacing:5.112000px;}
.wsa9{word-spacing:5.184000px;}
.ws80{word-spacing:5.256000px;}
.wsaf{word-spacing:5.328000px;}
.ws6f{word-spacing:5.400000px;}
.ws47{word-spacing:5.472000px;}
.ws1b{word-spacing:5.544000px;}
.wsa1{word-spacing:5.616000px;}
.ws12{word-spacing:5.688000px;}
.wsac{word-spacing:5.760000px;}
.ws18{word-spacing:5.832000px;}
.ws44{word-spacing:5.904000px;}
.ws11{word-spacing:5.976000px;}
.ws19{word-spacing:6.048000px;}
.ws95{word-spacing:6.120000px;}
.ws52{word-spacing:6.192000px;}
.ws77{word-spacing:6.264000px;}
.ws14{word-spacing:6.336000px;}
.ws3f{word-spacing:6.408000px;}
.ws7e{word-spacing:6.480000px;}
.ws29{word-spacing:6.552000px;}
.ws28{word-spacing:6.624000px;}
.ws83{word-spacing:6.696000px;}
.ws4f{word-spacing:6.768000px;}
.wsaa{word-spacing:6.840000px;}
.ws1c{word-spacing:6.912000px;}
.wsbf{word-spacing:6.984000px;}
.ws5c{word-spacing:7.056000px;}
.ws69{word-spacing:7.128000px;}
.ws7f{word-spacing:7.200000px;}
.ws23{word-spacing:7.272000px;}
.wsb5{word-spacing:7.344000px;}
.ws2c{word-spacing:7.416000px;}
.ws97{word-spacing:7.488000px;}
.ws21{word-spacing:7.560000px;}
.wsbe{word-spacing:7.632000px;}
.ws5b{word-spacing:7.704000px;}
.ws26{word-spacing:7.776000px;}
.ws24{word-spacing:7.848000px;}
.wsb2{word-spacing:7.920000px;}
.ws6a{word-spacing:8.064000px;}
.wsa0{word-spacing:8.136000px;}
.ws5e{word-spacing:8.280000px;}
.ws45{word-spacing:8.352000px;}
.ws0{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws64{word-spacing:8.424000px;}
.ws3b{word-spacing:8.496000px;}
.ws9a{word-spacing:8.568000px;}
.ws37{word-spacing:8.640000px;}
.ws8e{word-spacing:8.712000px;}
.ws4b{word-spacing:8.784000px;}
.ws25{word-spacing:8.856000px;}
.ws5d{word-spacing:8.928000px;}
.wsb6{word-spacing:9.000000px;}
.ws82{word-spacing:9.072000px;}
.ws1d{word-spacing:9.144000px;}
.wsb3{word-spacing:9.216000px;}
.ws57{word-spacing:9.288000px;}
.wsad{word-spacing:9.360000px;}
.ws59{word-spacing:9.432000px;}
.ws2f{word-spacing:9.504000px;}
.ws2d{word-spacing:9.576000px;}
.ws4d{word-spacing:9.648000px;}
.ws4c{word-spacing:9.720000px;}
.wsa8{word-spacing:9.864000px;}
.ws3c{word-spacing:10.008000px;}
.ws15{word-spacing:10.080000px;}
.ws17{word-spacing:10.152000px;}
.ws33{word-spacing:10.296000px;}
.wsa{word-spacing:10.440000px;}
.ws56{word-spacing:10.512000px;}
.ws99{word-spacing:12.816000px;}
.wsb8{word-spacing:25.140000px;}
.wsb7{word-spacing:63.480000px;}
.wsc{word-spacing:73.140000px;}
.wsba{word-spacing:132.420000px;}
.ws88{word-spacing:164.520000px;}
.wsbb{word-spacing:199.140000px;}
.ws87{word-spacing:257.640000px;}
.ws86{word-spacing:285.120000px;}
.wsb9{word-spacing:337.140000px;}
.ws89{word-spacing:375.180000px;}
.ws85{word-spacing:897.480000px;}
._0{margin-left:-940.386000px;}
._35{margin-left:-199.122000px;}
._c{margin-left:-68.466000px;}
._d{margin-left:-36.720000px;}
._15{margin-left:-14.838000px;}
._8{margin-left:-11.928000px;}
._13{margin-left:-9.607200px;}
._6{margin-left:-7.860000px;}
._1{margin-left:-5.964000px;}
._12{margin-left:-4.596000px;}
._4{margin-left:-3.468000px;}
._7{margin-left:-2.292000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.060000px;}
._9{width:4.178400px;}
._e{width:5.188800px;}
._14{width:6.756000px;}
._f{width:7.900800px;}
._b{width:9.294000px;}
._27{width:12.780000px;}
._36{width:14.120400px;}
._31{width:22.206000px;}
._10{width:32.990400px;}
._11{width:35.856000px;}
._18{width:43.440000px;}
._2e{width:69.960000px;}
._25{width:71.976000px;}
._2f{width:93.396000px;}
._1e{width:94.860000px;}
._1a{width:98.004000px;}
._26{width:103.304400px;}
._30{width:106.206000px;}
._1d{width:127.800000px;}
._24{width:132.895200px;}
._32{width:172.014000px;}
._a{width:201.564000px;}
._33{width:204.720000px;}
._1f{width:207.180000px;}
._28{width:217.740000px;}
._21{width:222.000000px;}
._34{width:228.720000px;}
._19{width:236.112000px;}
._2c{width:240.720000px;}
._29{width:241.740000px;}
._2a{width:258.000000px;}
._2d{width:264.756000px;}
._22{width:304.740000px;}
._2b{width:308.104800px;}
._1b{width:313.200000px;}
._23{width:367.140000px;}
._1c{width:387.120000px;}
._20{width:405.942000px;}
._17{width:627.900000px;}
._16{width:640.920000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6f{bottom:117.000000px;}
.y95{bottom:117.078000px;}
.ybb{bottom:117.096000px;}
.ycd{bottom:117.192000px;}
.y1f8{bottom:117.438150px;}
.y170{bottom:118.128000px;}
.y1ce{bottom:118.500000px;}
.y24{bottom:119.024850px;}
.y1a2{bottom:119.388150px;}
.y113{bottom:119.734350px;}
.y21e{bottom:119.850000px;}
.y4b{bottom:120.340050px;}
.yed{bottom:121.588200px;}
.y122{bottom:124.618050px;}
.y142{bottom:130.074000px;}
.y16f{bottom:133.128000px;}
.y1f7{bottom:136.038150px;}
.y1cd{bottom:137.400000px;}
.y23{bottom:137.474850px;}
.y1a1{bottom:137.988150px;}
.y21d{bottom:138.750000px;}
.y94{bottom:138.984000px;}
.yba{bottom:139.002000px;}
.ycc{bottom:139.098000px;}
.y6e{bottom:139.500000px;}
.y112{bottom:142.234350px;}
.y4a{bottom:142.534050px;}
.yec{bottom:144.232200px;}
.y121{bottom:147.118050px;}
.y16e{bottom:148.128000px;}
.y1f6{bottom:154.638150px;}
.y22{bottom:155.924850px;}
.y1cc{bottom:156.300000px;}
.y1a0{bottom:156.588150px;}
.y21c{bottom:157.650000px;}
.y93{bottom:160.890000px;}
.yb9{bottom:160.908000px;}
.ycb{bottom:161.004000px;}
.y6d{bottom:162.000000px;}
.y16d{bottom:163.128000px;}
.y49{bottom:164.728050px;}
.y111{bottom:164.734350px;}
.yeb{bottom:166.876200px;}
.y120{bottom:169.618050px;}
.y1f5{bottom:173.238150px;}
.y21{bottom:174.374850px;}
.y19f{bottom:175.188150px;}
.y1cb{bottom:175.200000px;}
.y21b{bottom:176.550000px;}
.y16c{bottom:178.128000px;}
.y134{bottom:181.534500px;}
.y92{bottom:182.796000px;}
.yb8{bottom:182.814000px;}
.yca{bottom:182.910000px;}
.y6c{bottom:184.500000px;}
.y48{bottom:186.922050px;}
.yea{bottom:189.520200px;}
.y141{bottom:191.574000px;}
.y11f{bottom:192.118050px;}
.y20{bottom:192.824850px;}
.y16b{bottom:193.128000px;}
.y19e{bottom:193.788150px;}
.y1ca{bottom:194.100000px;}
.y21a{bottom:195.450000px;}
.y1f4{bottom:204.594150px;}
.y91{bottom:204.702000px;}
.yb7{bottom:204.720000px;}
.yc9{bottom:204.816000px;}
.y10f{bottom:205.111650px;}
.y6b{bottom:207.000000px;}
.y16a{bottom:208.128000px;}
.y47{bottom:209.116050px;}
.y140{bottom:211.074000px;}
.y1f{bottom:211.274850px;}
.ye9{bottom:212.164200px;}
.y19d{bottom:212.388150px;}
.y1c9{bottom:213.000000px;}
.y219{bottom:214.350000px;}
.y11e{bottom:214.618050px;}
.y169{bottom:223.128000px;}
.y10e{bottom:223.861650px;}
.y110{bottom:223.863300px;}
.y90{bottom:226.608000px;}
.yb6{bottom:226.626000px;}
.yc8{bottom:226.722000px;}
.y6a{bottom:229.500000px;}
.y1e{bottom:229.724850px;}
.y13f{bottom:230.574000px;}
.y19c{bottom:230.988150px;}
.y46{bottom:231.310050px;}
.y1c8{bottom:231.900000px;}
.y218{bottom:233.250000px;}
.ye8{bottom:234.808200px;}
.y1f3{bottom:235.200000px;}
.y11d{bottom:237.118050px;}
.y168{bottom:238.128000px;}
.y8f{bottom:248.514000px;}
.yb5{bottom:248.532000px;}
.yc7{bottom:248.628000px;}
.y1c7{bottom:250.800000px;}
.y10d{bottom:250.845150px;}
.y69{bottom:252.000000px;}
.y217{bottom:252.150000px;}
.y167{bottom:253.128000px;}
.y45{bottom:253.504050px;}
.y1d{bottom:256.679850px;}
.ye7{bottom:257.452200px;}
.y11c{bottom:259.618050px;}
.y19b{bottom:262.344150px;}
.y166{bottom:268.128000px;}
.y10c{bottom:269.595150px;}
.y1c6{bottom:269.700000px;}
.y8e{bottom:270.420000px;}
.yb4{bottom:270.438000px;}
.yc6{bottom:270.534000px;}
.y216{bottom:271.050000px;}
.y68{bottom:274.500000px;}
.y44{bottom:275.698050px;}
.y1f2{bottom:279.900000px;}
.ye6{bottom:280.096200px;}
.y11b{bottom:282.118050px;}
.y165{bottom:283.128000px;}
.y1c5{bottom:288.600000px;}
.y13e{bottom:289.074000px;}
.y215{bottom:289.950000px;}
.y8d{bottom:292.326000px;}
.yb3{bottom:292.344000px;}
.yc5{bottom:292.440000px;}
.y19a{bottom:293.166000px;}
.y109{bottom:296.578650px;}
.y10b{bottom:296.580150px;}
.y67{bottom:297.000000px;}
.y43{bottom:297.892050px;}
.y164{bottom:298.128000px;}
.y1f1{bottom:298.500000px;}
.y1c{bottom:301.079850px;}
.ye5{bottom:302.740200px;}
.y11a{bottom:304.618050px;}
.y1c4{bottom:307.500000px;}
.y13d{bottom:308.574000px;}
.y214{bottom:308.850000px;}
.y199{bottom:311.010000px;}
.y163{bottom:313.128000px;}
.y8c{bottom:314.232000px;}
.yb2{bottom:314.250000px;}
.yc4{bottom:314.346000px;}
.y108{bottom:315.328650px;}
.y10a{bottom:315.330150px;}
.y1f0{bottom:317.100000px;}
.y66{bottom:319.500000px;}
.y1b{bottom:319.529850px;}
.y42{bottom:320.086050px;}
.ye4{bottom:325.384200px;}
.y1c3{bottom:326.400000px;}
.y119{bottom:327.118050px;}
.y213{bottom:327.750000px;}
.y13c{bottom:328.074000px;}
.y162{bottom:328.128000px;}
.y1ef{bottom:335.700000px;}
.y8b{bottom:336.138000px;}
.yb1{bottom:336.156000px;}
.yc3{bottom:336.252000px;}
.y65{bottom:342.000000px;}
.y41{bottom:342.280050px;}
.y107{bottom:342.313650px;}
.y161{bottom:343.128000px;}
.y1c2{bottom:345.300000px;}
.y1a{bottom:346.481700px;}
.y212{bottom:346.650000px;}
.y13b{bottom:347.574000px;}
.ye3{bottom:348.028200px;}
.y133{bottom:348.211650px;}
.y1ee{bottom:354.300000px;}
.y198{bottom:355.710000px;}
.y8a{bottom:358.044000px;}
.yb0{bottom:358.062000px;}
.y160{bottom:358.128000px;}
.yc2{bottom:358.158000px;}
.y106{bottom:361.063650px;}
.y1c1{bottom:364.200000px;}
.y40{bottom:364.474050px;}
.y64{bottom:364.500000px;}
.y19{bottom:364.781700px;}
.y211{bottom:365.550000px;}
.y197{bottom:370.554000px;}
.ye2{bottom:370.672200px;}
.y1ed{bottom:372.900000px;}
.y15f{bottom:373.128000px;}
.y105{bottom:379.813650px;}
.y89{bottom:379.950000px;}
.yaf{bottom:379.968000px;}
.yc1{bottom:380.064000px;}
.y18{bottom:383.081700px;}
.y1c0{bottom:383.100000px;}
.y210{bottom:384.450000px;}
.y196{bottom:385.398000px;}
.y13a{bottom:386.574000px;}
.y3f{bottom:386.668050px;}
.y63{bottom:387.000000px;}
.y15e{bottom:388.128000px;}
.y117{bottom:388.275600px;}
.y22a{bottom:390.750000px;}
.y1ec{bottom:391.500000px;}
.ye1{bottom:393.316200px;}
.y104{bottom:398.563650px;}
.y195{bottom:400.242000px;}
.y17{bottom:401.381700px;}
.y88{bottom:401.856000px;}
.yae{bottom:401.874000px;}
.yc0{bottom:401.970000px;}
.y1bf{bottom:402.000000px;}
.y15d{bottom:403.128000px;}
.y20f{bottom:403.350000px;}
.y139{bottom:406.072950px;}
.y3e{bottom:408.862050px;}
.y62{bottom:409.500000px;}
.y1eb{bottom:410.100000px;}
.y116{bottom:410.775600px;}
.y194{bottom:415.086000px;}
.ye0{bottom:415.960200px;}
.y15c{bottom:418.128000px;}
.y16{bottom:419.681700px;}
.y1be{bottom:420.900000px;}
.y20e{bottom:422.250000px;}
.y87{bottom:423.762000px;}
.yad{bottom:423.780000px;}
.ybf{bottom:423.876000px;}
.y229{bottom:428.250000px;}
.y1ea{bottom:428.700000px;}
.y193{bottom:429.930000px;}
.y3d{bottom:431.056050px;}
.y61{bottom:432.000000px;}
.y15b{bottom:433.128000px;}
.y138{bottom:434.077950px;}
.y15{bottom:437.981700px;}
.y103{bottom:438.300000px;}
.ydf{bottom:438.604200px;}
.y1bd{bottom:439.800000px;}
.y20d{bottom:441.150000px;}
.y192{bottom:444.774000px;}
.y86{bottom:445.668000px;}
.yac{bottom:445.686000px;}
.ybe{bottom:445.782000px;}
.y228{bottom:447.000000px;}
.y1e9{bottom:447.300000px;}
.y15a{bottom:448.128000px;}
.y3c{bottom:453.250050px;}
.y137{bottom:453.577950px;}
.y60{bottom:454.500000px;}
.y118{bottom:456.035400px;}
.y14{bottom:456.281700px;}
.y1bc{bottom:458.700000px;}
.y191{bottom:459.618000px;}
.y20c{bottom:460.050000px;}
.yde{bottom:461.248200px;}
.y159{bottom:463.128000px;}
.y227{bottom:465.750000px;}
.y1e8{bottom:465.900000px;}
.y85{bottom:467.574000px;}
.yab{bottom:467.592000px;}
.ybd{bottom:467.688000px;}
.y190{bottom:474.462000px;}
.y13{bottom:474.581700px;}
.y3b{bottom:475.444050px;}
.y5f{bottom:477.000000px;}
.y1bb{bottom:477.600000px;}
.y158{bottom:478.128000px;}
.y115{bottom:478.275600px;}
.y20b{bottom:478.950000px;}
.y102{bottom:483.420000px;}
.ydd{bottom:483.892200px;}
.y1e7{bottom:484.500000px;}
.y18f{bottom:489.306000px;}
.y84{bottom:489.480000px;}
.yaa{bottom:489.498000px;}
.ybc{bottom:489.594000px;}
.y12{bottom:492.881700px;}
.y157{bottom:493.128000px;}
.y1ba{bottom:496.500000px;}
.y3a{bottom:497.638050px;}
.y20a{bottom:497.850000px;}
.y5e{bottom:499.500000px;}
.y114{bottom:500.775600px;}
.y1e6{bottom:503.100000px;}
.y18e{bottom:504.150000px;}
.y132{bottom:504.684150px;}
.y101{bottom:505.614000px;}
.ydc{bottom:506.536200px;}
.y156{bottom:508.128000px;}
.y11{bottom:511.181700px;}
.y83{bottom:511.386000px;}
.ya9{bottom:511.404000px;}
.y226{bottom:514.500000px;}
.y1b9{bottom:515.400000px;}
.y209{bottom:516.750000px;}
.y18d{bottom:518.994000px;}
.y39{bottom:519.832050px;}
.y1e5{bottom:521.700000px;}
.y5d{bottom:522.000000px;}
.y155{bottom:523.128000px;}
.y100{bottom:527.808000px;}
.ydb{bottom:529.180200px;}
.y136{bottom:531.577950px;}
.y82{bottom:533.292000px;}
.ya8{bottom:533.310000px;}
.y18c{bottom:533.838000px;}
.y1b8{bottom:534.300000px;}
.y208{bottom:535.650000px;}
.y10{bottom:537.986700px;}
.y154{bottom:538.128000px;}
.y1e4{bottom:540.300000px;}
.y38{bottom:542.026050px;}
.y5c{bottom:544.500000px;}
.y18b{bottom:548.682000px;}
.yff{bottom:550.002000px;}
.y135{bottom:551.077950px;}
.yda{bottom:551.824200px;}
.y153{bottom:553.128000px;}
.y1b7{bottom:553.200000px;}
.y207{bottom:554.550000px;}
.y81{bottom:555.198000px;}
.ya7{bottom:555.216000px;}
.y225{bottom:555.750000px;}
.yf{bottom:556.436700px;}
.y1e3{bottom:558.900000px;}
.y18a{bottom:563.526000px;}
.y37{bottom:564.220050px;}
.y5b{bottom:567.000000px;}
.y152{bottom:568.128000px;}
.y1b6{bottom:572.100000px;}
.yfe{bottom:572.196000px;}
.y206{bottom:573.450000px;}
.yd9{bottom:574.468200px;}
.y224{bottom:574.500000px;}
.ye{bottom:574.886700px;}
.y80{bottom:577.104000px;}
.ya6{bottom:577.122000px;}
.y1e2{bottom:577.500000px;}
.y189{bottom:578.370000px;}
.y151{bottom:583.128000px;}
.y36{bottom:586.414050px;}
.y5a{bottom:589.500000px;}
.y1b5{bottom:591.000000px;}
.y131{bottom:591.600000px;}
.y205{bottom:592.350000px;}
.y188{bottom:593.214000px;}
.y223{bottom:593.250000px;}
.yd{bottom:593.336700px;}
.yfd{bottom:594.390000px;}
.y1e1{bottom:596.100000px;}
.y150{bottom:598.128000px;}
.y7f{bottom:599.010000px;}
.ya5{bottom:599.028000px;}
.y187{bottom:608.058000px;}
.y35{bottom:608.608050px;}
.y1b4{bottom:609.900000px;}
.y204{bottom:611.250000px;}
.yc{bottom:611.786700px;}
.y59{bottom:612.000000px;}
.y14f{bottom:613.128000px;}
.y1e0{bottom:614.700000px;}
.yfc{bottom:616.584000px;}
.yd8{bottom:619.960650px;}
.y7e{bottom:620.916000px;}
.ya4{bottom:620.934000px;}
.y186{bottom:622.902000px;}
.y14e{bottom:628.128000px;}
.y1b3{bottom:628.800000px;}
.y203{bottom:630.150000px;}
.yb{bottom:630.236700px;}
.y222{bottom:630.750000px;}
.y34{bottom:630.802050px;}
.y1df{bottom:633.300000px;}
.y58{bottom:634.500000px;}
.y130{bottom:636.522000px;}
.y185{bottom:637.746000px;}
.yfb{bottom:638.778000px;}
.yd7{bottom:639.460650px;}
.y7d{bottom:642.822000px;}
.ya3{bottom:642.840000px;}
.y14d{bottom:643.128000px;}
.y1b2{bottom:647.700000px;}
.ya{bottom:648.686700px;}
.y202{bottom:649.050000px;}
.y221{bottom:649.500000px;}
.y1de{bottom:651.900000px;}
.y184{bottom:652.590000px;}
.y33{bottom:652.996050px;}
.y57{bottom:657.000000px;}
.y14c{bottom:658.128000px;}
.y12f{bottom:658.878000px;}
.yfa{bottom:660.972000px;}
.y7c{bottom:664.728000px;}
.ya2{bottom:664.746000px;}
.y1b1{bottom:666.600000px;}
.y9{bottom:667.136700px;}
.y183{bottom:667.434000px;}
.y201{bottom:667.950000px;}
.y220{bottom:668.250000px;}
.y1dd{bottom:670.500000px;}
.y14b{bottom:673.128000px;}
.y32{bottom:675.196050px;}
.yd6{bottom:675.460650px;}
.y56{bottom:679.500000px;}
.y12e{bottom:681.234000px;}
.y182{bottom:682.278000px;}
.yf9{bottom:683.166000px;}
.y1b0{bottom:685.500000px;}
.y7b{bottom:686.634000px;}
.ya1{bottom:686.652000px;}
.y200{bottom:686.850000px;}
.y21f{bottom:687.000000px;}
.y14a{bottom:688.128000px;}
.y1dc{bottom:689.100000px;}
.yd5{bottom:693.460650px;}
.y8{bottom:694.091700px;}
.y181{bottom:697.122000px;}
.y55{bottom:702.000000px;}
.y149{bottom:703.128000px;}
.y12d{bottom:703.590000px;}
.y1af{bottom:704.400000px;}
.yf8{bottom:705.360000px;}
.y1ff{bottom:705.750000px;}
.y1db{bottom:707.700000px;}
.y7a{bottom:708.540000px;}
.ya0{bottom:708.558000px;}
.y180{bottom:711.966000px;}
.y148{bottom:718.128000px;}
.y31{bottom:719.596050px;}
.y1ae{bottom:723.300000px;}
.y54{bottom:724.500000px;}
.y12c{bottom:725.946000px;}
.y1da{bottom:726.300000px;}
.y17f{bottom:726.810000px;}
.yf7{bottom:727.554000px;}
.y79{bottom:730.446000px;}
.y9f{bottom:730.464000px;}
.y147{bottom:733.128000px;}
.y30{bottom:738.046050px;}
.y7{bottom:739.677450px;}
.y17e{bottom:741.654000px;}
.y1ad{bottom:742.200000px;}
.y1fe{bottom:743.250000px;}
.y1d9{bottom:744.900000px;}
.y96{bottom:747.000000px;}
.yd4{bottom:747.460650px;}
.y146{bottom:748.128000px;}
.y12b{bottom:748.302000px;}
.yf6{bottom:749.748000px;}
.y78{bottom:752.352000px;}
.y9e{bottom:752.370000px;}
.y17d{bottom:756.498000px;}
.y1ac{bottom:761.100000px;}
.y6{bottom:761.877450px;}
.y1fd{bottom:762.000000px;}
.y145{bottom:763.128000px;}
.y1d8{bottom:763.500000px;}
.y2f{bottom:765.000000px;}
.y53{bottom:769.500000px;}
.y12a{bottom:770.658000px;}
.y17c{bottom:771.342000px;}
.yf5{bottom:771.942000px;}
.y77{bottom:774.258000px;}
.y9d{bottom:774.276000px;}
.y144{bottom:778.128000px;}
.y1ab{bottom:780.000000px;}
.y1fc{bottom:780.750000px;}
.y1d7{bottom:782.100000px;}
.y2e{bottom:783.450000px;}
.y17b{bottom:786.186000px;}
.y52{bottom:792.000000px;}
.y129{bottom:793.014000px;}
.y143{bottom:793.128000px;}
.yf4{bottom:794.136000px;}
.y76{bottom:796.164000px;}
.y9c{bottom:796.182000px;}
.y1aa{bottom:798.900000px;}
.y1fb{bottom:799.500000px;}
.y1d6{bottom:800.700000px;}
.y17a{bottom:801.030000px;}
.yd3{bottom:801.460650px;}
.y2d{bottom:801.900000px;}
.y51{bottom:814.500000px;}
.y128{bottom:815.370000px;}
.y179{bottom:815.886000px;}
.yf3{bottom:816.330000px;}
.y1a9{bottom:817.800000px;}
.y75{bottom:818.070000px;}
.y9b{bottom:818.088000px;}
.y1fa{bottom:818.250000px;}
.y1d5{bottom:819.300000px;}
.yd2{bottom:819.460650px;}
.y2c{bottom:820.350000px;}
.y5{bottom:828.723300px;}
.y178{bottom:830.730000px;}
.y1a8{bottom:836.700000px;}
.y50{bottom:837.000000px;}
.yd1{bottom:837.460650px;}
.y127{bottom:837.726000px;}
.y1d4{bottom:837.900000px;}
.yf2{bottom:838.524000px;}
.y2b{bottom:838.800000px;}
.y74{bottom:839.976000px;}
.y9a{bottom:839.994000px;}
.y177{bottom:845.574000px;}
.yd0{bottom:855.460650px;}
.y1a7{bottom:855.600000px;}
.y1f9{bottom:855.750000px;}
.y1d3{bottom:856.500000px;}
.y2a{bottom:857.250000px;}
.y4{bottom:858.423300px;}
.y4f{bottom:859.500000px;}
.y126{bottom:860.082000px;}
.y176{bottom:860.418000px;}
.yf1{bottom:860.718000px;}
.y73{bottom:861.882000px;}
.y99{bottom:861.900000px;}
.y1a6{bottom:874.500000px;}
.y1d2{bottom:875.100000px;}
.y175{bottom:875.262000px;}
.y29{bottom:875.700000px;}
.y4e{bottom:882.000000px;}
.y125{bottom:882.438000px;}
.yf0{bottom:882.912000px;}
.y72{bottom:883.788000px;}
.y98{bottom:883.800000px;}
.y3{bottom:888.123300px;}
.yce{bottom:888.460650px;}
.y174{bottom:890.118000px;}
.ycf{bottom:891.460650px;}
.y1a5{bottom:893.250000px;}
.y1d1{bottom:893.700000px;}
.y28{bottom:894.150000px;}
.y4d{bottom:904.500000px;}
.y124{bottom:904.794000px;}
.y173{bottom:904.962000px;}
.yef{bottom:905.106000px;}
.y71{bottom:905.694000px;}
.y97{bottom:905.700000px;}
.y1a4{bottom:912.000000px;}
.y1d0{bottom:912.300000px;}
.y27{bottom:912.600000px;}
.y172{bottom:919.806000px;}
.y4c{bottom:927.000000px;}
.y123{bottom:927.150000px;}
.yee{bottom:927.300000px;}
.y70{bottom:927.600000px;}
.y1a3{bottom:930.750000px;}
.y1cf{bottom:930.900000px;}
.y26{bottom:931.050000px;}
.y171{bottom:934.650000px;}
.y2{bottom:940.023150px;}
.h10{height:33.117188px;}
.h12{height:37.256836px;}
.h2{height:39.326660px;}
.he{height:39.888000px;}
.ha{height:39.990234px;}
.hf{height:40.757812px;}
.h1{height:41.396484px;}
.hd{height:41.400684px;}
.hb{height:41.402484px;}
.h4{height:42.000000px;}
.h11{height:45.852539px;}
.h5{height:49.675781px;}
.h9{height:49.860000px;}
.h6{height:50.947266px;}
.h8{height:58.989047px;}
.h7{height:61.136719px;}
.h3{height:82.792969px;}
.hc{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.381950px;}
.x6{left:97.260000px;}
.x2{left:112.500000px;}
.xa{left:118.827750px;}
.x8{left:127.381950px;}
.x5{left:135.000000px;}
.x3{left:142.263750px;}
.xc{left:155.019600px;}
.xd{left:189.503100px;}
.x10{left:197.657700px;}
.x12{left:242.477700px;}
.xb{left:306.777750px;}
.xf{left:317.822700px;}
.x11{left:355.082700px;}
.x13{left:372.300300px;}
.xe{left:399.788100px;}
.x9{left:499.500000px;}
.x1{left:635.390550px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-12.800000pt;}
.v4{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.525333pt;}
.ls25{letter-spacing:-2.496000pt;}
.ls30{letter-spacing:-2.112000pt;}
.ls3e{letter-spacing:-1.760000pt;}
.ls3c{letter-spacing:-1.664000pt;}
.ls31{letter-spacing:-1.024000pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls3f{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls24{letter-spacing:0.768000pt;}
.ls26{letter-spacing:0.832000pt;}
.ls11{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.088000pt;}
.ls33{letter-spacing:1.152000pt;}
.ls2c{letter-spacing:1.408000pt;}
.ls2d{letter-spacing:2.195200pt;}
.ls0{letter-spacing:2.533333pt;}
.ls3b{letter-spacing:2.598400pt;}
.ls35{letter-spacing:2.602667pt;}
.ls37{letter-spacing:2.628267pt;}
.ls36{letter-spacing:2.645333pt;}
.ls2e{letter-spacing:2.816000pt;}
.ls34{letter-spacing:3.029333pt;}
.ls27{letter-spacing:3.475200pt;}
.ls32{letter-spacing:3.724800pt;}
.ls5{letter-spacing:4.010667pt;}
.ls20{letter-spacing:4.089600pt;}
.ls7{letter-spacing:4.181333pt;}
.ls39{letter-spacing:4.224000pt;}
.ls1a{letter-spacing:6.464000pt;}
.ls12{letter-spacing:6.560000pt;}
.ls3d{letter-spacing:7.200000pt;}
.ls3{letter-spacing:7.520000pt;}
.ls2f{letter-spacing:8.192000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls2a{letter-spacing:256.053333pt;}
.ws2{word-spacing:-22.506667pt;}
.ws71{word-spacing:-19.072000pt;}
.ws72{word-spacing:-18.752000pt;}
.ws8b{word-spacing:-18.624000pt;}
.wsbc{word-spacing:-18.304000pt;}
.ws38{word-spacing:-17.984000pt;}
.ws7c{word-spacing:-17.856000pt;}
.wsb4{word-spacing:-17.664000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws70{word-spacing:-16.768000pt;}
.ws66{word-spacing:-16.576000pt;}
.ws3a{word-spacing:-16.384000pt;}
.ws94{word-spacing:-16.128000pt;}
.wsa3{word-spacing:-15.872000pt;}
.ws39{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.616000pt;}
.ws9b{word-spacing:-14.986667pt;}
.wscc{word-spacing:-13.226667pt;}
.wsa2{word-spacing:-12.588800pt;}
.wsc2{word-spacing:-11.989333pt;}
.wsc8{word-spacing:-11.776000pt;}
.wsc1{word-spacing:-10.538667pt;}
.wscb{word-spacing:-10.490667pt;}
.wsbd{word-spacing:-7.520000pt;}
.wsca{word-spacing:-7.200000pt;}
.wsc3{word-spacing:-4.224000pt;}
.ws9{word-spacing:-4.010667pt;}
.wsab{word-spacing:-3.776000pt;}
.ws5f{word-spacing:-1.856000pt;}
.ws65{word-spacing:-1.792000pt;}
.ws93{word-spacing:-1.728000pt;}
.ws7b{word-spacing:-1.600000pt;}
.ws60{word-spacing:-1.536000pt;}
.ws74{word-spacing:-1.088000pt;}
.ws76{word-spacing:-0.960000pt;}
.ws78{word-spacing:-0.896000pt;}
.ws90{word-spacing:-0.832000pt;}
.ws73{word-spacing:-0.768000pt;}
.ws92{word-spacing:-0.704000pt;}
.ws75{word-spacing:-0.576000pt;}
.ws8f{word-spacing:-0.512000pt;}
.ws7a{word-spacing:-0.384000pt;}
.ws6e{word-spacing:-0.320000pt;}
.wse{word-spacing:-0.266667pt;}
.wsc7{word-spacing:-0.213333pt;}
.ws8{word-spacing:-0.160000pt;}
.wsb1{word-spacing:-0.064000pt;}
.wsae{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws91{word-spacing:0.064000pt;}
.ws79{word-spacing:0.128000pt;}
.ws40{word-spacing:0.192000pt;}
.wsc6{word-spacing:0.213333pt;}
.wsce{word-spacing:0.266667pt;}
.ws43{word-spacing:0.320000pt;}
.ws1e{word-spacing:0.448000pt;}
.ws67{word-spacing:0.512000pt;}
.wscd{word-spacing:0.533333pt;}
.ws30{word-spacing:0.576000pt;}
.ws6b{word-spacing:0.640000pt;}
.ws34{word-spacing:0.704000pt;}
.ws35{word-spacing:0.768000pt;}
.ws46{word-spacing:0.832000pt;}
.ws4e{word-spacing:0.896000pt;}
.wsc0{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.024000pt;}
.ws22{word-spacing:1.088000pt;}
.ws8d{word-spacing:1.216000pt;}
.wsc9{word-spacing:1.280000pt;}
.ws8c{word-spacing:1.344000pt;}
.ws55{word-spacing:1.408000pt;}
.ws51{word-spacing:1.472000pt;}
.wsf{word-spacing:1.536000pt;}
.ws5{word-spacing:1.600000pt;}
.ws9d{word-spacing:1.664000pt;}
.ws36{word-spacing:1.728000pt;}
.ws58{word-spacing:1.792000pt;}
.ws9f{word-spacing:1.856000pt;}
.ws49{word-spacing:1.920000pt;}
.ws8a{word-spacing:1.984000pt;}
.wsa6{word-spacing:2.048000pt;}
.ws20{word-spacing:2.112000pt;}
.ws84{word-spacing:2.133333pt;}
.ws42{word-spacing:2.176000pt;}
.ws7d{word-spacing:2.240000pt;}
.wsa7{word-spacing:2.304000pt;}
.ws96{word-spacing:2.368000pt;}
.ws5a{word-spacing:2.432000pt;}
.ws27{word-spacing:2.496000pt;}
.ws63{word-spacing:2.560000pt;}
.ws62{word-spacing:2.624000pt;}
.wsc5{word-spacing:2.645333pt;}
.ws41{word-spacing:2.688000pt;}
.ws6d{word-spacing:2.752000pt;}
.ws81{word-spacing:2.816000pt;}
.ws4a{word-spacing:2.880000pt;}
.wsd{word-spacing:2.944000pt;}
.wsc4{word-spacing:2.986667pt;}
.ws10{word-spacing:3.008000pt;}
.ws3e{word-spacing:3.072000pt;}
.ws48{word-spacing:3.136000pt;}
.ws98{word-spacing:3.200000pt;}
.ws50{word-spacing:3.264000pt;}
.wsb{word-spacing:3.306667pt;}
.ws13{word-spacing:3.328000pt;}
.ws16{word-spacing:3.392000pt;}
.wsa5{word-spacing:3.456000pt;}
.ws6c{word-spacing:3.520000pt;}
.ws9c{word-spacing:3.584000pt;}
.wsb0{word-spacing:3.648000pt;}
.ws9e{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws32{word-spacing:3.776000pt;}
.ws2b{word-spacing:3.840000pt;}
.ws68{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws31{word-spacing:4.032000pt;}
.ws2e{word-spacing:4.096000pt;}
.wsa4{word-spacing:4.160000pt;}
.ws54{word-spacing:4.224000pt;}
.ws2a{word-spacing:4.352000pt;}
.ws53{word-spacing:4.416000pt;}
.ws1a{word-spacing:4.480000pt;}
.ws61{word-spacing:4.544000pt;}
.wsa9{word-spacing:4.608000pt;}
.ws80{word-spacing:4.672000pt;}
.wsaf{word-spacing:4.736000pt;}
.ws6f{word-spacing:4.800000pt;}
.ws47{word-spacing:4.864000pt;}
.ws1b{word-spacing:4.928000pt;}
.wsa1{word-spacing:4.992000pt;}
.ws12{word-spacing:5.056000pt;}
.wsac{word-spacing:5.120000pt;}
.ws18{word-spacing:5.184000pt;}
.ws44{word-spacing:5.248000pt;}
.ws11{word-spacing:5.312000pt;}
.ws19{word-spacing:5.376000pt;}
.ws95{word-spacing:5.440000pt;}
.ws52{word-spacing:5.504000pt;}
.ws77{word-spacing:5.568000pt;}
.ws14{word-spacing:5.632000pt;}
.ws3f{word-spacing:5.696000pt;}
.ws7e{word-spacing:5.760000pt;}
.ws29{word-spacing:5.824000pt;}
.ws28{word-spacing:5.888000pt;}
.ws83{word-spacing:5.952000pt;}
.ws4f{word-spacing:6.016000pt;}
.wsaa{word-spacing:6.080000pt;}
.ws1c{word-spacing:6.144000pt;}
.wsbf{word-spacing:6.208000pt;}
.ws5c{word-spacing:6.272000pt;}
.ws69{word-spacing:6.336000pt;}
.ws7f{word-spacing:6.400000pt;}
.ws23{word-spacing:6.464000pt;}
.wsb5{word-spacing:6.528000pt;}
.ws2c{word-spacing:6.592000pt;}
.ws97{word-spacing:6.656000pt;}
.ws21{word-spacing:6.720000pt;}
.wsbe{word-spacing:6.784000pt;}
.ws5b{word-spacing:6.848000pt;}
.ws26{word-spacing:6.912000pt;}
.ws24{word-spacing:6.976000pt;}
.wsb2{word-spacing:7.040000pt;}
.ws6a{word-spacing:7.168000pt;}
.wsa0{word-spacing:7.232000pt;}
.ws5e{word-spacing:7.360000pt;}
.ws45{word-spacing:7.424000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws64{word-spacing:7.488000pt;}
.ws3b{word-spacing:7.552000pt;}
.ws9a{word-spacing:7.616000pt;}
.ws37{word-spacing:7.680000pt;}
.ws8e{word-spacing:7.744000pt;}
.ws4b{word-spacing:7.808000pt;}
.ws25{word-spacing:7.872000pt;}
.ws5d{word-spacing:7.936000pt;}
.wsb6{word-spacing:8.000000pt;}
.ws82{word-spacing:8.064000pt;}
.ws1d{word-spacing:8.128000pt;}
.wsb3{word-spacing:8.192000pt;}
.ws57{word-spacing:8.256000pt;}
.wsad{word-spacing:8.320000pt;}
.ws59{word-spacing:8.384000pt;}
.ws2f{word-spacing:8.448000pt;}
.ws2d{word-spacing:8.512000pt;}
.ws4d{word-spacing:8.576000pt;}
.ws4c{word-spacing:8.640000pt;}
.wsa8{word-spacing:8.768000pt;}
.ws3c{word-spacing:8.896000pt;}
.ws15{word-spacing:8.960000pt;}
.ws17{word-spacing:9.024000pt;}
.ws33{word-spacing:9.152000pt;}
.wsa{word-spacing:9.280000pt;}
.ws56{word-spacing:9.344000pt;}
.ws99{word-spacing:11.392000pt;}
.wsb8{word-spacing:22.346667pt;}
.wsb7{word-spacing:56.426667pt;}
.wsc{word-spacing:65.013333pt;}
.wsba{word-spacing:117.706667pt;}
.ws88{word-spacing:146.240000pt;}
.wsbb{word-spacing:177.013333pt;}
.ws87{word-spacing:229.013333pt;}
.ws86{word-spacing:253.440000pt;}
.wsb9{word-spacing:299.680000pt;}
.ws89{word-spacing:333.493333pt;}
.ws85{word-spacing:797.760000pt;}
._0{margin-left:-835.898667pt;}
._35{margin-left:-176.997333pt;}
._c{margin-left:-60.858667pt;}
._d{margin-left:-32.640000pt;}
._15{margin-left:-13.189333pt;}
._8{margin-left:-10.602667pt;}
._13{margin-left:-8.539733pt;}
._6{margin-left:-6.986667pt;}
._1{margin-left:-5.301333pt;}
._12{margin-left:-4.085333pt;}
._4{margin-left:-3.082667pt;}
._7{margin-left:-2.037333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:2.720000pt;}
._9{width:3.714133pt;}
._e{width:4.612267pt;}
._14{width:6.005333pt;}
._f{width:7.022933pt;}
._b{width:8.261333pt;}
._27{width:11.360000pt;}
._36{width:12.551467pt;}
._31{width:19.738667pt;}
._10{width:29.324800pt;}
._11{width:31.872000pt;}
._18{width:38.613333pt;}
._2e{width:62.186667pt;}
._25{width:63.978667pt;}
._2f{width:83.018667pt;}
._1e{width:84.320000pt;}
._1a{width:87.114667pt;}
._26{width:91.826133pt;}
._30{width:94.405333pt;}
._1d{width:113.600000pt;}
._24{width:118.129067pt;}
._32{width:152.901333pt;}
._a{width:179.168000pt;}
._33{width:181.973333pt;}
._1f{width:184.160000pt;}
._28{width:193.546667pt;}
._21{width:197.333333pt;}
._34{width:203.306667pt;}
._19{width:209.877333pt;}
._2c{width:213.973333pt;}
._29{width:214.880000pt;}
._2a{width:229.333333pt;}
._2d{width:235.338667pt;}
._22{width:270.880000pt;}
._2b{width:273.870933pt;}
._1b{width:278.400000pt;}
._23{width:326.346667pt;}
._1c{width:344.106667pt;}
._20{width:360.837333pt;}
._17{width:558.133333pt;}
._16{width:569.706667pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6f{bottom:104.000000pt;}
.y95{bottom:104.069333pt;}
.ybb{bottom:104.085333pt;}
.ycd{bottom:104.170667pt;}
.y1f8{bottom:104.389467pt;}
.y170{bottom:105.002667pt;}
.y1ce{bottom:105.333333pt;}
.y24{bottom:105.799867pt;}
.y1a2{bottom:106.122800pt;}
.y113{bottom:106.430533pt;}
.y21e{bottom:106.533333pt;}
.y4b{bottom:106.968933pt;}
.yed{bottom:108.078400pt;}
.y122{bottom:110.771600pt;}
.y142{bottom:115.621333pt;}
.y16f{bottom:118.336000pt;}
.y1f7{bottom:120.922800pt;}
.y1cd{bottom:122.133333pt;}
.y23{bottom:122.199867pt;}
.y1a1{bottom:122.656133pt;}
.y21d{bottom:123.333333pt;}
.y94{bottom:123.541333pt;}
.yba{bottom:123.557333pt;}
.ycc{bottom:123.642667pt;}
.y6e{bottom:124.000000pt;}
.y112{bottom:126.430533pt;}
.y4a{bottom:126.696933pt;}
.yec{bottom:128.206400pt;}
.y121{bottom:130.771600pt;}
.y16e{bottom:131.669333pt;}
.y1f6{bottom:137.456133pt;}
.y22{bottom:138.599867pt;}
.y1cc{bottom:138.933333pt;}
.y1a0{bottom:139.189467pt;}
.y21c{bottom:140.133333pt;}
.y93{bottom:143.013333pt;}
.yb9{bottom:143.029333pt;}
.ycb{bottom:143.114667pt;}
.y6d{bottom:144.000000pt;}
.y16d{bottom:145.002667pt;}
.y49{bottom:146.424933pt;}
.y111{bottom:146.430533pt;}
.yeb{bottom:148.334400pt;}
.y120{bottom:150.771600pt;}
.y1f5{bottom:153.989467pt;}
.y21{bottom:154.999867pt;}
.y19f{bottom:155.722800pt;}
.y1cb{bottom:155.733333pt;}
.y21b{bottom:156.933333pt;}
.y16c{bottom:158.336000pt;}
.y134{bottom:161.364000pt;}
.y92{bottom:162.485333pt;}
.yb8{bottom:162.501333pt;}
.yca{bottom:162.586667pt;}
.y6c{bottom:164.000000pt;}
.y48{bottom:166.152933pt;}
.yea{bottom:168.462400pt;}
.y141{bottom:170.288000pt;}
.y11f{bottom:170.771600pt;}
.y20{bottom:171.399867pt;}
.y16b{bottom:171.669333pt;}
.y19e{bottom:172.256133pt;}
.y1ca{bottom:172.533333pt;}
.y21a{bottom:173.733333pt;}
.y1f4{bottom:181.861467pt;}
.y91{bottom:181.957333pt;}
.yb7{bottom:181.973333pt;}
.yc9{bottom:182.058667pt;}
.y10f{bottom:182.321467pt;}
.y6b{bottom:184.000000pt;}
.y16a{bottom:185.002667pt;}
.y47{bottom:185.880933pt;}
.y140{bottom:187.621333pt;}
.y1f{bottom:187.799867pt;}
.ye9{bottom:188.590400pt;}
.y19d{bottom:188.789467pt;}
.y1c9{bottom:189.333333pt;}
.y219{bottom:190.533333pt;}
.y11e{bottom:190.771600pt;}
.y169{bottom:198.336000pt;}
.y10e{bottom:198.988133pt;}
.y110{bottom:198.989600pt;}
.y90{bottom:201.429333pt;}
.yb6{bottom:201.445333pt;}
.yc8{bottom:201.530667pt;}
.y6a{bottom:204.000000pt;}
.y1e{bottom:204.199867pt;}
.y13f{bottom:204.954667pt;}
.y19c{bottom:205.322800pt;}
.y46{bottom:205.608933pt;}
.y1c8{bottom:206.133333pt;}
.y218{bottom:207.333333pt;}
.ye8{bottom:208.718400pt;}
.y1f3{bottom:209.066667pt;}
.y11d{bottom:210.771600pt;}
.y168{bottom:211.669333pt;}
.y8f{bottom:220.901333pt;}
.yb5{bottom:220.917333pt;}
.yc7{bottom:221.002667pt;}
.y1c7{bottom:222.933333pt;}
.y10d{bottom:222.973467pt;}
.y69{bottom:224.000000pt;}
.y217{bottom:224.133333pt;}
.y167{bottom:225.002667pt;}
.y45{bottom:225.336933pt;}
.y1d{bottom:228.159867pt;}
.ye7{bottom:228.846400pt;}
.y11c{bottom:230.771600pt;}
.y19b{bottom:233.194800pt;}
.y166{bottom:238.336000pt;}
.y10c{bottom:239.640133pt;}
.y1c6{bottom:239.733333pt;}
.y8e{bottom:240.373333pt;}
.yb4{bottom:240.389333pt;}
.yc6{bottom:240.474667pt;}
.y216{bottom:240.933333pt;}
.y68{bottom:244.000000pt;}
.y44{bottom:245.064933pt;}
.y1f2{bottom:248.800000pt;}
.ye6{bottom:248.974400pt;}
.y11b{bottom:250.771600pt;}
.y165{bottom:251.669333pt;}
.y1c5{bottom:256.533333pt;}
.y13e{bottom:256.954667pt;}
.y215{bottom:257.733333pt;}
.y8d{bottom:259.845333pt;}
.yb3{bottom:259.861333pt;}
.yc5{bottom:259.946667pt;}
.y19a{bottom:260.592000pt;}
.y109{bottom:263.625467pt;}
.y10b{bottom:263.626800pt;}
.y67{bottom:264.000000pt;}
.y43{bottom:264.792933pt;}
.y164{bottom:265.002667pt;}
.y1f1{bottom:265.333333pt;}
.y1c{bottom:267.626533pt;}
.ye5{bottom:269.102400pt;}
.y11a{bottom:270.771600pt;}
.y1c4{bottom:273.333333pt;}
.y13d{bottom:274.288000pt;}
.y214{bottom:274.533333pt;}
.y199{bottom:276.453333pt;}
.y163{bottom:278.336000pt;}
.y8c{bottom:279.317333pt;}
.yb2{bottom:279.333333pt;}
.yc4{bottom:279.418667pt;}
.y108{bottom:280.292133pt;}
.y10a{bottom:280.293467pt;}
.y1f0{bottom:281.866667pt;}
.y66{bottom:284.000000pt;}
.y1b{bottom:284.026533pt;}
.y42{bottom:284.520933pt;}
.ye4{bottom:289.230400pt;}
.y1c3{bottom:290.133333pt;}
.y119{bottom:290.771600pt;}
.y213{bottom:291.333333pt;}
.y13c{bottom:291.621333pt;}
.y162{bottom:291.669333pt;}
.y1ef{bottom:298.400000pt;}
.y8b{bottom:298.789333pt;}
.yb1{bottom:298.805333pt;}
.yc3{bottom:298.890667pt;}
.y65{bottom:304.000000pt;}
.y41{bottom:304.248933pt;}
.y107{bottom:304.278800pt;}
.y161{bottom:305.002667pt;}
.y1c2{bottom:306.933333pt;}
.y1a{bottom:307.983733pt;}
.y212{bottom:308.133333pt;}
.y13b{bottom:308.954667pt;}
.ye3{bottom:309.358400pt;}
.y133{bottom:309.521467pt;}
.y1ee{bottom:314.933333pt;}
.y198{bottom:316.186667pt;}
.y8a{bottom:318.261333pt;}
.yb0{bottom:318.277333pt;}
.y160{bottom:318.336000pt;}
.yc2{bottom:318.362667pt;}
.y106{bottom:320.945467pt;}
.y1c1{bottom:323.733333pt;}
.y40{bottom:323.976933pt;}
.y64{bottom:324.000000pt;}
.y19{bottom:324.250400pt;}
.y211{bottom:324.933333pt;}
.y197{bottom:329.381333pt;}
.ye2{bottom:329.486400pt;}
.y1ed{bottom:331.466667pt;}
.y15f{bottom:331.669333pt;}
.y105{bottom:337.612133pt;}
.y89{bottom:337.733333pt;}
.yaf{bottom:337.749333pt;}
.yc1{bottom:337.834667pt;}
.y18{bottom:340.517067pt;}
.y1c0{bottom:340.533333pt;}
.y210{bottom:341.733333pt;}
.y196{bottom:342.576000pt;}
.y13a{bottom:343.621333pt;}
.y3f{bottom:343.704933pt;}
.y63{bottom:344.000000pt;}
.y15e{bottom:345.002667pt;}
.y117{bottom:345.133867pt;}
.y22a{bottom:347.333333pt;}
.y1ec{bottom:348.000000pt;}
.ye1{bottom:349.614400pt;}
.y104{bottom:354.278800pt;}
.y195{bottom:355.770667pt;}
.y17{bottom:356.783733pt;}
.y88{bottom:357.205333pt;}
.yae{bottom:357.221333pt;}
.yc0{bottom:357.306667pt;}
.y1bf{bottom:357.333333pt;}
.y15d{bottom:358.336000pt;}
.y20f{bottom:358.533333pt;}
.y139{bottom:360.953733pt;}
.y3e{bottom:363.432933pt;}
.y62{bottom:364.000000pt;}
.y1eb{bottom:364.533333pt;}
.y116{bottom:365.133867pt;}
.y194{bottom:368.965333pt;}
.ye0{bottom:369.742400pt;}
.y15c{bottom:371.669333pt;}
.y16{bottom:373.050400pt;}
.y1be{bottom:374.133333pt;}
.y20e{bottom:375.333333pt;}
.y87{bottom:376.677333pt;}
.yad{bottom:376.693333pt;}
.ybf{bottom:376.778667pt;}
.y229{bottom:380.666667pt;}
.y1ea{bottom:381.066667pt;}
.y193{bottom:382.160000pt;}
.y3d{bottom:383.160933pt;}
.y61{bottom:384.000000pt;}
.y15b{bottom:385.002667pt;}
.y138{bottom:385.847067pt;}
.y15{bottom:389.317067pt;}
.y103{bottom:389.600000pt;}
.ydf{bottom:389.870400pt;}
.y1bd{bottom:390.933333pt;}
.y20d{bottom:392.133333pt;}
.y192{bottom:395.354667pt;}
.y86{bottom:396.149333pt;}
.yac{bottom:396.165333pt;}
.ybe{bottom:396.250667pt;}
.y228{bottom:397.333333pt;}
.y1e9{bottom:397.600000pt;}
.y15a{bottom:398.336000pt;}
.y3c{bottom:402.888933pt;}
.y137{bottom:403.180400pt;}
.y60{bottom:404.000000pt;}
.y118{bottom:405.364800pt;}
.y14{bottom:405.583733pt;}
.y1bc{bottom:407.733333pt;}
.y191{bottom:408.549333pt;}
.y20c{bottom:408.933333pt;}
.yde{bottom:409.998400pt;}
.y159{bottom:411.669333pt;}
.y227{bottom:414.000000pt;}
.y1e8{bottom:414.133333pt;}
.y85{bottom:415.621333pt;}
.yab{bottom:415.637333pt;}
.ybd{bottom:415.722667pt;}
.y190{bottom:421.744000pt;}
.y13{bottom:421.850400pt;}
.y3b{bottom:422.616933pt;}
.y5f{bottom:424.000000pt;}
.y1bb{bottom:424.533333pt;}
.y158{bottom:425.002667pt;}
.y115{bottom:425.133867pt;}
.y20b{bottom:425.733333pt;}
.y102{bottom:429.706667pt;}
.ydd{bottom:430.126400pt;}
.y1e7{bottom:430.666667pt;}
.y18f{bottom:434.938667pt;}
.y84{bottom:435.093333pt;}
.yaa{bottom:435.109333pt;}
.ybc{bottom:435.194667pt;}
.y12{bottom:438.117067pt;}
.y157{bottom:438.336000pt;}
.y1ba{bottom:441.333333pt;}
.y3a{bottom:442.344933pt;}
.y20a{bottom:442.533333pt;}
.y5e{bottom:444.000000pt;}
.y114{bottom:445.133867pt;}
.y1e6{bottom:447.200000pt;}
.y18e{bottom:448.133333pt;}
.y132{bottom:448.608133pt;}
.y101{bottom:449.434667pt;}
.ydc{bottom:450.254400pt;}
.y156{bottom:451.669333pt;}
.y11{bottom:454.383733pt;}
.y83{bottom:454.565333pt;}
.ya9{bottom:454.581333pt;}
.y226{bottom:457.333333pt;}
.y1b9{bottom:458.133333pt;}
.y209{bottom:459.333333pt;}
.y18d{bottom:461.328000pt;}
.y39{bottom:462.072933pt;}
.y1e5{bottom:463.733333pt;}
.y5d{bottom:464.000000pt;}
.y155{bottom:465.002667pt;}
.y100{bottom:469.162667pt;}
.ydb{bottom:470.382400pt;}
.y136{bottom:472.513733pt;}
.y82{bottom:474.037333pt;}
.ya8{bottom:474.053333pt;}
.y18c{bottom:474.522667pt;}
.y1b8{bottom:474.933333pt;}
.y208{bottom:476.133333pt;}
.y10{bottom:478.210400pt;}
.y154{bottom:478.336000pt;}
.y1e4{bottom:480.266667pt;}
.y38{bottom:481.800933pt;}
.y5c{bottom:484.000000pt;}
.y18b{bottom:487.717333pt;}
.yff{bottom:488.890667pt;}
.y135{bottom:489.847067pt;}
.yda{bottom:490.510400pt;}
.y153{bottom:491.669333pt;}
.y1b7{bottom:491.733333pt;}
.y207{bottom:492.933333pt;}
.y81{bottom:493.509333pt;}
.ya7{bottom:493.525333pt;}
.y225{bottom:494.000000pt;}
.yf{bottom:494.610400pt;}
.y1e3{bottom:496.800000pt;}
.y18a{bottom:500.912000pt;}
.y37{bottom:501.528933pt;}
.y5b{bottom:504.000000pt;}
.y152{bottom:505.002667pt;}
.y1b6{bottom:508.533333pt;}
.yfe{bottom:508.618667pt;}
.y206{bottom:509.733333pt;}
.yd9{bottom:510.638400pt;}
.y224{bottom:510.666667pt;}
.ye{bottom:511.010400pt;}
.y80{bottom:512.981333pt;}
.ya6{bottom:512.997333pt;}
.y1e2{bottom:513.333333pt;}
.y189{bottom:514.106667pt;}
.y151{bottom:518.336000pt;}
.y36{bottom:521.256933pt;}
.y5a{bottom:524.000000pt;}
.y1b5{bottom:525.333333pt;}
.y131{bottom:525.866667pt;}
.y205{bottom:526.533333pt;}
.y188{bottom:527.301333pt;}
.y223{bottom:527.333333pt;}
.yd{bottom:527.410400pt;}
.yfd{bottom:528.346667pt;}
.y1e1{bottom:529.866667pt;}
.y150{bottom:531.669333pt;}
.y7f{bottom:532.453333pt;}
.ya5{bottom:532.469333pt;}
.y187{bottom:540.496000pt;}
.y35{bottom:540.984933pt;}
.y1b4{bottom:542.133333pt;}
.y204{bottom:543.333333pt;}
.yc{bottom:543.810400pt;}
.y59{bottom:544.000000pt;}
.y14f{bottom:545.002667pt;}
.y1e0{bottom:546.400000pt;}
.yfc{bottom:548.074667pt;}
.yd8{bottom:551.076133pt;}
.y7e{bottom:551.925333pt;}
.ya4{bottom:551.941333pt;}
.y186{bottom:553.690667pt;}
.y14e{bottom:558.336000pt;}
.y1b3{bottom:558.933333pt;}
.y203{bottom:560.133333pt;}
.yb{bottom:560.210400pt;}
.y222{bottom:560.666667pt;}
.y34{bottom:560.712933pt;}
.y1df{bottom:562.933333pt;}
.y58{bottom:564.000000pt;}
.y130{bottom:565.797333pt;}
.y185{bottom:566.885333pt;}
.yfb{bottom:567.802667pt;}
.yd7{bottom:568.409467pt;}
.y7d{bottom:571.397333pt;}
.ya3{bottom:571.413333pt;}
.y14d{bottom:571.669333pt;}
.y1b2{bottom:575.733333pt;}
.ya{bottom:576.610400pt;}
.y202{bottom:576.933333pt;}
.y221{bottom:577.333333pt;}
.y1de{bottom:579.466667pt;}
.y184{bottom:580.080000pt;}
.y33{bottom:580.440933pt;}
.y57{bottom:584.000000pt;}
.y14c{bottom:585.002667pt;}
.y12f{bottom:585.669333pt;}
.yfa{bottom:587.530667pt;}
.y7c{bottom:590.869333pt;}
.ya2{bottom:590.885333pt;}
.y1b1{bottom:592.533333pt;}
.y9{bottom:593.010400pt;}
.y183{bottom:593.274667pt;}
.y201{bottom:593.733333pt;}
.y220{bottom:594.000000pt;}
.y1dd{bottom:596.000000pt;}
.y14b{bottom:598.336000pt;}
.y32{bottom:600.174267pt;}
.yd6{bottom:600.409467pt;}
.y56{bottom:604.000000pt;}
.y12e{bottom:605.541333pt;}
.y182{bottom:606.469333pt;}
.yf9{bottom:607.258667pt;}
.y1b0{bottom:609.333333pt;}
.y7b{bottom:610.341333pt;}
.ya1{bottom:610.357333pt;}
.y200{bottom:610.533333pt;}
.y21f{bottom:610.666667pt;}
.y14a{bottom:611.669333pt;}
.y1dc{bottom:612.533333pt;}
.yd5{bottom:616.409467pt;}
.y8{bottom:616.970400pt;}
.y181{bottom:619.664000pt;}
.y55{bottom:624.000000pt;}
.y149{bottom:625.002667pt;}
.y12d{bottom:625.413333pt;}
.y1af{bottom:626.133333pt;}
.yf8{bottom:626.986667pt;}
.y1ff{bottom:627.333333pt;}
.y1db{bottom:629.066667pt;}
.y7a{bottom:629.813333pt;}
.ya0{bottom:629.829333pt;}
.y180{bottom:632.858667pt;}
.y148{bottom:638.336000pt;}
.y31{bottom:639.640933pt;}
.y1ae{bottom:642.933333pt;}
.y54{bottom:644.000000pt;}
.y12c{bottom:645.285333pt;}
.y1da{bottom:645.600000pt;}
.y17f{bottom:646.053333pt;}
.yf7{bottom:646.714667pt;}
.y79{bottom:649.285333pt;}
.y9f{bottom:649.301333pt;}
.y147{bottom:651.669333pt;}
.y30{bottom:656.040933pt;}
.y7{bottom:657.491067pt;}
.y17e{bottom:659.248000pt;}
.y1ad{bottom:659.733333pt;}
.y1fe{bottom:660.666667pt;}
.y1d9{bottom:662.133333pt;}
.y96{bottom:664.000000pt;}
.yd4{bottom:664.409467pt;}
.y146{bottom:665.002667pt;}
.y12b{bottom:665.157333pt;}
.yf6{bottom:666.442667pt;}
.y78{bottom:668.757333pt;}
.y9e{bottom:668.773333pt;}
.y17d{bottom:672.442667pt;}
.y1ac{bottom:676.533333pt;}
.y6{bottom:677.224400pt;}
.y1fd{bottom:677.333333pt;}
.y145{bottom:678.336000pt;}
.y1d8{bottom:678.666667pt;}
.y2f{bottom:680.000000pt;}
.y53{bottom:684.000000pt;}
.y12a{bottom:685.029333pt;}
.y17c{bottom:685.637333pt;}
.yf5{bottom:686.170667pt;}
.y77{bottom:688.229333pt;}
.y9d{bottom:688.245333pt;}
.y144{bottom:691.669333pt;}
.y1ab{bottom:693.333333pt;}
.y1fc{bottom:694.000000pt;}
.y1d7{bottom:695.200000pt;}
.y2e{bottom:696.400000pt;}
.y17b{bottom:698.832000pt;}
.y52{bottom:704.000000pt;}
.y129{bottom:704.901333pt;}
.y143{bottom:705.002667pt;}
.yf4{bottom:705.898667pt;}
.y76{bottom:707.701333pt;}
.y9c{bottom:707.717333pt;}
.y1aa{bottom:710.133333pt;}
.y1fb{bottom:710.666667pt;}
.y1d6{bottom:711.733333pt;}
.y17a{bottom:712.026667pt;}
.yd3{bottom:712.409467pt;}
.y2d{bottom:712.800000pt;}
.y51{bottom:724.000000pt;}
.y128{bottom:724.773333pt;}
.y179{bottom:725.232000pt;}
.yf3{bottom:725.626667pt;}
.y1a9{bottom:726.933333pt;}
.y75{bottom:727.173333pt;}
.y9b{bottom:727.189333pt;}
.y1fa{bottom:727.333333pt;}
.y1d5{bottom:728.266667pt;}
.yd2{bottom:728.409467pt;}
.y2c{bottom:729.200000pt;}
.y5{bottom:736.642933pt;}
.y178{bottom:738.426667pt;}
.y1a8{bottom:743.733333pt;}
.y50{bottom:744.000000pt;}
.yd1{bottom:744.409467pt;}
.y127{bottom:744.645333pt;}
.y1d4{bottom:744.800000pt;}
.yf2{bottom:745.354667pt;}
.y2b{bottom:745.600000pt;}
.y74{bottom:746.645333pt;}
.y9a{bottom:746.661333pt;}
.y177{bottom:751.621333pt;}
.yd0{bottom:760.409467pt;}
.y1a7{bottom:760.533333pt;}
.y1f9{bottom:760.666667pt;}
.y1d3{bottom:761.333333pt;}
.y2a{bottom:762.000000pt;}
.y4{bottom:763.042933pt;}
.y4f{bottom:764.000000pt;}
.y126{bottom:764.517333pt;}
.y176{bottom:764.816000pt;}
.yf1{bottom:765.082667pt;}
.y73{bottom:766.117333pt;}
.y99{bottom:766.133333pt;}
.y1a6{bottom:777.333333pt;}
.y1d2{bottom:777.866667pt;}
.y175{bottom:778.010667pt;}
.y29{bottom:778.400000pt;}
.y4e{bottom:784.000000pt;}
.y125{bottom:784.389333pt;}
.yf0{bottom:784.810667pt;}
.y72{bottom:785.589333pt;}
.y98{bottom:785.600000pt;}
.y3{bottom:789.442933pt;}
.yce{bottom:789.742800pt;}
.y174{bottom:791.216000pt;}
.ycf{bottom:792.409467pt;}
.y1a5{bottom:794.000000pt;}
.y1d1{bottom:794.400000pt;}
.y28{bottom:794.800000pt;}
.y4d{bottom:804.000000pt;}
.y124{bottom:804.261333pt;}
.y173{bottom:804.410667pt;}
.yef{bottom:804.538667pt;}
.y71{bottom:805.061333pt;}
.y97{bottom:805.066667pt;}
.y1a4{bottom:810.666667pt;}
.y1d0{bottom:810.933333pt;}
.y27{bottom:811.200000pt;}
.y172{bottom:817.605333pt;}
.y4c{bottom:824.000000pt;}
.y123{bottom:824.133333pt;}
.yee{bottom:824.266667pt;}
.y70{bottom:824.533333pt;}
.y1a3{bottom:827.333333pt;}
.y1cf{bottom:827.466667pt;}
.y26{bottom:827.600000pt;}
.y171{bottom:830.800000pt;}
.y2{bottom:835.576133pt;}
.h10{height:29.437500pt;}
.h12{height:33.117188pt;}
.h2{height:34.957031pt;}
.he{height:35.456000pt;}
.ha{height:35.546875pt;}
.hf{height:36.229167pt;}
.h1{height:36.796875pt;}
.hd{height:36.800608pt;}
.hb{height:36.802208pt;}
.h4{height:37.333333pt;}
.h11{height:40.757812pt;}
.h5{height:44.156250pt;}
.h9{height:44.320000pt;}
.h6{height:45.286458pt;}
.h8{height:52.434708pt;}
.h7{height:54.343750pt;}
.h3{height:73.593750pt;}
.hc{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.228400pt;}
.x6{left:86.453333pt;}
.x2{left:100.000000pt;}
.xa{left:105.624667pt;}
.x8{left:113.228400pt;}
.x5{left:120.000000pt;}
.x3{left:126.456667pt;}
.xc{left:137.795200pt;}
.xd{left:168.447200pt;}
.x10{left:175.695733pt;}
.x12{left:215.535733pt;}
.xb{left:272.691333pt;}
.xf{left:282.509067pt;}
.x11{left:315.629067pt;}
.x13{left:330.933600pt;}
.xe{left:355.367200pt;}
.x9{left:444.000000pt;}
.x1{left:564.791600pt;}
}




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