
    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_0d6fa53deaa7b8d37940c882.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0c6ecabfdd8f8cdd04e8347c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_c7424708d2306311f3b8c9ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_742331d6e711669429844925.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_631ae42c94f7a74e781a6081.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_02302889812e75443623b3b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689941;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_10508ff516b482906ca1e6bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_f1fc2e06bd694dd60622318c.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2b3ebb58516f1b6d506a369c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c49d839bdddceaeed359e9da.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_46fb4baf8d53df7bd91d6b98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689941;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_bc108a40708fb648d1f85c30.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e08bb852471f60fe7ac81531.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_2e82c650cfc9f0041965bb71.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_07cf2025f52e506885bce03f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1bdc4062d981fcfe93def5f1.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_9a3fd0d2f41cb4134814a823.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m5{transform:matrix(0.000000,0.249517,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249517,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249517,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,0.249501,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249501,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249501,-0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249399,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249501,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249501,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249501,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,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);}
.m6{transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250346,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250494,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250508,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);}
.m2{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.759400px;}
.v5{vertical-align:-19.877400px;}
.v6{vertical-align:-9.571200px;}
.v4{vertical-align:-6.570000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:25.620000px;}
.ls2a{letter-spacing:-2.485085px;}
.ls2b{letter-spacing:-2.263642px;}
.ls3a{letter-spacing:-1.192320px;}
.ls14{letter-spacing:-1.126080px;}
.ls3c{letter-spacing:-0.861120px;}
.ls11{letter-spacing:-0.728640px;}
.ls2d{letter-spacing:-0.641004px;}
.ls2c{letter-spacing:-0.639725px;}
.ls10{letter-spacing:-0.596160px;}
.ls16{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.358560px;}
.ls15{letter-spacing:-0.331200px;}
.ls42{letter-spacing:-0.264960px;}
.lsf{letter-spacing:-0.239040px;}
.ls8{letter-spacing:-0.204480px;}
.ls33{letter-spacing:-0.160092px;}
.lsa{letter-spacing:-0.132480px;}
.ls26{letter-spacing:-0.086362px;}
.ls28{letter-spacing:-0.073814px;}
.lse{letter-spacing:-0.059760px;}
.ls25{letter-spacing:-0.057575px;}
.ls29{letter-spacing:-0.024605px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.024605px;}
.ls31{letter-spacing:0.047316px;}
.ls35{letter-spacing:0.083248px;}
.ls23{letter-spacing:0.098419px;}
.ls3d{letter-spacing:0.105984px;}
.lsb{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.132480px;}
.ls32{letter-spacing:0.160092px;}
.ls34{letter-spacing:0.189264px;}
.ls3{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.264960px;}
.ls3e{letter-spacing:0.284832px;}
.ls9{letter-spacing:0.306720px;}
.ls12{letter-spacing:0.331200px;}
.lsc{letter-spacing:0.358560px;}
.ls24{letter-spacing:0.596160px;}
.ls1a{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.728640px;}
.ls3f{letter-spacing:1.384416px;}
.ls1b{letter-spacing:1.457280px;}
.ls41{letter-spacing:1.947456px;}
.ls39{letter-spacing:2.132928px;}
.ls37{letter-spacing:2.185920px;}
.ls30{letter-spacing:4.305600px;}
.ls3b{letter-spacing:5.034240px;}
.ls6{letter-spacing:5.762880px;}
.ls22{letter-spacing:6.200025px;}
.ls7{letter-spacing:6.491520px;}
.ls19{letter-spacing:7.140672px;}
.ls38{letter-spacing:7.869312px;}
.ls2e{letter-spacing:8.611200px;}
.ls40{letter-spacing:9.339840px;}
.ls5{letter-spacing:10.068480px;}
.ls1e{letter-spacing:10.797120px;}
.ls21{letter-spacing:11.505888px;}
.ls1f{letter-spacing:11.525760px;}
.ls2f{letter-spacing:13.711680px;}
.ls4{letter-spacing:18.017280px;}
.ls1d{letter-spacing:22.322880px;}
.ls1c{letter-spacing:23.051520px;}
.ls17{letter-spacing:25.899840px;}
.ls18{letter-spacing:25.932960px;}
.ls36{letter-spacing:59.351040px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws86{word-spacing:-66.240000px;}
.ws1{word-spacing:-54.000000px;}
.ws2{word-spacing:-25.560000px;}
.ws3e{word-spacing:-17.156160px;}
.wsc{word-spacing:-16.891200px;}
.wsd{word-spacing:-16.824960px;}
.ws4{word-spacing:-16.692480px;}
.ws5{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.427520px;}
.ws95{word-spacing:-16.295040px;}
.ws94{word-spacing:-16.228800px;}
.wsf{word-spacing:-16.162560px;}
.ws10{word-spacing:-16.096320px;}
.wsb{word-spacing:-15.963840px;}
.wse{word-spacing:-15.831360px;}
.ws8c{word-spacing:-15.698880px;}
.ws85{word-spacing:-15.367680px;}
.ws7{word-spacing:-15.298560px;}
.ws6{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.880240px;}
.ws8{word-spacing:-14.700960px;}
.ws70{word-spacing:-12.220356px;}
.ws71{word-spacing:-12.060264px;}
.ws3{word-spacing:-10.440000px;}
.ws47{word-spacing:-6.840134px;}
.ws48{word-spacing:-6.212808px;}
.ws44{word-spacing:-6.200410px;}
.ws3f{word-spacing:-5.659104px;}
.ws41{word-spacing:-5.536080px;}
.ws40{word-spacing:-5.486870px;}
.ws43{word-spacing:-4.576493px;}
.ws97{word-spacing:-4.438080px;}
.ws98{word-spacing:-4.305600px;}
.ws4f{word-spacing:-3.576960px;}
.ws5a{word-spacing:-3.179520px;}
.ws26{word-spacing:-2.980800px;}
.ws28{word-spacing:-2.848320px;}
.ws21{word-spacing:-2.808720px;}
.ws2f{word-spacing:-2.318400px;}
.ws56{word-spacing:-2.185920px;}
.ws27{word-spacing:-2.119680px;}
.ws5b{word-spacing:-1.788480px;}
.ws19{word-spacing:-1.613520px;}
.ws53{word-spacing:-1.589760px;}
.ws55{word-spacing:-1.457280px;}
.ws1b{word-spacing:-1.374480px;}
.ws57{word-spacing:-1.126080px;}
.ws66{word-spacing:-1.059840px;}
.ws84{word-spacing:-0.957347px;}
.ws5c{word-spacing:-0.861120px;}
.ws16{word-spacing:-0.728640px;}
.ws75{word-spacing:-0.596160px;}
.ws6a{word-spacing:-0.492096px;}
.ws69{word-spacing:-0.418282px;}
.ws38{word-spacing:-0.331200px;}
.ws80{word-spacing:-0.320184px;}
.ws11{word-spacing:-0.306720px;}
.ws65{word-spacing:-0.264960px;}
.ws83{word-spacing:-0.189264px;}
.ws15{word-spacing:-0.132480px;}
.ws17{word-spacing:-0.119520px;}
.ws6c{word-spacing:-0.073814px;}
.ws81{word-spacing:-0.047316px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.053364px;}
.ws67{word-spacing:0.057575px;}
.ws18{word-spacing:0.059760px;}
.ws68{word-spacing:0.086362px;}
.ws6f{word-spacing:0.121757px;}
.ws14{word-spacing:0.132480px;}
.ws6b{word-spacing:0.172234px;}
.ws12{word-spacing:0.204480px;}
.ws82{word-spacing:0.213456px;}
.ws1f{word-spacing:0.239040px;}
.ws7f{word-spacing:0.283896px;}
.ws54{word-spacing:0.331200px;}
.ws29{word-spacing:0.397440px;}
.ws13{word-spacing:0.408960px;}
.ws93{word-spacing:0.463680px;}
.ws39{word-spacing:0.596160px;}
.ws33{word-spacing:0.728640px;}
.ws2b{word-spacing:1.126080px;}
.ws5d{word-spacing:1.324800px;}
.ws30{word-spacing:1.457280px;}
.ws8e{word-spacing:1.589760px;}
.ws31{word-spacing:2.053440px;}
.ws8b{word-spacing:2.185920px;}
.ws1c{word-spacing:2.211120px;}
.ws6e{word-spacing:2.263642px;}
.ws6d{word-spacing:2.485085px;}
.ws24{word-spacing:2.689200px;}
.ws8a{word-spacing:2.782080px;}
.ws4e{word-spacing:2.914560px;}
.ws1d{word-spacing:3.107520px;}
.ws92{word-spacing:3.444480px;}
.ws91{word-spacing:3.576960px;}
.ws1e{word-spacing:3.645360px;}
.ws90{word-spacing:3.974400px;}
.ws59{word-spacing:4.173120px;}
.ws58{word-spacing:4.305600px;}
.ws20{word-spacing:4.541760px;}
.ws3a{word-spacing:4.901760px;}
.ws3b{word-spacing:5.034240px;}
.ws37{word-spacing:5.431680px;}
.ws74{word-spacing:5.630400px;}
.ws3c{word-spacing:5.762880px;}
.ws25{word-spacing:5.976000px;}
.ws3d{word-spacing:6.160320px;}
.ws7c{word-spacing:6.359040px;}
.ws36{word-spacing:6.491520px;}
.ws35{word-spacing:6.822720px;}
.ws52{word-spacing:6.888960px;}
.ws50{word-spacing:7.087680px;}
.ws51{word-spacing:7.220160px;}
.ws76{word-spacing:7.617600px;}
.ws72{word-spacing:7.816320px;}
.ws73{word-spacing:7.948800px;}
.ws8f{word-spacing:8.478720px;}
.ws79{word-spacing:8.611200px;}
.ws7d{word-spacing:9.207360px;}
.ws32{word-spacing:9.339840px;}
.ws42{word-spacing:9.820495px;}
.ws2e{word-spacing:9.936000px;}
.ws2d{word-spacing:10.068480px;}
.ws87{word-spacing:10.664640px;}
.ws34{word-spacing:10.797120px;}
.ws62{word-spacing:11.194560px;}
.ws63{word-spacing:11.525760px;}
.ws78{word-spacing:11.923200px;}
.ws77{word-spacing:12.121920px;}
.ws64{word-spacing:12.254400px;}
.ws1a{word-spacing:12.788640px;}
.ws7a{word-spacing:12.983040px;}
.ws4c{word-spacing:13.579200px;}
.ws7b{word-spacing:13.711680px;}
.ws4d{word-spacing:15.831360px;}
.ws89{word-spacing:17.156160px;}
.ws88{word-spacing:17.288640px;}
.ws22{word-spacing:17.808480px;}
.ws2a{word-spacing:17.884800px;}
.ws96{word-spacing:18.017280px;}
.ws23{word-spacing:18.047520px;}
.ws2c{word-spacing:18.745920px;}
.ws61{word-spacing:22.057920px;}
.ws5e{word-spacing:22.322880px;}
.ws99{word-spacing:22.919040px;}
.ws60{word-spacing:23.051520px;}
.ws5f{word-spacing:23.780160px;}
.ws4b{word-spacing:25.171200px;}
.ws4a{word-spacing:25.767360px;}
.ws49{word-spacing:25.899840px;}
.ws46{word-spacing:37.368338px;}
.ws45{word-spacing:47.749599px;}
.ws8d{word-spacing:143.805154px;}
._5{margin-left:-6.000000px;}
._10{margin-left:-4.872732px;}
._9{margin-left:-3.741804px;}
._7{margin-left:-2.280312px;}
._2{margin-left:-1.195515px;}
._6{width:1.051200px;}
._8{width:2.067624px;}
._d{width:4.264911px;}
._c{width:5.919030px;}
._1{width:7.476098px;}
._b{width:9.948438px;}
._4{width:11.826000px;}
._e{width:13.435488px;}
._3{width:16.561579px;}
._a{width:18.259785px;}
._f{width:23.323824px;}
._12{width:144.728885px;}
._11{width:152.971263px;}
._0{width:1952.688000px;}
.fca{color:rgb(255,124,128);}
.fc6{color:rgb(255,192,0);}
.fc5{color:rgb(255,153,255);}
.fc4{color:transparent;}
.fcb{color:rgb(180,255,215);}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(146,208,80);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fcc{color:rgb(33,33,33);}
.fc9{color:rgb(237,125,49);}
.fc7{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:8.797200px;}
.fs12{font-size:10.996800px;}
.fs15{font-size:12.096000px;}
.fs13{font-size:13.195800px;}
.fs16{font-size:13.222200px;}
.fs14{font-size:13.227600px;}
.fsc{font-size:24.604800px;}
.fsd{font-size:24.654000px;}
.fsb{font-size:28.787400px;}
.fse{font-size:30.439200px;}
.fs11{font-size:41.623800px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:42.000000px;}
.fs10{font-size:47.316000px;}
.fs6{font-size:47.820600px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.072383px;}
.fsf{font-size:53.364000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs8{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:0.180000px;}
.y74{bottom:3.600000px;}
.yc9{bottom:3.780000px;}
.y19{bottom:4.289325px;}
.yfe{bottom:8.357250px;}
.y114{bottom:8.360550px;}
.y76{bottom:8.594850px;}
.y18{bottom:19.233262px;}
.yfd{bottom:19.530300px;}
.y113{bottom:19.533300px;}
.y109{bottom:26.995950px;}
.yff{bottom:26.997300px;}
.y120{bottom:27.001500px;}
.y115{bottom:27.001650px;}
.y1d{bottom:30.000000px;}
.y17{bottom:34.177200px;}
.y116{bottom:47.925811px;}
.y100{bottom:50.535950px;}
.y10a{bottom:53.899621px;}
.y121{bottom:53.905171px;}
.yc6{bottom:54.879750px;}
.y15{bottom:58.200000px;}
.y16{bottom:61.708950px;}
.y1c{bottom:64.500000px;}
.y111{bottom:66.354900px;}
.y128{bottom:66.360750px;}
.y117{bottom:68.849972px;}
.y108{bottom:70.892250px;}
.y11f{bottom:70.896750px;}
.y101{bottom:74.074601px;}
.y82{bottom:76.854150px;}
.y10b{bottom:80.803292px;}
.y122{bottom:80.808842px;}
.y7f{bottom:83.875050px;}
.y136{bottom:87.644850px;}
.y118{bottom:89.774134px;}
.y135{bottom:95.342550px;}
.y80{bottom:97.216500px;}
.y102{bottom:97.616000px;}
.y134{bottom:103.040100px;}
.y81{bottom:104.086650px;}
.y10c{bottom:107.706964px;}
.y123{bottom:107.712514px;}
.y88{bottom:110.398650px;}
.y119{bottom:110.698295px;}
.y133{bottom:110.737650px;}
.y15f{bottom:111.221280px;}
.y85{bottom:115.586700px;}
.yfc{bottom:117.360000px;}
.y132{bottom:118.435200px;}
.y103{bottom:121.154651px;}
.y73{bottom:122.940000px;}
.y87{bottom:123.466350px;}
.y131{bottom:126.132750px;}
.ye6{bottom:128.296080px;}
.yc3{bottom:130.055100px;}
.y15e{bottom:130.298400px;}
.yc1{bottom:131.542650px;}
.y11a{bottom:131.622456px;}
.yc5{bottom:132.509850px;}
.yfb{bottom:132.660000px;}
.ybe{bottom:132.793200px;}
.y86{bottom:133.678350px;}
.y130{bottom:133.830300px;}
.y10d{bottom:134.610635px;}
.y124{bottom:134.616185px;}
.y12f{bottom:141.528000px;}
.y104{bottom:144.693301px;}
.y72{bottom:145.620000px;}
.ye5{bottom:147.191040px;}
.y8d{bottom:148.187250px;}
.y93{bottom:148.387950px;}
.y15d{bottom:149.193360px;}
.y12e{bottom:149.225550px;}
.ybd{bottom:151.688160px;}
.y11b{bottom:152.546617px;}
.y8e{bottom:155.287650px;}
.y12d{bottom:156.922950px;}
.yfa{bottom:160.560000px;}
.y10e{bottom:161.514306px;}
.y125{bottom:161.519856px;}
.yc4{bottom:161.939550px;}
.yc2{bottom:162.000750px;}
.yc0{bottom:162.260250px;}
.y92{bottom:162.895500px;}
.y12c{bottom:164.620500px;}
.ye4{bottom:166.086000px;}
.y49{bottom:167.209680px;}
.y90{bottom:167.305650px;}
.y15c{bottom:168.088320px;}
.y105{bottom:168.231952px;}
.y9a{bottom:168.954150px;}
.y71{bottom:169.920000px;}
.y75{bottom:170.541000px;}
.y99{bottom:170.542500px;}
.ybc{bottom:170.765280px;}
.y95{bottom:170.854500px;}
.y91{bottom:170.903550px;}
.y12b{bottom:172.318200px;}
.y11c{bottom:173.470778px;}
.y8a{bottom:177.308550px;}
.y8f{bottom:180.472800px;}
.y96{bottom:182.808750px;}
.ye3{bottom:185.163120px;}
.y48{bottom:186.286800px;}
.y15b{bottom:187.165440px;}
.y10f{bottom:188.417977px;}
.y126{bottom:188.423527px;}
.ybb{bottom:189.660240px;}
.y106{bottom:191.770602px;}
.y11d{bottom:194.394940px;}
.y94{bottom:198.261450px;}
.ye2{bottom:204.058080px;}
.y47{bottom:205.181760px;}
.y15a{bottom:206.060400px;}
.y89{bottom:207.198300px;}
.yba{bottom:208.555200px;}
.y107{bottom:215.309252px;}
.y11e{bottom:215.319101px;}
.y110{bottom:215.321648px;}
.y127{bottom:215.327198px;}
.y7e{bottom:216.594000px;}
.y83{bottom:219.492600px;}
.y112{bottom:220.712100px;}
.y129{bottom:220.717950px;}
.ye1{bottom:222.953040px;}
.y7d{bottom:223.975350px;}
.y46{bottom:224.258880px;}
.y159{bottom:224.955360px;}
.yb9{bottom:227.632320px;}
.y7c{bottom:231.356700px;}
.y84{bottom:235.186350px;}
.y7b{bottom:238.738200px;}
.ye0{bottom:242.030160px;}
.y45{bottom:243.153840px;}
.y8b{bottom:243.551400px;}
.y158{bottom:244.032480px;}
.y8c{bottom:244.036950px;}
.y98{bottom:245.924850px;}
.y7a{bottom:246.119550px;}
.yb8{bottom:246.527280px;}
.y97{bottom:249.042750px;}
.y79{bottom:253.500900px;}
.y78{bottom:260.882100px;}
.ydf{bottom:260.925120px;}
.y44{bottom:262.048800px;}
.y157{bottom:262.927440px;}
.yb7{bottom:265.422240px;}
.y77{bottom:268.263600px;}
.yde{bottom:279.820080px;}
.y43{bottom:281.125920px;}
.y156{bottom:281.822400px;}
.yb6{bottom:284.499360px;}
.ydd{bottom:298.897200px;}
.y42{bottom:300.020880px;}
.y155{bottom:300.899520px;}
.yb5{bottom:303.394320px;}
.ydc{bottom:317.792160px;}
.y41{bottom:319.098000px;}
.y154{bottom:319.794480px;}
.yb4{bottom:322.289280px;}
.ydb{bottom:336.687120px;}
.y40{bottom:337.992960px;}
.y153{bottom:338.689440px;}
.yb3{bottom:341.366400px;}
.yda{bottom:355.582080px;}
.y3f{bottom:356.887920px;}
.y152{bottom:357.766560px;}
.yb2{bottom:360.261360px;}
.yd9{bottom:374.659200px;}
.y3e{bottom:375.965040px;}
.y151{bottom:376.661520px;}
.yd8{bottom:393.554160px;}
.y3d{bottom:394.860000px;}
.y150{bottom:395.556480px;}
.yb1{bottom:397.157040px;}
.yf9{bottom:409.500000px;}
.yd7{bottom:412.449120px;}
.y14f{bottom:414.633600px;}
.yb0{bottom:416.234160px;}
.yf8{bottom:424.800000px;}
.y14e{bottom:433.528560px;}
.yaf{bottom:435.129120px;}
.yd6{bottom:449.526960px;}
.y14d{bottom:452.423520px;}
.yf7{bottom:452.880000px;}
.yae{bottom:454.024080px;}
.y70{bottom:454.893840px;}
.y3c{bottom:455.794860px;}
.yd5{bottom:468.421920px;}
.y14c{bottom:471.500640px;}
.y3b{bottom:473.080440px;}
.yad{bottom:473.101200px;}
.y6f{bottom:473.788800px;}
.y12a{bottom:478.141500px;}
.yd4{bottom:487.316880px;}
.y3a{bottom:490.366020px;}
.y14b{bottom:490.395600px;}
.yac{bottom:491.996160px;}
.y6e{bottom:492.683760px;}
.yd3{bottom:506.211840px;}
.y39{bottom:507.651600px;}
.y14a{bottom:509.290560px;}
.yab{bottom:510.891120px;}
.y6d{bottom:511.760880px;}
.y38{bottom:524.937180px;}
.yd2{bottom:526.365360px;}
.y149{bottom:528.367680px;}
.yaa{bottom:529.786080px;}
.y6c{bottom:530.655840px;}
.y37{bottom:542.222760px;}
.yd1{bottom:546.518880px;}
.y148{bottom:547.262640px;}
.ya9{bottom:548.863200px;}
.y6b{bottom:549.732960px;}
.y36{bottom:559.329060px;}
.y147{bottom:566.339760px;}
.yd0{bottom:566.854560px;}
.ya8{bottom:567.758160px;}
.y6a{bottom:568.627920px;}
.y35{bottom:576.614640px;}
.y146{bottom:585.234720px;}
.ycf{bottom:585.749520px;}
.y69{bottom:587.522880px;}
.y34{bottom:593.900220px;}
.y145{bottom:604.129680px;}
.ya7{bottom:604.653840px;}
.yce{bottom:605.903040px;}
.y68{bottom:606.703680px;}
.y33{bottom:611.185800px;}
.y144{bottom:623.206800px;}
.ya6{bottom:623.730960px;}
.y67{bottom:625.598640px;}
.ycd{bottom:626.056560px;}
.y32{bottom:628.471380px;}
.y143{bottom:642.101760px;}
.ya5{bottom:642.625920px;}
.y66{bottom:644.675760px;}
.ycc{bottom:644.951520px;}
.y31{bottom:645.756960px;}
.y142{bottom:661.178880px;}
.ya4{bottom:661.520880px;}
.y30{bottom:662.863260px;}
.y65{bottom:663.570720px;}
.ycb{bottom:665.105040px;}
.y141{bottom:680.073840px;}
.y2f{bottom:680.148840px;}
.ya3{bottom:680.598000px;}
.yf6{bottom:681.935760px;}
.yca{bottom:684.000000px;}
.y2e{bottom:697.434420px;}
.y140{bottom:698.968800px;}
.ya2{bottom:699.492960px;}
.y64{bottom:700.466400px;}
.yf5{bottom:700.830720px;}
.y2d{bottom:714.720000px;}
.yc8{bottom:717.300000px;}
.y13f{bottom:718.045920px;}
.ya1{bottom:718.387920px;}
.y63{bottom:719.543520px;}
.yf4{bottom:719.725680px;}
.y13e{bottom:736.940880px;}
.ya0{bottom:737.465040px;}
.y62{bottom:738.438480px;}
.yf3{bottom:738.802800px;}
.yc7{bottom:745.380000px;}
.y2c{bottom:750.189360px;}
.y13d{bottom:756.018000px;}
.y9f{bottom:756.360000px;}
.y61{bottom:757.515600px;}
.yf2{bottom:757.697760px;}
.y13c{bottom:774.912960px;}
.y60{bottom:776.410560px;}
.yf1{bottom:776.592720px;}
.y2b{bottom:787.085040px;}
.y9e{bottom:789.660000px;}
.y13b{bottom:793.807920px;}
.y5f{bottom:795.305520px;}
.yf0{bottom:795.669840px;}
.y13a{bottom:812.885040px;}
.y5e{bottom:814.382640px;}
.yef{bottom:814.564800px;}
.y9c{bottom:817.560000px;}
.ybf{bottom:817.648500px;}
.y2a{bottom:824.162880px;}
.y139{bottom:831.780000px;}
.y5d{bottom:833.277600px;}
.yee{bottom:833.459760px;}
.y29{bottom:849.180000px;}
.y5c{bottom:852.354720px;}
.yed{bottom:852.536880px;}
.y28{bottom:862.142880px;}
.y138{bottom:865.080000px;}
.y5b{bottom:871.249680px;}
.yec{bottom:871.431840px;}
.y27{bottom:887.159850px;}
.y5a{bottom:890.144640px;}
.yeb{bottom:890.326800px;}
.y137{bottom:893.160000px;}
.y8{bottom:903.150000px;}
.y26{bottom:908.400000px;}
.y59{bottom:909.221760px;}
.yea{bottom:909.403920px;}
.y14{bottom:910.260000px;}
.y13{bottom:922.260000px;}
.y58{bottom:928.116720px;}
.ye9{bottom:928.298880px;}
.y7{bottom:932.250000px;}
.y12{bottom:934.260000px;}
.y11{bottom:946.260000px;}
.y57{bottom:947.193840px;}
.y56{bottom:966.088800px;}
.ye8{bottom:966.270960px;}
.y10{bottom:969.510000px;}
.y25{bottom:971.937120px;}
.y6{bottom:972.630000px;}
.yf{bottom:981.510000px;}
.y55{bottom:984.983760px;}
.ye7{bottom:985.165920px;}
.ye{bottom:993.510000px;}
.y24{bottom:1001.280000px;}
.y54{bottom:1004.060880px;}
.y5{bottom:1011.165000px;}
.yd{bottom:1016.760000px;}
.y53{bottom:1022.955840px;}
.y9b{bottom:1023.138000px;}
.yc{bottom:1028.760000px;}
.y4{bottom:1039.965000px;}
.yb{bottom:1040.760000px;}
.y52{bottom:1042.032960px;}
.ya{bottom:1052.760000px;}
.y51{bottom:1060.927920px;}
.y9{bottom:1078.260000px;}
.y50{bottom:1080.005040px;}
.y3{bottom:1081.485000px;}
.y4f{bottom:1098.900000px;}
.y1b{bottom:1144.500000px;}
.y4e{bottom:1146.791520px;}
.y1a{bottom:1165.500000px;}
.y4d{bottom:1166.945040px;}
.y2{bottom:1169.970000px;}
.y23{bottom:1176.791520px;}
.y4c{bottom:1186.932960px;}
.y1{bottom:1191.570000px;}
.y22{bottom:1196.945040px;}
.y4b{bottom:1207.086480px;}
.y21{bottom:1216.932960px;}
.y4a{bottom:1227.240000px;}
.y20{bottom:1237.086480px;}
.y1e{bottom:1247.400000px;}
.y1f{bottom:1257.240000px;}
.h33{height:6.404602px;}
.h2d{height:8.005971px;}
.h30{height:8.806219px;}
.h2e{height:9.606903px;}
.h31{height:9.626123px;}
.h2f{height:9.630054px;}
.h1b{height:17.912967px;}
.h1c{height:17.948786px;}
.h1a{height:20.291752px;}
.h19{height:23.741171px;}
.h1e{height:25.103422px;}
.h2b{height:27.898500px;}
.h20{height:27.900000px;}
.h27{height:28.080000px;}
.h11{height:29.015859px;}
.h24{height:32.183197px;}
.hb{height:33.226911px;}
.h25{height:34.327441px;}
.h5{height:36.000000px;}
.h6{height:36.804287px;}
.hc{height:37.494141px;}
.h13{height:41.522695px;}
.h8{height:43.804688px;}
.h23{height:44.009666px;}
.he{height:45.054844px;}
.h14{height:45.345937px;}
.h21{height:45.992812px;}
.h12{height:46.025156px;}
.ha{height:46.538700px;}
.h17{height:46.980000px;}
.h28{height:48.224531px;}
.h7{height:50.062500px;}
.h10{height:52.347656px;}
.h15{height:52.361139px;}
.h3{height:56.320312px;}
.hf{height:69.990469px;}
.h4{height:72.000000px;}
.h1{height:75.093750px;}
.h2{height:75.682500px;}
.h22{height:182.682000px;}
.h1f{height:182.880000px;}
.h32{height:188.316000px;}
.h34{height:221.040000px;}
.h2c{height:225.127500px;}
.h29{height:225.180000px;}
.h2a{height:245.341500px;}
.h26{height:255.061500px;}
.h18{height:276.063000px;}
.h1d{height:280.338000px;}
.h16{height:281.158500px;}
.hd{height:1233.060000px;}
.h0{height:1263.000000px;}
.h9{height:1263.060000px;}
.wb{width:239.104500px;}
.wa{width:293.130000px;}
.w9{width:293.248500px;}
.w5{width:324.568500px;}
.w6{width:333.379500px;}
.w8{width:670.462500px;}
.w4{width:679.140000px;}
.w7{width:680.220000px;}
.w3{width:683.273100px;}
.w0{width:892.500000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.337034px;}
.x43{left:3.690150px;}
.x33{left:8.081100px;}
.x34{left:11.383950px;}
.x42{left:13.628850px;}
.x3e{left:18.540000px;}
.x40{left:22.768650px;}
.x3f{left:35.820000px;}
.x1{left:58.500000px;}
.x41{left:66.723450px;}
.x2e{left:70.589100px;}
.x2d{left:72.333600px;}
.x9{left:76.052700px;}
.x46{left:89.146650px;}
.x2c{left:90.354450px;}
.x44{left:93.454800px;}
.x2f{left:98.789250px;}
.x8{left:103.466400px;}
.xb{left:105.000000px;}
.xf{left:106.380000px;}
.x3a{left:112.500000px;}
.x32{left:114.540000px;}
.x30{left:117.036000px;}
.x2a{left:122.196000px;}
.x11{left:127.593360px;}
.x1d{left:130.573500px;}
.x3b{left:133.389360px;}
.x13{left:147.960000px;}
.x22{left:149.394150px;}
.x2b{left:153.147600px;}
.x27{left:156.515850px;}
.x3c{left:160.398720px;}
.x1f{left:162.351000px;}
.x23{left:174.267300px;}
.x29{left:182.551950px;}
.x1e{left:183.712200px;}
.x24{left:190.660050px;}
.x26{left:193.966350px;}
.x21{left:206.753700px;}
.x20{left:211.022100px;}
.x10{left:212.760000px;}
.x7{left:223.110000px;}
.x28{left:235.665300px;}
.x25{left:242.797650px;}
.x16{left:244.539000px;}
.x35{left:249.864600px;}
.x19{left:256.681050px;}
.x14{left:267.840000px;}
.x18{left:279.362700px;}
.x1a{left:281.396550px;}
.x1c{left:286.080750px;}
.x1b{left:295.387800px;}
.x17{left:302.475750px;}
.x2{left:334.410000px;}
.x3{left:437.670000px;}
.xe{left:446.670000px;}
.x15{left:450.475500px;}
.x45{left:452.065500px;}
.x47{left:476.892000px;}
.x36{left:485.614050px;}
.x37{left:490.136250px;}
.x38{left:499.345350px;}
.xd{left:574.950000px;}
.x4{left:605.490000px;}
.x6{left:627.990000px;}
.x5{left:634.410000px;}
.x3d{left:638.280000px;}
.x12{left:669.060000px;}
.x39{left:674.100000px;}
.x31{left:678.780000px;}
.x48{left:687.600000px;}
.xc{left:704.355000px;}
@media print{
.v3{vertical-align:-21.119467pt;}
.v5{vertical-align:-17.668800pt;}
.v6{vertical-align:-8.507733pt;}
.v4{vertical-align:-5.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:22.773333pt;}
.ls2a{letter-spacing:-2.208964pt;}
.ls2b{letter-spacing:-2.012126pt;}
.ls3a{letter-spacing:-1.059840pt;}
.ls14{letter-spacing:-1.000960pt;}
.ls3c{letter-spacing:-0.765440pt;}
.ls11{letter-spacing:-0.647680pt;}
.ls2d{letter-spacing:-0.569781pt;}
.ls2c{letter-spacing:-0.568644pt;}
.ls10{letter-spacing:-0.529920pt;}
.ls16{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.318720pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls42{letter-spacing:-0.235520pt;}
.lsf{letter-spacing:-0.212480pt;}
.ls8{letter-spacing:-0.181760pt;}
.ls33{letter-spacing:-0.142304pt;}
.lsa{letter-spacing:-0.117760pt;}
.ls26{letter-spacing:-0.076766pt;}
.ls28{letter-spacing:-0.065613pt;}
.lse{letter-spacing:-0.053120pt;}
.ls25{letter-spacing:-0.051178pt;}
.ls29{letter-spacing:-0.021871pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.021871pt;}
.ls31{letter-spacing:0.042059pt;}
.ls35{letter-spacing:0.073998pt;}
.ls23{letter-spacing:0.087484pt;}
.ls3d{letter-spacing:0.094208pt;}
.lsb{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.117760pt;}
.ls32{letter-spacing:0.142304pt;}
.ls34{letter-spacing:0.168235pt;}
.ls3{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.235520pt;}
.ls3e{letter-spacing:0.253184pt;}
.ls9{letter-spacing:0.272640pt;}
.ls12{letter-spacing:0.294400pt;}
.lsc{letter-spacing:0.318720pt;}
.ls24{letter-spacing:0.529920pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.647680pt;}
.ls3f{letter-spacing:1.230592pt;}
.ls1b{letter-spacing:1.295360pt;}
.ls41{letter-spacing:1.731072pt;}
.ls39{letter-spacing:1.895936pt;}
.ls37{letter-spacing:1.943040pt;}
.ls30{letter-spacing:3.827200pt;}
.ls3b{letter-spacing:4.474880pt;}
.ls6{letter-spacing:5.122560pt;}
.ls22{letter-spacing:5.511133pt;}
.ls7{letter-spacing:5.770240pt;}
.ls19{letter-spacing:6.347264pt;}
.ls38{letter-spacing:6.994944pt;}
.ls2e{letter-spacing:7.654400pt;}
.ls40{letter-spacing:8.302080pt;}
.ls5{letter-spacing:8.949760pt;}
.ls1e{letter-spacing:9.597440pt;}
.ls21{letter-spacing:10.227456pt;}
.ls1f{letter-spacing:10.245120pt;}
.ls2f{letter-spacing:12.188160pt;}
.ls4{letter-spacing:16.015360pt;}
.ls1d{letter-spacing:19.842560pt;}
.ls1c{letter-spacing:20.490240pt;}
.ls17{letter-spacing:23.022080pt;}
.ls18{letter-spacing:23.051520pt;}
.ls36{letter-spacing:52.756480pt;}
.ws86{word-spacing:-58.880000pt;}
.ws1{word-spacing:-48.000000pt;}
.ws2{word-spacing:-22.720000pt;}
.ws3e{word-spacing:-15.249920pt;}
.wsc{word-spacing:-15.014400pt;}
.wsd{word-spacing:-14.955520pt;}
.ws4{word-spacing:-14.837760pt;}
.ws5{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.602240pt;}
.ws95{word-spacing:-14.484480pt;}
.ws94{word-spacing:-14.425600pt;}
.wsf{word-spacing:-14.366720pt;}
.ws10{word-spacing:-14.307840pt;}
.wsb{word-spacing:-14.190080pt;}
.wse{word-spacing:-14.072320pt;}
.ws8c{word-spacing:-13.954560pt;}
.ws85{word-spacing:-13.660160pt;}
.ws7{word-spacing:-13.598720pt;}
.ws6{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.226880pt;}
.ws8{word-spacing:-13.067520pt;}
.ws70{word-spacing:-10.862539pt;}
.ws71{word-spacing:-10.720235pt;}
.ws3{word-spacing:-9.280000pt;}
.ws47{word-spacing:-6.080119pt;}
.ws48{word-spacing:-5.522496pt;}
.ws44{word-spacing:-5.511475pt;}
.ws3f{word-spacing:-5.030315pt;}
.ws41{word-spacing:-4.920960pt;}
.ws40{word-spacing:-4.877218pt;}
.ws43{word-spacing:-4.067994pt;}
.ws97{word-spacing:-3.944960pt;}
.ws98{word-spacing:-3.827200pt;}
.ws4f{word-spacing:-3.179520pt;}
.ws5a{word-spacing:-2.826240pt;}
.ws26{word-spacing:-2.649600pt;}
.ws28{word-spacing:-2.531840pt;}
.ws21{word-spacing:-2.496640pt;}
.ws2f{word-spacing:-2.060800pt;}
.ws56{word-spacing:-1.943040pt;}
.ws27{word-spacing:-1.884160pt;}
.ws5b{word-spacing:-1.589760pt;}
.ws19{word-spacing:-1.434240pt;}
.ws53{word-spacing:-1.413120pt;}
.ws55{word-spacing:-1.295360pt;}
.ws1b{word-spacing:-1.221760pt;}
.ws57{word-spacing:-1.000960pt;}
.ws66{word-spacing:-0.942080pt;}
.ws84{word-spacing:-0.850975pt;}
.ws5c{word-spacing:-0.765440pt;}
.ws16{word-spacing:-0.647680pt;}
.ws75{word-spacing:-0.529920pt;}
.ws6a{word-spacing:-0.437419pt;}
.ws69{word-spacing:-0.371806pt;}
.ws38{word-spacing:-0.294400pt;}
.ws80{word-spacing:-0.284608pt;}
.ws11{word-spacing:-0.272640pt;}
.ws65{word-spacing:-0.235520pt;}
.ws83{word-spacing:-0.168235pt;}
.ws15{word-spacing:-0.117760pt;}
.ws17{word-spacing:-0.106240pt;}
.ws6c{word-spacing:-0.065613pt;}
.ws81{word-spacing:-0.042059pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.047435pt;}
.ws67{word-spacing:0.051178pt;}
.ws18{word-spacing:0.053120pt;}
.ws68{word-spacing:0.076766pt;}
.ws6f{word-spacing:0.108228pt;}
.ws14{word-spacing:0.117760pt;}
.ws6b{word-spacing:0.153097pt;}
.ws12{word-spacing:0.181760pt;}
.ws82{word-spacing:0.189739pt;}
.ws1f{word-spacing:0.212480pt;}
.ws7f{word-spacing:0.252352pt;}
.ws54{word-spacing:0.294400pt;}
.ws29{word-spacing:0.353280pt;}
.ws13{word-spacing:0.363520pt;}
.ws93{word-spacing:0.412160pt;}
.ws39{word-spacing:0.529920pt;}
.ws33{word-spacing:0.647680pt;}
.ws2b{word-spacing:1.000960pt;}
.ws5d{word-spacing:1.177600pt;}
.ws30{word-spacing:1.295360pt;}
.ws8e{word-spacing:1.413120pt;}
.ws31{word-spacing:1.825280pt;}
.ws8b{word-spacing:1.943040pt;}
.ws1c{word-spacing:1.965440pt;}
.ws6e{word-spacing:2.012126pt;}
.ws6d{word-spacing:2.208964pt;}
.ws24{word-spacing:2.390400pt;}
.ws8a{word-spacing:2.472960pt;}
.ws4e{word-spacing:2.590720pt;}
.ws1d{word-spacing:2.762240pt;}
.ws92{word-spacing:3.061760pt;}
.ws91{word-spacing:3.179520pt;}
.ws1e{word-spacing:3.240320pt;}
.ws90{word-spacing:3.532800pt;}
.ws59{word-spacing:3.709440pt;}
.ws58{word-spacing:3.827200pt;}
.ws20{word-spacing:4.037120pt;}
.ws3a{word-spacing:4.357120pt;}
.ws3b{word-spacing:4.474880pt;}
.ws37{word-spacing:4.828160pt;}
.ws74{word-spacing:5.004800pt;}
.ws3c{word-spacing:5.122560pt;}
.ws25{word-spacing:5.312000pt;}
.ws3d{word-spacing:5.475840pt;}
.ws7c{word-spacing:5.652480pt;}
.ws36{word-spacing:5.770240pt;}
.ws35{word-spacing:6.064640pt;}
.ws52{word-spacing:6.123520pt;}
.ws50{word-spacing:6.300160pt;}
.ws51{word-spacing:6.417920pt;}
.ws76{word-spacing:6.771200pt;}
.ws72{word-spacing:6.947840pt;}
.ws73{word-spacing:7.065600pt;}
.ws8f{word-spacing:7.536640pt;}
.ws79{word-spacing:7.654400pt;}
.ws7d{word-spacing:8.184320pt;}
.ws32{word-spacing:8.302080pt;}
.ws42{word-spacing:8.729329pt;}
.ws2e{word-spacing:8.832000pt;}
.ws2d{word-spacing:8.949760pt;}
.ws87{word-spacing:9.479680pt;}
.ws34{word-spacing:9.597440pt;}
.ws62{word-spacing:9.950720pt;}
.ws63{word-spacing:10.245120pt;}
.ws78{word-spacing:10.598400pt;}
.ws77{word-spacing:10.775040pt;}
.ws64{word-spacing:10.892800pt;}
.ws1a{word-spacing:11.367680pt;}
.ws7a{word-spacing:11.540480pt;}
.ws4c{word-spacing:12.070400pt;}
.ws7b{word-spacing:12.188160pt;}
.ws4d{word-spacing:14.072320pt;}
.ws89{word-spacing:15.249920pt;}
.ws88{word-spacing:15.367680pt;}
.ws22{word-spacing:15.829760pt;}
.ws2a{word-spacing:15.897600pt;}
.ws96{word-spacing:16.015360pt;}
.ws23{word-spacing:16.042240pt;}
.ws2c{word-spacing:16.663040pt;}
.ws61{word-spacing:19.607040pt;}
.ws5e{word-spacing:19.842560pt;}
.ws99{word-spacing:20.372480pt;}
.ws60{word-spacing:20.490240pt;}
.ws5f{word-spacing:21.137920pt;}
.ws4b{word-spacing:22.374400pt;}
.ws4a{word-spacing:22.904320pt;}
.ws49{word-spacing:23.022080pt;}
.ws46{word-spacing:33.216300pt;}
.ws45{word-spacing:42.444088pt;}
.ws8d{word-spacing:127.826803pt;}
._5{margin-left:-5.333333pt;}
._10{margin-left:-4.331318pt;}
._9{margin-left:-3.326048pt;}
._7{margin-left:-2.026944pt;}
._2{margin-left:-1.062680pt;}
._6{width:0.934400pt;}
._8{width:1.837888pt;}
._d{width:3.791032pt;}
._c{width:5.261360pt;}
._1{width:6.645421pt;}
._b{width:8.843056pt;}
._4{width:10.512000pt;}
._e{width:11.942656pt;}
._3{width:14.721403pt;}
._a{width:16.230920pt;}
._f{width:20.732288pt;}
._12{width:128.647898pt;}
._11{width:135.974456pt;}
._0{width:1735.722667pt;}
.fs17{font-size:7.819733pt;}
.fs12{font-size:9.774933pt;}
.fs15{font-size:10.752000pt;}
.fs13{font-size:11.729600pt;}
.fs16{font-size:11.753067pt;}
.fs14{font-size:11.757867pt;}
.fsc{font-size:21.870933pt;}
.fsd{font-size:21.914667pt;}
.fsb{font-size:25.588800pt;}
.fse{font-size:27.057067pt;}
.fs11{font-size:36.998933pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:37.333333pt;}
.fs10{font-size:42.058667pt;}
.fs6{font-size:42.507200pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:43.619896pt;}
.fsf{font-size:47.434667pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs8{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:0.160000pt;}
.y74{bottom:3.200000pt;}
.yc9{bottom:3.360000pt;}
.y19{bottom:3.812733pt;}
.yfe{bottom:7.428667pt;}
.y114{bottom:7.431600pt;}
.y76{bottom:7.639867pt;}
.y18{bottom:17.096233pt;}
.yfd{bottom:17.360267pt;}
.y113{bottom:17.362933pt;}
.y109{bottom:23.996400pt;}
.yff{bottom:23.997600pt;}
.y120{bottom:24.001333pt;}
.y115{bottom:24.001467pt;}
.y1d{bottom:26.666667pt;}
.y17{bottom:30.379733pt;}
.y116{bottom:42.600721pt;}
.y100{bottom:44.920845pt;}
.y10a{bottom:47.910774pt;}
.y121{bottom:47.915708pt;}
.yc6{bottom:48.782000pt;}
.y15{bottom:51.733333pt;}
.y16{bottom:54.852400pt;}
.y1c{bottom:57.333333pt;}
.y111{bottom:58.982133pt;}
.y128{bottom:58.987333pt;}
.y117{bottom:61.199975pt;}
.y108{bottom:63.015333pt;}
.y11f{bottom:63.019333pt;}
.y101{bottom:65.844090pt;}
.y82{bottom:68.314800pt;}
.y10b{bottom:71.825149pt;}
.y122{bottom:71.830082pt;}
.y7f{bottom:74.555600pt;}
.y136{bottom:77.906533pt;}
.y118{bottom:79.799230pt;}
.y135{bottom:84.748933pt;}
.y80{bottom:86.414667pt;}
.y102{bottom:86.769778pt;}
.y134{bottom:91.591200pt;}
.y81{bottom:92.521467pt;}
.y10c{bottom:95.739523pt;}
.y123{bottom:95.744457pt;}
.y88{bottom:98.132133pt;}
.y119{bottom:98.398484pt;}
.y133{bottom:98.433467pt;}
.y15f{bottom:98.863360pt;}
.y85{bottom:102.743733pt;}
.yfc{bottom:104.320000pt;}
.y132{bottom:105.275733pt;}
.y103{bottom:107.693023pt;}
.y73{bottom:109.280000pt;}
.y87{bottom:109.747867pt;}
.y131{bottom:112.118000pt;}
.ye6{bottom:114.040960pt;}
.yc3{bottom:115.604533pt;}
.y15e{bottom:115.820800pt;}
.yc1{bottom:116.926800pt;}
.y11a{bottom:116.997739pt;}
.yc5{bottom:117.786533pt;}
.yfb{bottom:117.920000pt;}
.ybe{bottom:118.038400pt;}
.y86{bottom:118.825200pt;}
.y130{bottom:118.960267pt;}
.y10d{bottom:119.653898pt;}
.y124{bottom:119.658831pt;}
.y12f{bottom:125.802667pt;}
.y104{bottom:128.616268pt;}
.y72{bottom:129.440000pt;}
.ye5{bottom:130.836480pt;}
.y8d{bottom:131.722000pt;}
.y93{bottom:131.900400pt;}
.y15d{bottom:132.616320pt;}
.y12e{bottom:132.644933pt;}
.ybd{bottom:134.833920pt;}
.y11b{bottom:135.596993pt;}
.y8e{bottom:138.033467pt;}
.y12d{bottom:139.487067pt;}
.yfa{bottom:142.720000pt;}
.y10e{bottom:143.568272pt;}
.y125{bottom:143.573205pt;}
.yc4{bottom:143.946267pt;}
.yc2{bottom:144.000667pt;}
.yc0{bottom:144.231333pt;}
.y92{bottom:144.796000pt;}
.y12c{bottom:146.329333pt;}
.ye4{bottom:147.632000pt;}
.y49{bottom:148.630827pt;}
.y90{bottom:148.716133pt;}
.y15c{bottom:149.411840pt;}
.y105{bottom:149.539513pt;}
.y9a{bottom:150.181467pt;}
.y71{bottom:151.040000pt;}
.y75{bottom:151.592000pt;}
.y99{bottom:151.593333pt;}
.ybc{bottom:151.791360pt;}
.y95{bottom:151.870667pt;}
.y91{bottom:151.914267pt;}
.y12b{bottom:153.171733pt;}
.y11c{bottom:154.196247pt;}
.y8a{bottom:157.607600pt;}
.y8f{bottom:160.420267pt;}
.y96{bottom:162.496667pt;}
.ye3{bottom:164.589440pt;}
.y48{bottom:165.588267pt;}
.y15b{bottom:166.369280pt;}
.y10f{bottom:167.482646pt;}
.y126{bottom:167.487580pt;}
.ybb{bottom:168.586880pt;}
.y106{bottom:170.462757pt;}
.y11d{bottom:172.795502pt;}
.y94{bottom:176.232400pt;}
.ye2{bottom:181.384960pt;}
.y47{bottom:182.383787pt;}
.y15a{bottom:183.164800pt;}
.y89{bottom:184.176267pt;}
.yba{bottom:185.382400pt;}
.y107{bottom:191.386002pt;}
.y11e{bottom:191.394756pt;}
.y110{bottom:191.397021pt;}
.y127{bottom:191.401954pt;}
.y7e{bottom:192.528000pt;}
.y83{bottom:195.104533pt;}
.y112{bottom:196.188533pt;}
.y129{bottom:196.193733pt;}
.ye1{bottom:198.180480pt;}
.y7d{bottom:199.089200pt;}
.y46{bottom:199.341227pt;}
.y159{bottom:199.960320pt;}
.yb9{bottom:202.339840pt;}
.y7c{bottom:205.650400pt;}
.y84{bottom:209.054533pt;}
.y7b{bottom:212.211733pt;}
.ye0{bottom:215.137920pt;}
.y45{bottom:216.136747pt;}
.y8b{bottom:216.490133pt;}
.y158{bottom:216.917760pt;}
.y8c{bottom:216.921733pt;}
.y98{bottom:218.599867pt;}
.y7a{bottom:218.772933pt;}
.yb8{bottom:219.135360pt;}
.y97{bottom:221.371333pt;}
.y79{bottom:225.334133pt;}
.y78{bottom:231.895200pt;}
.ydf{bottom:231.933440pt;}
.y44{bottom:232.932267pt;}
.y157{bottom:233.713280pt;}
.yb7{bottom:235.930880pt;}
.y77{bottom:238.456533pt;}
.yde{bottom:248.728960pt;}
.y43{bottom:249.889707pt;}
.y156{bottom:250.508800pt;}
.yb6{bottom:252.888320pt;}
.ydd{bottom:265.686400pt;}
.y42{bottom:266.685227pt;}
.y155{bottom:267.466240pt;}
.yb5{bottom:269.683840pt;}
.ydc{bottom:282.481920pt;}
.y41{bottom:283.642667pt;}
.y154{bottom:284.261760pt;}
.yb4{bottom:286.479360pt;}
.ydb{bottom:299.277440pt;}
.y40{bottom:300.438187pt;}
.y153{bottom:301.057280pt;}
.yb3{bottom:303.436800pt;}
.yda{bottom:316.072960pt;}
.y3f{bottom:317.233707pt;}
.y152{bottom:318.014720pt;}
.yb2{bottom:320.232320pt;}
.yd9{bottom:333.030400pt;}
.y3e{bottom:334.191147pt;}
.y151{bottom:334.810240pt;}
.yd8{bottom:349.825920pt;}
.y3d{bottom:350.986667pt;}
.y150{bottom:351.605760pt;}
.yb1{bottom:353.028480pt;}
.yf9{bottom:364.000000pt;}
.yd7{bottom:366.621440pt;}
.y14f{bottom:368.563200pt;}
.yb0{bottom:369.985920pt;}
.yf8{bottom:377.600000pt;}
.y14e{bottom:385.358720pt;}
.yaf{bottom:386.781440pt;}
.yd6{bottom:399.579520pt;}
.y14d{bottom:402.154240pt;}
.yf7{bottom:402.560000pt;}
.yae{bottom:403.576960pt;}
.y70{bottom:404.350080pt;}
.y3c{bottom:405.150987pt;}
.yd5{bottom:416.375040pt;}
.y14c{bottom:419.111680pt;}
.y3b{bottom:420.515947pt;}
.yad{bottom:420.534400pt;}
.y6f{bottom:421.145600pt;}
.y12a{bottom:425.014667pt;}
.yd4{bottom:433.170560pt;}
.y3a{bottom:435.880907pt;}
.y14b{bottom:435.907200pt;}
.yac{bottom:437.329920pt;}
.y6e{bottom:437.941120pt;}
.yd3{bottom:449.966080pt;}
.y39{bottom:451.245867pt;}
.y14a{bottom:452.702720pt;}
.yab{bottom:454.125440pt;}
.y6d{bottom:454.898560pt;}
.y38{bottom:466.610827pt;}
.yd2{bottom:467.880320pt;}
.y149{bottom:469.660160pt;}
.yaa{bottom:470.920960pt;}
.y6c{bottom:471.694080pt;}
.y37{bottom:481.975787pt;}
.yd1{bottom:485.794560pt;}
.y148{bottom:486.455680pt;}
.ya9{bottom:487.878400pt;}
.y6b{bottom:488.651520pt;}
.y36{bottom:497.181387pt;}
.y147{bottom:503.413120pt;}
.yd0{bottom:503.870720pt;}
.ya8{bottom:504.673920pt;}
.y6a{bottom:505.447040pt;}
.y35{bottom:512.546347pt;}
.y146{bottom:520.208640pt;}
.ycf{bottom:520.666240pt;}
.y69{bottom:522.242560pt;}
.y34{bottom:527.911307pt;}
.y145{bottom:537.004160pt;}
.ya7{bottom:537.470080pt;}
.yce{bottom:538.580480pt;}
.y68{bottom:539.292160pt;}
.y33{bottom:543.276267pt;}
.y144{bottom:553.961600pt;}
.ya6{bottom:554.427520pt;}
.y67{bottom:556.087680pt;}
.ycd{bottom:556.494720pt;}
.y32{bottom:558.641227pt;}
.y143{bottom:570.757120pt;}
.ya5{bottom:571.223040pt;}
.y66{bottom:573.045120pt;}
.ycc{bottom:573.290240pt;}
.y31{bottom:574.006187pt;}
.y142{bottom:587.714560pt;}
.ya4{bottom:588.018560pt;}
.y30{bottom:589.211787pt;}
.y65{bottom:589.840640pt;}
.ycb{bottom:591.204480pt;}
.y141{bottom:604.510080pt;}
.y2f{bottom:604.576747pt;}
.ya3{bottom:604.976000pt;}
.yf6{bottom:606.165120pt;}
.yca{bottom:608.000000pt;}
.y2e{bottom:619.941707pt;}
.y140{bottom:621.305600pt;}
.ya2{bottom:621.771520pt;}
.y64{bottom:622.636800pt;}
.yf5{bottom:622.960640pt;}
.y2d{bottom:635.306667pt;}
.yc8{bottom:637.600000pt;}
.y13f{bottom:638.263040pt;}
.ya1{bottom:638.567040pt;}
.y63{bottom:639.594240pt;}
.yf4{bottom:639.756160pt;}
.y13e{bottom:655.058560pt;}
.ya0{bottom:655.524480pt;}
.y62{bottom:656.389760pt;}
.yf3{bottom:656.713600pt;}
.yc7{bottom:662.560000pt;}
.y2c{bottom:666.834987pt;}
.y13d{bottom:672.016000pt;}
.y9f{bottom:672.320000pt;}
.y61{bottom:673.347200pt;}
.yf2{bottom:673.509120pt;}
.y13c{bottom:688.811520pt;}
.y60{bottom:690.142720pt;}
.yf1{bottom:690.304640pt;}
.y2b{bottom:699.631147pt;}
.y9e{bottom:701.920000pt;}
.y13b{bottom:705.607040pt;}
.y5f{bottom:706.938240pt;}
.yf0{bottom:707.262080pt;}
.y13a{bottom:722.564480pt;}
.y5e{bottom:723.895680pt;}
.yef{bottom:724.057600pt;}
.y9c{bottom:726.720000pt;}
.ybf{bottom:726.798667pt;}
.y2a{bottom:732.589227pt;}
.y139{bottom:739.360000pt;}
.y5d{bottom:740.691200pt;}
.yee{bottom:740.853120pt;}
.y29{bottom:754.826667pt;}
.y5c{bottom:757.648640pt;}
.yed{bottom:757.810560pt;}
.y28{bottom:766.349227pt;}
.y138{bottom:768.960000pt;}
.y5b{bottom:774.444160pt;}
.yec{bottom:774.606080pt;}
.y27{bottom:788.586533pt;}
.y5a{bottom:791.239680pt;}
.yeb{bottom:791.401600pt;}
.y137{bottom:793.920000pt;}
.y8{bottom:802.800000pt;}
.y26{bottom:807.466667pt;}
.y59{bottom:808.197120pt;}
.yea{bottom:808.359040pt;}
.y14{bottom:809.120000pt;}
.y13{bottom:819.786667pt;}
.y58{bottom:824.992640pt;}
.ye9{bottom:825.154560pt;}
.y7{bottom:828.666667pt;}
.y12{bottom:830.453333pt;}
.y11{bottom:841.120000pt;}
.y57{bottom:841.950080pt;}
.y56{bottom:858.745600pt;}
.ye8{bottom:858.907520pt;}
.y10{bottom:861.786667pt;}
.y25{bottom:863.944107pt;}
.y6{bottom:864.560000pt;}
.yf{bottom:872.453333pt;}
.y55{bottom:875.541120pt;}
.ye7{bottom:875.703040pt;}
.ye{bottom:883.120000pt;}
.y24{bottom:890.026667pt;}
.y54{bottom:892.498560pt;}
.y5{bottom:898.813333pt;}
.yd{bottom:903.786667pt;}
.y53{bottom:909.294080pt;}
.y9b{bottom:909.456000pt;}
.yc{bottom:914.453333pt;}
.y4{bottom:924.413333pt;}
.yb{bottom:925.120000pt;}
.y52{bottom:926.251520pt;}
.ya{bottom:935.786667pt;}
.y51{bottom:943.047040pt;}
.y9{bottom:958.453333pt;}
.y50{bottom:960.004480pt;}
.y3{bottom:961.320000pt;}
.y4f{bottom:976.800000pt;}
.y1b{bottom:1017.333333pt;}
.y4e{bottom:1019.370240pt;}
.y1a{bottom:1036.000000pt;}
.y4d{bottom:1037.284480pt;}
.y2{bottom:1039.973333pt;}
.y23{bottom:1046.036907pt;}
.y4c{bottom:1055.051520pt;}
.y1{bottom:1059.173333pt;}
.y22{bottom:1063.951147pt;}
.y4b{bottom:1072.965760pt;}
.y21{bottom:1081.718187pt;}
.y4a{bottom:1090.880000pt;}
.y20{bottom:1099.632427pt;}
.y1e{bottom:1108.800000pt;}
.y1f{bottom:1117.546667pt;}
.h33{height:5.692980pt;}
.h2d{height:7.116419pt;}
.h30{height:7.827750pt;}
.h2e{height:8.539470pt;}
.h31{height:8.556554pt;}
.h2f{height:8.560048pt;}
.h1b{height:15.922637pt;}
.h1c{height:15.954477pt;}
.h1a{height:18.037112pt;}
.h19{height:21.103263pt;}
.h1e{height:22.314153pt;}
.h2b{height:24.798667pt;}
.h20{height:24.800000pt;}
.h27{height:24.960000pt;}
.h11{height:25.791875pt;}
.h24{height:28.607286pt;}
.hb{height:29.535032pt;}
.h25{height:30.513280pt;}
.h5{height:32.000000pt;}
.h6{height:32.714922pt;}
.hc{height:33.328125pt;}
.h13{height:36.909063pt;}
.h8{height:38.937500pt;}
.h23{height:39.119703pt;}
.he{height:40.048750pt;}
.h14{height:40.307500pt;}
.h21{height:40.882500pt;}
.h12{height:40.911250pt;}
.ha{height:41.367733pt;}
.h17{height:41.760000pt;}
.h28{height:42.866250pt;}
.h7{height:44.500000pt;}
.h10{height:46.531250pt;}
.h15{height:46.543235pt;}
.h3{height:50.062500pt;}
.hf{height:62.213750pt;}
.h4{height:64.000000pt;}
.h1{height:66.750000pt;}
.h2{height:67.273333pt;}
.h22{height:162.384000pt;}
.h1f{height:162.560000pt;}
.h32{height:167.392000pt;}
.h34{height:196.480000pt;}
.h2c{height:200.113333pt;}
.h29{height:200.160000pt;}
.h2a{height:218.081333pt;}
.h26{height:226.721333pt;}
.h18{height:245.389333pt;}
.h1d{height:249.189333pt;}
.h16{height:249.918667pt;}
.hd{height:1096.053333pt;}
.h0{height:1122.666667pt;}
.h9{height:1122.720000pt;}
.wb{width:212.537333pt;}
.wa{width:260.560000pt;}
.w9{width:260.665333pt;}
.w5{width:288.505333pt;}
.w6{width:296.337333pt;}
.w8{width:595.966667pt;}
.w4{width:603.680000pt;}
.w7{width:604.640000pt;}
.w3{width:607.353867pt;}
.w0{width:793.333333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.188474pt;}
.x43{left:3.280133pt;}
.x33{left:7.183200pt;}
.x34{left:10.119067pt;}
.x42{left:12.114533pt;}
.x3e{left:16.480000pt;}
.x40{left:20.238800pt;}
.x3f{left:31.840000pt;}
.x1{left:52.000000pt;}
.x41{left:59.309733pt;}
.x2e{left:62.745867pt;}
.x2d{left:64.296533pt;}
.x9{left:67.602400pt;}
.x46{left:79.241467pt;}
.x2c{left:80.315067pt;}
.x44{left:83.070933pt;}
.x2f{left:87.812667pt;}
.x8{left:91.970133pt;}
.xb{left:93.333333pt;}
.xf{left:94.560000pt;}
.x3a{left:100.000000pt;}
.x32{left:101.813333pt;}
.x30{left:104.032000pt;}
.x2a{left:108.618667pt;}
.x11{left:113.416320pt;}
.x1d{left:116.065333pt;}
.x3b{left:118.568320pt;}
.x13{left:131.520000pt;}
.x22{left:132.794800pt;}
.x2b{left:136.131200pt;}
.x27{left:139.125200pt;}
.x3c{left:142.576640pt;}
.x1f{left:144.312000pt;}
.x23{left:154.904267pt;}
.x29{left:162.268400pt;}
.x1e{left:163.299733pt;}
.x24{left:169.475600pt;}
.x26{left:172.414533pt;}
.x21{left:183.781067pt;}
.x20{left:187.575200pt;}
.x10{left:189.120000pt;}
.x7{left:198.320000pt;}
.x28{left:209.480267pt;}
.x25{left:215.820133pt;}
.x16{left:217.368000pt;}
.x35{left:222.101867pt;}
.x19{left:228.160933pt;}
.x14{left:238.080000pt;}
.x18{left:248.322400pt;}
.x1a{left:250.130267pt;}
.x1c{left:254.294000pt;}
.x1b{left:262.566933pt;}
.x17{left:268.867333pt;}
.x2{left:297.253333pt;}
.x3{left:389.040000pt;}
.xe{left:397.040000pt;}
.x15{left:400.422667pt;}
.x45{left:401.836000pt;}
.x47{left:423.904000pt;}
.x36{left:431.656933pt;}
.x37{left:435.676667pt;}
.x38{left:443.862533pt;}
.xd{left:511.066667pt;}
.x4{left:538.213333pt;}
.x6{left:558.213333pt;}
.x5{left:563.920000pt;}
.x3d{left:567.360000pt;}
.x12{left:594.720000pt;}
.x39{left:599.200000pt;}
.x31{left:603.360000pt;}
.x48{left:611.200000pt;}
.xc{left:626.093333pt;}
}




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