
    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_38f6d1fce24aacab7551b98c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b6154d25b76d7289268c969e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2be10febc137190b050c8f91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_5a76c76c44d0e17bff6a6d0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_0083e57ed37387dcc872c3f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e159c6e8266c56d9a793aaa0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bca18702bd27cc7ce636f761.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_f1f56d23c479d6a4456b77b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_b3f1e47f2115e4aedc5bac3a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_05a29467dd33708e698ea97c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6706e16a3f89c39be5393f82.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.933594;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_fed520eea8ca407abfa5fb34.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.208008;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_e0d243ef37a067c389e0445b.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_2b283b14d44d9cfe0d0efd9f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.435059;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_91a222e65daf015d169e5b07.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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:ff12;src:url('chunks/assets/font_120aabface083c6bd44cf7b0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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);}
.v1{vertical-align:-74.880000px;}
.va{vertical-align:-34.560000px;}
.v11{vertical-align:-31.680000px;}
.v4{vertical-align:-27.000000px;}
.v3{vertical-align:-24.120000px;}
.v9{vertical-align:-22.320000px;}
.v10{vertical-align:-18.720000px;}
.v14{vertical-align:-15.480000px;}
.vf{vertical-align:-14.040000px;}
.v6{vertical-align:-12.240000px;}
.v12{vertical-align:-11.160000px;}
.v5{vertical-align:-6.120000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.520000px;}
.v15{vertical-align:6.480000px;}
.v13{vertical-align:11.160000px;}
.v8{vertical-align:12.240000px;}
.vc{vertical-align:14.400000px;}
.v2{vertical-align:24.120000px;}
.ve{vertical-align:34.200000px;}
.vd{vertical-align:54.360000px;}
.ls3b{letter-spacing:-0.373200px;}
.lsa{letter-spacing:-0.270000px;}
.ls31{letter-spacing:-0.220200px;}
.ls9{letter-spacing:-0.180000px;}
.ls3c{letter-spacing:-0.166800px;}
.ls25{letter-spacing:-0.153600px;}
.ls38{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.139800px;}
.ls10{letter-spacing:-0.126000px;}
.ls37{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.064200px;}
.ls8{letter-spacing:-0.054720px;}
.ls24{letter-spacing:-0.024120px;}
.lsf{letter-spacing:-0.018000px;}
.ls3d{letter-spacing:-0.013320px;}
.lsb{letter-spacing:-0.007560px;}
.ls26{letter-spacing:-0.006840px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.051120px;}
.ls16{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.060600px;}
.ls22{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.074400px;}
.ls3{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.108600px;}
.lse{letter-spacing:0.139800px;}
.ls4{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.153600px;}
.ls32{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.250200px;}
.ls1a{letter-spacing:1.006560px;}
.ls12{letter-spacing:1.286640px;}
.ls11{letter-spacing:1.882080px;}
.ls6{letter-spacing:2.252520px;}
.ls2f{letter-spacing:2.328480px;}
.ls29{letter-spacing:2.372520px;}
.lsc{letter-spacing:2.610000px;}
.ls1c{letter-spacing:2.612520px;}
.ls28{letter-spacing:2.655720px;}
.ls33{letter-spacing:2.862000px;}
.ls27{letter-spacing:3.097800px;}
.ls21{letter-spacing:3.217800px;}
.ls18{letter-spacing:3.575880px;}
.ls2d{letter-spacing:4.005720px;}
.ls34{letter-spacing:5.820480px;}
.ls15{letter-spacing:10.575720px;}
.ls14{letter-spacing:12.015720px;}
.ls2b{letter-spacing:13.410360px;}
.ls1d{letter-spacing:15.932520px;}
.ls13{letter-spacing:16.895880px;}
.ls2a{letter-spacing:17.255880px;}
.ls20{letter-spacing:18.812520px;}
.ls35{letter-spacing:20.580480px;}
.ls5{letter-spacing:22.410000px;}
.ls36{letter-spacing:30.660480px;}
.ls2e{letter-spacing:45.566640px;}
.ls1f{letter-spacing:75.742560px;}
.ls2c{letter-spacing:85.894920px;}
.ls1{letter-spacing:581.130000px;}
.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;}
}
.ws1{word-spacing:-31.463160px;}
.ws7{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.210000px;}
.ws2c{word-spacing:-15.183600px;}
.wsa{word-spacing:-15.169800px;}
.ws5{word-spacing:-15.030000px;}
.ws30{word-spacing:-15.016680px;}
.ws2d{word-spacing:-14.890200px;}
.ws29{word-spacing:-14.876400px;}
.ws2f{word-spacing:-14.863200px;}
.ws4{word-spacing:-14.850000px;}
.ws1e{word-spacing:-14.809800px;}
.ws2e{word-spacing:-14.656800px;}
.ws2{word-spacing:-13.652640px;}
.wsb{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.ws27{word-spacing:-13.392000px;}
.wse{word-spacing:-13.374000px;}
.ws28{word-spacing:-13.356000px;}
.ws10{word-spacing:-13.335000px;}
.ws19{word-spacing:-13.287000px;}
.ws12{word-spacing:-13.226400px;}
.ws1b{word-spacing:-13.219560px;}
.ws8{word-spacing:-13.218840px;}
.ws24{word-spacing:-11.880000px;}
.ws21{word-spacing:-10.530000px;}
.ws6{word-spacing:-9.720000px;}
.ws17{word-spacing:-9.266400px;}
.ws11{word-spacing:-9.242280px;}
.wsf{word-spacing:-9.072000px;}
.wsc{word-spacing:-9.000000px;}
.ws2a{word-spacing:-8.553600px;}
.ws2b{word-spacing:-6.648000px;}
.ws1d{word-spacing:-0.260280px;}
.ws15{word-spacing:-0.176040px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.183960px;}
.ws18{word-spacing:0.303960px;}
.ws26{word-spacing:2.862000px;}
.ws25{word-spacing:3.222000px;}
.ws1c{word-spacing:3.303720px;}
.ws14{word-spacing:3.423960px;}
.ws20{word-spacing:7.480800px;}
.ws16{word-spacing:7.840800px;}
.ws1f{word-spacing:10.720800px;}
.ws13{word-spacing:11.080800px;}
.ws22{word-spacing:64.626120px;}
.ws1a{word-spacing:210.546120px;}
._1d{margin-left:-133.424280px;}
._1b{margin-left:-13.174560px;}
._16{margin-left:-6.730920px;}
._1c{margin-left:-5.721000px;}
._18{margin-left:-4.715280px;}
._17{margin-left:-2.879160px;}
._0{margin-left:-1.175400px;}
._2{width:1.578720px;}
._b{width:2.854440px;}
._a{width:3.967920px;}
._d{width:5.130000px;}
._10{width:6.733440px;}
._8{width:8.056080px;}
._3{width:9.559080px;}
._4{width:10.564680px;}
._7{width:11.663280px;}
._9{width:13.286520px;}
._1a{width:14.288760px;}
._12{width:16.232400px;}
._c{width:17.254440px;}
._5{width:18.276480px;}
._19{width:19.870200px;}
._15{width:20.946960px;}
._e{width:22.204800px;}
._f{width:23.404320px;}
._13{width:24.829560px;}
._1e{width:25.920000px;}
._20{width:27.114120px;}
._6{width:28.169280px;}
._1f{width:30.240360px;}
._14{width:849.090000px;}
._1{width:1427.876160px;}
._11{width:1620.452640px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.880000px;}
.fsc{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.120000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs6{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y138{bottom:2.880000px;}
.y10d{bottom:2.970000px;}
.y77{bottom:3.060000px;}
.y25{bottom:3.150000px;}
.y7a{bottom:3.240000px;}
.y7d{bottom:3.330000px;}
.y36{bottom:3.420000px;}
.y110{bottom:3.870000px;}
.y86{bottom:4.950000px;}
.ybc{bottom:5.490000px;}
.ybe{bottom:5.580000px;}
.ybb{bottom:5.760000px;}
.ybf{bottom:5.850000px;}
.y99{bottom:10.980000px;}
.y81{bottom:11.070000px;}
.y87{bottom:12.690000px;}
.y26{bottom:13.860000px;}
.y134{bottom:15.480000px;}
.y132{bottom:17.100000px;}
.y12f{bottom:18.360000px;}
.y79{bottom:18.810000px;}
.ya1{bottom:18.840000px;}
.y10f{bottom:19.350000px;}
.y133{bottom:20.160000px;}
.y24{bottom:20.340000px;}
.y85{bottom:20.430000px;}
.y35{bottom:20.700000px;}
.y80{bottom:26.550000px;}
.y8a{bottom:26.580000px;}
.y94{bottom:26.640000px;}
.ya2{bottom:26.670000px;}
.y82{bottom:34.290000px;}
.y7c{bottom:34.380000px;}
.y8b{bottom:34.410000px;}
.y6{bottom:35.925007px;}
.y34{bottom:37.980000px;}
.y90{bottom:42.030000px;}
.y9d{bottom:42.120000px;}
.ya5{bottom:49.770000px;}
.y8d{bottom:49.860000px;}
.y33{bottom:55.170000px;}
.ya4{bottom:65.340000px;}
.y5{bottom:66.525004px;}
.y32{bottom:72.270000px;}
.y4{bottom:97.125005px;}
.y22{bottom:139.264499px;}
.y19{bottom:196.933500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y28{bottom:278.310000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y17a{bottom:331.410000px;}
.y54{bottom:332.760000px;}
.y154{bottom:334.560000px;}
.y53{bottom:337.980000px;}
.ye5{bottom:338.070000px;}
.y113{bottom:340.230000px;}
.y7f{bottom:343.560000px;}
.y10{bottom:348.133500px;}
.y179{bottom:348.690000px;}
.y13a{bottom:349.230000px;}
.y52{bottom:350.670000px;}
.y153{bottom:351.840000px;}
.y112{bottom:355.710000px;}
.y1b1{bottom:357.690000px;}
.y19b{bottom:362.190000px;}
.y139{bottom:362.280000px;}
.ye4{bottom:362.910000px;}
.y178{bottom:365.880000px;}
.ye2{bottom:366.510000px;}
.y111{bottom:368.760000px;}
.y152{bottom:369.120000px;}
.ye3{bottom:372.450000px;}
.y9e{bottom:373.260000px;}
.y137{bottom:378.570000px;}
.y19a{bottom:379.380000px;}
.y51{bottom:379.740000px;}
.y1b0{bottom:383.880000px;}
.y151{bottom:386.310000px;}
.yf{bottom:386.785499px;}
.y177{bottom:387.660000px;}
.y7e{bottom:390.900000px;}
.y136{bottom:394.770000px;}
.y50{bottom:397.290000px;}
.ye1{bottom:397.650000px;}
.y10e{bottom:401.160000px;}
.y150{bottom:403.590000px;}
.y176{bottom:404.850000px;}
.ye{bottom:408.044999px;}
.y4f{bottom:414.570000px;}
.ye0{bottom:414.930000px;}
.y199{bottom:418.350000px;}
.y9c{bottom:420.510000px;}
.y14f{bottom:420.870000px;}
.y175{bottom:422.130000px;}
.y7b{bottom:422.670000px;}
.yb8{bottom:423.750000px;}
.y135{bottom:426.630000px;}
.y4e{bottom:432.120000px;}
.y10c{bottom:433.560000px;}
.y1af{bottom:435.630000px;}
.y14e{bottom:438.060000px;}
.y198{bottom:440.130000px;}
.yb7{bottom:440.940000px;}
.ydf{bottom:441.120000px;}
.y174{bottom:443.910000px;}
.y4d{bottom:449.400000px;}
.y10b{bottom:449.760000px;}
.y14d{bottom:455.340000px;}
.y197{bottom:457.410000px;}
.yb6{bottom:458.220000px;}
.y131{bottom:458.400000px;}
.yde{bottom:458.760000px;}
.y173{bottom:461.100000px;}
.y78{bottom:470.010000px;}
.y14c{bottom:472.620000px;}
.y1ae{bottom:474.600000px;}
.y4c{bottom:475.500000px;}
.ydd{bottom:475.950000px;}
.y10a{bottom:478.380000px;}
.y196{bottom:479.100000px;}
.y9b{bottom:483.420000px;}
.y14b{bottom:489.810000px;}
.y130{bottom:490.170000px;}
.y1ad{bottom:491.880000px;}
.yb5{bottom:492.690000px;}
.y4b{bottom:492.870000px;}
.ydc{bottom:493.500000px;}
.y195{bottom:496.380000px;}
.y172{bottom:500.160000px;}
.y76{bottom:501.780000px;}
.yd{bottom:502.864502px;}
.y109{bottom:504.840000px;}
.y14a{bottom:507.090000px;}
.yb4{bottom:509.970000px;}
.ydb{bottom:511.140000px;}
.y4a{bottom:512.310000px;}
.y194{bottom:513.660000px;}
.y171{bottom:517.350000px;}
.yc{bottom:520.864502px;}
.y108{bottom:522.030000px;}
.y75{bottom:530.400000px;}
.y9a{bottom:530.670000px;}
.y193{bottom:530.850000px;}
.y149{bottom:533.370000px;}
.yb3{bottom:536.070000px;}
.yda{bottom:537.780000px;}
.yb{bottom:538.864499px;}
.y170{bottom:539.130000px;}
.y49{bottom:539.310000px;}
.y192{bottom:548.130000px;}
.y148{bottom:550.560000px;}
.y1ac{bottom:552.630000px;}
.y12e{bottom:553.800000px;}
.yd9{bottom:554.970000px;}
.y16f{bottom:556.410000px;}
.y107{bottom:556.590000px;}
.y74{bottom:556.770000px;}
.ya{bottom:556.864499px;}
.yb2{bottom:562.260000px;}
.y98{bottom:562.530000px;}
.y191{bottom:565.410000px;}
.y147{bottom:567.840000px;}
.y48{bottom:568.290000px;}
.y1ab{bottom:569.910000px;}
.y106{bottom:573.780000px;}
.y73{bottom:574.050000px;}
.y16e{bottom:578.100000px;}
.yd8{bottom:581.880000px;}
.y190{bottom:582.600000px;}
.y146{bottom:585.120000px;}
.y12d{bottom:585.570000px;}
.y47{bottom:586.200000px;}
.yb1{bottom:588.720000px;}
.y72{bottom:591.330000px;}
.y1aa{bottom:591.600000px;}
.y97{bottom:594.330000px;}
.y16d{bottom:595.410000px;}
.y105{bottom:600.090000px;}
.y12c{bottom:601.890000px;}
.y145{bottom:602.340000px;}
.y18f{bottom:604.410000px;}
.yb0{bottom:606.030000px;}
.y71{bottom:608.550000px;}
.y1a9{bottom:608.910000px;}
.yd7{bottom:610.980000px;}
.y16c{bottom:612.690000px;}
.y46{bottom:615.300000px;}
.y104{bottom:617.280000px;}
.y12b{bottom:621.510000px;}
.y18e{bottom:621.690000px;}
.yaf{bottom:623.220000px;}
.y70{bottom:625.830000px;}
.y96{bottom:626.100000px;}
.y1a8{bottom:626.190000px;}
.yd6{bottom:628.170000px;}
.y144{bottom:628.440000px;}
.y45{bottom:632.580000px;}
.y16b{bottom:634.380000px;}
.y103{bottom:634.560000px;}
.y18d{bottom:638.880000px;}
.yae{bottom:640.500000px;}
.y6f{bottom:643.110000px;}
.y9{bottom:645.510000px;}
.y12a{bottom:647.880000px;}
.y44{bottom:649.770000px;}
.y16a{bottom:651.660000px;}
.y102{bottom:651.840000px;}
.y143{bottom:654.900000px;}
.yd5{bottom:655.080000px;}
.yad{bottom:657.690000px;}
.y6e{bottom:660.300000px;}
.y18c{bottom:660.660000px;}
.y1a7{bottom:665.160000px;}
.y8{bottom:666.771000px;}
.y43{bottom:667.050000px;}
.y169{bottom:668.940000px;}
.y142{bottom:672.090000px;}
.y95{bottom:673.440000px;}
.y129{bottom:674.160000px;}
.yac{bottom:674.970000px;}
.y6d{bottom:677.580000px;}
.y101{bottom:677.850000px;}
.y18b{bottom:677.940000px;}
.y1a6{bottom:682.440000px;}
.y42{bottom:684.330000px;}
.yd3{bottom:685.590000px;}
.y141{bottom:689.370000px;}
.y168{bottom:690.630000px;}
.yd4{bottom:691.170000px;}
.y128{bottom:691.440000px;}
.yab{bottom:692.250000px;}
.y6c{bottom:694.770000px;}
.y18a{bottom:695.130000px;}
.y100{bottom:695.310000px;}
.y41{bottom:701.520000px;}
.y1a5{bottom:704.130000px;}
.y93{bottom:705.210000px;}
.y140{bottom:706.560000px;}
.y167{bottom:707.910000px;}
.y127{bottom:708.630000px;}
.y6b{bottom:712.410000px;}
.yff{bottom:712.590000px;}
.yd2{bottom:713.490000px;}
.y189{bottom:716.910000px;}
.y40{bottom:718.800000px;}
.y1a4{bottom:721.410000px;}
.y13f{bottom:723.840000px;}
.yaa{bottom:724.740000px;}
.y166{bottom:725.190000px;}
.y126{bottom:725.910000px;}
.y7{bottom:726.298500px;}
.yd1{bottom:730.770000px;}
.yfd{bottom:732.480000px;}
.y188{bottom:734.190000px;}
.y3f{bottom:736.080000px;}
.y6a{bottom:738.510000px;}
.y1a3{bottom:738.690000px;}
.yfe{bottom:740.400000px;}
.y13e{bottom:741.120000px;}
.y125{bottom:743.100000px;}
.y165{bottom:746.880000px;}
.yd0{bottom:747.960000px;}
.y187{bottom:751.380000px;}
.y92{bottom:752.550000px;}
.y3{bottom:752.599495px;}
.y3e{bottom:753.270000px;}
.yfc{bottom:753.360000px;}
.y124{bottom:760.380000px;}
.y164{bottom:764.160000px;}
.y69{bottom:764.880000px;}
.ycf{bottom:765.240000px;}
.y13d{bottom:767.130000px;}
.y3d{bottom:770.550000px;}
.y186{bottom:773.160000px;}
.y123{bottom:777.660000px;}
.yfb{bottom:780.630000px;}
.yce{bottom:782.430000px;}
.y163{bottom:785.850000px;}
.ya9{bottom:787.560000px;}
.y3c{bottom:787.830000px;}
.y185{bottom:790.350000px;}
.y68{bottom:791.160000px;}
.y13c{bottom:791.700000px;}
.y122{bottom:794.850000px;}
.y91{bottom:799.890000px;}
.y162{bottom:803.130000px;}
.y3b{bottom:805.020000px;}
.y13b{bottom:805.650000px;}
.y67{bottom:808.350000px;}
.ycd{bottom:808.530000px;}
.yf9{bottom:808.890000px;}
.y121{bottom:812.130000px;}
.yf6{bottom:812.400000px;}
.y1a2{bottom:816.630000px;}
.yf7{bottom:817.980000px;}
.yf8{bottom:818.340000px;}
.ya8{bottom:819.420000px;}
.yfa{bottom:820.320000px;}
.y161{bottom:820.410000px;}
.y3a{bottom:822.300000px;}
.y66{bottom:825.630000px;}
.y120{bottom:829.410000px;}
.y1a1{bottom:833.910000px;}
.ycc{bottom:834.990000px;}
.y39{bottom:839.400000px;}
.y160{bottom:842.100000px;}
.yf5{bottom:842.280000px;}
.y11f{bottom:846.600000px;}
.y8f{bottom:847.230000px;}
.y184{bottom:851.100000px;}
.ya7{bottom:851.190000px;}
.y65{bottom:851.910000px;}
.ycb{bottom:852.180000px;}
.y1a0{bottom:855.600000px;}
.y38{bottom:856.590000px;}
.y15f{bottom:859.380000px;}
.y11e{bottom:863.880000px;}
.y183{bottom:868.380000px;}
.yf4{bottom:868.560000px;}
.y64{bottom:869.100000px;}
.yca{bottom:869.820000px;}
.y19f{bottom:872.880000px;}
.y37{bottom:873.870000px;}
.y2{bottom:879.369000px;}
.y11d{bottom:881.160000px;}
.yf3{bottom:885.750000px;}
.y63{bottom:886.380000px;}
.yc9{bottom:887.010000px;}
.y182{bottom:890.160000px;}
.y31{bottom:892.860000px;}
.y19e{bottom:894.660000px;}
.y11c{bottom:898.350000px;}
.yf2{bottom:903.390000px;}
.y62{bottom:903.660000px;}
.yc8{bottom:904.650000px;}
.y181{bottom:907.350000px;}
.y8e{bottom:910.050000px;}
.y19d{bottom:911.850000px;}
.ya6{bottom:914.010000px;}
.y11b{bottom:915.630000px;}
.y15e{bottom:919.950000px;}
.y61{bottom:920.850000px;}
.yc7{bottom:921.840000px;}
.y180{bottom:929.130000px;}
.yf0{bottom:931.110000px;}
.yf1{bottom:936.690000px;}
.y60{bottom:938.130000px;}
.yc6{bottom:939.480000px;}
.y11a{bottom:941.640000px;}
.ya3{bottom:945.870000px;}
.y15d{bottom:946.410000px;}
.y19c{bottom:950.910000px;}
.y119{bottom:957.210000px;}
.y8c{bottom:957.390000px;}
.yef{bottom:958.920000px;}
.yc5{bottom:962.970000px;}
.y5f{bottom:964.410000px;}
.y1{bottom:966.726000px;}
.y17f{bottom:968.100000px;}
.y118{bottom:970.170000px;}
.y15c{bottom:972.600000px;}
.yee{bottom:976.200000px;}
.y5e{bottom:981.600000px;}
.yc4{bottom:984.300000px;}
.y17e{bottom:985.380000px;}
.y30{bottom:987.540000px;}
.y15b{bottom:989.880000px;}
.y117{bottom:991.500000px;}
.yed{bottom:993.480000px;}
.y5d{bottom:998.880000px;}
.y17d{bottom:1002.660000px;}
.y2f{bottom:1004.820000px;}
.yc3{bottom:1005.630000px;}
.y15a{bottom:1007.160000px;}
.yec{bottom:1010.670000px;}
.y116{bottom:1012.830000px;}
.y5c{bottom:1016.160000px;}
.y89{bottom:1020.210000px;}
.ya0{bottom:1024.170000px;}
.y159{bottom:1024.350000px;}
.yc2{bottom:1026.870000px;}
.yeb{bottom:1027.950000px;}
.y2e{bottom:1029.030000px;}
.y5b{bottom:1033.350000px;}
.y115{bottom:1034.070000px;}
.y158{bottom:1041.660000px;}
.yea{bottom:1045.260000px;}
.y2d{bottom:1047.330000px;}
.yc1{bottom:1048.230000px;}
.y5a{bottom:1050.660000px;}
.y114{bottom:1058.760000px;}
.y157{bottom:1058.940000px;}
.y2c{bottom:1060.020000px;}
.y17c{bottom:1063.440000px;}
.y88{bottom:1067.580000px;}
.y59{bottom:1067.940000px;}
.yc0{bottom:1069.560000px;}
.ye9{bottom:1071.450000px;}
.y9f{bottom:1071.540000px;}
.y156{bottom:1076.130000px;}
.y2b{bottom:1078.290000px;}
.y17b{bottom:1080.630000px;}
.y58{bottom:1085.130000px;}
.ye8{bottom:1088.730000px;}
.ybd{bottom:1090.800000px;}
.y155{bottom:1093.410000px;}
.y84{bottom:1099.350000px;}
.y57{bottom:1102.410000px;}
.y2a{bottom:1103.940000px;}
.ye7{bottom:1106.280000px;}
.yba{bottom:1112.130000px;}
.y56{bottom:1119.690000px;}
.y29{bottom:1129.500000px;}
.ye6{bottom:1134.090000px;}
.y83{bottom:1134.360000px;}
.yb9{bottom:1136.700000px;}
.y55{bottom:1136.880000px;}
.y27{bottom:1154.790000px;}
.y23{bottom:1172.880000px;}
.h33{height:15.480000px;}
.h18{height:15.570000px;}
.h38{height:15.592500px;}
.h27{height:20.520000px;}
.h28{height:20.610000px;}
.h29{height:20.643000px;}
.h37{height:20.644500px;}
.h24{height:31.045500px;}
.h25{height:31.047000px;}
.h1a{height:31.050000px;}
.h2c{height:31.165664px;}
.h34{height:31.587000px;}
.h35{height:31.590000px;}
.h7{height:32.130000px;}
.h31{height:33.685664px;}
.h1f{height:34.290000px;}
.h9{height:34.380000px;}
.h2d{height:36.684492px;}
.h2f{height:37.471992px;}
.h16{height:38.158594px;}
.h11{height:41.317910px;}
.h10{height:42.449062px;}
.h17{height:43.152539px;}
.ha{height:43.769004px;}
.h6{height:45.900000px;}
.h1d{height:46.527000px;}
.h1e{height:46.530000px;}
.h23{height:46.615500px;}
.h1c{height:46.620000px;}
.h20{height:46.650000px;}
.h21{height:46.653000px;}
.h39{height:48.041016px;}
.h3{height:48.195000px;}
.h36{height:52.971680px;}
.h1b{height:52.998047px;}
.h2b{height:53.485664px;}
.h19{height:54.421875px;}
.h2{height:55.080000px;}
.h2e{height:56.005664px;}
.h12{height:58.975137px;}
.he{height:59.004492px;}
.h3a{height:59.451680px;}
.h14{height:60.589687px;}
.h22{height:62.100000px;}
.h2a{height:62.585859px;}
.hb{height:64.064355px;}
.h32{height:67.525664px;}
.hd{height:67.701973px;}
.hc{height:70.664062px;}
.h26{height:77.580000px;}
.h5{height:78.030000px;}
.h13{height:86.215500px;}
.h15{height:86.220000px;}
.h30{height:91.831992px;}
.h4{height:119.055004px;}
.hf{height:1262.774911px;}
.h8{height:1262.790000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w1a{width:68.580000px;}
.w17{width:73.170000px;}
.w1b{width:74.010000px;}
.w1c{width:74.160000px;}
.w5{width:74.880000px;}
.w19{width:75.060000px;}
.w9{width:75.600000px;}
.w18{width:77.242500px;}
.w1d{width:96.565500px;}
.w14{width:96.570000px;}
.wf{width:97.470000px;}
.w10{width:100.350000px;}
.w11{width:104.962500px;}
.we{width:105.565500px;}
.wb{width:105.570000px;}
.w12{width:110.970000px;}
.w13{width:115.684500px;}
.w1e{width:127.440000px;}
.w21{width:127.530000px;}
.wc{width:180.030000px;}
.w22{width:181.020000px;}
.w1f{width:182.730000px;}
.w8{width:190.560000px;}
.w16{width:218.190000px;}
.w15{width:227.010000px;}
.wd{width:264.990000px;}
.w7{width:360.750000px;}
.w23{width:361.770000px;}
.w20{width:490.020000px;}
.wa{width:493.440000px;}
.w4{width:494.160000px;}
.w2{width:637.794021px;}
.w6{width:892.878750px;}
.w3{width:892.890000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:3.870000px;}
.x6{left:8.100000px;}
.x42{left:14.310000px;}
.x44{left:15.570000px;}
.x8{left:16.740000px;}
.x43{left:18.000000px;}
.x45{left:19.080000px;}
.x3e{left:20.610000px;}
.x41{left:21.870000px;}
.x3b{left:22.950000px;}
.x57{left:24.480000px;}
.x25{left:27.900000px;}
.x18{left:29.160000px;}
.x22{left:31.680000px;}
.x2a{left:36.090000px;}
.x27{left:38.340000px;}
.x14{left:41.040000px;}
.x28{left:43.650000px;}
.x29{left:46.020000px;}
.x20{left:48.690000px;}
.x1a{left:52.110000px;}
.x52{left:63.660000px;}
.x53{left:66.360000px;}
.x55{left:67.440000px;}
.x54{left:68.610000px;}
.x56{left:70.290000px;}
.x4c{left:73.920000px;}
.x49{left:76.710000px;}
.x4b{left:79.590000px;}
.x1c{left:89.820000px;}
.x3a{left:96.210000px;}
.x38{left:100.620000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:162.030000px;}
.x58{left:163.470000px;}
.x9{left:170.130000px;}
.x2e{left:172.650000px;}
.x12{left:174.990000px;}
.x1f{left:180.210000px;}
.x15{left:188.040000px;}
.x2d{left:191.460000px;}
.x47{left:199.290000px;}
.x50{left:201.450000px;}
.x4{left:203.484001px;}
.xc{left:215.580000px;}
.x35{left:221.520000px;}
.x16{left:224.130000px;}
.x13{left:237.630000px;}
.x1e{left:238.710000px;}
.x59{left:242.670000px;}
.x2b{left:249.600000px;}
.x4d{left:251.130000px;}
.x31{left:252.930000px;}
.x36{left:257.700000px;}
.x4f{left:259.590000px;}
.x37{left:272.100000px;}
.xa{left:276.690000px;}
.x21{left:278.400000px;}
.xb{left:279.480000px;}
.x19{left:280.650000px;}
.xf{left:300.540000px;}
.x2c{left:301.890000px;}
.x33{left:306.300000px;}
.x5c{left:322.590000px;}
.x46{left:324.120000px;}
.x48{left:327.450000px;}
.x51{left:329.700000px;}
.x5b{left:332.310000px;}
.x32{left:337.350000px;}
.x3c{left:345.990000px;}
.x17{left:347.970000px;}
.x4e{left:349.320000px;}
.x2f{left:361.650000px;}
.x23{left:379.560000px;}
.x11{left:386.160000px;}
.x34{left:393.540000px;}
.x3d{left:424.050000px;}
.xd{left:440.418750px;}
.x30{left:443.940000px;}
.xe{left:445.740000px;}
.x3{left:454.959000px;}
.x1b{left:461.490000px;}
.x24{left:485.340000px;}
.x39{left:499.830000px;}
.x4a{left:510.990000px;}
.x10{left:532.050000px;}
.x3f{left:569.130000px;}
.x26{left:597.030000px;}
.x40{left:643.860000px;}
.x7{left:656.190000px;}
.x5a{left:729.090000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.va{vertical-align:-30.720000pt;}
.v11{vertical-align:-28.160000pt;}
.v4{vertical-align:-24.000000pt;}
.v3{vertical-align:-21.440000pt;}
.v9{vertical-align:-19.840000pt;}
.v10{vertical-align:-16.640000pt;}
.v14{vertical-align:-13.760000pt;}
.vf{vertical-align:-12.480000pt;}
.v6{vertical-align:-10.880000pt;}
.v12{vertical-align:-9.920000pt;}
.v5{vertical-align:-5.440000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.240000pt;}
.v15{vertical-align:5.760000pt;}
.v13{vertical-align:9.920000pt;}
.v8{vertical-align:10.880000pt;}
.vc{vertical-align:12.800000pt;}
.v2{vertical-align:21.440000pt;}
.ve{vertical-align:30.400000pt;}
.vd{vertical-align:48.320000pt;}
.ls3b{letter-spacing:-0.331733pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls31{letter-spacing:-0.195733pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls3c{letter-spacing:-0.148267pt;}
.ls25{letter-spacing:-0.136533pt;}
.ls38{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.124267pt;}
.ls10{letter-spacing:-0.112000pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.057067pt;}
.ls8{letter-spacing:-0.048640pt;}
.ls24{letter-spacing:-0.021440pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls3d{letter-spacing:-0.011840pt;}
.lsb{letter-spacing:-0.006720pt;}
.ls26{letter-spacing:-0.006080pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.045440pt;}
.ls16{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.053867pt;}
.ls22{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.066133pt;}
.ls3{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.096533pt;}
.lse{letter-spacing:0.124267pt;}
.ls4{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.136533pt;}
.ls32{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.222400pt;}
.ls1a{letter-spacing:0.894720pt;}
.ls12{letter-spacing:1.143680pt;}
.ls11{letter-spacing:1.672960pt;}
.ls6{letter-spacing:2.002240pt;}
.ls2f{letter-spacing:2.069760pt;}
.ls29{letter-spacing:2.108907pt;}
.lsc{letter-spacing:2.320000pt;}
.ls1c{letter-spacing:2.322240pt;}
.ls28{letter-spacing:2.360640pt;}
.ls33{letter-spacing:2.544000pt;}
.ls27{letter-spacing:2.753600pt;}
.ls21{letter-spacing:2.860267pt;}
.ls18{letter-spacing:3.178560pt;}
.ls2d{letter-spacing:3.560640pt;}
.ls34{letter-spacing:5.173760pt;}
.ls15{letter-spacing:9.400640pt;}
.ls14{letter-spacing:10.680640pt;}
.ls2b{letter-spacing:11.920320pt;}
.ls1d{letter-spacing:14.162240pt;}
.ls13{letter-spacing:15.018560pt;}
.ls2a{letter-spacing:15.338560pt;}
.ls20{letter-spacing:16.722240pt;}
.ls35{letter-spacing:18.293760pt;}
.ls5{letter-spacing:19.920000pt;}
.ls36{letter-spacing:27.253760pt;}
.ls2e{letter-spacing:40.503680pt;}
.ls1f{letter-spacing:67.326720pt;}
.ls2c{letter-spacing:76.351040pt;}
.ls1{letter-spacing:516.560000pt;}
.ws1{word-spacing:-27.967253pt;}
.ws7{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.520000pt;}
.ws2c{word-spacing:-13.496533pt;}
.wsa{word-spacing:-13.484267pt;}
.ws5{word-spacing:-13.360000pt;}
.ws30{word-spacing:-13.348160pt;}
.ws2d{word-spacing:-13.235733pt;}
.ws29{word-spacing:-13.223467pt;}
.ws2f{word-spacing:-13.211733pt;}
.ws4{word-spacing:-13.200000pt;}
.ws1e{word-spacing:-13.164267pt;}
.ws2e{word-spacing:-13.028267pt;}
.ws2{word-spacing:-12.135680pt;}
.wsb{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.ws27{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.888000pt;}
.ws28{word-spacing:-11.872000pt;}
.ws10{word-spacing:-11.853333pt;}
.ws19{word-spacing:-11.810667pt;}
.ws12{word-spacing:-11.756800pt;}
.ws1b{word-spacing:-11.750720pt;}
.ws8{word-spacing:-11.750080pt;}
.ws24{word-spacing:-10.560000pt;}
.ws21{word-spacing:-9.360000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws17{word-spacing:-8.236800pt;}
.ws11{word-spacing:-8.215360pt;}
.wsf{word-spacing:-8.064000pt;}
.wsc{word-spacing:-8.000000pt;}
.ws2a{word-spacing:-7.603200pt;}
.ws2b{word-spacing:-5.909333pt;}
.ws1d{word-spacing:-0.231360pt;}
.ws15{word-spacing:-0.156480pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.163520pt;}
.ws18{word-spacing:0.270187pt;}
.ws26{word-spacing:2.544000pt;}
.ws25{word-spacing:2.864000pt;}
.ws1c{word-spacing:2.936640pt;}
.ws14{word-spacing:3.043520pt;}
.ws20{word-spacing:6.649600pt;}
.ws16{word-spacing:6.969600pt;}
.ws1f{word-spacing:9.529600pt;}
.ws13{word-spacing:9.849600pt;}
.ws22{word-spacing:57.445440pt;}
.ws1a{word-spacing:187.152107pt;}
._1d{margin-left:-118.599360pt;}
._1b{margin-left:-11.710720pt;}
._16{margin-left:-5.983040pt;}
._1c{margin-left:-5.085333pt;}
._18{margin-left:-4.191360pt;}
._17{margin-left:-2.559253pt;}
._0{margin-left:-1.044800pt;}
._2{width:1.403307pt;}
._b{width:2.537280pt;}
._a{width:3.527040pt;}
._d{width:4.560000pt;}
._10{width:5.985280pt;}
._8{width:7.160960pt;}
._3{width:8.496960pt;}
._4{width:9.390827pt;}
._7{width:10.367360pt;}
._9{width:11.810240pt;}
._1a{width:12.701120pt;}
._12{width:14.428800pt;}
._c{width:15.337280pt;}
._5{width:16.245760pt;}
._19{width:17.662400pt;}
._15{width:18.619520pt;}
._e{width:19.737600pt;}
._f{width:20.803840pt;}
._13{width:22.070720pt;}
._1e{width:23.040000pt;}
._20{width:24.101440pt;}
._6{width:25.039360pt;}
._1f{width:26.880320pt;}
._14{width:754.746667pt;}
._1{width:1269.223253pt;}
._11{width:1440.402347pt;}
.fsd{font-size:26.560000pt;}
.fsc{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.440000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs6{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:2.560000pt;}
.y10d{bottom:2.640000pt;}
.y77{bottom:2.720000pt;}
.y25{bottom:2.800000pt;}
.y7a{bottom:2.880000pt;}
.y7d{bottom:2.960000pt;}
.y36{bottom:3.040000pt;}
.y110{bottom:3.440000pt;}
.y86{bottom:4.400000pt;}
.ybc{bottom:4.880000pt;}
.ybe{bottom:4.960000pt;}
.ybb{bottom:5.120000pt;}
.ybf{bottom:5.200000pt;}
.y99{bottom:9.760000pt;}
.y81{bottom:9.840000pt;}
.y87{bottom:11.280000pt;}
.y26{bottom:12.320000pt;}
.y134{bottom:13.760000pt;}
.y132{bottom:15.200000pt;}
.y12f{bottom:16.320000pt;}
.y79{bottom:16.720000pt;}
.ya1{bottom:16.746667pt;}
.y10f{bottom:17.200000pt;}
.y133{bottom:17.920000pt;}
.y24{bottom:18.080000pt;}
.y85{bottom:18.160000pt;}
.y35{bottom:18.400000pt;}
.y80{bottom:23.600000pt;}
.y8a{bottom:23.626667pt;}
.y94{bottom:23.680000pt;}
.ya2{bottom:23.706667pt;}
.y82{bottom:30.480000pt;}
.y7c{bottom:30.560000pt;}
.y8b{bottom:30.586667pt;}
.y6{bottom:31.933340pt;}
.y34{bottom:33.760000pt;}
.y90{bottom:37.360000pt;}
.y9d{bottom:37.440000pt;}
.ya5{bottom:44.240000pt;}
.y8d{bottom:44.320000pt;}
.y33{bottom:49.040000pt;}
.ya4{bottom:58.080000pt;}
.y5{bottom:59.133337pt;}
.y32{bottom:64.240000pt;}
.y4{bottom:86.333337pt;}
.y22{bottom:123.790666pt;}
.y19{bottom:175.052000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y28{bottom:247.386667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y17a{bottom:294.586667pt;}
.y54{bottom:295.786667pt;}
.y154{bottom:297.386667pt;}
.y53{bottom:300.426667pt;}
.ye5{bottom:300.506667pt;}
.y113{bottom:302.426667pt;}
.y7f{bottom:305.386667pt;}
.y10{bottom:309.452000pt;}
.y179{bottom:309.946667pt;}
.y13a{bottom:310.426667pt;}
.y52{bottom:311.706667pt;}
.y153{bottom:312.746667pt;}
.y112{bottom:316.186667pt;}
.y1b1{bottom:317.946667pt;}
.y19b{bottom:321.946667pt;}
.y139{bottom:322.026667pt;}
.ye4{bottom:322.586667pt;}
.y178{bottom:325.226667pt;}
.ye2{bottom:325.786667pt;}
.y111{bottom:327.786667pt;}
.y152{bottom:328.106667pt;}
.ye3{bottom:331.066667pt;}
.y9e{bottom:331.786667pt;}
.y137{bottom:336.506667pt;}
.y19a{bottom:337.226667pt;}
.y51{bottom:337.546667pt;}
.y1b0{bottom:341.226667pt;}
.y151{bottom:343.386667pt;}
.yf{bottom:343.809333pt;}
.y177{bottom:344.586667pt;}
.y7e{bottom:347.466667pt;}
.y136{bottom:350.906667pt;}
.y50{bottom:353.146667pt;}
.ye1{bottom:353.466667pt;}
.y10e{bottom:356.586667pt;}
.y150{bottom:358.746667pt;}
.y176{bottom:359.866667pt;}
.ye{bottom:362.706666pt;}
.y4f{bottom:368.506667pt;}
.ye0{bottom:368.826667pt;}
.y199{bottom:371.866667pt;}
.y9c{bottom:373.786667pt;}
.y14f{bottom:374.106667pt;}
.y175{bottom:375.226667pt;}
.y7b{bottom:375.706667pt;}
.yb8{bottom:376.666667pt;}
.y135{bottom:379.226667pt;}
.y4e{bottom:384.106667pt;}
.y10c{bottom:385.386667pt;}
.y1af{bottom:387.226667pt;}
.y14e{bottom:389.386667pt;}
.y198{bottom:391.226667pt;}
.yb7{bottom:391.946667pt;}
.ydf{bottom:392.106667pt;}
.y174{bottom:394.586667pt;}
.y4d{bottom:399.466667pt;}
.y10b{bottom:399.786667pt;}
.y14d{bottom:404.746667pt;}
.y197{bottom:406.586667pt;}
.yb6{bottom:407.306667pt;}
.y131{bottom:407.466667pt;}
.yde{bottom:407.786667pt;}
.y173{bottom:409.866667pt;}
.y78{bottom:417.786667pt;}
.y14c{bottom:420.106667pt;}
.y1ae{bottom:421.866667pt;}
.y4c{bottom:422.666667pt;}
.ydd{bottom:423.066667pt;}
.y10a{bottom:425.226667pt;}
.y196{bottom:425.866667pt;}
.y9b{bottom:429.706667pt;}
.y14b{bottom:435.386667pt;}
.y130{bottom:435.706667pt;}
.y1ad{bottom:437.226667pt;}
.yb5{bottom:437.946667pt;}
.y4b{bottom:438.106667pt;}
.ydc{bottom:438.666667pt;}
.y195{bottom:441.226667pt;}
.y172{bottom:444.586667pt;}
.y76{bottom:446.026667pt;}
.yd{bottom:446.990669pt;}
.y109{bottom:448.746667pt;}
.y14a{bottom:450.746667pt;}
.yb4{bottom:453.306667pt;}
.ydb{bottom:454.346667pt;}
.y4a{bottom:455.386667pt;}
.y194{bottom:456.586667pt;}
.y171{bottom:459.866667pt;}
.yc{bottom:462.990669pt;}
.y108{bottom:464.026667pt;}
.y75{bottom:471.466667pt;}
.y9a{bottom:471.706667pt;}
.y193{bottom:471.866667pt;}
.y149{bottom:474.106667pt;}
.yb3{bottom:476.506667pt;}
.yda{bottom:478.026667pt;}
.yb{bottom:478.990666pt;}
.y170{bottom:479.226667pt;}
.y49{bottom:479.386667pt;}
.y192{bottom:487.226667pt;}
.y148{bottom:489.386667pt;}
.y1ac{bottom:491.226667pt;}
.y12e{bottom:492.266667pt;}
.yd9{bottom:493.306667pt;}
.y16f{bottom:494.586667pt;}
.y107{bottom:494.746667pt;}
.y74{bottom:494.906667pt;}
.ya{bottom:494.990666pt;}
.yb2{bottom:499.786667pt;}
.y98{bottom:500.026667pt;}
.y191{bottom:502.586667pt;}
.y147{bottom:504.746667pt;}
.y48{bottom:505.146667pt;}
.y1ab{bottom:506.586667pt;}
.y106{bottom:510.026667pt;}
.y73{bottom:510.266667pt;}
.y16e{bottom:513.866667pt;}
.yd8{bottom:517.226667pt;}
.y190{bottom:517.866667pt;}
.y146{bottom:520.106667pt;}
.y12d{bottom:520.506667pt;}
.y47{bottom:521.066667pt;}
.yb1{bottom:523.306667pt;}
.y72{bottom:525.626667pt;}
.y1aa{bottom:525.866667pt;}
.y97{bottom:528.293333pt;}
.y16d{bottom:529.253333pt;}
.y105{bottom:533.413333pt;}
.y12c{bottom:535.013333pt;}
.y145{bottom:535.413333pt;}
.y18f{bottom:537.253333pt;}
.yb0{bottom:538.693333pt;}
.y71{bottom:540.933333pt;}
.y1a9{bottom:541.253333pt;}
.yd7{bottom:543.093333pt;}
.y16c{bottom:544.613333pt;}
.y46{bottom:546.933333pt;}
.y104{bottom:548.693333pt;}
.y12b{bottom:552.453333pt;}
.y18e{bottom:552.613333pt;}
.yaf{bottom:553.973333pt;}
.y70{bottom:556.293333pt;}
.y96{bottom:556.533333pt;}
.y1a8{bottom:556.613333pt;}
.yd6{bottom:558.373333pt;}
.y144{bottom:558.613333pt;}
.y45{bottom:562.293333pt;}
.y16b{bottom:563.893333pt;}
.y103{bottom:564.053333pt;}
.y18d{bottom:567.893333pt;}
.yae{bottom:569.333333pt;}
.y6f{bottom:571.653333pt;}
.y9{bottom:573.786667pt;}
.y12a{bottom:575.893333pt;}
.y44{bottom:577.573333pt;}
.y16a{bottom:579.253333pt;}
.y102{bottom:579.413333pt;}
.y143{bottom:582.133333pt;}
.yd5{bottom:582.293333pt;}
.yad{bottom:584.613333pt;}
.y6e{bottom:586.933333pt;}
.y18c{bottom:587.253333pt;}
.y1a7{bottom:591.253333pt;}
.y8{bottom:592.685334pt;}
.y43{bottom:592.933333pt;}
.y169{bottom:594.613333pt;}
.y142{bottom:597.413333pt;}
.y95{bottom:598.613333pt;}
.y129{bottom:599.253333pt;}
.yac{bottom:599.973333pt;}
.y6d{bottom:602.293333pt;}
.y101{bottom:602.533333pt;}
.y18b{bottom:602.613333pt;}
.y1a6{bottom:606.613333pt;}
.y42{bottom:608.293333pt;}
.yd3{bottom:609.413333pt;}
.y141{bottom:612.773333pt;}
.y168{bottom:613.893333pt;}
.yd4{bottom:614.373333pt;}
.y128{bottom:614.613333pt;}
.yab{bottom:615.333333pt;}
.y6c{bottom:617.573333pt;}
.y18a{bottom:617.893333pt;}
.y100{bottom:618.053333pt;}
.y41{bottom:623.573333pt;}
.y1a5{bottom:625.893333pt;}
.y93{bottom:626.853333pt;}
.y140{bottom:628.053333pt;}
.y167{bottom:629.253333pt;}
.y127{bottom:629.893333pt;}
.y6b{bottom:633.253333pt;}
.yff{bottom:633.413333pt;}
.yd2{bottom:634.213333pt;}
.y189{bottom:637.253333pt;}
.y40{bottom:638.933333pt;}
.y1a4{bottom:641.253333pt;}
.y13f{bottom:643.413333pt;}
.yaa{bottom:644.213333pt;}
.y166{bottom:644.613333pt;}
.y126{bottom:645.253333pt;}
.y7{bottom:645.598667pt;}
.yd1{bottom:649.573333pt;}
.yfd{bottom:651.093333pt;}
.y188{bottom:652.613333pt;}
.y3f{bottom:654.293333pt;}
.y6a{bottom:656.453333pt;}
.y1a3{bottom:656.613333pt;}
.yfe{bottom:658.133333pt;}
.y13e{bottom:658.773333pt;}
.y125{bottom:660.533333pt;}
.y165{bottom:663.893333pt;}
.yd0{bottom:664.853333pt;}
.y187{bottom:667.893333pt;}
.y92{bottom:668.933333pt;}
.y3{bottom:668.977329pt;}
.y3e{bottom:669.573333pt;}
.yfc{bottom:669.653333pt;}
.y124{bottom:675.893333pt;}
.y164{bottom:679.253333pt;}
.y69{bottom:679.893333pt;}
.ycf{bottom:680.213333pt;}
.y13d{bottom:681.893333pt;}
.y3d{bottom:684.933333pt;}
.y186{bottom:687.253333pt;}
.y123{bottom:691.253333pt;}
.yfb{bottom:693.893333pt;}
.yce{bottom:695.493333pt;}
.y163{bottom:698.533333pt;}
.ya9{bottom:700.053333pt;}
.y3c{bottom:700.293333pt;}
.y185{bottom:702.533333pt;}
.y68{bottom:703.253333pt;}
.y13c{bottom:703.733333pt;}
.y122{bottom:706.533333pt;}
.y91{bottom:711.013333pt;}
.y162{bottom:713.893333pt;}
.y3b{bottom:715.573333pt;}
.y13b{bottom:716.133333pt;}
.y67{bottom:718.533333pt;}
.ycd{bottom:718.693333pt;}
.yf9{bottom:719.013333pt;}
.y121{bottom:721.893333pt;}
.yf6{bottom:722.133333pt;}
.y1a2{bottom:725.893333pt;}
.yf7{bottom:727.093333pt;}
.yf8{bottom:727.413333pt;}
.ya8{bottom:728.373333pt;}
.yfa{bottom:729.173333pt;}
.y161{bottom:729.253333pt;}
.y3a{bottom:730.933333pt;}
.y66{bottom:733.893333pt;}
.y120{bottom:737.253333pt;}
.y1a1{bottom:741.253333pt;}
.ycc{bottom:742.213333pt;}
.y39{bottom:746.133333pt;}
.y160{bottom:748.533333pt;}
.yf5{bottom:748.693333pt;}
.y11f{bottom:752.533333pt;}
.y8f{bottom:753.093333pt;}
.y184{bottom:756.533333pt;}
.ya7{bottom:756.613333pt;}
.y65{bottom:757.253333pt;}
.ycb{bottom:757.493333pt;}
.y1a0{bottom:760.533333pt;}
.y38{bottom:761.413333pt;}
.y15f{bottom:763.893333pt;}
.y11e{bottom:767.893333pt;}
.y183{bottom:771.893333pt;}
.yf4{bottom:772.053333pt;}
.y64{bottom:772.533333pt;}
.yca{bottom:773.173333pt;}
.y19f{bottom:775.893333pt;}
.y37{bottom:776.773333pt;}
.y2{bottom:781.661334pt;}
.y11d{bottom:783.253333pt;}
.yf3{bottom:787.333333pt;}
.y63{bottom:787.893333pt;}
.yc9{bottom:788.453333pt;}
.y182{bottom:791.253333pt;}
.y31{bottom:793.653333pt;}
.y19e{bottom:795.253333pt;}
.y11c{bottom:798.533333pt;}
.yf2{bottom:803.013333pt;}
.y62{bottom:803.253333pt;}
.yc8{bottom:804.133333pt;}
.y181{bottom:806.533333pt;}
.y8e{bottom:808.933333pt;}
.y19d{bottom:810.533333pt;}
.ya6{bottom:812.453333pt;}
.y11b{bottom:813.893333pt;}
.y15e{bottom:817.733333pt;}
.y61{bottom:818.533333pt;}
.yc7{bottom:819.413333pt;}
.y180{bottom:825.893333pt;}
.yf0{bottom:827.653333pt;}
.yf1{bottom:832.613333pt;}
.y60{bottom:833.893333pt;}
.yc6{bottom:835.093333pt;}
.y11a{bottom:837.013333pt;}
.ya3{bottom:840.773333pt;}
.y15d{bottom:841.253333pt;}
.y19c{bottom:845.253333pt;}
.y119{bottom:850.853333pt;}
.y8c{bottom:851.013333pt;}
.yef{bottom:852.373333pt;}
.yc5{bottom:855.973333pt;}
.y5f{bottom:857.253333pt;}
.y1{bottom:859.312000pt;}
.y17f{bottom:860.533333pt;}
.y118{bottom:862.373333pt;}
.y15c{bottom:864.533333pt;}
.yee{bottom:867.733333pt;}
.y5e{bottom:872.533333pt;}
.yc4{bottom:874.933333pt;}
.y17e{bottom:875.893333pt;}
.y30{bottom:877.813333pt;}
.y15b{bottom:879.893333pt;}
.y117{bottom:881.333333pt;}
.yed{bottom:883.093333pt;}
.y5d{bottom:887.893333pt;}
.y17d{bottom:891.253333pt;}
.y2f{bottom:893.173333pt;}
.yc3{bottom:893.893333pt;}
.y15a{bottom:895.253333pt;}
.yec{bottom:898.373333pt;}
.y116{bottom:900.293333pt;}
.y5c{bottom:903.253333pt;}
.y89{bottom:906.853333pt;}
.ya0{bottom:910.373333pt;}
.y159{bottom:910.533333pt;}
.yc2{bottom:912.773333pt;}
.yeb{bottom:913.733333pt;}
.y2e{bottom:914.693333pt;}
.y5b{bottom:918.533333pt;}
.y115{bottom:919.173333pt;}
.y158{bottom:925.920000pt;}
.yea{bottom:929.120000pt;}
.y2d{bottom:930.960000pt;}
.yc1{bottom:931.760000pt;}
.y5a{bottom:933.920000pt;}
.y114{bottom:941.120000pt;}
.y157{bottom:941.280000pt;}
.y2c{bottom:942.240000pt;}
.y17c{bottom:945.280000pt;}
.y88{bottom:948.960000pt;}
.y59{bottom:949.280000pt;}
.yc0{bottom:950.720000pt;}
.ye9{bottom:952.400000pt;}
.y9f{bottom:952.480000pt;}
.y156{bottom:956.560000pt;}
.y2b{bottom:958.480000pt;}
.y17b{bottom:960.560000pt;}
.y58{bottom:964.560000pt;}
.ye8{bottom:967.760000pt;}
.ybd{bottom:969.600000pt;}
.y155{bottom:971.920000pt;}
.y84{bottom:977.200000pt;}
.y57{bottom:979.920000pt;}
.y2a{bottom:981.280000pt;}
.ye7{bottom:983.360000pt;}
.yba{bottom:988.560000pt;}
.y56{bottom:995.280000pt;}
.y29{bottom:1004.000000pt;}
.ye6{bottom:1008.080000pt;}
.y83{bottom:1008.320000pt;}
.yb9{bottom:1010.400000pt;}
.y55{bottom:1010.560000pt;}
.y27{bottom:1026.480000pt;}
.y23{bottom:1042.560000pt;}
.h33{height:13.760000pt;}
.h18{height:13.840000pt;}
.h38{height:13.860000pt;}
.h27{height:18.240000pt;}
.h28{height:18.320000pt;}
.h29{height:18.349333pt;}
.h37{height:18.350667pt;}
.h24{height:27.596000pt;}
.h25{height:27.597333pt;}
.h1a{height:27.600000pt;}
.h2c{height:27.702813pt;}
.h34{height:28.077333pt;}
.h35{height:28.080000pt;}
.h7{height:28.560000pt;}
.h31{height:29.942813pt;}
.h1f{height:30.480000pt;}
.h9{height:30.560000pt;}
.h2d{height:32.608438pt;}
.h2f{height:33.308437pt;}
.h16{height:33.918750pt;}
.h11{height:36.727031pt;}
.h10{height:37.732500pt;}
.h17{height:38.357812pt;}
.ha{height:38.905781pt;}
.h6{height:40.800000pt;}
.h1d{height:41.357333pt;}
.h1e{height:41.360000pt;}
.h23{height:41.436000pt;}
.h1c{height:41.440000pt;}
.h20{height:41.466667pt;}
.h21{height:41.469333pt;}
.h39{height:42.703125pt;}
.h3{height:42.840000pt;}
.h36{height:47.085938pt;}
.h1b{height:47.109375pt;}
.h2b{height:47.542812pt;}
.h19{height:48.375000pt;}
.h2{height:48.960000pt;}
.h2e{height:49.782812pt;}
.h12{height:52.422344pt;}
.he{height:52.448437pt;}
.h3a{height:52.845938pt;}
.h14{height:53.857500pt;}
.h22{height:55.200000pt;}
.h2a{height:55.631875pt;}
.hb{height:56.946094pt;}
.h32{height:60.022813pt;}
.hd{height:60.179531pt;}
.hc{height:62.812500pt;}
.h26{height:68.960000pt;}
.h5{height:69.360000pt;}
.h13{height:76.636000pt;}
.h15{height:76.640000pt;}
.h30{height:81.628438pt;}
.h4{height:105.826671pt;}
.hf{height:1122.466588pt;}
.h8{height:1122.480000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w1a{width:60.960000pt;}
.w17{width:65.040000pt;}
.w1b{width:65.786667pt;}
.w1c{width:65.920000pt;}
.w5{width:66.560000pt;}
.w19{width:66.720000pt;}
.w9{width:67.200000pt;}
.w18{width:68.660000pt;}
.w1d{width:85.836000pt;}
.w14{width:85.840000pt;}
.wf{width:86.640000pt;}
.w10{width:89.200000pt;}
.w11{width:93.300000pt;}
.we{width:93.836000pt;}
.wb{width:93.840000pt;}
.w12{width:98.640000pt;}
.w13{width:102.830667pt;}
.w1e{width:113.280000pt;}
.w21{width:113.360000pt;}
.wc{width:160.026667pt;}
.w22{width:160.906667pt;}
.w1f{width:162.426667pt;}
.w8{width:169.386667pt;}
.w16{width:193.946667pt;}
.w15{width:201.786667pt;}
.wd{width:235.546667pt;}
.w7{width:320.666667pt;}
.w23{width:321.573333pt;}
.w20{width:435.573333pt;}
.wa{width:438.613333pt;}
.w4{width:439.253333pt;}
.w2{width:566.928019pt;}
.w6{width:793.670000pt;}
.w3{width:793.680000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:3.440000pt;}
.x6{left:7.200000pt;}
.x42{left:12.720000pt;}
.x44{left:13.840000pt;}
.x8{left:14.880000pt;}
.x43{left:16.000000pt;}
.x45{left:16.960000pt;}
.x3e{left:18.320000pt;}
.x41{left:19.440000pt;}
.x3b{left:20.400000pt;}
.x57{left:21.760000pt;}
.x25{left:24.800000pt;}
.x18{left:25.920000pt;}
.x22{left:28.160000pt;}
.x2a{left:32.080000pt;}
.x27{left:34.080000pt;}
.x14{left:36.480000pt;}
.x28{left:38.800000pt;}
.x29{left:40.906667pt;}
.x20{left:43.280000pt;}
.x1a{left:46.320000pt;}
.x52{left:56.586667pt;}
.x53{left:58.986667pt;}
.x55{left:59.946667pt;}
.x54{left:60.986667pt;}
.x56{left:62.480000pt;}
.x4c{left:65.706667pt;}
.x49{left:68.186667pt;}
.x4b{left:70.746667pt;}
.x1c{left:79.840000pt;}
.x3a{left:85.520000pt;}
.x38{left:89.440000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:144.026667pt;}
.x58{left:145.306667pt;}
.x9{left:151.226667pt;}
.x2e{left:153.466667pt;}
.x12{left:155.546667pt;}
.x1f{left:160.186667pt;}
.x15{left:167.146667pt;}
.x2d{left:170.186667pt;}
.x47{left:177.146667pt;}
.x50{left:179.066667pt;}
.x4{left:180.874667pt;}
.xc{left:191.626667pt;}
.x35{left:196.906667pt;}
.x16{left:199.226667pt;}
.x13{left:211.226667pt;}
.x1e{left:212.186667pt;}
.x59{left:215.706667pt;}
.x2b{left:221.866667pt;}
.x4d{left:223.226667pt;}
.x31{left:224.826667pt;}
.x36{left:229.066667pt;}
.x4f{left:230.746667pt;}
.x37{left:241.866667pt;}
.xa{left:245.946667pt;}
.x21{left:247.466667pt;}
.xb{left:248.426667pt;}
.x19{left:249.466667pt;}
.xf{left:267.146667pt;}
.x2c{left:268.346667pt;}
.x33{left:272.266667pt;}
.x5c{left:286.746667pt;}
.x46{left:288.106667pt;}
.x48{left:291.066667pt;}
.x51{left:293.066667pt;}
.x5b{left:295.386667pt;}
.x32{left:299.866667pt;}
.x3c{left:307.546667pt;}
.x17{left:309.306667pt;}
.x4e{left:310.506667pt;}
.x2f{left:321.466667pt;}
.x23{left:337.386667pt;}
.x11{left:343.253333pt;}
.x34{left:349.813333pt;}
.x3d{left:376.933333pt;}
.xd{left:391.483333pt;}
.x30{left:394.613333pt;}
.xe{left:396.213333pt;}
.x3{left:404.408000pt;}
.x1b{left:410.213333pt;}
.x24{left:431.413333pt;}
.x39{left:444.293333pt;}
.x4a{left:454.213333pt;}
.x10{left:472.933333pt;}
.x3f{left:505.893333pt;}
.x26{left:530.693333pt;}
.x40{left:572.320000pt;}
.x7{left:583.280000pt;}
.x5a{left:648.080000pt;}
}




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