
    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_8fc9f5ced6b77dd0a88d43aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_b822c6b8910564af03191b32.woff')format("woff");}.ff2{font-family:ff2;line-height:0.780000;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_665b3de024f08211c81b6fe5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.012000;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_5431badf0a8bbb8b04023be6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.206055;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_8ca56674bfa6ba5282d6a9e7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.206055;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_6f4ce520c273085ee7a1cc12.woff')format("woff");}.ff6{font-family:ff6;line-height:1.006348;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_7a55df68a65d116a8f65c1e3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_13ae2483a2a33734fbddc104.woff')format("woff");}.ff8{font-family:ff8;line-height:1.011000;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_d2983242a159241389fb9142.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_ae6e91221c922d49f9bea44b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.173000;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_d4e94715dbd5107f928bc6c7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.173000;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_b2d21f24aea810f2e25eea2b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.181000;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_592c5ac338d03a865598a592.woff')format("woff");}.ffd{font-family:ffd;line-height:0.997000;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_20739536f559c88c9a442309.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c4022e2bc089080b7e7c27e4.woff')format("woff");}.fff{font-family:fff;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_61288236b595b8533bd96ca5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.878906;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:ff11;src:url('chunks/assets/font_3068ba5f7c255e3178f0fa50.woff')format("woff");}.ff11{font-family:ff11;line-height:0.878906;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:ff12;src:url('chunks/assets/font_5c30164ff1afa27b28988100.woff')format("woff");}.ff12{font-family:ff12;line-height:1.006348;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:-10.530000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.530000px;}
.v1{vertical-align:30.000000px;}
.ls4{letter-spacing:-4.344000px;}
.lsa{letter-spacing:-2.640000px;}
.ls6{letter-spacing:-1.451152px;}
.lsf{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.649199px;}
.ls5{letter-spacing:-0.540000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.594000px;}
.ls8{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.960200px;}
.lsd{letter-spacing:3.510000px;}
.ls1{letter-spacing:5.244000px;}
.ls0{letter-spacing:5.988000px;}
.lse{letter-spacing:119.520000px;}
.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;}
}
.ws0{word-spacing:-13.500000px;}
.ws6b{word-spacing:-12.000000px;}
.ws67{word-spacing:-9.360000px;}
.ws98{word-spacing:-3.240000px;}
.ws8a{word-spacing:-2.538000px;}
.ws4a{word-spacing:-2.484000px;}
.ws5{word-spacing:-2.376000px;}
.wsa5{word-spacing:-2.322000px;}
.ws93{word-spacing:-2.268000px;}
.ws18{word-spacing:-2.214000px;}
.ws58{word-spacing:-2.106000px;}
.ws3c{word-spacing:-1.998000px;}
.ws3d{word-spacing:-1.944000px;}
.ws91{word-spacing:-1.890000px;}
.ws8{word-spacing:-1.836000px;}
.ws5d{word-spacing:-1.776000px;}
.ws9e{word-spacing:-1.728000px;}
.ws4{word-spacing:-1.620000px;}
.ws3a{word-spacing:-1.566000px;}
.ws78{word-spacing:-1.404000px;}
.ws5b{word-spacing:-1.242000px;}
.ws2d{word-spacing:-1.188000px;}
.ws49{word-spacing:-1.080000px;}
.ws2c{word-spacing:-0.972000px;}
.ws2a{word-spacing:-0.918000px;}
.ws44{word-spacing:-0.912000px;}
.ws81{word-spacing:-0.864000px;}
.ws9a{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.594000px;}
.ws57{word-spacing:-0.540000px;}
.ws37{word-spacing:-0.486000px;}
.ws23{word-spacing:-0.432000px;}
.ws62{word-spacing:-0.378000px;}
.ws1e{word-spacing:-0.162000px;}
.ws8c{word-spacing:-0.108000px;}
.ws56{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws76{word-spacing:0.162000px;}
.ws77{word-spacing:0.216000px;}
.ws16{word-spacing:0.270000px;}
.ws83{word-spacing:0.378000px;}
.ws35{word-spacing:0.486000px;}
.ws2b{word-spacing:0.540000px;}
.ws32{word-spacing:0.594000px;}
.ws43{word-spacing:0.649199px;}
.wsd{word-spacing:0.702000px;}
.ws6{word-spacing:0.750000px;}
.ws26{word-spacing:0.756000px;}
.ws29{word-spacing:0.810000px;}
.ws4c{word-spacing:0.918000px;}
.wsf{word-spacing:0.972000px;}
.ws99{word-spacing:1.080000px;}
.wse{word-spacing:1.188000px;}
.ws8d{word-spacing:1.242000px;}
.ws79{word-spacing:1.296000px;}
.ws8e{word-spacing:1.404000px;}
.ws42{word-spacing:1.451152px;}
.ws61{word-spacing:1.512000px;}
.wsa{word-spacing:1.566000px;}
.ws88{word-spacing:1.620000px;}
.ws17{word-spacing:1.674000px;}
.ws40{word-spacing:1.728000px;}
.wsae{word-spacing:1.782000px;}
.ws5a{word-spacing:1.998000px;}
.ws86{word-spacing:2.052000px;}
.ws1b{word-spacing:2.106000px;}
.ws60{word-spacing:2.322000px;}
.ws82{word-spacing:2.484000px;}
.ws9d{word-spacing:2.538000px;}
.ws70{word-spacing:2.592000px;}
.ws80{word-spacing:2.700000px;}
.wsb{word-spacing:2.754000px;}
.ws24{word-spacing:2.808000px;}
.ws5f{word-spacing:2.862000px;}
.ws27{word-spacing:2.916000px;}
.ws8b{word-spacing:2.970000px;}
.ws4b{word-spacing:3.024000px;}
.ws7d{word-spacing:3.078000px;}
.ws21{word-spacing:3.132000px;}
.ws1c{word-spacing:3.186000px;}
.ws30{word-spacing:3.348000px;}
.ws3{word-spacing:3.456000px;}
.ws5c{word-spacing:3.510000px;}
.ws89{word-spacing:3.564000px;}
.ws90{word-spacing:3.618000px;}
.ws31{word-spacing:3.672000px;}
.wsc{word-spacing:3.726000px;}
.ws87{word-spacing:3.888000px;}
.ws14{word-spacing:3.942000px;}
.ws36{word-spacing:3.996000px;}
.ws3f{word-spacing:4.050000px;}
.ws38{word-spacing:4.104000px;}
.ws75{word-spacing:4.212000px;}
.ws11{word-spacing:4.266000px;}
.ws7e{word-spacing:4.374000px;}
.ws97{word-spacing:4.428000px;}
.ws13{word-spacing:4.482000px;}
.ws2e{word-spacing:4.536000px;}
.wsad{word-spacing:4.644000px;}
.ws15{word-spacing:4.698000px;}
.ws19{word-spacing:4.752000px;}
.wsa3{word-spacing:4.806000px;}
.ws4e{word-spacing:4.860000px;}
.ws92{word-spacing:4.968000px;}
.ws9c{word-spacing:5.076000px;}
.ws10{word-spacing:5.184000px;}
.ws2{word-spacing:5.238000px;}
.wsaa{word-spacing:5.346000px;}
.ws2f{word-spacing:5.400000px;}
.ws7c{word-spacing:5.454000px;}
.ws25{word-spacing:5.562000px;}
.ws96{word-spacing:5.832000px;}
.ws71{word-spacing:6.048000px;}
.ws5e{word-spacing:6.102000px;}
.ws3e{word-spacing:6.156000px;}
.ws94{word-spacing:6.210000px;}
.ws63{word-spacing:6.318000px;}
.ws8f{word-spacing:6.372000px;}
.wsa9{word-spacing:6.426000px;}
.ws9b{word-spacing:6.480000px;}
.ws33{word-spacing:6.588000px;}
.ws39{word-spacing:6.642000px;}
.ws12{word-spacing:6.696000px;}
.ws85{word-spacing:6.858000px;}
.wsa0{word-spacing:7.020000px;}
.ws9{word-spacing:7.074000px;}
.wsa6{word-spacing:7.182000px;}
.ws7a{word-spacing:7.344000px;}
.ws1f{word-spacing:7.668000px;}
.ws22{word-spacing:7.776000px;}
.ws7b{word-spacing:7.830000px;}
.ws50{word-spacing:7.938000px;}
.ws4d{word-spacing:8.370000px;}
.ws72{word-spacing:8.532000px;}
.ws9f{word-spacing:8.586000px;}
.ws41{word-spacing:8.748000px;}
.wsa4{word-spacing:8.802000px;}
.ws1a{word-spacing:8.856000px;}
.ws95{word-spacing:9.072000px;}
.wsa7{word-spacing:9.234000px;}
.ws3b{word-spacing:9.288000px;}
.ws4f{word-spacing:9.666000px;}
.wsa1{word-spacing:9.936000px;}
.ws74{word-spacing:9.990000px;}
.ws51{word-spacing:10.098000px;}
.ws59{word-spacing:10.206000px;}
.ws84{word-spacing:10.260000px;}
.ws7f{word-spacing:10.422000px;}
.wsab{word-spacing:10.530000px;}
.wsac{word-spacing:10.638000px;}
.wsa2{word-spacing:11.394000px;}
.ws73{word-spacing:13.230000px;}
.ws1d{word-spacing:13.446000px;}
.ws7{word-spacing:13.500000px;}
.ws34{word-spacing:13.986000px;}
.ws20{word-spacing:15.714000px;}
.wsa8{word-spacing:16.092000px;}
.ws6c{word-spacing:58.512000px;}
.ws6f{word-spacing:59.424000px;}
.ws66{word-spacing:71.328000px;}
.ws6a{word-spacing:81.360000px;}
.ws6d{word-spacing:82.272000px;}
.ws69{word-spacing:95.328000px;}
.ws64{word-spacing:132.576000px;}
.ws65{word-spacing:156.240000px;}
.ws6e{word-spacing:183.600000px;}
.ws52{word-spacing:193.344000px;}
.ws53{word-spacing:207.888000px;}
.ws45{word-spacing:217.392000px;}
.ws48{word-spacing:235.392000px;}
.ws55{word-spacing:236.928000px;}
.ws47{word-spacing:241.968000px;}
.ws54{word-spacing:248.928000px;}
.ws46{word-spacing:254.688000px;}
.ws68{word-spacing:298.852800px;}
._b{margin-left:-13.500000px;}
._4a{margin-left:-9.050400px;}
._49{margin-left:-7.144200px;}
._7{margin-left:-4.449024px;}
._0{margin-left:-3.357000px;}
._1{margin-left:-1.782000px;}
._4{width:1.513800px;}
._2{width:3.283200px;}
._3{width:4.404600px;}
._6{width:6.005988px;}
._5{width:7.380018px;}
._9{width:8.440200px;}
._8{width:9.774000px;}
._a{width:11.437200px;}
._4d{width:12.463200px;}
._48{width:14.628600px;}
._4c{width:16.097400px;}
._4b{width:22.798800px;}
._42{width:34.992000px;}
._43{width:46.512000px;}
._44{width:47.856000px;}
._e{width:62.544000px;}
._40{width:70.785024px;}
._46{width:72.465024px;}
._38{width:85.341000px;}
._3d{width:95.376000px;}
._3c{width:97.968000px;}
._3e{width:109.488000px;}
._21{width:116.304000px;}
._2c{width:136.944000px;}
._41{width:155.472000px;}
._f{width:156.672000px;}
._20{width:160.848000px;}
._3a{width:162.000000px;}
._3b{width:174.000000px;}
._36{width:184.320000px;}
._3f{width:186.913200px;}
._47{width:189.297024px;}
._29{width:219.884054px;}
._1f{width:223.392000px;}
._15{width:224.640000px;}
._1a{width:231.405000px;}
._11{width:236.496000px;}
._16{width:247.392000px;}
._19{width:248.688000px;}
._1b{width:251.856000px;}
._17{width:252.960000px;}
._13{width:259.392000px;}
._2f{width:260.928000px;}
._1d{width:265.392000px;}
._45{width:266.880000px;}
._1c{width:268.704000px;}
._10{width:270.720000px;}
._39{width:275.328000px;}
._12{width:277.392000px;}
._14{width:284.592000px;}
._1e{width:293.121024px;}
._18{width:319.008000px;}
._c{width:334.179946px;}
._34{width:391.920000px;}
._37{width:433.344000px;}
._33{width:585.168000px;}
._32{width:672.000000px;}
._31{width:689.856000px;}
._30{width:693.024000px;}
._2d{width:704.304000px;}
._d{width:719.472000px;}
._28{width:720.480000px;}
._2e{width:751.245000px;}
._22{width:784.320000px;}
._27{width:797.088000px;}
._26{width:814.944000px;}
._25{width:816.336000px;}
._23{width:841.392000px;}
._35{width:864.129024px;}
._2a{width:867.552000px;}
._24{width:876.333000px;}
._2b{width:919.104000px;}
.fc1{color:rgb(0,158,224);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.188200px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:4.393800px;}
.y105{bottom:7.940850px;}
.y103{bottom:24.140850px;}
.y34{bottom:45.474600px;}
.y31{bottom:83.462700px;}
.y101{bottom:94.522650px;}
.y173{bottom:94.542150px;}
.y1a6{bottom:94.555650px;}
.y230{bottom:94.578150px;}
.y6d{bottom:94.632150px;}
.ydc{bottom:94.645650px;}
.y202{bottom:94.740150px;}
.y25d{bottom:94.834650px;}
.ya4{bottom:94.861650px;}
.y30{bottom:96.062700px;}
.y2e{bottom:112.393800px;}
.y172{bottom:112.537650px;}
.y1a5{bottom:112.551150px;}
.y22f{bottom:112.573650px;}
.y142{bottom:112.614150px;}
.y6c{bottom:112.627650px;}
.ydb{bottom:112.641150px;}
.y201{bottom:112.735650px;}
.y25c{bottom:112.830150px;}
.ya3{bottom:112.857150px;}
.y1d2{bottom:120.177750px;}
.y100{bottom:121.897785px;}
.y117{bottom:123.076500px;}
.y2d{bottom:130.393800px;}
.y171{bottom:130.533150px;}
.y1a4{bottom:130.546650px;}
.y22e{bottom:130.569150px;}
.y141{bottom:130.609650px;}
.y6b{bottom:130.623150px;}
.yda{bottom:130.636650px;}
.y25b{bottom:130.825650px;}
.ya2{bottom:130.852650px;}
.yf6{bottom:134.633550px;}
.y1d1{bottom:145.893750px;}
.y170{bottom:148.528650px;}
.y1a3{bottom:148.542150px;}
.y22d{bottom:148.564650px;}
.y140{bottom:148.605150px;}
.y6a{bottom:148.618650px;}
.yd9{bottom:148.632150px;}
.y200{bottom:148.740150px;}
.y25a{bottom:148.821150px;}
.ya1{bottom:148.848150px;}
.yf7{bottom:155.847095px;}
.y1d0{bottom:160.893750px;}
.y2c{bottom:166.429800px;}
.y16f{bottom:166.524150px;}
.y1a2{bottom:166.537650px;}
.y22c{bottom:166.560150px;}
.y13f{bottom:166.600650px;}
.y69{bottom:166.614150px;}
.yd8{bottom:166.627650px;}
.y259{bottom:166.816650px;}
.ya0{bottom:166.843650px;}
.yf8{bottom:177.595275px;}
.y16e{bottom:184.519650px;}
.y1a1{bottom:184.533150px;}
.y22b{bottom:184.555650px;}
.y13e{bottom:184.596150px;}
.y68{bottom:184.609650px;}
.yd7{bottom:184.623150px;}
.y1ff{bottom:184.744650px;}
.y258{bottom:184.812150px;}
.y9f{bottom:184.839150px;}
.y1cf{bottom:186.609750px;}
.yf9{bottom:198.808820px;}
.y1ce{bottom:201.609750px;}
.y16d{bottom:202.515150px;}
.y1a0{bottom:202.528650px;}
.y22a{bottom:202.551150px;}
.y13d{bottom:202.591650px;}
.y67{bottom:202.605150px;}
.yd6{bottom:202.618650px;}
.y2b{bottom:202.651800px;}
.y1fe{bottom:202.740150px;}
.y257{bottom:202.807650px;}
.y9e{bottom:202.834650px;}
.yfa{bottom:220.022365px;}
.y16c{bottom:220.510650px;}
.y19f{bottom:220.524150px;}
.y229{bottom:220.546650px;}
.y13c{bottom:220.587150px;}
.y66{bottom:220.600650px;}
.yd5{bottom:220.614150px;}
.y2a{bottom:220.647300px;}
.y1fd{bottom:220.735650px;}
.y256{bottom:220.803150px;}
.y9d{bottom:220.830150px;}
.y1cd{bottom:227.325750px;}
.y16b{bottom:238.506150px;}
.y19e{bottom:238.519650px;}
.y228{bottom:238.542150px;}
.y13b{bottom:238.582650px;}
.y65{bottom:238.596150px;}
.yd4{bottom:238.609650px;}
.y29{bottom:238.642800px;}
.y1fc{bottom:238.731150px;}
.y255{bottom:238.798650px;}
.y9c{bottom:238.825650px;}
.yfb{bottom:241.770545px;}
.y1cc{bottom:242.325750px;}
.y16a{bottom:256.501650px;}
.y19d{bottom:256.515150px;}
.y227{bottom:256.537650px;}
.y13a{bottom:256.578150px;}
.y64{bottom:256.591650px;}
.yd3{bottom:256.605150px;}
.y28{bottom:256.638300px;}
.y1fb{bottom:256.726650px;}
.y254{bottom:256.794150px;}
.y9b{bottom:256.821150px;}
.yfc{bottom:262.984090px;}
.y1cb{bottom:268.041750px;}
.y169{bottom:274.497150px;}
.y19c{bottom:274.510650px;}
.y226{bottom:274.533150px;}
.y139{bottom:274.573650px;}
.y63{bottom:274.587150px;}
.yd2{bottom:274.600650px;}
.y27{bottom:274.633800px;}
.y253{bottom:274.789650px;}
.y9a{bottom:274.816650px;}
.y1ca{bottom:283.041750px;}
.yfd{bottom:284.732270px;}
.y168{bottom:292.492650px;}
.y19b{bottom:292.506150px;}
.y225{bottom:292.528650px;}
.y138{bottom:292.569150px;}
.y62{bottom:292.582650px;}
.yd1{bottom:292.596150px;}
.y26{bottom:292.629300px;}
.y1fa{bottom:292.731150px;}
.y252{bottom:292.785150px;}
.y99{bottom:292.812150px;}
.yfe{bottom:305.945815px;}
.y1c9{bottom:308.757750px;}
.y19a{bottom:310.501650px;}
.y224{bottom:310.524150px;}
.y137{bottom:310.564650px;}
.y61{bottom:310.578150px;}
.yd0{bottom:310.591650px;}
.y25{bottom:310.624800px;}
.y251{bottom:310.780650px;}
.y98{bottom:310.807650px;}
.yff{bottom:327.159360px;}
.y167{bottom:328.497150px;}
.y223{bottom:328.519650px;}
.y136{bottom:328.560150px;}
.y60{bottom:328.573650px;}
.ycf{bottom:328.587150px;}
.y24{bottom:328.620000px;}
.y1f9{bottom:328.735650px;}
.y250{bottom:328.776150px;}
.y97{bottom:328.803150px;}
.y1c8{bottom:334.473750px;}
.y199{bottom:346.492650px;}
.y222{bottom:346.515150px;}
.y135{bottom:346.555650px;}
.y5f{bottom:346.569150px;}
.yce{bottom:346.582650px;}
.y23{bottom:346.615500px;}
.y1f8{bottom:346.731150px;}
.y24f{bottom:346.771650px;}
.y96{bottom:346.798650px;}
.y1c7{bottom:350.673750px;}
.y22{bottom:364.393800px;}
.y198{bottom:364.488150px;}
.y166{bottom:364.501650px;}
.y221{bottom:364.510650px;}
.y134{bottom:364.551150px;}
.y5e{bottom:364.564650px;}
.ycd{bottom:364.578150px;}
.y1f7{bottom:364.726650px;}
.yf5{bottom:364.767150px;}
.y95{bottom:364.794150px;}
.y1c6{bottom:382.425150px;}
.y197{bottom:382.483650px;}
.y165{bottom:382.497150px;}
.y220{bottom:382.506150px;}
.y133{bottom:382.546650px;}
.y5d{bottom:382.560150px;}
.ycc{bottom:382.573650px;}
.y1f6{bottom:382.722150px;}
.yf4{bottom:382.762650px;}
.y94{bottom:382.789650px;}
.y21{bottom:399.633300px;}
.y1c5{bottom:400.420650px;}
.y196{bottom:400.479150px;}
.y164{bottom:400.492650px;}
.y21f{bottom:400.501650px;}
.y132{bottom:400.542150px;}
.y5c{bottom:400.555650px;}
.ycb{bottom:400.569150px;}
.y1f5{bottom:400.717650px;}
.yf3{bottom:400.758150px;}
.y93{bottom:400.785150px;}
.y116{bottom:418.411650px;}
.y1c4{bottom:418.416150px;}
.y195{bottom:418.474650px;}
.y163{bottom:418.488150px;}
.y21e{bottom:418.497150px;}
.y131{bottom:418.537650px;}
.y5b{bottom:418.551150px;}
.yca{bottom:418.564650px;}
.y1f4{bottom:418.713150px;}
.yf2{bottom:418.753650px;}
.y92{bottom:418.780650px;}
.y20{bottom:420.637800px;}
.y115{bottom:436.407150px;}
.y1c3{bottom:436.411650px;}
.y194{bottom:436.470150px;}
.y162{bottom:436.483650px;}
.y21d{bottom:436.492650px;}
.y130{bottom:436.533150px;}
.y5a{bottom:436.546650px;}
.yc9{bottom:436.560150px;}
.y1f3{bottom:436.708650px;}
.yf1{bottom:436.749150px;}
.y91{bottom:436.776150px;}
.y114{bottom:454.402650px;}
.y1c2{bottom:454.407150px;}
.y193{bottom:454.465650px;}
.y161{bottom:454.479150px;}
.y21c{bottom:454.488150px;}
.y1f{bottom:454.497300px;}
.y12f{bottom:454.528650px;}
.y59{bottom:454.542150px;}
.yc8{bottom:454.555650px;}
.y1f2{bottom:454.704150px;}
.yf0{bottom:454.744650px;}
.y90{bottom:454.771650px;}
.y113{bottom:472.398150px;}
.y1c1{bottom:472.402650px;}
.y192{bottom:472.461150px;}
.y160{bottom:472.474650px;}
.y21b{bottom:472.483650px;}
.y1e{bottom:472.492800px;}
.y12e{bottom:472.524150px;}
.y58{bottom:472.537650px;}
.yc7{bottom:472.551150px;}
.y1f1{bottom:472.699650px;}
.yef{bottom:472.740150px;}
.y8f{bottom:472.767150px;}
.y112{bottom:490.393650px;}
.y1c0{bottom:490.398150px;}
.y191{bottom:490.456650px;}
.y15f{bottom:490.470150px;}
.y21a{bottom:490.479150px;}
.y12d{bottom:490.519650px;}
.y57{bottom:490.533150px;}
.yc6{bottom:490.546650px;}
.y1f0{bottom:490.695150px;}
.yee{bottom:490.735650px;}
.y8e{bottom:490.762650px;}
.y1bf{bottom:508.393650px;}
.y190{bottom:508.452150px;}
.y15e{bottom:508.465650px;}
.y219{bottom:508.474650px;}
.y1d{bottom:508.497300px;}
.y12c{bottom:508.515150px;}
.y56{bottom:508.528650px;}
.yc5{bottom:508.542150px;}
.y1ef{bottom:508.690650px;}
.yed{bottom:508.731150px;}
.y8d{bottom:508.758150px;}
.y18f{bottom:526.447650px;}
.y15d{bottom:526.461150px;}
.y218{bottom:526.470150px;}
.y1c{bottom:526.492800px;}
.y12b{bottom:526.510650px;}
.y55{bottom:526.524150px;}
.yc4{bottom:526.537650px;}
.y1ee{bottom:526.686150px;}
.yec{bottom:526.726650px;}
.y8c{bottom:526.753650px;}
.y111{bottom:536.713950px;}
.y18e{bottom:544.443150px;}
.y15c{bottom:544.456650px;}
.y217{bottom:544.465650px;}
.y1b{bottom:544.488300px;}
.y12a{bottom:544.506150px;}
.y54{bottom:544.519650px;}
.yc3{bottom:544.533150px;}
.y1ed{bottom:544.681650px;}
.yeb{bottom:544.722150px;}
.y8b{bottom:544.749150px;}
.y1be{bottom:557.272500px;}
.y110{bottom:562.429950px;}
.y18d{bottom:562.438650px;}
.y15b{bottom:562.452150px;}
.y216{bottom:562.461150px;}
.y1a{bottom:562.483800px;}
.y129{bottom:562.501650px;}
.y53{bottom:562.515150px;}
.yc2{bottom:562.528650px;}
.y1ec{bottom:562.677150px;}
.y24e{bottom:562.717650px;}
.y8a{bottom:562.744650px;}
.y1bc{bottom:574.384500px;}
.y18c{bottom:580.434150px;}
.y15a{bottom:580.447650px;}
.y215{bottom:580.456650px;}
.y19{bottom:580.479300px;}
.y128{bottom:580.497150px;}
.y52{bottom:580.510650px;}
.yc1{bottom:580.524150px;}
.y24d{bottom:580.713150px;}
.yea{bottom:580.726650px;}
.y89{bottom:580.740150px;}
.y10f{bottom:588.145950px;}
.y1bd{bottom:591.496500px;}
.y18b{bottom:598.429650px;}
.y159{bottom:598.443150px;}
.y214{bottom:598.452150px;}
.y18{bottom:598.474800px;}
.y127{bottom:598.492650px;}
.y51{bottom:598.506150px;}
.yc0{bottom:598.519650px;}
.y1eb{bottom:598.681650px;}
.y24c{bottom:598.708650px;}
.y88{bottom:598.735650px;}
.y10e{bottom:613.861950px;}
.y18a{bottom:616.425150px;}
.y158{bottom:616.438650px;}
.y213{bottom:616.447650px;}
.y17{bottom:616.470300px;}
.y126{bottom:616.488150px;}
.y50{bottom:616.501650px;}
.ybf{bottom:616.515150px;}
.y24b{bottom:616.704150px;}
.y87{bottom:616.731150px;}
.y1bb{bottom:625.720500px;}
.y189{bottom:634.420650px;}
.y157{bottom:634.434150px;}
.y212{bottom:634.443150px;}
.y16{bottom:634.465800px;}
.y125{bottom:634.483650px;}
.y4f{bottom:634.497150px;}
.ybe{bottom:634.510650px;}
.y1ea{bottom:634.686150px;}
.y24a{bottom:634.699650px;}
.y86{bottom:634.726650px;}
.y10d{bottom:639.577950px;}
.y1b9{bottom:642.832500px;}
.y188{bottom:652.416150px;}
.y156{bottom:652.429650px;}
.y211{bottom:652.438650px;}
.y15{bottom:652.461300px;}
.y124{bottom:652.479150px;}
.y4e{bottom:652.492650px;}
.ybd{bottom:652.506150px;}
.y1e9{bottom:652.681650px;}
.y249{bottom:652.695150px;}
.y85{bottom:652.722150px;}
.y1ba{bottom:659.944500px;}
.y10c{bottom:665.293950px;}
.y187{bottom:670.411650px;}
.y155{bottom:670.425150px;}
.y210{bottom:670.434150px;}
.y14{bottom:670.456800px;}
.y123{bottom:670.474650px;}
.y4d{bottom:670.488150px;}
.ybc{bottom:670.501650px;}
.y1e8{bottom:670.677150px;}
.y248{bottom:670.690650px;}
.y84{bottom:670.717650px;}
.y186{bottom:688.407150px;}
.y154{bottom:688.420650px;}
.y20f{bottom:688.429650px;}
.y13{bottom:688.452300px;}
.y122{bottom:688.470150px;}
.y4c{bottom:688.483650px;}
.ybb{bottom:688.497150px;}
.y1e7{bottom:688.672650px;}
.y247{bottom:688.686150px;}
.y83{bottom:688.713150px;}
.y10b{bottom:691.009950px;}
.y1b8{bottom:694.324500px;}
.y185{bottom:706.402650px;}
.y153{bottom:706.416150px;}
.y20e{bottom:706.425150px;}
.y12{bottom:706.447800px;}
.y121{bottom:706.465650px;}
.y4b{bottom:706.479150px;}
.yba{bottom:706.492650px;}
.y1e6{bottom:706.668150px;}
.y246{bottom:706.681650px;}
.ye9{bottom:706.708650px;}
.y10a{bottom:716.725950px;}
.y1b7{bottom:720.196500px;}
.y184{bottom:724.398150px;}
.y152{bottom:724.411650px;}
.y20d{bottom:724.420650px;}
.y120{bottom:724.461150px;}
.y4a{bottom:724.474650px;}
.yb9{bottom:724.488150px;}
.y1e5{bottom:724.663650px;}
.y245{bottom:724.677150px;}
.ye8{bottom:724.704150px;}
.y82{bottom:724.717650px;}
.y1b6{bottom:736.396500px;}
.yc{bottom:741.898800px;}
.y183{bottom:742.393650px;}
.y151{bottom:742.407150px;}
.y20c{bottom:742.416150px;}
.y109{bottom:742.441950px;}
.y11f{bottom:742.456650px;}
.y49{bottom:742.470150px;}
.yb8{bottom:742.483650px;}
.y1e4{bottom:742.659150px;}
.y244{bottom:742.672650px;}
.ye7{bottom:742.699650px;}
.y81{bottom:742.713150px;}
.y1b5{bottom:752.596500px;}
.yb{bottom:759.894300px;}
.y150{bottom:760.402650px;}
.y20b{bottom:760.411650px;}
.y11e{bottom:760.452150px;}
.y48{bottom:760.465650px;}
.yb7{bottom:760.479150px;}
.y1e3{bottom:760.654650px;}
.y243{bottom:760.668150px;}
.y108{bottom:768.157950px;}
.y182{bottom:777.533700px;}
.ya{bottom:777.889800px;}
.y14f{bottom:778.398150px;}
.y20a{bottom:778.407150px;}
.y11d{bottom:778.447650px;}
.y47{bottom:778.461150px;}
.yb6{bottom:778.474650px;}
.y242{bottom:778.663650px;}
.ye6{bottom:778.704150px;}
.y80{bottom:778.717650px;}
.y107{bottom:793.873950px;}
.y9{bottom:795.885300px;}
.y14e{bottom:796.393650px;}
.y209{bottom:796.402650px;}
.y11c{bottom:796.443150px;}
.y46{bottom:796.456650px;}
.yb5{bottom:796.470150px;}
.y1e2{bottom:796.659150px;}
.ye5{bottom:796.699650px;}
.y7f{bottom:796.713150px;}
.y1b4{bottom:797.649750px;}
.y181{bottom:803.249700px;}
.y106{bottom:808.873950px;}
.y1b3{bottom:812.649750px;}
.y208{bottom:814.398150px;}
.y11b{bottom:814.438650px;}
.y45{bottom:814.452150px;}
.yb4{bottom:814.465650px;}
.y241{bottom:814.654650px;}
.ye4{bottom:814.695150px;}
.y7e{bottom:814.708650px;}
.y8{bottom:818.133300px;}
.y102{bottom:826.653000px;}
.y180{bottom:828.965700px;}
.y207{bottom:832.393650px;}
.y11a{bottom:832.434150px;}
.y44{bottom:832.447650px;}
.yb3{bottom:832.461150px;}
.y240{bottom:832.650150px;}
.y1e1{bottom:832.663650px;}
.ye3{bottom:832.690650px;}
.y7d{bottom:832.704150px;}
.y1b2{bottom:838.365750px;}
.y14d{bottom:844.063500px;}
.y119{bottom:850.429650px;}
.y43{bottom:850.443150px;}
.yb2{bottom:850.456650px;}
.y23f{bottom:850.645650px;}
.y1e0{bottom:850.659150px;}
.ye2{bottom:850.686150px;}
.y7c{bottom:850.699650px;}
.y104{bottom:850.793850px;}
.y1b1{bottom:853.365750px;}
.y17f{bottom:854.681700px;}
.y7{bottom:857.391300px;}
.y11{bottom:857.431800px;}
.y206{bottom:868.398150px;}
.y118{bottom:868.425150px;}
.y42{bottom:868.438650px;}
.yb1{bottom:868.452150px;}
.y23e{bottom:868.641150px;}
.y1df{bottom:868.654650px;}
.ye1{bottom:868.681650px;}
.y7b{bottom:868.695150px;}
.y14c{bottom:869.779500px;}
.y6{bottom:875.386800px;}
.y10{bottom:875.427300px;}
.y1b0{bottom:879.081750px;}
.y17e{bottom:880.397700px;}
.y41{bottom:886.434150px;}
.yb0{bottom:886.447650px;}
.y23d{bottom:886.636650px;}
.y1de{bottom:886.650150px;}
.ye0{bottom:886.677150px;}
.y7a{bottom:886.690650px;}
.y5{bottom:893.382300px;}
.yf{bottom:893.422800px;}
.y14b{bottom:895.495500px;}
.y205{bottom:904.402650px;}
.y40{bottom:904.429650px;}
.yaf{bottom:904.443150px;}
.y23c{bottom:904.632150px;}
.y1dd{bottom:904.645650px;}
.ydf{bottom:904.672650px;}
.y79{bottom:904.686150px;}
.y1af{bottom:904.797750px;}
.y17d{bottom:906.113700px;}
.y4{bottom:911.377800px;}
.ye{bottom:911.418300px;}
.y14a{bottom:921.211500px;}
.y204{bottom:922.398150px;}
.y3f{bottom:922.425150px;}
.yae{bottom:922.438650px;}
.y23b{bottom:922.627650px;}
.y1dc{bottom:922.641150px;}
.yde{bottom:922.668150px;}
.y78{bottom:922.681650px;}
.y1ae{bottom:930.513750px;}
.y17c{bottom:931.829700px;}
.y3{bottom:933.625800px;}
.yd{bottom:933.666300px;}
.y3e{bottom:940.420650px;}
.yad{bottom:940.434150px;}
.y23a{bottom:940.623150px;}
.y1db{bottom:940.636650px;}
.y77{bottom:940.677150px;}
.y149{bottom:946.927500px;}
.y1ad{bottom:956.229750px;}
.y17b{bottom:957.545700px;}
.y203{bottom:958.402650px;}
.y3d{bottom:958.416150px;}
.yac{bottom:958.429650px;}
.y239{bottom:958.618650px;}
.y1da{bottom:958.632150px;}
.y76{bottom:958.672650px;}
.y1ac{bottom:963.729750px;}
.y148{bottom:972.643500px;}
.y2{bottom:972.885600px;}
.y3c{bottom:976.411650px;}
.yab{bottom:976.425150px;}
.y238{bottom:976.614150px;}
.y1d9{bottom:976.627650px;}
.y75{bottom:976.668150px;}
.y17a{bottom:983.261700px;}
.y1a9{bottom:984.093750px;}
.y3b{bottom:994.407150px;}
.yaa{bottom:994.420650px;}
.y237{bottom:994.609650px;}
.y1d8{bottom:994.623150px;}
.y74{bottom:994.663650px;}
.y1ab{bottom:996.957750px;}
.y147{bottom:998.359500px;}
.y1{bottom:999.885600px;}
.y179{bottom:1008.977700px;}
.y1aa{bottom:1011.957750px;}
.y3a{bottom:1012.402650px;}
.ya9{bottom:1012.416150px;}
.y236{bottom:1012.605150px;}
.y1d7{bottom:1012.618650px;}
.y73{bottom:1012.659150px;}
.y146{bottom:1024.075500px;}
.y178{bottom:1025.177700px;}
.y39{bottom:1030.398150px;}
.ya8{bottom:1030.411650px;}
.y235{bottom:1030.600650px;}
.y1d6{bottom:1030.614150px;}
.y72{bottom:1030.654650px;}
.y1a8{bottom:1037.673750px;}
.y2f{bottom:1046.593650px;}
.y38{bottom:1048.393650px;}
.ya7{bottom:1048.407150px;}
.y177{bottom:1048.560150px;}
.y234{bottom:1048.596150px;}
.y1d5{bottom:1048.609650px;}
.y71{bottom:1048.650150px;}
.y145{bottom:1049.791500px;}
.y1a7{bottom:1052.673750px;}
.y37{bottom:1066.389150px;}
.ya6{bottom:1066.402650px;}
.y176{bottom:1066.555650px;}
.y233{bottom:1066.591650px;}
.y1d4{bottom:1066.605150px;}
.y70{bottom:1066.645650px;}
.y144{bottom:1077.271500px;}
.ya5{bottom:1084.398150px;}
.y175{bottom:1084.551150px;}
.y232{bottom:1084.587150px;}
.y6f{bottom:1084.641150px;}
.y143{bottom:1093.471500px;}
.y36{bottom:1102.393650px;}
.y174{bottom:1102.546650px;}
.y231{bottom:1102.582650px;}
.y1d3{bottom:1102.609650px;}
.y6e{bottom:1102.636650px;}
.ydd{bottom:1102.650150px;}
.y33{bottom:1138.230450px;}
.y35{bottom:1138.232100px;}
.hf{height:25.713637px;}
.h9{height:34.080000px;}
.h14{height:34.944000px;}
.h10{height:35.203125px;}
.ha{height:38.841797px;}
.h17{height:39.181641px;}
.he{height:39.204000px;}
.hc{height:39.312000px;}
.h11{height:40.986000px;}
.h3{height:41.796000px;}
.h4{height:42.444000px;}
.h13{height:43.056000px;}
.h8{height:43.680000px;}
.h12{height:43.920000px;}
.h6{height:48.178711px;}
.hb{height:48.438000px;}
.hd{height:49.410000px;}
.h5{height:49.939453px;}
.h7{height:49.940653px;}
.h16{height:57.990937px;}
.h15{height:64.944000px;}
.h2{height:65.520000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:382.677000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:46.771650px;}
.x10{left:54.871650px;}
.x3{left:68.034150px;}
.x13{left:78.979650px;}
.xf{left:85.771500px;}
.x12{left:91.110600px;}
.x1a{left:95.071650px;}
.x5{left:108.149400px;}
.x11{left:126.715650px;}
.x14{left:159.595650px;}
.x18{left:172.471650px;}
.x19{left:210.031650px;}
.x6{left:229.143600px;}
.x16{left:251.335650px;}
.x15{left:259.279650px;}
.x7{left:295.014900px;}
.x17{left:357.019650px;}
.x2{left:450.961650px;}
.x8{left:463.459950px;}
.xd{left:470.757300px;}
.x9{left:484.722450px;}
.xa{left:510.237450px;}
.xc{left:512.211150px;}
.xe{left:526.378413px;}
.x4{left:559.738800px;}
.xb{left:833.705400px;}
@media print{
.v3{vertical-align:-9.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.360000pt;}
.v1{vertical-align:26.666667pt;}
.ls4{letter-spacing:-3.861333pt;}
.lsa{letter-spacing:-2.346667pt;}
.ls6{letter-spacing:-1.289913pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.577066pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.528000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.742400pt;}
.lsd{letter-spacing:3.120000pt;}
.ls1{letter-spacing:4.661333pt;}
.ls0{letter-spacing:5.322667pt;}
.lse{letter-spacing:106.240000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws6b{word-spacing:-10.666667pt;}
.ws67{word-spacing:-8.320000pt;}
.ws98{word-spacing:-2.880000pt;}
.ws8a{word-spacing:-2.256000pt;}
.ws4a{word-spacing:-2.208000pt;}
.ws5{word-spacing:-2.112000pt;}
.wsa5{word-spacing:-2.064000pt;}
.ws93{word-spacing:-2.016000pt;}
.ws18{word-spacing:-1.968000pt;}
.ws58{word-spacing:-1.872000pt;}
.ws3c{word-spacing:-1.776000pt;}
.ws3d{word-spacing:-1.728000pt;}
.ws91{word-spacing:-1.680000pt;}
.ws8{word-spacing:-1.632000pt;}
.ws5d{word-spacing:-1.578667pt;}
.ws9e{word-spacing:-1.536000pt;}
.ws4{word-spacing:-1.440000pt;}
.ws3a{word-spacing:-1.392000pt;}
.ws78{word-spacing:-1.248000pt;}
.ws5b{word-spacing:-1.104000pt;}
.ws2d{word-spacing:-1.056000pt;}
.ws49{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.864000pt;}
.ws2a{word-spacing:-0.816000pt;}
.ws44{word-spacing:-0.810667pt;}
.ws81{word-spacing:-0.768000pt;}
.ws9a{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.528000pt;}
.ws57{word-spacing:-0.480000pt;}
.ws37{word-spacing:-0.432000pt;}
.ws23{word-spacing:-0.384000pt;}
.ws62{word-spacing:-0.336000pt;}
.ws1e{word-spacing:-0.144000pt;}
.ws8c{word-spacing:-0.096000pt;}
.ws56{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws76{word-spacing:0.144000pt;}
.ws77{word-spacing:0.192000pt;}
.ws16{word-spacing:0.240000pt;}
.ws83{word-spacing:0.336000pt;}
.ws35{word-spacing:0.432000pt;}
.ws2b{word-spacing:0.480000pt;}
.ws32{word-spacing:0.528000pt;}
.ws43{word-spacing:0.577066pt;}
.wsd{word-spacing:0.624000pt;}
.ws6{word-spacing:0.666667pt;}
.ws26{word-spacing:0.672000pt;}
.ws29{word-spacing:0.720000pt;}
.ws4c{word-spacing:0.816000pt;}
.wsf{word-spacing:0.864000pt;}
.ws99{word-spacing:0.960000pt;}
.wse{word-spacing:1.056000pt;}
.ws8d{word-spacing:1.104000pt;}
.ws79{word-spacing:1.152000pt;}
.ws8e{word-spacing:1.248000pt;}
.ws42{word-spacing:1.289913pt;}
.ws61{word-spacing:1.344000pt;}
.wsa{word-spacing:1.392000pt;}
.ws88{word-spacing:1.440000pt;}
.ws17{word-spacing:1.488000pt;}
.ws40{word-spacing:1.536000pt;}
.wsae{word-spacing:1.584000pt;}
.ws5a{word-spacing:1.776000pt;}
.ws86{word-spacing:1.824000pt;}
.ws1b{word-spacing:1.872000pt;}
.ws60{word-spacing:2.064000pt;}
.ws82{word-spacing:2.208000pt;}
.ws9d{word-spacing:2.256000pt;}
.ws70{word-spacing:2.304000pt;}
.ws80{word-spacing:2.400000pt;}
.wsb{word-spacing:2.448000pt;}
.ws24{word-spacing:2.496000pt;}
.ws5f{word-spacing:2.544000pt;}
.ws27{word-spacing:2.592000pt;}
.ws8b{word-spacing:2.640000pt;}
.ws4b{word-spacing:2.688000pt;}
.ws7d{word-spacing:2.736000pt;}
.ws21{word-spacing:2.784000pt;}
.ws1c{word-spacing:2.832000pt;}
.ws30{word-spacing:2.976000pt;}
.ws3{word-spacing:3.072000pt;}
.ws5c{word-spacing:3.120000pt;}
.ws89{word-spacing:3.168000pt;}
.ws90{word-spacing:3.216000pt;}
.ws31{word-spacing:3.264000pt;}
.wsc{word-spacing:3.312000pt;}
.ws87{word-spacing:3.456000pt;}
.ws14{word-spacing:3.504000pt;}
.ws36{word-spacing:3.552000pt;}
.ws3f{word-spacing:3.600000pt;}
.ws38{word-spacing:3.648000pt;}
.ws75{word-spacing:3.744000pt;}
.ws11{word-spacing:3.792000pt;}
.ws7e{word-spacing:3.888000pt;}
.ws97{word-spacing:3.936000pt;}
.ws13{word-spacing:3.984000pt;}
.ws2e{word-spacing:4.032000pt;}
.wsad{word-spacing:4.128000pt;}
.ws15{word-spacing:4.176000pt;}
.ws19{word-spacing:4.224000pt;}
.wsa3{word-spacing:4.272000pt;}
.ws4e{word-spacing:4.320000pt;}
.ws92{word-spacing:4.416000pt;}
.ws9c{word-spacing:4.512000pt;}
.ws10{word-spacing:4.608000pt;}
.ws2{word-spacing:4.656000pt;}
.wsaa{word-spacing:4.752000pt;}
.ws2f{word-spacing:4.800000pt;}
.ws7c{word-spacing:4.848000pt;}
.ws25{word-spacing:4.944000pt;}
.ws96{word-spacing:5.184000pt;}
.ws71{word-spacing:5.376000pt;}
.ws5e{word-spacing:5.424000pt;}
.ws3e{word-spacing:5.472000pt;}
.ws94{word-spacing:5.520000pt;}
.ws63{word-spacing:5.616000pt;}
.ws8f{word-spacing:5.664000pt;}
.wsa9{word-spacing:5.712000pt;}
.ws9b{word-spacing:5.760000pt;}
.ws33{word-spacing:5.856000pt;}
.ws39{word-spacing:5.904000pt;}
.ws12{word-spacing:5.952000pt;}
.ws85{word-spacing:6.096000pt;}
.wsa0{word-spacing:6.240000pt;}
.ws9{word-spacing:6.288000pt;}
.wsa6{word-spacing:6.384000pt;}
.ws7a{word-spacing:6.528000pt;}
.ws1f{word-spacing:6.816000pt;}
.ws22{word-spacing:6.912000pt;}
.ws7b{word-spacing:6.960000pt;}
.ws50{word-spacing:7.056000pt;}
.ws4d{word-spacing:7.440000pt;}
.ws72{word-spacing:7.584000pt;}
.ws9f{word-spacing:7.632000pt;}
.ws41{word-spacing:7.776000pt;}
.wsa4{word-spacing:7.824000pt;}
.ws1a{word-spacing:7.872000pt;}
.ws95{word-spacing:8.064000pt;}
.wsa7{word-spacing:8.208000pt;}
.ws3b{word-spacing:8.256000pt;}
.ws4f{word-spacing:8.592000pt;}
.wsa1{word-spacing:8.832000pt;}
.ws74{word-spacing:8.880000pt;}
.ws51{word-spacing:8.976000pt;}
.ws59{word-spacing:9.072000pt;}
.ws84{word-spacing:9.120000pt;}
.ws7f{word-spacing:9.264000pt;}
.wsab{word-spacing:9.360000pt;}
.wsac{word-spacing:9.456000pt;}
.wsa2{word-spacing:10.128000pt;}
.ws73{word-spacing:11.760000pt;}
.ws1d{word-spacing:11.952000pt;}
.ws7{word-spacing:12.000000pt;}
.ws34{word-spacing:12.432000pt;}
.ws20{word-spacing:13.968000pt;}
.wsa8{word-spacing:14.304000pt;}
.ws6c{word-spacing:52.010667pt;}
.ws6f{word-spacing:52.821333pt;}
.ws66{word-spacing:63.402667pt;}
.ws6a{word-spacing:72.320000pt;}
.ws6d{word-spacing:73.130667pt;}
.ws69{word-spacing:84.736000pt;}
.ws64{word-spacing:117.845333pt;}
.ws65{word-spacing:138.880000pt;}
.ws6e{word-spacing:163.200000pt;}
.ws52{word-spacing:171.861333pt;}
.ws53{word-spacing:184.789333pt;}
.ws45{word-spacing:193.237333pt;}
.ws48{word-spacing:209.237333pt;}
.ws55{word-spacing:210.602667pt;}
.ws47{word-spacing:215.082667pt;}
.ws54{word-spacing:221.269333pt;}
.ws46{word-spacing:226.389333pt;}
.ws68{word-spacing:265.646933pt;}
._b{margin-left:-12.000000pt;}
._4a{margin-left:-8.044800pt;}
._49{margin-left:-6.350400pt;}
._7{margin-left:-3.954688pt;}
._0{margin-left:-2.984000pt;}
._1{margin-left:-1.584000pt;}
._4{width:1.345600pt;}
._2{width:2.918400pt;}
._3{width:3.915200pt;}
._6{width:5.338656pt;}
._5{width:6.560016pt;}
._9{width:7.502400pt;}
._8{width:8.688000pt;}
._a{width:10.166400pt;}
._4d{width:11.078400pt;}
._48{width:13.003200pt;}
._4c{width:14.308800pt;}
._4b{width:20.265600pt;}
._42{width:31.104000pt;}
._43{width:41.344000pt;}
._44{width:42.538667pt;}
._e{width:55.594667pt;}
._40{width:62.920021pt;}
._46{width:64.413355pt;}
._38{width:75.858667pt;}
._3d{width:84.778667pt;}
._3c{width:87.082667pt;}
._3e{width:97.322667pt;}
._21{width:103.381333pt;}
._2c{width:121.728000pt;}
._41{width:138.197333pt;}
._f{width:139.264000pt;}
._20{width:142.976000pt;}
._3a{width:144.000000pt;}
._3b{width:154.666667pt;}
._36{width:163.840000pt;}
._3f{width:166.145067pt;}
._47{width:168.264021pt;}
._29{width:195.452493pt;}
._1f{width:198.570667pt;}
._15{width:199.680000pt;}
._1a{width:205.693333pt;}
._11{width:210.218667pt;}
._16{width:219.904000pt;}
._19{width:221.056000pt;}
._1b{width:223.872000pt;}
._17{width:224.853333pt;}
._13{width:230.570667pt;}
._2f{width:231.936000pt;}
._1d{width:235.904000pt;}
._45{width:237.226667pt;}
._1c{width:238.848000pt;}
._10{width:240.640000pt;}
._39{width:244.736000pt;}
._12{width:246.570667pt;}
._14{width:252.970667pt;}
._1e{width:260.552021pt;}
._18{width:283.562667pt;}
._c{width:297.048841pt;}
._34{width:348.373333pt;}
._37{width:385.194667pt;}
._33{width:520.149333pt;}
._32{width:597.333333pt;}
._31{width:613.205333pt;}
._30{width:616.021333pt;}
._2d{width:626.048000pt;}
._d{width:639.530667pt;}
._28{width:640.426667pt;}
._2e{width:667.773333pt;}
._22{width:697.173333pt;}
._27{width:708.522667pt;}
._26{width:724.394667pt;}
._25{width:725.632000pt;}
._23{width:747.904000pt;}
._35{width:768.114688pt;}
._2a{width:771.157333pt;}
._24{width:778.962667pt;}
._2b{width:816.981333pt;}
.fs6{font-size:33.945067pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:3.905600pt;}
.y105{bottom:7.058533pt;}
.y103{bottom:21.458533pt;}
.y34{bottom:40.421867pt;}
.y31{bottom:74.189067pt;}
.y101{bottom:84.020133pt;}
.y173{bottom:84.037467pt;}
.y1a6{bottom:84.049467pt;}
.y230{bottom:84.069467pt;}
.y6d{bottom:84.117467pt;}
.ydc{bottom:84.129467pt;}
.y202{bottom:84.213467pt;}
.y25d{bottom:84.297467pt;}
.ya4{bottom:84.321467pt;}
.y30{bottom:85.389067pt;}
.y2e{bottom:99.905600pt;}
.y172{bottom:100.033467pt;}
.y1a5{bottom:100.045467pt;}
.y22f{bottom:100.065467pt;}
.y142{bottom:100.101467pt;}
.y6c{bottom:100.113467pt;}
.ydb{bottom:100.125467pt;}
.y201{bottom:100.209467pt;}
.y25c{bottom:100.293467pt;}
.ya3{bottom:100.317467pt;}
.y1d2{bottom:106.824667pt;}
.y100{bottom:108.353587pt;}
.y117{bottom:109.401333pt;}
.y2d{bottom:115.905600pt;}
.y171{bottom:116.029467pt;}
.y1a4{bottom:116.041467pt;}
.y22e{bottom:116.061467pt;}
.y141{bottom:116.097467pt;}
.y6b{bottom:116.109467pt;}
.yda{bottom:116.121467pt;}
.y25b{bottom:116.289467pt;}
.ya2{bottom:116.313467pt;}
.yf6{bottom:119.674267pt;}
.y1d1{bottom:129.683333pt;}
.y170{bottom:132.025467pt;}
.y1a3{bottom:132.037467pt;}
.y22d{bottom:132.057467pt;}
.y140{bottom:132.093467pt;}
.y6a{bottom:132.105467pt;}
.yd9{bottom:132.117467pt;}
.y200{bottom:132.213467pt;}
.y25a{bottom:132.285467pt;}
.ya1{bottom:132.309467pt;}
.yf7{bottom:138.530751pt;}
.y1d0{bottom:143.016667pt;}
.y2c{bottom:147.937600pt;}
.y16f{bottom:148.021467pt;}
.y1a2{bottom:148.033467pt;}
.y22c{bottom:148.053467pt;}
.y13f{bottom:148.089467pt;}
.y69{bottom:148.101467pt;}
.yd8{bottom:148.113467pt;}
.y259{bottom:148.281467pt;}
.ya0{bottom:148.305467pt;}
.yf8{bottom:157.862467pt;}
.y16e{bottom:164.017467pt;}
.y1a1{bottom:164.029467pt;}
.y22b{bottom:164.049467pt;}
.y13e{bottom:164.085467pt;}
.y68{bottom:164.097467pt;}
.yd7{bottom:164.109467pt;}
.y1ff{bottom:164.217467pt;}
.y258{bottom:164.277467pt;}
.y9f{bottom:164.301467pt;}
.y1cf{bottom:165.875333pt;}
.yf9{bottom:176.718951pt;}
.y1ce{bottom:179.208667pt;}
.y16d{bottom:180.013467pt;}
.y1a0{bottom:180.025467pt;}
.y22a{bottom:180.045467pt;}
.y13d{bottom:180.081467pt;}
.y67{bottom:180.093467pt;}
.yd6{bottom:180.105467pt;}
.y2b{bottom:180.134933pt;}
.y1fe{bottom:180.213467pt;}
.y257{bottom:180.273467pt;}
.y9e{bottom:180.297467pt;}
.yfa{bottom:195.575436pt;}
.y16c{bottom:196.009467pt;}
.y19f{bottom:196.021467pt;}
.y229{bottom:196.041467pt;}
.y13c{bottom:196.077467pt;}
.y66{bottom:196.089467pt;}
.yd5{bottom:196.101467pt;}
.y2a{bottom:196.130933pt;}
.y1fd{bottom:196.209467pt;}
.y256{bottom:196.269467pt;}
.y9d{bottom:196.293467pt;}
.y1cd{bottom:202.067333pt;}
.y16b{bottom:212.005467pt;}
.y19e{bottom:212.017467pt;}
.y228{bottom:212.037467pt;}
.y13b{bottom:212.073467pt;}
.y65{bottom:212.085467pt;}
.yd4{bottom:212.097467pt;}
.y29{bottom:212.126933pt;}
.y1fc{bottom:212.205467pt;}
.y255{bottom:212.265467pt;}
.y9c{bottom:212.289467pt;}
.yfb{bottom:214.907151pt;}
.y1cc{bottom:215.400667pt;}
.y16a{bottom:228.001467pt;}
.y19d{bottom:228.013467pt;}
.y227{bottom:228.033467pt;}
.y13a{bottom:228.069467pt;}
.y64{bottom:228.081467pt;}
.yd3{bottom:228.093467pt;}
.y28{bottom:228.122933pt;}
.y1fb{bottom:228.201467pt;}
.y254{bottom:228.261467pt;}
.y9b{bottom:228.285467pt;}
.yfc{bottom:233.763636pt;}
.y1cb{bottom:238.259333pt;}
.y169{bottom:243.997467pt;}
.y19c{bottom:244.009467pt;}
.y226{bottom:244.029467pt;}
.y139{bottom:244.065467pt;}
.y63{bottom:244.077467pt;}
.yd2{bottom:244.089467pt;}
.y27{bottom:244.118933pt;}
.y253{bottom:244.257467pt;}
.y9a{bottom:244.281467pt;}
.y1ca{bottom:251.592667pt;}
.yfd{bottom:253.095351pt;}
.y168{bottom:259.993467pt;}
.y19b{bottom:260.005467pt;}
.y225{bottom:260.025467pt;}
.y138{bottom:260.061467pt;}
.y62{bottom:260.073467pt;}
.yd1{bottom:260.085467pt;}
.y26{bottom:260.114933pt;}
.y1fa{bottom:260.205467pt;}
.y252{bottom:260.253467pt;}
.y99{bottom:260.277467pt;}
.yfe{bottom:271.951836pt;}
.y1c9{bottom:274.451333pt;}
.y19a{bottom:276.001467pt;}
.y224{bottom:276.021467pt;}
.y137{bottom:276.057467pt;}
.y61{bottom:276.069467pt;}
.yd0{bottom:276.081467pt;}
.y25{bottom:276.110933pt;}
.y251{bottom:276.249467pt;}
.y98{bottom:276.273467pt;}
.yff{bottom:290.808320pt;}
.y167{bottom:291.997467pt;}
.y223{bottom:292.017467pt;}
.y136{bottom:292.053467pt;}
.y60{bottom:292.065467pt;}
.ycf{bottom:292.077467pt;}
.y24{bottom:292.106667pt;}
.y1f9{bottom:292.209467pt;}
.y250{bottom:292.245467pt;}
.y97{bottom:292.269467pt;}
.y1c8{bottom:297.310000pt;}
.y199{bottom:307.993467pt;}
.y222{bottom:308.013467pt;}
.y135{bottom:308.049467pt;}
.y5f{bottom:308.061467pt;}
.yce{bottom:308.073467pt;}
.y23{bottom:308.102667pt;}
.y1f8{bottom:308.205467pt;}
.y24f{bottom:308.241467pt;}
.y96{bottom:308.265467pt;}
.y1c7{bottom:311.710000pt;}
.y22{bottom:323.905600pt;}
.y198{bottom:323.989467pt;}
.y166{bottom:324.001467pt;}
.y221{bottom:324.009467pt;}
.y134{bottom:324.045467pt;}
.y5e{bottom:324.057467pt;}
.ycd{bottom:324.069467pt;}
.y1f7{bottom:324.201467pt;}
.yf5{bottom:324.237467pt;}
.y95{bottom:324.261467pt;}
.y1c6{bottom:339.933467pt;}
.y197{bottom:339.985467pt;}
.y165{bottom:339.997467pt;}
.y220{bottom:340.005467pt;}
.y133{bottom:340.041467pt;}
.y5d{bottom:340.053467pt;}
.ycc{bottom:340.065467pt;}
.y1f6{bottom:340.197467pt;}
.yf4{bottom:340.233467pt;}
.y94{bottom:340.257467pt;}
.y21{bottom:355.229600pt;}
.y1c5{bottom:355.929467pt;}
.y196{bottom:355.981467pt;}
.y164{bottom:355.993467pt;}
.y21f{bottom:356.001467pt;}
.y132{bottom:356.037467pt;}
.y5c{bottom:356.049467pt;}
.ycb{bottom:356.061467pt;}
.y1f5{bottom:356.193467pt;}
.yf3{bottom:356.229467pt;}
.y93{bottom:356.253467pt;}
.y116{bottom:371.921467pt;}
.y1c4{bottom:371.925467pt;}
.y195{bottom:371.977467pt;}
.y163{bottom:371.989467pt;}
.y21e{bottom:371.997467pt;}
.y131{bottom:372.033467pt;}
.y5b{bottom:372.045467pt;}
.yca{bottom:372.057467pt;}
.y1f4{bottom:372.189467pt;}
.yf2{bottom:372.225467pt;}
.y92{bottom:372.249467pt;}
.y20{bottom:373.900267pt;}
.y115{bottom:387.917467pt;}
.y1c3{bottom:387.921467pt;}
.y194{bottom:387.973467pt;}
.y162{bottom:387.985467pt;}
.y21d{bottom:387.993467pt;}
.y130{bottom:388.029467pt;}
.y5a{bottom:388.041467pt;}
.yc9{bottom:388.053467pt;}
.y1f3{bottom:388.185467pt;}
.yf1{bottom:388.221467pt;}
.y91{bottom:388.245467pt;}
.y114{bottom:403.913467pt;}
.y1c2{bottom:403.917467pt;}
.y193{bottom:403.969467pt;}
.y161{bottom:403.981467pt;}
.y21c{bottom:403.989467pt;}
.y1f{bottom:403.997600pt;}
.y12f{bottom:404.025467pt;}
.y59{bottom:404.037467pt;}
.yc8{bottom:404.049467pt;}
.y1f2{bottom:404.181467pt;}
.yf0{bottom:404.217467pt;}
.y90{bottom:404.241467pt;}
.y113{bottom:419.909467pt;}
.y1c1{bottom:419.913467pt;}
.y192{bottom:419.965467pt;}
.y160{bottom:419.977467pt;}
.y21b{bottom:419.985467pt;}
.y1e{bottom:419.993600pt;}
.y12e{bottom:420.021467pt;}
.y58{bottom:420.033467pt;}
.yc7{bottom:420.045467pt;}
.y1f1{bottom:420.177467pt;}
.yef{bottom:420.213467pt;}
.y8f{bottom:420.237467pt;}
.y112{bottom:435.905467pt;}
.y1c0{bottom:435.909467pt;}
.y191{bottom:435.961467pt;}
.y15f{bottom:435.973467pt;}
.y21a{bottom:435.981467pt;}
.y12d{bottom:436.017467pt;}
.y57{bottom:436.029467pt;}
.yc6{bottom:436.041467pt;}
.y1f0{bottom:436.173467pt;}
.yee{bottom:436.209467pt;}
.y8e{bottom:436.233467pt;}
.y1bf{bottom:451.905467pt;}
.y190{bottom:451.957467pt;}
.y15e{bottom:451.969467pt;}
.y219{bottom:451.977467pt;}
.y1d{bottom:451.997600pt;}
.y12c{bottom:452.013467pt;}
.y56{bottom:452.025467pt;}
.yc5{bottom:452.037467pt;}
.y1ef{bottom:452.169467pt;}
.yed{bottom:452.205467pt;}
.y8d{bottom:452.229467pt;}
.y18f{bottom:467.953467pt;}
.y15d{bottom:467.965467pt;}
.y218{bottom:467.973467pt;}
.y1c{bottom:467.993600pt;}
.y12b{bottom:468.009467pt;}
.y55{bottom:468.021467pt;}
.yc4{bottom:468.033467pt;}
.y1ee{bottom:468.165467pt;}
.yec{bottom:468.201467pt;}
.y8c{bottom:468.225467pt;}
.y111{bottom:477.079067pt;}
.y18e{bottom:483.949467pt;}
.y15c{bottom:483.961467pt;}
.y217{bottom:483.969467pt;}
.y1b{bottom:483.989600pt;}
.y12a{bottom:484.005467pt;}
.y54{bottom:484.017467pt;}
.yc3{bottom:484.029467pt;}
.y1ed{bottom:484.161467pt;}
.yeb{bottom:484.197467pt;}
.y8b{bottom:484.221467pt;}
.y1be{bottom:495.353333pt;}
.y110{bottom:499.937733pt;}
.y18d{bottom:499.945467pt;}
.y15b{bottom:499.957467pt;}
.y216{bottom:499.965467pt;}
.y1a{bottom:499.985600pt;}
.y129{bottom:500.001467pt;}
.y53{bottom:500.013467pt;}
.yc2{bottom:500.025467pt;}
.y1ec{bottom:500.157467pt;}
.y24e{bottom:500.193467pt;}
.y8a{bottom:500.217467pt;}
.y1bc{bottom:510.564000pt;}
.y18c{bottom:515.941467pt;}
.y15a{bottom:515.953467pt;}
.y215{bottom:515.961467pt;}
.y19{bottom:515.981600pt;}
.y128{bottom:515.997467pt;}
.y52{bottom:516.009467pt;}
.yc1{bottom:516.021467pt;}
.y24d{bottom:516.189467pt;}
.yea{bottom:516.201467pt;}
.y89{bottom:516.213467pt;}
.y10f{bottom:522.796400pt;}
.y1bd{bottom:525.774667pt;}
.y18b{bottom:531.937467pt;}
.y159{bottom:531.949467pt;}
.y214{bottom:531.957467pt;}
.y18{bottom:531.977600pt;}
.y127{bottom:531.993467pt;}
.y51{bottom:532.005467pt;}
.yc0{bottom:532.017467pt;}
.y1eb{bottom:532.161467pt;}
.y24c{bottom:532.185467pt;}
.y88{bottom:532.209467pt;}
.y10e{bottom:545.655067pt;}
.y18a{bottom:547.933467pt;}
.y158{bottom:547.945467pt;}
.y213{bottom:547.953467pt;}
.y17{bottom:547.973600pt;}
.y126{bottom:547.989467pt;}
.y50{bottom:548.001467pt;}
.ybf{bottom:548.013467pt;}
.y24b{bottom:548.181467pt;}
.y87{bottom:548.205467pt;}
.y1bb{bottom:556.196000pt;}
.y189{bottom:563.929467pt;}
.y157{bottom:563.941467pt;}
.y212{bottom:563.949467pt;}
.y16{bottom:563.969600pt;}
.y125{bottom:563.985467pt;}
.y4f{bottom:563.997467pt;}
.ybe{bottom:564.009467pt;}
.y1ea{bottom:564.165467pt;}
.y24a{bottom:564.177467pt;}
.y86{bottom:564.201467pt;}
.y10d{bottom:568.513733pt;}
.y1b9{bottom:571.406667pt;}
.y188{bottom:579.925467pt;}
.y156{bottom:579.937467pt;}
.y211{bottom:579.945467pt;}
.y15{bottom:579.965600pt;}
.y124{bottom:579.981467pt;}
.y4e{bottom:579.993467pt;}
.ybd{bottom:580.005467pt;}
.y1e9{bottom:580.161467pt;}
.y249{bottom:580.173467pt;}
.y85{bottom:580.197467pt;}
.y1ba{bottom:586.617333pt;}
.y10c{bottom:591.372400pt;}
.y187{bottom:595.921467pt;}
.y155{bottom:595.933467pt;}
.y210{bottom:595.941467pt;}
.y14{bottom:595.961600pt;}
.y123{bottom:595.977467pt;}
.y4d{bottom:595.989467pt;}
.ybc{bottom:596.001467pt;}
.y1e8{bottom:596.157467pt;}
.y248{bottom:596.169467pt;}
.y84{bottom:596.193467pt;}
.y186{bottom:611.917467pt;}
.y154{bottom:611.929467pt;}
.y20f{bottom:611.937467pt;}
.y13{bottom:611.957600pt;}
.y122{bottom:611.973467pt;}
.y4c{bottom:611.985467pt;}
.ybb{bottom:611.997467pt;}
.y1e7{bottom:612.153467pt;}
.y247{bottom:612.165467pt;}
.y83{bottom:612.189467pt;}
.y10b{bottom:614.231067pt;}
.y1b8{bottom:617.177333pt;}
.y185{bottom:627.913467pt;}
.y153{bottom:627.925467pt;}
.y20e{bottom:627.933467pt;}
.y12{bottom:627.953600pt;}
.y121{bottom:627.969467pt;}
.y4b{bottom:627.981467pt;}
.yba{bottom:627.993467pt;}
.y1e6{bottom:628.149467pt;}
.y246{bottom:628.161467pt;}
.ye9{bottom:628.185467pt;}
.y10a{bottom:637.089733pt;}
.y1b7{bottom:640.174667pt;}
.y184{bottom:643.909467pt;}
.y152{bottom:643.921467pt;}
.y20d{bottom:643.929467pt;}
.y120{bottom:643.965467pt;}
.y4a{bottom:643.977467pt;}
.yb9{bottom:643.989467pt;}
.y1e5{bottom:644.145467pt;}
.y245{bottom:644.157467pt;}
.ye8{bottom:644.181467pt;}
.y82{bottom:644.193467pt;}
.y1b6{bottom:654.574667pt;}
.yc{bottom:659.465600pt;}
.y183{bottom:659.905467pt;}
.y151{bottom:659.917467pt;}
.y20c{bottom:659.925467pt;}
.y109{bottom:659.948400pt;}
.y11f{bottom:659.961467pt;}
.y49{bottom:659.973467pt;}
.yb8{bottom:659.985467pt;}
.y1e4{bottom:660.141467pt;}
.y244{bottom:660.153467pt;}
.ye7{bottom:660.177467pt;}
.y81{bottom:660.189467pt;}
.y1b5{bottom:668.974667pt;}
.yb{bottom:675.461600pt;}
.y150{bottom:675.913467pt;}
.y20b{bottom:675.921467pt;}
.y11e{bottom:675.957467pt;}
.y48{bottom:675.969467pt;}
.yb7{bottom:675.981467pt;}
.y1e3{bottom:676.137467pt;}
.y243{bottom:676.149467pt;}
.y108{bottom:682.807067pt;}
.y182{bottom:691.141067pt;}
.ya{bottom:691.457600pt;}
.y14f{bottom:691.909467pt;}
.y20a{bottom:691.917467pt;}
.y11d{bottom:691.953467pt;}
.y47{bottom:691.965467pt;}
.yb6{bottom:691.977467pt;}
.y242{bottom:692.145467pt;}
.ye6{bottom:692.181467pt;}
.y80{bottom:692.193467pt;}
.y107{bottom:705.665733pt;}
.y9{bottom:707.453600pt;}
.y14e{bottom:707.905467pt;}
.y209{bottom:707.913467pt;}
.y11c{bottom:707.949467pt;}
.y46{bottom:707.961467pt;}
.yb5{bottom:707.973467pt;}
.y1e2{bottom:708.141467pt;}
.ye5{bottom:708.177467pt;}
.y7f{bottom:708.189467pt;}
.y1b4{bottom:709.022000pt;}
.y181{bottom:713.999733pt;}
.y106{bottom:718.999067pt;}
.y1b3{bottom:722.355333pt;}
.y208{bottom:723.909467pt;}
.y11b{bottom:723.945467pt;}
.y45{bottom:723.957467pt;}
.yb4{bottom:723.969467pt;}
.y241{bottom:724.137467pt;}
.ye4{bottom:724.173467pt;}
.y7e{bottom:724.185467pt;}
.y8{bottom:727.229600pt;}
.y102{bottom:734.802667pt;}
.y180{bottom:736.858400pt;}
.y207{bottom:739.905467pt;}
.y11a{bottom:739.941467pt;}
.y44{bottom:739.953467pt;}
.yb3{bottom:739.965467pt;}
.y240{bottom:740.133467pt;}
.y1e1{bottom:740.145467pt;}
.ye3{bottom:740.169467pt;}
.y7d{bottom:740.181467pt;}
.y1b2{bottom:745.214000pt;}
.y14d{bottom:750.278667pt;}
.y119{bottom:755.937467pt;}
.y43{bottom:755.949467pt;}
.yb2{bottom:755.961467pt;}
.y23f{bottom:756.129467pt;}
.y1e0{bottom:756.141467pt;}
.ye2{bottom:756.165467pt;}
.y7c{bottom:756.177467pt;}
.y104{bottom:756.261200pt;}
.y1b1{bottom:758.547333pt;}
.y17f{bottom:759.717067pt;}
.y7{bottom:762.125600pt;}
.y11{bottom:762.161600pt;}
.y206{bottom:771.909467pt;}
.y118{bottom:771.933467pt;}
.y42{bottom:771.945467pt;}
.yb1{bottom:771.957467pt;}
.y23e{bottom:772.125467pt;}
.y1df{bottom:772.137467pt;}
.ye1{bottom:772.161467pt;}
.y7b{bottom:772.173467pt;}
.y14c{bottom:773.137333pt;}
.y6{bottom:778.121600pt;}
.y10{bottom:778.157600pt;}
.y1b0{bottom:781.406000pt;}
.y17e{bottom:782.575733pt;}
.y41{bottom:787.941467pt;}
.yb0{bottom:787.953467pt;}
.y23d{bottom:788.121467pt;}
.y1de{bottom:788.133467pt;}
.ye0{bottom:788.157467pt;}
.y7a{bottom:788.169467pt;}
.y5{bottom:794.117600pt;}
.yf{bottom:794.153600pt;}
.y14b{bottom:795.996000pt;}
.y205{bottom:803.913467pt;}
.y40{bottom:803.937467pt;}
.yaf{bottom:803.949467pt;}
.y23c{bottom:804.117467pt;}
.y1dd{bottom:804.129467pt;}
.ydf{bottom:804.153467pt;}
.y79{bottom:804.165467pt;}
.y1af{bottom:804.264667pt;}
.y17d{bottom:805.434400pt;}
.y4{bottom:810.113600pt;}
.ye{bottom:810.149600pt;}
.y14a{bottom:818.854667pt;}
.y204{bottom:819.909467pt;}
.y3f{bottom:819.933467pt;}
.yae{bottom:819.945467pt;}
.y23b{bottom:820.113467pt;}
.y1dc{bottom:820.125467pt;}
.yde{bottom:820.149467pt;}
.y78{bottom:820.161467pt;}
.y1ae{bottom:827.123333pt;}
.y17c{bottom:828.293067pt;}
.y3{bottom:829.889600pt;}
.yd{bottom:829.925600pt;}
.y3e{bottom:835.929467pt;}
.yad{bottom:835.941467pt;}
.y23a{bottom:836.109467pt;}
.y1db{bottom:836.121467pt;}
.y77{bottom:836.157467pt;}
.y149{bottom:841.713333pt;}
.y1ad{bottom:849.982000pt;}
.y17b{bottom:851.151733pt;}
.y203{bottom:851.913467pt;}
.y3d{bottom:851.925467pt;}
.yac{bottom:851.937467pt;}
.y239{bottom:852.105467pt;}
.y1da{bottom:852.117467pt;}
.y76{bottom:852.153467pt;}
.y1ac{bottom:856.648667pt;}
.y148{bottom:864.572000pt;}
.y2{bottom:864.787200pt;}
.y3c{bottom:867.921467pt;}
.yab{bottom:867.933467pt;}
.y238{bottom:868.101467pt;}
.y1d9{bottom:868.113467pt;}
.y75{bottom:868.149467pt;}
.y17a{bottom:874.010400pt;}
.y1a9{bottom:874.750000pt;}
.y3b{bottom:883.917467pt;}
.yaa{bottom:883.929467pt;}
.y237{bottom:884.097467pt;}
.y1d8{bottom:884.109467pt;}
.y74{bottom:884.145467pt;}
.y1ab{bottom:886.184667pt;}
.y147{bottom:887.430667pt;}
.y1{bottom:888.787200pt;}
.y179{bottom:896.869067pt;}
.y1aa{bottom:899.518000pt;}
.y3a{bottom:899.913467pt;}
.ya9{bottom:899.925467pt;}
.y236{bottom:900.093467pt;}
.y1d7{bottom:900.105467pt;}
.y73{bottom:900.141467pt;}
.y146{bottom:910.289333pt;}
.y178{bottom:911.269067pt;}
.y39{bottom:915.909467pt;}
.ya8{bottom:915.921467pt;}
.y235{bottom:916.089467pt;}
.y1d6{bottom:916.101467pt;}
.y72{bottom:916.137467pt;}
.y1a8{bottom:922.376667pt;}
.y2f{bottom:930.305467pt;}
.y38{bottom:931.905467pt;}
.ya7{bottom:931.917467pt;}
.y177{bottom:932.053467pt;}
.y234{bottom:932.085467pt;}
.y1d5{bottom:932.097467pt;}
.y71{bottom:932.133467pt;}
.y145{bottom:933.148000pt;}
.y1a7{bottom:935.710000pt;}
.y37{bottom:947.901467pt;}
.ya6{bottom:947.913467pt;}
.y176{bottom:948.049467pt;}
.y233{bottom:948.081467pt;}
.y1d4{bottom:948.093467pt;}
.y70{bottom:948.129467pt;}
.y144{bottom:957.574667pt;}
.ya5{bottom:963.909467pt;}
.y175{bottom:964.045467pt;}
.y232{bottom:964.077467pt;}
.y6f{bottom:964.125467pt;}
.y143{bottom:971.974667pt;}
.y36{bottom:979.905467pt;}
.y174{bottom:980.041467pt;}
.y231{bottom:980.073467pt;}
.y1d3{bottom:980.097467pt;}
.y6e{bottom:980.121467pt;}
.ydd{bottom:980.133467pt;}
.y33{bottom:1011.760400pt;}
.y35{bottom:1011.761867pt;}
.hf{height:22.856566pt;}
.h9{height:30.293333pt;}
.h14{height:31.061333pt;}
.h10{height:31.291667pt;}
.ha{height:34.526042pt;}
.h17{height:34.828125pt;}
.he{height:34.848000pt;}
.hc{height:34.944000pt;}
.h11{height:36.432000pt;}
.h3{height:37.152000pt;}
.h4{height:37.728000pt;}
.h13{height:38.272000pt;}
.h8{height:38.826667pt;}
.h12{height:39.040000pt;}
.h6{height:42.825521pt;}
.hb{height:43.056000pt;}
.hd{height:43.920000pt;}
.h5{height:44.390625pt;}
.h7{height:44.391692pt;}
.h16{height:51.547500pt;}
.h15{height:57.728000pt;}
.h2{height:58.240000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:340.157333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:41.574800pt;}
.x10{left:48.774800pt;}
.x3{left:60.474800pt;}
.x13{left:70.204133pt;}
.xf{left:76.241333pt;}
.x12{left:80.987200pt;}
.x1a{left:84.508133pt;}
.x5{left:96.132800pt;}
.x11{left:112.636133pt;}
.x14{left:141.862800pt;}
.x18{left:153.308133pt;}
.x19{left:186.694800pt;}
.x6{left:203.683200pt;}
.x16{left:223.409467pt;}
.x15{left:230.470800pt;}
.x7{left:262.235467pt;}
.x17{left:317.350800pt;}
.x2{left:400.854800pt;}
.x8{left:411.964400pt;}
.xd{left:418.450933pt;}
.x9{left:430.864400pt;}
.xa{left:453.544400pt;}
.xc{left:455.298800pt;}
.xe{left:467.891923pt;}
.x4{left:497.545600pt;}
.xb{left:741.071467pt;}
}




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