
    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_ad0d6aa864f836f10feec8e7.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_d67603932ba89fc414264b2c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dce8ee8394f42357dbc28711.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a58d9070de30cf504ed96868.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4df5de0e60dee15736929cbf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_18b89ae4a5579227f4fe9cd7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.851000;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_bcdf45ad2d85b85745a5633b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088867;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_82e9383d50b255a47889d1db.woff')format("woff");}.ff8{font-family:ff8;line-height:1.020000;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_8423f35fe1af3b05022880f7.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_52c05d845ad9f37d31e5b5c1.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7dffa56d148c76401d912b41.woff')format("woff");}.ffb{font-family:ffb;line-height:1.088867;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_74ece42d69b339e41c316383.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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_07a873058cc12de2388af20b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.833984;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_3b981d5f2df8f421bfb64a96.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7f17904d9532916de04d65cf.woff')format("woff");}.fff{font-family:fff;line-height:0.905273;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_4868a347100bbeb9d25bc66c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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);}
.v5{vertical-align:-16.830000px;}
.v7{vertical-align:-14.400000px;}
.v1{vertical-align:-11.995800px;}
.v9{vertical-align:-10.000200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.000000px;}
.v2{vertical-align:12.000000px;}
.v8{vertical-align:14.400000px;}
.v3{vertical-align:19.804200px;}
.v4{vertical-align:23.760000px;}
.ls23{letter-spacing:-6.120000px;}
.ls3e{letter-spacing:-4.896000px;}
.ls29{letter-spacing:-4.104000px;}
.ls3f{letter-spacing:-2.832000px;}
.ls1e{letter-spacing:-2.340000px;}
.ls38{letter-spacing:-2.016000px;}
.ls3d{letter-spacing:-1.872000px;}
.ls6{letter-spacing:-1.680000px;}
.ls36{letter-spacing:-1.310400px;}
.ls25{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.600000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.300000px;}
.ls3a{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.210000px;}
.ls2a{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.216000px;}
.ls35{letter-spacing:0.252000px;}
.ls28{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.336600px;}
.ls19{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.361800px;}
.ls2c{letter-spacing:0.388800px;}
.ls24{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.ls11{letter-spacing:0.648000px;}
.ls37{letter-spacing:0.705600px;}
.ls14{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.ls32{letter-spacing:0.856800px;}
.ls20{letter-spacing:0.864000px;}
.ls1a{letter-spacing:1.008000px;}
.ls1d{letter-spacing:1.152000px;}
.ls31{letter-spacing:1.224000px;}
.ls1{letter-spacing:2.850000px;}
.ls40{letter-spacing:2.928000px;}
.ls41{letter-spacing:2.952000px;}
.lsb{letter-spacing:3.360000px;}
.lsa{letter-spacing:3.408000px;}
.ls30{letter-spacing:3.657600px;}
.ls34{letter-spacing:3.808200px;}
.ls2e{letter-spacing:4.032000px;}
.ls26{letter-spacing:4.200000px;}
.ls27{letter-spacing:4.236000px;}
.ls43{letter-spacing:4.416000px;}
.lsc{letter-spacing:4.512000px;}
.ls3{letter-spacing:4.560000px;}
.ls39{letter-spacing:4.752000px;}
.ls21{letter-spacing:5.112000px;}
.ls3b{letter-spacing:6.768000px;}
.ls12{letter-spacing:7.380000px;}
.ls42{letter-spacing:8.100000px;}
.ls44{letter-spacing:8.400000px;}
.ls0{letter-spacing:8.436000px;}
.ls5{letter-spacing:8.460000px;}
.ls2b{letter-spacing:8.892000px;}
.ls2{letter-spacing:10.740000px;}
.ls1b{letter-spacing:13.896000px;}
.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;}
}
.ws3{word-spacing:-25.320000px;}
.ws61{word-spacing:-23.274000px;}
.ws4d{word-spacing:-21.456000px;}
.ws25{word-spacing:-20.880000px;}
.ws4f{word-spacing:-20.592000px;}
.ws58{word-spacing:-20.256000px;}
.ws2e{word-spacing:-20.232000px;}
.ws1c{word-spacing:-20.016000px;}
.ws1{word-spacing:-18.867000px;}
.ws39{word-spacing:-17.784000px;}
.ws49{word-spacing:-17.712000px;}
.ws26{word-spacing:-16.860000px;}
.ws35{word-spacing:-16.560000px;}
.ws4e{word-spacing:-15.019200px;}
.ws4b{word-spacing:-14.868000px;}
.ws33{word-spacing:-14.820000px;}
.ws50{word-spacing:-14.414400px;}
.ws10{word-spacing:-14.162400px;}
.ws55{word-spacing:-13.488000px;}
.ws4a{word-spacing:-12.852000px;}
.ws54{word-spacing:-12.336000px;}
.ws4c{word-spacing:-12.146400px;}
.ws12{word-spacing:-11.856000px;}
.ws6{word-spacing:-11.802000px;}
.ws63{word-spacing:-11.592000px;}
.ws60{word-spacing:-11.328000px;}
.ws5{word-spacing:-10.122000px;}
.ws13{word-spacing:-10.020000px;}
.ws59{word-spacing:-9.441600px;}
.ws5d{word-spacing:-8.592000px;}
.ws0{word-spacing:-8.496000px;}
.ws16{word-spacing:-8.460000px;}
.ws1b{word-spacing:-7.440000px;}
.ws57{word-spacing:-6.768000px;}
.ws14{word-spacing:-4.512000px;}
.ws64{word-spacing:-4.200000px;}
.ws53{word-spacing:-1.224000px;}
.ws31{word-spacing:-1.152000px;}
.ws2f{word-spacing:-1.008000px;}
.ws3b{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.792000px;}
.ws23{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.648000px;}
.ws1f{word-spacing:-0.576000px;}
.ws19{word-spacing:-0.504000px;}
.ws43{word-spacing:-0.432000px;}
.ws22{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.288000px;}
.ws1e{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.144000px;}
.ws2{word-spacing:-0.120000px;}
.wsf{word-spacing:-0.072000px;}
.ws4{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:0.060000px;}
.ws18{word-spacing:0.072000px;}
.ws41{word-spacing:0.144000px;}
.ws17{word-spacing:0.216000px;}
.ws5a{word-spacing:0.240000px;}
.ws56{word-spacing:0.288000px;}
.wsd{word-spacing:0.300000px;}
.ws3a{word-spacing:0.360000px;}
.ws1d{word-spacing:0.432000px;}
.ws21{word-spacing:0.504000px;}
.ws34{word-spacing:0.540000px;}
.ws42{word-spacing:0.576000px;}
.ws38{word-spacing:0.600000px;}
.ws37{word-spacing:0.720000px;}
.ws48{word-spacing:0.792000px;}
.ws3d{word-spacing:1.008000px;}
.ws62{word-spacing:1.440000px;}
.wsc{word-spacing:1.728000px;}
.wsa{word-spacing:1.800000px;}
.ws5f{word-spacing:1.872000px;}
.ws47{word-spacing:2.160000px;}
.ws36{word-spacing:2.340000px;}
.ws32{word-spacing:2.400000px;}
.ws5b{word-spacing:2.448000px;}
.ws45{word-spacing:2.664000px;}
.ws5e{word-spacing:2.784000px;}
.ws5c{word-spacing:3.360000px;}
.wsb{word-spacing:3.990000px;}
.ws3e{word-spacing:4.104000px;}
.ws7{word-spacing:4.200000px;}
.ws46{word-spacing:4.680000px;}
.ws52{word-spacing:5.040000px;}
.ws51{word-spacing:5.112000px;}
.ws3c{word-spacing:6.120000px;}
.ws1a{word-spacing:7.200000px;}
.ws9{word-spacing:8.400000px;}
.ws44{word-spacing:10.080000px;}
.ws40{word-spacing:10.152000px;}
.wse{word-spacing:146.196000px;}
.ws29{word-spacing:321.433800px;}
.ws28{word-spacing:335.772000px;}
.ws2c{word-spacing:342.393000px;}
.ws2b{word-spacing:356.731200px;}
.ws27{word-spacing:1073.641800px;}
.ws2a{word-spacing:1084.121400px;}
.ws2d{word-spacing:1147.187400px;}
._0{margin-left:-948.820800px;}
._19{margin-left:-14.760000px;}
._1c{margin-left:-11.455200px;}
._12{margin-left:-9.468000px;}
._f{margin-left:-7.274400px;}
._1{margin-left:-5.964000px;}
._5{margin-left:-4.062000px;}
._6{margin-left:-2.940000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._7{width:3.540000px;}
._8{width:5.359200px;}
._11{width:6.482400px;}
._15{width:7.509600px;}
._4{width:8.556000px;}
._16{width:9.678000px;}
._13{width:10.706400px;}
._10{width:12.378000px;}
._17{width:13.428000px;}
._18{width:15.064800px;}
._1b{width:17.960400px;}
._1a{width:28.300800px;}
._14{width:31.645500px;}
._e{width:39.180000px;}
._9{width:46.188000px;}
._c{width:73.056000px;}
._a{width:75.180000px;}
._b{width:77.304000px;}
._d{width:159.180000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs7{font-size:35.700000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:39.000000px;}
.y23{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y48{bottom:117.000000px;}
.yfd{bottom:117.716100px;}
.y15b{bottom:117.738150px;}
.y1d7{bottom:118.303950px;}
.yb2{bottom:118.338150px;}
.y232{bottom:119.336250px;}
.y6b{bottom:120.600000px;}
.y8b{bottom:120.916500px;}
.y17f{bottom:121.152750px;}
.y209{bottom:121.220100px;}
.y1a0{bottom:121.368000px;}
.y22{bottom:121.406700px;}
.yd6{bottom:122.556150px;}
.y120{bottom:122.896050px;}
.y136{bottom:123.255900px;}
.y47{bottom:132.000000px;}
.y1d6{bottom:132.847950px;}
.y19f{bottom:136.368000px;}
.y208{bottom:136.376100px;}
.y15a{bottom:136.488150px;}
.y231{bottom:137.636250px;}
.yb1{bottom:138.138150px;}
.y18b{bottom:139.500000px;}
.y21{bottom:140.306700px;}
.yfc{bottom:140.360100px;}
.y17e{bottom:143.202750px;}
.y6a{bottom:143.550000px;}
.y8a{bottom:144.010500px;}
.y11f{bottom:144.640050px;}
.y135{bottom:145.755900px;}
.yd5{bottom:145.956150px;}
.y1d5{bottom:147.403950px;}
.y46{bottom:151.207500px;}
.y19e{bottom:151.368000px;}
.y207{bottom:151.520100px;}
.y230{bottom:155.936250px;}
.yb0{bottom:157.938150px;}
.y20{bottom:159.206700px;}
.y1d4{bottom:161.953950px;}
.y18a{bottom:162.000000px;}
.yfb{bottom:163.004100px;}
.y159{bottom:163.742100px;}
.y17d{bottom:165.252750px;}
.y19d{bottom:166.368000px;}
.y69{bottom:166.500000px;}
.y206{bottom:166.664100px;}
.y89{bottom:167.104500px;}
.y11e{bottom:167.284050px;}
.y134{bottom:168.255900px;}
.yd4{bottom:169.356150px;}
.y45{bottom:169.500000px;}
.y22f{bottom:174.236250px;}
.y1d3{bottom:176.598000px;}
.yaf{bottom:177.738150px;}
.y1f{bottom:178.106700px;}
.y19c{bottom:181.368000px;}
.y205{bottom:181.808100px;}
.y189{bottom:184.500000px;}
.yfa{bottom:185.648100px;}
.y158{bottom:186.242100px;}
.y17c{bottom:187.302750px;}
.y44{bottom:188.707500px;}
.y68{bottom:189.450000px;}
.y11d{bottom:189.928050px;}
.y88{bottom:190.198500px;}
.y22e{bottom:192.536250px;}
.yd3{bottom:192.900150px;}
.y1d2{bottom:195.402000px;}
.y19b{bottom:196.368000px;}
.y204{bottom:196.952100px;}
.y1e{bottom:197.006700px;}
.yae{bottom:197.538150px;}
.y188{bottom:207.000000px;}
.yf9{bottom:208.292100px;}
.y157{bottom:208.742100px;}
.y22d{bottom:210.836250px;}
.y19a{bottom:211.368000px;}
.y203{bottom:212.096100px;}
.y67{bottom:212.400000px;}
.y11c{bottom:212.572050px;}
.y87{bottom:213.292500px;}
.y1d{bottom:215.905650px;}
.yd2{bottom:216.444150px;}
.yad{bottom:217.338150px;}
.y17b{bottom:217.855650px;}
.y43{bottom:225.946050px;}
.y199{bottom:226.368000px;}
.y202{bottom:227.240100px;}
.y22c{bottom:229.136250px;}
.y187{bottom:229.500000px;}
.y156{bottom:231.242100px;}
.y1d1{bottom:232.002000px;}
.y1c{bottom:234.805650px;}
.y11b{bottom:235.216050px;}
.y66{bottom:235.350000px;}
.y17a{bottom:236.155650px;}
.y86{bottom:236.386500px;}
.yac{bottom:237.138150px;}
.yf8{bottom:239.446050px;}
.y198{bottom:241.368000px;}
.y201{bottom:242.396100px;}
.y1d0{bottom:246.546000px;}
.y22b{bottom:247.436250px;}
.y42{bottom:249.346050px;}
.y186{bottom:252.000000px;}
.y1b{bottom:253.705650px;}
.y155{bottom:253.742100px;}
.y197{bottom:256.368000px;}
.yab{bottom:256.938150px;}
.y200{bottom:257.540100px;}
.y11a{bottom:257.860050px;}
.y65{bottom:258.300000px;}
.yf7{bottom:258.346050px;}
.y85{bottom:259.786500px;}
.y1cf{bottom:261.090000px;}
.y179{bottom:262.960650px;}
.yd1{bottom:263.388150px;}
.y22a{bottom:265.736250px;}
.y196{bottom:271.368000px;}
.y1ff{bottom:272.684100px;}
.y41{bottom:272.746050px;}
.y185{bottom:274.500000px;}
.y1ce{bottom:275.634000px;}
.y154{bottom:276.242100px;}
.yf6{bottom:277.246050px;}
.y133{bottom:279.992100px;}
.y1a{bottom:281.110650px;}
.y64{bottom:281.250000px;}
.y178{bottom:281.260650px;}
.y84{bottom:283.186500px;}
.yaa{bottom:285.278100px;}
.y195{bottom:286.368000px;}
.yd0{bottom:286.788150px;}
.y1fe{bottom:287.828100px;}
.y1cd{bottom:290.178000px;}
.y40{bottom:296.146050px;}
.y229{bottom:296.792100px;}
.y184{bottom:297.000000px;}
.y194{bottom:301.368000px;}
.y1fd{bottom:302.972100px;}
.y119{bottom:303.166050px;}
.y63{bottom:304.200000px;}
.y1cc{bottom:304.722000px;}
.y83{bottom:306.280500px;}
.y153{bottom:307.246050px;}
.y177{bottom:308.064600px;}
.ya9{bottom:308.822100px;}
.ycf{bottom:310.188150px;}
.yf5{bottom:315.046050px;}
.y193{bottom:316.368000px;}
.y1fc{bottom:318.128100px;}
.y1cb{bottom:319.266000px;}
.y183{bottom:319.500000px;}
.y3f{bottom:319.546050px;}
.y118{bottom:325.810050px;}
.y152{bottom:325.996050px;}
.y19{bottom:326.410650px;}
.y62{bottom:327.150000px;}
.y228{bottom:327.186000px;}
.y82{bottom:329.374500px;}
.y176{bottom:330.114600px;}
.y192{bottom:331.368000px;}
.ya8{bottom:332.366100px;}
.y1ca{bottom:333.810000px;}
.yf4{bottom:333.946050px;}
.y24d{bottom:338.250000px;}
.y1fb{bottom:339.656100px;}
.y182{bottom:342.000000px;}
.yce{bottom:342.092100px;}
.y3e{bottom:342.946050px;}
.y227{bottom:344.730000px;}
.y151{bottom:344.746050px;}
.y18{bottom:345.310650px;}
.y191{bottom:346.368000px;}
.y1c9{bottom:348.354000px;}
.y117{bottom:348.454050px;}
.y61{bottom:350.100000px;}
.y175{bottom:352.164600px;}
.y81{bottom:352.468500px;}
.yf3{bottom:352.846050px;}
.ya7{bottom:355.910100px;}
.y24c{bottom:357.000000px;}
.y190{bottom:361.368000px;}
.ycd{bottom:361.742100px;}
.y1c8{bottom:362.898000px;}
.y150{bottom:363.496050px;}
.y181{bottom:364.500000px;}
.y3d{bottom:366.346050px;}
.y116{bottom:371.098050px;}
.yf2{bottom:371.746050px;}
.y132{bottom:372.259800px;}
.y17{bottom:372.714600px;}
.y60{bottom:373.050000px;}
.y174{bottom:374.214600px;}
.y80{bottom:375.562500px;}
.y24b{bottom:375.750000px;}
.y18f{bottom:376.368000px;}
.y1c7{bottom:377.598000px;}
.ya6{bottom:379.454100px;}
.ycc{bottom:381.392100px;}
.y14f{bottom:382.246050px;}
.y1fa{bottom:384.956100px;}
.y180{bottom:387.000000px;}
.y3c{bottom:389.746050px;}
.yf1{bottom:390.646050px;}
.y18e{bottom:391.368000px;}
.y16{bottom:391.614600px;}
.y1c6{bottom:392.298000px;}
.y226{bottom:393.078000px;}
.y115{bottom:393.742050px;}
.y5f{bottom:396.000000px;}
.y7f{bottom:398.656500px;}
.y1f9{bottom:400.100100px;}
.ycb{bottom:401.042100px;}
.ya5{bottom:402.998100px;}
.y173{bottom:404.767500px;}
.y18d{bottom:406.368000px;}
.y1c5{bottom:406.998000px;}
.y225{bottom:407.778000px;}
.y14e{bottom:409.500000px;}
.yf0{bottom:409.546050px;}
.y15{bottom:410.514600px;}
.y3b{bottom:413.146050px;}
.y24a{bottom:413.250000px;}
.y1f8{bottom:415.244100px;}
.y114{bottom:416.386050px;}
.y5e{bottom:418.950000px;}
.yca{bottom:420.692100px;}
.y1c4{bottom:421.698000px;}
.y7e{bottom:421.750500px;}
.y224{bottom:422.478000px;}
.y172{bottom:423.067500px;}
.y18c{bottom:425.616000px;}
.ya4{bottom:426.542100px;}
.yef{bottom:428.446050px;}
.y14{bottom:429.413550px;}
.y1f7{bottom:430.388100px;}
.y14d{bottom:432.000000px;}
.y1c3{bottom:436.398000px;}
.y3a{bottom:436.546050px;}
.y223{bottom:437.178000px;}
.y113{bottom:439.030050px;}
.yc9{bottom:440.342100px;}
.y171{bottom:441.367500px;}
.y5d{bottom:441.900000px;}
.y249{bottom:443.250000px;}
.y1f6{bottom:445.532100px;}
.yee{bottom:447.346050px;}
.y13{bottom:448.313550px;}
.y1c2{bottom:451.098000px;}
.y222{bottom:451.878000px;}
.y14c{bottom:454.500000px;}
.ya3{bottom:458.596050px;}
.y39{bottom:459.946050px;}
.yc8{bottom:459.992100px;}
.y1f5{bottom:460.676100px;}
.y112{bottom:461.674050px;}
.y248{bottom:462.000000px;}
.y5c{bottom:464.850000px;}
.y1c1{bottom:465.798000px;}
.yed{bottom:466.246050px;}
.y221{bottom:466.578000px;}
.y12{bottom:467.213550px;}
.y170{bottom:468.172500px;}
.y7d{bottom:470.827800px;}
.y1f4{bottom:475.820100px;}
.y14b{bottom:477.000000px;}
.ya2{bottom:478.246050px;}
.yc7{bottom:479.642100px;}
.y1c0{bottom:480.498000px;}
.y247{bottom:480.750000px;}
.y220{bottom:481.278000px;}
.y38{bottom:483.346050px;}
.y111{bottom:484.318050px;}
.yec{bottom:485.146050px;}
.y11{bottom:486.113550px;}
.y16f{bottom:486.472500px;}
.y5b{bottom:487.800000px;}
.y1f3{bottom:490.964100px;}
.y1bf{bottom:495.198000px;}
.y21f{bottom:495.978000px;}
.y7c{bottom:497.811300px;}
.ya1{bottom:497.896050px;}
.yc6{bottom:499.292100px;}
.y14a{bottom:499.500000px;}
.y131{bottom:500.400000px;}
.yeb{bottom:504.046050px;}
.y16e{bottom:504.772500px;}
.y10{bottom:505.013550px;}
.y1f2{bottom:506.108100px;}
.y37{bottom:506.746050px;}
.y110{bottom:506.962050px;}
.y1be{bottom:509.898000px;}
.y21e{bottom:510.678000px;}
.y5a{bottom:510.750000px;}
.ya0{bottom:517.546050px;}
.y246{bottom:518.250000px;}
.yc5{bottom:518.942100px;}
.y1f1{bottom:521.252100px;}
.y149{bottom:522.000000px;}
.yea{bottom:522.946050px;}
.yf{bottom:523.913550px;}
.y1bd{bottom:524.598000px;}
.y7b{bottom:524.794650px;}
.y21d{bottom:525.378000px;}
.y10f{bottom:529.606050px;}
.y36{bottom:530.146050px;}
.y16d{bottom:531.576300px;}
.y1f0{bottom:536.396100px;}
.y245{bottom:537.000000px;}
.y9f{bottom:537.196050px;}
.yc4{bottom:538.592100px;}
.y1bc{bottom:539.298000px;}
.y21c{bottom:540.078000px;}
.ye9{bottom:541.846050px;}
.ye{bottom:542.813550px;}
.y148{bottom:544.500000px;}
.y130{bottom:545.370000px;}
.y1ef{bottom:551.540100px;}
.y7a{bottom:551.778150px;}
.y10e{bottom:552.250050px;}
.y35{bottom:553.546050px;}
.y16c{bottom:553.626300px;}
.y1bb{bottom:553.998000px;}
.y21b{bottom:554.778000px;}
.y244{bottom:555.750000px;}
.y9e{bottom:556.846050px;}
.y59{bottom:556.896000px;}
.yc3{bottom:558.242100px;}
.ye8{bottom:560.746050px;}
.yd{bottom:561.713550px;}
.y1ee{bottom:566.684100px;}
.y147{bottom:567.000000px;}
.y12f{bottom:567.870000px;}
.y1ba{bottom:568.698000px;}
.y21a{bottom:569.478000px;}
.y243{bottom:574.500000px;}
.y10d{bottom:574.894050px;}
.y16b{bottom:575.676300px;}
.y9d{bottom:576.496050px;}
.y34{bottom:576.946050px;}
.yc2{bottom:577.892100px;}
.y79{bottom:578.761650px;}
.ye7{bottom:579.646050px;}
.y58{bottom:579.990000px;}
.yc{bottom:580.613550px;}
.y1ed{bottom:581.828100px;}
.y1b9{bottom:583.398000px;}
.y219{bottom:584.178000px;}
.y146{bottom:589.500000px;}
.y12e{bottom:590.370000px;}
.y242{bottom:593.250000px;}
.y9c{bottom:596.146050px;}
.y1ec{bottom:596.972100px;}
.y10c{bottom:597.538050px;}
.yc1{bottom:597.542100px;}
.y1b8{bottom:598.098000px;}
.ye6{bottom:598.546050px;}
.y218{bottom:598.878000px;}
.yb{bottom:599.513550px;}
.y33{bottom:600.346050px;}
.y57{bottom:603.084000px;}
.y78{bottom:605.745150px;}
.y16a{bottom:606.230250px;}
.y145{bottom:612.000000px;}
.y1eb{bottom:612.116100px;}
.y1b7{bottom:612.798000px;}
.y12d{bottom:612.870000px;}
.y217{bottom:613.578000px;}
.y9b{bottom:615.796050px;}
.yc0{bottom:617.192100px;}
.ye5{bottom:617.446050px;}
.y32{bottom:623.746050px;}
.y169{bottom:624.530250px;}
.y56{bottom:626.178000px;}
.ya{bottom:626.918550px;}
.y1ea{bottom:627.260100px;}
.y1b6{bottom:627.498000px;}
.y216{bottom:628.278000px;}
.y241{bottom:630.750000px;}
.y77{bottom:632.728650px;}
.y144{bottom:634.500000px;}
.y12c{bottom:635.370000px;}
.y9a{bottom:635.446050px;}
.ye4{bottom:636.346050px;}
.ybf{bottom:636.842100px;}
.y1b5{bottom:642.198000px;}
.y1e9{bottom:642.404100px;}
.y10b{bottom:642.844050px;}
.y215{bottom:642.978000px;}
.y31{bottom:647.146050px;}
.y55{bottom:649.272000px;}
.y240{bottom:649.500000px;}
.y168{bottom:651.334200px;}
.y99{bottom:655.096050px;}
.ye3{bottom:655.246050px;}
.y1b4{bottom:656.898000px;}
.y143{bottom:657.000000px;}
.y1e8{bottom:657.553950px;}
.y214{bottom:657.678000px;}
.y12b{bottom:657.870000px;}
.y76{bottom:659.713650px;}
.ybe{bottom:665.008050px;}
.y10a{bottom:665.488050px;}
.y23f{bottom:668.250000px;}
.y30{bottom:670.546050px;}
.y1b3{bottom:671.598000px;}
.y54{bottom:672.366000px;}
.y213{bottom:672.378000px;}
.y1e7{bottom:672.704100px;}
.y9{bottom:672.954300px;}
.y167{bottom:673.384200px;}
.ye2{bottom:674.146050px;}
.y98{bottom:674.746050px;}
.y75{bottom:678.463650px;}
.y142{bottom:679.500000px;}
.y12a{bottom:680.370000px;}
.y1b2{bottom:686.298000px;}
.y23e{bottom:687.000000px;}
.y212{bottom:687.078000px;}
.y1e6{bottom:687.894000px;}
.y109{bottom:688.132050px;}
.ybd{bottom:688.408050px;}
.y8{bottom:692.604300px;}
.y2f{bottom:693.946050px;}
.y97{bottom:694.396050px;}
.y166{bottom:695.434200px;}
.y53{bottom:695.460000px;}
.y1b1{bottom:700.998000px;}
.ye1{bottom:701.574000px;}
.y211{bottom:701.778000px;}
.y141{bottom:702.000000px;}
.y129{bottom:702.870000px;}
.y23d{bottom:705.750000px;}
.y1e5{bottom:707.298000px;}
.y108{bottom:710.776050px;}
.ybc{bottom:711.808050px;}
.y96{bottom:714.046050px;}
.y7{bottom:715.254300px;}
.y1b0{bottom:715.698000px;}
.y210{bottom:716.478000px;}
.y2e{bottom:717.346050px;}
.y74{bottom:718.200000px;}
.y52{bottom:718.554000px;}
.ye0{bottom:724.218000px;}
.y140{bottom:724.500000px;}
.y128{bottom:725.370000px;}
.y165{bottom:725.987100px;}
.y1af{bottom:730.398000px;}
.y20f{bottom:731.178000px;}
.y107{bottom:733.420050px;}
.y95{bottom:733.696050px;}
.ybb{bottom:735.208050px;}
.y51{bottom:741.648000px;}
.y23c{bottom:743.250000px;}
.y164{bottom:744.287100px;}
.y1ae{bottom:745.098000px;}
.y20e{bottom:745.878000px;}
.ydf{bottom:746.862000px;}
.y13f{bottom:747.000000px;}
.y127{bottom:747.870000px;}
.y1e4{bottom:752.598000px;}
.y94{bottom:753.346050px;}
.y106{bottom:756.064050px;}
.yba{bottom:758.608050px;}
.y1ad{bottom:759.798000px;}
.y20d{bottom:760.422000px;}
.y23b{bottom:762.000000px;}
.y2d{bottom:764.146050px;}
.y73{bottom:764.430000px;}
.y50{bottom:764.742000px;}
.y1e3{bottom:767.742000px;}
.y13e{bottom:769.500000px;}
.yde{bottom:769.506000px;}
.y126{bottom:770.370000px;}
.y163{bottom:771.092100px;}
.y93{bottom:772.996050px;}
.y1ac{bottom:774.498000px;}
.y20c{bottom:774.966000px;}
.y105{bottom:778.708050px;}
.y23a{bottom:780.750000px;}
.yb9{bottom:782.152050px;}
.y6{bottom:782.550000px;}
.y1e2{bottom:782.886000px;}
.y2c{bottom:783.796050px;}
.y72{bottom:787.524000px;}
.y4f{bottom:787.836000px;}
.y1ab{bottom:789.198000px;}
.y162{bottom:789.392100px;}
.y20b{bottom:789.510000px;}
.y13d{bottom:792.000000px;}
.ydd{bottom:792.150000px;}
.y92{bottom:792.646050px;}
.y125{bottom:792.870000px;}
.y1e1{bottom:798.030000px;}
.y239{bottom:799.500000px;}
.y104{bottom:801.352050px;}
.y1aa{bottom:803.898000px;}
.y20a{bottom:804.054000px;}
.yb8{bottom:805.696050px;}
.y71{bottom:810.618000px;}
.y4e{bottom:810.930000px;}
.y2b{bottom:811.950000px;}
.y91{bottom:812.296050px;}
.y5{bottom:812.700000px;}
.y1e0{bottom:813.174000px;}
.y13c{bottom:814.500000px;}
.ydc{bottom:814.794000px;}
.y124{bottom:815.370000px;}
.y161{bottom:816.196050px;}
.y238{bottom:818.250000px;}
.y1a9{bottom:818.598000px;}
.y103{bottom:823.996050px;}
.y1df{bottom:828.330000px;}
.yb7{bottom:829.096050px;}
.y2a{bottom:831.600000px;}
.y90{bottom:831.946050px;}
.y1a8{bottom:833.142000px;}
.y70{bottom:833.712000px;}
.y4d{bottom:834.024000px;}
.y13b{bottom:837.000000px;}
.ydb{bottom:837.294000px;}
.y123{bottom:837.726000px;}
.y160{bottom:838.246050px;}
.y4{bottom:842.850000px;}
.y1de{bottom:843.474000px;}
.y102{bottom:846.496050px;}
.y1a7{bottom:847.686000px;}
.y29{bottom:851.250000px;}
.yb6{bottom:852.496050px;}
.y237{bottom:855.750000px;}
.y6f{bottom:856.806000px;}
.y4c{bottom:857.118000px;}
.y1dd{bottom:858.618000px;}
.y13a{bottom:859.500000px;}
.yda{bottom:859.794000px;}
.y122{bottom:860.082000px;}
.y8f{bottom:860.106000px;}
.y15f{bottom:860.296050px;}
.y1a6{bottom:862.230000px;}
.y28{bottom:870.900000px;}
.y3{bottom:873.000000px;}
.y1dc{bottom:873.762000px;}
.y236{bottom:874.500000px;}
.yb5{bottom:875.896050px;}
.y1a5{bottom:876.774000px;}
.y101{bottom:877.500000px;}
.y6e{bottom:879.900000px;}
.y4b{bottom:880.212000px;}
.y139{bottom:882.000000px;}
.yd9{bottom:882.294000px;}
.y15e{bottom:882.346050px;}
.y121{bottom:882.438000px;}
.y8e{bottom:882.606000px;}
.y1db{bottom:888.906000px;}
.y27{bottom:890.550000px;}
.y1a4{bottom:891.318000px;}
.y235{bottom:893.250000px;}
.y100{bottom:895.500000px;}
.y6d{bottom:902.994000px;}
.y4a{bottom:903.306000px;}
.y1da{bottom:904.062000px;}
.y138{bottom:904.500000px;}
.yd8{bottom:904.794000px;}
.y8d{bottom:905.106000px;}
.y1a3{bottom:905.862000px;}
.yb4{bottom:907.800000px;}
.y26{bottom:910.200000px;}
.y234{bottom:912.000000px;}
.y15d{bottom:912.900000px;}
.yff{bottom:913.500000px;}
.y1d9{bottom:919.206000px;}
.y1a2{bottom:920.406000px;}
.y2{bottom:925.650000px;}
.y6c{bottom:926.250000px;}
.y49{bottom:926.400000px;}
.y137{bottom:927.000000px;}
.yd7{bottom:927.150000px;}
.y8c{bottom:927.300000px;}
.yb3{bottom:928.650000px;}
.y25{bottom:929.850000px;}
.y233{bottom:930.750000px;}
.y15c{bottom:931.200000px;}
.yfe{bottom:931.500000px;}
.y1d8{bottom:934.350000px;}
.y1a1{bottom:934.950000px;}
.h9{height:30.313623px;}
.h11{height:39.072000px;}
.ha{height:40.757812px;}
.h12{height:45.852539px;}
.he{height:47.988281px;}
.hf{height:48.375000px;}
.h2{height:48.399902px;}
.h10{height:48.840000px;}
.h4{height:50.580000px;}
.h1{height:50.947266px;}
.h6{height:50.951466px;}
.hc{height:50.953266px;}
.hd{height:50.953866px;}
.h13{height:55.463086px;}
.h7{height:55.467286px;}
.hb{height:56.947266px;}
.h5{height:61.136719px;}
.h8{height:66.555703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.381950px;}
.x6{left:97.263750px;}
.xd{left:103.072050px;}
.xf{left:105.682200px;}
.x2{left:112.500000px;}
.x8{left:127.381950px;}
.x5{left:135.000000px;}
.x9{left:139.042050px;}
.x3{left:142.263750px;}
.x10{left:157.143750px;}
.x11{left:180.556800px;}
.xe{left:266.317200px;}
.xa{left:306.127050px;}
.xb{left:436.882050px;}
.xc{left:463.627050px;}
.x1{left:625.781250px;}
@media print{
.v5{vertical-align:-14.960000pt;}
.v7{vertical-align:-12.800000pt;}
.v1{vertical-align:-10.662933pt;}
.v9{vertical-align:-8.889067pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.333333pt;}
.v2{vertical-align:10.666667pt;}
.v8{vertical-align:12.800000pt;}
.v3{vertical-align:17.603733pt;}
.v4{vertical-align:21.120000pt;}
.ls23{letter-spacing:-5.440000pt;}
.ls3e{letter-spacing:-4.352000pt;}
.ls29{letter-spacing:-3.648000pt;}
.ls3f{letter-spacing:-2.517333pt;}
.ls1e{letter-spacing:-2.080000pt;}
.ls38{letter-spacing:-1.792000pt;}
.ls3d{letter-spacing:-1.664000pt;}
.ls6{letter-spacing:-1.493333pt;}
.ls36{letter-spacing:-1.164800pt;}
.ls25{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.533333pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls3a{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.186667pt;}
.ls2a{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls35{letter-spacing:0.224000pt;}
.ls28{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.299200pt;}
.ls19{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.321600pt;}
.ls2c{letter-spacing:0.345600pt;}
.ls24{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls37{letter-spacing:0.627200pt;}
.ls14{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls32{letter-spacing:0.761600pt;}
.ls20{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:1.024000pt;}
.ls31{letter-spacing:1.088000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls40{letter-spacing:2.602667pt;}
.ls41{letter-spacing:2.624000pt;}
.lsb{letter-spacing:2.986667pt;}
.lsa{letter-spacing:3.029333pt;}
.ls30{letter-spacing:3.251200pt;}
.ls34{letter-spacing:3.385067pt;}
.ls2e{letter-spacing:3.584000pt;}
.ls26{letter-spacing:3.733333pt;}
.ls27{letter-spacing:3.765333pt;}
.ls43{letter-spacing:3.925333pt;}
.lsc{letter-spacing:4.010667pt;}
.ls3{letter-spacing:4.053333pt;}
.ls39{letter-spacing:4.224000pt;}
.ls21{letter-spacing:4.544000pt;}
.ls3b{letter-spacing:6.016000pt;}
.ls12{letter-spacing:6.560000pt;}
.ls42{letter-spacing:7.200000pt;}
.ls44{letter-spacing:7.466667pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5{letter-spacing:7.520000pt;}
.ls2b{letter-spacing:7.904000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls1b{letter-spacing:12.352000pt;}
.ws3{word-spacing:-22.506667pt;}
.ws61{word-spacing:-20.688000pt;}
.ws4d{word-spacing:-19.072000pt;}
.ws25{word-spacing:-18.560000pt;}
.ws4f{word-spacing:-18.304000pt;}
.ws58{word-spacing:-18.005333pt;}
.ws2e{word-spacing:-17.984000pt;}
.ws1c{word-spacing:-17.792000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws39{word-spacing:-15.808000pt;}
.ws49{word-spacing:-15.744000pt;}
.ws26{word-spacing:-14.986667pt;}
.ws35{word-spacing:-14.720000pt;}
.ws4e{word-spacing:-13.350400pt;}
.ws4b{word-spacing:-13.216000pt;}
.ws33{word-spacing:-13.173333pt;}
.ws50{word-spacing:-12.812800pt;}
.ws10{word-spacing:-12.588800pt;}
.ws55{word-spacing:-11.989333pt;}
.ws4a{word-spacing:-11.424000pt;}
.ws54{word-spacing:-10.965333pt;}
.ws4c{word-spacing:-10.796800pt;}
.ws12{word-spacing:-10.538667pt;}
.ws6{word-spacing:-10.490667pt;}
.ws63{word-spacing:-10.304000pt;}
.ws60{word-spacing:-10.069333pt;}
.ws5{word-spacing:-8.997333pt;}
.ws13{word-spacing:-8.906667pt;}
.ws59{word-spacing:-8.392533pt;}
.ws5d{word-spacing:-7.637333pt;}
.ws0{word-spacing:-7.552000pt;}
.ws16{word-spacing:-7.520000pt;}
.ws1b{word-spacing:-6.613333pt;}
.ws57{word-spacing:-6.016000pt;}
.ws14{word-spacing:-4.010667pt;}
.ws64{word-spacing:-3.733333pt;}
.ws53{word-spacing:-1.088000pt;}
.ws31{word-spacing:-1.024000pt;}
.ws2f{word-spacing:-0.896000pt;}
.ws3b{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.704000pt;}
.ws23{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.576000pt;}
.ws1f{word-spacing:-0.512000pt;}
.ws19{word-spacing:-0.448000pt;}
.ws43{word-spacing:-0.384000pt;}
.ws22{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.256000pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.128000pt;}
.ws2{word-spacing:-0.106667pt;}
.wsf{word-spacing:-0.064000pt;}
.ws4{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:0.053333pt;}
.ws18{word-spacing:0.064000pt;}
.ws41{word-spacing:0.128000pt;}
.ws17{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.213333pt;}
.ws56{word-spacing:0.256000pt;}
.wsd{word-spacing:0.266667pt;}
.ws3a{word-spacing:0.320000pt;}
.ws1d{word-spacing:0.384000pt;}
.ws21{word-spacing:0.448000pt;}
.ws34{word-spacing:0.480000pt;}
.ws42{word-spacing:0.512000pt;}
.ws38{word-spacing:0.533333pt;}
.ws37{word-spacing:0.640000pt;}
.ws48{word-spacing:0.704000pt;}
.ws3d{word-spacing:0.896000pt;}
.ws62{word-spacing:1.280000pt;}
.wsc{word-spacing:1.536000pt;}
.wsa{word-spacing:1.600000pt;}
.ws5f{word-spacing:1.664000pt;}
.ws47{word-spacing:1.920000pt;}
.ws36{word-spacing:2.080000pt;}
.ws32{word-spacing:2.133333pt;}
.ws5b{word-spacing:2.176000pt;}
.ws45{word-spacing:2.368000pt;}
.ws5e{word-spacing:2.474667pt;}
.ws5c{word-spacing:2.986667pt;}
.wsb{word-spacing:3.546667pt;}
.ws3e{word-spacing:3.648000pt;}
.ws7{word-spacing:3.733333pt;}
.ws46{word-spacing:4.160000pt;}
.ws52{word-spacing:4.480000pt;}
.ws51{word-spacing:4.544000pt;}
.ws3c{word-spacing:5.440000pt;}
.ws1a{word-spacing:6.400000pt;}
.ws9{word-spacing:7.466667pt;}
.ws44{word-spacing:8.960000pt;}
.ws40{word-spacing:9.024000pt;}
.wse{word-spacing:129.952000pt;}
.ws29{word-spacing:285.718933pt;}
.ws28{word-spacing:298.464000pt;}
.ws2c{word-spacing:304.349333pt;}
.ws2b{word-spacing:317.094400pt;}
.ws27{word-spacing:954.348267pt;}
.ws2a{word-spacing:963.663467pt;}
.ws2d{word-spacing:1019.722133pt;}
._0{margin-left:-843.396267pt;}
._19{margin-left:-13.120000pt;}
._1c{margin-left:-10.182400pt;}
._12{margin-left:-8.416000pt;}
._f{margin-left:-6.466133pt;}
._1{margin-left:-5.301333pt;}
._5{margin-left:-3.610667pt;}
._6{margin-left:-2.613333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._7{width:3.146667pt;}
._8{width:4.763733pt;}
._11{width:5.762133pt;}
._15{width:6.675200pt;}
._4{width:7.605333pt;}
._16{width:8.602667pt;}
._13{width:9.516800pt;}
._10{width:11.002667pt;}
._17{width:11.936000pt;}
._18{width:13.390933pt;}
._1b{width:15.964800pt;}
._1a{width:25.156267pt;}
._14{width:28.129333pt;}
._e{width:34.826667pt;}
._9{width:41.056000pt;}
._c{width:64.938667pt;}
._a{width:66.826667pt;}
._b{width:68.714667pt;}
._d{width:141.493333pt;}
.fs8{font-size:29.866667pt;}
.fs7{font-size:31.733333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:34.666667pt;}
.y23{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y48{bottom:104.000000pt;}
.yfd{bottom:104.636533pt;}
.y15b{bottom:104.656133pt;}
.y1d7{bottom:105.159067pt;}
.yb2{bottom:105.189467pt;}
.y232{bottom:106.076667pt;}
.y6b{bottom:107.200000pt;}
.y8b{bottom:107.481333pt;}
.y17f{bottom:107.691333pt;}
.y209{bottom:107.751200pt;}
.y1a0{bottom:107.882667pt;}
.y22{bottom:107.917067pt;}
.yd6{bottom:108.938800pt;}
.y120{bottom:109.240933pt;}
.y136{bottom:109.560800pt;}
.y47{bottom:117.333333pt;}
.y1d6{bottom:118.087067pt;}
.y19f{bottom:121.216000pt;}
.y208{bottom:121.223200pt;}
.y15a{bottom:121.322800pt;}
.y231{bottom:122.343333pt;}
.yb1{bottom:122.789467pt;}
.y18b{bottom:124.000000pt;}
.y21{bottom:124.717067pt;}
.yfc{bottom:124.764533pt;}
.y17e{bottom:127.291333pt;}
.y6a{bottom:127.600000pt;}
.y8a{bottom:128.009333pt;}
.y11f{bottom:128.568933pt;}
.y135{bottom:129.560800pt;}
.yd5{bottom:129.738800pt;}
.y1d5{bottom:131.025733pt;}
.y46{bottom:134.406667pt;}
.y19e{bottom:134.549333pt;}
.y207{bottom:134.684533pt;}
.y230{bottom:138.610000pt;}
.yb0{bottom:140.389467pt;}
.y20{bottom:141.517067pt;}
.y1d4{bottom:143.959067pt;}
.y18a{bottom:144.000000pt;}
.yfb{bottom:144.892533pt;}
.y159{bottom:145.548533pt;}
.y17d{bottom:146.891333pt;}
.y19d{bottom:147.882667pt;}
.y69{bottom:148.000000pt;}
.y206{bottom:148.145867pt;}
.y89{bottom:148.537333pt;}
.y11e{bottom:148.696933pt;}
.y134{bottom:149.560800pt;}
.yd4{bottom:150.538800pt;}
.y45{bottom:150.666667pt;}
.y22f{bottom:154.876667pt;}
.y1d3{bottom:156.976000pt;}
.yaf{bottom:157.989467pt;}
.y1f{bottom:158.317067pt;}
.y19c{bottom:161.216000pt;}
.y205{bottom:161.607200pt;}
.y189{bottom:164.000000pt;}
.yfa{bottom:165.020533pt;}
.y158{bottom:165.548533pt;}
.y17c{bottom:166.491333pt;}
.y44{bottom:167.740000pt;}
.y68{bottom:168.400000pt;}
.y11d{bottom:168.824933pt;}
.y88{bottom:169.065333pt;}
.y22e{bottom:171.143333pt;}
.yd3{bottom:171.466800pt;}
.y1d2{bottom:173.690667pt;}
.y19b{bottom:174.549333pt;}
.y204{bottom:175.068533pt;}
.y1e{bottom:175.117067pt;}
.yae{bottom:175.589467pt;}
.y188{bottom:184.000000pt;}
.yf9{bottom:185.148533pt;}
.y157{bottom:185.548533pt;}
.y22d{bottom:187.410000pt;}
.y19a{bottom:187.882667pt;}
.y203{bottom:188.529867pt;}
.y67{bottom:188.800000pt;}
.y11c{bottom:188.952933pt;}
.y87{bottom:189.593333pt;}
.y1d{bottom:191.916133pt;}
.yd2{bottom:192.394800pt;}
.yad{bottom:193.189467pt;}
.y17b{bottom:193.649467pt;}
.y43{bottom:200.840933pt;}
.y199{bottom:201.216000pt;}
.y202{bottom:201.991200pt;}
.y22c{bottom:203.676667pt;}
.y187{bottom:204.000000pt;}
.y156{bottom:205.548533pt;}
.y1d1{bottom:206.224000pt;}
.y1c{bottom:208.716133pt;}
.y11b{bottom:209.080933pt;}
.y66{bottom:209.200000pt;}
.y17a{bottom:209.916133pt;}
.y86{bottom:210.121333pt;}
.yac{bottom:210.789467pt;}
.yf8{bottom:212.840933pt;}
.y198{bottom:214.549333pt;}
.y201{bottom:215.463200pt;}
.y1d0{bottom:219.152000pt;}
.y22b{bottom:219.943333pt;}
.y42{bottom:221.640933pt;}
.y186{bottom:224.000000pt;}
.y1b{bottom:225.516133pt;}
.y155{bottom:225.548533pt;}
.y197{bottom:227.882667pt;}
.yab{bottom:228.389467pt;}
.y200{bottom:228.924533pt;}
.y11a{bottom:229.208933pt;}
.y65{bottom:229.600000pt;}
.yf7{bottom:229.640933pt;}
.y85{bottom:230.921333pt;}
.y1cf{bottom:232.080000pt;}
.y179{bottom:233.742800pt;}
.yd1{bottom:234.122800pt;}
.y22a{bottom:236.210000pt;}
.y196{bottom:241.216000pt;}
.y1ff{bottom:242.385867pt;}
.y41{bottom:242.440933pt;}
.y185{bottom:244.000000pt;}
.y1ce{bottom:245.008000pt;}
.y154{bottom:245.548533pt;}
.yf6{bottom:246.440933pt;}
.y133{bottom:248.881867pt;}
.y1a{bottom:249.876133pt;}
.y64{bottom:250.000000pt;}
.y178{bottom:250.009467pt;}
.y84{bottom:251.721333pt;}
.yaa{bottom:253.580533pt;}
.y195{bottom:254.549333pt;}
.yd0{bottom:254.922800pt;}
.y1fe{bottom:255.847200pt;}
.y1cd{bottom:257.936000pt;}
.y40{bottom:263.240933pt;}
.y229{bottom:263.815200pt;}
.y184{bottom:264.000000pt;}
.y194{bottom:267.882667pt;}
.y1fd{bottom:269.308533pt;}
.y119{bottom:269.480933pt;}
.y63{bottom:270.400000pt;}
.y1cc{bottom:270.864000pt;}
.y83{bottom:272.249333pt;}
.y153{bottom:273.107600pt;}
.y177{bottom:273.835200pt;}
.ya9{bottom:274.508533pt;}
.ycf{bottom:275.722800pt;}
.yf5{bottom:280.040933pt;}
.y193{bottom:281.216000pt;}
.y1fc{bottom:282.780533pt;}
.y1cb{bottom:283.792000pt;}
.y183{bottom:284.000000pt;}
.y3f{bottom:284.040933pt;}
.y118{bottom:289.608933pt;}
.y152{bottom:289.774267pt;}
.y19{bottom:290.142800pt;}
.y62{bottom:290.800000pt;}
.y228{bottom:290.832000pt;}
.y82{bottom:292.777333pt;}
.y176{bottom:293.435200pt;}
.y192{bottom:294.549333pt;}
.ya8{bottom:295.436533pt;}
.y1ca{bottom:296.720000pt;}
.yf4{bottom:296.840933pt;}
.y24d{bottom:300.666667pt;}
.y1fb{bottom:301.916533pt;}
.y182{bottom:304.000000pt;}
.yce{bottom:304.081867pt;}
.y3e{bottom:304.840933pt;}
.y227{bottom:306.426667pt;}
.y151{bottom:306.440933pt;}
.y18{bottom:306.942800pt;}
.y191{bottom:307.882667pt;}
.y1c9{bottom:309.648000pt;}
.y117{bottom:309.736933pt;}
.y61{bottom:311.200000pt;}
.y175{bottom:313.035200pt;}
.y81{bottom:313.305333pt;}
.yf3{bottom:313.640933pt;}
.ya7{bottom:316.364533pt;}
.y24c{bottom:317.333333pt;}
.y190{bottom:321.216000pt;}
.ycd{bottom:321.548533pt;}
.y1c8{bottom:322.576000pt;}
.y150{bottom:323.107600pt;}
.y181{bottom:324.000000pt;}
.y3d{bottom:325.640933pt;}
.y116{bottom:329.864933pt;}
.yf2{bottom:330.440933pt;}
.y132{bottom:330.897600pt;}
.y17{bottom:331.301867pt;}
.y60{bottom:331.600000pt;}
.y174{bottom:332.635200pt;}
.y80{bottom:333.833333pt;}
.y24b{bottom:334.000000pt;}
.y18f{bottom:334.549333pt;}
.y1c7{bottom:335.642667pt;}
.ya6{bottom:337.292533pt;}
.ycc{bottom:339.015200pt;}
.y14f{bottom:339.774267pt;}
.y1fa{bottom:342.183200pt;}
.y180{bottom:344.000000pt;}
.y3c{bottom:346.440933pt;}
.yf1{bottom:347.240933pt;}
.y18e{bottom:347.882667pt;}
.y16{bottom:348.101867pt;}
.y1c6{bottom:348.709333pt;}
.y226{bottom:349.402667pt;}
.y115{bottom:349.992933pt;}
.y5f{bottom:352.000000pt;}
.y7f{bottom:354.361333pt;}
.y1f9{bottom:355.644533pt;}
.ycb{bottom:356.481867pt;}
.ya5{bottom:358.220533pt;}
.y173{bottom:359.793333pt;}
.y18d{bottom:361.216000pt;}
.y1c5{bottom:361.776000pt;}
.y225{bottom:362.469333pt;}
.y14e{bottom:364.000000pt;}
.yf0{bottom:364.040933pt;}
.y15{bottom:364.901867pt;}
.y3b{bottom:367.240933pt;}
.y24a{bottom:367.333333pt;}
.y1f8{bottom:369.105867pt;}
.y114{bottom:370.120933pt;}
.y5e{bottom:372.400000pt;}
.yca{bottom:373.948533pt;}
.y1c4{bottom:374.842667pt;}
.y7e{bottom:374.889333pt;}
.y224{bottom:375.536000pt;}
.y172{bottom:376.060000pt;}
.y18c{bottom:378.325333pt;}
.ya4{bottom:379.148533pt;}
.yef{bottom:380.840933pt;}
.y14{bottom:381.700933pt;}
.y1f7{bottom:382.567200pt;}
.y14d{bottom:384.000000pt;}
.y1c3{bottom:387.909333pt;}
.y3a{bottom:388.040933pt;}
.y223{bottom:388.602667pt;}
.y113{bottom:390.248933pt;}
.yc9{bottom:391.415200pt;}
.y171{bottom:392.326667pt;}
.y5d{bottom:392.800000pt;}
.y249{bottom:394.000000pt;}
.y1f6{bottom:396.028533pt;}
.yee{bottom:397.640933pt;}
.y13{bottom:398.500933pt;}
.y1c2{bottom:400.976000pt;}
.y222{bottom:401.669333pt;}
.y14c{bottom:404.000000pt;}
.ya3{bottom:407.640933pt;}
.y39{bottom:408.840933pt;}
.yc8{bottom:408.881867pt;}
.y1f5{bottom:409.489867pt;}
.y112{bottom:410.376933pt;}
.y248{bottom:410.666667pt;}
.y5c{bottom:413.200000pt;}
.y1c1{bottom:414.042667pt;}
.yed{bottom:414.440933pt;}
.y221{bottom:414.736000pt;}
.y12{bottom:415.300933pt;}
.y170{bottom:416.153333pt;}
.y7d{bottom:418.513600pt;}
.y1f4{bottom:422.951200pt;}
.y14b{bottom:424.000000pt;}
.ya2{bottom:425.107600pt;}
.yc7{bottom:426.348533pt;}
.y1c0{bottom:427.109333pt;}
.y247{bottom:427.333333pt;}
.y220{bottom:427.802667pt;}
.y38{bottom:429.640933pt;}
.y111{bottom:430.504933pt;}
.yec{bottom:431.240933pt;}
.y11{bottom:432.100933pt;}
.y16f{bottom:432.420000pt;}
.y5b{bottom:433.600000pt;}
.y1f3{bottom:436.412533pt;}
.y1bf{bottom:440.176000pt;}
.y21f{bottom:440.869333pt;}
.y7c{bottom:442.498933pt;}
.ya1{bottom:442.574267pt;}
.yc6{bottom:443.815200pt;}
.y14a{bottom:444.000000pt;}
.y131{bottom:444.800000pt;}
.yeb{bottom:448.040933pt;}
.y16e{bottom:448.686667pt;}
.y10{bottom:448.900933pt;}
.y1f2{bottom:449.873867pt;}
.y37{bottom:450.440933pt;}
.y110{bottom:450.632933pt;}
.y1be{bottom:453.242667pt;}
.y21e{bottom:453.936000pt;}
.y5a{bottom:454.000000pt;}
.ya0{bottom:460.040933pt;}
.y246{bottom:460.666667pt;}
.yc5{bottom:461.281867pt;}
.y1f1{bottom:463.335200pt;}
.y149{bottom:464.000000pt;}
.yea{bottom:464.840933pt;}
.yf{bottom:465.700933pt;}
.y1bd{bottom:466.309333pt;}
.y7b{bottom:466.484133pt;}
.y21d{bottom:467.002667pt;}
.y10f{bottom:470.760933pt;}
.y36{bottom:471.240933pt;}
.y16d{bottom:472.512267pt;}
.y1f0{bottom:476.796533pt;}
.y245{bottom:477.333333pt;}
.y9f{bottom:477.507600pt;}
.yc4{bottom:478.748533pt;}
.y1bc{bottom:479.376000pt;}
.y21c{bottom:480.069333pt;}
.ye9{bottom:481.640933pt;}
.ye{bottom:482.500933pt;}
.y148{bottom:484.000000pt;}
.y130{bottom:484.773333pt;}
.y1ef{bottom:490.257867pt;}
.y7a{bottom:490.469467pt;}
.y10e{bottom:490.888933pt;}
.y35{bottom:492.040933pt;}
.y16c{bottom:492.112267pt;}
.y1bb{bottom:492.442667pt;}
.y21b{bottom:493.136000pt;}
.y244{bottom:494.000000pt;}
.y9e{bottom:494.974267pt;}
.y59{bottom:495.018667pt;}
.yc3{bottom:496.215200pt;}
.ye8{bottom:498.440933pt;}
.yd{bottom:499.300933pt;}
.y1ee{bottom:503.719200pt;}
.y147{bottom:504.000000pt;}
.y12f{bottom:504.773333pt;}
.y1ba{bottom:505.509333pt;}
.y21a{bottom:506.202667pt;}
.y243{bottom:510.666667pt;}
.y10d{bottom:511.016933pt;}
.y16b{bottom:511.712267pt;}
.y9d{bottom:512.440933pt;}
.y34{bottom:512.840933pt;}
.yc2{bottom:513.681867pt;}
.y79{bottom:514.454800pt;}
.ye7{bottom:515.240933pt;}
.y58{bottom:515.546667pt;}
.yc{bottom:516.100933pt;}
.y1ed{bottom:517.180533pt;}
.y1b9{bottom:518.576000pt;}
.y219{bottom:519.269333pt;}
.y146{bottom:524.000000pt;}
.y12e{bottom:524.773333pt;}
.y242{bottom:527.333333pt;}
.y9c{bottom:529.907600pt;}
.y1ec{bottom:530.641867pt;}
.y10c{bottom:531.144933pt;}
.yc1{bottom:531.148533pt;}
.y1b8{bottom:531.642667pt;}
.ye6{bottom:532.040933pt;}
.y218{bottom:532.336000pt;}
.yb{bottom:532.900933pt;}
.y33{bottom:533.640933pt;}
.y57{bottom:536.074667pt;}
.y78{bottom:538.440133pt;}
.y16a{bottom:538.871333pt;}
.y145{bottom:544.000000pt;}
.y1eb{bottom:544.103200pt;}
.y1b7{bottom:544.709333pt;}
.y12d{bottom:544.773333pt;}
.y217{bottom:545.402667pt;}
.y9b{bottom:547.374267pt;}
.yc0{bottom:548.615200pt;}
.ye5{bottom:548.840933pt;}
.y32{bottom:554.440933pt;}
.y169{bottom:555.138000pt;}
.y56{bottom:556.602667pt;}
.ya{bottom:557.260933pt;}
.y1ea{bottom:557.564533pt;}
.y1b6{bottom:557.776000pt;}
.y216{bottom:558.469333pt;}
.y241{bottom:560.666667pt;}
.y77{bottom:562.425467pt;}
.y144{bottom:564.000000pt;}
.y12c{bottom:564.773333pt;}
.y9a{bottom:564.840933pt;}
.ye4{bottom:565.640933pt;}
.ybf{bottom:566.081867pt;}
.y1b5{bottom:570.842667pt;}
.y1e9{bottom:571.025867pt;}
.y10b{bottom:571.416933pt;}
.y215{bottom:571.536000pt;}
.y31{bottom:575.240933pt;}
.y55{bottom:577.130667pt;}
.y240{bottom:577.333333pt;}
.y168{bottom:578.963733pt;}
.y99{bottom:582.307600pt;}
.ye3{bottom:582.440933pt;}
.y1b4{bottom:583.909333pt;}
.y143{bottom:584.000000pt;}
.y1e8{bottom:584.492400pt;}
.y214{bottom:584.602667pt;}
.y12b{bottom:584.773333pt;}
.y76{bottom:586.412133pt;}
.ybe{bottom:591.118267pt;}
.y10a{bottom:591.544933pt;}
.y23f{bottom:594.000000pt;}
.y30{bottom:596.040933pt;}
.y1b3{bottom:596.976000pt;}
.y54{bottom:597.658667pt;}
.y213{bottom:597.669333pt;}
.y1e7{bottom:597.959200pt;}
.y9{bottom:598.181600pt;}
.y167{bottom:598.563733pt;}
.ye2{bottom:599.240933pt;}
.y98{bottom:599.774267pt;}
.y75{bottom:603.078800pt;}
.y142{bottom:604.000000pt;}
.y12a{bottom:604.773333pt;}
.y1b2{bottom:610.042667pt;}
.y23e{bottom:610.666667pt;}
.y212{bottom:610.736000pt;}
.y1e6{bottom:611.461333pt;}
.y109{bottom:611.672933pt;}
.ybd{bottom:611.918267pt;}
.y8{bottom:615.648267pt;}
.y2f{bottom:616.840933pt;}
.y97{bottom:617.240933pt;}
.y166{bottom:618.163733pt;}
.y53{bottom:618.186667pt;}
.y1b1{bottom:623.109333pt;}
.ye1{bottom:623.621333pt;}
.y211{bottom:623.802667pt;}
.y141{bottom:624.000000pt;}
.y129{bottom:624.773333pt;}
.y23d{bottom:627.333333pt;}
.y1e5{bottom:628.709333pt;}
.y108{bottom:631.800933pt;}
.ybc{bottom:632.718267pt;}
.y96{bottom:634.707600pt;}
.y7{bottom:635.781600pt;}
.y1b0{bottom:636.176000pt;}
.y210{bottom:636.869333pt;}
.y2e{bottom:637.640933pt;}
.y74{bottom:638.400000pt;}
.y52{bottom:638.714667pt;}
.ye0{bottom:643.749333pt;}
.y140{bottom:644.000000pt;}
.y128{bottom:644.773333pt;}
.y165{bottom:645.321867pt;}
.y1af{bottom:649.242667pt;}
.y20f{bottom:649.936000pt;}
.y107{bottom:651.928933pt;}
.y95{bottom:652.174267pt;}
.ybb{bottom:653.518267pt;}
.y51{bottom:659.242667pt;}
.y23c{bottom:660.666667pt;}
.y164{bottom:661.588533pt;}
.y1ae{bottom:662.309333pt;}
.y20e{bottom:663.002667pt;}
.ydf{bottom:663.877333pt;}
.y13f{bottom:664.000000pt;}
.y127{bottom:664.773333pt;}
.y1e4{bottom:668.976000pt;}
.y94{bottom:669.640933pt;}
.y106{bottom:672.056933pt;}
.yba{bottom:674.318267pt;}
.y1ad{bottom:675.376000pt;}
.y20d{bottom:675.930667pt;}
.y23b{bottom:677.333333pt;}
.y2d{bottom:679.240933pt;}
.y73{bottom:679.493333pt;}
.y50{bottom:679.770667pt;}
.y1e3{bottom:682.437333pt;}
.y13e{bottom:684.000000pt;}
.yde{bottom:684.005333pt;}
.y126{bottom:684.773333pt;}
.y163{bottom:685.415200pt;}
.y93{bottom:687.107600pt;}
.y1ac{bottom:688.442667pt;}
.y20c{bottom:688.858667pt;}
.y105{bottom:692.184933pt;}
.y23a{bottom:694.000000pt;}
.yb9{bottom:695.246267pt;}
.y6{bottom:695.600000pt;}
.y1e2{bottom:695.898667pt;}
.y2c{bottom:696.707600pt;}
.y72{bottom:700.021333pt;}
.y4f{bottom:700.298667pt;}
.y1ab{bottom:701.509333pt;}
.y162{bottom:701.681867pt;}
.y20b{bottom:701.786667pt;}
.y13d{bottom:704.000000pt;}
.ydd{bottom:704.133333pt;}
.y92{bottom:704.574267pt;}
.y125{bottom:704.773333pt;}
.y1e1{bottom:709.360000pt;}
.y239{bottom:710.666667pt;}
.y104{bottom:712.312933pt;}
.y1aa{bottom:714.576000pt;}
.y20a{bottom:714.714667pt;}
.yb8{bottom:716.174267pt;}
.y71{bottom:720.549333pt;}
.y4e{bottom:720.826667pt;}
.y2b{bottom:721.733333pt;}
.y91{bottom:722.040933pt;}
.y5{bottom:722.400000pt;}
.y1e0{bottom:722.821333pt;}
.y13c{bottom:724.000000pt;}
.ydc{bottom:724.261333pt;}
.y124{bottom:724.773333pt;}
.y161{bottom:725.507600pt;}
.y238{bottom:727.333333pt;}
.y1a9{bottom:727.642667pt;}
.y103{bottom:732.440933pt;}
.y1df{bottom:736.293333pt;}
.yb7{bottom:736.974267pt;}
.y2a{bottom:739.200000pt;}
.y90{bottom:739.507600pt;}
.y1a8{bottom:740.570667pt;}
.y70{bottom:741.077333pt;}
.y4d{bottom:741.354667pt;}
.y13b{bottom:744.000000pt;}
.ydb{bottom:744.261333pt;}
.y123{bottom:744.645333pt;}
.y160{bottom:745.107600pt;}
.y4{bottom:749.200000pt;}
.y1de{bottom:749.754667pt;}
.y102{bottom:752.440933pt;}
.y1a7{bottom:753.498667pt;}
.y29{bottom:756.666667pt;}
.yb6{bottom:757.774267pt;}
.y237{bottom:760.666667pt;}
.y6f{bottom:761.605333pt;}
.y4c{bottom:761.882667pt;}
.y1dd{bottom:763.216000pt;}
.y13a{bottom:764.000000pt;}
.yda{bottom:764.261333pt;}
.y122{bottom:764.517333pt;}
.y8f{bottom:764.538667pt;}
.y15f{bottom:764.707600pt;}
.y1a6{bottom:766.426667pt;}
.y28{bottom:774.133333pt;}
.y3{bottom:776.000000pt;}
.y1dc{bottom:776.677333pt;}
.y236{bottom:777.333333pt;}
.yb5{bottom:778.574267pt;}
.y1a5{bottom:779.354667pt;}
.y101{bottom:780.000000pt;}
.y6e{bottom:782.133333pt;}
.y4b{bottom:782.410667pt;}
.y139{bottom:784.000000pt;}
.yd9{bottom:784.261333pt;}
.y15e{bottom:784.307600pt;}
.y121{bottom:784.389333pt;}
.y8e{bottom:784.538667pt;}
.y1db{bottom:790.138667pt;}
.y27{bottom:791.600000pt;}
.y1a4{bottom:792.282667pt;}
.y235{bottom:794.000000pt;}
.y100{bottom:796.000000pt;}
.y6d{bottom:802.661333pt;}
.y4a{bottom:802.938667pt;}
.y1da{bottom:803.610667pt;}
.y138{bottom:804.000000pt;}
.yd8{bottom:804.261333pt;}
.y8d{bottom:804.538667pt;}
.y1a3{bottom:805.210667pt;}
.yb4{bottom:806.933333pt;}
.y26{bottom:809.066667pt;}
.y234{bottom:810.666667pt;}
.y15d{bottom:811.466667pt;}
.yff{bottom:812.000000pt;}
.y1d9{bottom:817.072000pt;}
.y1a2{bottom:818.138667pt;}
.y2{bottom:822.800000pt;}
.y6c{bottom:823.333333pt;}
.y49{bottom:823.466667pt;}
.y137{bottom:824.000000pt;}
.yd7{bottom:824.133333pt;}
.y8c{bottom:824.266667pt;}
.yb3{bottom:825.466667pt;}
.y25{bottom:826.533333pt;}
.y233{bottom:827.333333pt;}
.y15c{bottom:827.733333pt;}
.yfe{bottom:828.000000pt;}
.y1d8{bottom:830.533333pt;}
.y1a1{bottom:831.066667pt;}
.h9{height:26.945443pt;}
.h11{height:34.730667pt;}
.ha{height:36.229167pt;}
.h12{height:40.757812pt;}
.he{height:42.656250pt;}
.hf{height:43.000000pt;}
.h2{height:43.022135pt;}
.h10{height:43.413333pt;}
.h4{height:44.960000pt;}
.h1{height:45.286458pt;}
.h6{height:45.290192pt;}
.hc{height:45.291792pt;}
.hd{height:45.292325pt;}
.h13{height:49.300521pt;}
.h7{height:49.304254pt;}
.hb{height:50.619792pt;}
.h5{height:54.343750pt;}
.h8{height:59.160625pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.228400pt;}
.x6{left:86.456667pt;}
.xd{left:91.619600pt;}
.xf{left:93.939733pt;}
.x2{left:100.000000pt;}
.x8{left:113.228400pt;}
.x5{left:120.000000pt;}
.x9{left:123.592933pt;}
.x3{left:126.456667pt;}
.x10{left:139.683333pt;}
.x11{left:160.494933pt;}
.xe{left:236.726400pt;}
.xa{left:272.112933pt;}
.xb{left:388.339600pt;}
.xc{left:412.112933pt;}
.x1{left:556.250000pt;}
}




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