
    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_8ff09c287991db0c0de50051.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_25c5db91ed5c5796ea4719a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_8da50f044f7d2f3e9eccf556.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.862793;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_72589d76a185d3064a4b1f83.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_1bbc8d4ffcc1ac049f8b0e9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.019531;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_14c800ba9cff40acb94a8030.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_67cf3dc8b60c624643646feb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_3848cd5a1de55147664dea53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_438622538fa0307da2407f8c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_084d15ac90b491b08933e03d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_5642696acc9ab1b986f63cda.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_c4f8df239c0fe544b6c3b640.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.858398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls29{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.927360px;}
.ls16{letter-spacing:-0.720000px;}
.ls3f{letter-spacing:-0.576000px;}
.ls41{letter-spacing:-0.463680px;}
.ls2c{letter-spacing:-0.397440px;}
.ls18{letter-spacing:-0.336960px;}
.ls14{letter-spacing:-0.298800px;}
.ls15{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.264960px;}
.lsf{letter-spacing:-0.252720px;}
.lsc{letter-spacing:-0.216000px;}
.ls40{letter-spacing:-0.198720px;}
.ls12{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.108000px;}
.ls19{letter-spacing:-0.084240px;}
.ls11{letter-spacing:-0.077760px;}
.ls3e{letter-spacing:-0.072000px;}
.ls27{letter-spacing:-0.066240px;}
.ls35{letter-spacing:-0.059760px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls36{letter-spacing:0.052992px;}
.ls7{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.077760px;}
.ls34{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.144000px;}
.ls3d{letter-spacing:0.145728px;}
.ls1e{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.179280px;}
.ls3c{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.264960px;}
.lse{letter-spacing:0.324000px;}
.ls32{letter-spacing:0.331200px;}
.ls33{letter-spacing:0.358560px;}
.ls17{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.385920px;}
.ls3{letter-spacing:0.418320px;}
.ls20{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.720000px;}
.ls5{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.454400px;}
.ls26{letter-spacing:2.160000px;}
.ls38{letter-spacing:2.167200px;}
.ls1d{letter-spacing:2.872800px;}
.ls23{letter-spacing:3.600000px;}
.ls25{letter-spacing:3.775680px;}
.ls2a{letter-spacing:4.320000px;}
.ls1c{letter-spacing:5.760000px;}
.ls30{letter-spacing:5.767200px;}
.ls4{letter-spacing:7.200000px;}
.ls3b{letter-spacing:7.920000px;}
.ls31{letter-spacing:8.632800px;}
.ls22{letter-spacing:8.640000px;}
.ls2f{letter-spacing:9.509760px;}
.ls21{letter-spacing:10.800000px;}
.ls1f{letter-spacing:14.400000px;}
.ls6{letter-spacing:20.160000px;}
.ls24{letter-spacing:67.962240px;}
.ls2e{letter-spacing:69.419520px;}
.ls2d{letter-spacing:69.425280px;}
.ls39{letter-spacing:194.400000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws27{word-spacing:-23.334480px;}
.ws26{word-spacing:-23.081760px;}
.ws2f{word-spacing:-21.539520px;}
.ws5{word-spacing:-20.139120px;}
.ws83{word-spacing:-18.720000px;}
.ws5a{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws82{word-spacing:-17.928000px;}
.ws59{word-spacing:-17.856000px;}
.ws80{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws71{word-spacing:-15.298560px;}
.ws57{word-spacing:-15.235200px;}
.ws72{word-spacing:-15.059520px;}
.ws49{word-spacing:-14.970240px;}
.ws4b{word-spacing:-14.904000px;}
.ws70{word-spacing:-14.880240px;}
.ws84{word-spacing:-14.771520px;}
.ws5b{word-spacing:-14.705280px;}
.ws4a{word-spacing:-14.042880px;}
.ws1{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.ws3{word-spacing:-11.988000px;}
.ws2{word-spacing:-11.934000px;}
.ws6f{word-spacing:-9.720000px;}
.ws34{word-spacing:-4.320000px;}
.ws1b{word-spacing:-4.032000px;}
.ws2d{word-spacing:-3.744000px;}
.ws18{word-spacing:-3.600000px;}
.ws35{word-spacing:-3.312000px;}
.ws24{word-spacing:-2.880000px;}
.ws3a{word-spacing:-2.592000px;}
.ws62{word-spacing:-2.450880px;}
.ws1a{word-spacing:-2.160000px;}
.ws19{word-spacing:-1.872000px;}
.ws46{word-spacing:-1.684800px;}
.ws45{word-spacing:-1.584000px;}
.ws1f{word-spacing:-1.440000px;}
.ws7b{word-spacing:-1.192320px;}
.ws30{word-spacing:-1.152000px;}
.ws74{word-spacing:-0.896400px;}
.ws32{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.720000px;}
.wsc{word-spacing:-0.673920px;}
.ws10{word-spacing:-0.657360px;}
.ws86{word-spacing:-0.648000px;}
.ws54{word-spacing:-0.529920px;}
.ws2e{word-spacing:-0.432000px;}
.ws37{word-spacing:-0.385920px;}
.ws77{word-spacing:-0.331200px;}
.wsf{word-spacing:-0.288000px;}
.ws5e{word-spacing:-0.198720px;}
.ws56{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.132480px;}
.wsd{word-spacing:-0.077760px;}
.ws8{word-spacing:0.000000px;}
.ws4c{word-spacing:0.066240px;}
.ws40{word-spacing:0.077760px;}
.ws76{word-spacing:0.132480px;}
.wse{word-spacing:0.155520px;}
.wsa{word-spacing:0.162000px;}
.ws4d{word-spacing:0.198720px;}
.ws13{word-spacing:0.216000px;}
.wsb{word-spacing:0.252720px;}
.ws9{word-spacing:0.264960px;}
.ws11{word-spacing:0.288000px;}
.ws81{word-spacing:0.336960px;}
.ws53{word-spacing:0.397440px;}
.ws41{word-spacing:0.421200px;}
.ws8d{word-spacing:0.463680px;}
.ws7a{word-spacing:0.529920px;}
.ws87{word-spacing:0.576000px;}
.ws8c{word-spacing:0.596160px;}
.ws47{word-spacing:0.673920px;}
.ws14{word-spacing:0.720000px;}
.ws52{word-spacing:0.927360px;}
.ws1d{word-spacing:1.008000px;}
.ws68{word-spacing:1.059840px;}
.ws2c{word-spacing:1.296000px;}
.ws1e{word-spacing:1.440000px;}
.ws4f{word-spacing:1.656000px;}
.ws15{word-spacing:1.728000px;}
.ws6b{word-spacing:1.854720px;}
.ws58{word-spacing:2.016000px;}
.ws20{word-spacing:2.160000px;}
.ws29{word-spacing:2.448000px;}
.ws48{word-spacing:2.736000px;}
.ws1c{word-spacing:2.880000px;}
.ws5c{word-spacing:3.113280px;}
.ws3e{word-spacing:3.168000px;}
.ws73{word-spacing:3.456000px;}
.ws38{word-spacing:3.600000px;}
.ws50{word-spacing:3.841920px;}
.ws36{word-spacing:3.888000px;}
.ws51{word-spacing:4.040640px;}
.ws39{word-spacing:4.320000px;}
.ws4e{word-spacing:4.504320px;}
.ws44{word-spacing:4.608000px;}
.ws17{word-spacing:5.040000px;}
.ws5d{word-spacing:5.232960px;}
.ws16{word-spacing:5.328000px;}
.ws8b{word-spacing:5.365440px;}
.ws79{word-spacing:5.431680px;}
.ws6e{word-spacing:5.616000px;}
.ws89{word-spacing:5.630400px;}
.ws3d{word-spacing:5.760000px;}
.ws88{word-spacing:5.961600px;}
.ws28{word-spacing:6.048000px;}
.ws6c{word-spacing:6.094080px;}
.ws8a{word-spacing:6.160320px;}
.ws23{word-spacing:6.480000px;}
.ws75{word-spacing:6.513840px;}
.ws55{word-spacing:6.690240px;}
.ws2b{word-spacing:6.768000px;}
.ws12{word-spacing:7.200000px;}
.ws2a{word-spacing:7.488000px;}
.ws42{word-spacing:7.920000px;}
.ws31{word-spacing:8.208000px;}
.ws3c{word-spacing:8.640000px;}
.ws6d{word-spacing:8.677440px;}
.ws3b{word-spacing:8.928000px;}
.ws60{word-spacing:10.068480px;}
.ws21{word-spacing:10.080000px;}
.ws7e{word-spacing:10.267200px;}
.ws22{word-spacing:10.368000px;}
.ws5f{word-spacing:10.465920px;}
.ws43{word-spacing:11.088000px;}
.ws67{word-spacing:11.724480px;}
.ws6a{word-spacing:12.453120px;}
.ws69{word-spacing:12.651840px;}
.ws3f{word-spacing:14.688000px;}
.ws63{word-spacing:16.228800px;}
.ws61{word-spacing:16.758720px;}
.ws25{word-spacing:20.160000px;}
.ws7c{word-spacing:25.436160px;}
.ws78{word-spacing:34.776000px;}
.ws7d{word-spacing:54.184320px;}
.ws66{word-spacing:59.947200px;}
.ws65{word-spacing:82.270080px;}
.ws64{word-spacing:116.118720px;}
.ws85{word-spacing:127.728000px;}
._2{margin-left:-6.825600px;}
._4{margin-left:-3.456000px;}
._5{margin-left:-2.167200px;}
._0{margin-left:-1.063800px;}
._1{width:1.032480px;}
._3{width:2.052000px;}
._7{width:3.336480px;}
._8{width:7.039800px;}
._6{width:8.640000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(46,116,181);}
.fc3{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc7{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1b5{bottom:4.500000px;}
.y158{bottom:12.960000px;}
.y9{bottom:16.020000px;}
.y1e1{bottom:53.640000px;}
.y7{bottom:79.920000px;}
.y17b{bottom:94.140000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y172{bottom:114.120000px;}
.y171{bottom:134.279850px;}
.y5{bottom:145.440000px;}
.y162{bottom:149.940000px;}
.y170{bottom:154.440000px;}
.y1a4{bottom:165.420000px;}
.y76{bottom:167.040000px;}
.y1fb{bottom:169.200000px;}
.y15d{bottom:170.100000px;}
.y8b{bottom:174.240000px;}
.y1da{bottom:174.600000px;}
.y122{bottom:176.220000px;}
.y143{bottom:179.100000px;}
.y1a3{bottom:182.694420px;}
.y2e{bottom:186.300000px;}
.ydc{bottom:186.840000px;}
.ya9{bottom:189.000000px;}
.y212{bottom:189.720000px;}
.y75{bottom:190.800000px;}
.yc8{bottom:192.600000px;}
.y1fa{bottom:192.960000px;}
.y16d{bottom:194.760000px;}
.y8a{bottom:198.000000px;}
.y1e6{bottom:198.360000px;}
.y207{bottom:198.540000px;}
.y142{bottom:199.800000px;}
.y121{bottom:199.980000px;}
.y1a2{bottom:205.200000px;}
.yef{bottom:205.560000px;}
.y2d{bottom:210.240000px;}
.ydb{bottom:210.780000px;}
.y51{bottom:211.860000px;}
.ya8{bottom:212.940000px;}
.y228{bottom:213.840000px;}
.y74{bottom:214.560000px;}
.y16b{bottom:214.920000px;}
.y211{bottom:215.460000px;}
.yc7{bottom:216.360000px;}
.y1f9{bottom:216.900000px;}
.y156{bottom:218.700000px;}
.y10f{bottom:220.500000px;}
.y89{bottom:221.760000px;}
.y1e5{bottom:222.300000px;}
.y120{bottom:223.920000px;}
.yee{bottom:229.320000px;}
.y1a1{bottom:230.040000px;}
.y2c{bottom:234.000000px;}
.yda{bottom:234.540000px;}
.y50{bottom:235.800000px;}
.ya7{bottom:236.700000px;}
.y73{bottom:238.320000px;}
.yc6{bottom:240.300000px;}
.y141{bottom:241.200000px;}
.y155{bottom:242.460000px;}
.y10e{bottom:244.260000px;}
.y88{bottom:245.520000px;}
.y11f{bottom:247.680000px;}
.y1f8{bottom:249.660000px;}
.y1a0{bottom:250.740000px;}
.y206{bottom:252.000000px;}
.y1e4{bottom:252.540000px;}
.yed{bottom:253.260000px;}
.y227{bottom:255.240000px;}
.y2b{bottom:257.760000px;}
.y4f{bottom:259.560000px;}
.ya6{bottom:260.460000px;}
.y72{bottom:262.260000px;}
.yc5{bottom:264.060000px;}
.yd9{bottom:264.240000px;}
.y154{bottom:266.220000px;}
.y10d{bottom:268.200000px;}
.y1c3{bottom:268.920000px;}
.y87{bottom:269.460000px;}
.y11e{bottom:271.440000px;}
.y1f7{bottom:273.420000px;}
.y140{bottom:273.960000px;}
.yec{bottom:277.020000px;}
.y205{bottom:277.740000px;}
.y2a{bottom:281.520000px;}
.y1e3{bottom:282.420000px;}
.y4e{bottom:283.320000px;}
.ya5{bottom:284.220000px;}
.y226{bottom:285.480000px;}
.y71{bottom:286.020000px;}
.yc4{bottom:287.820000px;}
.y18a{bottom:289.260000px;}
.y153{bottom:290.160000px;}
.y10c{bottom:291.960000px;}
.y86{bottom:293.220000px;}
.y1f6{bottom:297.180000px;}
.y13f{bottom:297.720000px;}
.yeb{bottom:300.780000px;}
.y1e2{bottom:302.580000px;}
.y11d{bottom:304.200000px;}
.y29{bottom:305.280000px;}
.y1a6{bottom:306.540000px;}
.y4d{bottom:307.080000px;}
.yd8{bottom:307.800000px;}
.y19f{bottom:309.060000px;}
.y70{bottom:309.780000px;}
.yc3{bottom:311.580000px;}
.y189{bottom:313.020000px;}
.y152{bottom:313.920000px;}
.y1d3{bottom:315.540000px;}
.y10b{bottom:315.720000px;}
.y85{bottom:316.980000px;}
.ya4{bottom:317.160000px;}
.y1f5{bottom:321.120000px;}
.y13e{bottom:321.480000px;}
.y1e0{bottom:322.560000px;}
.y1d2{bottom:322.629840px;}
.yea{bottom:324.540000px;}
.y225{bottom:327.060000px;}
.y11c{bottom:328.140000px;}
.y28{bottom:329.220000px;}
.y4c{bottom:331.020000px;}
.yd7{bottom:331.560000px;}
.y6f{bottom:333.540000px;}
.y1c4{bottom:335.700000px;}
.y188{bottom:336.960000px;}
.y10a{bottom:339.480000px;}
.y84{bottom:340.740000px;}
.ya3{bottom:340.920000px;}
.y1df{bottom:342.739440px;}
.y1d1{bottom:342.783360px;}
.yc2{bottom:344.520000px;}
.y1f4{bottom:344.880000px;}
.y13d{bottom:345.420000px;}
.y151{bottom:346.680000px;}
.y224{bottom:347.760000px;}
.ye9{bottom:348.480000px;}
.y11b{bottom:351.900000px;}
.y27{bottom:352.980000px;}
.y4b{bottom:354.780000px;}
.yd6{bottom:355.320000px;}
.y6e{bottom:357.480000px;}
.y1de{bottom:362.892960px;}
.y1d0{bottom:362.936880px;}
.y109{bottom:363.420000px;}
.y83{bottom:364.680000px;}
.y187{bottom:367.200000px;}
.yc1{bottom:368.280000px;}
.y223{bottom:368.460000px;}
.y1f3{bottom:368.640000px;}
.y13c{bottom:369.180000px;}
.y150{bottom:370.440000px;}
.ye8{bottom:372.240000px;}
.y11a{bottom:375.660000px;}
.yd5{bottom:379.080000px;}
.y6d{bottom:381.240000px;}
.y1dd{bottom:383.046480px;}
.y1cf{bottom:383.090400px;}
.y26{bottom:385.740000px;}
.y108{bottom:387.180000px;}
.y4a{bottom:387.540000px;}
.y82{bottom:388.440000px;}
.yc0{bottom:392.040000px;}
.y1f2{bottom:392.400000px;}
.y13b{bottom:392.940000px;}
.y14f{bottom:394.380000px;}
.ye7{bottom:396.000000px;}
.y222{bottom:398.160000px;}
.y119{bottom:399.420000px;}
.yd4{bottom:403.020000px;}
.y1dc{bottom:403.200000px;}
.y1ce{bottom:403.243920px;}
.y6c{bottom:405.000000px;}
.y186{bottom:407.880000px;}
.y49{bottom:411.300000px;}
.ya2{bottom:412.380000px;}
.ybf{bottom:415.800000px;}
.y1f1{bottom:416.340000px;}
.y81{bottom:418.140000px;}
.y25{bottom:418.500000px;}
.y221{bottom:418.860000px;}
.y107{bottom:419.940000px;}
.y23e{bottom:420.120000px;}
.y13a{bottom:423.180000px;}
.y1db{bottom:423.360000px;}
.y1cd{bottom:423.397440px;}
.y14e{bottom:424.620000px;}
.y6b{bottom:428.760000px;}
.y118{bottom:429.660000px;}
.y185{bottom:431.640000px;}
.y48{bottom:435.240000px;}
.yd3{bottom:435.780000px;}
.ya1{bottom:436.140000px;}
.y220{bottom:439.560000px;}
.ybe{bottom:439.740000px;}
.y1f0{bottom:440.100000px;}
.y1d9{bottom:443.520000px;}
.y1cc{bottom:443.550960px;}
.y106{bottom:443.700000px;}
.y23d{bottom:449.820000px;}
.y24{bottom:451.440000px;}
.y6a{bottom:452.700000px;}
.y184{bottom:455.400000px;}
.y47{bottom:459.000000px;}
.yd2{bottom:459.540000px;}
.ya0{bottom:459.900000px;}
.y21f{bottom:460.260000px;}
.y80{bottom:461.700000px;}
.y14d{bottom:462.240000px;}
.ybd{bottom:463.500000px;}
.y1d8{bottom:463.680000px;}
.y1cb{bottom:463.704480px;}
.y139{bottom:463.860000px;}
.y117{bottom:467.280000px;}
.y105{bottom:467.640000px;}
.y1ef{bottom:472.860000px;}
.y23{bottom:475.200000px;}
.y69{bottom:476.460000px;}
.y183{bottom:479.160000px;}
.y23c{bottom:479.520000px;}
.y21e{bottom:480.960000px;}
.y46{bottom:482.760000px;}
.yd1{bottom:483.300000px;}
.y9f{bottom:483.660000px;}
.y1d7{bottom:483.840000px;}
.y1ca{bottom:483.858000px;}
.y7f{bottom:485.460000px;}
.ybc{bottom:487.260000px;}
.y138{bottom:487.800000px;}
.y14c{bottom:487.980000px;}
.y104{bottom:491.400000px;}
.y1ee{bottom:496.620000px;}
.y116{bottom:500.040000px;}
.y68{bottom:500.220000px;}
.y21d{bottom:501.660000px;}
.y182{bottom:503.100000px;}
.y1d6{bottom:503.992080px;}
.y1c9{bottom:504.011520px;}
.y45{bottom:506.520000px;}
.yd0{bottom:507.240000px;}
.y22{bottom:507.960000px;}
.y7e{bottom:509.220000px;}
.ybb{bottom:511.020000px;}
.y137{bottom:511.560000px;}
.y103{bottom:515.160000px;}
.y9e{bottom:516.600000px;}
.y1ed{bottom:520.560000px;}
.y21c{bottom:522.360000px;}
.ye6{bottom:523.980000px;}
.y1c8{bottom:523.999440px;}
.y181{bottom:526.860000px;}
.y23b{bottom:530.466480px;}
.ycf{bottom:531.000000px;}
.y21{bottom:531.720000px;}
.y67{bottom:532.980000px;}
.yba{bottom:534.780000px;}
.y136{bottom:535.320000px;}
.y44{bottom:536.760000px;}
.y210{bottom:537.480000px;}
.y102{bottom:538.920000px;}
.y9d{bottom:540.360000px;}
.y1d5{bottom:544.146480px;}
.y1c7{bottom:544.152960px;}
.y1ec{bottom:544.320000px;}
.y115{bottom:547.740000px;}
.ye5{bottom:547.920000px;}
.y180{bottom:550.620000px;}
.yce{bottom:554.760000px;}
.y21b{bottom:555.120000px;}
.y20{bottom:555.660000px;}
.y66{bottom:556.920000px;}
.yb9{bottom:558.720000px;}
.y135{bottom:559.080000px;}
.y101{bottom:562.860000px;}
.y9c{bottom:564.120000px;}
.y1d4{bottom:564.300000px;}
.y1c6{bottom:564.306480px;}
.y1eb{bottom:568.080000px;}
.y114{bottom:571.500000px;}
.ye4{bottom:571.680000px;}
.ycd{bottom:578.520000px;}
.y21a{bottom:578.880000px;}
.y20f{bottom:579.240000px;}
.y1f{bottom:579.420000px;}
.y65{bottom:580.680000px;}
.y43{bottom:581.580000px;}
.yb8{bottom:582.480000px;}
.y134{bottom:583.020000px;}
.y17f{bottom:583.380000px;}
.y1c5{bottom:584.460000px;}
.y100{bottom:586.620000px;}
.y9b{bottom:587.880000px;}
.y113{bottom:595.260000px;}
.ye3{bottom:595.440000px;}
.y1ea{bottom:598.320000px;}
.y19e{bottom:599.220000px;}
.y23a{bottom:599.940000px;}
.ycc{bottom:602.460000px;}
.y219{bottom:602.640000px;}
.y20e{bottom:603.000000px;}
.y1e{bottom:603.180000px;}
.y64{bottom:604.440000px;}
.y42{bottom:605.340000px;}
.yb7{bottom:606.240000px;}
.y133{bottom:606.780000px;}
.y17e{bottom:607.320000px;}
.yff{bottom:610.380000px;}
.y9a{bottom:611.640000px;}
.y239{bottom:620.640000px;}
.y1c2{bottom:621.000000px;}
.ye2{bottom:625.320000px;}
.ycb{bottom:626.220000px;}
.y218{bottom:626.580000px;}
.y1d{bottom:626.940000px;}
.y63{bottom:628.200000px;}
.y41{bottom:629.100000px;}
.yb6{bottom:630.000000px;}
.y132{bottom:630.540000px;}
.y17d{bottom:631.080000px;}
.y112{bottom:633.960000px;}
.yfe{bottom:634.140000px;}
.y99{bottom:635.580000px;}
.y1e9{bottom:635.940000px;}
.y19d{bottom:640.980000px;}
.y238{bottom:641.340000px;}
.y217{bottom:650.340000px;}
.y204{bottom:650.700000px;}
.y1c{bottom:650.880000px;}
.y1c1{bottom:651.420000px;}
.y62{bottom:652.140000px;}
.y40{bottom:652.860000px;}
.yb5{bottom:653.940000px;}
.y131{bottom:654.300000px;}
.yca{bottom:656.466300px;}
.y98{bottom:659.340000px;}
.y111{bottom:659.700000px;}
.y17c{bottom:661.320000px;}
.yfd{bottom:664.020000px;}
.y19c{bottom:664.740000px;}
.y1e8{bottom:665.640000px;}
.ye1{bottom:668.700000px;}
.y237{bottom:671.040000px;}
.y216{bottom:674.100000px;}
.y20d{bottom:674.460000px;}
.y1b{bottom:674.640000px;}
.y61{bottom:675.900000px;}
.y3f{bottom:676.800000px;}
.yb4{bottom:677.700000px;}
.y130{bottom:678.060000px;}
.yc9{bottom:680.580000px;}
.y97{bottom:683.100000px;}
.y19b{bottom:688.680000px;}
.y177{bottom:691.219440px;}
.y1e7{bottom:691.380000px;}
.y236{bottom:691.740000px;}
.ye0{bottom:692.460000px;}
.y1c0{bottom:694.800000px;}
.y215{bottom:697.860000px;}
.y20c{bottom:698.220000px;}
.y1a{bottom:698.400000px;}
.y60{bottom:699.660000px;}
.y3e{bottom:700.560000px;}
.yb3{bottom:701.460000px;}
.y12f{bottom:702.000000px;}
.y96{bottom:706.860000px;}
.yfc{bottom:709.872480px;}
.y176{bottom:711.372960px;}
.y19a{bottom:712.440000px;}
.ydf{bottom:716.220000px;}
.y214{bottom:721.800000px;}
.y19{bottom:722.160000px;}
.y5f{bottom:723.420000px;}
.y3d{bottom:724.320000px;}
.yb2{bottom:725.220000px;}
.y12e{bottom:725.760000px;}
.y95{bottom:730.800000px;}
.y175{bottom:731.526480px;}
.yfb{bottom:735.076800px;}
.y199{bottom:736.200000px;}
.y1b4{bottom:736.926480px;}
.yde{bottom:740.160000px;}
.y235{bottom:742.140000px;}
.y20b{bottom:745.920000px;}
.y18{bottom:746.100000px;}
.y5e{bottom:747.360000px;}
.y3c{bottom:748.080000px;}
.yb1{bottom:749.160000px;}
.y12d{bottom:749.520000px;}
.y174{bottom:751.680000px;}
.y94{bottom:754.560000px;}
.y1b3{bottom:757.080000px;}
.y198{bottom:759.960000px;}
.yfa{bottom:760.281120px;}
.y234{bottom:762.840000px;}
.ydd{bottom:763.920000px;}
.y16a{bottom:765.900000px;}
.y20a{bottom:769.680000px;}
.y5d{bottom:771.120000px;}
.y173{bottom:771.840000px;}
.y3b{bottom:772.020000px;}
.yb0{bottom:772.920000px;}
.y7d{bottom:777.060000px;}
.y1b2{bottom:777.296880px;}
.y93{bottom:778.320000px;}
.y17{bottom:778.860000px;}
.y12c{bottom:782.280000px;}
.yf9{bottom:785.303280px;}
.y203{bottom:787.680000px;}
.y17a{bottom:791.820000px;}
.y233{bottom:792.540000px;}
.y197{bottom:792.720000px;}
.y5c{bottom:794.880000px;}
.y169{bottom:795.600000px;}
.y3a{bottom:795.780000px;}
.yaf{bottom:796.680000px;}
.y1bf{bottom:797.443920px;}
.y1b1{bottom:797.450400px;}
.y92{bottom:802.080000px;}
.y209{bottom:802.440000px;}
.y16{bottom:802.620000px;}
.y12b{bottom:806.220000px;}
.yf8{bottom:810.507600px;}
.y202{bottom:811.440000px;}
.y179{bottom:811.992960px;}
.y232{bottom:813.240000px;}
.y168{bottom:816.300000px;}
.y196{bottom:816.660000px;}
.y1be{bottom:817.597440px;}
.y1b0{bottom:817.603920px;}
.y5b{bottom:818.640000px;}
.y7c{bottom:820.440000px;}
.y15{bottom:823.320000px;}
.y39{bottom:826.020000px;}
.y208{bottom:826.380000px;}
.y12a{bottom:829.980000px;}
.y16f{bottom:832.140000px;}
.y178{bottom:832.146480px;}
.y231{bottom:833.940000px;}
.y201{bottom:835.380000px;}
.yf7{bottom:835.711920px;}
.y1bd{bottom:837.750960px;}
.y1af{bottom:837.757440px;}
.y195{bottom:840.420000px;}
.y5a{bottom:842.400000px;}
.y14{bottom:844.020000px;}
.y7b{bottom:844.380000px;}
.y91{bottom:849.780000px;}
.y16e{bottom:852.300000px;}
.y129{bottom:853.740000px;}
.y230{bottom:854.640000px;}
.y1bc{bottom:857.904480px;}
.y1ae{bottom:857.910960px;}
.y200{bottom:859.140000px;}
.yf6{bottom:860.916240px;}
.y194{bottom:864.180000px;}
.y7a{bottom:868.140000px;}
.y38{bottom:870.660000px;}
.y59{bottom:872.280000px;}
.y16c{bottom:872.460000px;}
.y90{bottom:873.540000px;}
.y13{bottom:876.780000px;}
.yae{bottom:877.140000px;}
.y128{bottom:877.500000px;}
.y1bb{bottom:878.058000px;}
.y1ad{bottom:878.064480px;}
.y1ff{bottom:882.900000px;}
.y22f{bottom:884.340000px;}
.yf5{bottom:886.120560px;}
.y193{bottom:887.940000px;}
.y79{bottom:891.900000px;}
.y8f{bottom:897.300000px;}
.y1ba{bottom:898.211520px;}
.y1ac{bottom:898.218000px;}
.y12{bottom:900.540000px;}
.yad{bottom:900.900000px;}
.y127{bottom:901.440000px;}
.y37{bottom:903.600000px;}
.y22e{bottom:905.040000px;}
.y1fe{bottom:906.660000px;}
.y15c{bottom:909.000000px;}
.yf4{bottom:911.324880px;}
.y58{bottom:915.660000px;}
.y192{bottom:917.640000px;}
.y1b9{bottom:918.365040px;}
.y1ab{bottom:918.371520px;}
.y8e{bottom:921.240000px;}
.y11{bottom:923.213880px;}
.yac{bottom:924.660000px;}
.y126{bottom:925.200000px;}
.y22d{bottom:925.740000px;}
.y213{bottom:927.720000px;}
.y1fd{bottom:930.600000px;}
.y36{bottom:936.360000px;}
.yf3{bottom:936.529200px;}
.y191{bottom:938.340000px;}
.y1b8{bottom:938.352960px;}
.y1aa{bottom:938.359440px;}
.y57{bottom:939.600000px;}
.y10{bottom:944.100000px;}
.yab{bottom:948.600000px;}
.y125{bottom:948.960000px;}
.y8d{bottom:951.480000px;}
.y1fc{bottom:954.360000px;}
.y14b{bottom:955.440000px;}
.y167{bottom:958.320000px;}
.y1b7{bottom:958.506480px;}
.y1a9{bottom:958.512960px;}
.y190{bottom:959.040000px;}
.yf2{bottom:961.551360px;}
.y56{bottom:963.360000px;}
.yf{bottom:966.240000px;}
.y35{bottom:969.120000px;}
.yaa{bottom:972.360000px;}
.y124{bottom:972.720000px;}
.y15b{bottom:974.880000px;}
.y22c{bottom:976.140000px;}
.y166{bottom:978.485040px;}
.y1b6{bottom:978.660000px;}
.y1a8{bottom:978.666480px;}
.y18f{bottom:979.740000px;}
.y14a{bottom:984.960000px;}
.yf1{bottom:986.755680px;}
.y55{bottom:987.120000px;}
.ye{bottom:991.440000px;}
.y8c{bottom:996.120000px;}
.y22b{bottom:996.660000px;}
.y165{bottom:998.638560px;}
.y161{bottom:998.646480px;}
.y1a7{bottom:998.820000px;}
.y18e{bottom:1000.440000px;}
.y34{bottom:1001.880000px;}
.y123{bottom:1002.960000px;}
.y15a{bottom:1004.580000px;}
.y78{bottom:1010.880000px;}
.yf0{bottom:1011.960000px;}
.y149{bottom:1014.660000px;}
.y164{bottom:1018.792080px;}
.y160{bottom:1018.800000px;}
.y54{bottom:1019.880000px;}
.y18d{bottom:1021.140000px;}
.y159{bottom:1025.280000px;}
.y22a{bottom:1026.360000px;}
.yd{bottom:1034.284320px;}
.y33{bottom:1034.640000px;}
.y148{bottom:1035.360000px;}
.y163{bottom:1038.780000px;}
.y15f{bottom:1038.786480px;}
.y18c{bottom:1041.840000px;}
.y53{bottom:1043.640000px;}
.y229{bottom:1047.060000px;}
.y147{bottom:1056.060000px;}
.yc{bottom:1058.040000px;}
.y32{bottom:1058.580000px;}
.y15e{bottom:1058.940000px;}
.y1a5{bottom:1065.780000px;}
.y52{bottom:1067.580000px;}
.y18b{bottom:1071.720000px;}
.y146{bottom:1076.760000px;}
.y77{bottom:1082.340000px;}
.y31{bottom:1091.340000px;}
.y157{bottom:1095.480000px;}
.y145{bottom:1097.460000px;}
.yb{bottom:1108.973160px;}
.y110{bottom:1109.160000px;}
.y30{bottom:1115.100000px;}
.y144{bottom:1118.160000px;}
.ya{bottom:1134.540000px;}
.y2f{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h11{height:29.700000px;}
.h5{height:32.758500px;}
.h14{height:34.114922px;}
.h3{height:38.759766px;}
.h10{height:45.410625px;}
.hf{height:47.545312px;}
.ha{height:48.905156px;}
.hb{height:49.289062px;}
.h19{height:49.992188px;}
.h16{height:52.435898px;}
.h15{height:52.458218px;}
.he{height:56.611406px;}
.h9{height:58.921875px;}
.hc{height:61.329023px;}
.h4{height:63.175781px;}
.h8{height:63.635625px;}
.h6{height:68.938594px;}
.hd{height:69.687773px;}
.h2{height:75.600000px;}
.h7{height:78.393454px;}
.h12{height:185.760000px;}
.h13{height:230.580000px;}
.h17{height:322.200000px;}
.h18{height:351.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w3{width:93.600000px;}
.w8{width:275.760000px;}
.w4{width:281.340000px;}
.w5{width:283.680000px;}
.wa{width:307.620000px;}
.w9{width:317.880000px;}
.w7{width:349.740000px;}
.w6{width:626.220000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x28{left:18.360000px;}
.x21{left:34.740000px;}
.x2b{left:45.360000px;}
.x1b{left:115.200000px;}
.x1d{left:121.320000px;}
.x3{left:127.620000px;}
.x8{left:144.000000px;}
.x18{left:148.320000px;}
.x1{left:152.100000px;}
.x11{left:154.440000px;}
.x1e{left:156.060000px;}
.x23{left:161.640000px;}
.x26{left:165.240000px;}
.x12{left:181.068480px;}
.x29{left:183.600000px;}
.x2a{left:210.592800px;}
.x6{left:235.440000px;}
.x1a{left:242.640000px;}
.x20{left:250.380000px;}
.x1f{left:277.380000px;}
.x13{left:286.560000px;}
.x4{left:297.180000px;}
.x15{left:321.120000px;}
.x30{left:337.860000px;}
.x33{left:339.300000px;}
.x25{left:343.620000px;}
.x16{left:346.500000px;}
.x5{left:466.740000px;}
.x10{left:478.260000px;}
.x7{left:484.727220px;}
.xe{left:499.140000px;}
.x2e{left:502.200000px;}
.x27{left:515.700000px;}
.xc{left:521.640000px;}
.x1c{left:524.700000px;}
.x2f{left:529.200000px;}
.x2{left:532.620000px;}
.x2d{left:534.060000px;}
.xf{left:556.020000px;}
.x22{left:559.440000px;}
.x2c{left:561.060000px;}
.xb{left:584.820000px;}
.xa{left:627.840000px;}
.x9{left:672.845760px;}
.x24{left:685.800000px;}
.x34{left:710.100000px;}
.x32{left:748.260000px;}
.x31{left:761.760000px;}
.x14{left:805.680000px;}
.x17{left:818.100000px;}
.xd{left:829.075320px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.824320pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls3f{letter-spacing:-0.512000pt;}
.ls41{letter-spacing:-0.412160pt;}
.ls2c{letter-spacing:-0.353280pt;}
.ls18{letter-spacing:-0.299520pt;}
.ls14{letter-spacing:-0.265600pt;}
.ls15{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.235520pt;}
.lsf{letter-spacing:-0.224640pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls40{letter-spacing:-0.176640pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls19{letter-spacing:-0.074880pt;}
.ls11{letter-spacing:-0.069120pt;}
.ls3e{letter-spacing:-0.064000pt;}
.ls27{letter-spacing:-0.058880pt;}
.ls35{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls36{letter-spacing:0.047104pt;}
.ls7{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.069120pt;}
.ls34{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.128000pt;}
.ls3d{letter-spacing:0.129536pt;}
.ls1e{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.159360pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.235520pt;}
.lse{letter-spacing:0.288000pt;}
.ls32{letter-spacing:0.294400pt;}
.ls33{letter-spacing:0.318720pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.343040pt;}
.ls3{letter-spacing:0.371840pt;}
.ls20{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.640000pt;}
.ls5{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.292800pt;}
.ls26{letter-spacing:1.920000pt;}
.ls38{letter-spacing:1.926400pt;}
.ls1d{letter-spacing:2.553600pt;}
.ls23{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.356160pt;}
.ls2a{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:5.120000pt;}
.ls30{letter-spacing:5.126400pt;}
.ls4{letter-spacing:6.400000pt;}
.ls3b{letter-spacing:7.040000pt;}
.ls31{letter-spacing:7.673600pt;}
.ls22{letter-spacing:7.680000pt;}
.ls2f{letter-spacing:8.453120pt;}
.ls21{letter-spacing:9.600000pt;}
.ls1f{letter-spacing:12.800000pt;}
.ls6{letter-spacing:17.920000pt;}
.ls24{letter-spacing:60.410880pt;}
.ls2e{letter-spacing:61.706240pt;}
.ls2d{letter-spacing:61.711360pt;}
.ls39{letter-spacing:172.800000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws27{word-spacing:-20.741760pt;}
.ws26{word-spacing:-20.517120pt;}
.ws2f{word-spacing:-19.146240pt;}
.ws5{word-spacing:-17.901440pt;}
.ws83{word-spacing:-16.640000pt;}
.ws5a{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws82{word-spacing:-15.936000pt;}
.ws59{word-spacing:-15.872000pt;}
.ws80{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws71{word-spacing:-13.598720pt;}
.ws57{word-spacing:-13.542400pt;}
.ws72{word-spacing:-13.386240pt;}
.ws49{word-spacing:-13.306880pt;}
.ws4b{word-spacing:-13.248000pt;}
.ws70{word-spacing:-13.226880pt;}
.ws84{word-spacing:-13.130240pt;}
.ws5b{word-spacing:-13.071360pt;}
.ws4a{word-spacing:-12.482560pt;}
.ws1{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.656000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws6f{word-spacing:-8.640000pt;}
.ws34{word-spacing:-3.840000pt;}
.ws1b{word-spacing:-3.584000pt;}
.ws2d{word-spacing:-3.328000pt;}
.ws18{word-spacing:-3.200000pt;}
.ws35{word-spacing:-2.944000pt;}
.ws24{word-spacing:-2.560000pt;}
.ws3a{word-spacing:-2.304000pt;}
.ws62{word-spacing:-2.178560pt;}
.ws1a{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.664000pt;}
.ws46{word-spacing:-1.497600pt;}
.ws45{word-spacing:-1.408000pt;}
.ws1f{word-spacing:-1.280000pt;}
.ws7b{word-spacing:-1.059840pt;}
.ws30{word-spacing:-1.024000pt;}
.ws74{word-spacing:-0.796800pt;}
.ws32{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.640000pt;}
.wsc{word-spacing:-0.599040pt;}
.ws10{word-spacing:-0.584320pt;}
.ws86{word-spacing:-0.576000pt;}
.ws54{word-spacing:-0.471040pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws37{word-spacing:-0.343040pt;}
.ws77{word-spacing:-0.294400pt;}
.wsf{word-spacing:-0.256000pt;}
.ws5e{word-spacing:-0.176640pt;}
.ws56{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.117760pt;}
.wsd{word-spacing:-0.069120pt;}
.ws8{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.058880pt;}
.ws40{word-spacing:0.069120pt;}
.ws76{word-spacing:0.117760pt;}
.wse{word-spacing:0.138240pt;}
.wsa{word-spacing:0.144000pt;}
.ws4d{word-spacing:0.176640pt;}
.ws13{word-spacing:0.192000pt;}
.wsb{word-spacing:0.224640pt;}
.ws9{word-spacing:0.235520pt;}
.ws11{word-spacing:0.256000pt;}
.ws81{word-spacing:0.299520pt;}
.ws53{word-spacing:0.353280pt;}
.ws41{word-spacing:0.374400pt;}
.ws8d{word-spacing:0.412160pt;}
.ws7a{word-spacing:0.471040pt;}
.ws87{word-spacing:0.512000pt;}
.ws8c{word-spacing:0.529920pt;}
.ws47{word-spacing:0.599040pt;}
.ws14{word-spacing:0.640000pt;}
.ws52{word-spacing:0.824320pt;}
.ws1d{word-spacing:0.896000pt;}
.ws68{word-spacing:0.942080pt;}
.ws2c{word-spacing:1.152000pt;}
.ws1e{word-spacing:1.280000pt;}
.ws4f{word-spacing:1.472000pt;}
.ws15{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.648640pt;}
.ws58{word-spacing:1.792000pt;}
.ws20{word-spacing:1.920000pt;}
.ws29{word-spacing:2.176000pt;}
.ws48{word-spacing:2.432000pt;}
.ws1c{word-spacing:2.560000pt;}
.ws5c{word-spacing:2.767360pt;}
.ws3e{word-spacing:2.816000pt;}
.ws73{word-spacing:3.072000pt;}
.ws38{word-spacing:3.200000pt;}
.ws50{word-spacing:3.415040pt;}
.ws36{word-spacing:3.456000pt;}
.ws51{word-spacing:3.591680pt;}
.ws39{word-spacing:3.840000pt;}
.ws4e{word-spacing:4.003840pt;}
.ws44{word-spacing:4.096000pt;}
.ws17{word-spacing:4.480000pt;}
.ws5d{word-spacing:4.651520pt;}
.ws16{word-spacing:4.736000pt;}
.ws8b{word-spacing:4.769280pt;}
.ws79{word-spacing:4.828160pt;}
.ws6e{word-spacing:4.992000pt;}
.ws89{word-spacing:5.004800pt;}
.ws3d{word-spacing:5.120000pt;}
.ws88{word-spacing:5.299200pt;}
.ws28{word-spacing:5.376000pt;}
.ws6c{word-spacing:5.416960pt;}
.ws8a{word-spacing:5.475840pt;}
.ws23{word-spacing:5.760000pt;}
.ws75{word-spacing:5.790080pt;}
.ws55{word-spacing:5.946880pt;}
.ws2b{word-spacing:6.016000pt;}
.ws12{word-spacing:6.400000pt;}
.ws2a{word-spacing:6.656000pt;}
.ws42{word-spacing:7.040000pt;}
.ws31{word-spacing:7.296000pt;}
.ws3c{word-spacing:7.680000pt;}
.ws6d{word-spacing:7.713280pt;}
.ws3b{word-spacing:7.936000pt;}
.ws60{word-spacing:8.949760pt;}
.ws21{word-spacing:8.960000pt;}
.ws7e{word-spacing:9.126400pt;}
.ws22{word-spacing:9.216000pt;}
.ws5f{word-spacing:9.303040pt;}
.ws43{word-spacing:9.856000pt;}
.ws67{word-spacing:10.421760pt;}
.ws6a{word-spacing:11.069440pt;}
.ws69{word-spacing:11.246080pt;}
.ws3f{word-spacing:13.056000pt;}
.ws63{word-spacing:14.425600pt;}
.ws61{word-spacing:14.896640pt;}
.ws25{word-spacing:17.920000pt;}
.ws7c{word-spacing:22.609920pt;}
.ws78{word-spacing:30.912000pt;}
.ws7d{word-spacing:48.163840pt;}
.ws66{word-spacing:53.286400pt;}
.ws65{word-spacing:73.128960pt;}
.ws64{word-spacing:103.216640pt;}
.ws85{word-spacing:113.536000pt;}
._2{margin-left:-6.067200pt;}
._4{margin-left:-3.072000pt;}
._5{margin-left:-1.926400pt;}
._0{margin-left:-0.945600pt;}
._1{width:0.917760pt;}
._3{width:1.824000pt;}
._7{width:2.965760pt;}
._8{width:6.257600pt;}
._6{width:7.680000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1b5{bottom:4.000000pt;}
.y158{bottom:11.520000pt;}
.y9{bottom:14.240000pt;}
.y1e1{bottom:47.680000pt;}
.y7{bottom:71.040000pt;}
.y17b{bottom:83.680000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y172{bottom:101.440000pt;}
.y171{bottom:119.359867pt;}
.y5{bottom:129.280000pt;}
.y162{bottom:133.280000pt;}
.y170{bottom:137.280000pt;}
.y1a4{bottom:147.040000pt;}
.y76{bottom:148.480000pt;}
.y1fb{bottom:150.400000pt;}
.y15d{bottom:151.200000pt;}
.y8b{bottom:154.880000pt;}
.y1da{bottom:155.200000pt;}
.y122{bottom:156.640000pt;}
.y143{bottom:159.200000pt;}
.y1a3{bottom:162.395040pt;}
.y2e{bottom:165.600000pt;}
.ydc{bottom:166.080000pt;}
.ya9{bottom:168.000000pt;}
.y212{bottom:168.640000pt;}
.y75{bottom:169.600000pt;}
.yc8{bottom:171.200000pt;}
.y1fa{bottom:171.520000pt;}
.y16d{bottom:173.120000pt;}
.y8a{bottom:176.000000pt;}
.y1e6{bottom:176.320000pt;}
.y207{bottom:176.480000pt;}
.y142{bottom:177.600000pt;}
.y121{bottom:177.760000pt;}
.y1a2{bottom:182.400000pt;}
.yef{bottom:182.720000pt;}
.y2d{bottom:186.880000pt;}
.ydb{bottom:187.360000pt;}
.y51{bottom:188.320000pt;}
.ya8{bottom:189.280000pt;}
.y228{bottom:190.080000pt;}
.y74{bottom:190.720000pt;}
.y16b{bottom:191.040000pt;}
.y211{bottom:191.520000pt;}
.yc7{bottom:192.320000pt;}
.y1f9{bottom:192.800000pt;}
.y156{bottom:194.400000pt;}
.y10f{bottom:196.000000pt;}
.y89{bottom:197.120000pt;}
.y1e5{bottom:197.600000pt;}
.y120{bottom:199.040000pt;}
.yee{bottom:203.840000pt;}
.y1a1{bottom:204.480000pt;}
.y2c{bottom:208.000000pt;}
.yda{bottom:208.480000pt;}
.y50{bottom:209.600000pt;}
.ya7{bottom:210.400000pt;}
.y73{bottom:211.840000pt;}
.yc6{bottom:213.600000pt;}
.y141{bottom:214.400000pt;}
.y155{bottom:215.520000pt;}
.y10e{bottom:217.120000pt;}
.y88{bottom:218.240000pt;}
.y11f{bottom:220.160000pt;}
.y1f8{bottom:221.920000pt;}
.y1a0{bottom:222.880000pt;}
.y206{bottom:224.000000pt;}
.y1e4{bottom:224.480000pt;}
.yed{bottom:225.120000pt;}
.y227{bottom:226.880000pt;}
.y2b{bottom:229.120000pt;}
.y4f{bottom:230.720000pt;}
.ya6{bottom:231.520000pt;}
.y72{bottom:233.120000pt;}
.yc5{bottom:234.720000pt;}
.yd9{bottom:234.880000pt;}
.y154{bottom:236.640000pt;}
.y10d{bottom:238.400000pt;}
.y1c3{bottom:239.040000pt;}
.y87{bottom:239.520000pt;}
.y11e{bottom:241.280000pt;}
.y1f7{bottom:243.040000pt;}
.y140{bottom:243.520000pt;}
.yec{bottom:246.240000pt;}
.y205{bottom:246.880000pt;}
.y2a{bottom:250.240000pt;}
.y1e3{bottom:251.040000pt;}
.y4e{bottom:251.840000pt;}
.ya5{bottom:252.640000pt;}
.y226{bottom:253.760000pt;}
.y71{bottom:254.240000pt;}
.yc4{bottom:255.840000pt;}
.y18a{bottom:257.120000pt;}
.y153{bottom:257.920000pt;}
.y10c{bottom:259.520000pt;}
.y86{bottom:260.640000pt;}
.y1f6{bottom:264.160000pt;}
.y13f{bottom:264.640000pt;}
.yeb{bottom:267.360000pt;}
.y1e2{bottom:268.960000pt;}
.y11d{bottom:270.400000pt;}
.y29{bottom:271.360000pt;}
.y1a6{bottom:272.480000pt;}
.y4d{bottom:272.960000pt;}
.yd8{bottom:273.600000pt;}
.y19f{bottom:274.720000pt;}
.y70{bottom:275.360000pt;}
.yc3{bottom:276.960000pt;}
.y189{bottom:278.240000pt;}
.y152{bottom:279.040000pt;}
.y1d3{bottom:280.480000pt;}
.y10b{bottom:280.640000pt;}
.y85{bottom:281.760000pt;}
.ya4{bottom:281.920000pt;}
.y1f5{bottom:285.440000pt;}
.y13e{bottom:285.760000pt;}
.y1e0{bottom:286.720000pt;}
.y1d2{bottom:286.782080pt;}
.yea{bottom:288.480000pt;}
.y225{bottom:290.720000pt;}
.y11c{bottom:291.680000pt;}
.y28{bottom:292.640000pt;}
.y4c{bottom:294.240000pt;}
.yd7{bottom:294.720000pt;}
.y6f{bottom:296.480000pt;}
.y1c4{bottom:298.400000pt;}
.y188{bottom:299.520000pt;}
.y10a{bottom:301.760000pt;}
.y84{bottom:302.880000pt;}
.ya3{bottom:303.040000pt;}
.y1df{bottom:304.657280pt;}
.y1d1{bottom:304.696320pt;}
.yc2{bottom:306.240000pt;}
.y1f4{bottom:306.560000pt;}
.y13d{bottom:307.040000pt;}
.y151{bottom:308.160000pt;}
.y224{bottom:309.120000pt;}
.ye9{bottom:309.760000pt;}
.y11b{bottom:312.800000pt;}
.y27{bottom:313.760000pt;}
.y4b{bottom:315.360000pt;}
.yd6{bottom:315.840000pt;}
.y6e{bottom:317.760000pt;}
.y1de{bottom:322.571520pt;}
.y1d0{bottom:322.610560pt;}
.y109{bottom:323.040000pt;}
.y83{bottom:324.160000pt;}
.y187{bottom:326.400000pt;}
.yc1{bottom:327.360000pt;}
.y223{bottom:327.520000pt;}
.y1f3{bottom:327.680000pt;}
.y13c{bottom:328.160000pt;}
.y150{bottom:329.280000pt;}
.ye8{bottom:330.880000pt;}
.y11a{bottom:333.920000pt;}
.yd5{bottom:336.960000pt;}
.y6d{bottom:338.880000pt;}
.y1dd{bottom:340.485760pt;}
.y1cf{bottom:340.524800pt;}
.y26{bottom:342.880000pt;}
.y108{bottom:344.160000pt;}
.y4a{bottom:344.480000pt;}
.y82{bottom:345.280000pt;}
.yc0{bottom:348.480000pt;}
.y1f2{bottom:348.800000pt;}
.y13b{bottom:349.280000pt;}
.y14f{bottom:350.560000pt;}
.ye7{bottom:352.000000pt;}
.y222{bottom:353.920000pt;}
.y119{bottom:355.040000pt;}
.yd4{bottom:358.240000pt;}
.y1dc{bottom:358.400000pt;}
.y1ce{bottom:358.439040pt;}
.y6c{bottom:360.000000pt;}
.y186{bottom:362.560000pt;}
.y49{bottom:365.600000pt;}
.ya2{bottom:366.560000pt;}
.ybf{bottom:369.600000pt;}
.y1f1{bottom:370.080000pt;}
.y81{bottom:371.680000pt;}
.y25{bottom:372.000000pt;}
.y221{bottom:372.320000pt;}
.y107{bottom:373.280000pt;}
.y23e{bottom:373.440000pt;}
.y13a{bottom:376.160000pt;}
.y1db{bottom:376.320000pt;}
.y1cd{bottom:376.353280pt;}
.y14e{bottom:377.440000pt;}
.y6b{bottom:381.120000pt;}
.y118{bottom:381.920000pt;}
.y185{bottom:383.680000pt;}
.y48{bottom:386.880000pt;}
.yd3{bottom:387.360000pt;}
.ya1{bottom:387.680000pt;}
.y220{bottom:390.720000pt;}
.ybe{bottom:390.880000pt;}
.y1f0{bottom:391.200000pt;}
.y1d9{bottom:394.240000pt;}
.y1cc{bottom:394.267520pt;}
.y106{bottom:394.400000pt;}
.y23d{bottom:399.840000pt;}
.y24{bottom:401.280000pt;}
.y6a{bottom:402.400000pt;}
.y184{bottom:404.800000pt;}
.y47{bottom:408.000000pt;}
.yd2{bottom:408.480000pt;}
.ya0{bottom:408.800000pt;}
.y21f{bottom:409.120000pt;}
.y80{bottom:410.400000pt;}
.y14d{bottom:410.880000pt;}
.ybd{bottom:412.000000pt;}
.y1d8{bottom:412.160000pt;}
.y1cb{bottom:412.181760pt;}
.y139{bottom:412.320000pt;}
.y117{bottom:415.360000pt;}
.y105{bottom:415.680000pt;}
.y1ef{bottom:420.320000pt;}
.y23{bottom:422.400000pt;}
.y69{bottom:423.520000pt;}
.y183{bottom:425.920000pt;}
.y23c{bottom:426.240000pt;}
.y21e{bottom:427.520000pt;}
.y46{bottom:429.120000pt;}
.yd1{bottom:429.600000pt;}
.y9f{bottom:429.920000pt;}
.y1d7{bottom:430.080000pt;}
.y1ca{bottom:430.096000pt;}
.y7f{bottom:431.520000pt;}
.ybc{bottom:433.120000pt;}
.y138{bottom:433.600000pt;}
.y14c{bottom:433.760000pt;}
.y104{bottom:436.800000pt;}
.y1ee{bottom:441.440000pt;}
.y116{bottom:444.480000pt;}
.y68{bottom:444.640000pt;}
.y21d{bottom:445.920000pt;}
.y182{bottom:447.200000pt;}
.y1d6{bottom:447.992960pt;}
.y1c9{bottom:448.010240pt;}
.y45{bottom:450.240000pt;}
.yd0{bottom:450.880000pt;}
.y22{bottom:451.520000pt;}
.y7e{bottom:452.640000pt;}
.ybb{bottom:454.240000pt;}
.y137{bottom:454.720000pt;}
.y103{bottom:457.920000pt;}
.y9e{bottom:459.200000pt;}
.y1ed{bottom:462.720000pt;}
.y21c{bottom:464.320000pt;}
.ye6{bottom:465.760000pt;}
.y1c8{bottom:465.777280pt;}
.y181{bottom:468.320000pt;}
.y23b{bottom:471.525760pt;}
.ycf{bottom:472.000000pt;}
.y21{bottom:472.640000pt;}
.y67{bottom:473.760000pt;}
.yba{bottom:475.360000pt;}
.y136{bottom:475.840000pt;}
.y44{bottom:477.120000pt;}
.y210{bottom:477.760000pt;}
.y102{bottom:479.040000pt;}
.y9d{bottom:480.320000pt;}
.y1d5{bottom:483.685760pt;}
.y1c7{bottom:483.691520pt;}
.y1ec{bottom:483.840000pt;}
.y115{bottom:486.880000pt;}
.ye5{bottom:487.040000pt;}
.y180{bottom:489.440000pt;}
.yce{bottom:493.120000pt;}
.y21b{bottom:493.440000pt;}
.y20{bottom:493.920000pt;}
.y66{bottom:495.040000pt;}
.yb9{bottom:496.640000pt;}
.y135{bottom:496.960000pt;}
.y101{bottom:500.320000pt;}
.y9c{bottom:501.440000pt;}
.y1d4{bottom:501.600000pt;}
.y1c6{bottom:501.605760pt;}
.y1eb{bottom:504.960000pt;}
.y114{bottom:508.000000pt;}
.ye4{bottom:508.160000pt;}
.ycd{bottom:514.240000pt;}
.y21a{bottom:514.560000pt;}
.y20f{bottom:514.880000pt;}
.y1f{bottom:515.040000pt;}
.y65{bottom:516.160000pt;}
.y43{bottom:516.960000pt;}
.yb8{bottom:517.760000pt;}
.y134{bottom:518.240000pt;}
.y17f{bottom:518.560000pt;}
.y1c5{bottom:519.520000pt;}
.y100{bottom:521.440000pt;}
.y9b{bottom:522.560000pt;}
.y113{bottom:529.120000pt;}
.ye3{bottom:529.280000pt;}
.y1ea{bottom:531.840000pt;}
.y19e{bottom:532.640000pt;}
.y23a{bottom:533.280000pt;}
.ycc{bottom:535.520000pt;}
.y219{bottom:535.680000pt;}
.y20e{bottom:536.000000pt;}
.y1e{bottom:536.160000pt;}
.y64{bottom:537.280000pt;}
.y42{bottom:538.080000pt;}
.yb7{bottom:538.880000pt;}
.y133{bottom:539.360000pt;}
.y17e{bottom:539.840000pt;}
.yff{bottom:542.560000pt;}
.y9a{bottom:543.680000pt;}
.y239{bottom:551.680000pt;}
.y1c2{bottom:552.000000pt;}
.ye2{bottom:555.840000pt;}
.ycb{bottom:556.640000pt;}
.y218{bottom:556.960000pt;}
.y1d{bottom:557.280000pt;}
.y63{bottom:558.400000pt;}
.y41{bottom:559.200000pt;}
.yb6{bottom:560.000000pt;}
.y132{bottom:560.480000pt;}
.y17d{bottom:560.960000pt;}
.y112{bottom:563.520000pt;}
.yfe{bottom:563.680000pt;}
.y99{bottom:564.960000pt;}
.y1e9{bottom:565.280000pt;}
.y19d{bottom:569.760000pt;}
.y238{bottom:570.080000pt;}
.y217{bottom:578.080000pt;}
.y204{bottom:578.400000pt;}
.y1c{bottom:578.560000pt;}
.y1c1{bottom:579.040000pt;}
.y62{bottom:579.680000pt;}
.y40{bottom:580.320000pt;}
.yb5{bottom:581.280000pt;}
.y131{bottom:581.600000pt;}
.yca{bottom:583.525600pt;}
.y98{bottom:586.080000pt;}
.y111{bottom:586.400000pt;}
.y17c{bottom:587.840000pt;}
.yfd{bottom:590.240000pt;}
.y19c{bottom:590.880000pt;}
.y1e8{bottom:591.680000pt;}
.ye1{bottom:594.400000pt;}
.y237{bottom:596.480000pt;}
.y216{bottom:599.200000pt;}
.y20d{bottom:599.520000pt;}
.y1b{bottom:599.680000pt;}
.y61{bottom:600.800000pt;}
.y3f{bottom:601.600000pt;}
.yb4{bottom:602.400000pt;}
.y130{bottom:602.720000pt;}
.yc9{bottom:604.960000pt;}
.y97{bottom:607.200000pt;}
.y19b{bottom:612.160000pt;}
.y177{bottom:614.417280pt;}
.y1e7{bottom:614.560000pt;}
.y236{bottom:614.880000pt;}
.ye0{bottom:615.520000pt;}
.y1c0{bottom:617.600000pt;}
.y215{bottom:620.320000pt;}
.y20c{bottom:620.640000pt;}
.y1a{bottom:620.800000pt;}
.y60{bottom:621.920000pt;}
.y3e{bottom:622.720000pt;}
.yb3{bottom:623.520000pt;}
.y12f{bottom:624.000000pt;}
.y96{bottom:628.320000pt;}
.yfc{bottom:630.997760pt;}
.y176{bottom:632.331520pt;}
.y19a{bottom:633.280000pt;}
.ydf{bottom:636.640000pt;}
.y214{bottom:641.600000pt;}
.y19{bottom:641.920000pt;}
.y5f{bottom:643.040000pt;}
.y3d{bottom:643.840000pt;}
.yb2{bottom:644.640000pt;}
.y12e{bottom:645.120000pt;}
.y95{bottom:649.600000pt;}
.y175{bottom:650.245760pt;}
.yfb{bottom:653.401600pt;}
.y199{bottom:654.400000pt;}
.y1b4{bottom:655.045760pt;}
.yde{bottom:657.920000pt;}
.y235{bottom:659.680000pt;}
.y20b{bottom:663.040000pt;}
.y18{bottom:663.200000pt;}
.y5e{bottom:664.320000pt;}
.y3c{bottom:664.960000pt;}
.yb1{bottom:665.920000pt;}
.y12d{bottom:666.240000pt;}
.y174{bottom:668.160000pt;}
.y94{bottom:670.720000pt;}
.y1b3{bottom:672.960000pt;}
.y198{bottom:675.520000pt;}
.yfa{bottom:675.805440pt;}
.y234{bottom:678.080000pt;}
.ydd{bottom:679.040000pt;}
.y16a{bottom:680.800000pt;}
.y20a{bottom:684.160000pt;}
.y5d{bottom:685.440000pt;}
.y173{bottom:686.080000pt;}
.y3b{bottom:686.240000pt;}
.yb0{bottom:687.040000pt;}
.y7d{bottom:690.720000pt;}
.y1b2{bottom:690.930560pt;}
.y93{bottom:691.840000pt;}
.y17{bottom:692.320000pt;}
.y12c{bottom:695.360000pt;}
.yf9{bottom:698.047360pt;}
.y203{bottom:700.160000pt;}
.y17a{bottom:703.840000pt;}
.y233{bottom:704.480000pt;}
.y197{bottom:704.640000pt;}
.y5c{bottom:706.560000pt;}
.y169{bottom:707.200000pt;}
.y3a{bottom:707.360000pt;}
.yaf{bottom:708.160000pt;}
.y1bf{bottom:708.839040pt;}
.y1b1{bottom:708.844800pt;}
.y92{bottom:712.960000pt;}
.y209{bottom:713.280000pt;}
.y16{bottom:713.440000pt;}
.y12b{bottom:716.640000pt;}
.yf8{bottom:720.451200pt;}
.y202{bottom:721.280000pt;}
.y179{bottom:721.771520pt;}
.y232{bottom:722.880000pt;}
.y168{bottom:725.600000pt;}
.y196{bottom:725.920000pt;}
.y1be{bottom:726.753280pt;}
.y1b0{bottom:726.759040pt;}
.y5b{bottom:727.680000pt;}
.y7c{bottom:729.280000pt;}
.y15{bottom:731.840000pt;}
.y39{bottom:734.240000pt;}
.y208{bottom:734.560000pt;}
.y12a{bottom:737.760000pt;}
.y16f{bottom:739.680000pt;}
.y178{bottom:739.685760pt;}
.y231{bottom:741.280000pt;}
.y201{bottom:742.560000pt;}
.yf7{bottom:742.855040pt;}
.y1bd{bottom:744.667520pt;}
.y1af{bottom:744.673280pt;}
.y195{bottom:747.040000pt;}
.y5a{bottom:748.800000pt;}
.y14{bottom:750.240000pt;}
.y7b{bottom:750.560000pt;}
.y91{bottom:755.360000pt;}
.y16e{bottom:757.600000pt;}
.y129{bottom:758.880000pt;}
.y230{bottom:759.680000pt;}
.y1bc{bottom:762.581760pt;}
.y1ae{bottom:762.587520pt;}
.y200{bottom:763.680000pt;}
.yf6{bottom:765.258880pt;}
.y194{bottom:768.160000pt;}
.y7a{bottom:771.680000pt;}
.y38{bottom:773.920000pt;}
.y59{bottom:775.360000pt;}
.y16c{bottom:775.520000pt;}
.y90{bottom:776.480000pt;}
.y13{bottom:779.360000pt;}
.yae{bottom:779.680000pt;}
.y128{bottom:780.000000pt;}
.y1bb{bottom:780.496000pt;}
.y1ad{bottom:780.501760pt;}
.y1ff{bottom:784.800000pt;}
.y22f{bottom:786.080000pt;}
.yf5{bottom:787.662720pt;}
.y193{bottom:789.280000pt;}
.y79{bottom:792.800000pt;}
.y8f{bottom:797.600000pt;}
.y1ba{bottom:798.410240pt;}
.y1ac{bottom:798.416000pt;}
.y12{bottom:800.480000pt;}
.yad{bottom:800.800000pt;}
.y127{bottom:801.280000pt;}
.y37{bottom:803.200000pt;}
.y22e{bottom:804.480000pt;}
.y1fe{bottom:805.920000pt;}
.y15c{bottom:808.000000pt;}
.yf4{bottom:810.066560pt;}
.y58{bottom:813.920000pt;}
.y192{bottom:815.680000pt;}
.y1b9{bottom:816.324480pt;}
.y1ab{bottom:816.330240pt;}
.y8e{bottom:818.880000pt;}
.y11{bottom:820.634560pt;}
.yac{bottom:821.920000pt;}
.y126{bottom:822.400000pt;}
.y22d{bottom:822.880000pt;}
.y213{bottom:824.640000pt;}
.y1fd{bottom:827.200000pt;}
.y36{bottom:832.320000pt;}
.yf3{bottom:832.470400pt;}
.y191{bottom:834.080000pt;}
.y1b8{bottom:834.091520pt;}
.y1aa{bottom:834.097280pt;}
.y57{bottom:835.200000pt;}
.y10{bottom:839.200000pt;}
.yab{bottom:843.200000pt;}
.y125{bottom:843.520000pt;}
.y8d{bottom:845.760000pt;}
.y1fc{bottom:848.320000pt;}
.y14b{bottom:849.280000pt;}
.y167{bottom:851.840000pt;}
.y1b7{bottom:852.005760pt;}
.y1a9{bottom:852.011520pt;}
.y190{bottom:852.480000pt;}
.yf2{bottom:854.712320pt;}
.y56{bottom:856.320000pt;}
.yf{bottom:858.880000pt;}
.y35{bottom:861.440000pt;}
.yaa{bottom:864.320000pt;}
.y124{bottom:864.640000pt;}
.y15b{bottom:866.560000pt;}
.y22c{bottom:867.680000pt;}
.y166{bottom:869.764480pt;}
.y1b6{bottom:869.920000pt;}
.y1a8{bottom:869.925760pt;}
.y18f{bottom:870.880000pt;}
.y14a{bottom:875.520000pt;}
.yf1{bottom:877.116160pt;}
.y55{bottom:877.440000pt;}
.ye{bottom:881.280000pt;}
.y8c{bottom:885.440000pt;}
.y22b{bottom:885.920000pt;}
.y165{bottom:887.678720pt;}
.y161{bottom:887.685760pt;}
.y1a7{bottom:887.840000pt;}
.y18e{bottom:889.280000pt;}
.y34{bottom:890.560000pt;}
.y123{bottom:891.520000pt;}
.y15a{bottom:892.960000pt;}
.y78{bottom:898.560000pt;}
.yf0{bottom:899.520000pt;}
.y149{bottom:901.920000pt;}
.y164{bottom:905.592960pt;}
.y160{bottom:905.600000pt;}
.y54{bottom:906.560000pt;}
.y18d{bottom:907.680000pt;}
.y159{bottom:911.360000pt;}
.y22a{bottom:912.320000pt;}
.yd{bottom:919.363840pt;}
.y33{bottom:919.680000pt;}
.y148{bottom:920.320000pt;}
.y163{bottom:923.360000pt;}
.y15f{bottom:923.365760pt;}
.y18c{bottom:926.080000pt;}
.y53{bottom:927.680000pt;}
.y229{bottom:930.720000pt;}
.y147{bottom:938.720000pt;}
.yc{bottom:940.480000pt;}
.y32{bottom:940.960000pt;}
.y15e{bottom:941.280000pt;}
.y1a5{bottom:947.360000pt;}
.y52{bottom:948.960000pt;}
.y18b{bottom:952.640000pt;}
.y146{bottom:957.120000pt;}
.y77{bottom:962.080000pt;}
.y31{bottom:970.080000pt;}
.y157{bottom:973.760000pt;}
.y145{bottom:975.520000pt;}
.yb{bottom:985.753920pt;}
.y110{bottom:985.920000pt;}
.y30{bottom:991.200000pt;}
.y144{bottom:993.920000pt;}
.ya{bottom:1008.480000pt;}
.y2f{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h11{height:26.400000pt;}
.h5{height:29.118667pt;}
.h14{height:30.324375pt;}
.h3{height:34.453125pt;}
.h10{height:40.365000pt;}
.hf{height:42.262500pt;}
.ha{height:43.471250pt;}
.hb{height:43.812500pt;}
.h19{height:44.437500pt;}
.h16{height:46.609688pt;}
.h15{height:46.629527pt;}
.he{height:50.321250pt;}
.h9{height:52.375000pt;}
.hc{height:54.514687pt;}
.h4{height:56.156250pt;}
.h8{height:56.565000pt;}
.h6{height:61.278750pt;}
.hd{height:61.944688pt;}
.h2{height:67.200000pt;}
.h7{height:69.683070pt;}
.h12{height:165.120000pt;}
.h13{height:204.960000pt;}
.h17{height:286.400000pt;}
.h18{height:312.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w3{width:83.200000pt;}
.w8{width:245.120000pt;}
.w4{width:250.080000pt;}
.w5{width:252.160000pt;}
.wa{width:273.440000pt;}
.w9{width:282.560000pt;}
.w7{width:310.880000pt;}
.w6{width:556.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x28{left:16.320000pt;}
.x21{left:30.880000pt;}
.x2b{left:40.320000pt;}
.x1b{left:102.400000pt;}
.x1d{left:107.840000pt;}
.x3{left:113.440000pt;}
.x8{left:128.000000pt;}
.x18{left:131.840000pt;}
.x1{left:135.200000pt;}
.x11{left:137.280000pt;}
.x1e{left:138.720000pt;}
.x23{left:143.680000pt;}
.x26{left:146.880000pt;}
.x12{left:160.949760pt;}
.x29{left:163.200000pt;}
.x2a{left:187.193600pt;}
.x6{left:209.280000pt;}
.x1a{left:215.680000pt;}
.x20{left:222.560000pt;}
.x1f{left:246.560000pt;}
.x13{left:254.720000pt;}
.x4{left:264.160000pt;}
.x15{left:285.440000pt;}
.x30{left:300.320000pt;}
.x33{left:301.600000pt;}
.x25{left:305.440000pt;}
.x16{left:308.000000pt;}
.x5{left:414.880000pt;}
.x10{left:425.120000pt;}
.x7{left:430.868640pt;}
.xe{left:443.680000pt;}
.x2e{left:446.400000pt;}
.x27{left:458.400000pt;}
.xc{left:463.680000pt;}
.x1c{left:466.400000pt;}
.x2f{left:470.400000pt;}
.x2{left:473.440000pt;}
.x2d{left:474.720000pt;}
.xf{left:494.240000pt;}
.x22{left:497.280000pt;}
.x2c{left:498.720000pt;}
.xb{left:519.840000pt;}
.xa{left:558.080000pt;}
.x9{left:598.085120pt;}
.x24{left:609.600000pt;}
.x34{left:631.200000pt;}
.x32{left:665.120000pt;}
.x31{left:677.120000pt;}
.x14{left:716.160000pt;}
.x17{left:727.200000pt;}
.xd{left:736.955840pt;}
}




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