
    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_b457e888ce40e96803e29b40.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_cc96ef81fc1e5bfc8ce6ff2b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_66013954492cbb3761747d0f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a2b4d4661ab36afb0a9234c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dd2f4c2d343619cf24b3c16c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_bd736a509043678bc0aa4085.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.151360px;}
.v1{vertical-align:28.804320px;}
.v3{vertical-align:30.240000px;}
.v4{vertical-align:38.160000px;}
.ls3a{letter-spacing:-1.059840px;}
.ls8{letter-spacing:-0.993600px;}
.ls7{letter-spacing:-0.861120px;}
.ls5c{letter-spacing:-0.758160px;}
.ls3b{letter-spacing:-0.728640px;}
.ls58{letter-spacing:-0.486000px;}
.ls6{letter-spacing:-0.463680px;}
.ls39{letter-spacing:-0.397440px;}
.ls15{letter-spacing:-0.336960px;}
.ls5{letter-spacing:-0.331200px;}
.ls16{letter-spacing:-0.264960px;}
.ls13{letter-spacing:-0.239040px;}
.ls9{letter-spacing:-0.191520px;}
.ls0{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.132480px;}
.ls12{letter-spacing:-0.119520px;}
.ls67{letter-spacing:-0.084240px;}
.ls46{letter-spacing:-0.077760px;}
.ls14{letter-spacing:-0.059760px;}
.ls2{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.006624px;}
.ls69{letter-spacing:0.013248px;}
.ls4c{letter-spacing:0.018000px;}
.ls53{letter-spacing:0.019872px;}
.ls64{letter-spacing:0.033120px;}
.ls6a{letter-spacing:0.039744px;}
.lsa{letter-spacing:0.120240px;}
.ls57{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.216000px;}
.lse{letter-spacing:0.239040px;}
.ls1c{letter-spacing:0.262080px;}
.ls11{letter-spacing:0.264960px;}
.ls1a{letter-spacing:0.291456px;}
.ls29{letter-spacing:0.311328px;}
.ls4{letter-spacing:0.331200px;}
.ls1d{letter-spacing:0.336960px;}
.ls5d{letter-spacing:0.344448px;}
.ls1b{letter-spacing:0.351072px;}
.ls32{letter-spacing:0.377568px;}
.ls18{letter-spacing:0.397440px;}
.ls45{letter-spacing:0.421200px;}
.ls6c{letter-spacing:0.430560px;}
.ls68{letter-spacing:0.457056px;}
.ls3d{letter-spacing:0.476928px;}
.ls63{letter-spacing:0.490176px;}
.ls6b{letter-spacing:0.582912px;}
.ls56{letter-spacing:0.597600px;}
.ls52{letter-spacing:0.602784px;}
.ls5b{letter-spacing:0.967104px;}
.ls3e{letter-spacing:0.993600px;}
.ls34{letter-spacing:1.059840px;}
.ls62{letter-spacing:1.172448px;}
.ls33{letter-spacing:1.722240px;}
.ls2f{letter-spacing:2.450880px;}
.ls41{letter-spacing:3.179520px;}
.ls66{letter-spacing:3.206016px;}
.ls65{letter-spacing:3.245760px;}
.ls60{letter-spacing:3.782304px;}
.ls36{letter-spacing:3.908160px;}
.ls4d{letter-spacing:4.192992px;}
.ls5a{letter-spacing:4.199616px;}
.ls47{letter-spacing:4.636800px;}
.ls55{letter-spacing:4.663296px;}
.ls37{letter-spacing:5.365440px;}
.ls42{letter-spacing:6.094080px;}
.ls40{letter-spacing:6.756480px;}
.ls51{letter-spacing:6.922080px;}
.ls5e{letter-spacing:7.485120px;}
.ls31{letter-spacing:8.213760px;}
.ls30{letter-spacing:8.624448px;}
.ls3f{letter-spacing:9.671040px;}
.ls5f{letter-spacing:10.399680px;}
.ls4e{letter-spacing:10.439424px;}
.ls4f{letter-spacing:10.465920px;}
.ls50{letter-spacing:11.989440px;}
.ls59{letter-spacing:13.135392px;}
.ls3c{letter-spacing:13.248000px;}
.ls61{letter-spacing:13.976640px;}
.ls2d{letter-spacing:17.109792px;}
.ls2e{letter-spacing:17.553600px;}
.ls19{letter-spacing:33.451200px;}
.ls17{letter-spacing:34.842240px;}
.ls44{letter-spacing:37.028160px;}
.ls54{letter-spacing:42.456960px;}
.ls43{letter-spacing:59.351040px;}
.lsf{letter-spacing:80.812800px;}
.ls48{letter-spacing:89.938800px;}
.ls10{letter-spacing:91.609920px;}
.lsd{letter-spacing:149.698800px;}
.lsc{letter-spacing:169.120800px;}
.ls2b{letter-spacing:332.922240px;}
.ls2a{letter-spacing:384.782400px;}
.lsb{letter-spacing:403.858080px;}
.ls4a{letter-spacing:428.797440px;}
.ls49{letter-spacing:464.705280px;}
.ls1e{letter-spacing:502.159680px;}
.ls4b{letter-spacing:504.285120px;}
.ls24{letter-spacing:553.296960px;}
.ls22{letter-spacing:560.450880px;}
.ls21{letter-spacing:593.682624px;}
.ls27{letter-spacing:630.353952px;}
.ls28{letter-spacing:633.916800px;}
.ls26{letter-spacing:637.493760px;}
.ls2c{letter-spacing:644.713920px;}
.ls1f{letter-spacing:648.290880px;}
.ls23{letter-spacing:652.682592px;}
.ls20{letter-spacing:696.574080px;}
.ls25{letter-spacing:703.733760px;}
.ls38{letter-spacing:845.671680px;}
.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;}
}
.ws51{word-spacing:-66.240000px;}
.ws4f{word-spacing:-23.839920px;}
.ws59{word-spacing:-23.755680px;}
.ws74{word-spacing:-23.334480px;}
.ws44{word-spacing:-23.081760px;}
.ws69{word-spacing:-22.660560px;}
.ws50{word-spacing:-21.539520px;}
.ws26{word-spacing:-18.812160px;}
.ws19{word-spacing:-18.745920px;}
.ws6d{word-spacing:-18.679680px;}
.ws1a{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.282240px;}
.ws23{word-spacing:-18.149760px;}
.ws0{word-spacing:-18.083520px;}
.ws75{word-spacing:-18.017280px;}
.ws27{word-spacing:-17.951040px;}
.ws1{word-spacing:-17.553600px;}
.ws25{word-spacing:-17.421120px;}
.ws17{word-spacing:-16.852320px;}
.ws5d{word-spacing:-16.613280px;}
.ws16{word-spacing:-16.553520px;}
.ws15{word-spacing:-16.493760px;}
.ws18{word-spacing:-16.374240px;}
.ws5e{word-spacing:-15.012000px;}
.ws5f{word-spacing:-14.526000px;}
.ws3a{word-spacing:-3.841920px;}
.ws3e{word-spacing:-3.179520px;}
.ws6c{word-spacing:-2.980800px;}
.ws3f{word-spacing:-2.583360px;}
.ws29{word-spacing:-2.450880px;}
.ws73{word-spacing:-2.252160px;}
.ws30{word-spacing:-1.722240px;}
.ws77{word-spacing:-1.457280px;}
.ws49{word-spacing:-0.993600px;}
.ws68{word-spacing:-0.794880px;}
.ws7{word-spacing:-0.728640px;}
.ws60{word-spacing:-0.597600px;}
.ws14{word-spacing:-0.360720px;}
.ws28{word-spacing:-0.336960px;}
.ws22{word-spacing:-0.331200px;}
.ws1c{word-spacing:-0.298800px;}
.wsa{word-spacing:-0.264960px;}
.ws20{word-spacing:-0.132480px;}
.ws13{word-spacing:-0.120240px;}
.ws4{word-spacing:-0.108000px;}
.ws62{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
.ws67{word-spacing:0.077760px;}
.ws1b{word-spacing:0.119520px;}
.wsf{word-spacing:0.132480px;}
.ws3{word-spacing:0.162000px;}
.ws12{word-spacing:0.191520px;}
.ws1d{word-spacing:0.239040px;}
.ws5c{word-spacing:0.264960px;}
.wsc{word-spacing:0.331200px;}
.ws35{word-spacing:0.397440px;}
.ws70{word-spacing:0.421200px;}
.ws6{word-spacing:0.463680px;}
.ws21{word-spacing:0.596160px;}
.ws1f{word-spacing:0.662400px;}
.ws24{word-spacing:0.673920px;}
.ws1e{word-spacing:0.776880px;}
.ws79{word-spacing:0.794880px;}
.ws37{word-spacing:0.861120px;}
.ws10{word-spacing:0.993600px;}
.ws6e{word-spacing:1.059840px;}
.ws11{word-spacing:1.192320px;}
.ws4c{word-spacing:1.324800px;}
.ws61{word-spacing:1.391040px;}
.ws6b{word-spacing:1.457280px;}
.ws3c{word-spacing:1.920960px;}
.ws43{word-spacing:2.119680px;}
.wsd{word-spacing:2.583360px;}
.wsb{word-spacing:2.649600px;}
.wse{word-spacing:2.782080px;}
.ws2e{word-spacing:3.312000px;}
.ws52{word-spacing:3.510720px;}
.ws40{word-spacing:4.040640px;}
.ws34{word-spacing:4.769280px;}
.ws3d{word-spacing:4.968000px;}
.ws2b{word-spacing:5.497920px;}
.ws38{word-spacing:5.696640px;}
.ws54{word-spacing:5.762880px;}
.ws2f{word-spacing:6.226560px;}
.ws7b{word-spacing:6.359040px;}
.ws55{word-spacing:6.955200px;}
.ws72{word-spacing:7.153920px;}
.ws33{word-spacing:7.683840px;}
.ws56{word-spacing:7.816320px;}
.ws31{word-spacing:8.346240px;}
.ws5a{word-spacing:8.478720px;}
.ws66{word-spacing:8.544960px;}
.ws32{word-spacing:9.074880px;}
.ws4b{word-spacing:9.803520px;}
.ws36{word-spacing:10.532160px;}
.ws63{word-spacing:10.730880px;}
.ws4a{word-spacing:11.260800px;}
.ws5b{word-spacing:11.989440px;}
.ws64{word-spacing:12.718080px;}
.ws65{word-spacing:12.916800px;}
.ws3b{word-spacing:13.380480px;}
.ws47{word-spacing:14.109120px;}
.ws2a{word-spacing:14.837760px;}
.ws41{word-spacing:15.566400px;}
.ws42{word-spacing:15.698880px;}
.ws78{word-spacing:15.831360px;}
.ws58{word-spacing:16.560000px;}
.ws57{word-spacing:17.023680px;}
.ws2d{word-spacing:17.752320px;}
.ws2c{word-spacing:18.480960px;}
.ws8{word-spacing:19.143360px;}
.ws9{word-spacing:19.342080px;}
.ws6a{word-spacing:19.872000px;}
.ws45{word-spacing:21.329280px;}
.ws6f{word-spacing:22.786560px;}
.ws7d{word-spacing:24.243840px;}
.ws7c{word-spacing:24.442560px;}
.ws48{word-spacing:24.906240px;}
.ws4e{word-spacing:25.634880px;}
.ws71{word-spacing:27.820800px;}
.ws39{word-spacing:29.278080px;}
.ws53{word-spacing:30.669120px;}
.ws46{word-spacing:31.397760px;}
.ws4d{word-spacing:33.583680px;}
.ws76{word-spacing:39.346560px;}
.ws7e{word-spacing:60.212160px;}
.ws7a{word-spacing:169.640640px;}
._8{margin-left:-16.228800px;}
._9{margin-left:-13.910400px;}
._5{margin-left:-11.989440px;}
._a{margin-left:-10.730880px;}
._7{margin-left:-9.571680px;}
._6{margin-left:-8.313120px;}
._b{margin-left:-4.999680px;}
._c{margin-left:-3.576960px;}
._4{margin-left:-2.484000px;}
._0{margin-left:-1.094400px;}
._1{width:1.622880px;}
._17{width:2.623104px;}
._f{width:4.406400px;}
._16{width:5.595840px;}
._d{width:6.855840px;}
._e{width:8.677440px;}
._11{width:9.936000px;}
._10{width:11.496960px;}
._18{width:12.585600px;}
._12{width:14.310720px;}
._19{width:23.117760px;}
._1a{width:29.211840px;}
._14{width:30.306240px;}
._15{width:43.312320px;}
._13{width:59.304960px;}
._3{width:123.546240px;}
._1b{width:168.814080px;}
._2{width:845.553600px;}
.fc5{color:rgb(110,168,166);}
.fc4{color:rgb(2,73,71);}
.fc2{color:transparent;}
.fc1{color:rgb(12,119,116);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y33{bottom:-60.120000px;}
.y32{bottom:-25.380000px;}
.y12{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.880000px;}
.y7f{bottom:3.420000px;}
.y7b{bottom:3.600000px;}
.y121{bottom:5.580000px;}
.y124{bottom:5.760000px;}
.y13{bottom:9.720000px;}
.y57{bottom:12.600000px;}
.y1f{bottom:12.780000px;}
.y55{bottom:13.140000px;}
.y5a{bottom:13.320000px;}
.y54{bottom:13.680000px;}
.y59{bottom:13.860000px;}
.y84{bottom:22.500000px;}
.y12d{bottom:24.660000px;}
.y1b{bottom:32.040000px;}
.ye{bottom:38.160000px;}
.y7d{bottom:41.400000px;}
.y79{bottom:41.580000px;}
.y19{bottom:52.200000px;}
.y78{bottom:60.480000px;}
.y3{bottom:65.700000px;}
.y16{bottom:72.540000px;}
.y1{bottom:81.180000px;}
.y2f{bottom:100.080000px;}
.y161{bottom:125.524080px;}
.y141{bottom:129.077280px;}
.ye4{bottom:130.821120px;}
.y196{bottom:139.786560px;}
.y102{bottom:140.244480px;}
.y1b1{bottom:146.454480px;}
.y17e{bottom:153.687600px;}
.y160{bottom:153.957600px;}
.y140{bottom:157.510800px;}
.ye3{bottom:159.254640px;}
.yc5{bottom:159.624720px;}
.y11e{bottom:164.886480px;}
.y195{bottom:168.220080px;}
.y101{bottom:168.678000px;}
.yc4{bottom:179.430480px;}
.y17d{bottom:182.121120px;}
.y15f{bottom:182.391120px;}
.y1b0{bottom:184.260960px;}
.y13f{bottom:186.126480px;}
.y11d{bottom:193.320000px;}
.y194{bottom:196.653600px;}
.y100{bottom:197.111520px;}
.yc3{bottom:199.418400px;}
.ye2{bottom:199.578240px;}
.y17c{bottom:210.554640px;}
.y15e{bottom:211.006800px;}
.yc2{bottom:219.406320px;}
.y1af{bottom:222.233040px;}
.y193{bottom:225.269280px;}
.y86{bottom:225.365040px;}
.y13e{bottom:227.344320px;}
.ye1{bottom:228.193920px;}
.y2d{bottom:229.320000px;}
.yff{bottom:237.435120px;}
.y17b{bottom:238.988160px;}
.yc1{bottom:239.212080px;}
.y15d{bottom:239.440320px;}
.y11c{bottom:240.300000px;}
.y85{bottom:244.260000px;}
.y2b{bottom:244.800000px;}
.y192{bottom:253.702800px;}
.y13d{bottom:255.960000px;}
.ye0{bottom:256.627440px;}
.y2a{bottom:257.400000px;}
.y2c{bottom:257.580000px;}
.yc0{bottom:259.200000px;}
.y82{bottom:259.740000px;}
.y1ae{bottom:260.205120px;}
.y28{bottom:277.200000px;}
.yfe{bottom:279.017280px;}
.y17a{bottom:279.311760px;}
.y15c{bottom:279.581760px;}
.y191{bottom:282.136320px;}
.ydf{bottom:285.060960px;}
.y11b{bottom:287.907840px;}
.ybf{bottom:287.944560px;}
.y27{bottom:289.800000px;}
.y29{bottom:289.980000px;}
.y1ad{bottom:298.177200px;}
.y83{bottom:301.140000px;}
.y13c{bottom:301.680000px;}
.yfd{bottom:307.632960px;}
.y179{bottom:307.927440px;}
.ybe{bottom:307.932480px;}
.y15b{bottom:308.379600px;}
.y25{bottom:309.600000px;}
.y190{bottom:310.569840px;}
.yde{bottom:313.676640px;}
.y11a{bottom:316.523520px;}
.y24{bottom:322.200000px;}
.y26{bottom:322.380000px;}
.ybd{bottom:327.738240px;}
.y80{bottom:335.700000px;}
.yfc{bottom:336.066480px;}
.y1ac{bottom:336.149280px;}
.y178{bottom:336.360960px;}
.y15a{bottom:336.813120px;}
.y18f{bottom:339.003360px;}
.y22{bottom:342.000000px;}
.ydd{bottom:342.110160px;}
.y119{bottom:344.957040px;}
.ybc{bottom:347.726160px;}
.y13b{bottom:347.988960px;}
.y21{bottom:354.600000px;}
.y23{bottom:354.780000px;}
.y81{bottom:358.200000px;}
.yfb{bottom:364.500000px;}
.y177{bottom:364.794480px;}
.y159{bottom:365.246640px;}
.y18e{bottom:367.436880px;}
.ydc{bottom:370.543680px;}
.y51{bottom:371.478960px;}
.y118{bottom:373.390560px;}
.y1ab{bottom:373.955760px;}
.y1e{bottom:374.400000px;}
.y13a{bottom:376.604640px;}
.ybb{bottom:376.706160px;}
.y1d{bottom:387.000000px;}
.y20{bottom:387.180000px;}
.y7c{bottom:392.580000px;}
.y176{bottom:393.228000px;}
.y158{bottom:393.680160px;}
.y18d{bottom:395.870400px;}
.yba{bottom:396.511920px;}
.ydb{bottom:398.977200px;}
.y117{bottom:401.824080px;}
.y50{bottom:404.052480px;}
.y139{bottom:405.038160px;}
.y15{bottom:406.800000px;}
.yfa{bottom:410.220000px;}
.y1aa{bottom:411.927840px;}
.y7e{bottom:415.080000px;}
.yb9{bottom:416.499840px;}
.y1c{bottom:418.680000px;}
.y175{bottom:421.661520px;}
.y157{bottom:422.113680px;}
.y116{bottom:430.257600px;}
.y138{bottom:433.471680px;}
.y18c{bottom:436.194000px;}
.y4f{bottom:436.460400px;}
.yb8{bottom:436.487760px;}
.y1a{bottom:438.840000px;}
.yda{bottom:439.300800px;}
.y77{bottom:449.460000px;}
.y1a9{bottom:449.899920px;}
.yb7{bottom:456.293520px;}
.yf9{bottom:456.534000px;}
.y115{bottom:458.691120px;}
.y18{bottom:459.000000px;}
.y174{bottom:461.985120px;}
.y156{bottom:462.437280px;}
.y18b{bottom:464.809680px;}
.yd9{bottom:467.916480px;}
.y4e{bottom:469.033920px;}
.y7a{bottom:471.960000px;}
.y137{bottom:473.795280px;}
.yb6{bottom:476.281440px;}
.y14{bottom:479.160000px;}
.y17{bottom:479.340000px;}
.yf8{bottom:485.149680px;}
.y1a8{bottom:487.872000px;}
.y173{bottom:490.600800px;}
.y155{bottom:491.052960px;}
.y18a{bottom:493.243200px;}
.yb5{bottom:496.269360px;}
.yd8{bottom:496.350000px;}
.y11{bottom:498.960000px;}
.y114{bottom:499.014720px;}
.y99{bottom:500.230800px;}
.y4d{bottom:501.441840px;}
.y136{bottom:502.410960px;}
.yd{bottom:508.680000px;}
.yf7{bottom:513.583200px;}
.y1c1{bottom:514.697760px;}
.yb4{bottom:516.075120px;}
.y172{bottom:519.034320px;}
.y154{bottom:519.486480px;}
.y189{bottom:521.676720px;}
.y10{bottom:522.546480px;}
.yd7{bottom:524.783520px;}
.y1a7{bottom:525.844080px;}
.y113{bottom:527.630400px;}
.y98{bottom:528.846480px;}
.y76{bottom:530.376480px;}
.y135{bottom:530.844480px;}
.y4c{bottom:534.015360px;}
.yb3{bottom:536.063040px;}
.yf6{bottom:542.016720px;}
.yc{bottom:546.631920px;}
.yf{bottom:546.840000px;}
.y171{bottom:547.467840px;}
.y153{bottom:547.920000px;}
.y188{bottom:550.110240px;}
.y75{bottom:550.712160px;}
.y1c0{bottom:552.322080px;}
.yd6{bottom:553.217040px;}
.yb2{bottom:556.050960px;}
.y112{bottom:556.063920px;}
.y97{bottom:557.280000px;}
.y134{bottom:559.460160px;}
.y1a6{bottom:563.816160px;}
.y4b{bottom:566.423280px;}
.yf5{bottom:570.450240px;}
.y170{bottom:576.083520px;}
.y187{bottom:578.725920px;}
.y74{bottom:579.510000px;}
.y96{bottom:581.580000px;}
.yd5{bottom:581.650560px;}
.yb{bottom:583.527600px;}
.y111{bottom:584.679600px;}
.yb1{bottom:584.848800px;}
.y1bf{bottom:590.294160px;}
.y152{bottom:594.900000px;}
.y4a{bottom:598.831200px;}
.yf4{bottom:598.883760px;}
.y133{bottom:599.601600px;}
.y1a5{bottom:601.622640px;}
.y16f{bottom:604.517040px;}
.yb0{bottom:604.836720px;}
.y186{bottom:607.159440px;}
.y73{bottom:607.943520px;}
.y95{bottom:610.740000px;}
.y110{bottom:613.113120px;}
.ya{bottom:615.935520px;}
.yd4{bottom:621.974160px;}
.yaf{bottom:624.824640px;}
.yf3{bottom:627.317280px;}
.y132{bottom:628.217280px;}
.y1be{bottom:628.266240px;}
.y49{bottom:632.497680px;}
.y16e{bottom:632.950560px;}
.y185{bottom:635.592960px;}
.y72{bottom:636.377040px;}
.y1a4{bottom:639.594720px;}
.y94{bottom:639.900000px;}
.y10f{bottom:641.546640px;}
.y151{bottom:642.485520px;}
.yae{bottom:644.630400px;}
.yd3{bottom:650.589840px;}
.yf2{bottom:655.932960px;}
.y131{bottom:656.832960px;}
.y48{bottom:661.842000px;}
.y184{bottom:664.026480px;}
.yad{bottom:664.618320px;}
.y71{bottom:664.810560px;}
.y1bd{bottom:666.238320px;}
.y93{bottom:669.240000px;}
.y10e{bottom:669.980160px;}
.y150{bottom:671.101200px;}
.y16d{bottom:673.274160px;}
.y34{bottom:677.160000px;}
.y1a3{bottom:677.566800px;}
.y63{bottom:677.687760px;}
.yd2{bottom:679.023360px;}
.yf1{bottom:684.366480px;}
.yac{bottom:684.606240px;}
.y130{bottom:685.266480px;}
.y47{bottom:691.186320px;}
.y183{bottom:692.460000px;}
.y70{bottom:693.244080px;}
.y92{bottom:698.400000px;}
.y10d{bottom:698.413680px;}
.y16c{bottom:701.889840px;}
.y1bc{bottom:704.210400px;}
.yab{bottom:704.412000px;}
.yd1{bottom:707.456880px;}
.y62{bottom:710.261280px;}
.y14f{bottom:711.424800px;}
.yf0{bottom:712.800000px;}
.y12f{bottom:713.700000px;}
.y1a2{bottom:715.538880px;}
.y46{bottom:720.530640px;}
.y6f{bottom:721.677600px;}
.yaa{bottom:724.399920px;}
.y91{bottom:727.560000px;}
.y16b{bottom:730.323360px;}
.yd0{bottom:735.890400px;}
.y10c{bottom:738.737280px;}
.y182{bottom:739.440000px;}
.y14e{bottom:740.040480px;}
.y1bb{bottom:742.182480px;}
.y45{bottom:742.489200px;}
.y61{bottom:742.669200px;}
.ya9{bottom:744.387840px;}
.y12e{bottom:747.180000px;}
.y6e{bottom:750.111120px;}
.y1a1{bottom:753.510960px;}
.y90{bottom:756.900000px;}
.yef{bottom:758.520000px;}
.y16a{bottom:758.756880px;}
.y9{bottom:760.123440px;}
.ycf{bottom:764.506080px;}
.y12c{bottom:766.800000px;}
.y10b{bottom:767.352960px;}
.y14d{bottom:769.566960px;}
.y44{bottom:771.651360px;}
.ya8{bottom:773.185680px;}
.y60{bottom:775.077120px;}
.y6d{bottom:778.544640px;}
.y1ba{bottom:779.988960px;}
.y12b{bottom:781.920000px;}
.y8f{bottom:786.060000px;}
.y181{bottom:787.008240px;}
.y169{bottom:787.190400px;}
.y1a0{bottom:791.317440px;}
.y8{bottom:792.531360px;}
.yce{bottom:792.939600px;}
.ya7{bottom:793.173600px;}
.y43{bottom:793.609920px;}
.y10a{bottom:795.786480px;}
.y14c{bottom:798.182640px;}
.y6c{bottom:806.978160px;}
.y5f{bottom:807.650640px;}
.yee{bottom:808.380000px;}
.y12a{bottom:810.000000px;}
.ya6{bottom:813.161520px;}
.y8e{bottom:815.220000px;}
.y42{bottom:815.386320px;}
.y168{bottom:815.623920px;}
.y1b9{bottom:817.961040px;}
.ycd{bottom:821.373120px;}
.y109{bottom:824.220000px;}
.y7{bottom:824.939280px;}
.y14b{bottom:826.616160px;}
.y19f{bottom:829.289520px;}
.ya5{bottom:832.967280px;}
.y129{bottom:834.300000px;}
.y6b{bottom:835.593840px;}
.y41{bottom:837.344880px;}
.y5e{bottom:840.058560px;}
.y167{bottom:844.057440px;}
.y8d{bottom:844.380000px;}
.ycc{bottom:849.806640px;}
.ya4{bottom:852.955200px;}
.y14a{bottom:855.049680px;}
.y1b8{bottom:855.933120px;}
.yed{bottom:855.947520px;}
.y127{bottom:858.420000px;}
.y6a{bottom:864.027360px;}
.y40{bottom:866.507040px;}
.y19e{bottom:867.261600px;}
.y108{bottom:869.940000px;}
.y126{bottom:871.020000px;}
.y128{bottom:871.380000px;}
.y166{bottom:872.490960px;}
.y5d{bottom:872.632080px;}
.ya3{bottom:872.943120px;}
.y8c{bottom:873.540000px;}
.y149{bottom:883.483200px;}
.yec{bottom:884.563200px;}
.ycb{bottom:890.130240px;}
.y69{bottom:892.460880px;}
.ya2{bottom:892.931040px;}
.y1b7{bottom:893.905200px;}
.y3f{bottom:895.669200px;}
.y125{bottom:899.460000px;}
.y165{bottom:901.106640px;}
.y8b{bottom:902.880000px;}
.y5c{bottom:905.040000px;}
.y19d{bottom:905.233680px;}
.y148{bottom:911.916720px;}
.ya1{bottom:912.736800px;}
.yeb{bottom:912.996720px;}
.y6{bottom:914.396400px;}
.y107{bottom:916.209360px;}
.yca{bottom:918.745920px;}
.y68{bottom:920.894400px;}
.y5b{bottom:921.240000px;}
.y123{bottom:923.580000px;}
.y3e{bottom:925.013520px;}
.y164{bottom:929.540160px;}
.y1b6{bottom:931.877280px;}
.y8a{bottom:932.040000px;}
.ya0{bottom:932.724720px;}
.y147{bottom:940.350240px;}
.yea{bottom:941.430240px;}
.y19c{bottom:943.205760px;}
.y106{bottom:944.825040px;}
.y5{bottom:946.804320px;}
.yc9{bottom:947.179440px;}
.y122{bottom:947.880000px;}
.y67{bottom:949.327920px;}
.y58{bottom:951.480000px;}
.y9f{bottom:952.712640px;}
.y3d{bottom:954.357840px;}
.y197{bottom:957.791520px;}
.y163{bottom:957.973680px;}
.y89{bottom:961.200000px;}
.y146{bottom:968.783760px;}
.y1b5{bottom:969.683760px;}
.ye9{bottom:969.863760px;}
.y120{bottom:972.180000px;}
.y9e{bottom:972.518400px;}
.y105{bottom:973.258560px;}
.y2e{bottom:973.620000px;}
.yc8{bottom:975.612960px;}
.y66{bottom:977.761440px;}
.y19b{bottom:981.012240px;}
.y56{bottom:981.720000px;}
.y3c{bottom:983.702160px;}
.y180{bottom:986.407200px;}
.y31{bottom:990.188640px;}
.y88{bottom:990.540000px;}
.y9d{bottom:992.506320px;}
.y145{bottom:997.217280px;}
.y162{bottom:998.297280px;}
.ye8{bottom:998.479440px;}
.yc7{bottom:1004.046480px;}
.y65{bottom:1006.194960px;}
.y1b4{bottom:1007.655840px;}
.y53{bottom:1010.520000px;}
.y9c{bottom:1012.494240px;}
.y3b{bottom:1013.046480px;}
.y104{bottom:1013.582160px;}
.y11f{bottom:1014.658560px;}
.y17f{bottom:1014.840720px;}
.y19a{bottom:1018.984320px;}
.y87{bottom:1019.700000px;}
.y64{bottom:1025.272080px;}
.y144{bottom:1025.650800px;}
.ye7{bottom:1026.912960px;}
.y30{bottom:1031.940000px;}
.y9b{bottom:1032.300000px;}
.yc6{bottom:1032.480000px;}
.y3a{bottom:1045.620000px;}
.y1b3{bottom:1045.627920px;}
.y199{bottom:1051.740000px;}
.y143{bottom:1054.266480px;}
.y103{bottom:1055.164320px;}
.ye6{bottom:1055.346480px;}
.y52{bottom:1057.680000px;}
.y198{bottom:1073.700000px;}
.y9a{bottom:1079.460000px;}
.y39{bottom:1079.640000px;}
.y142{bottom:1082.700000px;}
.y1b2{bottom:1083.600000px;}
.ye5{bottom:1083.780000px;}
.y38{bottom:1102.680000px;}
.y37{bottom:1126.980000px;}
.y4{bottom:1141.020000px;}
.y36{bottom:1155.960000px;}
.y35{bottom:1180.440000px;}
.h7{height:9.720000px;}
.h2{height:15.480000px;}
.h1f{height:18.900000px;}
.h1b{height:23.400000px;}
.h19{height:23.401500px;}
.h1a{height:23.580000px;}
.h8{height:26.226562px;}
.h13{height:28.080000px;}
.h12{height:29.341500px;}
.h14{height:29.520000px;}
.ha{height:32.400000px;}
.h3{height:39.339844px;}
.h1d{height:40.318500px;}
.h1e{height:42.480000px;}
.hf{height:43.536094px;}
.h10{height:45.687454px;}
.h5{height:48.224531px;}
.h4{height:48.256875px;}
.h17{height:48.397995px;}
.h18{height:56.611406px;}
.h16{height:56.880000px;}
.h6{height:57.780000px;}
.h11{height:61.329023px;}
.hc{height:69.715898px;}
.he{height:72.340414px;}
.h15{height:75.960000px;}
.hd{height:87.538008px;}
.h1c{height:87.856875px;}
.h9{height:92.160000px;}
.hb{height:122.580000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:1.620000px;}
.wc{width:8.100000px;}
.w10{width:147.601500px;}
.w9{width:148.320000px;}
.wb{width:159.840000px;}
.w11{width:174.601500px;}
.wf{width:187.740000px;}
.w8{width:189.540000px;}
.w5{width:192.960000px;}
.w12{width:208.621500px;}
.w2{width:339.841500px;}
.w3{width:374.220000px;}
.wa{width:381.780000px;}
.w6{width:494.460000px;}
.wd{width:509.940000px;}
.we{width:509.941500px;}
.w7{width:685.980000px;}
.w13{width:721.621500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.440000px;}
.x2{left:8.100000px;}
.x1d{left:10.800000px;}
.x25{left:23.220000px;}
.x1{left:84.960000px;}
.x2d{left:93.600000px;}
.xd{left:95.400000px;}
.x8{left:98.456400px;}
.x21{left:101.453760px;}
.x23{left:111.936240px;}
.x19{left:119.880000px;}
.x18{left:126.720000px;}
.x28{left:130.500000px;}
.x10{left:133.560000px;}
.x29{left:138.960000px;}
.x9{left:148.318560px;}
.x1f{left:150.300000px;}
.x17{left:153.900000px;}
.x1e{left:156.780000px;}
.x14{left:167.400000px;}
.x16{left:177.660000px;}
.x27{left:178.920000px;}
.x1a{left:188.280000px;}
.xe{left:190.980000px;}
.x15{left:210.240000px;}
.x1b{left:245.520000px;}
.x1c{left:249.494040px;}
.x20{left:255.420000px;}
.x24{left:264.060000px;}
.x2a{left:274.500000px;}
.x22{left:276.120000px;}
.x26{left:287.280000px;}
.xa{left:289.080000px;}
.xf{left:290.700000px;}
.xc{left:292.140000px;}
.x13{left:350.460000px;}
.x4{left:365.940000px;}
.x11{left:396.180000px;}
.x2b{left:423.000000px;}
.x3{left:424.800000px;}
.x5{left:446.398560px;}
.x12{left:461.700000px;}
.x2c{left:598.500000px;}
.x2e{left:606.060000px;}
.x7{left:748.982880px;}
.x6{left:791.459280px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.912320pt;}
.v1{vertical-align:25.603840pt;}
.v3{vertical-align:26.880000pt;}
.v4{vertical-align:33.920000pt;}
.ls3a{letter-spacing:-0.942080pt;}
.ls8{letter-spacing:-0.883200pt;}
.ls7{letter-spacing:-0.765440pt;}
.ls5c{letter-spacing:-0.673920pt;}
.ls3b{letter-spacing:-0.647680pt;}
.ls58{letter-spacing:-0.432000pt;}
.ls6{letter-spacing:-0.412160pt;}
.ls39{letter-spacing:-0.353280pt;}
.ls15{letter-spacing:-0.299520pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls16{letter-spacing:-0.235520pt;}
.ls13{letter-spacing:-0.212480pt;}
.ls9{letter-spacing:-0.170240pt;}
.ls0{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.117760pt;}
.ls12{letter-spacing:-0.106240pt;}
.ls67{letter-spacing:-0.074880pt;}
.ls46{letter-spacing:-0.069120pt;}
.ls14{letter-spacing:-0.053120pt;}
.ls2{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.005888pt;}
.ls69{letter-spacing:0.011776pt;}
.ls4c{letter-spacing:0.016000pt;}
.ls53{letter-spacing:0.017664pt;}
.ls64{letter-spacing:0.029440pt;}
.ls6a{letter-spacing:0.035328pt;}
.lsa{letter-spacing:0.106880pt;}
.ls57{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.212480pt;}
.ls1c{letter-spacing:0.232960pt;}
.ls11{letter-spacing:0.235520pt;}
.ls1a{letter-spacing:0.259072pt;}
.ls29{letter-spacing:0.276736pt;}
.ls4{letter-spacing:0.294400pt;}
.ls1d{letter-spacing:0.299520pt;}
.ls5d{letter-spacing:0.306176pt;}
.ls1b{letter-spacing:0.312064pt;}
.ls32{letter-spacing:0.335616pt;}
.ls18{letter-spacing:0.353280pt;}
.ls45{letter-spacing:0.374400pt;}
.ls6c{letter-spacing:0.382720pt;}
.ls68{letter-spacing:0.406272pt;}
.ls3d{letter-spacing:0.423936pt;}
.ls63{letter-spacing:0.435712pt;}
.ls6b{letter-spacing:0.518144pt;}
.ls56{letter-spacing:0.531200pt;}
.ls52{letter-spacing:0.535808pt;}
.ls5b{letter-spacing:0.859648pt;}
.ls3e{letter-spacing:0.883200pt;}
.ls34{letter-spacing:0.942080pt;}
.ls62{letter-spacing:1.042176pt;}
.ls33{letter-spacing:1.530880pt;}
.ls2f{letter-spacing:2.178560pt;}
.ls41{letter-spacing:2.826240pt;}
.ls66{letter-spacing:2.849792pt;}
.ls65{letter-spacing:2.885120pt;}
.ls60{letter-spacing:3.362048pt;}
.ls36{letter-spacing:3.473920pt;}
.ls4d{letter-spacing:3.727104pt;}
.ls5a{letter-spacing:3.732992pt;}
.ls47{letter-spacing:4.121600pt;}
.ls55{letter-spacing:4.145152pt;}
.ls37{letter-spacing:4.769280pt;}
.ls42{letter-spacing:5.416960pt;}
.ls40{letter-spacing:6.005760pt;}
.ls51{letter-spacing:6.152960pt;}
.ls5e{letter-spacing:6.653440pt;}
.ls31{letter-spacing:7.301120pt;}
.ls30{letter-spacing:7.666176pt;}
.ls3f{letter-spacing:8.596480pt;}
.ls5f{letter-spacing:9.244160pt;}
.ls4e{letter-spacing:9.279488pt;}
.ls4f{letter-spacing:9.303040pt;}
.ls50{letter-spacing:10.657280pt;}
.ls59{letter-spacing:11.675904pt;}
.ls3c{letter-spacing:11.776000pt;}
.ls61{letter-spacing:12.423680pt;}
.ls2d{letter-spacing:15.208704pt;}
.ls2e{letter-spacing:15.603200pt;}
.ls19{letter-spacing:29.734400pt;}
.ls17{letter-spacing:30.970880pt;}
.ls44{letter-spacing:32.913920pt;}
.ls54{letter-spacing:37.739520pt;}
.ls43{letter-spacing:52.756480pt;}
.lsf{letter-spacing:71.833600pt;}
.ls48{letter-spacing:79.945600pt;}
.ls10{letter-spacing:81.431040pt;}
.lsd{letter-spacing:133.065600pt;}
.lsc{letter-spacing:150.329600pt;}
.ls2b{letter-spacing:295.930880pt;}
.ls2a{letter-spacing:342.028800pt;}
.lsb{letter-spacing:358.984960pt;}
.ls4a{letter-spacing:381.153280pt;}
.ls49{letter-spacing:413.071360pt;}
.ls1e{letter-spacing:446.364160pt;}
.ls4b{letter-spacing:448.253440pt;}
.ls24{letter-spacing:491.819520pt;}
.ls22{letter-spacing:498.178560pt;}
.ls21{letter-spacing:527.717888pt;}
.ls27{letter-spacing:560.314624pt;}
.ls28{letter-spacing:563.481600pt;}
.ls26{letter-spacing:566.661120pt;}
.ls2c{letter-spacing:573.079040pt;}
.ls1f{letter-spacing:576.258560pt;}
.ls23{letter-spacing:580.162304pt;}
.ls20{letter-spacing:619.176960pt;}
.ls25{letter-spacing:625.541120pt;}
.ls38{letter-spacing:751.708160pt;}
.ws51{word-spacing:-58.880000pt;}
.ws4f{word-spacing:-21.191040pt;}
.ws59{word-spacing:-21.116160pt;}
.ws74{word-spacing:-20.741760pt;}
.ws44{word-spacing:-20.517120pt;}
.ws69{word-spacing:-20.142720pt;}
.ws50{word-spacing:-19.146240pt;}
.ws26{word-spacing:-16.721920pt;}
.ws19{word-spacing:-16.663040pt;}
.ws6d{word-spacing:-16.604160pt;}
.ws1a{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.250880pt;}
.ws23{word-spacing:-16.133120pt;}
.ws0{word-spacing:-16.074240pt;}
.ws75{word-spacing:-16.015360pt;}
.ws27{word-spacing:-15.956480pt;}
.ws1{word-spacing:-15.603200pt;}
.ws25{word-spacing:-15.485440pt;}
.ws17{word-spacing:-14.979840pt;}
.ws5d{word-spacing:-14.767360pt;}
.ws16{word-spacing:-14.714240pt;}
.ws15{word-spacing:-14.661120pt;}
.ws18{word-spacing:-14.554880pt;}
.ws5e{word-spacing:-13.344000pt;}
.ws5f{word-spacing:-12.912000pt;}
.ws3a{word-spacing:-3.415040pt;}
.ws3e{word-spacing:-2.826240pt;}
.ws6c{word-spacing:-2.649600pt;}
.ws3f{word-spacing:-2.296320pt;}
.ws29{word-spacing:-2.178560pt;}
.ws73{word-spacing:-2.001920pt;}
.ws30{word-spacing:-1.530880pt;}
.ws77{word-spacing:-1.295360pt;}
.ws49{word-spacing:-0.883200pt;}
.ws68{word-spacing:-0.706560pt;}
.ws7{word-spacing:-0.647680pt;}
.ws60{word-spacing:-0.531200pt;}
.ws14{word-spacing:-0.320640pt;}
.ws28{word-spacing:-0.299520pt;}
.ws22{word-spacing:-0.294400pt;}
.ws1c{word-spacing:-0.265600pt;}
.wsa{word-spacing:-0.235520pt;}
.ws20{word-spacing:-0.117760pt;}
.ws13{word-spacing:-0.106880pt;}
.ws4{word-spacing:-0.096000pt;}
.ws62{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
.ws67{word-spacing:0.069120pt;}
.ws1b{word-spacing:0.106240pt;}
.wsf{word-spacing:0.117760pt;}
.ws3{word-spacing:0.144000pt;}
.ws12{word-spacing:0.170240pt;}
.ws1d{word-spacing:0.212480pt;}
.ws5c{word-spacing:0.235520pt;}
.wsc{word-spacing:0.294400pt;}
.ws35{word-spacing:0.353280pt;}
.ws70{word-spacing:0.374400pt;}
.ws6{word-spacing:0.412160pt;}
.ws21{word-spacing:0.529920pt;}
.ws1f{word-spacing:0.588800pt;}
.ws24{word-spacing:0.599040pt;}
.ws1e{word-spacing:0.690560pt;}
.ws79{word-spacing:0.706560pt;}
.ws37{word-spacing:0.765440pt;}
.ws10{word-spacing:0.883200pt;}
.ws6e{word-spacing:0.942080pt;}
.ws11{word-spacing:1.059840pt;}
.ws4c{word-spacing:1.177600pt;}
.ws61{word-spacing:1.236480pt;}
.ws6b{word-spacing:1.295360pt;}
.ws3c{word-spacing:1.707520pt;}
.ws43{word-spacing:1.884160pt;}
.wsd{word-spacing:2.296320pt;}
.wsb{word-spacing:2.355200pt;}
.wse{word-spacing:2.472960pt;}
.ws2e{word-spacing:2.944000pt;}
.ws52{word-spacing:3.120640pt;}
.ws40{word-spacing:3.591680pt;}
.ws34{word-spacing:4.239360pt;}
.ws3d{word-spacing:4.416000pt;}
.ws2b{word-spacing:4.887040pt;}
.ws38{word-spacing:5.063680pt;}
.ws54{word-spacing:5.122560pt;}
.ws2f{word-spacing:5.534720pt;}
.ws7b{word-spacing:5.652480pt;}
.ws55{word-spacing:6.182400pt;}
.ws72{word-spacing:6.359040pt;}
.ws33{word-spacing:6.830080pt;}
.ws56{word-spacing:6.947840pt;}
.ws31{word-spacing:7.418880pt;}
.ws5a{word-spacing:7.536640pt;}
.ws66{word-spacing:7.595520pt;}
.ws32{word-spacing:8.066560pt;}
.ws4b{word-spacing:8.714240pt;}
.ws36{word-spacing:9.361920pt;}
.ws63{word-spacing:9.538560pt;}
.ws4a{word-spacing:10.009600pt;}
.ws5b{word-spacing:10.657280pt;}
.ws64{word-spacing:11.304960pt;}
.ws65{word-spacing:11.481600pt;}
.ws3b{word-spacing:11.893760pt;}
.ws47{word-spacing:12.541440pt;}
.ws2a{word-spacing:13.189120pt;}
.ws41{word-spacing:13.836800pt;}
.ws42{word-spacing:13.954560pt;}
.ws78{word-spacing:14.072320pt;}
.ws58{word-spacing:14.720000pt;}
.ws57{word-spacing:15.132160pt;}
.ws2d{word-spacing:15.779840pt;}
.ws2c{word-spacing:16.427520pt;}
.ws8{word-spacing:17.016320pt;}
.ws9{word-spacing:17.192960pt;}
.ws6a{word-spacing:17.664000pt;}
.ws45{word-spacing:18.959360pt;}
.ws6f{word-spacing:20.254720pt;}
.ws7d{word-spacing:21.550080pt;}
.ws7c{word-spacing:21.726720pt;}
.ws48{word-spacing:22.138880pt;}
.ws4e{word-spacing:22.786560pt;}
.ws71{word-spacing:24.729600pt;}
.ws39{word-spacing:26.024960pt;}
.ws53{word-spacing:27.261440pt;}
.ws46{word-spacing:27.909120pt;}
.ws4d{word-spacing:29.852160pt;}
.ws76{word-spacing:34.974720pt;}
.ws7e{word-spacing:53.521920pt;}
.ws7a{word-spacing:150.791680pt;}
._8{margin-left:-14.425600pt;}
._9{margin-left:-12.364800pt;}
._5{margin-left:-10.657280pt;}
._a{margin-left:-9.538560pt;}
._7{margin-left:-8.508160pt;}
._6{margin-left:-7.389440pt;}
._b{margin-left:-4.444160pt;}
._c{margin-left:-3.179520pt;}
._4{margin-left:-2.208000pt;}
._0{margin-left:-0.972800pt;}
._1{width:1.442560pt;}
._17{width:2.331648pt;}
._f{width:3.916800pt;}
._16{width:4.974080pt;}
._d{width:6.094080pt;}
._e{width:7.713280pt;}
._11{width:8.832000pt;}
._10{width:10.219520pt;}
._18{width:11.187200pt;}
._12{width:12.720640pt;}
._19{width:20.549120pt;}
._1a{width:25.966080pt;}
._14{width:26.938880pt;}
._15{width:38.499840pt;}
._13{width:52.715520pt;}
._3{width:109.818880pt;}
._1b{width:150.056960pt;}
._2{width:751.603200pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y33{bottom:-53.440000pt;}
.y32{bottom:-22.560000pt;}
.y12{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.560000pt;}
.y7f{bottom:3.040000pt;}
.y7b{bottom:3.200000pt;}
.y121{bottom:4.960000pt;}
.y124{bottom:5.120000pt;}
.y13{bottom:8.640000pt;}
.y57{bottom:11.200000pt;}
.y1f{bottom:11.360000pt;}
.y55{bottom:11.680000pt;}
.y5a{bottom:11.840000pt;}
.y54{bottom:12.160000pt;}
.y59{bottom:12.320000pt;}
.y84{bottom:20.000000pt;}
.y12d{bottom:21.920000pt;}
.y1b{bottom:28.480000pt;}
.ye{bottom:33.920000pt;}
.y7d{bottom:36.800000pt;}
.y79{bottom:36.960000pt;}
.y19{bottom:46.400000pt;}
.y78{bottom:53.760000pt;}
.y3{bottom:58.400000pt;}
.y16{bottom:64.480000pt;}
.y1{bottom:72.160000pt;}
.y2f{bottom:88.960000pt;}
.y161{bottom:111.576960pt;}
.y141{bottom:114.735360pt;}
.ye4{bottom:116.285440pt;}
.y196{bottom:124.254720pt;}
.y102{bottom:124.661760pt;}
.y1b1{bottom:130.181760pt;}
.y17e{bottom:136.611200pt;}
.y160{bottom:136.851200pt;}
.y140{bottom:140.009600pt;}
.ye3{bottom:141.559680pt;}
.yc5{bottom:141.888640pt;}
.y11e{bottom:146.565760pt;}
.y195{bottom:149.528960pt;}
.y101{bottom:149.936000pt;}
.yc4{bottom:159.493760pt;}
.y17d{bottom:161.885440pt;}
.y15f{bottom:162.125440pt;}
.y1b0{bottom:163.787520pt;}
.y13f{bottom:165.445760pt;}
.y11d{bottom:171.840000pt;}
.y194{bottom:174.803200pt;}
.y100{bottom:175.210240pt;}
.yc3{bottom:177.260800pt;}
.ye2{bottom:177.402880pt;}
.y17c{bottom:187.159680pt;}
.y15e{bottom:187.561600pt;}
.yc2{bottom:195.027840pt;}
.y1af{bottom:197.540480pt;}
.y193{bottom:200.239360pt;}
.y86{bottom:200.324480pt;}
.y13e{bottom:202.083840pt;}
.ye1{bottom:202.839040pt;}
.y2d{bottom:203.840000pt;}
.yff{bottom:211.053440pt;}
.y17b{bottom:212.433920pt;}
.yc1{bottom:212.632960pt;}
.y15d{bottom:212.835840pt;}
.y11c{bottom:213.600000pt;}
.y85{bottom:217.120000pt;}
.y2b{bottom:217.600000pt;}
.y192{bottom:225.513600pt;}
.y13d{bottom:227.520000pt;}
.ye0{bottom:228.113280pt;}
.y2a{bottom:228.800000pt;}
.y2c{bottom:228.960000pt;}
.yc0{bottom:230.400000pt;}
.y82{bottom:230.880000pt;}
.y1ae{bottom:231.293440pt;}
.y28{bottom:246.400000pt;}
.yfe{bottom:248.015360pt;}
.y17a{bottom:248.277120pt;}
.y15c{bottom:248.517120pt;}
.y191{bottom:250.787840pt;}
.ydf{bottom:253.387520pt;}
.y11b{bottom:255.918080pt;}
.ybf{bottom:255.950720pt;}
.y27{bottom:257.600000pt;}
.y29{bottom:257.760000pt;}
.y1ad{bottom:265.046400pt;}
.y83{bottom:267.680000pt;}
.y13c{bottom:268.160000pt;}
.yfd{bottom:273.451520pt;}
.y179{bottom:273.713280pt;}
.ybe{bottom:273.717760pt;}
.y15b{bottom:274.115200pt;}
.y25{bottom:275.200000pt;}
.y190{bottom:276.062080pt;}
.yde{bottom:278.823680pt;}
.y11a{bottom:281.354240pt;}
.y24{bottom:286.400000pt;}
.y26{bottom:286.560000pt;}
.ybd{bottom:291.322880pt;}
.y80{bottom:298.400000pt;}
.yfc{bottom:298.725760pt;}
.y1ac{bottom:298.799360pt;}
.y178{bottom:298.987520pt;}
.y15a{bottom:299.389440pt;}
.y18f{bottom:301.336320pt;}
.y22{bottom:304.000000pt;}
.ydd{bottom:304.097920pt;}
.y119{bottom:306.628480pt;}
.ybc{bottom:309.089920pt;}
.y13b{bottom:309.323520pt;}
.y21{bottom:315.200000pt;}
.y23{bottom:315.360000pt;}
.y81{bottom:318.400000pt;}
.yfb{bottom:324.000000pt;}
.y177{bottom:324.261760pt;}
.y159{bottom:324.663680pt;}
.y18e{bottom:326.610560pt;}
.ydc{bottom:329.372160pt;}
.y51{bottom:330.203520pt;}
.y118{bottom:331.902720pt;}
.y1ab{bottom:332.405120pt;}
.y1e{bottom:332.800000pt;}
.y13a{bottom:334.759680pt;}
.ybb{bottom:334.849920pt;}
.y1d{bottom:344.000000pt;}
.y20{bottom:344.160000pt;}
.y7c{bottom:348.960000pt;}
.y176{bottom:349.536000pt;}
.y158{bottom:349.937920pt;}
.y18d{bottom:351.884800pt;}
.yba{bottom:352.455040pt;}
.ydb{bottom:354.646400pt;}
.y117{bottom:357.176960pt;}
.y50{bottom:359.157760pt;}
.y139{bottom:360.033920pt;}
.y15{bottom:361.600000pt;}
.yfa{bottom:364.640000pt;}
.y1aa{bottom:366.158080pt;}
.y7e{bottom:368.960000pt;}
.yb9{bottom:370.222080pt;}
.y1c{bottom:372.160000pt;}
.y175{bottom:374.810240pt;}
.y157{bottom:375.212160pt;}
.y116{bottom:382.451200pt;}
.y138{bottom:385.308160pt;}
.y18c{bottom:387.728000pt;}
.y4f{bottom:387.964800pt;}
.yb8{bottom:387.989120pt;}
.y1a{bottom:390.080000pt;}
.yda{bottom:390.489600pt;}
.y77{bottom:399.520000pt;}
.y1a9{bottom:399.911040pt;}
.yb7{bottom:405.594240pt;}
.yf9{bottom:405.808000pt;}
.y115{bottom:407.725440pt;}
.y18{bottom:408.000000pt;}
.y174{bottom:410.653440pt;}
.y156{bottom:411.055360pt;}
.y18b{bottom:413.164160pt;}
.yd9{bottom:415.925760pt;}
.y4e{bottom:416.919040pt;}
.y7a{bottom:419.520000pt;}
.y137{bottom:421.151360pt;}
.yb6{bottom:423.361280pt;}
.y14{bottom:425.920000pt;}
.y17{bottom:426.080000pt;}
.yf8{bottom:431.244160pt;}
.y1a8{bottom:433.664000pt;}
.y173{bottom:436.089600pt;}
.y155{bottom:436.491520pt;}
.y18a{bottom:438.438400pt;}
.yb5{bottom:441.128320pt;}
.yd8{bottom:441.200000pt;}
.y11{bottom:443.520000pt;}
.y114{bottom:443.568640pt;}
.y99{bottom:444.649600pt;}
.y4d{bottom:445.726080pt;}
.y136{bottom:446.587520pt;}
.yd{bottom:452.160000pt;}
.yf7{bottom:456.518400pt;}
.y1c1{bottom:457.509120pt;}
.yb4{bottom:458.733440pt;}
.y172{bottom:461.363840pt;}
.y154{bottom:461.765760pt;}
.y189{bottom:463.712640pt;}
.y10{bottom:464.485760pt;}
.yd7{bottom:466.474240pt;}
.y1a7{bottom:467.416960pt;}
.y113{bottom:469.004800pt;}
.y98{bottom:470.085760pt;}
.y76{bottom:471.445760pt;}
.y135{bottom:471.861760pt;}
.y4c{bottom:474.680320pt;}
.yb3{bottom:476.500480pt;}
.yf6{bottom:481.792640pt;}
.yc{bottom:485.895040pt;}
.yf{bottom:486.080000pt;}
.y171{bottom:486.638080pt;}
.y153{bottom:487.040000pt;}
.y188{bottom:488.986880pt;}
.y75{bottom:489.521920pt;}
.y1c0{bottom:490.952960pt;}
.yd6{bottom:491.748480pt;}
.yb2{bottom:494.267520pt;}
.y112{bottom:494.279040pt;}
.y97{bottom:495.360000pt;}
.y134{bottom:497.297920pt;}
.y1a6{bottom:501.169920pt;}
.y4b{bottom:503.487360pt;}
.yf5{bottom:507.066880pt;}
.y170{bottom:512.074240pt;}
.y187{bottom:514.423040pt;}
.y74{bottom:515.120000pt;}
.y96{bottom:516.960000pt;}
.yd5{bottom:517.022720pt;}
.yb{bottom:518.691200pt;}
.y111{bottom:519.715200pt;}
.yb1{bottom:519.865600pt;}
.y1bf{bottom:524.705920pt;}
.y152{bottom:528.800000pt;}
.y4a{bottom:532.294400pt;}
.yf4{bottom:532.341120pt;}
.y133{bottom:532.979200pt;}
.y1a5{bottom:534.775680pt;}
.y16f{bottom:537.348480pt;}
.yb0{bottom:537.632640pt;}
.y186{bottom:539.697280pt;}
.y73{bottom:540.394240pt;}
.y95{bottom:542.880000pt;}
.y110{bottom:544.989440pt;}
.ya{bottom:547.498240pt;}
.yd4{bottom:552.865920pt;}
.yaf{bottom:555.399680pt;}
.yf3{bottom:557.615360pt;}
.y132{bottom:558.415360pt;}
.y1be{bottom:558.458880pt;}
.y49{bottom:562.220160pt;}
.y16e{bottom:562.622720pt;}
.y185{bottom:564.971520pt;}
.y72{bottom:565.668480pt;}
.y1a4{bottom:568.528640pt;}
.y94{bottom:568.800000pt;}
.y10f{bottom:570.263680pt;}
.y151{bottom:571.098240pt;}
.yae{bottom:573.004800pt;}
.yd3{bottom:578.302080pt;}
.yf2{bottom:583.051520pt;}
.y131{bottom:583.851520pt;}
.y48{bottom:588.304000pt;}
.y184{bottom:590.245760pt;}
.yad{bottom:590.771840pt;}
.y71{bottom:590.942720pt;}
.y1bd{bottom:592.211840pt;}
.y93{bottom:594.880000pt;}
.y10e{bottom:595.537920pt;}
.y150{bottom:596.534400pt;}
.y16d{bottom:598.465920pt;}
.y34{bottom:601.920000pt;}
.y1a3{bottom:602.281600pt;}
.y63{bottom:602.389120pt;}
.yd2{bottom:603.576320pt;}
.yf1{bottom:608.325760pt;}
.yac{bottom:608.538880pt;}
.y130{bottom:609.125760pt;}
.y47{bottom:614.387840pt;}
.y183{bottom:615.520000pt;}
.y70{bottom:616.216960pt;}
.y92{bottom:620.800000pt;}
.y10d{bottom:620.812160pt;}
.y16c{bottom:623.902080pt;}
.y1bc{bottom:625.964800pt;}
.yab{bottom:626.144000pt;}
.yd1{bottom:628.850560pt;}
.y62{bottom:631.343360pt;}
.y14f{bottom:632.377600pt;}
.yf0{bottom:633.600000pt;}
.y12f{bottom:634.400000pt;}
.y1a2{bottom:636.034560pt;}
.y46{bottom:640.471680pt;}
.y6f{bottom:641.491200pt;}
.yaa{bottom:643.911040pt;}
.y91{bottom:646.720000pt;}
.y16b{bottom:649.176320pt;}
.yd0{bottom:654.124800pt;}
.y10c{bottom:656.655360pt;}
.y182{bottom:657.280000pt;}
.y14e{bottom:657.813760pt;}
.y1bb{bottom:659.717760pt;}
.y45{bottom:659.990400pt;}
.y61{bottom:660.150400pt;}
.ya9{bottom:661.678080pt;}
.y12e{bottom:664.160000pt;}
.y6e{bottom:666.765440pt;}
.y1a1{bottom:669.787520pt;}
.y90{bottom:672.800000pt;}
.yef{bottom:674.240000pt;}
.y16a{bottom:674.450560pt;}
.y9{bottom:675.665280pt;}
.ycf{bottom:679.560960pt;}
.y12c{bottom:681.600000pt;}
.y10b{bottom:682.091520pt;}
.y14d{bottom:684.059520pt;}
.y44{bottom:685.912320pt;}
.ya8{bottom:687.276160pt;}
.y60{bottom:688.957440pt;}
.y6d{bottom:692.039680pt;}
.y1ba{bottom:693.323520pt;}
.y12b{bottom:695.040000pt;}
.y8f{bottom:698.720000pt;}
.y181{bottom:699.562880pt;}
.y169{bottom:699.724800pt;}
.y1a0{bottom:703.393280pt;}
.y8{bottom:704.472320pt;}
.yce{bottom:704.835200pt;}
.ya7{bottom:705.043200pt;}
.y43{bottom:705.431040pt;}
.y10a{bottom:707.365760pt;}
.y14c{bottom:709.495680pt;}
.y6c{bottom:717.313920pt;}
.y5f{bottom:717.911680pt;}
.yee{bottom:718.560000pt;}
.y12a{bottom:720.000000pt;}
.ya6{bottom:722.810240pt;}
.y8e{bottom:724.640000pt;}
.y42{bottom:724.787840pt;}
.y168{bottom:724.999040pt;}
.y1b9{bottom:727.076480pt;}
.ycd{bottom:730.109440pt;}
.y109{bottom:732.640000pt;}
.y7{bottom:733.279360pt;}
.y14b{bottom:734.769920pt;}
.y19f{bottom:737.146240pt;}
.ya5{bottom:740.415360pt;}
.y129{bottom:741.600000pt;}
.y6b{bottom:742.750080pt;}
.y41{bottom:744.306560pt;}
.y5e{bottom:746.718720pt;}
.y167{bottom:750.273280pt;}
.y8d{bottom:750.560000pt;}
.ycc{bottom:755.383680pt;}
.ya4{bottom:758.182400pt;}
.y14a{bottom:760.044160pt;}
.y1b8{bottom:760.829440pt;}
.yed{bottom:760.842240pt;}
.y127{bottom:763.040000pt;}
.y6a{bottom:768.024320pt;}
.y40{bottom:770.228480pt;}
.y19e{bottom:770.899200pt;}
.y108{bottom:773.280000pt;}
.y126{bottom:774.240000pt;}
.y128{bottom:774.560000pt;}
.y166{bottom:775.547520pt;}
.y5d{bottom:775.672960pt;}
.ya3{bottom:775.949440pt;}
.y8c{bottom:776.480000pt;}
.y149{bottom:785.318400pt;}
.yec{bottom:786.278400pt;}
.ycb{bottom:791.226880pt;}
.y69{bottom:793.298560pt;}
.ya2{bottom:793.716480pt;}
.y1b7{bottom:794.582400pt;}
.y3f{bottom:796.150400pt;}
.y125{bottom:799.520000pt;}
.y165{bottom:800.983680pt;}
.y8b{bottom:802.560000pt;}
.y5c{bottom:804.480000pt;}
.y19d{bottom:804.652160pt;}
.y148{bottom:810.592640pt;}
.ya1{bottom:811.321600pt;}
.yeb{bottom:811.552640pt;}
.y6{bottom:812.796800pt;}
.y107{bottom:814.408320pt;}
.yca{bottom:816.663040pt;}
.y68{bottom:818.572800pt;}
.y5b{bottom:818.880000pt;}
.y123{bottom:820.960000pt;}
.y3e{bottom:822.234240pt;}
.y164{bottom:826.257920pt;}
.y1b6{bottom:828.335360pt;}
.y8a{bottom:828.480000pt;}
.ya0{bottom:829.088640pt;}
.y147{bottom:835.866880pt;}
.yea{bottom:836.826880pt;}
.y19c{bottom:838.405120pt;}
.y106{bottom:839.844480pt;}
.y5{bottom:841.603840pt;}
.yc9{bottom:841.937280pt;}
.y122{bottom:842.560000pt;}
.y67{bottom:843.847040pt;}
.y58{bottom:845.760000pt;}
.y9f{bottom:846.855680pt;}
.y3d{bottom:848.318080pt;}
.y197{bottom:851.370240pt;}
.y163{bottom:851.532160pt;}
.y89{bottom:854.400000pt;}
.y146{bottom:861.141120pt;}
.y1b5{bottom:861.941120pt;}
.ye9{bottom:862.101120pt;}
.y120{bottom:864.160000pt;}
.y9e{bottom:864.460800pt;}
.y105{bottom:865.118720pt;}
.y2e{bottom:865.440000pt;}
.yc8{bottom:867.211520pt;}
.y66{bottom:869.121280pt;}
.y19b{bottom:872.010880pt;}
.y56{bottom:872.640000pt;}
.y3c{bottom:874.401920pt;}
.y180{bottom:876.806400pt;}
.y31{bottom:880.167680pt;}
.y88{bottom:880.480000pt;}
.y9d{bottom:882.227840pt;}
.y145{bottom:886.415360pt;}
.y162{bottom:887.375360pt;}
.ye8{bottom:887.537280pt;}
.yc7{bottom:892.485760pt;}
.y65{bottom:894.395520pt;}
.y1b4{bottom:895.694080pt;}
.y53{bottom:898.240000pt;}
.y9c{bottom:899.994880pt;}
.y3b{bottom:900.485760pt;}
.y104{bottom:900.961920pt;}
.y11f{bottom:901.918720pt;}
.y17f{bottom:902.080640pt;}
.y19a{bottom:905.763840pt;}
.y87{bottom:906.400000pt;}
.y64{bottom:911.352960pt;}
.y144{bottom:911.689600pt;}
.ye7{bottom:912.811520pt;}
.y30{bottom:917.280000pt;}
.y9b{bottom:917.600000pt;}
.yc6{bottom:917.760000pt;}
.y3a{bottom:929.440000pt;}
.y1b3{bottom:929.447040pt;}
.y199{bottom:934.880000pt;}
.y143{bottom:937.125760pt;}
.y103{bottom:937.923840pt;}
.ye6{bottom:938.085760pt;}
.y52{bottom:940.160000pt;}
.y198{bottom:954.400000pt;}
.y9a{bottom:959.520000pt;}
.y39{bottom:959.680000pt;}
.y142{bottom:962.400000pt;}
.y1b2{bottom:963.200000pt;}
.ye5{bottom:963.360000pt;}
.y38{bottom:980.160000pt;}
.y37{bottom:1001.760000pt;}
.y4{bottom:1014.240000pt;}
.y36{bottom:1027.520000pt;}
.y35{bottom:1049.280000pt;}
.h7{height:8.640000pt;}
.h2{height:13.760000pt;}
.h1f{height:16.800000pt;}
.h1b{height:20.800000pt;}
.h19{height:20.801333pt;}
.h1a{height:20.960000pt;}
.h8{height:23.312500pt;}
.h13{height:24.960000pt;}
.h12{height:26.081333pt;}
.h14{height:26.240000pt;}
.ha{height:28.800000pt;}
.h3{height:34.968750pt;}
.h1d{height:35.838667pt;}
.h1e{height:37.760000pt;}
.hf{height:38.698750pt;}
.h10{height:40.611070pt;}
.h5{height:42.866250pt;}
.h4{height:42.895000pt;}
.h17{height:43.020440pt;}
.h18{height:50.321250pt;}
.h16{height:50.560000pt;}
.h6{height:51.360000pt;}
.h11{height:54.514687pt;}
.hc{height:61.969687pt;}
.he{height:64.302590pt;}
.h15{height:67.520000pt;}
.hd{height:77.811562pt;}
.h1c{height:78.095000pt;}
.h9{height:81.920000pt;}
.hb{height:108.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:1.440000pt;}
.wc{width:7.200000pt;}
.w10{width:131.201333pt;}
.w9{width:131.840000pt;}
.wb{width:142.080000pt;}
.w11{width:155.201333pt;}
.wf{width:166.880000pt;}
.w8{width:168.480000pt;}
.w5{width:171.520000pt;}
.w12{width:185.441333pt;}
.w2{width:302.081333pt;}
.w3{width:332.640000pt;}
.wa{width:339.360000pt;}
.w6{width:439.520000pt;}
.wd{width:453.280000pt;}
.we{width:453.281333pt;}
.w7{width:609.760000pt;}
.w13{width:641.441333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.280000pt;}
.x2{left:7.200000pt;}
.x1d{left:9.600000pt;}
.x25{left:20.640000pt;}
.x1{left:75.520000pt;}
.x2d{left:83.200000pt;}
.xd{left:84.800000pt;}
.x8{left:87.516800pt;}
.x21{left:90.181120pt;}
.x23{left:99.498880pt;}
.x19{left:106.560000pt;}
.x18{left:112.640000pt;}
.x28{left:116.000000pt;}
.x10{left:118.720000pt;}
.x29{left:123.520000pt;}
.x9{left:131.838720pt;}
.x1f{left:133.600000pt;}
.x17{left:136.800000pt;}
.x1e{left:139.360000pt;}
.x14{left:148.800000pt;}
.x16{left:157.920000pt;}
.x27{left:159.040000pt;}
.x1a{left:167.360000pt;}
.xe{left:169.760000pt;}
.x15{left:186.880000pt;}
.x1b{left:218.240000pt;}
.x1c{left:221.772480pt;}
.x20{left:227.040000pt;}
.x24{left:234.720000pt;}
.x2a{left:244.000000pt;}
.x22{left:245.440000pt;}
.x26{left:255.360000pt;}
.xa{left:256.960000pt;}
.xf{left:258.400000pt;}
.xc{left:259.680000pt;}
.x13{left:311.520000pt;}
.x4{left:325.280000pt;}
.x11{left:352.160000pt;}
.x2b{left:376.000000pt;}
.x3{left:377.600000pt;}
.x5{left:396.798720pt;}
.x12{left:410.400000pt;}
.x2c{left:532.000000pt;}
.x2e{left:538.720000pt;}
.x7{left:665.762560pt;}
.x6{left:703.519360pt;}
}




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