
    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_2fd3c15774479da941318708.woff')format("woff");}.ff1{font-family:ff1;line-height:1.099609;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_a5be2fa88d3875e12115ed6c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_075c4534c4c056d0e39dce54.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f4dd37937868b119863c2379.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e5ac2467ed79669f70cac375.woff')format("woff");}.ff5{font-family:ff5;line-height:1.529785;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_07b0e891ebe1438fa73f2187.woff')format("woff");}.ff6{font-family:ff6;line-height:1.529785;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_af10fa790fce1fe8731b2deb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_d372b5672b51ab1c87d59888.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_2327774410ab2098b6db33d6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683594;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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls45{letter-spacing:-9.360000px;}
.ls56{letter-spacing:-8.640000px;}
.ls44{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.930000px;}
.ls55{letter-spacing:-0.792000px;}
.ls66{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.648000px;}
.ls57{letter-spacing:-0.576000px;}
.ls33{letter-spacing:-0.504000px;}
.lsac{letter-spacing:-0.363000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.325200px;}
.ls34{letter-spacing:-0.295200px;}
.lsb{letter-spacing:-0.288000px;}
.ls59{letter-spacing:-0.240600px;}
.ls98{letter-spacing:-0.234600px;}
.lsae{letter-spacing:-0.229800px;}
.ls90{letter-spacing:-0.226200px;}
.ls22{letter-spacing:-0.216000px;}
.lsba{letter-spacing:-0.188400px;}
.ls23{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.123000px;}
.ls58{letter-spacing:-0.072000px;}
.lsaf{letter-spacing:-0.001440px;}
.ls1b{letter-spacing:-0.000003px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000001px;}
.ls21{letter-spacing:0.015840px;}
.ls8{letter-spacing:0.023040px;}
.ls76{letter-spacing:0.036000px;}
.ls2a{letter-spacing:0.054720px;}
.lse{letter-spacing:0.063600px;}
.ls15{letter-spacing:0.072000px;}
.ls97{letter-spacing:0.072600px;}
.ls5c{letter-spacing:0.083520px;}
.ls99{letter-spacing:0.097800px;}
.ls0{letter-spacing:0.106560px;}
.ls7d{letter-spacing:0.108000px;}
.ls53{letter-spacing:0.109440px;}
.ls36{letter-spacing:0.115200px;}
.lsb9{letter-spacing:0.122400px;}
.ls26{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150000px;}
.ls2b{letter-spacing:0.154800px;}
.ls96{letter-spacing:0.160800px;}
.lsa9{letter-spacing:0.175200px;}
.ls1a{letter-spacing:0.216000px;}
.lsa8{letter-spacing:0.240600px;}
.ls9a{letter-spacing:0.259920px;}
.lsbb{letter-spacing:0.265200px;}
.ls1c{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.298800px;}
.ls31{letter-spacing:0.324000px;}
.ls95{letter-spacing:0.338400px;}
.ls5{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.418800px;}
.lsd{letter-spacing:0.432000px;}
.lsb1{letter-spacing:0.468000px;}
.ls43{letter-spacing:0.487440px;}
.ls3c{letter-spacing:0.504000px;}
.ls89{letter-spacing:0.576000px;}
.ls50{letter-spacing:0.624000px;}
.ls6a{letter-spacing:0.648000px;}
.ls67{letter-spacing:0.720000px;}
.lsab{letter-spacing:0.725040px;}
.ls42{letter-spacing:0.735840px;}
.ls2f{letter-spacing:0.775440px;}
.ls83{letter-spacing:0.792000px;}
.ls37{letter-spacing:0.936000px;}
.lsb8{letter-spacing:0.996000px;}
.ls8a{letter-spacing:1.368000px;}
.lsb2{letter-spacing:1.386000px;}
.ls5a{letter-spacing:1.656000px;}
.lsa7{letter-spacing:1.836000px;}
.ls1e{letter-spacing:2.088000px;}
.ls5d{letter-spacing:2.376000px;}
.ls7e{letter-spacing:2.496000px;}
.ls1d{letter-spacing:2.808000px;}
.ls7c{letter-spacing:3.096000px;}
.ls2e{letter-spacing:3.239280px;}
.ls85{letter-spacing:3.276000px;}
.ls14{letter-spacing:3.528000px;}
.ls4b{letter-spacing:3.816000px;}
.ls88{letter-spacing:3.996000px;}
.ls13{letter-spacing:4.248000px;}
.ls3d{letter-spacing:4.536000px;}
.ls3a{letter-spacing:4.968000px;}
.ls7b{letter-spacing:5.112000px;}
.ls87{letter-spacing:5.256000px;}
.lsb3{letter-spacing:5.400000px;}
.lsb7{letter-spacing:5.472000px;}
.ls7a{letter-spacing:5.533920px;}
.lsb5{letter-spacing:5.616000px;}
.ls10{letter-spacing:5.688000px;}
.ls8d{letter-spacing:5.760000px;}
.ls72{letter-spacing:5.796000px;}
.ls71{letter-spacing:5.832000px;}
.ls6f{letter-spacing:5.904000px;}
.ls47{letter-spacing:5.976000px;}
.ls70{letter-spacing:6.048000px;}
.ls8e{letter-spacing:6.060000px;}
.ls4{letter-spacing:6.247440px;}
.ls82{letter-spacing:6.366240px;}
.lsf{letter-spacing:6.408000px;}
.ls8b{letter-spacing:6.420000px;}
.ls8f{letter-spacing:6.480000px;}
.ls81{letter-spacing:6.552000px;}
.ls74{letter-spacing:6.624000px;}
.ls41{letter-spacing:6.696000px;}
.ls8c{letter-spacing:6.780000px;}
.ls27{letter-spacing:7.128000px;}
.ls3f{letter-spacing:7.416000px;}
.ls39{letter-spacing:7.848000px;}
.ls51{letter-spacing:8.136000px;}
.lsa5{letter-spacing:8.496000px;}
.ls38{letter-spacing:8.568000px;}
.lsa1{letter-spacing:8.640000px;}
.lsa3{letter-spacing:8.760000px;}
.ls9e{letter-spacing:8.784000px;}
.ls16{letter-spacing:9.288000px;}
.lsa2{letter-spacing:9.360000px;}
.ls17{letter-spacing:9.468000px;}
.lsa6{letter-spacing:9.504000px;}
.ls80{letter-spacing:9.576000px;}
.lsa0{letter-spacing:9.624000px;}
.lsaa{letter-spacing:9.660000px;}
.ls19{letter-spacing:10.008000px;}
.ls4d{letter-spacing:10.296000px;}
.ls91{letter-spacing:10.728000px;}
.ls78{letter-spacing:11.016000px;}
.lsb0{letter-spacing:11.196000px;}
.ls4f{letter-spacing:11.448000px;}
.ls4e{letter-spacing:11.628000px;}
.ls52{letter-spacing:11.736000px;}
.ls48{letter-spacing:12.168000px;}
.ls9b{letter-spacing:12.888000px;}
.ls63{letter-spacing:13.896000px;}
.ls30{letter-spacing:14.387040px;}
.ls92{letter-spacing:14.616000px;}
.ls94{letter-spacing:14.736000px;}
.ls64{letter-spacing:15.048000px;}
.ls32{letter-spacing:15.107040px;}
.ls6{letter-spacing:16.327440px;}
.ls18{letter-spacing:16.488000px;}
.ls62{letter-spacing:16.776000px;}
.ls2{letter-spacing:17.208000px;}
.ls6d{letter-spacing:17.424000px;}
.ls5b{letter-spacing:17.496000px;}
.ls9d{letter-spacing:18.048000px;}
.ls9f{letter-spacing:18.144000px;}
.ls6c{letter-spacing:18.216000px;}
.ls25{letter-spacing:18.648000px;}
.lsa4{letter-spacing:19.008000px;}
.ls2d{letter-spacing:19.207440px;}
.ls60{letter-spacing:19.656000px;}
.ls61{letter-spacing:19.836000px;}
.ls65{letter-spacing:20.376000px;}
.ls75{letter-spacing:20.808000px;}
.ls6e{letter-spacing:23.976000px;}
.lsb4{letter-spacing:24.408000px;}
.lsad{letter-spacing:25.128000px;}
.ls69{letter-spacing:26.568000px;}
.ls68{letter-spacing:27.288000px;}
.ls6b{letter-spacing:27.360000px;}
.ls3e{letter-spacing:27.504000px;}
.ls1f{letter-spacing:28.728000px;}
.ls28{letter-spacing:29.448000px;}
.ls7f{letter-spacing:29.736000px;}
.ls29{letter-spacing:30.888000px;}
.ls40{letter-spacing:31.608000px;}
.ls84{letter-spacing:32.123520px;}
.ls11{letter-spacing:32.328000px;}
.ls86{letter-spacing:32.400000px;}
.ls5f{letter-spacing:32.448000px;}
.ls46{letter-spacing:32.472000px;}
.ls73{letter-spacing:32.616000px;}
.ls49{letter-spacing:35.928000px;}
.ls4c{letter-spacing:36.144000px;}
.ls9c{letter-spacing:37.368000px;}
.ls79{letter-spacing:38.880000px;}
.ls4a{letter-spacing:39.996000px;}
.lsb6{letter-spacing:41.688000px;}
.ls77{letter-spacing:43.416000px;}
.ls93{letter-spacing:44.640000px;}
.ls20{letter-spacing:46.008000px;}
.ls1{letter-spacing:50.506560px;}
.ls5e{letter-spacing:68.544000px;}
.ls3b{letter-spacing:72.144000px;}
.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;}
}
.ws7b{word-spacing:-27.444000px;}
.ws7c{word-spacing:-27.360000px;}
.ws79{word-spacing:-26.544000px;}
.ws6b{word-spacing:-26.064000px;}
.ws82{word-spacing:-25.704000px;}
.ws5a{word-spacing:-24.564000px;}
.ws5f{word-spacing:-24.264000px;}
.ws59{word-spacing:-24.204000px;}
.ws5d{word-spacing:-23.844000px;}
.ws4b{word-spacing:-23.688000px;}
.ws5b{word-spacing:-23.544000px;}
.ws5e{word-spacing:-23.472000px;}
.ws2d{word-spacing:-21.168000px;}
.ws55{word-spacing:-20.808000px;}
.ws3f{word-spacing:-20.592000px;}
.wsd{word-spacing:-20.448000px;}
.ws6e{word-spacing:-20.376000px;}
.wsa{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232001px;}
.ws4{word-spacing:-20.232000px;}
.wse{word-spacing:-20.231997px;}
.ws63{word-spacing:-20.160000px;}
.wsc{word-spacing:-20.088000px;}
.ws1a{word-spacing:-20.016000px;}
.wsf{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.872000px;}
.ws4a{word-spacing:-19.728000px;}
.ws4f{word-spacing:-19.656000px;}
.ws3e{word-spacing:-19.440000px;}
.ws4c{word-spacing:-19.368000px;}
.ws2{word-spacing:-18.636480px;}
.ws0{word-spacing:-18.613440px;}
.ws3{word-spacing:-18.288240px;}
.ws3a{word-spacing:-18.072000px;}
.ws19{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.ws2a{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws29{word-spacing:-17.712000px;}
.ws56{word-spacing:-17.568000px;}
.ws58{word-spacing:-17.496000px;}
.ws50{word-spacing:-17.280000px;}
.ws7{word-spacing:-17.152560px;}
.ws65{word-spacing:-16.992000px;}
.ws71{word-spacing:-16.953360px;}
.wsb{word-spacing:-16.792560px;}
.ws70{word-spacing:-16.557960px;}
.ws12{word-spacing:-16.497360px;}
.ws73{word-spacing:-16.375800px;}
.ws74{word-spacing:-16.310400px;}
.ws72{word-spacing:-16.233000px;}
.ws81{word-spacing:-16.133760px;}
.ws53{word-spacing:-15.848640px;}
.ws80{word-spacing:-15.772200px;}
.ws1{word-spacing:-15.174000px;}
.ws6f{word-spacing:-14.833320px;}
.ws6{word-spacing:-14.760720px;}
.ws13{word-spacing:-14.637720px;}
.ws83{word-spacing:-12.730560px;}
.ws86{word-spacing:-11.999760px;}
.ws84{word-spacing:-11.856960px;}
.ws26{word-spacing:-11.592000px;}
.ws85{word-spacing:-11.546160px;}
.ws1b{word-spacing:-10.872000px;}
.ws18{word-spacing:-10.314720px;}
.ws6a{word-spacing:-10.088520px;}
.ws49{word-spacing:-9.144000px;}
.ws16{word-spacing:-8.892000px;}
.ws1f{word-spacing:-8.424000px;}
.ws1d{word-spacing:-1.008000px;}
.ws2f{word-spacing:-0.648000px;}
.ws51{word-spacing:-0.504000px;}
.ws1c{word-spacing:-0.491040px;}
.ws17{word-spacing:-0.385200px;}
.ws67{word-spacing:-0.360000px;}
.ws23{word-spacing:-0.216000px;}
.ws2b{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.144000px;}
.ws8{word-spacing:0.000000px;}
.ws1e{word-spacing:0.072000px;}
.ws21{word-spacing:0.216000px;}
.ws30{word-spacing:0.292680px;}
.ws4d{word-spacing:0.360000px;}
.ws44{word-spacing:0.576000px;}
.ws52{word-spacing:0.792000px;}
.ws2e{word-spacing:0.972000px;}
.ws47{word-spacing:1.080000px;}
.ws64{word-spacing:1.152000px;}
.ws22{word-spacing:1.224000px;}
.ws27{word-spacing:1.584000px;}
.ws14{word-spacing:2.438640px;}
.ws33{word-spacing:3.672000px;}
.ws32{word-spacing:8.760000px;}
.ws7d{word-spacing:8.856000px;}
.ws42{word-spacing:8.928000px;}
.ws43{word-spacing:9.000000px;}
.ws4e{word-spacing:9.144000px;}
.ws61{word-spacing:9.216000px;}
.ws31{word-spacing:9.360000px;}
.ws66{word-spacing:9.396000px;}
.ws7e{word-spacing:9.576000px;}
.ws39{word-spacing:9.720000px;}
.ws5c{word-spacing:9.792009px;}
.ws60{word-spacing:9.936000px;}
.ws62{word-spacing:10.080000px;}
.ws20{word-spacing:11.016000px;}
.ws3d{word-spacing:11.280000px;}
.ws15{word-spacing:11.928960px;}
.ws41{word-spacing:14.256000px;}
.ws3c{word-spacing:14.328000px;}
.ws36{word-spacing:14.364000px;}
.ws2c{word-spacing:14.472000px;}
.ws6d{word-spacing:14.544000px;}
.ws24{word-spacing:14.616000px;}
.ws40{word-spacing:14.760000px;}
.ws35{word-spacing:14.976000px;}
.ws25{word-spacing:15.048000px;}
.ws78{word-spacing:15.156000px;}
.ws69{word-spacing:16.056000px;}
.ws46{word-spacing:16.236000px;}
.ws38{word-spacing:16.488000px;}
.ws34{word-spacing:16.956000px;}
.ws28{word-spacing:18.144000px;}
.ws37{word-spacing:18.432000px;}
.ws3b{word-spacing:19.872000px;}
.ws54{word-spacing:21.096000px;}
.ws48{word-spacing:27.000000px;}
.ws6c{word-spacing:27.036000px;}
.ws77{word-spacing:27.144000px;}
.ws7a{word-spacing:27.324000px;}
.ws75{word-spacing:27.648000px;}
.ws57{word-spacing:27.720000px;}
.ws76{word-spacing:27.936000px;}
.ws7f{word-spacing:32.760000px;}
.ws68{word-spacing:68.472000px;}
._27{margin-left:-10.337760px;}
._26{margin-left:-8.730240px;}
._2c{margin-left:-5.604000px;}
._e{margin-left:-4.464000px;}
._b{margin-left:-2.592000px;}
._0{margin-left:-1.080000px;}
._1{width:1.536000px;}
._7{width:3.033120px;}
._8{width:4.173120px;}
._10{width:5.527440px;}
._11{width:6.633360px;}
._17{width:7.848000px;}
._d{width:9.408000px;}
._4{width:11.194560px;}
._3{width:12.208320px;}
._c{width:13.824000px;}
._18{width:15.168000px;}
._2{width:16.626240px;}
._f{width:17.975520px;}
._1b{width:19.069440px;}
._9{width:20.600640px;}
._a{width:21.668160px;}
._22{width:23.832000px;}
._15{width:24.984000px;}
._14{width:26.064000px;}
._25{width:27.552000px;}
._1e{width:28.872000px;}
._24{width:29.892000px;}
._23{width:30.960000px;}
._16{width:32.112000px;}
._21{width:33.480000px;}
._19{width:34.920000px;}
._1a{width:35.928000px;}
._1d{width:37.740000px;}
._1c{width:39.024000px;}
._30{width:40.680000px;}
._31{width:42.180000px;}
._20{width:44.508000px;}
._1f{width:45.840000px;}
._6{width:49.174080px;}
._5{width:50.341920px;}
._28{width:51.402960px;}
._2a{width:59.456880px;}
._2b{width:62.629440px;}
._29{width:89.818080px;}
._2d{width:111.383280px;}
._2f{width:115.516080px;}
._2e{width:117.069840px;}
._12{width:387.976320px;}
._13{width:649.587600px;}
._32{width:852.240720px;}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yea{bottom:7.380000px;}
.y10f{bottom:9.000000px;}
.ydf{bottom:9.180000px;}
.y10b{bottom:10.800000px;}
.yda{bottom:12.240000px;}
.y118{bottom:12.285000px;}
.ydb{bottom:24.660000px;}
.ye9{bottom:27.360000px;}
.yde{bottom:30.780000px;}
.y10c{bottom:30.825000px;}
.ydc{bottom:37.260000px;}
.y34{bottom:46.836000px;}
.ye8{bottom:47.340000px;}
.y110{bottom:52.380000px;}
.ye0{bottom:52.560000px;}
.y10d{bottom:52.605000px;}
.y33{bottom:64.836000px;}
.y32{bottom:81.576000px;}
.y2c{bottom:88.956000px;}
.y31{bottom:100.656000px;}
.y2b{bottom:105.696000px;}
.y134{bottom:117.036000px;}
.y5c{bottom:117.576000px;}
.yd7{bottom:120.636000px;}
.y2a{bottom:122.436000px;}
.y5b{bottom:122.796000px;}
.ye5{bottom:123.696000px;}
.y29{bottom:127.656000px;}
.y135{bottom:128.916000px;}
.y112{bottom:133.056000px;}
.yca{bottom:133.776000px;}
.y5a{bottom:134.136000px;}
.yd6{bottom:134.856000px;}
.yc0{bottom:137.196000px;}
.y28{bottom:138.996000px;}
.ya9{bottom:139.356000px;}
.y133{bottom:144.216000px;}
.y12e{bottom:147.096000px;}
.y59{bottom:150.870000px;}
.ybf{bottom:151.410000px;}
.y108{bottom:153.930000px;}
.y27{bottom:155.730000px;}
.y83{bottom:156.090000px;}
.ye4{bottom:158.610000px;}
.yc9{bottom:158.970000px;}
.y132{bottom:159.150000px;}
.y58{bottom:167.610000px;}
.y111{bottom:167.790000px;}
.y107{bottom:168.150000px;}
.y26{bottom:172.470000px;}
.y57{bottom:172.830000px;}
.y131{bottom:174.090000px;}
.y12d{bottom:177.150000px;}
.y25{bottom:177.690000px;}
.yd5{bottom:183.810000px;}
.y56{bottom:184.170000px;}
.ya8{bottom:187.230000px;}
.yc8{bottom:189.030000px;}
.y24{bottom:189.210000px;}
.y93{bottom:189.390000px;}
.y23{bottom:192.270000px;}
.ye3{bottom:193.350000px;}
.y55{bottom:200.910000px;}
.ya7{bottom:201.450000px;}
.y10e{bottom:202.710000px;}
.y130{bottom:205.230000px;}
.y54{bottom:206.130000px;}
.y22{bottom:206.310000px;}
.y12c{bottom:207.210000px;}
.yd4{bottom:209.010000px;}
.ybe{bottom:213.870000px;}
.y53{bottom:217.650000px;}
.y106{bottom:218.190000px;}
.yc7{bottom:219.090000px;}
.y154{bottom:220.350000px;}
.y61{bottom:222.870000px;}
.ye2{bottom:228.090000px;}
.y52{bottom:234.390000px;}
.y12b{bottom:237.270000px;}
.y21{bottom:237.990000px;}
.ybd{bottom:239.070000px;}
.y82{bottom:239.610000px;}
.y105{bottom:243.390000px;}
.yd3{bottom:245.010000px;}
.y153{bottom:245.370000px;}
.yc6{bottom:249.150000px;}
.y51{bottom:250.950000px;}
.y92{bottom:251.490000px;}
.y50{bottom:254.010000px;}
.y60{bottom:256.170000px;}
.ye1{bottom:263.010000px;}
.y12a{bottom:267.150000px;}
.y81{bottom:267.690000px;}
.y20{bottom:268.050000px;}
.y4f{bottom:268.230000px;}
.y10a{bottom:268.410000px;}
.ybc{bottom:269.130000px;}
.y104{bottom:273.270000px;}
.y152{bottom:275.430000px;}
.ya6{bottom:279.210000px;}
.y91{bottom:284.115000px;}
.y80{bottom:284.475000px;}
.yd2{bottom:294.015000px;}
.y129{bottom:297.255000px;}
.ydd{bottom:297.795000px;}
.y1f{bottom:298.155000px;}
.yba{bottom:299.235000px;}
.y7f{bottom:301.035000px;}
.y103{bottom:303.375000px;}
.yc5{bottom:304.095000px;}
.ybb{bottom:305.175000px;}
.y151{bottom:305.535000px;}
.y7e{bottom:306.255000px;}
.y4e{bottom:309.135000px;}
.y5f{bottom:315.075000px;}
.y7d{bottom:317.775000px;}
.yd1{bottom:319.215000px;}
.y128{bottom:327.315000px;}
.y1d{bottom:328.215000px;}
.yb9{bottom:329.295000px;}
.y102{bottom:333.435000px;}
.y1e{bottom:334.155000px;}
.y7c{bottom:334.515000px;}
.y150{bottom:335.595000px;}
.y4d{bottom:339.195000px;}
.yd0{bottom:349.275000px;}
.y7b{bottom:351.075000px;}
.y127{bottom:357.375000px;}
.y1c{bottom:358.275000px;}
.yb8{bottom:359.175000px;}
.y101{bottom:363.495000px;}
.yd9{bottom:363.675000px;}
.y90{bottom:364.035000px;}
.y14f{bottom:365.655000px;}
.y7a{bottom:367.815000px;}
.y4b{bottom:369.255000px;}
.y79{bottom:373.035000px;}
.y4c{bottom:375.195000px;}
.ycf{bottom:379.335000px;}
.y78{bottom:384.555000px;}
.y126{bottom:387.435000px;}
.y1b{bottom:388.335000px;}
.y8f{bottom:389.235000px;}
.y100{bottom:393.555000px;}
.yb7{bottom:395.175000px;}
.y14e{bottom:395.535000px;}
.y4a{bottom:399.315000px;}
.y77{bottom:401.115000px;}
.y5e{bottom:405.255000px;}
.yce{bottom:409.395000px;}
.y125{bottom:417.495000px;}
.y76{bottom:417.855000px;}
.y1a{bottom:418.215000px;}
.y8e{bottom:419.295000px;}
.yff{bottom:423.615000px;}
.y14d{bottom:425.595000px;}
.y49{bottom:429.375000px;}
.y109{bottom:434.235000px;}
.y75{bottom:434.595000px;}
.ycd{bottom:439.275000px;}
.y74{bottom:439.815000px;}
.y8d{bottom:444.135000px;}
.y124{bottom:447.555000px;}
.y18{bottom:448.275000px;}
.yb6{bottom:449.355000px;}
.y73{bottom:451.335000px;}
.yfe{bottom:453.495000px;}
.y19{bottom:454.215000px;}
.y14c{bottom:455.655000px;}
.y48{bottom:459.435000px;}
.y72{bottom:467.895000px;}
.y8c{bottom:469.335000px;}
.y123{bottom:477.435000px;}
.yb5{bottom:479.415000px;}
.y17{bottom:481.395000px;}
.yfd{bottom:483.555000px;}
.y71{bottom:484.635000px;}
.y14b{bottom:485.715000px;}
.y47{bottom:489.315000px;}
.y8b{bottom:499.395000px;}
.y70{bottom:501.915000px;}
.y122{bottom:507.495000px;}
.yb4{bottom:509.475000px;}
.y16{bottom:510.195000px;}
.yfc{bottom:513.615000px;}
.y14a{bottom:515.775000px;}
.y46{bottom:519.375000px;}
.y8a{bottom:529.455000px;}
.y121{bottom:537.555000px;}
.yb3{bottom:539.535000px;}
.y15{bottom:540.255000px;}
.yfb{bottom:543.675000px;}
.y149{bottom:545.835000px;}
.y6e{bottom:547.815000px;}
.y45{bottom:549.435000px;}
.y6f{bottom:553.755000px;}
.ya5{bottom:555.375000px;}
.y89{bottom:559.515000px;}
.yb2{bottom:564.375000px;}
.y120{bottom:567.645000px;}
.y14{bottom:570.165000px;}
.yfa{bottom:573.765000px;}
.y148{bottom:575.745000px;}
.y6c{bottom:577.905000px;}
.y44{bottom:579.525000px;}
.y6d{bottom:583.845000px;}
.ya4{bottom:585.465000px;}
.y88{bottom:589.605000px;}
.y11f{bottom:597.705000px;}
.y13{bottom:600.225000px;}
.yf9{bottom:603.825000px;}
.y147{bottom:605.805000px;}
.y6b{bottom:607.965000px;}
.y43{bottom:609.585000px;}
.y87{bottom:614.445000px;}
.yb1{bottom:619.485000px;}
.yf8{bottom:628.665000px;}
.y12{bottom:630.285000px;}
.y11e{bottom:630.645000px;}
.y146{bottom:635.865000px;}
.y69{bottom:637.845000px;}
.y42{bottom:639.645000px;}
.y6a{bottom:643.785000px;}
.y5d{bottom:645.585000px;}
.yb0{bottom:649.545000px;}
.yf7{bottom:653.865000px;}
.y11d{bottom:659.445000px;}
.y11{bottom:660.345000px;}
.y145{bottom:665.925000px;}
.y67{bottom:667.905000px;}
.y41{bottom:669.705000px;}
.y68{bottom:673.845000px;}
.yaf{bottom:679.605000px;}
.yf6{bottom:683.925000px;}
.y10{bottom:689.145000px;}
.y11c{bottom:689.505000px;}
.ya3{bottom:694.545000px;}
.y144{bottom:695.985000px;}
.y66{bottom:697.965000px;}
.y40{bottom:699.585000px;}
.yae{bottom:704.445000px;}
.y11b{bottom:705.345000px;}
.yc4{bottom:709.665000px;}
.yf5{bottom:713.805000px;}
.y65{bottom:716.145000px;}
.yf{bottom:716.685000px;}
.ya2{bottom:719.745000px;}
.yd8{bottom:724.605000px;}
.y143{bottom:726.045000px;}
.y3f{bottom:729.645000px;}
.yc3{bottom:739.725000px;}
.y11a{bottom:740.265000px;}
.y64{bottom:741.345000px;}
.yf4{bottom:743.865000px;}
.ye{bottom:744.225000px;}
.ya1{bottom:749.625000px;}
.y142{bottom:756.105000px;}
.y3e{bottom:759.705000px;}
.y63{bottom:760.965000px;}
.y86{bottom:765.645000px;}
.yc2{bottom:769.785000px;}
.yd{bottom:771.765000px;}
.yf3{bottom:773.925000px;}
.ya0{bottom:779.685000px;}
.yad{bottom:784.545000px;}
.y141{bottom:785.985000px;}
.y3d{bottom:789.765000px;}
.yc1{bottom:794.625000px;}
.yc{bottom:799.305000px;}
.ycc{bottom:799.845000px;}
.yf1{bottom:803.985000px;}
.y119{bottom:805.965000px;}
.y9f{bottom:809.745000px;}
.yf2{bottom:809.925000px;}
.y140{bottom:816.045000px;}
.y3c{bottom:819.825000px;}
.y12f{bottom:825.765000px;}
.yb{bottom:826.845000px;}
.ycb{bottom:829.725000px;}
.yef{bottom:834.045000px;}
.y9e{bottom:834.585000px;}
.yac{bottom:839.805000px;}
.yf0{bottom:839.985000px;}
.y117{bottom:840.885000px;}
.y13f{bottom:846.105000px;}
.y3b{bottom:849.930000px;}
.ya{bottom:854.430000px;}
.y85{bottom:855.870000px;}
.y9d{bottom:859.830000px;}
.yee{bottom:864.150000px;}
.yab{bottom:864.690000px;}
.y116{bottom:875.670000px;}
.y13e{bottom:876.210000px;}
.y39{bottom:879.810000px;}
.y9{bottom:881.970000px;}
.y3a{bottom:885.750000px;}
.y9c{bottom:889.890000px;}
.yed{bottom:894.210000px;}
.y13d{bottom:906.270000px;}
.y8{bottom:909.330000px;}
.y38{bottom:909.870000px;}
.y115{bottom:910.410000px;}
.y9a{bottom:919.950000px;}
.yec{bottom:924.090000px;}
.y9b{bottom:925.890000px;}
.y13c{bottom:936.330000px;}
.y37{bottom:939.930000px;}
.y7{bottom:941.190000px;}
.y114{bottom:945.330000px;}
.y99{bottom:950.010000px;}
.yeb{bottom:954.150000px;}
.y13b{bottom:966.210000px;}
.y6{bottom:969.990000px;}
.y97{bottom:980.070000px;}
.y98{bottom:986.010000px;}
.y13a{bottom:996.270000px;}
.y5{bottom:1000.050000px;}
.yaa{bottom:1004.910000px;}
.y84{bottom:1005.990000px;}
.y95{bottom:1009.950000px;}
.y113{bottom:1014.810000px;}
.y96{bottom:1015.890000px;}
.y157{bottom:1024.890000px;}
.y139{bottom:1026.330000px;}
.y4{bottom:1030.110000px;}
.y94{bottom:1034.970000px;}
.y36{bottom:1036.050000px;}
.y156{bottom:1044.870000px;}
.y138{bottom:1056.390000px;}
.y3{bottom:1060.170000px;}
.y155{bottom:1065.030000px;}
.ye7{bottom:1065.750000px;}
.y35{bottom:1066.110000px;}
.y137{bottom:1086.450000px;}
.y2{bottom:1090.050000px;}
.y62{bottom:1095.990000px;}
.ye6{bottom:1100.490000px;}
.y136{bottom:1119.750000px;}
.y1{bottom:1120.110000px;}
.y30{bottom:1149.840000px;}
.y2f{bottom:1174.140000px;}
.y2e{bottom:1191.060000px;}
.y2d{bottom:1207.800000px;}
.hb{height:30.568359px;}
.h9{height:33.013828px;}
.h15{height:34.020000px;}
.h12{height:34.056000px;}
.h13{height:34.200000px;}
.h7{height:35.459297px;}
.he{height:40.961602px;}
.h8{height:45.184219px;}
.h19{height:45.852539px;}
.h1a{height:49.113281px;}
.h10{height:50.040000px;}
.ha{height:50.743477px;}
.h14{height:51.618867px;}
.hf{height:53.162930px;}
.h4{height:56.245781px;}
.h16{height:59.940000px;}
.h3{height:61.136719px;}
.h2{height:62.191406px;}
.h18{height:64.980000px;}
.h11{height:65.160000px;}
.h17{height:65.196000px;}
.hc{height:65.858555px;}
.hd{height:71.529961px;}
.h5{height:72.999844px;}
.h6{height:79.347656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:70.920000px;}
.w7{width:70.956000px;}
.w8{width:71.100000px;}
.w9{width:71.136000px;}
.wc{width:71.496000px;}
.w6{width:142.596000px;}
.w5{width:142.776000px;}
.wb{width:143.136000px;}
.w4{width:147.780000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:7.740000px;}
.x1{left:127.655987px;}
.x46{left:159.689987px;}
.x6{left:167.969973px;}
.x1d{left:169.409973px;}
.x7{left:173.189987px;}
.x2{left:180.749987px;}
.xb{left:185.609987px;}
.x1c{left:189.749987px;}
.x20{left:191.009973px;}
.x24{left:195.869987px;}
.x21{left:201.449987px;}
.x29{left:207.749973px;}
.x2a{left:218.189987px;}
.x12{left:235.109973px;}
.x13{left:240.329987px;}
.xc{left:242.489987px;}
.x47{left:255.269987px;}
.x14{left:268.049973px;}
.x15{left:273.269987px;}
.x3a{left:276.870000px;}
.x37{left:287.894973px;}
.x3{left:297.794987px;}
.x2b{left:299.414973px;}
.x35{left:302.474973px;}
.x42{left:307.694987px;}
.x2c{left:309.854987px;}
.x36{left:312.914987px;}
.xa{left:343.694987px;}
.x3d{left:348.555000px;}
.x43{left:370.154973px;}
.x44{left:380.594987px;}
.x10{left:382.934973px;}
.x11{left:388.154987px;}
.x30{left:393.014987px;}
.x18{left:397.514973px;}
.x19{left:402.734987px;}
.x2e{left:421.094973px;}
.x40{left:427.214973px;}
.x2f{left:431.534987px;}
.x41{left:437.654987px;}
.x1a{left:482.684973px;}
.x1b{left:493.124987px;}
.x22{left:501.764973px;}
.x23{left:512.204987px;}
.x8{left:513.644973px;}
.x9{left:518.864987px;}
.x49{left:555.764987px;}
.x3b{left:564.045000px;}
.x38{left:580.244987px;}
.xd{left:587.804987px;}
.xe{left:604.004987px;}
.x1e{left:611.024973px;}
.x27{left:615.524973px;}
.x1f{left:621.464987px;}
.x28{left:625.964987px;}
.x3e{left:635.685000px;}
.x48{left:645.944987px;}
.x16{left:656.564973px;}
.x17{left:661.829987px;}
.x4a{left:671.729987px;}
.x31{left:673.169973px;}
.x33{left:678.209973px;}
.x32{left:683.609987px;}
.x34{left:688.649987px;}
.x45{left:699.269987px;}
.x3c{left:707.550000px;}
.x3f{left:779.190000px;}
.x25{left:813.029973px;}
.x2d{left:814.289973px;}
.x4{left:819.329973px;}
.x26{left:823.469987px;}
.x5{left:824.549987px;}
.xf{left:829.409987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls45{letter-spacing:-8.320000pt;}
.ls56{letter-spacing:-7.680000pt;}
.ls44{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.826667pt;}
.ls55{letter-spacing:-0.704000pt;}
.ls66{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.576000pt;}
.ls57{letter-spacing:-0.512000pt;}
.ls33{letter-spacing:-0.448000pt;}
.lsac{letter-spacing:-0.322667pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.289067pt;}
.ls34{letter-spacing:-0.262400pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls59{letter-spacing:-0.213867pt;}
.ls98{letter-spacing:-0.208533pt;}
.lsae{letter-spacing:-0.204267pt;}
.ls90{letter-spacing:-0.201067pt;}
.ls22{letter-spacing:-0.192000pt;}
.lsba{letter-spacing:-0.167467pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.109333pt;}
.ls58{letter-spacing:-0.064000pt;}
.lsaf{letter-spacing:-0.001280pt;}
.ls1b{letter-spacing:-0.000003pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000001pt;}
.ls21{letter-spacing:0.014080pt;}
.ls8{letter-spacing:0.020480pt;}
.ls76{letter-spacing:0.032000pt;}
.ls2a{letter-spacing:0.048640pt;}
.lse{letter-spacing:0.056533pt;}
.ls15{letter-spacing:0.064000pt;}
.ls97{letter-spacing:0.064533pt;}
.ls5c{letter-spacing:0.074240pt;}
.ls99{letter-spacing:0.086933pt;}
.ls0{letter-spacing:0.094720pt;}
.ls7d{letter-spacing:0.096000pt;}
.ls53{letter-spacing:0.097280pt;}
.ls36{letter-spacing:0.102400pt;}
.lsb9{letter-spacing:0.108800pt;}
.ls26{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133333pt;}
.ls2b{letter-spacing:0.137600pt;}
.ls96{letter-spacing:0.142933pt;}
.lsa9{letter-spacing:0.155733pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsa8{letter-spacing:0.213867pt;}
.ls9a{letter-spacing:0.231040pt;}
.lsbb{letter-spacing:0.235733pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls31{letter-spacing:0.288000pt;}
.ls95{letter-spacing:0.300800pt;}
.ls5{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.372267pt;}
.lsd{letter-spacing:0.384000pt;}
.lsb1{letter-spacing:0.416000pt;}
.ls43{letter-spacing:0.433280pt;}
.ls3c{letter-spacing:0.448000pt;}
.ls89{letter-spacing:0.512000pt;}
.ls50{letter-spacing:0.554667pt;}
.ls6a{letter-spacing:0.576000pt;}
.ls67{letter-spacing:0.640000pt;}
.lsab{letter-spacing:0.644480pt;}
.ls42{letter-spacing:0.654080pt;}
.ls2f{letter-spacing:0.689280pt;}
.ls83{letter-spacing:0.704000pt;}
.ls37{letter-spacing:0.832000pt;}
.lsb8{letter-spacing:0.885333pt;}
.ls8a{letter-spacing:1.216000pt;}
.lsb2{letter-spacing:1.232000pt;}
.ls5a{letter-spacing:1.472000pt;}
.lsa7{letter-spacing:1.632000pt;}
.ls1e{letter-spacing:1.856000pt;}
.ls5d{letter-spacing:2.112000pt;}
.ls7e{letter-spacing:2.218667pt;}
.ls1d{letter-spacing:2.496000pt;}
.ls7c{letter-spacing:2.752000pt;}
.ls2e{letter-spacing:2.879360pt;}
.ls85{letter-spacing:2.912000pt;}
.ls14{letter-spacing:3.136000pt;}
.ls4b{letter-spacing:3.392000pt;}
.ls88{letter-spacing:3.552000pt;}
.ls13{letter-spacing:3.776000pt;}
.ls3d{letter-spacing:4.032000pt;}
.ls3a{letter-spacing:4.416000pt;}
.ls7b{letter-spacing:4.544000pt;}
.ls87{letter-spacing:4.672000pt;}
.lsb3{letter-spacing:4.800000pt;}
.lsb7{letter-spacing:4.864000pt;}
.ls7a{letter-spacing:4.919040pt;}
.lsb5{letter-spacing:4.992000pt;}
.ls10{letter-spacing:5.056000pt;}
.ls8d{letter-spacing:5.120000pt;}
.ls72{letter-spacing:5.152000pt;}
.ls71{letter-spacing:5.184000pt;}
.ls6f{letter-spacing:5.248000pt;}
.ls47{letter-spacing:5.312000pt;}
.ls70{letter-spacing:5.376000pt;}
.ls8e{letter-spacing:5.386667pt;}
.ls4{letter-spacing:5.553280pt;}
.ls82{letter-spacing:5.658880pt;}
.lsf{letter-spacing:5.696000pt;}
.ls8b{letter-spacing:5.706667pt;}
.ls8f{letter-spacing:5.760000pt;}
.ls81{letter-spacing:5.824000pt;}
.ls74{letter-spacing:5.888000pt;}
.ls41{letter-spacing:5.952000pt;}
.ls8c{letter-spacing:6.026667pt;}
.ls27{letter-spacing:6.336000pt;}
.ls3f{letter-spacing:6.592000pt;}
.ls39{letter-spacing:6.976000pt;}
.ls51{letter-spacing:7.232000pt;}
.lsa5{letter-spacing:7.552000pt;}
.ls38{letter-spacing:7.616000pt;}
.lsa1{letter-spacing:7.680000pt;}
.lsa3{letter-spacing:7.786667pt;}
.ls9e{letter-spacing:7.808000pt;}
.ls16{letter-spacing:8.256000pt;}
.lsa2{letter-spacing:8.320000pt;}
.ls17{letter-spacing:8.416000pt;}
.lsa6{letter-spacing:8.448000pt;}
.ls80{letter-spacing:8.512000pt;}
.lsa0{letter-spacing:8.554667pt;}
.lsaa{letter-spacing:8.586667pt;}
.ls19{letter-spacing:8.896000pt;}
.ls4d{letter-spacing:9.152000pt;}
.ls91{letter-spacing:9.536000pt;}
.ls78{letter-spacing:9.792000pt;}
.lsb0{letter-spacing:9.952000pt;}
.ls4f{letter-spacing:10.176000pt;}
.ls4e{letter-spacing:10.336000pt;}
.ls52{letter-spacing:10.432000pt;}
.ls48{letter-spacing:10.816000pt;}
.ls9b{letter-spacing:11.456000pt;}
.ls63{letter-spacing:12.352000pt;}
.ls30{letter-spacing:12.788480pt;}
.ls92{letter-spacing:12.992000pt;}
.ls94{letter-spacing:13.098667pt;}
.ls64{letter-spacing:13.376000pt;}
.ls32{letter-spacing:13.428480pt;}
.ls6{letter-spacing:14.513280pt;}
.ls18{letter-spacing:14.656000pt;}
.ls62{letter-spacing:14.912000pt;}
.ls2{letter-spacing:15.296000pt;}
.ls6d{letter-spacing:15.488000pt;}
.ls5b{letter-spacing:15.552000pt;}
.ls9d{letter-spacing:16.042667pt;}
.ls9f{letter-spacing:16.128000pt;}
.ls6c{letter-spacing:16.192000pt;}
.ls25{letter-spacing:16.576000pt;}
.lsa4{letter-spacing:16.896000pt;}
.ls2d{letter-spacing:17.073280pt;}
.ls60{letter-spacing:17.472000pt;}
.ls61{letter-spacing:17.632000pt;}
.ls65{letter-spacing:18.112000pt;}
.ls75{letter-spacing:18.496000pt;}
.ls6e{letter-spacing:21.312000pt;}
.lsb4{letter-spacing:21.696000pt;}
.lsad{letter-spacing:22.336000pt;}
.ls69{letter-spacing:23.616000pt;}
.ls68{letter-spacing:24.256000pt;}
.ls6b{letter-spacing:24.320000pt;}
.ls3e{letter-spacing:24.448000pt;}
.ls1f{letter-spacing:25.536000pt;}
.ls28{letter-spacing:26.176000pt;}
.ls7f{letter-spacing:26.432000pt;}
.ls29{letter-spacing:27.456000pt;}
.ls40{letter-spacing:28.096000pt;}
.ls84{letter-spacing:28.554240pt;}
.ls11{letter-spacing:28.736000pt;}
.ls86{letter-spacing:28.800000pt;}
.ls5f{letter-spacing:28.842667pt;}
.ls46{letter-spacing:28.864000pt;}
.ls73{letter-spacing:28.992000pt;}
.ls49{letter-spacing:31.936000pt;}
.ls4c{letter-spacing:32.128000pt;}
.ls9c{letter-spacing:33.216000pt;}
.ls79{letter-spacing:34.560000pt;}
.ls4a{letter-spacing:35.552000pt;}
.lsb6{letter-spacing:37.056000pt;}
.ls77{letter-spacing:38.592000pt;}
.ls93{letter-spacing:39.680000pt;}
.ls20{letter-spacing:40.896000pt;}
.ls1{letter-spacing:44.894720pt;}
.ls5e{letter-spacing:60.928000pt;}
.ls3b{letter-spacing:64.128000pt;}
.ws7b{word-spacing:-24.394667pt;}
.ws7c{word-spacing:-24.320000pt;}
.ws79{word-spacing:-23.594667pt;}
.ws6b{word-spacing:-23.168000pt;}
.ws82{word-spacing:-22.848000pt;}
.ws5a{word-spacing:-21.834667pt;}
.ws5f{word-spacing:-21.568000pt;}
.ws59{word-spacing:-21.514667pt;}
.ws5d{word-spacing:-21.194667pt;}
.ws4b{word-spacing:-21.056000pt;}
.ws5b{word-spacing:-20.928000pt;}
.ws5e{word-spacing:-20.864000pt;}
.ws2d{word-spacing:-18.816000pt;}
.ws55{word-spacing:-18.496000pt;}
.ws3f{word-spacing:-18.304000pt;}
.wsd{word-spacing:-18.176000pt;}
.ws6e{word-spacing:-18.112000pt;}
.wsa{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984001pt;}
.ws4{word-spacing:-17.984000pt;}
.wse{word-spacing:-17.983997pt;}
.ws63{word-spacing:-17.920000pt;}
.wsc{word-spacing:-17.856000pt;}
.ws1a{word-spacing:-17.792000pt;}
.wsf{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws4a{word-spacing:-17.536000pt;}
.ws4f{word-spacing:-17.472000pt;}
.ws3e{word-spacing:-17.280000pt;}
.ws4c{word-spacing:-17.216000pt;}
.ws2{word-spacing:-16.565760pt;}
.ws0{word-spacing:-16.545280pt;}
.ws3{word-spacing:-16.256213pt;}
.ws3a{word-spacing:-16.064000pt;}
.ws19{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.ws2a{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws29{word-spacing:-15.744000pt;}
.ws56{word-spacing:-15.616000pt;}
.ws58{word-spacing:-15.552000pt;}
.ws50{word-spacing:-15.360000pt;}
.ws7{word-spacing:-15.246720pt;}
.ws65{word-spacing:-15.104000pt;}
.ws71{word-spacing:-15.069653pt;}
.wsb{word-spacing:-14.926720pt;}
.ws70{word-spacing:-14.718187pt;}
.ws12{word-spacing:-14.664320pt;}
.ws73{word-spacing:-14.556267pt;}
.ws74{word-spacing:-14.498133pt;}
.ws72{word-spacing:-14.429333pt;}
.ws81{word-spacing:-14.341120pt;}
.ws53{word-spacing:-14.087680pt;}
.ws80{word-spacing:-14.019733pt;}
.ws1{word-spacing:-13.488000pt;}
.ws6f{word-spacing:-13.185173pt;}
.ws6{word-spacing:-13.120640pt;}
.ws13{word-spacing:-13.011307pt;}
.ws83{word-spacing:-11.316053pt;}
.ws86{word-spacing:-10.666453pt;}
.ws84{word-spacing:-10.539520pt;}
.ws26{word-spacing:-10.304000pt;}
.ws85{word-spacing:-10.263253pt;}
.ws1b{word-spacing:-9.664000pt;}
.ws18{word-spacing:-9.168640pt;}
.ws6a{word-spacing:-8.967573pt;}
.ws49{word-spacing:-8.128000pt;}
.ws16{word-spacing:-7.904000pt;}
.ws1f{word-spacing:-7.488000pt;}
.ws1d{word-spacing:-0.896000pt;}
.ws2f{word-spacing:-0.576000pt;}
.ws51{word-spacing:-0.448000pt;}
.ws1c{word-spacing:-0.436480pt;}
.ws17{word-spacing:-0.342400pt;}
.ws67{word-spacing:-0.320000pt;}
.ws23{word-spacing:-0.192000pt;}
.ws2b{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.128000pt;}
.ws8{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.064000pt;}
.ws21{word-spacing:0.192000pt;}
.ws30{word-spacing:0.260160pt;}
.ws4d{word-spacing:0.320000pt;}
.ws44{word-spacing:0.512000pt;}
.ws52{word-spacing:0.704000pt;}
.ws2e{word-spacing:0.864000pt;}
.ws47{word-spacing:0.960000pt;}
.ws64{word-spacing:1.024000pt;}
.ws22{word-spacing:1.088000pt;}
.ws27{word-spacing:1.408000pt;}
.ws14{word-spacing:2.167680pt;}
.ws33{word-spacing:3.264000pt;}
.ws32{word-spacing:7.786667pt;}
.ws7d{word-spacing:7.872000pt;}
.ws42{word-spacing:7.936000pt;}
.ws43{word-spacing:8.000000pt;}
.ws4e{word-spacing:8.128000pt;}
.ws61{word-spacing:8.192000pt;}
.ws31{word-spacing:8.320000pt;}
.ws66{word-spacing:8.352000pt;}
.ws7e{word-spacing:8.512000pt;}
.ws39{word-spacing:8.640000pt;}
.ws5c{word-spacing:8.704008pt;}
.ws60{word-spacing:8.832000pt;}
.ws62{word-spacing:8.960000pt;}
.ws20{word-spacing:9.792000pt;}
.ws3d{word-spacing:10.026667pt;}
.ws15{word-spacing:10.603520pt;}
.ws41{word-spacing:12.672000pt;}
.ws3c{word-spacing:12.736000pt;}
.ws36{word-spacing:12.768000pt;}
.ws2c{word-spacing:12.864000pt;}
.ws6d{word-spacing:12.928000pt;}
.ws24{word-spacing:12.992000pt;}
.ws40{word-spacing:13.120000pt;}
.ws35{word-spacing:13.312000pt;}
.ws25{word-spacing:13.376000pt;}
.ws78{word-spacing:13.472000pt;}
.ws69{word-spacing:14.272000pt;}
.ws46{word-spacing:14.432000pt;}
.ws38{word-spacing:14.656000pt;}
.ws34{word-spacing:15.072000pt;}
.ws28{word-spacing:16.128000pt;}
.ws37{word-spacing:16.384000pt;}
.ws3b{word-spacing:17.664000pt;}
.ws54{word-spacing:18.752000pt;}
.ws48{word-spacing:24.000000pt;}
.ws6c{word-spacing:24.032000pt;}
.ws77{word-spacing:24.128000pt;}
.ws7a{word-spacing:24.288000pt;}
.ws75{word-spacing:24.576000pt;}
.ws57{word-spacing:24.640000pt;}
.ws76{word-spacing:24.832000pt;}
.ws7f{word-spacing:29.120000pt;}
.ws68{word-spacing:60.864000pt;}
._27{margin-left:-9.189120pt;}
._26{margin-left:-7.760213pt;}
._2c{margin-left:-4.981333pt;}
._e{margin-left:-3.968000pt;}
._b{margin-left:-2.304000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.365333pt;}
._7{width:2.696107pt;}
._8{width:3.709440pt;}
._10{width:4.913280pt;}
._11{width:5.896320pt;}
._17{width:6.976000pt;}
._d{width:8.362667pt;}
._4{width:9.950720pt;}
._3{width:10.851840pt;}
._c{width:12.288000pt;}
._18{width:13.482667pt;}
._2{width:14.778880pt;}
._f{width:15.978240pt;}
._1b{width:16.950613pt;}
._9{width:18.311680pt;}
._a{width:19.260587pt;}
._22{width:21.184000pt;}
._15{width:22.208000pt;}
._14{width:23.168000pt;}
._25{width:24.490667pt;}
._1e{width:25.664000pt;}
._24{width:26.570667pt;}
._23{width:27.520000pt;}
._16{width:28.544000pt;}
._21{width:29.760000pt;}
._19{width:31.040000pt;}
._1a{width:31.936000pt;}
._1d{width:33.546667pt;}
._1c{width:34.688000pt;}
._30{width:36.160000pt;}
._31{width:37.493333pt;}
._20{width:39.562667pt;}
._1f{width:40.746667pt;}
._6{width:43.710293pt;}
._5{width:44.748373pt;}
._28{width:45.691520pt;}
._2a{width:52.850560pt;}
._2b{width:55.670613pt;}
._29{width:79.838293pt;}
._2d{width:99.007360pt;}
._2f{width:102.680960pt;}
._2e{width:104.062080pt;}
._12{width:344.867840pt;}
._13{width:577.411200pt;}
._32{width:757.547307pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:6.560000pt;}
.y10f{bottom:8.000000pt;}
.ydf{bottom:8.160000pt;}
.y10b{bottom:9.600000pt;}
.yda{bottom:10.880000pt;}
.y118{bottom:10.920000pt;}
.ydb{bottom:21.920000pt;}
.ye9{bottom:24.320000pt;}
.yde{bottom:27.360000pt;}
.y10c{bottom:27.400000pt;}
.ydc{bottom:33.120000pt;}
.y34{bottom:41.632000pt;}
.ye8{bottom:42.080000pt;}
.y110{bottom:46.560000pt;}
.ye0{bottom:46.720000pt;}
.y10d{bottom:46.760000pt;}
.y33{bottom:57.632000pt;}
.y32{bottom:72.512000pt;}
.y2c{bottom:79.072000pt;}
.y31{bottom:89.472000pt;}
.y2b{bottom:93.952000pt;}
.y134{bottom:104.032000pt;}
.y5c{bottom:104.512000pt;}
.yd7{bottom:107.232000pt;}
.y2a{bottom:108.832000pt;}
.y5b{bottom:109.152000pt;}
.ye5{bottom:109.952000pt;}
.y29{bottom:113.472000pt;}
.y135{bottom:114.592000pt;}
.y112{bottom:118.272000pt;}
.yca{bottom:118.912000pt;}
.y5a{bottom:119.232000pt;}
.yd6{bottom:119.872000pt;}
.yc0{bottom:121.952000pt;}
.y28{bottom:123.552000pt;}
.ya9{bottom:123.872000pt;}
.y133{bottom:128.192000pt;}
.y12e{bottom:130.752000pt;}
.y59{bottom:134.106667pt;}
.ybf{bottom:134.586667pt;}
.y108{bottom:136.826667pt;}
.y27{bottom:138.426667pt;}
.y83{bottom:138.746667pt;}
.ye4{bottom:140.986667pt;}
.yc9{bottom:141.306667pt;}
.y132{bottom:141.466667pt;}
.y58{bottom:148.986667pt;}
.y111{bottom:149.146667pt;}
.y107{bottom:149.466667pt;}
.y26{bottom:153.306667pt;}
.y57{bottom:153.626667pt;}
.y131{bottom:154.746667pt;}
.y12d{bottom:157.466667pt;}
.y25{bottom:157.946667pt;}
.yd5{bottom:163.386667pt;}
.y56{bottom:163.706667pt;}
.ya8{bottom:166.426667pt;}
.yc8{bottom:168.026667pt;}
.y24{bottom:168.186667pt;}
.y93{bottom:168.346667pt;}
.y23{bottom:170.906667pt;}
.ye3{bottom:171.866667pt;}
.y55{bottom:178.586667pt;}
.ya7{bottom:179.066667pt;}
.y10e{bottom:180.186667pt;}
.y130{bottom:182.426667pt;}
.y54{bottom:183.226667pt;}
.y22{bottom:183.386667pt;}
.y12c{bottom:184.186667pt;}
.yd4{bottom:185.786667pt;}
.ybe{bottom:190.106667pt;}
.y53{bottom:193.466667pt;}
.y106{bottom:193.946667pt;}
.yc7{bottom:194.746667pt;}
.y154{bottom:195.866667pt;}
.y61{bottom:198.106667pt;}
.ye2{bottom:202.746667pt;}
.y52{bottom:208.346667pt;}
.y12b{bottom:210.906667pt;}
.y21{bottom:211.546667pt;}
.ybd{bottom:212.506667pt;}
.y82{bottom:212.986667pt;}
.y105{bottom:216.346667pt;}
.yd3{bottom:217.786667pt;}
.y153{bottom:218.106667pt;}
.yc6{bottom:221.466667pt;}
.y51{bottom:223.066667pt;}
.y92{bottom:223.546667pt;}
.y50{bottom:225.786667pt;}
.y60{bottom:227.706667pt;}
.ye1{bottom:233.786667pt;}
.y12a{bottom:237.466667pt;}
.y81{bottom:237.946667pt;}
.y20{bottom:238.266667pt;}
.y4f{bottom:238.426667pt;}
.y10a{bottom:238.586667pt;}
.ybc{bottom:239.226667pt;}
.y104{bottom:242.906667pt;}
.y152{bottom:244.826667pt;}
.ya6{bottom:248.186667pt;}
.y91{bottom:252.546667pt;}
.y80{bottom:252.866667pt;}
.yd2{bottom:261.346667pt;}
.y129{bottom:264.226667pt;}
.ydd{bottom:264.706667pt;}
.y1f{bottom:265.026667pt;}
.yba{bottom:265.986667pt;}
.y7f{bottom:267.586667pt;}
.y103{bottom:269.666667pt;}
.yc5{bottom:270.306667pt;}
.ybb{bottom:271.266667pt;}
.y151{bottom:271.586667pt;}
.y7e{bottom:272.226667pt;}
.y4e{bottom:274.786667pt;}
.y5f{bottom:280.066667pt;}
.y7d{bottom:282.466667pt;}
.yd1{bottom:283.746667pt;}
.y128{bottom:290.946667pt;}
.y1d{bottom:291.746667pt;}
.yb9{bottom:292.706667pt;}
.y102{bottom:296.386667pt;}
.y1e{bottom:297.026667pt;}
.y7c{bottom:297.346667pt;}
.y150{bottom:298.306667pt;}
.y4d{bottom:301.506667pt;}
.yd0{bottom:310.466667pt;}
.y7b{bottom:312.066667pt;}
.y127{bottom:317.666667pt;}
.y1c{bottom:318.466667pt;}
.yb8{bottom:319.266667pt;}
.y101{bottom:323.106667pt;}
.yd9{bottom:323.266667pt;}
.y90{bottom:323.586667pt;}
.y14f{bottom:325.026667pt;}
.y7a{bottom:326.946667pt;}
.y4b{bottom:328.226667pt;}
.y79{bottom:331.586667pt;}
.y4c{bottom:333.506667pt;}
.ycf{bottom:337.186667pt;}
.y78{bottom:341.826667pt;}
.y126{bottom:344.386667pt;}
.y1b{bottom:345.186667pt;}
.y8f{bottom:345.986667pt;}
.y100{bottom:349.826667pt;}
.yb7{bottom:351.266667pt;}
.y14e{bottom:351.586667pt;}
.y4a{bottom:354.946667pt;}
.y77{bottom:356.546667pt;}
.y5e{bottom:360.226667pt;}
.yce{bottom:363.906667pt;}
.y125{bottom:371.106667pt;}
.y76{bottom:371.426667pt;}
.y1a{bottom:371.746667pt;}
.y8e{bottom:372.706667pt;}
.yff{bottom:376.546667pt;}
.y14d{bottom:378.306667pt;}
.y49{bottom:381.666667pt;}
.y109{bottom:385.986667pt;}
.y75{bottom:386.306667pt;}
.ycd{bottom:390.466667pt;}
.y74{bottom:390.946667pt;}
.y8d{bottom:394.786667pt;}
.y124{bottom:397.826667pt;}
.y18{bottom:398.466667pt;}
.yb6{bottom:399.426667pt;}
.y73{bottom:401.186667pt;}
.yfe{bottom:403.106667pt;}
.y19{bottom:403.746667pt;}
.y14c{bottom:405.026667pt;}
.y48{bottom:408.386667pt;}
.y72{bottom:415.906667pt;}
.y8c{bottom:417.186667pt;}
.y123{bottom:424.386667pt;}
.yb5{bottom:426.146667pt;}
.y17{bottom:427.906667pt;}
.yfd{bottom:429.826667pt;}
.y71{bottom:430.786667pt;}
.y14b{bottom:431.746667pt;}
.y47{bottom:434.946667pt;}
.y8b{bottom:443.906667pt;}
.y70{bottom:446.146667pt;}
.y122{bottom:451.106667pt;}
.yb4{bottom:452.866667pt;}
.y16{bottom:453.506667pt;}
.yfc{bottom:456.546667pt;}
.y14a{bottom:458.466667pt;}
.y46{bottom:461.666667pt;}
.y8a{bottom:470.626667pt;}
.y121{bottom:477.826667pt;}
.yb3{bottom:479.586667pt;}
.y15{bottom:480.226667pt;}
.yfb{bottom:483.266667pt;}
.y149{bottom:485.186667pt;}
.y6e{bottom:486.946667pt;}
.y45{bottom:488.386667pt;}
.y6f{bottom:492.226667pt;}
.ya5{bottom:493.666667pt;}
.y89{bottom:497.346667pt;}
.yb2{bottom:501.666667pt;}
.y120{bottom:504.573333pt;}
.y14{bottom:506.813333pt;}
.yfa{bottom:510.013333pt;}
.y148{bottom:511.773333pt;}
.y6c{bottom:513.693333pt;}
.y44{bottom:515.133333pt;}
.y6d{bottom:518.973333pt;}
.ya4{bottom:520.413333pt;}
.y88{bottom:524.093333pt;}
.y11f{bottom:531.293333pt;}
.y13{bottom:533.533333pt;}
.yf9{bottom:536.733333pt;}
.y147{bottom:538.493333pt;}
.y6b{bottom:540.413333pt;}
.y43{bottom:541.853333pt;}
.y87{bottom:546.173333pt;}
.yb1{bottom:550.653333pt;}
.yf8{bottom:558.813333pt;}
.y12{bottom:560.253333pt;}
.y11e{bottom:560.573333pt;}
.y146{bottom:565.213333pt;}
.y69{bottom:566.973333pt;}
.y42{bottom:568.573333pt;}
.y6a{bottom:572.253333pt;}
.y5d{bottom:573.853333pt;}
.yb0{bottom:577.373333pt;}
.yf7{bottom:581.213333pt;}
.y11d{bottom:586.173333pt;}
.y11{bottom:586.973333pt;}
.y145{bottom:591.933333pt;}
.y67{bottom:593.693333pt;}
.y41{bottom:595.293333pt;}
.y68{bottom:598.973333pt;}
.yaf{bottom:604.093333pt;}
.yf6{bottom:607.933333pt;}
.y10{bottom:612.573333pt;}
.y11c{bottom:612.893333pt;}
.ya3{bottom:617.373333pt;}
.y144{bottom:618.653333pt;}
.y66{bottom:620.413333pt;}
.y40{bottom:621.853333pt;}
.yae{bottom:626.173333pt;}
.y11b{bottom:626.973333pt;}
.yc4{bottom:630.813333pt;}
.yf5{bottom:634.493333pt;}
.y65{bottom:636.573333pt;}
.yf{bottom:637.053333pt;}
.ya2{bottom:639.773333pt;}
.yd8{bottom:644.093333pt;}
.y143{bottom:645.373333pt;}
.y3f{bottom:648.573333pt;}
.yc3{bottom:657.533333pt;}
.y11a{bottom:658.013333pt;}
.y64{bottom:658.973333pt;}
.yf4{bottom:661.213333pt;}
.ye{bottom:661.533333pt;}
.ya1{bottom:666.333333pt;}
.y142{bottom:672.093333pt;}
.y3e{bottom:675.293333pt;}
.y63{bottom:676.413333pt;}
.y86{bottom:680.573333pt;}
.yc2{bottom:684.253333pt;}
.yd{bottom:686.013333pt;}
.yf3{bottom:687.933333pt;}
.ya0{bottom:693.053333pt;}
.yad{bottom:697.373333pt;}
.y141{bottom:698.653333pt;}
.y3d{bottom:702.013333pt;}
.yc1{bottom:706.333333pt;}
.yc{bottom:710.493333pt;}
.ycc{bottom:710.973333pt;}
.yf1{bottom:714.653333pt;}
.y119{bottom:716.413333pt;}
.y9f{bottom:719.773333pt;}
.yf2{bottom:719.933333pt;}
.y140{bottom:725.373333pt;}
.y3c{bottom:728.733333pt;}
.y12f{bottom:734.013333pt;}
.yb{bottom:734.973333pt;}
.ycb{bottom:737.533333pt;}
.yef{bottom:741.373333pt;}
.y9e{bottom:741.853333pt;}
.yac{bottom:746.493333pt;}
.yf0{bottom:746.653333pt;}
.y117{bottom:747.453333pt;}
.y13f{bottom:752.093333pt;}
.y3b{bottom:755.493333pt;}
.ya{bottom:759.493333pt;}
.y85{bottom:760.773333pt;}
.y9d{bottom:764.293333pt;}
.yee{bottom:768.133333pt;}
.yab{bottom:768.613333pt;}
.y116{bottom:778.373333pt;}
.y13e{bottom:778.853333pt;}
.y39{bottom:782.053333pt;}
.y9{bottom:783.973333pt;}
.y3a{bottom:787.333333pt;}
.y9c{bottom:791.013333pt;}
.yed{bottom:794.853333pt;}
.y13d{bottom:805.573333pt;}
.y8{bottom:808.293333pt;}
.y38{bottom:808.773333pt;}
.y115{bottom:809.253333pt;}
.y9a{bottom:817.733333pt;}
.yec{bottom:821.413333pt;}
.y9b{bottom:823.013333pt;}
.y13c{bottom:832.293333pt;}
.y37{bottom:835.493333pt;}
.y7{bottom:836.613333pt;}
.y114{bottom:840.293333pt;}
.y99{bottom:844.453333pt;}
.yeb{bottom:848.133333pt;}
.y13b{bottom:858.853333pt;}
.y6{bottom:862.213333pt;}
.y97{bottom:871.173333pt;}
.y98{bottom:876.453333pt;}
.y13a{bottom:885.573333pt;}
.y5{bottom:888.933333pt;}
.yaa{bottom:893.253333pt;}
.y84{bottom:894.213333pt;}
.y95{bottom:897.733333pt;}
.y113{bottom:902.053333pt;}
.y96{bottom:903.013333pt;}
.y157{bottom:911.013333pt;}
.y139{bottom:912.293333pt;}
.y4{bottom:915.653333pt;}
.y94{bottom:919.973333pt;}
.y36{bottom:920.933333pt;}
.y156{bottom:928.773333pt;}
.y138{bottom:939.013333pt;}
.y3{bottom:942.373333pt;}
.y155{bottom:946.693333pt;}
.ye7{bottom:947.333333pt;}
.y35{bottom:947.653333pt;}
.y137{bottom:965.733333pt;}
.y2{bottom:968.933333pt;}
.y62{bottom:974.213333pt;}
.ye6{bottom:978.213333pt;}
.y136{bottom:995.333333pt;}
.y1{bottom:995.653333pt;}
.y30{bottom:1022.080000pt;}
.y2f{bottom:1043.680000pt;}
.y2e{bottom:1058.720000pt;}
.y2d{bottom:1073.600000pt;}
.hb{height:27.171875pt;}
.h9{height:29.345625pt;}
.h15{height:30.240000pt;}
.h12{height:30.272000pt;}
.h13{height:30.400000pt;}
.h7{height:31.519375pt;}
.he{height:36.410312pt;}
.h8{height:40.163750pt;}
.h19{height:40.757812pt;}
.h1a{height:43.656250pt;}
.h10{height:44.480000pt;}
.ha{height:45.105313pt;}
.h14{height:45.883437pt;}
.hf{height:47.255937pt;}
.h4{height:49.996250pt;}
.h16{height:53.280000pt;}
.h3{height:54.343750pt;}
.h2{height:55.281250pt;}
.h18{height:57.760000pt;}
.h11{height:57.920000pt;}
.h17{height:57.952000pt;}
.hc{height:58.540937pt;}
.hd{height:63.582187pt;}
.h5{height:64.888750pt;}
.h6{height:70.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:63.040000pt;}
.w7{width:63.072000pt;}
.w8{width:63.200000pt;}
.w9{width:63.232000pt;}
.wc{width:63.552000pt;}
.w6{width:126.752000pt;}
.w5{width:126.912000pt;}
.wb{width:127.232000pt;}
.w4{width:131.360000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:6.880000pt;}
.x1{left:113.471988pt;}
.x46{left:141.946655pt;}
.x6{left:149.306643pt;}
.x1d{left:150.586643pt;}
.x7{left:153.946655pt;}
.x2{left:160.666655pt;}
.xb{left:164.986655pt;}
.x1c{left:168.666655pt;}
.x20{left:169.786643pt;}
.x24{left:174.106655pt;}
.x21{left:179.066655pt;}
.x29{left:184.666643pt;}
.x2a{left:193.946655pt;}
.x12{left:208.986643pt;}
.x13{left:213.626655pt;}
.xc{left:215.546655pt;}
.x47{left:226.906655pt;}
.x14{left:238.266643pt;}
.x15{left:242.906655pt;}
.x3a{left:246.106667pt;}
.x37{left:255.906643pt;}
.x3{left:264.706655pt;}
.x2b{left:266.146643pt;}
.x35{left:268.866643pt;}
.x42{left:273.506655pt;}
.x2c{left:275.426655pt;}
.x36{left:278.146655pt;}
.xa{left:305.506655pt;}
.x3d{left:309.826667pt;}
.x43{left:329.026643pt;}
.x44{left:338.306655pt;}
.x10{left:340.386643pt;}
.x11{left:345.026655pt;}
.x30{left:349.346655pt;}
.x18{left:353.346643pt;}
.x19{left:357.986655pt;}
.x2e{left:374.306643pt;}
.x40{left:379.746643pt;}
.x2f{left:383.586655pt;}
.x41{left:389.026655pt;}
.x1a{left:429.053310pt;}
.x1b{left:438.333322pt;}
.x22{left:446.013310pt;}
.x23{left:455.293322pt;}
.x8{left:456.573310pt;}
.x9{left:461.213322pt;}
.x49{left:494.013322pt;}
.x3b{left:501.373333pt;}
.x38{left:515.773322pt;}
.xd{left:522.493322pt;}
.xe{left:536.893322pt;}
.x1e{left:543.133310pt;}
.x27{left:547.133310pt;}
.x1f{left:552.413322pt;}
.x28{left:556.413322pt;}
.x3e{left:565.053333pt;}
.x48{left:574.173322pt;}
.x16{left:583.613310pt;}
.x17{left:588.293322pt;}
.x4a{left:597.093322pt;}
.x31{left:598.373310pt;}
.x33{left:602.853310pt;}
.x32{left:607.653322pt;}
.x34{left:612.133322pt;}
.x45{left:621.573322pt;}
.x3c{left:628.933333pt;}
.x3f{left:692.613333pt;}
.x25{left:722.693310pt;}
.x2d{left:723.813310pt;}
.x4{left:728.293310pt;}
.x26{left:731.973322pt;}
.x5{left:732.933322pt;}
.xf{left:737.253322pt;}
}




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