
    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_64d7717e94179e1f658ae6ae.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_092ed1f1d07d68a06f76de74.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022949;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_86909c123c9c72b2e63a801e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.022949;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_b949fa040f5ec39c5cc62c75.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_351afc5479144d16d5f1caaf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.025879;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_8d741df4c9fd96751397c284.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_6b49c0a83e715532cb09c1c4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.947266;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_89e031da0a12b7d87b6b49e8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.022949;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_642ecf4c6ac84f4d7917406a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.025879;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_f9f72cf2649c01ad96db3dd9.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c11d6a09096ca281a8eaae7e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_32b2e14145e417a9f6f8fa7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.944824;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_81f3902257879e965cdbf78a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666992;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_a40b17f5ccb5f8461761ce9a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.912000;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_25a88ac6d5db3909e6fe667a.woff')format("woff");}.fff{font-family:fff;line-height:0.911000;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_8f2a77996ca777c1842dd26f.woff')format("woff");}.ff10{font-family:ff10;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;}
.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:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:47.760000px;}
.ls7{letter-spacing:-2.400000px;}
.ls8{letter-spacing:-1.800000px;}
.ls20{letter-spacing:-1.512000px;}
.ls21{letter-spacing:-1.368000px;}
.ls24{letter-spacing:-1.224000px;}
.ls25{letter-spacing:-1.152000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.864000px;}
.ls23{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.404400px;}
.lsb{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.lse{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.864000px;}
.ls30{letter-spacing:0.936000px;}
.ls29{letter-spacing:1.008000px;}
.ls2a{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.512000px;}
.ls16{letter-spacing:3.408000px;}
.ls9{letter-spacing:4.320000px;}
.ls31{letter-spacing:4.752000px;}
.ls19{letter-spacing:5.926800px;}
.ls2e{letter-spacing:7.416000px;}
.ls26{letter-spacing:8.092800px;}
.ls1{letter-spacing:8.460000px;}
.ls2f{letter-spacing:9.208800px;}
.ls2d{letter-spacing:10.382400px;}
.lsc{letter-spacing:10.584000px;}
.ls0{letter-spacing:10.740000px;}
.ls27{letter-spacing:10.749600px;}
.ls17{letter-spacing:23.112000px;}
.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;}
}
.ws65{word-spacing:-72.432000px;}
.ws98{word-spacing:-72.360000px;}
.ws4a{word-spacing:-60.000000px;}
.wsaa{word-spacing:-48.000000px;}
.ws1{word-spacing:-25.320000px;}
.ws76{word-spacing:-20.808000px;}
.ws75{word-spacing:-20.592000px;}
.ws64{word-spacing:-20.232000px;}
.ws7b{word-spacing:-20.160000px;}
.ws78{word-spacing:-18.792000px;}
.ws97{word-spacing:-18.648000px;}
.ws99{word-spacing:-18.576000px;}
.ws8b{word-spacing:-18.432000px;}
.ws77{word-spacing:-18.360000px;}
.ws7a{word-spacing:-18.288000px;}
.ws1f{word-spacing:-18.216000px;}
.ws20{word-spacing:-18.144000px;}
.ws79{word-spacing:-18.072000px;}
.ws21{word-spacing:-17.856000px;}
.ws34{word-spacing:-17.784000px;}
.ws66{word-spacing:-17.640000px;}
.ws57{word-spacing:-17.496000px;}
.ws6d{word-spacing:-16.992000px;}
.ws5b{word-spacing:-16.860000px;}
.ws6b{word-spacing:-16.848000px;}
.ws5a{word-spacing:-16.522800px;}
.ws6c{word-spacing:-16.416000px;}
.ws9e{word-spacing:-15.174000px;}
.ws67{word-spacing:-14.820000px;}
.wsad{word-spacing:-14.220000px;}
.ws35{word-spacing:-14.162400px;}
.wsa9{word-spacing:-13.488000px;}
.ws2{word-spacing:-11.856000px;}
.ws58{word-spacing:-8.640000px;}
.ws0{word-spacing:-8.424000px;}
.ws6e{word-spacing:-8.340000px;}
.wsa8{word-spacing:-4.752000px;}
.ws9{word-spacing:-4.320000px;}
.ws70{word-spacing:-2.016000px;}
.ws63{word-spacing:-1.800000px;}
.ws88{word-spacing:-1.080000px;}
.ws56{word-spacing:-0.720000px;}
.ws96{word-spacing:-0.648000px;}
.ws28{word-spacing:-0.504000px;}
.ws7d{word-spacing:-0.360000px;}
.ws5{word-spacing:-0.120000px;}
.ws6{word-spacing:0.000000px;}
.ws2b{word-spacing:0.072000px;}
.ws2f{word-spacing:0.144000px;}
.ws48{word-spacing:0.216000px;}
.ws83{word-spacing:0.240000px;}
.ws82{word-spacing:0.288000px;}
.wsac{word-spacing:0.300000px;}
.ws40{word-spacing:0.360000px;}
.wsab{word-spacing:0.384000px;}
.ws92{word-spacing:0.504000px;}
.ws30{word-spacing:0.576000px;}
.ws69{word-spacing:0.600000px;}
.ws8e{word-spacing:0.720000px;}
.ws1a{word-spacing:0.792000px;}
.ws1b{word-spacing:0.864000px;}
.ws2d{word-spacing:0.936000px;}
.ws6f{word-spacing:1.008000px;}
.ws3d{word-spacing:1.080000px;}
.ws43{word-spacing:1.152000px;}
.ws8f{word-spacing:1.296000px;}
.ws3c{word-spacing:1.368000px;}
.ws90{word-spacing:1.512000px;}
.ws26{word-spacing:1.656000px;}
.ws3f{word-spacing:1.728000px;}
.ws7{word-spacing:1.800000px;}
.ws52{word-spacing:1.872000px;}
.ws4d{word-spacing:1.944000px;}
.ws74{word-spacing:2.016000px;}
.wsc{word-spacing:2.088000px;}
.ws2e{word-spacing:2.160000px;}
.ws5d{word-spacing:2.232000px;}
.ws62{word-spacing:2.340000px;}
.ws16{word-spacing:2.376000px;}
.ws4{word-spacing:2.400000px;}
.ws4c{word-spacing:2.448000px;}
.ws4e{word-spacing:2.592000px;}
.ws89{word-spacing:2.664000px;}
.ws13{word-spacing:2.736000px;}
.ws50{word-spacing:2.808000px;}
.ws27{word-spacing:2.880000px;}
.ws7e{word-spacing:2.952000px;}
.ws1e{word-spacing:2.976000px;}
.ws14{word-spacing:3.024000px;}
.wsa1{word-spacing:3.120000px;}
.ws93{word-spacing:3.312000px;}
.ws1d{word-spacing:3.360000px;}
.ws94{word-spacing:3.384000px;}
.ws15{word-spacing:3.456000px;}
.ws61{word-spacing:3.528000px;}
.ws22{word-spacing:3.600000px;}
.ws55{word-spacing:3.672000px;}
.ws23{word-spacing:3.720000px;}
.ws9b{word-spacing:3.744000px;}
.wsa0{word-spacing:3.780000px;}
.ws5c{word-spacing:3.888000px;}
.ws72{word-spacing:3.960000px;}
.wsa{word-spacing:4.104000px;}
.wsf{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws37{word-spacing:4.248000px;}
.ws49{word-spacing:4.320000px;}
.ws95{word-spacing:4.392000px;}
.ws8{word-spacing:4.464000px;}
.ws41{word-spacing:4.536000px;}
.ws45{word-spacing:4.680000px;}
.ws80{word-spacing:4.752000px;}
.ws2a{word-spacing:4.824000px;}
.ws42{word-spacing:4.896000px;}
.ws25{word-spacing:4.968000px;}
.ws1c{word-spacing:5.040000px;}
.wsa2{word-spacing:5.112000px;}
.ws4b{word-spacing:5.184000px;}
.wsa3{word-spacing:5.256000px;}
.ws17{word-spacing:5.328000px;}
.ws53{word-spacing:5.400000px;}
.ws81{word-spacing:5.472000px;}
.ws3b{word-spacing:5.544000px;}
.ws6a{word-spacing:5.688000px;}
.wsa5{word-spacing:5.904000px;}
.ws19{word-spacing:6.192000px;}
.ws5e{word-spacing:6.264000px;}
.wsa4{word-spacing:6.336000px;}
.ws36{word-spacing:6.408000px;}
.ws73{word-spacing:6.480000px;}
.ws11{word-spacing:6.552000px;}
.ws47{word-spacing:6.624000px;}
.ws60{word-spacing:6.696000px;}
.ws32{word-spacing:6.768000px;}
.ws8d{word-spacing:6.840000px;}
.ws12{word-spacing:6.912000px;}
.ws33{word-spacing:6.984000px;}
.ws18{word-spacing:7.056000px;}
.wse{word-spacing:7.128000px;}
.ws7f{word-spacing:7.200000px;}
.ws7c{word-spacing:7.344000px;}
.ws4f{word-spacing:7.416000px;}
.ws44{word-spacing:7.488000px;}
.ws9a{word-spacing:7.560000px;}
.ws29{word-spacing:7.632000px;}
.wsa7{word-spacing:7.704000px;}
.ws31{word-spacing:7.776000px;}
.ws38{word-spacing:7.848000px;}
.ws87{word-spacing:8.064000px;}
.ws5f{word-spacing:8.136000px;}
.wsa6{word-spacing:8.208000px;}
.ws39{word-spacing:8.280000px;}
.ws8a{word-spacing:8.568000px;}
.ws71{word-spacing:8.640000px;}
.ws24{word-spacing:8.856000px;}
.ws3e{word-spacing:8.928000px;}
.ws9f{word-spacing:9.144000px;}
.ws2c{word-spacing:9.288000px;}
.ws9d{word-spacing:9.360000px;}
.ws51{word-spacing:9.432000px;}
.ws46{word-spacing:9.504000px;}
.wsd{word-spacing:9.576000px;}
.ws9c{word-spacing:9.648000px;}
.ws91{word-spacing:9.720000px;}
.ws3a{word-spacing:9.792000px;}
.ws8c{word-spacing:9.936000px;}
.ws10{word-spacing:10.080000px;}
.wsb{word-spacing:10.152000px;}
.ws54{word-spacing:10.728000px;}
.ws59{word-spacing:352.260000px;}
.ws68{word-spacing:409.500000px;}
.ws84{word-spacing:747.360000px;}
.ws85{word-spacing:784.800000px;}
.ws86{word-spacing:832.740000px;}
._0{margin-left:-940.386000px;}
._f{margin-left:-20.832000px;}
._11{margin-left:-14.382000px;}
._5{margin-left:-11.988000px;}
._7{margin-left:-10.206000px;}
._12{margin-left:-9.050400px;}
._9{margin-left:-8.011200px;}
._1{margin-left:-5.964000px;}
._8{margin-left:-4.132800px;}
._4{margin-left:-2.520000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._6{width:3.720000px;}
._10{width:5.181600px;}
._e{width:6.820800px;}
._d{width:7.986000px;}
._c{width:10.002000px;}
._16{width:13.699200px;}
._15{width:17.808000px;}
._13{width:21.282000px;}
._a{width:31.646100px;}
._b{width:201.564000px;}
._14{width:344.580000px;}
.fc1{color:rgb(135,136,138);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:58.800000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y20{bottom:117.000000px;}
.ycd{bottom:117.947700px;}
.y1e2{bottom:118.428000px;}
.y16e{bottom:118.878000px;}
.y150{bottom:120.494250px;}
.y80{bottom:121.207500px;}
.y214{bottom:121.722000px;}
.y164{bottom:121.908150px;}
.ya7{bottom:126.645150px;}
.y12c{bottom:127.442850px;}
.y1f{bottom:132.000000px;}
.y1e1{bottom:134.028000px;}
.y65{bottom:136.207500px;}
.y41{bottom:139.500000px;}
.ycc{bottom:139.691700px;}
.y213{bottom:140.622000px;}
.y16d{bottom:141.378000px;}
.y14f{bottom:143.588250px;}
.y163{bottom:145.002150px;}
.ya6{bottom:145.395150px;}
.y1e{bottom:147.000000px;}
.y1e0{bottom:149.628000px;}
.ye7{bottom:151.207500px;}
.y12b{bottom:154.427850px;}
.ya3{bottom:154.770150px;}
.y212{bottom:159.522000px;}
.y1d{bottom:162.000000px;}
.y16c{bottom:163.878000px;}
.ya5{bottom:164.145150px;}
.y7f{bottom:165.006000px;}
.y1df{bottom:165.228000px;}
.y14e{bottom:166.682250px;}
.y162{bottom:168.096150px;}
.ycb{bottom:171.191700px;}
.y109{bottom:176.456100px;}
.y64{bottom:177.750000px;}
.y211{bottom:178.422000px;}
.y1c{bottom:181.207500px;}
.y12a{bottom:181.412850px;}
.ya4{bottom:182.895150px;}
.y40{bottom:184.500000px;}
.y16b{bottom:186.378000px;}
.y7e{bottom:187.056000px;}
.y1de{bottom:187.200000px;}
.y14d{bottom:189.776250px;}
.y161{bottom:191.190150px;}
.ye6{bottom:191.893950px;}
.yca{bottom:192.935700px;}
.y210{bottom:197.322000px;}
.y108{bottom:199.262100px;}
.y63{bottom:199.800000px;}
.y3f{bottom:207.000000px;}
.y129{bottom:208.397850px;}
.y16a{bottom:208.878000px;}
.y7d{bottom:209.106000px;}
.ya2{bottom:209.880150px;}
.y14c{bottom:212.870250px;}
.ye5{bottom:213.637950px;}
.y160{bottom:214.284150px;}
.yc9{bottom:214.679700px;}
.y20f{bottom:216.222000px;}
.y1b{bottom:220.082550px;}
.y62{bottom:221.850000px;}
.y107{bottom:222.068100px;}
.ya1{bottom:228.630150px;}
.y3e{bottom:229.500000px;}
.y7c{bottom:231.156000px;}
.y169{bottom:231.378000px;}
.y1dd{bottom:233.538000px;}
.y20e{bottom:235.122000px;}
.ye4{bottom:235.381950px;}
.y14b{bottom:235.964250px;}
.y9e{bottom:236.010000px;}
.yc8{bottom:236.423700px;}
.y15f{bottom:237.378150px;}
.y1a{bottom:242.276550px;}
.y61{bottom:243.900000px;}
.y106{bottom:244.874100px;}
.ya0{bottom:247.380150px;}
.y128{bottom:248.134200px;}
.y3d{bottom:252.000000px;}
.y7b{bottom:253.206000px;}
.y168{bottom:253.878000px;}
.y20d{bottom:254.022000px;}
.y1dc{bottom:256.632000px;}
.ye3{bottom:257.131950px;}
.yc7{bottom:258.167700px;}
.y14a{bottom:259.058250px;}
.y15e{bottom:260.472150px;}
.y19{bottom:264.470550px;}
.y60{bottom:265.950000px;}
.y9f{bottom:266.130150px;}
.y105{bottom:267.680100px;}
.y20c{bottom:272.922000px;}
.y3c{bottom:274.500000px;}
.y7a{bottom:275.256000px;}
.y167{bottom:276.378000px;}
.ye2{bottom:278.881950px;}
.y1db{bottom:279.726000px;}
.y149{bottom:282.152250px;}
.y15d{bottom:283.566150px;}
.y18{bottom:286.664550px;}
.y5f{bottom:288.000000px;}
.y104{bottom:290.486100px;}
.y127{bottom:293.092200px;}
.y9c{bottom:293.113500px;}
.y3b{bottom:297.000000px;}
.y79{bottom:297.306000px;}
.y20b{bottom:298.410000px;}
.y166{bottom:298.878000px;}
.y1da{bottom:302.820000px;}
.yc6{bottom:304.543650px;}
.y148{bottom:305.246250px;}
.y17{bottom:308.858550px;}
.y5e{bottom:310.050000px;}
.y9b{bottom:311.863500px;}
.y103{bottom:313.292100px;}
.y126{bottom:315.898200px;}
.y78{bottom:319.356000px;}
.y3a{bottom:319.500000px;}
.y9d{bottom:321.238500px;}
.y165{bottom:321.378000px;}
.ye1{bottom:322.495950px;}
.yc5{bottom:323.293650px;}
.y1d9{bottom:325.914000px;}
.y147{bottom:328.340250px;}
.y9a{bottom:330.613500px;}
.y16{bottom:331.052550px;}
.y5d{bottom:332.100000px;}
.y125{bottom:338.704200px;}
.y77{bottom:341.406000px;}
.y39{bottom:342.000000px;}
.yc2{bottom:342.043650px;}
.y20a{bottom:343.710000px;}
.ye0{bottom:344.239950px;}
.y102{bottom:344.596050px;}
.y1d8{bottom:349.008000px;}
.y99{bottom:349.363500px;}
.y146{bottom:351.434250px;}
.y15{bottom:353.246550px;}
.y5c{bottom:354.150000px;}
.y209{bottom:358.854000px;}
.yc4{bottom:360.793650px;}
.y124{bottom:361.510200px;}
.y101{bottom:363.646050px;}
.y38{bottom:364.500000px;}
.ydf{bottom:365.983950px;}
.y1d7{bottom:372.102000px;}
.y76{bottom:373.662000px;}
.y208{bottom:373.998000px;}
.y145{bottom:374.528250px;}
.y14{bottom:375.440550px;}
.y5b{bottom:376.200000px;}
.yc3{bottom:379.543650px;}
.y197{bottom:380.017050px;}
.y190{bottom:380.044050px;}
.y100{bottom:382.696050px;}
.y123{bottom:384.316200px;}
.y37{bottom:387.000000px;}
.yde{bottom:387.727950px;}
.y98{bottom:389.100000px;}
.y207{bottom:389.142000px;}
.y1d6{bottom:395.196000px;}
.y196{bottom:395.771550px;}
.y18f{bottom:395.798550px;}
.y75{bottom:395.856000px;}
.y19d{bottom:395.860950px;}
.y1bd{bottom:397.024950px;}
.y1c4{bottom:397.114350px;}
.y144{bottom:397.622250px;}
.y13{bottom:397.634550px;}
.y5a{bottom:398.250000px;}
.yff{bottom:401.746050px;}
.y206{bottom:404.286000px;}
.yc1{bottom:406.528650px;}
.y122{bottom:407.122200px;}
.ydd{bottom:409.471950px;}
.y36{bottom:409.500000px;}
.y195{bottom:411.526050px;}
.y18e{bottom:411.553050px;}
.y97{bottom:411.600000px;}
.y19c{bottom:411.615450px;}
.y1bc{bottom:412.779450px;}
.y1c3{bottom:412.868850px;}
.y74{bottom:418.050000px;}
.y1d5{bottom:418.290000px;}
.y205{bottom:419.430000px;}
.y12{bottom:419.828550px;}
.y59{bottom:420.300000px;}
.y143{bottom:420.716250px;}
.yfe{bottom:420.796050px;}
.yc0{bottom:425.278650px;}
.y194{bottom:427.280550px;}
.y18d{bottom:427.307550px;}
.y19b{bottom:427.369950px;}
.y1bb{bottom:428.533950px;}
.y1c2{bottom:428.623350px;}
.y121{bottom:429.928200px;}
.ydc{bottom:431.215950px;}
.y35{bottom:432.000000px;}
.y96{bottom:434.100000px;}
.y204{bottom:434.574000px;}
.ybc{bottom:434.653650px;}
.yfd{bottom:439.846050px;}
.y73{bottom:440.256000px;}
.y1d4{bottom:441.384000px;}
.y11{bottom:442.022550px;}
.y58{bottom:442.350000px;}
.y193{bottom:443.035050px;}
.y18c{bottom:443.062050px;}
.y19a{bottom:443.124450px;}
.y142{bottom:443.810250px;}
.ybf{bottom:444.028650px;}
.y1ba{bottom:444.288450px;}
.y1c1{bottom:444.377850px;}
.y203{bottom:449.718000px;}
.y120{bottom:452.734200px;}
.ydb{bottom:452.959950px;}
.ybb{bottom:453.403650px;}
.y34{bottom:454.500000px;}
.y192{bottom:458.789550px;}
.y18b{bottom:458.816550px;}
.y199{bottom:458.878950px;}
.yfc{bottom:458.896050px;}
.y1b9{bottom:460.042950px;}
.y1c0{bottom:460.132350px;}
.y72{bottom:462.450000px;}
.ybe{bottom:462.778650px;}
.y10{bottom:464.216550px;}
.y57{bottom:464.400000px;}
.y1d3{bottom:464.478000px;}
.y202{bottom:464.862000px;}
.y141{bottom:466.904250px;}
.y191{bottom:474.544050px;}
.y18a{bottom:474.571050px;}
.y198{bottom:474.633450px;}
.yda{bottom:474.703950px;}
.y1b8{bottom:475.797450px;}
.y1bf{bottom:475.886850px;}
.y33{bottom:477.000000px;}
.yfb{bottom:477.946050px;}
.y95{bottom:479.022000px;}
.y201{bottom:480.006000px;}
.ybd{bottom:481.528650px;}
.y11f{bottom:484.037100px;}
.y71{bottom:484.650000px;}
.yf{bottom:486.410550px;}
.y56{bottom:486.450000px;}
.y1d2{bottom:487.572000px;}
.y140{bottom:489.998250px;}
.y1b7{bottom:491.551950px;}
.y1be{bottom:491.641350px;}
.y200{bottom:495.150000px;}
.yd9{bottom:496.447950px;}
.y32{bottom:499.500000px;}
.y94{bottom:501.522000px;}
.y11e{bottom:503.087100px;}
.yfa{bottom:505.458000px;}
.y70{bottom:506.850000px;}
.y55{bottom:508.500000px;}
.yba{bottom:508.513650px;}
.ye{bottom:508.604550px;}
.y1ff{bottom:510.294000px;}
.y1d1{bottom:510.666000px;}
.y13f{bottom:513.092250px;}
.yd8{bottom:518.191950px;}
.y31{bottom:522.000000px;}
.y11d{bottom:522.137100px;}
.y93{bottom:524.022000px;}
.y1fe{bottom:525.438000px;}
.yb9{bottom:527.263650px;}
.y175{bottom:527.458350px;}
.yf9{bottom:528.264000px;}
.y6f{bottom:529.110000px;}
.y54{bottom:530.550000px;}
.yd{bottom:530.798550px;}
.y1d0{bottom:533.760000px;}
.y13e{bottom:536.186250px;}
.yd7{bottom:539.935950px;}
.y1fd{bottom:540.582000px;}
.y226{bottom:540.750000px;}
.y30{bottom:544.500000px;}
.yb8{bottom:546.013650px;}
.y92{bottom:546.522000px;}
.y11c{bottom:549.692100px;}
.yf8{bottom:551.070000px;}
.y6e{bottom:551.304000px;}
.y53{bottom:552.600000px;}
.yc{bottom:552.992550px;}
.y1fc{bottom:555.726000px;}
.y1cf{bottom:556.854000px;}
.y13d{bottom:559.280250px;}
.y225{bottom:559.500000px;}
.yd6{bottom:561.679950px;}
.yb7{bottom:564.763650px;}
.y2f{bottom:567.000000px;}
.y11b{bottom:568.742100px;}
.y91{bottom:569.022000px;}
.y1fb{bottom:570.870000px;}
.y189{bottom:572.932050px;}
.y6d{bottom:573.498000px;}
.yf7{bottom:573.876000px;}
.y52{bottom:574.650000px;}
.yb{bottom:575.186550px;}
.y224{bottom:578.250000px;}
.y1ce{bottom:579.948000px;}
.yd5{bottom:583.423950px;}
.yb6{bottom:583.513650px;}
.y1fa{bottom:586.014000px;}
.y11a{bottom:587.792100px;}
.y17b{bottom:588.619050px;}
.y188{bottom:588.686550px;}
.y2e{bottom:589.500000px;}
.y1b6{bottom:589.912950px;}
.y13c{bottom:590.884200px;}
.y90{bottom:591.522000px;}
.y6c{bottom:595.692000px;}
.yf6{bottom:596.682000px;}
.y51{bottom:596.700000px;}
.y223{bottom:597.000000px;}
.ya{bottom:597.380550px;}
.y17f{bottom:598.784550px;}
.y1f9{bottom:601.158000px;}
.y15c{bottom:603.000000px;}
.y1cd{bottom:603.042000px;}
.y17a{bottom:604.373550px;}
.y187{bottom:604.441050px;}
.yd4{bottom:605.167950px;}
.y1a5{bottom:605.626950px;}
.y1b5{bottom:605.667450px;}
.y1ac{bottom:605.883450px;}
.y119{bottom:606.842100px;}
.y13b{bottom:610.234200px;}
.y2d{bottom:612.000000px;}
.y8f{bottom:614.022000px;}
.y17e{bottom:614.539050px;}
.y1f8{bottom:616.302000px;}
.y6b{bottom:617.886000px;}
.y50{bottom:618.750000px;}
.yf5{bottom:619.488000px;}
.y9{bottom:619.574550px;}
.y179{bottom:620.128050px;}
.y186{bottom:620.195550px;}
.y1a4{bottom:621.381450px;}
.y1b4{bottom:621.421950px;}
.y1ab{bottom:621.637950px;}
.yb5{bottom:623.250000px;}
.y118{bottom:625.892100px;}
.y15b{bottom:626.100000px;}
.y1cc{bottom:626.136000px;}
.yd3{bottom:626.911950px;}
.y222{bottom:627.000000px;}
.y13a{bottom:629.584200px;}
.y17d{bottom:630.293550px;}
.y1f7{bottom:631.446000px;}
.y178{bottom:635.882550px;}
.y185{bottom:635.950050px;}
.y8e{bottom:636.522000px;}
.y1a3{bottom:637.135950px;}
.y1b3{bottom:637.176450px;}
.y1aa{bottom:637.392450px;}
.y6a{bottom:640.080000px;}
.y4f{bottom:640.800000px;}
.y8{bottom:641.768550px;}
.yf4{bottom:642.294000px;}
.y117{bottom:644.942100px;}
.yb4{bottom:645.000000px;}
.y17c{bottom:646.048050px;}
.y1f6{bottom:646.590000px;}
.yd2{bottom:648.655950px;}
.y139{bottom:648.934200px;}
.y1cb{bottom:649.230000px;}
.y177{bottom:651.637050px;}
.y184{bottom:651.704550px;}
.y1a2{bottom:652.890450px;}
.y1b2{bottom:652.930950px;}
.y1a9{bottom:653.146950px;}
.y2c{bottom:657.000000px;}
.y8d{bottom:658.878000px;}
.y1f5{bottom:661.734000px;}
.y69{bottom:662.274000px;}
.y4e{bottom:662.850000px;}
.y7{bottom:663.968550px;}
.y116{bottom:663.992100px;}
.yf3{bottom:665.034000px;}
.y221{bottom:668.250000px;}
.y138{bottom:668.284200px;}
.y1a1{bottom:668.644950px;}
.y1b1{bottom:668.685450px;}
.y1a8{bottom:668.901450px;}
.yd1{bottom:670.399950px;}
.y1ca{bottom:672.324000px;}
.y15a{bottom:672.366000px;}
.y1f4{bottom:676.878000px;}
.y2b{bottom:679.500000px;}
.y176{bottom:679.573200px;}
.y8c{bottom:681.234000px;}
.y115{bottom:683.042100px;}
.y68{bottom:684.468000px;}
.y1a7{bottom:684.655950px;}
.y4d{bottom:684.900000px;}
.y220{bottom:687.000000px;}
.y137{bottom:687.634200px;}
.yf2{bottom:687.840000px;}
.yb3{bottom:688.566000px;}
.y1f3{bottom:692.022000px;}
.yd0{bottom:692.143950px;}
.y1c9{bottom:695.418000px;}
.y159{bottom:695.460000px;}
.y1a6{bottom:700.410450px;}
.y2a{bottom:702.000000px;}
.y8b{bottom:703.590000px;}
.y21f{bottom:705.750000px;}
.y67{bottom:706.662000px;}
.y4c{bottom:706.950000px;}
.y136{bottom:706.984200px;}
.y1f2{bottom:707.166000px;}
.y6{bottom:708.968550px;}
.yb2{bottom:710.310000px;}
.y114{bottom:710.626050px;}
.yf1{bottom:710.646000px;}
.ycf{bottom:713.887950px;}
.y1c8{bottom:718.512000px;}
.y158{bottom:718.554000px;}
.y1f1{bottom:722.310000px;}
.y29{bottom:724.500000px;}
.y8a{bottom:725.946000px;}
.y135{bottom:726.334200px;}
.y5{bottom:727.718550px;}
.y66{bottom:728.856000px;}
.y4b{bottom:729.000000px;}
.yb1{bottom:732.054000px;}
.y113{bottom:733.270050px;}
.yf0{bottom:733.452000px;}
.y173{bottom:734.337000px;}
.yce{bottom:735.631950px;}
.y1f0{bottom:737.454000px;}
.y1c7{bottom:741.606000px;}
.y157{bottom:741.648000px;}
.y21e{bottom:743.250000px;}
.y28{bottom:747.000000px;}
.y89{bottom:748.302000px;}
.y172{bottom:750.091500px;}
.y182{bottom:750.470550px;}
.y1a0{bottom:750.729150px;}
.y4a{bottom:751.050000px;}
.y1ef{bottom:752.598000px;}
.yb0{bottom:753.798000px;}
.y134{bottom:754.194150px;}
.y112{bottom:755.914050px;}
.yef{bottom:756.258000px;}
.y21d{bottom:762.000000px;}
.y1c6{bottom:764.700000px;}
.y156{bottom:764.742000px;}
.y171{bottom:765.846000px;}
.y181{bottom:766.225050px;}
.y19f{bottom:766.483650px;}
.y1af{bottom:767.451450px;}
.y1ee{bottom:767.742000px;}
.y27{bottom:769.500000px;}
.y4{bottom:769.854300px;}
.y88{bottom:770.658000px;}
.y49{bottom:773.100000px;}
.yaf{bottom:775.542000px;}
.y133{bottom:777.288150px;}
.y183{bottom:777.376050px;}
.y111{bottom:778.558050px;}
.y21c{bottom:780.750000px;}
.y170{bottom:781.600500px;}
.y180{bottom:781.979550px;}
.y19e{bottom:782.238150px;}
.y1ed{bottom:782.886000px;}
.y1ae{bottom:783.205950px;}
.y1c5{bottom:787.800000px;}
.y155{bottom:787.836000px;}
.yee{bottom:789.864000px;}
.y26{bottom:792.000000px;}
.y3{bottom:792.354300px;}
.y87{bottom:793.014000px;}
.y1b0{bottom:794.356950px;}
.y48{bottom:795.150000px;}
.yae{bottom:797.286000px;}
.y1ec{bottom:798.030000px;}
.y1ad{bottom:798.960450px;}
.y21b{bottom:799.500000px;}
.y110{bottom:801.202050px;}
.y132{bottom:808.891050px;}
.y154{bottom:810.930000px;}
.yed{bottom:812.670000px;}
.y1eb{bottom:813.174000px;}
.y25{bottom:814.500000px;}
.y86{bottom:815.370000px;}
.y174{bottom:815.456100px;}
.y47{bottom:817.200000px;}
.y21a{bottom:818.250000px;}
.yad{bottom:819.030000px;}
.y10f{bottom:823.846050px;}
.y131{bottom:828.241050px;}
.y1ea{bottom:828.330000px;}
.y153{bottom:834.024000px;}
.yec{bottom:835.476000px;}
.y24{bottom:837.000000px;}
.y85{bottom:837.726000px;}
.y46{bottom:839.250000px;}
.yac{bottom:840.774000px;}
.y1e9{bottom:843.474000px;}
.y130{bottom:847.591050px;}
.y10e{bottom:855.000000px;}
.y219{bottom:855.750000px;}
.y152{bottom:857.118000px;}
.yeb{bottom:858.282000px;}
.y1e8{bottom:858.618000px;}
.y2{bottom:859.500000px;}
.y84{bottom:860.082000px;}
.y16f{bottom:861.238650px;}
.y45{bottom:861.300000px;}
.yab{bottom:862.518000px;}
.y1e7{bottom:873.762000px;}
.y10d{bottom:873.900000px;}
.y218{bottom:874.500000px;}
.y12f{bottom:875.446050px;}
.y151{bottom:880.212000px;}
.yea{bottom:881.088000px;}
.y23{bottom:882.000000px;}
.y83{bottom:882.438000px;}
.y44{bottom:883.350000px;}
.yaa{bottom:884.262000px;}
.y1e6{bottom:888.906000px;}
.y10c{bottom:892.800000px;}
.y217{bottom:893.250000px;}
.y12e{bottom:903.306000px;}
.ye9{bottom:903.894000px;}
.y1e5{bottom:904.062000px;}
.y22{bottom:904.500000px;}
.y82{bottom:904.794000px;}
.y43{bottom:905.400000px;}
.ya9{bottom:906.006000px;}
.y10b{bottom:911.700000px;}
.y216{bottom:912.000000px;}
.y1e4{bottom:919.206000px;}
.y12d{bottom:926.400000px;}
.ye8{bottom:926.700000px;}
.y21{bottom:927.000000px;}
.y81{bottom:927.150000px;}
.y42{bottom:927.450000px;}
.ya8{bottom:927.750000px;}
.y10a{bottom:930.600000px;}
.y215{bottom:930.750000px;}
.y1e3{bottom:934.350000px;}
.h5{height:28.204395px;}
.h11{height:33.600000px;}
.h6{height:37.921875px;}
.he{height:38.416992px;}
.h12{height:40.757812px;}
.h3{height:42.000000px;}
.h10{height:42.600000px;}
.hf{height:42.662109px;}
.hd{height:42.685547px;}
.h1{height:47.402344px;}
.ha{height:50.947266px;}
.h9{height:55.986328px;}
.h4{height:56.882812px;}
.h7{height:61.136719px;}
.hb{height:63.529969px;}
.h8{height:63.577969px;}
.hc{height:63.841969px;}
.h2{height:94.804688px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.xb{left:72.126900px;}
.x5{left:82.381950px;}
.x15{left:84.436950px;}
.x11{left:87.909450px;}
.x6{left:97.255350px;}
.x12{left:102.791400px;}
.xf{left:110.011950px;}
.x2{left:112.500000px;}
.x7{left:117.126900px;}
.x14{left:123.435300px;}
.x3{left:127.381950px;}
.x1d{left:129.436950px;}
.x1b{left:132.909450px;}
.x22{left:135.525000px;}
.x10{left:142.263750px;}
.x1c{left:154.411200px;}
.xd{left:189.351900px;}
.xc{left:227.046900px;}
.x1a{left:275.677950px;}
.x16{left:277.446450px;}
.x9{left:282.942900px;}
.x18{left:319.782450px;}
.x1e{left:322.446450px;}
.x8{left:326.001900px;}
.x20{left:364.782450px;}
.xe{left:367.941900px;}
.x19{left:446.277450px;}
.x13{left:455.725950px;}
.xa{left:462.252900px;}
.x17{left:463.435950px;}
.x21{left:491.277450px;}
.x1f{left:508.435950px;}
.x1{left:635.390550px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:42.453333pt;}
.ls7{letter-spacing:-2.133333pt;}
.ls8{letter-spacing:-1.600000pt;}
.ls20{letter-spacing:-1.344000pt;}
.ls21{letter-spacing:-1.216000pt;}
.ls24{letter-spacing:-1.088000pt;}
.ls25{letter-spacing:-1.024000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls23{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.359467pt;}
.lsb{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls30{letter-spacing:0.832000pt;}
.ls29{letter-spacing:0.896000pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:1.344000pt;}
.ls16{letter-spacing:3.029333pt;}
.ls9{letter-spacing:3.840000pt;}
.ls31{letter-spacing:4.224000pt;}
.ls19{letter-spacing:5.268267pt;}
.ls2e{letter-spacing:6.592000pt;}
.ls26{letter-spacing:7.193600pt;}
.ls1{letter-spacing:7.520000pt;}
.ls2f{letter-spacing:8.185600pt;}
.ls2d{letter-spacing:9.228800pt;}
.lsc{letter-spacing:9.408000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls27{letter-spacing:9.555200pt;}
.ls17{letter-spacing:20.544000pt;}
.ws65{word-spacing:-64.384000pt;}
.ws98{word-spacing:-64.320000pt;}
.ws4a{word-spacing:-53.333333pt;}
.wsaa{word-spacing:-42.666667pt;}
.ws1{word-spacing:-22.506667pt;}
.ws76{word-spacing:-18.496000pt;}
.ws75{word-spacing:-18.304000pt;}
.ws64{word-spacing:-17.984000pt;}
.ws7b{word-spacing:-17.920000pt;}
.ws78{word-spacing:-16.704000pt;}
.ws97{word-spacing:-16.576000pt;}
.ws99{word-spacing:-16.512000pt;}
.ws8b{word-spacing:-16.384000pt;}
.ws77{word-spacing:-16.320000pt;}
.ws7a{word-spacing:-16.256000pt;}
.ws1f{word-spacing:-16.192000pt;}
.ws20{word-spacing:-16.128000pt;}
.ws79{word-spacing:-16.064000pt;}
.ws21{word-spacing:-15.872000pt;}
.ws34{word-spacing:-15.808000pt;}
.ws66{word-spacing:-15.680000pt;}
.ws57{word-spacing:-15.552000pt;}
.ws6d{word-spacing:-15.104000pt;}
.ws5b{word-spacing:-14.986667pt;}
.ws6b{word-spacing:-14.976000pt;}
.ws5a{word-spacing:-14.686933pt;}
.ws6c{word-spacing:-14.592000pt;}
.ws9e{word-spacing:-13.488000pt;}
.ws67{word-spacing:-13.173333pt;}
.wsad{word-spacing:-12.640000pt;}
.ws35{word-spacing:-12.588800pt;}
.wsa9{word-spacing:-11.989333pt;}
.ws2{word-spacing:-10.538667pt;}
.ws58{word-spacing:-7.680000pt;}
.ws0{word-spacing:-7.488000pt;}
.ws6e{word-spacing:-7.413333pt;}
.wsa8{word-spacing:-4.224000pt;}
.ws9{word-spacing:-3.840000pt;}
.ws70{word-spacing:-1.792000pt;}
.ws63{word-spacing:-1.600000pt;}
.ws88{word-spacing:-0.960000pt;}
.ws56{word-spacing:-0.640000pt;}
.ws96{word-spacing:-0.576000pt;}
.ws28{word-spacing:-0.448000pt;}
.ws7d{word-spacing:-0.320000pt;}
.ws5{word-spacing:-0.106667pt;}
.ws6{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.064000pt;}
.ws2f{word-spacing:0.128000pt;}
.ws48{word-spacing:0.192000pt;}
.ws83{word-spacing:0.213333pt;}
.ws82{word-spacing:0.256000pt;}
.wsac{word-spacing:0.266667pt;}
.ws40{word-spacing:0.320000pt;}
.wsab{word-spacing:0.341333pt;}
.ws92{word-spacing:0.448000pt;}
.ws30{word-spacing:0.512000pt;}
.ws69{word-spacing:0.533333pt;}
.ws8e{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.704000pt;}
.ws1b{word-spacing:0.768000pt;}
.ws2d{word-spacing:0.832000pt;}
.ws6f{word-spacing:0.896000pt;}
.ws3d{word-spacing:0.960000pt;}
.ws43{word-spacing:1.024000pt;}
.ws8f{word-spacing:1.152000pt;}
.ws3c{word-spacing:1.216000pt;}
.ws90{word-spacing:1.344000pt;}
.ws26{word-spacing:1.472000pt;}
.ws3f{word-spacing:1.536000pt;}
.ws7{word-spacing:1.600000pt;}
.ws52{word-spacing:1.664000pt;}
.ws4d{word-spacing:1.728000pt;}
.ws74{word-spacing:1.792000pt;}
.wsc{word-spacing:1.856000pt;}
.ws2e{word-spacing:1.920000pt;}
.ws5d{word-spacing:1.984000pt;}
.ws62{word-spacing:2.080000pt;}
.ws16{word-spacing:2.112000pt;}
.ws4{word-spacing:2.133333pt;}
.ws4c{word-spacing:2.176000pt;}
.ws4e{word-spacing:2.304000pt;}
.ws89{word-spacing:2.368000pt;}
.ws13{word-spacing:2.432000pt;}
.ws50{word-spacing:2.496000pt;}
.ws27{word-spacing:2.560000pt;}
.ws7e{word-spacing:2.624000pt;}
.ws1e{word-spacing:2.645333pt;}
.ws14{word-spacing:2.688000pt;}
.wsa1{word-spacing:2.773333pt;}
.ws93{word-spacing:2.944000pt;}
.ws1d{word-spacing:2.986667pt;}
.ws94{word-spacing:3.008000pt;}
.ws15{word-spacing:3.072000pt;}
.ws61{word-spacing:3.136000pt;}
.ws22{word-spacing:3.200000pt;}
.ws55{word-spacing:3.264000pt;}
.ws23{word-spacing:3.306667pt;}
.ws9b{word-spacing:3.328000pt;}
.wsa0{word-spacing:3.360000pt;}
.ws5c{word-spacing:3.456000pt;}
.ws72{word-spacing:3.520000pt;}
.wsa{word-spacing:3.648000pt;}
.wsf{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws37{word-spacing:3.776000pt;}
.ws49{word-spacing:3.840000pt;}
.ws95{word-spacing:3.904000pt;}
.ws8{word-spacing:3.968000pt;}
.ws41{word-spacing:4.032000pt;}
.ws45{word-spacing:4.160000pt;}
.ws80{word-spacing:4.224000pt;}
.ws2a{word-spacing:4.288000pt;}
.ws42{word-spacing:4.352000pt;}
.ws25{word-spacing:4.416000pt;}
.ws1c{word-spacing:4.480000pt;}
.wsa2{word-spacing:4.544000pt;}
.ws4b{word-spacing:4.608000pt;}
.wsa3{word-spacing:4.672000pt;}
.ws17{word-spacing:4.736000pt;}
.ws53{word-spacing:4.800000pt;}
.ws81{word-spacing:4.864000pt;}
.ws3b{word-spacing:4.928000pt;}
.ws6a{word-spacing:5.056000pt;}
.wsa5{word-spacing:5.248000pt;}
.ws19{word-spacing:5.504000pt;}
.ws5e{word-spacing:5.568000pt;}
.wsa4{word-spacing:5.632000pt;}
.ws36{word-spacing:5.696000pt;}
.ws73{word-spacing:5.760000pt;}
.ws11{word-spacing:5.824000pt;}
.ws47{word-spacing:5.888000pt;}
.ws60{word-spacing:5.952000pt;}
.ws32{word-spacing:6.016000pt;}
.ws8d{word-spacing:6.080000pt;}
.ws12{word-spacing:6.144000pt;}
.ws33{word-spacing:6.208000pt;}
.ws18{word-spacing:6.272000pt;}
.wse{word-spacing:6.336000pt;}
.ws7f{word-spacing:6.400000pt;}
.ws7c{word-spacing:6.528000pt;}
.ws4f{word-spacing:6.592000pt;}
.ws44{word-spacing:6.656000pt;}
.ws9a{word-spacing:6.720000pt;}
.ws29{word-spacing:6.784000pt;}
.wsa7{word-spacing:6.848000pt;}
.ws31{word-spacing:6.912000pt;}
.ws38{word-spacing:6.976000pt;}
.ws87{word-spacing:7.168000pt;}
.ws5f{word-spacing:7.232000pt;}
.wsa6{word-spacing:7.296000pt;}
.ws39{word-spacing:7.360000pt;}
.ws8a{word-spacing:7.616000pt;}
.ws71{word-spacing:7.680000pt;}
.ws24{word-spacing:7.872000pt;}
.ws3e{word-spacing:7.936000pt;}
.ws9f{word-spacing:8.128000pt;}
.ws2c{word-spacing:8.256000pt;}
.ws9d{word-spacing:8.320000pt;}
.ws51{word-spacing:8.384000pt;}
.ws46{word-spacing:8.448000pt;}
.wsd{word-spacing:8.512000pt;}
.ws9c{word-spacing:8.576000pt;}
.ws91{word-spacing:8.640000pt;}
.ws3a{word-spacing:8.704000pt;}
.ws8c{word-spacing:8.832000pt;}
.ws10{word-spacing:8.960000pt;}
.wsb{word-spacing:9.024000pt;}
.ws54{word-spacing:9.536000pt;}
.ws59{word-spacing:313.120000pt;}
.ws68{word-spacing:364.000000pt;}
.ws84{word-spacing:664.320000pt;}
.ws85{word-spacing:697.600000pt;}
.ws86{word-spacing:740.213333pt;}
._0{margin-left:-835.898667pt;}
._f{margin-left:-18.517333pt;}
._11{margin-left:-12.784000pt;}
._5{margin-left:-10.656000pt;}
._7{margin-left:-9.072000pt;}
._12{margin-left:-8.044800pt;}
._9{margin-left:-7.121067pt;}
._1{margin-left:-5.301333pt;}
._8{margin-left:-3.673600pt;}
._4{margin-left:-2.240000pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._6{width:3.306667pt;}
._10{width:4.605867pt;}
._e{width:6.062933pt;}
._d{width:7.098667pt;}
._c{width:8.890667pt;}
._16{width:12.177067pt;}
._15{width:15.829333pt;}
._13{width:18.917333pt;}
._a{width:28.129867pt;}
._b{width:179.168000pt;}
._14{width:306.293333pt;}
.fs5{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:52.266667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y20{bottom:104.000000pt;}
.ycd{bottom:104.842400pt;}
.y1e2{bottom:105.269333pt;}
.y16e{bottom:105.669333pt;}
.y150{bottom:107.106000pt;}
.y80{bottom:107.740000pt;}
.y214{bottom:108.197333pt;}
.y164{bottom:108.362800pt;}
.ya7{bottom:112.573467pt;}
.y12c{bottom:113.282533pt;}
.y1f{bottom:117.333333pt;}
.y1e1{bottom:119.136000pt;}
.y65{bottom:121.073333pt;}
.y41{bottom:124.000000pt;}
.ycc{bottom:124.170400pt;}
.y213{bottom:124.997333pt;}
.y16d{bottom:125.669333pt;}
.y14f{bottom:127.634000pt;}
.y163{bottom:128.890800pt;}
.ya6{bottom:129.240133pt;}
.y1e{bottom:130.666667pt;}
.y1e0{bottom:133.002667pt;}
.ye7{bottom:134.406667pt;}
.y12b{bottom:137.269200pt;}
.ya3{bottom:137.573467pt;}
.y212{bottom:141.797333pt;}
.y1d{bottom:144.000000pt;}
.y16c{bottom:145.669333pt;}
.ya5{bottom:145.906800pt;}
.y7f{bottom:146.672000pt;}
.y1df{bottom:146.869333pt;}
.y14e{bottom:148.162000pt;}
.y162{bottom:149.418800pt;}
.ycb{bottom:152.170400pt;}
.y109{bottom:156.849867pt;}
.y64{bottom:158.000000pt;}
.y211{bottom:158.597333pt;}
.y1c{bottom:161.073333pt;}
.y12a{bottom:161.255867pt;}
.ya4{bottom:162.573467pt;}
.y40{bottom:164.000000pt;}
.y16b{bottom:165.669333pt;}
.y7e{bottom:166.272000pt;}
.y1de{bottom:166.400000pt;}
.y14d{bottom:168.690000pt;}
.y161{bottom:169.946800pt;}
.ye6{bottom:170.572400pt;}
.yca{bottom:171.498400pt;}
.y210{bottom:175.397333pt;}
.y108{bottom:177.121867pt;}
.y63{bottom:177.600000pt;}
.y3f{bottom:184.000000pt;}
.y129{bottom:185.242533pt;}
.y16a{bottom:185.669333pt;}
.y7d{bottom:185.872000pt;}
.ya2{bottom:186.560133pt;}
.y14c{bottom:189.218000pt;}
.ye5{bottom:189.900400pt;}
.y160{bottom:190.474800pt;}
.yc9{bottom:190.826400pt;}
.y20f{bottom:192.197333pt;}
.y1b{bottom:195.628933pt;}
.y62{bottom:197.200000pt;}
.y107{bottom:197.393867pt;}
.ya1{bottom:203.226800pt;}
.y3e{bottom:204.000000pt;}
.y7c{bottom:205.472000pt;}
.y169{bottom:205.669333pt;}
.y1dd{bottom:207.589333pt;}
.y20e{bottom:208.997333pt;}
.ye4{bottom:209.228400pt;}
.y14b{bottom:209.746000pt;}
.y9e{bottom:209.786667pt;}
.yc8{bottom:210.154400pt;}
.y15f{bottom:211.002800pt;}
.y1a{bottom:215.356933pt;}
.y61{bottom:216.800000pt;}
.y106{bottom:217.665867pt;}
.ya0{bottom:219.893467pt;}
.y128{bottom:220.563733pt;}
.y3d{bottom:224.000000pt;}
.y7b{bottom:225.072000pt;}
.y168{bottom:225.669333pt;}
.y20d{bottom:225.797333pt;}
.y1dc{bottom:228.117333pt;}
.ye3{bottom:228.561733pt;}
.yc7{bottom:229.482400pt;}
.y14a{bottom:230.274000pt;}
.y15e{bottom:231.530800pt;}
.y19{bottom:235.084933pt;}
.y60{bottom:236.400000pt;}
.y9f{bottom:236.560133pt;}
.y105{bottom:237.937867pt;}
.y20c{bottom:242.597333pt;}
.y3c{bottom:244.000000pt;}
.y7a{bottom:244.672000pt;}
.y167{bottom:245.669333pt;}
.ye2{bottom:247.895067pt;}
.y1db{bottom:248.645333pt;}
.y149{bottom:250.802000pt;}
.y15d{bottom:252.058800pt;}
.y18{bottom:254.812933pt;}
.y5f{bottom:256.000000pt;}
.y104{bottom:258.209867pt;}
.y127{bottom:260.526400pt;}
.y9c{bottom:260.545333pt;}
.y3b{bottom:264.000000pt;}
.y79{bottom:264.272000pt;}
.y20b{bottom:265.253333pt;}
.y166{bottom:265.669333pt;}
.y1da{bottom:269.173333pt;}
.yc6{bottom:270.705467pt;}
.y148{bottom:271.330000pt;}
.y17{bottom:274.540933pt;}
.y5e{bottom:275.600000pt;}
.y9b{bottom:277.212000pt;}
.y103{bottom:278.481867pt;}
.y126{bottom:280.798400pt;}
.y78{bottom:283.872000pt;}
.y3a{bottom:284.000000pt;}
.y9d{bottom:285.545333pt;}
.y165{bottom:285.669333pt;}
.ye1{bottom:286.663067pt;}
.yc5{bottom:287.372133pt;}
.y1d9{bottom:289.701333pt;}
.y147{bottom:291.858000pt;}
.y9a{bottom:293.878667pt;}
.y16{bottom:294.268933pt;}
.y5d{bottom:295.200000pt;}
.y125{bottom:301.070400pt;}
.y77{bottom:303.472000pt;}
.y39{bottom:304.000000pt;}
.yc2{bottom:304.038800pt;}
.y20a{bottom:305.520000pt;}
.ye0{bottom:305.991067pt;}
.y102{bottom:306.307600pt;}
.y1d8{bottom:310.229333pt;}
.y99{bottom:310.545333pt;}
.y146{bottom:312.386000pt;}
.y15{bottom:313.996933pt;}
.y5c{bottom:314.800000pt;}
.y209{bottom:318.981333pt;}
.yc4{bottom:320.705467pt;}
.y124{bottom:321.342400pt;}
.y101{bottom:323.240933pt;}
.y38{bottom:324.000000pt;}
.ydf{bottom:325.319067pt;}
.y1d7{bottom:330.757333pt;}
.y76{bottom:332.144000pt;}
.y208{bottom:332.442667pt;}
.y145{bottom:332.914000pt;}
.y14{bottom:333.724933pt;}
.y5b{bottom:334.400000pt;}
.yc3{bottom:337.372133pt;}
.y197{bottom:337.792933pt;}
.y190{bottom:337.816933pt;}
.y100{bottom:340.174267pt;}
.y123{bottom:341.614400pt;}
.y37{bottom:344.000000pt;}
.yde{bottom:344.647067pt;}
.y98{bottom:345.866667pt;}
.y207{bottom:345.904000pt;}
.y1d6{bottom:351.285333pt;}
.y196{bottom:351.796933pt;}
.y18f{bottom:351.820933pt;}
.y75{bottom:351.872000pt;}
.y19d{bottom:351.876400pt;}
.y1bd{bottom:352.911067pt;}
.y1c4{bottom:352.990533pt;}
.y144{bottom:353.442000pt;}
.y13{bottom:353.452933pt;}
.y5a{bottom:354.000000pt;}
.yff{bottom:357.107600pt;}
.y206{bottom:359.365333pt;}
.yc1{bottom:361.358800pt;}
.y122{bottom:361.886400pt;}
.ydd{bottom:363.975067pt;}
.y36{bottom:364.000000pt;}
.y195{bottom:365.800933pt;}
.y18e{bottom:365.824933pt;}
.y97{bottom:365.866667pt;}
.y19c{bottom:365.880400pt;}
.y1bc{bottom:366.915067pt;}
.y1c3{bottom:366.994533pt;}
.y74{bottom:371.600000pt;}
.y1d5{bottom:371.813333pt;}
.y205{bottom:372.826667pt;}
.y12{bottom:373.180933pt;}
.y59{bottom:373.600000pt;}
.y143{bottom:373.970000pt;}
.yfe{bottom:374.040933pt;}
.yc0{bottom:378.025467pt;}
.y194{bottom:379.804933pt;}
.y18d{bottom:379.828933pt;}
.y19b{bottom:379.884400pt;}
.y1bb{bottom:380.919067pt;}
.y1c2{bottom:380.998533pt;}
.y121{bottom:382.158400pt;}
.ydc{bottom:383.303067pt;}
.y35{bottom:384.000000pt;}
.y96{bottom:385.866667pt;}
.y204{bottom:386.288000pt;}
.ybc{bottom:386.358800pt;}
.yfd{bottom:390.974267pt;}
.y73{bottom:391.338667pt;}
.y1d4{bottom:392.341333pt;}
.y11{bottom:392.908933pt;}
.y58{bottom:393.200000pt;}
.y193{bottom:393.808933pt;}
.y18c{bottom:393.832933pt;}
.y19a{bottom:393.888400pt;}
.y142{bottom:394.498000pt;}
.ybf{bottom:394.692133pt;}
.y1ba{bottom:394.923067pt;}
.y1c1{bottom:395.002533pt;}
.y203{bottom:399.749333pt;}
.y120{bottom:402.430400pt;}
.ydb{bottom:402.631067pt;}
.ybb{bottom:403.025467pt;}
.y34{bottom:404.000000pt;}
.y192{bottom:407.812933pt;}
.y18b{bottom:407.836933pt;}
.y199{bottom:407.892400pt;}
.yfc{bottom:407.907600pt;}
.y1b9{bottom:408.927067pt;}
.y1c0{bottom:409.006533pt;}
.y72{bottom:411.066667pt;}
.ybe{bottom:411.358800pt;}
.y10{bottom:412.636933pt;}
.y57{bottom:412.800000pt;}
.y1d3{bottom:412.869333pt;}
.y202{bottom:413.210667pt;}
.y141{bottom:415.026000pt;}
.y191{bottom:421.816933pt;}
.y18a{bottom:421.840933pt;}
.y198{bottom:421.896400pt;}
.yda{bottom:421.959067pt;}
.y1b8{bottom:422.931067pt;}
.y1bf{bottom:423.010533pt;}
.y33{bottom:424.000000pt;}
.yfb{bottom:424.840933pt;}
.y95{bottom:425.797333pt;}
.y201{bottom:426.672000pt;}
.ybd{bottom:428.025467pt;}
.y11f{bottom:430.255200pt;}
.y71{bottom:430.800000pt;}
.yf{bottom:432.364933pt;}
.y56{bottom:432.400000pt;}
.y1d2{bottom:433.397333pt;}
.y140{bottom:435.554000pt;}
.y1b7{bottom:436.935067pt;}
.y1be{bottom:437.014533pt;}
.y200{bottom:440.133333pt;}
.yd9{bottom:441.287067pt;}
.y32{bottom:444.000000pt;}
.y94{bottom:445.797333pt;}
.y11e{bottom:447.188533pt;}
.yfa{bottom:449.296000pt;}
.y70{bottom:450.533333pt;}
.y55{bottom:452.000000pt;}
.yba{bottom:452.012133pt;}
.ye{bottom:452.092933pt;}
.y1ff{bottom:453.594667pt;}
.y1d1{bottom:453.925333pt;}
.y13f{bottom:456.082000pt;}
.yd8{bottom:460.615067pt;}
.y31{bottom:464.000000pt;}
.y11d{bottom:464.121867pt;}
.y93{bottom:465.797333pt;}
.y1fe{bottom:467.056000pt;}
.yb9{bottom:468.678800pt;}
.y175{bottom:468.851867pt;}
.yf9{bottom:469.568000pt;}
.y6f{bottom:470.320000pt;}
.y54{bottom:471.600000pt;}
.yd{bottom:471.820933pt;}
.y1d0{bottom:474.453333pt;}
.y13e{bottom:476.610000pt;}
.yd7{bottom:479.943067pt;}
.y1fd{bottom:480.517333pt;}
.y226{bottom:480.666667pt;}
.y30{bottom:484.000000pt;}
.yb8{bottom:485.345467pt;}
.y92{bottom:485.797333pt;}
.y11c{bottom:488.615200pt;}
.yf8{bottom:489.840000pt;}
.y6e{bottom:490.048000pt;}
.y53{bottom:491.200000pt;}
.yc{bottom:491.548933pt;}
.y1fc{bottom:493.978667pt;}
.y1cf{bottom:494.981333pt;}
.y13d{bottom:497.138000pt;}
.y225{bottom:497.333333pt;}
.yd6{bottom:499.271067pt;}
.yb7{bottom:502.012133pt;}
.y2f{bottom:504.000000pt;}
.y11b{bottom:505.548533pt;}
.y91{bottom:505.797333pt;}
.y1fb{bottom:507.440000pt;}
.y189{bottom:509.272933pt;}
.y6d{bottom:509.776000pt;}
.yf7{bottom:510.112000pt;}
.y52{bottom:510.800000pt;}
.yb{bottom:511.276933pt;}
.y224{bottom:514.000000pt;}
.y1ce{bottom:515.509333pt;}
.yd5{bottom:518.599067pt;}
.yb6{bottom:518.678800pt;}
.y1fa{bottom:520.901333pt;}
.y11a{bottom:522.481867pt;}
.y17b{bottom:523.216933pt;}
.y188{bottom:523.276933pt;}
.y2e{bottom:524.000000pt;}
.y1b6{bottom:524.367067pt;}
.y13c{bottom:525.230400pt;}
.y90{bottom:525.797333pt;}
.y6c{bottom:529.504000pt;}
.yf6{bottom:530.384000pt;}
.y51{bottom:530.400000pt;}
.y223{bottom:530.666667pt;}
.ya{bottom:531.004933pt;}
.y17f{bottom:532.252933pt;}
.y1f9{bottom:534.362667pt;}
.y15c{bottom:536.000000pt;}
.y1cd{bottom:536.037333pt;}
.y17a{bottom:537.220933pt;}
.y187{bottom:537.280933pt;}
.yd4{bottom:537.927067pt;}
.y1a5{bottom:538.335067pt;}
.y1b5{bottom:538.371067pt;}
.y1ac{bottom:538.563067pt;}
.y119{bottom:539.415200pt;}
.y13b{bottom:542.430400pt;}
.y2d{bottom:544.000000pt;}
.y8f{bottom:545.797333pt;}
.y17e{bottom:546.256933pt;}
.y1f8{bottom:547.824000pt;}
.y6b{bottom:549.232000pt;}
.y50{bottom:550.000000pt;}
.yf5{bottom:550.656000pt;}
.y9{bottom:550.732933pt;}
.y179{bottom:551.224933pt;}
.y186{bottom:551.284933pt;}
.y1a4{bottom:552.339067pt;}
.y1b4{bottom:552.375067pt;}
.y1ab{bottom:552.567067pt;}
.yb5{bottom:554.000000pt;}
.y118{bottom:556.348533pt;}
.y15b{bottom:556.533333pt;}
.y1cc{bottom:556.565333pt;}
.yd3{bottom:557.255067pt;}
.y222{bottom:557.333333pt;}
.y13a{bottom:559.630400pt;}
.y17d{bottom:560.260933pt;}
.y1f7{bottom:561.285333pt;}
.y178{bottom:565.228933pt;}
.y185{bottom:565.288933pt;}
.y8e{bottom:565.797333pt;}
.y1a3{bottom:566.343067pt;}
.y1b3{bottom:566.379067pt;}
.y1aa{bottom:566.571067pt;}
.y6a{bottom:568.960000pt;}
.y4f{bottom:569.600000pt;}
.y8{bottom:570.460933pt;}
.yf4{bottom:570.928000pt;}
.y117{bottom:573.281867pt;}
.yb4{bottom:573.333333pt;}
.y17c{bottom:574.264933pt;}
.y1f6{bottom:574.746667pt;}
.yd2{bottom:576.583067pt;}
.y139{bottom:576.830400pt;}
.y1cb{bottom:577.093333pt;}
.y177{bottom:579.232933pt;}
.y184{bottom:579.292933pt;}
.y1a2{bottom:580.347067pt;}
.y1b2{bottom:580.383067pt;}
.y1a9{bottom:580.575067pt;}
.y2c{bottom:584.000000pt;}
.y8d{bottom:585.669333pt;}
.y1f5{bottom:588.208000pt;}
.y69{bottom:588.688000pt;}
.y4e{bottom:589.200000pt;}
.y7{bottom:590.194267pt;}
.y116{bottom:590.215200pt;}
.yf3{bottom:591.141333pt;}
.y221{bottom:594.000000pt;}
.y138{bottom:594.030400pt;}
.y1a1{bottom:594.351067pt;}
.y1b1{bottom:594.387067pt;}
.y1a8{bottom:594.579067pt;}
.yd1{bottom:595.911067pt;}
.y1ca{bottom:597.621333pt;}
.y15a{bottom:597.658667pt;}
.y1f4{bottom:601.669333pt;}
.y2b{bottom:604.000000pt;}
.y176{bottom:604.065067pt;}
.y8c{bottom:605.541333pt;}
.y115{bottom:607.148533pt;}
.y68{bottom:608.416000pt;}
.y1a7{bottom:608.583067pt;}
.y4d{bottom:608.800000pt;}
.y220{bottom:610.666667pt;}
.y137{bottom:611.230400pt;}
.yf2{bottom:611.413333pt;}
.yb3{bottom:612.058667pt;}
.y1f3{bottom:615.130667pt;}
.yd0{bottom:615.239067pt;}
.y1c9{bottom:618.149333pt;}
.y159{bottom:618.186667pt;}
.y1a6{bottom:622.587067pt;}
.y2a{bottom:624.000000pt;}
.y8b{bottom:625.413333pt;}
.y21f{bottom:627.333333pt;}
.y67{bottom:628.144000pt;}
.y4c{bottom:628.400000pt;}
.y136{bottom:628.430400pt;}
.y1f2{bottom:628.592000pt;}
.y6{bottom:630.194267pt;}
.yb2{bottom:631.386667pt;}
.y114{bottom:631.667600pt;}
.yf1{bottom:631.685333pt;}
.ycf{bottom:634.567067pt;}
.y1c8{bottom:638.677333pt;}
.y158{bottom:638.714667pt;}
.y1f1{bottom:642.053333pt;}
.y29{bottom:644.000000pt;}
.y8a{bottom:645.285333pt;}
.y135{bottom:645.630400pt;}
.y5{bottom:646.860933pt;}
.y66{bottom:647.872000pt;}
.y4b{bottom:648.000000pt;}
.yb1{bottom:650.714667pt;}
.y113{bottom:651.795600pt;}
.yf0{bottom:651.957333pt;}
.y173{bottom:652.744000pt;}
.yce{bottom:653.895067pt;}
.y1f0{bottom:655.514667pt;}
.y1c7{bottom:659.205333pt;}
.y157{bottom:659.242667pt;}
.y21e{bottom:660.666667pt;}
.y28{bottom:664.000000pt;}
.y89{bottom:665.157333pt;}
.y172{bottom:666.748000pt;}
.y182{bottom:667.084933pt;}
.y1a0{bottom:667.314800pt;}
.y4a{bottom:667.600000pt;}
.y1ef{bottom:668.976000pt;}
.yb0{bottom:670.042667pt;}
.y134{bottom:670.394800pt;}
.y112{bottom:671.923600pt;}
.yef{bottom:672.229333pt;}
.y21d{bottom:677.333333pt;}
.y1c6{bottom:679.733333pt;}
.y156{bottom:679.770667pt;}
.y171{bottom:680.752000pt;}
.y181{bottom:681.088933pt;}
.y19f{bottom:681.318800pt;}
.y1af{bottom:682.179067pt;}
.y1ee{bottom:682.437333pt;}
.y27{bottom:684.000000pt;}
.y4{bottom:684.314933pt;}
.y88{bottom:685.029333pt;}
.y49{bottom:687.200000pt;}
.yaf{bottom:689.370667pt;}
.y133{bottom:690.922800pt;}
.y183{bottom:691.000933pt;}
.y111{bottom:692.051600pt;}
.y21c{bottom:694.000000pt;}
.y170{bottom:694.756000pt;}
.y180{bottom:695.092933pt;}
.y19e{bottom:695.322800pt;}
.y1ed{bottom:695.898667pt;}
.y1ae{bottom:696.183067pt;}
.y1c5{bottom:700.266667pt;}
.y155{bottom:700.298667pt;}
.yee{bottom:702.101333pt;}
.y26{bottom:704.000000pt;}
.y3{bottom:704.314933pt;}
.y87{bottom:704.901333pt;}
.y1b0{bottom:706.095067pt;}
.y48{bottom:706.800000pt;}
.yae{bottom:708.698667pt;}
.y1ec{bottom:709.360000pt;}
.y1ad{bottom:710.187067pt;}
.y21b{bottom:710.666667pt;}
.y110{bottom:712.179600pt;}
.y132{bottom:719.014267pt;}
.y154{bottom:720.826667pt;}
.yed{bottom:722.373333pt;}
.y1eb{bottom:722.821333pt;}
.y25{bottom:724.000000pt;}
.y86{bottom:724.773333pt;}
.y174{bottom:724.849867pt;}
.y47{bottom:726.400000pt;}
.y21a{bottom:727.333333pt;}
.yad{bottom:728.026667pt;}
.y10f{bottom:732.307600pt;}
.y131{bottom:736.214267pt;}
.y1ea{bottom:736.293333pt;}
.y153{bottom:741.354667pt;}
.yec{bottom:742.645333pt;}
.y24{bottom:744.000000pt;}
.y85{bottom:744.645333pt;}
.y46{bottom:746.000000pt;}
.yac{bottom:747.354667pt;}
.y1e9{bottom:749.754667pt;}
.y130{bottom:753.414267pt;}
.y10e{bottom:760.000000pt;}
.y219{bottom:760.666667pt;}
.y152{bottom:761.882667pt;}
.yeb{bottom:762.917333pt;}
.y1e8{bottom:763.216000pt;}
.y2{bottom:764.000000pt;}
.y84{bottom:764.517333pt;}
.y16f{bottom:765.545467pt;}
.y45{bottom:765.600000pt;}
.yab{bottom:766.682667pt;}
.y1e7{bottom:776.677333pt;}
.y10d{bottom:776.800000pt;}
.y218{bottom:777.333333pt;}
.y12f{bottom:778.174267pt;}
.y151{bottom:782.410667pt;}
.yea{bottom:783.189333pt;}
.y23{bottom:784.000000pt;}
.y83{bottom:784.389333pt;}
.y44{bottom:785.200000pt;}
.yaa{bottom:786.010667pt;}
.y1e6{bottom:790.138667pt;}
.y10c{bottom:793.600000pt;}
.y217{bottom:794.000000pt;}
.y12e{bottom:802.938667pt;}
.ye9{bottom:803.461333pt;}
.y1e5{bottom:803.610667pt;}
.y22{bottom:804.000000pt;}
.y82{bottom:804.261333pt;}
.y43{bottom:804.800000pt;}
.ya9{bottom:805.338667pt;}
.y10b{bottom:810.400000pt;}
.y216{bottom:810.666667pt;}
.y1e4{bottom:817.072000pt;}
.y12d{bottom:823.466667pt;}
.ye8{bottom:823.733333pt;}
.y21{bottom:824.000000pt;}
.y81{bottom:824.133333pt;}
.y42{bottom:824.400000pt;}
.ya8{bottom:824.666667pt;}
.y10a{bottom:827.200000pt;}
.y215{bottom:827.333333pt;}
.y1e3{bottom:830.533333pt;}
.h5{height:25.070573pt;}
.h11{height:29.866667pt;}
.h6{height:33.708333pt;}
.he{height:34.148438pt;}
.h12{height:36.229167pt;}
.h3{height:37.333333pt;}
.h10{height:37.866667pt;}
.hf{height:37.921875pt;}
.hd{height:37.942708pt;}
.h1{height:42.135417pt;}
.ha{height:45.286458pt;}
.h9{height:49.765625pt;}
.h4{height:50.562500pt;}
.h7{height:54.343750pt;}
.hb{height:56.471083pt;}
.h8{height:56.513750pt;}
.hc{height:56.748417pt;}
.h2{height:84.270833pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.xb{left:64.112800pt;}
.x5{left:73.228400pt;}
.x15{left:75.055067pt;}
.x11{left:78.141733pt;}
.x6{left:86.449200pt;}
.x12{left:91.370133pt;}
.xf{left:97.788400pt;}
.x2{left:100.000000pt;}
.x7{left:104.112800pt;}
.x14{left:109.720267pt;}
.x3{left:113.228400pt;}
.x1d{left:115.055067pt;}
.x1b{left:118.141733pt;}
.x22{left:120.466667pt;}
.x10{left:126.456667pt;}
.x1c{left:137.254400pt;}
.xd{left:168.312800pt;}
.xc{left:201.819467pt;}
.x1a{left:245.047067pt;}
.x16{left:246.619067pt;}
.x9{left:251.504800pt;}
.x18{left:284.251067pt;}
.x1e{left:286.619067pt;}
.x8{left:289.779467pt;}
.x20{left:324.251067pt;}
.xe{left:327.059467pt;}
.x19{left:396.691067pt;}
.x13{left:405.089733pt;}
.xa{left:410.891467pt;}
.x17{left:411.943067pt;}
.x21{left:436.691067pt;}
.x1f{left:451.943067pt;}
.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; }
  