
    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_0eba5745e27bc901078e390b.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_11cb557f85a8a540ae45370a.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_844de75512478ff6d815194e.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_dba13aa4aae3e51fa080c1fd.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_e53b9b7e456b24573d708947.woff')format("woff");}.ff5{font-family:ff5;line-height:1.029000;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_23763ed00126b35774e78d86.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_02e45e9f325d91db758c0283.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_275dd9eea5853da881717d1d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_685e9cd9028707349f8f9069.woff')format("woff");}.ff9{font-family:ff9;line-height:1.060000;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_8d770d975f2dd8c2094f1ade.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_377838a0d95399a9939153f2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_50ea98fe8c890bf49d6fd4bd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.845703;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_8c522daac57bfd59fe7e9fbe.woff')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.528000px;}
.v1{vertical-align:23.808000px;}
.ls4b{letter-spacing:-12.300000px;}
.ls43{letter-spacing:-11.070000px;}
.ls44{letter-spacing:-6.000000px;}
.ls42{letter-spacing:-5.400000px;}
.ls55{letter-spacing:-2.808000px;}
.ls22{letter-spacing:-1.800000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls68{letter-spacing:-0.960000px;}
.ls5d{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.864000px;}
.ls28{letter-spacing:-0.792000px;}
.ls2f{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.648000px;}
.ls4c{letter-spacing:-0.600000px;}
.ls4a{letter-spacing:-0.576000px;}
.ls56{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.504000px;}
.ls5f{letter-spacing:-0.432000px;}
.ls15{letter-spacing:-0.360000px;}
.ls45{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.288000px;}
.ls69{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.000600px;}
.ls3e{letter-spacing:0.010800px;}
.ls16{letter-spacing:0.072000px;}
.ls3a{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.201600px;}
.ls24{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls60{letter-spacing:0.510000px;}
.ls47{letter-spacing:0.525600px;}
.ls1b{letter-spacing:0.576000px;}
.ls59{letter-spacing:0.589800px;}
.ls5c{letter-spacing:0.600000px;}
.ls2c{letter-spacing:0.648000px;}
.ls27{letter-spacing:0.720000px;}
.ls48{letter-spacing:0.756000px;}
.ls2e{letter-spacing:0.792000px;}
.ls5e{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.936000px;}
.ls14{letter-spacing:1.008000px;}
.ls30{letter-spacing:1.080000px;}
.ls40{letter-spacing:1.320000px;}
.ls41{letter-spacing:1.584000px;}
.ls17{letter-spacing:1.656000px;}
.ls46{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.872000px;}
.ls1c{letter-spacing:1.886400px;}
.ls3f{letter-spacing:2.080800px;}
.ls5a{letter-spacing:2.232000px;}
.ls5b{letter-spacing:2.448000px;}
.ls34{letter-spacing:2.692800px;}
.ls19{letter-spacing:2.728800px;}
.ls1a{letter-spacing:2.808000px;}
.ls1{letter-spacing:2.850000px;}
.ls1e{letter-spacing:3.168000px;}
.ls53{letter-spacing:3.360000px;}
.ls66{letter-spacing:3.379200px;}
.ls54{letter-spacing:3.408000px;}
.ls61{letter-spacing:3.427200px;}
.ls62{letter-spacing:3.456000px;}
.ls63{letter-spacing:3.465600px;}
.ls65{letter-spacing:3.470400px;}
.ls6{letter-spacing:3.501600px;}
.ls36{letter-spacing:3.780000px;}
.ls35{letter-spacing:3.834000px;}
.ls4f{letter-spacing:3.888000px;}
.ls50{letter-spacing:3.960000px;}
.ls51{letter-spacing:3.981600px;}
.ls37{letter-spacing:4.200000px;}
.ls49{letter-spacing:4.260000px;}
.ls6a{letter-spacing:4.272000px;}
.ls39{letter-spacing:4.308000px;}
.lsd{letter-spacing:4.512000px;}
.ls8{letter-spacing:4.560000px;}
.ls64{letter-spacing:4.752000px;}
.ls4{letter-spacing:5.040000px;}
.ls5{letter-spacing:5.112000px;}
.ls57{letter-spacing:5.191200px;}
.lsa{letter-spacing:5.343600px;}
.ls58{letter-spacing:5.478000px;}
.ls4d{letter-spacing:5.544000px;}
.ls4e{letter-spacing:5.616000px;}
.ls9{letter-spacing:5.808000px;}
.ls6b{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.lsc{letter-spacing:8.460000px;}
.ls52{letter-spacing:8.856000px;}
.ls33{letter-spacing:10.296000px;}
.ls3c{letter-spacing:10.440000px;}
.ls23{letter-spacing:10.461600px;}
.ls3d{letter-spacing:10.540800px;}
.ls67{letter-spacing:10.608000px;}
.ls2{letter-spacing:10.740000px;}
.ls2d{letter-spacing:11.124000px;}
.ls3{letter-spacing:21.720000px;}
.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;}
}
.ws9c{word-spacing:-72.756000px;}
.ws8c{word-spacing:-72.720000px;}
.ws8d{word-spacing:-72.000000px;}
.wsa5{word-spacing:-71.928000px;}
.ws9a{word-spacing:-71.712000px;}
.ws8e{word-spacing:-61.320000px;}
.wsb3{word-spacing:-60.600000px;}
.ws9b{word-spacing:-60.360000px;}
.ws83{word-spacing:-60.120000px;}
.ws85{word-spacing:-60.000000px;}
.ws99{word-spacing:-59.880000px;}
.ws82{word-spacing:-59.700000px;}
.wsa1{word-spacing:-59.472000px;}
.wsa4{word-spacing:-59.460000px;}
.ws84{word-spacing:-54.426000px;}
.ws89{word-spacing:-54.402600px;}
.ws86{word-spacing:-54.354600px;}
.ws88{word-spacing:-54.343800px;}
.ws87{word-spacing:-54.343200px;}
.ws4{word-spacing:-25.320000px;}
.wsae{word-spacing:-23.604000px;}
.ws8a{word-spacing:-20.520000px;}
.wsa3{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.867000px;}
.ws69{word-spacing:-18.432000px;}
.ws3d{word-spacing:-18.216000px;}
.ws8b{word-spacing:-18.072000px;}
.ws7b{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.784000px;}
.ws7a{word-spacing:-17.640000px;}
.wsb1{word-spacing:-17.424000px;}
.wsaf{word-spacing:-17.352000px;}
.wsb0{word-spacing:-17.280000px;}
.wsb2{word-spacing:-17.208000px;}
.wsb9{word-spacing:-17.190000px;}
.ws80{word-spacing:-16.860000px;}
.wsad{word-spacing:-16.680000px;}
.ws81{word-spacing:-15.174000px;}
.wsa2{word-spacing:-14.162400px;}
.wsa6{word-spacing:-11.856000px;}
.wsc0{word-spacing:-10.896000px;}
.ws2{word-spacing:-10.800000px;}
.wsd{word-spacing:-8.496000px;}
.wsc1{word-spacing:-8.299200px;}
.wsc6{word-spacing:-8.100000px;}
.wsc2{word-spacing:-4.800000px;}
.wsbf{word-spacing:-4.752000px;}
.ws6{word-spacing:-4.608000px;}
.ws5{word-spacing:-4.560000px;}
.wsc3{word-spacing:-4.320000px;}
.ws6c{word-spacing:-2.088000px;}
.ws37{word-spacing:-2.016000px;}
.ws97{word-spacing:-1.584000px;}
.ws6b{word-spacing:-1.008000px;}
.ws27{word-spacing:-0.936000px;}
.wsb5{word-spacing:-0.864000px;}
.wsb8{word-spacing:-0.792000px;}
.ws96{word-spacing:-0.720000px;}
.ws9e{word-spacing:-0.576000px;}
.ws92{word-spacing:-0.432000px;}
.wsb7{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.ws94{word-spacing:-0.288000px;}
.ws93{word-spacing:-0.240000px;}
.wsa8{word-spacing:-0.216000px;}
.ws6e{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
.ws65{word-spacing:0.072000px;}
.ws8{word-spacing:0.120000px;}
.ws7c{word-spacing:0.144000px;}
.wsc4{word-spacing:0.240000px;}
.ws4c{word-spacing:0.288000px;}
.ws67{word-spacing:0.360000px;}
.ws6d{word-spacing:0.432000px;}
.ws2f{word-spacing:0.576000px;}
.ws14{word-spacing:0.648000px;}
.ws76{word-spacing:0.792000px;}
.ws39{word-spacing:0.864000px;}
.ws25{word-spacing:0.936000px;}
.ws75{word-spacing:1.008000px;}
.ws22{word-spacing:1.080000px;}
.ws43{word-spacing:1.152000px;}
.ws52{word-spacing:1.224000px;}
.wsf{word-spacing:1.296000px;}
.wsab{word-spacing:1.440000px;}
.ws44{word-spacing:1.512000px;}
.ws66{word-spacing:1.584000px;}
.ws6a{word-spacing:1.656000px;}
.ws12{word-spacing:1.800000px;}
.ws3a{word-spacing:1.872000px;}
.ws18{word-spacing:1.944000px;}
.ws58{word-spacing:2.088000px;}
.ws5a{word-spacing:2.160000px;}
.ws1f{word-spacing:2.232000px;}
.ws1d{word-spacing:2.304000px;}
.ws17{word-spacing:2.376000px;}
.ws3f{word-spacing:2.448000px;}
.ws50{word-spacing:2.520000px;}
.ws4f{word-spacing:2.592000px;}
.ws7f{word-spacing:2.664000px;}
.ws2d{word-spacing:2.736000px;}
.ws38{word-spacing:2.808000px;}
.ws53{word-spacing:2.880000px;}
.ws72{word-spacing:2.952000px;}
.wsc5{word-spacing:2.976000px;}
.ws5b{word-spacing:3.024000px;}
.ws61{word-spacing:3.096000px;}
.ws21{word-spacing:3.168000px;}
.ws56{word-spacing:3.240000px;}
.ws3c{word-spacing:3.312000px;}
.wsac{word-spacing:3.360000px;}
.ws55{word-spacing:3.384000px;}
.wsb4{word-spacing:3.456000px;}
.ws3b{word-spacing:3.672000px;}
.ws9{word-spacing:3.720000px;}
.ws4a{word-spacing:3.744000px;}
.ws8f{word-spacing:3.780000px;}
.ws78{word-spacing:3.816000px;}
.wsa9{word-spacing:3.888000px;}
.ws45{word-spacing:4.032000px;}
.ws59{word-spacing:4.104000px;}
.ws35{word-spacing:4.176000px;}
.ws7{word-spacing:4.200000px;}
.ws11{word-spacing:4.248000px;}
.ws40{word-spacing:4.320000px;}
.wsaa{word-spacing:4.392000px;}
.ws2a{word-spacing:4.464000px;}
.ws51{word-spacing:4.608000px;}
.ws34{word-spacing:4.680000px;}
.ws48{word-spacing:4.752000px;}
.ws4d{word-spacing:4.824000px;}
.ws6f{word-spacing:4.896000px;}
.ws60{word-spacing:4.968000px;}
.ws1a{word-spacing:5.040000px;}
.ws23{word-spacing:5.112000px;}
.ws49{word-spacing:5.184000px;}
.ws74{word-spacing:5.256000px;}
.ws31{word-spacing:5.328000px;}
.ws19{word-spacing:5.400000px;}
.ws42{word-spacing:5.472000px;}
.wsa7{word-spacing:5.544000px;}
.ws54{word-spacing:5.616000px;}
.ws5c{word-spacing:5.760000px;}
.ws62{word-spacing:5.904000px;}
.ws7e{word-spacing:5.976000px;}
.ws91{word-spacing:6.000000px;}
.ws26{word-spacing:6.048000px;}
.ws29{word-spacing:6.120000px;}
.ws20{word-spacing:6.192000px;}
.wsbe{word-spacing:6.336000px;}
.ws3e{word-spacing:6.408000px;}
.ws64{word-spacing:6.480000px;}
.ws1b{word-spacing:6.552000px;}
.ws57{word-spacing:6.624000px;}
.ws10{word-spacing:6.696000px;}
.ws32{word-spacing:6.768000px;}
.ws77{word-spacing:6.840000px;}
.wsbc{word-spacing:6.912000px;}
.ws4b{word-spacing:7.128000px;}
.ws41{word-spacing:7.200000px;}
.ws33{word-spacing:7.272000px;}
.ws46{word-spacing:7.344000px;}
.ws5e{word-spacing:7.416000px;}
.ws13{word-spacing:7.560000px;}
.ws70{word-spacing:7.632000px;}
.ws47{word-spacing:7.704000px;}
.ws2c{word-spacing:7.848000px;}
.ws5f{word-spacing:7.920000px;}
.ws2e{word-spacing:7.992000px;}
.ws36{word-spacing:8.064000px;}
.ws24{word-spacing:8.352000px;}
.wsa{word-spacing:8.400000px;}
.wsbb{word-spacing:8.424000px;}
.ws9f{word-spacing:8.640000px;}
.ws63{word-spacing:8.712000px;}
.ws30{word-spacing:8.784000px;}
.ws16{word-spacing:8.856000px;}
.ws2b{word-spacing:8.928000px;}
.wsba{word-spacing:9.144000px;}
.ws7d{word-spacing:9.216000px;}
.ws4e{word-spacing:9.288000px;}
.wsbd{word-spacing:9.360000px;}
.ws5d{word-spacing:9.432000px;}
.ws28{word-spacing:9.576000px;}
.ws71{word-spacing:9.648000px;}
.ws1e{word-spacing:9.792000px;}
.ws73{word-spacing:9.864000px;}
.ws68{word-spacing:9.936000px;}
.wse{word-spacing:10.080000px;}
.ws1c{word-spacing:10.152000px;}
.wsb6{word-spacing:10.200000px;}
.ws15{word-spacing:10.224000px;}
.ws79{word-spacing:10.296000px;}
.ws95{word-spacing:10.440000px;}
.ws9d{word-spacing:10.512000px;}
.ws90{word-spacing:11.070000px;}
.wsa0{word-spacing:12.300000px;}
.ws98{word-spacing:13.176000px;}
.ws0{word-spacing:146.196000px;}
._f{margin-left:-948.820800px;}
._17{margin-left:-28.800000px;}
._1a{margin-left:-20.233200px;}
._16{margin-left:-14.898000px;}
._19{margin-left:-12.312000px;}
._7{margin-left:-11.145600px;}
._10{margin-left:-9.150000px;}
._c{margin-left:-8.046000px;}
._1{margin-left:-6.096000px;}
._13{margin-left:-4.938000px;}
._d{margin-left:-3.834000px;}
._9{margin-left:-2.496000px;}
._b{margin-left:-1.254000px;}
._a{width:1.220400px;}
._6{width:2.613600px;}
._8{width:3.744000px;}
._e{width:4.851600px;}
._14{width:6.324000px;}
._18{width:7.646400px;}
._12{width:9.345600px;}
._11{width:11.016000px;}
._1c{width:12.282000px;}
._15{width:14.923200px;}
._5{width:24.666000px;}
._2{width:26.814000px;}
._1b{width:31.646100px;}
._0{width:42.240000px;}
._3{width:68.940000px;}
._4{width:71.046000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs8{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.yec{bottom:117.000000px;}
.y7b{bottom:117.996000px;}
.y69{bottom:118.110000px;}
.y117{bottom:118.741050px;}
.y45{bottom:118.872000px;}
.ya3{bottom:119.094000px;}
.y22{bottom:119.325900px;}
.y7e{bottom:119.892000px;}
.y15d{bottom:119.996250px;}
.y112{bottom:121.528350px;}
.y182{bottom:121.640250px;}
.y1aa{bottom:121.680000px;}
.y1d5{bottom:122.336250px;}
.yc7{bottom:123.300000px;}
.y13b{bottom:132.000000px;}
.y1a9{bottom:136.824000px;}
.y116{bottom:137.491050px;}
.y21{bottom:137.925900px;}
.yeb{bottom:139.500000px;}
.y7a{bottom:141.090000px;}
.y68{bottom:141.204000px;}
.y1d4{bottom:141.236250px;}
.ya2{bottom:141.594000px;}
.y44{bottom:141.966000px;}
.y7d{bottom:142.392000px;}
.y15c{bottom:142.496250px;}
.y111{bottom:143.440350px;}
.y181{bottom:143.690250px;}
.yc6{bottom:146.250000px;}
.y13a{bottom:147.000000px;}
.y1a8{bottom:151.968000px;}
.y1d3{bottom:160.136250px;}
.yea{bottom:162.000000px;}
.ya1{bottom:164.094000px;}
.y79{bottom:164.184000px;}
.y67{bottom:164.298000px;}
.y115{bottom:164.746050px;}
.y7c{bottom:164.892000px;}
.y15b{bottom:164.996250px;}
.y20{bottom:165.028800px;}
.y43{bottom:165.060000px;}
.y110{bottom:165.196200px;}
.y180{bottom:165.740250px;}
.y139{bottom:166.207500px;}
.y1a7{bottom:167.112000px;}
.yc5{bottom:169.200000px;}
.y1a6{bottom:182.256000px;}
.y114{bottom:183.496050px;}
.y1f{bottom:183.628800px;}
.ye9{bottom:184.500000px;}
.ya0{bottom:186.594000px;}
.y15a{bottom:186.902250px;}
.y10f{bottom:186.940200px;}
.y78{bottom:187.278000px;}
.y66{bottom:187.392000px;}
.y17f{bottom:187.790250px;}
.y42{bottom:188.154000px;}
.y1d2{bottom:190.436250px;}
.yc4{bottom:192.150000px;}
.y1a5{bottom:197.400000px;}
.y113{bottom:202.246050px;}
.y1e{bottom:203.728800px;}
.y138{bottom:205.614150px;}
.ye8{bottom:207.000000px;}
.y10e{bottom:208.696200px;}
.y159{bottom:208.808250px;}
.y9f{bottom:209.094000px;}
.y17e{bottom:209.840250px;}
.y77{bottom:210.372000px;}
.y65{bottom:210.486000px;}
.y41{bottom:211.248000px;}
.y1a4{bottom:212.544000px;}
.yc3{bottom:215.100000px;}
.y1d{bottom:223.828800px;}
.y137{bottom:227.214150px;}
.y1a3{bottom:227.688000px;}
.ye7{bottom:229.500000px;}
.y10d{bottom:230.440200px;}
.y158{bottom:230.714250px;}
.y9e{bottom:231.594000px;}
.y17d{bottom:231.890250px;}
.y1d1{bottom:231.986250px;}
.y76{bottom:233.466000px;}
.y64{bottom:233.580000px;}
.y40{bottom:234.342000px;}
.yc2{bottom:238.050000px;}
.y1a2{bottom:242.832000px;}
.y1c{bottom:243.928800px;}
.y136{bottom:249.120150px;}
.y1d0{bottom:250.886250px;}
.ye6{bottom:252.000000px;}
.y10c{bottom:252.180150px;}
.y157{bottom:252.620250px;}
.y17c{bottom:253.940250px;}
.y9d{bottom:254.094000px;}
.y75{bottom:256.560000px;}
.y63{bottom:256.674000px;}
.y3f{bottom:257.436000px;}
.y1a1{bottom:257.976000px;}
.yc1{bottom:261.000000px;}
.y1b{bottom:264.028800px;}
.y1cf{bottom:269.786250px;}
.y135{bottom:271.026150px;}
.y1a0{bottom:273.120000px;}
.ye5{bottom:274.500000px;}
.y156{bottom:274.526250px;}
.y17b{bottom:275.990250px;}
.y9c{bottom:276.594000px;}
.y74{bottom:279.654000px;}
.y62{bottom:279.768000px;}
.y3e{bottom:280.530000px;}
.yc0{bottom:283.950000px;}
.y1a{bottom:284.128800px;}
.y10b{bottom:284.436150px;}
.y19f{bottom:288.264000px;}
.y1ce{bottom:288.686250px;}
.y134{bottom:292.932150px;}
.y155{bottom:296.432250px;}
.ye4{bottom:297.000000px;}
.y17a{bottom:298.040250px;}
.y9b{bottom:299.094000px;}
.y73{bottom:302.748000px;}
.y61{bottom:302.862000px;}
.y19e{bottom:303.408000px;}
.y3d{bottom:303.624000px;}
.y19{bottom:304.228800px;}
.y10a{bottom:306.180150px;}
.ybf{bottom:306.900000px;}
.y1cd{bottom:307.586250px;}
.y133{bottom:314.826150px;}
.y154{bottom:318.338250px;}
.y19d{bottom:318.552000px;}
.ye3{bottom:319.500000px;}
.y9a{bottom:321.594000px;}
.y18{bottom:324.328800px;}
.y72{bottom:325.842000px;}
.y60{bottom:325.956000px;}
.y1cc{bottom:326.486250px;}
.y3c{bottom:326.718000px;}
.y179{bottom:328.586250px;}
.ybe{bottom:329.850000px;}
.y19c{bottom:333.696000px;}
.y109{bottom:336.444150px;}
.y132{bottom:336.732150px;}
.y153{bottom:340.244250px;}
.ye2{bottom:342.000000px;}
.y99{bottom:344.094000px;}
.y1cb{bottom:345.386250px;}
.y19b{bottom:348.840000px;}
.y71{bottom:348.936000px;}
.y5f{bottom:349.050000px;}
.y3b{bottom:349.812000px;}
.y178{bottom:350.636250px;}
.ybd{bottom:352.800000px;}
.y17{bottom:352.933800px;}
.y108{bottom:358.194150px;}
.y131{bottom:358.632150px;}
.y152{bottom:362.150250px;}
.y19a{bottom:363.984000px;}
.y1ca{bottom:364.286250px;}
.ye1{bottom:364.500000px;}
.y98{bottom:366.594000px;}
.y70{bottom:372.030000px;}
.y5e{bottom:372.144000px;}
.y177{bottom:372.686250px;}
.y3a{bottom:372.906000px;}
.ybc{bottom:375.750000px;}
.y199{bottom:379.128000px;}
.y107{bottom:379.944150px;}
.y130{bottom:380.526150px;}
.y1c9{bottom:383.186250px;}
.y151{bottom:384.056250px;}
.ye0{bottom:387.000000px;}
.y97{bottom:389.094000px;}
.y198{bottom:394.272000px;}
.y176{bottom:394.736250px;}
.y6f{bottom:395.124000px;}
.y5d{bottom:395.238000px;}
.y39{bottom:396.000000px;}
.ybb{bottom:398.700000px;}
.y16{bottom:400.633800px;}
.y106{bottom:401.694150px;}
.y1c8{bottom:402.086250px;}
.y12f{bottom:402.432150px;}
.y150{bottom:405.962250px;}
.ydf{bottom:409.500000px;}
.y96{bottom:411.594000px;}
.y197{bottom:415.800000px;}
.y175{bottom:416.786250px;}
.y6e{bottom:418.218000px;}
.y5c{bottom:418.332000px;}
.y38{bottom:419.100000px;}
.y15{bottom:420.733800px;}
.y1c7{bottom:420.986250px;}
.yba{bottom:421.650000px;}
.y105{bottom:423.456150px;}
.y12e{bottom:424.338150px;}
.y14f{bottom:427.868250px;}
.yde{bottom:432.000000px;}
.y95{bottom:434.094000px;}
.y174{bottom:438.836250px;}
.y1c6{bottom:439.886250px;}
.y6d{bottom:441.312000px;}
.y5b{bottom:441.426000px;}
.y37{bottom:442.200000px;}
.yb9{bottom:444.600000px;}
.y104{bottom:445.200150px;}
.y14{bottom:449.336700px;}
.y14e{bottom:449.774250px;}
.ydd{bottom:454.500000px;}
.y94{bottom:456.594000px;}
.y12d{bottom:457.170150px;}
.y1c5{bottom:458.786250px;}
.y173{bottom:460.886250px;}
.y196{bottom:461.184000px;}
.y6c{bottom:464.406000px;}
.y5a{bottom:464.520000px;}
.y103{bottom:466.944150px;}
.yb8{bottom:467.550000px;}
.y13{bottom:469.436700px;}
.y14d{bottom:471.680250px;}
.ydc{bottom:477.000000px;}
.y1c4{bottom:477.686250px;}
.y12c{bottom:479.076150px;}
.y93{bottom:479.094000px;}
.y172{bottom:482.936250px;}
.y195{bottom:483.378000px;}
.y6b{bottom:487.500000px;}
.y59{bottom:487.614000px;}
.y36{bottom:488.508000px;}
.y102{bottom:488.694150px;}
.y12{bottom:489.536700px;}
.yb7{bottom:490.500000px;}
.y14c{bottom:493.586250px;}
.y1c3{bottom:496.586250px;}
.ydb{bottom:499.500000px;}
.y12b{bottom:500.982150px;}
.y92{bottom:501.594000px;}
.y171{bottom:504.986250px;}
.y194{bottom:505.572000px;}
.y11{bottom:509.636700px;}
.y101{bottom:510.444150px;}
.y6a{bottom:510.600000px;}
.y58{bottom:510.708000px;}
.y35{bottom:511.602000px;}
.yb6{bottom:513.450000px;}
.y1c2{bottom:515.486250px;}
.yda{bottom:522.000000px;}
.y12a{bottom:522.888150px;}
.y91{bottom:524.094000px;}
.y170{bottom:527.036250px;}
.y193{bottom:527.766000px;}
.y14b{bottom:528.241050px;}
.y10{bottom:529.736700px;}
.y100{bottom:532.188150px;}
.y57{bottom:533.802000px;}
.y1c1{bottom:534.386250px;}
.y34{bottom:534.696000px;}
.yb5{bottom:536.400000px;}
.yd9{bottom:544.500000px;}
.y129{bottom:544.758150px;}
.y14a{bottom:546.391050px;}
.y90{bottom:546.594000px;}
.y16f{bottom:549.086250px;}
.yf{bottom:549.836700px;}
.y192{bottom:549.960000px;}
.y56{bottom:556.896000px;}
.y33{bottom:557.790000px;}
.yb4{bottom:559.350000px;}
.yff{bottom:562.441050px;}
.y149{bottom:564.541050px;}
.y1c0{bottom:566.042100px;}
.y128{bottom:566.664150px;}
.yd8{bottom:567.000000px;}
.y8f{bottom:569.094000px;}
.ye{bottom:569.936700px;}
.y191{bottom:572.154000px;}
.y55{bottom:579.990000px;}
.yfe{bottom:580.591050px;}
.y32{bottom:580.884000px;}
.yb3{bottom:582.300000px;}
.y16e{bottom:583.891050px;}
.y127{bottom:588.570150px;}
.yd7{bottom:589.500000px;}
.yd{bottom:590.036700px;}
.y148{bottom:591.196050px;}
.y8e{bottom:591.594000px;}
.y190{bottom:594.348000px;}
.y1bf{bottom:596.964000px;}
.yfd{bottom:598.741050px;}
.y16d{bottom:602.191050px;}
.y54{bottom:603.084000px;}
.y31{bottom:603.978000px;}
.yb2{bottom:605.250000px;}
.y147{bottom:609.346050px;}
.yc{bottom:610.136700px;}
.y126{bottom:610.476150px;}
.yd6{bottom:612.000000px;}
.y8d{bottom:614.094000px;}
.y18f{bottom:616.542000px;}
.yfc{bottom:616.891050px;}
.y16c{bottom:620.491050px;}
.y53{bottom:626.178000px;}
.y30{bottom:627.072000px;}
.y146{bottom:627.496050px;}
.yb1{bottom:628.200000px;}
.yb{bottom:630.236700px;}
.y125{bottom:632.382150px;}
.yd5{bottom:634.500000px;}
.yfb{bottom:635.041050px;}
.y8c{bottom:636.594000px;}
.y18e{bottom:638.736000px;}
.y1be{bottom:646.512000px;}
.y16b{bottom:647.296050px;}
.y52{bottom:649.272000px;}
.y2f{bottom:650.166000px;}
.yb0{bottom:651.150000px;}
.y145{bottom:654.150000px;}
.y124{bottom:654.288150px;}
.yd4{bottom:657.000000px;}
.ya{bottom:658.841700px;}
.y8b{bottom:659.094000px;}
.y18d{bottom:660.930000px;}
.y1bd{bottom:661.656000px;}
.yfa{bottom:661.720050px;}
.y16a{bottom:665.596050px;}
.y51{bottom:672.366000px;}
.y2e{bottom:673.260000px;}
.yaf{bottom:674.100000px;}
.y144{bottom:676.044000px;}
.y123{bottom:676.182150px;}
.y1bc{bottom:676.878000px;}
.yd3{bottom:679.500000px;}
.yf9{bottom:679.864050px;}
.y8a{bottom:681.594000px;}
.y18c{bottom:683.124000px;}
.y169{bottom:683.896050px;}
.y1bb{bottom:692.022000px;}
.y50{bottom:695.460000px;}
.y2d{bottom:696.354000px;}
.yae{bottom:697.050000px;}
.y143{bottom:697.944000px;}
.yf8{bottom:698.008050px;}
.y122{bottom:698.088150px;}
.yd2{bottom:702.000000px;}
.y168{bottom:702.196050px;}
.y89{bottom:704.094000px;}
.y18b{bottom:705.318000px;}
.y9{bottom:706.077450px;}
.y1ba{bottom:707.166000px;}
.yf7{bottom:716.152050px;}
.y4f{bottom:718.554000px;}
.y2c{bottom:719.448000px;}
.y142{bottom:719.832000px;}
.y121{bottom:719.976150px;}
.yad{bottom:720.000000px;}
.y1b9{bottom:722.310000px;}
.yd1{bottom:724.500000px;}
.y88{bottom:726.594000px;}
.y18a{bottom:727.512000px;}
.y167{bottom:729.000000px;}
.y8{bottom:729.927450px;}
.yf6{bottom:734.308050px;}
.y1b8{bottom:737.454000px;}
.y4e{bottom:741.648000px;}
.y141{bottom:741.738000px;}
.y120{bottom:741.882150px;}
.y2b{bottom:742.542000px;}
.yac{bottom:742.950000px;}
.yd0{bottom:747.000000px;}
.y87{bottom:749.094000px;}
.y189{bottom:749.706000px;}
.y166{bottom:751.050000px;}
.yf5{bottom:752.452050px;}
.y1b7{bottom:752.598000px;}
.y7{bottom:753.777600px;}
.y140{bottom:763.644000px;}
.y11f{bottom:763.788150px;}
.y4d{bottom:764.742000px;}
.y2a{bottom:765.636000px;}
.yab{bottom:765.900000px;}
.y1b6{bottom:767.742000px;}
.ycf{bottom:769.500000px;}
.yf4{bottom:770.596050px;}
.y86{bottom:771.594000px;}
.y188{bottom:771.900000px;}
.y165{bottom:773.100000px;}
.y1b5{bottom:782.886000px;}
.y13f{bottom:785.532000px;}
.y4c{bottom:787.836000px;}
.y29{bottom:788.730000px;}
.yaa{bottom:788.850000px;}
.yce{bottom:792.000000px;}
.y85{bottom:794.094000px;}
.y187{bottom:794.100000px;}
.y11e{bottom:794.191050px;}
.y164{bottom:795.150000px;}
.yf3{bottom:797.286000px;}
.y1b4{bottom:798.030000px;}
.y13e{bottom:807.438000px;}
.y4b{bottom:810.930000px;}
.ya9{bottom:811.800000px;}
.y28{bottom:811.824000px;}
.y11d{bottom:812.341050px;}
.y1b3{bottom:813.174000px;}
.ycd{bottom:814.500000px;}
.y84{bottom:816.594000px;}
.y163{bottom:817.200000px;}
.yf2{bottom:819.030000px;}
.y6{bottom:822.123150px;}
.y1b2{bottom:828.330000px;}
.y13d{bottom:829.344000px;}
.y4a{bottom:834.024000px;}
.ya8{bottom:834.750000px;}
.y27{bottom:834.918000px;}
.ycc{bottom:837.000000px;}
.y186{bottom:838.524000px;}
.y11c{bottom:838.996050px;}
.y83{bottom:839.094000px;}
.y162{bottom:839.250000px;}
.yf1{bottom:840.774000px;}
.y1b1{bottom:843.474000px;}
.y13c{bottom:851.244000px;}
.y5{bottom:853.323150px;}
.y49{bottom:857.118000px;}
.y11b{bottom:857.146050px;}
.ya7{bottom:857.700000px;}
.y26{bottom:858.012000px;}
.y1b0{bottom:858.618000px;}
.ycb{bottom:859.500000px;}
.y185{bottom:860.718000px;}
.y161{bottom:861.300000px;}
.y82{bottom:861.594000px;}
.yf0{bottom:862.518000px;}
.y1af{bottom:873.762000px;}
.y48{bottom:880.212000px;}
.ya6{bottom:880.650000px;}
.y25{bottom:881.106000px;}
.yca{bottom:882.000000px;}
.y184{bottom:882.912000px;}
.y160{bottom:883.350000px;}
.y11a{bottom:883.788000px;}
.y81{bottom:884.094000px;}
.yef{bottom:884.262000px;}
.y4{bottom:884.523150px;}
.y1ae{bottom:888.906000px;}
.y47{bottom:903.306000px;}
.ya5{bottom:903.600000px;}
.y1ad{bottom:904.062000px;}
.y24{bottom:904.200000px;}
.yc9{bottom:904.500000px;}
.y183{bottom:905.106000px;}
.y15f{bottom:905.400000px;}
.y119{bottom:905.694000px;}
.yee{bottom:906.006000px;}
.y80{bottom:906.594000px;}
.y1ac{bottom:919.206000px;}
.y46{bottom:926.400000px;}
.ya4{bottom:926.550000px;}
.yc8{bottom:927.000000px;}
.y23{bottom:927.300000px;}
.y15e{bottom:927.450000px;}
.y118{bottom:927.600000px;}
.yed{bottom:927.750000px;}
.y7f{bottom:928.050000px;}
.y1ab{bottom:934.350000px;}
.y3{bottom:940.023150px;}
.h14{height:24.630908px;}
.h15{height:33.117188px;}
.h1c{height:37.256836px;}
.h6{height:38.448000px;}
.h1b{height:38.710031px;}
.h2{height:39.326660px;}
.h1a{height:39.888000px;}
.h8{height:41.300484px;}
.h1{height:41.396484px;}
.h4{height:42.000000px;}
.hf{height:42.720000px;}
.ha{height:49.603781px;}
.hb{height:49.651781px;}
.h5{height:49.675781px;}
.hc{height:49.691981px;}
.he{height:49.699181px;}
.h13{height:49.699781px;}
.h12{height:49.723781px;}
.h16{height:49.747781px;}
.h19{height:50.035781px;}
.h7{height:51.492000px;}
.h9{height:51.540000px;}
.h10{height:58.581047px;}
.h11{height:58.605047px;}
.hd{height:61.848000px;}
.h18{height:61.872000px;}
.h17{height:61.920000px;}
.h3{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x7{left:82.386000px;}
.x3{left:97.263750px;}
.x5{left:112.500000px;}
.x6{left:127.381950px;}
.x9{left:133.762350px;}
.x2{left:135.000000px;}
.x8{left:142.263750px;}
.xa{left:155.020350px;}
.xb{left:180.526950px;}
.x4{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.802667pt;}
.v1{vertical-align:21.162667pt;}
.ls4b{letter-spacing:-10.933333pt;}
.ls43{letter-spacing:-9.840000pt;}
.ls44{letter-spacing:-5.333333pt;}
.ls42{letter-spacing:-4.800000pt;}
.ls55{letter-spacing:-2.496000pt;}
.ls22{letter-spacing:-1.600000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls68{letter-spacing:-0.853333pt;}
.ls5d{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.576000pt;}
.ls4c{letter-spacing:-0.533333pt;}
.ls4a{letter-spacing:-0.512000pt;}
.ls56{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.448000pt;}
.ls5f{letter-spacing:-0.384000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls45{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls69{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.000533pt;}
.ls3e{letter-spacing:0.009600pt;}
.ls16{letter-spacing:0.064000pt;}
.ls3a{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.179200pt;}
.ls24{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls60{letter-spacing:0.453333pt;}
.ls47{letter-spacing:0.467200pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls59{letter-spacing:0.524267pt;}
.ls5c{letter-spacing:0.533333pt;}
.ls2c{letter-spacing:0.576000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls48{letter-spacing:0.672000pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls5e{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.832000pt;}
.ls14{letter-spacing:0.896000pt;}
.ls30{letter-spacing:0.960000pt;}
.ls40{letter-spacing:1.173333pt;}
.ls41{letter-spacing:1.408000pt;}
.ls17{letter-spacing:1.472000pt;}
.ls46{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.664000pt;}
.ls1c{letter-spacing:1.676800pt;}
.ls3f{letter-spacing:1.849600pt;}
.ls5a{letter-spacing:1.984000pt;}
.ls5b{letter-spacing:2.176000pt;}
.ls34{letter-spacing:2.393600pt;}
.ls19{letter-spacing:2.425600pt;}
.ls1a{letter-spacing:2.496000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls1e{letter-spacing:2.816000pt;}
.ls53{letter-spacing:2.986667pt;}
.ls66{letter-spacing:3.003733pt;}
.ls54{letter-spacing:3.029333pt;}
.ls61{letter-spacing:3.046400pt;}
.ls62{letter-spacing:3.072000pt;}
.ls63{letter-spacing:3.080533pt;}
.ls65{letter-spacing:3.084800pt;}
.ls6{letter-spacing:3.112533pt;}
.ls36{letter-spacing:3.360000pt;}
.ls35{letter-spacing:3.408000pt;}
.ls4f{letter-spacing:3.456000pt;}
.ls50{letter-spacing:3.520000pt;}
.ls51{letter-spacing:3.539200pt;}
.ls37{letter-spacing:3.733333pt;}
.ls49{letter-spacing:3.786667pt;}
.ls6a{letter-spacing:3.797333pt;}
.ls39{letter-spacing:3.829333pt;}
.lsd{letter-spacing:4.010667pt;}
.ls8{letter-spacing:4.053333pt;}
.ls64{letter-spacing:4.224000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls5{letter-spacing:4.544000pt;}
.ls57{letter-spacing:4.614400pt;}
.lsa{letter-spacing:4.749867pt;}
.ls58{letter-spacing:4.869333pt;}
.ls4d{letter-spacing:4.928000pt;}
.ls4e{letter-spacing:4.992000pt;}
.ls9{letter-spacing:5.162667pt;}
.ls6b{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.lsc{letter-spacing:7.520000pt;}
.ls52{letter-spacing:7.872000pt;}
.ls33{letter-spacing:9.152000pt;}
.ls3c{letter-spacing:9.280000pt;}
.ls23{letter-spacing:9.299200pt;}
.ls3d{letter-spacing:9.369600pt;}
.ls67{letter-spacing:9.429333pt;}
.ls2{letter-spacing:9.546667pt;}
.ls2d{letter-spacing:9.888000pt;}
.ls3{letter-spacing:19.306667pt;}
.ws9c{word-spacing:-64.672000pt;}
.ws8c{word-spacing:-64.640000pt;}
.ws8d{word-spacing:-64.000000pt;}
.wsa5{word-spacing:-63.936000pt;}
.ws9a{word-spacing:-63.744000pt;}
.ws8e{word-spacing:-54.506667pt;}
.wsb3{word-spacing:-53.866667pt;}
.ws9b{word-spacing:-53.653333pt;}
.ws83{word-spacing:-53.440000pt;}
.ws85{word-spacing:-53.333333pt;}
.ws99{word-spacing:-53.226667pt;}
.ws82{word-spacing:-53.066667pt;}
.wsa1{word-spacing:-52.864000pt;}
.wsa4{word-spacing:-52.853333pt;}
.ws84{word-spacing:-48.378667pt;}
.ws89{word-spacing:-48.357867pt;}
.ws86{word-spacing:-48.315200pt;}
.ws88{word-spacing:-48.305600pt;}
.ws87{word-spacing:-48.305067pt;}
.ws4{word-spacing:-22.506667pt;}
.wsae{word-spacing:-20.981333pt;}
.ws8a{word-spacing:-18.240000pt;}
.wsa3{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws69{word-spacing:-16.384000pt;}
.ws3d{word-spacing:-16.192000pt;}
.ws8b{word-spacing:-16.064000pt;}
.ws7b{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws7a{word-spacing:-15.680000pt;}
.wsb1{word-spacing:-15.488000pt;}
.wsaf{word-spacing:-15.424000pt;}
.wsb0{word-spacing:-15.360000pt;}
.wsb2{word-spacing:-15.296000pt;}
.wsb9{word-spacing:-15.280000pt;}
.ws80{word-spacing:-14.986667pt;}
.wsad{word-spacing:-14.826667pt;}
.ws81{word-spacing:-13.488000pt;}
.wsa2{word-spacing:-12.588800pt;}
.wsa6{word-spacing:-10.538667pt;}
.wsc0{word-spacing:-9.685333pt;}
.ws2{word-spacing:-9.600000pt;}
.wsd{word-spacing:-7.552000pt;}
.wsc1{word-spacing:-7.377067pt;}
.wsc6{word-spacing:-7.200000pt;}
.wsc2{word-spacing:-4.266667pt;}
.wsbf{word-spacing:-4.224000pt;}
.ws6{word-spacing:-4.096000pt;}
.ws5{word-spacing:-4.053333pt;}
.wsc3{word-spacing:-3.840000pt;}
.ws6c{word-spacing:-1.856000pt;}
.ws37{word-spacing:-1.792000pt;}
.ws97{word-spacing:-1.408000pt;}
.ws6b{word-spacing:-0.896000pt;}
.ws27{word-spacing:-0.832000pt;}
.wsb5{word-spacing:-0.768000pt;}
.wsb8{word-spacing:-0.704000pt;}
.ws96{word-spacing:-0.640000pt;}
.ws9e{word-spacing:-0.512000pt;}
.ws92{word-spacing:-0.384000pt;}
.wsb7{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.ws94{word-spacing:-0.256000pt;}
.ws93{word-spacing:-0.213333pt;}
.wsa8{word-spacing:-0.192000pt;}
.ws6e{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
.ws65{word-spacing:0.064000pt;}
.ws8{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.128000pt;}
.wsc4{word-spacing:0.213333pt;}
.ws4c{word-spacing:0.256000pt;}
.ws67{word-spacing:0.320000pt;}
.ws6d{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.512000pt;}
.ws14{word-spacing:0.576000pt;}
.ws76{word-spacing:0.704000pt;}
.ws39{word-spacing:0.768000pt;}
.ws25{word-spacing:0.832000pt;}
.ws75{word-spacing:0.896000pt;}
.ws22{word-spacing:0.960000pt;}
.ws43{word-spacing:1.024000pt;}
.ws52{word-spacing:1.088000pt;}
.wsf{word-spacing:1.152000pt;}
.wsab{word-spacing:1.280000pt;}
.ws44{word-spacing:1.344000pt;}
.ws66{word-spacing:1.408000pt;}
.ws6a{word-spacing:1.472000pt;}
.ws12{word-spacing:1.600000pt;}
.ws3a{word-spacing:1.664000pt;}
.ws18{word-spacing:1.728000pt;}
.ws58{word-spacing:1.856000pt;}
.ws5a{word-spacing:1.920000pt;}
.ws1f{word-spacing:1.984000pt;}
.ws1d{word-spacing:2.048000pt;}
.ws17{word-spacing:2.112000pt;}
.ws3f{word-spacing:2.176000pt;}
.ws50{word-spacing:2.240000pt;}
.ws4f{word-spacing:2.304000pt;}
.ws7f{word-spacing:2.368000pt;}
.ws2d{word-spacing:2.432000pt;}
.ws38{word-spacing:2.496000pt;}
.ws53{word-spacing:2.560000pt;}
.ws72{word-spacing:2.624000pt;}
.wsc5{word-spacing:2.645333pt;}
.ws5b{word-spacing:2.688000pt;}
.ws61{word-spacing:2.752000pt;}
.ws21{word-spacing:2.816000pt;}
.ws56{word-spacing:2.880000pt;}
.ws3c{word-spacing:2.944000pt;}
.wsac{word-spacing:2.986667pt;}
.ws55{word-spacing:3.008000pt;}
.wsb4{word-spacing:3.072000pt;}
.ws3b{word-spacing:3.264000pt;}
.ws9{word-spacing:3.306667pt;}
.ws4a{word-spacing:3.328000pt;}
.ws8f{word-spacing:3.360000pt;}
.ws78{word-spacing:3.392000pt;}
.wsa9{word-spacing:3.456000pt;}
.ws45{word-spacing:3.584000pt;}
.ws59{word-spacing:3.648000pt;}
.ws35{word-spacing:3.712000pt;}
.ws7{word-spacing:3.733333pt;}
.ws11{word-spacing:3.776000pt;}
.ws40{word-spacing:3.840000pt;}
.wsaa{word-spacing:3.904000pt;}
.ws2a{word-spacing:3.968000pt;}
.ws51{word-spacing:4.096000pt;}
.ws34{word-spacing:4.160000pt;}
.ws48{word-spacing:4.224000pt;}
.ws4d{word-spacing:4.288000pt;}
.ws6f{word-spacing:4.352000pt;}
.ws60{word-spacing:4.416000pt;}
.ws1a{word-spacing:4.480000pt;}
.ws23{word-spacing:4.544000pt;}
.ws49{word-spacing:4.608000pt;}
.ws74{word-spacing:4.672000pt;}
.ws31{word-spacing:4.736000pt;}
.ws19{word-spacing:4.800000pt;}
.ws42{word-spacing:4.864000pt;}
.wsa7{word-spacing:4.928000pt;}
.ws54{word-spacing:4.992000pt;}
.ws5c{word-spacing:5.120000pt;}
.ws62{word-spacing:5.248000pt;}
.ws7e{word-spacing:5.312000pt;}
.ws91{word-spacing:5.333333pt;}
.ws26{word-spacing:5.376000pt;}
.ws29{word-spacing:5.440000pt;}
.ws20{word-spacing:5.504000pt;}
.wsbe{word-spacing:5.632000pt;}
.ws3e{word-spacing:5.696000pt;}
.ws64{word-spacing:5.760000pt;}
.ws1b{word-spacing:5.824000pt;}
.ws57{word-spacing:5.888000pt;}
.ws10{word-spacing:5.952000pt;}
.ws32{word-spacing:6.016000pt;}
.ws77{word-spacing:6.080000pt;}
.wsbc{word-spacing:6.144000pt;}
.ws4b{word-spacing:6.336000pt;}
.ws41{word-spacing:6.400000pt;}
.ws33{word-spacing:6.464000pt;}
.ws46{word-spacing:6.528000pt;}
.ws5e{word-spacing:6.592000pt;}
.ws13{word-spacing:6.720000pt;}
.ws70{word-spacing:6.784000pt;}
.ws47{word-spacing:6.848000pt;}
.ws2c{word-spacing:6.976000pt;}
.ws5f{word-spacing:7.040000pt;}
.ws2e{word-spacing:7.104000pt;}
.ws36{word-spacing:7.168000pt;}
.ws24{word-spacing:7.424000pt;}
.wsa{word-spacing:7.466667pt;}
.wsbb{word-spacing:7.488000pt;}
.ws9f{word-spacing:7.680000pt;}
.ws63{word-spacing:7.744000pt;}
.ws30{word-spacing:7.808000pt;}
.ws16{word-spacing:7.872000pt;}
.ws2b{word-spacing:7.936000pt;}
.wsba{word-spacing:8.128000pt;}
.ws7d{word-spacing:8.192000pt;}
.ws4e{word-spacing:8.256000pt;}
.wsbd{word-spacing:8.320000pt;}
.ws5d{word-spacing:8.384000pt;}
.ws28{word-spacing:8.512000pt;}
.ws71{word-spacing:8.576000pt;}
.ws1e{word-spacing:8.704000pt;}
.ws73{word-spacing:8.768000pt;}
.ws68{word-spacing:8.832000pt;}
.wse{word-spacing:8.960000pt;}
.ws1c{word-spacing:9.024000pt;}
.wsb6{word-spacing:9.066667pt;}
.ws15{word-spacing:9.088000pt;}
.ws79{word-spacing:9.152000pt;}
.ws95{word-spacing:9.280000pt;}
.ws9d{word-spacing:9.344000pt;}
.ws90{word-spacing:9.840000pt;}
.wsa0{word-spacing:10.933333pt;}
.ws98{word-spacing:11.712000pt;}
.ws0{word-spacing:129.952000pt;}
._f{margin-left:-843.396267pt;}
._17{margin-left:-25.600000pt;}
._1a{margin-left:-17.985067pt;}
._16{margin-left:-13.242667pt;}
._19{margin-left:-10.944000pt;}
._7{margin-left:-9.907200pt;}
._10{margin-left:-8.133333pt;}
._c{margin-left:-7.152000pt;}
._1{margin-left:-5.418667pt;}
._13{margin-left:-4.389333pt;}
._d{margin-left:-3.408000pt;}
._9{margin-left:-2.218667pt;}
._b{margin-left:-1.114667pt;}
._a{width:1.084800pt;}
._6{width:2.323200pt;}
._8{width:3.328000pt;}
._e{width:4.312533pt;}
._14{width:5.621333pt;}
._18{width:6.796800pt;}
._12{width:8.307200pt;}
._11{width:9.792000pt;}
._1c{width:10.917333pt;}
._15{width:13.265067pt;}
._5{width:21.925333pt;}
._2{width:23.834667pt;}
._1b{width:28.129867pt;}
._0{width:37.546667pt;}
._3{width:61.280000pt;}
._4{width:63.152000pt;}
.fs9{font-size:29.866667pt;}
.fs8{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.yec{bottom:104.000000pt;}
.y7b{bottom:104.885333pt;}
.y69{bottom:104.986667pt;}
.y117{bottom:105.547600pt;}
.y45{bottom:105.664000pt;}
.ya3{bottom:105.861333pt;}
.y22{bottom:106.067467pt;}
.y7e{bottom:106.570667pt;}
.y15d{bottom:106.663333pt;}
.y112{bottom:108.025200pt;}
.y182{bottom:108.124667pt;}
.y1aa{bottom:108.160000pt;}
.y1d5{bottom:108.743333pt;}
.yc7{bottom:109.600000pt;}
.y13b{bottom:117.333333pt;}
.y1a9{bottom:121.621333pt;}
.y116{bottom:122.214267pt;}
.y21{bottom:122.600800pt;}
.yeb{bottom:124.000000pt;}
.y7a{bottom:125.413333pt;}
.y68{bottom:125.514667pt;}
.y1d4{bottom:125.543333pt;}
.ya2{bottom:125.861333pt;}
.y44{bottom:126.192000pt;}
.y7d{bottom:126.570667pt;}
.y15c{bottom:126.663333pt;}
.y111{bottom:127.502533pt;}
.y181{bottom:127.724667pt;}
.yc6{bottom:130.000000pt;}
.y13a{bottom:130.666667pt;}
.y1a8{bottom:135.082667pt;}
.y1d3{bottom:142.343333pt;}
.yea{bottom:144.000000pt;}
.ya1{bottom:145.861333pt;}
.y79{bottom:145.941333pt;}
.y67{bottom:146.042667pt;}
.y115{bottom:146.440933pt;}
.y7c{bottom:146.570667pt;}
.y15b{bottom:146.663333pt;}
.y20{bottom:146.692267pt;}
.y43{bottom:146.720000pt;}
.y110{bottom:146.841067pt;}
.y180{bottom:147.324667pt;}
.y139{bottom:147.740000pt;}
.y1a7{bottom:148.544000pt;}
.yc5{bottom:150.400000pt;}
.y1a6{bottom:162.005333pt;}
.y114{bottom:163.107600pt;}
.y1f{bottom:163.225600pt;}
.ye9{bottom:164.000000pt;}
.ya0{bottom:165.861333pt;}
.y15a{bottom:166.135333pt;}
.y10f{bottom:166.169067pt;}
.y78{bottom:166.469333pt;}
.y66{bottom:166.570667pt;}
.y17f{bottom:166.924667pt;}
.y42{bottom:167.248000pt;}
.y1d2{bottom:169.276667pt;}
.yc4{bottom:170.800000pt;}
.y1a5{bottom:175.466667pt;}
.y113{bottom:179.774267pt;}
.y1e{bottom:181.092267pt;}
.y138{bottom:182.768133pt;}
.ye8{bottom:184.000000pt;}
.y10e{bottom:185.507733pt;}
.y159{bottom:185.607333pt;}
.y9f{bottom:185.861333pt;}
.y17e{bottom:186.524667pt;}
.y77{bottom:186.997333pt;}
.y65{bottom:187.098667pt;}
.y41{bottom:187.776000pt;}
.y1a4{bottom:188.928000pt;}
.yc3{bottom:191.200000pt;}
.y1d{bottom:198.958933pt;}
.y137{bottom:201.968133pt;}
.y1a3{bottom:202.389333pt;}
.ye7{bottom:204.000000pt;}
.y10d{bottom:204.835733pt;}
.y158{bottom:205.079333pt;}
.y9e{bottom:205.861333pt;}
.y17d{bottom:206.124667pt;}
.y1d1{bottom:206.210000pt;}
.y76{bottom:207.525333pt;}
.y64{bottom:207.626667pt;}
.y40{bottom:208.304000pt;}
.yc2{bottom:211.600000pt;}
.y1a2{bottom:215.850667pt;}
.y1c{bottom:216.825600pt;}
.y136{bottom:221.440133pt;}
.y1d0{bottom:223.010000pt;}
.ye6{bottom:224.000000pt;}
.y10c{bottom:224.160133pt;}
.y157{bottom:224.551333pt;}
.y17c{bottom:225.724667pt;}
.y9d{bottom:225.861333pt;}
.y75{bottom:228.053333pt;}
.y63{bottom:228.154667pt;}
.y3f{bottom:228.832000pt;}
.y1a1{bottom:229.312000pt;}
.yc1{bottom:232.000000pt;}
.y1b{bottom:234.692267pt;}
.y1cf{bottom:239.810000pt;}
.y135{bottom:240.912133pt;}
.y1a0{bottom:242.773333pt;}
.ye5{bottom:244.000000pt;}
.y156{bottom:244.023333pt;}
.y17b{bottom:245.324667pt;}
.y9c{bottom:245.861333pt;}
.y74{bottom:248.581333pt;}
.y62{bottom:248.682667pt;}
.y3e{bottom:249.360000pt;}
.yc0{bottom:252.400000pt;}
.y1a{bottom:252.558933pt;}
.y10b{bottom:252.832133pt;}
.y19f{bottom:256.234667pt;}
.y1ce{bottom:256.610000pt;}
.y134{bottom:260.384133pt;}
.y155{bottom:263.495333pt;}
.ye4{bottom:264.000000pt;}
.y17a{bottom:264.924667pt;}
.y9b{bottom:265.861333pt;}
.y73{bottom:269.109333pt;}
.y61{bottom:269.210667pt;}
.y19e{bottom:269.696000pt;}
.y3d{bottom:269.888000pt;}
.y19{bottom:270.425600pt;}
.y10a{bottom:272.160133pt;}
.ybf{bottom:272.800000pt;}
.y1cd{bottom:273.410000pt;}
.y133{bottom:279.845467pt;}
.y154{bottom:282.967333pt;}
.y19d{bottom:283.157333pt;}
.ye3{bottom:284.000000pt;}
.y9a{bottom:285.861333pt;}
.y18{bottom:288.292267pt;}
.y72{bottom:289.637333pt;}
.y60{bottom:289.738667pt;}
.y1cc{bottom:290.210000pt;}
.y3c{bottom:290.416000pt;}
.y179{bottom:292.076667pt;}
.ybe{bottom:293.200000pt;}
.y19c{bottom:296.618667pt;}
.y109{bottom:299.061467pt;}
.y132{bottom:299.317467pt;}
.y153{bottom:302.439333pt;}
.ye2{bottom:304.000000pt;}
.y99{bottom:305.861333pt;}
.y1cb{bottom:307.010000pt;}
.y19b{bottom:310.080000pt;}
.y71{bottom:310.165333pt;}
.y5f{bottom:310.266667pt;}
.y3b{bottom:310.944000pt;}
.y178{bottom:311.676667pt;}
.ybd{bottom:313.600000pt;}
.y17{bottom:313.718933pt;}
.y108{bottom:318.394800pt;}
.y131{bottom:318.784133pt;}
.y152{bottom:321.911333pt;}
.y19a{bottom:323.541333pt;}
.y1ca{bottom:323.810000pt;}
.ye1{bottom:324.000000pt;}
.y98{bottom:325.861333pt;}
.y70{bottom:330.693333pt;}
.y5e{bottom:330.794667pt;}
.y177{bottom:331.276667pt;}
.y3a{bottom:331.472000pt;}
.ybc{bottom:334.000000pt;}
.y199{bottom:337.002667pt;}
.y107{bottom:337.728133pt;}
.y130{bottom:338.245467pt;}
.y1c9{bottom:340.610000pt;}
.y151{bottom:341.383333pt;}
.ye0{bottom:344.000000pt;}
.y97{bottom:345.861333pt;}
.y198{bottom:350.464000pt;}
.y176{bottom:350.876667pt;}
.y6f{bottom:351.221333pt;}
.y5d{bottom:351.322667pt;}
.y39{bottom:352.000000pt;}
.ybb{bottom:354.400000pt;}
.y16{bottom:356.118933pt;}
.y106{bottom:357.061467pt;}
.y1c8{bottom:357.410000pt;}
.y12f{bottom:357.717467pt;}
.y150{bottom:360.855333pt;}
.ydf{bottom:364.000000pt;}
.y96{bottom:365.861333pt;}
.y197{bottom:369.600000pt;}
.y175{bottom:370.476667pt;}
.y6e{bottom:371.749333pt;}
.y5c{bottom:371.850667pt;}
.y38{bottom:372.533333pt;}
.y15{bottom:373.985600pt;}
.y1c7{bottom:374.210000pt;}
.yba{bottom:374.800000pt;}
.y105{bottom:376.405467pt;}
.y12e{bottom:377.189467pt;}
.y14f{bottom:380.327333pt;}
.yde{bottom:384.000000pt;}
.y95{bottom:385.861333pt;}
.y174{bottom:390.076667pt;}
.y1c6{bottom:391.010000pt;}
.y6d{bottom:392.277333pt;}
.y5b{bottom:392.378667pt;}
.y37{bottom:393.066667pt;}
.yb9{bottom:395.200000pt;}
.y104{bottom:395.733467pt;}
.y14{bottom:399.410400pt;}
.y14e{bottom:399.799333pt;}
.ydd{bottom:404.000000pt;}
.y94{bottom:405.861333pt;}
.y12d{bottom:406.373467pt;}
.y1c5{bottom:407.810000pt;}
.y173{bottom:409.676667pt;}
.y196{bottom:409.941333pt;}
.y6c{bottom:412.805333pt;}
.y5a{bottom:412.906667pt;}
.y103{bottom:415.061467pt;}
.yb8{bottom:415.600000pt;}
.y13{bottom:417.277067pt;}
.y14d{bottom:419.271333pt;}
.ydc{bottom:424.000000pt;}
.y1c4{bottom:424.610000pt;}
.y12c{bottom:425.845467pt;}
.y93{bottom:425.861333pt;}
.y172{bottom:429.276667pt;}
.y195{bottom:429.669333pt;}
.y6b{bottom:433.333333pt;}
.y59{bottom:433.434667pt;}
.y36{bottom:434.229333pt;}
.y102{bottom:434.394800pt;}
.y12{bottom:435.143733pt;}
.yb7{bottom:436.000000pt;}
.y14c{bottom:438.743333pt;}
.y1c3{bottom:441.410000pt;}
.ydb{bottom:444.000000pt;}
.y12b{bottom:445.317467pt;}
.y92{bottom:445.861333pt;}
.y171{bottom:448.876667pt;}
.y194{bottom:449.397333pt;}
.y11{bottom:453.010400pt;}
.y101{bottom:453.728133pt;}
.y6a{bottom:453.866667pt;}
.y58{bottom:453.962667pt;}
.y35{bottom:454.757333pt;}
.yb6{bottom:456.400000pt;}
.y1c2{bottom:458.210000pt;}
.yda{bottom:464.000000pt;}
.y12a{bottom:464.789467pt;}
.y91{bottom:465.861333pt;}
.y170{bottom:468.476667pt;}
.y193{bottom:469.125333pt;}
.y14b{bottom:469.547600pt;}
.y10{bottom:470.877067pt;}
.y100{bottom:473.056133pt;}
.y57{bottom:474.490667pt;}
.y1c1{bottom:475.010000pt;}
.y34{bottom:475.285333pt;}
.yb5{bottom:476.800000pt;}
.yd9{bottom:484.000000pt;}
.y129{bottom:484.229467pt;}
.y14a{bottom:485.680933pt;}
.y90{bottom:485.861333pt;}
.y16f{bottom:488.076667pt;}
.yf{bottom:488.743733pt;}
.y192{bottom:488.853333pt;}
.y56{bottom:495.018667pt;}
.y33{bottom:495.813333pt;}
.yb4{bottom:497.200000pt;}
.yff{bottom:499.947600pt;}
.y149{bottom:501.814267pt;}
.y1c0{bottom:503.148533pt;}
.y128{bottom:503.701467pt;}
.yd8{bottom:504.000000pt;}
.y8f{bottom:505.861333pt;}
.ye{bottom:506.610400pt;}
.y191{bottom:508.581333pt;}
.y55{bottom:515.546667pt;}
.yfe{bottom:516.080933pt;}
.y32{bottom:516.341333pt;}
.yb3{bottom:517.600000pt;}
.y16e{bottom:519.014267pt;}
.y127{bottom:523.173467pt;}
.yd7{bottom:524.000000pt;}
.yd{bottom:524.477067pt;}
.y148{bottom:525.507600pt;}
.y8e{bottom:525.861333pt;}
.y190{bottom:528.309333pt;}
.y1bf{bottom:530.634667pt;}
.yfd{bottom:532.214267pt;}
.y16d{bottom:535.280933pt;}
.y54{bottom:536.074667pt;}
.y31{bottom:536.869333pt;}
.yb2{bottom:538.000000pt;}
.y147{bottom:541.640933pt;}
.yc{bottom:542.343733pt;}
.y126{bottom:542.645467pt;}
.yd6{bottom:544.000000pt;}
.y8d{bottom:545.861333pt;}
.y18f{bottom:548.037333pt;}
.yfc{bottom:548.347600pt;}
.y16c{bottom:551.547600pt;}
.y53{bottom:556.602667pt;}
.y30{bottom:557.397333pt;}
.y146{bottom:557.774267pt;}
.yb1{bottom:558.400000pt;}
.yb{bottom:560.210400pt;}
.y125{bottom:562.117467pt;}
.yd5{bottom:564.000000pt;}
.yfb{bottom:564.480933pt;}
.y8c{bottom:565.861333pt;}
.y18e{bottom:567.765333pt;}
.y1be{bottom:574.677333pt;}
.y16b{bottom:575.374267pt;}
.y52{bottom:577.130667pt;}
.y2f{bottom:577.925333pt;}
.yb0{bottom:578.800000pt;}
.y145{bottom:581.466667pt;}
.y124{bottom:581.589467pt;}
.yd4{bottom:584.000000pt;}
.ya{bottom:585.637067pt;}
.y8b{bottom:585.861333pt;}
.y18d{bottom:587.493333pt;}
.y1bd{bottom:588.138667pt;}
.yfa{bottom:588.195600pt;}
.y16a{bottom:591.640933pt;}
.y51{bottom:597.658667pt;}
.y2e{bottom:598.453333pt;}
.yaf{bottom:599.200000pt;}
.y144{bottom:600.928000pt;}
.y123{bottom:601.050800pt;}
.y1bc{bottom:601.669333pt;}
.yd3{bottom:604.000000pt;}
.yf9{bottom:604.323600pt;}
.y8a{bottom:605.861333pt;}
.y18c{bottom:607.221333pt;}
.y169{bottom:607.907600pt;}
.y1bb{bottom:615.130667pt;}
.y50{bottom:618.186667pt;}
.y2d{bottom:618.981333pt;}
.yae{bottom:619.600000pt;}
.y143{bottom:620.394667pt;}
.yf8{bottom:620.451600pt;}
.y122{bottom:620.522800pt;}
.yd2{bottom:624.000000pt;}
.y168{bottom:624.174267pt;}
.y89{bottom:625.861333pt;}
.y18b{bottom:626.949333pt;}
.y9{bottom:627.624400pt;}
.y1ba{bottom:628.592000pt;}
.yf7{bottom:636.579600pt;}
.y4f{bottom:638.714667pt;}
.y2c{bottom:639.509333pt;}
.y142{bottom:639.850667pt;}
.y121{bottom:639.978800pt;}
.yad{bottom:640.000000pt;}
.y1b9{bottom:642.053333pt;}
.yd1{bottom:644.000000pt;}
.y88{bottom:645.861333pt;}
.y18a{bottom:646.677333pt;}
.y167{bottom:648.000000pt;}
.y8{bottom:648.824400pt;}
.yf6{bottom:652.718267pt;}
.y1b8{bottom:655.514667pt;}
.y4e{bottom:659.242667pt;}
.y141{bottom:659.322667pt;}
.y120{bottom:659.450800pt;}
.y2b{bottom:660.037333pt;}
.yac{bottom:660.400000pt;}
.yd0{bottom:664.000000pt;}
.y87{bottom:665.861333pt;}
.y189{bottom:666.405333pt;}
.y166{bottom:667.600000pt;}
.yf5{bottom:668.846267pt;}
.y1b7{bottom:668.976000pt;}
.y7{bottom:670.024533pt;}
.y140{bottom:678.794667pt;}
.y11f{bottom:678.922800pt;}
.y4d{bottom:679.770667pt;}
.y2a{bottom:680.565333pt;}
.yab{bottom:680.800000pt;}
.y1b6{bottom:682.437333pt;}
.ycf{bottom:684.000000pt;}
.yf4{bottom:684.974267pt;}
.y86{bottom:685.861333pt;}
.y188{bottom:686.133333pt;}
.y165{bottom:687.200000pt;}
.y1b5{bottom:695.898667pt;}
.y13f{bottom:698.250667pt;}
.y4c{bottom:700.298667pt;}
.y29{bottom:701.093333pt;}
.yaa{bottom:701.200000pt;}
.yce{bottom:704.000000pt;}
.y85{bottom:705.861333pt;}
.y187{bottom:705.866667pt;}
.y11e{bottom:705.947600pt;}
.y164{bottom:706.800000pt;}
.yf3{bottom:708.698667pt;}
.y1b4{bottom:709.360000pt;}
.y13e{bottom:717.722667pt;}
.y4b{bottom:720.826667pt;}
.ya9{bottom:721.600000pt;}
.y28{bottom:721.621333pt;}
.y11d{bottom:722.080933pt;}
.y1b3{bottom:722.821333pt;}
.ycd{bottom:724.000000pt;}
.y84{bottom:725.861333pt;}
.y163{bottom:726.400000pt;}
.yf2{bottom:728.026667pt;}
.y6{bottom:730.776133pt;}
.y1b2{bottom:736.293333pt;}
.y13d{bottom:737.194667pt;}
.y4a{bottom:741.354667pt;}
.ya8{bottom:742.000000pt;}
.y27{bottom:742.149333pt;}
.ycc{bottom:744.000000pt;}
.y186{bottom:745.354667pt;}
.y11c{bottom:745.774267pt;}
.y83{bottom:745.861333pt;}
.y162{bottom:746.000000pt;}
.yf1{bottom:747.354667pt;}
.y1b1{bottom:749.754667pt;}
.y13c{bottom:756.661333pt;}
.y5{bottom:758.509467pt;}
.y49{bottom:761.882667pt;}
.y11b{bottom:761.907600pt;}
.ya7{bottom:762.400000pt;}
.y26{bottom:762.677333pt;}
.y1b0{bottom:763.216000pt;}
.ycb{bottom:764.000000pt;}
.y185{bottom:765.082667pt;}
.y161{bottom:765.600000pt;}
.y82{bottom:765.861333pt;}
.yf0{bottom:766.682667pt;}
.y1af{bottom:776.677333pt;}
.y48{bottom:782.410667pt;}
.ya6{bottom:782.800000pt;}
.y25{bottom:783.205333pt;}
.yca{bottom:784.000000pt;}
.y184{bottom:784.810667pt;}
.y160{bottom:785.200000pt;}
.y11a{bottom:785.589333pt;}
.y81{bottom:785.861333pt;}
.yef{bottom:786.010667pt;}
.y4{bottom:786.242800pt;}
.y1ae{bottom:790.138667pt;}
.y47{bottom:802.938667pt;}
.ya5{bottom:803.200000pt;}
.y1ad{bottom:803.610667pt;}
.y24{bottom:803.733333pt;}
.yc9{bottom:804.000000pt;}
.y183{bottom:804.538667pt;}
.y15f{bottom:804.800000pt;}
.y119{bottom:805.061333pt;}
.yee{bottom:805.338667pt;}
.y80{bottom:805.861333pt;}
.y1ac{bottom:817.072000pt;}
.y46{bottom:823.466667pt;}
.ya4{bottom:823.600000pt;}
.yc8{bottom:824.000000pt;}
.y23{bottom:824.266667pt;}
.y15e{bottom:824.400000pt;}
.y118{bottom:824.533333pt;}
.yed{bottom:824.666667pt;}
.y7f{bottom:824.933333pt;}
.y1ab{bottom:830.533333pt;}
.y3{bottom:835.576133pt;}
.h14{height:21.894141pt;}
.h15{height:29.437500pt;}
.h1c{height:33.117188pt;}
.h6{height:34.176000pt;}
.h1b{height:34.408917pt;}
.h2{height:34.957031pt;}
.h1a{height:35.456000pt;}
.h8{height:36.711542pt;}
.h1{height:36.796875pt;}
.h4{height:37.333333pt;}
.hf{height:37.973333pt;}
.ha{height:44.092250pt;}
.hb{height:44.134917pt;}
.h5{height:44.156250pt;}
.hc{height:44.170650pt;}
.he{height:44.177050pt;}
.h13{height:44.177583pt;}
.h12{height:44.198917pt;}
.h16{height:44.220250pt;}
.h19{height:44.476250pt;}
.h7{height:45.770667pt;}
.h9{height:45.813333pt;}
.h10{height:52.072042pt;}
.h11{height:52.093375pt;}
.hd{height:54.976000pt;}
.h18{height:54.997333pt;}
.h17{height:55.040000pt;}
.h3{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x7{left:73.232000pt;}
.x3{left:86.456667pt;}
.x5{left:100.000000pt;}
.x6{left:113.228400pt;}
.x9{left:118.899867pt;}
.x2{left:120.000000pt;}
.x8{left:126.456667pt;}
.xa{left:137.795867pt;}
.xb{left:160.468400pt;}
.x4{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; }
  