
    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_fcb22618334e1f29566dd21a.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_89050f9f5d0a77e21fd42de8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c1b563f894ea4f655c482e82.woff')format("woff");}.ff3{font-family:ff3;line-height:0.931152;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_cd35adecc3d756b4194f361c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fbefb2362827a8d70ec822bd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7d7d211008537f6fcf09e0a3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dfca08d3b0c88fc17aa3fcf1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e650e33a45c79950e82e9c7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.911133;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_6c3cf4282c61e186315888ed.woff')format("woff");}.ff9{font-family:ff9;line-height:0.911621;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_0ec261e5b00216fd56ce949a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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;}
.v1{vertical-align:23.760000px;}
.ls2c{letter-spacing:-7.200000px;}
.ls2e{letter-spacing:-2.400000px;}
.ls22{letter-spacing:-1.296000px;}
.ls28{letter-spacing:-1.224000px;}
.ls2d{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-1.008000px;}
.ls27{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.576000px;}
.ls1f{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.252000px;}
.ls11{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.302400px;}
.ls2a{letter-spacing:0.358200px;}
.ls10{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.936000px;}
.ls29{letter-spacing:1.080000px;}
.ls2b{letter-spacing:1.152000px;}
.ls0{letter-spacing:2.850000px;}
.ls30{letter-spacing:2.928000px;}
.ls32{letter-spacing:3.379200px;}
.ls6{letter-spacing:4.272000px;}
.ls1c{letter-spacing:4.341600px;}
.ls2{letter-spacing:4.608000px;}
.ls31{letter-spacing:4.752000px;}
.ls33{letter-spacing:8.100000px;}
.ls4{letter-spacing:8.460000px;}
.ls1{letter-spacing:10.740000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-25.320000px;}
.ws92{word-spacing:-20.592000px;}
.ws80{word-spacing:-20.376000px;}
.ws83{word-spacing:-20.304000px;}
.ws5f{word-spacing:-20.232000px;}
.ws81{word-spacing:-19.872000px;}
.wsa2{word-spacing:-19.800000px;}
.ws95{word-spacing:-19.656000px;}
.ws6d{word-spacing:-19.224000px;}
.ws6c{word-spacing:-18.936000px;}
.ws1{word-spacing:-18.867000px;}
.wsa1{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.784000px;}
.ws82{word-spacing:-17.424000px;}
.ws60{word-spacing:-17.208000px;}
.ws3{word-spacing:-16.860000px;}
.ws4{word-spacing:-14.820000px;}
.wsad{word-spacing:-14.460000px;}
.ws5e{word-spacing:-14.414400px;}
.ws51{word-spacing:-14.162400px;}
.wsb8{word-spacing:-13.488000px;}
.wsb7{word-spacing:-11.856000px;}
.ws71{word-spacing:-8.460000px;}
.wsbb{word-spacing:-8.100000px;}
.wsb9{word-spacing:-4.752000px;}
.wse{word-spacing:-4.272000px;}
.ws89{word-spacing:-2.016000px;}
.ws3a{word-spacing:-0.648000px;}
.ws99{word-spacing:-0.504000px;}
.ws86{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.360000px;}
.ws72{word-spacing:-0.302400px;}
.ws61{word-spacing:-0.288000px;}
.ws28{word-spacing:-0.216000px;}
.ws37{word-spacing:-0.144000px;}
.ws55{word-spacing:-0.072000px;}
.ws10{word-spacing:-0.060000px;}
.wsd{word-spacing:0.000000px;}
.ws7e{word-spacing:0.072000px;}
.ws63{word-spacing:0.144000px;}
.ws12{word-spacing:0.216000px;}
.wsb5{word-spacing:0.240000px;}
.ws8a{word-spacing:0.288000px;}
.ws58{word-spacing:0.360000px;}
.ws45{word-spacing:0.432000px;}
.ws9e{word-spacing:0.504000px;}
.ws4a{word-spacing:0.576000px;}
.ws7a{word-spacing:0.648000px;}
.ws79{word-spacing:0.720000px;}
.ws38{word-spacing:0.792000px;}
.ws6e{word-spacing:0.864000px;}
.ws14{word-spacing:1.008000px;}
.ws29{word-spacing:1.080000px;}
.wsab{word-spacing:1.152000px;}
.ws53{word-spacing:1.224000px;}
.ws2b{word-spacing:1.296000px;}
.ws6f{word-spacing:1.368000px;}
.ws84{word-spacing:1.440000px;}
.ws3f{word-spacing:1.512000px;}
.ws4e{word-spacing:1.584000px;}
.ws91{word-spacing:1.656000px;}
.wsa3{word-spacing:1.728000px;}
.wsa{word-spacing:1.800000px;}
.ws85{word-spacing:1.944000px;}
.wsa6{word-spacing:2.016000px;}
.ws5b{word-spacing:2.088000px;}
.ws9a{word-spacing:2.160000px;}
.ws66{word-spacing:2.232000px;}
.wsa9{word-spacing:2.304000px;}
.ws90{word-spacing:2.376000px;}
.ws6b{word-spacing:2.400000px;}
.ws9b{word-spacing:2.448000px;}
.ws24{word-spacing:2.520000px;}
.ws4d{word-spacing:2.592000px;}
.ws30{word-spacing:2.664000px;}
.ws42{word-spacing:2.736000px;}
.ws1b{word-spacing:2.808000px;}
.ws43{word-spacing:2.880000px;}
.ws73{word-spacing:2.952000px;}
.wsba{word-spacing:2.976000px;}
.ws9c{word-spacing:3.024000px;}
.ws2a{word-spacing:3.096000px;}
.wsa7{word-spacing:3.168000px;}
.ws40{word-spacing:3.240000px;}
.wsf{word-spacing:3.312000px;}
.ws88{word-spacing:3.360000px;}
.ws33{word-spacing:3.384000px;}
.ws36{word-spacing:3.456000px;}
.ws8b{word-spacing:3.528000px;}
.ws4c{word-spacing:3.600000px;}
.ws19{word-spacing:3.672000px;}
.ws7{word-spacing:3.720000px;}
.ws7d{word-spacing:3.744000px;}
.ws17{word-spacing:3.816000px;}
.ws62{word-spacing:3.888000px;}
.ws32{word-spacing:3.960000px;}
.wsc{word-spacing:3.990000px;}
.ws67{word-spacing:4.032000px;}
.ws34{word-spacing:4.104000px;}
.ws59{word-spacing:4.176000px;}
.ws5{word-spacing:4.200000px;}
.ws49{word-spacing:4.248000px;}
.ws27{word-spacing:4.320000px;}
.wsa4{word-spacing:4.392000px;}
.wsb{word-spacing:4.464000px;}
.ws39{word-spacing:4.536000px;}
.ws50{word-spacing:4.608000px;}
.ws13{word-spacing:4.680000px;}
.ws20{word-spacing:4.752000px;}
.wsaa{word-spacing:4.824000px;}
.ws8e{word-spacing:4.896000px;}
.ws87{word-spacing:4.968000px;}
.ws1a{word-spacing:5.040000px;}
.ws3b{word-spacing:5.184000px;}
.ws65{word-spacing:5.256000px;}
.ws2d{word-spacing:5.328000px;}
.ws7c{word-spacing:5.400000px;}
.ws5a{word-spacing:5.472000px;}
.ws3e{word-spacing:5.616000px;}
.ws8f{word-spacing:5.688000px;}
.ws7b{word-spacing:5.760000px;}
.ws25{word-spacing:5.832000px;}
.ws94{word-spacing:5.904000px;}
.ws9d{word-spacing:5.976000px;}
.ws18{word-spacing:6.048000px;}
.ws48{word-spacing:6.120000px;}
.ws35{word-spacing:6.192000px;}
.ws2f{word-spacing:6.264000px;}
.ws46{word-spacing:6.336000px;}
.ws76{word-spacing:6.408000px;}
.ws8d{word-spacing:6.552000px;}
.ws4f{word-spacing:6.696000px;}
.ws9f{word-spacing:6.768000px;}
.ws2c{word-spacing:6.840000px;}
.ws64{word-spacing:6.912000px;}
.wsa8{word-spacing:6.984000px;}
.ws23{word-spacing:7.056000px;}
.wsac{word-spacing:7.128000px;}
.ws78{word-spacing:7.200000px;}
.ws16{word-spacing:7.272000px;}
.ws7f{word-spacing:7.344000px;}
.ws69{word-spacing:7.416000px;}
.ws31{word-spacing:7.488000px;}
.ws5c{word-spacing:7.560000px;}
.ws4b{word-spacing:7.632000px;}
.ws52{word-spacing:7.704000px;}
.ws2e{word-spacing:7.776000px;}
.ws1c{word-spacing:7.848000px;}
.ws96{word-spacing:7.992000px;}
.ws98{word-spacing:8.064000px;}
.ws74{word-spacing:8.136000px;}
.ws21{word-spacing:8.208000px;}
.ws3c{word-spacing:8.280000px;}
.ws0{word-spacing:8.376000px;}
.ws9{word-spacing:8.400000px;}
.wsa0{word-spacing:8.424000px;}
.wsa5{word-spacing:8.496000px;}
.ws93{word-spacing:8.568000px;}
.ws44{word-spacing:8.640000px;}
.ws3d{word-spacing:8.712000px;}
.ws56{word-spacing:8.784000px;}
.ws1e{word-spacing:8.856000px;}
.ws77{word-spacing:8.928000px;}
.ws1d{word-spacing:9.000000px;}
.ws54{word-spacing:9.072000px;}
.ws57{word-spacing:9.144000px;}
.ws5d{word-spacing:9.360000px;}
.ws68{word-spacing:9.432000px;}
.ws15{word-spacing:9.504000px;}
.ws70{word-spacing:9.576000px;}
.ws75{word-spacing:9.648000px;}
.ws22{word-spacing:9.720000px;}
.ws97{word-spacing:9.864000px;}
.ws6a{word-spacing:9.936000px;}
.ws41{word-spacing:10.008000px;}
.ws1f{word-spacing:10.080000px;}
.ws26{word-spacing:10.152000px;}
.ws8c{word-spacing:10.728000px;}
.ws6{word-spacing:11.040000px;}
.wsae{word-spacing:51.360000px;}
.ws8{word-spacing:73.140000px;}
.wsb1{word-spacing:124.716000px;}
.wsb0{word-spacing:127.200000px;}
.wsb3{word-spacing:153.420000px;}
.wsb6{word-spacing:183.420000px;}
.wsaf{word-spacing:213.420000px;}
.wsb4{word-spacing:229.260000px;}
.wsb2{word-spacing:239.520000px;}
._e{margin-left:-940.386000px;}
._5{margin-left:-68.202000px;}
._6{margin-left:-51.090000px;}
._7{margin-left:-48.000000px;}
._18{margin-left:-30.858000px;}
._1b{margin-left:-22.386000px;}
._23{margin-left:-15.768000px;}
._14{margin-left:-13.929600px;}
._a{margin-left:-12.108000px;}
._1a{margin-left:-10.771200px;}
._16{margin-left:-9.462000px;}
._8{margin-left:-8.274000px;}
._f{margin-left:-7.228800px;}
._9{margin-left:-6.018000px;}
._15{margin-left:-4.026000px;}
._2{margin-left:-2.802000px;}
._1{margin-left:-1.302000px;}
._c{width:1.050000px;}
._4{width:2.124000px;}
._b{width:4.008000px;}
._13{width:5.366400px;}
._10{width:7.033200px;}
._3{width:8.166000px;}
._d{width:9.207000px;}
._12{width:10.224000px;}
._11{width:11.311200px;}
._17{width:12.492000px;}
._19{width:31.646100px;}
._1e{width:101.940000px;}
._1d{width:119.460000px;}
._21{width:144.060000px;}
._1f{width:146.100000px;}
._0{width:201.564000px;}
._22{width:230.280000px;}
._20{width:414.852000px;}
._1c{width:469.500000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{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;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y48{bottom:117.000000px;}
.y141{bottom:117.432000px;}
.y19c{bottom:118.224000px;}
.y1fb{bottom:118.308000px;}
.y15e{bottom:118.590000px;}
.ycd{bottom:118.800000px;}
.y22f{bottom:119.202000px;}
.y251{bottom:119.636250px;}
.y23{bottom:119.788500px;}
.y199{bottom:120.049650px;}
.y62{bottom:120.168000px;}
.y129{bottom:120.458250px;}
.y13e{bottom:120.649650px;}
.y1c5{bottom:121.164000px;}
.yf1{bottom:121.207500px;}
.y80{bottom:121.524000px;}
.ya8{bottom:127.828650px;}
.y174{bottom:129.103650px;}
.y1fa{bottom:133.308000px;}
.y22e{bottom:134.502000px;}
.y1c4{bottom:136.164000px;}
.y113{bottom:136.207500px;}
.y250{bottom:138.386250px;}
.y22{bottom:139.138500px;}
.y47{bottom:139.500000px;}
.y140{bottom:139.788000px;}
.y19b{bottom:140.418000px;}
.ycc{bottom:140.706000px;}
.y15d{bottom:141.090000px;}
.y198{bottom:142.549650px;}
.y61{bottom:142.668000px;}
.y128{bottom:142.958250px;}
.y13d{bottom:143.149650px;}
.y7f{bottom:143.880000px;}
.ya7{bottom:146.128650px;}
.y173{bottom:147.853650px;}
.y1f9{bottom:148.308000px;}
.y22d{bottom:149.958000px;}
.y1c3{bottom:151.164000px;}
.y24f{bottom:157.136250px;}
.y46{bottom:162.000000px;}
.y13f{bottom:162.144000px;}
.ycb{bottom:162.612000px;}
.y1f8{bottom:163.308000px;}
.y15c{bottom:163.590000px;}
.ya6{bottom:164.428650px;}
.y197{bottom:165.049650px;}
.y60{bottom:165.168000px;}
.y22c{bottom:165.414000px;}
.y127{bottom:165.458250px;}
.y13c{bottom:165.649650px;}
.y1c2{bottom:166.164000px;}
.y7e{bottom:166.236000px;}
.yf0{bottom:166.944000px;}
.y21{bottom:166.991400px;}
.y172{bottom:174.838650px;}
.y24e{bottom:175.886250px;}
.y1f7{bottom:178.308000px;}
.y112{bottom:179.472000px;}
.y22b{bottom:180.870000px;}
.y1c1{bottom:181.164000px;}
.ya5{bottom:182.728650px;}
.y45{bottom:184.500000px;}
.yca{bottom:184.518000px;}
.y19a{bottom:184.806000px;}
.y15b{bottom:186.090000px;}
.y20{bottom:186.341400px;}
.y196{bottom:187.549650px;}
.y5f{bottom:187.668000px;}
.y126{bottom:187.958250px;}
.y13b{bottom:188.149650px;}
.y7d{bottom:188.592000px;}
.yef{bottom:189.444000px;}
.y1f6{bottom:193.308000px;}
.y171{bottom:193.588650px;}
.y24d{bottom:194.636250px;}
.y1c0{bottom:196.164000px;}
.y22a{bottom:196.326000px;}
.ya4{bottom:201.028650px;}
.y111{bottom:202.116000px;}
.y1f{bottom:205.691400px;}
.yc9{bottom:206.424000px;}
.y44{bottom:207.000000px;}
.y1f5{bottom:208.308000px;}
.y15a{bottom:208.590000px;}
.y195{bottom:210.049650px;}
.y5e{bottom:210.168000px;}
.y125{bottom:210.458250px;}
.y13a{bottom:210.649650px;}
.y7c{bottom:210.948000px;}
.y1bf{bottom:211.164000px;}
.y229{bottom:211.782000px;}
.yee{bottom:211.800000px;}
.y170{bottom:212.338650px;}
.y24c{bottom:213.386250px;}
.ya3{bottom:219.328650px;}
.y1f4{bottom:223.308000px;}
.y110{bottom:224.760000px;}
.y1e{bottom:225.041400px;}
.y1be{bottom:226.164000px;}
.y228{bottom:227.082000px;}
.yc8{bottom:228.330000px;}
.y43{bottom:229.500000px;}
.y16f{bottom:231.088650px;}
.y159{bottom:231.090000px;}
.y24b{bottom:232.286250px;}
.y5d{bottom:232.524000px;}
.y194{bottom:232.549650px;}
.y124{bottom:232.958250px;}
.y139{bottom:233.149650px;}
.y7b{bottom:233.304000px;}
.yed{bottom:234.156000px;}
.ya2{bottom:237.628650px;}
.y1f3{bottom:238.452000px;}
.y1bd{bottom:240.864000px;}
.y227{bottom:242.382000px;}
.y1d{bottom:244.391400px;}
.y10f{bottom:247.404000px;}
.yc7{bottom:250.236000px;}
.y24a{bottom:251.186250px;}
.y42{bottom:252.000000px;}
.y158{bottom:253.590000px;}
.y1f2{bottom:253.596000px;}
.y5c{bottom:254.880000px;}
.y193{bottom:255.049650px;}
.y123{bottom:255.458250px;}
.y1bc{bottom:255.564000px;}
.y138{bottom:255.649650px;}
.y7a{bottom:255.660000px;}
.ya1{bottom:255.928650px;}
.yec{bottom:256.512000px;}
.y226{bottom:257.682000px;}
.y16e{bottom:258.073650px;}
.y1c{bottom:263.741400px;}
.y1f1{bottom:268.740000px;}
.y10e{bottom:270.048000px;}
.y249{bottom:270.086250px;}
.y1bb{bottom:270.264000px;}
.yc6{bottom:272.142000px;}
.y225{bottom:272.982000px;}
.ya0{bottom:274.228650px;}
.y41{bottom:274.500000px;}
.y157{bottom:276.090000px;}
.y16d{bottom:276.823650px;}
.y5b{bottom:277.236000px;}
.y192{bottom:277.549650px;}
.y122{bottom:277.958250px;}
.y79{bottom:278.016000px;}
.y137{bottom:278.149650px;}
.yeb{bottom:278.868000px;}
.y1b{bottom:283.091400px;}
.y1f0{bottom:283.884000px;}
.y1ba{bottom:284.964000px;}
.y224{bottom:288.282000px;}
.y248{bottom:288.986250px;}
.y9f{bottom:292.528650px;}
.y10d{bottom:292.692000px;}
.yc5{bottom:294.048000px;}
.y16c{bottom:295.573650px;}
.y40{bottom:297.000000px;}
.y156{bottom:298.590000px;}
.y1ef{bottom:299.028000px;}
.y5a{bottom:299.592000px;}
.y1b9{bottom:299.664000px;}
.y191{bottom:300.049650px;}
.y78{bottom:300.372000px;}
.y121{bottom:300.458250px;}
.y136{bottom:300.649650px;}
.yea{bottom:301.224000px;}
.y1a{bottom:302.441400px;}
.y223{bottom:303.582000px;}
.y247{bottom:307.886250px;}
.y9e{bottom:310.828650px;}
.y1ee{bottom:314.172000px;}
.y16b{bottom:314.323650px;}
.y1b8{bottom:314.364000px;}
.y10c{bottom:315.336000px;}
.yc4{bottom:315.954000px;}
.y222{bottom:318.882000px;}
.y3f{bottom:319.500000px;}
.y155{bottom:321.090000px;}
.y19{bottom:321.791400px;}
.y59{bottom:321.948000px;}
.y190{bottom:322.549650px;}
.y77{bottom:322.728000px;}
.y120{bottom:322.958250px;}
.y135{bottom:323.149650px;}
.ye9{bottom:323.580000px;}
.y246{bottom:326.786250px;}
.y1b7{bottom:329.064000px;}
.y9d{bottom:329.128650px;}
.y1ed{bottom:329.316000px;}
.y221{bottom:334.182000px;}
.yc3{bottom:337.860000px;}
.y10b{bottom:337.980000px;}
.y18{bottom:341.141400px;}
.y16a{bottom:341.308650px;}
.y3e{bottom:342.000000px;}
.y154{bottom:343.590000px;}
.y1b6{bottom:343.764000px;}
.y58{bottom:344.304000px;}
.y1ec{bottom:344.460000px;}
.y18f{bottom:345.049650px;}
.y76{bottom:345.084000px;}
.y11f{bottom:345.458250px;}
.y134{bottom:345.649650px;}
.y245{bottom:345.686250px;}
.ye8{bottom:345.936000px;}
.y9c{bottom:347.428650px;}
.y220{bottom:349.482000px;}
.y1b5{bottom:358.464000px;}
.y1eb{bottom:359.604000px;}
.yc2{bottom:359.766000px;}
.y169{bottom:360.058650px;}
.y10a{bottom:360.624000px;}
.y3d{bottom:364.500000px;}
.y244{bottom:364.586250px;}
.y21f{bottom:364.782000px;}
.y9b{bottom:365.728650px;}
.y153{bottom:366.090000px;}
.y57{bottom:366.660000px;}
.y75{bottom:367.440000px;}
.y18e{bottom:367.549650px;}
.y11e{bottom:367.958250px;}
.y133{bottom:368.149650px;}
.ye7{bottom:368.292000px;}
.y17{bottom:368.996400px;}
.y1b4{bottom:373.308000px;}
.y1ea{bottom:374.748000px;}
.y168{bottom:378.808650px;}
.y21e{bottom:380.082000px;}
.yc1{bottom:381.672000px;}
.y109{bottom:383.268000px;}
.y243{bottom:383.486250px;}
.y9a{bottom:384.028650px;}
.y3c{bottom:387.000000px;}
.y1b3{bottom:388.152000px;}
.y152{bottom:388.590000px;}
.y56{bottom:389.016000px;}
.y74{bottom:389.796000px;}
.y1e9{bottom:389.892000px;}
.y18d{bottom:390.049650px;}
.y11d{bottom:390.458250px;}
.ye6{bottom:390.648000px;}
.y132{bottom:390.649650px;}
.y21d{bottom:395.382000px;}
.y99{bottom:402.328650px;}
.y242{bottom:402.386250px;}
.y1b2{bottom:403.008000px;}
.yc0{bottom:403.578000px;}
.y1e8{bottom:405.036000px;}
.y167{bottom:405.793650px;}
.y108{bottom:405.912000px;}
.y3b{bottom:409.500000px;}
.y21c{bottom:410.682000px;}
.y151{bottom:411.090000px;}
.y55{bottom:411.372000px;}
.y73{bottom:412.152000px;}
.y18c{bottom:412.549650px;}
.y11c{bottom:412.958250px;}
.ye5{bottom:413.004000px;}
.y131{bottom:413.149650px;}
.y16{bottom:415.196400px;}
.y1b1{bottom:417.852000px;}
.y1e7{bottom:420.180000px;}
.y98{bottom:420.628650px;}
.y166{bottom:424.543650px;}
.ybf{bottom:425.484000px;}
.y21b{bottom:425.982000px;}
.y107{bottom:428.556000px;}
.y3a{bottom:432.000000px;}
.y1b0{bottom:432.696000px;}
.y150{bottom:433.590000px;}
.y54{bottom:433.728000px;}
.y241{bottom:434.042100px;}
.y72{bottom:434.508000px;}
.y15{bottom:434.546400px;}
.y18b{bottom:435.049650px;}
.y1e6{bottom:435.324000px;}
.ye4{bottom:435.360000px;}
.y11b{bottom:435.458250px;}
.y130{bottom:435.649650px;}
.y97{bottom:438.928650px;}
.y21a{bottom:441.282000px;}
.y165{bottom:443.293650px;}
.ybe{bottom:447.390000px;}
.y1af{bottom:447.540000px;}
.y1e5{bottom:450.468000px;}
.y106{bottom:451.326000px;}
.y39{bottom:454.500000px;}
.y53{bottom:456.084000px;}
.y14f{bottom:456.090000px;}
.y219{bottom:456.582000px;}
.y71{bottom:456.864000px;}
.y96{bottom:457.228650px;}
.y18a{bottom:457.549650px;}
.ye3{bottom:457.716000px;}
.y11a{bottom:457.958250px;}
.y12f{bottom:458.149650px;}
.y1ae{bottom:462.384000px;}
.y14{bottom:462.399300px;}
.y240{bottom:464.952000px;}
.y1e4{bottom:465.612000px;}
.ybd{bottom:469.296000px;}
.y164{bottom:470.278650px;}
.y218{bottom:471.882000px;}
.y105{bottom:473.970000px;}
.y95{bottom:475.528650px;}
.y38{bottom:477.000000px;}
.y1ad{bottom:477.240000px;}
.y52{bottom:478.440000px;}
.y14e{bottom:478.590000px;}
.y70{bottom:479.220000px;}
.y189{bottom:480.049650px;}
.ye2{bottom:480.072000px;}
.y119{bottom:480.458250px;}
.y12e{bottom:480.649650px;}
.y1e3{bottom:480.756000px;}
.y13{bottom:481.749300px;}
.y217{bottom:487.182000px;}
.y163{bottom:489.028650px;}
.ybc{bottom:491.202000px;}
.y1ac{bottom:492.084000px;}
.y94{bottom:493.828650px;}
.y1e2{bottom:495.900000px;}
.y104{bottom:496.614000px;}
.y37{bottom:499.500000px;}
.y51{bottom:500.796000px;}
.y14d{bottom:501.090000px;}
.y12{bottom:501.099300px;}
.y6f{bottom:501.576000px;}
.ye1{bottom:502.428000px;}
.y216{bottom:502.482000px;}
.y188{bottom:502.549650px;}
.y118{bottom:502.958250px;}
.y12d{bottom:503.149650px;}
.y1ab{bottom:506.928000px;}
.y162{bottom:507.778650px;}
.y1e1{bottom:511.044000px;}
.y93{bottom:512.128650px;}
.ybb{bottom:513.108000px;}
.y23f{bottom:514.500000px;}
.y215{bottom:517.782000px;}
.y103{bottom:519.258000px;}
.y11{bottom:520.449300px;}
.y1aa{bottom:521.772000px;}
.y36{bottom:522.000000px;}
.y50{bottom:523.152000px;}
.y14c{bottom:523.590000px;}
.y6e{bottom:523.932000px;}
.ye0{bottom:524.784000px;}
.y187{bottom:525.049650px;}
.y117{bottom:525.458250px;}
.y12c{bottom:525.649650px;}
.y1e0{bottom:526.188000px;}
.y161{bottom:526.528650px;}
.y23e{bottom:529.500000px;}
.y92{bottom:530.428650px;}
.y214{bottom:533.082000px;}
.yba{bottom:535.014000px;}
.y10{bottom:539.799300px;}
.y1df{bottom:541.332000px;}
.y102{bottom:541.902000px;}
.y1a9{bottom:543.000000px;}
.y35{bottom:544.500000px;}
.y4f{bottom:545.508000px;}
.y14b{bottom:546.090000px;}
.y6d{bottom:546.288000px;}
.ydf{bottom:547.140000px;}
.y186{bottom:547.549650px;}
.y116{bottom:547.958250px;}
.y12b{bottom:548.149650px;}
.y213{bottom:548.382000px;}
.y91{bottom:548.728650px;}
.y160{bottom:553.513650px;}
.y1de{bottom:556.476000px;}
.yb9{bottom:556.920000px;}
.yf{bottom:559.149300px;}
.y23d{bottom:559.500000px;}
.y212{bottom:563.682000px;}
.y101{bottom:564.546000px;}
.y34{bottom:567.000000px;}
.y90{bottom:567.028650px;}
.y4e{bottom:567.864000px;}
.y14a{bottom:568.590000px;}
.y6c{bottom:568.644000px;}
.yde{bottom:569.496000px;}
.y185{bottom:570.049650px;}
.y115{bottom:570.458250px;}
.y1dd{bottom:571.620000px;}
.y15f{bottom:572.263650px;}
.y23c{bottom:574.500000px;}
.ye{bottom:578.499300px;}
.yb8{bottom:578.826000px;}
.y211{bottom:578.982000px;}
.y25d{bottom:582.000000px;}
.y8f{bottom:585.328650px;}
.y1dc{bottom:586.764000px;}
.y100{bottom:587.190000px;}
.y1a8{bottom:587.772000px;}
.y33{bottom:589.500000px;}
.y4d{bottom:590.220000px;}
.y6b{bottom:591.000000px;}
.y149{bottom:591.090000px;}
.ydd{bottom:591.852000px;}
.y114{bottom:591.914250px;}
.y184{bottom:592.549650px;}
.y210{bottom:594.282000px;}
.yd{bottom:597.849300px;}
.yb7{bottom:600.732000px;}
.y25c{bottom:600.750000px;}
.y1db{bottom:601.908000px;}
.y8e{bottom:603.628650px;}
.y23b{bottom:604.500000px;}
.y20f{bottom:609.582000px;}
.yff{bottom:609.834000px;}
.y1a7{bottom:610.416000px;}
.y32{bottom:612.000000px;}
.y4c{bottom:612.576000px;}
.y6a{bottom:613.350000px;}
.y148{bottom:613.590000px;}
.ydc{bottom:614.208000px;}
.y183{bottom:615.049650px;}
.y1da{bottom:617.052000px;}
.yc{bottom:617.199300px;}
.y23a{bottom:619.500000px;}
.y8d{bottom:621.928650px;}
.yb6{bottom:622.638000px;}
.y20e{bottom:624.882000px;}
.y1d9{bottom:632.196000px;}
.yfe{bottom:632.478000px;}
.y1a6{bottom:633.060000px;}
.y31{bottom:634.500000px;}
.y4b{bottom:634.932000px;}
.y147{bottom:636.090000px;}
.yb{bottom:636.549300px;}
.ydb{bottom:636.564000px;}
.y182{bottom:637.549650px;}
.y25b{bottom:638.250000px;}
.y20d{bottom:640.182000px;}
.yb5{bottom:644.544000px;}
.y1d8{bottom:647.340000px;}
.y8c{bottom:648.913650px;}
.y239{bottom:649.500000px;}
.yfd{bottom:655.122000px;}
.y1a5{bottom:655.704000px;}
.y30{bottom:657.000000px;}
.y4a{bottom:657.288000px;}
.y69{bottom:658.008000px;}
.y146{bottom:658.590000px;}
.yda{bottom:658.920000px;}
.y181{bottom:660.045450px;}
.y20c{bottom:661.866000px;}
.y1d7{bottom:662.484000px;}
.ya{bottom:664.404300px;}
.y238{bottom:664.500000px;}
.yb4{bottom:666.450000px;}
.y8b{bottom:667.663650px;}
.y25a{bottom:675.750000px;}
.y1d6{bottom:677.628000px;}
.yfc{bottom:677.766000px;}
.y1a4{bottom:678.348000px;}
.y2f{bottom:679.500000px;}
.y49{bottom:679.644000px;}
.y68{bottom:680.364000px;}
.y145{bottom:681.090000px;}
.yd9{bottom:681.276000px;}
.yb3{bottom:688.350000px;}
.y1d5{bottom:692.772000px;}
.y237{bottom:694.500000px;}
.yfb{bottom:700.410000px;}
.y1a3{bottom:700.992000px;}
.y2e{bottom:702.000000px;}
.y67{bottom:702.720000px;}
.y144{bottom:703.590000px;}
.yd8{bottom:703.632000px;}
.y20b{bottom:707.166000px;}
.y8a{bottom:707.400000px;}
.y1d4{bottom:707.916000px;}
.y180{bottom:707.925450px;}
.y236{bottom:709.500000px;}
.y9{bottom:710.454300px;}
.y20a{bottom:722.310000px;}
.yfa{bottom:723.054000px;}
.y1d3{bottom:723.060000px;}
.y1a2{bottom:723.636000px;}
.y2d{bottom:724.500000px;}
.y66{bottom:725.076000px;}
.y143{bottom:725.946000px;}
.yd7{bottom:725.988000px;}
.y17f{bottom:726.675450px;}
.y8{bottom:729.954300px;}
.y259{bottom:732.000000px;}
.yb2{bottom:732.054000px;}
.y209{bottom:737.454000px;}
.y1d2{bottom:738.204000px;}
.y235{bottom:739.500000px;}
.y17e{bottom:745.425450px;}
.yf9{bottom:745.698000px;}
.y1a1{bottom:746.280000px;}
.y2c{bottom:747.000000px;}
.y65{bottom:747.432000px;}
.y142{bottom:748.302000px;}
.yd6{bottom:748.344000px;}
.y89{bottom:752.352000px;}
.y208{bottom:752.598000px;}
.y7{bottom:752.904300px;}
.y1d1{bottom:753.348000px;}
.yb1{bottom:753.798000px;}
.y234{bottom:754.500000px;}
.y258{bottom:762.000000px;}
.y207{bottom:767.742000px;}
.yf8{bottom:768.342000px;}
.y1d0{bottom:768.492000px;}
.y1a0{bottom:768.924000px;}
.y2b{bottom:769.500000px;}
.y64{bottom:769.788000px;}
.yd5{bottom:770.658000px;}
.y17d{bottom:772.410450px;}
.y88{bottom:774.258000px;}
.yb0{bottom:775.542000px;}
.y6{bottom:775.854300px;}
.y257{bottom:780.750000px;}
.y206{bottom:782.886000px;}
.y1cf{bottom:783.636000px;}
.y233{bottom:784.500000px;}
.yf7{bottom:790.986000px;}
.y17c{bottom:791.160450px;}
.y19f{bottom:791.568000px;}
.y2a{bottom:792.000000px;}
.y63{bottom:792.144000px;}
.yd4{bottom:793.014000px;}
.y87{bottom:796.164000px;}
.yaf{bottom:797.286000px;}
.y205{bottom:798.030000px;}
.y1ce{bottom:798.780000px;}
.y232{bottom:799.500000px;}
.y17b{bottom:809.910450px;}
.y204{bottom:813.174000px;}
.yf6{bottom:813.630000px;}
.y1cd{bottom:813.924000px;}
.y19e{bottom:814.212000px;}
.y29{bottom:814.500000px;}
.yd3{bottom:815.370000px;}
.y86{bottom:818.070000px;}
.y256{bottom:818.250000px;}
.yae{bottom:819.030000px;}
.y203{bottom:828.330000px;}
.y17a{bottom:828.660450px;}
.y1cc{bottom:829.068000px;}
.y231{bottom:829.500000px;}
.yf5{bottom:836.274000px;}
.y19d{bottom:836.856000px;}
.y28{bottom:837.000000px;}
.yd2{bottom:837.726000px;}
.y85{bottom:839.976000px;}
.yad{bottom:840.774000px;}
.y5{bottom:843.450000px;}
.y202{bottom:843.474000px;}
.y1cb{bottom:844.212000px;}
.y230{bottom:844.500000px;}
.y179{bottom:847.410450px;}
.y255{bottom:855.750000px;}
.y201{bottom:858.618000px;}
.yf4{bottom:858.918000px;}
.y1ca{bottom:859.356000px;}
.y27{bottom:859.500000px;}
.yd1{bottom:860.082000px;}
.y84{bottom:861.882000px;}
.yac{bottom:862.518000px;}
.y178{bottom:866.160450px;}
.y200{bottom:873.762000px;}
.y4{bottom:873.900000px;}
.y1c9{bottom:874.500000px;}
.yf3{bottom:881.562000px;}
.y26{bottom:882.000000px;}
.yd0{bottom:882.438000px;}
.y83{bottom:883.788000px;}
.yab{bottom:884.262000px;}
.y177{bottom:884.910450px;}
.y1ff{bottom:888.906000px;}
.y1c8{bottom:889.500000px;}
.y254{bottom:893.250000px;}
.y1fe{bottom:904.062000px;}
.yf2{bottom:904.206000px;}
.y25{bottom:904.500000px;}
.ycf{bottom:904.794000px;}
.y82{bottom:905.694000px;}
.yaa{bottom:906.006000px;}
.y176{bottom:911.895450px;}
.y253{bottom:912.000000px;}
.y1fd{bottom:919.206000px;}
.y1c7{bottom:919.500000px;}
.y3{bottom:926.850000px;}
.y24{bottom:927.000000px;}
.y12a{bottom:927.053100px;}
.yce{bottom:927.150000px;}
.y81{bottom:927.600000px;}
.ya9{bottom:927.750000px;}
.y175{bottom:930.645450px;}
.y252{bottom:930.750000px;}
.y1fc{bottom:934.350000px;}
.y1c6{bottom:934.500000px;}
.hb{height:24.630908px;}
.hd{height:33.117188px;}
.h10{height:37.256836px;}
.h2{height:39.326660px;}
.he{height:39.888000px;}
.hf{height:40.757812px;}
.h1{height:41.396484px;}
.h4{height:42.000000px;}
.h5{height:49.675781px;}
.h9{height:49.860000px;}
.h6{height:50.947266px;}
.hc{height:58.029047px;}
.h8{height:58.533047px;}
.ha{height:58.701047px;}
.h7{height:61.136719px;}
.h3{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xe{left:75.975000px;}
.x7{left:82.386000px;}
.x3{left:97.263750px;}
.x5{left:112.500000px;}
.x8{left:118.827750px;}
.x13{left:120.975000px;}
.x6{left:127.381950px;}
.xb{left:133.707750px;}
.x2{left:135.000000px;}
.x18{left:180.525000px;}
.x12{left:235.215000px;}
.x17{left:280.215000px;}
.x9{left:300.327750px;}
.xc{left:315.192750px;}
.xf{left:332.490000px;}
.x14{left:377.490000px;}
.x10{left:409.020000px;}
.x15{left:454.020000px;}
.xa{left:501.132750px;}
.xd{left:515.997750px;}
.x11{left:549.855000px;}
.x16{left:594.855000px;}
.x4{left:635.390550px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2c{letter-spacing:-6.400000pt;}
.ls2e{letter-spacing:-2.133333pt;}
.ls22{letter-spacing:-1.152000pt;}
.ls28{letter-spacing:-1.088000pt;}
.ls2d{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.896000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls1f{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.224000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.268800pt;}
.ls2a{letter-spacing:0.318400pt;}
.ls10{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.832000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:1.024000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls30{letter-spacing:2.602667pt;}
.ls32{letter-spacing:3.003733pt;}
.ls6{letter-spacing:3.797333pt;}
.ls1c{letter-spacing:3.859200pt;}
.ls2{letter-spacing:4.096000pt;}
.ls31{letter-spacing:4.224000pt;}
.ls33{letter-spacing:7.200000pt;}
.ls4{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws92{word-spacing:-18.304000pt;}
.ws80{word-spacing:-18.112000pt;}
.ws83{word-spacing:-18.048000pt;}
.ws5f{word-spacing:-17.984000pt;}
.ws81{word-spacing:-17.664000pt;}
.wsa2{word-spacing:-17.600000pt;}
.ws95{word-spacing:-17.472000pt;}
.ws6d{word-spacing:-17.088000pt;}
.ws6c{word-spacing:-16.832000pt;}
.ws1{word-spacing:-16.770667pt;}
.wsa1{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws82{word-spacing:-15.488000pt;}
.ws60{word-spacing:-15.296000pt;}
.ws3{word-spacing:-14.986667pt;}
.ws4{word-spacing:-13.173333pt;}
.wsad{word-spacing:-12.853333pt;}
.ws5e{word-spacing:-12.812800pt;}
.ws51{word-spacing:-12.588800pt;}
.wsb8{word-spacing:-11.989333pt;}
.wsb7{word-spacing:-10.538667pt;}
.ws71{word-spacing:-7.520000pt;}
.wsbb{word-spacing:-7.200000pt;}
.wsb9{word-spacing:-4.224000pt;}
.wse{word-spacing:-3.797333pt;}
.ws89{word-spacing:-1.792000pt;}
.ws3a{word-spacing:-0.576000pt;}
.ws99{word-spacing:-0.448000pt;}
.ws86{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.320000pt;}
.ws72{word-spacing:-0.268800pt;}
.ws61{word-spacing:-0.256000pt;}
.ws28{word-spacing:-0.192000pt;}
.ws37{word-spacing:-0.128000pt;}
.ws55{word-spacing:-0.064000pt;}
.ws10{word-spacing:-0.053333pt;}
.wsd{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.064000pt;}
.ws63{word-spacing:0.128000pt;}
.ws12{word-spacing:0.192000pt;}
.wsb5{word-spacing:0.213333pt;}
.ws8a{word-spacing:0.256000pt;}
.ws58{word-spacing:0.320000pt;}
.ws45{word-spacing:0.384000pt;}
.ws9e{word-spacing:0.448000pt;}
.ws4a{word-spacing:0.512000pt;}
.ws7a{word-spacing:0.576000pt;}
.ws79{word-spacing:0.640000pt;}
.ws38{word-spacing:0.704000pt;}
.ws6e{word-spacing:0.768000pt;}
.ws14{word-spacing:0.896000pt;}
.ws29{word-spacing:0.960000pt;}
.wsab{word-spacing:1.024000pt;}
.ws53{word-spacing:1.088000pt;}
.ws2b{word-spacing:1.152000pt;}
.ws6f{word-spacing:1.216000pt;}
.ws84{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.344000pt;}
.ws4e{word-spacing:1.408000pt;}
.ws91{word-spacing:1.472000pt;}
.wsa3{word-spacing:1.536000pt;}
.wsa{word-spacing:1.600000pt;}
.ws85{word-spacing:1.728000pt;}
.wsa6{word-spacing:1.792000pt;}
.ws5b{word-spacing:1.856000pt;}
.ws9a{word-spacing:1.920000pt;}
.ws66{word-spacing:1.984000pt;}
.wsa9{word-spacing:2.048000pt;}
.ws90{word-spacing:2.112000pt;}
.ws6b{word-spacing:2.133333pt;}
.ws9b{word-spacing:2.176000pt;}
.ws24{word-spacing:2.240000pt;}
.ws4d{word-spacing:2.304000pt;}
.ws30{word-spacing:2.368000pt;}
.ws42{word-spacing:2.432000pt;}
.ws1b{word-spacing:2.496000pt;}
.ws43{word-spacing:2.560000pt;}
.ws73{word-spacing:2.624000pt;}
.wsba{word-spacing:2.645333pt;}
.ws9c{word-spacing:2.688000pt;}
.ws2a{word-spacing:2.752000pt;}
.wsa7{word-spacing:2.816000pt;}
.ws40{word-spacing:2.880000pt;}
.wsf{word-spacing:2.944000pt;}
.ws88{word-spacing:2.986667pt;}
.ws33{word-spacing:3.008000pt;}
.ws36{word-spacing:3.072000pt;}
.ws8b{word-spacing:3.136000pt;}
.ws4c{word-spacing:3.200000pt;}
.ws19{word-spacing:3.264000pt;}
.ws7{word-spacing:3.306667pt;}
.ws7d{word-spacing:3.328000pt;}
.ws17{word-spacing:3.392000pt;}
.ws62{word-spacing:3.456000pt;}
.ws32{word-spacing:3.520000pt;}
.wsc{word-spacing:3.546667pt;}
.ws67{word-spacing:3.584000pt;}
.ws34{word-spacing:3.648000pt;}
.ws59{word-spacing:3.712000pt;}
.ws5{word-spacing:3.733333pt;}
.ws49{word-spacing:3.776000pt;}
.ws27{word-spacing:3.840000pt;}
.wsa4{word-spacing:3.904000pt;}
.wsb{word-spacing:3.968000pt;}
.ws39{word-spacing:4.032000pt;}
.ws50{word-spacing:4.096000pt;}
.ws13{word-spacing:4.160000pt;}
.ws20{word-spacing:4.224000pt;}
.wsaa{word-spacing:4.288000pt;}
.ws8e{word-spacing:4.352000pt;}
.ws87{word-spacing:4.416000pt;}
.ws1a{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.608000pt;}
.ws65{word-spacing:4.672000pt;}
.ws2d{word-spacing:4.736000pt;}
.ws7c{word-spacing:4.800000pt;}
.ws5a{word-spacing:4.864000pt;}
.ws3e{word-spacing:4.992000pt;}
.ws8f{word-spacing:5.056000pt;}
.ws7b{word-spacing:5.120000pt;}
.ws25{word-spacing:5.184000pt;}
.ws94{word-spacing:5.248000pt;}
.ws9d{word-spacing:5.312000pt;}
.ws18{word-spacing:5.376000pt;}
.ws48{word-spacing:5.440000pt;}
.ws35{word-spacing:5.504000pt;}
.ws2f{word-spacing:5.568000pt;}
.ws46{word-spacing:5.632000pt;}
.ws76{word-spacing:5.696000pt;}
.ws8d{word-spacing:5.824000pt;}
.ws4f{word-spacing:5.952000pt;}
.ws9f{word-spacing:6.016000pt;}
.ws2c{word-spacing:6.080000pt;}
.ws64{word-spacing:6.144000pt;}
.wsa8{word-spacing:6.208000pt;}
.ws23{word-spacing:6.272000pt;}
.wsac{word-spacing:6.336000pt;}
.ws78{word-spacing:6.400000pt;}
.ws16{word-spacing:6.464000pt;}
.ws7f{word-spacing:6.528000pt;}
.ws69{word-spacing:6.592000pt;}
.ws31{word-spacing:6.656000pt;}
.ws5c{word-spacing:6.720000pt;}
.ws4b{word-spacing:6.784000pt;}
.ws52{word-spacing:6.848000pt;}
.ws2e{word-spacing:6.912000pt;}
.ws1c{word-spacing:6.976000pt;}
.ws96{word-spacing:7.104000pt;}
.ws98{word-spacing:7.168000pt;}
.ws74{word-spacing:7.232000pt;}
.ws21{word-spacing:7.296000pt;}
.ws3c{word-spacing:7.360000pt;}
.ws0{word-spacing:7.445333pt;}
.ws9{word-spacing:7.466667pt;}
.wsa0{word-spacing:7.488000pt;}
.wsa5{word-spacing:7.552000pt;}
.ws93{word-spacing:7.616000pt;}
.ws44{word-spacing:7.680000pt;}
.ws3d{word-spacing:7.744000pt;}
.ws56{word-spacing:7.808000pt;}
.ws1e{word-spacing:7.872000pt;}
.ws77{word-spacing:7.936000pt;}
.ws1d{word-spacing:8.000000pt;}
.ws54{word-spacing:8.064000pt;}
.ws57{word-spacing:8.128000pt;}
.ws5d{word-spacing:8.320000pt;}
.ws68{word-spacing:8.384000pt;}
.ws15{word-spacing:8.448000pt;}
.ws70{word-spacing:8.512000pt;}
.ws75{word-spacing:8.576000pt;}
.ws22{word-spacing:8.640000pt;}
.ws97{word-spacing:8.768000pt;}
.ws6a{word-spacing:8.832000pt;}
.ws41{word-spacing:8.896000pt;}
.ws1f{word-spacing:8.960000pt;}
.ws26{word-spacing:9.024000pt;}
.ws8c{word-spacing:9.536000pt;}
.ws6{word-spacing:9.813333pt;}
.wsae{word-spacing:45.653333pt;}
.ws8{word-spacing:65.013333pt;}
.wsb1{word-spacing:110.858667pt;}
.wsb0{word-spacing:113.066667pt;}
.wsb3{word-spacing:136.373333pt;}
.wsb6{word-spacing:163.040000pt;}
.wsaf{word-spacing:189.706667pt;}
.wsb4{word-spacing:203.786667pt;}
.wsb2{word-spacing:212.906667pt;}
._e{margin-left:-835.898667pt;}
._5{margin-left:-60.624000pt;}
._6{margin-left:-45.413333pt;}
._7{margin-left:-42.666667pt;}
._18{margin-left:-27.429333pt;}
._1b{margin-left:-19.898667pt;}
._23{margin-left:-14.016000pt;}
._14{margin-left:-12.381867pt;}
._a{margin-left:-10.762667pt;}
._1a{margin-left:-9.574400pt;}
._16{margin-left:-8.410667pt;}
._8{margin-left:-7.354667pt;}
._f{margin-left:-6.425600pt;}
._9{margin-left:-5.349333pt;}
._15{margin-left:-3.578667pt;}
._2{margin-left:-2.490667pt;}
._1{margin-left:-1.157333pt;}
._c{width:0.933333pt;}
._4{width:1.888000pt;}
._b{width:3.562667pt;}
._13{width:4.770133pt;}
._10{width:6.251733pt;}
._3{width:7.258667pt;}
._d{width:8.184000pt;}
._12{width:9.088000pt;}
._11{width:10.054400pt;}
._17{width:11.104000pt;}
._19{width:28.129867pt;}
._1e{width:90.613333pt;}
._1d{width:106.186667pt;}
._21{width:128.053333pt;}
._1f{width:129.866667pt;}
._0{width:179.168000pt;}
._22{width:204.693333pt;}
._20{width:368.757333pt;}
._1c{width:417.333333pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{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;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y48{bottom:104.000000pt;}
.y141{bottom:104.384000pt;}
.y19c{bottom:105.088000pt;}
.y1fb{bottom:105.162667pt;}
.y15e{bottom:105.413333pt;}
.ycd{bottom:105.600000pt;}
.y22f{bottom:105.957333pt;}
.y251{bottom:106.343333pt;}
.y23{bottom:106.478667pt;}
.y199{bottom:106.710800pt;}
.y62{bottom:106.816000pt;}
.y129{bottom:107.074000pt;}
.y13e{bottom:107.244133pt;}
.y1c5{bottom:107.701333pt;}
.yf1{bottom:107.740000pt;}
.y80{bottom:108.021333pt;}
.ya8{bottom:113.625467pt;}
.y174{bottom:114.758800pt;}
.y1fa{bottom:118.496000pt;}
.y22e{bottom:119.557333pt;}
.y1c4{bottom:121.034667pt;}
.y113{bottom:121.073333pt;}
.y250{bottom:123.010000pt;}
.y22{bottom:123.678667pt;}
.y47{bottom:124.000000pt;}
.y140{bottom:124.256000pt;}
.y19b{bottom:124.816000pt;}
.ycc{bottom:125.072000pt;}
.y15d{bottom:125.413333pt;}
.y198{bottom:126.710800pt;}
.y61{bottom:126.816000pt;}
.y128{bottom:127.074000pt;}
.y13d{bottom:127.244133pt;}
.y7f{bottom:127.893333pt;}
.ya7{bottom:129.892133pt;}
.y173{bottom:131.425467pt;}
.y1f9{bottom:131.829333pt;}
.y22d{bottom:133.296000pt;}
.y1c3{bottom:134.368000pt;}
.y24f{bottom:139.676667pt;}
.y46{bottom:144.000000pt;}
.y13f{bottom:144.128000pt;}
.ycb{bottom:144.544000pt;}
.y1f8{bottom:145.162667pt;}
.y15c{bottom:145.413333pt;}
.ya6{bottom:146.158800pt;}
.y197{bottom:146.710800pt;}
.y60{bottom:146.816000pt;}
.y22c{bottom:147.034667pt;}
.y127{bottom:147.074000pt;}
.y13c{bottom:147.244133pt;}
.y1c2{bottom:147.701333pt;}
.y7e{bottom:147.765333pt;}
.yf0{bottom:148.394667pt;}
.y21{bottom:148.436800pt;}
.y172{bottom:155.412133pt;}
.y24e{bottom:156.343333pt;}
.y1f7{bottom:158.496000pt;}
.y112{bottom:159.530667pt;}
.y22b{bottom:160.773333pt;}
.y1c1{bottom:161.034667pt;}
.ya5{bottom:162.425467pt;}
.y45{bottom:164.000000pt;}
.yca{bottom:164.016000pt;}
.y19a{bottom:164.272000pt;}
.y15b{bottom:165.413333pt;}
.y20{bottom:165.636800pt;}
.y196{bottom:166.710800pt;}
.y5f{bottom:166.816000pt;}
.y126{bottom:167.074000pt;}
.y13b{bottom:167.244133pt;}
.y7d{bottom:167.637333pt;}
.yef{bottom:168.394667pt;}
.y1f6{bottom:171.829333pt;}
.y171{bottom:172.078800pt;}
.y24d{bottom:173.010000pt;}
.y1c0{bottom:174.368000pt;}
.y22a{bottom:174.512000pt;}
.ya4{bottom:178.692133pt;}
.y111{bottom:179.658667pt;}
.y1f{bottom:182.836800pt;}
.yc9{bottom:183.488000pt;}
.y44{bottom:184.000000pt;}
.y1f5{bottom:185.162667pt;}
.y15a{bottom:185.413333pt;}
.y195{bottom:186.710800pt;}
.y5e{bottom:186.816000pt;}
.y125{bottom:187.074000pt;}
.y13a{bottom:187.244133pt;}
.y7c{bottom:187.509333pt;}
.y1bf{bottom:187.701333pt;}
.y229{bottom:188.250667pt;}
.yee{bottom:188.266667pt;}
.y170{bottom:188.745467pt;}
.y24c{bottom:189.676667pt;}
.ya3{bottom:194.958800pt;}
.y1f4{bottom:198.496000pt;}
.y110{bottom:199.786667pt;}
.y1e{bottom:200.036800pt;}
.y1be{bottom:201.034667pt;}
.y228{bottom:201.850667pt;}
.yc8{bottom:202.960000pt;}
.y43{bottom:204.000000pt;}
.y16f{bottom:205.412133pt;}
.y159{bottom:205.413333pt;}
.y24b{bottom:206.476667pt;}
.y5d{bottom:206.688000pt;}
.y194{bottom:206.710800pt;}
.y124{bottom:207.074000pt;}
.y139{bottom:207.244133pt;}
.y7b{bottom:207.381333pt;}
.yed{bottom:208.138667pt;}
.ya2{bottom:211.225467pt;}
.y1f3{bottom:211.957333pt;}
.y1bd{bottom:214.101333pt;}
.y227{bottom:215.450667pt;}
.y1d{bottom:217.236800pt;}
.y10f{bottom:219.914667pt;}
.yc7{bottom:222.432000pt;}
.y24a{bottom:223.276667pt;}
.y42{bottom:224.000000pt;}
.y158{bottom:225.413333pt;}
.y1f2{bottom:225.418667pt;}
.y5c{bottom:226.560000pt;}
.y193{bottom:226.710800pt;}
.y123{bottom:227.074000pt;}
.y1bc{bottom:227.168000pt;}
.y138{bottom:227.244133pt;}
.y7a{bottom:227.253333pt;}
.ya1{bottom:227.492133pt;}
.yec{bottom:228.010667pt;}
.y226{bottom:229.050667pt;}
.y16e{bottom:229.398800pt;}
.y1c{bottom:234.436800pt;}
.y1f1{bottom:238.880000pt;}
.y10e{bottom:240.042667pt;}
.y249{bottom:240.076667pt;}
.y1bb{bottom:240.234667pt;}
.yc6{bottom:241.904000pt;}
.y225{bottom:242.650667pt;}
.ya0{bottom:243.758800pt;}
.y41{bottom:244.000000pt;}
.y157{bottom:245.413333pt;}
.y16d{bottom:246.065467pt;}
.y5b{bottom:246.432000pt;}
.y192{bottom:246.710800pt;}
.y122{bottom:247.074000pt;}
.y79{bottom:247.125333pt;}
.y137{bottom:247.244133pt;}
.yeb{bottom:247.882667pt;}
.y1b{bottom:251.636800pt;}
.y1f0{bottom:252.341333pt;}
.y1ba{bottom:253.301333pt;}
.y224{bottom:256.250667pt;}
.y248{bottom:256.876667pt;}
.y9f{bottom:260.025467pt;}
.y10d{bottom:260.170667pt;}
.yc5{bottom:261.376000pt;}
.y16c{bottom:262.732133pt;}
.y40{bottom:264.000000pt;}
.y156{bottom:265.413333pt;}
.y1ef{bottom:265.802667pt;}
.y5a{bottom:266.304000pt;}
.y1b9{bottom:266.368000pt;}
.y191{bottom:266.710800pt;}
.y78{bottom:266.997333pt;}
.y121{bottom:267.074000pt;}
.y136{bottom:267.244133pt;}
.yea{bottom:267.754667pt;}
.y1a{bottom:268.836800pt;}
.y223{bottom:269.850667pt;}
.y247{bottom:273.676667pt;}
.y9e{bottom:276.292133pt;}
.y1ee{bottom:279.264000pt;}
.y16b{bottom:279.398800pt;}
.y1b8{bottom:279.434667pt;}
.y10c{bottom:280.298667pt;}
.yc4{bottom:280.848000pt;}
.y222{bottom:283.450667pt;}
.y3f{bottom:284.000000pt;}
.y155{bottom:285.413333pt;}
.y19{bottom:286.036800pt;}
.y59{bottom:286.176000pt;}
.y190{bottom:286.710800pt;}
.y77{bottom:286.869333pt;}
.y120{bottom:287.074000pt;}
.y135{bottom:287.244133pt;}
.ye9{bottom:287.626667pt;}
.y246{bottom:290.476667pt;}
.y1b7{bottom:292.501333pt;}
.y9d{bottom:292.558800pt;}
.y1ed{bottom:292.725333pt;}
.y221{bottom:297.050667pt;}
.yc3{bottom:300.320000pt;}
.y10b{bottom:300.426667pt;}
.y18{bottom:303.236800pt;}
.y16a{bottom:303.385467pt;}
.y3e{bottom:304.000000pt;}
.y154{bottom:305.413333pt;}
.y1b6{bottom:305.568000pt;}
.y58{bottom:306.048000pt;}
.y1ec{bottom:306.186667pt;}
.y18f{bottom:306.710800pt;}
.y76{bottom:306.741333pt;}
.y11f{bottom:307.074000pt;}
.y134{bottom:307.244133pt;}
.y245{bottom:307.276667pt;}
.ye8{bottom:307.498667pt;}
.y9c{bottom:308.825467pt;}
.y220{bottom:310.650667pt;}
.y1b5{bottom:318.634667pt;}
.y1eb{bottom:319.648000pt;}
.yc2{bottom:319.792000pt;}
.y169{bottom:320.052133pt;}
.y10a{bottom:320.554667pt;}
.y3d{bottom:324.000000pt;}
.y244{bottom:324.076667pt;}
.y21f{bottom:324.250667pt;}
.y9b{bottom:325.092133pt;}
.y153{bottom:325.413333pt;}
.y57{bottom:325.920000pt;}
.y75{bottom:326.613333pt;}
.y18e{bottom:326.710800pt;}
.y11e{bottom:327.074000pt;}
.y133{bottom:327.244133pt;}
.ye7{bottom:327.370667pt;}
.y17{bottom:327.996800pt;}
.y1b4{bottom:331.829333pt;}
.y1ea{bottom:333.109333pt;}
.y168{bottom:336.718800pt;}
.y21e{bottom:337.850667pt;}
.yc1{bottom:339.264000pt;}
.y109{bottom:340.682667pt;}
.y243{bottom:340.876667pt;}
.y9a{bottom:341.358800pt;}
.y3c{bottom:344.000000pt;}
.y1b3{bottom:345.024000pt;}
.y152{bottom:345.413333pt;}
.y56{bottom:345.792000pt;}
.y74{bottom:346.485333pt;}
.y1e9{bottom:346.570667pt;}
.y18d{bottom:346.710800pt;}
.y11d{bottom:347.074000pt;}
.ye6{bottom:347.242667pt;}
.y132{bottom:347.244133pt;}
.y21d{bottom:351.450667pt;}
.y99{bottom:357.625467pt;}
.y242{bottom:357.676667pt;}
.y1b2{bottom:358.229333pt;}
.yc0{bottom:358.736000pt;}
.y1e8{bottom:360.032000pt;}
.y167{bottom:360.705467pt;}
.y108{bottom:360.810667pt;}
.y3b{bottom:364.000000pt;}
.y21c{bottom:365.050667pt;}
.y151{bottom:365.413333pt;}
.y55{bottom:365.664000pt;}
.y73{bottom:366.357333pt;}
.y18c{bottom:366.710800pt;}
.y11c{bottom:367.074000pt;}
.ye5{bottom:367.114667pt;}
.y131{bottom:367.244133pt;}
.y16{bottom:369.063467pt;}
.y1b1{bottom:371.424000pt;}
.y1e7{bottom:373.493333pt;}
.y98{bottom:373.892133pt;}
.y166{bottom:377.372133pt;}
.ybf{bottom:378.208000pt;}
.y21b{bottom:378.650667pt;}
.y107{bottom:380.938667pt;}
.y3a{bottom:384.000000pt;}
.y1b0{bottom:384.618667pt;}
.y150{bottom:385.413333pt;}
.y54{bottom:385.536000pt;}
.y241{bottom:385.815200pt;}
.y72{bottom:386.229333pt;}
.y15{bottom:386.263467pt;}
.y18b{bottom:386.710800pt;}
.y1e6{bottom:386.954667pt;}
.ye4{bottom:386.986667pt;}
.y11b{bottom:387.074000pt;}
.y130{bottom:387.244133pt;}
.y97{bottom:390.158800pt;}
.y21a{bottom:392.250667pt;}
.y165{bottom:394.038800pt;}
.ybe{bottom:397.680000pt;}
.y1af{bottom:397.813333pt;}
.y1e5{bottom:400.416000pt;}
.y106{bottom:401.178667pt;}
.y39{bottom:404.000000pt;}
.y53{bottom:405.408000pt;}
.y14f{bottom:405.413333pt;}
.y219{bottom:405.850667pt;}
.y71{bottom:406.101333pt;}
.y96{bottom:406.425467pt;}
.y18a{bottom:406.710800pt;}
.ye3{bottom:406.858667pt;}
.y11a{bottom:407.074000pt;}
.y12f{bottom:407.244133pt;}
.y1ae{bottom:411.008000pt;}
.y14{bottom:411.021600pt;}
.y240{bottom:413.290667pt;}
.y1e4{bottom:413.877333pt;}
.ybd{bottom:417.152000pt;}
.y164{bottom:418.025467pt;}
.y218{bottom:419.450667pt;}
.y105{bottom:421.306667pt;}
.y95{bottom:422.692133pt;}
.y38{bottom:424.000000pt;}
.y1ad{bottom:424.213333pt;}
.y52{bottom:425.280000pt;}
.y14e{bottom:425.413333pt;}
.y70{bottom:425.973333pt;}
.y189{bottom:426.710800pt;}
.ye2{bottom:426.730667pt;}
.y119{bottom:427.074000pt;}
.y12e{bottom:427.244133pt;}
.y1e3{bottom:427.338667pt;}
.y13{bottom:428.221600pt;}
.y217{bottom:433.050667pt;}
.y163{bottom:434.692133pt;}
.ybc{bottom:436.624000pt;}
.y1ac{bottom:437.408000pt;}
.y94{bottom:438.958800pt;}
.y1e2{bottom:440.800000pt;}
.y104{bottom:441.434667pt;}
.y37{bottom:444.000000pt;}
.y51{bottom:445.152000pt;}
.y14d{bottom:445.413333pt;}
.y12{bottom:445.421600pt;}
.y6f{bottom:445.845333pt;}
.ye1{bottom:446.602667pt;}
.y216{bottom:446.650667pt;}
.y188{bottom:446.710800pt;}
.y118{bottom:447.074000pt;}
.y12d{bottom:447.244133pt;}
.y1ab{bottom:450.602667pt;}
.y162{bottom:451.358800pt;}
.y1e1{bottom:454.261333pt;}
.y93{bottom:455.225467pt;}
.ybb{bottom:456.096000pt;}
.y23f{bottom:457.333333pt;}
.y215{bottom:460.250667pt;}
.y103{bottom:461.562667pt;}
.y11{bottom:462.621600pt;}
.y1aa{bottom:463.797333pt;}
.y36{bottom:464.000000pt;}
.y50{bottom:465.024000pt;}
.y14c{bottom:465.413333pt;}
.y6e{bottom:465.717333pt;}
.ye0{bottom:466.474667pt;}
.y187{bottom:466.710800pt;}
.y117{bottom:467.074000pt;}
.y12c{bottom:467.244133pt;}
.y1e0{bottom:467.722667pt;}
.y161{bottom:468.025467pt;}
.y23e{bottom:470.666667pt;}
.y92{bottom:471.492133pt;}
.y214{bottom:473.850667pt;}
.yba{bottom:475.568000pt;}
.y10{bottom:479.821600pt;}
.y1df{bottom:481.184000pt;}
.y102{bottom:481.690667pt;}
.y1a9{bottom:482.666667pt;}
.y35{bottom:484.000000pt;}
.y4f{bottom:484.896000pt;}
.y14b{bottom:485.413333pt;}
.y6d{bottom:485.589333pt;}
.ydf{bottom:486.346667pt;}
.y186{bottom:486.710800pt;}
.y116{bottom:487.074000pt;}
.y12b{bottom:487.244133pt;}
.y213{bottom:487.450667pt;}
.y91{bottom:487.758800pt;}
.y160{bottom:492.012133pt;}
.y1de{bottom:494.645333pt;}
.yb9{bottom:495.040000pt;}
.yf{bottom:497.021600pt;}
.y23d{bottom:497.333333pt;}
.y212{bottom:501.050667pt;}
.y101{bottom:501.818667pt;}
.y34{bottom:504.000000pt;}
.y90{bottom:504.025467pt;}
.y4e{bottom:504.768000pt;}
.y14a{bottom:505.413333pt;}
.y6c{bottom:505.461333pt;}
.yde{bottom:506.218667pt;}
.y185{bottom:506.710800pt;}
.y115{bottom:507.074000pt;}
.y1dd{bottom:508.106667pt;}
.y15f{bottom:508.678800pt;}
.y23c{bottom:510.666667pt;}
.ye{bottom:514.221600pt;}
.yb8{bottom:514.512000pt;}
.y211{bottom:514.650667pt;}
.y25d{bottom:517.333333pt;}
.y8f{bottom:520.292133pt;}
.y1dc{bottom:521.568000pt;}
.y100{bottom:521.946667pt;}
.y1a8{bottom:522.464000pt;}
.y33{bottom:524.000000pt;}
.y4d{bottom:524.640000pt;}
.y6b{bottom:525.333333pt;}
.y149{bottom:525.413333pt;}
.ydd{bottom:526.090667pt;}
.y114{bottom:526.146000pt;}
.y184{bottom:526.710800pt;}
.y210{bottom:528.250667pt;}
.yd{bottom:531.421600pt;}
.yb7{bottom:533.984000pt;}
.y25c{bottom:534.000000pt;}
.y1db{bottom:535.029333pt;}
.y8e{bottom:536.558800pt;}
.y23b{bottom:537.333333pt;}
.y20f{bottom:541.850667pt;}
.yff{bottom:542.074667pt;}
.y1a7{bottom:542.592000pt;}
.y32{bottom:544.000000pt;}
.y4c{bottom:544.512000pt;}
.y6a{bottom:545.200000pt;}
.y148{bottom:545.413333pt;}
.ydc{bottom:545.962667pt;}
.y183{bottom:546.710800pt;}
.y1da{bottom:548.490667pt;}
.yc{bottom:548.621600pt;}
.y23a{bottom:550.666667pt;}
.y8d{bottom:552.825467pt;}
.yb6{bottom:553.456000pt;}
.y20e{bottom:555.450667pt;}
.y1d9{bottom:561.952000pt;}
.yfe{bottom:562.202667pt;}
.y1a6{bottom:562.720000pt;}
.y31{bottom:564.000000pt;}
.y4b{bottom:564.384000pt;}
.y147{bottom:565.413333pt;}
.yb{bottom:565.821600pt;}
.ydb{bottom:565.834667pt;}
.y182{bottom:566.710800pt;}
.y25b{bottom:567.333333pt;}
.y20d{bottom:569.050667pt;}
.yb5{bottom:572.928000pt;}
.y1d8{bottom:575.413333pt;}
.y8c{bottom:576.812133pt;}
.y239{bottom:577.333333pt;}
.yfd{bottom:582.330667pt;}
.y1a5{bottom:582.848000pt;}
.y30{bottom:584.000000pt;}
.y4a{bottom:584.256000pt;}
.y69{bottom:584.896000pt;}
.y146{bottom:585.413333pt;}
.yda{bottom:585.706667pt;}
.y181{bottom:586.707067pt;}
.y20c{bottom:588.325333pt;}
.y1d7{bottom:588.874667pt;}
.ya{bottom:590.581600pt;}
.y238{bottom:590.666667pt;}
.yb4{bottom:592.400000pt;}
.y8b{bottom:593.478800pt;}
.y25a{bottom:600.666667pt;}
.y1d6{bottom:602.336000pt;}
.yfc{bottom:602.458667pt;}
.y1a4{bottom:602.976000pt;}
.y2f{bottom:604.000000pt;}
.y49{bottom:604.128000pt;}
.y68{bottom:604.768000pt;}
.y145{bottom:605.413333pt;}
.yd9{bottom:605.578667pt;}
.yb3{bottom:611.866667pt;}
.y1d5{bottom:615.797333pt;}
.y237{bottom:617.333333pt;}
.yfb{bottom:622.586667pt;}
.y1a3{bottom:623.104000pt;}
.y2e{bottom:624.000000pt;}
.y67{bottom:624.640000pt;}
.y144{bottom:625.413333pt;}
.yd8{bottom:625.450667pt;}
.y20b{bottom:628.592000pt;}
.y8a{bottom:628.800000pt;}
.y1d4{bottom:629.258667pt;}
.y180{bottom:629.267067pt;}
.y236{bottom:630.666667pt;}
.y9{bottom:631.514933pt;}
.y20a{bottom:642.053333pt;}
.yfa{bottom:642.714667pt;}
.y1d3{bottom:642.720000pt;}
.y1a2{bottom:643.232000pt;}
.y2d{bottom:644.000000pt;}
.y66{bottom:644.512000pt;}
.y143{bottom:645.285333pt;}
.yd7{bottom:645.322667pt;}
.y17f{bottom:645.933733pt;}
.y8{bottom:648.848267pt;}
.y259{bottom:650.666667pt;}
.yb2{bottom:650.714667pt;}
.y209{bottom:655.514667pt;}
.y1d2{bottom:656.181333pt;}
.y235{bottom:657.333333pt;}
.y17e{bottom:662.600400pt;}
.yf9{bottom:662.842667pt;}
.y1a1{bottom:663.360000pt;}
.y2c{bottom:664.000000pt;}
.y65{bottom:664.384000pt;}
.y142{bottom:665.157333pt;}
.yd6{bottom:665.194667pt;}
.y89{bottom:668.757333pt;}
.y208{bottom:668.976000pt;}
.y7{bottom:669.248267pt;}
.y1d1{bottom:669.642667pt;}
.yb1{bottom:670.042667pt;}
.y234{bottom:670.666667pt;}
.y258{bottom:677.333333pt;}
.y207{bottom:682.437333pt;}
.yf8{bottom:682.970667pt;}
.y1d0{bottom:683.104000pt;}
.y1a0{bottom:683.488000pt;}
.y2b{bottom:684.000000pt;}
.y64{bottom:684.256000pt;}
.yd5{bottom:685.029333pt;}
.y17d{bottom:686.587067pt;}
.y88{bottom:688.229333pt;}
.yb0{bottom:689.370667pt;}
.y6{bottom:689.648267pt;}
.y257{bottom:694.000000pt;}
.y206{bottom:695.898667pt;}
.y1cf{bottom:696.565333pt;}
.y233{bottom:697.333333pt;}
.yf7{bottom:703.098667pt;}
.y17c{bottom:703.253733pt;}
.y19f{bottom:703.616000pt;}
.y2a{bottom:704.000000pt;}
.y63{bottom:704.128000pt;}
.yd4{bottom:704.901333pt;}
.y87{bottom:707.701333pt;}
.yaf{bottom:708.698667pt;}
.y205{bottom:709.360000pt;}
.y1ce{bottom:710.026667pt;}
.y232{bottom:710.666667pt;}
.y17b{bottom:719.920400pt;}
.y204{bottom:722.821333pt;}
.yf6{bottom:723.226667pt;}
.y1cd{bottom:723.488000pt;}
.y19e{bottom:723.744000pt;}
.y29{bottom:724.000000pt;}
.yd3{bottom:724.773333pt;}
.y86{bottom:727.173333pt;}
.y256{bottom:727.333333pt;}
.yae{bottom:728.026667pt;}
.y203{bottom:736.293333pt;}
.y17a{bottom:736.587067pt;}
.y1cc{bottom:736.949333pt;}
.y231{bottom:737.333333pt;}
.yf5{bottom:743.354667pt;}
.y19d{bottom:743.872000pt;}
.y28{bottom:744.000000pt;}
.yd2{bottom:744.645333pt;}
.y85{bottom:746.645333pt;}
.yad{bottom:747.354667pt;}
.y5{bottom:749.733333pt;}
.y202{bottom:749.754667pt;}
.y1cb{bottom:750.410667pt;}
.y230{bottom:750.666667pt;}
.y179{bottom:753.253733pt;}
.y255{bottom:760.666667pt;}
.y201{bottom:763.216000pt;}
.yf4{bottom:763.482667pt;}
.y1ca{bottom:763.872000pt;}
.y27{bottom:764.000000pt;}
.yd1{bottom:764.517333pt;}
.y84{bottom:766.117333pt;}
.yac{bottom:766.682667pt;}
.y178{bottom:769.920400pt;}
.y200{bottom:776.677333pt;}
.y4{bottom:776.800000pt;}
.y1c9{bottom:777.333333pt;}
.yf3{bottom:783.610667pt;}
.y26{bottom:784.000000pt;}
.yd0{bottom:784.389333pt;}
.y83{bottom:785.589333pt;}
.yab{bottom:786.010667pt;}
.y177{bottom:786.587067pt;}
.y1ff{bottom:790.138667pt;}
.y1c8{bottom:790.666667pt;}
.y254{bottom:794.000000pt;}
.y1fe{bottom:803.610667pt;}
.yf2{bottom:803.738667pt;}
.y25{bottom:804.000000pt;}
.ycf{bottom:804.261333pt;}
.y82{bottom:805.061333pt;}
.yaa{bottom:805.338667pt;}
.y176{bottom:810.573733pt;}
.y253{bottom:810.666667pt;}
.y1fd{bottom:817.072000pt;}
.y1c7{bottom:817.333333pt;}
.y3{bottom:823.866667pt;}
.y24{bottom:824.000000pt;}
.y12a{bottom:824.047200pt;}
.yce{bottom:824.133333pt;}
.y81{bottom:824.533333pt;}
.ya9{bottom:824.666667pt;}
.y175{bottom:827.240400pt;}
.y252{bottom:827.333333pt;}
.y1fc{bottom:830.533333pt;}
.y1c6{bottom:830.666667pt;}
.hb{height:21.894141pt;}
.hd{height:29.437500pt;}
.h10{height:33.117188pt;}
.h2{height:34.957031pt;}
.he{height:35.456000pt;}
.hf{height:36.229167pt;}
.h1{height:36.796875pt;}
.h4{height:37.333333pt;}
.h5{height:44.156250pt;}
.h9{height:44.320000pt;}
.h6{height:45.286458pt;}
.hc{height:51.581375pt;}
.h8{height:52.029375pt;}
.ha{height:52.178708pt;}
.h7{height:54.343750pt;}
.h3{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xe{left:67.533333pt;}
.x7{left:73.232000pt;}
.x3{left:86.456667pt;}
.x5{left:100.000000pt;}
.x8{left:105.624667pt;}
.x13{left:107.533333pt;}
.x6{left:113.228400pt;}
.xb{left:118.851333pt;}
.x2{left:120.000000pt;}
.x18{left:160.466667pt;}
.x12{left:209.080000pt;}
.x17{left:249.080000pt;}
.x9{left:266.958000pt;}
.xc{left:280.171333pt;}
.xf{left:295.546667pt;}
.x14{left:335.546667pt;}
.x10{left:363.573333pt;}
.x15{left:403.573333pt;}
.xa{left:445.451333pt;}
.xd{left:458.664667pt;}
.x11{left:488.760000pt;}
.x16{left:528.760000pt;}
.x4{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; }
  